From 0ac87cab2d89777fd3fc7479404e68649c41142f Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Tue, 23 May 2023 20:45:36 +0800 Subject: [PATCH 01/11] Fix hunter's '/cast !Auto shot' bug. --- HermesProxy/World/Client/PacketHandlers/SpellHandler.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 667eb0a1..30246424 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -421,7 +421,6 @@ void HandleSpellGo(WorldPacket packet) { spell.Cast.CastID = GetSession().GameState.CurrentClientSpecialCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientSpecialCast.SpellXSpellVisualId; - GetSession().GameState.CurrentClientSpecialCast = null; } else if (GetSession().GameState.CurrentPetGuid == spell.Cast.CasterUnit && From 7fb71bbfb25b38070a5a5f4802e2768007dccb23 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Wed, 24 May 2023 22:45:54 +0800 Subject: [PATCH 02/11] Fix the missing class --- Framework/Cryptography/Sha1.cs | 52 ++ HermesProxy/Auth/AuthClient.cs | 1128 +++++++++++------------ HermesProxy/World/Client/WorldClient.cs | 126 ++- 3 files changed, 701 insertions(+), 605 deletions(-) create mode 100644 Framework/Cryptography/Sha1.cs diff --git a/Framework/Cryptography/Sha1.cs b/Framework/Cryptography/Sha1.cs new file mode 100644 index 00000000..e80d1f6a --- /dev/null +++ b/Framework/Cryptography/Sha1.cs @@ -0,0 +1,52 @@ +namespace Framework.Cryptography; + +public sealed class Sha1 +{ + private byte[] _s; + + private byte _tmp; + + private byte _tmp2; + + public Sha1() + { + _s = new byte[256]; + _tmp = 0; + _tmp2 = 0; + } + + public void SetBase(byte[] key) + { + for (int i = 0; i < 256; i++) + { + _s[i] = (byte)i; + } + int num = 0; + for (int j = 0; j < 256; j++) + { + num = (byte)((num + key[j % key.Length] + _s[j]) & 0xFF); + ref byte reference = ref _s[j]; + ref byte reference2 = ref _s[num]; + byte b = _s[num]; + byte b2 = _s[j]; + reference = b; + reference2 = b2; + } + } + + public void ProcessBuffer(byte[] data, int length) + { + for (int i = 0; i < length; i++) + { + _tmp = (byte)((_tmp + 1) % 256); + _tmp2 = (byte)((_tmp2 + _s[_tmp]) % 256); + ref byte reference = ref _s[_tmp]; + ref byte reference2 = ref _s[_tmp2]; + byte b = _s[_tmp2]; + byte b2 = _s[_tmp]; + reference = b; + reference2 = b2; + data[i] = (byte)(_s[(_s[_tmp] + _s[_tmp2]) % 256] ^ data[i]); + } + } +} diff --git a/HermesProxy/Auth/AuthClient.cs b/HermesProxy/Auth/AuthClient.cs index 2126dd69..36570964 100644 --- a/HermesProxy/Auth/AuthClient.cs +++ b/HermesProxy/Auth/AuthClient.cs @@ -1,615 +1,543 @@ using System; using System.Collections.Generic; -using System.Diagnostics; +using System.IO; using System.Linq; -using System.Text; using System.Net; using System.Net.Sockets; -using HermesProxy.Enums; using System.Numerics; +using System.Security.Cryptography; +using System.Text; using System.Threading.Tasks; +using Framework; using Framework.Constants; using Framework.Cryptography; -using Framework; using Framework.IO; using Framework.Logging; using Framework.Networking; +using HermesProxy.Enums; + +namespace HermesProxy.Auth; -namespace HermesProxy.Auth +public class AuthClient { - public partial class AuthClient - { - // For ez debugging: Call this function wherever you want - private static readonly Action _debugTraceBreakpointHandler = (b) => - { -#if DEBUG - // Debugger.Log(0, "TraceMe", $"{b}"); -#endif - }; - - GlobalSessionData _globalSession; - Socket _clientSocket; - TaskCompletionSource _response; - TaskCompletionSource _hasRealmlist; - bool _realmlistRequestIsPending; - byte[] _passwordHash; - BigInteger _key; - byte[] _m2; - string _username; - string _locale; - - public AuthClient(GlobalSessionData globalSession) - { - _globalSession = globalSession; - } - - public GlobalSessionData GetSession() - { - return _globalSession; - } - - public AuthResult ConnectToAuthServer(string username, string password, string locale) - { - _username = username; - _locale = locale; - - _response = new (); - _hasRealmlist = new(); - _realmlistRequestIsPending = false; - - string authstring = $"{_username}:{password}"; - _passwordHash = HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(authstring.ToUpper())); - - try - { - var serverIpAddress = NetworkUtils.ResolveOrDirectIPv4(Settings.ServerAddress); - Log.PrintNet(LogType.Network, LogNetDir.P2S, $"Connecting to auth server... (realmlist addr: {Settings.ServerAddress}:{Settings.ServerPort}) (resolved as: {serverIpAddress}:{Settings.ServerPort})"); - _clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); - // Connect to the specified host. - var endPoint = new IPEndPoint(serverIpAddress, Settings.ServerPort); - _clientSocket.BeginConnect(endPoint, ConnectCallback, null); - } - catch (Exception ex) - { - Log.PrintNet(LogType.Error, LogNetDir.P2S, $"Socket Error: {ex.Message}"); - _response.SetResult(AuthResult.FAIL_INTERNAL_ERROR); - } - - _response.Task.Wait(); - - return _response.Task.Result; - } - - public AuthResult Reconnect() - { - _response = new (); - _hasRealmlist = new(); - _realmlistRequestIsPending = false; - - try - { - var serverIpAddress = NetworkUtils.ResolveOrDirectIPv4(Settings.ServerAddress); - Log.PrintNet(LogType.Network, LogNetDir.P2S, $"Reconnecting to auth server... (realmlist addr: {Settings.ServerAddress}:{Settings.ServerPort}) (resolved as: {serverIpAddress}:{Settings.ServerPort})"); - _clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); - // Connect to the specified host. - var endPoint = new IPEndPoint(serverIpAddress, Settings.ServerPort); - _clientSocket.BeginConnect(endPoint, ConnectCallback, null); - } - catch (Exception ex) - { - Log.PrintNet(LogType.Error, LogNetDir.P2S, $"Socket Error: {ex.Message}"); - _response.SetResult(AuthResult.FAIL_INTERNAL_ERROR); - } - - _response.Task.Wait(); - - return _response.Task.Result; - } - - private void SetAuthResponse(AuthResult response) - { - _response.TrySetResult(response); - } - - public void Disconnect() - { - if (!IsConnected()) - return; - - _clientSocket.Shutdown(SocketShutdown.Both); - _clientSocket.Disconnect(false); - } - - public bool IsConnected() - { - return _clientSocket != null && _clientSocket.Connected; - } - - public byte[] GetSessionKey() - { - return _key.ToCleanByteArray(); - } - - private void ConnectCallback(IAsyncResult AR) - { - try - { - _clientSocket.EndConnect(AR); - _clientSocket.ReceiveBufferSize = 65535; - byte[] buffer = new byte[_clientSocket.ReceiveBufferSize]; - _clientSocket.BeginReceive(buffer, 0, buffer.Length, SocketFlags.None, ReceiveCallback, buffer); - SendLogonChallenge(false); - } - catch (Exception ex) - { - Log.Print(LogType.Error, $"Connect Error: {ex.Message}"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - } - - private void ReconnectCallback(IAsyncResult AR) - { - try - { - _clientSocket.EndConnect(AR); - _clientSocket.ReceiveBufferSize = 65535; - byte[] buffer = new byte[_clientSocket.ReceiveBufferSize]; - _clientSocket.BeginReceive(buffer, 0, buffer.Length, SocketFlags.None, ReceiveCallback, buffer); - SendLogonChallenge(true); - } - catch (Exception ex) - { - Log.PrintNet(LogType.Error, LogNetDir.P2S, $"Connect Error: {ex.Message}"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - } - - private void ReceiveCallback(IAsyncResult AR) - { - try - { - int received = _clientSocket.EndReceive(AR); - - if (received == 0) - { - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - - Log.PrintNet(LogType.Error, LogNetDir.S2P, "Socket Closed By Server"); - return; - } - - byte[] oldBuffer = (byte[])AR.AsyncState; - - HandlePacket(oldBuffer, received); - - byte[] newBuffer = new byte[_clientSocket.ReceiveBufferSize]; - - // Start receiving data again. - _clientSocket.BeginReceive(newBuffer, 0, newBuffer.Length, SocketFlags.None, ReceiveCallback, newBuffer); - - - } - catch (Exception ex) - { - Log.Print(LogType.Error, $"Packet Read Error: {ex.Message}"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - } - - private void SendCallback(IAsyncResult AR) - { - try - { - _clientSocket.EndSend(AR); - } - catch (Exception ex) - { - Log.PrintNet(LogType.Error, LogNetDir.P2S, $"Packet Send Error: {ex.Message}"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - } - - // C P>R: Sends data to realm server - private void SendPacket(ByteBuffer packet) - { - try - { - _clientSocket.BeginSend(packet.GetData(), 0, (int)packet.GetSize(), SocketFlags.None, SendCallback, null); - } - catch (Exception ex) - { - Log.PrintNet(LogType.Error, LogNetDir.P2S, $"Packet Write Error: {ex.Message}"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - } - - private void HandlePacket(byte[] buffer, int size) - { - ByteBuffer packet = new ByteBuffer(buffer); - AuthCommand opcode = (AuthCommand)packet.ReadUInt8(); - Log.PrintNet(LogType.Debug, LogNetDir.S2P, $"Received opcode {opcode} size {size}."); - - switch (opcode) - { - case AuthCommand.LOGON_CHALLENGE: - HandleLogonChallenge(packet); - break; - case AuthCommand.LOGON_PROOF: - HandleLogonProof(packet); - break; - case AuthCommand.RECONNECT_CHALLENGE: - HandleReconnectChallenge(packet); - break; - case AuthCommand.RECONNECT_PROOF: - HandleReconnectProof(packet); - break; - case AuthCommand.REALM_LIST: - HandleRealmList(packet); - break; - default: - Log.PrintNet(LogType.Error, LogNetDir.S2P, $"No handler for opcode {opcode}!"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - break; - } - } - - private void SendLogonChallenge(bool reconnect) - { - ByteBuffer buffer = new ByteBuffer(); - buffer.WriteUInt8((byte)(reconnect ? AuthCommand.RECONNECT_CHALLENGE : AuthCommand.LOGON_CHALLENGE)); - buffer.WriteUInt8((byte)(LegacyVersion.ExpansionVersion > 1 ? 8 : 3)); - buffer.WriteUInt16((UInt16)(_username.Length + 30)); - buffer.WriteBytes(Encoding.ASCII.GetBytes("WoW")); - buffer.WriteUInt8(0); - buffer.WriteUInt8(LegacyVersion.ExpansionVersion); - buffer.WriteUInt8(LegacyVersion.MajorVersion); - buffer.WriteUInt8(LegacyVersion.MinorVersion); - buffer.WriteUInt16((ushort)Settings.ServerBuild); - buffer.WriteBytes(Encoding.ASCII.GetBytes(Settings.ReportedPlatform.Reverse())); - buffer.WriteUInt8(0); - buffer.WriteBytes(Encoding.ASCII.GetBytes(Settings.ReportedOS.Reverse())); - buffer.WriteUInt8(0); - buffer.WriteBytes(Encoding.ASCII.GetBytes(_locale.Reverse())); - buffer.WriteUInt32(0x3C); // timezone_bias - buffer.WriteUInt32(0x01_00_00_7F); // IP (127.0.0.1) - buffer.WriteUInt8((byte)_username.Length); - buffer.WriteBytes(Encoding.ASCII.GetBytes(_username)); - SendPacket(buffer); - } - - private void HandleLogonChallenge(ByteBuffer packet) - { - byte unk2 = packet.ReadUInt8(); - AuthResult error = (AuthResult)packet.ReadUInt8(); - if (error != AuthResult.SUCCESS) - { - Log.Print(LogType.Error, $"Login failed. Reason: {error}"); - SetAuthResponse(error); - return; - } - - byte[] challenge_B = packet.ReadBytes(32); - byte challenge_gLen = packet.ReadUInt8(); - byte[] challenge_g = packet.ReadBytes(1); - byte challenge_nLen = packet.ReadUInt8(); - byte[] challenge_N = packet.ReadBytes(32); - byte[] challenge_salt = packet.ReadBytes(32); - byte[] challenge_version = packet.ReadBytes(16); - byte challenge_securityFlags = packet.ReadUInt8(); - - //Console.WriteLine("Received logon challenge"); - - BigInteger N, A, B, a, u, x, S, salt, versionChallenge, g, k; - k = new BigInteger(3); - - #region Receive and initialize - - B = challenge_B.ToBigInteger(); // server public key - g = challenge_g.ToBigInteger(); - N = challenge_N.ToBigInteger(); // modulus - salt = challenge_salt.ToBigInteger(); - versionChallenge = challenge_version.ToBigInteger(); - - //Console.WriteLine("---====== Received from server: ======---"); - //Console.WriteLine($"B={B.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"N={N.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"salt={challenge_salt.ToHexString()}"); - //Console.WriteLine($"versionChallenge={challenge_version.ToHexString()}"); - #endregion - - #region Hash password - - x = HashAlgorithm.SHA1.Hash(challenge_salt, _passwordHash).ToBigInteger(); - - //Console.WriteLine("---====== shared password hash ======---"); - //Console.WriteLine($"g={g.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"x={x.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"N={N.ToCleanByteArray().ToHexString()}"); - - #endregion - - #region Create random key pair - - var rand = System.Security.Cryptography.RandomNumberGenerator.Create(); - - do - { - byte[] randBytes = new byte[19]; - rand.GetBytes(randBytes); - a = randBytes.ToBigInteger(); - - A = g.ModPow(a, N); - } while (A.ModPow(1, N) == 0); - - //Console.WriteLine("---====== Send data to server: ======---"); - //Console.WriteLine($"A={A.ToCleanByteArray().ToHexString()}"); - - #endregion - - #region Compute session key - - u = HashAlgorithm.SHA1.Hash(A.ToCleanByteArray(), B.ToCleanByteArray()).ToBigInteger(); - - // compute session key - S = ((B + k * (N - g.ModPow(x, N))) % N).ModPow(a + (u * x), N); - byte[] keyHash; - byte[] sData = S.ToCleanByteArray(); - if (sData.Length < 32) - { - var tmpBuffer = new byte[32]; - Buffer.BlockCopy(sData, 0, tmpBuffer, 32 - sData.Length, sData.Length); - sData = tmpBuffer; - } - byte[] keyData = new byte[40]; - byte[] temp = new byte[16]; - - // take every even indices byte, hash, store in even indices - for (int i = 0; i < 16; ++i) - temp[i] = sData[i * 2]; - keyHash = HashAlgorithm.SHA1.Hash(temp); - for (int i = 0; i < 20; ++i) - keyData[i * 2] = keyHash[i]; - - // do the same for odd indices - for (int i = 0; i < 16; ++i) - temp[i] = sData[i * 2 + 1]; - keyHash = HashAlgorithm.SHA1.Hash(temp); - for (int i = 0; i < 20; ++i) - keyData[i * 2 + 1] = keyHash[i]; - - _key = keyData.ToBigInteger(); - - //Console.WriteLine("---====== Compute session key ======---"); - //Console.WriteLine($"u={u.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"S={S.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"K={_key.ToCleanByteArray().ToHexString()}"); - - #endregion - - #region Generate crypto proof - - // XOR the hashes of N and g together - byte[] gNHash = new byte[20]; - - byte[] nHash = HashAlgorithm.SHA1.Hash(N.ToCleanByteArray()); - for (int i = 0; i < 20; ++i) - gNHash[i] = nHash[i]; - //Console.WriteLine($"nHash={nHash.ToHexString()}"); - - byte[] gHash = HashAlgorithm.SHA1.Hash(g.ToCleanByteArray()); - for (int i = 0; i < 20; ++i) - gNHash[i] ^= gHash[i]; - //Console.WriteLine($"gHash={gHash.ToHexString()}"); - - // hash username - byte[] userHash = HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(_username.ToUpper())); - - // our proof - byte[] m1Hash = HashAlgorithm.SHA1.Hash - ( - gNHash, - userHash, - challenge_salt, - A.ToCleanByteArray(), - B.ToCleanByteArray(), - _key.ToCleanByteArray() - ); - - //Console.WriteLine("---====== Client proof: ======---"); - //Console.WriteLine($"gNHash={gNHash.ToHexString()}"); - //Console.WriteLine($"userHash={userHash.ToHexString()}"); - //Console.WriteLine($"salt={challenge_salt.ToHexString()}"); - //Console.WriteLine($"A={A.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"B={B.ToCleanByteArray().ToHexString()}"); - //Console.WriteLine($"key={_key.ToCleanByteArray().ToHexString()}"); - - //Console.WriteLine("---====== Send proof to server: ======---"); - //Console.WriteLine($"M={m1Hash.ToHexString()}"); - - // expected proof for server - _m2 = HashAlgorithm.SHA1.Hash(A.ToCleanByteArray(), m1Hash, keyData); - - #endregion - - SendLogonProof(A.ToCleanByteArray(), m1Hash, new byte[20]); - } - - private void SendLogonProof(byte[] A, byte[] M1, byte[] crc) - { - ByteBuffer buffer = new ByteBuffer(); - buffer.WriteUInt8((byte)AuthCommand.LOGON_PROOF); - buffer.WriteBytes(A); - buffer.WriteBytes(M1); - buffer.WriteBytes(crc); - buffer.WriteUInt8(0); - buffer.WriteUInt8(0); - - _debugTraceBreakpointHandler(buffer); - - SendPacket(buffer); - } - - private void HandleLogonProof(ByteBuffer packet) - { - AuthResult error = (AuthResult)packet.ReadUInt8(); - if (error != AuthResult.SUCCESS) - { - Log.Print(LogType.Error, $"Login failed. Reason: {error}"); - SetAuthResponse(error); - return; - } - - byte[] M2 = packet.ReadBytes(20); - uint accountFlags = 0; - uint surveyId = 0; - ushort loginFlags = 0; - - if (Settings.ServerBuild < ClientVersionBuild.V2_0_3_6299) - { - surveyId = packet.ReadUInt32(); - } - else if (Settings.ServerBuild < ClientVersionBuild.V2_4_0_8089) - { - surveyId = packet.ReadUInt32(); - loginFlags = packet.ReadUInt16(); - } - else - { - accountFlags = packet.ReadUInt32(); - surveyId = packet.ReadUInt32(); - loginFlags = packet.ReadUInt16(); - } - - bool equal = _m2 != null && _m2.Length == 20; - for (int i = 0; equal && i < _m2.Length; ++i) - if (!(equal = _m2[i] == M2[i])) - break; - - if (!equal) - { - Log.Print(LogType.Error, "Authentication failed!"); - SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); - } - else - { - Log.Print(LogType.Network, "Authentication succeeded!"); - SetAuthResponse(AuthResult.SUCCESS); - } - } - - public void HandleReconnectChallenge(ByteBuffer packet) - { - packet.ReadUInt8(); // always 0 - byte[] reconnectProof = packet.ReadBytes(16); - packet.ReadBytes(16); // version challenge - - var rand = System.Security.Cryptography.RandomNumberGenerator.Create(); - byte[] R1 = new byte[16]; - rand.GetBytes(R1); - byte[] R2 = HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(_username), R1, reconnectProof, GetSessionKey()); - byte[] R3 = HashAlgorithm.SHA1.Hash(R1, new byte[20]); // version challenge not actually used on reconnect - - SendReconnectProof(R1, R2, R3); - } - - private void SendReconnectProof(byte[] R1, byte[] R2, byte[] R3) - { - ByteBuffer buffer = new ByteBuffer(); - buffer.WriteUInt8((byte)AuthCommand.RECONNECT_PROOF); - buffer.WriteBytes(R1); // size 16 - buffer.WriteBytes(R2); // size 20 - buffer.WriteBytes(R3); // size 20 - buffer.WriteUInt8(0); - SendPacket(buffer); - } - - public void HandleReconnectProof(ByteBuffer packet) - { - AuthResult error = (AuthResult)packet.ReadUInt8(); - if (error != AuthResult.SUCCESS) - { - Log.Print(LogType.Error, $"Reconnect failed. Reason: {error}"); - SetAuthResponse(error); - return; - } - - SetAuthResponse(AuthResult.SUCCESS); - } - - public void SendRealmListUpdateRequest() - { - Log.Print(LogType.Server, $"Requesting RealmList update for {_username}"); - ByteBuffer buffer = new ByteBuffer(); - buffer.WriteUInt8((byte)AuthCommand.REALM_LIST); - for (int i = 0; i < 4; i++) - buffer.WriteUInt8(0); - _realmlistRequestIsPending = true; - SendPacket(buffer); - } - - private void HandleRealmList(ByteBuffer packet) - { - packet.ReadUInt16(); // packet size - packet.ReadUInt32(); // unused - ushort realmsCount = 0; - - if (Settings.ServerBuild < ClientVersionBuild.V2_0_3_6299) - { - realmsCount = packet.ReadUInt8(); - } - else - { - realmsCount = packet.ReadUInt16(); - } - - Log.Print(LogType.Network, $"Received {realmsCount} realms."); - List realmList = new List(); - - for (ushort i = 0; i < realmsCount; i++) - { - RealmInfo realmInfo = new RealmInfo(); - realmInfo.ID = i; - - if (Settings.ServerBuild < ClientVersionBuild.V2_0_3_6299) - { - realmInfo.Type = (RealmType)packet.ReadUInt32(); - } - else - { - realmInfo.Type = (RealmType)packet.ReadUInt8(); - realmInfo.IsLocked = packet.ReadUInt8(); - } - - realmInfo.Flags = (RealmFlags)packet.ReadUInt8(); - realmInfo.Name = packet.ReadCString(); - string addressAndPort = packet.ReadCString(); - string[] strArr = addressAndPort.Split(':'); - realmInfo.Address = strArr[0].Trim(); - realmInfo.Port = UInt16.Parse(strArr[1]); - realmInfo.Population = packet.ReadFloat(); - realmInfo.CharacterCount = packet.ReadUInt8(); - realmInfo.Timezone = packet.ReadUInt8(); - packet.ReadUInt8(); // unk - - if ((realmInfo.Flags & RealmFlags.SpecifyBuild) != 0) - { - realmInfo.VersionMajor = packet.ReadUInt8(); - realmInfo.VersionMinor = packet.ReadUInt8(); - realmInfo.VersonBugfix = packet.ReadUInt8(); - realmInfo.Build = packet.ReadUInt16(); - } - realmList.Add(realmInfo); - } - - GetSession().RealmManager.UpdateRealms(realmList); - _hasRealmlist.SetResult(); - } - - public void WaitOrRequestRealmList() - { - if (!_realmlistRequestIsPending || !_hasRealmlist.Task.Wait(TimeSpan.FromSeconds(2))) - SendRealmListUpdateRequest(); - _hasRealmlist.Task.Wait(); - } - } + private static readonly Action _debugTraceBreakpointHandler; + + private GlobalSessionData _globalSession; + + private Socket _clientSocket; + + private TaskCompletionSource _response; + + private TaskCompletionSource _hasRealmlist; + + private bool _realmlistRequestIsPending; + + private byte[] _passwordHash; + + private BigInteger _key; + + private byte[] _m2; + + private string _username; + + private string _locale; + + public AuthClient(GlobalSessionData globalSession) + { + _globalSession = globalSession; + } + + public GlobalSessionData GetSession() + { + return _globalSession; + } + + public AuthResult ConnectToAuthServer(string username, string password, string locale) + { + _username = username; + _locale = locale; + _response = new TaskCompletionSource(); + _hasRealmlist = new TaskCompletionSource(); + _realmlistRequestIsPending = false; + string text = _username + ":" + password; + _passwordHash = Framework.Cryptography.HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(text.ToUpper())); + try + { + IPAddress iPAddress = NetworkUtils.ResolveOrDirectIPv4(Settings.ServerAddress); + Log.PrintNet(LogType.Network, LogNetDir.P2S, $"Connecting to auth server... (realmlist addr: {Settings.ServerAddress}:{Settings.ServerPort}) (resolved as: {iPAddress}:{Settings.ServerPort})", "ConnectToAuthServer", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + _clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); + IPEndPoint iPEndPoint = new IPEndPoint(iPAddress, Settings.ServerPort); + _clientSocket.BeginConnect(iPEndPoint, ConnectCallback, null); + } + catch (Exception ex) + { + Log.PrintNet(LogType.Error, LogNetDir.P2S, "Socket Error: " + ex.Message, "ConnectToAuthServer", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + _response.SetResult(AuthResult.FAIL_INTERNAL_ERROR); + } + _response.Task.Wait(); + return _response.Task.Result; + } + + public AuthResult Reconnect() + { + _response = new TaskCompletionSource(); + _hasRealmlist = new TaskCompletionSource(); + _realmlistRequestIsPending = false; + try + { + IPAddress iPAddress = NetworkUtils.ResolveOrDirectIPv4(Settings.ServerAddress); + Log.PrintNet(LogType.Network, LogNetDir.P2S, $"Reconnecting to auth server... (realmlist addr: {Settings.ServerAddress}:{Settings.ServerPort}) (resolved as: {iPAddress}:{Settings.ServerPort})", "Reconnect", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + _clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); + IPEndPoint iPEndPoint = new IPEndPoint(iPAddress, Settings.ServerPort); + _clientSocket.BeginConnect(iPEndPoint, ConnectCallback, null); + } + catch (Exception ex) + { + Log.PrintNet(LogType.Error, LogNetDir.P2S, "Socket Error: " + ex.Message, "Reconnect", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + _response.SetResult(AuthResult.FAIL_INTERNAL_ERROR); + } + _response.Task.Wait(); + return _response.Task.Result; + } + + private void SetAuthResponse(AuthResult response) + { + _response.TrySetResult(response); + } + + public void Disconnect() + { + if (IsConnected()) + { + _clientSocket.Shutdown(SocketShutdown.Both); + _clientSocket.Disconnect(false); + } + } + + public bool IsConnected() + { + if (_clientSocket != null) + { + return _clientSocket.Connected; + } + return false; + } + + public byte[] GetSessionKey() + { + return _key.ToCleanByteArray(); + } + + private void ConnectCallback(IAsyncResult AR) + { + try + { + _clientSocket.EndConnect(AR); + _clientSocket.ReceiveBufferSize = 65535; + byte[] array = new byte[_clientSocket.ReceiveBufferSize]; + _clientSocket.BeginReceive(array, 0, array.Length, SocketFlags.None, ReceiveCallback, array); + SendLogonChallenge(reconnect: false); + } + catch (Exception ex) + { + Log.Print(LogType.Error, "Connect Error: " + ex.Message, "ConnectCallback", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + } + + private void ReconnectCallback(IAsyncResult AR) + { + try + { + _clientSocket.EndConnect(AR); + _clientSocket.ReceiveBufferSize = 65535; + byte[] array = new byte[_clientSocket.ReceiveBufferSize]; + _clientSocket.BeginReceive(array, 0, array.Length, SocketFlags.None, ReceiveCallback, array); + SendLogonChallenge(reconnect: true); + } + catch (Exception ex) + { + Log.PrintNet(LogType.Error, LogNetDir.P2S, "Connect Error: " + ex.Message, "ReconnectCallback", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + } + + private void ReceiveCallback(IAsyncResult AR) + { + try + { + int num = _clientSocket.EndReceive(AR); + if (num == 0) + { + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + Log.PrintNet(LogType.Error, LogNetDir.S2P, "Socket Closed By Server", "ReceiveCallback", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + return; + } + byte[] buffer = (byte[])AR.AsyncState; + HandlePacket(buffer, num); + byte[] array = new byte[_clientSocket.ReceiveBufferSize]; + _clientSocket.BeginReceive(array, 0, array.Length, SocketFlags.None, ReceiveCallback, array); + } + catch (Exception ex) + { + Log.Print(LogType.Error, "Packet Read Error: " + ex.Message, "ReceiveCallback", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + } + + private void SendCallback(IAsyncResult AR) + { + try + { + _clientSocket.EndSend(AR); + } + catch (Exception ex) + { + Log.PrintNet(LogType.Error, LogNetDir.P2S, "Packet Send Error: " + ex.Message, "SendCallback", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + } + + private void SendPacket(ByteBuffer packet) + { + try + { + _clientSocket.BeginSend(packet.GetData(), 0, (int)packet.GetSize(), SocketFlags.None, SendCallback, null); + } + catch (Exception ex) + { + Log.PrintNet(LogType.Error, LogNetDir.P2S, "Packet Write Error: " + ex.Message, "SendPacket", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + } + + private void HandlePacket(byte[] buffer, int size) + { + ByteBuffer byteBuffer = new ByteBuffer(buffer); + AuthCommand authCommand = (AuthCommand)byteBuffer.ReadUInt8(); + Log.PrintNet(LogType.Debug, LogNetDir.S2P, $"Received opcode {authCommand} size {size}.", "HandlePacket", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + switch (authCommand) + { + case AuthCommand.LOGON_CHALLENGE: + HandleLogonChallenge(byteBuffer); + return; + case AuthCommand.LOGON_PROOF: + HandleLogonProof(byteBuffer); + return; + case AuthCommand.RECONNECT_CHALLENGE: + HandleReconnectChallenge(byteBuffer); + return; + case AuthCommand.RECONNECT_PROOF: + HandleReconnectProof(byteBuffer); + return; + case AuthCommand.REALM_LIST: + HandleRealmList(byteBuffer); + return; + } + Log.PrintNet(LogType.Error, LogNetDir.S2P, $"No handler for opcode {authCommand}!", "HandlePacket", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + + private void SendLogonChallenge(bool reconnect) + { + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8((byte)(reconnect ? 2 : 0)); + byteBuffer.WriteUInt8((byte)((LegacyVersion.ExpansionVersion > 1) ? 8u : 3u)); + byteBuffer.WriteUInt16((ushort)(_username.Length + 30)); + byteBuffer.WriteBytes(Encoding.ASCII.GetBytes("WoW")); + byteBuffer.WriteUInt8(0); + byteBuffer.WriteUInt8(LegacyVersion.ExpansionVersion); + byteBuffer.WriteUInt8(LegacyVersion.MajorVersion); + byteBuffer.WriteUInt8(LegacyVersion.MinorVersion); + byteBuffer.WriteUInt16((ushort)Settings.ServerBuild); + byteBuffer.WriteBytes(Encoding.ASCII.GetBytes(Settings.ReportedPlatform.Reverse())); + byteBuffer.WriteUInt8(0); + byteBuffer.WriteBytes(Encoding.ASCII.GetBytes(Settings.ReportedOS.Reverse())); + byteBuffer.WriteUInt8(0); + byteBuffer.WriteBytes(Encoding.ASCII.GetBytes(_locale.Reverse())); + byteBuffer.WriteUInt32(60u); + byteBuffer.WriteUInt32(16777343u); + byteBuffer.WriteUInt8((byte)_username.Length); + byteBuffer.WriteBytes(Encoding.ASCII.GetBytes(_username)); + SendPacket(byteBuffer); + } + + private void HandleLogonChallenge(ByteBuffer packet) + { + packet.ReadUInt8(); + AuthResult authResult = (AuthResult)packet.ReadUInt8(); + if (authResult != 0) + { + Log.Print(LogType.Error, $"Login failed. Reason: {authResult}", "HandleLogonChallenge", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(authResult); + return; + } + byte[] array = packet.ReadBytes(32u); + packet.ReadUInt8(); + byte[] array2 = packet.ReadBytes(1u); + packet.ReadUInt8(); + byte[] array3 = packet.ReadBytes(32u); + byte[] array4 = packet.ReadBytes(32u); + byte[] array5 = packet.ReadBytes(16u); + packet.ReadUInt8(); + BigInteger bigInteger = new BigInteger(3); + BigInteger bigInteger2 = array.ToBigInteger(); + BigInteger bigInteger3 = array2.ToBigInteger(); + BigInteger bigInteger4 = array3.ToBigInteger(); + array4.ToBigInteger(); + array5.ToBigInteger(); + BigInteger bigInteger5 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array4, _passwordHash).ToBigInteger(); + RandomNumberGenerator randomNumberGenerator = RandomNumberGenerator.Create(); + BigInteger bigInteger6; + BigInteger bigInteger7; + do + { + byte[] array6 = new byte[19]; + randomNumberGenerator.GetBytes(array6); + bigInteger6 = array6.ToBigInteger(); + bigInteger7 = bigInteger3.ModPow(bigInteger6, bigInteger4); + } + while (bigInteger7.ModPow(1, bigInteger4) == 0L); + BigInteger bigInteger8 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(bigInteger7.ToCleanByteArray(), bigInteger2.ToCleanByteArray()).ToBigInteger(); + byte[] array7 = ((bigInteger2 + bigInteger * (bigInteger4 - bigInteger3.ModPow(bigInteger5, bigInteger4))) % bigInteger4).ModPow(bigInteger6 + bigInteger8 * bigInteger5, bigInteger4).ToCleanByteArray(); + if (array7.Length < 32) + { + byte[] array8 = new byte[32]; + Buffer.BlockCopy(array7, 0, array8, 32 - array7.Length, array7.Length); + array7 = array8; + } + byte[] array9 = new byte[40]; + byte[] array10 = new byte[16]; + for (int i = 0; i < 16; i++) + { + array10[i] = array7[i * 2]; + } + byte[] array11 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array10); + for (int j = 0; j < 20; j++) + { + array9[j * 2] = array11[j]; + } + for (int k = 0; k < 16; k++) + { + array10[k] = array7[k * 2 + 1]; + } + array11 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array10); + for (int l = 0; l < 20; l++) + { + array9[l * 2 + 1] = array11[l]; + } + _key = array9.ToBigInteger(); + byte[] array12 = new byte[20]; + byte[] array13 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(bigInteger4.ToCleanByteArray()); + for (int m = 0; m < 20; m++) + { + array12[m] = array13[m]; + } + byte[] array14 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(bigInteger3.ToCleanByteArray()); + for (int n = 0; n < 20; n++) + { + array12[n] ^= array14[n]; + } + byte[] array15 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(_username.ToUpper())); + byte[] array16 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array12, array15, array4, bigInteger7.ToCleanByteArray(), bigInteger2.ToCleanByteArray(), _key.ToCleanByteArray()); + _m2 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(bigInteger7.ToCleanByteArray(), array16, array9); + SendLogonProof(bigInteger7.ToCleanByteArray(), array16, new byte[20]); + } + + private void SendLogonProof(byte[] A, byte[] M1, byte[] crc) + { + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(1); + byteBuffer.WriteBytes(A); + byteBuffer.WriteBytes(M1); + byteBuffer.WriteBytes(crc); + byteBuffer.WriteUInt8(0); + byteBuffer.WriteUInt8(0); + _debugTraceBreakpointHandler(byteBuffer); + SendPacket(byteBuffer); + } + + private void HandleLogonProof(ByteBuffer packet) + { + AuthResult authResult = (AuthResult)packet.ReadUInt8(); + if (authResult != 0) + { + Log.Print(LogType.Error, $"Login failed. Reason: {authResult}", "HandleLogonProof", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(authResult); + return; + } + byte[] array = packet.ReadBytes(20u); + if (Settings.ServerBuild < ClientVersionBuild.V2_0_3_6299) + { + packet.ReadUInt32(); + } + else if (Settings.ServerBuild < ClientVersionBuild.V2_4_0_8089) + { + packet.ReadUInt32(); + packet.ReadUInt16(); + } + else + { + packet.ReadUInt32(); + packet.ReadUInt32(); + packet.ReadUInt16(); + } + bool flag = _m2 != null && _m2.Length == 20; + int num = 0; + while (flag && num < _m2.Length && (flag = _m2[num] == array[num])) + { + num++; + } + if (!flag) + { + Log.Print(LogType.Error, "Authentication failed!", "HandleLogonProof", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); + } + else + { + Log.Print(LogType.Network, "Authentication succeeded!", "HandleLogonProof", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(AuthResult.SUCCESS); + } + } + + public void HandleReconnectChallenge(ByteBuffer packet) + { + packet.ReadUInt8(); + byte[] array = packet.ReadBytes(16u); + packet.ReadBytes(16u); + RandomNumberGenerator randomNumberGenerator = RandomNumberGenerator.Create(); + byte[] array2 = new byte[16]; + randomNumberGenerator.GetBytes(array2); + byte[] r = Framework.Cryptography.HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(_username), array2, array, GetSessionKey()); + byte[] r2 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array2, new byte[20]); + SendReconnectProof(array2, r, r2); + } + + private void SendReconnectProof(byte[] R1, byte[] R2, byte[] R3) + { + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(3); + byteBuffer.WriteBytes(R1); + byteBuffer.WriteBytes(R2); + byteBuffer.WriteBytes(R3); + byteBuffer.WriteUInt8(0); + SendPacket(byteBuffer); + } + + public void HandleReconnectProof(ByteBuffer packet) + { + AuthResult authResult = (AuthResult)packet.ReadUInt8(); + if (authResult != 0) + { + Log.Print(LogType.Error, $"Reconnect failed. Reason: {authResult}", "HandleReconnectProof", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + SetAuthResponse(authResult); + } + else + { + SetAuthResponse(AuthResult.SUCCESS); + } + } + + public void SendRealmListUpdateRequest() + { + Log.Print(LogType.Server, "Requesting RealmList update for " + _username, "SendRealmListUpdateRequest", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(16); + for (int i = 0; i < 4; i++) + { + byteBuffer.WriteUInt8(0); + } + _realmlistRequestIsPending = true; + SendPacket(byteBuffer); + } + + private void HandleRealmList(ByteBuffer packet) + { + packet.ReadUInt16(); + packet.ReadUInt32(); + ushort num = 0; + num = ((Settings.ServerBuild >= ClientVersionBuild.V2_0_3_6299) ? packet.ReadUInt16() : packet.ReadUInt8()); + Log.Print(LogType.Network, $"Received {num} realms.", "HandleRealmList", "D:\\a\\HermesProxy\\HermesProxy\\Auth\\AuthClient.cs"); + List list = new List(); + for (ushort num2 = 0; num2 < num; num2 = (ushort)(num2 + 1)) + { + RealmInfo realmInfo = new RealmInfo(); + realmInfo.ID = num2; + if (Settings.ServerBuild < ClientVersionBuild.V2_0_3_6299) + { + realmInfo.Type = (RealmType)packet.ReadUInt32(); + } + else + { + realmInfo.Type = (RealmType)packet.ReadUInt8(); + realmInfo.IsLocked = packet.ReadUInt8(); + } + realmInfo.Flags = (RealmFlags)packet.ReadUInt8(); + realmInfo.Name = packet.ReadCString(); + string[] array = packet.ReadCString().Split(':'); + realmInfo.Address = Dns.GetHostAddresses(array[0].Trim()).First().ToString(); + realmInfo.Port = ushort.Parse(array[1]); + realmInfo.Population = packet.ReadFloat(); + realmInfo.CharacterCount = packet.ReadUInt8(); + realmInfo.Timezone = packet.ReadUInt8(); + packet.ReadUInt8(); + if ((realmInfo.Flags & RealmFlags.SpecifyBuild) != 0) + { + realmInfo.VersionMajor = packet.ReadUInt8(); + realmInfo.VersionMinor = packet.ReadUInt8(); + realmInfo.VersonBugfix = packet.ReadUInt8(); + realmInfo.Build = packet.ReadUInt16(); + } + list.Add(realmInfo); + } + GetSession().RealmManager.UpdateRealms(list); + _hasRealmlist.SetResult(); + } + + public void WaitOrRequestRealmList() + { + if (!_realmlistRequestIsPending || !_hasRealmlist.Task.Wait(TimeSpan.FromSeconds(2.0))) + { + SendRealmListUpdateRequest(); + } + _hasRealmlist.Task.Wait(); + } + + static AuthClient() + { + _debugTraceBreakpointHandler = delegate + { + }; + _debugTraceBreakpointHandler = delegate(ByteBuffer b) + { + if (Settings.ReportedOS == "OSX" && Settings.ReportedPlatform == "x86" && b.GetCurrentStream() is MemoryStream memoryStream) + { + MacOsPasswordHashFix(memoryStream.GetBuffer()); + } + }; + } + + private static void MacOsPasswordHashFix(byte[] b) + { + byte[] array = LegacyVersion.BuildInt switch + { + 5875 => new byte[20] + { + 141, 23, 60, 195, 129, 150, 30, 235, 171, 243, + 54, 245, 230, 103, 91, 16, 27, 181, 19, 229 + }, + 8606 => new byte[20] + { + 216, 176, 236, 254, 83, 75, 193, 19, 30, 25, + 186, 209, 212, 192, 232, 19, 238, 228, 153, 79 + }, + _ => null, + }; + if (array != null) + { + byte[] subArray = b[1..33]; + byte[] array2 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(subArray, array); + Array.Copy(array2, 0, b, 53, array2.Length); + } + } } diff --git a/HermesProxy/World/Client/WorldClient.cs b/HermesProxy/World/Client/WorldClient.cs index 043606b9..9b0e66b0 100644 --- a/HermesProxy/World/Client/WorldClient.cs +++ b/HermesProxy/World/Client/WorldClient.cs @@ -1,21 +1,27 @@ using System; +using System.Collections; using System.Collections.Generic; -using System.Text; +using System.Globalization; +using System.Linq; using System.Net; using System.Net.Sockets; -using HermesProxy.Enums; using System.Numerics; +using System.Reflection; +using System.Security.Cryptography; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using HermesProxy.Enums; using Framework.Constants; using Framework.Cryptography; using Framework; using Framework.IO; using Framework.Logging; using HermesProxy.World.Enums; -using System.Reflection; -using System.Threading.Tasks; using Framework.Networking; using HermesProxy.World.Server; + namespace HermesProxy.World.Client { public partial class WorldClient @@ -418,7 +424,7 @@ public void SendAuthResponse(uint clientSeed, uint serverSeed) { uint zero = 0; - byte[] authResponse = HashAlgorithm.SHA1.Hash + byte[] authResponse = Framework.Cryptography.HashAlgorithm.SHA1.Hash ( Encoding.ASCII.GetBytes(_username.ToUpper()), BitConverter.GetBytes(zero), @@ -537,5 +543,115 @@ public void InitializePacketHandlers() } } } + + + + private Sha1 _hashOut; + + private Sha1 _hashIn; + + private byte[] _wmh; + + private void HandleGenericVersion(ByteBuffer packet) + { + byte[] wmh = packet.ReadBytes(16u); + _wmh = wmh; + packet.ReadBytes(16u); + packet.ReadUInt32(); + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(1); + SendPacketToServer(byteBuffer); + } + + + + private void SendPacketToServer(ByteBuffer payload) + { + byte[] data = payload.GetData(); + _hashIn.ProcessBuffer(data, data.Length); + WorldPacket worldPacket = new WorldPacket(743u); + worldPacket.WriteBytes(data); + SendPacketToServer(worldPacket); + } + + private void Handle(ByteBuffer payload) + { + switch (payload.ReadUInt8()) + { + case 0: + HandleGenericVersion(payload); + break; + } + } + + + [PacketHandler(3184u)] + private void HandleLegacyAddonVerification(WorldPacket packet) + { + if (_hashIn == null) + { + Sha1Helper sha1Helper = new Sha1Helper(GetSession().AuthClient.GetSessionKey()); + _hashIn = new Sha1(); + byte[] hash = sha1Helper.GetHash(); + _hashIn.SetBase(hash); + _hashOut = new Sha1(); + byte[] hash2 = sha1Helper.GetHash(); + _hashOut.SetBase(hash2); + } + byte[] array = packet.ReadToEnd(); + _hashOut.ProcessBuffer(array, array.Length); + Handle(new ByteBuffer(array)); + } + + + private struct Sha1Helper + { + private readonly byte[] _part1; + + private byte[] _part2; + + private readonly byte[] _part3; + + private int _alreadyTaken; + + public Sha1Helper(byte[] sk) + { + _alreadyTaken = 0; + byte[] array = sk.Take(20).ToArray(); + _part1 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array); + _part2 = new byte[20]; + byte[] array2 = sk.Skip(20).ToArray(); + _part3 = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array2); + CalcHash(); + } + + public byte[] GetHash() + { + byte[] array = new byte[16]; + for (int i = 0; i < 16; i++) + { + array[i] = GetOneByte(); + } + return array; + } + + private byte GetOneByte() + { + if (_alreadyTaken >= _part2.Length) + { + CalcHash(); + } + byte result = _part2[_alreadyTaken]; + _alreadyTaken++; + return result; + } + + private void CalcHash() + { + byte[] part = Framework.Cryptography.HashAlgorithm.SHA1.Hash(_part1, _part2, _part3); + _part2 = part; + _alreadyTaken = 0; + } + } } } From ae93dee441d106fb5f65436d257bc529b1d85d27 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Thu, 25 May 2023 21:08:50 +0800 Subject: [PATCH 03/11] fix bug --- HermesProxy/CSV.cs | 2705 +++++++++++++++++++++++ HermesProxy/World/Client/WorldClient.cs | 50 +- 2 files changed, 2754 insertions(+), 1 deletion(-) create mode 100644 HermesProxy/CSV.cs diff --git a/HermesProxy/CSV.cs b/HermesProxy/CSV.cs new file mode 100644 index 00000000..e7639e32 --- /dev/null +++ b/HermesProxy/CSV.cs @@ -0,0 +1,2705 @@ +namespace HermesProxy; + +public static class CSV +{ + public struct BinaryFix + { + public struct Fix + { + public byte[] Actual; + + public byte[] Accept; + + public byte[] Buffer; + + public byte[] Checksum; + } + + public byte[] Expected; + + public Fix[] Fixes; + } + + public static BinaryFix[] KnownFixes = new BinaryFix[1] + { + new BinaryFix + { + Expected = new byte[16] + { + 13, 187, 242, 9, 162, 123, 30, 39, 154, 159, + 236, 92, 22, 138, 21, 247 + }, + Fixes = new BinaryFix.Fix[116] + { + new BinaryFix.Fix + { + Actual = new byte[16] + { + 73, 97, 203, 44, 35, 29, 254, 160, 224, 221, + 30, 97, 118, 206, 116, 38 + }, + Accept = new byte[20] + { + 130, 166, 204, 218, 128, 124, 89, 251, 100, 197, + 13, 208, 99, 71, 83, 199, 33, 230, 104, 106 + }, + Buffer = new byte[16] + { + 166, 223, 102, 242, 225, 215, 252, 107, 2, 29, + 80, 102, 254, 27, 215, 146 + }, + Checksum = new byte[16] + { + 73, 97, 203, 44, 159, 146, 251, 54, 36, 92, + 129, 107, 230, 139, 188, 252 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 16, 125, 39, 9, 181, 237, 2, 56, 36, 231, + 120, 237, 3, 145, 229, 160 + }, + Accept = new byte[20] + { + 202, 253, 59, 250, 154, 47, 79, 185, 98, 69, + 15, 250, 74, 146, 24, 116, 23, 179, 42, 42 + }, + Buffer = new byte[16] + { + 255, 195, 138, 215, 115, 168, 1, 3, 70, 38, + 170, 242, 39, 45, 64, 196 + }, + Checksum = new byte[16] + { + 16, 125, 39, 9, 49, 99, 0, 206, 104, 101, + 219, 247, 251, 218, 247, 185 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 57, 66, 23, 123, 153, 149, 13, 14, 192, 188, + 254, 68, 64, 23, 158, 149 + }, + Accept = new byte[20] + { + 242, 82, 111, 61, 78, 12, 190, 222, 122, 1, + 8, 173, 131, 220, 177, 37, 198, 5, 129, 77 + }, + Buffer = new byte[16] + { + 214, 252, 186, 165, 87, 80, 12, 217, 226, 251, + 47, 74, 64, 46, 147, 141 + }, + Checksum = new byte[16] + { + 57, 66, 23, 123, 21, 11, 11, 164, 4, 59, + 97, 79, 64, 89, 149, 219 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 254, 5, 156, 126, 216, 251, 111, 46, 139, 211, + 82, 131, 212, 102, 141, 52 + }, + Accept = new byte[20] + { + 140, 166, 58, 11, 49, 163, 254, 51, 206, 47, + 176, 224, 115, 193, 58, 36, 63, 64, 68, 51 + }, + Buffer = new byte[16] + { + 17, 187, 49, 160, 150, 182, 110, 249, 173, 18, + 132, 136, 196, 248, 32, 15 + }, + Checksum = new byte[16] + { + 254, 5, 156, 126, 84, 113, 109, 196, 207, 81, + 181, 141, 244, 97, 0, 172 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 214, 92, 247, 80, 188, 67, 185, 231, 159, 223, + 84, 6, 170, 193, 230, 233 + }, + Accept = new byte[20] + { + 204, 17, 99, 153, 157, 132, 95, 3, 60, 137, + 191, 242, 15, 179, 201, 134, 22, 93, 40, 36 + }, + Buffer = new byte[16] + { + 57, 226, 90, 142, 122, 254, 183, 178, 193, 30, + 134, 11, 162, 53, 205, 111 + }, + Checksum = new byte[16] + { + 214, 92, 247, 80, 56, 185, 182, 125, 227, 93, + 183, 16, 58, 153, 129, 155 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 124, 27, 169, 109, 205, 211, 188, 196, 85, 214, + 38, 108, 233, 175, 24, 98 + }, + Accept = new byte[20] + { + 137, 29, 42, 211, 52, 166, 112, 74, 63, 38, + 19, 26, 38, 13, 51, 240, 122, 155, 43, 107 + }, + Buffer = new byte[16] + { + 147, 165, 4, 179, 139, 142, 187, 143, 119, 21, + 88, 113, 213, 94, 58, 54 + }, + Checksum = new byte[16] + { + 124, 27, 169, 109, 73, 73, 186, 90, 153, 84, + 137, 118, 209, 128, 161, 168 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 232, 88, 114, 147, 213, 80, 137, 147, 69, 237, + 39, 145, 252, 244, 212, 139 + }, + Accept = new byte[20] + { + 68, 120, 224, 4, 131, 2, 114, 249, 192, 75, + 144, 148, 148, 44, 77, 136, 123, 201, 99, 44 + }, + Buffer = new byte[16] + { + 7, 230, 223, 77, 147, 11, 136, 94, 103, 44, + 89, 150, 204, 176, 160, 21 + }, + Checksum = new byte[16] + { + 232, 88, 114, 147, 81, 198, 134, 41, 137, 107, + 138, 155, 92, 58, 188, 222 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 83, 103, 84, 190, 221, 158, 113, 97, 73, 153, + 251, 146, 138, 149, 12, 145 + }, + Accept = new byte[20] + { + 204, 123, 123, 103, 194, 39, 216, 192, 119, 147, + 60, 184, 144, 19, 126, 235, 60, 123, 79, 3 + }, + Buffer = new byte[16] + { + 188, 217, 249, 96, 155, 89, 112, 44, 107, 216, + 44, 152, 2, 248, 122, 136 + }, + Checksum = new byte[16] + { + 83, 103, 84, 190, 89, 20, 111, 247, 141, 23, + 94, 157, 26, 120, 46, 165 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 54, 221, 144, 44, 44, 227, 5, 122, 122, 143, + 128, 204, 126, 215, 241, 225 + }, + Accept = new byte[20] + { + 167, 34, 249, 44, 244, 177, 168, 173, 104, 73, + 162, 192, 75, 27, 185, 114, 1, 28, 59, 95 + }, + Buffer = new byte[16] + { + 217, 99, 61, 242, 234, 157, 4, 69, 156, 206, + 177, 209, 102, 17, 96, 217 + }, + Checksum = new byte[16] + { + 54, 221, 144, 44, 168, 88, 3, 16, 190, 13, + 227, 214, 46, 130, 26, 105 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 75, 144, 167, 89, 77, 132, 23, 108, 49, 196, + 217, 220, 255, 64, 243, 40 + }, + Accept = new byte[20] + { + 131, 74, 157, 173, 137, 116, 249, 167, 11, 210, + 197, 208, 207, 251, 211, 106, 150, 10, 160, 46 + }, + Buffer = new byte[16] + { + 164, 46, 10, 135, 11, 63, 22, 55, 83, 3, + 11, 226, 243, 92, 18, 5 + }, + Checksum = new byte[16] + { + 75, 144, 167, 89, 201, 249, 20, 2, 117, 66, + 60, 231, 87, 136, 71, 122 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 137, 148, 90, 3, 9, 37, 182, 4, 6, 109, + 102, 159, 119, 147, 196, 84 + }, + Accept = new byte[20] + { + 84, 244, 58, 195, 139, 120, 189, 131, 129, 226, + 248, 194, 86, 168, 2, 200, 13, 215, 97, 35 + }, + Buffer = new byte[16] + { + 102, 42, 247, 221, 199, 223, 180, 207, 40, 172, + 151, 164, 11, 13, 204, 27 + }, + Checksum = new byte[16] + { + 137, 148, 90, 3, 133, 154, 179, 154, 74, 235, + 200, 169, 143, 249, 243, 83 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 43, 63, 170, 38, 104, 172, 53, 79, 211, 255, + 200, 50, 143, 215, 84, 145 + }, + Accept = new byte[20] + { + 18, 141, 27, 74, 177, 205, 209, 83, 35, 31, + 183, 126, 203, 202, 231, 94, 20, 136, 14, 41 + }, + Buffer = new byte[16] + { + 196, 129, 7, 248, 38, 103, 52, 26, 245, 62, + 250, 55, 67, 2, 30, 216 + }, + Checksum = new byte[16] + { + 43, 63, 170, 38, 228, 33, 51, 229, 23, 126, + 43, 61, 103, 237, 9, 145 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 169, 37, 215, 180, 62, 35, 154, 176, 46, 225, + 242, 49, 79, 213, 77, 189 + }, + Accept = new byte[20] + { + 226, 247, 12, 99, 88, 58, 74, 118, 218, 200, + 178, 251, 208, 149, 1, 32, 248, 101, 63, 80 + }, + Buffer = new byte[16] + { + 70, 155, 122, 106, 252, 221, 152, 123, 80, 32, + 36, 55, 3, 229, 230, 69 + }, + Checksum = new byte[16] + { + 169, 37, 215, 180, 186, 152, 151, 70, 114, 95, + 85, 60, 39, 113, 17, 112 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 27, 100, 14, 117, 63, 83, 113, 247, 240, 209, + 124, 132, 130, 184, 51, 94 + }, + Accept = new byte[20] + { + 142, 108, 228, 223, 96, 70, 206, 250, 28, 151, + 238, 45, 254, 137, 240, 250, 241, 95, 153, 73 + }, + Buffer = new byte[16] + { + 244, 218, 163, 171, 253, 13, 112, 194, 18, 17, + 174, 137, 154, 62, 136, 143 + }, + Checksum = new byte[16] + { + 27, 100, 14, 117, 187, 200, 110, 141, 52, 80, + 223, 142, 210, 141, 177, 229 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 55, 16, 12, 116, 85, 213, 162, 65, 123, 249, + 173, 242, 52, 173, 50, 199 + }, + Accept = new byte[20] + { + 41, 174, 50, 148, 208, 189, 208, 88, 5, 86, + 67, 216, 96, 120, 130, 102, 100, 76, 169, 180 + }, + Buffer = new byte[16] + { + 216, 174, 161, 170, 19, 144, 161, 12, 157, 56, + 223, 247, 164, 139, 31, 178 + }, + Checksum = new byte[16] + { + 55, 16, 12, 116, 209, 74, 160, 215, 191, 119, + 16, 253, 84, 215, 191, 202 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 205, 221, 247, 187, 100, 249, 58, 103, 66, 251, + 162, 36, 107, 166, 118, 112 + }, + Accept = new byte[20] + { + 53, 162, 74, 235, 111, 109, 28, 185, 215, 135, + 234, 53, 147, 79, 237, 181, 252, 80, 62, 155 + }, + Buffer = new byte[16] + { + 34, 99, 90, 101, 34, 180, 57, 50, 100, 58, + 212, 41, 111, 195, 7, 164 + }, + Checksum = new byte[16] + { + 205, 221, 247, 187, 224, 110, 56, 253, 134, 121, + 5, 47, 163, 252, 117, 213 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 114, 11, 13, 147, 146, 82, 134, 130, 251, 183, + 185, 3, 106, 211, 108, 18 + }, + Accept = new byte[20] + { + 56, 104, 42, 190, 137, 212, 39, 65, 97, 229, + 239, 29, 239, 106, 110, 40, 32, 33, 7, 163 + }, + Buffer = new byte[16] + { + 157, 181, 160, 77, 80, 13, 133, 77, 29, 247, + 234, 8, 98, 28, 128, 63 + }, + Checksum = new byte[16] + { + 114, 11, 13, 147, 14, 200, 131, 24, 63, 54, + 28, 14, 250, 80, 43, 179 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 252, 29, 203, 131, 68, 176, 18, 234, 155, 79, + 141, 184, 183, 166, 194, 166 + }, + Accept = new byte[20] + { + 173, 146, 64, 17, 162, 186, 116, 32, 107, 193, + 57, 217, 64, 103, 190, 84, 82, 50, 59, 231 + }, + Buffer = new byte[16] + { + 19, 163, 102, 93, 2, 107, 17, 181, 189, 142, + 190, 189, 75, 7, 127, 90 + }, + Checksum = new byte[16] + { + 252, 29, 203, 131, 192, 37, 16, 128, 223, 205, + 239, 194, 207, 174, 102, 209 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 128, 210, 237, 87, 30, 36, 172, 56, 87, 34, + 252, 172, 24, 207, 100, 102 + }, + Accept = new byte[20] + { + 13, 229, 144, 101, 201, 80, 243, 102, 201, 73, + 190, 124, 237, 142, 238, 173, 117, 95, 58, 195 + }, + Buffer = new byte[16] + { + 111, 108, 64, 137, 220, 222, 170, 3, 121, 97, + 45, 178, 56, 4, 109, 251 + }, + Checksum = new byte[16] + { + 128, 210, 237, 87, 154, 153, 169, 206, 155, 160, + 94, 183, 216, 182, 133, 8 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 81, 45, 112, 21, 6, 255, 97, 71, 164, 211, + 35, 135, 145, 64, 127, 201 + }, + Accept = new byte[20] + { + 177, 38, 13, 92, 164, 249, 129, 113, 196, 29, + 220, 252, 220, 13, 181, 124, 55, 181, 229, 24 + }, + Buffer = new byte[16] + { + 190, 147, 221, 203, 196, 185, 96, 18, 198, 18, + 85, 140, 93, 55, 37, 42 + }, + Checksum = new byte[16] + { + 81, 45, 112, 21, 130, 116, 95, 221, 232, 81, + 134, 145, 185, 255, 197, 211 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 6, 109, 146, 9, 33, 210, 126, 46, 54, 67, + 95, 52, 103, 42, 129, 138 + }, + Accept = new byte[20] + { + 207, 242, 249, 108, 7, 96, 27, 12, 89, 31, + 138, 155, 154, 183, 145, 218, 131, 235, 94, 174 + }, + Buffer = new byte[16] + { + 233, 211, 63, 215, 223, 140, 125, 249, 88, 130, + 144, 57, 59, 183, 112, 225 + }, + Checksum = new byte[16] + { + 6, 109, 146, 9, 157, 71, 124, 196, 122, 193, + 193, 62, 255, 157, 45, 221 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 116, 20, 208, 185, 212, 111, 143, 71, 4, 145, + 77, 219, 31, 253, 21, 161 + }, + Accept = new byte[20] + { + 71, 154, 160, 145, 32, 164, 224, 251, 70, 66, + 106, 11, 167, 185, 7, 94, 15, 220, 248, 189 + }, + Buffer = new byte[16] + { + 155, 170, 125, 103, 146, 42, 142, 18, 38, 208, + 126, 224, 147, 234, 19, 122 + }, + Checksum = new byte[16] + { + 116, 20, 208, 185, 80, 229, 140, 221, 72, 15, + 176, 229, 119, 185, 129, 45 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 175, 226, 230, 240, 194, 229, 98, 43, 65, 32, + 202, 229, 126, 107, 42, 72 + }, + Accept = new byte[20] + { + 18, 32, 170, 210, 29, 65, 202, 166, 228, 163, + 33, 152, 26, 57, 218, 174, 133, 103, 61, 66 + }, + Buffer = new byte[16] + { + 64, 92, 75, 46, 128, 160, 97, 246, 99, 95, + 251, 234, 102, 149, 255, 224 + }, + Checksum = new byte[16] + { + 175, 226, 230, 240, 62, 91, 96, 193, 133, 158, + 44, 240, 46, 54, 244, 179 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 12, 218, 209, 183, 211, 135, 4, 178, 99, 145, + 244, 250, 137, 100, 237, 246 + }, + Accept = new byte[20] + { + 212, 14, 115, 246, 46, 60, 104, 251, 14, 218, + 76, 38, 78, 59, 223, 96, 17, 168, 179, 15 + }, + Buffer = new byte[16] + { + 227, 100, 124, 105, 145, 66, 3, 125, 133, 208, + 37, 0, 245, 138, 189, 220 + }, + Checksum = new byte[16] + { + 12, 218, 209, 183, 79, 253, 1, 72, 167, 15, + 87, 5, 113, 190, 136, 241 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 32, 59, 207, 86, 42, 228, 194, 246, 32, 195, + 38, 5, 134, 26, 201, 102 + }, + Accept = new byte[20] + { + 237, 156, 235, 112, 67, 116, 192, 175, 10, 235, + 163, 114, 71, 185, 47, 126, 103, 42, 246, 200 + }, + Buffer = new byte[16] + { + 207, 133, 98, 136, 232, 158, 193, 193, 66, 2, + 88, 10, 206, 248, 221, 101 + }, + Checksum = new byte[16] + { + 32, 59, 207, 86, 166, 89, 192, 140, 100, 65, + 137, 15, 118, 194, 200, 3 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 193, 136, 93, 86, 45, 207, 41, 80, 107, 218, + 254, 45, 248, 254, 109, 144 + }, + Accept = new byte[20] + { + 12, 146, 240, 38, 203, 31, 76, 104, 204, 25, + 198, 141, 237, 63, 89, 69, 219, 177, 141, 23 + }, + Buffer = new byte[16] + { + 46, 54, 240, 136, 235, 137, 40, 27, 141, 25, + 48, 51, 152, 114, 230, 163 + }, + Checksum = new byte[16] + { + 193, 136, 93, 86, 169, 68, 39, 230, 175, 88, + 97, 56, 184, 81, 202, 68 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 4, 128, 55, 129, 129, 87, 5, 88, 122, 52, + 89, 221, 166, 192, 197, 173 + }, + Accept = new byte[20] + { + 138, 40, 230, 197, 241, 160, 188, 46, 205, 81, + 96, 230, 129, 196, 52, 123, 143, 244, 22, 110 + }, + Buffer = new byte[16] + { + 235, 62, 154, 95, 63, 18, 4, 35, 156, 115, + 138, 226, 110, 104, 80, 237 + }, + Checksum = new byte[16] + { + 4, 128, 55, 129, 253, 204, 2, 238, 190, 178, + 187, 231, 150, 109, 158, 8 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 61, 36, 91, 224, 10, 207, 100, 232, 194, 115, + 85, 188, 148, 81, 254, 55 + }, + Accept = new byte[20] + { + 234, 160, 112, 194, 22, 132, 75, 39, 81, 193, + 54, 20, 164, 186, 194, 1, 66, 231, 4, 178 + }, + Buffer = new byte[16] + { + 210, 154, 246, 62, 200, 137, 99, 179, 228, 178, + 134, 193, 132, 228, 48, 199 + }, + Checksum = new byte[16] + { + 61, 36, 91, 224, 134, 68, 98, 126, 6, 242, + 183, 198, 180, 90, 19, 216 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 1, 183, 5, 186, 238, 199, 147, 25, 247, 121, + 77, 181, 7, 228, 134, 229 + }, + Accept = new byte[20] + { + 195, 62, 191, 84, 241, 151, 208, 227, 221, 246, + 205, 125, 161, 214, 44, 81, 145, 37, 124, 163 + }, + Buffer = new byte[16] + { + 238, 9, 168, 100, 172, 130, 146, 228, 25, 185, + 126, 186, 91, 36, 33, 160 + }, + Checksum = new byte[16] + { + 1, 183, 5, 186, 106, 61, 145, 175, 59, 248, + 175, 191, 159, 40, 81, 196 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 37, 185, 178, 155, 145, 16, 30, 68, 16, 103, + 223, 239, 132, 231, 9, 178 + }, + Accept = new byte[20] + { + 3, 140, 197, 121, 97, 11, 144, 42, 141, 40, + 128, 107, 145, 94, 102, 230, 154, 248, 22, 119 + }, + Buffer = new byte[16] + { + 202, 7, 31, 69, 79, 203, 28, 15, 50, 166, + 16, 245, 180, 129, 232, 220 + }, + Checksum = new byte[16] + { + 37, 185, 178, 155, 13, 134, 27, 218, 84, 229, + 65, 250, 36, 86, 19, 107 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 191, 234, 33, 73, 153, 187, 212, 1, 64, 156, + 232, 213, 208, 14, 116, 214 + }, + Accept = new byte[20] + { + 63, 14, 50, 109, 212, 39, 32, 140, 194, 61, + 187, 206, 200, 230, 195, 18, 157, 157, 236, 71 + }, + Buffer = new byte[16] + { + 80, 84, 140, 151, 87, 118, 211, 204, 98, 219, + 25, 219, 144, 192, 119, 80 + }, + Checksum = new byte[16] + { + 191, 234, 33, 73, 21, 49, 210, 151, 132, 26, + 75, 224, 80, 199, 139, 105 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 36, 76, 76, 208, 235, 25, 192, 42, 254, 187, + 134, 14, 241, 72, 244, 202 + }, + Accept = new byte[20] + { + 252, 209, 197, 238, 109, 177, 11, 254, 175, 87, + 14, 129, 215, 33, 126, 173, 60, 146, 18, 146 + }, + Buffer = new byte[16] + { + 203, 242, 225, 14, 169, 212, 190, 245, 32, 251, + 183, 19, 61, 164, 144, 225 + }, + Checksum = new byte[16] + { + 36, 76, 76, 208, 103, 143, 189, 192, 66, 58, + 233, 24, 25, 135, 108, 222 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 231, 32, 114, 118, 171, 187, 48, 215, 253, 165, + 20, 132, 42, 198, 247, 71 + }, + Accept = new byte[20] + { + 179, 71, 239, 242, 7, 206, 17, 208, 69, 149, + 3, 166, 134, 130, 146, 183, 168, 156, 12, 120 + }, + Buffer = new byte[16] + { + 8, 158, 223, 168, 105, 118, 47, 162, 31, 229, + 69, 137, 34, 112, 98, 162 + }, + Checksum = new byte[16] + { + 231, 32, 114, 118, 39, 49, 46, 109, 65, 36, + 119, 142, 186, 145, 109, 37 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 224, 231, 16, 198, 63, 114, 176, 99, 51, 121, + 48, 96, 2, 250, 40, 71 + }, + Accept = new byte[20] + { + 246, 8, 135, 93, 247, 216, 233, 184, 210, 226, + 201, 205, 44, 216, 148, 92, 91, 109, 18, 12 + }, + Buffer = new byte[16] + { + 15, 89, 189, 24, 253, 44, 175, 46, 85, 184, + 97, 101, 26, 146, 228, 227 + }, + Checksum = new byte[16] + { + 224, 231, 16, 198, 187, 231, 173, 249, 119, 247, + 146, 106, 82, 203, 41, 45 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 33, 98, 226, 137, 76, 79, 15, 101, 213, 154, + 184, 11, 61, 149, 119, 2 + }, + Accept = new byte[20] + { + 218, 239, 36, 134, 230, 248, 63, 117, 103, 89, + 132, 147, 31, 166, 75, 3, 99, 93, 132, 26 + }, + Buffer = new byte[16] + { + 206, 220, 79, 87, 10, 10, 14, 48, 247, 217, + 233, 16, 25, 196, 22, 211 + }, + Checksum = new byte[16] + { + 33, 98, 226, 137, 200, 196, 12, 251, 25, 25, + 27, 22, 69, 101, 94, 12 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 1, 145, 230, 199, 182, 164, 88, 183, 88, 169, + 199, 46, 224, 135, 14, 241 + }, + Accept = new byte[20] + { + 136, 181, 3, 90, 97, 166, 39, 184, 113, 28, + 74, 74, 68, 35, 34, 32, 19, 145, 192, 82 + }, + Buffer = new byte[16] + { + 238, 47, 75, 25, 116, 95, 87, 130, 122, 232, + 248, 51, 96, 230, 62, 174 + }, + Checksum = new byte[16] + { + 1, 145, 230, 199, 50, 26, 86, 77, 156, 39, + 42, 57, 224, 178, 203, 111 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 20, 183, 88, 201, 163, 217, 113, 113, 133, 188, + 178, 48, 2, 92, 205, 48 + }, + Accept = new byte[20] + { + 16, 248, 9, 46, 143, 160, 235, 95, 72, 46, + 255, 175, 108, 201, 128, 9, 193, 2, 88, 87 + }, + Buffer = new byte[16] + { + 251, 9, 245, 23, 97, 148, 112, 60, 167, 251, + 227, 53, 26, 140, 29, 235 + }, + Checksum = new byte[16] + { + 20, 183, 88, 201, 31, 79, 111, 7, 201, 58, + 21, 59, 82, 125, 110, 171 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 83, 182, 25, 120, 54, 31, 237, 21, 81, 50, + 192, 178, 119, 13, 143, 105 + }, + Accept = new byte[20] + { + 239, 140, 47, 246, 232, 34, 104, 175, 173, 210, + 0, 232, 90, 125, 151, 113, 117, 202, 17, 47 + }, + Buffer = new byte[16] + { + 188, 8, 180, 166, 244, 217, 235, 224, 115, 113, + 241, 183, 11, 63, 116, 50 + }, + Checksum = new byte[16] + { + 83, 182, 25, 120, 178, 148, 234, 171, 149, 176, + 34, 189, 143, 131, 94, 231 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 39, 189, 128, 217, 85, 246, 196, 121, 109, 7, + 193, 43, 150, 14, 113, 21 + }, + Accept = new byte[20] + { + 148, 243, 254, 220, 120, 237, 243, 230, 225, 75, + 6, 162, 217, 53, 177, 65, 100, 56, 209, 101 + }, + Buffer = new byte[16] + { + 200, 3, 45, 7, 19, 177, 195, 68, 143, 70, + 242, 48, 158, 93, 164, 88 + }, + Checksum = new byte[16] + { + 39, 189, 128, 217, 209, 107, 194, 15, 177, 133, + 35, 54, 6, 225, 14, 111 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 52, 104, 5, 172, 176, 108, 207, 17, 123, 89, + 94, 161, 80, 140, 235, 200 + }, + Accept = new byte[20] + { + 146, 236, 13, 17, 56, 202, 146, 166, 85, 202, + 32, 74, 27, 100, 199, 54, 8, 121, 128, 218 + }, + Buffer = new byte[16] + { + 219, 214, 168, 114, 110, 39, 206, 220, 157, 152, + 143, 166, 16, 32, 177, 28 + }, + Checksum = new byte[16] + { + 52, 104, 5, 172, 44, 226, 204, 167, 191, 215, + 192, 171, 208, 160, 125, 150 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 186, 247, 244, 21, 215, 206, 38, 148, 91, 131, + 128, 88, 215, 245, 182, 87 + }, + Accept = new byte[20] + { + 69, 168, 160, 241, 40, 243, 21, 254, 94, 89, + 236, 120, 230, 238, 220, 81, 191, 110, 2, 77 + }, + Buffer = new byte[16] + { + 85, 73, 89, 203, 149, 137, 37, 95, 125, 194, + 177, 93, 235, 11, 245, 192 + }, + Checksum = new byte[16] + { + 186, 247, 244, 21, 83, 68, 36, 42, 159, 1, + 227, 98, 239, 234, 26, 136 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 60, 229, 211, 123, 155, 169, 35, 245, 46, 36, + 80, 213, 156, 245, 203, 215 + }, + Accept = new byte[20] + { + 59, 253, 177, 98, 158, 191, 174, 135, 141, 123, + 126, 47, 224, 23, 37, 217, 123, 85, 113, 214 + }, + Buffer = new byte[16] + { + 211, 91, 126, 165, 89, 100, 34, 192, 80, 99, + 129, 218, 236, 184, 33, 132 + }, + Checksum = new byte[16] + { + 60, 229, 211, 123, 23, 31, 33, 139, 114, 162, + 178, 223, 252, 163, 199, 145 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 121, 239, 109, 128, 12, 201, 95, 106, 86, 23, + 55, 221, 79, 121, 99, 158 + }, + Accept = new byte[20] + { + 82, 199, 202, 211, 42, 92, 141, 255, 44, 117, + 135, 113, 129, 192, 107, 15, 200, 5, 5, 229 + }, + Buffer = new byte[16] + { + 150, 81, 192, 94, 202, 131, 94, 53, 120, 86, + 104, 226, 3, 57, 192, 57 + }, + Checksum = new byte[16] + { + 121, 239, 109, 128, 136, 62, 93, 0, 154, 149, + 153, 231, 39, 181, 218, 156 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 115, 19, 203, 12, 125, 61, 178, 104, 115, 123, + 221, 117, 226, 175, 248, 65 + }, + Accept = new byte[20] + { + 184, 30, 77, 38, 50, 64, 203, 134, 219, 141, + 242, 235, 207, 230, 122, 95, 92, 33, 103, 121 + }, + Buffer = new byte[16] + { + 156, 173, 102, 210, 59, 248, 176, 51, 149, 186, + 14, 123, 122, 206, 18, 14 + }, + Checksum = new byte[16] + { + 115, 19, 203, 12, 249, 178, 175, 254, 183, 249, + 63, 128, 50, 220, 188, 194 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 107, 141, 53, 66, 126, 80, 54, 164, 102, 171, + 45, 226, 134, 3, 66, 148 + }, + Accept = new byte[20] + { + 193, 64, 147, 117, 236, 189, 155, 243, 9, 62, + 57, 4, 41, 101, 199, 95, 173, 93, 38, 76 + }, + Buffer = new byte[16] + { + 132, 51, 152, 156, 60, 11, 53, 111, 136, 234, + 94, 231, 206, 205, 113, 30 + }, + Checksum = new byte[16] + { + 107, 141, 53, 66, 250, 197, 51, 58, 170, 41, + 144, 236, 118, 147, 250, 189 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 226, 219, 53, 136, 225, 144, 68, 19, 81, 70, + 79, 169, 171, 34, 58, 172 + }, + Accept = new byte[20] + { + 191, 75, 172, 53, 52, 30, 91, 216, 57, 197, + 219, 244, 45, 2, 32, 152, 216, 82, 59, 59 + }, + Buffer = new byte[16] + { + 13, 101, 152, 86, 159, 75, 67, 222, 115, 133, + 128, 174, 175, 18, 49, 99 + }, + Checksum = new byte[16] + { + 226, 219, 53, 136, 93, 6, 66, 169, 149, 196, + 177, 179, 227, 2, 155, 11 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 152, 186, 147, 130, 181, 201, 116, 234, 147, 40, + 171, 144, 3, 249, 25, 223 + }, + Accept = new byte[20] + { + 146, 8, 138, 11, 63, 150, 216, 8, 24, 113, + 32, 74, 235, 50, 131, 134, 238, 71, 30, 245 + }, + Buffer = new byte[16] + { + 119, 4, 62, 92, 115, 132, 115, 181, 181, 103, + 220, 149, 39, 117, 105, 102 + }, + Checksum = new byte[16] + { + 152, 186, 147, 130, 49, 63, 114, 128, 215, 166, + 13, 155, 251, 130, 144, 33 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 144, 37, 88, 22, 76, 10, 161, 158, 208, 109, + 236, 155, 126, 182, 88, 193 + }, + Accept = new byte[20] + { + 127, 13, 252, 114, 38, 98, 214, 121, 101, 203, + 59, 139, 227, 174, 107, 158, 215, 158, 125, 254 + }, + Buffer = new byte[16] + { + 127, 155, 245, 200, 10, 197, 159, 105, 242, 172, + 29, 161, 102, 100, 169, 139 + }, + Checksum = new byte[16] + { + 144, 37, 88, 22, 200, 127, 158, 52, 20, 236, + 78, 166, 46, 185, 163, 9 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 9, 92, 206, 104, 56, 158, 225, 227, 230, 116, + 249, 14, 78, 197, 177, 39 + }, + Accept = new byte[20] + { + 9, 244, 110, 235, 85, 159, 154, 63, 95, 85, + 21, 237, 144, 42, 2, 59, 63, 235, 220, 176 + }, + Buffer = new byte[16] + { + 230, 226, 99, 182, 246, 88, 224, 174, 8, 180, + 42, 20, 246, 36, 194, 218 + }, + Checksum = new byte[16] + { + 9, 92, 206, 104, 180, 19, 223, 121, 42, 243, + 91, 25, 126, 128, 92, 81 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 133, 218, 125, 223, 72, 19, 144, 176, 248, 216, + 253, 112, 227, 211, 28, 39 + }, + Accept = new byte[20] + { + 138, 173, 152, 88, 169, 149, 211, 209, 28, 206, + 77, 155, 92, 216, 222, 250, 207, 142, 16, 176 + }, + Buffer = new byte[16] + { + 106, 100, 208, 1, 6, 206, 142, 123, 26, 24, + 47, 118, 135, 146, 224, 97 + }, + Checksum = new byte[16] + { + 133, 218, 125, 223, 196, 136, 141, 70, 60, 87, + 96, 123, 219, 0, 199, 1 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 197, 92, 47, 30, 143, 53, 69, 56, 102, 120, + 95, 133, 239, 205, 210, 21 + }, + Accept = new byte[20] + { + 87, 250, 72, 115, 231, 17, 210, 226, 142, 141, + 136, 238, 141, 5, 139, 48, 117, 153, 136, 97 + }, + Buffer = new byte[16] + { + 42, 226, 130, 192, 77, 240, 67, 3, 136, 183, + 144, 138, 35, 133, 29, 184 + }, + Checksum = new byte[16] + { + 197, 92, 47, 30, 11, 171, 66, 206, 170, 246, + 193, 143, 199, 146, 213, 57 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 202, 224, 236, 10, 92, 19, 218, 241, 210, 112, + 201, 83, 98, 225, 76, 134 + }, + Accept = new byte[20] + { + 194, 104, 146, 61, 111, 223, 69, 56, 173, 64, + 185, 218, 106, 126, 164, 143, 87, 173, 6, 212 + }, + Buffer = new byte[16] + { + 37, 94, 65, 212, 26, 206, 216, 188, 244, 175, + 250, 88, 250, 81, 65, 151 + }, + Checksum = new byte[16] + { + 202, 224, 236, 10, 216, 136, 215, 135, 22, 239, + 43, 94, 178, 137, 225, 21 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 212, 163, 254, 201, 66, 248, 104, 145, 28, 28, + 37, 29, 110, 123, 67, 80 + }, + Accept = new byte[20] + { + 22, 49, 118, 121, 59, 162, 48, 154, 122, 167, + 0, 162, 59, 162, 43, 155, 170, 207, 236, 125 + }, + Buffer = new byte[16] + { + 59, 29, 83, 23, 0, 179, 103, 92, 62, 91, + 86, 34, 150, 100, 198, 5 + }, + Checksum = new byte[16] + { + 212, 163, 254, 201, 190, 109, 102, 39, 96, 154, + 135, 39, 158, 187, 153, 7 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 102, 33, 237, 192, 17, 114, 71, 11, 101, 27, + 154, 106, 132, 72, 177, 136 + }, + Accept = new byte[20] + { + 239, 143, 172, 32, 13, 111, 208, 72, 204, 55, + 251, 213, 61, 242, 79, 5, 86, 125, 68, 211 + }, + Buffer = new byte[16] + { + 137, 159, 64, 30, 207, 44, 70, 214, 135, 90, + 203, 111, 180, 110, 88, 133 + }, + Checksum = new byte[16] + { + 102, 33, 237, 192, 141, 231, 68, 161, 169, 153, + 252, 116, 36, 95, 242, 209 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 63, 24, 131, 148, 217, 77, 18, 148, 14, 73, + 146, 253, 84, 54, 206, 129 + }, + Accept = new byte[20] + { + 194, 49, 17, 135, 94, 24, 41, 227, 141, 226, + 225, 148, 249, 255, 89, 239, 127, 230, 108, 122 + }, + Buffer = new byte[16] + { + 208, 166, 46, 74, 151, 8, 17, 95, 48, 136, + 195, 2, 68, 130, 115, 210 + }, + Checksum = new byte[16] + { + 63, 24, 131, 148, 85, 195, 15, 42, 82, 199, + 244, 7, 116, 93, 153, 2 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 97, 132, 200, 41, 237, 152, 159, 163, 185, 194, + 182, 221, 208, 112, 19, 211 + }, + Accept = new byte[20] + { + 45, 125, 110, 24, 115, 141, 220, 42, 124, 225, + 175, 148, 33, 125, 234, 181, 41, 188, 121, 121 + }, + Buffer = new byte[16] + { + 142, 58, 101, 247, 171, 83, 158, 110, 219, 1, + 232, 226, 144, 186, 111, 158 + }, + Checksum = new byte[16] + { + 97, 132, 200, 41, 105, 14, 157, 57, 253, 64, + 25, 232, 80, 121, 131, 143 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 13, 162, 5, 165, 221, 158, 10, 236, 70, 229, + 239, 78, 41, 101, 57, 80 + }, + Accept = new byte[20] + { + 16, 88, 66, 144, 73, 119, 155, 38, 57, 250, + 228, 74, 71, 15, 6, 183, 20, 14, 58, 100 + }, + Buffer = new byte[16] + { + 226, 28, 168, 123, 155, 89, 9, 183, 104, 36, + 33, 84, 21, 147, 143, 168 + }, + Checksum = new byte[16] + { + 13, 162, 5, 165, 89, 20, 8, 130, 138, 99, + 82, 89, 17, 40, 177, 81 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 196, 240, 196, 108, 122, 237, 170, 100, 215, 78, + 102, 213, 207, 194, 58, 15 + }, + Accept = new byte[20] + { + 236, 77, 232, 207, 74, 32, 40, 117, 202, 114, + 178, 40, 92, 21, 181, 103, 54, 165, 64, 71 + }, + Buffer = new byte[16] + { + 43, 78, 105, 178, 56, 168, 169, 47, 249, 141, + 151, 218, 131, 244, 22, 20 + }, + Checksum = new byte[16] + { + 196, 240, 196, 108, 246, 98, 168, 250, 27, 205, + 200, 223, 167, 58, 138, 203 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 70, 43, 206, 36, 214, 82, 25, 63, 204, 217, + 132, 55, 115, 114, 77, 100 + }, + Accept = new byte[20] + { + 103, 79, 144, 168, 47, 86, 115, 225, 232, 189, + 191, 21, 249, 8, 176, 143, 45, 251, 100, 135 + }, + Buffer = new byte[16] + { + 169, 149, 99, 250, 148, 13, 24, 10, 238, 24, + 182, 60, 215, 159, 239, 210 + }, + Checksum = new byte[16] + { + 70, 43, 206, 36, 82, 200, 22, 213, 16, 88, + 231, 65, 235, 173, 53, 168 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 150, 79, 42, 178, 64, 218, 48, 243, 198, 165, + 242, 122, 7, 164, 237, 229 + }, + Accept = new byte[20] + { + 124, 142, 177, 129, 184, 109, 72, 21, 60, 120, + 72, 160, 68, 211, 177, 146, 111, 208, 191, 137 + }, + Buffer = new byte[16] + { + 121, 241, 135, 108, 254, 148, 47, 190, 232, 228, + 35, 128, 91, 228, 88, 57 + }, + Checksum = new byte[16] + { + 150, 79, 42, 178, 188, 79, 46, 137, 10, 36, + 85, 133, 159, 232, 37, 16 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 243, 154, 36, 58, 74, 209, 7, 54, 166, 14, + 153, 225, 188, 196, 210, 102 + }, + Accept = new byte[20] + { + 33, 139, 40, 233, 83, 129, 110, 197, 249, 82, + 25, 42, 59, 173, 77, 4, 111, 123, 158, 186 + }, + Buffer = new byte[16] + { + 28, 36, 137, 228, 8, 140, 6, 1, 200, 77, + 202, 230, 140, 61, 136, 9 + }, + Checksum = new byte[16] + { + 243, 154, 36, 58, 198, 70, 5, 204, 234, 140, + 251, 235, 28, 96, 178, 210 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 223, 136, 66, 34, 198, 197, 248, 251, 142, 177, + 162, 243, 2, 127, 246, 252 + }, + Accept = new byte[20] + { + 208, 204, 159, 3, 25, 177, 249, 68, 255, 25, + 196, 157, 150, 204, 55, 218, 172, 111, 85, 180 + }, + Buffer = new byte[16] + { + 48, 54, 239, 252, 132, 128, 247, 198, 176, 240, + 211, 248, 26, 83, 4, 95 + }, + Checksum = new byte[16] + { + 223, 136, 66, 34, 66, 59, 246, 145, 210, 47, + 5, 254, 82, 152, 182, 169 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 27, 215, 80, 15, 195, 131, 156, 120, 222, 107, + 118, 116, 139, 195, 144, 253 + }, + Accept = new byte[20] + { + 127, 58, 121, 92, 216, 238, 222, 48, 38, 60, + 86, 0, 99, 187, 101, 156, 78, 164, 209, 7 + }, + Buffer = new byte[16] + { + 244, 105, 253, 209, 129, 62, 155, 67, 0, 171, + 167, 121, 15, 62, 137, 235 + }, + Checksum = new byte[16] + { + 27, 215, 80, 15, 63, 249, 153, 14, 34, 234, + 216, 126, 195, 54, 95, 18 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 167, 131, 84, 229, 148, 23, 203, 34, 56, 88, + 190, 105, 72, 188, 27, 254 + }, + Accept = new byte[20] + { + 11, 46, 108, 214, 94, 63, 213, 15, 39, 103, + 38, 139, 99, 169, 195, 61, 74, 221, 209, 130 + }, + Buffer = new byte[16] + { + 72, 61, 249, 59, 82, 210, 201, 237, 90, 151, + 239, 110, 168, 15, 100, 179 + }, + Checksum = new byte[16] + { + 167, 131, 84, 229, 16, 141, 200, 184, 124, 214, + 32, 116, 136, 75, 218, 191 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 198, 201, 153, 202, 200, 208, 159, 174, 124, 215, + 99, 23, 105, 215, 79, 210 + }, + Accept = new byte[20] + { + 83, 175, 140, 164, 218, 133, 82, 195, 8, 69, + 175, 47, 143, 224, 130, 215, 108, 214, 43, 151 + }, + Buffer = new byte[16] + { + 41, 119, 52, 20, 134, 139, 158, 121, 158, 22, + 149, 28, 85, 96, 143, 154 + }, + Checksum = new byte[16] + { + 198, 201, 153, 202, 68, 70, 157, 68, 192, 85, + 198, 33, 81, 148, 218, 68 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 247, 40, 168, 34, 50, 57, 113, 16, 203, 132, + 141, 3, 95, 193, 37, 144 + }, + Accept = new byte[20] + { + 66, 26, 110, 151, 64, 67, 24, 86, 56, 128, + 55, 189, 100, 49, 230, 70, 16, 6, 69, 107 + }, + Buffer = new byte[16] + { + 24, 150, 5, 252, 240, 243, 111, 219, 237, 195, + 190, 8, 211, 225, 156, 79 + }, + Checksum = new byte[16] + { + 247, 40, 168, 34, 174, 174, 110, 166, 15, 3, + 240, 13, 183, 71, 2, 76 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 252, 90, 73, 147, 226, 32, 218, 127, 134, 60, + 167, 242, 221, 104, 214, 141 + }, + Accept = new byte[20] + { + 43, 104, 6, 183, 102, 21, 144, 225, 101, 33, + 34, 120, 28, 99, 163, 230, 19, 239, 41, 4 + }, + Buffer = new byte[16] + { + 19, 228, 228, 77, 160, 219, 216, 74, 168, 123, + 216, 247, 57, 131, 173, 36 + }, + Checksum = new byte[16] + { + 252, 90, 73, 147, 94, 150, 215, 21, 202, 186, + 9, 253, 229, 25, 20, 244 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 214, 95, 134, 2, 41, 145, 178, 110, 79, 28, + 88, 234, 209, 248, 219, 92 + }, + Accept = new byte[20] + { + 87, 96, 40, 197, 236, 95, 96, 24, 154, 226, + 70, 218, 62, 13, 239, 184, 222, 123, 194, 30 + }, + Buffer = new byte[16] + { + 57, 225, 43, 220, 231, 75, 177, 57, 113, 91, + 137, 239, 157, 146, 86, 232 + }, + Checksum = new byte[16] + { + 214, 95, 134, 2, 165, 6, 176, 4, 147, 154, + 186, 244, 249, 161, 147, 28 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 198, 113, 167, 148, 151, 219, 19, 148, 6, 129, + 139, 46, 111, 222, 238, 213 + }, + Accept = new byte[20] + { + 222, 59, 211, 147, 149, 56, 137, 196, 78, 159, + 249, 11, 134, 138, 56, 143, 109, 29, 229, 86 + }, + Buffer = new byte[16] + { + 41, 207, 10, 74, 85, 150, 18, 95, 40, 192, + 188, 51, 163, 91, 130, 212 + }, + Checksum = new byte[16] + { + 198, 113, 167, 148, 19, 81, 17, 42, 74, 255, + 237, 56, 71, 119, 140, 201 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 77, 16, 53, 173, 255, 137, 86, 228, 205, 8, + 103, 69, 38, 199, 7, 10 + }, + Accept = new byte[20] + { + 56, 208, 254, 147, 153, 112, 89, 87, 105, 143, + 135, 92, 130, 158, 29, 255, 126, 91, 67, 54 + }, + Buffer = new byte[16] + { + 162, 174, 152, 115, 189, 68, 85, 175, 239, 71, + 152, 74, 238, 188, 66, 104 + }, + Checksum = new byte[16] + { + 77, 16, 53, 173, 123, 255, 83, 122, 17, 135, + 201, 79, 22, 184, 164, 29 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 43, 246, 250, 242, 114, 105, 19, 148, 3, 142, + 87, 243, 167, 161, 95, 82 + }, + Accept = new byte[20] + { + 127, 85, 184, 242, 54, 6, 173, 139, 123, 115, + 25, 217, 119, 160, 185, 250, 128, 30, 70, 200 + }, + Buffer = new byte[16] + { + 196, 72, 87, 44, 48, 36, 18, 95, 37, 205, + 136, 248, 123, 197, 72, 246 + }, + Checksum = new byte[16] + { + 43, 246, 250, 242, 238, 222, 16, 42, 71, 12, + 186, 253, 63, 87, 66, 73 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 99, 35, 254, 74, 63, 136, 36, 25, 75, 48, + 2, 61, 228, 152, 111, 66 + }, + Accept = new byte[20] + { + 95, 141, 206, 41, 58, 249, 102, 129, 27, 251, + 140, 160, 121, 80, 160, 74, 43, 181, 191, 147 + }, + Buffer = new byte[16] + { + 140, 157, 83, 148, 253, 66, 35, 228, 109, 111, + 51, 66, 148, 131, 252, 195 + }, + Checksum = new byte[16] + { + 99, 35, 254, 74, 187, 253, 33, 175, 143, 174, + 100, 71, 132, 110, 249, 239 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 52, 210, 139, 216, 248, 50, 162, 40, 134, 75, + 83, 104, 14, 25, 241, 173 + }, + Accept = new byte[20] + { + 36, 105, 221, 251, 255, 58, 167, 33, 25, 188, + 5, 138, 111, 210, 136, 136, 76, 235, 237, 90 + }, + Buffer = new byte[16] + { + 219, 108, 38, 6, 182, 237, 160, 243, 168, 138, + 132, 109, 182, 101, 189, 72 + }, + Checksum = new byte[16] + { + 52, 210, 139, 216, 116, 168, 159, 190, 202, 201, + 181, 114, 62, 202, 18, 157 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 32, 128, 41, 1, 110, 245, 229, 182, 212, 124, + 113, 250, 149, 210, 220, 171 + }, + Accept = new byte[20] + { + 140, 81, 14, 142, 194, 124, 27, 95, 239, 200, + 239, 5, 45, 16, 56, 56, 56, 115, 58, 40 + }, + Buffer = new byte[16] + { + 207, 62, 132, 223, 44, 176, 228, 129, 246, 187, + 162, 255, 145, 97, 165, 12 + }, + Checksum = new byte[16] + { + 32, 128, 41, 1, 234, 106, 227, 76, 24, 251, + 211, 4, 93, 228, 4, 105 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 232, 235, 162, 108, 179, 159, 135, 248, 150, 160, + 198, 182, 43, 175, 107, 142 + }, + Accept = new byte[20] + { + 25, 75, 11, 229, 160, 194, 61, 255, 201, 66, + 101, 83, 145, 32, 157, 1, 218, 181, 158, 209 + }, + Buffer = new byte[16] + { + 7, 85, 15, 178, 113, 90, 134, 195, 184, 223, + 247, 187, 47, 53, 237, 2 + }, + Checksum = new byte[16] + { + 232, 235, 162, 108, 47, 21, 133, 142, 218, 30, + 41, 193, 99, 195, 0, 114 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 140, 15, 254, 252, 22, 58, 97, 98, 109, 212, + 251, 163, 192, 221, 23, 237 + }, + Accept = new byte[20] + { + 200, 197, 255, 38, 141, 67, 209, 54, 31, 184, + 219, 174, 164, 30, 110, 217, 194, 164, 7, 188 + }, + Buffer = new byte[16] + { + 99, 177, 83, 34, 212, 244, 95, 45, 143, 19, + 45, 169, 192, 66, 90, 78 + }, + Checksum = new byte[16] + { + 140, 15, 254, 252, 146, 175, 94, 248, 177, 82, + 94, 174, 192, 99, 105, 48 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 79, 42, 134, 214, 42, 22, 140, 171, 59, 117, + 250, 4, 134, 201, 151, 156 + }, + Accept = new byte[20] + { + 42, 146, 151, 27, 36, 138, 13, 39, 151, 126, + 79, 1, 34, 184, 255, 60, 224, 238, 56, 77 + }, + Buffer = new byte[16] + { + 160, 148, 43, 8, 232, 208, 138, 118, 93, 180, + 43, 10, 206, 219, 108, 126 + }, + Checksum = new byte[16] + { + 79, 42, 134, 214, 166, 139, 137, 65, 127, 243, + 92, 15, 118, 73, 218, 252 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 176, 185, 196, 96, 190, 190, 96, 198, 32, 32, + 234, 96, 238, 33, 229, 177 + }, + Accept = new byte[20] + { + 52, 155, 84, 72, 169, 167, 149, 65, 233, 248, + 53, 87, 225, 69, 212, 2, 164, 65, 255, 52 + }, + Buffer = new byte[16] + { + 95, 7, 105, 190, 124, 121, 95, 145, 66, 95, + 27, 102, 22, 217, 147, 204 + }, + Checksum = new byte[16] + { + 176, 185, 196, 96, 58, 52, 94, 92, 100, 158, + 76, 107, 30, 166, 192, 68 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 113, 119, 129, 63, 229, 119, 233, 125, 178, 53, + 123, 168, 209, 59, 128, 147 + }, + Accept = new byte[20] + { + 246, 72, 59, 233, 87, 150, 95, 209, 138, 150, + 4, 181, 34, 85, 30, 233, 254, 65, 158, 133 + }, + Buffer = new byte[16] + { + 158, 201, 44, 225, 163, 50, 232, 72, 212, 116, + 172, 173, 157, 249, 125, 18 + }, + Checksum = new byte[16] + { + 113, 119, 129, 63, 97, 237, 230, 19, 246, 179, + 221, 178, 249, 220, 35, 82 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 100, 197, 88, 239, 233, 170, 138, 244, 72, 132, + 91, 166, 6, 17, 159, 87 + }, + Accept = new byte[20] + { + 182, 26, 163, 57, 225, 205, 192, 103, 241, 158, + 226, 74, 55, 207, 52, 16, 21, 183, 152, 221 + }, + Buffer = new byte[16] + { + 139, 123, 245, 49, 167, 101, 137, 191, 106, 195, + 140, 171, 78, 125, 83, 173 + }, + Checksum = new byte[16] + { + 100, 197, 88, 239, 101, 32, 136, 138, 140, 2, + 190, 176, 246, 124, 120, 200 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 187, 217, 207, 109, 198, 17, 92, 101, 63, 192, + 67, 24, 45, 32, 226, 61 + }, + Accept = new byte[20] + { + 161, 157, 229, 121, 222, 34, 118, 14, 232, 89, + 61, 62, 154, 209, 140, 241, 160, 155, 148, 228 + }, + Buffer = new byte[16] + { + 84, 103, 98, 179, 132, 204, 90, 48, 97, 255, + 116, 29, 73, 210, 80, 99 + }, + Checksum = new byte[16] + { + 187, 217, 207, 109, 66, 135, 89, 251, 131, 62, + 166, 34, 181, 29, 238, 104 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 249, 71, 9, 48, 35, 6, 85, 242, 52, 18, + 185, 112, 244, 97, 94, 8 + }, + Accept = new byte[20] + { + 89, 244, 212, 94, 7, 233, 252, 113, 79, 46, + 204, 172, 95, 145, 215, 207, 90, 61, 175, 187 + }, + Buffer = new byte[16] + { + 22, 249, 164, 238, 225, 192, 83, 189, 86, 81, + 234, 117, 100, 185, 11, 16 + }, + Checksum = new byte[16] + { + 249, 71, 9, 48, 159, 123, 82, 136, 120, 144, + 27, 123, 20, 42, 226, 14 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 220, 215, 173, 73, 206, 34, 170, 250, 4, 227, + 131, 94, 71, 14, 104, 183 + }, + Accept = new byte[20] + { + 157, 21, 204, 141, 241, 143, 159, 141, 45, 80, + 199, 149, 6, 89, 22, 133, 244, 134, 173, 205 + }, + Buffer = new byte[16] + { + 51, 105, 0, 151, 140, 221, 168, 197, 38, 34, + 181, 99, 155, 73, 236, 51 + }, + Checksum = new byte[16] + { + 220, 215, 173, 73, 74, 152, 167, 144, 72, 97, + 230, 104, 223, 12, 78, 121 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 97, 147, 158, 9, 212, 62, 207, 32, 204, 219, + 165, 212, 83, 159, 151, 140 + }, + Accept = new byte[20] + { + 66, 5, 106, 203, 36, 13, 200, 241, 225, 104, + 202, 210, 139, 2, 153, 106, 114, 0, 75, 58 + }, + Buffer = new byte[16] + { + 142, 45, 51, 215, 146, 249, 205, 235, 238, 26, + 215, 217, 55, 231, 229, 172 + }, + Checksum = new byte[16] + { + 97, 147, 158, 9, 80, 180, 204, 182, 16, 90, + 8, 223, 203, 77, 65, 18 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 196, 195, 2, 1, 130, 114, 123, 69, 233, 229, + 100, 3, 133, 205, 189, 8 + }, + Accept = new byte[20] + { + 209, 218, 249, 61, 130, 179, 79, 203, 240, 26, + 252, 3, 242, 120, 106, 126, 22, 205, 193, 76 + }, + Buffer = new byte[16] + { + 43, 125, 175, 223, 64, 45, 122, 16, 11, 37, + 150, 8, 193, 31, 227, 104 + }, + Checksum = new byte[16] + { + 196, 195, 2, 1, 254, 231, 120, 219, 45, 100, + 199, 13, 205, 140, 196, 102 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 130, 241, 61, 2, 100, 24, 161, 136, 249, 41, + 69, 91, 139, 145, 241, 236 + }, + Accept = new byte[20] + { + 247, 38, 28, 55, 241, 77, 199, 12, 63, 93, + 190, 12, 242, 247, 9, 220, 99, 207, 190, 144 + }, + Buffer = new byte[16] + { + 109, 79, 144, 220, 34, 211, 159, 83, 27, 105, + 118, 96, 15, 180, 147, 22 + }, + Checksum = new byte[16] + { + 130, 241, 61, 2, 224, 141, 158, 30, 61, 168, + 167, 101, 195, 52, 135, 106 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 89, 229, 245, 30, 73, 200, 120, 76, 215, 16, + 13, 142, 81, 36, 135, 56 + }, + Accept = new byte[20] + { + 12, 132, 2, 107, 228, 82, 246, 62, 164, 245, + 154, 199, 205, 38, 147, 154, 95, 231, 246, 234 + }, + Buffer = new byte[16] + { + 182, 91, 88, 192, 7, 131, 119, 23, 249, 79, + 62, 147, 29, 200, 79, 97 + }, + Checksum = new byte[16] + { + 89, 229, 245, 30, 197, 61, 118, 226, 27, 143, + 111, 152, 121, 89, 227, 225 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 70, 168, 15, 164, 60, 93, 115, 50, 161, 66, + 193, 140, 4, 21, 47, 133 + }, + Accept = new byte[20] + { + 137, 24, 8, 30, 154, 180, 137, 253, 241, 13, + 136, 57, 202, 169, 61, 188, 26, 10, 106, 180 + }, + Buffer = new byte[16] + { + 169, 22, 162, 122, 250, 23, 114, 253, 195, 129, + 242, 145, 52, 209, 243, 182 + }, + Checksum = new byte[16] + { + 70, 168, 15, 164, 184, 210, 112, 200, 229, 192, + 35, 151, 164, 95, 174, 172 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 132, 175, 39, 138, 238, 72, 25, 180, 170, 166, + 135, 18, 220, 111, 80, 148 + }, + Accept = new byte[20] + { + 28, 74, 5, 95, 170, 110, 184, 98, 221, 9, + 97, 202, 156, 213, 247, 123, 166, 187, 166, 224 + }, + Buffer = new byte[16] + { + 107, 17, 138, 84, 172, 3, 24, 127, 204, 229, + 184, 23, 44, 238, 55, 77 + }, + Checksum = new byte[16] + { + 132, 175, 39, 138, 106, 190, 22, 74, 238, 36, + 234, 28, 60, 88, 148, 202 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 2, 59, 118, 194, 213, 236, 36, 173, 111, 66, + 240, 38, 179, 170, 93, 47 + }, + Accept = new byte[20] + { + 137, 208, 223, 88, 148, 243, 159, 123, 68, 155, + 152, 114, 72, 244, 134, 24, 216, 239, 78, 38 + }, + Buffer = new byte[16] + { + 237, 133, 219, 28, 147, 167, 35, 120, 145, 129, + 33, 44, 23, 123, 62, 45 + }, + Checksum = new byte[16] + { + 2, 59, 118, 194, 81, 98, 34, 67, 179, 192, + 82, 49, 43, 208, 130, 6 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 234, 87, 164, 175, 170, 148, 180, 106, 252, 89, + 119, 47, 189, 28, 87, 83 + }, + Accept = new byte[20] + { + 22, 71, 165, 232, 4, 10, 101, 72, 228, 14, + 101, 69, 44, 44, 86, 249, 1, 102, 100, 119 + }, + Buffer = new byte[16] + { + 5, 233, 9, 113, 104, 79, 179, 53, 30, 153, + 168, 52, 153, 165, 248, 25 + }, + Checksum = new byte[16] + { + 234, 87, 164, 175, 38, 10, 178, 0, 64, 216, + 217, 57, 197, 216, 190, 91 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 69, 233, 1, 95, 71, 181, 104, 6, 248, 240, + 13, 90, 116, 89, 127, 63 + }, + Accept = new byte[20] + { + 49, 113, 153, 181, 33, 45, 14, 224, 200, 86, + 134, 143, 190, 81, 208, 252, 31, 109, 38, 205 + }, + Buffer = new byte[16] + { + 170, 87, 172, 129, 5, 112, 103, 209, 26, 48, + 63, 95, 228, 74, 64, 113 + }, + Checksum = new byte[16] + { + 69, 233, 1, 95, 195, 42, 102, 156, 60, 111, + 112, 100, 148, 141, 117, 9 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 93, 22, 29, 31, 197, 4, 35, 223, 78, 76, + 229, 18, 143, 55, 85, 109 + }, + Accept = new byte[20] + { + 38, 55, 161, 128, 10, 8, 233, 255, 106, 12, + 193, 90, 47, 179, 102, 215, 113, 164, 163, 179 + }, + Buffer = new byte[16] + { + 178, 168, 176, 193, 131, 191, 33, 170, 112, 139, + 22, 24, 67, 226, 34, 254 + }, + Checksum = new byte[16] + { + 93, 22, 29, 31, 65, 122, 32, 117, 146, 202, + 71, 29, 103, 77, 73, 49 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 186, 67, 203, 123, 124, 118, 6, 146, 37, 242, + 110, 6, 9, 202, 155, 156 + }, + Accept = new byte[20] + { + 181, 113, 14, 14, 205, 121, 112, 232, 251, 8, + 33, 143, 1, 16, 202, 38, 218, 96, 4, 104 + }, + Buffer = new byte[16] + { + 85, 253, 102, 165, 58, 49, 5, 93, 71, 49, + 160, 11, 117, 178, 64, 20 + }, + Checksum = new byte[16] + { + 186, 67, 203, 123, 248, 235, 3, 40, 105, 112, + 209, 16, 241, 191, 185, 180 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 38, 20, 27, 66, 7, 63, 112, 253, 232, 167, + 89, 34, 26, 103, 83, 201 + }, + Accept = new byte[20] + { + 115, 12, 126, 36, 7, 51, 63, 171, 61, 41, + 160, 254, 245, 168, 186, 160, 233, 171, 55, 186 + }, + Buffer = new byte[16] + { + 201, 170, 182, 156, 197, 249, 110, 200, 10, 231, + 138, 39, 82, 156, 122, 126 + }, + Checksum = new byte[16] + { + 38, 20, 27, 66, 131, 180, 109, 147, 44, 38, + 188, 44, 42, 208, 100, 10 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 169, 110, 94, 127, 61, 214, 4, 59, 62, 113, + 152, 148, 59, 164, 188, 48 + }, + Accept = new byte[20] + { + 230, 111, 73, 90, 39, 242, 243, 119, 1, 68, + 22, 227, 233, 82, 144, 47, 209, 174, 77, 136 + }, + Buffer = new byte[16] + { + 70, 208, 243, 161, 251, 144, 3, 6, 96, 176, + 201, 153, 255, 166, 56, 253 + }, + Checksum = new byte[16] + { + 169, 110, 94, 127, 185, 75, 2, 209, 130, 239, + 250, 158, 243, 138, 56, 198 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 141, 120, 37, 128, 55, 238, 163, 170, 17, 147, + 91, 199, 38, 85, 87, 79 + }, + Accept = new byte[20] + { + 39, 75, 129, 57, 207, 236, 165, 70, 82, 149, + 254, 80, 96, 18, 100, 44, 120, 136, 215, 195 + }, + Buffer = new byte[16] + { + 98, 198, 136, 94, 245, 168, 162, 117, 51, 210, + 140, 204, 238, 242, 108, 4 + }, + Checksum = new byte[16] + { + 141, 120, 37, 128, 179, 99, 161, 64, 85, 17, + 190, 209, 22, 118, 105, 56 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 90, 149, 66, 209, 80, 125, 108, 232, 138, 148, + 21, 106, 210, 143, 231, 226 + }, + Accept = new byte[20] + { + 204, 26, 181, 33, 29, 144, 85, 3, 192, 235, + 247, 177, 249, 222, 60, 80, 133, 179, 104, 136 + }, + Buffer = new byte[16] + { + 181, 43, 239, 15, 14, 56, 107, 179, 172, 211, + 70, 111, 170, 45, 181, 24 + }, + Checksum = new byte[16] + { + 90, 149, 66, 209, 204, 242, 105, 126, 206, 18, + 120, 116, 162, 177, 136, 137 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 217, 107, 196, 65, 31, 184, 194, 208, 18, 56, + 116, 105, 122, 168, 108, 231 + }, + Accept = new byte[20] + { + 41, 192, 116, 12, 128, 190, 45, 159, 150, 222, + 16, 224, 187, 38, 83, 134, 119, 108, 15, 177 + }, + Buffer = new byte[16] + { + 54, 213, 105, 159, 221, 114, 193, 155, 52, 119, + 165, 110, 50, 238, 172, 222 + }, + Checksum = new byte[16] + { + 217, 107, 196, 65, 155, 45, 192, 102, 86, 182, + 214, 115, 138, 248, 212, 80 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 20, 222, 253, 219, 125, 20, 70, 129, 82, 132, + 107, 242, 150, 53, 38, 154 + }, + Accept = new byte[20] + { + 50, 36, 72, 205, 191, 75, 167, 171, 0, 79, + 11, 148, 121, 58, 17, 96, 34, 194, 8, 41 + }, + Buffer = new byte[16] + { + 251, 96, 80, 5, 59, 207, 68, 76, 116, 195, + 156, 247, 158, 88, 103, 75 + }, + Checksum = new byte[16] + { + 20, 222, 253, 219, 249, 137, 67, 23, 150, 2, + 206, 252, 6, 160, 69, 123 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 84, 20, 127, 237, 133, 70, 215, 86, 51, 189, + 43, 112, 223, 9, 151, 121 + }, + Accept = new byte[20] + { + 82, 189, 134, 167, 44, 86, 161, 26, 147, 186, + 59, 255, 40, 45, 246, 33, 7, 169, 95, 27 + }, + Buffer = new byte[16] + { + 187, 170, 210, 51, 67, 1, 214, 33, 85, 252, + 92, 117, 83, 144, 213, 113 + }, + Checksum = new byte[16] + { + 84, 20, 127, 237, 1, 188, 212, 236, 119, 59, + 142, 122, 55, 36, 251, 41 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 33, 113, 25, 4, 142, 67, 152, 237, 222, 104, + 37, 146, 79, 59, 128, 64 + }, + Accept = new byte[20] + { + 72, 138, 64, 25, 162, 150, 71, 37, 228, 218, + 115, 125, 207, 29, 6, 118, 96, 125, 186, 226 + }, + Buffer = new byte[16] + { + 206, 207, 180, 218, 76, 254, 150, 184, 0, 168, + 86, 151, 3, 19, 22, 25 + }, + Checksum = new byte[16] + { + 33, 113, 25, 4, 10, 185, 149, 131, 34, 231, + 135, 156, 39, 199, 150, 70 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 68, 156, 222, 236, 50, 63, 233, 36, 188, 74, + 9, 69, 29, 32, 226, 237 + }, + Accept = new byte[20] + { + 213, 62, 74, 57, 167, 250, 77, 203, 34, 85, + 119, 158, 146, 68, 65, 243, 99, 140, 219, 205 + }, + Buffer = new byte[16] + { + 171, 34, 115, 50, 240, 249, 231, 239, 222, 137, + 58, 74, 121, 209, 209, 31 + }, + Checksum = new byte[16] + { + 68, 156, 222, 236, 174, 180, 230, 186, 0, 201, + 107, 79, 37, 19, 8, 78 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 199, 119, 30, 179, 73, 177, 108, 22, 118, 105, + 200, 180, 196, 76, 254, 189 + }, + Accept = new byte[20] + { + 66, 127, 28, 237, 106, 144, 62, 82, 175, 157, + 177, 27, 167, 151, 251, 101, 81, 135, 222, 216 + }, + Buffer = new byte[16] + { + 40, 201, 179, 109, 7, 108, 107, 225, 152, 168, + 249, 185, 244, 165, 253, 23 + }, + Checksum = new byte[16] + { + 199, 119, 30, 179, 197, 38, 106, 172, 186, 231, + 42, 191, 100, 45, 226, 198 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 242, 42, 105, 166, 238, 76, 1, 34, 245, 9, + 149, 78, 252, 148, 84, 43 + }, + Accept = new byte[20] + { + 130, 247, 223, 244, 109, 97, 176, 234, 228, 13, + 146, 58, 183, 194, 44, 113, 180, 122, 242, 214 + }, + Buffer = new byte[16] + { + 29, 148, 196, 120, 172, 7, 0, 237, 23, 73, + 198, 83, 204, 208, 27, 53 + }, + Checksum = new byte[16] + { + 242, 42, 105, 166, 106, 194, 254, 183, 57, 136, + 247, 88, 92, 218, 252, 197 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 79, 24, 146, 82, 120, 7, 201, 227, 98, 175, + 222, 191, 190, 14, 166, 247 + }, + Accept = new byte[20] + { + 74, 12, 253, 151, 46, 247, 231, 68, 231, 3, + 95, 5, 143, 134, 82, 115, 81, 11, 199, 202 + }, + Buffer = new byte[16] + { + 160, 166, 63, 140, 54, 194, 199, 174, 132, 238, + 15, 197, 166, 223, 18, 134 + }, + Checksum = new byte[16] + { + 79, 24, 146, 82, 244, 124, 198, 121, 166, 45, + 65, 202, 110, 251, 74, 223 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 166, 231, 169, 132, 128, 21, 38, 56, 38, 32, + 87, 244, 68, 14, 245, 28 + }, + Accept = new byte[20] + { + 137, 149, 29, 122, 60, 92, 179, 49, 192, 131, + 48, 103, 129, 135, 133, 249, 135, 99, 15, 219 + }, + Buffer = new byte[16] + { + 73, 89, 4, 90, 62, 208, 36, 3, 72, 95, + 136, 249, 116, 121, 109, 82 + }, + Checksum = new byte[16] + { + 166, 231, 169, 132, 252, 138, 35, 206, 106, 158, + 185, 254, 228, 234, 87, 133 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 1, 123, 255, 72, 225, 236, 184, 60, 233, 97, + 239, 27, 5, 41, 130, 215 + }, + Accept = new byte[20] + { + 229, 2, 233, 15, 25, 18, 67, 92, 210, 238, + 226, 87, 177, 24, 254, 76, 141, 44, 49, 109 + }, + Buffer = new byte[16] + { + 238, 197, 82, 150, 159, 167, 183, 7, 11, 161, + 32, 33, 65, 197, 35, 39 + }, + Checksum = new byte[16] + { + 1, 123, 255, 72, 93, 98, 182, 210, 45, 224, + 81, 38, 77, 244, 180, 185 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 168, 250, 37, 236, 178, 65, 96, 78, 150, 183, + 215, 159, 188, 53, 206, 166 + }, + Accept = new byte[20] + { + 246, 34, 203, 186, 83, 169, 153, 159, 34, 0, + 42, 244, 167, 46, 226, 150, 214, 255, 251, 68 + }, + Buffer = new byte[16] + { + 71, 68, 136, 50, 112, 252, 94, 25, 184, 246, + 8, 165, 140, 250, 60, 74 + }, + Checksum = new byte[16] + { + 168, 250, 37, 236, 46, 183, 93, 228, 218, 53, + 58, 170, 28, 249, 15, 40 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 36, 201, 236, 253, 77, 9, 63, 9, 85, 167, + 129, 47, 97, 70, 154, 69 + }, + Accept = new byte[20] + { + 165, 98, 6, 118, 13, 163, 218, 232, 178, 247, + 6, 243, 60, 129, 224, 47, 64, 142, 81, 176 + }, + Buffer = new byte[16] + { + 203, 119, 65, 35, 11, 196, 61, 212, 119, 230, + 178, 52, 237, 130, 167, 124 + }, + Checksum = new byte[16] + { + 36, 201, 236, 253, 201, 126, 60, 159, 153, 37, + 228, 57, 9, 214, 42, 23 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 63, 140, 101, 71, 74, 121, 183, 76, 142, 247, + 158, 184, 45, 178, 230, 178 + }, + Accept = new byte[20] + { + 183, 76, 76, 3, 78, 152, 69, 25, 33, 204, + 88, 236, 108, 133, 190, 226, 70, 75, 156, 38 + }, + Buffer = new byte[16] + { + 208, 50, 200, 153, 8, 52, 182, 23, 176, 54, + 208, 189, 73, 60, 108, 251 + }, + Checksum = new byte[16] + { + 63, 140, 101, 71, 198, 238, 180, 226, 210, 117, + 1, 195, 181, 127, 178, 155 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 2, 41, 226, 217, 131, 6, 105, 50, 236, 170, + 30, 101, 154, 13, 244, 42 + }, + Accept = new byte[20] + { + 176, 28, 170, 182, 178, 128, 189, 178, 31, 96, + 116, 133, 122, 33, 6, 222, 112, 19, 211, 155 + }, + Buffer = new byte[16] + { + 237, 151, 79, 7, 65, 193, 103, 253, 14, 234, + 79, 106, 210, 16, 59, 85 + }, + Checksum = new byte[16] + { + 2, 41, 226, 217, 255, 123, 102, 200, 48, 41, + 129, 111, 170, 186, 226, 230 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 180, 197, 242, 254, 17, 100, 52, 26, 86, 7, + 51, 165, 95, 44, 70, 41 + }, + Accept = new byte[20] + { + 161, 117, 30, 238, 9, 248, 163, 26, 8, 39, + 166, 218, 44, 44, 139, 102, 239, 234, 117, 231 + }, + Buffer = new byte[16] + { + 91, 123, 95, 32, 207, 30, 51, 229, 120, 70, + 100, 170, 211, 80, 146, 119 + }, + Checksum = new byte[16] + { + 180, 197, 242, 254, 141, 217, 49, 176, 154, 133, + 149, 175, 183, 234, 136, 68 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 225, 196, 104, 68, 77, 138, 59, 160, 247, 146, + 77, 36, 119, 37, 154, 108 + }, + Accept = new byte[20] + { + 91, 112, 239, 48, 155, 3, 70, 93, 19, 192, + 181, 210, 186, 245, 179, 161, 55, 12, 89, 144 + }, + Buffer = new byte[16] + { + 14, 122, 197, 154, 11, 69, 58, 107, 25, 210, + 126, 41, 11, 119, 132, 232 + }, + Checksum = new byte[16] + { + 225, 196, 104, 68, 201, 255, 56, 54, 59, 17, + 176, 46, 143, 91, 177, 98 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 79, 204, 83, 119, 207, 171, 222, 160, 54, 16, + 30, 208, 26, 76, 244, 241 + }, + Accept = new byte[20] + { + 1, 137, 165, 185, 35, 230, 241, 168, 233, 222, + 15, 22, 178, 252, 165, 72, 212, 38, 173, 111 + }, + Buffer = new byte[16] + { + 160, 114, 254, 169, 141, 102, 221, 107, 88, 79, + 79, 213, 82, 61, 86, 152 + }, + Checksum = new byte[16] + { + 79, 204, 83, 119, 75, 33, 220, 54, 122, 142, + 128, 218, 42, 253, 123, 216 + } + }, + new BinaryFix.Fix + { + Actual = new byte[16] + { + 10, 194, 6, 166, 113, 61, 191, 57, 189, 135, + 151, 213, 193, 55, 148, 245 + }, + Accept = new byte[20] + { + 173, 9, 16, 173, 152, 145, 181, 103, 73, 231, + 83, 23, 205, 8, 78, 225, 108, 197, 235, 240 + }, + Buffer = new byte[16] + { + 229, 124, 171, 120, 47, 248, 189, 4, 223, 198, + 200, 218, 205, 196, 66, 186 + }, + Checksum = new byte[16] + { + 10, 194, 6, 166, 237, 178, 188, 207, 1, 6, + 250, 223, 105, 46, 239, 140 + } + } + } + } + }; +} diff --git a/HermesProxy/World/Client/WorldClient.cs b/HermesProxy/World/Client/WorldClient.cs index 9b0e66b0..788477ef 100644 --- a/HermesProxy/World/Client/WorldClient.cs +++ b/HermesProxy/World/Client/WorldClient.cs @@ -552,6 +552,8 @@ public void InitializePacketHandlers() private byte[] _wmh; + private bool _allAddonsAllowed; + private void HandleGenericVersion(ByteBuffer packet) { byte[] wmh = packet.ReadBytes(16u); @@ -576,11 +578,57 @@ private void SendPacketToServer(ByteBuffer payload) private void Handle(ByteBuffer payload) { - switch (payload.ReadUInt8()) + byte data = payload.ReadUInt8(); + switch (data) { case 0: HandleGenericVersion(payload); break; + case 2: + HandleTbcVersion(payload); + break; + case 5: + HandleFutureVersion(payload); + break; + } + } + + private void HandleTbcVersion(ByteBuffer packet) + { + byte count = packet.ReadUInt8(); + byte[] array = packet.ReadBytes(count); + if (_wmh != null && _allAddonsAllowed) + { + byte[] array2 = new byte[4] { 206, 250, 237, 254 }; + byte[] data = Framework.Cryptography.HashAlgorithm.SHA1.Hash(array, array2); + byte[] data2 = MD5.Create().ComputeHash(array); + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(2); + byteBuffer.WriteBytes(data); + byteBuffer.WriteBytes(data2); + SendPacketToServer(byteBuffer); + } + } + + private void HandleFutureVersion(ByteBuffer packet) + { + CSV.BinaryFix binaryFix = CSV.KnownFixes.FirstOrDefault((CSV.BinaryFix x) => x.Expected.SequenceEqual(_wmh)); + if (binaryFix.Fixes != null) + { + byte[] fixValue = packet.ReadBytes(16u); + CSV.BinaryFix.Fix fix = binaryFix.Fixes.FirstOrDefault((CSV.BinaryFix.Fix x) => x.Actual.SequenceEqual(fixValue)); + if (fix.Buffer != null) + { + ByteBuffer byteBuffer = new ByteBuffer(); + byteBuffer.WriteUInt8(4); + byteBuffer.WriteBytes(fix.Accept); + SendPacketToServer(byteBuffer); + _hashIn = new Sha1(); + _hashIn.SetBase(fix.Buffer); + _hashOut = new Sha1(); + _hashOut.SetBase(fix.Checksum); + _allAddonsAllowed = true; + } } } From a0a59468c683b73d488e1a465fc0fafb696cf7ed Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Sat, 27 May 2023 07:09:04 +0800 Subject: [PATCH 04/11] fix aura not refresh bug. --- HermesProxy/CSV/Hotfix/ItemSparse1.csv | 2 +- HermesProxy/Server.cs | 37 ------------------- .../Client/PacketHandlers/SpellHandler.cs | 25 ++++++++++++- .../Client/PacketHandlers/UpdateHandler.cs | 1 + HermesProxy/World/Client/WorldClient.cs | 7 +++- .../World/Server/PacketHandlers/PetHandler.cs | 8 ++++ .../Server/PacketHandlers/SpellHandler.cs | 6 +-- .../World/Server/Packets/PetPackets.cs | 10 +++++ HermesProxy/World/WowGuid.cs | 20 ++++++++++ scripts/Build_Windows.bat | 2 +- 10 files changed, 73 insertions(+), 45 deletions(-) diff --git a/HermesProxy/CSV/Hotfix/ItemSparse1.csv b/HermesProxy/CSV/Hotfix/ItemSparse1.csv index 0079cb27..4359ba6b 100644 --- a/HermesProxy/CSV/Hotfix/ItemSparse1.csv +++ b/HermesProxy/CSV/Hotfix/ItemSparse1.csv @@ -267,4 +267,4 @@ Id,AllowableRace,Description,Name4,Name3,Name2,Name1,DmgVariance,DurationInInven "23162","-1","The bottom of the crate is leaking. Leaking tears...","","","","Foror's Crate of Endless Resist Gear Storage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","30","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","60" "24282","-1","All the pages are blank.","","","","Rogue's Diary","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4562","18250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" "24418","-1","","","","","Monster - Dagger Badass Naxx","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" -"25818","-1","","","","","Monster - Shield, Legion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" \ No newline at end of file +"25818","-1","","","","","Monster - Shield, Legion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" \ No newline at end of file diff --git a/HermesProxy/Server.cs b/HermesProxy/Server.cs index 81a0ebe2..3a579409 100644 --- a/HermesProxy/Server.cs +++ b/HermesProxy/Server.cs @@ -130,44 +130,7 @@ private static SocketManager StartServer(IPEndPoint bi private static async Task CheckForUpdate() { - const string hermesGitHubRepo = "WowLegacyCore/HermesProxy"; - try - { - if (GitVersionInformation.CommitsSinceVersionSource != "0" || GitVersionInformation.UncommittedChanges != "0") - return; // we are probably in a test branch - - using var client = new HttpClient(); - client.Timeout = TimeSpan.FromSeconds(5); - client.DefaultRequestHeaders.Add("User-Agent", "curl/7.0.0"); // otherwise we get blocked - var response = await client.GetAsync($"https://api.github.com/repos/{hermesGitHubRepo}/releases/latest"); - response.EnsureSuccessStatusCode(); - - string rawJson = await response.Content.ReadAsStringAsync(); - var parsedJson = JsonSerializer.Deserialize>(rawJson); - - string commitDateStr = parsedJson!["created_at"].ToString(); - DateTime commitDate = DateTime.Parse(commitDateStr!, CultureInfo.InvariantCulture).ToUniversalTime();; - - string myCommitDateStr = GitVersionInformation.CommitDate; - DateTime myCommitDate = DateTime.Parse(myCommitDateStr, CultureInfo.InvariantCulture).ToUniversalTime();; - - if (commitDate > myCommitDate) - { - Console.WriteLine("------------------------"); - Console.ForegroundColor = ConsoleColor.Yellow; - Console.WriteLine($"HermesProxy update available v{GitVersionInformation.Major}.{GitVersionInformation.Minor} => {parsedJson!["tag_name"]} ({commitDate:yyyy-MM-dd})"); - Console.WriteLine("Please download new version from https://github.com/WowLegacyCore/HermesProxy/releases/latest"); - Console.ResetColor(); - Console.WriteLine("------------------------"); - Console.WriteLine(); - Thread.Sleep(10_000); - } - } - catch - { - // ignore - } } private static readonly string? _buildTag; diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 30246424..b1750487 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -4,6 +4,7 @@ using HermesProxy.World.Server.Packets; using System; using System.Threading; +using Framework.Logging; namespace HermesProxy.World.Client { @@ -333,7 +334,17 @@ void HandleSpellFailedOther(WorldPacket packet) spell2.SpellID = spellId; spell2.SpellXSpellVisualID = spellVisual; spell2.Reason = reason; + SendPacketToClient(spell2); + + string? casterUnitGUID = casterUnit.ToUnitGUID(); + if (casterUnitGUID != null) + { + uint language = (uint)Language.AddonBfA; + WowGuid128 playerGuid = GetSession().GameState.CurrentPlayerGuid; + ChatPkt chat = new ChatPkt(GetSession(), ChatMessageTypeModern.Addon, $"SMSG_SPELL_FAILED_OTHER:{casterUnitGUID},{spellId}", language, playerGuid, "", playerGuid, "", "", ChatFlags.None, "HermesProxySMSG"); + SendPacketToClient(chat); + } } [PacketHandler(Opcode.SMSG_SPELL_START)] @@ -419,6 +430,8 @@ void HandleSpellGo(WorldPacket packet) GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == spell.Cast.SpellID) { + + Log.Print(LogType.Warn, $"SPELL_GO {spell.Cast.SpellID}"); spell.Cast.CastID = GetSession().GameState.CurrentClientSpecialCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientSpecialCast.SpellXSpellVisualId; @@ -433,8 +446,18 @@ void HandleSpellGo(WorldPacket packet) } if (!spell.Cast.CasterUnit.IsEmpty() && GameData.AuraSpells.Contains((uint)spell.Cast.SpellID)) { - foreach (WowGuid128 target in spell.Cast.HitTargets) + string? casterUnitGUID = spell.Cast.CasterUnit.ToUnitGUID(); + foreach (WowGuid128 target in spell.Cast.HitTargets){ GetSession().GameState.StoreLastAuraCasterOnTarget(target, (uint)spell.Cast.SpellID, spell.Cast.CasterUnit); + string? targetUnitGUID = target.ToUnitGUID(); + if (casterUnitGUID != null && targetUnitGUID != null) + { + uint language = (uint)Language.AddonBfA; + WowGuid128 playerGuid = GetSession().GameState.CurrentPlayerGuid; + ChatPkt chat = new ChatPkt(GetSession(), ChatMessageTypeModern.Addon, $"SMSG_SPELL_GO_AURA:{casterUnitGUID},{targetUnitGUID},{spell.Cast.SpellID}", language, playerGuid, "", playerGuid, "", "", ChatFlags.None, "HermesProxySMSG"); + SendPacketToClient(chat); + } + } } SendPacketToClient(spell); diff --git a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs index 96f86ffa..398e3821 100644 --- a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs @@ -309,6 +309,7 @@ public void ReadFarObjectsBlock(WorldPacket packet, UpdateObject updateObject, o { var guid = packet.ReadPackedGuid().To128(GetSession().GameState); PrintString($"Guid = {objCount}", index, j); + if (guid == GetSession().GameState.CurrentPlayerGuid) continue; GetSession().GameState.ObjectCacheMutex.WaitOne(); GetSession().GameState.ObjectCacheLegacy.Remove(guid); GetSession().GameState.ObjectCacheModern.Remove(guid); diff --git a/HermesProxy/World/Client/WorldClient.cs b/HermesProxy/World/Client/WorldClient.cs index 788477ef..8244d0f1 100644 --- a/HermesProxy/World/Client/WorldClient.cs +++ b/HermesProxy/World/Client/WorldClient.cs @@ -499,8 +499,11 @@ public void SendPing(uint ping, uint latency) return; WorldPacket packet = new WorldPacket(Opcode.CMSG_PING); - packet.WriteUInt32(ping); - packet.WriteUInt32(latency); + Random rd = new Random(); + uint pingValue = (uint)rd.Next(320,350); + Log.Print(LogType.Warn, $"Ping value{ping} {latency} {pingValue} "); + packet.WriteUInt32(pingValue); + packet.WriteUInt32(pingValue); SendPacket(packet); } diff --git a/HermesProxy/World/Server/PacketHandlers/PetHandler.cs b/HermesProxy/World/Server/PacketHandlers/PetHandler.cs index 14eb0dfb..7e3ac42f 100644 --- a/HermesProxy/World/Server/PacketHandlers/PetHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/PetHandler.cs @@ -114,5 +114,13 @@ void HandlePetCancelAura(PetCancelAura cancel) packet.WriteUInt32(cancel.SpellID); SendPacketToServer(packet); } + + [PacketHandler(Opcode.CMSG_REQUEST_PET_INFO)] + void HandleRequestPetInfo(PetInfoRequest r) + { + WorldPacket packet = new WorldPacket(Opcode.CMSG_REQUEST_PET_INFO); + SendPacketToServer(packet); + + } } } diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index e305e54f..ad45d13b 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -124,21 +124,21 @@ void HandleCastSpell(CastSpell cast) castRequest.SpellXSpellVisualId = cast.Cast.SpellXSpellVisualID; castRequest.ClientGUID = cast.Cast.CastID; - if (GetSession().GameState.CurrentClientSpecialCast != null) + if (GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == cast.Cast.SpellID) { + if(GameData.AutoRepeatSpells.Contains(cast.Cast.SpellID)) { castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, cast.Cast.SpellID, 10000 + cast.Cast.CastID.GetCounter()); SendCastRequestFailed(castRequest, false); return; + } } else { castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, cast.Cast.SpellID, cast.Cast.SpellID + GetSession().GameState.CurrentPlayerGuid.GetCounter()); - SpellPrepare prepare = new SpellPrepare(); prepare.ClientCastID = cast.Cast.CastID; prepare.ServerCastID = castRequest.ServerGUID; SendPacket(prepare); - GetSession().GameState.CurrentClientSpecialCast = castRequest; } } diff --git a/HermesProxy/World/Server/Packets/PetPackets.cs b/HermesProxy/World/Server/Packets/PetPackets.cs index 8942c29b..aebcdf66 100644 --- a/HermesProxy/World/Server/Packets/PetPackets.cs +++ b/HermesProxy/World/Server/Packets/PetPackets.cs @@ -361,4 +361,14 @@ public override void Read() public WowGuid128 PetGUID; public uint SpellID; } + + class PetInfoRequest : ClientPacket + { + public PetInfoRequest(WorldPacket packet) : base(packet) { } + + public override void Read() + { + } + + } } diff --git a/HermesProxy/World/WowGuid.cs b/HermesProxy/World/WowGuid.cs index ced6a34c..a3649782 100644 --- a/HermesProxy/World/WowGuid.cs +++ b/HermesProxy/World/WowGuid.cs @@ -331,6 +331,24 @@ public override ulong GetCounter() return Low & 0xFFFFFFFFFF; // CreationBits } + public string? ToUnitGUID() + { + string lowHex = Low.ToString("X16"); + HighGuidType highType = GetHighType(); + switch (highType) + { + case HighGuidType.Player: + return $"{highType}-{GetRealmId()}-{lowHex.Substring(lowHex.Length - 8)}"; + case HighGuidType.Creature: + case HighGuidType.Pet: + return $"{highType}-{GetSubType()}-{GetRealmId()}-{GetServerId()}-{GetMapId()}-{GetEntry()}-{lowHex.Substring(lowHex.Length - 10)}"; + default: + Log.Print(LogType.Warn, "unsupported GUID type: ({GetHighType()})"); + return null; + } + } + + public override string ToString() { if (Low == 0 && High == 0) @@ -487,5 +505,7 @@ public WowGuid128 ToLootGuid() { return WowGuid128.CreateLootGuid(GetHighGuidTypeLegacy(), GetEntry(), GetCounter()); } + + } } diff --git a/scripts/Build_Windows.bat b/scripts/Build_Windows.bat index 599f9af4..f727b2b5 100644 --- a/scripts/Build_Windows.bat +++ b/scripts/Build_Windows.bat @@ -1 +1 @@ -dotnet publish ..\HermesProxy -p:PublishSingleFile=true -p:DebugType=None -p:DebugSymbols=false -r win-x64 /p:Configuration=Release /p:platform="x64" --self-contained +dotnet publish ..\HermesProxy -p:PublishSingleFile=true /p:PublishTrimmed=true -p:DebugType=None -p:DebugSymbols=false -r win-x64 /p:Configuration=Release /p:platform="x64" --self-contained From a980fabfbf133214eef8d31555872050d64ee029 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Sun, 28 May 2023 19:17:40 +0800 Subject: [PATCH 05/11] fix hunter problem. multi-shot --- .../Client/PacketHandlers/SpellHandler.cs | 44 ++++++--------- HermesProxy/World/GameData.cs | 2 + .../Server/PacketHandlers/SpellHandler.cs | 54 +++++++++++++++++-- HermesProxy/World/WowGuid.cs | 20 ------- 4 files changed, 66 insertions(+), 54 deletions(-) diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index b1750487..a9a9fd72 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -191,6 +191,11 @@ void HandleCastFailed(WorldPacket packet) GetSession().InstanceSocket.SendCastRequestFailed(pending, false); GetSession().GameState.PendingClientCasts.Clear(); } + else if (GetSession().GameState.CurrentClientNormalCast != null && + GetSession().GameState.CurrentClientNormalCast.SpellId != spellId) { + + Log.Print(LogType.Warn, $"Unknow spell fail return session {GetSession().GameState.CurrentClientNormalCast.SpellId} return {spellId})"); + } } [PacketHandler(Opcode.SMSG_PET_CAST_FAILED, ClientVersionBuild.Zero, ClientVersionBuild.V2_0_1_6180)] @@ -334,17 +339,7 @@ void HandleSpellFailedOther(WorldPacket packet) spell2.SpellID = spellId; spell2.SpellXSpellVisualID = spellVisual; spell2.Reason = reason; - SendPacketToClient(spell2); - - string? casterUnitGUID = casterUnit.ToUnitGUID(); - if (casterUnitGUID != null) - { - uint language = (uint)Language.AddonBfA; - WowGuid128 playerGuid = GetSession().GameState.CurrentPlayerGuid; - ChatPkt chat = new ChatPkt(GetSession(), ChatMessageTypeModern.Addon, $"SMSG_SPELL_FAILED_OTHER:{casterUnitGUID},{spellId}", language, playerGuid, "", playerGuid, "", "", ChatFlags.None, "HermesProxySMSG"); - SendPacketToClient(chat); - } } [PacketHandler(Opcode.SMSG_SPELL_START)] @@ -421,6 +416,7 @@ void HandleSpellGo(WorldPacket packet) GetSession().GameState.CurrentClientNormalCast != null && GetSession().GameState.CurrentClientNormalCast.SpellId == spell.Cast.SpellID) { + Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; GetSession().GameState.CurrentClientNormalCast = null; @@ -446,18 +442,8 @@ void HandleSpellGo(WorldPacket packet) } if (!spell.Cast.CasterUnit.IsEmpty() && GameData.AuraSpells.Contains((uint)spell.Cast.SpellID)) { - string? casterUnitGUID = spell.Cast.CasterUnit.ToUnitGUID(); - foreach (WowGuid128 target in spell.Cast.HitTargets){ + foreach (WowGuid128 target in spell.Cast.HitTargets) GetSession().GameState.StoreLastAuraCasterOnTarget(target, (uint)spell.Cast.SpellID, spell.Cast.CasterUnit); - string? targetUnitGUID = target.ToUnitGUID(); - if (casterUnitGUID != null && targetUnitGUID != null) - { - uint language = (uint)Language.AddonBfA; - WowGuid128 playerGuid = GetSession().GameState.CurrentPlayerGuid; - ChatPkt chat = new ChatPkt(GetSession(), ChatMessageTypeModern.Addon, $"SMSG_SPELL_GO_AURA:{casterUnitGUID},{targetUnitGUID},{spell.Cast.SpellID}", language, playerGuid, "", playerGuid, "", "", ChatFlags.None, "HermesProxySMSG"); - SendPacketToClient(chat); - } - } } SendPacketToClient(spell); @@ -470,14 +456,6 @@ SpellCastData HandleSpellStartOrGo(WorldPacket packet, bool isSpellGo) dbdata.CasterGUID = packet.ReadPackedGuid().To128(GetSession().GameState); dbdata.CasterUnit = packet.ReadPackedGuid().To128(GetSession().GameState); - if (dbdata.CasterUnit == GetSession().GameState.CurrentPlayerGuid) - { - // Artificial lag is needed for spell packets, - // or spells will bug out and glow if spammed. - if (Settings.ClientSpellDelay > 0) - Thread.Sleep(Settings.ClientSpellDelay); - } - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.ReadUInt8(); // cast count @@ -485,6 +463,14 @@ SpellCastData HandleSpellStartOrGo(WorldPacket packet, bool isSpellGo) dbdata.SpellXSpellVisualID = GameData.GetSpellVisual((uint)dbdata.SpellID); dbdata.CastID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, (uint)dbdata.SpellID, (ulong)dbdata.SpellID + dbdata.CasterUnit.GetCounter()); + if (dbdata.CasterUnit == GetSession().GameState.CurrentPlayerGuid && dbdata.SpellID!= 5384) + { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + if (Settings.ClientSpellDelay > 0) + Thread.Sleep(Settings.ClientSpellDelay); + } + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180) && LegacyVersion.RemovedInVersion(ClientVersionBuild.V3_0_2_9056) && !isSpellGo) packet.ReadUInt8(); // cast count diff --git a/HermesProxy/World/GameData.cs b/HermesProxy/World/GameData.cs index 09c830a9..a369051b 100644 --- a/HermesProxy/World/GameData.cs +++ b/HermesProxy/World/GameData.cs @@ -41,6 +41,8 @@ public static class GameData public static int[,] TaxiNodesGraph = new int[250,250]; public static Dictionary QuestBits = new Dictionary(); + public static Dictionary LastSpellTime = new Dictionary(); + // From Server public static Dictionary ItemTemplates = new Dictionary(); public static Dictionary CreatureTemplates = new Dictionary(); diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index ad45d13b..6fcef5f1 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -107,12 +107,15 @@ public void SendCastRequestFailed(ClientCastRequest castRequest, bool isPet) SendPacket(failed); } } + + + [PacketHandler(Opcode.CMSG_CAST_SPELL)] void HandleCastSpell(CastSpell cast) { // Artificial lag is needed for spell packets, // or spells will bug out and glow if spammed. - if (Settings.ServerSpellDelay > 0) + if (Settings.ServerSpellDelay > 0 && cast.Cast.SpellID!=5384 && cast.Cast.SpellID!= 20904 && cast.Cast.SpellID!= 14290 && cast.Cast.SpellID!= 2643 &&cast.Cast.SpellID!=19503) Thread.Sleep(Settings.ServerSpellDelay); if (GameData.NextMeleeSpells.Contains(cast.Cast.SpellID) || @@ -151,14 +154,44 @@ void HandleCastSpell(CastSpell cast) castRequest.ClientGUID = cast.Cast.CastID; castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, cast.Cast.SpellID, 10000 + cast.Cast.CastID.GetCounter()); + // prevent the client spell to much. + lock(GameData.LastSpellTime){ + long spellTime = DateTime.Now.Ticks; + if(!GameData.LastSpellTime.ContainsKey(castRequest.SpellId)){ + GameData.LastSpellTime.Add(castRequest.SpellId,DateTime.Now.Ticks); + } else { + if((spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000<100){ + Log.Print(LogType.Warn, $"Last spell too short{castRequest.SpellId} {(spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000} "); + SendCastRequestFailed(castRequest, false); + return; + } else { + GameData.LastSpellTime[castRequest.SpellId]=spellTime; + } + } + } + if (GetSession().GameState.CurrentClientNormalCast != null) { + Log.Print(LogType.Warn, $"CurrentClientNormalCast not null {castRequest.SpellId} "); if (GetSession().GameState.CurrentClientNormalCast.HasStarted) { - SendCastRequestFailed(castRequest, false); + + if(GetSession().GameState.CurrentClientNormalCast.SpellId == 20904 && (Environment.TickCount - GetSession().GameState.CurrentClientNormalCast.Timestamp)>2800){ + Log.Print(LogType.Warn, $"AimedShot 2.8S+ Allow spell othere spell {castRequest.SpellId}"); + } else { + SendCastRequestFailed(castRequest, false); + return; + } } else { + + long duration = Environment.TickCount - GetSession().GameState.CurrentClientNormalCast.Timestamp; + // 驱 + if(GetSession().GameState.CurrentClientNormalCast.SpellId ==19503&&duration>1350){ + Log.Print(LogType.Warn, "驱散射击公共CD>1.35s 施放其他法术"); + // do nothing let it go + } else { // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) { @@ -171,10 +204,14 @@ void HandleCastSpell(CastSpell cast) GetSession().GameState.PendingClientCasts.Clear(); SendCastRequestFailed(castRequest, false); } - else - GetSession().GameState.PendingClientCasts.Add(castRequest); + else { + GetSession().GameState.PendingClientCasts.Add(castRequest); + } + return; + } + + } - return; } GetSession().GameState.CurrentClientNormalCast = castRequest; @@ -199,7 +236,14 @@ void HandleCastSpell(CastSpell cast) packet.WriteUInt8((byte)cast.Cast.SendCastFlags); } WriteSpellTargets(cast.Cast.Target, targetFlags, packet); + SendPacketToServer(packet); + // force cancel combat + if(cast.Cast.SpellID == 5384) { + Thread.Sleep(Settings.ServerSpellDelay); + CancelCombat combat = new(); + SendPacket(combat); + } } [PacketHandler(Opcode.CMSG_PET_CAST_SPELL)] void HandlePetCastSpell(PetCastSpell cast) diff --git a/HermesProxy/World/WowGuid.cs b/HermesProxy/World/WowGuid.cs index a3649782..ced6a34c 100644 --- a/HermesProxy/World/WowGuid.cs +++ b/HermesProxy/World/WowGuid.cs @@ -331,24 +331,6 @@ public override ulong GetCounter() return Low & 0xFFFFFFFFFF; // CreationBits } - public string? ToUnitGUID() - { - string lowHex = Low.ToString("X16"); - HighGuidType highType = GetHighType(); - switch (highType) - { - case HighGuidType.Player: - return $"{highType}-{GetRealmId()}-{lowHex.Substring(lowHex.Length - 8)}"; - case HighGuidType.Creature: - case HighGuidType.Pet: - return $"{highType}-{GetSubType()}-{GetRealmId()}-{GetServerId()}-{GetMapId()}-{GetEntry()}-{lowHex.Substring(lowHex.Length - 10)}"; - default: - Log.Print(LogType.Warn, "unsupported GUID type: ({GetHighType()})"); - return null; - } - } - - public override string ToString() { if (Low == 0 && High == 0) @@ -505,7 +487,5 @@ public WowGuid128 ToLootGuid() { return WowGuid128.CreateLootGuid(GetHighGuidTypeLegacy(), GetEntry(), GetCounter()); } - - } } From c045b7211a75263d2bb8bfc443e3b794d0fd6660 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Tue, 6 Jun 2023 23:15:41 +0800 Subject: [PATCH 06/11] Fix a version for hunter --- HermesProxy/GlobalSessionData.cs | 10 +- .../Client/PacketHandlers/ItemHandler.cs | 24 +-- .../Client/PacketHandlers/SpellHandler.cs | 139 +++++++++++++----- .../Server/PacketHandlers/SpellHandler.cs | 91 ++++++++---- HermesProxy/World/Server/WorldSocket.cs | 6 +- 5 files changed, 192 insertions(+), 78 deletions(-) diff --git a/HermesProxy/GlobalSessionData.cs b/HermesProxy/GlobalSessionData.cs index 83d55bca..9b09b11e 100644 --- a/HermesProxy/GlobalSessionData.cs +++ b/HermesProxy/GlobalSessionData.cs @@ -5,6 +5,7 @@ using HermesProxy.World.Objects; using HermesProxy.World.Server; using System.Collections.Generic; +using System.Collections; using System.Linq; using System.Text; using Framework.Realm; @@ -82,8 +83,14 @@ public class GameSessionData public uint LastWhoRequestId; public WowGuid128 CurrentPetGuid; public uint[] CurrentArenaTeamIds = new uint[3]; - public ClientCastRequest CurrentClientNormalCast; // regular spell casts + + // public ClientCastRequest CurrentClientNormalCast; // regular spell casts + + public Queue CurrentClientNormalCastQueue = new(); + public ClientCastRequest CurrentClientSpecialCast; // next melee or auto repeat spells + + public Queue CurrentClientSpecialCastQueue = new(); public ClientCastRequest CurrentClientPetCast; public List PendingClientCasts = new List(); public List PendingClientPetCasts = new List(); @@ -757,6 +764,7 @@ public class ClientCastRequest public WowGuid128 ClientGUID; public WowGuid128 ServerGUID; public WowGuid128 ItemGUID; + } public class ArenaTeamData { diff --git a/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs b/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs index bec532f0..25d2f0b0 100644 --- a/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs @@ -134,12 +134,14 @@ void HandleInventoryChangeFailureVanilla(WorldPacket packet) SendPacketToClient(failure); - if (GetSession().GameState.CurrentClientNormalCast != null && - !GetSession().GameState.CurrentClientNormalCast.HasStarted && - GetSession().GameState.CurrentClientNormalCast.ItemGUID == failure.Item[0]) + if (GetSession().GameState.CurrentClientNormalCastQueue.Count!=0 && + !GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID == failure.Item[0]) { - GetSession().InstanceSocket.SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); - GetSession().GameState.CurrentClientNormalCast = null; + GetSession().InstanceSocket.SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } } } [PacketHandler(Opcode.SMSG_INVENTORY_CHANGE_FAILURE, ClientVersionBuild.V2_0_1_6180)] @@ -173,12 +175,14 @@ void HandleInventoryChangeFailure(WorldPacket packet) } SendPacketToClient(failure); - if (GetSession().GameState.CurrentClientNormalCast != null && - !GetSession().GameState.CurrentClientNormalCast.HasStarted && - GetSession().GameState.CurrentClientNormalCast.ItemGUID == failure.Item[0]) + if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && + !GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID == failure.Item[0]) { - GetSession().InstanceSocket.SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); - GetSession().GameState.CurrentClientNormalCast = null; + GetSession().InstanceSocket.SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } } } [PacketHandler(Opcode.SMSG_DURABILITY_DAMAGE_DEATH)] diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index a9a9fd72..3a1f45a5 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -4,6 +4,7 @@ using HermesProxy.World.Server.Packets; using System; using System.Threading; +using System.Collections.Generic; using Framework.Logging; namespace HermesProxy.World.Client @@ -166,36 +167,77 @@ void HandleCastFailed(WorldPacket packet) SendPacketToClient(failed); GetSession().GameState.CurrentClientSpecialCast = null; } - else if (GetSession().GameState.CurrentClientNormalCast != null && - GetSession().GameState.CurrentClientNormalCast.SpellId == spellId) + else if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spellId) { - if (!GetSession().GameState.CurrentClientNormalCast.HasStarted) + ClientCastRequest request = null; + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + request = GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + + } + + if (!request.HasStarted) { SpellPrepare prepare2 = new SpellPrepare(); - prepare2.ClientCastID = GetSession().GameState.CurrentClientNormalCast.ClientGUID; - prepare2.ServerCastID = GetSession().GameState.CurrentClientNormalCast.ServerGUID; + prepare2.ClientCastID = request.ClientGUID; + prepare2.ServerCastID = request.ServerGUID; SendPacketToClient(prepare2); } CastFailed failed = new(); - failed.SpellID = GetSession().GameState.CurrentClientNormalCast.SpellId; - failed.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; + failed.SpellID = request.SpellId; + failed.SpellXSpellVisualID = request.SpellXSpellVisualId; failed.Reason = LegacyVersion.ConvertSpellCastResult(reason); - failed.CastID = GetSession().GameState.CurrentClientNormalCast.ServerGUID; + failed.CastID = request.ServerGUID; failed.FailedArg1 = arg1; failed.FailedArg2 = arg2; SendPacketToClient(failed); - - GetSession().GameState.CurrentClientNormalCast = null; foreach (var pending in GetSession().GameState.PendingClientCasts) GetSession().InstanceSocket.SendCastRequestFailed(pending, false); GetSession().GameState.PendingClientCasts.Clear(); } - else if (GetSession().GameState.CurrentClientNormalCast != null && - GetSession().GameState.CurrentClientNormalCast.SpellId != spellId) { + else { + if(GetSession().GameState.CurrentClientNormalCastQueue.Count>0){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId != spellId) { + + List oldrequests = new List(); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ + if(r.SpellId != spellId) { + oldrequests.Add(r); + } else { + if (!r.HasStarted) + { + SpellPrepare prepare2 = new SpellPrepare(); + prepare2.ClientCastID = r.ClientGUID; + prepare2.ServerCastID = r.ServerGUID; + SendPacketToClient(prepare2); + } + + CastFailed failed = new(); + failed.SpellID = r.SpellId; + failed.SpellXSpellVisualID = r.SpellXSpellVisualId; + failed.Reason = LegacyVersion.ConvertSpellCastResult(reason); + failed.CastID = r.ServerGUID; + failed.FailedArg1 = arg1; + failed.FailedArg2 = arg2; + SendPacketToClient(failed); + foreach (var pending in GetSession().GameState.PendingClientCasts) + GetSession().InstanceSocket.SendCastRequestFailed(pending, false); + GetSession().GameState.PendingClientCasts.Clear(); + } + } + GetSession().GameState.CurrentClientNormalCastQueue.Clear(); - Log.Print(LogType.Warn, $"Unknow spell fail return session {GetSession().GameState.CurrentClientNormalCast.SpellId} return {spellId})"); - } + foreach(ClientCastRequest r in oldrequests){ + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(r); + } + } + } + } else { + Log.Print(LogType.Warn, $"receive Cast fail {spellId} but CurrentClientNormalCastQueue empty"); + } + } } [PacketHandler(Opcode.SMSG_PET_CAST_FAILED, ClientVersionBuild.Zero, ClientVersionBuild.V2_0_1_6180)] @@ -306,11 +348,11 @@ void HandleSpellFailedOther(WorldPacket packet) WowGuid128 castId; uint spellVisual; if (GetSession().GameState.CurrentPlayerGuid == casterUnit && - GetSession().GameState.CurrentClientNormalCast != null && - GetSession().GameState.CurrentClientNormalCast.SpellId == spellId) + GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spellId) { - castId = GetSession().GameState.CurrentClientNormalCast.ServerGUID; - spellVisual = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; + castId = GetSession().GameState.CurrentClientNormalCastQueue.Peek().ServerGUID; + spellVisual = GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellXSpellVisualId; } else if (GetSession().GameState.CurrentPetGuid == casterUnit && GetSession().GameState.CurrentClientPetCast != null && @@ -353,15 +395,15 @@ void HandleSpellStart(WorldPacket packet) byte failPending = 0; if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && - GetSession().GameState.CurrentClientNormalCast != null && - GetSession().GameState.CurrentClientNormalCast.SpellId == spell.Cast.SpellID) + GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spell.Cast.SpellID) { - spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCast.ServerGUID; - spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; - GetSession().GameState.CurrentClientNormalCast.HasStarted = true; + spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().ServerGUID; + spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellXSpellVisualId; + GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted = true; SpellPrepare prepare = new(); - prepare.ClientCastID = GetSession().GameState.CurrentClientNormalCast.ClientGUID; + prepare.ClientCastID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().ClientGUID; prepare.ServerCastID = spell.Cast.CastID; SendPacketToClient(prepare); failPending = 1; @@ -412,17 +454,8 @@ void HandleSpellGo(WorldPacket packet) SpellGo spell = new SpellGo(); spell.Cast = HandleSpellStartOrGo(packet, true); - if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && - GetSession().GameState.CurrentClientNormalCast != null && - GetSession().GameState.CurrentClientNormalCast.SpellId == spell.Cast.SpellID) - { - Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); - spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCast.ServerGUID; - spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; - GetSession().GameState.CurrentClientNormalCast = null; - - } - else if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == spell.Cast.SpellID) { @@ -439,13 +472,45 @@ void HandleSpellGo(WorldPacket packet) spell.Cast.CastID = GetSession().GameState.CurrentClientPetCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientPetCast.SpellXSpellVisualId; GetSession().GameState.CurrentClientPetCast = null; + } else { + Log.Print(LogType.Warn, $"NORMAL SPELL_GO received {spell.Cast.SpellID} "); + if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && + GetSession().GameState.CurrentClientNormalCastQueue.Count>0 ) + { + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spell.Cast.SpellID) { + Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); + spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().ServerGUID; + spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellXSpellVisualId; + + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } else { + + List oldrequests = new List(); + foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ + if(r.SpellId != spell.Cast.SpellID) { + oldrequests.Add(r); + } else { + Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); + spell.Cast.CastID = r.ServerGUID; + spell.Cast.SpellXSpellVisualID = r.SpellXSpellVisualId; + } + } + GetSession().GameState.CurrentClientNormalCastQueue.Clear(); + + foreach(ClientCastRequest r in oldrequests){ + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(r); + } + } + } else { + + } + } if (!spell.Cast.CasterUnit.IsEmpty() && GameData.AuraSpells.Contains((uint)spell.Cast.SpellID)) { foreach (WowGuid128 target in spell.Cast.HitTargets) GetSession().GameState.StoreLastAuraCasterOnTarget(target, (uint)spell.Cast.SpellID, spell.Cast.CasterUnit); - } - + }} SendPacketToClient(spell); } diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index 6fcef5f1..4ce3e802 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -170,14 +170,18 @@ void HandleCastSpell(CastSpell cast) } } - if (GetSession().GameState.CurrentClientNormalCast != null) + if (GetSession().GameState.CurrentClientNormalCastQueue.Count != 0) { Log.Print(LogType.Warn, $"CurrentClientNormalCast not null {castRequest.SpellId} "); - if (GetSession().GameState.CurrentClientNormalCast.HasStarted) + if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted) { - - if(GetSession().GameState.CurrentClientNormalCast.SpellId == 20904 && (Environment.TickCount - GetSession().GameState.CurrentClientNormalCast.Timestamp)>2800){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == 20904 && (Environment.TickCount - GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp)>2800){ Log.Print(LogType.Warn, $"AimedShot 2.8S+ Allow spell othere spell {castRequest.SpellId}"); + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == castRequest.SpellId ) { + Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); + SendCastRequestFailed(castRequest, false); + return; + } } else { SendCastRequestFailed(castRequest, false); return; @@ -185,36 +189,46 @@ void HandleCastSpell(CastSpell cast) } else { - - long duration = Environment.TickCount - GetSession().GameState.CurrentClientNormalCast.Timestamp; + long duration = Environment.TickCount - GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp; // 驱 - if(GetSession().GameState.CurrentClientNormalCast.SpellId ==19503&&duration>1350){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId ==19503&&duration>1350){ Log.Print(LogType.Warn, "驱散射击公共CD>1.35s 施放其他法术"); // do nothing let it go } else { + + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == castRequest.SpellId ) { + Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); + SendCastRequestFailed(castRequest, false); + return; + } + + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID != null) { + Thread.Sleep(200); + } + // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO - if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) + if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp + 10000 < castRequest.Timestamp) { - Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCast.SpellId} newSpell:{castRequest.SpellId})"); + Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId} newSpell:{castRequest.SpellId})"); Log.Print(LogType.Warn, "Are you playing on a server with another patch?"); - SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); - GetSession().GameState.CurrentClientNormalCast = null; + SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } foreach (var pending in GetSession().GameState.PendingClientCasts) SendCastRequestFailed(pending, false); GetSession().GameState.PendingClientCasts.Clear(); SendCastRequestFailed(castRequest, false); } - else { - GetSession().GameState.PendingClientCasts.Add(castRequest); - } - return; + // Log.Print(LogType.Warn, $"Ignore spell {castRequest.SpellId}"); + // return; } - - } } - GetSession().GameState.CurrentClientNormalCast = castRequest; + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(castRequest); + } } SpellCastTargetFlags targetFlags = ConvertSpellTargetFlags(cast.Cast.Target); @@ -315,32 +329,40 @@ void HandleUseItem(UseItem use) castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, use.Cast.SpellID, 10000 + use.Cast.CastID.GetCounter()); castRequest.ItemGUID = use.CastItem; - if (GetSession().GameState.CurrentClientNormalCast != null) + Log.Print(LogType.Warn, $"Use item {use.Cast.SpellID}"); + + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if (GetSession().GameState.CurrentClientNormalCastQueue.Count !=0) { - if (GetSession().GameState.CurrentClientNormalCast.HasStarted) + if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted) { + Log.Print(LogType.Warn, $"Use item cast fail {use.Cast.SpellID}"); SendCastRequestFailed(castRequest, false); } else { // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO - if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) + if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp + 10000 < castRequest.Timestamp) { - Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCast.SpellId} newSpell:{castRequest.SpellId})"); - SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); - GetSession().GameState.CurrentClientNormalCast = null; + Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId} newSpell:{castRequest.SpellId})"); + SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } foreach (var pending in GetSession().GameState.PendingClientCasts) SendCastRequestFailed(pending, false); GetSession().GameState.PendingClientCasts.Clear(); SendCastRequestFailed(castRequest, false); } - else - GetSession().GameState.PendingClientCasts.Add(castRequest); + if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID != null) { + // SendCastRequestFailed(castRequest, false); + return; + } } - return; } - GetSession().GameState.CurrentClientNormalCast = castRequest; + + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue( castRequest); WorldPacket packet = new WorldPacket(Opcode.CMSG_USE_ITEM); byte containerSlot = use.PackSlot != Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(use.PackSlot) : use.PackSlot; @@ -356,6 +378,8 @@ void HandleUseItem(UseItem use) SpellCastTargetFlags targetFlags = ConvertSpellTargetFlags(use.Cast.Target); WriteSpellTargets(use.Cast.Target, targetFlags, packet); SendPacketToServer(packet); + } + } [PacketHandler(Opcode.CMSG_CANCEL_CAST)] void HandleCancelCast(CancelCast cast) @@ -369,6 +393,17 @@ void HandleCancelCast(CancelCast cast) if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.WriteUInt8(0); packet.WriteUInt32(cast.SpellID); + if (GetSession().GameState.CurrentClientSpecialCast != null && + GetSession().GameState.CurrentClientSpecialCast.SpellId == cast.SpellID) + { + GetSession().GameState.CurrentClientSpecialCast = null; + } else if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && + GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == cast.SpellID) + { + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + } + } SendPacketToServer(packet); } [PacketHandler(Opcode.CMSG_CANCEL_CHANNELLING)] diff --git a/HermesProxy/World/Server/WorldSocket.cs b/HermesProxy/World/Server/WorldSocket.cs index 9b40a8ce..f7f84fa6 100644 --- a/HermesProxy/World/Server/WorldSocket.cs +++ b/HermesProxy/World/Server/WorldSocket.cs @@ -332,8 +332,10 @@ public void HandlePacket(WorldPacket packet) private void SendPacketToServer(WorldPacket packet, Opcode delayUntilOpcode = Opcode.MSG_NULL_ACTION) { - if (GetSession().WorldClient != null) - GetSession().WorldClient.SendPacketToServer(packet, delayUntilOpcode); + if (GetSession().WorldClient != null){ + // Log.Print(LogType.Error, $"Attempt to send opcode {packet.GetUniversalOpcode(false)} ({packet.GetOpcode()})!"); + GetSession().WorldClient.SendPacketToServer(packet, delayUntilOpcode); + } else Log.Print(LogType.Error, $"Attempt to send opcode {packet.GetUniversalOpcode(false)} ({packet.GetOpcode()}) while WorldClient is disconnected!"); } From 45bfcf948ca482f4c4dee131f7fdd452ae542259 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Sat, 10 Jun 2023 08:04:14 +0800 Subject: [PATCH 07/11] FIX BUG --- .../Client/PacketHandlers/SpellHandler.cs | 12 ++++++ .../Server/PacketHandlers/SpellHandler.cs | 43 +++++++++++++------ 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 3a1f45a5..88402ce5 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -130,6 +130,7 @@ void HandleCastFailed(WorldPacket packet) { // Artificial lag is needed for spell packets, // or spells will bug out and glow if spammed. + try{ if (Settings.ClientSpellDelay > 0) Thread.Sleep(Settings.ClientSpellDelay); @@ -238,6 +239,9 @@ void HandleCastFailed(WorldPacket packet) Log.Print(LogType.Warn, $"receive Cast fail {spellId} but CurrentClientNormalCastQueue empty"); } } + } catch(Exception e){ + Log.Print(LogType.Warn, $"{e.Message}"); + } } [PacketHandler(Opcode.SMSG_PET_CAST_FAILED, ClientVersionBuild.Zero, ClientVersionBuild.V2_0_1_6180)] @@ -452,6 +456,10 @@ void HandleSpellGo(WorldPacket packet) if (GetSession().GameState.CurrentMapId == null) return; + + try{ + + SpellGo spell = new SpellGo(); spell.Cast = HandleSpellStartOrGo(packet, true); lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -512,6 +520,10 @@ void HandleSpellGo(WorldPacket packet) GetSession().GameState.StoreLastAuraCasterOnTarget(target, (uint)spell.Cast.SpellID, spell.Cast.CasterUnit); }} SendPacketToClient(spell); + + }catch(Exception e){ + Log.Print(LogType.Warn, $"NORMAL SPELL_GO error {e.Message} "); + } } SpellCastData HandleSpellStartOrGo(WorldPacket packet, bool isSpellGo) diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index 4ce3e802..e1f2e4bc 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -170,14 +170,25 @@ void HandleCastSpell(CastSpell cast) } } - if (GetSession().GameState.CurrentClientNormalCastQueue.Count != 0) + + + ClientCastRequest CurrentClientNormalCast = null; + + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ + CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); + } + } + + if (CurrentClientNormalCast != null) { + Log.Print(LogType.Warn, $"CurrentClientNormalCast not null {castRequest.SpellId} "); - if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted) + if (CurrentClientNormalCast.HasStarted) { - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == 20904 && (Environment.TickCount - GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp)>2800){ + if(CurrentClientNormalCast.SpellId == 20904 && (Environment.TickCount - CurrentClientNormalCast.Timestamp)>2800){ Log.Print(LogType.Warn, $"AimedShot 2.8S+ Allow spell othere spell {castRequest.SpellId}"); - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == castRequest.SpellId ) { + if(CurrentClientNormalCast.SpellId == castRequest.SpellId ) { Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); SendCastRequestFailed(castRequest, false); return; @@ -189,31 +200,33 @@ void HandleCastSpell(CastSpell cast) } else { - long duration = Environment.TickCount - GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp; + long duration = Environment.TickCount - CurrentClientNormalCast.Timestamp; // 驱 - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId ==19503&&duration>1350){ + if(CurrentClientNormalCast.SpellId ==19503&&duration>1350){ Log.Print(LogType.Warn, "驱散射击公共CD>1.35s 施放其他法术"); // do nothing let it go } else { - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == castRequest.SpellId ) { + if(CurrentClientNormalCast.SpellId == castRequest.SpellId ) { Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); SendCastRequestFailed(castRequest, false); return; } - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID != null) { + if(CurrentClientNormalCast.ItemGUID != null) { Thread.Sleep(200); } // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO - if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp + 10000 < castRequest.Timestamp) + if (CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) { - Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId} newSpell:{castRequest.SpellId})"); + Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{CurrentClientNormalCast.SpellId} newSpell:{castRequest.SpellId})"); Log.Print(LogType.Warn, "Are you playing on a server with another patch?"); - SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); + SendCastRequestFailed(CurrentClientNormalCast, false); lock(GetSession().GameState.CurrentClientNormalCastQueue){ + try{ GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + }catch(Exception e){} } foreach (var pending in GetSession().GameState.PendingClientCasts) SendCastRequestFailed(pending, false); @@ -338,6 +351,7 @@ void HandleUseItem(UseItem use) { Log.Print(LogType.Warn, $"Use item cast fail {use.Cast.SpellID}"); SendCastRequestFailed(castRequest, false); + return; } else { @@ -347,7 +361,10 @@ void HandleUseItem(UseItem use) Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId} newSpell:{castRequest.SpellId})"); SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); lock(GetSession().GameState.CurrentClientNormalCastQueue){ + try{ GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + }catch(Exception e){ + } } foreach (var pending in GetSession().GameState.PendingClientCasts) SendCastRequestFailed(pending, false); @@ -401,7 +418,9 @@ void HandleCancelCast(CancelCast cast) GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == cast.SpellID) { lock(GetSession().GameState.CurrentClientNormalCastQueue){ - GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + try{ + GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); + }catch{} } } SendPacketToServer(packet); From c25a3a1327ec3782e2023bd015f9a853ba13e599 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Sat, 10 Jun 2023 16:56:06 +0800 Subject: [PATCH 08/11] fix item bug. --- HermesProxy/Configuration/Settings.cs | 9 ++ HermesProxy/GlobalSessionData.cs | 1 - .../Client/PacketHandlers/SpellHandler.cs | 40 ++--- .../Server/PacketHandlers/SpellHandler.cs | 142 ++++++++++-------- 4 files changed, 100 insertions(+), 92 deletions(-) diff --git a/HermesProxy/Configuration/Settings.cs b/HermesProxy/Configuration/Settings.cs index 13084ea5..bffb63b5 100644 --- a/HermesProxy/Configuration/Settings.cs +++ b/HermesProxy/Configuration/Settings.cs @@ -28,6 +28,8 @@ public static class Settings public static bool DebugOutput; public static bool PacketsLog; public static int ServerSpellDelay; + + public static int MacroSpellDelay; public static int ClientSpellDelay; public static bool LoadAndVerifyFrom(ConfigurationParser config) @@ -51,6 +53,7 @@ public static bool LoadAndVerifyFrom(ConfigurationParser config) DebugOutput = config.GetBoolean("DebugOutput", false); PacketsLog = config.GetBoolean("PacketsLog", true); ServerSpellDelay = config.GetInt("ServerSpellDelay", 0); + MacroSpellDelay = config.GetInt("MacroSpellDelay", 100); ClientSpellDelay = config.GetInt("ClientSpellDelay", 0); return VerifyConfig(); @@ -112,6 +115,12 @@ private static bool VerifyConfig() return false; } + if (MacroSpellDelay < 0) + { + Log.Print(LogType.Server, "MacroSpellDelay must be larger than or equal to 0"); + return false; + } + if (ClientSpellDelay < 0) { Log.Print(LogType.Server, "ClientSpellDelay must be larger than or equal to 0"); diff --git a/HermesProxy/GlobalSessionData.cs b/HermesProxy/GlobalSessionData.cs index 9b09b11e..91025d9a 100644 --- a/HermesProxy/GlobalSessionData.cs +++ b/HermesProxy/GlobalSessionData.cs @@ -92,7 +92,6 @@ public class GameSessionData public Queue CurrentClientSpecialCastQueue = new(); public ClientCastRequest CurrentClientPetCast; - public List PendingClientCasts = new List(); public List PendingClientPetCasts = new List(); public WowGuid64 LastLootTargetGuid; public List ActionButtons = new(); diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 88402ce5..38a55bab 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -154,6 +154,8 @@ void HandleCastFailed(WorldPacket packet) arg1 = packet.ReadInt32(); if (packet.CanRead()) arg2 = packet.ReadInt32(); + + if (GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == spellId) @@ -174,7 +176,6 @@ void HandleCastFailed(WorldPacket packet) ClientCastRequest request = null; lock(GetSession().GameState.CurrentClientNormalCastQueue){ request = GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); - } if (!request.HasStarted) @@ -193,9 +194,6 @@ void HandleCastFailed(WorldPacket packet) failed.FailedArg1 = arg1; failed.FailedArg2 = arg2; SendPacketToClient(failed); - foreach (var pending in GetSession().GameState.PendingClientCasts) - GetSession().InstanceSocket.SendCastRequestFailed(pending, false); - GetSession().GameState.PendingClientCasts.Clear(); } else { if(GetSession().GameState.CurrentClientNormalCastQueue.Count>0){ @@ -203,8 +201,9 @@ void HandleCastFailed(WorldPacket packet) List oldrequests = new List(); lock(GetSession().GameState.CurrentClientNormalCastQueue){ + Boolean done = false; foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ - if(r.SpellId != spellId) { + if(r.SpellId != spellId || done == true) { oldrequests.Add(r); } else { if (!r.HasStarted) @@ -223,9 +222,7 @@ void HandleCastFailed(WorldPacket packet) failed.FailedArg1 = arg1; failed.FailedArg2 = arg2; SendPacketToClient(failed); - foreach (var pending in GetSession().GameState.PendingClientCasts) - GetSession().InstanceSocket.SendCastRequestFailed(pending, false); - GetSession().GameState.PendingClientCasts.Clear(); + done = true; } } GetSession().GameState.CurrentClientNormalCastQueue.Clear(); @@ -436,13 +433,7 @@ void HandleSpellStart(WorldPacket packet) SendPacketToClient(spell); - if (failPending == 1) - { - foreach (var pending in GetSession().GameState.PendingClientCasts) - GetSession().InstanceSocket.SendCastRequestFailed(pending, false); - GetSession().GameState.PendingClientCasts.Clear(); - } - else if (failPending == 2) + if (failPending == 2) { foreach (var pending in GetSession().GameState.PendingClientPetCasts) GetSession().InstanceSocket.SendCastRequestFailed(pending, true); @@ -456,10 +447,8 @@ void HandleSpellGo(WorldPacket packet) if (GetSession().GameState.CurrentMapId == null) return; - try{ - SpellGo spell = new SpellGo(); spell.Cast = HandleSpellStartOrGo(packet, true); lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -471,7 +460,6 @@ void HandleSpellGo(WorldPacket packet) Log.Print(LogType.Warn, $"SPELL_GO {spell.Cast.SpellID}"); spell.Cast.CastID = GetSession().GameState.CurrentClientSpecialCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientSpecialCast.SpellXSpellVisualId; - } else if (GetSession().GameState.CurrentPetGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientPetCast != null && @@ -485,26 +473,28 @@ void HandleSpellGo(WorldPacket packet) if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientNormalCastQueue.Count>0 ) { - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spell.Cast.SpellID) { + + ClientCastRequest CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); + if(CurrentClientNormalCast.SpellId == spell.Cast.SpellID) { Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); - spell.Cast.CastID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().ServerGUID; - spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellXSpellVisualId; - + spell.Cast.CastID = CurrentClientNormalCast.ServerGUID; + spell.Cast.SpellXSpellVisualID = CurrentClientNormalCast.SpellXSpellVisualId; GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); } else { List oldrequests = new List(); foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ - if(r.SpellId != spell.Cast.SpellID) { + bool found = false; + if(r.SpellId != spell.Cast.SpellID||found) { oldrequests.Add(r); + found = true; } else { - Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); + found = true; spell.Cast.CastID = r.ServerGUID; spell.Cast.SpellXSpellVisualID = r.SpellXSpellVisualId; } } GetSession().GameState.CurrentClientNormalCastQueue.Clear(); - foreach(ClientCastRequest r in oldrequests){ GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(r); } diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index e1f2e4bc..c69bd435 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -1,6 +1,7 @@ using Framework; using Framework.Constants; using HermesProxy.Enums; +using System.Collections.Generic; using HermesProxy.World; using HermesProxy.World.Enums; using HermesProxy.World.Objects; @@ -170,8 +171,6 @@ void HandleCastSpell(CastSpell cast) } } - - ClientCastRequest CurrentClientNormalCast = null; lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -184,29 +183,7 @@ void HandleCastSpell(CastSpell cast) { Log.Print(LogType.Warn, $"CurrentClientNormalCast not null {castRequest.SpellId} "); - if (CurrentClientNormalCast.HasStarted) - { - if(CurrentClientNormalCast.SpellId == 20904 && (Environment.TickCount - CurrentClientNormalCast.Timestamp)>2800){ - Log.Print(LogType.Warn, $"AimedShot 2.8S+ Allow spell othere spell {castRequest.SpellId}"); - if(CurrentClientNormalCast.SpellId == castRequest.SpellId ) { - Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); - SendCastRequestFailed(castRequest, false); - return; - } - } else { - SendCastRequestFailed(castRequest, false); - return; - } - } - else - { - long duration = Environment.TickCount - CurrentClientNormalCast.Timestamp; - // 驱 - if(CurrentClientNormalCast.SpellId ==19503&&duration>1350){ - Log.Print(LogType.Warn, "驱散射击公共CD>1.35s 施放其他法术"); - // do nothing let it go - } else { - + if(CurrentClientNormalCast.SpellId == castRequest.SpellId ) { Log.Print(LogType.Warn, $"同类法术已成功施法{castRequest.SpellId }忽略."); SendCastRequestFailed(castRequest, false); @@ -214,7 +191,7 @@ void HandleCastSpell(CastSpell cast) } if(CurrentClientNormalCast.ItemGUID != null) { - Thread.Sleep(200); + Thread.Sleep(Settings.MacroSpellDelay); } // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO @@ -228,15 +205,8 @@ void HandleCastSpell(CastSpell cast) GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); }catch(Exception e){} } - foreach (var pending in GetSession().GameState.PendingClientCasts) - SendCastRequestFailed(pending, false); - GetSession().GameState.PendingClientCasts.Clear(); SendCastRequestFailed(castRequest, false); } - // Log.Print(LogType.Warn, $"Ignore spell {castRequest.SpellId}"); - // return; - } - } } lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -267,7 +237,7 @@ void HandleCastSpell(CastSpell cast) SendPacketToServer(packet); // force cancel combat if(cast.Cast.SpellID == 5384) { - Thread.Sleep(Settings.ServerSpellDelay); + Thread.Sleep(50); CancelCombat combat = new(); SendPacket(combat); } @@ -342,44 +312,73 @@ void HandleUseItem(UseItem use) castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, use.Cast.SpellID, 10000 + use.Cast.CastID.GetCounter()); castRequest.ItemGUID = use.CastItem; - Log.Print(LogType.Warn, $"Use item {use.Cast.SpellID}"); + ClientCastRequest CurrentClientNormalCast = null; - lock(GetSession().GameState.CurrentClientNormalCastQueue){ - if (GetSession().GameState.CurrentClientNormalCastQueue.Count !=0) - { - if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().HasStarted) + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ + CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); + } + } + + // prevent the client spell to much. + lock(GameData.LastSpellTime){ + long spellTime = DateTime.Now.Ticks; + if(!GameData.LastSpellTime.ContainsKey(castRequest.SpellId)){ + GameData.LastSpellTime.Add(castRequest.SpellId,DateTime.Now.Ticks); + } else { + if((spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000<100){ + Log.Print(LogType.Warn, $"Last spell too short{castRequest.SpellId} {(spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000} "); + SendCastRequestFailed(castRequest, false); + return; + } else { + GameData.LastSpellTime[castRequest.SpellId]=spellTime; + } + } + } + + if (CurrentClientNormalCast!= null) + { try{ + + if (CurrentClientNormalCast.HasStarted) { - Log.Print(LogType.Warn, $"Use item cast fail {use.Cast.SpellID}"); SendCastRequestFailed(castRequest, false); return; - } - else - { + } else { // Sometimes we dont clear the CurrentCast when we dont get the correct SMSG_SPELL_GO - if (GetSession().GameState.CurrentClientNormalCastQueue.Peek().Timestamp + 10000 < castRequest.Timestamp) + if (CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) { - Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId} newSpell:{castRequest.SpellId})"); - SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCastQueue.Peek(), false); - lock(GetSession().GameState.CurrentClientNormalCastQueue){ - try{ - GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); - }catch(Exception e){ + Log.Print(LogType.Warn, $"Clearing CurrentClientNormalCast because of 10 sec timeout! (oldSpell:{CurrentClientNormalCast.SpellId} newSpell:{castRequest.SpellId})"); + + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ + SendCastRequestFailed(r, false); } + GetSession().GameState.CurrentClientNormalCastQueue.Clear(); } - foreach (var pending in GetSession().GameState.PendingClientCasts) - SendCastRequestFailed(pending, false); - GetSession().GameState.PendingClientCasts.Clear(); - SendCastRequestFailed(castRequest, false); } - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().ItemGUID != null) { - // SendCastRequestFailed(castRequest, false); - return; + + if(CurrentClientNormalCast.ItemGUID != null) { + Log.Print(LogType.Warn, $"Item using oldSpell:{CurrentClientNormalCast.SpellId} newSpell:{castRequest.SpellId})"); + Thread.Sleep(Settings.MacroSpellDelay); + } + + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ + foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ + if(r.SpellId == castRequest.SpellId) { + Log.Print(LogType.Warn, $"Same Item using ignore :{GetSession().GameState.CurrentClientNormalCastQueue.Count}"); + return; + } + } } } + } + }catch(Exception e){} } - - GetSession().GameState.CurrentClientNormalCastQueue.Enqueue( castRequest); + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(castRequest); + } WorldPacket packet = new WorldPacket(Opcode.CMSG_USE_ITEM); byte containerSlot = use.PackSlot != Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(use.PackSlot) : use.PackSlot; @@ -395,7 +394,6 @@ void HandleUseItem(UseItem use) SpellCastTargetFlags targetFlags = ConvertSpellTargetFlags(use.Cast.Target); WriteSpellTargets(use.Cast.Target, targetFlags, packet); SendPacketToServer(packet); - } } [PacketHandler(Opcode.CMSG_CANCEL_CAST)] @@ -410,20 +408,32 @@ void HandleCancelCast(CancelCast cast) if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.WriteUInt8(0); packet.WriteUInt32(cast.SpellID); + try{ if (GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == cast.SpellID) { GetSession().GameState.CurrentClientSpecialCast = null; - } else if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && - GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == cast.SpellID) + } else if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0) { - lock(GetSession().GameState.CurrentClientNormalCastQueue){ - try{ - GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); - }catch{} + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + List oldrequests = new List(); + foreach(ClientCastRequest r in GetSession().GameState.CurrentClientNormalCastQueue){ + bool found = false; + if(r.SpellId != cast.SpellID||found) { + oldrequests.Add(r); + found = true; + } else { + found = true; + } + } + GetSession().GameState.CurrentClientNormalCastQueue.Clear(); + foreach(ClientCastRequest r in oldrequests){ + GetSession().GameState.CurrentClientNormalCastQueue.Enqueue(r); + } } } SendPacketToServer(packet); + }catch{} } [PacketHandler(Opcode.CMSG_CANCEL_CHANNELLING)] void HandleCancelChannelling(CancelChannelling cast) From 14a0b505a22f9a1c67919815b526d071994f73bd Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Fri, 29 Sep 2023 22:09:11 +0800 Subject: [PATCH 09/11] Fix rogue and walk bug. --- .../Client/PacketHandlers/CombatHandler.cs | 6 +++ .../Client/PacketHandlers/MovementHandler.cs | 2 +- .../Client/PacketHandlers/SpellHandler.cs | 53 +++++++++++++++---- HermesProxy/World/GameData.cs | 6 ++- .../Server/PacketHandlers/SpellHandler.cs | 26 +++++++++ HermesProxy/World/Server/WorldSocket.cs | 14 ++++- HermesProxy/World/WowGuid.cs | 16 ++++++ 7 files changed, 108 insertions(+), 15 deletions(-) diff --git a/HermesProxy/World/Client/PacketHandlers/CombatHandler.cs b/HermesProxy/World/Client/PacketHandlers/CombatHandler.cs index af793376..b1c430ac 100644 --- a/HermesProxy/World/Client/PacketHandlers/CombatHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/CombatHandler.cs @@ -37,6 +37,12 @@ void HandleAttackerStateUpdate(WorldPacket packet) attack.VictimGUID = packet.ReadPackedGuid().To128(GetSession().GameState); attack.Damage = packet.ReadInt32(); attack.OriginalDamage = attack.Damage; + if(GameData.StealthStatus == true) { + CooldownEvent cooldown = new(); + cooldown.SpellID = 1787; + SendPacketToClient(cooldown); + GameData.StealthStatus = false; + } if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_3_9183)) attack.OverDamage = packet.ReadInt32(); diff --git a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs index 1d901078..48b63564 100644 --- a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs @@ -328,7 +328,7 @@ or Opcode.SMSG_MOVE_UPDATE_SWIM_BACK_SPEED && [PacketHandler(Opcode.SMSG_MOVE_SPLINE_START_SWIM)] [PacketHandler(Opcode.SMSG_MOVE_SPLINE_STOP_SWIM)] [PacketHandler(Opcode.SMSG_MOVE_SPLINE_SET_RUN_MODE)] - [PacketHandler(Opcode.SMSG_MOVE_SPLINE_SET_WALK_MODE)] + // [PacketHandler(Opcode.SMSG_MOVE_SPLINE_SET_WALK_MODE)] [PacketHandler(Opcode.SMSG_MOVE_SPLINE_SET_FLYING)] [PacketHandler(Opcode.SMSG_MOVE_SPLINE_UNSET_FLYING)] void HandleSplineMovementMessages(WorldPacket packet) diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 38a55bab..bbae984e 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -155,6 +155,13 @@ void HandleCastFailed(WorldPacket packet) if (packet.CanRead()) arg2 = packet.ReadInt32(); + ClientCastRequest CurrentClientNormalCast = null; + + lock(GetSession().GameState.CurrentClientNormalCastQueue){ + if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ + CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); + } + } if (GetSession().GameState.CurrentClientSpecialCast != null && @@ -170,8 +177,8 @@ void HandleCastFailed(WorldPacket packet) SendPacketToClient(failed); GetSession().GameState.CurrentClientSpecialCast = null; } - else if (GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && - GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId == spellId) + else if (CurrentClientNormalCast!=null && + CurrentClientNormalCast.SpellId == spellId) { ClientCastRequest request = null; lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -196,8 +203,8 @@ void HandleCastFailed(WorldPacket packet) SendPacketToClient(failed); } else { - if(GetSession().GameState.CurrentClientNormalCastQueue.Count>0){ - if(GetSession().GameState.CurrentClientNormalCastQueue.Peek().SpellId != spellId) { + if(CurrentClientNormalCast!=null){ + if(CurrentClientNormalCast.SpellId != spellId) { List oldrequests = new List(); lock(GetSession().GameState.CurrentClientNormalCastQueue){ @@ -390,10 +397,9 @@ void HandleSpellStart(WorldPacket packet) { if (GetSession().GameState.CurrentMapId == null) return; - + SpellStart spell = new SpellStart(); spell.Cast = HandleSpellStartOrGo(packet, false); - byte failPending = 0; if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientNormalCastQueue.Count>0 && @@ -448,16 +454,23 @@ void HandleSpellGo(WorldPacket packet) return; try{ - SpellGo spell = new SpellGo(); spell.Cast = HandleSpellStartOrGo(packet, true); + + if(spell.Cast.SpellID == 1787 ) { + GameData.StealthStatus = true; + } + + if(spell.Cast.SpellID == 14177 ) { + GameData.ColdBloodStatus = true; + } + lock(GetSession().GameState.CurrentClientNormalCastQueue){ if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == spell.Cast.SpellID) { - Log.Print(LogType.Warn, $"SPELL_GO {spell.Cast.SpellID}"); spell.Cast.CastID = GetSession().GameState.CurrentClientSpecialCast.ServerGUID; spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientSpecialCast.SpellXSpellVisualId; } @@ -469,14 +482,12 @@ void HandleSpellGo(WorldPacket packet) spell.Cast.SpellXSpellVisualID = GetSession().GameState.CurrentClientPetCast.SpellXSpellVisualId; GetSession().GameState.CurrentClientPetCast = null; } else { - Log.Print(LogType.Warn, $"NORMAL SPELL_GO received {spell.Cast.SpellID} "); if (GetSession().GameState.CurrentPlayerGuid == spell.Cast.CasterUnit && GetSession().GameState.CurrentClientNormalCastQueue.Count>0 ) { ClientCastRequest CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); if(CurrentClientNormalCast.SpellId == spell.Cast.SpellID) { - Log.Print(LogType.Warn, $"NORMAL SPELL_GO {spell.Cast.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); spell.Cast.CastID = CurrentClientNormalCast.ServerGUID; spell.Cast.SpellXSpellVisualID = CurrentClientNormalCast.SpellXSpellVisualId; GetSession().GameState.CurrentClientNormalCastQueue.Dequeue(); @@ -506,9 +517,21 @@ void HandleSpellGo(WorldPacket packet) } if (!spell.Cast.CasterUnit.IsEmpty() && GameData.AuraSpells.Contains((uint)spell.Cast.SpellID)) { + string? casterUnitGUID = spell.Cast.CasterUnit.ToUnitGUID(); foreach (WowGuid128 target in spell.Cast.HitTargets) + { GetSession().GameState.StoreLastAuraCasterOnTarget(target, (uint)spell.Cast.SpellID, spell.Cast.CasterUnit); - }} + string? targetUnitGUID = target.ToUnitGUID(); + if (casterUnitGUID != null && targetUnitGUID != null) + { + uint language = (uint)Language.AddonBfA; + WowGuid128 playerGuid = GetSession().GameState.CurrentPlayerGuid; + ChatPkt chat = new ChatPkt(GetSession(), ChatMessageTypeModern.Addon, $"SMSG_SPELL_GO_AURA:{casterUnitGUID},{targetUnitGUID},{spell.Cast.SpellID}", language, playerGuid, "", playerGuid, "", "", ChatFlags.None, "HermesProxySMSG"); + SendPacketToClient(chat); + } + } + } + } SendPacketToClient(spell); }catch(Exception e){ @@ -737,6 +760,7 @@ void HandleSpellCooldown(WorldPacket packet) { SpellCooldownStruct cd = new(); cd.SpellID = packet.ReadUInt32(); + Log.Print(LogType.Warn, $"HandleSpellCooldown {cd.SpellID} {DateTime.Now.ToString("yyyyMMddHHmmssffff")}"); cd.ForcedCooldown = packet.ReadUInt32(); cooldown.SpellCooldowns.Add(cd); } @@ -760,6 +784,12 @@ void HandleCooldownEvent(WorldPacket packet) { CooldownEvent cooldown = new(); cooldown.SpellID = packet.ReadUInt32(); + if(cooldown.SpellID == 1787) { + GameData.StealthStatus = false; + } + if(cooldown.SpellID == 14177) { + GameData.ColdBloodStatus = false; + } WowGuid guid = packet.ReadGuid(); cooldown.IsPet = guid.GetHighType() == HighGuidType.Pet; SendPacketToClient(cooldown); @@ -786,6 +816,7 @@ void HandleCooldownCheat(WorldPacket packet) [PacketHandler(Opcode.SMSG_SPELL_NON_MELEE_DAMAGE_LOG)] void HandleSpellNonMeleeDamageLog(WorldPacket packet) { + SpellNonMeleeDamageLog spell = new(); spell.TargetGUID = packet.ReadPackedGuid().To128(GetSession().GameState); spell.CasterGUID = packet.ReadPackedGuid().To128(GetSession().GameState); diff --git a/HermesProxy/World/GameData.cs b/HermesProxy/World/GameData.cs index a369051b..e4ab7238 100644 --- a/HermesProxy/World/GameData.cs +++ b/HermesProxy/World/GameData.cs @@ -43,6 +43,10 @@ public static class GameData public static Dictionary LastSpellTime = new Dictionary(); + public static Boolean StealthStatus = false; + + public static Boolean ColdBloodStatus = false; + // From Server public static Dictionary ItemTemplates = new Dictionary(); public static Dictionary CreatureTemplates = new Dictionary(); @@ -1190,7 +1194,7 @@ public static void LoadHotfixes() LoadCreatureDisplayInfoHotfixes(); LoadCreatureDisplayInfoExtraHotfixes(); LoadCreatureDisplayInfoOptionHotfixes(); - LoadItemEffectHotfixes(); + // LoadItemEffectHotfixes(); } public static void LoadAreaTriggerHotfixes() diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index c69bd435..310d32a7 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -314,6 +314,17 @@ void HandleUseItem(UseItem use) ClientCastRequest CurrentClientNormalCast = null; + if (GameData.MountAuras.Contains(use.Cast.SpellID)) + { + if(GameData.StealthStatus == true) { + CooldownEvent cooldown = new(); + cooldown.SpellID = 1787; + Log.Print(LogType.Warn, $"Manual force reset StealthStatus"); + GameData.StealthStatus = false; + SendPacket(cooldown); + } + } + lock(GetSession().GameState.CurrentClientNormalCastQueue){ if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ CurrentClientNormalCast = GetSession().GameState.CurrentClientNormalCastQueue.Peek(); @@ -463,6 +474,21 @@ void HandleCancelAura(CancelAura aura) { WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_AURA); packet.WriteUInt32(aura.SpellID); + // 潜行 + if(aura.SpellID ==1787 && GameData.StealthStatus == true) { + CooldownEvent cooldown = new(); + cooldown.SpellID = aura.SpellID; + Log.Print(LogType.Warn, $"Manual force reset StealthStatus"); + SendPacket(cooldown); + } + // 冷血 + if(aura.SpellID ==14177 && GameData.ColdBloodStatus == true) { + CooldownEvent cooldown = new(); + cooldown.SpellID = aura.SpellID; + Log.Print(LogType.Warn, $"Manual force reset StealthStatus"); + SendPacket(cooldown); + } + SendPacketToServer(packet); } [PacketHandler(Opcode.CMSG_CANCEL_MOUNT_AURA)] diff --git a/HermesProxy/World/Server/WorldSocket.cs b/HermesProxy/World/Server/WorldSocket.cs index f7f84fa6..959fb24c 100644 --- a/HermesProxy/World/Server/WorldSocket.cs +++ b/HermesProxy/World/Server/WorldSocket.cs @@ -324,8 +324,18 @@ public void HandlePacket(WorldPacket packet) { Opcode universalOpcode = packet.GetUniversalOpcode(isModern: true); var handler = GetHandler(universalOpcode); - if (handler != null) - handler.Invoke(this, packet); + if (handler != null){ + try + { + handler.Invoke(this, packet); + } + catch (System.Exception) + { + + Log.PrintNet(LogType.Error, LogNetDir.C2P, $"No handler for opcode {universalOpcode} ({packet.GetOpcode()}) (Got Runtime exception)"); + } + + } else Log.PrintNet(LogType.Warn, LogNetDir.C2P, $"No handler for opcode {universalOpcode} ({packet.GetOpcode()}) (Got unknown packet from ModernClient)"); } diff --git a/HermesProxy/World/WowGuid.cs b/HermesProxy/World/WowGuid.cs index ced6a34c..fca5ac59 100644 --- a/HermesProxy/World/WowGuid.cs +++ b/HermesProxy/World/WowGuid.cs @@ -331,6 +331,22 @@ public override ulong GetCounter() return Low & 0xFFFFFFFFFF; // CreationBits } + public string? ToUnitGUID() + { + string lowHex = Low.ToString("X16"); + HighGuidType highType = GetHighType(); + switch (highType) + { + case HighGuidType.Player: + return $"{highType}-{GetRealmId()}-{lowHex.Substring(lowHex.Length - 8)}"; + case HighGuidType.Creature: + case HighGuidType.Pet: + return $"{highType}-{GetSubType()}-{GetRealmId()}-{GetServerId()}-{GetMapId()}-{GetEntry()}-{lowHex.Substring(lowHex.Length - 10)}"; + default: + Log.Print(LogType.Warn, "unsupported GUID type: ({GetHighType()})"); + return null; + } + } public override string ToString() { if (Low == 0 && High == 0) From 2b406cc211db200af4027f5b3f3dd5df85a941e2 Mon Sep 17 00:00:00 2001 From: Miphalolx Date: Mon, 23 Oct 2023 00:01:44 +0800 Subject: [PATCH 10/11] Fixed items bug. --- .gitignore | 2 +- .../Networking/BnetRestApiSession.cs | 2 +- .../Services/Services/Authentication.cs | 2 +- HermesProxy/CSV/BuildAuthSeeds.csv | 12 + HermesProxy/CSV/Hotfix/Item1.csv | 1 + HermesProxy/CSV/Hotfix/Item2.csv | 1 + HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv | 2386 + HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv | 1 + HermesProxy/CSV/Hotfix/ItemSparse1.csv | 2 +- HermesProxy/CSV/Item1.csv | 17853 ++++++ HermesProxy/CSV/Item2.csv | 30007 ++++++++++ HermesProxy/CSV/ItemAppearance1.csv | 6165 +++ HermesProxy/CSV/ItemAppearance2.csv | 9405 ++++ .../CSV/ItemDisplayIdToFileDataId1.csv | 21608 ++++++++ .../CSV/ItemDisplayIdToFileDataId2.csv | 31105 +++++++++++ HermesProxy/CSV/ItemEffect1.csv | 7495 +++ HermesProxy/CSV/ItemEffect2.csv | 17687 ++++++ HermesProxy/CSV/ItemIdToDisplayId1.csv | 17531 ++++++ HermesProxy/CSV/ItemIdToDisplayId2.csv | 30397 ++++++++++ HermesProxy/CSV/ItemIdToDisplayId3.csv | 46097 ++++++++++++++++ HermesProxy/CSV/ItemModifiedAppearance1.csv | 9283 ++++ HermesProxy/CSV/ItemModifiedAppearance2.csv | 16747 ++++++ HermesProxy/CSV/ItemSparse1.csv | 17600 ++++++ HermesProxy/CSV/ItemSparse2.csv | 30002 ++++++++++ HermesProxy/CSV/ItemSpellsData1.csv | 2346 + HermesProxy/CSV/ItemSpellsData2.csv | 3482 ++ HermesProxy/GlobalSessionData.cs | 2 + HermesProxy/HermesProxy.csproj | 1 + HermesProxy/VersionChecker.cs | 5 + .../Client/PacketHandlers/ChatHandler.cs | 4 +- .../Client/PacketHandlers/QueryHandler.cs | 223 +- .../Client/PacketHandlers/SpellHandler.cs | 2 + .../Client/PacketHandlers/UpdateHandler.cs | 9 +- HermesProxy/World/Client/WorldClient.cs | 2 + HermesProxy/World/Enums/QuestDefines.cs | 4 +- HermesProxy/World/Enums/SocketColor.cs | 26 + HermesProxy/World/GameData.cs | 2190 +- HermesProxy/World/Objects/HotfixRecord.cs | 2 +- HermesProxy/World/Objects/ItemTemplate.cs | 185 +- .../World/Server/CurrentPlayerStorage.cs | 1 - .../Server/PacketHandlers/HotfixHandler.cs | 165 +- .../World/Server/PacketHandlers/PetHandler.cs | 2 + .../Server/PacketHandlers/SpellHandler.cs | 13 + .../World/Server/Packets/HotfixPackets.cs | 26 +- 44 files changed, 319747 insertions(+), 334 deletions(-) create mode 100644 HermesProxy/CSV/BuildAuthSeeds.csv create mode 100644 HermesProxy/CSV/Hotfix/Item1.csv create mode 100644 HermesProxy/CSV/Hotfix/Item2.csv create mode 100644 HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv create mode 100644 HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv create mode 100644 HermesProxy/CSV/Item1.csv create mode 100644 HermesProxy/CSV/Item2.csv create mode 100644 HermesProxy/CSV/ItemAppearance1.csv create mode 100644 HermesProxy/CSV/ItemAppearance2.csv create mode 100644 HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv create mode 100644 HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv create mode 100644 HermesProxy/CSV/ItemEffect1.csv create mode 100644 HermesProxy/CSV/ItemEffect2.csv create mode 100644 HermesProxy/CSV/ItemIdToDisplayId1.csv create mode 100644 HermesProxy/CSV/ItemIdToDisplayId2.csv create mode 100644 HermesProxy/CSV/ItemIdToDisplayId3.csv create mode 100644 HermesProxy/CSV/ItemModifiedAppearance1.csv create mode 100644 HermesProxy/CSV/ItemModifiedAppearance2.csv create mode 100644 HermesProxy/CSV/ItemSparse1.csv create mode 100644 HermesProxy/CSV/ItemSparse2.csv create mode 100644 HermesProxy/CSV/ItemSpellsData1.csv create mode 100644 HermesProxy/CSV/ItemSpellsData2.csv create mode 100644 HermesProxy/World/Enums/SocketColor.cs diff --git a/.gitignore b/.gitignore index f28716cd..032df686 100644 --- a/.gitignore +++ b/.gitignore @@ -508,4 +508,4 @@ FodyWeavers.xsd .idea/ *.DotSettings -debug.*.cs +debug.* diff --git a/HermesProxy/BnetServer/Networking/BnetRestApiSession.cs b/HermesProxy/BnetServer/Networking/BnetRestApiSession.cs index d999d513..2a8f9241 100644 --- a/HermesProxy/BnetServer/Networking/BnetRestApiSession.cs +++ b/HermesProxy/BnetServer/Networking/BnetRestApiSession.cs @@ -137,7 +137,7 @@ async Task SendAuthError(AuthResult response) AuthResult.FAIL_INCORRECT_PASSWORD => ("LOGIN", "UNABLE_TO_DECODE", "Invalid password."), AuthResult.FAIL_BANNED => ("LOGIN", "UNABLE_TO_DECODE", "This account has been closed and is no longer available for use."), AuthResult.FAIL_SUSPENDED => ("LOGIN", "UNABLE_TO_DECODE", "This account has been temporarily suspended."), - AuthResult.FAIL_VERSION_INVALID => ("LOGIN", "UNABLE_TO_DECODE", "Your version is not supported by this server.\nMake sure you are using the latest HermesProxy version from GitHub."), + AuthResult.FAIL_VERSION_INVALID => ("LOGIN", "UNABLE_TO_DECODE", "Your version is not supported by this server.\nMake sure you are using the latest HermesProxy version from GitHub.\n(Maybe HermesProxy is blocked on the server)\n"), AuthResult.FAIL_INTERNAL_ERROR => ("LOGON", "UNABLE_TO_DECODE", "There was an internal error. Please try again later."), _ => ("LOGON", "UNABLE_TO_DECODE", $"Error: {response}"), diff --git a/HermesProxy/BnetServer/Services/Services/Authentication.cs b/HermesProxy/BnetServer/Services/Services/Authentication.cs index deb96478..9c560e9f 100644 --- a/HermesProxy/BnetServer/Services/Services/Authentication.cs +++ b/HermesProxy/BnetServer/Services/Services/Authentication.cs @@ -30,7 +30,7 @@ BattlenetRpcErrorCode HandleLogon(LogonRequest logonRequest, NoData response) return BattlenetRpcErrorCode.BadVersion; } - if (logonRequest.Platform != "Win" && logonRequest.Platform != "Wn64" && logonRequest.Platform != "Mc64") + if (logonRequest.Platform != "Win" && logonRequest.Platform != "Wn64" && logonRequest.Platform != "Mc64" && logonRequest.Platform != "MacA") { ServiceLog(LogType.Error, $"Battlenet.LogonRequest: Attempted to log in from an unsupported platform (using {logonRequest.Platform})!"); return BattlenetRpcErrorCode.BadPlatform; diff --git a/HermesProxy/CSV/BuildAuthSeeds.csv b/HermesProxy/CSV/BuildAuthSeeds.csv new file mode 100644 index 00000000..2e2347b5 --- /dev/null +++ b/HermesProxy/CSV/BuildAuthSeeds.csv @@ -0,0 +1,12 @@ +build,platform,seed,comment +# Vanilla +31650,Wn64,82CC71696814948331AC5B996E02BE5D, 1.13.2 on windows x86_64 +40618,Wn64,1278EB34F243ED7898D614C0E278EAC0, 1.14.0 on windows x86_64 +40618,Mc64,7528AB80D693E149907757BC9540A6A6, 1.14.0 on MacOS ARM +41794,Wn64,91D3C1D62CD20FCCD4D0A71E051CE7CA, 1.14.1 on windows x86_64 +42597,Wn64,2C76A6CDD32F651E940B5F682D8E15CE, 1.14.2 on windows x86_64 +42597,MacA,3B31A4F4C25382131A8FB95A1317412B, 1.14.2 on MacOS ARM + +# TBC +40892,Wn64,5795B965E273C19ADD2164D098F0595A, 2.5.2 on windows x86_64 +42328,Wn64,395EA5F21B05DC0D022141E5C71B1141, 2.5.3 on windows x86_64 diff --git a/HermesProxy/CSV/Hotfix/Item1.csv b/HermesProxy/CSV/Hotfix/Item1.csv new file mode 100644 index 00000000..9c7f4a32 --- /dev/null +++ b/HermesProxy/CSV/Hotfix/Item1.csv @@ -0,0 +1 @@ +ID,ClassID,SubclassID,Material,InventoryType,RequiredLevel,SheatheType,RandomSelect,ItemRandomSuffixGroupID,Sound_override_subclassID,ScalingStatDistributionID,IconFileDataID,ItemGroupSoundsID,ContentTuningID,MaxDurability,AmmunitionType,DamageType1,DamageType2,DamageType3,DamageType4,DamageType5,Resistances1,Resistances2,Resistances3,Resistances4,Resistances5,Resistances6,Resistances7,MinDamage1,MinDamage2,MinDamage3,MinDamage4,MinDamage5,MaxDamage1,MaxDamage2,MaxDamage3,MaxDamage4,MaxDamage5 diff --git a/HermesProxy/CSV/Hotfix/Item2.csv b/HermesProxy/CSV/Hotfix/Item2.csv new file mode 100644 index 00000000..9c7f4a32 --- /dev/null +++ b/HermesProxy/CSV/Hotfix/Item2.csv @@ -0,0 +1 @@ +ID,ClassID,SubclassID,Material,InventoryType,RequiredLevel,SheatheType,RandomSelect,ItemRandomSuffixGroupID,Sound_override_subclassID,ScalingStatDistributionID,IconFileDataID,ItemGroupSoundsID,ContentTuningID,MaxDurability,AmmunitionType,DamageType1,DamageType2,DamageType3,DamageType4,DamageType5,Resistances1,Resistances2,Resistances3,Resistances4,Resistances5,Resistances6,Resistances7,MinDamage1,MinDamage2,MinDamage3,MinDamage4,MinDamage5,MaxDamage1,MaxDamage2,MaxDamage3,MaxDamage4,MaxDamage5 diff --git a/HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv b/HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv new file mode 100644 index 00000000..2e4eaafb --- /dev/null +++ b/HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv @@ -0,0 +1,2386 @@ +ID,ItemVisual,ParticleColorID,ItemRangedDisplayInfoID,OverrideSwooshSoundKitID,SheatheTransformMatrixID,StateSpellVisualKitID,SheathedSpellVisualKitID,UnsheathedSpellVisualKitID,Flags,ModelResourcesID_0,ModelResourcesID_1,ModelMaterialResourcesID_0,ModelMaterialResourcesID_1,ModelType_0,ModelType_1,GeosetGroup_0,GeosetGroup_1,GeosetGroup_2,GeosetGroup_3,GeosetGroup_4,GeosetGroup_5,AttachmentGeosetGroup_0,AttachmentGeosetGroup_1,AttachmentGeosetGroup_2,AttachmentGeosetGroup_3,AttachmentGeosetGroup_4,AttachmentGeosetGroup_5,HelmetGeosetVis_0,HelmetGeosetVis_1 +563,0,0,0,0,0,0,0,0,0,16789,0,22794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +729,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +860,0,0,0,0,0,0,0,0,0,16421,0,23730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +861,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +862,0,0,0,0,0,0,0,0,0,16260,0,24257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +869,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +878,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +883,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1032,0,0,0,0,0,0,0,0,0,16260,0,24257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1045,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1083,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1090,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1092,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1159,0,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1161,0,0,0,0,0,0,0,0,0,16424,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1165,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1190,0,0,0,0,0,0,0,0,0,16574,0,23407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1193,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1203,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1206,0,0,0,0,0,0,0,0,0,15882,0,25956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1207,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1220,0,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1241,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1243,0,0,0,0,0,0,0,0,0,15885,0,25947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1342,0,0,0,0,0,0,0,0,0,15885,0,25947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1345,0,0,0,0,0,0,0,0,0,16520,0,23415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1371,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1373,0,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1374,0,0,0,0,0,0,0,0,0,16521,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1376,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1378,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1382,0,0,0,0,0,0,0,0,0,15809,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1384,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1387,0,0,0,0,0,0,0,0,0,15808,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1389,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1391,0,0,0,0,0,0,0,0,0,15806,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1392,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1393,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1402,0,0,0,0,0,0,0,0,0,16992,0,22390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1409,0,0,0,0,0,0,0,0,0,15802,0,26918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1415,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1428,0,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1436,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1437,0,0,0,0,0,0,0,0,0,16520,0,23415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1439,0,0,0,0,0,0,0,0,0,16160,0,24456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1440,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1441,0,0,0,0,0,0,0,0,0,16382,0,23919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1455,0,0,0,0,0,0,0,0,0,15803,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1458,0,0,0,0,0,0,0,0,0,16219,0,24451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1461,0,0,0,0,0,0,0,0,0,16990,0,22398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1465,0,0,0,0,0,0,0,0,0,15810,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1466,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1467,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1469,0,0,0,0,0,0,0,0,0,16342,0,23984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1475,0,0,0,0,0,0,0,0,0,17066,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1477,0,0,0,0,0,0,0,0,0,15885,0,25948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1478,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1480,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1481,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1487,0,0,0,0,0,0,0,0,0,16866,0,22586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1489,0,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1490,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1513,0,0,0,0,0,0,0,0,0,15811,0,26893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1516,0,0,0,0,0,0,0,0,0,16313,0,24075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1517,0,0,0,0,0,0,0,0,0,16998,0,22372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1552,0,0,0,0,0,0,0,0,0,16253,0,24273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1553,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1560,0,0,0,0,0,0,0,0,0,16159,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1563,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1566,0,0,0,0,0,0,0,0,0,16258,0,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1590,0,0,0,0,0,0,0,0,0,16810,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1591,0,0,0,0,0,0,0,0,0,16262,0,24251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1592,0,0,0,0,0,0,0,0,0,16816,0,22744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1594,0,0,0,0,0,0,0,0,0,17123,0,21969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1598,0,0,0,0,0,0,0,0,0,15811,0,26893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1599,0,0,0,0,0,0,0,0,0,16520,0,23415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1601,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1602,0,0,0,0,0,0,0,0,0,17109,0,21998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1605,0,0,0,0,0,0,0,0,0,16816,0,22744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1606,0,0,0,0,0,0,0,0,0,16816,0,22743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1607,0,0,0,0,0,0,0,0,0,16807,0,22768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1609,0,0,0,0,0,0,0,0,0,16817,0,22741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1610,0,0,0,0,0,0,0,0,0,16872,0,22579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1612,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1632,0,0,0,0,0,0,0,0,0,16788,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1638,0,0,0,0,0,0,0,0,0,16787,0,22805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1639,0,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1642,0,0,0,0,0,0,0,0,0,17042,0,22257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1643,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1648,0,0,0,0,0,0,0,0,0,16577,0,23303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1652,0,0,0,0,0,0,0,0,0,15811,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1653,0,0,0,0,0,0,0,0,0,16872,0,22579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1664,0,0,0,0,0,0,0,0,0,16815,0,22745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1704,0,0,0,0,0,0,0,0,0,16789,0,22797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1710,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1712,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1714,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1722,0,0,0,0,0,0,0,0,0,17123,0,21969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1724,0,0,0,0,0,0,0,0,0,16313,0,24077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1725,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1726,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1759,0,0,0,0,0,0,0,0,0,16313,0,24076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1760,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1767,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1771,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1772,0,0,0,0,0,0,0,0,0,15808,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1773,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1774,0,0,0,0,0,0,0,0,0,16422,0,23727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1776,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1779,0,0,0,0,0,0,0,0,0,16037,0,24566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1780,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1782,0,0,0,0,0,0,0,0,0,16619,0,23201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1783,0,0,0,0,0,0,0,0,0,16423,0,23724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1784,0,0,0,0,0,0,0,0,0,16420,0,23731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1813,0,0,0,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1841,0,0,0,0,0,0,0,0,0,16520,0,23414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1853,0,0,0,0,0,0,0,0,0,16813,0,22748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1931,0,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1932,0,0,0,0,0,0,0,0,0,15800,0,26923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1936,0,0,0,0,0,0,0,0,0,16811,0,22756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1942,0,0,0,0,0,0,0,0,0,16010,0,24613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1943,0,0,0,0,0,0,0,0,0,16026,0,24585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1946,0,0,0,0,0,0,0,0,0,16003,0,22019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1947,0,0,0,0,0,0,0,0,0,16883,0,22558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1948,0,0,0,0,0,0,0,0,0,16883,0,22559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1949,0,0,0,0,0,0,0,0,0,16003,0,22017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1950,0,0,0,0,0,0,0,0,0,16008,0,24616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1953,0,0,0,0,0,0,0,0,0,16934,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1954,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1955,0,0,0,0,0,0,0,0,0,15881,0,25958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1956,0,0,0,0,0,0,0,0,0,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2010,0,0,0,0,0,0,0,0,0,16580,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2011,0,0,0,0,0,0,0,0,0,16160,0,24458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2022,0,0,0,0,0,0,0,0,0,16008,0,24616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2047,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2048,0,0,0,0,0,0,0,0,0,15864,0,24250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2056,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2058,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2059,0,0,0,0,0,0,0,0,0,16258,0,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2060,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2061,0,0,0,0,0,0,0,0,0,15807,0,26906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2065,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2073,0,0,0,0,0,0,0,0,0,16807,0,22768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2157,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2158,0,0,0,0,0,0,0,0,0,17352,0,20485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2159,0,0,0,0,0,0,0,0,0,17302,0,21169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2209,0,0,0,0,0,0,0,0,0,17305,0,21160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2322,0,0,0,0,0,0,0,0,0,17304,0,21165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2325,0,0,0,0,0,0,0,0,0,17303,0,21167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2326,0,0,0,0,0,0,0,0,0,17303,0,21166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2331,0,0,0,0,0,0,0,0,0,17229,0,21660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2335,0,0,0,0,0,0,0,0,0,17353,0,20539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2337,0,0,0,0,0,0,0,0,0,17163,0,21833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2381,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2383,0,0,0,0,0,0,0,0,0,16810,0,22760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2385,0,0,0,0,0,0,0,0,0,16219,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2387,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2389,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2392,0,0,0,0,0,0,0,0,0,16788,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2393,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2394,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2395,0,0,0,0,0,0,0,0,0,15883,0,25953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2400,0,0,0,0,0,0,0,0,0,15811,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2401,0,0,0,0,0,0,0,0,0,16995,0,22383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2402,0,0,0,0,0,0,0,0,0,15880,0,25964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2404,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2405,0,0,0,0,0,0,0,0,0,16993,0,22387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2406,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2407,0,0,0,0,0,0,0,0,0,16158,0,24463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2415,0,0,0,0,0,0,0,0,0,16808,0,22767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2416,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2420,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2421,0,0,0,0,0,0,0,0,0,16807,0,22767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2422,0,0,0,0,0,0,0,0,0,15807,0,26906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2423,0,0,0,0,0,0,0,0,0,15880,0,25964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2424,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2427,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2429,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2430,0,0,0,0,0,0,0,0,0,17062,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2431,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2433,0,0,0,0,0,0,0,0,0,16577,0,23303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2436,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2437,0,0,0,0,0,0,0,0,0,15803,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2438,0,0,0,0,0,0,0,0,0,16159,0,24460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2439,0,0,0,0,0,0,0,0,0,16037,0,24565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2442,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2452,0,0,0,0,0,0,0,0,0,16580,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2453,0,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2462,0,0,0,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2463,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2467,0,0,0,0,0,0,0,0,0,17064,0,22203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2482,0,0,0,0,0,0,0,0,0,16342,0,23984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2554,0,0,0,0,0,0,0,0,0,17305,0,21160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2555,0,0,0,0,0,0,0,0,0,17305,0,21160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2556,0,0,0,0,0,0,0,0,0,17305,0,21160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2558,0,0,0,0,0,0,0,0,0,17354,0,20536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2595,0,0,0,0,0,0,0,0,0,16142,0,24498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2635,0,0,0,0,0,0,0,0,0,16903,0,23069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2651,0,0,0,0,0,0,0,0,0,16995,0,22383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2652,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2657,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2671,0,0,0,0,0,0,0,0,0,17352,0,20542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2672,0,0,0,0,0,0,0,0,0,17230,0,21658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2676,0,0,0,0,0,0,0,0,0,16882,0,22561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2683,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2687,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2693,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2694,0,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2696,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2702,0,0,0,0,0,0,0,0,0,16810,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2703,0,0,0,0,0,0,0,0,0,16903,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2709,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2712,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2713,0,0,0,0,0,0,0,0,0,16698,0,23085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2714,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2715,0,0,0,0,0,0,0,0,0,16142,0,24499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2719,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2720,0,0,0,0,0,0,0,0,0,16903,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2721,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2722,0,0,0,0,0,0,0,0,0,16874,0,22574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2723,0,0,0,0,0,0,0,0,0,16874,0,22576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2724,0,0,0,0,0,0,0,0,0,16022,0,24595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2725,0,0,0,0,0,0,0,0,0,16019,0,24601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2726,0,0,0,0,0,0,0,0,0,16020,0,24599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2727,0,0,0,0,0,0,0,0,0,16442,0,23681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2728,0,0,0,0,0,0,0,0,0,16018,0,24603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2730,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2731,0,0,0,0,0,0,0,0,0,16017,0,24601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2732,0,0,0,0,0,0,0,0,0,16628,0,23178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2735,0,0,0,0,0,0,0,0,0,16697,0,23087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2736,0,0,0,0,0,0,0,0,0,16443,0,23679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2737,0,0,0,0,0,0,0,0,0,16441,0,23685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2740,0,0,0,0,0,0,0,0,0,16903,0,23070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2742,0,0,0,0,0,0,0,0,0,16903,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2746,0,0,0,0,0,0,0,0,0,16012,0,24611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2747,0,0,0,0,0,0,0,0,0,16011,0,24612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2749,0,0,0,0,0,0,0,0,0,16028,0,24582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2750,0,0,0,0,0,0,0,0,0,16028,0,24583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2751,0,0,0,0,0,0,0,0,0,16014,0,24609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2753,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2758,0,0,0,0,0,0,0,0,0,16789,0,22797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2761,0,0,0,0,0,0,0,0,0,16959,0,22455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2762,0,0,0,0,0,0,0,0,0,16443,0,23677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2763,0,0,0,0,0,0,0,0,0,16903,0,23069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2764,0,0,0,0,0,0,0,0,0,16443,0,23677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2768,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2769,0,0,0,0,0,0,0,0,0,16219,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2770,0,0,0,0,0,0,0,0,0,16219,0,24451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2771,0,0,0,0,0,0,0,0,0,16161,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2772,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2773,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2774,0,0,0,0,0,0,0,0,0,16903,0,23070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2778,0,0,0,0,0,0,0,0,0,16274,0,24188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2779,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2782,0,0,0,0,0,0,0,0,0,16788,0,22800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2783,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2791,0,0,366,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2792,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2794,0,0,367,0,0,0,0,0,0,16723,0,22979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2800,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2805,0,0,0,0,0,0,0,0,0,15801,0,26921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2806,0,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2810,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2814,0,0,0,0,0,0,0,0,0,15807,0,26906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2815,0,0,0,0,0,0,0,0,0,16995,0,22382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2819,0,0,0,0,0,0,0,0,0,16698,0,23085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2821,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2822,0,0,0,0,0,0,0,0,0,15885,0,25948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2823,0,0,0,0,0,0,0,0,0,16158,0,24464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2824,0,0,367,0,0,0,0,0,0,16486,0,23555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2825,0,0,0,0,0,0,0,0,0,16934,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2826,0,0,0,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2827,0,0,0,0,0,0,0,0,0,16993,0,22385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2832,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2833,0,0,0,0,0,0,0,0,0,16261,0,24254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2834,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2836,0,0,0,0,0,0,0,0,0,16313,0,24075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2837,0,0,0,0,0,0,0,0,0,16959,0,22454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2841,0,0,0,0,0,0,0,0,0,16513,0,23434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2843,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2845,0,0,0,0,0,0,0,0,0,16142,0,24499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2848,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2862,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2864,0,0,0,0,0,0,0,0,0,16808,0,22764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2865,0,0,0,0,0,0,0,0,0,16423,0,23725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2866,0,0,0,0,0,0,0,0,0,15810,0,26896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2867,0,0,0,0,0,0,0,0,0,16817,0,22740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2891,0,0,0,0,0,0,0,0,0,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2892,0,0,0,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2893,0,0,0,0,0,0,0,0,0,15802,0,26918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2894,0,0,0,0,0,0,0,0,0,16437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2917,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2920,0,0,366,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2923,0,0,0,0,0,0,0,0,0,15881,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2924,0,0,0,0,0,0,0,0,0,16697,0,23088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2930,0,0,0,0,0,0,0,0,0,16628,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2998,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3012,0,0,0,0,0,0,0,0,0,16883,0,22558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3014,0,0,0,0,0,0,0,0,0,16883,0,22017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3037,0,0,0,0,0,0,0,0,0,16442,0,23073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3090,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3097,0,0,0,0,0,0,0,0,0,16863,0,22591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3098,0,0,0,0,0,0,0,0,0,17065,0,22200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3099,0,0,0,0,0,0,0,0,0,17065,0,22200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3101,0,0,0,0,0,0,0,0,0,15808,0,26902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3117,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3126,0,0,0,0,0,0,0,0,0,17353,0,20539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3129,0,0,0,0,0,0,0,0,0,15803,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3130,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3142,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3144,0,0,0,0,0,0,0,0,0,16588,0,23241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3147,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3148,0,0,0,0,0,0,0,0,0,16816,0,22744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3163,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3168,0,0,0,0,0,0,0,0,0,16037,0,24567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3170,0,0,0,0,0,0,0,0,0,16159,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3174,0,0,367,0,0,0,0,0,0,16722,0,22981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3178,0,0,0,0,0,0,0,0,0,16253,0,24273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3180,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3181,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3188,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3189,0,0,0,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3224,0,0,367,0,0,0,0,0,0,16725,0,22972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3226,0,0,0,0,0,0,0,0,0,16017,0,24601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3227,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3228,0,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3229,0,0,0,0,0,0,0,0,0,17352,0,20543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3232,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3234,0,0,0,0,0,0,0,0,0,16265,0,24245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3274,0,0,0,0,0,0,0,0,0,17086,17086,22046,22046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3275,0,0,368,0,0,0,0,0,0,17086,17086,22045,22045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3276,0,0,368,0,0,0,0,0,0,17086,17086,22047,22047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3281,0,0,368,0,0,0,0,0,0,17090,17090,22036,22036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3282,0,0,368,0,0,0,0,0,0,17090,17090,22035,22038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3283,0,0,368,0,0,0,0,0,0,17090,17090,22035,22035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3284,0,0,368,0,0,0,0,0,0,17090,17090,22037,22037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3285,0,0,368,0,0,0,0,0,0,17089,17089,22038,22038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3306,0,0,0,0,0,0,0,0,0,15864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3360,0,0,0,0,0,0,0,0,0,16440,0,23687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3361,0,0,0,0,0,0,0,0,0,16521,0,23413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3362,0,0,0,0,0,0,0,0,0,16813,0,22749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3364,0,0,0,0,0,0,0,0,0,16789,0,22797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3365,0,0,0,0,0,0,0,0,0,16161,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3366,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3369,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3370,0,0,0,0,0,0,0,0,0,15884,0,25951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3371,0,0,0,0,0,0,0,0,0,16219,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3372,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3373,0,0,0,0,0,0,0,0,0,16788,0,22800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3374,0,0,0,0,0,0,0,0,0,15880,0,25964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3378,0,0,0,0,0,0,0,0,0,16619,0,23201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3380,0,0,0,0,0,0,0,0,0,16788,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3383,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3384,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3398,0,0,0,0,0,0,0,0,0,15811,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3400,0,0,0,0,0,0,0,0,0,16423,0,23726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3403,0,0,0,0,0,0,0,0,0,16443,0,23679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3431,0,0,0,0,0,0,0,0,0,16313,0,24075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3437,0,0,0,0,0,0,0,0,0,16903,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3439,0,0,0,0,0,0,0,0,0,16424,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3446,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3463,0,0,0,0,0,0,0,0,0,16959,0,22454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3464,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3495,0,0,0,0,0,0,0,0,0,17121,0,21973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3499,0,0,0,0,0,0,0,0,0,16422,0,23727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3503,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3512,0,0,0,0,0,0,0,0,0,16397,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3513,0,0,0,0,0,0,0,0,0,16397,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3514,0,0,0,0,0,0,0,0,0,16697,0,23087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3561,0,0,0,0,0,0,0,0,0,16863,0,22591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3566,0,0,0,0,0,0,0,0,0,16313,0,24076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3567,0,0,0,0,0,0,0,0,0,16882,0,22561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3569,0,0,0,0,0,0,0,0,0,16519,0,23419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3572,0,0,0,0,0,0,0,0,0,16023,0,24589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3574,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3575,0,0,0,0,0,0,0,0,0,16868,0,22584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3577,0,0,0,0,0,0,0,0,0,17042,0,22255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3579,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3580,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3581,0,0,0,0,0,0,0,0,0,16865,0,22589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3590,0,0,0,0,0,0,0,0,0,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3674,0,0,0,0,0,0,0,0,0,16701,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3676,0,0,0,0,0,0,0,0,0,16423,0,23725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3677,0,0,0,0,0,0,0,0,0,16520,0,23414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3678,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3679,0,0,0,0,0,0,0,0,0,16019,0,24601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3680,0,0,0,0,0,0,0,0,0,16019,0,24600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3681,0,0,0,0,0,0,0,0,0,16018,0,24603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3682,0,0,0,0,0,0,0,0,0,16018,0,24605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3683,0,0,0,0,0,0,0,0,0,16017,0,24602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3684,0,0,0,0,0,0,0,0,0,16017,0,24600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3692,0,0,0,0,0,0,0,0,0,16034,0,24572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3697,0,0,0,0,0,0,0,0,0,17064,0,22205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3698,0,0,366,0,0,0,0,0,0,17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3702,0,0,0,0,0,0,0,0,0,16373,0,23942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3703,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3706,0,0,0,0,0,0,0,0,0,16261,0,24254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3707,0,0,0,0,0,0,0,0,0,16261,0,24254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3718,0,0,0,0,0,0,0,0,0,15811,0,26893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3720,0,0,0,0,0,0,0,0,0,16142,0,24498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3721,0,0,0,0,0,0,0,0,0,16519,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3722,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3726,0,0,0,0,0,0,0,0,0,16883,0,22017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3729,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3735,0,0,0,0,0,0,0,0,0,16259,0,24259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3736,0,0,368,0,0,0,0,0,0,17077,17077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3741,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3742,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3758,0,0,0,0,0,0,0,0,0,16786,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3763,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3764,0,0,0,0,0,0,0,0,0,16815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3765,0,0,0,0,0,0,0,0,0,16628,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3768,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3775,0,0,0,0,0,0,0,0,0,16789,0,22794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3777,0,0,0,0,0,0,0,0,0,15809,0,26898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3778,0,0,0,0,0,0,0,0,0,15810,0,26896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3779,0,0,0,0,0,0,0,0,0,16423,0,23724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3781,0,0,0,0,0,0,0,0,0,16260,0,24257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3784,0,0,367,0,0,0,0,0,0,16722,0,23550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3787,0,0,0,0,0,0,0,0,0,15837,0,26659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3791,0,0,0,0,0,0,0,0,0,15811,0,26893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3792,0,0,0,0,0,0,0,0,0,15808,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3793,0,0,0,0,0,0,0,0,0,17121,0,21973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3795,0,0,0,0,0,0,0,0,0,16522,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3796,0,0,0,0,0,0,0,0,0,15806,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3800,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3803,0,0,0,0,0,0,0,0,0,16008,0,24616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3807,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3854,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3860,0,0,0,0,0,0,0,0,0,16806,0,22770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3863,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3873,0,0,0,0,0,0,0,0,0,16262,0,24252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3878,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3881,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3884,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3886,0,0,0,0,0,0,0,0,0,16440,0,23686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3909,0,0,0,0,0,0,0,0,0,16161,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3910,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3911,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3912,0,0,0,0,0,0,0,0,0,17123,0,21969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3928,0,0,0,0,0,0,0,0,0,15808,0,26902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3933,0,0,0,0,0,0,0,0,0,17353,0,20539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3934,0,0,0,0,0,0,0,0,0,17354,0,20534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3935,0,0,0,0,0,0,0,0,0,16378,0,23927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3936,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3942,0,0,0,0,0,0,0,0,0,16697,0,23088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3943,0,0,0,0,0,0,0,0,0,15884,0,25950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3944,0,0,0,0,0,0,0,0,0,16991,0,22393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3948,0,0,0,0,0,0,0,0,0,15877,0,25971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3949,0,0,0,0,0,0,0,0,0,16274,0,24189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3950,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3954,0,0,0,0,0,0,0,0,0,16161,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3955,0,0,0,0,0,0,0,0,0,17109,0,21998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3957,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3959,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3964,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3988,0,0,0,0,0,0,0,0,0,15864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4036,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4038,0,0,0,0,0,0,0,0,0,16003,0,22017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4039,0,0,0,0,0,0,0,0,0,16003,0,22019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4040,0,0,0,0,0,0,0,0,0,16003,0,22601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4041,0,0,0,0,0,0,0,0,0,16883,0,22558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4042,0,0,0,0,0,0,0,0,0,16883,0,22559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4043,0,0,0,0,0,0,0,0,0,16883,0,22560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4089,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4090,0,0,0,0,0,0,0,0,0,16251,0,24275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4092,0,0,367,0,0,0,0,0,0,16722,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4093,0,0,0,0,0,0,0,0,0,17304,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4104,0,0,0,0,0,0,0,0,0,15807,0,26906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4105,0,0,0,0,0,0,0,0,0,16028,0,24582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4106,0,0,0,0,0,0,0,0,0,16028,0,24583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4116,0,0,0,0,0,0,0,0,0,16808,0,22763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4117,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4118,0,0,0,0,0,0,0,0,0,16036,0,24569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4120,0,0,367,0,0,0,0,0,0,16486,0,23555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4121,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4122,0,0,0,0,0,0,0,0,0,16378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4123,0,0,0,0,0,0,0,0,0,16158,0,24464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4126,0,0,0,0,0,0,0,0,0,16816,0,22742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4132,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4140,0,0,0,0,0,0,0,0,0,17078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4141,0,0,0,0,0,0,0,0,0,17078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4155,0,0,0,0,0,0,0,0,0,16701,0,23073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4156,0,0,0,0,0,0,0,0,0,16806,0,22771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4157,0,0,0,0,0,0,0,0,0,16815,0,22747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4158,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4159,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4160,0,0,0,0,0,0,0,0,0,16258,0,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4161,0,0,0,0,0,0,0,0,0,16806,0,22770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4162,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4163,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4164,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4165,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4182,0,0,0,0,0,0,0,0,0,15810,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4183,0,0,0,0,0,0,0,0,0,15810,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4184,0,0,0,0,0,0,0,0,0,15810,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4185,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4187,0,0,0,0,0,0,0,0,0,16626,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4188,0,0,0,0,0,0,0,0,0,16440,0,23687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4189,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4196,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4203,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4205,0,0,0,0,0,0,0,0,0,16626,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4206,0,0,0,0,0,0,0,0,0,16397,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4209,0,0,0,0,0,0,0,0,0,16698,0,23085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4212,0,0,0,0,0,0,0,0,0,16701,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4213,0,0,0,0,0,0,0,0,0,16701,0,23073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4215,0,0,0,0,0,0,0,0,0,16442,0,23682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4216,0,0,0,0,0,0,0,0,0,16440,0,23686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4218,0,0,0,0,0,0,0,0,0,16442,0,23681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4219,0,0,0,0,0,0,0,0,0,16443,0,23679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4220,0,0,0,0,0,0,0,0,0,16701,0,23072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4221,0,0,0,0,0,0,0,0,0,16442,0,23680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4224,0,0,0,0,0,0,0,0,0,16440,0,23687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4225,0,0,0,0,0,0,0,0,0,16441,0,23685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4226,0,0,0,0,0,0,0,0,0,16903,0,23070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4228,0,0,0,0,0,0,0,0,0,16903,0,23070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4230,0,0,0,0,0,0,0,0,0,16628,0,23178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4231,0,0,0,0,0,0,0,0,0,16903,0,23069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4232,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4236,0,0,0,0,0,0,0,0,0,16142,0,24498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4237,0,0,0,0,0,0,0,0,0,16142,0,24498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4238,0,0,0,0,0,0,0,0,0,16701,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4239,0,0,0,0,0,0,0,0,0,17066,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4240,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4241,0,0,0,0,0,0,0,0,0,16903,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4243,0,0,0,0,0,0,0,0,0,16443,0,23677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4244,0,0,0,0,0,0,0,0,0,16698,0,23084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4245,0,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4246,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4247,0,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4248,0,0,0,0,0,0,0,0,0,16436,0,23695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4249,0,0,0,0,0,0,0,0,0,16397,0,23669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4261,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4289,0,0,0,0,0,0,0,0,0,16101,0,24515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4290,0,0,0,0,0,0,0,0,0,16197,0,24420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4326,0,0,0,0,0,0,0,0,0,17353,0,20539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4327,0,0,0,0,0,0,0,0,0,17303,0,21167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4328,0,0,0,0,0,0,0,0,0,17303,0,21166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4347,0,0,0,0,0,0,0,0,0,16806,0,22770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4348,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4349,0,0,0,0,0,0,0,0,0,15811,0,26894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4350,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4352,0,0,0,0,0,0,0,0,0,15880,0,25963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4353,0,0,0,0,0,0,0,0,0,16518,0,23423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4354,0,0,367,0,0,0,0,0,0,16724,0,22977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4355,0,0,0,0,0,0,0,0,0,16258,0,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4401,0,0,0,0,0,0,0,0,0,17164,0,21828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4402,0,0,0,0,0,0,0,0,0,17164,0,21828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4406,0,0,0,0,0,0,0,0,0,17352,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4423,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4424,0,0,0,0,0,0,0,0,0,16440,0,23688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4425,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4428,0,0,0,0,0,0,0,0,0,15800,0,26923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4429,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4430,0,0,0,0,0,0,0,0,0,16378,0,23928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4431,0,0,0,0,0,0,0,0,0,16437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4432,0,0,0,0,0,0,0,0,0,16574,0,23407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4442,0,0,366,0,0,0,0,0,0,17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4443,0,0,0,0,0,0,0,0,0,17123,0,21970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4454,0,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4457,0,0,0,0,0,0,0,0,0,16883,0,22558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4575,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4576,0,0,0,0,0,0,0,0,0,17165,0,21829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4577,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4578,0,0,366,0,0,0,0,0,0,16934,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4579,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4580,0,0,366,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4582,0,0,0,0,0,0,0,0,0,16934,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4608,0,0,0,0,0,0,0,0,0,16903,0,23070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4652,0,0,0,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4657,0,0,366,0,0,0,0,0,0,17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4678,0,0,368,0,0,0,0,0,0,17086,17086,22046,22046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4686,0,0,0,0,0,0,0,0,0,16697,0,23087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4687,0,0,0,0,0,0,0,0,0,15837,0,26659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4697,0,0,0,0,0,0,0,0,0,16521,0,23412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4702,0,0,0,0,0,0,0,0,0,16036,0,24570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4705,0,0,0,0,0,0,0,0,0,17352,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4706,0,0,0,0,0,0,0,0,0,15805,0,26911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4707,0,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4708,0,0,0,0,0,0,0,0,0,16436,0,23694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4724,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4728,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4740,0,0,367,0,0,0,0,0,0,16722,0,22981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4766,0,0,0,0,0,0,0,0,0,17378,0,20484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4789,0,0,0,0,0,0,0,0,0,16161,0,24455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4790,0,0,0,0,0,0,0,0,0,16219,0,24451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4791,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4792,0,0,0,0,0,0,0,0,0,16519,0,23419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4793,0,0,0,0,0,0,0,0,0,16519,0,23419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4794,0,0,0,0,0,0,0,0,0,16788,0,22802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4795,0,0,0,0,0,0,0,0,0,15805,0,26911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4796,0,0,0,0,0,0,0,0,0,15883,0,25953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4797,0,0,0,0,0,0,0,0,0,16698,0,23084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4798,0,0,367,0,0,0,0,0,0,16725,0,22973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4803,0,0,0,0,0,0,0,0,0,16815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4804,0,0,0,0,0,0,0,0,0,16811,0,22755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4861,0,0,0,0,0,0,0,0,0,16874,0,22574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4862,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4863,0,0,0,0,0,0,0,0,0,16874,0,22575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4868,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4894,0,0,0,0,0,0,0,0,0,16518,0,23423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4895,0,0,0,0,0,0,0,0,0,16518,0,23423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4896,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4897,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4898,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4901,0,0,0,0,0,0,0,0,0,15833,0,26660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4908,0,0,0,0,0,0,0,0,0,15864,0,24252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4910,0,0,0,0,0,0,0,0,0,15803,0,26916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4935,0,0,0,0,0,0,0,0,0,16261,0,24254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4936,0,0,0,0,0,0,0,0,0,17123,0,21970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4937,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4947,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4948,0,0,0,0,0,0,0,0,0,16382,0,23919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4979,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4980,0,0,0,0,0,0,0,0,0,16787,0,22804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4981,0,0,0,0,0,0,0,0,0,16786,0,22804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4982,0,0,0,0,0,0,0,0,0,17302,0,21171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4985,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4986,0,0,0,0,0,0,0,0,0,15805,0,26912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4987,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4993,0,0,0,0,0,0,0,0,0,15811,0,26894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4997,0,0,0,0,0,0,0,0,0,15808,0,26906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4999,0,0,0,0,0,0,0,0,0,16521,0,23412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5001,0,0,0,0,0,0,0,0,0,16809,0,22762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5008,0,0,0,0,0,0,0,0,0,17042,0,22257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5011,0,0,0,0,0,0,0,0,0,16519,0,23418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5013,0,0,0,0,0,0,0,0,0,16437,0,23692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5015,0,0,0,0,0,0,0,0,0,15808,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5016,0,0,0,0,0,0,0,0,0,16423,0,23724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5017,0,0,0,0,0,0,0,0,0,15810,0,26895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5018,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5019,0,0,0,0,0,0,0,0,0,16947,0,22474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5020,0,0,0,0,0,0,0,0,0,16443,0,23678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5021,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5023,0,0,0,0,0,0,0,0,0,16947,0,22475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5024,0,0,0,0,0,0,0,0,0,16947,0,22475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5025,0,0,0,0,0,0,0,0,0,16947,0,22472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5028,0,0,0,0,0,0,0,0,0,15810,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5030,0,0,0,0,0,0,0,0,0,15883,0,25954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5031,0,0,0,0,0,0,0,0,0,15883,0,25952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5033,0,0,0,0,0,0,0,0,0,15885,0,25948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5034,0,0,0,0,0,0,0,0,0,15884,0,25950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5035,0,0,0,0,0,0,0,0,0,16382,0,23919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5036,0,0,0,0,0,0,0,0,0,16863,0,22591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5037,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5038,0,0,0,0,0,0,0,0,0,17121,0,21968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5039,0,0,0,0,0,0,0,0,0,16160,0,24457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5041,0,0,0,0,0,0,0,0,0,15808,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5042,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5043,0,0,0,0,0,0,0,0,0,16808,0,22766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5044,0,0,0,0,0,0,0,0,0,16259,0,24259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5045,0,0,0,0,0,0,0,0,0,16580,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5046,0,0,0,0,0,0,0,0,0,16993,0,22387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5047,0,0,0,0,0,0,0,0,0,16994,0,22386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5049,0,0,0,0,0,0,0,0,0,16788,0,22800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5051,0,0,0,0,0,0,0,0,0,16161,0,24455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5052,0,0,0,0,0,0,0,0,0,16421,0,23730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5053,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5054,0,0,0,0,0,0,0,0,0,16219,0,24451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5055,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5056,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5057,0,0,0,0,0,0,0,0,0,16242,0,24290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5058,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5059,0,0,0,0,0,0,0,0,0,16423,0,23725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5060,0,0,0,0,0,0,0,0,0,16424,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5061,0,0,0,0,0,0,0,0,0,16947,0,22473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5062,0,0,0,0,0,0,0,0,0,16580,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5063,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5064,0,0,0,0,0,0,0,0,0,16993,0,22388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5065,0,0,0,0,0,0,0,0,0,15811,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5067,0,0,0,0,0,0,0,0,0,17121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5068,0,0,0,0,0,0,0,0,0,17121,0,22736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5069,0,0,0,0,0,0,0,0,0,16441,0,23683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5071,0,0,0,0,0,0,0,0,0,16521,0,23412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5073,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5075,0,0,0,0,0,0,0,0,0,16261,0,24255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5076,0,0,0,0,0,0,0,0,0,16701,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5087,0,0,0,0,0,0,0,0,0,15806,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5088,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5089,0,0,0,0,0,0,0,0,0,16422,0,23728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5090,0,0,0,0,0,0,0,0,0,16036,0,24568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5091,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5092,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5095,0,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5096,0,0,0,0,0,0,0,0,0,15805,0,26912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5097,0,0,0,0,0,0,0,0,0,15806,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5099,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5100,0,0,0,0,0,0,0,0,0,16035,0,24569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5101,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5102,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5103,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5104,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5106,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5107,0,0,0,0,0,0,0,0,0,16947,0,22473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5109,0,0,0,0,0,0,0,0,0,16577,0,23303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5110,0,0,0,0,0,0,0,0,0,16577,0,23303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5112,0,0,0,0,0,0,0,0,0,16808,0,22768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5113,0,0,0,0,0,0,0,0,0,16258,0,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5117,0,0,0,0,0,0,0,0,0,16942,0,22482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5118,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5119,0,0,0,0,0,0,0,0,0,16158,0,24464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5121,0,0,0,0,0,0,0,0,0,16806,0,22769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5123,0,0,0,0,0,0,0,0,0,16262,0,24252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5124,0,0,0,0,0,0,0,0,0,15803,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5126,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5127,0,0,0,0,0,0,0,0,0,16786,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5130,0,0,0,0,0,0,0,0,0,16577,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5131,0,0,0,0,0,0,0,0,0,16990,0,22396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5132,0,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5133,0,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5134,0,0,0,0,0,0,0,0,0,16514,0,23433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5135,0,0,0,0,0,0,0,0,0,16518,0,23422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5141,0,0,0,0,0,0,0,0,0,16811,0,22756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5142,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5143,0,0,0,0,0,0,0,0,0,17042,0,22257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5146,0,0,0,0,0,0,0,0,0,16815,0,22747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5147,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5148,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5149,0,0,0,0,0,0,0,0,0,16810,0,22760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5150,0,0,0,0,0,0,0,0,0,16811,0,22755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5152,0,0,0,0,0,0,0,0,0,17042,0,22257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5155,0,0,0,0,0,0,0,0,0,16262,0,24252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5156,0,0,0,0,0,0,0,0,0,16253,0,24273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5157,0,0,0,0,0,0,0,0,0,16258,0,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5158,0,0,0,0,0,0,0,0,0,16258,0,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5159,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5160,0,0,0,0,0,0,0,0,0,16758,0,22921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5162,0,0,0,0,0,0,0,0,0,16259,0,24259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5164,0,0,0,0,0,0,0,0,0,16806,0,22769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5167,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5168,0,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5169,0,0,0,0,0,0,0,0,0,16808,0,22768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5171,0,0,0,0,0,0,0,0,0,17123,0,21969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5172,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5173,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5174,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5177,0,0,0,0,0,0,0,0,0,16788,0,22800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5178,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5179,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5180,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5181,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5182,0,0,0,0,0,0,0,0,0,16789,0,22798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5183,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5185,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5186,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5187,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5189,0,0,0,0,0,0,0,0,0,16788,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5191,0,0,0,0,0,0,0,0,0,16788,0,22800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5192,0,0,0,0,0,0,0,0,0,16787,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5196,0,0,0,0,0,0,0,0,0,16036,0,24568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5200,0,0,0,0,0,0,0,0,0,16036,0,24570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5201,0,0,0,0,0,0,0,0,0,17066,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5202,0,0,0,0,0,0,0,0,0,16423,0,23725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5206,0,0,0,0,0,0,0,0,0,16424,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5209,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5210,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5213,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5214,0,0,0,0,0,0,0,0,0,16421,0,23730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5216,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5220,0,0,0,0,0,0,0,0,0,16882,0,22561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5222,0,0,0,0,0,0,0,0,0,16035,0,24565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5227,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5229,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5230,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5231,0,0,0,0,0,0,0,0,0,16378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5278,0,0,0,0,0,0,0,0,0,15864,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5280,0,0,0,0,0,0,0,0,0,15864,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5288,0,0,0,0,0,0,0,0,0,17018,0,22301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5293,0,0,0,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5314,0,0,0,0,0,0,0,0,0,17302,0,21170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5356,0,0,0,0,0,0,0,0,0,15810,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5357,0,0,0,0,0,0,0,0,0,17010,0,22341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5393,0,0,0,0,0,0,0,0,0,16810,0,22759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5403,0,0,0,0,0,0,0,0,0,17302,0,21171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5405,0,0,0,0,0,0,0,0,0,16792,0,22790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5408,0,0,0,0,0,0,0,0,0,15884,0,25950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5410,0,0,0,0,0,0,0,0,0,16038,0,24563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5415,0,0,0,0,0,0,0,0,0,17073,0,22070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5416,0,0,368,0,0,0,0,0,0,17091,17091,22034,22034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5419,0,0,0,0,0,0,0,0,0,17073,0,22070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5421,0,0,0,0,0,0,0,0,0,15809,0,26898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5427,0,0,0,0,0,0,0,0,0,17065,0,22201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5429,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5431,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5432,0,0,0,0,0,0,0,0,0,17109,0,21999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5433,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5438,0,0,0,0,0,0,0,0,0,15881,0,25958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5442,0,0,0,0,0,0,0,0,0,16313,0,24075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5465,0,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5466,0,0,0,0,0,0,0,0,0,16808,0,22766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5499,0,0,0,0,0,0,0,0,0,17109,0,21998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5500,0,0,0,0,0,0,0,0,0,16759,0,22919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5501,0,0,0,0,0,0,0,0,0,16219,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5502,0,0,0,0,0,0,0,0,0,16161,0,24451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5503,0,0,0,0,0,0,0,0,0,16759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5504,0,0,0,0,0,0,0,0,0,16758,0,22922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5505,0,0,0,0,0,0,0,0,0,16758,0,22923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5510,0,0,0,0,0,0,0,0,0,16757,0,22926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5517,0,0,0,0,0,0,0,0,0,16758,0,22921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5518,0,0,0,0,0,0,0,0,0,16757,0,22925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5519,0,0,0,0,0,0,0,0,0,16375,0,24062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5520,0,0,0,0,0,0,0,0,0,16380,0,23923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5525,0,0,0,0,0,0,0,0,0,16381,0,23920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5526,0,0,0,0,0,0,0,0,0,16381,0,23920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5528,0,0,0,0,0,0,0,0,0,16620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5531,0,0,0,0,0,0,0,0,0,16621,0,23196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5535,0,0,0,0,0,0,0,0,0,16792,0,22788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5537,0,0,0,0,0,0,0,0,0,16792,0,22790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5538,0,0,0,0,0,0,0,0,0,16792,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5539,0,0,0,0,0,0,0,0,0,16578,0,23300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5541,0,0,0,0,0,0,0,0,0,16579,0,23298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5543,0,0,0,0,0,0,0,0,0,16579,0,23298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5546,0,0,0,0,0,0,0,0,0,16515,0,23431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5547,0,0,0,0,0,0,0,0,0,16516,0,23427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5548,0,0,0,0,0,0,0,0,0,16516,0,23427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5549,0,0,0,0,0,0,0,0,0,16515,0,23430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5550,0,0,0,0,0,0,0,0,0,16515,0,23431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5551,0,0,0,0,0,0,0,0,0,16515,0,23430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5552,0,0,0,0,0,0,0,0,0,16515,0,23428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5553,0,0,0,0,0,0,0,0,0,16516,0,23427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5555,0,0,0,0,0,0,0,0,0,16576,0,23307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5556,0,0,0,0,0,0,0,0,0,16513,0,23434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5564,0,0,0,0,0,0,0,0,0,16878,0,22569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5565,0,0,0,0,0,0,0,0,0,16878,0,22569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5566,0,0,0,0,0,0,0,0,0,16006,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5568,0,0,0,0,0,0,0,0,0,16878,0,22572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5586,0,0,0,0,0,0,0,0,0,17063,0,22207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5630,0,0,0,0,0,0,0,0,0,17018,0,22301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5635,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5637,0,0,0,0,0,0,0,0,0,16372,0,23947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5641,0,0,0,0,0,0,0,0,0,16627,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5647,0,0,0,0,0,0,0,0,0,17078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5650,0,0,0,0,0,0,0,0,0,16420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5688,0,0,0,0,0,0,0,0,0,0,0,22054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5690,0,0,0,0,0,0,0,0,0,16285,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5712,0,0,0,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5713,0,0,0,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5720,0,0,0,0,0,0,0,0,0,15922,0,25176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5721,0,0,0,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5806,0,0,0,0,0,0,0,0,0,15922,0,25174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5807,0,0,0,0,0,0,0,0,0,16440,0,23688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5828,0,0,0,0,0,0,0,0,0,16805,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5829,0,0,0,0,0,0,0,0,0,16804,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5830,0,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5883,0,0,0,0,0,0,0,0,0,16628,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5903,0,0,369,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5909,0,0,367,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5915,0,0,370,0,0,0,0,0,0,15922,0,25176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5916,0,0,371,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5921,0,0,370,0,0,0,0,0,0,15922,0,25174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5922,0,0,370,0,0,0,0,0,0,0,0,22054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5923,0,0,370,0,0,0,0,0,0,15923,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5925,0,0,0,0,0,0,0,0,0,16373,0,23944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5926,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5927,0,0,0,0,0,0,0,0,0,16004,0,24621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5928,0,0,0,0,0,0,0,0,0,15811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5933,0,0,0,0,0,0,0,0,0,15885,0,25947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5937,0,0,0,0,0,0,0,0,0,16815,0,22745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5938,0,0,0,0,0,0,0,0,0,16813,0,22748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5939,0,0,0,0,0,0,0,0,0,16373,0,23942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5940,0,0,0,0,0,0,0,0,0,15923,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5941,0,0,0,0,0,0,0,0,0,16285,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5943,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5945,0,0,0,0,0,0,0,0,0,16882,0,22561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5946,0,0,370,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5950,0,0,0,0,0,0,0,0,0,16579,0,23297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5960,0,0,372,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5968,0,0,372,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5969,0,0,371,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5970,0,0,370,0,0,0,0,0,0,15922,0,25176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5971,0,0,371,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5972,0,0,371,0,0,0,0,0,0,15922,0,25174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5973,0,0,370,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5974,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5975,0,0,371,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5976,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5977,0,0,370,0,0,0,0,0,0,15923,0,25172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5978,0,0,371,0,0,0,0,0,0,15923,0,25170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6100,0,0,371,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6105,0,0,371,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6107,0,0,370,0,0,0,0,0,0,0,0,22054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6108,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6110,0,0,371,0,0,0,0,0,0,15923,0,25170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6111,0,0,371,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6125,0,0,372,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6128,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6139,0,0,370,0,0,0,0,0,0,15923,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6148,0,0,370,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6149,0,0,371,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6168,0,0,370,0,0,0,0,0,0,16285,0,24156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6236,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6256,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6257,0,0,0,0,0,0,0,0,0,15805,0,26912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6258,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6260,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6263,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6265,0,0,0,0,0,0,0,0,0,16161,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6266,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6267,0,0,0,0,0,0,0,0,0,17109,0,21998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6268,0,0,0,0,0,0,0,0,0,16161,0,24453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6269,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6271,0,0,0,0,0,0,0,0,0,17352,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6273,0,0,0,0,0,0,0,0,0,17352,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6276,0,0,0,0,0,0,0,0,0,17352,0,20542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6369,0,0,0,0,0,0,0,0,0,17078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6431,0,0,0,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6435,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6438,0,0,0,0,0,0,0,0,0,16697,0,23087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6446,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6449,0,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6450,0,0,0,0,0,0,0,0,0,16437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6453,0,0,0,0,0,0,0,0,0,16440,0,23686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6464,0,0,0,0,0,0,0,0,0,16440,0,23688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6465,0,0,0,0,0,0,0,0,0,16628,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6466,0,0,0,0,0,0,0,0,0,16626,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6467,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6473,0,0,0,0,0,0,0,0,0,16942,0,22482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6476,0,0,0,0,0,0,0,0,0,16397,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6477,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6495,0,0,0,0,0,0,0,0,0,16883,0,22017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6523,0,0,0,0,0,0,0,0,0,16874,0,22575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6525,0,0,0,0,0,0,0,0,0,16420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6547,0,0,0,0,0,0,0,0,0,16004,0,24621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6572,0,0,0,0,0,0,0,0,0,16017,0,24601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6575,0,0,0,0,0,0,0,0,0,16866,0,22586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6576,0,0,0,0,0,0,0,0,0,16022,0,24595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6578,0,0,0,0,0,0,0,0,0,16020,0,24599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6579,0,0,0,0,0,0,0,0,0,16014,0,24609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6580,0,0,0,0,0,0,0,0,0,16865,0,22589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6583,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6585,0,0,0,0,0,0,0,0,0,16863,0,22591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6586,0,0,0,0,0,0,0,0,0,16874,0,22574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6587,0,0,0,0,0,0,0,0,0,16874,0,22576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6588,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6597,0,0,366,0,0,0,0,0,0,16934,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6598,0,0,366,0,0,0,0,0,0,17003,0,22361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6599,0,0,366,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6602,0,0,366,0,0,0,0,0,0,17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6603,0,0,366,0,0,0,0,0,0,17005,0,22354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6604,0,0,366,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6605,0,0,366,0,0,0,0,0,0,17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6611,0,0,366,0,0,0,0,0,0,17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6790,0,0,0,0,0,0,0,0,0,16991,0,22393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6791,0,0,0,0,0,0,0,0,0,17066,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6792,0,0,0,0,0,0,0,0,0,17066,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6793,0,0,0,0,0,0,0,0,0,17064,0,22205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6797,0,0,0,0,0,0,0,0,0,16034,0,24572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6807,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6809,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6810,0,0,0,0,0,0,0,0,0,15885,0,25947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6811,0,0,0,0,0,0,0,0,0,15881,0,25958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6812,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6814,0,0,0,0,0,0,0,0,0,15877,0,25971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7020,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7021,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7022,0,0,0,0,0,0,0,0,0,16588,0,23241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7203,0,0,0,0,0,0,0,0,0,16420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7303,0,0,0,0,0,0,0,0,0,16273,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7304,0,0,0,0,0,0,0,0,0,16515,0,23428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7305,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7309,0,0,0,0,0,0,0,0,0,16580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7315,0,0,0,0,0,0,0,0,0,16261,0,24254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7316,0,0,0,0,0,0,0,0,0,16259,0,24259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7317,0,0,0,0,0,0,0,0,0,16813,0,22748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7318,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7320,0,0,0,0,0,0,0,0,0,16792,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7321,0,0,0,0,0,0,0,0,0,16787,0,22804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7322,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7323,0,0,0,0,0,0,0,0,0,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7325,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7435,0,0,0,0,0,0,0,0,0,17083,0,22054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7436,0,0,0,0,0,0,0,0,0,17082,0,22054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7470,0,0,0,0,0,0,0,0,0,16874,0,22574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7471,0,0,0,0,0,0,0,0,0,16874,0,22576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7472,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7496,0,0,0,0,0,0,0,0,0,16863,0,22591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7497,0,0,0,0,0,0,0,0,0,16903,0,23069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7500,0,0,0,0,0,0,0,0,0,16882,0,22561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7525,0,0,0,0,0,0,0,0,0,16259,0,24260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7532,0,0,366,0,0,0,0,0,0,16934,0,22501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7555,0,0,0,0,0,0,0,0,0,16810,0,22759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7556,0,0,0,0,0,0,0,0,0,15881,0,25958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7558,0,0,0,0,0,0,0,0,0,16995,0,22383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7597,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7600,0,0,367,0,0,0,0,0,0,16725,0,22974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7604,0,0,367,0,0,0,0,0,0,16724,0,22975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7721,0,0,0,0,0,0,0,0,0,17086,17018,22037,22301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7722,0,0,368,0,0,0,0,0,0,17086,17086,22045,22045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7803,0,0,366,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7817,0,0,0,0,0,0,0,0,0,16522,0,23408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7824,0,0,0,0,0,0,0,0,0,17378,0,20483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7901,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7931,0,0,0,0,0,0,0,0,0,16947,0,22475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7933,0,0,0,0,0,0,0,0,0,15807,0,26905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7977,0,0,0,0,0,0,0,0,0,16544,0,23940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7978,0,0,0,0,0,0,0,0,0,16544,0,23940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7993,0,0,0,0,0,0,0,0,0,15885,0,25946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8001,0,0,0,0,0,0,0,0,0,16757,0,22926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8044,0,0,0,0,0,0,0,0,0,16004,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8099,0,0,367,0,0,0,0,0,0,16726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8100,0,0,0,0,0,0,0,0,0,16422,0,23729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8102,0,0,367,0,0,0,0,0,0,16726,0,22971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8103,0,0,367,0,0,0,0,0,0,16726,0,22971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8105,0,0,367,0,0,0,0,0,0,16726,0,22971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8123,0,0,0,0,0,0,0,0,0,17018,0,22301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8124,0,0,0,0,0,0,0,0,0,17091,0,22032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8172,0,0,0,0,0,0,0,0,0,16004,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8273,0,0,0,0,0,0,0,0,0,16810,0,22759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8275,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8276,0,0,0,0,0,0,0,0,0,16807,0,22768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8277,0,0,0,0,0,0,0,0,0,16811,0,22755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8278,0,0,0,0,0,0,0,0,0,16807,0,22766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8280,0,0,0,0,0,0,0,0,0,16810,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8281,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8282,0,0,0,0,0,0,0,0,0,16520,0,23414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8297,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8299,0,0,367,0,0,0,0,0,0,16724,0,22976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8385,0,0,0,0,0,0,0,0,0,16024,0,24610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8386,0,0,0,0,0,0,0,0,0,16013,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8438,0,0,0,0,0,0,0,0,0,16518,0,23422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8439,0,0,0,0,0,0,0,0,0,16792,0,22790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8447,0,0,0,0,0,0,0,0,0,16160,0,24458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8448,0,0,0,0,0,0,0,0,0,16142,0,24499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8454,0,0,0,0,0,0,0,0,0,15810,0,26895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8458,0,0,0,0,0,0,0,0,0,15803,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8460,0,0,0,0,0,0,0,0,0,15810,0,26896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8462,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8464,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8468,0,0,0,0,0,0,0,0,0,15805,0,26912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8469,0,0,0,0,0,0,0,0,0,15806,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8475,0,0,0,0,0,0,0,0,0,15810,0,26895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8476,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8477,0,0,0,0,0,0,0,0,0,15808,0,26902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8481,0,0,0,0,0,0,0,0,0,15807,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8484,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8487,0,0,0,0,0,0,0,0,0,15807,0,26905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8491,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8492,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8493,0,0,0,0,0,0,0,0,0,15806,0,26909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8497,0,0,0,0,0,0,0,0,0,15811,0,26894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8503,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8504,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8505,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8507,0,0,0,0,0,0,0,0,0,16159,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8509,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8510,0,0,0,0,0,0,0,0,0,16759,0,22919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8514,0,0,0,0,0,0,0,0,0,16159,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8515,0,0,0,0,0,0,0,0,0,16219,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8517,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8519,0,0,0,0,0,0,0,0,0,16159,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8520,0,0,0,0,0,0,0,0,0,16160,0,24458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8522,0,0,0,0,0,0,0,0,0,16158,0,24464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8524,0,0,0,0,0,0,0,0,0,16219,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8530,0,0,0,0,0,0,0,0,0,16757,0,22926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8532,0,0,0,0,0,0,0,0,0,16219,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8535,0,0,0,0,0,0,0,0,0,16759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8536,0,0,0,0,0,0,0,0,0,16757,0,22925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8537,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8538,0,0,0,0,0,0,0,0,0,16757,0,22926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8539,0,0,0,0,0,0,0,0,0,16758,0,22923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8540,0,0,0,0,0,0,0,0,0,16161,0,24455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8569,0,0,0,0,0,0,0,0,0,16993,0,22387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8571,0,0,0,0,0,0,0,0,0,16990,0,22396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8573,0,0,0,0,0,0,0,0,0,16990,0,22398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8574,0,0,0,0,0,0,0,0,0,17062,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8577,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8578,0,0,0,0,0,0,0,0,0,16993,0,22388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8580,0,0,0,0,0,0,0,0,0,17065,0,22200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8582,0,0,0,0,0,0,0,0,0,16993,0,22387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8584,0,0,0,0,0,0,0,0,0,15884,0,25950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8592,0,0,0,0,0,0,0,0,0,15881,0,25958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8595,0,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8596,0,0,0,0,0,0,0,0,0,15881,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8597,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8598,0,0,0,0,0,0,0,0,0,15885,0,25948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8599,0,0,0,0,0,0,0,0,0,15884,0,25949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8686,0,0,0,0,0,0,0,0,0,15883,0,25952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8689,0,0,0,0,0,0,0,0,0,15883,0,25953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8692,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8693,0,0,0,0,0,0,0,0,0,15877,0,25971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8694,0,0,0,0,0,0,0,0,0,15880,0,25964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8751,0,0,0,0,0,0,0,0,0,16947,0,22474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8755,0,0,0,0,0,0,0,0,0,16436,0,23696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8896,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8904,0,0,0,0,0,0,0,0,0,16522,0,23409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9037,0,0,0,0,0,0,0,0,0,16240,0,24296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9061,0,0,367,0,0,0,0,0,0,16722,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9119,0,0,0,0,0,0,0,0,0,16758,0,22921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9120,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9121,0,0,0,0,0,0,0,0,0,16241,0,24293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9215,0,0,368,0,0,0,0,0,0,16588,16588,23241,23241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9221,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9222,0,0,0,0,0,0,0,0,0,16004,0,24617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9344,0,0,0,0,0,0,0,0,0,16700,0,23077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9370,0,0,0,0,0,0,0,0,0,16267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9375,0,0,0,0,0,0,0,0,0,17304,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9444,0,0,0,0,0,0,0,0,0,16263,0,24250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9445,1,0,0,0,0,0,0,0,0,16263,0,24250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9484,0,0,0,0,0,0,0,0,0,17063,0,22207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9492,0,0,0,0,0,0,0,0,0,16995,0,22383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9693,0,0,372,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9729,0,0,0,0,0,0,0,0,0,17354,0,20536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9867,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9872,0,0,0,0,0,0,0,0,0,16160,0,24457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10183,0,0,370,0,0,0,0,0,0,15922,0,22070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10273,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10356,0,0,0,0,0,0,0,0,0,16786,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10366,0,0,0,0,0,0,0,0,0,17165,0,21829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10426,0,0,0,0,0,0,0,0,0,16789,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10514,0,0,0,0,0,0,0,0,0,15805,0,26912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10536,0,0,0,0,0,0,0,0,0,17378,0,20485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10657,0,0,0,0,0,0,0,0,0,16872,0,22579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10665,0,0,367,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10666,0,0,367,0,0,0,0,0,0,17018,0,22301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10716,0,0,0,0,0,0,0,0,0,16695,0,23097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10717,0,0,0,0,0,0,0,0,0,16696,0,23092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10806,0,0,0,0,0,0,0,0,0,16786,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10808,0,0,0,0,0,0,0,0,0,16959,0,22454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10818,0,0,0,0,0,0,0,0,0,15922,0,25174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10819,0,0,0,0,0,0,0,0,0,16285,0,24156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10967,0,0,0,0,0,0,0,0,0,16811,0,22754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10983,0,0,0,0,0,0,0,0,0,16588,0,23241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11026,0,0,0,0,0,0,0,0,0,16866,0,22586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11147,0,0,0,0,0,0,0,0,0,15809,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11193,0,0,0,0,0,0,0,0,0,16866,0,22586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11196,0,0,0,0,0,0,0,0,0,15810,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11198,0,0,0,0,0,0,0,0,0,16023,0,24592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11200,0,0,0,0,0,0,0,0,0,16023,0,24592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11201,0,0,0,0,0,0,0,0,0,16023,0,24591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11251,0,0,0,0,0,0,0,0,0,16273,0,24192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11257,0,0,0,0,0,0,0,0,0,17163,0,21833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11262,0,0,0,0,0,0,0,0,0,16420,0,23731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11276,0,0,0,0,0,0,0,0,0,16694,0,23101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11282,0,0,0,0,0,0,0,0,0,16699,0,23081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11358,0,0,0,0,0,0,0,0,0,16271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11452,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11693,0,0,0,0,0,0,0,0,0,16813,0,22750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11724,0,0,0,0,0,0,0,0,0,17354,0,21832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11725,0,0,0,0,0,0,0,0,0,17352,0,21832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11729,0,0,0,0,0,0,0,0,0,17353,0,21832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11954,0,0,367,0,0,0,0,0,0,16722,0,22981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12207,0,0,0,0,0,0,0,0,0,16004,0,24621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12208,0,0,0,0,0,0,0,0,0,16004,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12209,0,0,0,0,0,0,0,0,0,16004,0,24621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12210,0,0,0,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12211,0,0,0,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12561,0,0,0,0,0,0,0,0,0,16262,0,24252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12568,0,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12600,0,0,0,0,0,0,0,0,0,16519,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12708,0,0,0,0,0,0,0,0,0,16027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12709,0,0,0,0,0,0,0,0,0,16028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12710,0,0,0,0,0,0,0,0,0,16027,0,24582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12737,0,0,0,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12778,0,0,0,0,0,0,0,0,0,16435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12779,0,0,0,0,0,0,0,0,0,16435,0,23699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12812,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12828,0,0,0,0,0,0,0,0,0,16787,0,22804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12829,0,0,0,0,0,0,0,0,0,16515,0,23431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12871,0,0,0,0,0,0,0,0,0,16034,0,24572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12877,0,0,0,0,0,0,0,0,0,16516,0,23426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12881,0,0,0,0,0,0,0,0,0,15801,0,26922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12882,0,0,367,0,0,0,0,0,0,16722,0,23550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12903,0,0,0,0,0,0,0,0,0,16787,0,22804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12939,0,0,0,0,0,0,0,0,0,16866,0,22586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12940,0,0,370,0,0,0,0,0,0,16285,0,24156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12974,0,0,0,0,0,0,0,0,0,15805,0,26911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12975,0,0,367,0,0,0,0,0,0,16723,0,22978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12978,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12979,0,0,0,0,0,0,0,0,0,16785,0,22809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12995,0,0,0,0,0,0,0,0,0,16947,0,22474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13058,0,0,0,0,0,0,0,0,0,17302,0,21171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13059,0,0,371,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13064,0,0,0,0,0,0,0,0,0,16696,0,23094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13065,0,0,0,0,0,0,0,0,0,16441,0,23683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13079,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13080,0,0,0,0,0,0,0,0,0,16998,0,22373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13083,0,0,371,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13105,0,0,0,0,0,0,0,0,0,16377,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13111,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13112,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13113,0,0,0,0,0,0,0,0,0,16157,0,22462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13114,0,0,0,0,0,0,0,0,0,16693,0,23104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13324,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13326,0,0,0,0,0,0,0,0,0,16004,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13327,0,0,0,0,0,0,0,0,0,16004,0,24618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13328,0,0,0,0,0,0,0,0,0,16004,0,24617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13352,0,0,367,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13356,0,0,0,0,0,0,0,0,0,16273,0,24192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13358,0,0,0,0,0,0,0,0,0,16947,0,22474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13359,0,0,0,0,0,0,0,0,0,16375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13364,0,0,0,0,0,0,0,0,0,16791,0,22791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13486,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13487,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13504,0,0,371,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13515,0,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13530,0,0,0,0,0,0,0,0,0,15881,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13584,2,0,0,0,0,0,0,0,0,16263,0,24250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13723,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13724,0,0,370,0,0,0,0,0,0,16285,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13850,26,0,0,0,0,0,0,0,0,16786,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13851,33,0,0,0,0,0,0,0,0,16786,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13852,29,0,0,0,0,0,0,0,0,16786,0,22803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14021,0,0,0,0,0,0,0,0,0,16013,0,24610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14024,0,0,0,0,0,0,0,0,0,16420,0,23732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14028,0,0,0,0,0,0,0,0,0,15805,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14030,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14031,0,0,0,0,0,0,0,0,0,15809,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14032,0,0,0,0,0,0,0,0,0,15808,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14033,0,0,0,0,0,0,0,0,0,15808,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14034,0,0,0,0,0,0,0,0,0,15808,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14037,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14041,0,0,0,0,0,0,0,0,0,16756,0,22927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14042,0,0,0,0,0,0,0,0,0,15811,0,26892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15028,0,0,370,0,0,0,0,0,0,15923,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,307 +15173,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15177,0,0,0,0,0,0,0,0,0,16004,0,24619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15237,0,0,370,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15419,0,0,0,0,0,0,0,0,0,17164,0,21832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15423,0,0,0,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15425,0,0,0,0,0,0,0,0,0,15923,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15426,0,0,0,0,0,0,0,0,0,16004,0,24617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15429,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15469,0,0,0,0,0,0,0,0,0,15794,0,26934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15474,0,0,0,0,0,0,0,0,0,16515,0,23428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15552,0,0,0,0,0,0,0,0,0,16874,0,22574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15553,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15554,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15555,0,0,0,0,0,0,0,0,0,16011,0,24612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15556,0,0,0,0,0,0,0,0,0,16580,0,23294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15557,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15558,0,0,0,0,0,0,0,0,0,16874,0,22575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15559,0,0,0,0,0,0,0,0,0,16874,0,22575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15560,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15565,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15566,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15705,0,0,0,0,0,0,0,0,0,16878,0,22569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15739,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15740,0,0,0,0,0,0,0,0,0,16789,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15796,0,0,371,0,0,0,0,0,0,16285,0,24156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15799,0,0,0,0,0,0,0,0,0,16520,0,23415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15801,0,0,0,0,0,0,0,0,0,16577,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15802,0,0,0,0,0,0,0,0,0,16577,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15803,33,0,0,0,0,0,0,0,0,16263,0,24246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15807,0,0,0,0,0,0,0,0,0,17039,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15808,0,0,0,0,0,0,0,0,0,17039,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15813,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15814,0,0,0,0,0,0,0,0,0,16618,0,23202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15818,0,0,0,0,0,0,0,0,0,17164,0,21826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15822,0,0,0,0,0,0,0,0,0,15794,0,26933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15826,0,0,0,0,0,0,0,0,0,16263,0,24251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15827,0,0,0,0,0,0,0,0,0,16263,0,22749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15829,33,0,0,0,0,0,0,0,0,16261,0,22382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15830,33,0,0,0,0,0,0,0,0,16544,0,24250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15833,33,0,0,0,0,0,0,0,0,16619,0,23200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15883,0,0,0,0,0,0,0,0,0,17353,0,20538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15888,0,0,0,0,0,0,0,0,0,16157,0,22260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15895,0,0,0,0,0,0,0,0,0,16576,0,23305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15896,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15899,0,0,0,0,0,0,0,0,0,15802,0,26919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15930,0,0,0,0,0,0,0,0,0,16258,0,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16127,0,0,0,0,0,0,0,0,0,16258,0,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16129,0,0,0,0,0,0,0,0,0,17042,0,22257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16138,0,0,0,0,0,0,0,0,0,16998,0,22374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16144,0,0,0,0,0,0,0,0,0,16792,0,22788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16145,0,0,0,0,0,0,0,0,0,16241,0,24294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16148,0,0,0,0,0,0,0,0,0,16759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16149,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16150,0,0,0,0,0,0,0,0,0,16371,0,23950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16151,0,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16152,0,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16156,0,0,0,0,0,0,0,0,0,16264,0,24248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16216,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16217,0,0,0,0,0,0,0,0,0,17062,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16218,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16243,0,0,0,0,0,0,0,0,0,16397,0,23669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16246,0,0,0,0,0,0,0,0,0,16521,0,23413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16495,0,0,0,0,0,0,0,0,0,16874,0,22575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16535,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16537,0,0,0,0,0,0,0,0,0,16266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16541,0,0,368,0,0,0,0,0,0,17091,0,22032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16542,0,0,368,0,0,0,0,0,0,17009,0,22342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16756,0,0,375,0,0,0,0,0,0,17090,17090,22035,22038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16757,0,0,375,0,0,0,0,0,0,17090,17090,22035,22035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16759,0,0,375,0,0,0,0,0,0,17089,17089,22038,22038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16761,0,0,376,0,0,0,0,0,0,17086,17086,22045,22045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17601,0,0,0,0,0,0,0,0,0,16877,0,22573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17787,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17943,0,0,0,0,0,0,0,0,0,17302,0,21881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17944,0,0,0,0,0,0,0,0,0,17302,0,20543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18156,0,0,0,0,0,0,0,0,0,15857,0,26435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18195,0,0,0,0,0,0,0,0,0,16034,0,24572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18221,0,0,371,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18222,0,0,371,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18253,0,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18258,0,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18260,0,0,0,0,0,0,0,0,0,16805,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18261,0,0,370,0,0,0,0,0,0,15922,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18262,0,0,0,0,0,0,0,0,0,16756,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18263,0,0,0,0,0,0,0,0,0,16699,0,23079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18265,0,0,0,0,0,0,0,0,0,16804,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18266,0,0,0,0,0,0,0,0,0,16239,0,24247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18267,0,0,0,0,0,0,0,0,0,16239,0,24247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18276,0,0,0,0,0,0,0,0,0,16816,0,21973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18278,0,0,0,0,0,0,0,0,0,17378,0,20483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18279,0,0,0,0,0,0,0,0,0,17378,0,20558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18282,0,0,0,0,0,0,0,0,0,17378,0,21166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18299,0,0,0,0,0,0,0,0,0,15877,0,25972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18306,0,0,0,0,0,0,0,0,0,16373,0,23944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18309,0,0,0,0,0,0,0,0,0,16791,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18310,0,0,0,0,0,0,0,0,0,16378,0,23928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18311,0,0,0,0,0,0,0,0,0,16378,0,23928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18323,0,0,366,0,0,0,0,0,0,16934,0,22500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18326,0,0,0,0,0,0,0,0,0,16756,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18327,0,0,0,0,0,0,0,0,0,16159,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18329,0,0,367,0,0,0,0,0,0,16486,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18341,0,0,367,0,0,0,0,0,0,16486,0,23555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18344,0,0,371,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18345,0,0,366,0,0,0,0,0,0,17005,0,22501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18351,0,0,366,0,0,0,0,0,0,17005,0,22355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18353,0,0,366,0,0,0,0,0,0,17005,0,22356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18357,0,0,0,0,0,0,0,0,0,16788,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18360,0,0,0,0,0,0,0,0,0,16264,0,22749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18369,0,0,0,0,0,0,0,0,0,16693,0,23106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18375,0,0,0,0,0,0,0,0,0,17038,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18380,0,0,0,0,0,0,0,0,0,16699,0,23082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18381,0,0,0,0,0,0,0,0,0,16699,0,23082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18390,0,0,0,0,0,0,0,0,0,16380,0,23924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18393,0,0,0,0,0,0,0,0,0,16544,0,23941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18394,0,0,0,0,0,0,0,0,0,16157,0,22260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18395,0,0,0,0,0,0,0,0,0,16514,0,23433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18396,0,0,0,0,0,0,0,0,0,16514,0,23433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18398,0,0,0,0,0,0,0,0,0,16694,0,23103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18404,0,0,0,0,0,0,0,0,0,16757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18407,0,0,370,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18441,0,0,0,0,0,0,0,0,0,16577,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18442,0,0,0,0,0,0,0,0,0,16577,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18445,0,0,0,0,0,0,0,0,0,16695,0,23097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18446,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18450,0,0,0,0,0,0,0,0,0,17305,0,21169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18457,0,0,0,0,0,0,0,0,0,17302,0,20542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18467,0,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18475,0,0,0,0,0,0,0,0,0,17305,0,21168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18479,0,0,0,0,0,0,0,0,0,17305,0,21168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18482,0,0,0,0,0,0,0,0,0,17305,0,21170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18513,0,0,0,0,0,0,0,0,0,17304,0,21162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18558,1,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18559,24,0,0,0,0,0,0,0,0,16804,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18560,31,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18561,-1,0,0,0,0,0,0,0,0,16804,0,22772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18562,-1,0,0,0,0,0,0,0,0,16804,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18567,0,0,0,0,0,0,0,0,0,16756,0,22261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18591,0,0,0,0,0,0,0,0,0,16379,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18595,0,0,0,0,0,0,0,0,0,16157,0,22260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18596,0,0,0,0,0,0,0,0,0,16440,0,23686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18605,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18606,0,0,0,0,0,0,0,0,0,15802,0,26919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18654,0,0,0,0,0,0,0,0,0,17352,0,21165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18660,0,0,0,0,0,0,0,0,0,17352,0,21171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18667,0,0,0,0,0,0,0,0,0,17378,0,21171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18695,0,0,0,0,0,0,0,0,0,17354,0,21827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18708,0,0,0,0,0,0,0,0,0,16519,0,23419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18709,0,0,0,0,0,0,0,0,0,16004,0,24620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18710,0,0,0,0,0,0,0,0,0,16004,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18711,0,0,0,0,0,0,0,0,0,16423,0,23726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18713,0,0,0,0,0,0,0,0,0,16004,0,24619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18715,0,0,0,0,0,0,0,0,0,16004,0,24620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18731,0,0,0,0,0,0,0,0,0,17378,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18770,0,0,0,0,0,0,0,0,0,17352,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18773,0,0,0,0,0,0,0,0,0,17353,0,20534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18791,0,0,0,0,0,0,0,0,0,17148,0,21874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18809,0,0,0,0,0,0,0,0,0,17147,0,21880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18810,0,0,0,0,0,0,0,0,0,17147,0,21880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18817,0,0,0,0,0,0,0,0,0,17351,0,20559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18818,0,0,0,0,0,0,0,0,0,17147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18820,0,0,0,0,0,0,0,0,0,17378,0,21167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18821,0,0,0,0,0,0,0,0,0,17351,0,20558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18825,0,0,0,0,0,0,0,0,0,17352,0,21167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18902,0,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19138,0,0,0,0,0,0,0,0,0,15805,0,26902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19183,0,0,0,0,0,0,0,0,0,15803,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19202,0,0,0,0,0,0,0,0,0,15806,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19211,0,0,0,0,0,0,0,0,0,15806,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19212,0,0,0,0,0,0,0,0,0,15800,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19215,0,0,0,0,0,0,0,0,0,15805,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19216,0,0,0,0,0,0,0,0,0,15805,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19218,0,0,0,0,0,0,0,0,0,15806,0,26907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19219,0,0,0,0,0,0,0,0,0,16756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19229,0,0,0,0,0,0,0,0,0,16219,0,24457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19230,0,0,0,0,0,0,0,0,0,16219,0,24454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19233,0,0,0,0,0,0,0,0,0,15807,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19237,0,0,0,0,0,0,0,0,0,16160,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19238,0,0,0,0,0,0,0,0,0,15801,0,26920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19241,0,0,0,0,0,0,0,0,0,15807,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19244,0,0,0,0,0,0,0,0,0,16759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19248,0,0,0,0,0,0,0,0,0,16759,0,22925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19253,0,0,0,0,0,0,0,0,0,16160,0,24456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19256,0,0,0,0,0,0,0,0,0,15802,0,26915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19257,0,0,0,0,0,0,0,0,0,16158,0,24326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19258,0,0,0,0,0,0,0,0,0,16756,0,22260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19260,0,0,0,0,0,0,0,0,0,16330,0,24017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19261,0,0,0,0,0,0,0,0,0,15805,0,26908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19262,0,0,0,0,0,0,0,0,0,15802,0,22923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19268,0,0,0,0,0,0,0,0,0,15807,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19269,0,0,0,0,0,0,0,0,0,15807,0,26903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19277,0,0,0,0,0,0,0,0,0,16158,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19278,0,0,0,0,0,0,0,0,0,16158,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19279,0,0,0,0,0,0,0,0,0,16331,0,24014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19280,0,0,0,0,0,0,0,0,0,16158,0,24459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19282,0,0,0,0,0,0,0,0,0,16158,0,24463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19285,0,0,0,0,0,0,0,0,0,16158,0,26899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19286,0,0,0,0,0,0,0,0,0,15809,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19288,0,0,0,0,0,0,0,0,0,16756,0,22926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19289,0,0,0,0,0,0,0,0,0,16756,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19293,0,0,0,0,0,0,0,0,0,16756,0,24461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19294,0,0,0,0,0,0,0,0,0,16160,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19300,0,0,0,0,0,0,0,0,0,16756,0,22262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19301,0,0,0,0,0,0,0,0,0,16160,0,24452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19303,0,0,0,0,0,0,0,0,0,16159,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19308,0,0,0,0,0,0,0,0,0,16756,0,22925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19310,0,0,0,0,0,0,0,0,0,16158,0,24460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19329,0,0,0,0,0,0,0,0,0,15807,0,26910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19370,0,0,0,0,0,0,0,0,0,16756,0,24456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19391,0,0,0,0,0,0,0,0,0,15806,0,26911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19392,0,0,0,0,0,0,0,0,0,16995,0,22383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19393,0,0,0,0,0,0,0,0,0,0,0,24587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19403,0,0,0,0,0,0,0,0,0,15806,0,26911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19420,0,0,366,0,0,0,0,0,0,17001,0,22357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19426,0,0,0,0,0,0,0,0,0,16585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19457,0,0,0,0,0,0,0,0,0,16039,0,24561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19524,0,0,0,0,0,0,0,0,0,15884,0,22197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19536,0,0,0,0,0,0,0,0,0,15884,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19537,0,0,0,0,0,0,0,0,0,15883,0,22199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19539,0,0,0,0,0,0,0,0,0,15885,0,22200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19542,0,0,0,0,0,0,0,0,0,15882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19543,0,0,0,0,0,0,0,0,0,15884,0,22198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19594,0,0,0,0,0,0,0,0,0,15884,0,25950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19598,0,0,0,0,0,0,0,0,0,15882,0,25956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19600,0,0,0,0,0,0,0,0,0,16378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19602,0,0,0,0,0,0,0,0,0,16376,0,23932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19603,0,0,0,0,0,0,0,0,0,16621,0,23196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19604,0,0,0,0,0,0,0,0,0,15881,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19605,0,0,0,0,0,0,0,0,0,15881,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19607,0,0,0,0,0,0,0,0,0,15880,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19616,0,0,0,0,0,0,0,0,0,15877,0,22392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19618,0,0,0,0,0,0,0,0,0,15877,0,22207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19619,0,0,0,0,0,0,0,0,0,15877,0,22384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19640,0,0,374,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19641,0,0,0,0,0,0,0,0,0,16004,0,24629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19651,0,0,0,0,0,0,0,0,0,15794,0,26932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19660,0,0,0,0,0,0,0,0,0,15881,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19689,0,0,0,0,0,0,0,0,0,16035,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19744,0,0,0,0,0,0,0,0,0,16035,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19757,0,0,0,0,0,0,0,0,0,15857,0,26433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19768,0,0,0,0,0,0,0,0,0,16787,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19774,0,0,374,0,0,0,0,0,0,15922,0,25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19780,0,0,0,0,0,0,0,0,0,17064,0,22204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19781,0,0,0,0,0,0,0,0,0,17351,0,20564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19836,0,0,0,0,0,0,0,0,0,16693,0,23106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19839,0,0,0,0,0,0,0,0,0,17148,0,21870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19890,0,0,0,0,0,0,0,0,0,16520,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19891,0,0,0,0,0,0,0,0,0,16342,0,23983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19896,0,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19897,25,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19905,26,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19931,0,0,0,0,0,0,0,0,0,16329,0,24020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20011,0,0,0,0,0,0,0,0,0,15861,0,26426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20012,0,0,0,0,0,0,0,0,0,15861,0,26428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20016,0,0,0,0,0,0,0,0,0,16811,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20017,0,0,0,0,0,0,0,0,0,17123,0,22756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20018,0,0,0,0,0,0,0,0,0,16809,0,22759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20034,0,0,0,0,0,0,0,0,0,16257,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20049,0,0,0,0,0,0,0,0,0,16256,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20070,0,0,0,0,0,0,0,0,0,16265,0,24248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20077,0,0,0,0,0,0,0,0,0,16789,0,22798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20079,0,0,0,0,0,0,0,0,0,16259,0,24258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20082,0,0,0,0,0,0,0,0,0,16792,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20085,0,0,0,0,0,0,0,0,0,16265,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20090,0,0,0,0,0,0,0,0,0,16792,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20113,0,0,0,0,0,0,0,0,0,16789,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20115,0,0,0,0,0,0,0,0,0,15861,0,26428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20118,0,0,0,0,0,0,0,0,0,17122,0,21973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20129,0,0,0,0,0,0,0,0,0,16242,0,24249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20130,0,0,0,0,0,0,0,0,0,16786,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20158,0,0,0,0,0,0,0,0,0,16256,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20165,0,0,0,0,0,0,0,0,0,16787,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20166,0,0,0,0,0,0,0,0,0,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20169,0,0,0,0,0,0,0,0,0,17123,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20171,0,0,0,0,0,0,0,0,0,16262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20178,0,0,0,0,0,0,0,0,0,16792,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20187,0,0,0,0,0,0,0,0,0,16241,0,22743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20192,0,0,0,0,0,0,0,0,0,16241,0,24246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20194,1,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20197,0,0,0,0,0,0,0,0,0,16241,0,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20217,0,0,0,0,0,0,0,0,0,16265,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20222,0,0,0,0,0,0,0,0,0,16816,0,22744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20224,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20254,0,0,0,0,0,0,0,0,0,16574,0,24157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20260,0,0,0,0,0,0,0,0,0,16516,0,23555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20270,0,0,0,0,0,0,0,0,0,16626,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20271,0,0,0,0,0,0,0,0,0,16585,0,23299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20276,0,0,0,0,0,0,0,0,0,16697,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20290,0,0,0,0,0,0,0,0,0,16697,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20295,0,0,0,0,0,0,0,0,0,16626,0,23086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20296,0,0,0,0,0,0,0,0,0,16627,0,23182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20310,0,0,0,0,0,0,0,0,0,16575,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20313,0,0,0,0,0,0,0,0,0,16516,0,24194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20314,0,0,0,0,0,0,0,0,0,16695,0,23096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20317,0,0,0,0,0,0,0,0,0,16695,0,23099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20319,0,0,0,0,0,0,0,0,0,16942,0,22485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20322,0,0,0,0,0,0,0,0,0,16520,0,22981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20324,0,0,0,0,0,0,0,0,0,16699,0,23082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20328,0,0,0,0,0,0,0,0,0,16626,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20332,0,0,0,0,0,0,0,0,0,16694,0,23101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20337,0,0,0,0,0,0,0,0,0,16443,0,23089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20338,0,0,0,0,0,0,0,0,0,16698,0,23083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20351,0,0,0,0,0,0,0,0,0,16942,0,22483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20352,0,0,0,0,0,0,0,0,0,16576,0,23307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20353,0,0,0,0,0,0,0,0,0,16576,0,23305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20355,0,0,0,0,0,0,0,0,0,16700,0,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20358,0,0,0,0,0,0,0,0,0,16700,0,23079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20371,0,0,0,0,0,0,0,0,0,16628,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20375,0,0,0,0,0,0,0,0,0,16576,0,23304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20387,0,0,0,0,0,0,0,0,0,16700,0,23077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20393,0,0,0,0,0,0,0,0,0,16578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20397,0,0,0,0,0,0,0,0,0,16442,0,23679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20408,0,0,0,0,0,0,0,0,0,16442,0,23682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20409,0,0,0,0,0,0,0,0,0,16518,0,23422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20416,0,0,0,0,0,0,0,0,0,16520,0,23423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20428,0,0,0,0,0,0,0,0,0,16579,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20437,0,0,0,0,0,0,0,0,0,16947,0,22484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20445,0,0,0,0,0,0,0,0,0,16521,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20447,0,0,0,0,0,0,0,0,0,16947,0,23079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20452,0,0,0,0,0,0,0,0,0,16442,0,23679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20489,0,0,0,0,0,0,0,0,0,16628,0,23179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20490,0,0,0,0,0,0,0,0,0,16628,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20549,0,0,367,0,0,0,0,0,0,16726,0,23555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20551,0,0,367,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20557,0,0,367,0,0,0,0,0,0,16487,0,23553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20639,0,0,0,0,0,0,0,0,0,15854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20651,0,0,367,0,0,0,0,0,0,16486,0,22976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20665,0,0,366,0,0,0,0,0,0,17005,0,22500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20716,0,0,367,0,0,0,0,0,0,16724,0,22975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20724,0,0,366,0,0,0,0,0,0,16934,0,22358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20737,0,0,366,0,0,0,0,0,0,16934,0,22359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20739,0,0,0,0,0,0,0,0,0,16371,0,23950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20742,0,0,0,0,0,0,0,0,0,16371,0,23949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20745,0,0,0,0,0,0,0,0,0,15993,0,24649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20746,0,0,0,0,0,0,0,0,0,16544,0,23370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20747,0,0,0,0,0,0,0,0,0,16544,0,23941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20748,0,0,0,0,0,0,0,0,0,16544,0,23941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20750,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20771,0,0,368,0,0,0,0,0,0,17077,17077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20778,0,0,370,0,0,0,0,0,0,16285,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20780,0,0,370,0,0,0,0,0,0,16285,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20812,0,0,374,0,0,0,0,0,0,16285,0,23305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20816,0,0,371,0,0,0,0,0,0,16285,0,23079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20817,0,0,0,0,0,0,0,0,0,17142,0,21915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20822,0,0,374,0,0,0,0,0,0,16285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20823,0,0,0,0,0,0,0,0,0,17303,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20827,0,0,371,0,0,0,0,0,0,16285,0,23294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20830,0,0,370,0,0,0,0,0,0,16285,0,23304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20832,0,0,371,0,0,0,0,0,0,16285,0,24190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20853,0,0,0,0,0,0,0,0,0,17351,0,20560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20871,0,0,371,0,0,0,0,0,0,16285,0,23298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20891,0,0,0,0,0,0,0,0,0,17143,0,21914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20904,0,0,370,0,0,0,0,0,0,15923,0,25170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20905,0,0,0,0,0,0,0,0,0,17147,0,21880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20906,0,0,0,0,0,0,0,0,0,17143,0,21914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20908,0,0,0,0,0,0,0,0,0,17147,0,21891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20917,0,0,370,0,0,0,0,0,0,16285,0,24192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20918,0,0,370,0,0,0,0,0,0,15922,0,23418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20980,0,0,366,0,0,0,0,0,0,17005,0,22499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20981,0,0,378,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21012,0,0,378,0,0,0,0,0,0,16285,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21013,0,0,378,0,0,0,0,0,0,16285,0,23298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21015,0,0,378,0,0,0,0,0,0,15923,0,25172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21017,0,0,378,0,0,0,0,0,0,16285,0,24158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21021,0,0,378,0,0,0,0,0,0,15922,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21093,27,0,0,0,0,0,0,0,0,16013,0,24610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21099,0,0,378,0,0,0,0,0,0,15922,0,25175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21100,0,0,378,0,0,0,0,0,0,15922,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21140,0,0,0,0,0,0,0,0,0,15835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21141,0,0,0,0,0,0,0,0,0,0,0,23202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21158,0,0,0,0,0,0,0,0,0,17039,0,22261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21342,0,0,0,0,0,0,0,0,0,16988,0,22402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21372,27,0,0,0,0,0,0,0,0,16873,0,22578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21406,0,0,0,0,0,0,0,0,0,16880,0,22563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21474,0,0,0,0,0,0,0,0,0,17229,0,21662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21491,0,0,0,0,0,0,0,0,0,16873,0,22578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21511,0,0,0,0,0,0,0,0,0,16272,0,24195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21512,0,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21571,0,0,0,0,0,0,0,0,0,15837,0,26658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21581,0,0,0,0,0,0,0,0,0,17039,0,22263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21582,0,0,0,0,0,0,0,0,0,17039,0,22261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21594,0,0,0,0,0,0,0,0,0,16004,0,24620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21599,0,0,0,0,0,0,0,0,0,16004,0,24620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21674,0,0,0,0,0,0,0,0,0,16988,0,22402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21713,0,0,0,0,0,0,0,0,0,15826,0,26668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21720,0,0,370,0,0,0,0,0,0,16285,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21721,0,0,370,0,0,0,0,0,0,16285,0,23407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21722,0,0,370,0,0,0,0,0,0,16285,0,23295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21726,29,0,0,0,0,0,0,0,0,16988,0,22402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21774,0,0,0,0,0,0,0,0,0,17096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21791,0,0,0,0,0,0,0,0,0,16379,0,23200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21792,0,0,0,0,0,0,0,0,0,16377,0,23200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21795,0,0,0,0,0,0,0,0,0,17064,0,26932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21802,0,0,0,0,0,0,0,0,0,15993,0,24645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21803,25,0,0,0,0,0,0,0,0,15993,0,24645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21806,0,0,0,0,0,0,0,0,0,16257,0,22770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21808,0,0,0,0,0,0,0,0,0,16258,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21810,0,0,0,0,0,0,0,0,0,16158,0,26914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21837,25,0,0,0,0,0,0,0,0,15993,0,24645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21850,0,0,0,0,0,0,0,0,0,16789,0,24256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21851,0,0,0,0,0,0,0,0,0,17008,0,24586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21852,0,0,0,0,0,0,0,0,0,17008,0,22343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21854,0,0,379,0,0,0,0,0,0,16285,0,24191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21856,0,0,0,0,0,0,0,0,0,16544,0,23947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21882,0,0,0,0,0,0,0,0,0,17088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21931,0,0,0,0,0,0,0,0,0,16256,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21935,0,0,0,0,0,0,0,0,0,16873,0,22578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21937,42,0,0,0,0,0,0,0,0,16256,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21951,0,0,0,0,0,0,0,0,0,17088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21953,0,0,0,0,0,0,0,0,0,15880,0,22207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21954,0,0,0,0,0,0,0,0,0,15880,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21955,0,0,0,0,0,0,0,0,0,16701,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21966,0,0,0,0,0,0,0,0,0,17039,0,22264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21967,0,0,0,0,0,0,0,0,0,17038,0,23533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22009,0,0,0,0,0,0,0,0,0,16034,0,23724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22028,42,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22030,0,0,0,0,0,0,0,0,0,16257,0,24264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22076,0,0,0,0,0,0,0,0,0,16810,0,22758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22082,0,0,0,0,0,0,0,0,0,16789,0,22756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22083,0,0,0,0,0,0,0,0,0,16787,0,22799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22086,0,0,0,0,0,0,0,0,0,16792,0,22788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22087,0,0,0,0,0,0,0,0,0,16241,0,23071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22088,0,0,0,0,0,0,0,0,0,16791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22089,0,0,0,0,0,0,0,0,0,16787,0,22799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22090,0,0,0,0,0,0,0,0,0,16791,0,23074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22091,0,0,0,0,0,0,0,0,0,16788,0,22801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22092,0,0,0,0,0,0,0,0,0,16792,0,22792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22099,0,0,0,0,0,0,0,0,0,15811,0,26893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22100,0,0,0,0,0,0,0,0,0,15808,0,26897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22103,0,0,0,0,0,0,0,0,0,15805,0,26918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22104,0,0,0,0,0,0,0,0,0,15810,0,26900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22107,0,0,0,0,0,0,0,0,0,16758,0,22925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22109,0,0,0,0,0,0,0,0,0,16756,0,24460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22110,0,0,0,0,0,0,0,0,0,15805,0,26904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22113,0,0,0,0,0,0,0,0,0,16219,0,24457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22116,0,0,0,0,0,0,0,0,0,16158,0,24463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22117,0,0,0,0,0,0,0,0,0,17008,0,22343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22122,0,0,0,0,0,0,0,0,0,15794,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22123,0,0,0,0,0,0,0,0,0,15882,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22124,0,0,0,0,0,0,0,0,0,15882,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22125,0,0,0,0,0,0,0,0,0,15881,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22126,0,0,0,0,0,0,0,0,0,15882,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22127,0,0,0,0,0,0,0,0,0,15882,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22128,0,0,0,0,0,0,0,0,0,15883,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22129,0,0,0,0,0,0,0,0,0,15881,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22130,0,0,0,0,0,0,0,0,0,15883,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22132,0,0,0,0,0,0,0,0,0,15794,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22138,0,0,0,0,0,0,0,0,0,16628,0,23178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22143,0,0,0,0,0,0,0,0,0,16519,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22148,0,0,0,0,0,0,0,0,0,16519,0,23418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22179,29,0,0,0,0,0,0,0,0,16988,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22208,0,0,0,0,0,0,0,0,0,16372,0,23945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22210,0,0,0,0,0,0,0,0,0,16373,0,23943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22211,0,0,0,0,0,0,0,0,0,16373,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22224,0,0,0,0,0,0,0,0,0,16756,0,22262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22228,0,0,0,0,0,0,0,0,0,16253,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22230,0,0,0,0,0,0,0,0,0,16253,0,22748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22231,0,0,0,0,0,0,0,0,0,16253,0,22752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22236,0,0,0,0,0,0,0,0,0,16544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22237,0,0,0,0,0,0,0,0,0,16544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22240,0,0,0,0,0,0,0,0,0,16588,0,23241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22246,0,0,0,0,0,0,0,0,0,16701,0,23072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22251,0,0,0,0,0,0,0,0,0,16521,0,23412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22257,0,0,0,0,0,0,0,0,0,16695,0,23095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22357,0,0,0,0,0,0,0,0,0,16159,0,24028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22615,0,0,0,0,0,0,0,0,0,16880,0,22563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22616,0,0,0,0,0,0,0,0,0,16880,0,22563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22653,0,0,0,0,0,0,0,0,0,16304,0,24097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22694,0,0,0,0,0,0,0,0,0,16195,0,24421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22718,0,0,0,0,0,0,0,0,0,15877,0,22208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22719,0,0,0,0,0,0,0,0,0,16701,0,22474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22720,25,0,0,0,0,0,0,0,0,16701,0,23180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22732,0,0,0,0,0,0,0,0,0,16265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22791,0,0,0,0,0,0,0,0,0,16628,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22796,0,0,0,0,0,0,0,0,0,16397,0,23669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22803,0,0,0,0,0,0,0,0,0,16797,0,22778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22804,0,0,0,0,0,0,0,0,0,15855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22834,0,0,370,0,0,0,0,0,0,16289,0,24139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22835,0,0,370,0,0,0,0,0,0,16286,0,24154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22836,0,0,370,0,0,0,0,0,0,16288,0,24145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22887,0,0,0,0,0,0,0,0,0,15854,0,26442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22903,0,0,0,0,0,0,0,0,0,15855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22904,0,0,0,0,0,0,0,0,0,15851,0,26455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22905,0,0,0,0,0,0,0,0,0,16299,0,24115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22922,0,0,0,0,0,0,0,0,0,16005,0,24626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22930,0,0,367,0,0,0,0,0,0,16487,0,23554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23223,0,0,0,0,0,0,0,0,0,16785,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23225,0,0,0,0,0,0,0,0,0,16435,0,23699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23226,0,0,0,0,0,0,0,0,0,17039,0,22262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23227,0,0,0,0,0,0,0,0,0,16491,0,23535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23231,0,0,0,0,0,0,0,0,0,16330,0,24029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23232,0,0,0,0,0,0,0,0,0,16330,0,24025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23233,0,0,0,0,0,0,0,0,0,16330,0,26901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23235,0,0,0,0,0,0,0,0,0,16328,0,24024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23237,0,0,0,0,0,0,0,0,0,16327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23238,0,0,0,0,0,0,0,0,0,16327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23242,0,0,0,0,0,0,0,0,0,16331,0,24014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23245,0,0,0,0,0,0,0,0,0,16301,0,24106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23246,0,0,0,0,0,0,0,0,0,16301,0,24106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23247,0,0,0,0,0,0,0,0,0,16397,0,23104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23249,0,0,0,0,0,0,0,0,0,16369,0,23964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23259,0,0,0,0,0,0,0,0,0,16300,0,24114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23260,0,0,0,0,0,0,0,0,0,16300,0,22805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23261,0,0,0,0,0,0,0,0,0,16792,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23263,0,0,0,0,0,0,0,0,0,16786,0,24114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23265,0,0,0,0,0,0,0,0,0,16998,0,22191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23268,0,0,0,0,0,0,0,0,0,16988,0,22402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23269,0,0,0,0,0,0,0,0,0,15837,0,26658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23272,25,0,0,0,0,0,0,0,0,15852,0,26450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23273,33,0,0,0,0,0,0,0,0,15852,0,26450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23275,0,0,0,0,0,0,0,0,0,16328,0,24024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23277,0,0,0,0,0,0,0,0,0,15798,0,26927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23278,0,0,0,0,0,0,0,0,0,15803,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23279,0,0,0,0,0,0,0,0,0,15807,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23280,0,0,0,0,0,0,0,0,0,15808,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23282,0,0,0,0,0,0,0,0,0,16369,0,23964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23385,0,0,0,0,0,0,0,0,0,16300,0,24111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23433,0,0,0,0,0,0,0,0,0,16756,0,23535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23451,0,0,0,0,0,0,0,0,0,15854,0,26442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23454,0,0,0,0,0,0,0,0,0,15853,0,26445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23498,0,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23555,0,0,0,0,0,0,0,0,0,16619,0,23201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23556,0,0,0,0,0,0,0,0,0,15882,0,26934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23646,0,0,0,0,0,0,0,0,0,16588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23647,0,0,0,0,0,0,0,0,0,16544,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23682,0,0,0,0,0,0,0,0,0,16304,0,24096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23705,0,0,0,0,0,0,0,0,0,15794,0,25960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23724,0,0,367,0,0,0,0,0,0,16723,0,22979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23733,0,0,0,0,0,0,0,0,0,16816,0,26442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23735,0,0,0,0,0,0,0,0,0,16420,0,23731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23749,0,0,0,0,0,0,0,0,0,16035,0,24571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23796,0,0,0,0,0,0,0,0,0,16577,0,23303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23903,0,0,0,0,0,0,0,0,0,16450,0,23658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23922,25,0,0,0,0,0,0,0,0,16556,0,23357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23935,31,0,0,0,0,0,0,0,0,16556,0,23357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23989,0,0,0,0,0,0,0,0,0,16372,0,23946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23990,0,0,0,0,0,0,0,0,0,16373,0,23942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24027,25,0,0,0,0,0,0,0,0,16300,0,24112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24028,25,0,0,0,0,0,0,0,0,16300,0,24113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24029,0,0,0,0,0,0,0,0,0,16095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24030,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24047,0,0,0,0,0,0,0,0,0,16793,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24048,0,0,0,0,0,0,0,0,0,16793,0,22773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24050,25,0,0,0,0,0,0,0,0,16257,0,22745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24062,0,0,0,0,0,0,0,0,0,16520,0,23982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24099,0,0,0,0,0,0,0,0,0,16452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24104,0,0,370,0,0,0,0,0,0,16290,0,24132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24105,0,0,370,0,0,0,0,0,0,16288,0,24144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24118,0,0,0,0,0,0,0,0,0,16327,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24121,0,0,379,0,0,0,0,0,0,15922,0,23418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24157,0,0,0,0,0,0,0,0,0,16695,0,23096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24158,0,0,0,0,0,0,0,0,0,16695,0,23096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24161,0,0,0,0,0,0,0,0,0,16992,0,22392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24254,103,0,0,0,0,0,0,0,0,16551,0,23361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24256,130,0,0,0,0,0,0,0,0,16327,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24320,1,0,0,0,0,0,0,0,0,16585,0,23309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24321,124,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24335,81,0,0,0,0,0,0,0,0,16301,0,24107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24336,127,0,0,0,0,0,0,0,0,16301,0,24107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24337,27,0,0,0,0,0,0,0,0,16301,0,24107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24339,130,0,0,0,0,0,0,0,0,16301,0,24106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24340,130,0,0,0,0,0,0,0,0,16302,0,24102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24341,27,0,0,0,0,0,0,0,0,16302,0,24102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24395,124,0,0,0,0,0,0,0,0,16575,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24481,131,0,0,0,0,0,0,0,0,16272,0,24196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24482,123,0,0,0,0,0,0,0,0,16272,0,24196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24484,32,0,0,0,0,0,0,0,0,16519,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24485,1,0,0,0,0,0,0,0,0,16519,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24486,33,0,0,0,0,0,0,0,0,16519,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24487,81,0,0,0,0,0,0,0,0,16519,0,25177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24488,26,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24602,104,0,0,0,0,0,0,0,0,16556,0,23357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24625,0,0,0,0,0,0,0,0,0,16023,0,24589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24648,0,0,0,0,0,0,0,0,0,16023,0,24592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24649,0,0,366,0,0,0,0,0,0,16934,0,22505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24650,0,0,366,0,0,0,0,0,0,16933,0,22503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24651,0,0,366,0,0,0,0,0,0,16933,0,22505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24652,0,0,366,0,0,0,0,0,0,16933,0,22503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24653,0,0,366,0,0,0,0,0,0,16933,0,22505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24656,124,0,0,0,0,0,0,0,0,16373,0,23943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24658,0,0,0,0,0,0,0,0,0,15864,0,24257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24659,123,0,0,0,0,0,0,0,0,16257,0,22745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24699,0,0,0,0,0,0,0,0,0,16023,0,24591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24700,0,0,0,0,0,0,0,0,0,16023,0,24591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24737,1,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24738,0,0,371,0,0,0,0,0,0,16286,0,24154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24739,0,0,371,0,0,0,0,0,0,16286,0,24154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24750,0,0,0,0,0,0,0,0,0,15801,0,24026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24751,0,0,0,0,0,0,0,0,0,15801,0,26921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24752,0,0,0,0,0,0,0,0,0,16327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24753,0,0,0,0,0,0,0,0,0,16327,0,24027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24755,0,0,0,0,0,0,0,0,0,16264,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24770,1,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24792,103,0,0,0,0,0,0,0,0,16241,0,24294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24811,104,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24812,103,0,0,0,0,0,0,0,0,16793,0,22765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24814,104,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24815,0,0,0,0,0,0,0,0,0,16490,0,23543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24821,0,0,0,0,0,0,0,0,0,17242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24851,104,0,0,0,0,0,0,0,0,16300,0,24115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24929,104,0,367,0,0,0,0,0,0,16487,0,23550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25073,29,0,0,0,0,0,0,0,0,16006,0,24626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25074,29,0,0,0,0,0,0,0,0,16004,0,24626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25075,0,0,374,0,0,0,0,0,0,16284,0,24160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25119,0,0,0,0,0,0,0,0,0,16241,0,24294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25145,0,0,0,0,0,0,0,0,0,15892,0,23926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25149,0,0,0,0,0,0,0,0,0,15892,0,25938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25167,0,0,0,0,0,0,0,0,0,16241,0,24248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25177,0,0,0,0,0,0,0,0,0,17068,0,22192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25178,0,0,0,0,0,0,0,0,0,17068,0,22192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25596,0,0,0,0,0,0,0,0,0,15798,0,26924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25601,0,0,0,0,0,0,0,0,0,16452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25605,0,0,367,0,0,0,0,0,0,16487,0,23550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25610,0,0,0,0,0,0,0,0,0,16695,0,23091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25615,0,0,0,0,0,0,0,0,0,17068,0,22191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25616,0,0,0,0,0,0,0,0,0,17068,0,22191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25617,0,0,0,0,0,0,0,0,0,17062,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25618,0,0,0,0,0,0,0,0,0,17068,0,22191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25621,0,0,0,0,0,0,0,0,0,16988,0,22209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25622,0,0,0,0,0,0,0,0,0,16991,0,22395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25624,0,0,0,0,0,0,0,0,0,17066,0,25732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25628,0,0,0,0,0,0,0,0,0,15893,0,25942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25634,0,0,0,0,0,0,0,0,0,16544,0,23370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25635,0,0,0,0,0,0,0,0,0,16256,0,22789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25636,0,0,0,0,0,0,0,0,0,16804,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25637,0,0,0,0,0,0,0,0,0,16260,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25638,0,0,0,0,0,0,0,0,0,16260,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25642,81,0,0,0,0,0,0,0,0,17042,0,22255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25643,81,0,0,0,0,0,0,0,0,17042,0,22256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25644,0,0,0,0,0,0,0,0,0,15855,0,26439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25645,0,0,0,0,0,0,0,0,0,15851,0,26457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25650,0,0,0,0,0,0,0,0,0,16303,0,24101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25651,0,0,0,0,0,0,0,0,0,17096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25652,0,0,0,0,0,0,0,0,0,16302,0,24105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25653,0,0,0,0,0,0,0,0,0,16304,0,24095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25654,0,0,0,0,0,0,0,0,0,16786,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25655,0,0,0,0,0,0,0,0,0,16787,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25656,0,0,0,0,0,0,0,0,0,16793,0,22787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26148,0,0,0,0,0,0,0,0,0,17148,0,21873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26306,0,0,378,0,0,0,0,0,0,16285,0,24155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26320,0,0,0,0,0,0,0,0,0,16290,0,24133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26356,0,0,375,0,0,0,0,0,0,17089,17089,22040,22040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26376,0,0,0,0,0,0,0,0,0,15847,0,26932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26379,0,0,0,0,0,0,0,0,0,16219,0,22736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26380,0,0,0,0,0,0,0,0,0,16219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26386,0,0,379,0,0,0,0,0,0,16285,0,23297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26451,104,0,0,0,0,0,0,0,0,16555,0,24112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26452,0,0,0,0,0,0,0,0,0,16555,0,24112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26462,0,0,0,0,0,0,0,0,0,16816,0,22799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26478,0,0,0,0,0,0,0,0,0,16808,0,22806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26492,0,0,0,0,0,0,0,0,0,16817,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26493,0,0,0,0,0,0,0,0,0,16817,0,23688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26495,0,0,367,0,0,0,0,0,0,17018,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26496,0,0,367,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26538,0,0,0,0,0,0,0,0,0,16284,0,24163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26544,0,0,0,0,0,0,0,0,0,15800,0,22013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26547,0,0,0,0,0,0,0,0,0,17303,0,20559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26573,0,0,0,0,0,0,0,0,0,16265,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26574,0,0,0,0,0,0,0,0,0,16817,0,22750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26575,0,0,0,0,0,0,0,0,0,16817,0,22751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26578,0,0,0,0,0,0,0,0,0,16262,0,22766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26580,0,0,370,0,0,0,0,0,0,16285,0,23299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26581,0,0,378,0,0,0,0,0,0,16285,0,23299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26587,0,0,0,0,0,0,0,0,0,16241,0,24295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26588,0,0,0,0,0,0,0,0,0,16243,0,24248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26599,0,0,0,0,0,0,0,0,0,16816,0,22738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26600,0,0,0,0,0,0,0,0,0,15896,0,25727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26601,0,0,0,0,0,0,0,0,0,16452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26603,0,0,0,0,0,0,0,0,0,16300,0,24113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26604,0,0,0,0,0,0,0,0,0,16371,0,22791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26617,0,0,366,0,0,0,0,0,0,16407,0,22499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26671,0,0,0,0,0,0,0,0,0,16241,0,24247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26672,0,0,0,0,0,0,0,0,0,16241,0,24247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26673,104,0,0,0,0,0,0,0,0,16241,0,24294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26675,0,0,0,0,0,0,0,0,0,16787,0,24115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26677,0,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26678,0,0,0,0,0,0,0,0,0,16626,0,22255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26711,0,0,0,0,0,0,0,0,0,15881,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26809,0,0,0,0,0,0,0,0,0,17351,0,20550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26816,0,0,0,0,0,0,0,0,0,17240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27015,0,0,0,0,0,0,0,0,0,15794,0,26932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27089,0,0,0,0,0,0,0,0,0,16255,0,24270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27090,0,0,0,0,0,0,0,0,0,16255,0,24266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27109,0,0,0,0,0,0,0,0,0,17353,0,20536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27153,0,0,0,0,0,0,0,0,0,17230,0,21658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27221,0,0,0,0,0,0,0,0,0,17148,0,21872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27410,0,0,0,0,0,0,0,0,0,15888,0,25944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27491,0,0,367,0,0,0,0,0,0,16486,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27526,0,0,0,0,0,0,0,0,0,17302,0,20545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27574,0,0,0,0,0,0,0,0,0,16289,0,24137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27585,0,0,0,0,0,0,0,0,0,17352,0,20550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27587,0,0,0,0,0,0,0,0,0,17351,0,20547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27780,0,0,0,0,0,0,0,0,0,17305,0,21899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27781,0,0,0,0,0,0,0,0,0,17147,0,21899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27802,0,0,0,0,0,0,0,0,0,17165,0,21630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27961,0,0,0,0,0,0,0,0,0,17251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28081,0,0,0,0,0,0,0,0,0,16260,0,22757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28085,0,0,0,0,0,0,0,0,0,16260,0,24418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28091,0,0,0,0,0,0,0,0,0,16810,0,22767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28193,0,0,0,0,0,0,0,0,0,16897,0,22535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28211,81,0,379,0,0,0,0,0,0,16284,0,24162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28213,126,0,379,0,0,0,0,0,0,16284,0,24162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28214,103,0,379,0,0,0,0,0,0,16284,0,24162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28329,0,0,0,0,0,0,0,0,0,15896,0,25727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28406,0,0,0,0,0,0,0,0,0,17262,0,21503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28453,0,0,0,0,0,0,0,0,0,16005,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28461,0,0,0,0,0,0,0,0,0,16575,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28463,0,0,0,0,0,0,0,0,0,16006,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28485,0,0,0,0,0,0,0,0,0,16574,0,23927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28498,0,0,0,0,0,0,0,0,0,17012,0,22340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28506,0,0,0,0,0,0,0,0,0,16038,0,24564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28507,0,0,0,0,0,0,0,0,0,16580,0,23302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28509,0,0,0,0,0,0,0,0,0,16580,0,23297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28519,0,0,0,0,0,0,0,0,0,16436,0,24244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28532,0,0,0,0,0,0,0,0,0,16491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28537,0,0,0,0,0,0,0,0,0,15805,0,24457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28549,0,0,0,0,0,0,0,0,0,16517,0,23294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28550,0,0,0,0,0,0,0,0,0,16342,0,23294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28558,0,0,0,0,0,0,0,0,0,16874,0,22577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28574,0,0,367,0,0,0,0,0,0,16723,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28581,0,0,0,0,0,0,0,0,0,17351,0,20559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28582,0,0,0,0,0,0,0,0,0,17241,0,21630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28585,0,0,0,0,0,0,0,0,0,16817,0,22743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28635,0,0,366,0,0,0,0,0,0,17004,0,22362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28698,0,0,0,0,0,0,0,0,0,16578,0,23298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28753,0,0,0,0,0,0,0,0,0,16789,0,22796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28778,0,0,0,0,0,0,0,0,0,16947,0,23696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28815,0,0,378,0,0,0,0,0,0,15922,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28816,0,0,370,0,0,0,0,0,0,15922,0,23417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28832,0,0,0,0,0,0,0,0,0,15796,0,24014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28833,0,0,0,0,0,0,0,0,0,15796,0,24011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28845,33,0,0,0,0,0,0,0,0,15852,0,26455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28846,123,0,0,0,0,0,0,0,0,15854,0,26442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28864,0,0,0,0,0,0,0,0,0,16096,0,24528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28865,0,0,0,0,0,0,0,0,0,16096,0,24529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28868,0,0,0,0,0,0,0,0,0,16098,0,24524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28892,0,0,0,0,0,0,0,0,0,16555,0,23358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28912,0,0,373,0,0,0,0,0,0,17018,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29098,0,0,0,0,0,0,0,0,0,16554,0,23358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29132,0,0,0,0,0,0,0,0,0,15851,0,26457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29160,42,0,0,0,0,0,0,0,0,16327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29162,0,0,367,0,0,0,0,0,0,16486,0,23551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29167,0,0,0,0,0,0,0,0,0,16696,0,23098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29168,0,0,0,0,0,0,0,0,0,15877,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29194,0,0,0,0,0,0,0,0,0,16450,0,23659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29446,0,0,0,0,0,0,0,0,0,15881,0,22370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29672,42,0,0,0,0,0,0,0,0,16259,0,24258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29673,0,0,0,0,0,0,0,0,0,16987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29674,32,0,0,0,0,0,0,0,0,16987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29675,25,0,0,0,0,0,0,0,0,16987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29676,42,0,0,0,0,0,0,0,0,16261,0,24258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29678,0,0,0,0,0,0,0,0,0,16585,0,23411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29701,0,0,0,0,0,0,0,0,0,17143,0,21914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29705,128,0,0,0,0,0,0,0,0,16435,0,23698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29710,123,0,0,0,0,0,0,0,0,16420,0,23731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29711,123,0,0,0,0,0,0,0,0,16420,0,23731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29713,123,0,0,0,0,0,0,0,0,17062,0,26933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29714,29,0,0,0,0,0,0,0,0,17062,0,26933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29715,0,0,0,0,0,0,0,0,0,16310,0,24085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29760,0,0,0,0,0,0,0,0,0,16817,0,24247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29909,0,0,0,0,0,0,0,0,0,16998,0,22534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29913,0,0,0,0,0,0,0,0,0,16005,0,24622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29920,0,0,0,0,0,0,0,0,0,16519,0,23427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29921,0,0,0,0,0,0,0,0,0,16272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29923,0,0,370,0,0,0,0,0,0,16287,0,24148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29956,0,0,0,0,0,0,0,0,0,16695,0,22795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29991,0,0,0,0,0,0,0,0,0,16556,0,23357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29992,0,0,0,0,0,0,0,0,0,16555,0,23357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30393,0,0,0,0,0,0,0,0,0,15819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30560,0,0,0,0,0,0,0,0,0,16250,0,24275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30572,0,0,0,0,0,0,0,0,0,15832,0,26662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30573,0,0,0,0,0,0,0,0,0,15833,0,26662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30574,0,0,0,0,0,0,0,0,0,15833,0,26662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30575,0,0,0,0,0,0,0,0,0,15832,0,26662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30576,0,0,0,0,0,0,0,0,0,15833,0,26662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30636,0,0,366,0,0,0,0,0,0,17001,0,22357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30659,0,0,0,0,0,0,0,0,0,16289,0,24139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30662,0,0,0,0,0,0,0,0,0,17303,0,21167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30678,0,0,0,0,0,0,0,0,0,16006,0,24617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30684,0,0,0,0,0,0,0,0,0,16158,0,24462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30694,104,0,378,0,0,0,0,0,0,15923,0,25171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30700,127,0,0,0,0,0,0,0,0,16256,0,24270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30701,27,0,0,0,0,0,0,0,0,16256,0,24270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30705,128,0,0,0,0,0,0,0,0,16256,0,24267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30708,0,0,0,0,0,0,0,0,0,17236,0,21641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30709,0,0,0,0,0,0,0,0,0,17354,0,20536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30712,128,0,0,0,0,0,0,0,0,16256,0,24265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30750,0,0,0,0,0,0,0,0,0,16698,0,23084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30808,0,0,366,0,0,0,0,0,0,17004,0,22360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30858,127,0,0,0,0,0,0,0,0,16256,0,24268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30871,0,0,0,0,0,0,0,0,0,17239,0,21637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30873,0,0,0,0,0,0,0,0,0,16311,0,24081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30874,0,0,0,0,0,0,0,0,0,16311,0,24081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30876,0,0,0,0,0,0,0,0,0,16452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30877,25,0,0,0,0,0,0,0,0,16489,0,23653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30878,0,0,0,0,0,0,0,0,0,16489,0,23653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30879,31,0,0,0,0,0,0,0,0,16489,0,23653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30880,0,0,0,0,0,0,0,0,0,16489,0,23653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30884,0,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30885,42,0,0,0,0,0,0,0,0,16239,0,24297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30914,0,0,0,0,0,0,0,0,0,16421,0,23730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30932,126,0,0,0,0,0,0,0,0,16102,0,24511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30933,0,0,0,0,0,0,0,0,0,16196,0,24421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30968,0,0,0,0,0,0,0,0,0,16004,0,24629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30970,103,0,0,0,0,0,0,0,0,16271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30971,103,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30972,103,0,0,0,0,0,0,0,0,16271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30973,123,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30992,0,0,0,0,0,0,0,0,0,17252,0,20543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30998,128,0,0,0,0,0,0,0,0,16254,0,24272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31123,0,0,0,0,0,0,0,0,0,16955,0,22460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31158,127,0,0,0,0,0,0,0,0,16955,0,22460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31178,0,0,0,0,0,0,0,0,0,16722,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31190,0,0,0,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31214,0,0,0,0,0,0,0,0,0,16709,0,22353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31215,0,0,0,0,0,0,0,0,0,17243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31218,0,0,0,0,0,0,0,0,0,16762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31220,0,0,0,0,0,0,0,0,0,16286,0,24152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31222,0,0,0,0,0,0,0,0,0,16006,0,24619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31249,103,0,0,0,0,0,0,0,0,16342,0,23983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31264,127,0,367,0,0,0,0,0,0,16955,0,22460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31266,0,0,0,0,0,0,0,0,0,16942,0,22484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31283,25,0,0,0,0,0,0,0,0,16627,0,23183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31288,0,0,0,0,0,0,0,0,0,16304,0,24095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31293,0,0,0,0,0,0,0,0,0,17163,0,21833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31296,0,0,0,0,0,0,0,0,0,17235,0,21642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31297,0,0,0,0,0,0,0,0,0,15800,0,26923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31299,0,0,0,0,0,0,0,0,0,15800,0,26923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31301,0,0,0,0,0,0,0,0,0,16761,0,22914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31303,0,0,0,0,0,0,0,0,0,16450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31305,0,0,0,0,0,0,0,0,0,16486,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31307,0,0,367,0,0,0,0,0,0,16486,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31308,0,0,0,0,0,0,0,0,0,15852,0,26453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31310,0,0,373,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31311,0,0,0,0,0,0,0,0,0,16441,0,23684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31312,0,0,0,0,0,0,0,0,0,16436,0,23694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31315,0,0,0,0,0,0,0,0,0,15837,0,26658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31316,0,0,0,0,0,0,0,0,0,15826,0,26670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31317,0,0,0,0,0,0,0,0,0,15836,0,26658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31319,0,0,366,0,0,0,0,0,0,16933,0,22504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31322,0,0,0,0,0,0,0,0,0,15880,0,25961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31323,0,0,0,0,0,0,0,0,0,15889,0,25940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31328,0,0,0,0,0,0,0,0,0,16371,0,23948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31330,0,0,0,0,0,0,0,0,0,16574,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31332,0,0,0,0,0,0,0,0,0,17126,0,24141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31334,0,0,0,0,0,0,0,0,0,16300,0,24111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31380,0,0,0,0,0,0,0,0,0,16149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31525,0,0,0,0,0,0,0,0,0,16816,0,22744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31607,42,0,0,0,0,0,0,0,0,16342,0,23984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31609,42,0,0,0,0,0,0,0,0,16577,0,23304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31614,0,0,0,0,0,0,0,0,0,16486,0,23556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31615,0,0,367,0,0,0,0,0,0,16486,0,23556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31621,0,0,367,0,0,0,0,0,0,17018,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31627,0,0,0,0,0,0,0,0,0,16289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31658,0,0,0,0,0,0,0,0,0,16312,0,24078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31687,0,0,0,0,0,0,0,0,0,15994,0,24645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31688,0,0,0,0,0,0,0,0,0,15994,0,24645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31689,0,0,0,0,0,0,0,0,0,17042,0,26442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31690,0,0,0,0,0,0,0,0,0,16255,0,24267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31691,0,0,0,0,0,0,0,0,0,15853,0,26445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31693,0,0,0,0,0,0,0,0,0,16761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31694,0,0,0,0,0,0,0,0,0,16760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31695,0,0,0,0,0,0,0,0,0,16998,0,25945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31696,0,0,0,0,0,0,0,0,0,16998,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31697,0,0,0,0,0,0,0,0,0,16998,0,25933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31712,0,0,367,0,0,0,0,0,0,16727,0,23549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31713,0,0,0,0,0,0,0,0,0,17355,0,20562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31714,0,0,0,0,0,0,0,0,0,17174,0,20562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31715,0,0,0,0,0,0,0,0,0,17173,0,20562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31716,0,0,366,0,0,0,0,0,0,16462,0,22504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31717,0,0,366,0,0,0,0,0,0,16202,0,22504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31719,0,0,0,0,0,0,0,0,0,16371,0,23539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31734,0,0,0,0,0,0,0,0,0,16490,0,23539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31763,0,0,0,0,0,0,0,0,0,15925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31778,0,0,0,0,0,0,0,0,0,16022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31798,0,0,373,0,0,0,0,0,0,17018,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31816,0,0,0,0,0,0,0,0,0,15886,0,25945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31818,0,0,0,0,0,0,0,0,0,16627,0,23671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31821,0,0,0,0,0,0,0,0,0,16547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31837,0,0,0,0,0,0,0,0,0,16424,0,23723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31849,0,0,0,0,0,0,0,0,0,16969,0,22454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31850,0,0,0,0,0,0,0,0,0,16968,0,22454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31853,0,0,0,0,0,0,0,0,0,17015,0,22305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31854,0,0,367,0,0,0,0,0,0,17015,0,22305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31855,0,0,0,0,0,0,0,0,0,15787,0,26426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31856,0,0,0,0,0,0,0,0,0,15786,0,26426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31859,0,0,0,0,0,0,0,0,0,16274,0,24189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31860,0,0,0,0,0,0,0,0,0,16621,0,23196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31868,0,0,0,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31871,0,0,0,0,0,0,0,0,0,16546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31872,0,0,0,0,0,0,0,0,0,15837,0,26655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31873,0,0,0,0,0,0,0,0,0,16006,0,24617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31874,0,0,0,0,0,0,0,0,0,16293,0,24132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31875,0,0,0,0,0,0,0,0,0,16672,0,23036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31879,0,0,0,0,0,0,0,0,0,15839,0,26655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31881,0,0,0,0,0,0,0,0,0,16673,0,23705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31909,0,0,373,0,0,0,0,0,0,16475,0,23574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31937,0,0,370,0,0,0,0,0,0,16293,0,24132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31952,0,0,0,0,0,0,0,0,0,16861,0,26655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31959,0,0,0,0,0,0,0,0,0,16831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31962,0,0,0,0,0,0,0,0,0,16830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31963,0,0,0,0,0,0,0,0,0,16830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31976,0,0,0,0,0,0,0,0,0,16289,0,24140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32012,0,0,0,0,0,0,0,0,0,16184,0,24430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32013,0,0,0,0,0,0,0,0,0,16184,0,24430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32014,0,0,0,0,0,0,0,0,0,16183,0,24430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32015,0,0,0,0,0,0,0,0,0,16183,0,24430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32078,0,0,0,0,0,0,0,0,0,17015,0,22305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32194,123,0,0,0,0,0,0,0,0,16696,0,23098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32195,107,0,0,0,0,0,0,0,0,16574,0,23407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32196,128,0,0,0,0,0,0,0,0,16574,0,23407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32198,31,0,0,0,0,0,0,0,0,15851,0,26455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32293,25,0,0,0,0,0,0,0,0,16323,0,24045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32294,0,0,366,0,0,0,0,0,0,16932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32295,130,0,0,0,0,0,0,0,0,16302,0,24105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32299,130,0,0,0,0,0,0,0,0,16942,0,22482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32303,0,0,0,0,0,0,0,0,0,16288,0,24144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32304,0,0,0,0,0,0,0,0,0,17236,0,21642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32306,102,0,0,0,0,0,0,0,0,16250,0,24276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32307,0,0,0,0,0,0,0,0,0,17236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32308,0,0,0,0,0,0,0,0,0,17241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32311,0,0,0,0,0,0,0,0,0,16197,0,24418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32312,128,0,0,0,0,0,0,0,0,16197,0,24418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32313,128,0,0,0,0,0,0,0,0,16197,0,24418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32315,129,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32316,0,0,383,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32317,0,0,367,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32322,130,0,0,0,0,0,0,0,0,16299,0,24114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32324,25,0,0,0,0,0,0,0,0,16369,0,24640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32325,25,0,0,0,0,0,0,0,0,16252,0,24274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32334,129,0,0,0,0,0,0,0,0,16272,0,24197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32343,129,0,0,0,0,0,0,0,0,16897,0,22535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32351,107,0,0,0,0,0,0,0,0,15833,0,26663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32355,107,0,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32357,125,0,0,0,0,0,0,0,0,16626,0,23670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32372,106,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32373,125,0,0,0,0,0,0,0,0,16419,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32374,1,0,0,0,0,0,0,0,0,17126,0,21937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32375,128,0,0,0,0,0,0,0,0,15832,0,26663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32386,0,0,0,0,0,0,0,0,0,15889,0,25941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32387,32,0,0,0,0,0,0,0,0,15889,0,25941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32394,0,0,0,0,0,0,0,0,0,16014,0,24609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32402,0,0,377,0,0,0,0,0,0,16287,0,24149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32403,0,0,372,0,0,0,0,0,0,16288,0,24144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32411,128,0,0,0,0,0,0,0,0,16253,0,24273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32412,128,0,0,0,0,0,0,0,0,16253,0,24273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32428,130,0,0,0,0,0,0,0,0,16866,0,22587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32433,28,0,0,0,0,0,0,0,0,16325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32434,28,0,0,0,0,0,0,0,0,16095,0,24530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32435,28,0,0,0,0,0,0,0,0,16496,0,23516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32436,32,0,0,0,0,0,0,0,0,15994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32440,0,0,367,0,0,0,0,0,0,16955,0,22460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32441,0,0,371,0,0,0,0,0,0,16286,0,24152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32442,32,0,0,0,0,0,0,0,0,16255,0,24267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32444,32,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32445,130,0,0,0,0,0,0,0,0,16864,0,22590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32461,129,0,0,0,0,0,0,0,0,16910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32462,129,0,0,0,0,0,0,0,0,16521,0,23410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32463,25,0,0,0,0,0,0,0,0,15988,0,23949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32489,0,0,0,0,0,0,0,0,0,16787,0,22791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32497,0,0,367,0,0,0,0,0,0,16476,0,22460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32498,0,0,367,0,0,0,0,0,0,16477,0,23571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32499,0,0,367,0,0,0,0,0,0,16477,0,23571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32516,129,0,0,0,0,0,0,0,0,16910,0,22518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32517,1,0,0,0,0,0,0,0,0,16909,0,22519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32518,0,0,0,0,0,0,0,0,0,16909,0,22519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32519,0,0,367,0,0,0,0,0,0,16476,0,23572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32527,25,0,0,0,0,0,0,0,0,16884,0,22555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32528,25,0,0,0,0,0,0,0,0,16560,0,23352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32529,128,0,0,0,0,0,0,0,0,16559,0,23353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32530,128,0,0,0,0,0,0,0,0,16559,0,23353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32531,130,0,0,0,0,0,0,0,0,16884,0,22555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32533,129,0,0,0,0,0,0,0,0,16891,0,22545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32534,107,0,0,0,0,0,0,0,0,16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32535,128,0,0,0,0,0,0,0,0,16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32537,0,0,0,0,0,0,0,0,0,15835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32541,130,0,0,0,0,0,0,0,0,16885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32542,125,0,0,0,0,0,0,0,0,16884,0,22555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32558,0,0,0,0,0,0,0,0,0,17258,0,21513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32559,0,0,0,0,0,0,0,0,0,17259,0,21512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32568,107,0,0,0,0,0,0,0,0,16057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32569,107,0,0,0,0,0,0,0,0,16057,0,22420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32572,130,0,0,0,0,0,0,0,0,16885,0,22553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32574,0,0,366,0,0,0,0,0,0,16408,0,23752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32578,0,0,372,0,0,0,0,0,0,15914,0,24144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32579,0,0,372,0,0,0,0,0,0,15914,0,24144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32580,128,0,0,0,0,0,0,0,0,16559,0,23353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32583,0,0,372,0,0,0,0,0,0,15914,0,22982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32585,25,0,0,0,0,0,0,0,0,15988,0,23950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32586,129,0,0,0,0,0,0,0,0,16910,0,22518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32589,130,0,0,0,0,0,0,0,0,16299,0,24114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32591,2,0,0,0,0,0,0,0,0,16627,0,23181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32593,128,0,0,0,0,0,0,0,0,16979,0,22420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32597,125,0,0,0,0,0,0,0,0,16890,0,23733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32598,128,0,0,0,0,0,0,0,0,16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32602,130,0,0,0,0,0,0,0,0,17092,0,24114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32609,129,0,0,0,0,0,0,0,0,16908,0,22520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32610,0,0,0,0,0,0,0,0,0,16910,0,22518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32611,107,0,0,0,0,0,0,0,0,16909,0,22519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32614,107,0,0,0,0,0,0,0,0,16057,0,22420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32618,107,0,0,0,0,0,0,0,0,16492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32631,107,0,0,0,0,0,0,0,0,16492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32649,107,0,0,0,0,0,0,0,0,16575,0,23308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32686,0,0,0,0,0,0,0,0,0,16372,0,23947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32687,28,0,0,0,0,0,0,0,0,16544,0,23242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32688,0,0,0,0,0,0,0,0,0,16544,0,23242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32690,0,0,376,0,0,0,0,0,0,17084,17084,22053,22053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32692,28,0,376,0,0,0,0,0,0,17084,17084,22053,22053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32723,0,0,0,0,0,0,0,0,0,17092,0,22029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32736,0,0,0,0,0,0,0,0,0,17036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32737,0,0,0,0,0,0,0,0,0,17036,0,22268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32738,0,0,0,0,0,0,0,0,0,17036,0,22268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32764,0,0,373,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32765,32,0,0,0,0,0,0,0,0,16315,0,24066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32767,0,0,0,0,0,0,0,0,0,16871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32769,25,0,0,0,0,0,0,0,0,16982,0,22415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32771,0,0,0,0,0,0,0,0,0,16871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32778,28,0,0,0,0,0,0,0,0,16095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32779,28,0,0,0,0,0,0,0,0,16095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32834,0,0,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32835,0,0,0,0,0,0,0,0,0,0,0,24637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32836,0,0,0,0,0,0,0,0,0,15999,0,24637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32891,103,0,0,0,0,0,0,0,0,15794,0,26935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32893,103,0,0,0,0,0,0,0,0,16786,0,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32919,0,0,0,0,0,0,0,0,0,16576,0,23306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32930,0,0,0,0,0,0,0,0,0,16576,0,23306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32954,0,0,0,0,0,0,0,0,0,0,0,24193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33010,0,0,0,0,0,0,0,0,0,15786,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33011,0,0,0,0,0,0,0,0,0,16673,0,23705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33013,0,0,0,0,0,0,0,0,0,16673,0,23705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33014,0,0,0,0,0,0,0,0,0,16969,0,23173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33016,0,0,0,0,0,0,0,0,0,16673,0,23712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33019,0,0,0,0,0,0,0,0,0,17013,0,22330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33075,0,0,0,0,0,0,0,0,0,16273,0,24190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33086,0,0,0,0,0,0,0,0,0,17136,0,24200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33093,0,0,0,0,0,0,0,0,0,15786,0,29597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33094,0,0,0,0,0,0,0,0,0,15786,0,29597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33118,0,0,0,0,0,0,0,0,0,16487,0,23552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33420,0,0,0,0,0,0,0,0,0,17072,0,22077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33427,0,0,0,0,0,0,0,0,0,17040,0,24167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33430,0,0,0,0,0,0,0,0,0,16974,0,22427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33532,107,0,0,0,0,0,0,0,0,15890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33556,0,0,0,0,0,0,0,0,0,15909,0,25703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33557,0,0,0,0,0,0,0,0,0,15908,0,25704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33558,0,0,0,0,0,0,0,0,0,16974,0,22427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33559,0,0,0,0,0,0,0,0,0,0,0,23141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33563,0,0,0,0,0,0,0,0,0,0,0,21815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33564,0,0,0,0,0,0,0,0,0,17173,0,21816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33565,0,0,0,0,0,0,0,0,0,16999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33738,0,0,0,0,0,0,0,0,0,16975,0,22426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33739,0,0,0,0,0,0,0,0,0,16680,0,23141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33740,0,0,0,0,0,0,0,0,0,16682,0,23141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33820,0,0,0,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33821,0,0,373,0,0,0,0,0,0,16475,0,23573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33826,0,0,0,0,0,0,0,0,0,16936,0,22497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33827,0,0,0,0,0,0,0,0,0,16935,0,22498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33829,0,0,0,0,0,0,0,0,0,16680,0,23143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33834,0,0,0,0,0,0,0,0,0,16450,0,23659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33881,0,0,0,0,0,0,0,0,0,16558,0,23354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33955,0,0,0,0,0,0,0,0,0,15864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33957,0,0,0,0,0,0,0,0,0,15864,0,26428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33958,0,0,0,0,0,0,0,0,0,16249,0,26428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33959,0,0,0,0,0,0,0,0,0,15864,0,26430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33960,0,0,0,0,0,0,0,0,0,16249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33961,125,0,0,0,0,0,0,0,0,16693,0,23105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33963,0,0,0,0,0,0,0,0,0,16435,0,23697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33968,29,0,0,0,0,0,0,0,0,16942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33985,25,0,0,0,0,0,0,0,0,16969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33987,25,0,0,0,0,0,0,0,0,16969,0,22433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33993,25,0,0,0,0,0,0,0,0,15786,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33995,130,0,0,0,0,0,0,0,0,15787,0,29595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33996,130,0,0,0,0,0,0,0,0,15786,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33997,130,0,0,0,0,0,0,0,0,15787,0,29595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34113,128,0,0,0,0,0,0,0,0,16772,0,22835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34117,0,0,367,0,0,0,0,0,0,16728,0,22969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34141,0,0,0,0,0,0,0,0,0,16973,0,22428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34330,0,0,0,0,0,0,0,0,0,0,0,22549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34338,0,0,0,0,0,0,0,0,0,15924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34368,25,0,0,0,0,0,0,0,0,16982,0,22415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34398,0,0,0,0,0,0,0,0,0,15846,0,26651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34403,130,0,0,0,0,0,0,0,0,16558,0,23354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34406,0,0,0,0,0,0,0,0,0,16936,0,22498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34407,0,0,366,0,0,0,0,0,0,16936,0,22497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34408,0,0,0,0,0,0,0,0,0,17040,0,24167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34409,42,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34414,0,0,0,0,0,0,0,0,0,15877,0,25972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34418,0,0,0,0,0,0,0,0,0,16889,0,22547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34426,0,0,0,0,0,0,0,0,0,17036,0,22268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34435,0,0,0,0,0,0,0,0,0,16680,0,488412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34438,0,0,0,0,0,0,0,0,0,16682,0,23141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34439,0,0,0,0,0,0,0,0,0,16985,0,22405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34440,42,0,0,0,0,0,0,0,0,16491,0,23533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34441,42,0,0,0,0,0,0,0,0,16489,0,23544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34443,25,0,0,0,0,0,0,0,0,16489,0,23544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34450,130,0,0,0,0,0,0,0,0,16489,0,23544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34470,130,0,0,0,0,0,0,0,0,16489,0,23544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34472,0,0,0,0,0,0,0,0,0,17040,0,24167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34477,0,0,366,0,0,0,0,0,0,16936,0,22497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34527,0,0,0,0,0,0,0,0,0,17293,0,20544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34528,0,0,0,0,0,0,0,0,0,17218,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34529,0,0,0,0,0,0,0,0,0,17229,0,20541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34530,0,0,0,0,0,0,0,0,0,17237,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34531,0,0,0,0,0,0,0,0,0,17352,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34532,0,0,0,0,0,0,0,0,0,17378,0,21163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34683,0,0,0,0,0,0,0,0,0,16444,0,23676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34801,103,0,0,0,0,0,0,0,0,16311,0,24080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34803,0,0,0,0,0,0,0,0,0,16098,0,24524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34804,0,0,0,0,0,0,0,0,0,16310,0,24575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34805,0,0,0,0,0,0,0,0,0,16284,0,24159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34806,27,0,0,0,0,0,0,0,0,16284,0,24159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34809,42,0,0,0,0,0,0,0,0,16626,0,23184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34811,0,0,0,0,0,0,0,0,0,16340,0,23988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34819,0,0,0,0,0,0,0,0,0,16095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34821,123,0,0,0,0,0,0,0,0,15886,0,25945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34824,0,0,0,0,0,0,0,0,0,16786,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34830,0,0,0,0,0,0,0,0,0,16793,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34848,0,0,0,0,0,0,0,0,0,16697,0,23088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34858,0,0,0,0,0,0,0,0,0,16142,0,24499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34861,0,0,0,0,0,0,0,0,0,16793,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34862,0,0,0,0,0,0,0,0,0,16793,0,23891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34875,0,0,0,0,0,0,0,0,0,16261,0,26458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34883,0,0,0,0,0,0,0,0,0,16680,0,26458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34884,0,0,0,0,0,0,0,0,0,16035,0,24569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34885,0,0,0,0,0,0,0,0,0,17063,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34886,0,0,0,0,0,0,0,0,0,16988,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34887,0,0,0,0,0,0,0,0,0,16985,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34888,0,0,0,0,0,0,0,0,0,16998,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34889,0,0,0,0,0,0,0,0,0,16998,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34937,0,0,0,0,0,0,0,0,0,16514,0,23425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34938,0,0,0,0,0,0,0,0,0,16516,0,23425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34940,0,0,0,0,0,0,0,0,0,16342,0,23984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34941,0,0,0,0,0,0,0,0,0,16518,0,23421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35009,0,0,0,0,0,0,0,0,0,15889,0,25939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35150,0,0,0,0,0,0,0,0,0,16803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35243,0,0,0,0,0,0,0,0,0,16141,0,22426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35248,0,0,0,0,0,0,0,0,0,16802,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35249,0,0,0,0,0,0,0,0,0,16801,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35251,0,0,0,0,0,0,0,0,0,16317,0,23929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35252,0,0,366,0,0,0,0,0,0,16459,0,23630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35254,0,0,367,0,0,0,0,0,0,16485,0,22459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35257,0,0,0,0,0,0,0,0,0,16223,0,24322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35260,0,0,0,0,0,0,0,0,0,17227,0,20567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35261,0,0,0,0,0,0,0,0,0,17228,0,20566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35311,105,0,0,0,0,0,0,0,0,16598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35357,0,0,0,0,0,0,0,0,0,17062,0,22371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35364,0,0,0,0,0,0,0,0,0,16801,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35417,0,0,0,0,0,0,0,0,0,17227,0,20567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35418,0,0,0,0,0,0,0,0,0,17228,0,20566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35460,0,0,373,0,0,0,0,0,0,16201,0,24365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35461,0,0,373,0,0,0,0,0,0,16485,0,24365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35462,0,0,367,0,0,0,0,0,0,16201,0,24365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35570,0,0,0,0,0,0,0,0,0,16260,0,26439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35578,0,0,373,0,0,0,0,0,0,16486,0,24365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35630,0,0,0,0,0,0,0,0,0,16337,0,23990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35712,0,0,0,0,0,0,0,0,0,16400,0,23889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35730,0,0,373,0,0,0,0,0,0,16485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35734,0,0,0,0,0,0,0,0,0,15825,0,26671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35814,105,0,0,0,0,0,0,0,0,16608,0,23215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35815,105,0,0,0,0,0,0,0,0,16608,0,23215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35863,0,0,373,0,0,0,0,0,0,16485,0,23557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36046,103,0,0,0,0,0,0,0,0,0,0,24577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36062,103,0,0,0,0,0,0,0,0,0,0,24579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36063,42,0,0,0,0,0,0,0,0,16997,0,22377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36082,103,0,0,0,0,0,0,0,0,0,0,24581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36083,103,0,0,0,0,0,0,0,0,0,0,24580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36372,106,0,0,0,0,0,0,0,0,16801,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36373,24,0,0,0,0,0,0,0,0,16801,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36374,130,0,0,0,0,0,0,0,0,16801,0,29596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36423,0,0,0,0,0,0,0,0,0,16553,0,23359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36472,0,0,0,0,0,0,0,0,0,16317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36473,0,0,0,0,0,0,0,0,0,16317,0,23931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv b/HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv new file mode 100644 index 00000000..45626999 --- /dev/null +++ b/HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv @@ -0,0 +1 @@ +ID,ItemVisual,ParticleColorID,ItemRangedDisplayInfoID,OverrideSwooshSoundKitID,SheatheTransformMatrixID,StateSpellVisualKitID,SheathedSpellVisualKitID,UnsheathedSpellVisualKitID,Flags,ModelResourcesID_0,ModelResourcesID_1,ModelMaterialResourcesID_0,ModelMaterialResourcesID_1,ModelType_0,ModelType_1,GeosetGroup_0,GeosetGroup_1,GeosetGroup_2,GeosetGroup_3,GeosetGroup_4,GeosetGroup_5,AttachmentGeosetGroup_0,AttachmentGeosetGroup_1,AttachmentGeosetGroup_2,AttachmentGeosetGroup_3,AttachmentGeosetGroup_4,AttachmentGeosetGroup_5,HelmetGeosetVis_0,HelmetGeosetVis_1 \ No newline at end of file diff --git a/HermesProxy/CSV/Hotfix/ItemSparse1.csv b/HermesProxy/CSV/Hotfix/ItemSparse1.csv index 4359ba6b..0079cb27 100644 --- a/HermesProxy/CSV/Hotfix/ItemSparse1.csv +++ b/HermesProxy/CSV/Hotfix/ItemSparse1.csv @@ -267,4 +267,4 @@ Id,AllowableRace,Description,Name4,Name3,Name2,Name1,DmgVariance,DurationInInven "23162","-1","The bottom of the crate is leaking. Leaking tears...","","","","Foror's Crate of Endless Resist Gear Storage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","30","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","60" "24282","-1","All the pages are blank.","","","","Rogue's Diary","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4562","18250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" "24418","-1","","","","","Monster - Dagger Badass Naxx","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" -"25818","-1","","","","","Monster - Shield, Legion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" \ No newline at end of file +"25818","-1","","","","","Monster - Shield, Legion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" \ No newline at end of file diff --git a/HermesProxy/CSV/Item1.csv b/HermesProxy/CSV/Item1.csv new file mode 100644 index 00000000..ecffbdb1 --- /dev/null +++ b/HermesProxy/CSV/Item1.csv @@ -0,0 +1,17853 @@ +Id,ClassId,SubclassId,Material,InventoryType,RequiredLevel,SheatheType,RandomProperty,ItemRandomSuffixGroupId,SoundOverrideSubclassId,ScalingStatDistributionId,IconFileDataId,ItemGroupSoundsId,ContentTuningId,MaxDurability,AmmoType,DamageType1,DamageType2,DamageType3,DamageType4,DamageType5,Resistances1,Resistances2,Resistances3,Resistances4,Resistances5,Resistances6,Resistances7,MinDamage1,MinDamage2,MinDamage3,MinDamage4,MinDamage5,MaxDamage1,MaxDamage2,MaxDamage3,MaxDamage4,MaxDamage5 +17,4,4,6,4,0,3,0,0,-1,0,132759,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +35,2,10,2,17,1,2,0,0,-1,0,135145,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +36,2,4,2,21,1,3,0,0,-1,0,133478,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +37,2,0,1,21,1,3,0,0,-1,0,132402,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +38,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +40,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +41,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +42,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +43,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +44,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +45,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +46,4,0,7,6,1,0,0,0,-1,0,132495,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +47,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +48,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +49,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +51,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +52,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +55,4,0,7,8,0,0,0,0,-1,0,132543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +56,4,1,7,20,1,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +57,4,1,7,20,1,0,0,0,-1,0,132665,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +58,4,0,7,6,1,0,0,0,-1,0,132492,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +59,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60,4,2,8,5,0,0,0,0,-1,0,132724,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +61,4,2,8,7,0,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +77,4,1,7,5,0,0,0,0,-1,0,135006,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +79,4,1,7,7,0,0,0,0,-1,0,134589,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +80,4,1,7,8,0,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +85,4,2,8,5,1,0,0,0,-1,0,135011,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +86,4,0,7,6,0,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +87,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +88,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +89,4,0,7,4,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +90,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +91,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +92,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +93,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +94,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +95,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +97,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +98,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +99,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +100,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +101,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +102,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +103,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +104,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +105,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +113,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +114,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +115,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +117,0,0,0,0,1,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +118,0,0,3,0,1,0,0,0,-1,0,134829,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +119,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +120,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +121,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +123,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +124,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +125,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +126,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +127,4,0,7,4,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +128,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +129,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +130,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +131,4,0,7,6,1,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +132,4,0,7,8,1,0,0,0,-1,0,132536,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +133,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +134,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +136,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +137,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +138,4,0,7,4,0,0,0,0,-1,0,132719,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +139,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +140,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +141,4,0,7,6,1,0,0,0,-1,0,132491,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +143,4,6,1,14,1,4,0,0,-1,0,134951,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +147,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +148,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +149,4,0,7,6,0,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +150,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +151,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +152,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +153,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +154,4,0,7,4,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +155,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +156,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +157,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +159,0,0,0,0,1,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +182,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +192,2,14,6,21,0,3,0,0,-1,0,133476,8,0,0,0,0,2,4,0,0,100,0,110,100,100,100,0,51,5,6,0,0,63,10,60,0,0 +193,4,1,7,5,1,0,0,0,-1,0,135022,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +194,4,1,7,7,1,0,0,0,-1,0,134592,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +195,4,1,7,8,1,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +200,4,1,7,5,17,0,0,0,-1,0,135006,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +201,4,1,7,7,17,0,0,0,-1,0,134592,7,0,45,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +202,4,1,7,8,17,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +203,4,1,7,10,17,0,0,0,-1,0,132955,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +209,4,2,8,7,1,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +210,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +236,4,2,8,5,17,0,0,0,-1,0,132725,7,0,75,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +237,4,2,8,7,17,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +238,4,2,8,8,17,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +239,4,2,8,10,17,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +285,4,3,5,5,17,0,0,0,-1,0,132631,10,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +286,4,3,5,7,17,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +287,4,3,5,8,17,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +414,0,0,0,0,5,0,0,0,-1,0,133995,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +422,0,0,0,0,15,0,0,0,-1,0,133949,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +527,12,0,2,0,0,0,0,0,-1,0,133280,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +537,15,0,2,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +555,15,0,7,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +556,15,0,2,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +647,2,8,1,17,52,1,0,0,-1,0,135317,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +710,4,1,7,9,0,0,0,0,-1,0,132610,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +711,4,1,7,10,1,0,0,0,-1,0,132961,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +714,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +718,4,3,5,10,17,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +719,4,1,7,10,0,0,0,0,-1,0,132940,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +720,4,2,8,10,23,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +723,7,0,8,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +724,0,0,0,0,5,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +725,12,0,8,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +727,2,7,1,13,5,3,5168,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +728,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +729,7,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +730,7,0,4,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +731,7,0,0,0,0,0,0,0,-1,0,135997,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +732,7,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +733,0,0,7,0,5,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +734,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +735,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +737,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +738,12,0,0,0,0,0,0,0,-1,0,134058,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +739,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +740,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +741,7,0,1,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +742,12,0,2,0,0,0,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +743,12,0,2,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +744,4,0,4,12,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +745,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +746,4,0,7,19,1,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +748,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +750,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +751,2,4,2,21,1,3,0,0,-1,0,133718,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +752,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +753,2,7,1,13,23,3,0,0,-1,0,135346,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +754,2,7,1,13,42,3,0,0,-1,0,135312,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +755,15,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +756,2,1,1,17,24,1,0,0,-1,0,134708,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +759,7,0,2,0,1,0,0,0,-1,0,133436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +761,0,0,8,0,1,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +763,4,2,8,9,7,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +765,7,0,2,0,0,0,0,0,-1,0,134190,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +766,2,4,2,21,2,3,0,0,-1,0,133482,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +767,2,10,2,17,3,2,0,0,-1,0,135145,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +768,2,0,1,21,4,3,0,0,-1,0,132392,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +769,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +770,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +771,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +772,12,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +773,12,0,0,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +774,7,0,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +776,2,15,1,13,26,3,0,0,-1,0,135638,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +777,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +778,2,0,1,21,2,1,0,0,-1,0,134708,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +779,15,0,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +780,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +781,2,4,2,21,4,3,0,0,-1,0,133046,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +782,12,0,7,0,0,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +783,7,0,8,0,0,0,0,0,-1,0,134369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +784,7,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +785,7,0,2,0,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +786,7,0,1,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +787,0,0,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +788,2,7,1,21,0,3,0,0,-1,0,135323,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +789,2,4,2,21,17,3,5197,0,-1,0,133045,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +790,2,0,1,21,18,3,5196,0,-1,0,132405,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +791,2,10,2,17,26,2,0,0,-1,0,135139,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,99,0,0,0,0 +792,4,1,7,8,5,0,0,0,-1,0,132579,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +793,4,1,7,10,5,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +794,4,1,7,7,5,0,0,0,-1,0,134591,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +795,4,1,7,5,5,0,0,0,-1,0,135014,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +796,4,2,8,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +797,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +798,4,2,8,7,5,0,0,0,-1,0,134589,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +799,4,2,8,5,5,0,0,0,-1,0,132760,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +804,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +805,1,0,8,18,0,0,0,0,-1,0,133638,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +806,1,0,0,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +807,7,0,1,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +808,7,0,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +809,2,7,1,21,45,3,0,0,-1,0,135329,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,130,0,0,0,0 +810,2,4,2,21,49,3,0,0,-1,0,133048,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +811,2,0,1,21,52,3,0,0,-1,0,132398,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +812,2,10,2,17,49,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,0,0,0,15,0,0,0,127,0,0,0,0,191,0,0,0,0 +813,15,0,0,0,0,0,0,0,-1,0,134063,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +814,7,0,0,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +816,2,15,1,13,6,3,0,0,-1,0,135637,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +818,7,0,0,0,0,0,0,0,-1,0,134118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +820,2,15,1,13,12,3,0,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +821,4,2,8,5,8,0,0,0,-1,0,135011,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +823,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +826,2,0,1,21,10,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +827,2,4,2,21,12,3,0,0,-1,0,133476,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +828,1,0,8,18,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +829,12,0,8,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +832,4,3,5,6,10,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +833,4,0,4,12,51,0,0,0,-1,0,134580,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +835,0,0,8,0,2,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +836,0,0,8,0,5,3,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +837,4,1,7,5,12,0,0,0,-1,0,135010,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +838,4,1,7,7,12,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +839,4,1,7,10,12,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +840,4,1,7,8,12,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +841,12,0,0,0,0,0,0,0,-1,0,134377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +842,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +843,4,2,8,8,12,0,0,0,-1,0,132592,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +844,4,2,8,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +845,4,2,8,7,12,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +846,4,2,8,5,12,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +847,4,3,5,5,12,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +848,4,3,5,7,12,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +849,4,3,5,8,12,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +850,4,3,5,10,12,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +851,2,7,1,13,10,3,0,0,-1,0,135346,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +852,2,4,2,13,9,3,0,0,-1,0,133490,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +853,2,0,1,13,11,3,0,0,-1,0,132402,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +854,2,10,2,17,11,2,0,0,-1,0,135154,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +855,1,0,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +856,1,0,8,18,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +857,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +858,0,0,3,0,3,0,0,0,-1,0,134830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +859,4,0,7,4,0,0,0,0,-1,0,135006,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +860,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +862,4,0,4,11,45,0,3253,0,-1,0,132523,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +863,2,0,1,13,32,3,5241,0,-1,0,132399,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +864,2,7,1,13,33,3,5240,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +865,2,4,2,13,26,3,5224,0,-1,0,133478,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +866,2,10,2,17,37,2,5257,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +867,4,2,8,10,37,0,0,0,-1,0,132940,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +868,2,4,2,21,38,3,0,0,-1,0,133488,8,0,105,0,0,0,0,0,0,100,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +869,2,7,1,21,36,3,0,0,-1,0,135326,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +870,2,1,1,17,35,1,0,0,-1,0,132393,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,141,0,0,0,0 +871,2,0,1,13,42,3,0,0,-1,0,132408,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +872,2,1,1,17,16,1,0,0,-1,0,135419,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +873,2,10,2,17,35,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,180,0,0,0,0 +875,15,0,0,0,1,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +876,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +877,12,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +878,7,0,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +880,2,10,2,17,18,2,0,0,-1,0,135162,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +883,12,0,0,0,0,0,0,0,-1,0,133565,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +884,12,0,0,0,0,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +885,2,0,1,21,19,3,0,0,-1,0,132405,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +886,2,7,1,21,21,3,0,0,-1,0,135327,8,0,70,0,0,0,0,0,0,0,0,0,0,0,4,0,16,0,0,0,0,30,0,0,0,0 +887,15,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +888,4,2,8,10,22,0,0,0,-1,0,132947,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +889,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +890,2,10,2,17,19,2,0,0,-1,0,135141,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +892,4,1,7,10,17,0,0,0,-1,0,132938,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +893,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +894,15,0,0,0,0,0,0,0,-1,0,134297,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +895,12,0,0,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +896,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +897,4,2,8,9,24,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +898,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +899,2,15,1,13,14,3,0,0,-1,0,134298,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +900,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +901,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +902,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +903,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +905,4,1,7,3,1,0,0,0,-1,0,135039,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +906,4,1,7,3,1,0,0,0,-1,0,135039,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +907,4,3,7,3,1,0,0,0,-1,0,135033,10,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +908,4,1,7,3,1,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +909,4,1,7,3,1,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +910,12,0,0,0,0,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +911,2,5,2,17,20,1,0,0,-1,0,133476,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +913,2,8,1,17,24,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +914,4,3,5,5,25,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +915,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +916,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +917,4,2,8,5,13,0,0,0,-1,0,132715,7,0,65,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +918,1,0,8,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +920,2,4,2,21,20,3,0,0,-1,0,133486,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +921,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +922,2,8,1,17,21,1,0,0,-1,0,135280,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,60,0,0,0,0 +923,2,7,1,21,21,3,0,0,-1,0,135324,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +924,2,5,2,17,21,1,0,0,-1,0,133044,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,56,0,0,0,0 +925,2,4,2,21,20,3,0,0,-1,0,133476,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +926,2,1,1,17,20,1,0,0,-1,0,135423,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +927,2,0,1,13,19,3,0,0,-1,0,132415,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +928,2,10,2,17,20,2,0,0,-1,0,135157,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +929,0,0,3,0,12,0,0,0,-1,0,134831,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +930,1,0,7,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +931,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +932,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +933,1,0,8,18,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +934,2,0,1,13,32,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +935,2,7,1,13,15,3,0,0,-1,0,135327,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +936,2,4,2,13,33,3,0,0,-1,0,133729,8,0,90,0,0,5,0,0,0,0,0,0,0,0,10,0,45,1,0,0,0,84,10,0,0,0 +937,2,10,2,17,33,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +938,12,0,0,0,0,0,0,0,-1,0,133680,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +939,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +940,4,1,7,20,42,0,0,0,-1,0,132667,7,0,100,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +941,4,0,0,12,35,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +942,4,0,3,11,47,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +943,2,10,2,17,43,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,260,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +944,2,10,2,17,56,2,0,0,-1,0,135144,13,0,120,0,0,0,0,0,0,0,0,20,0,20,0,0,147,0,0,0,0,221,0,0,0,0 +945,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +948,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +951,0,0,0,0,1,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +954,0,0,7,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +955,0,0,7,0,5,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +956,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +957,12,0,0,0,0,0,0,0,-1,0,133751,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +958,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +960,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +961,0,0,7,0,0,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +962,12,0,0,0,0,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +964,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +965,1,0,7,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +966,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +967,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +968,9,0,0,0,6,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +973,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +974,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +975,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +976,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +980,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +981,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +983,4,1,7,6,0,0,0,0,-1,0,133694,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +985,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +986,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +989,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +992,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +994,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +996,4,0,0,11,1,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +997,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1002,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1004,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1006,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1008,2,7,1,21,0,3,0,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1009,2,4,2,21,0,3,0,0,-1,0,133045,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +1010,2,10,2,17,0,2,0,0,-1,0,135154,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +1011,2,0,1,21,0,3,0,0,-1,0,132395,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +1013,12,0,1,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1014,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1015,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1016,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1017,0,0,0,0,15,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1018,2,7,1,22,1,3,0,0,-1,0,135274,8,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1019,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1020,4,2,8,1,1,0,0,0,-1,0,133072,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1021,4,2,8,1,1,0,0,0,-1,0,133072,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1022,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1023,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1024,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1025,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1026,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1027,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1028,4,3,5,1,15,0,0,0,-1,0,133070,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1029,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1030,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1031,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1032,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1033,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1034,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1035,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1036,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1037,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1038,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1041,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1042,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1043,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1044,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1046,2,3,1,26,1,1,0,0,-1,0,134537,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0 +1047,2,3,1,26,1,1,0,0,-1,0,134537,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +1048,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1049,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1052,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1053,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1057,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1058,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1061,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1063,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1072,0,0,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1074,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1075,12,0,0,0,0,0,0,0,-1,0,133437,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1076,4,0,5,11,20,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1077,4,0,5,11,21,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1078,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1080,7,0,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1081,7,0,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1082,0,0,0,0,10,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1083,12,0,0,0,0,0,0,0,-1,0,133277,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1084,9,0,0,0,8,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1085,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1086,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1087,9,0,0,0,4,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1088,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1089,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1090,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1091,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1092,9,0,0,0,4,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1093,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1095,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1096,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1099,9,0,0,0,21,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1100,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1101,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1102,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1105,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1108,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1109,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1111,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1112,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1113,0,0,0,0,5,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1114,0,0,0,0,15,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1115,12,0,0,0,0,0,0,0,-1,0,133622,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1116,4,0,0,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1117,2,4,2,13,1,2,0,0,-1,0,133942,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +1119,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1121,4,2,8,8,19,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1122,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1123,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1124,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1125,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1127,0,0,0,0,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1128,0,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1129,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1130,12,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1131,4,0,1,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1132,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1133,15,0,0,0,40,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1134,15,0,0,0,40,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1136,9,0,0,0,18,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1138,9,0,0,0,4,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1139,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1141,9,0,0,0,6,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1144,9,0,0,0,34,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1146,9,0,0,0,12,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1149,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1150,9,0,0,0,6,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1151,9,0,0,0,14,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1154,4,3,5,6,0,0,0,0,-1,0,132493,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1155,2,10,2,17,24,2,0,0,-1,0,135143,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +1156,4,0,1,11,17,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1157,2,0,1,21,1,3,0,0,-1,0,132392,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0 +1158,2,4,2,21,0,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1159,2,10,2,17,0,2,0,0,-1,0,135145,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +1161,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1162,4,1,7,1,5,0,0,0,-1,0,134955,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1163,4,1,7,1,5,0,0,0,-1,0,134442,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1164,9,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1165,0,0,0,0,1,0,0,0,-1,0,133943,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1166,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1167,4,6,1,14,5,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1168,4,6,1,14,54,4,0,0,-1,0,134947,9,0,120,0,0,0,0,0,0,2256,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +1169,4,6,1,14,41,4,0,0,-1,0,136162,9,0,120,0,0,0,0,0,0,1795,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +1170,4,2,8,5,0,0,0,0,-1,0,132725,7,0,50,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1171,4,1,7,20,0,0,0,0,-1,0,132665,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1172,4,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1173,4,2,8,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1174,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1175,15,0,1,0,0,0,0,0,-1,0,134566,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1176,0,0,0,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1177,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1178,0,0,0,0,0,0,0,0,-1,0,132383,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1179,0,0,7,0,5,0,0,0,-1,0,132815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1180,0,0,7,0,5,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1181,0,0,7,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1182,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1183,4,1,7,9,0,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1184,4,0,1,12,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1186,4,0,7,12,35,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1187,0,0,2,0,20,0,0,0,-1,0,133075,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1189,4,0,1,11,15,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1190,4,1,7,16,15,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1191,0,0,0,0,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1192,4,3,5,1,15,0,0,0,-1,0,133070,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1193,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1194,2,8,1,17,1,1,0,0,-1,0,135276,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +1195,2,5,2,17,3,1,0,0,-1,0,134435,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +1196,2,1,1,17,9,1,0,0,-1,0,132395,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +1197,2,5,2,17,10,1,0,0,-1,0,133477,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +1198,2,8,1,17,10,1,0,0,-1,0,135350,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +1199,0,0,3,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1200,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1201,4,6,1,14,5,4,0,0,-1,0,134950,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1202,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1203,4,6,1,14,49,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,1867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1204,4,6,1,14,36,4,0,0,-1,0,134952,9,0,120,0,0,0,0,0,0,1308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1205,0,0,7,0,15,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1206,7,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1207,2,4,2,13,34,3,5242,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +1208,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1210,7,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1211,4,2,8,5,10,0,0,0,-1,0,132719,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1212,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1213,4,2,8,9,9,0,0,0,-1,0,132603,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1214,2,4,2,21,12,3,0,0,-1,0,133046,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +1215,4,2,8,6,17,0,0,0,-1,0,132498,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1216,4,1,7,9,28,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0 +1217,12,0,0,0,0,0,0,0,-1,0,134400,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1218,2,5,2,17,16,1,0,0,-1,0,133489,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +1219,2,7,1,21,11,3,0,0,-1,0,135314,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +1220,2,1,1,17,15,1,0,0,-1,0,132405,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +1221,12,0,8,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1222,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1224,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1228,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1229,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1231,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1232,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1238,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1239,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1243,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1244,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1245,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1246,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1250,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1251,0,0,0,0,0,0,0,0,-1,0,133685,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1252,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1253,13,1,1,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1254,4,0,1,23,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1255,15,0,1,0,18,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1256,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1257,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1258,4,0,1,12,35,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1259,2,0,1,21,0,3,2191,0,-1,0,132392,8,0,20,0,0,2,3,4,5,0,0,0,0,0,0,0,1,3000,2000,1000,4000,1,3000,2000,1000,4000 +1260,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1261,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1262,0,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1263,2,1,1,17,55,1,0,0,-1,0,135580,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +1264,2,5,2,17,0,1,0,0,-1,0,133482,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +1265,2,7,1,13,34,3,0,0,-1,0,135302,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +1266,2,8,1,17,0,1,0,0,-1,0,135276,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1267,0,0,0,0,1,0,0,0,-1,0,134514,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1268,0,0,0,0,1,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1269,0,0,0,0,0,0,0,0,-1,0,133622,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1270,4,1,7,16,0,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1272,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1273,4,3,5,5,0,0,0,0,-1,0,132742,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1274,7,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1275,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1276,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1279,4,2,8,1,0,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1280,4,2,8,1,33,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1281,11,2,0,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1282,4,3,5,1,0,0,0,0,-1,0,133070,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1283,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1284,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1287,2,15,1,13,10,3,0,0,-1,0,134298,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +1288,7,0,3,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1292,2,0,1,13,20,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,32,0,0,0,0 +1293,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1294,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1296,2,4,2,21,16,3,0,0,-1,0,133481,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +1297,4,1,7,20,26,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1298,4,1,7,9,13,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1299,4,1,7,6,17,0,0,0,-1,0,132518,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1300,2,10,2,17,15,2,0,0,-1,0,135469,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,54,0,0,0,0 +1302,4,2,8,10,0,0,0,0,-1,0,132951,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1303,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1304,4,1,7,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1306,4,2,8,9,0,0,0,0,-1,0,132603,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1307,12,0,0,0,7,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1309,12,0,0,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1310,4,2,8,7,0,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1311,2,1,1,17,0,1,0,0,-1,0,132402,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,29,0,0,0,0 +1312,2,4,2,21,0,3,0,0,-1,0,133057,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +1313,2,15,1,13,0,3,0,0,-1,0,135128,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +1314,4,2,8,10,15,0,0,0,-1,0,132947,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1315,4,0,0,2,46,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1317,2,10,2,17,0,2,0,0,-1,0,135153,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,67,0,0,0,0 +1318,2,1,1,17,18,1,0,0,-1,0,135424,9,0,80,0,0,5,0,0,0,0,0,0,0,0,0,0,52,1,0,0,0,78,5,0,0,0 +1319,4,0,4,11,0,0,0,0,-1,0,132520,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1321,0,0,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1322,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1323,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1324,12,0,0,21,0,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1325,12,0,0,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1326,0,0,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1327,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1328,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1332,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1334,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1335,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1339,9,0,0,0,8,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1341,9,0,0,0,4,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1349,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1350,4,0,0,12,0,0,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1351,4,1,7,9,23,0,0,0,-1,0,132615,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1352,12,0,0,0,12,0,0,0,-1,0,133728,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1353,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1354,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1355,4,1,7,16,10,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1356,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1357,12,0,0,0,10,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1358,12,0,0,0,0,0,0,0,-1,0,134251,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1359,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1360,4,3,5,10,0,0,0,0,-1,0,132939,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1361,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1362,12,0,0,0,0,0,0,0,-1,0,134252,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1363,4,1,7,1,0,0,0,0,-1,0,133148,7,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1364,4,2,8,5,1,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1366,4,2,8,7,1,0,0,0,-1,0,134586,7,0,30,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1367,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1368,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1369,4,2,8,6,1,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1370,4,2,8,9,1,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1371,4,2,8,3,1,0,0,0,-1,0,135039,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1372,4,1,7,16,1,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1374,4,1,7,8,1,0,0,0,-1,0,132543,7,0,18,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1376,4,1,7,16,1,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1377,4,1,7,10,1,0,0,0,-1,0,132952,7,0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1378,4,1,7,7,1,0,0,0,-1,0,134589,7,0,25,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1379,4,1,7,3,1,0,0,0,-1,0,135037,7,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1380,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1381,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1382,2,4,2,21,0,3,0,0,-1,0,133482,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +1383,2,0,1,21,0,3,0,0,-1,0,135421,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +1384,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +1385,2,5,2,17,1,1,0,0,-1,0,133046,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +1386,2,1,1,17,0,1,0,0,-1,0,132392,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +1387,2,8,1,17,14,1,0,0,-1,0,135277,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,54,0,0,0,0 +1388,2,10,2,17,1,2,0,0,-1,0,135159,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +1389,2,4,2,21,2,3,0,0,-1,0,133046,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +1391,2,10,2,17,13,2,0,0,-1,0,135473,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,43,0,0,0,0 +1392,4,1,7,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1394,2,4,2,21,10,3,0,0,-1,0,133485,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +1395,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1396,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1397,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1398,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1399,0,0,0,0,1,0,0,0,-1,0,133751,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1400,0,0,0,0,2,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1401,0,0,0,0,4,0,0,0,-1,0,134190,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1402,0,0,0,0,2,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1403,4,0,0,12,35,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1404,4,0,0,12,36,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1405,2,10,2,17,12,2,0,0,-1,0,135143,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +1406,2,6,1,17,20,2,0,0,-1,0,135129,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +1407,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1408,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1409,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1410,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1411,2,10,2,17,3,2,0,0,-1,0,135139,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +1412,2,8,1,17,2,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,12,0,0,0,0 +1413,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1414,2,5,2,17,4,1,0,0,-1,0,133046,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,15,0,0,0,0 +1415,2,4,2,21,4,3,0,0,-1,0,133052,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1416,2,0,1,21,4,3,0,0,-1,0,135421,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +1417,2,1,1,17,3,1,0,0,-1,0,135424,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +1418,4,2,8,6,2,0,0,0,-1,0,132513,7,0,18,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1419,4,2,8,8,3,0,0,0,-1,0,132540,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1420,4,2,8,9,4,0,0,0,-1,0,132604,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1421,4,1,7,16,5,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1422,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1423,4,2,8,7,2,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1424,4,2,8,3,3,0,0,0,-1,0,135039,7,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1425,4,2,8,5,4,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1427,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1429,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1430,4,1,7,10,2,0,0,0,-1,0,132952,7,0,14,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1431,4,1,7,7,3,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1432,4,1,7,3,4,0,0,0,-1,0,135037,7,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1433,4,1,7,5,2,0,0,0,-1,0,135010,7,0,40,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1434,0,0,2,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1435,4,2,8,3,0,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1436,4,2,8,7,0,0,0,0,-1,0,134585,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1438,4,6,1,14,4,4,0,0,-1,0,134949,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1440,2,4,2,21,14,3,0,0,-1,0,133048,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +1443,4,0,0,2,55,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1444,4,0,0,12,35,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1445,4,3,5,3,18,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1446,4,3,5,8,14,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1447,4,0,1,11,41,0,0,0,-1,0,132516,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1448,4,3,5,10,15,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1449,4,0,5,11,0,1,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1450,0,0,0,0,15,1,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1451,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1453,12,0,3,0,0,0,0,0,-1,0,133800,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1454,2,0,1,13,22,3,0,0,-1,0,132415,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +1455,2,1,1,17,19,1,0,0,-1,0,135562,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +1457,2,4,2,21,17,3,0,0,-1,0,133476,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1458,2,5,2,17,18,1,0,0,-1,0,133053,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +1459,2,0,1,21,19,3,0,0,-1,0,135421,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +1460,2,8,1,17,15,1,0,0,-1,0,135356,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +1461,2,1,1,17,20,1,0,0,-1,0,135424,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +1462,4,0,1,11,20,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +1464,15,0,8,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1465,2,15,1,13,33,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +1467,12,0,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1468,7,0,0,0,0,0,0,0,-1,0,134304,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1469,2,7,1,21,14,3,0,0,-1,0,135325,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +1470,1,0,8,18,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1472,4,0,0,12,35,0,0,0,-1,0,134431,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1473,2,10,2,17,14,2,0,0,-1,0,135145,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +1475,7,0,3,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1476,15,0,0,0,0,1,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1477,0,0,7,0,25,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1478,0,0,7,0,15,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1479,4,1,7,10,0,0,0,0,-1,0,132940,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1480,2,4,2,21,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +1481,2,0,1,13,20,3,0,0,-1,0,132404,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +1482,2,7,1,21,19,3,0,0,-1,0,135311,8,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,29,4,0,0,0,55,8,0,0,0 +1483,2,4,2,13,16,3,0,0,-1,0,133045,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +1484,2,10,2,17,17,2,0,0,-1,0,135466,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +1485,2,6,1,17,20,1,0,0,-1,0,135127,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,45,0,0,0,0 +1486,4,1,7,5,19,0,0,0,-1,0,135006,7,0,75,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1487,0,0,0,0,25,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1488,4,3,5,5,26,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1489,4,2,8,5,20,0,0,0,-1,0,132723,7,0,95,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1490,4,0,3,12,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1491,4,0,1,11,20,1,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1492,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1493,2,7,1,21,22,3,0,0,-1,0,135325,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,54,0,0,0,0 +1495,4,1,7,8,8,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1497,4,1,7,16,9,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1498,4,1,7,10,10,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1499,4,1,7,7,6,0,0,0,-1,0,134591,7,0,35,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1500,4,1,7,3,7,0,0,0,-1,0,135037,7,0,30,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1501,4,1,7,5,8,0,0,0,-1,0,135020,7,0,50,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1502,4,2,8,6,9,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1503,4,2,8,8,10,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1504,4,2,8,9,6,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1505,4,1,7,16,7,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1506,4,2,8,10,8,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1507,4,2,8,7,9,0,0,0,-1,0,134588,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1508,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1509,4,2,8,5,6,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1510,2,4,2,21,7,3,0,0,-1,0,133052,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1511,2,7,1,21,8,3,0,0,-1,0,135274,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1512,2,1,1,17,7,1,0,0,-1,0,135423,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +1513,2,8,1,17,9,1,0,0,-1,0,135276,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1514,2,5,2,17,9,1,0,0,-1,0,133053,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +1515,2,10,2,17,7,2,0,0,-1,0,135146,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,20,0,0,0,0 +1516,2,0,1,21,9,3,0,0,-1,0,135419,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1518,12,0,3,0,0,0,0,0,-1,0,133800,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1519,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1520,15,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1521,2,1,1,17,39,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +1522,2,6,1,17,31,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,95,0,0,0,0 +1523,2,5,2,17,31,1,0,0,-1,0,133489,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,107,0,0,0,0 +1524,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1527,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1528,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1529,7,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1532,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1533,0,0,0,0,27,0,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1534,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1535,4,2,8,5,33,0,0,0,-1,0,132760,7,0,85,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1536,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1537,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1539,2,10,2,17,14,2,0,0,-1,0,135154,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,42,0,0,0,0 +1544,4,0,0,12,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1545,4,1,7,3,0,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1547,4,6,1,14,0,4,0,0,-1,0,135940,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1554,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1557,4,6,1,14,0,4,0,0,-1,0,134955,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1559,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1560,4,1,7,8,16,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1561,4,1,7,20,0,0,0,0,-1,0,132654,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1566,2,8,1,17,0,1,0,0,-1,0,135326,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,39,0,0,0,0 +1567,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1568,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1571,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1574,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1588,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1589,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1591,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1596,12,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1597,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1598,12,0,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1599,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1602,2,0,1,13,34,3,0,0,-1,0,132397,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +1603,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1604,2,8,1,17,40,1,0,0,-1,0,135323,9,0,85,0,0,0,0,0,0,0,0,7,7,7,7,7,100,0,0,0,0,150,0,0,0,0 +1607,2,10,2,17,49,2,0,0,-1,0,136163,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,213,0,0,0,0 +1608,2,4,2,13,42,3,5269,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +1612,0,0,0,0,28,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1613,2,10,2,17,39,2,5266,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +1619,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1622,4,0,7,12,37,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1623,1,0,7,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1624,4,3,5,1,38,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1625,2,8,1,17,36,1,5254,0,-1,0,135356,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +1630,15,0,0,0,0,0,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1637,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1638,7,0,0,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1639,2,1,1,17,44,1,5282,0,-1,0,132395,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,128,0,0,0,0 +1640,2,1,1,17,37,1,5255,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +1641,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1645,0,0,7,0,35,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1648,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1649,0,0,0,0,30,0,0,0,-1,0,133951,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1651,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1652,1,0,0,18,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1654,7,0,0,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1655,9,0,0,0,29,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1656,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1657,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1658,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1659,4,1,7,10,35,0,0,0,-1,0,132938,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1663,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1664,2,10,2,17,36,2,0,0,-1,0,135165,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,116,0,0,0,0 +1672,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1676,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1677,4,3,5,5,41,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1678,4,3,5,8,32,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1679,2,5,2,17,31,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +1680,2,1,1,17,39,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,117,0,0,0,0 +1681,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1684,4,2,8,1,39,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1685,1,0,7,18,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1686,15,0,8,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1687,15,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1688,15,0,0,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1689,7,0,8,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1690,15,0,8,0,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1691,15,0,0,0,0,0,0,0,-1,0,134296,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1692,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1693,7,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1694,7,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1695,7,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1696,15,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1697,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1698,12,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1699,12,0,0,0,0,0,0,0,-1,0,134413,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1700,0,0,0,2,33,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1701,15,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1702,15,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1703,0,0,0,0,25,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1704,0,0,0,0,29,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1705,7,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1706,15,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1707,0,0,0,0,25,0,0,0,-1,0,133994,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1708,0,0,3,0,25,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1710,0,0,0,0,21,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1711,0,0,7,0,20,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1712,0,0,7,0,15,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1713,4,0,1,12,40,0,0,0,-1,0,135943,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1714,4,0,3,2,38,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1715,4,3,5,5,39,0,0,0,-1,0,132631,10,0,120,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1716,4,1,7,20,35,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1717,4,3,5,5,25,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1718,4,2,8,7,38,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1719,2,0,1,21,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1720,2,10,2,17,41,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,165,0,0,0,0 +1721,2,4,2,21,49,3,0,0,-1,0,133046,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +1722,2,5,2,17,37,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,10,0,0,0,95,0,0,0,0,143,0,0,0,0 +1724,1,0,8,18,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1725,1,0,7,18,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1726,2,6,1,17,31,2,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +1727,2,7,1,21,23,3,0,0,-1,0,135327,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +1728,2,7,1,21,60,3,0,0,-1,0,135323,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,178,0,0,0,0 +1729,1,0,7,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1730,4,3,5,6,7,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1731,4,3,5,8,8,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1732,4,3,5,9,9,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1733,4,1,7,16,10,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1734,4,3,5,10,6,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1735,4,3,5,7,7,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1736,4,3,5,3,8,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1737,4,3,5,5,9,0,0,0,-1,0,132624,10,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1738,4,3,5,6,14,0,0,0,-1,0,132495,10,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1739,4,3,5,8,15,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1740,4,3,5,9,11,0,0,0,-1,0,132602,10,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1741,4,1,7,16,12,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1742,4,3,5,10,13,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1743,4,3,5,7,14,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1744,4,3,5,3,15,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1745,4,3,5,5,11,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1746,4,3,5,6,20,0,0,0,-1,0,132495,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1747,4,3,5,8,16,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1748,4,3,5,9,17,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1749,4,1,7,16,18,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1750,4,3,5,10,19,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1751,4,3,5,7,20,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1752,4,3,5,3,16,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1753,4,3,5,5,17,0,0,0,-1,0,132624,10,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1754,4,3,5,6,21,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1755,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1756,4,3,5,9,23,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1757,4,1,7,16,24,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1758,4,3,5,10,25,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1759,4,3,5,7,21,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1760,4,3,5,3,22,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1761,4,3,5,5,23,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1764,4,1,7,8,12,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1766,4,1,7,16,13,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1767,4,1,7,10,14,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1768,4,1,7,7,15,0,0,0,-1,0,134589,7,0,45,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1769,4,1,7,3,15,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1770,4,1,7,5,12,0,0,0,-1,0,135025,7,0,55,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1772,4,1,7,8,18,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1774,4,1,7,16,19,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1775,4,1,7,10,20,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1776,4,1,7,7,16,0,0,0,-1,0,134591,7,0,45,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1777,4,1,7,3,17,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1778,4,1,7,5,18,0,0,0,-1,0,135023,7,0,65,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1780,4,1,7,8,24,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1782,4,1,7,16,25,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1783,4,1,7,10,21,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1784,4,1,7,7,22,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1785,4,1,7,3,23,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1786,4,1,7,5,24,0,0,0,-1,0,135031,7,0,70,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1787,4,2,8,6,13,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1788,4,2,8,8,14,0,0,0,-1,0,132592,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1789,4,2,8,9,15,0,0,0,-1,0,132607,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1790,4,1,7,16,11,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1791,4,2,8,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1792,4,2,8,7,13,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1793,4,2,8,3,15,0,0,0,-1,0,135037,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1794,4,2,8,5,15,0,0,0,-1,0,132760,7,0,70,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1795,4,2,8,6,19,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1796,4,2,8,8,20,0,0,0,-1,0,132540,7,0,40,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1797,4,2,8,9,16,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1798,4,1,7,16,17,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1799,4,2,8,10,18,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1800,4,2,8,7,19,0,0,0,-1,0,134589,7,0,60,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1801,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1802,4,2,8,5,16,0,0,0,-1,0,132724,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1803,4,2,8,6,25,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1804,4,2,8,8,21,0,0,0,-1,0,132543,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1805,4,2,8,9,22,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1806,4,1,7,16,23,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1807,4,2,8,10,24,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1808,4,2,8,7,25,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1809,4,2,8,3,21,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1810,4,2,8,5,22,0,0,0,-1,0,132725,7,0,80,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1811,2,8,1,17,12,1,0,0,-1,0,135276,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1812,2,1,1,17,12,1,0,0,-1,0,135423,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1813,2,10,2,17,13,2,0,0,-1,0,135145,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,27,0,0,0,0 +1814,2,5,2,17,14,1,0,0,-1,0,133053,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1815,2,4,2,21,12,3,0,0,-1,0,133478,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +1816,2,0,1,21,14,3,0,0,-1,0,135421,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +1817,2,7,1,21,14,3,0,0,-1,0,135274,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +1818,2,8,1,17,19,1,0,0,-1,0,135276,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +1819,2,0,1,21,17,3,0,0,-1,0,134708,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1820,2,5,2,17,17,1,0,0,-1,0,133052,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +1821,2,7,1,21,19,3,0,0,-1,0,135274,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +1822,2,10,2,17,18,2,0,0,-1,0,135145,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +1823,2,4,2,21,17,3,0,0,-1,0,133485,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1824,2,1,1,17,18,1,0,0,-1,0,132409,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1825,2,4,2,21,23,3,0,0,-1,0,133046,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1826,2,5,2,17,22,1,0,0,-1,0,133046,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +1827,2,0,1,21,22,3,0,0,-1,0,132417,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +1828,2,1,1,17,22,1,0,0,-1,0,132414,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +1829,2,7,1,21,24,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1830,2,8,1,17,23,1,0,0,-1,0,135276,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +1831,2,10,2,17,23,2,0,0,-1,0,135145,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,51,0,0,0,0 +1832,4,1,7,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1835,4,2,8,6,1,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1836,4,2,8,9,1,0,0,0,-1,0,132603,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1839,4,2,8,6,5,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1840,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1843,4,2,8,6,12,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1844,4,2,8,9,12,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1845,4,3,5,6,12,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1846,4,3,5,9,12,0,0,0,-1,0,132606,10,0,25,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1849,4,2,8,6,17,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1850,4,2,8,9,17,0,0,0,-1,0,132603,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1851,0,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1852,4,3,5,9,17,0,0,0,-1,0,132606,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1853,4,3,5,6,17,0,0,0,-1,0,132493,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1854,4,0,4,12,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1875,12,0,0,0,0,0,0,0,-1,0,133278,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1877,9,0,0,0,16,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1878,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1880,9,0,0,0,24,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1882,9,0,0,0,16,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1886,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1893,2,1,1,17,0,1,0,0,-1,0,134709,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +1894,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1895,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1896,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1897,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1899,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1900,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1901,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1902,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1903,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1904,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1905,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1906,2,4,2,13,1,7,0,0,-1,0,135805,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1907,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1908,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1909,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1910,2,0,1,13,1,3,0,0,-1,0,134707,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1911,2,4,2,13,1,7,0,0,-1,0,134520,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1912,4,0,2,12,35,0,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1913,2,4,2,21,5,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +1914,4,0,0,12,35,0,0,0,-1,0,133038,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1915,15,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1917,2,15,1,13,5,3,0,0,-1,0,135651,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +1918,13,1,0,0,2,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1922,12,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1923,12,0,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1924,12,0,2,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1925,2,7,1,21,11,3,0,0,-1,0,135340,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +1926,2,4,2,21,10,3,0,0,-1,0,133481,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,22,0,0,0,0 +1927,2,0,1,21,10,3,0,0,-1,0,132402,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +1928,2,10,2,17,11,2,0,0,-1,0,135155,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +1929,4,1,7,7,13,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1930,4,1,7,16,13,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1931,12,0,0,0,0,0,0,0,-1,0,134297,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1933,2,10,2,17,10,2,0,0,-1,0,135150,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +1934,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1935,2,15,1,13,19,3,0,0,-1,0,135660,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +1936,2,15,1,13,13,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +1937,2,7,1,13,16,3,0,0,-1,0,135325,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +1938,2,4,2,21,17,3,0,0,-1,0,133052,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +1939,12,0,0,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1940,12,0,8,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1941,12,0,2,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1942,12,0,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1943,4,3,5,7,14,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1944,4,2,8,10,13,0,0,0,-1,0,132938,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1945,4,2,8,10,13,0,0,0,-1,0,132955,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1946,12,0,0,0,0,0,0,0,-1,0,134576,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1948,2,10,2,17,11,1,0,0,-1,0,133040,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,29,0,0,0,0 +1950,7,0,4,0,0,0,0,0,-1,0,133217,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1951,2,7,1,13,14,3,0,0,-1,0,135325,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +1955,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1956,12,0,0,0,0,0,0,0,-1,0,133437,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1957,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1958,2,4,2,21,12,3,0,0,-1,0,133718,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +1959,2,1,1,17,12,1,0,0,-1,0,134707,9,0,60,0,0,4,0,0,0,0,0,0,0,0,0,0,27,1,0,0,0,41,5,0,0,0 +1960,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1961,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1962,12,0,0,0,15,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1963,7,0,0,0,0,0,0,0,-1,0,133724,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1965,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1968,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1969,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1970,0,0,2,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1971,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1972,12,0,0,0,8,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1973,4,0,3,12,54,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1974,4,1,7,9,17,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1975,2,8,1,17,23,1,0,0,-1,0,135326,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +1976,2,5,2,17,24,1,0,0,-1,0,133053,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +1977,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1978,4,2,8,10,22,0,0,0,-1,0,132938,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1979,4,6,1,14,45,4,0,0,-1,0,134948,9,0,120,0,0,0,0,0,0,1937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1980,4,0,1,11,38,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1981,4,3,5,5,39,0,0,0,-1,0,132741,10,0,140,0,0,0,0,0,0,294,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +1982,2,8,1,17,39,1,0,0,-1,0,135272,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +1983,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1984,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1985,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1986,2,8,1,17,36,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +1987,12,0,1,0,0,1,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1988,4,3,5,10,33,0,0,0,-1,0,132956,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1990,2,5,2,17,31,1,5238,0,-1,0,133481,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +1991,2,5,2,17,29,1,0,0,-1,0,134436,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +1992,4,0,0,23,33,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0 +1993,4,0,1,11,31,0,0,0,-1,0,132524,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1994,2,0,1,13,41,3,5268,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +1995,0,0,0,0,24,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1996,4,0,0,11,32,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1997,4,1,7,20,29,0,0,0,-1,0,132663,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1998,2,10,2,17,28,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,75,0,0,0,0 +1999,4,2,8,5,29,0,0,0,-1,0,135006,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2000,2,8,1,17,0,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,95,0,0,0,0 +2002,11,2,8,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2003,11,2,0,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2004,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2005,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2006,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2007,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2008,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2011,2,7,1,21,21,3,0,0,-1,0,135325,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +2012,4,0,0,12,35,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2013,2,10,2,17,21,2,0,0,-1,0,135163,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +2014,2,8,1,17,24,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,78,0,0,0,0 +2015,2,1,1,17,23,1,0,0,-1,0,132408,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +2016,4,3,5,5,21,0,0,0,-1,0,132624,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017,4,2,8,9,23,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018,2,7,1,21,22,3,0,0,-1,0,135317,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +2020,2,15,1,13,13,3,0,0,-1,0,135652,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +2021,4,6,1,14,16,4,0,0,-1,0,134321,9,0,65,0,0,0,0,0,0,428,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +2023,2,6,1,17,1,2,0,0,-1,0,135130,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2024,2,8,1,17,16,1,0,0,-1,0,135353,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +2025,2,1,1,17,15,1,0,0,-1,0,132394,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +2026,2,5,2,17,16,1,0,0,-1,0,133046,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,56,0,0,0,0 +2027,2,7,1,13,14,3,0,0,-1,0,135343,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2028,2,4,2,13,16,3,0,0,-1,0,133052,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2029,2,0,1,13,15,3,0,0,-1,0,132417,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2030,2,10,2,17,15,2,0,0,-1,0,135147,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,42,0,0,0,0 +2032,4,1,7,9,0,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2033,4,2,8,8,0,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2034,4,1,7,20,20,0,0,0,-1,0,132645,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2035,2,7,1,21,19,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +2036,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2037,4,3,5,8,0,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2038,4,2,8,1,0,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2039,4,0,4,11,24,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2040,4,6,1,14,43,4,0,0,-1,0,134962,9,0,100,0,0,0,0,0,0,1676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2041,4,2,8,5,0,0,0,0,-1,0,132722,7,0,90,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2042,2,10,2,17,0,2,0,0,-1,0,135147,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +2043,4,0,1,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2044,2,0,1,21,0,3,0,0,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +2045,4,1,7,1,0,0,0,0,-1,0,133074,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2046,2,7,1,21,19,3,0,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +2047,2,0,1,21,0,3,0,0,-1,0,135419,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2048,2,4,2,21,0,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2050,7,0,3,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2051,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2052,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2053,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2054,2,0,1,21,1,3,0,0,-1,0,132410,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2055,2,4,2,21,1,3,0,0,-1,0,133052,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2056,2,4,2,21,5,3,0,0,-1,0,133039,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2057,2,7,1,21,1,3,0,0,-1,0,135274,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2058,2,5,2,17,22,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +2059,4,1,7,16,19,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2060,7,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2064,2,4,2,21,6,3,0,0,-1,0,133052,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +2065,2,7,1,21,4,3,0,0,-1,0,135357,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2066,2,0,1,21,3,3,0,0,-1,0,132402,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2067,2,10,2,17,5,2,0,0,-1,0,135152,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2069,4,2,8,5,7,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2070,0,0,0,0,1,0,0,0,-1,0,133948,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2071,0,0,0,0,1,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2072,2,10,2,17,22,2,5212,0,-1,0,135141,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +2073,2,0,1,21,10,3,5169,0,-1,0,132395,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2074,2,7,1,13,0,3,0,0,-1,0,135324,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2075,2,4,2,21,7,3,5170,0,-1,0,133481,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +2077,2,10,2,17,24,2,5221,0,-1,0,135468,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +2078,2,7,1,13,13,3,5177,0,-1,0,135321,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2079,2,4,2,13,12,3,5179,0,-1,0,133048,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +2080,2,0,1,13,29,3,5232,0,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +2081,4,0,1,23,1,7,0,0,-1,0,135126,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2082,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2084,2,8,1,17,25,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,79,0,0,0,0 +2085,15,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2087,4,2,8,5,8,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2088,2,15,1,13,10,3,0,0,-1,0,133723,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2089,2,15,1,13,0,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2091,0,0,0,0,10,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2092,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2098,2,3,1,26,22,0,0,0,-1,0,135617,8,0,70,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +2099,2,3,1,26,53,0,0,0,-1,0,135618,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +2100,2,3,1,26,43,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,45,0,0,0,0 +2101,11,2,0,18,1,0,0,0,-1,0,134409,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2102,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2103,6,2,2,24,1,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2104,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2105,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2106,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2107,4,0,7,8,0,0,0,0,-1,0,132543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2108,4,2,8,5,1,0,0,0,-1,0,132760,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2109,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2110,4,1,7,20,1,0,0,0,-1,0,132663,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2112,4,2,8,5,4,0,0,0,-1,0,132725,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2113,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2114,4,1,7,20,3,0,0,0,-1,0,132674,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2115,1,0,8,18,0,0,0,0,-1,0,133627,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2117,4,1,7,8,1,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2119,4,1,7,10,1,0,0,0,-1,0,132952,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2120,4,1,7,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2121,4,1,7,5,1,0,0,0,-1,0,135029,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2122,4,2,8,6,1,0,0,0,-1,0,132515,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2123,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2124,4,2,8,9,1,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2125,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2126,4,2,8,7,1,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2127,4,2,8,5,1,0,0,0,-1,0,135010,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2128,2,8,1,17,1,1,0,0,-1,0,135276,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +2129,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2130,2,4,2,13,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2131,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2132,2,10,2,17,1,2,0,0,-1,0,135139,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +2133,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2134,2,0,1,13,1,3,0,0,-1,0,132410,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2136,0,0,7,0,15,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2137,2,15,1,13,0,3,0,0,-1,0,135637,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2138,2,15,1,13,2,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2139,2,15,1,13,1,3,0,0,-1,0,135650,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2140,2,15,1,13,6,3,5171,0,-1,0,135637,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +2141,4,2,8,5,22,0,0,0,-1,0,132724,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2142,4,2,8,6,22,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2143,4,2,8,8,22,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2144,4,2,8,9,22,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2145,4,2,8,10,22,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2146,4,2,8,7,22,0,0,0,-1,0,134589,7,0,60,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2147,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2148,4,3,5,6,22,0,0,0,-1,0,132493,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2149,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2150,4,3,5,9,22,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2151,4,3,5,10,22,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2152,4,3,5,7,22,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2153,4,3,5,5,22,0,0,0,-1,0,132631,10,0,95,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2154,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2156,4,1,7,8,22,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2158,4,1,7,10,22,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2159,4,1,7,7,22,0,0,0,-1,0,134587,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2160,4,1,7,5,22,0,0,0,-1,0,135006,7,0,70,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2161,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2162,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2163,2,15,1,13,48,3,0,0,-1,0,135302,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +2164,2,15,1,13,40,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +2165,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2166,4,3,5,7,15,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2167,4,2,8,10,15,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2168,4,1,7,8,16,0,0,0,-1,0,132537,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2169,2,15,1,13,16,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +2170,4,6,1,14,15,4,0,0,-1,0,134321,9,0,65,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2172,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2173,4,2,8,6,0,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2175,2,1,1,17,18,1,0,0,-1,0,135424,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +2176,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2177,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2178,2,7,1,13,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2179,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2180,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2181,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2182,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2183,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2184,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2186,4,2,8,6,0,0,0,0,-1,0,132495,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2187,12,0,0,0,0,0,0,0,-1,0,133459,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2188,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2189,2,4,2,21,95,1,0,0,-1,0,135613,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,117,0,0,0,0 +2191,12,0,0,0,0,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2194,2,4,2,13,20,3,0,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2195,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2196,2,4,2,13,1,7,0,0,-1,0,133974,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2197,2,4,2,13,1,7,0,0,-1,0,133964,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2198,2,14,1,13,1,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +2199,2,14,1,13,1,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +2200,2,14,1,13,1,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +2201,2,14,1,13,1,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +2202,2,4,2,13,1,7,0,0,-1,0,133974,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2203,2,1,1,17,14,1,0,0,-1,0,132417,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +2204,2,8,1,17,12,1,0,0,-1,0,135321,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +2205,2,8,1,17,20,1,0,0,-1,0,135351,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +2206,2,15,1,13,17,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2207,2,15,1,13,11,3,0,0,-1,0,135640,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +2208,2,15,1,13,14,3,0,0,-1,0,135302,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,15,0,0,0,0 +2209,2,15,1,13,19,3,0,0,-1,0,135342,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +2210,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2211,4,6,1,14,1,4,0,0,-1,0,134955,9,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2212,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2213,4,6,1,14,2,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2214,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2215,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2216,4,6,1,14,11,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2217,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2218,2,15,1,13,0,3,0,0,-1,0,135641,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +2219,4,6,1,14,17,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2220,4,6,1,14,18,4,0,0,-1,0,134949,9,0,70,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2221,4,6,1,14,23,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2222,4,6,1,14,24,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2223,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2224,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2225,2,15,1,13,0,3,0,0,-1,0,135650,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2226,2,10,2,17,22,2,0,0,-1,0,135468,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +2227,2,1,1,17,22,1,0,0,-1,0,135562,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +2230,4,3,5,10,0,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2231,4,1,7,20,0,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2232,4,1,7,8,20,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2233,4,2,8,7,22,0,0,0,-1,0,134592,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2234,4,1,7,5,25,0,0,0,-1,0,135020,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2235,2,15,1,13,14,3,0,0,-1,0,135651,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2236,2,15,1,13,20,3,0,0,-1,0,135638,8,0,50,0,0,0,0,0,0,0,0,0,0,0,5,0,17,0,0,0,0,32,0,0,0,0 +2237,4,2,8,7,0,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2238,4,1,7,7,0,0,0,0,-1,0,134588,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2239,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2240,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2241,4,1,7,16,15,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2243,2,4,2,13,57,3,0,0,-1,0,133489,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +2244,2,7,1,21,51,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +2245,4,3,5,1,54,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2246,4,0,1,11,53,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2248,4,4,6,4,6,3,0,0,-1,0,132759,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2249,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2250,12,0,0,0,0,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2251,7,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2252,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2254,2,5,2,17,7,1,0,0,-1,0,133041,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +2255,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2256,2,4,2,21,19,3,0,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2257,2,10,2,17,5,2,0,0,-1,0,135148,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,21,0,0,0,0 +2258,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2259,2,4,2,21,3,3,0,0,-1,0,133053,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2260,2,0,1,21,4,3,0,0,-1,0,132408,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2262,4,0,0,11,31,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2263,2,7,1,21,0,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +2264,4,2,8,3,25,0,0,0,-1,0,135039,7,0,60,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2265,2,0,1,21,8,3,0,0,-1,0,132410,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2266,2,15,1,13,8,3,0,0,-1,0,135644,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +2267,2,4,2,21,10,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2268,2,7,1,21,5,3,0,0,-1,0,135357,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2271,2,10,2,17,18,2,0,0,-1,0,135168,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +2273,4,3,5,5,10,0,0,0,-1,0,132626,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2274,4,3,5,10,12,0,0,0,-1,0,132937,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2275,4,3,5,1,15,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2276,4,2,8,8,32,0,0,0,-1,0,132543,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2277,4,1,7,7,30,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2278,4,2,8,3,26,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2280,2,10,2,17,22,2,0,0,-1,0,135143,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +2281,2,0,1,21,6,3,0,0,-1,0,132410,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2282,2,7,1,21,5,3,0,0,-1,0,135357,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +2283,4,1,7,6,10,0,0,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2284,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2287,0,0,0,0,5,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2288,0,0,7,0,5,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2289,0,0,7,0,25,1,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2290,0,0,7,0,20,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2291,2,1,1,17,44,1,0,0,-1,0,132406,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,205,0,0,0,0 +2292,4,1,7,20,20,0,0,0,-1,0,132677,7,0,75,0,0,0,0,0,0,43,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +2295,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2296,7,0,0,0,0,0,0,0,-1,0,134172,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2299,2,1,1,17,28,1,0,0,-1,0,132393,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,110,0,0,0,0 +2300,4,2,8,5,7,0,0,0,-1,0,132724,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2301,4,2,8,8,1,0,0,0,-1,0,132538,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2302,4,2,8,8,3,0,0,0,-1,0,132538,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2303,4,2,8,7,5,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2304,0,0,8,0,1,0,0,0,-1,0,133611,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2305,4,1,7,16,1,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2306,4,2,8,8,1,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2307,4,2,8,8,13,0,0,0,-1,0,132540,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2308,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2309,4,2,8,8,10,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2310,4,1,7,16,8,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2311,4,2,8,5,8,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2312,4,2,8,10,10,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2313,0,0,8,0,5,0,0,0,-1,0,133609,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2314,4,2,8,5,19,0,0,0,-1,0,132725,7,0,75,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2315,4,2,8,8,15,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2316,4,1,7,16,17,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2317,4,2,8,5,15,0,0,0,-1,0,132718,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2318,7,0,8,0,0,0,0,0,-1,0,134252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2319,7,0,8,0,0,0,0,0,-1,0,134254,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2320,7,0,8,0,0,0,0,0,-1,0,132891,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2321,7,0,8,0,0,0,0,0,-1,0,132912,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2322,7,0,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2323,7,0,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2324,7,0,3,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2325,7,0,3,0,0,0,0,0,-1,0,134843,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2326,4,1,7,9,0,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2327,4,2,8,9,5,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2361,2,5,2,17,1,1,0,0,-1,0,133052,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +2362,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2363,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2364,4,1,7,5,5,0,0,0,-1,0,135011,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2366,4,1,7,7,5,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2367,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2369,4,1,7,10,5,0,0,0,-1,0,132957,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2370,4,2,8,5,5,0,0,0,-1,0,132719,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2371,4,2,8,6,5,0,0,0,-1,0,132492,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2372,4,2,8,7,5,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2373,4,2,8,8,5,0,0,0,-1,0,132592,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2374,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2375,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2376,4,6,1,14,5,4,0,0,-1,0,134950,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2377,4,6,1,14,5,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2378,12,0,0,0,0,0,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2379,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2380,4,3,5,6,1,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2381,4,3,5,7,1,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2382,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2383,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2384,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2385,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2386,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2387,4,3,5,6,1,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2388,4,3,5,7,1,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2389,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2390,4,3,5,9,1,0,0,0,-1,0,132604,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2391,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2392,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2393,4,3,5,6,5,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2394,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2395,4,3,5,8,5,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2396,4,3,5,9,5,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2397,4,3,5,10,5,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2398,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2399,4,3,5,6,5,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2400,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2401,4,3,5,8,5,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2402,4,3,5,9,5,0,0,0,-1,0,132604,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2403,4,3,5,10,5,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2404,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2405,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2406,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2407,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2408,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2409,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2410,4,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2411,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2412,15,0,0,0,40,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2413,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2414,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2415,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2417,4,3,5,5,32,0,0,0,-1,0,132747,10,0,100,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2418,4,3,5,7,32,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2419,4,3,5,6,32,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2420,4,3,5,8,32,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2421,4,3,5,9,32,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2422,4,3,5,10,32,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2423,4,3,5,5,45,0,0,0,-1,0,132748,10,0,100,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2424,4,3,5,6,45,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2425,4,3,5,7,45,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2426,4,3,5,8,45,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2427,4,3,5,9,45,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2428,4,3,5,10,45,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2429,4,1,7,5,32,0,0,0,-1,0,135018,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2431,4,1,7,7,32,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2432,4,1,7,8,32,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2434,4,1,7,10,32,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2435,4,1,7,5,45,0,0,0,-1,0,135021,7,0,70,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2437,4,1,7,7,45,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2438,4,1,7,8,45,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2440,4,1,7,10,45,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2441,4,6,1,14,17,4,0,0,-1,0,134956,9,0,70,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2442,4,6,1,14,22,4,0,0,-1,0,134956,9,0,80,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2443,4,6,1,14,32,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2444,4,6,1,14,45,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2445,4,6,1,14,17,4,0,0,-1,0,134949,9,0,70,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2446,4,6,1,14,22,4,0,0,-1,0,134952,9,0,80,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2447,7,0,7,0,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2448,4,6,1,14,32,4,0,0,-1,0,134949,9,0,85,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2449,7,0,2,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2450,7,0,2,0,0,0,0,0,-1,0,134412,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2451,4,6,1,14,45,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2452,7,0,2,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2453,7,0,7,0,0,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2454,0,0,3,0,1,0,0,0,-1,0,134836,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2455,0,0,3,0,5,0,0,0,-1,0,134850,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2456,0,0,3,0,5,0,0,0,-1,0,134713,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2457,0,0,3,0,2,0,0,0,-1,0,134871,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2458,0,0,3,0,2,0,0,0,-1,0,134822,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2459,0,0,3,0,5,0,0,0,-1,0,134875,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2460,0,0,3,0,5,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2461,0,0,3,0,10,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2462,0,0,3,0,1,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2463,4,2,8,5,32,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2464,4,2,8,6,32,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2465,4,2,8,7,32,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2466,12,0,0,0,0,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2467,4,2,8,8,32,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2468,4,2,8,9,32,0,0,0,-1,0,132601,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2469,4,2,8,10,32,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2470,4,2,8,5,45,0,0,0,-1,0,132646,7,0,85,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2471,4,2,8,6,45,0,0,0,-1,0,132505,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2472,4,2,8,7,45,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2473,4,2,8,8,45,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2474,4,2,8,9,45,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2475,4,2,8,10,45,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2476,12,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2477,12,0,4,0,0,0,0,0,-1,0,133729,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2478,4,0,1,12,35,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2479,2,1,1,17,1,1,0,0,-1,0,132402,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +2480,2,5,2,17,1,1,0,0,-1,0,133481,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2481,2,7,1,21,1,3,0,0,-1,0,135274,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2482,2,0,1,13,1,3,0,0,-1,0,135421,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2483,2,1,1,17,1,1,0,0,-1,0,135420,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2484,2,15,1,13,1,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2485,2,4,2,21,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2486,2,5,2,17,1,1,0,0,-1,0,133046,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2487,2,10,2,17,1,2,0,0,-1,0,135151,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2488,2,7,1,13,4,3,0,0,-1,0,135321,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2489,2,8,1,17,2,1,0,0,-1,0,135312,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2490,2,0,1,13,4,3,0,0,-1,0,135421,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2491,2,1,1,17,3,1,0,0,-1,0,132401,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +2492,2,4,2,13,2,3,0,0,-1,0,135434,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +2493,2,5,2,17,4,1,0,0,-1,0,133053,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,16,0,0,0,0 +2494,2,15,1,13,3,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +2495,2,10,2,17,3,2,0,0,-1,0,135145,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2496,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2497,2,8,1,17,4,1,0,0,-1,0,135276,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2498,2,0,1,13,3,3,0,0,-1,0,132410,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +2499,2,1,1,17,4,1,0,0,-1,0,135424,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2500,2,4,2,21,2,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2501,2,5,2,17,4,1,0,0,-1,0,133052,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +2502,2,15,1,13,2,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2503,2,10,2,17,3,2,0,0,-1,0,135139,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2504,2,2,2,15,1,0,0,0,-1,0,135493,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2505,2,2,2,15,1,0,0,0,-1,0,135490,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2506,2,2,2,15,3,0,0,0,-1,0,135499,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +2507,2,2,2,15,11,0,0,0,-1,0,135489,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2508,2,3,1,26,1,0,0,0,-1,0,135610,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2509,2,3,1,26,4,0,0,0,-1,0,135611,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2510,2,3,1,26,1,0,0,0,-1,0,135616,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2511,2,3,1,26,9,0,0,0,-1,0,135613,8,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +2512,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2513,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2514,6,2,2,24,3,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +2515,6,2,2,24,10,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0 +2516,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2517,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2518,6,3,2,24,3,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +2519,6,3,2,24,10,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0 +2520,2,7,1,21,31,3,0,0,-1,0,135275,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2521,2,8,1,17,31,1,0,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +2522,2,0,1,21,30,3,0,0,-1,0,135419,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +2523,2,1,1,17,30,1,0,0,-1,0,135576,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,102,0,0,0,0 +2524,2,4,2,21,29,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +2525,2,5,2,17,30,1,0,0,-1,0,133040,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +2526,2,15,1,13,29,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +2527,2,10,2,17,31,2,0,0,-1,0,135469,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +2528,2,7,1,21,41,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +2529,2,8,1,17,41,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +2530,2,0,1,21,41,3,0,0,-1,0,132392,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +2531,2,1,1,17,39,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,135,0,0,0,0 +2532,2,4,2,21,41,3,0,0,-1,0,133487,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +2533,2,5,2,17,40,1,0,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +2534,2,15,1,13,39,3,0,0,-1,0,135341,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,50,0,0,0,0 +2535,2,10,2,17,40,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +2536,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2543,4,3,5,7,1,0,0,0,-1,0,134706,10,0,40,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2545,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2546,4,3,5,6,6,0,0,0,-1,0,132498,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2547,4,3,5,10,0,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2548,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2549,2,10,2,17,22,2,0,0,-1,0,135162,13,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +2550,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2551,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2552,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2553,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2554,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2555,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2556,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2557,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2558,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2559,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2560,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2561,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2562,4,0,0,23,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2563,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2564,4,2,8,10,45,0,0,0,-1,0,132941,7,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2565,4,0,1,23,30,7,0,0,-1,0,135124,8,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2566,4,1,7,20,22,0,0,0,-1,0,132643,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2567,2,15,1,13,18,3,0,0,-1,0,135651,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +2568,4,1,7,5,3,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2569,4,1,7,8,8,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2570,4,1,7,16,1,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2571,4,1,7,8,0,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2572,4,1,7,20,5,0,0,0,-1,0,132659,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2573,4,1,7,10,4,0,0,0,-1,0,132940,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2574,4,1,7,5,10,0,0,0,-1,0,135005,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2575,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2576,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2577,4,0,7,4,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2578,4,1,7,5,9,0,0,0,-1,0,132715,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2579,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2580,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2581,0,0,7,0,0,0,0,0,-1,0,133688,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2582,4,1,7,5,12,0,0,0,-1,0,132680,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2583,4,1,7,8,14,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2584,4,1,7,16,11,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2585,4,1,7,20,16,0,0,0,-1,0,132654,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2586,4,1,7,20,0,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2587,4,0,7,4,0,0,0,0,-1,0,135025,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2588,4,2,8,1,15,0,0,0,-1,0,133694,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2589,7,0,8,0,0,0,0,0,-1,0,132889,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2590,15,0,8,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2591,15,0,8,0,0,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2592,7,0,8,0,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2593,0,0,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2594,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2595,0,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2596,0,0,0,0,0,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2598,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2599,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2600,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2601,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2602,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2604,7,0,3,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2605,7,0,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2606,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2607,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2608,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2609,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2610,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2611,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2612,4,1,7,20,3,0,0,0,-1,0,132674,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2613,4,1,7,20,8,0,0,0,-1,0,132665,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2614,4,1,7,20,12,0,0,0,-1,0,132679,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2615,4,1,7,20,24,0,0,0,-1,0,132679,7,0,70,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2616,4,1,7,20,18,0,0,0,-1,0,132645,7,0,65,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2617,4,1,7,20,32,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2618,4,1,7,20,45,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2619,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2620,4,1,7,1,34,0,0,0,-1,0,133756,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2621,4,1,7,1,31,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2622,4,1,7,1,32,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2623,4,1,7,1,36,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2624,4,1,7,1,37,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2625,12,0,0,0,0,0,0,0,-1,0,135896,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2628,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2629,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2632,2,15,1,13,9,3,5171,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +2633,0,0,7,0,22,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2634,12,0,7,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2635,4,3,5,6,3,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2636,12,0,0,0,0,0,0,0,-1,0,134230,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2637,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2638,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2639,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2640,12,0,1,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2642,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2643,4,3,5,9,5,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2644,4,1,7,16,1,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2645,4,3,5,10,2,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2646,4,3,5,7,3,0,0,0,-1,0,134583,10,0,45,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2647,4,3,5,3,4,0,0,0,-1,0,135038,10,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2648,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2649,4,3,5,6,1,0,0,0,-1,0,132495,10,0,16,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2650,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2651,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2652,4,1,7,16,1,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2653,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2654,4,3,5,7,1,0,0,0,-1,0,134583,10,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2655,4,3,5,3,1,0,0,0,-1,0,135038,10,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2656,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2657,1,0,8,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2658,12,0,0,0,0,0,0,0,-1,0,135235,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2659,12,0,0,0,0,0,0,0,-1,0,135237,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2660,12,0,0,0,0,0,0,0,-1,0,135236,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2661,12,0,0,0,0,0,0,0,-1,0,135238,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2662,11,2,8,18,50,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2663,11,3,8,18,50,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2664,2,15,1,13,13,3,0,0,-1,0,134298,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2665,5,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2666,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2667,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2668,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2669,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2671,12,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2672,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2673,7,0,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2674,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2675,7,0,0,0,0,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2676,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2677,7,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2678,7,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2679,0,0,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2680,0,0,0,0,1,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2681,0,0,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2682,0,0,0,0,5,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2683,0,0,0,0,5,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2684,0,0,0,0,5,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2685,0,0,0,0,10,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2686,0,0,3,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2687,0,0,0,0,5,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2688,0,0,3,0,0,0,0,0,-1,0,133944,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2690,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2691,4,3,5,8,0,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2692,7,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2693,7,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2694,4,3,5,7,0,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2695,2,4,2,13,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2696,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2697,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2698,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2699,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2700,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2701,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2702,12,0,0,0,0,0,0,0,-1,0,133218,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2703,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2704,2,14,1,13,1,7,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2705,2,14,1,13,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2706,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2707,2,14,1,13,1,0,0,0,-1,0,133938,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2708,2,14,1,13,1,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2709,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2710,2,14,1,13,1,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2711,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2712,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2713,12,0,0,0,0,0,0,0,-1,0,132183,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2714,2,14,1,13,1,7,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2715,2,14,1,13,1,7,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2716,2,14,1,13,1,7,0,0,-1,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2717,2,14,1,13,1,7,0,0,-1,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2718,2,14,1,13,1,7,0,0,-1,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +2719,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2720,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2721,4,1,7,1,27,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2722,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2723,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2724,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2725,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2728,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2730,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2732,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2734,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2735,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2738,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2740,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2742,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2744,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2745,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2748,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2749,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2750,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2751,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2754,2,8,1,17,1,1,0,0,-1,0,135276,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2755,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2756,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2757,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2758,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2759,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2760,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2761,12,0,0,0,1,0,0,0,-1,0,132381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2762,12,0,0,0,1,0,0,0,-1,0,132381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2763,2,15,1,13,9,3,0,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +2764,2,15,1,13,13,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2765,2,15,1,13,18,3,0,0,-1,0,135651,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2766,2,15,1,13,24,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +2767,12,0,0,0,1,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2770,7,0,2,0,0,0,0,0,-1,0,134566,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2771,7,0,1,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2772,7,0,1,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2773,2,2,2,15,3,0,0,0,-1,0,135493,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2774,2,3,1,26,2,0,0,0,-1,0,135612,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2775,7,0,1,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2776,7,0,2,0,0,0,0,0,-1,0,134566,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2777,2,2,2,15,8,0,0,0,-1,0,135493,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +2778,2,3,1,26,8,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,9,0,0,0,0 +2779,12,0,0,0,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2780,2,2,2,15,14,0,0,0,-1,0,135490,12,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2781,2,3,1,26,13,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2782,2,2,2,15,19,0,0,0,-1,0,135491,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2783,2,3,1,26,17,0,0,0,-1,0,135610,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +2784,12,0,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2785,2,2,2,15,23,0,0,0,-1,0,135493,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +2786,2,3,1,26,24,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,19,0,0,0,0 +2787,2,15,1,13,1,3,0,0,-1,0,135644,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2788,12,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2789,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2790,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2791,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2792,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2793,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2794,12,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2795,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2797,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2798,15,0,1,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2799,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2800,4,1,7,20,21,0,0,0,-1,0,132689,7,0,75,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2801,2,8,1,17,59,1,0,0,-1,0,135280,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,152,0,0,0,0 +2802,4,0,0,12,38,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2803,4,0,0,12,35,0,0,0,-1,0,133435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2804,4,0,0,12,35,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2805,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2806,12,0,1,0,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2807,2,0,1,21,18,3,0,0,-1,0,132418,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2808,2,14,1,21,0,7,0,0,-1,0,135142,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +2809,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2810,2,4,2,13,1,3,0,0,-1,0,136040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2811,2,10,2,17,0,2,0,0,-1,0,135138,13,0,85,0,1,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +2812,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +2813,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2814,2,5,2,17,0,1,0,0,-1,0,133041,9,0,85,0,1,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,50,0,0,0,0 +2815,2,0,1,21,40,3,0,0,-1,0,132417,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +2816,2,4,2,21,28,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,63,0,0,0,0 +2817,4,2,8,5,0,0,0,0,-1,0,135014,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2818,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2819,2,15,1,13,23,3,5216,0,-1,0,135641,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +2820,4,0,0,12,0,0,0,0,-1,0,134376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2821,2,4,2,21,13,3,0,0,-1,0,133052,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2822,2,8,1,17,13,1,0,0,-1,0,135355,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +2823,2,1,1,17,14,1,0,0,-1,0,132397,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,48,0,0,0,0 +2824,2,2,2,15,48,0,0,0,-1,0,135500,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,63,0,0,0,0 +2825,2,2,2,15,37,0,0,0,-1,0,135497,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +2826,4,0,0,12,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2827,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2828,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2829,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2830,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2831,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2832,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2833,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2834,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2835,7,0,0,0,0,0,0,0,-1,0,135232,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2836,7,0,0,0,0,0,0,0,-1,0,135235,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2837,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2838,7,0,0,0,0,0,0,0,-1,0,135238,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2839,12,0,0,0,4,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2840,7,0,2,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2841,7,0,2,0,0,0,0,0,-1,0,133227,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2842,7,0,2,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2843,12,0,0,0,0,0,0,0,-1,0,133727,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2844,2,4,2,21,4,3,0,0,-1,0,133476,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +2845,2,0,1,21,4,3,0,0,-1,0,132417,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2846,12,0,0,0,0,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2847,2,7,1,21,4,3,0,0,-1,0,135327,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2848,2,4,2,21,17,3,0,0,-1,0,133483,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +2849,2,0,1,21,18,3,0,0,-1,0,132408,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +2850,2,7,1,21,19,3,0,0,-1,0,135274,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +2851,4,3,5,6,6,0,0,0,-1,0,132491,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2852,4,3,5,7,4,0,0,0,-1,0,134583,10,0,45,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2853,4,3,5,9,2,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2854,4,3,5,9,14,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2855,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2856,12,0,1,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2857,4,3,5,6,13,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2858,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2859,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2862,7,0,0,0,1,0,0,0,-1,0,135248,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2863,7,0,0,0,5,0,0,0,-1,0,135249,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2864,4,3,5,5,13,0,0,0,-1,0,132738,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2865,4,3,5,7,16,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2866,4,3,5,5,18,0,0,0,-1,0,132630,10,0,90,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2867,4,3,5,9,18,0,0,0,-1,0,132604,10,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2868,4,3,5,9,20,0,0,0,-1,0,132606,10,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2869,4,3,5,5,21,0,0,0,-1,0,132631,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2870,4,3,5,5,24,0,0,0,-1,0,132750,10,0,120,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2871,7,0,0,0,15,0,0,0,-1,0,135250,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2872,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2874,12,0,0,0,16,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2875,12,0,0,0,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2876,12,0,8,0,0,0,0,0,-1,0,134355,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2877,2,8,1,17,28,1,0,0,-1,0,135324,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +2878,2,0,1,21,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +2879,4,0,1,23,17,7,0,0,-1,0,135466,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2880,7,0,7,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2881,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2882,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2883,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2884,2,4,2,13,1,7,0,0,-1,0,133714,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2885,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2886,7,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2887,15,0,8,0,0,0,0,0,-1,0,134369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2888,0,0,0,0,1,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2889,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2890,15,0,8,0,0,0,0,0,-1,0,134363,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2891,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2892,0,0,3,0,30,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2893,0,0,3,0,38,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2894,0,0,0,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2895,0,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2896,0,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2898,4,3,5,5,2,0,0,0,-1,0,132624,10,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2899,4,2,8,6,10,0,0,0,-1,0,132490,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2900,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2901,2,14,1,21,1,0,0,0,-1,0,134708,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2902,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2903,2,2,2,15,0,0,0,0,-1,0,135490,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2904,2,3,1,26,0,0,0,0,-1,0,135612,8,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2905,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2906,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2907,2,1,1,17,0,1,0,0,-1,0,135419,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +2908,2,15,1,13,0,3,0,0,-1,0,135651,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2909,12,0,0,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2910,4,3,5,8,0,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2911,4,1,7,6,18,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2912,2,15,1,13,27,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +2913,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2915,2,5,2,17,47,1,0,0,-1,0,133039,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +2916,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2917,4,0,0,11,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2918,4,3,5,1,0,0,0,0,-1,0,133070,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2919,4,0,2,12,25,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2920,4,0,2,12,5,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2921,4,0,2,12,10,0,0,0,-1,0,134414,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2922,4,0,2,12,15,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2923,4,0,2,12,20,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2924,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2925,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2926,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2927,0,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2928,7,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2929,7,0,7,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2930,7,0,7,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2931,7,0,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2932,7,0,7,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2933,4,0,0,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2934,7,0,8,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2935,12,0,0,0,1,0,0,0,-1,0,133884,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2936,12,0,0,0,1,0,0,0,-1,0,133884,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2937,12,0,0,0,1,0,0,0,-1,0,133884,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2939,12,0,0,0,0,0,0,0,-1,0,133884,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2940,15,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2941,2,15,1,13,21,3,0,0,-1,0,135654,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +2942,2,13,1,13,21,7,0,0,-1,0,132938,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +2943,4,0,3,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2944,4,0,3,23,26,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2945,2,16,1,25,1,0,0,0,-1,0,135426,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2946,2,16,1,25,3,0,0,0,-1,0,135641,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2947,2,16,1,25,1,0,0,0,-1,0,135426,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2948,4,0,4,12,0,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2949,4,2,8,8,0,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2950,2,10,2,17,0,2,0,0,-1,0,135152,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,77,0,0,0,0 +2951,4,0,0,11,31,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2952,4,2,8,5,12,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2953,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2954,4,1,7,7,0,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2955,4,1,7,1,35,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2956,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2957,4,1,7,5,6,0,0,0,-1,0,132647,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2958,4,1,7,7,5,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2959,4,1,7,8,4,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2960,4,1,7,10,4,0,0,0,-1,0,132955,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2961,4,2,8,5,6,0,0,0,-1,0,135013,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2962,4,2,8,7,5,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2963,4,2,8,8,4,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2964,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2965,4,3,5,5,6,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2966,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2967,4,3,5,8,5,0,0,0,-1,0,132589,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2968,4,3,5,10,4,0,0,0,-1,0,132962,10,0,20,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2969,4,1,7,5,12,0,0,0,-1,0,132647,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2970,4,1,7,7,11,0,0,0,-1,0,134590,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2971,4,1,7,8,9,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2972,4,1,7,10,9,0,0,0,-1,0,132955,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2973,4,2,8,5,12,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2974,4,2,8,7,11,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2975,4,2,8,8,9,0,0,0,-1,0,132592,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2976,4,2,8,10,10,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2977,4,3,5,5,11,0,0,0,-1,0,132631,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2978,4,3,5,7,10,0,0,0,-1,0,134589,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2979,4,3,5,8,9,0,0,0,-1,0,132543,10,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2980,4,3,5,10,10,0,0,0,-1,0,132939,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2981,4,1,7,20,16,0,0,0,-1,0,132649,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2982,4,1,7,7,15,0,0,0,-1,0,134581,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2983,4,1,7,8,12,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2984,4,1,7,10,13,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2985,4,2,8,5,16,0,0,0,-1,0,132724,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2986,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2987,4,2,8,8,13,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2988,4,2,8,10,14,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2989,4,3,5,5,16,0,0,0,-1,0,132628,10,0,85,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2990,4,3,5,7,16,0,0,0,-1,0,134582,10,0,65,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2991,4,3,5,8,16,0,0,0,-1,0,132588,10,0,40,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2992,4,3,5,10,15,0,0,0,-1,0,132944,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2993,4,2,8,1,15,0,0,0,-1,0,133071,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2994,4,1,7,1,18,0,0,0,-1,0,134442,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2995,4,3,5,1,18,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2996,7,0,7,0,0,0,0,0,-1,0,132890,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2997,7,0,8,0,0,0,0,0,-1,0,132913,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2998,12,0,0,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2999,12,0,0,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3000,4,2,8,5,5,0,0,0,-1,0,132724,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3001,4,0,2,12,15,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3002,4,0,2,12,25,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3003,4,0,2,12,5,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3004,4,0,2,12,10,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3005,4,0,2,12,15,0,0,0,-1,0,133435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3006,4,0,2,12,20,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3007,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3008,4,1,7,16,4,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3010,15,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3011,4,2,8,1,31,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3012,0,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3013,0,0,0,0,1,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3014,12,0,0,0,0,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3015,4,0,0,12,35,0,0,0,-1,0,135242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3016,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3017,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3018,4,1,7,16,18,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3019,4,1,7,20,13,0,0,0,-1,0,132679,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3020,4,2,8,1,28,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3021,2,2,2,15,20,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,45,0,0,0,0 +3022,4,2,8,7,18,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3023,2,3,1,26,16,0,0,0,-1,0,135612,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,24,0,0,0,0 +3024,2,3,1,26,21,0,0,0,-1,0,135612,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +3025,2,3,1,26,31,0,0,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +3026,2,2,2,15,16,0,0,0,-1,0,135490,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,22,0,0,0,0 +3027,2,2,2,15,20,0,0,0,-1,0,135489,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +3028,2,2,2,15,29,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +3029,6,2,2,24,15,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +3030,6,2,2,24,25,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +3031,6,2,2,24,30,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +3032,6,3,2,24,15,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +3033,6,3,2,24,25,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +3034,6,3,2,24,30,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +3035,12,0,0,0,0,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3036,2,2,2,15,10,0,0,0,-1,0,135500,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3037,2,2,2,15,29,0,0,0,-1,0,135500,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3038,2,2,2,15,20,0,0,0,-1,0,135500,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +3039,2,2,2,15,18,0,0,0,-1,0,135491,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +3040,2,3,1,26,14,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +3041,2,3,1,26,26,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +3042,2,3,1,26,28,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,30,0,0,0,0 +3043,6,2,2,24,5,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0 +3044,2,4,2,22,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3045,4,3,5,8,22,0,0,0,-1,0,132588,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3046,4,3,5,1,21,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3047,4,3,5,10,22,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3048,4,3,5,7,21,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3049,4,3,5,5,22,0,0,0,-1,0,132628,10,0,95,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3050,4,3,5,7,23,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3051,4,3,5,10,20,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3052,4,3,5,1,21,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3053,4,3,5,5,23,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3054,4,3,5,8,19,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3055,4,2,8,5,21,0,0,0,-1,0,132723,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3056,4,2,8,7,21,0,0,0,-1,0,134587,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3057,4,2,8,8,19,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3058,4,2,8,10,20,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3059,4,2,8,1,21,0,0,0,-1,0,133071,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3060,4,2,8,8,22,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3061,4,2,8,5,23,0,0,0,-1,0,132715,7,0,85,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3062,4,2,8,10,20,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3063,4,2,8,1,22,0,0,0,-1,0,133071,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3064,4,2,8,7,20,0,0,0,-1,0,134582,7,0,60,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3065,4,1,7,8,18,0,0,0,-1,0,132541,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3066,4,1,7,10,19,0,0,0,-1,0,132957,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3067,4,1,7,7,21,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3068,4,1,7,1,27,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3069,4,1,7,20,22,0,0,0,-1,0,132667,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3070,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3071,2,0,1,21,0,3,0,0,-1,0,132402,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +3072,4,1,7,20,21,0,0,0,-1,0,132659,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3073,4,1,7,7,21,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3074,4,1,7,10,19,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3075,4,1,7,1,49,0,0,0,-1,0,133146,7,0,60,0,0,0,0,0,0,70,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3076,4,1,7,8,18,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3077,4,1,7,1,21,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3078,2,2,2,15,21,0,0,0,-1,0,135492,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3079,2,3,1,26,0,0,0,0,-1,0,135610,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +3080,12,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3081,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3082,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3083,12,0,0,0,0,0,0,0,-1,0,134064,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3084,12,0,0,0,0,0,0,0,-1,0,134063,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3085,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3086,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3087,0,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3088,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3089,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3090,9,0,0,0,4,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3091,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3092,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3093,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3094,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3095,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3096,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3097,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3098,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3099,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3100,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3101,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3102,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3103,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,27,0,0,0,0 +3104,2,16,0,25,10,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,24,0,0,0,0 +3105,2,16,0,25,15,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3106,2,16,0,25,20,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,41,0,0,0,0 +3107,2,16,1,25,11,0,0,0,-1,0,135425,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +3108,2,16,1,25,22,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3109,2,16,1,25,21,0,0,0,-1,0,135641,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +3110,12,0,0,0,0,0,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3111,2,16,1,25,1,0,0,0,-1,0,132410,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3112,9,0,0,0,3,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3113,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3114,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3115,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3116,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3117,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3118,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3119,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3120,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3121,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3122,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3123,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3124,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3125,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3126,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3127,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3128,2,16,1,25,1,0,0,0,-1,0,132392,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +3129,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3130,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3131,2,16,1,25,3,0,0,0,-1,0,135421,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +3132,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3133,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3134,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3135,2,16,1,25,11,0,0,0,-1,0,135419,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +3136,2,16,1,25,14,0,0,0,-1,0,132392,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3137,2,16,1,25,22,0,0,0,-1,0,135423,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3138,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3139,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3140,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3141,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3142,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3143,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3144,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3145,2,15,1,13,1,3,0,0,-1,0,133980,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3146,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3147,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3148,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3149,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3150,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3151,4,3,5,5,0,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3152,4,2,8,10,0,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3153,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3154,2,0,1,21,0,3,0,0,-1,0,132402,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3155,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3156,12,0,0,0,0,0,0,0,-1,0,132604,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3157,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3158,4,2,8,9,0,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3159,4,3,5,3,0,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3160,4,6,1,14,0,4,0,0,-1,0,134956,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3161,4,1,7,20,0,0,0,0,-1,0,132662,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3162,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3163,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3164,7,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3165,12,0,0,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3166,4,3,5,5,0,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3167,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3168,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3169,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3170,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3171,15,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3172,7,0,0,0,0,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3173,7,0,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3174,7,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3175,15,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3176,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3177,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3179,15,0,0,0,0,0,0,0,-1,0,134306,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3180,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3181,15,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3182,7,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3183,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3184,2,15,1,13,15,3,5189,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3185,2,10,2,17,29,2,5239,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +3186,2,7,1,21,25,3,5213,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +3187,2,15,1,13,39,3,5261,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +3188,2,8,1,17,10,1,0,0,-1,0,135348,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +3189,2,1,1,17,3,1,0,0,-1,0,132402,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,17,0,0,0,0 +3190,2,5,2,17,3,1,0,0,-1,0,133477,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,14,0,0,0,0 +3191,2,1,1,17,21,1,0,0,-1,0,132397,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +3192,2,8,1,17,7,1,5173,0,-1,0,135350,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +3193,2,5,2,17,16,1,5193,0,-1,0,133052,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +3194,2,5,2,17,16,1,0,0,-1,0,133476,9,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,48,1,0,0,0,73,6,0,0,0 +3195,2,1,1,17,13,1,5183,0,-1,0,132401,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +3196,2,8,1,17,13,1,5182,0,-1,0,135324,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +3197,2,8,1,17,30,1,5236,0,-1,0,135357,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +3198,2,5,2,17,18,1,5202,0,-1,0,133053,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,57,0,0,0,0 +3199,2,1,1,17,17,1,5201,0,-1,0,135424,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +3200,4,2,8,9,3,0,0,0,-1,0,132609,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3201,2,1,1,17,23,1,5219,0,-1,0,132408,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +3202,4,2,8,9,19,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3203,2,5,2,17,23,1,0,0,-1,0,133488,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +3204,4,2,8,9,21,0,0,0,-1,0,132605,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3205,4,2,8,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3206,2,8,1,17,23,1,5218,0,-1,0,135321,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +3207,4,2,8,9,9,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3208,2,5,2,17,43,1,5274,0,-1,0,133479,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +3209,2,8,1,17,0,1,0,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +3210,2,1,1,17,25,1,5219,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,88,0,0,0,0 +3211,4,3,5,9,14,0,0,0,-1,0,132600,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3212,4,3,5,9,21,0,0,0,-1,0,132600,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3213,4,3,5,9,8,0,0,0,-1,0,132604,10,0,20,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3214,4,3,5,9,4,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3215,4,3,5,9,20,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3216,4,1,7,20,0,0,0,0,-1,0,132682,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3217,4,1,7,6,0,0,0,0,-1,0,132512,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3218,12,0,0,0,0,0,0,0,-1,0,132602,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3219,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3220,0,0,0,0,5,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3221,4,1,7,3,0,0,0,0,-1,0,135040,7,0,30,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3222,2,15,1,13,14,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3223,2,4,2,21,6,3,0,0,-1,0,133482,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +3224,4,1,7,9,5,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3225,2,15,1,13,4,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +3226,4,3,5,3,7,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3227,2,10,2,17,18,2,0,0,-1,0,135149,13,0,70,0,0,0,0,0,0,0,0,0,0,0,7,0,32,0,0,0,0,49,0,0,0,0 +3228,4,3,5,9,21,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3229,4,1,7,6,18,0,0,0,-1,0,132496,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3230,4,2,8,9,21,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3231,4,3,5,3,20,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3232,4,3,5,7,28,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3233,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3234,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3235,4,0,0,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3236,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3237,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3238,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3239,7,0,0,0,1,0,0,0,-1,0,135255,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3240,7,0,0,0,5,0,0,0,-1,0,135256,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3241,7,0,0,0,15,0,0,0,-1,0,135257,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3242,4,4,6,5,1,0,0,0,-1,0,132736,11,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3243,4,4,6,7,1,0,0,0,-1,0,134584,11,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3244,4,4,6,8,1,0,0,0,-1,0,132535,11,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3245,4,4,6,10,1,0,0,0,-1,0,132938,11,0,18,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3246,4,4,6,3,1,0,0,0,-1,0,135033,11,0,30,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3247,4,3,5,6,1,0,0,0,-1,0,132490,10,0,16,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3248,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3249,15,0,0,0,0,0,0,0,-1,0,133215,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3250,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3251,12,0,0,0,0,1,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3252,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3253,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3254,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3255,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3256,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3257,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3258,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3259,15,0,8,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3260,4,1,7,20,1,0,0,0,-1,0,132659,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3261,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3262,2,4,2,21,1,3,0,0,-1,0,133052,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3263,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3264,12,0,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3265,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3266,12,0,0,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3267,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +3268,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +3269,2,4,2,21,0,3,0,0,-1,0,133053,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +3270,4,1,7,5,0,0,0,0,-1,0,135009,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3271,4,1,7,3,0,0,0,0,-1,0,135040,7,0,20,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3272,4,2,8,7,0,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3273,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3274,4,1,7,8,0,0,0,0,-1,0,132538,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3275,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3276,4,6,1,14,0,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3277,2,10,2,17,0,2,0,0,-1,0,135150,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +3278,2,7,1,21,25,3,0,0,-1,0,135274,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3279,4,3,5,8,7,0,0,0,-1,0,132539,10,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3280,4,3,5,9,4,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3281,4,3,5,10,6,0,0,0,-1,0,132963,10,0,20,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3282,4,3,5,7,7,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3283,4,3,5,5,8,0,0,0,-1,0,132719,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3284,4,2,8,8,7,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3285,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3286,4,2,8,10,7,0,0,0,-1,0,132953,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3287,4,2,8,7,7,0,0,0,-1,0,134586,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3288,4,2,8,5,8,0,0,0,-1,0,132657,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3289,4,1,7,8,6,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3290,4,1,7,10,7,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3291,4,1,7,7,8,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3292,4,1,7,5,8,0,0,0,-1,0,135011,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3293,2,0,1,21,1,3,0,0,-1,0,132417,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0 +3294,2,4,2,21,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3295,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +3296,2,15,1,13,1,3,0,0,-1,0,135641,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3297,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3298,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3299,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3300,15,0,0,0,0,0,0,0,-1,0,132936,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3301,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3302,4,3,5,8,10,0,0,0,-1,0,132537,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3303,4,3,5,9,7,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3304,4,3,5,10,9,0,0,0,-1,0,132959,10,0,20,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3305,4,3,5,7,11,0,0,0,-1,0,134583,10,0,55,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3306,4,3,5,5,13,0,0,0,-1,0,132647,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3307,4,1,7,8,10,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3308,4,1,7,10,10,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3309,4,1,7,7,11,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3310,4,1,7,5,13,0,0,0,-1,0,135011,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3311,4,2,8,8,10,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3312,4,2,8,9,8,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3313,4,2,8,5,13,0,0,0,-1,0,132719,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3314,4,2,8,10,10,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3315,4,2,8,7,12,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3316,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3317,12,0,0,0,12,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3318,12,0,0,0,0,0,0,0,-1,0,133640,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3319,2,7,1,21,4,3,0,0,-1,0,135325,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3320,4,1,7,6,4,0,0,0,-1,0,133693,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3321,4,2,8,8,4,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3322,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3323,4,1,7,9,3,0,0,0,-1,0,132606,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3324,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3325,2,1,1,17,4,1,0,0,-1,0,132415,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +3326,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3327,2,10,2,17,4,2,0,0,-1,0,135158,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,18,0,0,0,0 +3328,4,1,7,20,4,0,0,0,-1,0,132675,7,0,45,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3329,2,4,2,21,6,3,0,0,-1,0,133485,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +3330,4,3,5,5,8,0,0,0,-1,0,132624,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3331,4,1,7,16,7,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3332,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3333,4,3,5,3,6,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3334,2,5,2,17,2,1,0,0,-1,0,134435,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,17,0,0,0,0 +3335,2,10,2,17,3,2,0,0,-1,0,135145,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,14,0,0,0,0 +3336,2,15,1,13,24,3,0,0,-1,0,135646,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +3337,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3338,12,0,0,0,0,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3339,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3340,7,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3341,4,3,5,10,27,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3342,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3343,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3344,4,1,7,6,0,0,0,0,-1,0,133694,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3345,4,1,7,1,32,0,0,0,-1,0,133117,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3346,2,6,1,17,1,2,0,0,-1,0,134435,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3347,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3348,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3349,12,0,0,0,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3350,2,4,2,13,1,3,0,0,-1,0,0,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3351,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +3352,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3353,12,0,0,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3354,12,0,0,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3355,7,0,7,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3356,7,0,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3357,7,0,7,0,0,0,0,0,-1,0,134413,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3358,7,0,2,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3359,2,7,1,21,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,100,100,110,100,100,100,0,1,0,0,0,0,1,0,0,0,0 +3360,4,0,0,23,25,3,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3361,2,4,2,13,1,3,0,0,-1,0,133490,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3362,2,14,2,13,1,2,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +3363,4,1,7,6,1,0,0,0,-1,0,132493,7,0,12,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3364,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3365,4,1,7,9,1,0,0,0,-1,0,132609,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3366,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3367,2,6,1,17,1,2,0,0,-1,0,135127,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3368,2,14,2,13,1,2,0,0,-1,0,135129,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +3369,7,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3370,4,1,7,6,3,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3371,7,0,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3372,7,0,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3373,4,1,7,9,4,0,0,0,-1,0,132606,7,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3374,4,1,7,6,9,0,0,0,-1,0,132495,7,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3375,4,1,7,9,7,0,0,0,-1,0,132612,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3376,4,1,7,6,13,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3377,4,1,7,9,14,0,0,0,-1,0,132612,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3378,4,1,7,6,16,0,0,0,-1,0,132492,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3379,4,1,7,9,17,0,0,0,-1,0,132602,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3380,4,1,7,6,25,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3381,4,1,7,9,23,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3382,0,0,3,0,1,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3383,0,0,3,0,10,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3384,0,0,3,0,12,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3385,0,0,3,0,14,0,0,0,-1,0,134851,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3386,0,0,3,0,14,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3387,0,0,3,0,45,0,0,0,-1,0,134842,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3388,0,0,3,0,15,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3389,0,0,3,0,16,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3390,0,0,3,0,18,0,0,0,-1,0,134872,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3391,0,0,3,0,20,0,0,0,-1,0,134837,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3392,4,2,8,1,25,0,0,0,-1,0,133077,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3393,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3394,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3395,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3396,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3397,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3398,2,14,4,21,66,3,0,0,-1,0,133476,8,0,0,0,0,0,0,0,0,100,100,110,100,100,100,0,2000,0,0,0,0,2000,0,0,0,0 +3399,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3400,2,7,1,21,0,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +3401,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3402,15,0,0,0,0,0,0,0,-1,0,134360,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3403,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3404,7,0,0,0,0,0,0,0,-1,0,134304,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3405,12,0,0,0,0,0,0,0,-1,0,134334,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3406,12,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3407,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3408,12,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3409,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3410,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3411,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3412,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3413,2,15,1,13,20,3,0,0,-1,0,135330,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3414,2,4,2,21,22,3,0,0,-1,0,133483,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +3415,2,10,2,17,19,2,0,0,-1,0,135169,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +3416,4,3,5,5,21,0,0,0,-1,0,132624,10,0,110,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3417,2,8,1,17,21,1,0,0,-1,0,135311,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +3418,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3419,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3420,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3421,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3422,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3423,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3424,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3425,12,0,0,0,0,0,0,0,-1,0,135463,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3426,4,0,7,4,0,0,0,0,-1,0,135031,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3427,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3428,4,0,7,4,0,0,0,0,-1,0,135025,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3429,4,2,8,6,19,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3430,2,3,1,26,39,0,5852,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,65,0,0,0,0 +3431,4,2,8,5,0,0,0,0,-1,0,132717,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3432,2,6,1,17,1,2,0,0,-1,0,135128,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3433,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3434,0,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3435,4,2,8,9,0,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3436,4,1,7,3,0,0,0,0,-1,0,135037,7,0,25,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3437,4,3,5,6,0,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3438,0,0,0,0,0,0,0,0,-1,0,133439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3439,4,2,8,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3440,2,5,2,17,0,1,0,0,-1,0,133479,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3441,0,0,2,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3442,4,1,7,6,0,0,0,0,-1,0,133693,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3443,2,0,1,21,0,3,0,0,-1,0,135421,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3444,4,2,8,5,0,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3445,2,15,1,13,0,3,0,0,-1,0,135646,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3446,2,10,2,17,0,2,0,0,-1,0,135153,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3447,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3448,0,0,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3449,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3450,4,6,1,14,0,4,0,0,-1,0,134950,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3451,4,0,0,23,0,7,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3452,2,10,2,17,0,2,0,0,-1,0,135144,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +3453,4,1,7,9,0,0,0,0,-1,0,132610,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3454,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3455,2,7,1,13,0,3,0,0,-1,0,135313,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +3456,0,0,0,0,25,0,0,0,-1,0,132161,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3457,4,1,7,7,0,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3458,4,3,5,10,0,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3459,4,2,8,3,0,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3460,12,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3461,4,1,7,20,0,0,0,0,-1,0,132659,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3462,2,7,1,21,0,3,0,0,-1,0,135302,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +3463,2,16,1,25,0,0,0,0,-1,0,132330,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +3464,6,2,2,24,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +3465,6,3,2,24,0,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +3466,7,0,7,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3467,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3468,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3469,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3470,7,0,0,0,0,0,0,0,-1,0,135243,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3471,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3472,4,3,5,10,7,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3473,4,3,5,7,8,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3474,4,3,5,10,10,0,749,0,-1,0,132939,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3475,4,1,7,16,60,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,50,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3476,12,0,0,0,0,0,0,0,-1,0,132121,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3477,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3478,7,0,0,0,0,0,0,0,-1,0,135244,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3479,4,3,5,5,18,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3480,4,3,5,3,17,0,0,0,-1,0,135036,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3481,4,3,5,3,20,0,0,0,-1,0,135040,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3482,4,3,5,8,21,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3483,4,3,5,10,22,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3484,4,3,5,8,24,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3485,4,3,5,10,25,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3486,7,0,0,0,0,0,0,0,-1,0,135245,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3487,2,8,1,17,14,1,0,0,-1,0,135312,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,41,0,0,0,0 +3488,2,1,1,17,8,1,0,0,-1,0,135420,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3489,2,0,1,21,12,3,0,0,-1,0,135419,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +3490,2,15,1,13,20,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +3491,2,4,2,21,20,3,0,0,-1,0,133483,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +3492,2,4,2,21,25,3,0,0,-1,0,133041,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +3493,2,2,2,15,0,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +3494,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +3495,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3496,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3497,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3498,12,0,0,0,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3499,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3500,15,0,0,0,0,0,0,0,-1,0,133343,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3501,15,0,0,0,0,0,0,0,-1,0,134064,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3502,12,0,0,0,0,0,0,0,-1,0,134531,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3503,15,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3504,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3505,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3506,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3507,0,0,0,0,6,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3508,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3509,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3510,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3511,4,1,7,16,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3512,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3513,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3514,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3515,12,0,0,0,0,0,0,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3516,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3517,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3518,12,0,7,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3519,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3520,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3521,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3522,4,3,5,5,1,0,0,0,-1,0,132715,10,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3523,4,3,5,7,1,0,0,0,-1,0,134582,10,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3524,4,3,5,8,1,0,0,0,-1,0,132542,10,0,20,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3525,4,3,5,9,1,0,0,0,-1,0,132603,10,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3526,4,3,5,10,1,0,0,0,-1,0,132939,10,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3527,4,3,5,5,1,0,0,0,-1,0,132715,10,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3528,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3529,4,3,5,1,1,0,0,0,-1,0,133072,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3530,0,0,7,0,0,0,0,0,-1,0,133684,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3531,0,0,7,0,0,0,0,0,-1,0,133687,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3532,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3533,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3534,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3535,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3536,4,3,5,1,1,0,0,0,-1,0,133072,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3537,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3538,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3539,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3540,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3541,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3542,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3543,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3544,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3545,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3546,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3547,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3548,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3549,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3550,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3551,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3552,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3553,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3554,12,0,0,0,0,0,0,0,-1,0,132768,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3555,4,1,7,20,0,0,0,0,-1,0,132681,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3556,4,1,7,1,0,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3557,4,0,7,19,1,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3558,4,1,7,20,0,0,0,0,-1,0,132655,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3559,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3560,4,1,7,3,0,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3561,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3562,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3563,4,1,7,7,15,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3564,12,0,0,0,0,0,0,0,-1,0,132761,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3565,4,1,7,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3566,4,2,8,5,0,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3567,2,3,1,26,0,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,19,0,0,0,0 +3568,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3569,4,1,7,20,21,0,0,0,-1,0,132683,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3570,2,4,2,21,0,3,0,0,-1,0,133481,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +3571,2,5,2,17,16,1,0,0,-1,0,133052,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,60,0,0,0,0 +3572,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +3573,11,2,0,18,0,0,0,0,-1,0,134403,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3574,11,3,0,18,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3575,7,0,2,0,0,0,0,0,-1,0,133232,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3576,7,0,6,0,0,0,0,0,-1,0,133219,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3577,7,0,4,0,0,0,0,0,-1,0,133217,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3578,4,2,8,7,0,0,0,0,-1,0,134585,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3579,4,3,5,3,2,0,0,0,-1,0,135040,10,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3580,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3581,2,15,1,13,0,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +3582,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3583,4,2,8,6,0,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3584,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3585,4,2,8,5,0,0,0,0,-1,0,132723,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3586,2,1,1,17,0,1,0,0,-1,0,132402,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +3587,4,1,7,6,45,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3588,4,1,7,9,45,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3589,4,1,7,6,12,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3590,4,1,7,9,12,0,0,0,-1,0,132605,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3591,4,1,7,6,22,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3592,4,1,7,9,22,0,0,0,-1,0,132610,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3593,4,1,7,6,32,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3594,4,1,7,9,32,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3595,4,1,7,6,1,0,0,0,-1,0,132513,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3596,4,1,7,9,1,0,0,0,-1,0,132606,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3597,4,1,7,6,17,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3598,4,1,7,9,17,0,0,0,-1,0,132610,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3599,4,1,7,6,1,0,0,0,-1,0,132495,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3600,4,1,7,9,1,0,0,0,-1,0,132602,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3601,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3602,4,1,7,6,5,0,0,0,-1,0,132495,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3603,4,1,7,9,5,0,0,0,-1,0,132602,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3604,11,3,8,18,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3605,11,2,8,18,0,0,0,0,-1,0,134404,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3606,4,1,7,6,5,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3607,4,1,7,9,5,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3608,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3609,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3610,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3611,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3612,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3613,12,0,0,0,0,0,0,0,-1,0,132943,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3614,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3615,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3616,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3617,12,0,0,0,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3618,12,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3619,12,0,0,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3620,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3621,12,0,0,0,0,0,0,0,-1,0,133731,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3622,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3623,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3624,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3625,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3626,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3627,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3628,12,0,0,0,0,0,0,0,-1,0,132943,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3629,12,0,0,0,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3630,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3631,12,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3632,12,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3633,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3634,12,0,0,0,0,0,0,0,-1,0,133730,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3635,12,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3636,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3637,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3638,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3639,12,0,0,0,0,0,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3640,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3641,4,1,7,9,3,0,0,0,-1,0,132602,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3642,4,1,7,9,4,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3643,4,1,7,9,9,0,0,0,-1,0,132605,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3644,4,1,7,9,7,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3645,4,1,7,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3646,4,1,7,9,21,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3647,4,1,7,9,18,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3648,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3649,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3650,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3651,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3652,4,6,1,14,9,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3653,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3654,4,6,1,14,9,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3655,4,6,1,14,16,4,0,0,-1,0,134949,9,0,65,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3656,4,6,1,14,22,4,0,0,-1,0,134949,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3657,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3658,12,0,2,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3659,12,0,2,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3660,12,0,2,0,0,0,0,0,-1,0,132761,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3661,2,10,2,17,1,2,0,0,-1,0,135158,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +3662,0,0,0,0,5,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3663,0,0,0,0,15,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3664,0,0,0,0,15,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3665,0,0,0,0,15,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3666,0,0,0,0,15,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3667,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3668,12,0,2,0,30,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3669,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3670,15,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3671,15,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3672,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3673,15,0,0,0,0,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3674,15,0,0,0,0,0,0,0,-1,0,132535,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3675,15,0,0,23,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3676,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3677,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3678,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3679,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3680,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3681,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3682,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3683,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3684,12,0,0,0,0,0,0,0,-1,0,132767,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3685,7,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3686,12,0,0,0,0,0,0,0,-1,0,132381,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3687,2,8,1,17,35,1,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +3688,12,0,0,0,0,0,0,0,-1,0,134086,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3689,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3690,12,0,0,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3691,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3692,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3693,12,0,0,0,0,0,0,0,-1,0,135276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3694,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3695,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3696,2,14,2,13,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3697,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3698,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3699,2,14,2,13,1,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3700,12,0,0,0,0,0,0,0,-1,0,134166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3701,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3702,15,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3703,0,0,0,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3704,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3705,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3706,12,0,2,0,30,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3707,12,0,2,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3708,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3709,12,0,0,0,0,0,0,0,-1,0,134166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3710,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3711,12,0,2,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3712,7,0,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3713,7,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3714,12,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3715,12,0,0,0,0,0,0,0,-1,0,132612,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3716,12,0,0,0,0,0,0,0,-1,0,134169,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3717,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3718,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3719,4,1,7,16,25,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3720,12,0,0,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3721,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3722,15,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3723,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3724,15,0,8,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3725,15,0,8,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3726,0,0,0,0,15,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3727,0,0,0,0,15,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3728,0,0,0,0,20,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3729,0,0,0,0,25,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3730,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3731,7,0,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3732,4,1,7,1,0,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3733,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3734,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3735,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3736,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3737,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3738,2,10,2,17,0,2,0,0,-1,0,135466,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +3739,4,0,0,11,0,0,0,0,-1,0,132501,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3740,2,7,1,21,19,3,5195,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +3741,4,2,8,8,0,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3742,2,2,2,15,0,0,0,0,-1,0,135490,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +3743,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3744,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3745,12,0,0,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3746,15,0,0,0,25,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3747,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3748,4,1,7,3,23,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3749,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3750,4,2,8,5,0,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3751,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3752,4,1,7,5,0,0,0,0,-1,0,135011,7,0,60,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3753,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3754,4,2,8,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3755,2,0,1,21,0,3,0,0,-1,0,132416,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +3756,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3757,4,0,2,23,1,7,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3758,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3759,4,1,7,10,0,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3760,4,0,1,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3761,4,6,1,14,0,4,0,0,-1,0,134947,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3762,1,0,7,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3763,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3764,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3765,4,3,5,3,0,0,0,0,-1,0,135034,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3766,15,0,0,0,0,0,0,0,-1,0,132921,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3767,15,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3768,0,0,0,0,18,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3769,15,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3770,0,0,0,0,15,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3771,0,0,0,0,25,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3772,0,0,3,0,25,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3773,0,0,7,0,35,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3774,2,4,2,13,1,7,0,0,-1,0,133711,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3775,0,0,3,0,20,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3776,0,0,3,0,50,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3777,7,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3778,2,2,2,15,26,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3779,2,1,1,17,27,1,0,0,-1,0,132402,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +3780,2,3,1,26,28,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +3781,2,8,1,17,29,1,0,0,-1,0,135324,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +3782,2,5,2,17,30,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +3783,2,7,1,21,31,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +3784,2,10,2,17,32,2,0,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,57,0,0,0,0 +3785,2,0,1,21,33,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +3786,2,15,1,13,34,3,0,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +3787,2,4,2,21,35,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +3788,4,0,2,12,35,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3789,4,0,2,12,30,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3790,4,0,2,12,30,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3791,4,0,2,12,35,0,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3792,4,1,7,6,29,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3793,4,1,7,8,27,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3794,4,1,7,9,33,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3795,4,1,7,16,31,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3796,4,1,7,10,28,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3797,4,1,7,7,34,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3798,4,1,7,3,30,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3799,4,1,7,5,32,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3800,4,2,8,6,34,0,0,0,-1,0,132515,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3801,4,2,8,8,30,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3802,4,2,8,9,29,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3803,4,1,7,16,33,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3804,4,2,8,10,31,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3805,4,2,8,7,27,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3806,4,2,8,3,32,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3807,4,2,8,5,28,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3808,4,3,5,6,29,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3809,4,3,5,8,27,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3810,4,3,5,9,33,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3811,4,1,7,16,32,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3812,4,3,5,10,31,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3813,4,3,5,7,30,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3814,4,3,5,3,34,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3815,4,3,5,5,28,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3816,4,6,1,14,31,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3817,4,6,1,14,28,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3818,7,0,7,0,0,0,0,0,-1,0,134193,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3819,7,0,7,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3820,7,0,7,0,0,0,0,0,-1,0,134191,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3821,7,0,7,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3822,2,8,1,17,0,1,0,0,-1,0,135272,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +3823,0,0,3,0,23,0,0,0,-1,0,134798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3824,0,0,3,0,24,0,0,0,-1,0,134803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3825,0,0,3,0,25,0,0,0,-1,0,134823,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3826,0,0,3,0,26,0,0,0,-1,0,134859,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3827,0,0,3,0,22,0,0,0,-1,0,134852,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3828,0,0,3,0,29,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3829,0,0,3,0,30,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3830,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3831,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3832,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3833,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3834,4,1,7,7,0,0,0,0,-1,0,134587,7,0,30,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3835,4,3,5,9,28,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3836,4,3,5,1,29,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3837,4,3,5,1,33,0,0,0,-1,0,133138,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3838,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3839,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3840,4,3,5,3,27,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3841,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3842,4,3,5,7,26,0,0,0,-1,0,134585,10,0,75,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3843,4,3,5,7,29,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3844,4,3,5,5,31,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3845,4,3,5,5,35,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3846,4,3,5,8,32,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3847,4,3,5,8,35,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3848,2,15,1,13,15,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3849,2,7,1,21,27,3,0,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +3850,2,7,1,13,30,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +3851,2,5,2,17,26,1,0,0,-1,0,133044,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +3852,2,5,2,17,29,1,0,0,-1,0,133041,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +3853,2,8,1,17,31,1,0,0,-1,0,135326,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +3854,2,8,1,17,35,1,0,0,-1,0,135275,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,118,0,0,0,0 +3855,2,1,1,17,32,1,0,0,-1,0,135423,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,108,0,0,0,0 +3856,2,1,1,17,35,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,87,0,0,0,0 +3857,7,0,7,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3858,7,0,1,0,0,0,0,0,-1,0,134576,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3859,7,0,2,0,0,0,0,0,-1,0,133234,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3860,7,0,2,0,0,0,0,0,-1,0,133220,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3861,7,0,2,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3862,12,0,0,0,0,0,0,0,-1,0,134251,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3863,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3864,7,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3865,2,15,1,22,1,3,0,0,-1,0,133980,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3866,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3867,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3868,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3869,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3870,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3871,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3872,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3873,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3874,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3875,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3876,12,0,0,0,0,0,0,0,-1,0,134298,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3877,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3878,15,0,1,0,27,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3879,12,0,0,0,0,0,0,0,-1,0,132179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3880,12,0,0,0,0,0,0,0,-1,0,134176,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3881,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3882,15,0,2,0,0,0,0,0,-1,0,132915,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3883,4,1,7,1,17,0,0,0,-1,0,133072,7,0,35,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3884,4,2,8,1,17,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3885,4,3,5,1,17,0,0,0,-1,0,133071,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3886,4,1,7,1,22,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3887,4,2,8,1,22,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3888,4,3,5,1,22,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3889,4,1,7,1,32,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3890,4,2,8,1,32,0,0,0,-1,0,133122,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3891,4,3,5,1,32,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3892,4,1,7,1,45,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3893,4,2,8,1,45,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3894,4,3,5,1,45,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3895,2,0,1,21,25,1,0,0,-1,0,132392,8,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +3896,4,1,7,8,45,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3897,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3898,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3899,15,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3900,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3901,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3902,2,10,2,17,13,2,0,0,-1,0,135466,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +3903,12,0,0,0,0,0,0,0,-1,0,133723,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3904,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3905,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3906,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3907,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3908,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3909,12,0,0,0,0,0,0,0,-1,0,135032,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3910,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3911,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3912,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3913,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3914,1,0,7,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3915,12,0,0,0,0,0,0,0,-1,0,133724,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3916,12,0,0,0,0,0,0,0,-1,0,133727,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3917,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3918,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3919,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3920,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3921,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3922,12,0,0,0,0,0,0,0,-1,0,133789,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3923,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3924,12,0,0,0,0,0,0,0,-1,0,133476,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3925,12,0,0,0,0,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3926,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3927,0,0,0,0,35,0,0,0,-1,0,133945,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3928,0,0,0,0,35,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3929,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3930,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3931,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3932,12,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3933,2,7,1,21,18,6,0,0,-1,0,135131,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3934,2,8,1,21,19,2,0,0,-1,0,135574,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +3935,2,7,1,21,20,3,0,0,-1,0,135325,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +3936,4,1,7,6,37,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3937,4,1,7,8,41,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3938,4,1,7,9,39,0,0,0,-1,0,132604,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3939,4,1,7,16,42,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3940,4,1,7,10,43,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3941,4,1,7,7,40,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3942,4,1,7,3,44,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3943,4,1,7,5,38,0,0,0,-1,0,135009,7,0,70,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3944,4,1,7,6,48,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3945,4,1,7,8,50,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3946,4,1,7,9,49,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3947,4,1,7,16,47,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3948,4,1,7,10,53,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3949,4,1,7,7,54,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3950,4,1,7,3,51,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3951,4,1,7,5,52,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3952,4,1,7,6,63,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3953,4,1,7,8,59,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3954,4,1,7,9,60,0,0,0,-1,0,132604,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3955,4,1,7,16,57,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3956,4,1,7,10,58,0,0,0,-1,0,132958,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3957,4,1,7,7,62,0,0,0,-1,0,134587,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3958,4,1,7,3,64,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3959,4,1,7,5,61,0,0,0,-1,0,135009,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3960,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3961,4,2,8,6,39,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3962,4,2,8,8,43,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3963,4,2,8,9,38,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3964,4,1,7,16,41,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3965,4,2,8,10,44,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3966,4,2,8,7,37,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3967,4,2,8,3,42,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3968,4,2,8,5,40,0,0,0,-1,0,135017,7,0,85,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3969,4,2,8,6,50,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3970,4,2,8,8,49,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3971,4,2,8,9,54,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3972,4,1,7,16,51,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3973,4,2,8,10,53,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3974,4,2,8,7,48,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3975,4,2,8,3,47,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3976,4,2,8,5,52,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3977,4,2,8,6,58,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3978,4,2,8,8,64,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3979,4,2,8,9,62,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3980,4,1,7,16,57,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3981,4,2,8,10,63,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3982,4,2,8,7,61,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3983,4,2,8,3,60,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3984,4,2,8,5,59,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3985,4,1,7,6,35,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3986,4,6,1,14,43,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3987,4,6,1,14,48,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3988,4,6,1,14,60,4,0,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3989,4,6,1,14,37,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3990,4,6,1,14,51,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3991,4,6,1,14,63,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3992,4,3,5,6,47,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3993,4,3,5,8,48,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3994,4,3,5,9,53,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3995,4,1,7,16,52,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3996,4,3,5,10,54,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3997,4,3,5,7,51,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3998,4,3,5,3,50,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3999,4,3,5,5,49,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4000,4,3,5,6,39,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4001,4,3,5,8,41,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4002,4,3,5,9,43,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4003,4,1,7,16,44,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4004,4,3,5,10,42,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4005,4,3,5,7,38,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4006,4,3,5,3,37,0,0,0,-1,0,135046,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4007,4,3,5,5,40,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4008,4,3,5,6,58,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4009,4,3,5,8,60,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4010,4,3,5,9,61,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4011,4,1,7,16,63,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4012,4,3,5,10,62,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4013,4,3,5,7,59,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4014,4,3,5,3,64,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4015,4,3,5,5,57,0,0,0,-1,0,132736,10,0,100,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4016,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4017,2,7,1,21,41,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +4018,2,8,1,17,37,1,0,0,-1,0,135349,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +4019,2,0,1,21,43,3,0,0,-1,0,135421,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,52,0,0,0,0 +4020,2,1,1,17,44,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +4021,2,4,2,21,41,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +4022,2,5,2,17,45,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +4023,2,15,1,13,39,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +4024,2,10,2,17,42,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,90,0,0,0,0 +4025,2,2,2,15,40,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +4026,2,3,1,26,38,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,43,0,0,0,0 +4027,12,0,0,0,0,0,0,0,-1,0,135637,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4028,12,0,0,0,0,0,0,0,-1,0,135437,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4029,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4030,4,0,2,12,40,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4031,4,0,2,12,40,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4032,4,0,2,12,45,0,0,0,-1,0,133039,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4033,4,0,2,12,45,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4034,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4035,4,1,7,20,26,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4036,4,1,7,9,22,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4037,4,1,7,7,25,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4038,4,1,7,20,32,0,0,0,-1,0,132669,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4039,4,1,7,1,30,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4040,4,1,7,10,29,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4041,4,1,7,1,34,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4042,4,1,7,10,34,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4043,4,1,7,9,33,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4044,4,1,7,7,35,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4045,4,1,7,9,37,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4046,4,1,7,7,40,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4047,4,1,7,8,38,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4048,4,2,8,1,26,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4049,4,2,8,9,23,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4050,4,2,8,7,26,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4051,4,2,8,8,25,0,0,0,-1,0,132543,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4052,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4053,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4054,4,2,8,7,30,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4055,4,2,8,8,29,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4056,12,0,0,0,35,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4057,4,2,8,5,31,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4058,4,2,8,5,36,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4059,4,2,8,9,32,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4060,4,2,8,7,35,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4061,4,2,8,9,37,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4062,4,2,8,7,40,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4063,4,2,8,10,38,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4064,4,6,1,14,25,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4065,4,6,1,14,31,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4066,4,6,1,14,30,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4067,4,6,1,14,34,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4068,4,6,1,14,35,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4069,4,6,1,14,42,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4070,4,6,1,14,36,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4071,4,3,5,5,26,0,0,0,-1,0,132751,10,0,100,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4072,4,3,5,10,25,0,0,0,-1,0,132937,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4073,4,3,5,8,26,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4074,4,3,5,5,31,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4075,4,3,5,10,29,0,0,0,-1,0,132959,10,0,35,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4076,4,3,5,8,30,0,0,0,-1,0,132541,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4077,4,3,5,1,30,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4078,4,3,5,1,34,0,0,0,-1,0,133131,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4079,4,3,5,7,35,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4080,4,3,5,1,40,0,0,0,-1,0,133118,10,0,60,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4081,4,3,5,7,40,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,207,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +4082,4,3,5,5,42,0,0,0,-1,0,132634,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4083,4,3,5,10,39,0,0,0,-1,0,132966,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4084,4,3,5,7,41,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4085,12,0,1,0,0,1,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4086,2,3,1,26,0,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +4087,2,2,2,15,36,0,5851,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +4088,2,15,1,13,42,3,5270,0,-1,0,135351,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +4089,2,3,1,26,43,0,5853,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +4090,2,4,2,13,41,7,0,0,-1,0,132790,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +4091,2,15,1,13,42,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +4092,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4093,15,0,0,0,0,0,0,0,-1,0,134413,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4094,12,0,0,0,0,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4095,5,0,0,0,0,0,0,0,-1,0,134325,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4096,15,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4097,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4098,12,0,0,0,45,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4099,15,0,0,0,0,0,0,0,-1,0,134347,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4100,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4101,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4102,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4103,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4104,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4105,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4106,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4107,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4108,4,2,8,7,0,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4109,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4110,2,2,2,15,0,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +4111,2,3,1,26,0,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +4112,4,0,3,2,0,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4113,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4114,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4115,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4116,2,7,1,21,0,3,0,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +4117,4,1,7,6,0,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4118,4,3,5,9,0,0,0,0,-1,0,133345,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4119,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4120,4,1,7,20,0,0,0,0,-1,0,132660,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4121,4,1,7,10,0,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4122,2,4,2,21,0,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +4123,4,3,5,3,0,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4124,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4125,4,0,3,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4126,2,0,1,21,0,3,0,0,-1,0,132415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +4127,2,3,1,26,0,0,0,0,-1,0,135611,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +4128,2,5,2,17,0,1,0,0,-1,0,134436,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +4129,4,6,1,14,0,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4130,4,0,0,12,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4131,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4132,4,3,5,9,0,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4133,4,1,7,9,0,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4134,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,99,0,0,0,0 +4135,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4136,4,3,5,8,0,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4137,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4138,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4139,4,1,7,8,0,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4140,4,1,7,3,0,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4141,9,0,0,0,6,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4142,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4143,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4144,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4145,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4146,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4147,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4148,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4149,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4150,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4151,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4152,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4153,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4154,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4155,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4156,9,0,0,0,37,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4157,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4158,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4159,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4160,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4161,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4162,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4163,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4164,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4165,9,0,0,0,38,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4166,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4167,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4168,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4169,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4170,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4171,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4172,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4173,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4174,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4175,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4176,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4177,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4178,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4179,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4180,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4181,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4182,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4183,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4184,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4185,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4186,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4187,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4188,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4189,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4190,4,2,8,5,22,0,0,0,-1,0,132721,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4191,4,2,8,7,22,0,0,0,-1,0,134582,7,0,60,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4192,4,2,8,10,22,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4193,4,2,8,1,22,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4194,4,2,8,9,22,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4195,4,2,8,8,22,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4196,4,2,8,3,25,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4197,4,1,7,3,0,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4198,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4199,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4200,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4201,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4202,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4203,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4204,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4205,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4206,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4207,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4208,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4209,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4210,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4211,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4212,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4213,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4214,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4215,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4216,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4217,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4218,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4219,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4220,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4221,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4222,9,0,0,0,32,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4223,9,0,0,0,36,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4224,9,0,0,0,35,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4225,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4226,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4227,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4228,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4229,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4230,9,0,0,0,32,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4231,7,0,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4232,7,0,8,0,0,0,0,0,-1,0,134364,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4233,7,0,8,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4234,7,0,8,0,0,0,0,0,-1,0,134256,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4235,7,0,8,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4236,7,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4237,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4238,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4239,4,2,8,10,8,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4240,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4241,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4242,4,2,8,7,10,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4243,4,2,8,5,12,0,0,0,-1,0,132724,7,0,65,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4244,4,2,8,5,15,0,0,0,-1,0,132725,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4245,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4246,4,2,8,6,11,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4247,4,2,8,10,24,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4248,4,2,8,10,21,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4249,4,2,8,6,20,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4250,4,2,8,6,20,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4251,4,2,8,3,21,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4252,4,2,8,3,23,0,0,0,-1,0,135043,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4253,4,2,8,10,22,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4254,4,2,8,10,25,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4255,4,2,8,5,26,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4256,4,2,8,5,30,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4257,4,2,8,6,27,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4258,4,2,8,6,29,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4259,4,2,8,9,31,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4260,4,2,8,9,34,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4261,4,1,7,7,3,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4262,4,2,8,6,32,0,0,0,-1,0,132490,7,0,35,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4263,4,6,1,14,5,4,0,0,-1,0,134952,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4264,4,2,8,6,35,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4265,0,0,8,0,20,0,0,0,-1,0,133610,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4266,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4267,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4268,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4269,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4270,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4271,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4272,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4273,9,0,0,0,16,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4274,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4275,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4276,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4277,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4278,12,0,1,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4279,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4280,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4281,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4282,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4283,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4284,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4285,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4286,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4287,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4288,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4289,7,0,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4290,4,6,1,14,13,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4291,7,0,8,0,0,0,0,0,-1,0,132906,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4292,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4293,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4294,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4295,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4296,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4297,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4298,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4299,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4300,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4301,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4302,2,15,1,13,5,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +4303,2,4,2,21,7,3,0,0,-1,0,133054,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +4304,7,0,8,0,0,0,0,0,-1,0,134257,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4305,7,0,8,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4306,7,0,8,0,0,0,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4307,4,1,7,10,5,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4308,4,1,7,9,7,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4309,4,1,7,7,9,0,0,0,-1,0,134587,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4310,4,1,7,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4311,4,1,7,16,16,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4312,4,1,7,8,11,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4313,4,1,7,8,15,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4314,4,1,7,3,17,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4315,4,1,7,3,19,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4316,4,1,7,7,17,0,0,0,-1,0,134581,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4317,4,1,7,7,20,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4318,4,1,7,10,21,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4319,4,1,7,10,24,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4320,4,1,7,8,20,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4321,4,1,7,8,23,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4322,4,1,7,1,28,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4323,4,1,7,1,29,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4324,4,1,7,5,25,0,0,0,-1,0,132678,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4325,4,1,7,8,30,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4326,4,1,7,16,32,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4327,4,1,7,16,35,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,29,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0 +4328,4,1,7,6,31,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4329,4,1,7,6,35,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4330,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4331,4,1,7,10,20,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4332,4,0,7,4,0,0,0,0,-1,0,135031,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4333,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4334,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4335,4,0,7,4,0,0,0,0,-1,0,135020,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4336,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4337,7,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4338,7,0,7,0,0,0,0,0,-1,0,132892,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4339,7,0,8,0,0,0,0,0,-1,0,132894,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4340,7,0,3,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4341,7,0,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4342,7,0,3,0,0,0,0,0,-1,0,134713,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4343,4,1,7,7,5,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4344,4,0,7,4,0,0,0,0,-1,0,135006,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4345,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4346,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4347,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4348,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4349,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4350,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4351,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4352,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4353,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4354,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4355,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4356,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4357,7,1,8,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4358,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4359,7,1,8,0,0,0,0,0,-1,0,134068,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4360,7,2,8,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4361,7,1,8,0,0,0,0,0,-1,0,133025,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4362,2,3,1,26,5,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +4363,7,1,8,0,0,0,0,0,-1,0,132997,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4364,7,1,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4365,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4366,7,3,8,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4367,7,2,4,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4368,4,1,7,1,0,0,0,0,-1,0,133149,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4369,2,3,1,26,16,0,0,0,-1,0,135616,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +4370,7,2,8,0,0,0,0,0,-1,0,133709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4371,7,1,8,0,0,0,0,0,-1,0,133024,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4372,2,3,1,26,19,0,0,0,-1,0,135616,8,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +4373,4,1,7,1,0,0,0,0,-1,0,133149,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4374,7,2,8,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4375,7,1,8,0,0,0,0,0,-1,0,132996,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4376,7,3,8,0,15,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4377,7,1,8,0,0,0,0,0,-1,0,133853,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4378,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4379,2,3,1,26,21,0,0,0,-1,0,135616,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +4380,7,2,8,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4381,7,3,8,12,0,0,0,0,-1,0,133001,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4382,7,1,8,0,0,0,0,0,-1,0,133006,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4383,2,3,1,26,24,0,0,0,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +4384,7,2,8,0,0,0,0,0,-1,0,136071,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4385,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4386,7,3,8,0,21,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4387,7,1,8,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4388,7,3,8,0,0,0,0,0,-1,0,134441,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4389,7,1,8,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4390,7,2,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4391,7,3,8,0,30,0,0,0,-1,0,133076,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4392,7,3,8,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4393,4,1,7,1,32,0,0,0,-1,0,133146,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4394,7,2,8,0,0,0,0,0,-1,0,133709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4395,7,2,8,0,0,0,0,0,-1,0,134954,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4396,7,3,8,12,30,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4397,7,3,8,12,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4398,7,2,4,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4399,7,1,8,0,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4400,7,1,8,0,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4401,7,3,8,0,0,0,0,0,-1,0,132761,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4402,7,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4403,7,3,8,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4404,7,1,8,0,0,0,0,0,-1,0,133218,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4405,7,3,8,0,5,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4406,7,3,8,0,10,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4407,7,3,8,0,20,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4408,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4409,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4410,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4411,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4412,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4413,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4414,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4415,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4416,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4417,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4418,0,0,0,0,35,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4419,0,0,7,0,35,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4420,0,0,7,0,23,0,0,0,-1,0,134941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4421,0,0,7,0,30,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4422,0,0,7,0,35,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4423,0,0,7,0,30,0,0,0,-1,0,134941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4424,0,0,7,0,30,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4425,0,0,7,0,40,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4426,0,0,7,0,40,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4427,0,0,7,0,29,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4428,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4429,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4430,4,0,3,2,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4431,12,0,0,0,25,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4432,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4433,12,0,0,0,25,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4434,4,1,7,7,15,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4435,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4436,4,1,7,6,16,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4437,2,10,2,17,15,2,0,0,-1,0,135151,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,54,0,0,0,0 +4438,4,3,5,9,25,0,0,0,-1,0,132602,10,0,40,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4439,2,4,2,21,17,3,0,0,-1,0,133485,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +4440,12,0,0,0,0,0,0,0,-1,0,134414,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4441,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4442,4,2,8,3,18,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4443,4,3,5,3,0,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4444,4,6,1,14,19,4,0,0,-1,0,134321,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4445,2,0,1,21,18,3,0,0,-1,0,132407,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +4446,2,15,1,13,21,3,0,0,-1,0,135638,8,0,60,0,0,5,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,39,7,0,0,0 +4447,4,1,7,16,21,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4448,4,3,5,5,22,0,0,0,-1,0,134321,10,0,95,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4449,2,15,1,13,22,3,0,0,-1,0,134298,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +4450,12,0,0,0,0,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4451,5,0,0,0,0,0,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4452,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4453,12,0,0,0,0,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4454,2,15,1,13,21,3,0,0,-1,0,135652,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +4455,4,2,8,5,28,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4456,4,2,8,6,28,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4457,0,0,0,0,25,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4458,12,0,0,0,0,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4459,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4460,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4461,7,0,8,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4462,4,1,7,16,26,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4463,4,1,7,6,26,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4464,4,3,5,8,27,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4465,4,3,5,10,27,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4466,12,0,0,0,0,0,0,0,-1,0,133434,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4467,12,0,0,0,0,0,0,0,-1,0,133435,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4468,12,0,0,0,0,0,0,0,-1,0,135272,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4469,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4470,5,0,0,0,0,0,0,0,-1,0,135435,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4471,5,0,0,0,0,0,0,0,-1,0,135237,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4472,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4473,12,0,5,0,0,0,0,0,-1,0,132612,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4474,2,2,2,15,27,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +4475,15,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4476,4,1,7,20,29,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4477,4,6,1,14,29,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4478,4,3,5,7,40,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,217,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0 +4479,0,0,0,0,25,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4480,0,0,0,0,25,0,0,0,-1,0,133435,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4481,0,0,0,0,25,0,0,0,-1,0,133438,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4482,12,0,0,0,0,0,0,0,-1,0,133470,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4483,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4484,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4485,13,0,0,0,0,0,0,0,-1,0,134236,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4486,15,0,0,0,0,0,0,0,-1,0,133472,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4487,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4488,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4489,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4490,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4491,12,0,0,1,0,0,0,0,-1,0,133149,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4492,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4493,12,0,0,0,0,0,0,0,-1,0,134118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4494,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4495,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4496,1,0,8,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4497,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4498,1,0,0,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4499,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4500,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4501,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4502,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4503,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4504,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4505,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4506,12,0,0,0,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4507,4,6,1,14,0,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4508,4,3,5,5,0,0,0,0,-1,0,132743,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4509,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4510,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4511,2,4,2,21,0,3,0,0,-1,0,133044,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +4512,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4513,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4514,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4515,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4516,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4517,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4518,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4519,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4520,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4521,12,0,0,0,0,0,0,0,-1,0,135234,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4522,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4523,12,0,0,0,0,0,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4524,12,0,0,0,0,0,0,0,-1,0,135233,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4525,12,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4526,12,0,0,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4527,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4528,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4529,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4530,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4531,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4532,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4533,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4534,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4535,4,0,0,11,0,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4536,0,0,0,0,1,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4537,0,0,0,0,5,0,0,0,-1,0,133980,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4538,0,0,0,0,15,0,0,0,-1,0,133978,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4539,0,0,0,0,25,0,0,0,-1,0,133976,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4540,0,0,0,0,1,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4541,0,0,0,0,5,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4542,0,0,0,0,15,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4543,4,2,8,1,0,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4544,0,0,0,0,25,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4545,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4546,0,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4547,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,56,0,0,0,0 +4548,2,5,2,17,0,1,0,0,-1,0,133041,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +4549,4,0,5,11,0,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4550,4,0,5,11,0,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4551,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4552,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4553,15,0,0,0,0,0,0,0,-1,0,135239,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4554,15,0,0,0,0,0,0,0,-1,0,135240,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4555,15,0,0,0,0,0,0,0,-1,0,134306,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4556,15,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4557,15,0,0,0,0,0,0,0,-1,0,135813,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4558,15,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4559,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4560,2,7,1,13,1,3,0,0,-1,0,135325,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4561,2,0,1,21,6,3,5169,0,-1,0,132410,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +4562,2,1,1,17,5,1,5174,0,-1,0,135420,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,27,0,0,0,0 +4563,2,4,2,21,4,3,0,0,-1,0,133476,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +4564,2,5,2,17,8,1,5175,0,-1,0,133489,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +4565,2,15,1,13,1,3,0,0,-1,0,135637,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4566,2,10,2,17,8,2,5176,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +4567,2,8,1,17,11,1,5182,0,-1,0,135274,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4568,2,0,1,13,16,3,5187,0,-1,0,132403,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +4569,2,4,2,21,9,3,5170,0,-1,0,133045,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4570,2,5,2,17,10,1,5175,0,-1,0,133052,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +4571,2,15,1,13,12,3,5180,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +4572,12,0,0,0,11,0,0,0,-1,0,133476,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4573,15,0,0,0,25,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4574,4,3,5,7,20,0,0,0,-1,0,0,10,0,70,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4575,2,10,2,17,14,2,5194,0,-1,0,135168,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +4576,2,2,2,15,16,0,0,0,-1,0,135495,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +4577,2,3,1,26,8,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +4578,15,0,8,0,0,0,0,0,-1,0,134413,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4579,15,0,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4580,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4581,15,0,8,0,0,0,0,0,-1,0,134353,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4582,15,0,0,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4583,15,0,0,0,0,0,0,0,-1,0,134353,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4584,15,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4585,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4586,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4587,15,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4588,15,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4589,15,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4590,15,0,0,0,0,0,0,0,-1,0,133708,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4591,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4592,0,0,0,0,5,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4593,0,0,0,0,15,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4594,0,0,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4595,0,0,3,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4596,0,0,3,0,5,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4597,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4598,0,0,8,0,0,0,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4599,0,0,0,0,35,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4600,0,0,3,0,25,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4601,0,0,0,0,35,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4602,0,0,0,0,35,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4603,0,0,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4604,0,0,0,0,1,0,0,0,-1,0,134534,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4605,0,0,0,0,5,0,0,0,-1,0,134532,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4606,0,0,0,0,15,0,0,0,-1,0,134529,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4607,0,0,0,0,25,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4608,0,0,0,0,35,0,0,0,-1,0,134524,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4609,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4610,12,0,0,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4611,5,0,0,0,0,0,0,0,-1,0,134564,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4612,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4613,12,0,0,0,30,0,0,0,-1,0,134711,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4614,4,0,0,2,30,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4615,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4616,2,14,1,13,0,3,0,0,-1,0,134709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4617,12,0,0,0,0,0,0,0,-1,0,134708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4618,12,0,0,0,0,0,0,0,-1,0,133040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4619,12,0,0,0,0,0,0,0,-1,0,135641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4620,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4621,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4622,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4623,0,0,3,0,33,0,0,0,-1,0,134847,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4624,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4625,7,0,7,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4626,12,0,0,0,0,0,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4627,12,0,0,0,0,0,0,0,-1,0,135234,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4628,12,0,0,0,0,0,0,0,-1,0,132601,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4629,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4630,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4631,12,0,0,0,0,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4632,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4633,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4634,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4635,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4636,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4637,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4638,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4639,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4640,12,0,0,0,0,0,0,0,-1,0,134566,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4641,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4642,4,0,3,23,1,7,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4643,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4644,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4645,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4646,12,0,2,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4647,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4648,12,0,0,0,0,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4649,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4650,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4651,12,0,0,0,0,0,0,0,-1,0,133742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4652,4,6,1,14,0,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4653,4,3,5,8,0,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4654,12,0,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4655,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4656,0,0,0,0,1,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4657,4,3,5,3,6,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4658,4,1,7,16,3,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4659,4,3,5,6,3,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4660,4,1,7,8,13,0,0,0,-1,0,132540,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4661,4,1,7,3,21,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4662,4,1,7,16,3,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4663,4,1,7,6,4,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4664,4,2,8,3,6,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4665,4,1,7,16,3,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4666,4,2,8,6,4,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4667,4,3,5,3,8,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4668,4,1,7,16,4,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4669,4,3,5,6,5,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4670,4,1,7,3,8,0,0,0,-1,0,135040,7,0,30,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4671,4,1,7,16,4,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4672,4,1,7,6,5,0,0,0,-1,0,132492,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4673,4,2,8,3,7,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4674,4,1,7,16,4,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4675,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4676,4,3,5,10,12,0,0,0,-1,0,132937,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4677,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4678,4,3,5,6,9,0,0,0,-1,0,132494,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4679,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4680,4,1,7,16,8,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4681,4,3,5,6,9,0,0,0,-1,0,132514,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4682,4,1,7,3,12,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4683,4,1,7,16,8,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4684,4,1,7,6,8,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4685,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4686,4,1,7,16,7,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4687,4,1,7,6,9,0,0,0,-1,0,132492,7,0,18,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4688,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4689,4,1,7,16,8,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4690,4,2,8,6,8,0,0,0,-1,0,132510,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4691,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4692,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4693,4,2,8,6,9,0,0,0,-1,0,132505,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4694,4,3,5,3,17,0,0,0,-1,0,135059,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4695,4,1,7,16,13,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4696,4,0,3,23,54,7,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4697,4,3,5,6,15,0,0,0,-1,0,132523,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4698,4,1,7,3,16,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4699,4,1,7,6,13,0,0,0,-1,0,132511,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4700,4,2,8,3,16,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4701,4,1,7,16,11,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4702,12,0,0,0,0,0,0,0,-1,0,134707,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4703,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4704,2,14,0,21,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4705,4,3,5,3,22,0,0,0,-1,0,135039,10,0,55,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4706,4,1,7,16,19,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4707,4,3,5,6,21,0,0,0,-1,0,132493,10,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4708,4,1,7,6,19,0,0,0,-1,0,132500,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4709,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4710,4,1,7,16,17,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4711,4,1,7,16,23,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4712,4,3,5,6,24,0,0,0,-1,0,132521,10,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4713,4,1,7,16,21,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4714,4,1,7,6,22,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4715,4,1,7,16,22,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4716,4,1,7,16,27,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4717,4,3,5,6,29,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4718,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4719,4,1,7,16,27,0,0,0,-1,0,132682,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4720,4,1,7,6,28,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4721,4,2,8,3,30,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4722,4,1,7,16,27,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4723,4,1,7,7,24,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4724,4,2,8,1,25,0,0,0,-1,0,133122,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4725,4,3,5,3,35,0,0,0,-1,0,135045,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4726,4,1,7,16,31,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4727,4,3,5,6,33,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4728,4,3,5,3,0,0,0,0,-1,0,135034,10,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4729,4,1,7,3,34,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4730,2,0,1,21,2,3,0,0,-1,0,134707,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +4731,4,2,8,3,34,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4732,4,1,7,16,32,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4733,4,3,5,3,41,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4734,4,1,7,3,38,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4735,4,1,7,16,36,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4736,4,1,7,6,37,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4737,4,2,8,3,39,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4738,4,2,8,6,37,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4739,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4740,12,0,0,0,0,0,0,0,-1,0,132918,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4741,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4742,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4743,4,0,3,2,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4744,4,1,7,9,0,0,0,0,-1,0,132617,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4745,4,3,5,9,0,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4746,4,1,7,20,0,0,0,0,-1,0,132660,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4747,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4748,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4749,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4750,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4751,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4752,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4753,12,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4754,12,0,0,0,0,0,0,0,-1,0,132794,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4755,12,0,0,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4756,15,0,8,0,0,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4757,15,0,8,0,0,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4758,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4759,12,0,0,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4760,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4761,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4762,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4763,2,2,2,15,4,0,0,0,-1,0,135500,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +4764,4,2,8,3,5,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4765,2,7,1,21,9,3,0,0,-1,0,135321,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +4766,2,7,1,21,8,3,0,0,-1,0,135325,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +4767,4,1,7,10,10,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4768,4,1,7,10,10,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4769,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4770,12,0,0,0,0,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4771,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4772,4,1,7,16,6,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4773,4,3,5,9,7,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4774,4,3,5,9,10,0,0,0,-1,0,132602,10,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4775,15,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4776,15,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4777,2,5,2,17,13,1,0,0,-1,0,133053,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +4778,2,5,2,17,14,1,0,0,-1,0,133476,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +4779,15,0,0,0,0,0,0,0,-1,0,135240,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4780,15,0,0,0,0,0,0,0,-1,0,135232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4781,4,1,7,5,15,0,0,0,-1,0,135014,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4782,4,1,7,20,13,0,0,0,-1,0,132658,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4783,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4784,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4785,4,1,7,6,19,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4786,4,1,7,6,15,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4787,15,0,0,0,0,0,0,0,-1,0,132386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4788,4,2,8,8,15,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4789,4,2,8,8,13,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4790,4,1,7,16,20,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4791,0,0,3,0,25,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4792,4,1,7,16,18,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4793,4,1,7,16,19,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4794,4,2,8,9,20,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4795,4,2,8,9,20,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4796,4,2,8,9,20,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4797,4,1,7,16,20,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4798,4,1,7,16,20,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4799,4,1,7,16,18,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4800,4,3,5,7,18,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4801,12,0,8,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4802,12,0,8,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4803,12,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4804,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4805,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4806,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4807,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4808,12,0,0,0,0,0,0,0,-1,0,135238,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4809,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4810,4,2,8,3,32,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4811,4,2,8,3,15,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4812,4,3,5,3,14,0,0,0,-1,0,135040,10,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4813,15,0,0,0,0,0,0,0,-1,0,133676,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4814,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4815,4,3,5,3,12,0,0,0,-1,0,135040,10,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4816,4,3,5,7,19,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4817,2,8,1,17,17,1,0,0,-1,0,135311,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +4818,2,8,1,17,19,1,0,0,-1,0,135329,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,65,0,0,0,0 +4819,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4820,4,6,1,14,20,4,0,0,-1,0,134956,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4821,4,6,1,14,18,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4822,4,6,1,14,18,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4823,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4824,2,0,1,21,22,3,0,0,-1,0,132405,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +4825,2,0,1,13,24,3,0,0,-1,0,132415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +4826,2,0,1,21,21,3,0,0,-1,0,132417,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +4827,4,1,7,6,23,0,0,0,-1,0,132518,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4828,4,1,7,6,22,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4829,4,1,7,6,24,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4830,4,2,8,7,23,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4831,4,2,8,7,21,0,0,0,-1,0,134590,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4832,4,2,8,7,24,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4833,4,3,5,3,23,0,0,0,-1,0,135036,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4834,12,0,0,0,0,0,0,0,-1,0,133470,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4835,4,3,5,3,25,0,0,0,-1,0,135036,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4836,4,0,3,23,23,7,0,0,-1,0,133434,21,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4837,4,0,8,23,25,7,0,0,-1,0,133438,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4838,4,0,8,23,21,7,0,0,-1,0,134564,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4839,12,0,0,0,5,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4840,2,15,1,13,0,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +4841,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4842,0,0,0,3,0,0,0,0,-1,0,132381,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4843,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4844,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4845,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4846,12,0,0,0,0,0,0,0,-1,0,134063,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4847,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4848,12,0,0,0,0,0,0,0,-1,0,135997,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4849,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4850,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4851,12,0,0,0,1,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4852,7,2,0,0,27,0,0,0,-1,0,133581,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4853,4,2,8,1,5,0,0,0,-1,0,132381,7,0,30,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4854,4,1,7,16,6,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4855,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4856,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4857,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4858,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4859,12,0,0,0,0,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4860,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4861,4,2,8,5,5,0,0,0,-1,0,132715,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4862,12,0,0,0,0,0,0,0,-1,0,132274,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4863,12,0,0,0,0,0,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4864,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4865,15,0,8,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4866,12,0,0,0,0,0,0,0,-1,0,136218,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4867,15,0,0,0,0,1,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4868,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4869,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4870,12,0,0,0,0,0,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4871,12,0,0,0,0,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4872,15,0,3,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4873,15,0,0,0,0,1,0,0,-1,0,135232,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4874,15,0,3,0,0,0,0,0,-1,0,133719,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4875,15,0,0,0,0,1,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4876,15,0,3,0,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4877,15,0,0,0,0,1,0,0,-1,0,132381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4878,15,0,3,0,0,0,0,0,-1,0,135493,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4879,15,0,0,0,0,1,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4880,15,0,3,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4881,12,0,0,0,1,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4882,13,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4883,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4884,12,0,0,0,0,0,0,0,-1,0,135034,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4885,12,0,0,0,0,0,0,0,-1,0,135035,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4886,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4887,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4888,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4889,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4890,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4891,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4892,12,0,0,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4893,12,0,0,0,0,0,0,0,-1,0,133722,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4894,12,0,0,0,0,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4895,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4896,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4897,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4898,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4899,2,18,2,26,20,1,0,0,-1,0,135530,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,22,0,0,0,0 +4900,2,17,2,17,20,1,0,0,-1,0,135124,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4901,2,6,1,17,20,1,0,0,-1,0,135574,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4902,2,19,2,26,1,0,0,0,-1,0,135464,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +4903,12,0,0,0,4,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4904,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4905,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4906,4,2,8,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4907,4,2,8,5,0,0,0,0,-1,0,132724,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4908,4,2,8,9,0,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4909,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4910,4,3,5,10,0,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4911,4,6,1,14,0,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4912,2,19,2,26,20,0,0,0,-1,0,135464,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4913,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4914,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4915,4,1,7,8,0,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4916,4,1,7,5,0,0,0,0,-1,0,135018,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4917,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4918,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4919,4,1,7,6,0,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4920,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4921,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4922,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4923,2,0,1,21,0,3,0,0,-1,0,135419,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4924,2,4,2,21,0,3,0,0,-1,0,133485,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4925,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +4926,12,0,0,0,11,0,0,0,-1,0,132623,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4927,12,0,0,0,0,0,0,0,-1,0,132623,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4928,4,2,8,9,0,0,0,0,-1,0,132611,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4929,4,2,8,5,0,0,0,0,-1,0,132716,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4930,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4931,2,2,2,15,0,0,0,0,-1,0,135493,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +4932,2,7,1,21,0,3,0,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +4933,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4934,4,1,7,3,0,0,0,0,-1,0,135040,7,0,25,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4935,4,3,5,6,0,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4936,4,1,7,8,0,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4937,4,6,1,14,0,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4938,2,10,2,17,0,2,0,0,-1,0,135158,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +4939,2,8,1,17,0,1,0,0,-1,0,135344,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +4940,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4941,0,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4942,4,2,8,8,0,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4943,2,5,2,17,0,1,0,0,-1,0,133052,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +4944,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4945,0,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4946,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4947,2,15,1,13,0,3,0,0,-1,0,135638,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +4948,2,4,2,21,0,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +4949,2,0,1,21,16,3,0,0,-1,0,132414,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +4950,4,6,1,14,0,4,0,0,-1,0,134957,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4951,4,2,8,6,1,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4952,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4953,0,0,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4954,4,2,8,6,0,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4955,4,2,8,3,0,0,0,0,-1,0,135039,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4956,2,14,2,17,2,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,14,0,0,0,0 +4957,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4958,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4959,2,16,1,25,0,0,0,0,-1,0,135421,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +4960,6,3,2,24,0,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +4961,2,10,2,17,0,2,0,0,-1,0,135159,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,22,0,0,0,0 +4962,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4963,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4964,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +4965,2,0,1,21,0,3,0,0,-1,0,132402,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +4966,12,0,0,0,4,0,0,0,-1,0,133707,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4967,4,6,1,14,0,4,0,0,-1,0,134957,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4968,4,2,8,5,0,0,0,0,-1,0,132719,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4969,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4970,4,2,8,7,0,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4971,2,4,2,21,0,3,0,0,-1,0,133046,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +4972,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4973,4,2,8,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4974,2,15,1,13,0,3,0,0,-1,0,135641,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +4975,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4976,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4977,2,7,1,21,0,3,0,0,-1,0,135350,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +4978,2,4,2,21,0,3,0,0,-1,0,133041,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +4979,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4980,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4981,1,0,0,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4982,4,2,8,6,0,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4983,2,5,2,17,0,1,0,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +4984,4,0,2,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4985,2,19,2,26,20,0,0,0,-1,0,135464,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4986,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4987,2,7,1,13,0,3,0,0,-1,0,135326,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +4988,4,0,5,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4989,4,1,7,20,0,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4990,4,1,7,9,0,0,0,0,-1,0,132616,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4991,2,8,1,17,1,1,0,0,-1,0,135315,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +4992,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4993,2,4,2,13,1,7,0,0,-1,0,133729,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4994,2,14,1,21,1,7,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +4995,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4996,2,4,2,21,5,0,0,0,-1,0,133039,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4997,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4998,4,0,5,11,19,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4999,4,0,5,11,22,0,0,0,-1,0,132518,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5000,4,0,5,11,21,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5001,4,0,5,11,22,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5002,4,0,3,2,25,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5003,4,0,3,2,26,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5004,4,0,3,2,30,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5005,4,0,3,2,30,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5006,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5007,4,0,0,11,26,0,0,0,-1,0,134412,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5008,4,0,0,11,31,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5009,4,0,0,11,31,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5010,4,0,0,11,35,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5011,4,0,0,11,35,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5012,12,0,0,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5013,0,0,0,0,5,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5014,0,0,0,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5015,0,0,0,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5016,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5017,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5018,12,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5019,12,0,0,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5020,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5021,12,0,2,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5022,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5023,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5024,5,0,3,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5025,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5026,12,0,3,0,0,0,0,0,-1,0,132386,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5027,12,0,0,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5028,4,0,2,23,42,3,0,0,-1,0,135472,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5029,4,0,3,2,42,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5030,12,0,0,0,0,0,0,0,-1,0,132607,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5031,2,8,1,17,14,1,0,0,-1,0,135277,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,67,0,0,0,0 +5032,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5033,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5034,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5035,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5036,2,8,1,17,14,1,0,0,-1,0,135277,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,67,0,0,0,0 +5037,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5038,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5039,2,8,1,17,40,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +5040,2,15,1,13,27,3,0,0,-1,0,135647,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +5041,0,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5042,0,0,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5043,0,0,0,0,0,0,0,0,-1,0,134140,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5044,0,0,0,0,0,0,0,0,-1,0,134142,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5045,0,0,0,0,35,0,0,0,-1,0,134143,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5046,0,0,0,0,1,0,0,0,-1,0,134141,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5047,0,0,0,0,40,0,0,0,-1,0,134147,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5048,0,0,0,0,0,0,0,0,-1,0,134147,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5049,0,0,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5050,13,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5051,12,0,0,0,0,0,0,0,-1,0,134359,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5052,15,0,0,0,0,0,0,0,-1,0,134361,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5053,4,1,7,20,0,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5054,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5055,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5056,12,0,8,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5057,0,0,0,0,1,0,0,0,-1,0,133978,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5058,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5059,12,0,0,0,0,0,0,0,-1,0,132938,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5060,7,0,1,0,15,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5061,12,0,0,0,0,0,0,0,-1,0,133787,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5062,12,0,0,0,0,0,0,0,-1,0,136217,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5063,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5064,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5065,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5066,0,0,0,0,5,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5067,12,0,0,0,0,0,0,0,-1,0,136220,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5068,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5069,2,19,2,26,7,0,0,0,-1,0,135139,21,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +5070,2,19,2,26,1,0,0,0,-1,0,135464,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5071,2,19,2,26,9,0,0,0,-1,0,135645,21,0,35,0,5,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5072,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5073,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5074,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5075,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5076,12,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5077,12,0,0,0,0,0,0,0,-1,0,134442,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5078,12,0,0,0,0,0,0,0,-1,0,133277,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5079,4,0,0,12,35,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5080,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5081,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5082,7,0,8,0,0,0,0,0,-1,0,134255,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5083,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5084,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5085,12,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5086,12,0,0,0,0,0,0,0,-1,0,132368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5087,12,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5088,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5089,13,0,0,0,0,0,0,0,-1,0,134248,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5090,4,0,7,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5091,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5092,2,19,2,26,18,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +5093,2,15,1,13,16,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +5094,4,6,1,14,19,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5095,0,0,0,0,5,0,0,0,-1,0,133913,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5096,12,0,0,0,0,0,0,0,-1,0,132935,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5097,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5098,12,0,0,0,0,0,0,0,-1,0,134303,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5099,12,0,0,0,10,0,0,0,-1,0,132318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5100,12,0,0,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5101,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5102,12,0,0,0,10,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5103,12,0,0,0,10,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5104,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5105,5,0,3,0,0,0,0,0,-1,0,135809,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5106,4,1,7,1,10,0,0,0,-1,0,133694,7,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5107,4,0,0,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5108,4,2,8,5,27,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5109,4,1,7,5,12,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5110,4,1,7,20,13,0,0,0,-1,0,132677,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5111,4,1,7,16,10,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5112,2,15,1,13,10,3,0,0,-1,0,135638,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +5113,15,0,2,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5114,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5115,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5116,5,0,0,0,0,0,0,0,-1,0,132916,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5117,15,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5118,15,0,0,0,0,1,0,0,-1,0,135233,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5119,15,0,3,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5120,15,0,3,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5121,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5122,15,0,0,0,0,0,0,0,-1,0,132889,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5123,15,0,0,0,0,1,0,0,-1,0,132381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5124,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5125,15,0,3,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5126,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5127,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5128,15,0,3,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5129,9,0,0,0,22,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5130,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5131,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5132,9,0,0,0,22,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5133,15,0,3,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5134,15,0,0,0,0,0,0,0,-1,0,132179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5135,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5136,15,0,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5137,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5138,12,0,0,0,10,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5139,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5140,5,0,0,0,0,0,0,0,-1,0,134387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5141,9,0,0,0,12,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5142,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5143,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5144,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5145,9,0,0,0,8,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5146,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5147,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5148,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5149,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5150,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5151,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5152,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5153,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5154,9,0,0,0,24,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5155,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5156,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5157,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5158,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5159,9,0,0,0,36,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5160,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5161,9,0,0,0,37,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5162,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5163,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5164,12,0,0,0,0,0,0,0,-1,0,134303,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5165,12,0,0,0,0,0,0,0,-1,0,132914,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5166,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5167,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5168,12,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5169,12,0,0,0,0,0,0,0,-1,0,136065,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5170,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5171,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5172,5,0,0,0,0,0,0,0,-1,0,136210,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5173,7,0,7,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5174,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5175,5,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5176,5,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5177,5,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5178,5,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5179,12,0,0,0,5,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5180,4,0,3,2,29,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5181,4,1,7,16,28,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5182,2,8,1,17,15,1,0,0,-1,0,135327,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +5183,4,0,0,23,15,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5184,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5185,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5186,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5187,2,5,2,17,15,1,0,0,-1,0,133046,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +5188,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5189,12,0,0,0,0,0,0,0,-1,0,133977,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5190,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5191,2,7,1,13,19,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +5192,2,7,1,13,17,3,0,0,-1,0,135325,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +5193,4,1,7,16,20,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5194,2,1,1,17,18,1,0,0,-1,0,135424,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +5195,4,1,7,10,17,0,0,0,-1,0,132957,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5196,2,0,1,13,17,3,0,0,-1,0,132416,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +5197,2,4,2,13,16,7,0,0,-1,0,132906,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +5198,2,19,2,26,17,0,0,0,-1,0,135139,21,0,50,0,6,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +5199,4,2,8,7,16,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5200,2,6,1,17,20,2,0,0,-1,0,135130,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,42,0,0,0,0 +5201,2,10,2,17,18,2,0,0,-1,0,135150,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +5202,4,1,7,5,19,0,0,0,-1,0,135012,7,0,75,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5203,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5204,12,0,0,0,0,0,0,0,-1,0,132496,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5205,0,0,3,0,5,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5206,0,0,3,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5207,2,19,2,26,15,0,0,0,-1,0,135469,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +5208,2,19,2,26,15,0,0,0,-1,0,135468,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +5209,2,19,2,26,16,0,0,0,-1,0,135139,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5210,2,19,2,26,20,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5211,2,19,2,26,20,0,0,0,-1,0,135469,21,0,45,0,5,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +5212,2,19,2,26,12,0,0,0,-1,0,135139,21,0,35,0,2,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +5213,2,19,2,26,30,0,0,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +5214,2,19,2,26,27,0,0,0,-1,0,135463,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +5215,2,19,2,26,36,0,5253,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5216,2,19,2,26,40,0,5262,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +5217,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5218,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5219,12,0,0,0,0,0,0,0,-1,0,134413,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5220,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5221,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5222,4,0,1,12,23,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5223,0,0,1,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5224,0,0,0,0,0,0,0,0,-1,0,132089,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5225,0,0,0,0,0,0,0,0,-1,0,132089,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5226,4,0,1,12,32,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5227,0,0,1,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5228,0,0,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5229,0,0,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5230,4,0,1,23,21,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5231,4,0,1,23,33,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5232,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5233,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5234,12,0,0,0,0,0,0,0,-1,0,134434,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5235,2,19,2,26,0,0,0,0,-1,0,135139,21,0,25,0,2,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +5236,2,19,2,26,29,0,0,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +5237,0,0,3,0,24,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5238,2,19,2,26,40,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +5239,2,19,2,26,41,0,0,0,-1,0,133718,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +5240,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +5241,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5242,2,19,2,26,0,0,0,0,-1,0,135139,21,0,35,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,22,0,0,0,0 +5243,2,19,2,26,15,0,0,0,-1,0,135473,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +5244,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +5245,2,19,2,26,29,0,0,0,-1,0,135144,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5246,2,19,2,26,0,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +5247,2,19,2,26,0,0,0,0,-1,0,135144,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +5248,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,52,0,0,0,0 +5249,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,56,0,0,0,0 +5250,2,19,2,26,0,0,0,0,-1,0,135139,21,0,50,0,2,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +5251,12,0,0,0,0,0,0,0,-1,0,134715,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5252,2,19,2,26,0,0,0,0,-1,0,135466,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +5253,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,85,0,0,0,0 +5254,4,2,8,3,15,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5255,2,0,1,21,10,3,0,0,-1,0,135421,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5256,2,4,2,13,30,3,0,0,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +5257,4,1,7,16,32,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5258,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5259,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5260,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5261,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5262,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5263,15,0,0,0,0,0,0,0,-1,0,132911,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5264,15,0,0,0,0,0,0,0,-1,0,133788,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5265,0,0,0,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5266,4,0,5,11,48,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5267,2,15,1,13,58,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +5268,15,0,0,0,0,0,0,0,-1,0,134321,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5269,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5270,12,0,0,0,0,0,0,0,-1,0,134523,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5271,12,0,0,0,0,0,0,0,-1,0,134531,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5272,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5273,12,0,0,0,0,0,0,0,-1,0,134231,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5274,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5275,4,2,8,6,0,0,0,0,-1,0,132490,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5276,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5277,2,10,2,17,1,2,0,0,-1,0,135144,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5278,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5279,2,15,1,13,0,3,0,0,-1,0,135650,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +5280,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5281,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5282,2,15,1,13,1,3,0,0,-1,0,134298,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5283,2,15,1,13,1,3,0,0,-1,0,135639,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5284,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5285,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5286,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5287,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5288,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5289,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +5290,2,2,2,15,1,0,0,0,-1,0,135494,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5291,2,4,2,21,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5292,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5293,2,5,2,17,1,1,0,0,-1,0,133477,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5294,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5295,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5296,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5297,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5298,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5299,4,2,8,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5300,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5301,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5302,4,6,1,14,0,4,0,0,-1,0,134956,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5303,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5304,2,10,2,17,1,2,0,0,-1,0,135144,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +5305,2,7,1,13,1,3,0,0,-1,0,135321,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5306,2,10,2,17,0,2,0,0,-1,0,135225,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +5307,4,2,8,1,0,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5308,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5309,2,3,1,26,0,0,0,0,-1,0,135613,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +5310,4,1,7,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311,4,2,8,8,0,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5312,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5313,4,0,5,11,0,0,0,0,-1,0,134413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5314,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5315,4,1,7,9,0,0,0,0,-1,0,132610,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5316,4,2,8,5,0,0,0,0,-1,0,135009,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5317,4,2,8,5,0,0,0,0,-1,0,135010,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5318,2,1,1,17,0,1,0,0,-1,0,135572,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +5319,4,2,8,3,15,0,0,0,-1,0,135038,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5320,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5321,2,7,1,13,0,3,0,0,-1,0,135276,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +5322,2,5,2,17,0,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +5323,4,0,0,23,0,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5324,2,4,2,21,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5325,4,6,1,14,0,4,0,0,-1,0,134952,9,0,55,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5326,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5327,4,2,8,7,0,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5328,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5329,15,0,0,0,0,0,0,0,-1,0,134176,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5330,12,0,0,0,0,0,0,0,-1,0,132819,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5331,15,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5332,15,0,0,0,0,0,0,0,-1,0,134176,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5333,12,0,0,0,0,0,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5334,12,0,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5335,15,0,1,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5336,12,0,0,0,0,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5337,4,1,7,10,0,0,0,0,-1,0,132940,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5338,12,0,0,0,0,0,0,0,-1,0,134457,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5339,12,0,0,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5340,2,10,2,17,0,2,0,0,-1,0,135145,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +5341,4,2,8,5,0,0,0,0,-1,0,135011,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5342,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5343,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5344,2,0,1,21,0,3,0,0,-1,0,135419,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +5345,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +5346,2,2,2,15,0,0,0,0,-1,0,135496,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +5347,2,19,2,26,30,0,0,0,-1,0,135466,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +5348,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5349,0,0,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5350,0,0,7,0,1,0,0,0,-1,0,132793,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5351,4,0,4,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5352,12,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5353,12,0,0,0,0,0,0,0,-1,0,133471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5354,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5355,4,2,8,6,0,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5356,2,19,2,26,0,0,0,0,-1,0,135124,21,0,50,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +5357,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5358,4,3,5,1,0,0,0,0,-1,0,133072,10,0,55,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5359,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5360,12,0,0,0,0,0,0,0,-1,0,134459,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5361,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5362,15,0,0,0,0,1,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5363,15,0,0,0,0,1,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5364,15,0,0,0,0,1,0,0,-1,0,135234,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5365,15,0,0,0,0,1,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5366,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5367,15,0,0,0,0,1,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5368,15,0,0,0,0,1,0,0,-1,0,133611,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5369,15,0,0,0,0,1,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5370,15,0,0,0,0,1,0,0,-1,0,134435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5371,15,0,0,0,0,0,0,0,-1,0,135240,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5372,12,0,0,0,0,0,0,0,-1,0,136224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5373,15,0,0,0,0,1,0,0,-1,0,133601,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5374,15,0,0,0,0,1,0,0,-1,0,134377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5375,15,0,0,0,0,1,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5376,15,0,0,0,0,1,0,0,-1,0,134442,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5377,15,0,0,0,0,1,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5378,0,0,0,1,1,0,0,0,-1,0,133276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5379,2,16,1,25,3,0,0,0,-1,0,135426,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +5380,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5381,12,0,0,0,0,0,0,0,-1,0,133461,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5382,12,0,0,0,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5383,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5384,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5385,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5386,12,0,0,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5387,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5388,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5389,12,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5390,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5391,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5392,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +5393,2,10,2,17,0,2,0,0,-1,0,135146,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5394,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5395,4,6,1,14,0,4,0,0,-1,0,134949,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5396,13,0,0,0,0,0,0,0,-1,0,134248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5397,13,0,0,0,0,0,0,0,-1,0,133587,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5398,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5399,4,3,5,8,0,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5400,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5401,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5402,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5403,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5404,4,2,8,3,18,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5405,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5406,0,0,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5407,0,0,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5408,4,0,1,23,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5409,4,0,1,23,9,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5410,2,14,0,0,0,0,0,0,-1,0,133486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5411,4,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5412,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5413,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5414,12,0,0,0,0,0,0,0,-1,0,134359,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5415,12,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5416,12,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5417,15,0,0,0,0,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5418,15,0,0,0,0,0,0,0,-1,0,133710,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5419,4,2,8,9,0,0,0,0,-1,0,132601,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5420,4,1,7,5,0,0,0,0,-1,0,135011,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5421,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5422,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5423,2,1,1,17,15,1,0,0,-1,0,132408,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +5424,12,0,0,0,0,0,0,0,-1,0,134230,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5425,4,3,5,6,15,0,0,0,-1,0,132492,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5426,2,0,1,13,15,3,0,0,-1,0,132417,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +5427,15,0,0,0,0,1,0,0,-1,0,134378,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5428,15,0,0,0,0,1,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5429,15,0,0,0,0,1,0,0,-1,0,134566,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5430,15,0,0,0,0,1,0,0,-1,0,134335,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5431,15,0,0,0,0,1,0,0,-1,0,132788,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5432,15,0,0,0,0,1,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5433,15,0,0,0,0,1,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5434,15,0,0,0,0,1,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5435,15,0,0,0,0,1,0,0,-1,0,134436,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5436,15,0,0,0,0,1,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5437,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5438,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5439,11,2,0,18,1,0,0,0,-1,0,134409,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5440,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5441,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5442,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5443,4,6,1,14,15,4,0,0,-1,0,134948,9,0,75,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5444,4,1,7,16,14,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5445,12,0,0,0,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5446,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5447,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5448,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5449,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5450,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5451,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5452,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5453,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5454,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5455,12,0,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5456,12,0,0,0,0,0,0,0,-1,0,134943,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5457,0,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5458,4,1,7,6,0,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5459,2,0,1,21,0,3,0,0,-1,0,132392,8,0,45,0,0,0,0,0,0,10,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +5460,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5461,12,0,0,0,0,0,0,0,-1,0,136065,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5462,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5463,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5464,12,0,0,0,0,0,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5465,7,0,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5466,7,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5467,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5468,7,0,0,0,0,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5469,7,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5470,7,0,0,0,0,0,0,0,-1,0,133721,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5471,7,0,0,0,0,0,0,0,-1,0,134370,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5472,0,0,0,0,1,0,0,0,-1,0,134024,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5473,0,0,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5474,0,0,0,0,1,0,0,0,-1,0,134016,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5475,13,0,0,0,0,0,0,0,-1,0,134239,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5476,0,0,0,0,5,0,0,0,-1,0,133891,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5477,0,0,0,0,5,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5478,0,0,0,0,10,0,0,0,-1,0,133748,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5479,0,0,0,0,12,0,0,0,-1,0,133973,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5480,0,0,0,0,15,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5481,12,0,0,0,0,0,0,0,-1,0,133721,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5482,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5483,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5484,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5485,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5486,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5487,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5488,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5489,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5490,12,0,0,0,0,0,0,0,-1,0,134300,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5491,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5493,12,0,0,0,0,0,0,0,-1,0,134564,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5494,12,0,0,0,0,0,0,0,-1,0,133849,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5495,2,4,2,13,1,3,0,0,-1,0,133038,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5497,7,0,0,0,0,0,0,0,-1,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5498,7,0,0,0,0,0,0,0,-1,0,134122,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5500,7,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5501,7,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5502,2,7,1,13,1,3,0,0,-1,0,135315,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +5503,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5504,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5505,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5506,15,0,3,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5507,7,3,8,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5508,12,0,0,0,0,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5509,0,0,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5510,0,0,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5511,0,0,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5512,0,0,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5513,0,0,1,0,38,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5514,4,0,1,0,23,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5515,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5516,2,15,1,13,11,3,0,0,-1,0,133723,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +5517,5,0,0,0,0,0,0,0,-1,0,134239,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5518,5,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5519,12,0,0,0,0,0,0,0,-1,0,134334,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5520,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5521,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5522,4,0,1,23,31,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5523,15,0,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5524,15,0,0,0,0,0,0,0,-1,0,134432,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5525,0,0,0,0,5,0,0,0,-1,0,134432,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5526,0,0,0,0,10,0,0,0,-1,0,134712,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5527,0,0,0,0,15,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5528,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5529,5,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5530,5,0,7,0,0,0,0,0,-1,0,133587,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5531,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5532,2,14,1,13,1,3,0,0,-1,0,135271,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +5533,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5534,12,0,0,0,0,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5535,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5536,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5537,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5538,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5539,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5540,2,15,1,13,18,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5541,2,4,2,13,23,3,0,0,-1,0,133042,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5542,4,1,7,16,14,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5543,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5544,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5545,2,6,1,17,1,1,0,0,-1,0,135574,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5546,2,18,2,26,1,0,0,0,-1,0,135530,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +5547,12,0,0,0,0,0,0,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5548,2,2,2,15,1,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +5549,2,15,1,13,1,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5550,2,3,1,26,1,0,0,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +5551,2,0,1,21,1,3,0,0,-1,0,132392,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5552,2,1,1,17,1,1,0,0,-1,0,132395,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5553,2,4,2,21,1,3,0,0,-1,0,133478,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5554,2,5,2,17,1,1,0,0,-1,0,133481,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5555,2,7,1,21,1,3,0,0,-1,0,135327,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5556,2,8,1,17,1,1,0,0,-1,0,135276,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5557,2,17,1,17,1,2,0,0,-1,0,135129,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5558,2,10,2,17,1,2,0,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5559,2,16,2,25,1,0,0,0,-1,0,135419,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5560,2,19,2,26,1,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5561,2,14,1,21,1,7,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,100,0,0,0,0 +5562,5,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5563,5,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5564,5,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5565,5,0,0,0,0,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5566,15,0,3,0,0,0,0,0,-1,0,133721,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5567,15,0,2,0,0,0,0,0,-1,0,136245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5568,6,3,2,24,13,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0 +5569,15,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5570,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5571,1,0,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5572,1,0,8,18,0,0,0,0,-1,0,133637,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5573,1,0,8,18,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5574,1,0,8,18,0,0,0,0,-1,0,133627,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5575,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5576,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5577,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5578,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5579,2,5,2,17,0,1,0,0,-1,0,133052,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +5580,2,4,2,21,0,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5581,2,10,2,17,0,2,0,0,-1,0,135148,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5582,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5583,12,0,0,0,0,0,0,0,-1,0,134303,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5584,12,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5585,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5586,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5587,2,4,2,21,0,3,0,0,-1,0,133490,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5588,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5589,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5590,4,1,7,9,0,0,0,0,-1,0,132612,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5591,4,1,7,16,0,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5592,4,3,5,6,0,0,0,0,-1,0,132499,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5593,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5594,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5595,2,5,2,17,0,1,0,0,-1,0,133052,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,24,0,0,0,0 +5596,2,2,2,15,0,0,0,0,-1,0,135489,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +5597,2,6,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5598,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5599,2,0,1,13,1,3,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5600,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5601,15,0,8,0,0,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5602,15,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5603,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5604,2,19,2,26,0,0,0,0,-1,0,135139,21,0,30,0,6,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +5605,2,15,1,13,0,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +5606,4,1,7,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5607,4,3,5,3,0,0,0,0,-1,0,135038,10,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5608,4,1,7,1,35,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5609,4,2,8,6,0,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5610,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5611,4,0,0,23,0,7,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5612,4,2,8,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5613,2,10,2,17,0,2,0,0,-1,0,135160,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +5614,2,8,1,17,0,1,0,0,-1,0,135328,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,81,0,0,0,0 +5615,2,8,1,17,0,1,0,0,-1,0,135352,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +5616,2,15,1,13,42,3,0,0,-1,0,135341,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5617,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5618,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5619,12,0,0,0,0,0,0,0,-1,0,134721,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5620,12,0,0,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5621,12,0,0,0,0,0,0,0,-1,0,134765,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5622,4,0,4,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5623,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5624,4,1,7,1,33,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5625,4,2,8,1,0,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5626,2,1,1,17,0,1,0,0,-1,0,132417,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +5627,2,15,1,13,0,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +5628,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5629,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5630,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5631,0,0,3,0,4,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5632,0,0,3,0,15,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5633,0,0,0,0,25,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5634,0,0,3,0,20,0,0,0,-1,0,134715,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5635,7,0,1,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5636,5,0,0,0,0,0,0,0,-1,0,132923,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5637,7,0,1,0,0,0,0,0,-1,0,133725,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5638,12,0,0,0,0,0,0,0,-1,0,132620,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5639,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5640,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5641,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5642,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5643,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5644,9,0,0,0,4,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5645,12,0,0,0,0,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5646,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5647,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5648,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5649,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5650,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5651,12,0,0,0,0,0,0,0,-1,0,135638,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5652,12,0,0,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5653,12,0,0,0,0,0,0,0,-1,0,134955,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5654,0,0,3,0,24,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5655,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5656,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5657,9,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5658,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5659,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5660,9,0,0,0,16,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5661,9,0,0,0,26,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5662,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5663,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5664,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5665,15,0,0,0,40,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5666,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5667,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5668,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5669,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5670,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5671,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5672,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5673,9,0,0,0,28,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5674,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5675,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5676,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5677,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5678,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5679,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5680,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5681,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5682,9,0,0,0,38,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5683,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5684,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5685,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5686,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5687,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5688,9,0,0,0,0,0,0,0,-1,0,132089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5689,12,0,0,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5690,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5691,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5692,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5693,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5694,12,0,0,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5695,12,0,0,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5696,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5697,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5698,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5699,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5700,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5701,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5702,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5703,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5704,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5705,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5706,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5707,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5708,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5709,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5710,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5711,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5712,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5713,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5714,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5715,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5716,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5717,12,0,0,0,0,0,0,0,-1,0,133465,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5718,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5719,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5720,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5721,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5722,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5723,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5724,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5725,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5726,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5727,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5728,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5729,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5730,9,0,0,0,4,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5731,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5732,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5733,12,0,0,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5734,12,0,0,0,0,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5735,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5736,12,0,0,0,0,0,0,0,-1,0,132154,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5737,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5738,15,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5739,4,2,8,5,33,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5740,0,0,0,0,0,0,0,0,-1,0,135808,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5741,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5742,2,15,1,13,35,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,5,0,5,0,0,23,0,0,0,0,44,0,0,0,0 +5743,4,0,0,11,35,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5744,2,7,1,21,7,3,0,0,-1,0,135325,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5745,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5746,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5747,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5748,2,2,2,15,11,0,0,0,-1,0,135495,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +5749,2,1,1,17,18,1,0,0,-1,0,132397,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,66,0,0,0,0 +5750,4,3,5,6,18,0,0,0,-1,0,132492,10,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5751,4,1,7,16,20,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5752,2,15,1,13,21,3,0,0,-1,0,135652,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5753,4,2,8,1,26,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5754,4,0,3,2,26,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5755,4,3,5,5,30,0,0,0,-1,0,132739,10,0,100,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5756,2,15,1,13,32,3,0,0,-1,0,135660,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +5757,2,4,2,21,0,7,0,0,-1,0,133486,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5758,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5759,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5760,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5761,2,5,2,17,0,1,0,0,-1,0,133052,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5762,1,0,8,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5763,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5764,1,0,8,18,0,0,0,0,-1,0,133631,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5765,1,0,8,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5766,4,1,7,20,22,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5767,4,1,7,20,4,0,0,0,-1,0,132679,7,0,45,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5768,12,0,0,0,0,0,0,0,-1,0,134941,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5769,12,0,0,0,0,0,0,0,-1,0,134941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5770,4,1,7,20,25,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5771,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5772,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5773,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5774,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5775,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5776,2,10,2,17,0,2,0,0,-1,0,135154,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5777,2,1,1,17,0,1,0,0,-1,0,135423,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5778,2,10,2,17,0,2,0,0,-1,0,135139,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5779,2,8,1,17,0,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5780,4,2,8,6,13,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5781,4,2,8,5,14,0,0,0,-1,0,132634,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5782,4,2,8,5,29,0,0,0,-1,0,132634,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5783,4,2,8,9,33,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5784,7,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5785,7,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5786,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5787,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5788,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5789,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5790,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5791,12,0,0,0,29,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5792,12,0,0,0,0,0,0,0,-1,0,133434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5793,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5794,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5795,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5796,12,0,0,0,0,0,0,0,-1,0,134305,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5797,12,0,0,0,0,0,0,0,-1,0,134456,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5798,12,0,0,0,0,0,0,0,-1,0,132997,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5799,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5800,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5801,12,0,0,0,0,0,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5802,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5803,12,0,0,0,0,0,0,0,-1,0,133849,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5804,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5805,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5806,12,0,0,0,0,0,0,0,-1,0,132623,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5807,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5808,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5809,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5810,12,0,0,0,0,0,0,0,-1,0,134368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5811,12,0,0,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5812,4,1,7,20,0,0,0,0,-1,0,132679,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5813,2,8,1,17,0,1,0,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,81,0,0,0,0 +5814,4,2,8,5,0,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5815,2,5,2,17,0,1,0,0,-1,0,133484,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +5816,0,0,3,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5817,2,2,2,15,0,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +5818,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +5819,4,3,5,1,28,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,185,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5820,4,1,7,3,0,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5821,4,2,8,8,0,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5822,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5823,0,0,0,0,5,0,0,0,-1,0,134527,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5824,12,0,0,0,0,0,0,0,-1,0,134414,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5825,12,0,0,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5826,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5827,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5828,4,0,5,11,1,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,315,315,315,315,315,0,0,0,0,0,0,0,0,0,0 +5829,15,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5830,12,0,0,0,0,0,0,0,-1,0,134167,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5831,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5832,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5833,7,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5834,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5835,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5836,12,0,0,0,0,0,0,0,-1,0,132595,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5837,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5838,12,0,0,0,0,0,0,0,-1,0,134252,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5839,15,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5840,12,0,0,0,0,0,0,0,-1,0,134317,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5841,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5842,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5843,12,0,0,0,0,0,0,0,-1,0,134295,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5844,12,0,0,0,0,0,0,0,-1,0,135239,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5845,0,0,0,0,15,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5846,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5847,12,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5848,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5849,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5850,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5851,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5852,12,0,0,0,0,0,0,0,-1,0,134330,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5853,12,0,0,0,0,0,0,0,-1,0,135035,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5854,12,0,0,0,0,0,0,0,-1,0,134295,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5855,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5856,2,16,1,25,1,0,0,0,-1,0,132392,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5857,12,0,0,0,0,0,0,0,-1,0,134142,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5858,12,0,0,0,0,0,0,0,-1,0,134143,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5859,0,0,0,0,0,0,0,0,-1,0,132385,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5860,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5861,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5862,12,0,0,0,0,0,0,0,-1,0,132385,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5863,15,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5864,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5865,12,0,0,0,0,0,0,0,-1,0,132385,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5866,12,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5867,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5868,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5869,12,0,0,0,0,0,0,0,-1,0,132368,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5870,2,16,1,25,1,0,0,0,-1,0,135128,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5871,15,0,3,0,0,0,0,0,-1,0,132368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5872,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5873,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5874,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5875,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5876,12,0,0,0,0,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5877,12,0,0,0,28,0,0,0,-1,0,135034,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5878,0,0,0,0,0,0,0,0,-1,0,133849,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5879,12,0,0,0,0,0,0,0,-1,0,133281,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5880,0,0,0,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5881,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5882,12,0,0,0,0,0,0,0,-1,0,133467,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5883,12,0,0,0,0,0,0,0,-1,0,134343,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5884,12,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5896,12,0,0,0,0,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5897,12,0,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5916,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5917,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5918,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5919,12,0,0,0,0,0,0,0,-1,0,134950,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5936,4,2,8,6,0,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5937,13,0,0,0,0,0,0,0,-1,0,134075,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5938,12,0,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5939,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5940,4,6,1,14,0,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5941,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5942,12,0,0,0,0,0,0,0,-1,0,133278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5943,4,3,5,9,20,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5944,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5945,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5946,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5947,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5948,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5949,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5950,12,0,0,0,0,0,0,0,-1,0,134951,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5951,0,0,0,0,0,0,0,0,-1,0,133677,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5952,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5953,2,7,1,13,0,3,0,0,-1,0,133069,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +5954,2,7,1,13,0,3,0,0,-1,0,132312,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +5956,2,14,1,21,1,0,0,0,-1,0,133057,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5957,4,2,8,5,3,0,0,0,-1,0,132760,7,0,50,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5958,4,2,8,7,16,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5959,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5960,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5961,4,2,8,7,18,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5962,4,2,8,7,27,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5963,4,2,8,7,29,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5964,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5965,4,1,7,16,32,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5966,4,2,8,10,33,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5967,4,1,7,6,13,0,0,0,-1,0,132499,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5968,4,2,8,8,10,0,0,0,-1,0,132537,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5969,4,1,7,16,18,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5970,4,1,7,10,18,0,0,0,-1,0,132953,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5971,4,1,7,16,21,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5972,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5973,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5974,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5975,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5976,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5996,0,0,3,0,8,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5997,0,0,3,0,1,0,0,0,-1,0,134843,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5998,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6016,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6036,2,15,1,13,34,3,0,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +6037,7,0,4,0,0,0,0,0,-1,0,133222,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6038,0,0,0,0,25,0,0,0,-1,0,132386,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6039,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6040,4,3,5,9,32,0,0,0,-1,0,132609,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6041,7,0,8,0,0,0,0,0,-1,0,135834,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6042,7,0,8,0,0,0,0,0,-1,0,133596,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6043,7,0,8,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6044,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6045,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6046,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6047,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6048,0,0,3,0,17,0,0,0,-1,0,134824,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6049,0,0,3,0,23,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6050,0,0,3,0,28,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6051,0,0,3,0,10,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6052,0,0,3,0,28,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6053,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6054,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6055,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6056,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6057,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6058,4,2,8,6,0,0,0,0,-1,0,132492,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6059,4,2,8,5,0,0,0,0,-1,0,132721,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6060,4,1,7,9,0,0,0,0,-1,0,132609,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6061,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6062,4,1,7,9,0,0,0,0,-1,0,132606,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6063,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6064,12,0,0,0,0,0,0,0,-1,0,134375,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6065,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6066,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6067,12,0,0,0,0,0,0,0,-1,0,133855,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6068,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6069,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6070,4,2,8,9,0,0,0,0,-1,0,132604,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6071,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6072,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6073,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6074,0,0,0,0,0,0,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6075,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6076,4,1,7,7,0,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6077,12,0,0,0,0,0,0,0,-1,0,134232,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6078,4,6,1,14,0,4,0,0,-1,0,134949,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6079,12,0,0,0,0,0,0,0,-1,0,134231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6080,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6081,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6082,12,0,0,0,0,0,0,0,-1,0,134577,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6083,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6084,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6085,4,2,8,5,0,0,0,0,-1,0,132724,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6086,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6087,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6088,2,16,2,25,1,7,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6089,12,0,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6090,12,0,0,0,0,0,0,0,-1,0,133485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6091,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6092,4,2,8,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6093,2,5,2,17,0,1,0,0,-1,0,133482,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,79,0,0,0,0 +6094,2,1,1,17,0,1,0,0,-1,0,135419,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +6095,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6096,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6097,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6098,4,1,7,20,1,0,0,0,-1,0,132674,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6116,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6117,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6118,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6119,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6120,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6121,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6122,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6123,4,1,7,20,1,0,0,0,-1,0,132675,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6124,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6125,4,0,7,4,0,0,0,0,-1,0,132719,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6126,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6127,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6128,4,1,7,20,1,0,0,0,-1,0,0,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6129,4,1,7,20,1,0,0,0,-1,0,132657,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6130,4,0,7,4,0,0,0,0,-1,0,132716,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6131,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6132,9,0,0,0,12,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6133,9,0,0,0,14,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6134,4,0,7,4,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6135,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6136,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6137,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6138,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6139,4,1,7,20,1,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6140,4,1,7,20,1,0,0,0,-1,0,132663,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6141,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6142,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6143,4,0,7,8,1,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6144,4,1,7,20,1,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6145,12,0,0,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6146,12,0,0,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6147,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6148,4,1,7,8,5,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6149,0,0,3,0,31,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6150,15,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6166,12,0,0,0,0,0,0,0,-1,0,133726,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6167,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6168,12,0,0,0,0,0,0,0,-1,0,134295,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6169,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6170,12,0,0,0,0,0,0,0,-1,0,133640,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6171,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6172,12,0,0,0,30,0,0,0,-1,0,132620,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6173,4,1,7,8,0,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6174,2,14,6,17,15,3,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,100,0,0,0,0 +6175,12,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6176,4,6,1,14,0,4,0,0,-1,0,134950,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6177,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6178,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6179,4,1,7,16,14,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6180,4,3,5,5,10,0,0,0,-1,0,132634,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6181,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6182,4,0,2,23,5,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6183,0,0,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6184,12,0,0,0,0,0,0,0,-1,0,134294,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6185,4,1,7,16,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6186,2,8,1,17,0,1,0,0,-1,0,135356,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +6187,4,6,1,14,0,4,0,0,-1,0,134951,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6188,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6189,4,3,5,3,0,0,0,0,-1,0,135036,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6190,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6191,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6192,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6193,12,0,0,0,0,0,0,0,-1,0,133644,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6194,2,0,1,21,0,3,0,0,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,41,0,0,0,0 +6195,4,3,5,5,10,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6196,2,4,2,21,29,3,0,0,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +6197,4,2,8,5,17,0,0,0,-1,0,132760,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6198,4,2,8,9,25,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6199,4,0,5,11,19,0,0,0,-1,0,134321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6200,4,3,5,6,24,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6201,4,2,8,8,5,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6202,4,1,7,10,6,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6203,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6204,4,2,8,1,27,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6205,2,5,2,17,10,1,0,0,-1,0,134435,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,28,0,0,0,0 +6206,2,1,1,17,10,1,0,0,-1,0,134708,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +6207,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6208,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6209,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6210,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6211,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6212,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6213,7,0,0,0,5,0,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6214,2,5,2,17,11,1,0,0,-1,0,133055,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +6215,2,10,2,17,0,2,0,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,21,0,0,0,0 +6216,7,0,7,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6217,7,0,1,0,0,5,0,0,-1,0,133942,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6218,7,0,1,0,1,5,0,0,-1,0,135225,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6219,2,14,1,21,0,3,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +6220,2,15,1,13,24,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +6221,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6222,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6223,4,6,1,14,0,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6224,2,8,1,17,1,1,0,0,-1,0,135313,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6225,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6226,4,1,7,20,18,0,0,0,-1,0,132665,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6227,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6228,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6229,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6230,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +6231,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +6232,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6233,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6234,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6235,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6236,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6237,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +6238,4,1,7,20,5,0,0,0,-1,0,132662,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6239,4,1,7,5,7,0,0,0,-1,0,132681,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6240,4,1,7,5,7,0,0,0,-1,0,132678,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6241,4,1,7,20,5,0,0,0,-1,0,132645,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6242,4,1,7,20,9,0,0,0,-1,0,132664,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6243,4,1,7,20,13,0,0,0,-1,0,132663,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6244,0,0,0,8,0,0,0,0,-1,0,132089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6245,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6246,12,0,0,0,0,0,0,0,-1,0,134294,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6247,12,0,0,0,0,0,0,0,-1,0,133722,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6248,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6249,12,0,0,0,0,0,0,0,-1,0,134250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6250,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6251,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6252,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6253,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6254,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6255,2,3,1,26,14,0,0,0,-1,0,135614,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,19,0,0,0,0 +6256,2,20,2,17,0,1,0,0,-1,0,132932,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +6257,12,0,0,0,0,0,0,0,-1,0,133707,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6258,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6259,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6260,7,0,3,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6261,7,0,3,0,0,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6262,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6263,4,1,7,20,15,0,0,0,-1,0,135017,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6264,4,1,7,20,18,0,0,0,-1,0,132665,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6265,5,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6266,4,1,7,5,8,0,455,0,-1,0,135009,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6267,4,1,7,7,7,0,538,0,-1,0,134586,7,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6268,4,2,8,5,8,0,476,0,-1,0,135010,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6269,4,2,8,7,7,0,559,0,-1,0,134585,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6270,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6271,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6272,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6273,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6274,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6275,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6276,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6277,12,0,0,0,0,0,0,0,-1,0,133463,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6278,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6279,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6280,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6281,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6282,4,1,7,7,0,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6283,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6284,12,0,0,0,0,0,0,0,-1,0,134416,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6285,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6286,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6287,12,0,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6288,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6289,0,0,0,0,5,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6290,0,0,8,0,1,0,0,0,-1,0,133893,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6291,0,0,8,0,1,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6292,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6293,15,0,0,0,0,0,0,0,-1,0,136168,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6294,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6295,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6296,15,0,0,0,0,0,0,0,-1,0,134360,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6297,15,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6298,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6299,0,0,8,0,1,0,0,0,-1,0,133914,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6300,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6301,15,0,0,0,0,0,0,0,-1,0,133728,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6302,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6303,0,0,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6304,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6305,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6306,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6307,15,0,0,0,0,0,0,0,-1,0,132799,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6308,0,0,0,0,15,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6309,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6310,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6311,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6312,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6313,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6314,4,1,7,16,22,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6315,2,18,2,26,22,0,0,0,-1,0,135530,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,45,0,0,0,0 +6316,0,0,0,0,5,0,0,0,-1,0,134712,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6317,0,0,0,0,5,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6318,2,10,2,17,21,2,0,0,-1,0,135164,13,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +6319,4,2,8,6,21,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6320,4,6,1,14,23,4,0,0,-1,0,134949,9,0,95,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6321,4,0,5,11,21,0,0,0,-1,0,132518,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6322,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6323,2,4,2,21,20,3,0,0,-1,0,133477,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +6324,4,1,7,20,24,0,0,0,-1,0,132672,7,0,80,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6325,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6326,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6327,2,5,2,17,32,1,0,0,-1,0,133484,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,156,0,0,0,0 +6328,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6329,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6330,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6331,2,15,1,13,31,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +6332,4,0,4,11,17,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6333,2,15,1,13,17,3,0,0,-1,0,135646,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6334,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6335,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6336,4,3,5,5,8,0,497,0,-1,0,132624,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6337,4,3,5,7,7,0,580,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6338,7,0,1,0,0,5,0,0,-1,0,135138,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6339,7,0,1,0,1,5,0,0,-1,0,135138,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6340,4,1,7,16,21,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6341,4,0,0,23,14,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6342,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6343,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6344,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6345,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6346,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6347,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6348,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6349,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6350,4,3,5,8,13,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6351,15,0,2,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6352,15,0,2,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6353,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6354,15,0,2,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6355,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6356,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6357,15,0,2,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6358,5,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6359,5,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6360,2,4,2,13,20,3,0,0,-1,0,133890,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +6361,0,0,0,0,5,0,0,0,-1,0,133911,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6362,0,0,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6363,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6364,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6365,2,20,0,17,5,1,0,0,-1,0,132932,12,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +6366,2,20,0,17,15,1,0,0,-1,0,132932,12,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,43,0,0,0,0 +6367,2,20,0,17,25,1,0,0,-1,0,132931,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +6368,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6369,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6370,5,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6371,5,0,0,0,0,0,0,0,-1,0,134818,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6372,0,0,3,0,10,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6373,0,0,3,0,18,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6374,7,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6375,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6376,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6377,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6378,4,1,7,16,12,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6379,4,2,8,6,12,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6380,4,6,1,14,13,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6381,4,1,7,16,18,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6382,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6383,4,6,1,14,19,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6384,4,0,7,4,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6385,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6386,4,3,5,7,25,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6387,4,3,5,9,24,0,0,0,-1,0,132618,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6388,4,3,5,3,25,0,0,0,-1,0,135051,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6389,4,3,5,1,26,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6390,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6391,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6392,4,1,7,6,24,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6393,4,1,7,10,23,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6394,4,1,7,8,22,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6395,4,1,7,3,24,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6396,4,2,8,5,27,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6397,4,2,8,10,24,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6398,4,2,8,6,24,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6399,4,2,8,3,25,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6400,4,6,1,14,26,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6401,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6402,4,3,5,7,31,0,0,0,-1,0,134589,10,0,75,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6403,4,3,5,9,28,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6404,4,3,5,3,30,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6405,4,1,7,7,31,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6406,4,1,7,8,29,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6407,4,1,7,9,28,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6408,4,2,8,10,29,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6409,4,2,8,6,29,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6410,4,2,8,9,28,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6411,4,3,5,5,36,0,0,0,-1,0,132743,10,0,100,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6412,4,3,5,8,34,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6413,4,3,5,9,32,0,0,0,-1,0,132617,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6414,4,0,1,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6415,4,1,7,20,36,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6416,4,1,7,8,33,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6417,4,1,7,16,32,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6418,4,1,7,6,32,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6419,4,2,8,10,33,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6420,4,2,8,8,34,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6421,4,2,8,6,33,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6422,4,2,8,1,34,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6423,4,3,5,8,40,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6424,4,1,7,16,37,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6425,4,3,5,6,39,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6426,4,3,5,9,38,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6427,4,1,7,20,41,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6428,4,1,7,10,38,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6429,4,1,7,1,39,0,0,0,-1,0,133090,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6430,4,2,8,5,41,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6431,4,2,8,8,38,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6432,4,1,7,16,36,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6433,4,2,8,1,38,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6434,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6435,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6436,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6437,12,0,0,0,1,0,0,0,-1,0,134257,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6438,15,0,0,0,0,0,0,0,-1,0,132609,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6439,15,0,0,0,0,0,0,0,-1,0,132609,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6440,4,0,1,11,43,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6441,12,0,4,0,0,0,0,0,-1,0,134361,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6442,12,0,0,0,0,0,0,0,-1,0,134564,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6443,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6444,15,0,0,0,0,0,0,0,-1,0,136040,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6445,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6446,1,0,8,18,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6447,4,6,1,14,15,4,0,0,-1,0,134967,9,0,65,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6448,2,15,1,13,17,3,0,0,-1,0,135646,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +6449,4,1,7,16,17,0,0,0,-1,0,132656,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6450,0,0,7,0,0,0,0,0,-1,0,133671,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6451,0,0,7,0,0,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6452,5,0,7,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6453,5,0,7,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6454,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6455,15,0,0,0,0,0,0,0,-1,0,134955,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6456,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6457,15,0,0,0,0,0,0,0,-1,0,134064,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6458,0,0,0,0,5,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6459,4,3,5,8,18,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6460,4,3,5,6,19,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6461,4,1,7,3,22,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6462,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6463,4,0,5,11,21,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6464,0,0,0,0,0,0,0,0,-1,0,136016,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6465,4,1,7,20,17,0,0,0,-1,0,132677,7,0,60,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6466,4,1,7,16,13,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6467,4,2,8,10,16,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6468,4,2,8,6,18,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6469,2,2,2,15,19,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +6470,5,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6471,5,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6472,2,4,2,13,19,3,0,0,-1,0,135472,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +6473,4,2,8,5,18,0,0,0,-1,0,135020,7,0,75,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6474,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6475,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6476,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6477,4,1,7,6,0,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6478,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6479,12,0,0,0,0,0,0,0,-1,0,133294,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6480,4,2,8,7,0,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6481,4,3,5,10,0,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6482,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6486,0,0,0,0,0,0,0,0,-1,0,134305,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6487,12,0,0,0,0,0,0,0,-1,0,136140,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6488,12,0,0,0,0,0,0,0,-1,0,134455,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6489,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6490,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6491,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6492,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6493,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6494,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6495,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6496,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6497,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6498,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6499,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6500,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6501,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6502,4,3,5,5,0,0,0,0,-1,0,132626,10,0,85,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6503,4,1,7,20,0,0,0,0,-1,0,132642,7,0,60,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6504,2,7,1,21,0,3,0,0,-1,0,135314,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6505,2,10,2,17,0,2,0,0,-1,0,135141,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +6506,4,3,5,8,6,0,0,0,-1,0,132582,10,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6507,4,3,5,9,5,0,0,0,-1,0,132613,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6508,4,1,7,16,4,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6509,4,3,5,6,5,0,0,0,-1,0,132511,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6510,4,3,5,10,6,0,0,0,-1,0,132945,10,0,20,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6511,4,1,7,20,6,0,0,0,-1,0,135012,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6512,4,1,7,20,8,0,455,0,-1,0,132663,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6513,4,1,7,6,5,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6514,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6515,4,1,7,10,6,0,0,0,-1,0,132955,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6516,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6517,4,2,8,6,5,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6518,4,2,8,8,6,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6519,4,2,8,9,5,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6520,4,1,7,16,4,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6521,4,2,8,10,6,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6522,7,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6523,4,2,8,5,12,0,0,0,-1,0,132716,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6524,4,2,8,5,17,0,0,0,-1,0,132716,7,0,75,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6525,4,2,8,5,22,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6526,4,2,8,5,32,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6527,4,1,7,20,8,0,0,0,-1,0,132654,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6528,4,1,7,20,12,0,0,0,-1,0,132663,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6529,0,0,0,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6530,0,0,0,0,0,0,0,0,-1,0,134324,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6531,4,1,7,20,13,0,0,0,-1,0,132655,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6532,0,0,0,0,0,0,0,0,-1,0,134139,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6533,7,3,0,0,0,0,0,0,-1,0,133982,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6534,12,0,0,0,0,0,0,0,-1,0,133233,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6535,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6536,4,1,7,5,14,0,457,0,-1,0,135024,7,0,60,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6537,4,1,7,8,10,0,791,0,-1,0,132537,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6538,4,1,7,20,14,0,457,0,-1,0,132656,7,0,60,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6539,4,1,7,6,11,0,876,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6540,4,1,7,7,13,0,540,0,-1,0,134590,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6541,4,1,7,10,11,0,708,0,-1,0,132957,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6542,4,1,7,16,10,0,959,0,-1,0,133769,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6543,4,1,7,9,10,0,1043,0,-1,0,132611,7,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6544,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6545,4,3,5,5,13,0,498,0,-1,0,132638,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6546,4,3,5,7,12,0,582,0,-1,0,134590,10,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6547,4,3,5,10,12,0,750,0,-1,0,132946,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6548,4,3,5,6,11,0,918,0,-1,0,132514,10,0,25,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6549,4,1,7,16,9,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6550,4,3,5,9,10,0,1085,0,-1,0,132611,10,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6551,4,3,5,8,12,0,834,0,-1,0,132535,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6552,4,2,8,5,14,0,478,0,-1,0,135015,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6553,4,2,8,7,13,0,561,0,-1,0,134586,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6554,4,2,8,10,12,0,729,0,-1,0,132949,7,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6555,4,1,7,16,9,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6556,4,2,8,9,10,0,1064,0,-1,0,132604,7,0,20,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6557,4,2,8,8,11,0,813,0,-1,0,132539,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6558,4,2,8,6,10,0,896,0,-1,0,132492,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6559,4,6,1,14,11,4,1998,0,-1,0,134955,9,0,55,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6560,4,6,1,14,12,4,1998,0,-1,0,134956,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6561,4,1,7,5,16,0,0,0,-1,0,135006,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6562,4,1,7,8,16,0,793,0,-1,0,132539,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6563,4,1,7,9,15,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6564,4,1,7,16,16,0,961,0,-1,0,133767,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6565,4,1,7,10,17,0,710,0,-1,0,132950,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6566,4,1,7,3,19,0,0,0,-1,0,135044,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6567,4,1,7,5,20,0,459,0,-1,0,135012,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6568,4,1,7,7,19,0,542,0,-1,0,134581,7,0,50,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6569,4,1,7,20,20,0,459,0,-1,0,132683,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6570,4,1,7,6,17,0,878,0,-1,0,132514,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6571,4,6,1,14,17,4,2010,0,-1,0,134948,9,0,70,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6572,4,6,1,14,18,4,2010,0,-1,0,134952,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6573,4,3,5,8,18,0,836,0,-1,0,132582,10,0,45,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6574,4,3,5,9,17,0,1088,0,-1,0,132613,10,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6575,4,1,7,16,15,0,1003,0,-1,0,133757,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6576,4,3,5,6,17,0,920,0,-1,0,132511,10,0,30,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6577,4,3,5,10,18,0,752,0,-1,0,132945,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6578,4,3,5,7,18,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6579,4,3,5,3,19,0,0,0,-1,0,135058,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6580,4,3,5,5,18,0,500,0,-1,0,132626,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6581,4,2,8,6,16,0,898,0,-1,0,132505,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6582,4,2,8,8,17,0,815,0,-1,0,132539,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6583,4,2,8,9,16,0,1066,0,-1,0,132606,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6584,4,2,8,5,20,0,480,0,-1,0,132725,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6585,4,1,7,16,15,0,982,0,-1,0,133754,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6586,4,2,8,10,18,0,731,0,-1,0,132961,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6587,4,2,8,7,19,0,563,0,-1,0,134582,7,0,60,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6588,4,2,8,3,18,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6589,4,0,5,11,21,0,3475,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6590,4,3,5,8,24,0,838,0,-1,0,132589,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6591,4,3,5,9,22,0,1089,0,-1,0,132609,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6592,4,3,5,5,24,0,502,0,-1,0,132629,10,0,100,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6593,4,1,7,16,21,0,1005,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6594,4,3,5,6,23,0,922,0,-1,0,132500,10,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6595,4,3,5,10,23,0,754,0,-1,0,132960,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6596,4,3,5,7,23,0,586,0,-1,0,134586,10,0,75,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6597,4,3,5,3,23,0,1174,0,-1,0,135038,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6598,4,6,1,14,23,4,2022,0,-1,0,134956,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6599,4,6,1,14,24,4,2022,0,-1,0,134951,9,0,85,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6600,4,2,8,6,22,0,900,0,-1,0,132514,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6601,4,2,8,8,23,0,817,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6602,4,2,8,9,22,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6603,4,2,8,5,25,0,481,0,-1,0,132716,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6604,4,1,7,16,21,0,984,0,-1,0,133759,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6605,4,2,8,10,23,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6606,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6607,4,2,8,7,25,0,565,0,-1,0,134587,7,0,65,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6608,4,1,7,5,22,0,0,0,-1,0,132722,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6609,4,1,7,5,27,0,461,0,-1,0,135012,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6610,4,1,7,20,27,0,461,0,-1,0,132660,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6611,4,1,7,6,24,0,880,0,-1,0,133693,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6612,4,1,7,8,23,0,796,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6613,4,1,7,9,23,0,1048,0,-1,0,132610,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6614,4,1,7,16,23,0,964,0,-1,0,133768,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6615,4,1,7,10,24,0,712,0,-1,0,132950,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6616,4,1,7,7,27,0,545,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6617,4,1,7,3,25,0,1132,0,-1,0,135033,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6618,2,4,2,13,1,0,0,0,-1,0,134333,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +6619,9,0,0,0,10,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6620,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6621,9,0,0,0,10,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6622,2,7,1,21,58,3,0,0,-1,0,135349,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +6623,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6624,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6625,12,0,0,0,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6626,12,0,0,0,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6627,4,3,5,5,23,0,0,0,-1,0,132743,10,0,120,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6628,4,1,7,10,17,0,0,0,-1,0,136076,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6629,4,1,7,16,18,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6630,4,6,1,14,20,4,0,0,-1,0,134956,9,0,90,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6631,2,10,2,17,20,2,0,0,-1,0,135162,13,0,90,0,0,0,0,0,0,0,0,0,5,0,0,0,49,0,0,0,0,74,0,0,0,0 +6632,4,1,7,16,15,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6633,2,7,1,13,18,3,0,0,-1,0,135314,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +6634,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6635,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6636,0,0,0,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6637,0,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6638,0,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6639,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6640,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6641,2,8,1,17,21,1,0,0,-1,0,135315,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +6642,4,3,5,5,20,0,0,0,-1,0,132627,10,0,105,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6643,0,0,8,0,1,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6644,0,0,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6645,0,0,0,0,5,0,0,0,-1,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6646,0,0,0,0,5,0,0,0,-1,0,133913,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6647,0,0,0,0,15,0,0,0,-1,0,133915,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6648,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6649,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6650,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6651,2,4,2,13,7,3,0,0,-1,0,132797,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +6652,12,0,0,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6653,12,0,2,23,0,7,0,0,-1,0,135434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6654,12,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6655,12,0,0,0,0,0,0,0,-1,0,134335,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6656,12,0,0,0,0,0,0,0,-1,0,134096,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6657,0,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6658,12,0,0,0,0,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6659,4,1,7,7,0,0,0,0,-1,0,134586,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6660,2,15,1,13,50,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +6661,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6662,0,0,3,0,8,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6663,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6664,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6665,4,3,5,9,0,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6666,4,3,5,8,0,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6667,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6668,4,2,8,8,0,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6669,4,0,0,11,0,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6670,4,2,8,5,0,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6671,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6672,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6673,4,0,5,11,1,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6674,4,0,5,11,1,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6675,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6676,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6677,2,19,2,26,0,0,0,0,-1,0,135467,21,0,50,0,6,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6678,4,0,4,11,0,0,0,0,-1,0,132521,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6679,2,6,1,17,24,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +6680,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6681,2,15,1,13,27,3,0,0,-1,0,135646,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +6682,4,1,7,20,26,0,0,0,-1,0,132661,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6683,12,0,0,0,0,0,0,0,-1,0,133290,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6684,12,0,0,0,0,0,0,0,-1,0,135474,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6685,4,1,7,3,25,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6686,4,3,5,1,28,0,0,0,-1,0,133077,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6687,2,1,1,17,29,1,0,0,-1,0,135562,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,132,0,0,0,0 +6688,4,2,8,1,27,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6689,2,10,2,17,27,2,0,0,-1,0,135138,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +6690,4,2,8,7,29,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6691,2,15,1,13,30,3,0,0,-1,0,133723,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6692,2,0,1,13,31,3,0,0,-1,0,132409,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +6693,4,0,5,11,31,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6694,4,6,1,14,31,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6695,4,0,3,2,27,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6696,2,2,2,15,27,0,0,0,-1,0,135500,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +6697,4,1,7,3,27,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6698,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6706,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6707,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6708,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6709,4,2,8,5,13,0,0,0,-1,0,132724,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6710,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6711,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6712,15,0,1,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6713,4,1,7,7,0,0,0,0,-1,0,134587,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6714,7,2,8,0,10,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6715,7,3,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6716,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6717,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6718,12,0,0,0,0,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6719,4,2,8,6,0,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6720,4,2,8,1,0,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6721,4,3,5,5,0,0,0,0,-1,0,132720,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6722,4,3,5,9,0,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6723,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6724,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6725,4,6,1,14,0,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6726,4,1,7,6,0,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6727,4,2,8,10,0,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6728,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6729,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +6730,4,3,5,5,11,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6731,4,3,5,5,15,0,0,0,-1,0,132740,10,0,80,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6732,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6733,4,3,5,10,23,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6734,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6735,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6736,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6737,4,1,7,7,0,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6738,2,0,1,21,0,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +6739,2,2,2,15,0,0,0,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +6740,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6741,2,8,1,17,0,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +6742,4,3,5,6,0,0,0,0,-1,0,132524,10,0,40,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6743,4,0,4,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6744,4,1,7,10,0,0,0,0,-1,0,132937,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6745,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6746,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6747,4,3,5,3,0,0,0,0,-1,0,135034,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6748,4,0,5,11,0,1,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6749,4,0,5,11,0,1,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6750,4,0,5,11,0,1,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6751,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6752,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6753,12,0,0,0,0,0,0,0,-1,0,135225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6754,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6755,15,0,1,0,0,0,0,0,-1,0,134344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6756,1,0,8,18,0,0,0,0,-1,0,134344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6757,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6766,12,0,0,0,25,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6767,12,0,0,0,0,0,0,0,-1,0,133290,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6768,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6769,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6770,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6771,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6772,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6773,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6774,4,0,3,23,0,7,0,0,-1,0,135465,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6775,12,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6776,12,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6777,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6778,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6779,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6780,4,1,7,6,0,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6781,0,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6782,0,0,0,0,0,0,0,0,-1,0,133277,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6783,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6784,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6785,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6786,4,0,7,20,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6787,4,1,7,20,17,0,0,0,-1,0,135016,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6788,4,2,8,6,0,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6789,4,1,7,16,0,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6790,4,0,1,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6791,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6792,4,3,5,3,0,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6793,4,3,5,9,0,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6794,4,2,8,10,0,0,0,0,-1,0,132960,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6795,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6796,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6797,2,19,2,26,0,0,0,0,-1,0,135465,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +6798,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,56,0,0,0,0 +6799,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6800,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6801,4,1,7,20,0,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6802,2,7,1,13,0,3,0,0,-1,0,135317,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +6803,4,0,3,23,0,2,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6804,2,4,2,21,0,3,0,0,-1,0,133042,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +6805,12,0,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6806,2,19,2,26,0,0,0,0,-1,0,135466,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +6807,0,0,0,0,0,0,0,0,-1,0,133748,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6808,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6809,12,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6810,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6811,0,0,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6812,0,0,0,0,0,0,0,0,-1,0,132594,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6826,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6827,15,0,1,0,0,0,0,0,-1,0,132762,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6828,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6829,2,7,1,13,0,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +6830,2,1,1,17,0,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +6831,2,15,1,13,0,3,0,0,-1,0,135311,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +6832,4,1,7,16,0,0,0,0,-1,0,132656,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6833,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6834,4,0,7,5,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6835,4,0,7,7,0,0,0,0,-1,0,134581,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6836,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6837,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6838,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6839,12,0,0,0,0,0,0,0,-1,0,134227,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6840,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6841,0,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6842,0,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6843,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6844,12,0,0,0,0,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6845,12,0,0,0,0,0,0,0,-1,0,135227,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6846,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6847,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6848,12,0,0,0,0,0,0,0,-1,0,134128,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6849,12,0,0,0,0,0,0,0,-1,0,132835,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6850,12,0,0,0,0,0,0,0,-1,0,134361,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6851,0,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6852,0,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6866,12,0,0,0,12,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6886,2,16,1,25,1,0,0,0,-1,0,135641,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6887,0,0,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6888,0,0,0,0,1,0,0,0,-1,0,132834,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6889,7,0,0,0,0,0,0,0,-1,0,132832,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6890,0,0,0,0,5,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6891,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6892,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6893,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6894,12,0,0,0,0,0,0,0,-1,0,134131,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6895,12,0,0,0,0,0,0,0,-1,0,133046,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6896,2,14,6,10,15,3,0,0,-1,0,135736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,100,0,0,0,0 +6897,9,0,0,0,30,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6898,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6899,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6900,4,1,7,20,0,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6901,4,1,7,16,24,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6902,4,2,8,9,22,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6903,4,1,7,7,23,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6904,2,15,1,13,23,3,0,0,-1,0,134298,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +6905,2,1,1,17,22,1,0,0,-1,0,135576,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +6906,4,3,5,10,23,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6907,4,3,5,5,20,0,0,0,-1,0,135010,10,0,105,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6908,4,1,7,6,20,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6909,2,8,1,17,26,1,0,0,-1,0,135352,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,102,0,0,0,0 +6910,4,1,7,7,26,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6911,4,2,8,6,26,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6912,12,0,0,0,0,0,0,0,-1,0,136065,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6913,12,0,0,0,0,0,0,0,-1,0,136065,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6914,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6915,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6916,12,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6926,0,0,0,0,0,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6927,0,0,0,0,0,0,0,0,-1,0,133854,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6928,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6929,0,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6930,12,0,0,0,0,0,0,0,-1,0,135469,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6931,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6946,2,4,2,13,1,0,0,0,-1,0,135612,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6947,0,0,3,0,20,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6948,15,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6949,0,0,3,0,28,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6950,0,0,3,0,36,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6951,0,0,3,0,38,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6952,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6953,2,5,2,17,0,1,0,0,-1,0,133042,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,99,0,0,0,0 +6966,2,0,1,21,0,3,0,0,-1,0,132395,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6967,2,7,1,21,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6968,2,4,2,21,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6969,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6970,4,6,1,14,0,4,0,0,-1,0,134951,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6971,4,3,5,1,0,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6972,4,3,5,5,0,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6973,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6974,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6975,2,1,1,17,0,1,0,0,-1,0,132403,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +6976,2,5,2,17,0,1,0,0,-1,0,133045,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +6977,2,8,1,17,0,1,0,0,-1,0,135313,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +6978,2,0,1,21,0,3,0,0,-1,0,132408,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6979,2,0,1,21,0,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6980,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6981,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6982,2,4,2,21,0,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6983,2,4,2,21,0,3,0,0,-1,0,133045,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6984,2,7,1,21,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6985,2,7,1,21,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6986,7,0,7,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6987,7,0,8,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6988,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6989,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6990,12,0,0,0,0,0,0,0,-1,0,135230,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6991,12,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6992,12,0,0,0,0,0,0,0,-1,0,132766,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6993,12,0,0,0,0,0,0,0,-1,0,132761,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6994,12,0,0,0,0,0,0,0,-1,0,135435,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6995,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6996,12,0,0,0,0,0,0,0,-1,0,133457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6997,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6998,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6999,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7000,4,2,8,6,0,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7001,2,19,2,26,0,0,0,0,-1,0,135466,21,0,65,0,5,0,0,0,0,0,0,0,0,0,5,0,30,0,0,0,0,57,0,0,0,0 +7002,4,6,1,14,0,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,642,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +7003,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7004,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7005,2,14,1,13,1,3,0,0,-1,0,135637,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +7006,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7007,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7026,4,1,7,6,4,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7027,4,1,7,8,23,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7046,4,1,7,7,23,0,0,0,-1,0,134588,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7047,4,1,7,10,24,0,0,0,-1,0,132956,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7048,4,1,7,1,24,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7049,4,1,7,10,25,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7050,4,1,7,1,27,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7051,4,1,7,5,29,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7052,4,1,7,6,30,0,0,0,-1,0,132511,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7053,4,1,7,16,30,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7054,4,1,7,20,33,0,0,0,-1,0,132643,7,0,80,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7055,4,1,7,6,30,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7056,4,1,7,16,31,0,0,0,-1,0,132657,7,0,0,0,0,0,0,0,0,24,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7057,4,1,7,3,31,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7058,4,1,7,5,32,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7059,4,1,7,3,33,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7060,4,1,7,3,33,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7061,4,1,7,6,34,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7062,4,1,7,7,34,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7063,4,1,7,20,36,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7064,4,1,7,10,37,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7065,4,1,7,5,28,0,0,0,-1,0,132647,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7066,4,1,7,20,22,0,0,0,-1,0,135016,7,0,70,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7067,5,0,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7068,5,0,0,0,0,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7069,5,0,0,0,0,0,0,0,-1,0,136107,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7070,5,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7071,5,0,0,0,0,0,0,0,-1,0,133607,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7072,5,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7073,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7074,15,0,8,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7075,5,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7076,5,0,0,0,0,0,0,0,-1,0,136102,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7077,5,0,0,0,0,0,0,0,-1,0,135819,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7078,5,0,0,0,0,0,0,0,-1,0,135830,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7079,5,0,0,0,0,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7080,5,0,0,0,0,0,0,0,-1,0,136007,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7081,5,0,0,0,0,0,0,0,-1,0,136018,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7082,5,0,0,0,0,0,0,0,-1,0,136022,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7083,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7084,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7085,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7086,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7087,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7088,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7089,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7090,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7091,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7092,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7093,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7094,2,10,2,17,5,2,0,0,-1,0,135146,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,24,0,0,0,0 +7095,4,1,7,8,4,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7096,15,0,8,0,0,0,0,0,-1,0,132929,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7097,0,0,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7098,15,0,8,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7099,15,0,0,0,0,1,0,0,-1,0,133708,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7100,15,0,0,0,0,1,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7101,15,0,0,0,0,1,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7106,4,1,7,10,0,0,0,0,-1,0,132954,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7107,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7108,4,6,1,14,6,4,6278,0,-1,0,134955,9,0,45,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7109,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7110,4,1,7,5,26,0,0,0,-1,0,135022,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7111,4,1,7,5,32,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7112,4,1,7,5,36,0,0,0,-1,0,135005,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7113,4,1,7,5,41,0,0,0,-1,0,135021,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7114,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7115,2,0,1,21,0,3,0,0,-1,0,132408,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +7116,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +7117,2,4,2,21,0,3,0,0,-1,0,133049,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +7118,2,7,1,21,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +7119,12,0,0,0,0,0,0,0,-1,0,133027,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7120,4,6,1,14,0,4,0,0,-1,0,134960,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7126,12,0,0,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7127,0,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7128,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7129,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7130,4,3,5,1,0,0,0,0,-1,0,133070,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7131,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7132,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7133,4,3,5,5,0,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7134,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7135,15,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7146,13,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7147,0,0,0,0,0,0,0,0,-1,0,134070,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7148,7,3,0,12,0,0,0,0,-1,0,133868,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7166,2,15,1,13,6,3,0,0,-1,0,135650,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +7167,2,15,1,13,6,3,0,0,-1,0,135641,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +7168,0,0,0,0,0,0,0,0,-1,0,135725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7169,2,15,1,13,6,3,0,0,-1,0,135650,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +7170,2,14,6,17,15,3,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,100,0,0,0,0 +7171,2,7,1,13,1,3,0,0,-1,0,133069,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7186,2,19,2,26,2,0,0,0,-1,0,135139,21,0,25,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +7187,4,2,8,8,20,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7188,4,6,1,14,19,4,0,0,-1,0,134950,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7189,4,1,7,8,0,0,0,0,-1,0,133029,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7190,15,0,0,0,0,0,0,0,-1,0,133030,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7191,7,1,0,0,0,0,0,0,-1,0,134065,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7192,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7206,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7207,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7208,12,0,0,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7209,15,0,0,0,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7226,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7227,0,0,0,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7228,0,0,0,0,15,0,0,0,-1,0,133987,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7229,4,3,5,5,0,0,0,0,-1,0,132634,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7230,2,5,2,17,18,1,0,0,-1,0,133046,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +7231,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7246,12,0,0,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7247,15,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7248,4,1,7,16,7,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7249,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7266,0,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7267,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7268,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7269,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7270,12,0,0,0,0,0,0,0,-1,0,134162,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7271,12,0,0,0,0,0,0,0,-1,0,133721,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7272,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7273,12,0,0,0,0,0,0,0,-1,0,135465,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7274,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7275,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7276,4,1,7,16,4,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7277,4,2,8,9,4,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7278,11,2,0,18,1,0,0,0,-1,0,134401,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7279,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7280,4,2,8,7,6,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7281,4,2,8,9,9,0,0,0,-1,0,132603,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7282,4,2,8,7,14,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7283,4,1,7,16,15,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7284,4,2,8,10,19,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7285,4,2,8,10,19,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7286,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7287,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7288,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7289,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7290,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7291,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7292,12,0,0,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7293,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7294,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7295,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7296,15,0,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7297,4,0,0,23,0,3,0,0,-1,0,135142,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7298,2,15,1,13,0,3,0,0,-1,0,135662,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +7299,4,1,7,1,25,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7306,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7307,0,0,0,0,0,0,0,0,-1,0,134324,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7308,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7309,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7326,2,0,1,21,0,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +7327,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +7328,2,4,2,21,0,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +7329,2,7,1,21,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +7330,4,6,1,14,28,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7331,4,6,1,14,29,4,2034,0,-1,0,134953,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7332,4,1,7,5,40,0,465,0,-1,0,135007,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7333,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7334,4,1,7,20,0,0,0,0,-1,0,132651,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7335,4,2,8,5,0,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7336,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7337,4,0,5,11,0,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7338,4,0,5,11,0,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7339,4,0,5,11,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7340,4,0,5,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7341,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7342,4,0,5,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7343,12,0,0,0,0,0,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7344,4,0,0,23,0,3,0,0,-1,0,135142,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7345,12,0,0,0,0,0,0,0,-1,0,134428,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7346,12,0,0,0,0,0,0,0,-1,0,133057,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7347,12,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7348,4,2,8,10,20,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7349,4,2,8,10,22,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7350,4,1,7,9,5,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7351,4,1,7,8,6,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7352,4,2,8,3,22,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7353,4,1,7,5,30,0,462,0,-1,0,135020,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7354,4,1,7,8,28,0,797,0,-1,0,132539,7,0,35,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7355,4,1,7,9,26,0,1049,0,-1,0,132612,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7356,4,1,7,16,25,0,964,0,-1,0,133754,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7357,4,1,7,1,29,0,630,0,-1,0,133117,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7358,4,2,8,10,23,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7359,4,2,8,10,24,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7360,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7361,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7362,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7363,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7364,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7365,12,0,0,0,0,0,0,0,-1,0,132995,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7366,4,1,7,10,27,0,713,0,-1,0,132951,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7367,4,1,7,3,28,0,1133,0,-1,0,135057,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7368,4,1,7,7,29,0,546,0,-1,0,134588,7,0,55,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7369,4,1,7,20,30,0,462,0,-1,0,132658,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7370,4,1,7,6,26,0,881,0,-1,0,132504,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7371,11,2,8,18,30,0,0,0,-1,0,134402,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7372,11,3,8,18,30,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7373,4,2,8,7,28,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7374,4,2,8,5,30,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7375,4,2,8,5,30,0,0,0,-1,0,132631,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7376,12,0,0,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7377,4,1,7,16,31,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7378,4,2,8,9,32,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7386,4,2,8,9,33,0,0,0,-1,0,132605,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7387,4,2,8,6,34,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7388,0,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7389,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7390,4,2,8,8,35,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7391,4,2,8,8,35,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7392,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7406,4,2,8,6,27,0,902,0,-1,0,132492,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7407,4,2,8,5,30,0,483,0,-1,0,132718,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7408,4,2,8,3,28,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7409,4,2,8,8,28,0,818,0,-1,0,132539,7,0,45,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7410,4,2,8,9,26,0,1070,0,-1,0,132606,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7411,4,1,7,16,26,0,986,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7412,4,2,8,10,27,0,734,0,-1,0,132956,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7413,4,2,8,1,28,0,650,0,-1,0,133117,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7414,4,2,8,7,29,0,567,0,-1,0,134587,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7415,4,2,8,3,24,0,1153,0,-1,0,135039,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7416,4,3,5,9,26,0,1091,0,-1,0,132613,10,0,35,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7417,4,3,5,8,29,0,840,0,-1,0,132535,10,0,50,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7418,4,3,5,5,30,0,504,0,-1,0,132736,10,0,100,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7419,4,1,7,16,25,0,1006,0,-1,0,133767,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7420,4,3,5,1,28,0,671,0,-1,0,132767,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7421,4,3,5,10,28,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7422,4,3,5,6,27,0,923,0,-1,0,132494,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7423,4,3,5,7,29,0,588,0,-1,0,134584,10,0,75,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7424,4,3,5,3,28,0,1175,0,-1,0,135057,10,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7425,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7426,4,0,5,11,25,0,3476,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7427,4,0,3,2,26,0,3506,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7428,7,0,8,0,0,0,0,0,-1,0,134345,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7429,4,1,7,5,35,0,464,0,-1,0,135017,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7430,4,1,7,20,35,0,464,0,-1,0,132666,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7431,4,1,7,7,34,0,547,0,-1,0,134588,7,0,55,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7432,4,1,7,1,33,0,631,0,-1,0,133131,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7433,4,1,7,10,32,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7434,4,1,7,8,32,0,799,0,-1,0,132539,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7435,4,1,7,3,33,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7436,4,1,7,16,30,0,966,0,-1,0,133765,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7437,4,1,7,9,31,0,1050,0,-1,0,132608,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7438,4,1,7,6,31,0,882,0,-1,0,132499,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7439,4,2,8,5,35,0,485,0,-1,0,132719,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7440,4,2,8,7,34,0,568,0,-1,0,134706,7,0,65,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7441,4,2,8,1,33,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7442,12,0,0,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7443,4,2,8,10,32,0,736,0,-1,0,132939,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7444,4,2,8,8,32,0,820,0,-1,0,132592,7,0,45,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7445,4,2,8,3,33,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7446,4,1,7,16,31,0,987,0,-1,0,133758,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7447,4,2,8,9,31,0,1071,0,-1,0,132607,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7448,4,2,8,6,31,0,903,0,-1,0,132493,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7449,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7450,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7451,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7452,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7453,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7454,4,3,5,5,34,0,505,0,-1,0,132739,10,0,100,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7455,4,3,5,7,34,0,589,0,-1,0,134584,10,0,75,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7456,4,3,5,1,33,0,673,0,-1,0,132767,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7457,4,3,5,10,32,0,757,0,-1,0,132962,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7458,4,3,5,8,32,0,841,0,-1,0,132535,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7459,4,3,5,3,33,0,1177,0,-1,0,135058,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7460,4,1,7,16,29,0,1008,0,-1,0,133768,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7461,4,3,5,9,31,0,1092,0,-1,0,132606,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7462,4,3,5,6,32,0,925,0,-1,0,132515,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7463,4,6,1,14,33,4,2040,0,-1,0,134956,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7464,12,0,0,0,0,0,0,0,-1,0,134416,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7465,4,6,1,14,34,4,2040,0,-1,0,134952,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7466,4,0,5,11,32,0,3479,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7467,4,0,3,2,30,0,3507,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7468,4,1,7,20,40,0,465,0,-1,0,132677,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7469,4,1,7,7,39,0,549,0,-1,0,134593,7,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7470,4,1,7,1,37,0,632,0,-1,0,133090,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7471,4,1,7,10,37,0,716,0,-1,0,132966,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7472,4,1,7,8,36,0,800,0,-1,0,132539,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7473,4,1,7,3,37,0,1136,0,-1,0,135033,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7474,4,1,7,16,35,0,968,0,-1,0,133754,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7475,4,1,7,9,36,0,1052,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7476,4,1,7,6,35,0,884,0,-1,0,132497,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7477,4,2,8,5,40,0,486,0,-1,0,132723,7,0,85,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7478,4,2,8,7,38,0,570,0,-1,0,134594,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7479,4,2,8,1,37,0,653,0,-1,0,133111,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7480,4,2,8,10,36,0,737,0,-1,0,132959,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7481,4,2,8,8,37,0,821,0,-1,0,132542,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7482,4,2,8,3,37,0,1157,0,-1,0,135049,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7483,4,1,7,16,35,0,989,0,-1,0,133753,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7484,4,2,8,9,36,0,1073,0,-1,0,132608,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7485,4,2,8,6,36,0,905,0,-1,0,132506,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7486,4,3,5,5,39,0,507,0,-1,0,132742,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7487,4,3,5,7,38,0,591,0,-1,0,134590,10,0,75,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7488,4,3,5,1,37,0,674,0,-1,0,132767,10,0,60,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7489,4,3,5,10,36,0,758,0,-1,0,132938,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7490,4,3,5,8,37,0,842,0,-1,0,132590,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7491,4,3,5,3,38,0,1179,0,-1,0,135049,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7492,4,1,7,16,34,0,1009,0,-1,0,133753,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7493,4,3,5,9,35,0,1094,0,-1,0,132611,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7494,4,3,5,6,36,0,926,0,-1,0,132514,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7495,4,6,1,14,39,4,2052,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7496,4,6,1,14,38,4,2052,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7497,4,0,0,11,35,0,3480,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7498,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7499,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7500,12,0,0,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7506,7,3,8,12,0,0,0,0,-1,0,134376,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7507,4,0,0,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7508,4,0,0,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7509,4,1,7,20,0,0,0,0,-1,0,132677,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7510,4,1,7,20,0,0,0,0,-1,0,132659,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7511,4,1,7,20,0,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7512,4,1,7,20,0,0,0,0,-1,0,132661,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7513,2,19,2,26,0,0,0,0,-1,0,135471,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +7514,2,19,2,26,0,0,0,0,-1,0,135467,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +7515,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7516,0,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7517,4,1,7,5,45,0,467,0,-1,0,135007,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7518,4,1,7,20,45,0,467,0,-1,0,132645,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7519,4,1,7,7,42,0,550,0,-1,0,134592,7,0,55,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7520,4,1,7,1,42,0,634,0,-1,0,133111,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7521,4,1,7,10,41,0,718,0,-1,0,132966,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7522,4,1,7,8,40,0,801,0,-1,0,132543,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7523,4,1,7,3,41,0,1138,0,-1,0,135033,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7524,4,1,7,16,39,0,969,0,-1,0,133766,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7525,4,1,7,9,40,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7526,4,1,7,6,41,0,886,0,-1,0,132496,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7527,4,2,8,5,45,0,488,0,-1,0,132720,7,0,85,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7528,4,2,8,7,43,0,571,0,-1,0,134706,7,0,65,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7529,4,2,8,1,42,0,655,0,-1,0,133120,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7530,4,2,8,10,41,0,739,0,-1,0,132956,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7531,4,2,8,8,41,0,823,0,-1,0,132535,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7532,4,2,8,3,42,0,1159,0,-1,0,135032,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7533,4,1,7,16,39,0,990,0,-1,0,133770,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7534,4,2,8,9,40,0,1074,0,-1,0,132615,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7535,4,2,8,6,41,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7536,4,6,1,14,43,4,2058,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7537,4,6,1,14,44,4,2064,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7538,4,3,5,5,43,0,508,0,-1,0,132627,10,0,100,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7539,4,3,5,7,43,0,592,0,-1,0,134583,10,0,75,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7540,4,3,5,1,42,0,676,0,-1,0,133070,10,0,60,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7541,4,3,5,10,41,0,760,0,-1,0,132963,10,0,35,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7542,4,3,5,8,41,0,844,0,-1,0,132590,10,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7543,4,3,5,3,42,0,1180,0,-1,0,135053,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7544,4,1,7,16,39,0,1011,0,-1,0,133763,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7545,4,3,5,9,40,0,1095,0,-1,0,132615,10,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7546,4,3,5,6,41,0,928,0,-1,0,132493,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7547,4,0,5,11,41,0,3482,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7548,4,0,3,2,41,0,3511,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7549,4,0,3,2,42,0,0,0,-1,0,132520,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7550,4,0,3,2,42,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7551,4,0,3,2,42,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7552,4,0,5,11,39,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7553,4,0,5,11,43,1,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7554,4,0,0,23,14,7,2002,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7555,4,0,0,23,40,7,2050,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7556,4,0,0,23,35,7,2044,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7557,4,0,2,23,45,7,2062,0,-1,0,135464,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7558,4,0,0,23,20,7,2014,0,-1,0,135466,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7559,4,0,0,23,12,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7560,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7561,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7566,12,0,0,0,0,0,0,0,-1,0,135274,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7567,12,0,0,0,0,0,0,0,-1,0,132392,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7568,12,0,0,0,0,0,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7569,12,0,0,0,0,0,0,0,-1,0,133487,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7586,12,0,0,0,0,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7587,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7606,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7607,2,19,2,26,0,0,0,0,-1,0,135139,21,0,45,0,5,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +7608,4,0,0,23,16,7,0,0,-1,0,132791,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7609,4,0,0,23,30,7,2032,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7610,4,0,0,23,36,7,0,0,-1,0,134121,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7611,4,0,3,23,41,7,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7612,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +7613,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7626,12,0,0,0,1,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7627,0,0,0,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7628,12,0,0,0,1,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7629,0,0,0,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7646,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7666,12,0,0,0,37,0,0,0,-1,0,133289,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7667,12,0,0,0,0,0,0,0,-1,0,134715,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7668,15,0,0,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7669,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7670,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7671,12,0,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7672,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7673,4,0,0,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7674,12,0,0,0,1,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7675,12,0,0,0,1,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7676,0,0,3,0,5,0,0,0,-1,0,132819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7677,2,8,1,17,24,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,78,0,0,0,0 +7678,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7679,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7680,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7681,12,0,0,0,0,0,0,0,-1,0,135241,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7682,2,15,1,13,29,3,0,0,-1,0,135124,8,0,65,0,0,2,0,0,0,0,0,0,0,0,0,0,21,5,0,0,0,39,7,0,0,0 +7683,2,13,1,13,29,7,0,0,-1,0,132945,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +7684,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7685,4,0,0,23,33,7,0,0,-1,0,134334,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7686,4,0,5,11,30,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7687,2,4,2,13,30,3,0,0,-1,0,133056,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +7688,4,3,5,5,30,0,0,0,-1,0,132750,10,0,120,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7689,2,8,1,17,30,1,0,0,-1,0,135302,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +7690,4,2,8,10,30,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7691,4,1,7,1,30,0,0,0,-1,0,133130,7,0,50,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7706,2,5,2,13,1,1,0,0,-1,0,133488,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7707,2,5,2,17,35,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +7708,2,19,2,26,30,0,0,0,-1,0,135466,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7709,4,1,7,7,30,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7710,2,10,2,17,31,2,0,0,-1,0,135155,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +7711,4,1,7,20,33,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7712,4,1,7,3,33,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7713,2,10,2,17,34,2,0,0,-1,0,135466,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +7714,2,15,1,13,34,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +7715,12,0,0,0,1,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7716,12,0,0,0,0,0,0,0,-1,0,133289,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7717,2,1,1,17,37,1,0,0,-1,0,135575,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +7718,4,3,5,3,37,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7719,4,3,5,1,37,0,0,0,-1,0,133127,10,0,70,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7720,4,1,7,1,39,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7721,2,4,2,21,39,3,0,0,-1,0,133039,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +7722,4,0,3,2,39,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7723,2,5,2,17,39,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +7724,4,3,5,10,39,0,0,0,-1,0,132953,10,0,40,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7725,4,0,7,19,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7726,4,6,1,14,39,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,1548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7727,4,2,8,3,27,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7728,4,1,7,20,29,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7729,2,3,1,26,28,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +7730,2,5,2,17,29,1,0,0,-1,0,133041,9,0,100,0,0,4,0,0,0,0,0,0,0,0,0,0,74,5,0,0,0,111,5,0,0,0 +7731,4,0,3,2,30,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7732,12,0,0,0,0,0,0,0,-1,0,134066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7733,12,0,0,0,0,0,0,0,-1,0,135138,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7734,4,0,0,12,46,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7735,12,0,0,0,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7736,2,4,2,13,34,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,76,0,0,0,0 +7737,12,0,0,0,1,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7738,4,1,7,10,0,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7739,4,1,7,16,0,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7740,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7741,12,0,0,0,0,0,0,0,-1,0,135225,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7742,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7746,4,0,3,2,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7747,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7748,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7749,4,0,3,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7750,4,1,7,3,0,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7751,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7752,2,4,2,21,28,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +7753,2,1,1,17,27,1,0,0,-1,0,132401,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +7754,4,2,8,8,25,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7755,4,2,8,3,33,0,0,0,-1,0,135044,7,0,60,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7756,4,2,8,10,29,0,0,0,-1,0,132941,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7757,2,10,2,17,32,2,0,0,-1,0,135469,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +7758,2,6,1,17,34,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +7759,4,3,5,5,33,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7760,4,2,8,7,34,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7761,2,0,1,21,33,3,0,0,-1,0,132397,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7766,12,0,0,0,1,0,0,0,-1,0,132825,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7767,12,0,0,0,1,0,0,0,-1,0,132821,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7768,12,0,0,0,1,0,0,0,-1,0,132829,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7769,12,0,0,0,1,0,0,0,-1,0,132824,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7770,12,0,0,0,1,0,0,0,-1,0,132820,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7771,12,0,0,0,1,0,0,0,-1,0,132828,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7786,2,0,1,13,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +7787,4,6,1,14,26,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7806,0,0,0,0,1,0,0,0,-1,0,133982,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7807,0,0,0,0,1,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7808,0,0,0,0,1,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7809,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7810,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7811,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7812,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7813,12,0,0,0,1,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7826,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7846,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7847,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7848,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7866,12,0,0,0,0,0,0,0,-1,0,134867,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7867,12,0,0,0,0,0,0,0,-1,0,134832,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7868,15,0,2,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7869,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7870,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7871,12,0,0,0,1,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7872,7,0,1,0,15,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7886,12,0,0,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7887,12,0,0,0,0,0,0,0,-1,0,133645,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7888,4,0,0,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7906,12,0,0,0,0,0,0,0,-1,0,134228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7907,15,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7908,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7909,7,0,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7910,7,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7911,7,0,1,0,0,0,0,0,-1,0,134580,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7912,7,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7913,4,3,5,3,27,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7914,4,3,5,5,27,0,0,0,-1,0,132636,10,0,100,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7915,4,3,5,1,30,0,0,0,-1,0,133127,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7916,4,3,5,8,31,0,0,0,-1,0,132582,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7917,4,3,5,10,32,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7918,4,4,6,3,40,0,0,0,-1,0,135053,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7919,4,4,6,10,40,0,0,0,-1,0,132961,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7920,4,3,5,7,37,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7921,4,4,6,7,40,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7922,4,4,6,1,40,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7923,13,0,0,0,0,0,0,0,-1,0,134245,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7924,4,3,5,9,38,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7925,4,3,5,10,39,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7926,4,4,6,7,40,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7927,4,4,6,10,40,0,0,0,-1,0,132965,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7928,4,4,6,3,40,0,0,0,-1,0,135040,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7929,4,3,5,7,37,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7930,4,4,6,5,41,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7931,4,3,5,1,41,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7932,4,3,5,3,42,0,0,0,-1,0,135043,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7933,4,4,6,8,42,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7934,4,4,6,1,42,0,0,0,-1,0,133078,11,0,70,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7935,4,4,6,5,43,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7936,4,4,6,8,44,0,0,0,-1,0,132535,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7937,4,4,6,1,44,0,0,0,-1,0,133078,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7938,4,4,6,10,40,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7939,4,4,6,5,44,0,0,0,-1,0,132739,11,0,135,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7940,2,1,1,17,35,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,87,0,0,0,0 +7941,2,0,1,21,37,3,0,0,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +7942,2,0,1,13,39,3,0,0,-1,0,132394,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7943,2,7,1,21,40,3,0,0,-1,0,135280,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +7944,2,7,1,21,43,3,0,0,-1,0,135340,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,63,0,0,0,0 +7945,2,4,2,21,41,3,0,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +7946,2,4,2,21,44,3,0,0,-1,0,133054,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,76,0,0,0,0 +7947,2,15,1,13,46,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,59,0,0,0,0 +7948,4,2,8,6,0,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7949,4,2,8,7,0,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,90,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0 +7950,4,2,8,5,0,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7951,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,60,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0 +7952,4,2,8,8,0,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7953,4,2,8,1,0,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7954,2,4,2,21,42,3,0,0,-1,0,133055,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +7955,2,8,1,17,6,1,0,0,-1,0,135322,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,23,0,0,0,0 +7956,2,5,2,17,20,1,0,0,-1,0,133055,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,57,0,0,0,0 +7957,2,8,1,17,21,1,0,0,-1,0,135321,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +7958,2,1,1,17,22,1,0,0,-1,0,132415,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +7959,2,6,1,17,45,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,141,0,0,0,0 +7960,2,8,1,17,47,1,0,0,-1,0,135317,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +7961,2,7,1,21,44,1,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +7962,7,0,1,0,0,0,0,0,-1,0,133725,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7963,4,3,5,5,35,0,0,0,-1,0,132740,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7964,7,0,0,0,25,0,0,0,-1,0,135251,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7965,7,0,0,0,25,0,0,0,-1,0,135258,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7966,7,0,0,0,0,0,0,0,-1,0,135246,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7967,7,0,8,0,0,0,0,0,-1,0,133597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7968,12,0,0,0,0,0,0,0,-1,0,134344,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7969,7,0,8,0,0,0,0,0,-1,0,132307,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7970,0,0,0,0,0,0,0,0,-1,0,134059,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7971,7,0,0,0,0,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7972,5,0,0,0,0,0,0,0,-1,0,134437,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7973,15,0,0,0,0,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7974,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7975,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7976,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7977,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7978,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7979,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7980,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7981,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7982,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7983,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7984,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7985,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7986,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7987,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7988,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7989,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7990,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7991,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7992,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7993,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7994,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7995,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7996,4,1,7,1,15,0,0,0,-1,0,133133,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7997,4,0,0,1,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8006,2,15,1,13,34,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +8007,0,0,1,0,48,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8008,0,0,1,0,58,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8009,12,0,0,0,0,0,0,0,-1,0,132489,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8026,12,0,0,0,0,0,0,0,-1,0,132482,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8027,12,0,0,0,0,0,0,0,-1,0,132790,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8028,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8029,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8030,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8046,9,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8047,12,0,0,0,0,0,0,0,-1,0,134530,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8048,0,0,0,0,0,0,0,0,-1,0,134430,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8049,12,0,3,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8050,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8051,12,0,0,0,0,0,0,0,-1,0,134536,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8052,12,0,0,0,0,0,0,0,-1,0,132488,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8053,12,0,0,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8066,12,0,0,0,1,0,0,0,-1,0,134374,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8067,6,3,2,24,5,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +8068,6,3,2,24,15,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +8069,6,3,2,24,30,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +8070,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8071,2,19,2,26,0,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +8072,13,0,0,0,1,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8073,12,0,0,0,1,0,0,0,-1,0,134846,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8074,12,0,0,0,1,0,0,0,-1,0,134166,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8075,0,0,0,0,35,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8076,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8077,0,0,3,0,35,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8078,0,0,3,0,45,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8079,0,0,3,0,55,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8080,4,4,6,5,53,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8081,4,4,6,6,52,0,0,0,-1,0,132505,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8082,4,4,6,8,47,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8083,4,4,6,9,48,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8084,4,4,6,10,51,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8085,4,4,6,7,50,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8086,4,4,6,3,49,0,0,0,-1,0,135044,11,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8087,15,0,0,0,1,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8088,4,4,6,6,45,0,0,0,-1,0,132504,11,0,40,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8089,4,4,6,8,45,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8090,4,4,6,9,45,0,0,0,-1,0,132613,11,0,40,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8091,4,4,6,10,45,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8092,4,4,6,1,45,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8093,4,4,6,7,45,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8094,4,4,6,5,45,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8095,0,0,0,0,1,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8106,4,1,7,5,45,0,0,0,-1,0,135010,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8107,4,1,7,8,42,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8108,4,1,7,9,42,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8109,4,1,7,16,41,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8110,4,1,7,10,42,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8111,4,1,7,3,43,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8112,4,1,7,7,44,0,0,0,-1,0,134594,7,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8113,4,1,7,20,46,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8114,4,1,7,6,42,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8115,4,1,7,1,43,0,0,0,-1,0,133134,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8116,4,2,8,6,42,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8117,4,2,8,8,42,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8118,4,2,8,9,41,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8119,4,2,8,5,46,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8120,4,1,7,16,40,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8121,4,2,8,10,42,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8122,4,2,8,1,43,0,0,0,-1,0,133127,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8123,4,2,8,7,44,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8124,4,2,8,3,43,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8125,4,3,5,9,43,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8126,4,3,5,5,46,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8127,4,1,7,16,42,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8128,4,3,5,10,44,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8129,4,3,5,6,44,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8130,4,3,5,8,44,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8131,4,3,5,1,45,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8132,4,3,5,7,46,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8133,4,3,5,3,45,0,0,0,-1,0,135057,10,0,60,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8134,4,6,1,14,46,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8135,4,6,1,14,41,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8136,12,0,0,0,1,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8137,4,4,6,9,40,0,0,0,-1,0,132613,11,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8138,4,4,6,5,42,0,0,0,-1,0,132749,11,0,115,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8139,4,4,6,10,40,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8140,4,4,6,6,40,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8141,4,4,6,8,40,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8142,4,4,6,1,40,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8143,4,4,6,7,41,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8144,4,4,6,3,40,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8146,7,0,1,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8147,5,0,0,0,0,0,0,0,-1,0,134246,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8148,5,0,0,0,0,0,0,0,-1,0,134248,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8149,12,0,0,0,0,0,0,0,-1,0,132502,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8150,7,0,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8151,7,0,8,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8152,7,0,8,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8153,7,0,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8154,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8155,12,0,0,0,0,0,0,0,-1,0,135652,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8156,4,4,6,9,40,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8157,4,4,6,5,40,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8158,4,4,6,10,40,0,0,0,-1,0,132951,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8159,4,4,6,6,40,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8160,4,4,6,8,40,0,0,0,-1,0,132583,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8161,4,4,6,1,40,0,0,0,-1,0,133159,11,0,70,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8162,4,4,6,7,40,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8163,4,4,6,3,40,0,0,0,-1,0,135043,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8164,0,0,0,0,0,0,0,0,-1,0,134937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8165,15,0,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8166,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8167,7,0,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8168,5,0,0,0,0,0,0,0,-1,0,132915,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8169,7,0,8,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8170,7,0,8,0,0,0,0,0,-1,0,134251,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8171,7,0,8,0,0,0,0,0,-1,0,134357,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8172,7,0,8,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8173,0,0,8,0,30,0,0,0,-1,0,133602,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8174,4,2,8,1,35,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8175,4,2,8,5,36,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8176,4,2,8,1,36,0,0,0,-1,0,132513,7,0,50,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8177,2,8,1,17,2,1,0,0,-1,0,135355,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +8178,2,8,1,17,5,1,5173,0,-1,0,135355,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +8179,2,2,2,15,1,0,0,0,-1,0,135493,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +8180,2,2,2,15,6,0,0,0,-1,0,135491,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +8181,2,3,1,26,4,0,0,0,-1,0,135613,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +8182,2,3,1,26,2,0,0,0,-1,0,135613,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +8183,2,2,2,15,22,0,0,0,-1,0,135492,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +8184,2,19,2,26,24,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +8185,4,3,5,7,42,0,0,0,-1,0,134582,10,0,75,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8186,2,19,2,26,21,0,0,0,-1,0,135468,21,0,50,0,5,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +8187,4,3,5,10,36,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8188,2,3,1,26,32,0,0,0,-1,0,135617,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +8189,4,3,5,5,37,0,0,0,-1,0,132634,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8190,2,7,1,13,50,3,0,0,-1,0,135280,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +8191,4,3,5,1,41,0,0,0,-1,0,133142,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8192,4,2,8,3,37,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8193,4,2,8,7,41,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8194,2,4,2,13,38,3,5251,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +8195,4,1,7,16,41,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8196,2,7,1,13,38,3,5258,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +8197,4,2,8,8,42,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8198,4,3,5,9,37,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8199,2,8,1,17,42,1,5272,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +8200,4,2,8,20,38,0,0,0,-1,0,132666,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8201,4,2,8,1,39,0,0,0,-1,0,132482,7,0,50,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8202,4,2,8,7,42,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8203,4,3,5,5,39,0,0,0,-1,0,132717,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8204,4,3,5,10,40,0,0,0,-1,0,132958,10,0,35,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8205,4,3,5,9,39,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8206,4,3,5,7,44,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8207,4,3,5,3,43,0,0,0,-1,0,135035,10,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8208,4,3,5,1,45,0,0,0,-1,0,133122,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8209,4,3,5,8,42,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8210,4,2,8,3,39,0,1158,0,-1,0,135049,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8211,4,2,8,5,40,0,486,0,-1,0,132647,7,0,85,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8212,4,2,8,7,45,0,572,0,-1,0,134594,7,0,65,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8213,4,2,8,8,44,0,824,0,-1,0,132541,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8214,4,2,8,1,40,0,654,0,-1,0,133078,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8215,4,1,7,16,45,0,992,0,-1,0,133755,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8216,4,1,7,16,43,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8217,11,2,8,18,40,0,0,0,-1,0,134407,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8218,11,3,8,18,40,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8223,2,7,1,13,32,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +8224,2,7,1,21,31,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +8225,2,7,1,13,31,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +8226,2,7,1,21,26,3,0,0,-1,0,135316,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +8243,0,0,0,0,1,0,0,0,-1,0,133983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8244,12,0,0,0,1,0,0,0,-1,0,134564,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8245,4,1,7,5,51,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8246,4,1,7,8,47,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8247,4,1,7,9,46,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8248,4,1,7,16,45,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8249,4,1,7,10,47,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8250,4,1,7,3,47,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8251,4,1,7,7,49,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8252,4,1,7,20,51,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8253,4,1,7,6,46,0,0,0,-1,0,132518,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8254,4,1,7,1,48,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8255,4,2,8,6,45,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8256,4,2,8,8,47,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8257,4,2,8,9,45,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8258,4,2,8,5,51,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8259,4,1,7,16,45,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8260,4,2,8,10,47,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8261,4,2,8,1,49,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8262,4,2,8,7,49,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8263,4,2,8,3,48,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8264,4,3,5,9,47,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8265,4,3,5,5,51,0,0,0,-1,0,132639,10,0,100,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8266,4,1,7,16,46,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8267,4,3,5,10,49,0,0,0,-1,0,132949,10,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8268,4,3,5,6,49,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8269,4,3,5,8,50,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8270,4,3,5,1,50,0,0,0,-1,0,133074,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8271,4,3,5,7,51,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8272,4,3,5,3,49,0,0,0,-1,0,135058,10,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8273,4,4,6,9,41,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8274,4,4,6,5,46,0,0,0,-1,0,132646,11,0,115,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8275,4,6,1,14,51,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8276,4,4,6,10,42,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8277,4,4,6,6,41,0,0,0,-1,0,132508,11,0,40,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8278,4,4,6,8,42,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8279,4,4,6,1,43,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8280,4,4,6,7,44,0,0,0,-1,0,134592,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8281,4,4,6,3,43,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8282,4,6,1,14,46,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8283,4,1,7,5,56,0,0,0,-1,0,135017,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8284,4,1,7,8,52,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8285,4,1,7,9,51,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8286,4,1,7,16,50,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8287,4,1,7,10,52,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8288,4,1,7,3,54,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8289,4,1,7,7,55,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8290,4,1,7,20,56,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8291,4,1,7,6,51,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8292,4,1,7,1,53,0,0,0,-1,0,133090,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8293,4,2,8,6,51,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8294,4,2,8,8,52,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8295,4,2,8,9,51,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8296,4,2,8,5,56,0,0,0,-1,0,132720,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8297,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8298,4,2,8,10,52,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8299,4,2,8,1,54,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8300,4,2,8,7,55,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8301,4,2,8,3,54,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8302,4,3,5,9,53,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8303,4,3,5,5,57,0,0,0,-1,0,132749,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8304,4,1,7,16,52,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8305,4,3,5,10,54,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8306,4,3,5,6,54,0,0,0,-1,0,132519,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8307,4,3,5,8,55,0,0,0,-1,0,132589,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8308,4,3,5,1,55,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8309,4,3,5,7,56,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8310,4,3,5,3,55,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8311,4,4,6,9,48,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8312,4,4,6,5,52,0,0,0,-1,0,132627,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8313,4,6,1,14,57,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8314,4,4,6,10,48,0,0,0,-1,0,132960,11,0,40,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8315,4,4,6,6,47,0,0,0,-1,0,132507,11,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8316,4,4,6,8,48,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8317,4,4,6,1,49,0,0,0,-1,0,133118,11,0,70,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8318,4,4,6,7,51,0,0,0,-1,0,134581,11,0,85,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8319,4,4,6,3,50,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8320,4,6,1,14,52,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8323,12,0,0,0,0,0,0,0,-1,0,132392,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8343,7,0,8,0,0,0,0,0,-1,0,132906,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8344,12,0,0,0,0,0,0,0,-1,0,135652,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8345,4,2,8,1,40,0,0,0,-1,0,133072,7,0,60,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8346,4,2,8,10,41,0,0,0,-1,0,132964,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8347,4,3,5,10,40,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8348,4,2,8,1,45,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,118,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8349,4,2,8,5,45,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8350,4,0,5,11,10,1,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8363,12,0,0,0,0,0,0,0,-1,0,132502,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8364,0,0,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8365,0,0,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8366,0,0,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8367,4,3,5,5,46,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,306,0,13,0,13,12,0,0,0,0,0,0,0,0,0,0,0 +8368,7,0,8,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8383,15,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8384,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8385,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8386,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8387,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8388,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8389,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8390,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8391,12,0,0,0,1,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8392,12,0,0,0,1,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8393,12,0,0,0,1,0,0,0,-1,0,133708,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8394,12,0,0,0,1,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8395,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8396,12,0,0,0,1,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8397,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8398,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8399,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8400,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8401,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8402,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8403,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8404,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8405,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8406,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8407,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8408,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8409,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8410,0,0,0,0,0,0,0,0,-1,0,135241,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8411,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8412,0,0,0,0,0,0,0,0,-1,0,133849,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8423,0,0,0,0,0,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8424,0,0,0,0,0,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8425,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8426,15,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8427,15,0,0,0,0,0,0,0,-1,0,134356,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8428,12,0,0,0,0,0,0,0,-1,0,134374,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8429,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8430,15,0,0,0,0,0,0,0,-1,0,133727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8431,12,0,0,0,0,0,0,0,-1,0,132906,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8432,0,0,0,0,1,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8443,12,0,0,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8444,0,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8463,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8483,15,0,0,0,0,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8484,15,0,0,0,0,0,0,0,-1,0,132764,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8485,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8486,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8487,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8488,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8489,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8490,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8491,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8492,15,0,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8493,0,0,0,0,0,0,0,0,-1,0,132620,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8494,15,0,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8495,15,0,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8496,15,0,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8497,15,0,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8498,15,0,0,0,0,0,0,0,-1,0,134153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8499,15,0,0,0,0,0,0,0,-1,0,134153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8500,15,0,0,0,0,0,0,0,-1,0,132150,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8501,15,0,0,0,0,0,0,0,-1,0,132150,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8502,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8503,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8504,15,0,1,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8505,15,0,1,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8506,15,0,1,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8507,15,0,1,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8508,15,0,2,0,0,0,0,0,-1,0,134305,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8523,12,0,0,0,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8524,12,0,0,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8525,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8526,12,0,0,0,0,0,0,0,-1,0,134527,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8527,12,0,0,0,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8528,12,0,0,0,0,0,0,0,-1,0,134798,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8529,0,0,0,0,35,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8543,0,0,0,0,25,0,0,0,-1,0,134533,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8544,0,0,7,0,0,0,0,0,-1,0,133689,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8545,0,0,7,0,0,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8546,0,0,0,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8547,9,7,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8548,0,0,0,0,0,0,0,0,-1,0,135470,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8563,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8564,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8583,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8584,12,0,0,0,0,0,0,0,-1,0,134867,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8585,12,0,0,0,0,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8586,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8587,12,0,0,0,0,0,0,0,-1,0,134365,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8588,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8589,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8590,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8591,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8592,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8593,12,0,0,0,0,0,0,0,-1,0,132995,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8594,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8595,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8603,12,0,0,0,0,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8623,12,0,0,0,43,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8624,4,0,2,23,0,0,0,0,-1,0,135468,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8625,4,0,2,23,0,0,0,0,-1,0,135469,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8626,4,0,2,23,0,0,0,0,-1,0,135467,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8627,15,0,0,0,40,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8628,15,0,0,0,40,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8629,15,0,0,0,40,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8630,15,0,0,0,40,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8631,15,0,0,0,40,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8632,15,0,0,0,40,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8633,15,0,0,0,40,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8643,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8644,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8645,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8646,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8647,12,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8663,12,0,0,12,0,0,0,0,-1,0,133598,8,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8683,12,0,0,0,1,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8684,12,0,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8685,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8686,12,0,0,0,1,0,0,0,-1,0,133278,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8687,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8688,4,0,1,12,35,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8703,12,0,0,12,0,0,0,0,-1,0,133603,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8704,12,0,0,0,43,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8705,12,0,0,0,40,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8706,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8707,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8708,2,4,2,21,40,3,0,0,-1,0,133061,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +8723,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8724,12,0,0,0,1,0,0,0,-1,0,134459,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8743,9,0,0,0,1,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8744,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8745,9,0,0,0,8,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8746,4,1,7,1,28,0,0,0,-1,0,133130,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8747,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8748,4,3,5,1,25,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8749,4,1,7,1,38,0,0,0,-1,0,133117,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8750,4,2,8,1,37,0,0,0,-1,0,133090,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8751,4,3,5,1,39,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8752,4,3,5,1,49,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8753,4,2,8,1,52,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8754,4,1,7,1,51,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8755,4,4,5,1,50,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8756,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8757,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8758,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8759,9,0,0,0,24,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8760,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8761,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8762,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8763,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8764,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8765,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8766,0,0,7,0,45,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8767,9,0,0,0,32,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8768,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8769,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8770,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8771,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8772,9,0,0,0,36,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8773,9,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8774,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8775,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8776,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8777,9,0,0,0,52,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8778,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8779,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8780,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8781,9,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8782,9,0,0,0,44,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8783,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8784,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8785,9,0,0,0,52,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8786,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8787,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8788,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8789,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8790,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8791,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8792,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8793,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8794,9,0,0,0,56,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8795,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8796,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8797,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8798,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8799,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8800,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8801,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8802,9,0,0,0,1,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8803,9,0,0,0,6,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8804,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8805,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8806,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8807,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8808,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8809,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8810,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8811,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8812,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8813,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8814,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8815,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8816,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8817,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8818,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8819,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8820,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8821,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8822,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8823,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8824,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8825,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8826,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8827,0,0,3,0,24,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8828,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8829,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8830,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8831,7,0,7,0,0,0,0,0,-1,0,134198,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8832,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8833,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8834,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8835,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8836,7,0,7,0,0,0,0,0,-1,0,134194,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8837,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8838,7,0,7,0,0,0,0,0,-1,0,134199,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8839,7,0,7,0,0,0,0,0,-1,0,134195,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8840,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8841,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8842,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8843,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8844,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8845,7,0,7,0,0,0,0,0,-1,0,134529,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8846,7,0,7,0,0,0,0,0,-1,0,134197,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8847,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8848,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8849,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8850,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8851,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8852,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8853,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8854,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8855,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8856,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8857,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8858,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8859,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8860,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8861,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8862,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8863,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8864,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8865,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8866,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8867,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8868,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8869,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8870,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8871,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8872,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8873,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8874,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8875,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8876,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8877,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8878,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8879,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8880,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8881,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8882,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8883,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8884,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8885,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8886,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8887,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8888,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8889,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8890,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8891,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8892,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8893,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8894,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8895,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8896,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8897,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8898,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8899,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8900,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8901,9,0,0,0,44,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8902,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8903,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8904,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8905,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8906,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8907,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8908,9,0,0,0,6,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8909,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8910,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8911,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8912,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8913,9,0,0,0,16,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8914,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8915,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8916,9,0,0,0,26,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8917,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8918,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8919,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8920,9,0,0,0,34,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8921,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8922,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8923,7,0,7,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8924,7,0,7,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8925,7,0,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8926,0,0,3,0,44,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8927,0,0,3,0,52,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8928,0,0,3,0,60,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8929,9,0,0,0,44,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8930,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8931,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8932,0,0,0,0,45,0,0,0,-1,0,133993,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8933,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8934,9,0,0,0,48,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8935,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8936,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8937,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8938,9,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8939,9,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8940,9,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8941,9,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8942,9,0,0,0,56,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8943,9,0,0,0,56,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8944,9,0,0,0,58,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8945,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8946,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8947,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8948,0,0,0,0,45,0,0,0,-1,0,134526,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8949,0,0,3,0,27,0,0,0,-1,0,134873,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8950,0,0,0,0,45,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8951,0,0,3,0,29,0,0,0,-1,0,134845,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8952,0,0,0,0,45,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8953,0,0,0,0,45,0,0,0,-1,0,133979,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8954,9,0,0,0,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8955,9,0,0,0,8,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8956,0,0,3,0,31,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8957,0,0,0,0,45,0,0,0,-1,0,133908,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8958,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8959,0,0,0,0,45,0,0,0,-1,0,133908,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8960,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8961,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8962,9,0,0,0,16,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8963,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8964,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8965,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8966,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8967,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8968,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8969,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8970,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8971,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8972,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8973,12,0,0,0,0,0,0,0,-1,0,134361,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8974,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8975,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8976,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8977,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8978,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8979,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8980,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8981,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8982,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8983,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8984,0,0,3,0,46,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8985,0,0,3,0,54,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8986,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8987,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8988,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8989,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8990,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8991,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8992,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8993,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8994,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8995,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8996,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8997,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8998,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8999,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9000,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9001,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9002,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9003,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9004,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9005,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9006,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9007,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9008,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9009,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9010,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9011,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9012,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9013,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9014,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9015,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9016,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9017,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9018,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9019,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9020,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9021,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9022,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9023,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9024,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9025,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9026,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9027,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9028,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9029,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9030,0,0,3,0,32,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9031,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9032,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9033,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9034,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9035,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9036,0,0,3,0,32,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9037,9,0,0,0,1,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9038,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9039,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9040,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9041,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9042,2,15,1,22,1,3,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +9043,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9044,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9045,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9046,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9047,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9048,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9049,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9050,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9051,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9052,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9053,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9054,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9055,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9056,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9057,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9058,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9059,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9060,5,0,0,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9061,5,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9062,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9063,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9064,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9065,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9066,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9067,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9068,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9069,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9070,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9071,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9072,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9073,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9074,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9075,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9076,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9077,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9078,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9079,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9080,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9081,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9082,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9083,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9084,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9085,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9086,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9087,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9088,0,0,0,0,38,0,0,0,-1,0,134808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9089,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9090,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9091,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9092,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9093,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9094,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9095,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9096,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9097,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9098,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9099,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9100,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9101,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9102,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9103,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9104,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9105,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9123,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9124,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9125,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9126,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9127,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9128,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9129,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9130,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9131,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9132,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9133,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9134,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9135,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9136,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9137,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9138,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9139,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9140,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9141,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9142,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9143,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9144,0,0,0,0,35,0,0,0,-1,0,134814,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9145,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9146,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9147,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9148,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9149,7,0,2,0,0,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9150,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9151,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9152,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9153,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9154,0,0,0,0,36,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9155,0,0,0,0,37,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9156,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9157,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9158,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9159,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9160,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9161,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9162,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9163,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9164,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9165,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9166,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9167,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9168,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9169,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9170,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9171,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9172,0,0,3,0,37,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9173,12,0,0,0,1,0,0,0,-1,0,132488,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9174,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9175,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9176,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9177,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9178,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9179,0,0,3,0,37,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9180,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9181,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9182,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9183,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9184,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9185,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9186,0,0,3,0,52,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9187,0,0,3,0,38,0,0,0,-1,0,134874,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9188,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9189,12,0,0,0,0,0,0,0,-1,0,133706,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9190,9,0,0,0,1,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9191,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9192,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9193,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9194,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9195,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9196,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9197,0,0,3,0,38,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9198,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9199,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9200,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9201,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9202,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9203,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9204,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9205,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9206,0,0,3,0,38,0,0,0,-1,0,134841,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9207,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9208,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9209,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9210,7,0,3,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9211,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9212,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9213,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9214,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9215,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9216,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9217,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9218,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9219,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9220,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9221,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9222,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9223,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9224,0,0,3,0,40,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9225,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9226,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9227,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9228,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9229,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9230,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9231,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9232,0,0,3,0,40,0,0,0,-1,0,134841,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9233,0,0,0,0,40,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9234,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9235,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9236,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9237,12,0,8,0,0,0,0,0,-1,0,134322,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9238,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9239,2,14,0,17,0,0,0,0,-1,0,133042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9240,12,0,0,0,0,0,0,0,-1,0,133056,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9241,12,0,0,0,0,0,0,0,-1,0,133056,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9242,15,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9243,4,0,8,2,40,0,0,0,-1,0,134338,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9244,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9245,12,0,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9246,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9247,12,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9248,12,0,0,0,0,0,0,0,-1,0,136098,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9249,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9250,12,0,0,0,40,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9251,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9252,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9253,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9254,12,0,0,0,40,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9255,12,0,1,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9256,12,0,1,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9257,12,0,1,0,0,0,0,0,-1,0,134577,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9258,12,0,1,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9259,15,0,0,0,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9260,0,0,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9261,15,0,1,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9262,7,0,1,0,0,0,0,0,-1,0,134133,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9263,12,0,0,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9264,0,0,3,0,40,0,0,0,-1,0,134826,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9265,12,0,0,0,0,0,0,0,-1,0,132594,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9266,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9275,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9276,15,0,0,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9277,12,0,0,0,0,0,0,0,-1,0,132488,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9278,12,0,0,0,0,0,0,0,-1,0,132995,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9279,12,0,0,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9280,12,0,0,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9281,12,0,0,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9282,12,0,0,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9283,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9284,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9285,4,4,6,9,40,0,1115,0,-1,0,132616,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9286,4,4,6,5,40,0,528,0,-1,0,132749,11,0,115,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9287,4,4,6,10,40,0,779,0,-1,0,132938,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9288,4,4,6,6,40,0,947,0,-1,0,132492,11,0,40,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9289,4,4,6,8,40,0,863,0,-1,0,132535,11,0,55,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9290,4,4,6,1,40,0,695,0,-1,0,133124,11,0,70,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9291,4,4,6,7,40,0,612,0,-1,0,134583,11,0,85,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9292,4,4,6,3,40,0,1199,0,-1,0,135040,11,0,70,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9293,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9294,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9295,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9296,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9297,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9298,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9299,13,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9300,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9301,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9302,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9303,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9304,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9305,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9306,12,0,2,0,0,0,0,0,-1,0,135157,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9307,12,0,1,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9308,12,0,0,0,0,0,0,0,-1,0,132386,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9309,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9310,15,0,0,0,0,0,0,0,-1,0,133025,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9311,0,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9312,0,0,0,0,0,0,0,0,-1,0,135989,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9313,0,0,0,0,0,0,0,0,-1,0,136006,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9314,0,0,0,0,0,0,0,0,-1,0,135815,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9315,0,0,0,0,0,0,0,0,-1,0,135920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9316,12,0,0,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9317,0,0,0,0,0,0,0,0,-1,0,135934,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9318,0,0,0,0,0,0,0,0,-1,0,135808,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9319,0,0,0,0,0,0,0,0,-1,0,135125,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9320,12,0,0,0,0,0,0,0,-1,0,133731,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9321,12,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9322,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9323,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9324,12,0,0,0,0,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9325,12,0,2,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9326,12,0,0,0,28,0,0,0,-1,0,135230,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9327,15,0,0,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9328,12,0,1,0,0,0,0,0,-1,0,134442,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9329,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9330,12,0,0,0,0,0,0,0,-1,0,134300,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9331,12,0,0,0,0,0,0,0,-1,0,133734,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9332,15,0,3,0,0,0,0,0,-1,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9333,4,0,3,2,0,0,0,0,-1,0,132507,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9334,15,0,3,0,0,0,0,0,-1,0,132835,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9335,15,0,3,0,0,0,0,0,-1,0,133476,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9336,15,0,3,0,0,0,0,0,-1,0,133025,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9355,15,0,3,0,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9356,15,0,3,0,0,0,0,0,-1,0,133479,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9357,15,0,3,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9358,15,0,3,0,0,0,0,0,-1,0,133694,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9359,2,4,2,13,40,3,0,0,-1,0,133942,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +9360,0,0,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9361,0,0,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9362,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9363,15,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9364,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9365,12,0,0,0,0,0,0,0,-1,0,136006,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9366,4,3,5,10,36,0,0,0,-1,0,132963,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9367,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9368,12,0,0,0,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9369,12,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9370,12,0,0,0,38,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9371,12,0,1,0,0,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9372,2,8,1,17,50,1,0,0,-1,0,135350,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,163,0,0,0,0 +9375,4,2,8,1,33,0,0,0,-1,0,133120,7,0,60,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9376,2,11,1,17,50,1,0,0,-1,0,135353,9,0,105,0,0,0,0,0,0,0,0,20,0,0,0,0,72,0,0,0,0,98,0,0,0,0 +9377,2,11,1,17,50,1,0,0,-1,0,135355,9,0,105,0,0,0,0,0,0,0,0,0,0,20,0,0,72,0,0,0,0,98,0,0,0,0 +9378,2,0,1,13,33,3,0,0,-1,0,134708,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +9379,2,7,1,13,44,3,0,0,-1,0,135355,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +9380,2,7,1,13,45,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +9381,2,19,2,26,33,0,0,0,-1,0,135154,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +9382,4,2,8,8,33,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9383,2,1,1,17,35,1,0,0,-1,0,132405,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +9384,2,15,1,13,31,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +9385,2,8,1,17,31,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +9386,2,4,2,13,31,7,0,0,-1,0,135432,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,82,0,0,0,0 +9387,4,4,6,8,40,0,863,0,-1,0,132587,11,0,55,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9388,4,3,5,9,35,0,1094,0,-1,0,132615,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9389,4,2,8,3,36,0,1157,0,-1,0,135056,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9390,4,1,7,10,35,0,716,0,-1,0,132951,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9391,2,5,2,17,32,1,0,0,-1,0,134436,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9392,2,7,1,13,35,3,0,0,-1,0,135327,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +9393,4,0,0,23,33,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9394,4,4,6,1,40,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9395,4,1,7,10,29,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9396,4,3,5,7,34,0,0,0,-1,0,134590,10,0,90,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9397,4,1,7,16,34,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9398,4,2,8,8,35,0,0,0,-1,0,132536,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9399,6,2,2,24,35,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,12,0,0,0,0 +9400,2,2,2,15,36,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +9401,2,7,1,13,38,3,0,0,-1,0,135325,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +9402,4,2,8,7,55,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9403,4,6,1,14,35,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9404,4,6,1,14,37,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9405,4,3,5,6,28,0,0,0,-1,0,132516,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9406,4,2,8,5,30,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9407,4,1,7,7,35,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9408,2,10,2,17,37,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +9409,4,3,5,9,37,0,1096,0,-1,0,132618,10,0,40,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9410,4,4,6,10,40,0,782,0,-1,0,132946,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9411,4,3,5,3,40,0,0,0,-1,0,135033,10,0,60,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9412,2,3,1,26,42,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,84,0,0,0,0 +9413,2,5,2,17,44,1,0,0,-1,0,133049,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +9414,4,2,8,7,41,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9415,4,1,7,5,42,0,0,0,-1,0,135009,7,0,80,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9416,2,6,1,17,42,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9417,4,0,3,2,42,0,0,0,-1,0,134459,24,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9418,2,8,1,17,44,1,0,0,-1,0,135357,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +9419,2,4,2,13,41,3,0,0,-1,0,133054,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +9420,4,2,8,1,32,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9421,0,0,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9422,2,3,1,26,38,0,0,0,-1,0,134536,8,0,75,3,0,0,0,0,0,0,0,0,0,0,7,0,46,0,0,0,0,86,0,0,0,0 +9423,2,5,2,17,40,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,119,0,0,0,0 +9424,2,7,1,13,36,1,0,0,-1,0,135352,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +9425,2,1,1,17,39,1,0,0,-1,0,135578,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,187,0,0,0,0 +9426,2,2,2,15,36,0,0,0,-1,0,135489,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +9427,2,4,2,13,37,3,0,0,-1,0,133718,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +9428,4,2,8,9,30,0,1073,0,-1,0,132605,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9429,4,1,7,1,39,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9430,4,3,5,3,40,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9431,4,1,7,1,38,0,0,0,-1,0,133130,7,0,50,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9432,4,4,6,9,40,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9433,4,1,7,9,41,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9434,4,1,7,5,36,0,0,0,-1,0,132718,7,0,80,0,0,0,0,0,0,59,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +9435,4,3,5,10,31,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9436,12,0,0,0,0,0,0,0,-1,0,133472,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9437,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9438,12,0,0,0,0,0,0,0,-1,0,136128,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9439,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9440,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9441,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9442,12,0,0,0,0,0,0,0,-1,0,136128,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9443,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9444,4,6,1,14,21,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9445,4,3,5,10,29,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9446,2,7,1,21,29,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +9447,4,0,5,11,29,1,0,0,-1,0,134066,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9448,4,1,7,9,28,0,0,0,-1,0,133679,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9449,2,5,2,17,29,1,0,0,-1,0,133489,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +9450,4,2,8,8,28,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9451,0,0,7,0,15,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9452,2,10,2,17,27,2,0,0,-1,0,135152,13,0,100,0,0,0,0,0,0,0,0,0,0,15,0,0,48,0,0,0,0,73,0,0,0,0 +9453,2,15,1,13,27,3,0,0,-1,0,135638,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +9454,4,1,7,8,27,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,34,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +9455,4,2,8,9,28,0,1072,0,-1,0,132608,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 +9456,2,3,1,26,30,0,0,0,-1,0,135611,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +9457,2,4,2,13,30,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +9458,4,6,1,14,32,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9459,2,1,1,17,32,1,0,0,-1,0,132394,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +9460,12,0,0,0,0,0,0,0,-1,0,133721,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9461,4,0,5,11,32,1,3481,0,-1,0,134063,14,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0 +9462,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9463,12,0,1,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9464,12,0,1,0,0,0,0,0,-1,0,134435,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +9465,2,0,1,13,40,3,0,0,-1,0,134707,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +9466,12,0,1,0,0,0,0,0,-1,0,134435,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9467,2,15,1,13,42,3,0,0,-1,0,134298,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +9468,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9469,4,3,5,5,43,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9470,4,1,7,1,44,0,0,0,-1,0,132482,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9471,12,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9472,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9473,4,2,8,5,44,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9474,4,2,8,7,44,0,0,0,-1,0,134585,7,0,75,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9475,2,6,1,17,44,2,0,0,-1,0,135124,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +9476,4,4,6,3,45,0,0,0,-1,0,135032,11,0,80,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9477,2,10,2,17,45,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +9478,2,0,1,21,45,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,117,0,0,0,0 +9479,4,2,8,1,45,0,0,0,-1,0,132266,7,0,60,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9480,2,6,1,17,43,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +9481,2,1,1,17,44,1,0,0,-1,0,132394,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,164,0,0,0,0 +9482,2,10,2,17,42,2,0,0,-1,0,135168,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,114,0,0,0,0 +9483,2,19,2,26,44,0,0,0,-1,0,135432,21,0,65,0,2,0,0,0,0,0,0,8,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +9484,4,1,7,7,45,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9485,2,0,1,13,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +9486,2,1,1,17,23,1,0,0,-1,0,132415,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,78,0,0,0,0 +9487,2,3,1,26,24,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +9488,2,4,2,13,23,3,0,0,-1,0,133045,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +9489,2,19,2,26,26,0,0,0,-1,0,135467,21,0,55,0,4,0,0,0,0,0,0,0,0,5,0,0,24,0,0,0,0,46,0,0,0,0 +9490,2,8,1,17,24,1,0,0,-1,0,135347,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +9491,4,1,7,10,27,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9492,4,1,7,1,32,0,0,0,-1,0,132995,7,0,50,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9507,12,0,0,0,0,0,0,0,-1,0,132764,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9508,4,1,7,20,26,0,0,0,-1,0,135018,7,0,80,0,0,0,0,0,0,48,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 +9509,4,2,8,7,25,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,90,0,-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9510,4,3,5,8,27,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9511,2,7,1,13,41,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +9512,4,1,7,16,41,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9513,2,10,2,17,0,2,0,0,-1,0,135158,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +9514,2,10,2,17,0,2,0,0,-1,0,135147,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +9515,4,1,7,5,0,0,0,0,-1,0,135011,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9516,4,1,7,5,0,0,0,0,-1,0,135015,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9517,2,10,2,17,0,2,0,0,-1,0,135151,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +9518,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9519,4,1,7,8,0,0,0,0,-1,0,132540,7,0,35,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9520,2,15,1,13,0,3,0,0,-1,0,135654,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +9521,2,1,1,17,0,1,0,0,-1,0,132397,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +9522,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9523,12,0,7,0,0,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9527,2,10,2,17,0,2,0,0,-1,0,135473,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,116,0,0,0,0 +9528,12,0,0,0,0,0,0,0,-1,0,134131,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9529,15,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9530,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9531,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9532,15,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9533,4,0,5,11,0,1,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9534,4,2,8,1,0,0,0,0,-1,0,133135,7,0,60,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9535,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9536,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9537,15,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9538,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9539,15,0,0,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9540,15,0,0,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9541,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9542,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9543,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9544,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9545,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9546,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9547,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9548,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9549,12,0,0,0,0,0,0,0,-1,0,134414,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9550,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9551,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9552,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9553,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9554,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9555,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9556,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9557,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9558,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9559,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9560,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9561,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9562,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9563,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9564,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9565,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9566,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9567,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9568,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9569,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9570,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9571,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9572,12,0,0,0,0,0,0,0,-1,0,134414,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9573,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9574,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9575,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9576,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9577,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9578,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9579,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9580,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9581,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9587,1,0,7,18,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9588,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9589,12,0,1,0,0,0,0,0,-1,0,134139,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9590,12,0,1,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9591,12,0,8,0,0,0,0,0,-1,0,134257,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9592,12,0,1,0,0,0,0,0,-1,0,135241,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9593,12,0,1,0,0,0,0,0,-1,0,136074,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9594,12,0,1,0,0,0,0,0,-1,0,135992,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9595,12,0,1,0,0,0,0,0,-1,0,135865,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9596,12,0,1,0,0,0,0,0,-1,0,136011,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9597,12,0,1,0,0,0,0,0,-1,0,136018,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9598,4,1,7,20,0,0,0,0,-1,0,132677,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9599,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9600,4,1,7,7,0,0,0,0,-1,0,134589,7,0,35,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9601,4,2,8,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9602,2,8,1,17,0,1,0,0,-1,0,135276,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +9603,2,10,2,17,0,2,0,0,-1,0,135159,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,22,0,0,0,0 +9604,2,5,2,17,0,1,0,0,-1,0,133479,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +9605,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9606,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9607,4,6,1,14,0,4,0,0,-1,0,134952,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9608,2,0,1,22,0,3,0,0,-1,0,134520,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +9609,4,1,7,10,0,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9618,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9619,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9620,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9621,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9622,4,0,0,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9623,4,1,7,20,0,0,0,0,-1,0,132659,7,0,80,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9624,4,2,8,7,0,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9625,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9626,2,1,1,17,0,1,0,0,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +9627,4,0,3,23,0,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9628,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9629,12,0,0,0,0,0,0,0,-1,0,134150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9630,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9631,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9632,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9633,4,2,8,8,0,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9634,4,1,7,10,0,0,0,0,-1,0,132956,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9635,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9636,4,1,7,6,0,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9637,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9638,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9639,2,4,2,21,43,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,113,0,0,0,0 +9640,4,4,6,10,43,0,783,0,-1,0,132960,11,0,45,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9641,4,0,3,2,43,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9642,4,0,5,11,0,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9643,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9644,4,0,3,23,0,7,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9645,4,1,7,8,0,0,0,0,-1,0,132535,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9646,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9647,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9648,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9649,4,1,7,20,0,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9650,4,3,5,5,0,0,0,0,-1,0,132751,10,0,100,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9651,2,4,2,21,0,3,0,0,-1,0,133038,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +9652,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9653,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9654,2,19,2,26,0,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +9655,4,0,5,11,0,1,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9656,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9657,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9658,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9659,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +9660,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9661,4,6,1,14,0,4,0,0,-1,0,134959,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9662,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9663,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9664,4,4,6,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9665,4,1,7,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9666,4,3,5,6,0,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9678,2,5,2,17,0,1,0,0,-1,0,133480,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +9679,2,1,1,17,0,1,0,0,-1,0,135562,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,125,0,0,0,0 +9680,2,15,1,13,0,3,0,0,-1,0,135654,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +9681,0,0,0,0,35,0,0,0,-1,0,132274,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9682,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9683,2,10,2,17,0,2,0,0,-1,0,135162,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,173,0,0,0,0 +9684,2,0,1,21,0,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +9685,2,1,1,17,46,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9686,2,4,2,21,0,3,0,0,-1,0,133060,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +9687,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9698,4,2,8,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9699,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9700,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +9701,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +9702,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +9703,4,1,7,16,0,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9704,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9705,4,2,8,6,0,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9706,4,6,1,14,0,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9718,2,7,1,13,33,3,0,0,-1,0,135280,8,0,90,0,0,2,0,0,0,0,0,0,0,0,0,0,31,5,0,0,0,59,10,0,0,0 +9719,7,0,1,0,0,0,0,0,-1,0,135280,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,50,0,0,0,0 +9738,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9739,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9740,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9741,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9742,4,1,7,6,7,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9743,4,1,7,8,7,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9744,4,1,7,9,7,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9745,4,1,7,16,6,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9746,4,1,7,10,8,0,0,0,-1,0,132955,7,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9747,4,1,7,7,9,0,539,0,-1,0,134586,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9748,4,1,7,20,10,0,455,0,-1,0,132659,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9749,4,1,7,5,10,0,455,0,-1,0,135009,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9750,4,2,8,6,7,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9751,4,2,8,8,7,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9752,4,2,8,9,7,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9753,4,6,1,14,7,4,6278,0,-1,0,134956,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9754,4,1,7,16,6,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9755,4,2,8,10,8,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9756,4,2,8,7,9,0,560,0,-1,0,134585,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9757,4,2,8,5,10,0,476,0,-1,0,135010,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9758,4,3,5,6,7,0,0,0,-1,0,132506,10,0,20,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9759,4,3,5,8,8,0,0,0,-1,0,132582,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9760,4,3,5,9,7,0,0,0,-1,0,132611,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9761,4,1,7,16,6,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9762,4,3,5,10,8,0,0,0,-1,0,132946,10,0,20,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9763,4,3,5,7,9,0,581,0,-1,0,134590,10,0,55,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9764,4,6,1,14,8,4,6279,0,-1,0,134955,9,0,50,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9765,4,3,5,5,10,0,497,0,-1,0,132627,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9766,4,1,7,6,17,0,878,0,-1,0,132494,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9767,4,1,7,8,18,0,794,0,-1,0,132537,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9768,4,1,7,9,16,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9769,4,0,0,23,22,7,2014,0,-1,0,135153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9770,4,1,7,16,15,0,961,0,-1,0,133769,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9771,4,1,7,10,20,0,711,0,-1,0,132952,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9772,4,1,7,7,22,0,543,0,-1,0,134590,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9773,4,1,7,20,22,0,459,0,-1,0,132656,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9774,4,1,7,5,22,0,459,0,-1,0,132656,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9775,4,2,8,6,14,0,898,0,-1,0,132492,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9776,4,2,8,8,15,0,814,0,-1,0,132539,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9777,4,2,8,9,14,0,1066,0,-1,0,132604,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9778,4,6,1,14,15,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9779,4,1,7,16,13,0,981,0,-1,0,133771,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9780,4,2,8,10,15,0,730,0,-1,0,132949,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9781,4,2,8,7,17,0,563,0,-1,0,134586,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9782,4,2,8,5,18,0,479,0,-1,0,135015,7,0,75,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9783,4,3,5,5,15,0,499,0,-1,0,132629,10,0,80,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9784,4,3,5,8,14,0,835,0,-1,0,132535,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9785,4,3,5,9,12,0,1086,0,-1,0,132612,10,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9786,4,1,7,16,11,0,1002,0,-1,0,133770,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9787,4,3,5,10,14,0,751,0,-1,0,132938,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9788,4,3,5,6,13,0,918,0,-1,0,132500,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9789,4,3,5,7,14,0,583,0,-1,0,134583,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9790,4,6,1,14,14,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9791,4,1,7,5,24,0,460,0,-1,0,135010,7,0,70,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9792,4,1,7,8,20,0,795,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9793,4,1,7,9,20,0,1047,0,-1,0,132611,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9794,4,1,7,16,20,0,963,0,-1,0,133767,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9795,4,1,7,10,21,0,711,0,-1,0,132961,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9796,4,1,7,3,22,0,1131,0,-1,0,135044,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9797,4,1,7,7,23,0,544,0,-1,0,134594,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9798,4,1,7,20,24,0,460,0,-1,0,132683,7,0,70,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9799,4,1,7,6,21,0,879,0,-1,0,132514,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9800,4,0,0,23,24,7,2020,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9801,4,2,8,6,20,0,900,0,-1,0,132491,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9802,4,2,8,8,21,0,816,0,-1,0,132537,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9803,4,2,8,9,21,0,1068,0,-1,0,132601,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9804,4,6,1,14,21,4,2016,0,-1,0,134955,9,0,80,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9805,4,1,7,16,19,0,983,0,-1,0,133762,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9806,4,2,8,10,22,0,732,0,-1,0,132939,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9807,4,2,8,3,22,0,1152,0,-1,0,135039,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9808,4,2,8,7,23,0,565,0,-1,0,134582,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9809,4,2,8,5,23,0,481,0,-1,0,132725,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9810,4,3,5,8,20,0,837,0,-1,0,132535,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9811,4,3,5,9,19,0,1088,0,-1,0,132602,10,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9812,4,1,7,16,17,0,1004,0,-1,0,133766,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9813,4,3,5,10,20,0,753,0,-1,0,132955,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9814,4,3,5,6,19,0,920,0,-1,0,132493,10,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9815,4,3,5,7,20,0,585,0,-1,0,134583,10,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9816,4,6,1,14,20,4,2016,0,-1,0,134953,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9817,4,3,5,3,21,0,1173,0,-1,0,135038,10,0,55,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9818,4,3,5,5,20,0,501,0,-1,0,132624,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9819,4,1,7,5,29,0,462,0,-1,0,132646,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9820,4,1,7,8,26,0,797,0,-1,0,132537,7,0,35,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9821,4,1,7,9,25,0,1048,0,-1,0,132610,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9822,4,1,7,16,24,0,964,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9823,4,1,7,10,26,0,713,0,-1,0,132939,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9824,4,1,7,3,27,0,1133,0,-1,0,135037,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9825,4,1,7,7,28,0,545,0,-1,0,134589,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9826,4,1,7,20,29,0,462,0,-1,0,132661,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9827,4,2,8,6,25,0,901,0,-1,0,132498,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9828,4,2,8,8,26,0,818,0,-1,0,132537,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9829,4,2,8,9,24,0,1069,0,-1,0,132602,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9830,4,6,1,14,27,4,2026,0,-1,0,134956,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9831,4,1,7,16,24,0,985,0,-1,0,133759,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9832,4,2,8,10,26,0,734,0,-1,0,132958,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9833,4,2,8,7,28,0,566,0,-1,0,134582,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9834,4,2,8,3,27,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9835,4,2,8,5,28,0,482,0,-1,0,132725,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9836,4,3,5,5,28,0,503,0,-1,0,132739,10,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9837,4,3,5,9,25,0,1090,0,-1,0,132602,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9838,4,1,7,16,24,0,1006,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9839,4,3,5,10,26,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9840,4,3,5,6,26,0,923,0,-1,0,132495,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9841,4,3,5,7,27,0,587,0,-1,0,134583,10,0,75,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9842,4,3,5,3,27,0,1175,0,-1,0,135046,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9843,4,6,1,14,28,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9844,4,1,7,5,33,0,463,0,-1,0,132647,7,0,70,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9845,4,1,7,8,30,0,798,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9846,4,1,7,9,30,0,1050,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9847,4,1,7,16,28,0,965,0,-1,0,133769,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9848,4,1,7,10,31,0,714,0,-1,0,132956,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9849,4,1,7,1,31,0,630,0,-1,0,133134,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9850,4,1,7,3,31,0,1134,0,-1,0,135036,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9851,4,1,7,7,32,0,547,0,-1,0,134587,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9852,4,1,7,20,33,0,463,0,-1,0,132663,7,0,70,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9853,4,1,7,6,29,0,882,0,-1,0,132504,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9854,4,2,8,5,33,0,484,0,-1,0,132723,7,0,85,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9855,4,2,8,6,30,0,903,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9856,4,2,8,8,31,0,819,0,-1,0,132542,7,0,45,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9857,4,2,8,9,29,0,1071,0,-1,0,132611,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9858,4,6,1,14,31,4,2034,0,-1,0,134955,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9859,4,2,8,1,31,0,651,0,-1,0,133117,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9860,4,1,7,16,29,0,987,0,-1,0,133755,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9861,4,2,8,10,30,0,735,0,-1,0,132956,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9862,4,2,8,7,32,0,568,0,-1,0,134587,7,0,65,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9863,4,2,8,3,32,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9864,4,3,5,8,31,0,840,0,-1,0,132539,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9865,4,3,5,9,29,0,1092,0,-1,0,132606,10,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9866,4,3,5,5,33,0,505,0,-1,0,132634,10,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9867,4,1,7,16,28,0,1007,0,-1,0,133757,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9868,4,3,5,10,30,0,756,0,-1,0,132962,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9869,4,3,5,6,30,0,924,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9870,4,3,5,1,31,0,672,0,-1,0,132768,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9871,4,3,5,7,32,0,589,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9872,4,3,5,3,32,0,1177,0,-1,0,135040,10,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9873,4,6,1,14,32,4,2040,0,-1,0,134953,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9874,4,1,7,5,38,0,465,0,-1,0,135017,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9875,4,1,7,6,34,0,883,0,-1,0,132499,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9876,4,1,7,8,35,0,800,0,-1,0,132539,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9877,4,1,7,16,33,0,967,0,-1,0,133765,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9878,4,1,7,1,36,0,632,0,-1,0,133153,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9879,4,1,7,9,34,0,1051,0,-1,0,132608,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9880,4,1,7,10,35,0,716,0,-1,0,132955,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9881,4,1,7,3,36,0,1136,0,-1,0,135033,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9882,4,0,0,23,38,7,2050,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9883,4,1,7,7,37,0,548,0,-1,0,134588,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9884,4,1,7,20,38,0,465,0,-1,0,132664,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9885,4,2,8,8,35,0,821,0,-1,0,132541,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9886,4,2,8,9,34,0,1072,0,-1,0,132605,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9887,4,2,8,5,38,0,486,0,-1,0,132722,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9888,4,6,1,14,31,4,2044,0,-1,0,136085,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9889,4,2,8,1,35,0,653,0,-1,0,132514,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9890,4,1,7,16,33,0,988,0,-1,0,133761,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9891,4,2,8,6,34,0,904,0,-1,0,132506,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9892,4,2,8,10,35,0,737,0,-1,0,132949,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9893,4,2,8,7,37,0,569,0,-1,0,134594,7,0,65,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9894,4,2,8,3,36,0,1157,0,-1,0,135039,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9895,4,3,5,8,35,0,842,0,-1,0,132589,10,0,50,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9896,4,3,5,9,34,0,1093,0,-1,0,132616,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9897,4,3,5,5,37,0,506,0,-1,0,132631,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9898,4,1,7,16,33,0,1009,0,-1,0,133759,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9899,4,6,1,14,37,4,2046,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9900,4,3,5,10,35,0,758,0,-1,0,132946,10,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9901,4,3,5,6,35,0,926,0,-1,0,132516,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9902,4,3,5,1,36,0,674,0,-1,0,133139,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9903,4,3,5,7,37,0,590,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9904,4,3,5,3,36,0,1178,0,-1,0,135057,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9905,4,1,7,5,43,0,466,0,-1,0,135017,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9906,4,1,7,6,39,0,885,0,-1,0,132499,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9907,4,1,7,8,39,0,801,0,-1,0,132539,7,0,35,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9908,4,1,7,16,38,0,969,0,-1,0,133754,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9909,4,1,7,9,38,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9910,4,1,7,10,39,0,717,0,-1,0,132951,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9911,4,1,7,7,41,0,550,0,-1,0,134593,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9912,4,1,7,3,40,0,1137,0,-1,0,135033,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9913,4,1,7,20,43,0,466,0,-1,0,132644,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9914,4,0,0,23,43,7,2056,0,-1,0,133483,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9915,4,1,7,1,40,0,633,0,-1,0,133693,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9916,4,2,8,6,39,0,906,0,-1,0,132506,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9917,4,2,8,8,39,0,822,0,-1,0,132542,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9918,4,6,1,14,40,4,2052,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9919,4,1,7,16,38,0,990,0,-1,0,133753,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9920,4,2,8,10,39,0,738,0,-1,0,132959,7,0,30,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9921,4,2,8,1,40,0,654,0,-1,0,133119,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9922,4,2,8,7,41,0,571,0,-1,0,134594,7,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9923,4,2,8,3,40,0,1158,0,-1,0,135049,7,0,50,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9924,4,2,8,5,43,0,487,0,-1,0,132723,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9925,4,2,8,9,39,0,1074,0,-1,0,132608,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9926,4,3,5,8,38,0,843,0,-1,0,132589,10,0,50,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9927,4,3,5,9,37,0,1094,0,-1,0,132612,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9928,4,3,5,5,40,0,507,0,-1,0,132750,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9929,4,1,7,16,36,0,1010,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9930,4,3,5,10,38,0,759,0,-1,0,132960,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9931,4,3,5,6,38,0,927,0,-1,0,132500,10,0,35,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9932,4,3,5,1,39,0,675,0,-1,0,133090,10,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9933,4,3,5,7,40,0,591,0,-1,0,134584,10,0,75,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9934,4,3,5,3,39,0,1179,0,-1,0,135054,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9935,4,6,1,14,40,4,2052,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9936,4,1,7,8,44,0,803,0,-1,0,132543,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9937,4,1,7,9,43,0,1054,0,-1,0,132610,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9938,4,1,7,16,43,0,970,0,-1,0,133768,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9939,4,1,7,10,44,0,719,0,-1,0,132951,7,0,25,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9940,4,1,7,1,45,0,635,0,-1,0,133131,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9941,4,1,7,3,44,0,1139,0,-1,0,135033,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9942,4,1,7,7,45,0,551,0,-1,0,134588,7,0,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9943,4,1,7,20,48,0,468,0,-1,0,132664,7,0,70,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9944,4,0,2,23,48,7,2068,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9945,4,1,7,6,43,0,886,0,-1,0,132511,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9946,4,1,7,5,48,0,468,0,-1,0,135021,7,0,70,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9947,4,2,8,6,43,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9948,4,2,8,8,44,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9949,4,2,8,9,43,0,1075,0,-1,0,132615,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9950,4,2,8,5,48,0,489,0,-1,0,132720,7,0,85,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9951,4,1,7,16,42,0,991,0,-1,0,133770,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9952,4,2,8,10,44,0,740,0,-1,0,132956,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9953,4,2,8,1,45,0,656,0,-1,0,133126,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9954,4,2,8,7,46,0,572,0,-1,0,134592,7,0,65,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9955,4,2,8,3,45,0,1160,0,-1,0,135032,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9956,4,3,5,9,41,0,1096,0,-1,0,132600,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9957,4,3,5,5,45,0,509,0,-1,0,132759,10,0,100,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9958,4,6,1,14,45,4,2064,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9959,4,1,7,16,40,0,1011,0,-1,0,133772,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9960,4,3,5,10,42,0,760,0,-1,0,132960,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9961,4,3,5,6,42,0,928,0,-1,0,132497,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9962,4,3,5,8,43,0,844,0,-1,0,132589,10,0,50,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9963,4,3,5,1,43,0,676,0,-1,0,132767,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9964,4,3,5,7,44,0,593,0,-1,0,134586,10,0,75,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9965,4,3,5,3,44,0,1181,0,-1,0,135036,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9966,4,4,6,5,40,0,528,0,-1,0,132722,11,0,115,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9967,4,4,6,10,40,0,780,0,-1,0,132957,11,0,40,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9968,4,4,6,6,40,0,947,0,-1,0,132500,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9969,4,4,6,1,40,0,696,0,-1,0,133127,11,0,70,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9970,4,4,6,7,40,0,612,0,-1,0,134586,11,0,85,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9971,4,4,6,3,40,0,1200,0,-1,0,135054,11,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9972,4,4,6,9,40,0,1115,0,-1,0,132602,11,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9973,4,4,6,8,40,0,863,0,-1,0,132588,11,0,55,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9974,4,6,1,14,47,4,2070,0,-1,0,135971,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9978,12,0,0,1,0,0,0,0,-1,0,133151,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9998,4,1,7,5,36,0,0,0,-1,0,132718,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9999,4,1,7,7,36,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10000,12,0,0,0,40,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10001,4,1,7,20,37,0,0,0,-1,0,132654,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10002,4,1,7,7,37,0,0,0,-1,0,134591,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10003,4,1,7,10,38,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10004,4,1,7,20,38,0,0,0,-1,0,132679,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10005,12,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10006,4,1,7,5,38,0,0,0,-1,0,132648,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10007,4,1,7,5,38,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10008,4,1,7,1,38,0,0,0,-1,0,133763,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10009,4,1,7,7,38,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10010,4,1,7,7,39,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10011,4,1,7,10,39,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10018,4,1,7,10,40,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10019,4,1,7,10,40,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10020,4,1,7,5,40,0,0,0,-1,0,132649,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10021,4,1,7,5,40,0,0,0,-1,0,132683,7,0,80,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10022,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10023,4,1,7,10,40,0,0,0,-1,0,132943,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10024,4,1,7,1,41,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10025,4,1,7,1,44,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10026,4,1,7,8,41,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10027,4,1,7,3,41,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10028,4,1,7,3,42,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10029,4,1,7,3,42,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10030,4,1,7,1,43,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10031,4,1,7,8,43,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10032,4,1,7,1,43,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10033,4,1,7,1,43,0,0,0,-1,0,133694,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10034,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10035,4,1,7,7,30,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10036,4,1,7,5,30,0,0,0,-1,0,135022,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10037,4,1,7,1,44,0,0,0,-1,0,133763,7,0,45,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10038,4,1,7,3,44,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10039,4,1,7,8,45,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10040,4,1,7,20,30,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10041,4,1,7,1,45,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10042,4,1,7,20,40,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10043,4,1,7,7,0,0,0,0,-1,0,134591,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10044,4,1,7,8,44,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10045,4,1,7,7,2,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10046,4,1,7,8,4,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10047,4,1,7,7,10,0,0,0,-1,0,134591,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10048,4,1,7,7,14,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10049,2,15,1,13,0,3,0,0,-1,0,135638,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +10050,1,0,8,18,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10051,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10052,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10053,4,0,7,20,0,0,0,0,-1,0,132662,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10054,4,0,7,4,0,0,0,0,-1,0,135028,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10055,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10056,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10057,4,1,7,5,50,0,469,0,-1,0,132724,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10058,4,1,7,8,45,0,803,0,-1,0,132543,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10059,4,1,7,9,45,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10060,4,1,7,16,44,0,971,0,-1,0,133772,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10061,4,1,7,1,46,0,635,0,-1,0,133134,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10062,4,1,7,10,46,0,719,0,-1,0,132957,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10063,4,1,7,3,46,0,1139,0,-1,0,135049,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10064,4,1,7,7,48,0,552,0,-1,0,134589,7,0,55,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10065,4,1,7,20,50,0,469,0,-1,0,132687,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10066,4,1,7,6,44,0,887,0,-1,0,132492,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10067,4,2,8,6,44,0,908,0,-1,0,132505,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10068,4,2,8,8,46,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10069,4,2,8,9,44,0,1076,0,-1,0,132613,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10070,4,2,8,5,50,0,490,0,-1,0,132632,7,0,85,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10071,4,1,7,16,44,0,992,0,-1,0,133758,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10072,4,2,8,10,46,0,740,0,-1,0,132946,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10073,4,2,8,1,47,0,657,0,-1,0,133111,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10074,4,2,8,7,48,0,573,0,-1,0,134591,7,0,65,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10075,4,2,8,3,46,0,1160,0,-1,0,135044,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10076,4,3,5,9,44,0,1097,0,-1,0,132613,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10077,4,3,5,5,48,0,510,0,-1,0,132750,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10078,4,6,1,14,48,4,2070,0,-1,0,135964,9,0,85,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10079,4,1,7,16,43,0,1012,0,-1,0,133754,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10080,4,3,5,10,45,0,761,0,-1,0,132963,10,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10081,4,3,5,6,45,0,929,0,-1,0,132524,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10082,4,3,5,8,46,0,845,0,-1,0,132587,10,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10083,4,3,5,1,46,0,677,0,-1,0,132767,10,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10084,4,3,5,7,47,0,594,0,-1,0,134584,10,0,75,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10085,4,3,5,3,47,0,1182,0,-1,0,135061,10,0,60,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10086,4,4,6,5,44,0,530,0,-1,0,132722,11,0,115,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10087,4,4,6,10,41,0,781,0,-1,0,132955,11,0,40,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10088,4,4,6,6,40,0,948,0,-1,0,132502,11,0,40,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10089,4,4,6,8,40,0,864,0,-1,0,132542,11,0,55,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10090,4,4,6,1,41,0,697,0,-1,0,133078,11,0,70,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10091,4,4,6,7,42,0,613,0,-1,0,134589,11,0,85,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10092,4,4,6,3,42,0,1201,0,-1,0,135039,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10093,4,6,1,14,49,4,2070,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10094,4,4,6,9,40,0,1116,0,-1,0,132607,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10095,4,1,7,8,51,0,805,0,-1,0,132543,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10096,4,1,7,9,49,0,1056,0,-1,0,132611,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10097,4,1,7,1,52,0,637,0,-1,0,132767,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10098,4,1,7,16,48,0,972,0,-1,0,133769,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10099,4,1,7,10,50,0,721,0,-1,0,132955,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10100,4,1,7,3,52,0,1141,0,-1,0,135037,7,0,45,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10101,4,1,7,7,53,0,554,0,-1,0,134590,7,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10102,4,1,7,20,54,0,470,0,-1,0,132680,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10103,4,1,7,6,49,0,888,0,-1,0,132514,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10104,4,1,7,5,54,0,470,0,-1,0,132651,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10105,4,2,8,5,55,0,491,0,-1,0,132725,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10106,4,2,8,8,51,0,826,0,-1,0,132541,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10107,4,2,8,9,49,0,1077,0,-1,0,132604,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10108,4,1,7,16,48,0,993,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10109,4,2,8,6,49,0,909,0,-1,0,132500,7,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10110,4,2,8,10,50,0,742,0,-1,0,132958,7,0,30,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10111,4,2,8,1,52,0,658,0,-1,0,133152,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10112,4,2,8,7,53,0,575,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10113,4,2,8,3,52,0,1162,0,-1,0,135039,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10118,4,3,5,5,53,0,512,0,-1,0,132632,10,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10119,4,3,5,8,52,0,847,0,-1,0,132586,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10120,4,1,7,16,48,0,1014,0,-1,0,133758,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10121,4,3,5,10,51,0,763,0,-1,0,132944,10,0,35,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10122,4,3,5,6,50,0,931,0,-1,0,132496,10,0,35,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10123,4,3,5,1,52,0,679,0,-1,0,132768,10,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10124,4,3,5,7,52,0,595,0,-1,0,134584,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10125,4,3,5,3,51,0,1183,0,-1,0,135033,10,0,60,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10126,4,3,5,9,49,0,1098,0,-1,0,132613,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10127,4,4,6,9,44,0,1118,0,-1,0,132615,11,0,40,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10128,4,4,6,5,49,0,531,0,-1,0,132746,11,0,115,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10129,4,4,6,10,45,0,782,0,-1,0,132965,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10130,4,4,6,6,45,0,950,0,-1,0,132519,11,0,40,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10131,4,4,6,8,45,0,866,0,-1,0,132583,11,0,55,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10132,4,4,6,1,46,0,698,0,-1,0,133071,11,0,70,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10133,4,4,6,7,47,0,615,0,-1,0,134583,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10134,4,4,6,3,46,0,1202,0,-1,0,135045,11,0,70,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10135,4,1,7,5,59,0,472,0,-1,0,135021,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10136,4,1,7,9,55,0,1058,0,-1,0,132604,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10137,4,1,7,8,56,0,807,0,-1,0,132542,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10138,4,1,7,16,54,0,974,0,-1,0,133768,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10139,4,1,7,1,57,0,639,0,-1,0,132768,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10140,4,1,7,10,56,0,723,0,-1,0,132940,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10141,4,1,7,7,58,0,555,0,-1,0,134593,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10142,4,1,7,3,57,0,1143,0,-1,0,135033,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10143,4,1,7,20,59,0,472,0,-1,0,132653,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10144,4,1,7,6,55,0,890,0,-1,0,132493,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10145,4,2,8,6,54,0,911,0,-1,0,132501,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10146,4,2,8,8,56,0,828,0,-1,0,132541,7,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10147,4,2,8,9,55,0,1079,0,-1,0,132617,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10148,4,1,7,16,53,0,995,0,-1,0,133762,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10149,4,2,8,10,56,0,744,0,-1,0,132957,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10150,4,2,8,1,57,0,660,0,-1,0,133156,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10151,4,2,8,5,59,0,493,0,-1,0,132646,7,0,85,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10152,4,2,8,7,58,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10153,4,2,8,3,57,0,1164,0,-1,0,135055,7,0,50,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10154,4,3,5,6,56,0,933,0,-1,0,132500,10,0,35,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10155,4,3,5,8,56,0,849,0,-1,0,132536,10,0,50,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10156,4,3,5,9,55,0,1100,0,-1,0,132617,10,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10157,4,3,5,5,59,0,514,0,-1,0,132629,10,0,100,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10158,4,6,1,14,59,4,2094,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10159,4,1,7,16,54,0,1016,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10160,4,3,5,1,57,0,681,0,-1,0,132767,10,0,60,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10161,4,3,5,10,56,0,765,0,-1,0,132960,10,0,35,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10162,4,3,5,7,58,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10163,4,3,5,3,57,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10164,4,4,6,5,53,0,533,0,-1,0,132751,11,0,115,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10165,4,4,6,10,50,0,784,0,-1,0,132963,11,0,40,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10166,4,4,6,6,49,0,951,0,-1,0,132521,11,0,40,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10167,4,4,6,8,50,0,868,0,-1,0,132584,11,0,55,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10168,4,4,6,1,51,0,700,0,-1,0,132767,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10169,4,4,6,7,52,0,616,0,-1,0,134586,11,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10170,4,4,6,3,51,0,1204,0,-1,0,135061,11,0,70,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10171,4,4,6,9,49,0,1119,0,-1,0,132613,11,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10172,4,1,7,3,50,0,1141,0,-1,0,135052,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10173,4,1,7,9,48,0,1056,0,-1,0,132609,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10174,4,1,7,16,47,0,972,0,-1,0,133754,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10175,4,1,7,1,50,0,637,0,-1,0,133163,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10176,4,1,7,10,49,0,720,0,-1,0,132957,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10177,4,1,7,7,51,0,553,0,-1,0,134586,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10178,4,1,7,20,53,0,470,0,-1,0,132658,7,0,70,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10179,4,1,7,8,49,0,804,0,-1,0,132543,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10180,4,1,7,6,47,0,888,0,-1,0,132491,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10181,4,1,7,5,53,0,470,0,-1,0,135021,7,0,70,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10182,4,2,8,5,53,0,491,0,-1,0,132717,7,0,85,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10183,4,2,8,8,49,0,825,0,-1,0,132542,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10184,4,2,8,9,47,0,1077,0,-1,0,132602,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10185,4,1,7,16,46,0,992,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10186,4,2,8,10,48,0,741,0,-1,0,132937,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10187,4,2,8,1,50,0,658,0,-1,0,133148,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10188,4,2,8,7,51,0,574,0,-1,0,134586,7,0,65,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10189,4,2,8,3,50,0,1162,0,-1,0,135054,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10190,4,2,8,6,47,0,909,0,-1,0,132502,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10191,4,3,5,9,46,0,1097,0,-1,0,132613,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10192,4,3,5,8,48,0,846,0,-1,0,132588,10,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10193,4,3,5,5,50,0,511,0,-1,0,132628,10,0,100,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10194,4,1,7,16,45,0,1013,0,-1,0,133766,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10195,4,6,1,14,50,4,2076,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10196,4,3,5,10,47,0,762,0,-1,0,132957,10,0,35,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10197,4,3,5,6,47,0,930,0,-1,0,132493,10,0,35,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10198,4,3,5,1,48,0,678,0,-1,0,133127,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10199,4,3,5,7,49,0,594,0,-1,0,134583,10,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10200,4,3,5,3,48,0,1182,0,-1,0,135059,10,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10201,4,4,6,8,43,0,865,0,-1,0,132535,11,0,55,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10202,4,4,6,9,43,0,1117,0,-1,0,132602,11,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10203,4,4,6,5,47,0,531,0,-1,0,132739,11,0,115,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10204,4,6,1,14,50,4,2076,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10205,4,4,6,10,44,0,782,0,-1,0,132938,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10206,4,4,6,6,43,0,949,0,-1,0,132495,11,0,40,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10207,4,4,6,1,44,0,698,0,-1,0,132767,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10208,4,4,6,7,45,0,614,0,-1,0,134581,11,0,85,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10209,4,4,6,3,45,0,1202,0,-1,0,135044,11,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10210,4,1,7,3,55,0,1142,0,-1,0,135041,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10211,4,1,7,8,54,0,806,0,-1,0,132536,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10212,4,1,7,16,52,0,973,0,-1,0,133758,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10213,4,1,7,9,53,0,1058,0,-1,0,132612,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10214,4,1,7,10,54,0,722,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10215,4,1,7,20,57,0,471,0,-1,0,132671,7,0,70,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10216,4,1,7,6,53,0,890,0,-1,0,132518,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10217,4,1,7,7,56,0,555,0,-1,0,134586,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10218,4,1,7,5,57,0,471,0,-1,0,132649,7,0,70,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10219,4,1,7,1,55,0,638,0,-1,0,132767,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10220,4,2,8,5,58,0,492,0,-1,0,132717,7,0,85,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10221,4,2,8,6,53,0,911,0,-1,0,132501,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10222,4,2,8,8,54,0,827,0,-1,0,132535,7,0,45,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10223,4,2,8,9,53,0,1079,0,-1,0,132615,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10224,4,1,7,16,52,0,994,0,-1,0,133754,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10225,4,2,8,10,54,0,743,0,-1,0,132949,7,0,30,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10226,4,2,8,1,56,0,660,0,-1,0,133076,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10227,4,2,8,7,57,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10228,4,2,8,3,55,0,1163,0,-1,0,135042,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10229,4,3,5,9,51,0,1099,0,-1,0,132602,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10230,4,3,5,5,55,0,512,0,-1,0,132751,10,0,100,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10231,4,1,7,16,50,0,1015,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10232,4,3,5,10,53,0,764,0,-1,0,132937,10,0,35,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10233,4,3,5,6,52,0,931,0,-1,0,132500,10,0,35,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10234,4,3,5,8,53,0,848,0,-1,0,132589,10,0,50,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10235,4,3,5,1,54,0,680,0,-1,0,133076,10,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10236,4,3,5,7,54,0,596,0,-1,0,134586,10,0,75,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10237,4,3,5,3,53,0,1184,0,-1,0,135054,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10238,4,4,6,8,47,0,867,0,-1,0,132535,11,0,55,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10239,4,4,6,9,46,0,1118,0,-1,0,132602,11,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10240,4,4,6,5,50,0,532,0,-1,0,132723,11,0,115,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10241,4,4,6,1,48,0,699,0,-1,0,133123,11,0,70,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10242,4,4,6,10,47,0,783,0,-1,0,132938,11,0,40,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10243,4,4,6,6,46,0,950,0,-1,0,132499,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10244,4,4,6,7,49,0,615,0,-1,0,134583,11,0,85,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10245,4,4,6,3,48,0,1203,0,-1,0,135049,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10246,4,1,7,5,60,0,472,0,-1,0,135008,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10247,4,1,7,8,58,0,807,0,-1,0,132539,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10248,4,1,7,9,57,0,1059,0,-1,0,132606,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10249,4,1,7,16,56,0,975,0,-1,0,133772,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10250,4,1,7,1,58,0,639,0,-1,0,133153,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10251,4,1,7,10,58,0,723,0,-1,0,132961,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10252,4,1,7,7,59,0,556,0,-1,0,134589,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10253,4,1,7,3,58,0,1143,0,-1,0,135040,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10254,4,1,7,20,60,0,472,0,-1,0,132670,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10255,4,1,7,6,57,0,891,0,-1,0,132493,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10256,4,2,8,9,56,0,1080,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10257,4,2,8,8,57,0,828,0,-1,0,132541,7,0,45,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10258,4,1,7,16,55,0,995,0,-1,0,133760,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10259,4,2,8,6,57,0,912,0,-1,0,132495,7,0,30,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10260,4,2,8,10,58,0,744,0,-1,0,132959,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10261,4,2,8,1,58,0,660,0,-1,0,133694,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10262,4,2,8,7,59,0,577,0,-1,0,134586,7,0,65,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10263,4,2,8,3,58,0,1164,0,-1,0,135046,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10264,4,2,8,5,60,0,493,0,-1,0,132722,7,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10265,4,3,5,9,57,0,1101,0,-1,0,132602,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10266,4,3,5,5,60,0,514,0,-1,0,132751,10,0,100,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10267,4,1,7,16,56,0,1017,0,-1,0,133766,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10268,4,3,5,10,58,0,765,0,-1,0,132938,10,0,35,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10269,4,3,5,6,57,0,933,0,-1,0,132500,10,0,35,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10270,4,3,5,8,58,0,849,0,-1,0,132584,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10271,4,6,1,14,60,4,2094,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10272,4,3,5,1,58,0,681,0,-1,0,133345,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10273,4,3,5,7,59,0,598,0,-1,0,134586,10,0,75,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10274,4,3,5,3,58,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10275,4,4,6,5,55,0,533,0,-1,0,132647,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10276,4,4,6,8,51,0,868,0,-1,0,132535,11,0,55,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10277,4,4,6,10,52,0,784,0,-1,0,132938,11,0,40,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10278,4,4,6,6,50,0,952,0,-1,0,132493,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10279,4,4,6,1,53,0,701,0,-1,0,133078,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10280,4,4,6,7,54,0,617,0,-1,0,134583,11,0,85,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10281,4,4,6,3,53,0,1205,0,-1,0,135033,11,0,70,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10282,4,4,6,9,51,0,1120,0,-1,0,132602,11,0,40,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10283,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10284,7,0,8,0,0,0,0,0,-1,0,132906,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10285,7,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10286,5,0,0,0,0,0,0,0,-1,0,134188,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10287,4,1,7,3,21,0,1131,0,-1,0,135044,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10288,4,1,7,1,26,0,629,0,-1,0,133693,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10289,4,1,7,1,27,0,629,0,-1,0,133117,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10290,7,0,3,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10298,4,0,5,11,25,0,3476,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10299,4,0,3,2,26,0,3506,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10300,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10301,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10302,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10303,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10304,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10305,0,0,7,0,45,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10306,0,0,7,0,45,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10307,0,0,7,0,50,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10308,0,0,7,0,50,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10309,0,0,7,0,55,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10310,0,0,7,0,55,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10311,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10312,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10313,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10314,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10315,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10316,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10317,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10318,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10319,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10320,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10321,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10322,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10323,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10324,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10325,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10326,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10327,12,0,0,0,0,0,0,0,-1,0,134227,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10328,4,3,5,5,34,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10329,4,3,5,6,32,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10330,4,3,5,7,38,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10331,4,3,5,10,33,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10332,4,3,5,8,30,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10333,4,3,5,9,31,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10338,12,0,0,0,0,0,0,0,-1,0,134368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10358,4,3,5,9,0,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10359,4,1,7,8,0,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10360,15,0,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10361,15,0,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10362,4,6,1,14,53,4,2082,0,-1,0,135940,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10363,4,6,1,14,55,4,2082,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10364,4,6,1,14,53,4,2082,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10365,4,6,1,14,54,4,2082,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10366,4,6,1,14,58,4,2088,0,-1,0,136185,9,0,85,0,0,0,0,0,0,1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10367,4,6,1,14,60,4,2094,0,-1,0,135940,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10368,4,4,6,5,57,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10369,4,4,6,10,53,0,0,0,-1,0,132940,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10370,4,4,6,6,52,0,0,0,-1,0,132501,11,0,40,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10371,4,4,6,8,53,0,0,0,-1,0,132586,11,0,55,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10372,4,4,6,1,54,0,0,0,-1,0,133074,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10373,4,4,6,7,56,0,0,0,-1,0,134588,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10374,4,4,6,3,54,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10375,4,4,6,9,52,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10376,4,4,6,8,55,0,869,0,-1,0,132589,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10377,4,4,6,9,54,0,1121,0,-1,0,132612,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10378,4,4,6,5,58,0,534,0,-1,0,132741,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10379,4,4,6,1,56,0,702,0,-1,0,133069,11,0,70,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10380,4,4,6,10,55,0,785,0,-1,0,132966,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10381,4,4,6,6,54,0,953,0,-1,0,132502,11,0,40,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10382,4,4,6,7,57,0,618,0,-1,0,134583,11,0,85,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10383,4,4,6,3,56,0,1206,0,-1,0,135032,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10384,4,4,6,5,60,0,535,0,-1,0,132751,11,0,115,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10385,4,4,6,8,57,0,870,0,-1,0,132589,11,0,55,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10386,4,4,6,10,57,0,786,0,-1,0,132937,11,0,40,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10387,4,4,6,6,56,0,954,0,-1,0,132517,11,0,40,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10388,4,4,6,1,58,0,702,0,-1,0,133101,11,0,70,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10389,4,4,6,7,59,0,619,0,-1,0,134584,11,0,85,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10390,4,4,6,3,58,0,1206,0,-1,0,135054,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10391,4,4,6,9,55,0,1121,0,-1,0,132616,11,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10392,15,0,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10393,15,0,0,0,0,0,0,0,-1,0,136128,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10394,15,0,0,0,0,0,0,0,-1,0,132161,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10398,15,0,0,0,0,0,0,0,-1,0,135996,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10399,4,2,8,5,19,0,0,0,-1,0,132723,7,0,90,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10400,4,2,8,7,13,0,0,0,-1,0,134592,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10401,4,2,8,10,13,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10402,4,2,8,8,13,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10403,4,2,8,6,17,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10404,4,1,7,6,25,0,880,0,-1,0,132492,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10405,4,2,8,3,17,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10406,4,2,8,1,27,0,650,0,-1,0,133681,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10407,4,3,5,3,16,0,0,0,-1,0,135054,10,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10408,4,3,5,1,27,0,671,0,-1,0,133138,10,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10409,4,3,5,8,27,0,839,0,-1,0,132535,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10410,4,2,8,7,18,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10411,4,2,8,8,18,0,0,0,-1,0,132538,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10412,4,2,8,6,16,0,0,0,-1,0,132519,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10413,4,2,8,10,14,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10414,12,0,0,0,0,0,0,0,-1,0,134303,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10418,12,0,0,12,0,0,0,0,-1,0,133435,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10419,0,0,0,0,0,0,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10420,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10421,4,3,5,5,2,0,0,0,-1,0,132624,10,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10422,4,3,5,7,26,0,0,0,-1,0,134585,10,0,75,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10423,4,3,5,7,26,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10424,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10438,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10439,12,0,0,0,0,0,0,0,-1,0,132791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10440,12,0,0,0,0,0,0,0,-1,0,132791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10441,12,0,0,0,15,0,0,0,-1,0,135229,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10442,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10443,12,0,0,0,40,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10444,12,0,0,0,1,0,0,0,-1,0,134537,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10445,12,0,0,0,1,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10446,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10447,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10448,0,0,0,0,0,0,0,0,-1,0,132488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10449,0,0,0,0,0,0,0,0,-1,0,132488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10450,12,0,0,0,1,0,0,0,-1,0,132921,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10451,0,0,0,0,0,0,0,0,-1,0,132488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10452,0,0,0,0,0,0,0,0,-1,0,132489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10453,0,0,0,0,0,0,0,0,-1,0,132488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10454,12,0,0,0,48,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10455,4,0,0,12,0,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10456,15,0,1,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10457,15,0,0,0,0,1,0,0,-1,0,134434,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10458,12,0,0,0,0,0,0,0,-1,0,134459,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10459,12,0,0,0,0,0,0,0,-1,0,134172,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10460,13,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10461,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10462,4,1,7,6,0,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10463,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10464,12,0,0,0,0,0,0,0,-1,0,135163,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10465,12,0,7,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10466,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10467,15,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10478,12,0,0,0,1,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10479,15,0,8,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10498,7,1,1,0,1,5,0,0,-1,0,134429,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10499,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10500,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,44,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10501,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10502,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10503,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10504,4,1,7,1,0,0,8652,0,-1,0,133146,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10505,7,1,8,0,0,0,0,0,-1,0,134380,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10506,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10507,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10508,2,3,1,26,36,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +10509,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10510,2,3,1,26,39,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,76,0,0,0,0 +10511,12,0,0,0,0,0,0,0,-1,0,134120,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10512,6,3,2,24,37,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,13,0,0,0,0 +10513,6,3,2,24,44,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,0,0,0,0 +10514,7,2,8,0,0,0,0,0,-1,0,133710,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10515,4,0,2,17,0,2,0,0,-1,0,135466,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10518,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10538,12,0,0,0,0,0,0,0,-1,0,134457,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10539,12,0,0,0,0,0,0,0,-1,0,134458,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10540,12,0,0,0,0,0,0,0,-1,0,134455,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10541,12,0,0,0,0,0,0,0,-1,0,134456,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10542,4,3,5,1,0,0,0,0,-1,0,133127,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10543,4,1,7,1,0,0,0,0,-1,0,133162,7,0,45,0,0,0,0,0,0,44,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10544,2,4,2,21,0,3,0,0,-1,0,133053,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +10545,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10546,7,3,8,0,30,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10547,2,15,1,13,0,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +10548,7,3,8,0,40,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10549,4,1,7,7,0,0,0,0,-1,0,134593,7,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10550,4,1,7,10,0,0,0,0,-1,0,132936,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10551,12,0,1,0,0,0,0,0,-1,0,135650,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10552,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10553,4,1,7,5,6,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10554,4,1,7,7,6,0,0,0,-1,0,134587,7,0,35,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10555,4,0,0,11,0,0,0,0,-1,0,134412,14,0,0,0,0,0,0,0,0,-50,-50,-50,-50,-50,-50,0,0,0,0,0,0,0,0,0,0,0 +10556,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10558,7,1,8,0,0,0,0,0,-1,0,132489,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10559,7,1,8,0,0,0,0,0,-1,0,134535,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10560,7,1,8,0,0,0,0,0,-1,0,132488,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10561,7,1,8,0,0,0,0,0,-1,0,133021,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10562,7,2,8,0,0,0,0,0,-1,0,133715,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10563,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10564,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10565,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10566,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10567,2,2,2,15,33,0,0,0,-1,0,135489,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +10568,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10569,15,0,1,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10570,2,1,1,17,34,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +10571,2,4,2,13,32,3,0,0,-1,0,133727,8,0,90,0,0,0,0,0,0,0,0,0,0,0,5,0,31,0,0,0,0,59,0,0,0,0 +10572,2,19,2,26,34,0,0,0,-1,0,135463,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +10573,2,8,1,17,32,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +10574,4,1,7,1,35,0,0,0,-1,0,133756,7,0,50,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10575,15,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10576,7,3,8,12,40,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10577,7,3,8,12,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10578,4,1,7,8,33,0,0,0,-1,0,132535,7,0,40,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10579,6,2,2,24,37,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,15,0,0,0,0 +10580,7,2,8,0,0,0,0,0,-1,0,132594,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10581,4,1,7,5,35,0,0,0,-1,0,132723,7,0,80,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10582,4,2,8,8,31,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10583,4,2,8,5,34,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10584,4,3,5,10,31,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10585,7,3,8,12,0,0,0,0,-1,0,135899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10586,7,2,8,0,0,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10587,7,3,8,12,0,0,0,0,-1,0,133000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10588,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10589,12,0,0,0,48,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10590,12,0,0,0,30,0,0,0,-1,0,134400,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10591,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10592,0,0,3,0,30,0,0,0,-1,0,134816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10593,12,0,0,0,0,0,0,0,-1,0,134089,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10594,15,0,5,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10595,15,0,0,0,0,0,0,0,-1,0,134344,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10596,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10597,12,0,0,0,1,0,0,0,-1,0,134167,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10598,12,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10599,12,0,0,0,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10600,12,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10601,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10602,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10603,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10604,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10605,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10606,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10607,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10608,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10609,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10610,12,0,0,0,0,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10611,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10612,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10613,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10614,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10615,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10616,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10617,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10618,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10619,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10620,7,0,1,0,0,0,0,0,-1,0,134578,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10621,0,0,0,0,15,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10622,12,0,0,0,0,0,0,0,-1,0,132484,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10623,2,0,1,21,43,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +10624,2,2,2,15,42,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +10625,2,15,1,13,44,3,0,0,-1,0,135351,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +10626,2,5,2,17,45,1,0,0,-1,0,133043,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,193,0,0,0,0 +10627,2,10,2,17,42,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +10628,2,8,1,17,43,1,0,0,-1,0,135341,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +10629,4,1,7,8,45,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10630,4,1,7,1,46,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10631,4,3,5,10,41,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10632,4,3,5,9,44,0,0,0,-1,0,133345,10,0,40,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10633,4,4,6,7,46,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10634,4,0,1,11,41,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10635,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10636,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10637,4,1,7,10,0,0,0,0,-1,0,132940,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10638,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10639,12,0,0,0,1,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10640,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10641,12,0,0,0,0,0,0,0,-1,0,134182,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10642,12,0,0,0,0,0,0,0,-1,0,134814,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10643,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10644,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10645,7,3,8,12,0,0,0,0,-1,0,133002,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10646,7,2,8,0,0,0,0,0,-1,0,135826,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10647,7,0,3,0,0,0,0,0,-1,0,134845,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10648,7,0,3,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10649,12,0,0,0,0,0,0,0,-1,0,135229,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10650,12,0,0,0,0,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10651,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10652,2,1,1,17,0,1,0,0,-1,0,135575,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +10653,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10654,4,1,7,10,0,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10655,4,1,7,7,0,0,0,0,-1,0,134592,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10656,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10657,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10658,4,3,5,8,0,0,0,0,-1,0,132541,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10659,4,0,0,12,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10660,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10661,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10662,12,0,7,0,0,0,0,0,-1,0,132836,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10663,0,0,0,0,0,0,0,0,-1,0,136148,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10664,12,0,0,0,45,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10678,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10679,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10680,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10681,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10682,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10683,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10684,0,0,0,0,0,0,0,0,-1,0,132369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10685,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +10686,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10687,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10688,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10689,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10690,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10691,12,0,0,0,0,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10692,12,0,0,0,0,0,0,0,-1,0,134822,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10693,12,0,0,0,0,0,0,0,-1,0,134836,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10694,12,0,0,0,0,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10695,15,0,0,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10696,2,7,1,21,0,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +10697,2,15,1,13,0,3,0,0,-1,0,135341,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +10698,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +10699,12,0,0,0,0,0,0,0,-1,0,135474,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10700,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10701,4,3,5,8,0,0,0,0,-1,0,132588,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10702,4,2,8,8,0,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10703,2,15,1,13,0,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +10704,2,19,2,26,0,0,0,0,-1,0,135463,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +10705,4,1,7,9,0,0,0,0,-1,0,132611,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10706,4,3,5,6,0,0,0,0,-1,0,132522,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10707,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10708,4,0,3,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10709,4,0,3,23,0,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10710,4,0,5,11,0,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10711,4,0,3,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10712,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10713,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10714,12,0,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10715,12,0,0,0,0,0,0,0,-1,0,134442,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10716,7,3,8,12,0,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10717,12,0,0,0,0,0,0,0,-1,0,134376,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10718,12,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10719,7,3,8,0,0,0,0,0,-1,0,132761,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10720,7,3,8,12,0,0,0,0,-1,0,134325,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10721,4,2,8,6,0,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10722,12,0,0,0,0,0,0,0,-1,0,135996,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10723,7,3,8,12,0,0,0,0,-1,0,135899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10724,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10725,7,3,8,12,0,0,0,0,-1,0,135996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10726,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10727,7,3,8,12,0,0,0,0,-1,0,135812,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10728,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10738,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10739,4,0,5,11,0,1,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10740,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10741,4,2,8,1,0,0,0,0,-1,0,133090,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10742,4,1,7,7,0,0,0,0,-1,0,134585,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10743,4,3,5,1,0,0,0,0,-1,0,133119,10,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10744,2,0,1,21,0,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +10745,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10746,4,4,6,9,0,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10747,4,1,7,6,0,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10748,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10749,4,4,6,1,0,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10750,2,15,1,13,0,3,0,0,-1,0,135322,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +10751,4,1,7,1,0,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10752,15,0,0,0,0,0,0,0,-1,0,132596,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10753,12,0,0,0,0,0,0,0,-1,0,133277,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10754,12,0,0,0,0,0,0,0,-1,0,133279,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10755,12,0,0,0,0,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10756,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10757,13,0,0,0,0,0,0,0,-1,0,133276,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10758,2,8,1,17,35,1,0,0,-1,0,135355,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,148,0,0,0,0 +10759,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10760,4,2,8,10,34,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10761,2,15,1,13,39,3,0,0,-1,0,135344,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +10762,4,1,7,20,39,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10763,4,4,6,1,40,0,0,0,-1,0,133111,11,0,80,0,0,0,0,0,0,383,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +10764,4,3,5,5,39,0,0,0,-1,0,132747,10,0,120,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10765,4,2,8,10,38,0,0,0,-1,0,132943,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10766,2,19,2,26,35,0,0,0,-1,0,135465,21,0,65,0,3,0,0,0,0,0,0,0,0,0,7,0,41,0,0,0,0,78,0,0,0,0 +10767,4,6,1,14,37,4,0,0,-1,0,134963,9,0,100,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10768,4,3,5,6,37,0,0,0,-1,0,132500,10,0,40,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10769,4,0,3,2,36,0,0,0,-1,0,134335,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10770,4,0,0,23,36,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10771,4,1,7,6,36,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10772,2,0,1,13,36,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +10773,15,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10774,4,2,8,3,37,0,0,0,-1,0,135059,7,0,60,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10775,4,4,6,5,40,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10776,4,1,7,16,35,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10777,4,2,8,10,37,0,739,0,-1,0,132966,7,0,35,0,0,0,0,0,0,79,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +10778,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +10779,4,0,4,12,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10780,4,0,5,11,0,1,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10781,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10782,4,1,7,1,0,0,0,0,-1,0,133140,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10783,4,2,8,3,47,0,1163,0,-1,0,135049,7,0,60,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10784,4,3,5,5,47,0,512,0,-1,0,132627,10,0,120,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10785,4,2,8,7,47,0,573,0,-1,0,134587,7,0,65,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10786,4,3,5,8,47,0,846,0,-1,0,132535,10,0,50,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10787,4,1,7,10,47,0,722,0,-1,0,132617,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10788,4,4,6,6,47,0,951,0,-1,0,132504,11,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10789,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10790,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10791,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10792,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10793,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10794,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10795,4,0,5,11,49,1,3486,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10796,4,0,3,23,49,7,2080,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10797,2,7,1,13,48,3,0,0,-1,0,135279,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +10798,4,4,5,6,46,0,0,0,-1,0,132504,11,0,45,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10799,2,6,1,17,46,2,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,159,0,0,0,0 +10800,4,2,8,9,47,0,1079,0,-1,0,132607,7,0,35,0,0,0,0,0,0,66,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +10801,4,2,8,8,47,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10802,4,1,7,16,47,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10803,2,7,1,21,49,3,0,0,-1,0,135348,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +10804,2,4,2,13,49,3,0,0,-1,0,133048,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +10805,2,0,1,21,49,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +10806,4,1,7,5,50,0,0,0,-1,0,132679,7,0,80,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10807,4,1,7,7,50,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10808,4,1,7,10,50,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10818,12,0,7,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10819,12,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10820,4,1,7,6,0,0,0,0,-1,0,132498,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10821,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10822,15,0,0,0,0,0,0,0,-1,0,134153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10823,2,7,1,13,0,3,0,0,-1,0,135345,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +10824,4,0,3,2,0,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10825,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10826,2,10,2,17,0,2,0,0,-1,0,135164,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +10827,4,2,8,5,0,0,0,0,-1,0,132720,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10828,2,15,1,13,51,3,5315,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,5,0,38,0,0,0,0,72,0,0,0,0 +10829,4,0,3,2,51,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10830,0,0,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10831,12,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10832,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10833,4,3,5,1,51,0,0,0,-1,0,133127,10,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10834,15,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10835,4,6,1,14,51,4,0,0,-1,0,134950,9,0,100,0,0,0,0,0,0,1930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10836,2,19,2,26,51,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,10,0,0,0,50,0,0,0,0,93,0,0,0,0 +10837,2,0,1,21,51,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,116,0,0,0,0 +10838,2,4,2,21,49,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +10839,15,0,0,0,0,0,0,0,-1,0,134416,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10840,15,0,0,0,0,0,0,0,-1,0,134416,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10841,0,0,3,0,25,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10842,4,2,8,7,49,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10843,4,1,7,16,49,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10844,2,10,2,17,49,2,0,0,-1,0,135169,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +10845,4,4,6,5,49,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10846,4,3,5,8,49,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10847,2,7,1,13,52,3,0,0,-1,0,135348,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +10858,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10878,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10898,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10918,0,0,3,0,32,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10919,4,1,7,10,0,0,0,0,-1,0,132940,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10920,0,0,3,0,40,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10921,0,0,3,0,48,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10922,0,0,3,0,56,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10938,7,0,2,0,0,0,0,0,-1,0,132867,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10939,7,0,2,0,0,0,0,0,-1,0,132866,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10940,7,0,2,0,0,0,0,0,-1,0,132858,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10958,12,0,0,0,0,0,0,0,-1,0,133298,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10959,1,0,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10978,7,0,2,0,0,0,0,0,-1,0,132877,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10998,7,0,2,0,0,0,0,0,-1,0,132863,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10999,12,0,0,0,0,0,0,0,-1,0,133060,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11000,13,0,0,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11018,15,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11019,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11020,12,0,0,0,0,0,0,0,-1,0,133651,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11021,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11022,12,0,0,0,0,0,0,0,-1,0,136074,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11023,15,0,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11024,12,0,0,0,0,0,0,0,-1,0,134001,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11025,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11026,15,0,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11027,15,0,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11038,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11039,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11040,7,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11041,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11042,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11058,12,0,0,0,0,0,0,0,-1,0,133356,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11078,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11079,13,0,0,0,0,0,0,0,-1,0,136133,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11080,12,0,0,0,0,0,0,0,-1,0,136133,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11081,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11082,7,0,2,0,0,0,0,0,-1,0,132862,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11083,7,0,2,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11084,7,0,2,0,0,0,0,0,-1,0,132876,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11085,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11086,2,7,1,21,45,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +11087,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11098,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11099,7,0,1,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11100,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11101,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11102,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11103,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11104,12,0,0,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11105,12,0,0,0,0,0,0,0,-1,0,134269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11106,12,0,0,0,0,0,0,0,-1,0,134238,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11107,12,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11108,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11109,0,0,0,0,1,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11110,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11111,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11112,12,0,0,0,0,0,0,0,-1,0,133000,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11113,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11114,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11115,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11116,15,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11118,4,0,3,11,42,0,3484,0,-1,0,135241,24,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11119,12,0,0,0,0,0,0,0,-1,0,134014,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11120,2,4,2,21,0,3,0,0,-1,0,133047,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +11121,2,7,1,21,21,3,0,0,-1,0,135346,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +11122,4,0,0,12,0,0,0,0,-1,0,134010,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11123,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11124,4,3,5,1,0,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11125,12,0,0,0,0,0,0,0,-1,0,134939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11126,12,0,0,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11127,12,0,0,0,0,0,0,0,-1,0,132766,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11128,7,0,1,0,0,5,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11129,12,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11130,7,0,1,0,0,5,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11131,12,0,0,0,0,0,0,0,-1,0,134822,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11132,12,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11133,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11134,7,0,2,0,0,0,0,0,-1,0,132869,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11135,7,0,2,0,0,0,0,0,-1,0,132868,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11136,12,0,0,0,0,0,0,0,-1,0,135324,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11137,7,0,2,0,0,0,0,0,-1,0,132859,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11138,7,0,2,0,0,0,0,0,-1,0,132879,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11139,7,0,2,0,0,0,0,0,-1,0,132878,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11140,13,0,0,0,0,0,0,0,-1,0,134244,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11141,12,0,0,0,0,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11142,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11143,12,0,0,0,0,0,0,0,-1,0,134063,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11144,7,0,1,0,0,5,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11145,7,0,1,0,0,5,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11146,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11147,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11148,0,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11149,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11150,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11151,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11152,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11162,12,0,0,0,0,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11163,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11164,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11165,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11166,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11167,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11168,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11169,12,0,0,0,0,0,0,0,-1,0,133742,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11170,4,0,0,23,0,0,0,0,-1,0,135467,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11171,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11172,12,0,0,0,0,0,0,0,-1,0,134319,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11173,12,0,0,0,0,0,0,0,-1,0,135241,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11174,7,0,2,0,0,0,0,0,-1,0,132871,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11175,7,0,2,0,0,0,0,0,-1,0,132870,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11176,7,0,2,0,0,0,0,0,-1,0,132855,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11177,7,0,2,0,0,0,0,0,-1,0,132884,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11178,7,0,2,0,0,0,0,0,-1,0,132883,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11179,12,0,0,0,0,0,0,0,-1,0,134961,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11182,0,0,0,14,0,0,0,0,-1,0,136240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11183,0,0,0,14,0,0,0,0,-1,0,136240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11184,15,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11185,15,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11186,15,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11187,4,1,7,9,0,0,0,0,-1,0,132611,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11188,15,0,0,0,0,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11189,4,1,7,20,0,0,0,0,-1,0,132663,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11190,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11191,4,1,7,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11192,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11193,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11194,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11195,4,4,6,5,0,0,0,0,-1,0,132638,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11196,4,0,3,2,0,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11197,0,0,0,0,0,0,0,0,-1,0,134245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11198,12,0,0,0,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11199,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11200,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11201,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11202,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11203,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11204,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11205,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11206,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11207,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11208,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11222,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11223,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11224,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11225,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11226,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11227,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11228,15,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11229,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11230,12,0,0,0,0,0,0,0,-1,0,135824,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11231,12,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11242,12,0,1,0,0,0,0,0,-1,0,134193,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11243,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11262,4,0,3,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11263,2,19,2,26,0,0,0,0,-1,0,135469,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +11264,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11265,2,5,2,17,0,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +11266,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11267,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11268,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11269,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11270,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11282,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11283,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11284,6,3,2,24,40,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,13,0,0,0,0 +11285,6,2,2,24,40,0,0,0,-1,0,135661,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,13,0,0,0,0 +11286,12,0,0,0,0,0,0,0,-1,0,132507,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11287,2,19,2,26,5,0,0,0,-1,0,135139,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,22,0,0,0,0 +11288,2,19,2,26,13,0,0,0,-1,0,135144,21,0,45,0,6,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,41,0,0,0,0 +11289,2,19,2,26,26,0,0,0,-1,0,135139,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +11290,2,19,2,26,30,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,76,0,0,0,0 +11291,5,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11302,4,0,5,12,47,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11303,2,2,2,15,11,0,0,0,-1,0,135495,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +11304,2,2,2,15,14,0,0,0,-1,0,135490,12,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +11305,2,2,2,15,30,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +11306,2,2,2,15,27,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +11307,2,2,2,15,42,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +11308,2,2,2,15,44,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,59,0,0,0,0 +11309,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11310,4,1,7,3,42,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11311,4,1,7,16,41,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11312,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11313,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11314,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11315,12,0,0,0,0,0,0,0,-1,0,134001,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11316,12,0,0,0,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11317,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11318,12,0,0,0,0,0,0,0,-1,0,134134,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11319,12,0,0,0,0,0,0,0,-1,0,133000,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11320,12,0,0,0,0,0,0,0,-1,0,133001,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11321,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11322,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11323,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11324,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11325,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11342,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11343,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11344,4,2,8,20,38,0,0,0,-1,0,132666,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11345,4,2,8,7,29,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11362,11,2,0,18,10,0,0,0,-1,0,134410,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11363,11,3,0,18,10,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11364,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11365,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11366,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11367,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11368,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11369,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11370,7,0,1,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11371,7,0,2,0,0,0,0,0,-1,0,133233,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11382,7,0,0,0,0,0,0,0,-1,0,134086,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11383,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11384,15,0,0,0,0,0,0,0,-1,0,133724,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11385,15,0,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11386,15,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11387,15,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11388,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11389,15,0,0,0,0,0,0,0,-1,0,134308,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11390,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11391,15,0,0,0,0,0,0,0,-1,0,134257,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11392,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11393,15,0,0,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11394,15,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11395,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11402,15,0,0,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11403,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11404,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11405,0,0,0,0,0,0,0,0,-1,0,134580,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11406,15,0,0,0,0,0,0,0,-1,0,134357,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11407,15,0,0,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11408,15,0,0,0,0,0,0,0,-1,0,133726,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11409,15,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11410,15,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11411,2,4,2,21,23,3,0,0,-1,0,133718,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +11412,12,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11413,0,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11414,15,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11415,0,0,0,0,45,0,0,0,-1,0,133996,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11416,15,0,0,0,0,0,0,0,-1,0,133719,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11417,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11418,15,0,0,0,0,0,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11419,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11420,15,0,0,0,0,0,0,0,-1,0,132920,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11422,15,0,0,0,0,0,0,0,-1,0,134143,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11423,15,0,0,0,0,0,0,0,-1,0,134144,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11424,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11442,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11443,0,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11444,0,0,0,0,45,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11445,12,0,0,0,0,0,0,0,-1,0,133942,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11446,12,0,0,0,50,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11462,12,0,0,0,0,0,0,0,-1,0,135660,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11463,12,0,0,0,40,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11464,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11465,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11466,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11467,12,0,0,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11468,12,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11469,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11470,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11471,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11472,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11473,12,0,0,0,0,0,0,0,-1,0,133001,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11474,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11475,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11476,12,0,0,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11477,12,0,0,0,0,0,0,0,-1,0,133723,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11478,12,0,0,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11479,12,0,0,0,0,0,0,0,-1,0,134365,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11480,12,0,0,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11482,12,0,0,0,0,0,0,0,-1,0,133740,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11502,4,2,8,3,0,0,0,0,-1,0,135055,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11503,12,0,0,0,0,0,0,0,-1,0,134085,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11504,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11505,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11506,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11507,12,0,0,0,0,0,0,0,-1,0,134364,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11508,4,1,7,8,0,0,0,0,-1,0,132579,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11509,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11510,12,0,0,0,0,0,0,0,-1,0,132193,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11511,12,0,0,0,0,0,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11512,12,0,0,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11513,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11514,12,0,0,0,0,0,0,0,-1,0,136007,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11515,12,0,0,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11516,12,0,0,0,0,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11522,4,0,0,23,0,0,0,0,-1,0,135467,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11542,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11562,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11563,12,0,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11564,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11565,12,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11566,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11567,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11568,15,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11569,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11570,12,0,0,0,0,0,0,0,-1,0,134743,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11582,15,0,0,0,0,0,0,0,-1,0,134877,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11583,12,0,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11584,0,0,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11585,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11586,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11587,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11588,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11589,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11590,7,3,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11591,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11602,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11603,2,13,1,21,46,7,0,0,-1,0,132369,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +11604,4,4,6,5,54,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,617,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11605,4,4,6,3,53,0,0,0,-1,0,135040,11,0,70,0,0,0,0,0,0,414,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11606,4,3,5,5,51,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,303,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11607,2,1,1,17,52,1,0,0,-1,0,135572,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,153,0,0,0,0 +11608,2,5,2,17,50,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,211,0,0,0,0 +11609,12,0,0,0,0,0,0,0,-1,0,134430,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11610,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11611,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11612,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11613,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11614,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11615,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11616,0,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11617,12,0,8,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11622,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11623,4,1,7,16,47,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11624,4,1,7,3,47,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11625,4,0,3,23,48,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11626,4,1,7,16,48,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11627,4,3,5,8,48,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11628,2,2,2,15,48,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +11629,2,3,1,26,48,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +11630,6,3,2,24,47,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,18,0,0,0,0 +11631,4,6,1,14,47,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11632,4,4,6,3,47,0,0,0,-1,0,135057,11,0,80,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11633,4,4,6,5,49,0,0,0,-1,0,132737,11,0,135,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11634,4,1,7,10,49,0,0,0,-1,0,132946,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11635,2,15,1,13,49,3,0,0,-1,0,135646,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +11642,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11643,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11644,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11645,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11646,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11647,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11648,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11649,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11662,4,1,7,6,49,0,0,0,-1,0,132518,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11663,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11664,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11665,4,2,8,10,49,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11666,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11667,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11668,12,0,0,0,49,0,0,0,-1,0,133942,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11669,4,0,5,11,54,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11670,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11671,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11672,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11673,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11674,12,0,0,0,0,0,0,0,-1,0,133565,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11675,4,2,8,8,50,0,0,0,-1,0,132535,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11676,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11677,4,1,7,16,50,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11678,4,4,6,5,50,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11679,4,3,5,9,50,0,0,0,-1,0,132612,10,0,40,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11682,12,0,3,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11683,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11684,2,4,2,21,55,3,0,0,-1,0,135847,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +11685,4,2,8,3,50,0,0,0,-1,0,135044,7,0,60,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11686,4,2,8,6,50,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11702,2,0,1,21,50,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +11703,4,4,6,6,50,0,0,0,-1,0,132505,11,0,45,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11722,4,3,5,3,50,0,0,0,-1,0,135061,10,0,70,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11723,12,0,0,0,0,0,0,0,-1,0,135272,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11724,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11725,12,0,0,0,0,0,0,0,-1,0,134321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11726,4,3,5,5,52,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11727,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11728,4,3,5,7,52,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11729,4,3,5,1,52,0,0,0,-1,0,133069,10,0,70,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11730,4,3,5,10,52,0,0,0,-1,0,132938,10,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11731,4,3,5,8,52,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11732,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11733,9,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11734,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11735,4,2,8,1,52,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11736,9,0,0,0,50,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11737,9,0,0,0,50,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11742,1,0,8,18,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11743,2,13,1,13,50,7,0,0,-1,0,132945,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +11744,2,13,1,13,51,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +11745,4,4,6,10,51,0,0,0,-1,0,132956,11,0,45,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11746,4,4,6,1,51,0,0,0,-1,0,133125,11,0,80,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11747,4,2,8,20,48,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,153,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11748,2,19,2,26,48,0,0,0,-1,0,135150,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +11749,4,3,5,7,48,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,277,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11750,2,10,2,17,48,2,0,0,-1,0,135155,13,0,100,0,0,0,0,0,0,0,0,10,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +11751,12,0,0,0,0,0,0,0,-1,0,135819,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11752,12,0,0,0,0,0,0,0,-1,0,134849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11753,12,0,0,0,0,0,0,0,-1,0,136155,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11754,15,0,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11755,4,0,3,2,51,0,0,0,-1,0,133684,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11762,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11763,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11764,4,2,8,9,52,0,1080,0,-1,0,132601,7,0,35,0,0,0,0,0,0,71,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11765,4,3,5,9,52,0,1101,0,-1,0,132617,10,0,40,0,0,0,0,0,0,148,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11766,4,1,7,9,52,0,1059,0,-1,0,132604,7,0,30,0,0,0,0,0,0,35,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11767,4,4,6,9,52,0,1122,0,-1,0,132617,11,0,45,0,0,0,0,0,0,261,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11768,4,1,7,9,52,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,32,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11782,4,1,7,3,52,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11783,4,3,5,6,52,0,0,0,-1,0,132522,10,0,40,0,0,0,0,0,0,190,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +11784,2,7,1,21,48,3,0,0,-1,0,135324,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +11785,4,6,1,14,53,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,1994,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0 +11786,2,8,1,17,51,1,0,0,-1,0,135357,9,0,100,0,0,0,0,0,0,280,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +11787,4,4,6,8,53,0,0,0,-1,0,132582,11,0,65,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11802,4,4,6,7,53,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11803,2,5,2,17,51,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +11804,12,0,0,0,0,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11805,2,4,2,21,51,3,0,0,-1,0,133046,8,0,90,0,0,0,0,0,0,120,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +11806,4,0,0,0,53,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11807,4,1,7,6,53,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11808,4,1,7,1,54,0,0,0,-1,0,135805,7,0,60,0,0,0,0,0,0,74,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11809,2,6,1,17,51,2,0,0,-1,0,135124,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +11810,4,0,0,12,55,0,0,0,-1,0,133276,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11811,4,0,0,12,50,0,0,0,-1,0,134084,8,0,0,0,0,0,0,0,0,150,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0 +11812,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11813,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11814,4,3,5,10,53,0,0,0,-1,0,132938,10,0,40,0,0,0,0,0,0,215,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11815,4,0,0,12,53,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11816,2,1,1,17,51,1,0,0,-1,0,135576,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +11817,2,7,1,21,51,3,0,0,-1,0,135326,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +11818,12,0,0,0,43,0,0,0,-1,0,134246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11819,4,0,0,12,54,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11820,4,3,5,5,53,0,0,0,-1,0,132739,10,0,120,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11821,4,2,8,7,53,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11822,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11823,4,2,8,7,54,0,0,0,-1,0,134593,7,0,75,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11824,4,0,5,11,49,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11825,7,3,0,0,0,0,0,0,-1,0,133712,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11826,7,3,0,0,0,0,0,0,-1,0,134231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11827,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11828,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11829,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11830,12,0,8,0,0,0,0,0,-1,0,134318,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11831,12,0,8,0,0,0,0,0,-1,0,134314,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11832,4,0,0,12,53,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11833,12,0,0,0,0,0,0,0,-1,0,134809,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11834,12,0,8,0,0,0,0,0,-1,0,132386,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11835,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11836,12,0,3,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11837,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11838,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11839,4,1,7,1,50,0,0,0,-1,0,133146,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11840,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11841,4,1,7,7,50,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11842,4,3,5,3,50,0,0,0,-1,0,135046,10,0,70,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11843,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11844,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11845,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11846,0,0,0,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11847,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11848,4,1,7,6,0,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11849,4,3,5,9,0,0,0,0,-1,0,132606,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11850,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11851,4,2,8,5,0,0,0,0,-1,0,132718,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11852,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11853,4,2,8,8,0,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11854,2,8,1,17,0,1,0,0,-1,0,135356,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +11855,4,0,0,23,0,3,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11856,2,15,1,13,0,3,0,0,-1,0,135311,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,63,0,0,0,0 +11857,2,10,2,17,0,2,0,0,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +11858,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11859,4,0,3,23,0,7,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11860,2,19,2,26,0,0,0,0,-1,0,135470,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +11861,4,3,5,6,0,0,0,0,-1,0,132516,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11862,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11863,2,13,1,22,0,7,0,0,-1,0,132369,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +11864,2,6,1,17,0,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +11865,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11866,4,2,8,6,0,0,0,0,-1,0,132500,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11867,4,3,5,10,0,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11868,4,0,5,11,0,1,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11869,4,0,5,11,0,1,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11870,4,0,3,23,0,7,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11871,4,2,8,3,0,0,0,0,-1,0,135046,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11872,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11873,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11874,4,2,8,3,0,0,0,0,-1,0,135061,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11875,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11876,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11882,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11883,15,0,1,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11884,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11885,0,0,0,0,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11886,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11887,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11888,4,1,7,10,0,0,0,0,-1,0,132959,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11889,4,4,6,3,0,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11902,2,7,1,21,0,3,0,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +11903,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11904,4,0,3,23,0,7,0,0,-1,0,134564,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11905,4,0,2,12,0,0,0,0,-1,0,135646,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11906,2,4,2,21,0,3,0,0,-1,0,133060,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +11907,2,1,1,17,0,1,0,0,-1,0,132401,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +11908,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11909,4,2,8,6,0,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11910,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11911,4,1,7,7,0,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11912,15,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11913,4,3,5,1,0,0,0,0,-1,0,133158,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11914,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11915,4,6,1,14,0,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11916,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11917,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11918,4,3,5,10,0,0,0,0,-1,0,132951,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11919,4,4,6,8,0,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11920,2,0,1,21,51,3,0,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +11921,2,5,2,17,52,1,0,0,-1,0,133045,9,0,100,0,0,0,0,0,0,30,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +11922,2,15,1,13,52,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +11923,2,4,2,21,52,3,0,0,-1,0,133044,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +11924,4,1,7,20,55,0,0,0,-1,0,132657,7,0,80,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11925,4,2,8,1,52,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,132,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +11926,4,3,5,5,52,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11927,4,4,6,7,52,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11928,4,0,3,23,55,3,0,0,-1,0,133488,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11929,4,1,7,7,52,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11930,4,1,7,16,55,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11931,2,1,1,17,54,1,0,0,-1,0,132416,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,225,0,0,0,0 +11932,2,10,2,17,54,2,0,0,-1,0,135167,13,0,100,0,0,0,0,0,0,0,0,0,0,10,0,0,133,0,0,0,0,200,0,0,0,0 +11933,4,0,3,2,55,0,0,0,-1,0,134131,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11934,4,0,5,11,55,0,3256,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0 +11935,4,0,3,23,53,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11936,4,1,7,6,0,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11937,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11938,15,0,3,0,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11939,15,0,3,0,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11940,15,0,3,0,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11941,15,0,3,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11942,15,0,3,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11943,15,0,3,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11944,15,0,3,0,0,0,0,0,-1,0,132540,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11945,4,0,5,11,48,0,3484,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11946,4,0,3,2,47,0,3513,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11947,12,0,0,0,0,0,0,0,-1,0,134815,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11948,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11949,12,0,0,0,0,0,0,0,-1,0,134857,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11950,0,0,0,0,45,0,0,0,-1,0,134014,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11951,0,0,0,0,45,0,0,0,-1,0,134011,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11952,0,0,0,0,45,0,0,0,-1,0,134001,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11953,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11954,12,0,0,0,0,0,0,0,-1,0,134836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11955,15,0,0,0,0,0,0,0,-1,0,133622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11962,4,1,7,9,0,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11963,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11964,2,4,2,21,0,3,0,0,-1,0,133483,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +11965,4,0,0,11,15,0,3295,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11966,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11967,4,0,0,11,18,0,3296,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11968,4,0,0,11,21,0,3297,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11969,4,0,0,11,24,0,3298,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11970,4,0,0,11,29,0,3300,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11971,4,0,0,11,32,0,3301,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11972,4,0,0,11,35,0,3302,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11973,4,0,0,11,38,0,3303,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11974,4,0,0,11,41,0,3304,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11975,4,0,0,11,44,0,3305,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11976,4,0,0,11,47,0,3306,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11977,4,0,0,11,50,0,3307,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11978,4,0,0,11,53,0,3308,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11979,4,0,0,11,56,0,3309,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11980,4,0,0,11,59,0,3310,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11981,4,0,0,11,15,0,3241,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11982,4,0,0,11,18,0,3242,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11983,4,0,0,11,21,0,3243,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11984,4,0,0,11,24,0,3244,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11985,4,0,0,11,30,0,3246,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11986,4,0,0,11,34,0,3247,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11987,4,0,0,11,38,0,3249,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11988,4,0,0,11,42,0,3250,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11989,4,0,0,11,46,0,3251,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11990,4,0,0,11,50,0,3253,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11991,4,0,0,11,54,0,3254,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11992,4,0,0,11,58,0,3255,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11993,4,0,0,11,17,0,3259,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11994,4,0,0,11,20,0,3260,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11995,4,0,0,11,23,0,3261,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11996,4,0,0,11,29,0,3263,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11997,4,0,0,11,33,0,3264,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11998,4,0,0,11,37,0,3265,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11999,4,0,0,11,41,0,3267,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12000,2,1,1,17,0,1,0,0,-1,0,132393,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,123,0,0,0,0 +12001,4,0,0,11,45,0,3268,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12002,4,0,0,11,49,0,3269,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12003,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12004,4,0,0,11,53,0,3271,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12005,4,0,0,11,57,0,3272,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12006,4,0,0,11,17,0,2123,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12007,4,0,0,11,20,0,2124,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12008,4,0,0,11,23,0,2125,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12009,4,0,0,11,28,0,2126,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12010,4,0,0,11,32,0,2128,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12011,4,0,0,11,36,0,2129,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12012,4,0,0,11,40,0,2130,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12013,4,0,0,11,44,0,2132,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12014,4,0,0,11,48,0,2133,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12015,4,0,0,11,52,0,2134,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12016,4,0,0,11,56,0,2136,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12017,4,0,0,11,60,0,3461,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12018,4,3,5,1,0,0,0,0,-1,0,133069,10,0,60,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12019,4,0,3,2,27,0,2030,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12020,4,0,3,2,31,0,2036,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12021,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12022,4,0,3,2,36,0,2048,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12023,4,0,3,2,40,0,2054,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12024,4,0,3,2,45,0,2066,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12025,4,0,3,2,49,0,2072,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12026,4,0,3,2,54,0,2084,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12027,4,0,3,2,58,0,2090,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12028,4,0,3,2,27,0,3281,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12029,4,0,3,2,30,0,3282,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12030,4,0,3,2,34,0,3283,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12031,4,0,3,2,39,0,3285,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12032,4,0,3,2,43,0,3286,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12033,15,0,1,0,0,0,0,0,-1,0,133650,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12034,4,0,3,2,48,0,3288,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12035,4,0,3,2,52,0,3289,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12036,4,0,3,2,57,0,3291,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12037,7,0,0,0,0,0,0,0,-1,0,134023,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12038,4,0,5,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12039,4,0,3,2,28,0,3539,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12040,4,0,3,2,33,0,3541,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12041,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12042,4,0,3,2,37,0,3542,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12043,4,0,3,2,42,0,3544,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12044,4,0,3,2,46,0,3545,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12045,4,0,3,2,51,0,3547,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12046,4,0,3,2,55,0,3548,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12047,4,0,3,2,25,0,3463,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12048,4,0,3,2,60,0,3462,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12049,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12050,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12051,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12052,4,0,5,11,16,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12053,4,0,5,11,16,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12054,4,0,5,11,19,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12055,4,0,5,11,47,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12056,4,0,5,11,51,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12057,4,0,5,11,55,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12058,4,0,5,11,59,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12059,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12060,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12061,2,7,1,13,0,3,0,0,-1,0,135327,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +12062,2,15,1,13,0,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +12063,2,6,1,17,0,2,0,0,-1,0,135124,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12064,4,1,7,1,0,0,0,0,-1,0,133131,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12065,4,0,2,12,0,0,0,0,-1,0,133435,21,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 +12066,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12082,4,2,8,3,0,0,0,0,-1,0,135047,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12083,4,1,7,6,0,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12102,4,0,5,11,0,1,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12103,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12104,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12105,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12106,4,4,6,5,0,0,0,0,-1,0,132723,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12107,4,1,7,7,0,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12108,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12109,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12110,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12111,4,4,6,10,0,0,0,0,-1,0,132960,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12112,4,3,5,9,0,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12113,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12114,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12115,4,4,6,6,0,0,0,0,-1,0,132523,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12122,15,0,1,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12142,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12143,13,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12144,13,0,0,0,0,0,0,0,-1,0,133003,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12162,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12163,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12164,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12182,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12183,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12184,7,0,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12185,4,1,7,1,0,0,0,0,-1,0,133168,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12186,13,0,0,0,0,0,0,0,-1,0,134243,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12187,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12188,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12189,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12190,0,0,0,0,35,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12191,12,0,0,0,0,0,0,0,-1,0,132596,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12192,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12202,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12203,7,0,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12204,7,0,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12205,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12206,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12207,7,0,0,0,0,0,0,0,-1,0,132834,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12208,7,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12209,0,0,0,0,15,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12210,0,0,0,0,25,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12211,0,0,0,0,25,0,0,0,-1,0,134004,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12212,0,0,0,0,25,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12213,0,0,0,0,25,0,0,0,-1,0,134005,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12214,0,0,0,0,25,0,0,0,-1,0,132806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12215,0,0,0,0,35,0,0,0,-1,0,132806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12216,0,0,0,0,40,0,0,0,-1,0,134004,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12217,0,0,0,0,35,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12218,0,0,0,0,40,0,0,0,-1,0,133948,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12219,12,0,0,0,0,0,0,0,-1,0,135725,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12220,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12221,2,20,0,17,5,1,0,0,-1,0,132932,12,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +12222,4,0,0,1,0,0,0,0,-1,0,133133,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12223,7,0,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12224,0,0,0,0,1,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12225,2,20,0,17,0,1,0,0,-1,0,132932,12,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +12226,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12227,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12228,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12229,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12230,12,0,0,0,0,0,0,0,-1,0,134817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12231,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12232,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12233,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12234,12,0,0,0,0,0,0,0,-1,0,134815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12235,12,0,0,0,0,0,0,0,-1,0,134859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12236,12,0,0,0,0,0,0,0,-1,0,134857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12237,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12238,0,0,0,0,5,0,0,0,-1,0,133912,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12239,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12240,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12241,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12242,12,0,0,0,0,0,0,0,-1,0,133719,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12243,2,6,1,17,49,2,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,10,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +12244,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12245,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12246,0,0,0,7,0,0,0,0,-1,0,135725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12247,2,15,1,13,27,3,0,0,-1,0,135640,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +12248,2,15,1,13,29,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +12249,2,1,1,17,26,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,81,0,0,0,0 +12250,2,1,1,17,29,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +12251,2,10,2,17,32,2,0,0,-1,0,135158,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,93,0,0,0,0 +12252,2,10,2,17,34,2,0,0,-1,0,135144,13,0,85,0,0,0,0,0,0,100,0,6,6,6,6,6,66,0,0,0,0,100,0,0,0,0 +12253,4,1,7,16,36,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12254,4,1,7,16,39,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12255,4,1,7,7,41,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12256,4,1,7,7,44,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12257,4,3,5,6,37,0,0,0,-1,0,132523,10,0,35,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12258,4,3,5,6,39,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12259,2,15,1,13,31,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +12260,2,15,1,13,34,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +12261,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12262,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12263,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12264,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12282,2,1,1,17,1,1,0,0,-1,0,132400,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +12283,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12284,12,0,0,0,0,0,0,0,-1,0,133001,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12285,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12286,12,0,0,0,0,0,0,0,-1,0,133003,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12287,12,0,0,0,0,0,0,0,-1,0,133014,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12288,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12289,12,0,0,0,0,0,0,0,-1,0,133724,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12290,2,0,1,13,1,3,0,0,-1,0,132392,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12291,12,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12292,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12293,12,0,0,0,0,0,0,0,-1,0,132890,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12294,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12295,4,1,7,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12296,2,19,2,26,0,0,0,0,-1,0,135139,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +12297,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12298,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12299,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12300,12,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12301,13,0,0,0,0,0,0,0,-1,0,134239,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12302,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12303,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12304,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12322,2,10,2,17,0,2,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12323,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12324,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12325,15,0,0,0,40,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12326,15,0,0,0,40,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12327,15,0,0,0,40,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12328,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12329,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12330,15,0,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12331,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12332,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12333,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12334,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12335,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12336,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12337,12,0,0,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12338,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12339,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12340,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12341,12,0,0,0,0,0,0,0,-1,0,134013,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12342,12,0,0,0,0,0,0,0,-1,0,134059,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12343,12,0,0,0,0,0,0,0,-1,0,133944,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12344,4,0,0,11,0,0,0,0,-1,0,133343,24,0,0,0,0,0,0,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0 +12345,12,0,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12346,12,0,0,0,0,0,0,0,-1,0,133748,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12347,12,0,0,0,0,0,0,0,-1,0,134712,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12348,2,0,1,13,1,3,0,0,-1,0,132392,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12349,12,0,0,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12350,12,0,0,0,0,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12351,15,0,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12352,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12353,15,0,0,0,60,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12354,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12355,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12356,12,0,0,0,0,0,0,0,-1,0,132833,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12357,7,0,4,0,0,0,0,0,-1,0,133222,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12358,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12359,7,0,2,0,0,0,0,0,-1,0,133221,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12360,7,0,2,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12361,7,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12362,7,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12363,7,0,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12364,7,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12365,7,0,0,0,0,0,0,0,-1,0,134461,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12366,12,0,0,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12367,12,0,0,0,0,0,0,0,-1,0,135657,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12368,12,0,0,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12369,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12382,13,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12383,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12384,12,0,0,0,0,0,0,0,-1,0,133296,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12385,0,0,0,7,0,0,0,0,-1,0,135736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12402,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12403,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12404,7,0,0,0,35,0,0,0,-1,0,135252,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12405,4,4,6,5,45,0,0,0,-1,0,132743,11,0,115,0,0,0,0,0,0,480,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 +12406,4,4,6,6,45,0,0,0,-1,0,132519,11,0,40,0,0,0,0,0,0,270,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +12407,4,4,6,3,46,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12408,4,4,6,9,46,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,214,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12409,4,4,6,8,51,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,367,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0 +12410,4,4,6,1,51,0,0,0,-1,0,133125,11,0,70,0,0,0,0,0,0,434,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +12411,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12412,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12413,4,4,6,7,55,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,499,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0 +12414,4,4,6,7,55,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,499,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +12415,4,3,5,5,49,0,0,0,-1,0,132751,10,0,100,0,0,0,0,0,0,293,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0 +12416,4,3,5,6,47,0,0,0,-1,0,132500,10,0,35,0,0,0,0,0,0,159,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +12417,4,3,5,1,54,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,258,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +12418,4,3,5,10,52,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,192,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +12419,4,3,5,8,53,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,215,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0 +12420,4,3,5,7,56,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,286,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +12421,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12422,4,4,6,5,55,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12423,4,4,6,1,51,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,434,0,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0 +12424,4,4,6,6,47,0,0,0,-1,0,132490,11,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12425,4,4,6,9,49,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12426,4,4,6,8,54,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12427,4,4,6,1,54,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12428,4,4,6,3,47,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12429,4,4,6,7,56,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12430,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12431,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12432,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12433,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12434,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12435,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12436,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12437,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12438,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12439,0,0,0,0,0,0,0,0,-1,0,133640,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12440,0,0,0,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12441,0,0,0,0,0,0,0,0,-1,0,133642,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12442,4,0,0,23,0,7,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12443,4,0,0,23,0,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12444,12,0,0,0,0,0,0,0,-1,0,134228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12445,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12446,2,3,1,26,0,0,0,0,-1,0,135616,8,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +12447,2,2,2,15,0,0,0,0,-1,0,135490,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +12448,2,3,1,26,0,0,0,0,-1,0,135616,8,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,0,0,0 +12449,2,2,2,15,0,0,0,0,-1,0,135490,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +12450,12,0,0,0,0,0,0,0,-1,0,134319,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12451,12,0,0,0,0,0,0,0,-1,0,134313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12452,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12453,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12454,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12455,12,0,0,0,0,0,0,0,-1,0,134317,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12456,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12457,12,0,0,0,0,0,0,0,-1,0,134311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12458,12,0,0,0,0,0,0,0,-1,0,134315,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12459,12,0,0,0,0,0,0,0,-1,0,134319,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12460,12,0,0,0,0,0,0,0,-1,0,134309,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12461,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12462,4,1,7,20,50,0,0,0,-1,0,132683,7,0,100,0,0,0,0,0,0,86,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0 +12463,2,8,1,17,48,1,0,0,-1,0,135317,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +12464,4,2,8,10,48,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,96,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12465,4,1,7,16,48,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12466,4,1,7,6,48,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12467,12,0,0,0,1,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12468,2,19,2,26,1,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,19,0,0,0,0 +12469,2,8,1,17,42,1,0,0,-1,0,135272,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +12470,4,2,8,8,42,0,0,0,-1,0,132603,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12471,4,0,0,23,42,2,0,0,-1,0,135158,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12472,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12482,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12502,2,0,1,22,1,7,0,0,-1,0,135279,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +12522,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12523,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12524,12,0,0,0,0,0,0,0,-1,0,132925,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12525,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12526,0,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12527,2,0,1,21,48,3,5304,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +12528,2,5,2,17,47,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,184,0,0,0,0 +12529,15,0,0,0,0,0,0,0,-1,0,132598,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12530,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12531,2,15,1,13,46,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +12532,2,10,2,17,51,2,0,0,-1,0,135469,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +12533,0,0,0,0,0,0,0,0,-1,0,135124,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12534,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12535,2,7,1,13,49,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +12542,4,1,7,20,46,0,0,0,-1,0,132681,7,0,80,0,0,0,0,0,0,73,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12543,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12544,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12545,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12546,4,1,7,9,49,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12547,4,2,8,10,51,0,0,0,-1,0,132957,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12548,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12549,4,3,5,1,47,0,0,0,-1,0,133078,10,0,70,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12550,4,4,6,9,48,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12551,4,1,7,16,51,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12552,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +12553,4,2,8,8,54,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12554,4,1,7,10,54,0,0,0,-1,0,132966,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12555,4,4,6,8,50,0,0,0,-1,0,132587,11,0,65,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12556,4,1,7,8,54,0,0,0,-1,0,132592,7,0,40,0,0,0,0,0,0,58,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +12557,4,4,6,3,54,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12558,12,0,0,0,52,0,0,0,-1,0,133298,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12562,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12563,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12564,12,0,0,0,23,0,0,0,-1,0,133473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12565,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12566,12,0,3,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12567,12,0,3,0,0,0,0,0,-1,0,134802,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12582,2,15,1,13,55,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +12583,2,6,1,17,58,1,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +12584,2,7,1,13,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +12585,15,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12586,0,0,0,0,0,0,0,0,-1,0,134339,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12587,4,2,8,1,58,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12588,4,3,5,3,58,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12589,4,1,7,6,56,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12590,2,15,1,13,58,3,0,0,-1,0,135661,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +12591,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12592,2,8,1,17,58,1,0,0,-1,0,135330,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +12593,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12602,4,6,1,14,58,4,0,0,-1,0,134966,9,0,100,0,0,0,0,0,0,2153,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12603,4,2,8,5,56,0,0,0,-1,0,132741,7,0,100,0,0,0,0,0,0,172,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +12604,4,1,7,1,55,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,69,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12605,2,19,2,26,51,0,0,0,-1,0,133729,21,0,65,0,5,0,0,0,0,0,0,0,0,0,10,0,53,0,0,0,0,100,0,0,0,0 +12606,4,2,8,6,56,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12607,15,0,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12608,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12609,4,1,8,5,56,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,87,0,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0 +12610,4,4,6,3,55,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,427,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +12611,4,4,6,8,55,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,392,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +12612,4,4,6,1,56,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,471,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0 +12613,4,4,6,5,57,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,588,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +12614,4,4,6,7,57,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,515,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0 +12615,4,3,5,5,57,0,0,0,-1,0,132738,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12616,4,3,5,8,58,0,0,0,-1,0,132582,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12617,4,3,5,3,58,0,0,0,-1,0,135046,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12618,4,4,6,5,58,0,0,0,-1,0,132745,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12619,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12620,4,4,6,1,57,0,0,0,-1,0,133070,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12621,2,0,1,21,54,3,0,0,-1,0,135581,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,142,0,0,0,0 +12622,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12623,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12624,4,3,5,5,49,0,0,0,-1,0,132634,10,0,120,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12625,4,4,6,3,53,0,0,0,-1,0,135051,11,0,80,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12626,4,1,7,9,54,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +12627,12,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12628,4,4,6,5,52,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12629,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12630,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12631,4,4,6,10,53,0,0,0,-1,0,132937,11,0,45,0,0,0,0,0,0,379,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12632,4,3,5,10,54,0,0,0,-1,0,132964,10,0,40,0,0,0,0,0,0,218,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12633,4,4,6,1,55,0,0,0,-1,0,133111,11,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12634,4,3,5,6,55,0,0,0,-1,0,132502,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12635,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12636,4,3,5,1,56,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12637,4,4,6,10,55,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12638,12,0,0,0,0,0,0,0,-1,0,134377,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12639,4,4,6,10,57,0,0,0,-1,0,132964,11,0,55,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12640,4,4,6,1,56,0,0,0,-1,0,133138,11,0,100,0,0,0,0,0,0,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12641,4,3,5,5,57,0,0,0,-1,0,132629,10,0,140,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12642,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12643,7,0,0,0,35,0,0,0,-1,0,135259,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12644,7,0,0,0,0,0,0,0,-1,0,135247,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12645,7,0,8,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12646,12,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12647,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12648,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12649,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12650,0,0,0,0,0,0,0,0,-1,0,134961,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12651,2,18,2,26,54,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +12652,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12653,2,2,2,15,54,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +12654,6,2,2,24,54,0,0,0,-1,0,132169,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,20,0,0,0,0 +12655,7,0,2,0,0,0,0,0,-1,0,133229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12662,7,0,2,0,0,0,0,0,-1,0,134417,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12663,12,0,0,0,0,0,0,0,-1,0,135645,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12682,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12683,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12684,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12685,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12686,2,15,1,22,58,3,0,0,-1,0,135342,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,66,0,0,0,0 +12687,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12688,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12689,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12690,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12691,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12692,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12693,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12694,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12695,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12696,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12697,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12698,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12699,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12700,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12701,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12702,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12703,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12704,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12705,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12706,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12707,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12708,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12709,2,15,1,21,58,3,0,0,-1,0,135343,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +12710,12,0,0,0,0,0,0,0,-1,0,133998,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12711,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12712,0,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12713,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12714,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12715,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12716,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12717,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12718,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12719,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12720,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12721,12,0,0,0,0,0,0,0,-1,0,133442,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12722,12,0,0,0,0,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12723,12,0,0,0,0,0,0,0,-1,0,133444,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12724,12,0,0,0,0,0,0,0,-1,0,134144,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12725,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12726,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12727,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12728,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12729,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12730,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12731,15,0,0,0,0,0,0,0,-1,0,134317,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12732,12,0,0,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12733,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12734,12,0,0,0,0,0,0,0,-1,0,132906,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12735,12,0,0,0,0,0,0,0,-1,0,134365,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12736,12,0,0,0,0,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12737,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12738,12,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12739,12,0,0,0,0,0,0,0,-1,0,134246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12740,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12741,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12742,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12743,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12744,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12745,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12746,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12747,2,14,1,22,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12748,2,14,1,13,1,0,0,0,-1,0,135471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12749,4,0,1,23,1,0,0,0,-1,0,135471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12750,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12751,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12752,4,1,7,1,0,0,0,0,-1,0,133161,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12753,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12754,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12755,2,8,1,17,1,1,0,0,-1,0,135330,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12756,4,2,8,7,0,0,0,0,-1,0,134585,7,0,90,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12757,4,2,8,5,0,0,0,0,-1,0,132635,7,0,120,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12762,0,0,0,0,0,0,0,0,-1,0,134943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12763,0,0,7,0,45,0,0,0,-1,0,133998,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12764,2,8,1,17,47,1,0,0,-1,0,135323,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +12765,12,0,0,0,0,0,0,0,-1,0,134943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12766,12,0,0,0,0,0,0,0,-1,0,134943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12767,2,15,1,13,48,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +12768,12,0,0,0,0,0,0,0,-1,0,134943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12769,2,1,1,17,49,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +12770,12,0,0,0,0,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12771,12,0,0,0,52,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12772,2,5,2,17,49,1,0,0,-1,0,133046,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +12773,2,0,1,21,50,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +12774,2,0,1,13,50,3,0,0,-1,0,132396,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +12775,2,1,1,17,51,1,0,0,-1,0,135581,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,172,0,0,0,0 +12776,2,5,2,17,51,1,0,0,-1,0,133042,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +12777,2,7,1,13,51,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +12778,15,0,0,0,0,0,0,0,-1,0,132762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12779,2,0,1,21,52,3,0,0,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +12780,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12781,2,4,2,21,52,3,0,0,-1,0,133477,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +12782,2,8,1,17,53,1,0,0,-1,0,135277,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +12783,2,15,1,13,58,3,0,0,-1,0,135315,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +12784,2,1,1,17,58,1,0,0,-1,0,132400,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,256,0,0,0,0 +12785,12,0,0,0,0,0,0,0,-1,0,134514,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12786,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12787,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12788,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12789,15,0,0,0,0,0,0,0,-1,0,134228,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12790,2,8,1,17,58,1,0,0,-1,0,135349,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +12791,2,15,1,21,50,7,0,0,-1,0,132797,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +12792,2,4,2,21,53,3,0,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,113,0,0,0,0 +12793,4,2,8,5,50,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12794,2,4,2,21,57,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +12795,2,13,1,21,55,7,0,0,-1,0,135663,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +12796,2,5,2,17,58,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +12797,2,7,1,21,58,3,0,0,-1,0,135291,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +12798,2,0,1,21,58,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +12799,7,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12800,7,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12801,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +12802,2,6,1,17,55,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +12803,5,0,0,0,0,0,0,0,-1,0,136006,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12804,7,0,8,0,0,0,0,0,-1,0,136011,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12805,4,0,0,12,0,0,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12806,12,0,1,0,0,0,0,0,-1,0,132739,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12807,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12808,5,0,0,0,0,0,0,0,-1,0,136195,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12809,7,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12810,7,0,8,0,0,0,0,0,-1,0,134418,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12811,7,0,0,0,0,0,0,0,-1,0,134122,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12812,12,0,6,0,0,0,0,0,-1,0,132963,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12813,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12814,12,0,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12815,12,0,0,0,0,0,0,0,-1,0,135432,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12816,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12817,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12818,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12819,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12820,0,0,0,0,45,0,0,0,-1,0,134872,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12821,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12822,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12823,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12824,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12825,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12826,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12827,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12828,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12829,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12830,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12831,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12832,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12833,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12834,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12835,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12836,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12837,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12838,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12839,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12840,12,0,0,0,0,0,0,0,-1,0,133447,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12841,12,0,0,0,0,0,0,0,-1,0,133446,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12842,12,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12843,12,0,0,0,0,0,0,0,-1,0,133445,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12844,12,0,0,0,0,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12845,12,0,0,0,0,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12846,4,0,0,12,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12847,12,0,0,0,0,0,0,0,-1,0,135129,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12848,12,0,0,0,0,0,0,0,-1,0,135129,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12849,12,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12850,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12851,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12852,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12853,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12854,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12855,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12856,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12857,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12858,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12859,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12860,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12861,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12862,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12863,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12864,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12865,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12866,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12867,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12868,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12869,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12870,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12871,15,0,0,0,0,0,0,0,-1,0,134967,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12882,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12883,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12884,0,0,0,0,0,0,0,0,-1,0,134060,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12885,0,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12886,0,0,0,0,0,0,0,0,-1,0,134164,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12887,12,0,0,0,0,0,0,0,-1,0,134230,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12888,12,0,0,0,0,0,0,0,-1,0,134230,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12889,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12890,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12891,12,0,0,0,0,0,0,0,-1,0,134708,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12892,2,7,1,13,1,1,0,0,-1,0,135280,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12893,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12894,0,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12895,4,4,6,5,0,0,0,0,-1,0,132744,11,0,165,0,0,0,0,0,0,706,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12896,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12897,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12898,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12899,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12900,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12901,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12902,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12903,4,3,5,7,0,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,349,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12904,4,1,7,1,61,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12905,4,1,7,16,56,0,0,0,-1,0,132657,7,0,0,0,0,0,0,0,0,43,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12906,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12907,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12922,0,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12923,12,0,0,0,0,0,0,0,-1,0,134312,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12924,0,0,0,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12925,12,0,0,0,0,0,0,0,-1,0,134318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12926,4,0,5,11,56,0,3248,0,-1,0,135926,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12927,4,2,8,3,56,0,0,0,-1,0,135041,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12928,12,0,0,0,0,0,0,0,-1,0,133003,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12929,4,0,3,2,56,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12930,4,0,0,12,55,0,0,0,-1,0,134413,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12931,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12932,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12933,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12934,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12935,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12936,4,4,6,9,58,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12937,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12938,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12939,2,7,1,22,58,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,100,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +12940,2,7,1,21,58,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +12941,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +12942,12,0,0,0,0,0,0,0,-1,0,134241,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12943,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12944,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12945,4,3,5,7,0,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,349,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12946,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12947,4,0,0,11,0,0,0,0,-1,0,133006,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12948,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12949,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12950,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12951,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +12952,4,4,6,1,55,0,3304,0,-1,0,133125,11,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12953,4,3,5,1,55,0,3304,0,-1,0,133141,10,0,70,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12954,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12955,12,0,0,0,0,0,0,0,-1,0,134951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12956,12,0,0,0,0,0,0,0,-1,0,133729,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12957,12,0,0,0,0,0,0,0,-1,0,135357,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12958,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12959,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12960,4,2,8,1,55,0,3304,0,-1,0,133126,7,0,60,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12961,4,6,1,14,0,0,0,0,-1,0,134949,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12962,4,2,8,10,0,0,0,0,-1,0,132946,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12963,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12964,4,3,5,7,58,0,0,0,-1,0,134584,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12965,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12966,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +12967,4,1,7,16,58,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0 +12968,4,1,7,16,58,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,45,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +12969,2,5,2,17,58,1,0,0,-1,0,133054,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +12970,4,4,6,5,58,0,0,0,-1,0,132745,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12971,2,7,1,21,0,0,0,0,-1,0,135271,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +12972,2,7,1,21,0,0,0,0,-1,0,135271,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +12973,13,0,0,0,0,0,0,0,-1,0,132383,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12974,2,7,1,21,26,3,0,0,-1,0,135311,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +12975,2,1,1,17,15,1,0,0,-1,0,132394,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,51,0,0,0,0 +12976,2,7,1,13,15,3,0,0,-1,0,135327,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +12977,4,1,7,10,15,0,0,0,-1,0,132961,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12978,4,3,5,6,15,0,0,0,-1,0,132504,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12979,4,1,7,16,16,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12980,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12981,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12982,4,3,5,8,16,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12983,2,5,2,17,16,1,0,0,-1,0,133046,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,57,0,0,0,0 +12984,2,19,2,26,16,0,0,0,-1,0,135464,21,0,45,0,6,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +12985,4,0,4,11,17,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12986,2,17,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12987,4,1,7,7,17,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12988,4,2,8,5,17,0,0,0,-1,0,132725,7,0,90,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12989,2,6,1,17,20,2,0,0,-1,0,135128,9,0,80,0,0,0,0,0,0,60,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +12990,2,0,1,13,18,3,0,0,-1,0,135578,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +12991,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +12992,2,8,1,17,18,1,0,0,-1,0,135322,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +12993,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12994,4,3,5,10,18,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12995,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12996,4,0,5,11,18,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12997,4,6,1,14,19,4,0,0,-1,0,134948,9,0,90,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12998,4,1,7,3,20,0,0,0,-1,0,135044,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12999,4,2,8,9,20,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13000,2,10,2,17,57,2,0,0,-1,0,135160,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,210,0,0,0,0 +13001,4,0,5,11,55,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13002,4,0,3,2,54,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13003,2,1,1,17,51,1,0,0,-1,0,135572,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +13004,2,19,2,26,53,0,0,0,-1,0,135473,21,0,65,0,2,0,0,0,0,0,0,10,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +13005,4,1,7,16,23,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13006,2,4,2,21,57,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +13007,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13008,4,1,7,7,47,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13009,4,2,8,5,46,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,148,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +13010,4,3,5,7,21,0,0,0,-1,0,134583,10,0,80,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13011,4,2,8,6,22,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13012,4,3,5,9,22,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13013,4,1,7,3,51,0,0,0,-1,0,135045,7,0,50,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13014,2,0,1,13,48,3,0,0,-1,0,132415,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +13015,2,0,1,13,56,3,0,0,-1,0,132399,8,0,90,0,0,0,0,0,0,100,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +13016,2,1,1,17,21,1,0,0,-1,0,132401,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +13017,2,1,1,17,35,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +13018,2,1,1,17,43,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +13019,2,2,2,15,27,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +13020,2,2,2,15,34,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +13021,2,2,2,15,42,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +13022,2,2,2,15,50,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +13023,2,2,2,15,58,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,76,0,0,0,0 +13024,2,4,2,21,24,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +13025,2,4,2,21,32,3,0,0,-1,0,133053,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +13026,2,4,2,21,40,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +13027,2,4,2,21,48,3,0,0,-1,0,133057,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +13028,2,4,2,21,56,3,0,0,-1,0,133056,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +13029,4,0,1,23,38,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13030,4,0,1,23,46,7,0,0,-1,0,133727,8,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +13031,4,0,1,23,23,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13032,2,7,1,13,22,3,0,0,-1,0,135327,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +13033,2,7,1,13,29,3,0,0,-1,0,135313,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13034,2,7,1,13,36,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +13035,2,7,1,13,44,3,0,0,-1,0,135343,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +13036,2,7,1,13,52,3,0,0,-1,0,135352,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +13037,2,18,2,26,27,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,54,0,0,0,0 +13038,2,18,2,26,35,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +13039,2,18,2,26,43,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,79,0,0,0,0 +13040,2,18,2,26,51,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,108,0,0,0,0 +13041,2,8,1,17,21,1,0,0,-1,0,135326,9,0,95,0,0,0,0,0,0,40,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +13042,2,8,1,17,36,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,145,0,0,0,0 +13043,2,8,1,17,44,1,0,0,-1,0,135277,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +13044,2,8,1,17,52,1,0,0,-1,0,135273,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,182,0,0,0,0 +13045,2,5,2,17,30,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +13046,2,5,2,17,45,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,5,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +13047,2,5,2,17,53,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +13048,2,4,2,21,26,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +13049,2,8,1,17,26,1,0,0,-1,0,135356,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +13050,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13051,2,8,1,17,39,1,0,0,-1,0,135345,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +13052,2,8,1,17,47,1,0,0,-1,0,135356,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +13053,2,8,1,17,55,1,0,0,-1,0,135271,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,173,0,0,0,0 +13054,2,6,1,17,35,1,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +13055,2,6,1,17,43,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +13056,2,6,1,17,51,1,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +13057,2,6,1,17,23,2,0,0,-1,0,135125,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +13058,2,6,1,17,39,2,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +13059,2,6,1,17,47,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +13060,2,6,1,17,55,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +13061,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13062,2,19,2,26,22,0,0,0,-1,0,135139,21,0,60,0,3,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +13063,2,19,2,26,29,0,0,0,-1,0,135139,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +13064,2,19,2,26,37,0,0,0,-1,0,135471,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +13065,2,19,2,26,45,0,0,0,-1,0,135471,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,9,64,0,0,0,0,120,0,0,0,0 +13066,4,4,6,3,46,0,0,0,-1,0,135055,11,0,80,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13067,4,4,6,5,49,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,567,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13068,4,4,6,8,40,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13069,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13070,4,4,6,8,53,0,0,0,-1,0,132586,11,0,65,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13071,4,4,6,10,40,0,0,0,-1,0,132944,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13072,4,4,6,10,55,0,0,0,-1,0,132937,11,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13073,4,4,6,1,47,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13074,4,4,6,7,41,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13075,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13076,4,4,6,9,43,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13077,4,4,6,6,52,0,0,0,-1,0,132521,11,0,45,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13078,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13079,4,6,1,14,25,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13080,4,1,7,20,58,0,0,0,-1,0,132643,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0 +13081,4,6,1,14,33,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13082,4,6,1,14,41,4,0,0,-1,0,134961,9,0,100,0,0,0,0,0,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13083,4,6,1,14,57,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13084,4,0,3,2,30,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13085,4,0,3,2,46,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13086,15,0,0,0,60,0,0,0,-1,0,132252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13087,4,0,3,2,28,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13088,4,0,3,2,36,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13089,4,0,3,2,44,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13090,4,3,5,5,58,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13091,4,0,3,2,52,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13092,4,2,8,5,58,0,0,0,-1,0,132646,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13093,4,0,1,11,32,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13094,4,0,1,11,25,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13095,4,0,0,11,39,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13096,4,0,0,11,55,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13097,4,0,0,11,24,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13098,4,0,5,11,58,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13099,4,1,7,8,24,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13100,4,1,7,8,39,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13101,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13102,4,1,7,1,42,0,0,0,-1,0,133345,7,0,50,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13103,4,1,7,3,33,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,41,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +13104,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13105,4,1,7,6,32,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13106,4,1,7,9,26,0,0,0,-1,0,132618,7,0,30,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13107,4,1,7,9,57,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13108,4,1,7,16,29,0,0,0,-1,0,134348,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13109,4,1,7,16,44,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,35,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +13110,4,2,8,5,31,0,0,0,-1,0,132719,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13111,4,2,8,8,49,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13112,4,2,8,1,43,0,0,0,-1,0,133121,7,0,60,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13113,4,2,8,1,58,0,0,0,-1,0,133072,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13114,4,2,8,7,25,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13115,4,2,8,3,40,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13116,4,2,8,3,56,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13117,4,2,8,6,37,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13118,4,2,8,6,52,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13119,4,2,8,9,34,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13120,4,2,8,9,50,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13121,4,1,7,16,33,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13122,4,1,7,16,50,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13123,4,3,5,5,57,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13124,4,3,5,8,30,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13125,4,3,5,8,45,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13126,4,3,5,10,48,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13127,4,3,5,1,27,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13128,4,3,5,1,42,0,0,0,-1,0,133120,10,0,70,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13129,4,3,5,7,34,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,218,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13130,4,3,5,7,51,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13131,4,3,5,3,24,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13132,4,3,5,3,38,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13133,4,3,5,3,56,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,270,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13134,4,3,5,6,44,0,0,0,-1,0,132512,10,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13135,4,3,5,9,54,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13136,2,3,1,26,16,0,0,0,-1,0,135617,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +13137,2,3,1,26,29,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +13138,2,3,1,26,37,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,82,0,0,0,0 +13139,2,3,1,26,45,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +13140,12,0,0,0,49,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13141,4,0,3,2,58,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13142,4,4,6,6,58,0,0,0,-1,0,132522,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13143,4,0,1,11,56,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13144,4,1,7,6,48,0,0,0,-1,0,132496,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13145,4,4,6,6,40,0,0,0,-1,0,132516,11,0,45,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13146,2,3,1,26,53,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,89,0,0,0,0 +13147,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13148,2,6,1,17,56,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +13149,0,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13150,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13151,0,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13152,0,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13153,0,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13154,0,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13155,0,0,0,0,0,0,0,0,-1,0,136207,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13156,0,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13157,12,0,0,0,0,0,0,0,-1,0,133728,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13158,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13159,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13160,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13161,2,10,2,17,56,2,0,0,-1,0,135166,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +13162,4,4,6,10,56,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13163,2,8,1,17,57,1,0,0,-1,0,135316,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,210,0,0,0,0 +13164,4,0,0,12,56,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13165,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13166,4,4,6,3,55,0,0,0,-1,0,135054,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13167,2,5,2,17,55,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +13168,4,4,6,5,55,0,0,0,-1,0,132748,11,0,135,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13169,4,2,8,7,55,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13170,4,1,7,7,55,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13171,4,0,8,12,0,0,0,0,-1,0,135825,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13172,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13173,2,16,1,25,55,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +13174,12,0,0,0,0,0,0,0,-1,0,134358,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13175,2,2,2,15,55,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +13176,12,0,0,0,0,0,0,0,-1,0,134420,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13177,4,0,3,2,55,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13178,4,0,5,11,55,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13179,4,3,5,9,55,0,0,0,-1,0,132608,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13180,12,0,0,0,0,0,0,0,-1,0,134855,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13181,4,1,7,10,52,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13182,2,7,1,13,52,3,0,0,-1,0,135346,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +13183,2,4,2,13,55,3,0,0,-1,0,135472,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +13184,4,2,8,10,56,0,0,0,-1,0,132947,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13185,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13186,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13187,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13188,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13189,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13190,12,0,0,0,0,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13191,12,0,0,0,0,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13192,12,0,0,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13193,12,0,0,0,0,0,0,0,-1,0,134828,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13194,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13195,12,0,0,0,0,0,0,0,-1,0,134247,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13196,12,0,0,0,0,0,0,0,-1,0,134247,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13197,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13198,2,13,1,13,55,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +13199,4,3,5,9,36,0,0,0,-1,0,132618,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13202,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13203,4,1,7,16,55,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13204,2,4,2,13,55,3,0,0,-1,0,133490,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +13205,4,6,1,14,56,4,0,0,-1,0,134960,9,0,100,0,0,0,0,0,0,2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13206,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +13207,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13208,4,2,8,9,56,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13209,4,0,0,12,0,0,0,0,-1,0,133612,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13210,4,2,8,8,55,0,0,0,-1,0,132592,7,0,50,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13211,4,3,5,9,55,0,0,0,-1,0,132606,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13212,4,0,3,2,55,0,0,0,-1,0,132503,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13213,4,0,0,12,55,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13214,4,4,6,8,1,0,0,0,-1,0,132535,11,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13215,12,0,0,0,0,0,0,0,-1,0,133074,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13216,4,1,7,1,0,0,0,0,-1,0,133074,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13217,4,0,0,11,0,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13218,2,15,1,13,56,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +13219,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13220,2,4,2,13,1,7,0,0,-1,0,133964,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13221,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13222,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13223,12,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13242,4,2,8,8,55,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13243,4,6,1,14,0,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13244,4,3,5,10,55,0,0,0,-1,0,132963,10,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13245,4,6,1,14,15,4,0,0,-1,0,134964,9,0,75,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13246,2,7,1,13,0,3,0,0,-1,0,135275,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,108,0,0,0,0 +13247,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13248,2,3,1,26,51,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +13249,2,10,2,17,0,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +13250,12,0,0,0,0,0,0,0,-1,0,136183,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13251,12,0,0,0,0,0,0,0,-1,0,136129,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13252,4,2,8,6,55,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13253,4,1,7,10,55,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13254,4,6,1,14,51,4,4313,0,-1,0,134958,9,0,100,0,0,0,0,0,0,1930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13255,4,3,5,10,54,0,0,0,-1,0,132964,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13256,12,0,0,26,0,0,0,0,-1,0,135611,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +13257,4,2,8,3,54,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13258,4,2,8,10,56,0,745,0,-1,0,132956,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13259,4,4,6,8,56,0,0,0,-1,0,132589,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13260,4,3,5,8,56,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13261,4,0,3,23,54,7,0,0,-1,0,135471,21,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +13262,2,8,1,17,60,1,0,0,-1,0,135358,9,0,145,0,0,1,0,0,0,0,0,0,0,0,0,0,201,30,0,0,0,247,50,0,0,0 +13282,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13283,4,0,5,11,54,0,0,0,-1,0,135926,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13284,4,3,5,8,53,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13285,2,1,1,17,53,1,0,0,-1,0,135581,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,239,0,0,0,0 +13286,2,0,1,13,53,3,0,0,-1,0,134710,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +13287,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13288,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13289,12,0,0,26,0,0,0,0,-1,0,135614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13290,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13291,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13292,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13293,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13294,0,0,0,3,0,0,0,0,-1,0,132394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13302,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13303,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13304,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13305,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13306,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13307,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13308,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13309,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13310,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13311,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13312,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13313,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13314,4,1,7,20,57,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13315,4,0,0,23,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13316,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13317,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13318,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13319,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13320,12,0,0,0,0,0,0,0,-1,0,136006,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13321,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13322,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13323,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13324,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13325,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13326,15,0,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13327,15,0,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13328,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13329,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13330,1,0,0,18,1,0,0,0,-1,0,134012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13331,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13332,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13333,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13334,15,0,0,0,60,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13335,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13336,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13337,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13338,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13339,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13340,4,1,7,16,58,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13341,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13342,15,0,0,0,0,0,0,0,-1,0,133889,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13343,15,0,0,0,0,0,0,0,-1,0,135240,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13344,4,3,5,10,58,0,0,0,-1,0,132965,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13345,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13346,4,1,7,20,58,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13347,12,0,0,12,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13348,2,8,1,17,58,1,0,0,-1,0,135312,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +13349,2,4,2,21,58,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,129,0,0,0,0 +13350,12,0,0,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13351,12,0,0,0,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13352,12,0,0,0,0,0,0,0,-1,0,134462,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13353,4,0,3,23,58,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13354,12,0,0,0,0,0,0,0,-1,0,136152,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13355,12,0,0,0,0,0,0,0,-1,0,136152,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13356,12,0,0,0,0,0,0,0,-1,0,136134,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13357,12,0,0,0,0,0,0,0,-1,0,136188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13358,4,2,8,3,58,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13359,4,3,5,1,58,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13360,2,15,1,13,58,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13361,2,7,1,13,58,1,0,0,-1,0,135302,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +13362,15,0,0,0,0,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13363,15,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13364,15,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13365,15,0,0,0,0,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13366,15,0,0,0,0,0,0,0,-1,0,132998,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13367,0,0,0,0,0,0,0,0,-1,0,134140,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13368,2,15,1,13,57,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,74,0,0,0,0 +13369,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13370,12,0,0,0,0,0,0,0,-1,0,135143,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13371,4,0,0,23,0,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13372,2,10,2,17,55,2,0,0,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,241,0,0,0,0 +13373,4,0,5,11,55,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13374,4,1,7,3,55,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13375,4,6,1,14,55,4,0,0,-1,0,134965,9,0,100,0,0,0,0,0,0,2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13376,4,1,7,16,54,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13377,6,3,2,24,56,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,21,0,0,0,0 +13378,4,2,8,5,53,0,0,0,-1,0,132679,7,0,100,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13379,4,0,0,12,53,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13380,2,3,1,26,56,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +13381,4,4,6,8,56,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13382,4,0,0,12,56,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13383,4,3,5,7,53,0,0,0,-1,0,134594,10,0,90,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13384,4,4,6,6,53,0,0,0,-1,0,132519,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13385,4,0,3,23,56,7,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13386,4,1,7,16,56,0,975,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13387,4,3,5,6,56,0,933,0,-1,0,132510,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13388,4,1,7,5,56,0,0,0,-1,0,132725,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13389,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13390,4,1,7,1,56,0,0,0,-1,0,133685,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13391,4,1,7,8,56,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13392,4,0,5,11,56,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13393,2,5,2,17,56,1,0,0,-1,0,133476,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,238,0,0,0,0 +13394,4,4,6,5,54,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,617,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +13395,4,2,8,10,54,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13396,2,19,2,26,52,0,0,0,-1,0,133729,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +13397,4,1,7,16,56,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13398,4,2,8,8,57,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,120,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13399,2,13,1,22,54,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +13400,4,4,6,9,54,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13401,2,4,2,13,56,3,0,0,-1,0,133729,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +13402,4,3,5,8,54,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13403,4,1,7,6,54,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13404,4,2,8,1,52,0,0,0,-1,0,133693,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13405,4,4,6,3,52,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,448,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13406,4,0,2,23,1,0,0,0,-1,0,133974,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13407,4,0,2,23,1,0,0,0,-1,0,133974,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13408,2,0,1,21,52,3,0,0,-1,0,135575,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +13409,4,1,7,9,52,0,1059,0,-1,0,132612,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13422,5,0,0,0,0,0,0,0,-1,0,133897,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13423,5,0,0,0,0,0,0,0,-1,0,134848,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13442,0,0,0,0,46,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13443,0,0,3,0,41,0,0,0,-1,0,134854,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13444,0,0,3,0,49,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13445,0,0,3,0,43,0,0,0,-1,0,134846,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13446,0,0,0,0,45,0,0,0,-1,0,134834,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13447,0,0,3,0,44,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13448,12,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13449,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,36,0,0,0,0 +13450,12,0,0,0,0,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13451,12,0,0,0,0,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13452,0,0,3,0,46,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13453,0,0,3,0,45,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13454,0,0,0,0,47,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13455,0,0,3,0,46,0,0,0,-1,0,134849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13456,0,0,3,0,48,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13457,0,0,3,0,48,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13458,0,0,3,0,48,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13459,0,0,3,0,48,0,0,0,-1,0,134803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13460,0,0,3,0,48,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13461,0,0,3,0,48,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13462,0,0,3,0,47,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13463,7,0,7,0,0,0,0,0,-1,0,134204,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13464,7,0,7,0,0,0,0,0,-1,0,134221,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13465,7,0,7,0,0,0,0,0,-1,0,134215,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13466,7,0,7,0,0,0,0,0,-1,0,134219,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13467,7,0,7,0,0,0,0,0,-1,0,134212,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13468,7,0,7,0,0,0,0,0,-1,0,134202,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13469,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13470,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13471,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13472,4,1,7,16,55,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13473,4,0,3,2,0,0,0,0,-1,0,133444,14,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0 +13474,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +13475,4,0,5,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13476,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13477,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13478,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13479,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13480,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13481,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13482,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13483,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13484,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13485,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13486,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13487,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13488,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13489,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13490,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13491,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13492,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13493,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13494,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13495,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13496,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13497,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13498,4,4,6,7,55,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13499,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13500,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13501,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13502,4,4,6,6,58,0,0,0,-1,0,132512,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13503,7,0,2,12,0,0,0,0,-1,0,134334,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13504,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13505,2,8,1,17,58,1,0,0,-1,0,135315,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,257,0,0,0,0 +13506,0,0,3,0,50,0,0,0,-1,0,134806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13507,12,0,0,0,1,0,0,0,-1,0,134328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13508,0,0,0,0,55,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13509,0,0,0,0,55,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13510,0,0,3,0,50,0,0,0,-1,0,134842,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13511,0,0,3,0,50,0,0,0,-1,0,134877,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13512,0,0,3,0,50,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13513,0,0,3,0,50,0,0,0,-1,0,134828,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13514,0,0,0,0,55,0,0,0,-1,0,136183,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13515,4,0,0,12,55,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13516,4,0,0,16,0,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13517,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13518,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13519,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13520,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13521,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13522,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13523,12,0,0,0,0,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13524,4,0,3,23,57,7,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13525,4,1,7,10,57,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,50,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +13526,4,2,8,6,57,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,89,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13527,4,4,6,8,57,0,0,0,-1,0,132590,11,0,55,0,0,0,0,0,0,404,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13528,4,3,5,9,57,0,0,0,-1,0,132615,10,0,35,0,0,0,0,0,0,145,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +13529,4,6,1,14,56,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2089,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +13530,4,1,7,8,56,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,54,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +13531,4,2,8,7,56,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,136,0,0,18,0,18,0,0,0,0,0,0,0,0,0,0,0 +13532,4,3,5,10,56,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,204,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0 +13533,4,4,6,3,56,0,0,0,-1,0,135049,11,0,70,0,0,0,0,0,0,434,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +13534,2,19,2,26,55,0,0,0,-1,0,135654,21,0,65,0,4,0,0,0,0,0,0,0,0,10,0,0,79,0,0,0,0,148,0,0,0,0 +13535,4,1,7,20,55,0,0,0,-1,0,132688,7,0,70,0,0,0,0,0,0,77,0,0,0,20,0,13,0,0,0,0,0,0,0,0,0,0 +13536,12,0,0,0,0,0,0,0,-1,0,134229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13537,4,2,8,9,55,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,67,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +13538,4,3,5,3,55,0,0,0,-1,0,135044,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0 +13539,4,4,6,10,55,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,356,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0 +13542,12,0,1,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13543,12,0,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13544,4,0,0,12,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13545,15,0,0,0,0,0,0,0,-1,0,133900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13546,0,0,0,0,25,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13562,0,0,0,0,0,0,0,0,-1,0,133639,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13582,15,0,0,0,0,0,0,0,-1,0,136217,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13583,15,0,0,0,0,0,0,0,-1,0,132494,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13584,15,0,0,0,0,0,0,0,-1,0,132787,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13585,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13586,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13602,4,0,1,23,43,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13603,4,0,1,23,55,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13604,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13605,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13606,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13607,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +13608,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0 +13609,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13610,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13611,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13612,2,14,1,13,1,7,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +13622,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13623,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13624,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13625,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13626,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13627,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13628,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13629,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13630,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13631,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13632,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13642,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13643,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13644,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13645,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13646,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13647,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13648,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13649,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13650,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13651,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13652,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13653,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13654,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13655,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13656,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13657,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13658,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13659,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13660,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13661,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13662,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13663,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13664,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13665,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13666,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13667,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13668,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13669,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13670,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13671,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13672,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13673,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13674,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13675,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13676,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13677,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13678,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13679,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13680,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13681,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13682,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13683,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13684,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13685,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13686,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13687,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13688,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13689,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13690,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13691,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13692,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13693,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13694,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13695,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13696,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13697,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13698,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13699,4,0,1,23,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13700,4,0,1,23,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13701,4,0,1,23,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13702,12,0,0,0,0,0,0,0,-1,0,134194,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13703,0,0,0,0,0,0,0,0,-1,0,133726,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13704,13,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13705,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13706,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13707,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13708,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13709,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13710,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13711,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13712,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13713,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13714,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13715,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13716,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13717,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13718,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13719,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13720,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13721,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13722,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13723,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13724,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13725,12,0,0,0,0,0,0,0,-1,0,133648,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13726,4,1,7,10,1,0,0,0,-1,0,132950,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13727,4,1,7,10,100,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13728,4,1,7,10,100,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13729,4,2,8,10,100,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13730,4,3,5,10,100,0,0,0,-1,0,132944,10,0,35,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13731,4,4,6,10,100,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13732,4,2,8,10,1,0,0,0,-1,0,132957,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13733,4,3,5,10,1,0,0,0,-1,0,132944,10,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13734,4,4,6,10,1,0,0,0,-1,0,132963,11,0,18,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13735,4,2,8,10,100,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13736,4,3,5,10,100,0,0,0,-1,0,132944,10,0,35,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13737,4,4,6,10,100,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13738,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13739,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13740,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13741,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13742,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13743,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13744,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13745,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13746,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13747,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13748,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13749,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13750,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13751,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13752,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13753,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13754,0,0,0,0,35,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13755,0,0,0,0,35,0,0,0,-1,0,133899,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13756,0,0,0,0,35,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13757,5,0,0,0,0,0,0,0,-1,0,133898,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13758,0,0,0,0,35,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13759,0,0,0,0,35,0,0,0,-1,0,133909,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13760,0,0,0,0,35,0,0,0,-1,0,133905,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13761,0,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13762,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13763,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13764,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13765,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13766,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13767,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13768,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13769,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13770,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13771,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13772,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13773,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13774,4,1,7,7,100,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13775,4,1,7,7,100,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13776,4,1,7,7,100,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13777,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13778,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13779,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13780,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13781,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13782,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13783,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13784,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13785,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13786,4,1,7,1,100,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13787,4,1,7,1,1,0,0,0,-1,0,133116,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13788,4,1,7,1,100,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13789,4,2,8,1,100,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13790,4,2,8,1,1,0,0,0,-1,0,133117,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13791,4,2,8,1,100,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13792,4,3,5,1,100,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13793,4,3,5,1,1,0,0,0,-1,0,133137,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13794,4,3,5,1,100,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13795,4,4,6,1,100,0,0,0,-1,0,133126,11,0,70,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13796,4,4,6,1,1,0,0,0,-1,0,133126,11,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13797,4,4,6,1,100,0,0,0,-1,0,133126,11,0,70,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13798,4,1,7,8,100,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13799,4,1,7,8,100,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13800,4,1,7,8,100,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13801,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13802,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13803,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13804,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13805,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13806,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13807,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13808,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13809,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13810,0,0,0,0,45,0,0,0,-1,0,133997,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13811,4,0,0,2,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13812,4,0,0,11,0,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13813,0,0,0,0,45,0,0,0,-1,0,132803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13814,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13815,12,0,0,0,0,0,0,0,-1,0,134418,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13816,2,7,1,21,47,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +13817,2,8,1,17,53,1,0,0,-1,0,135349,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +13818,2,0,1,21,51,3,0,0,-1,0,135421,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +13819,2,1,1,17,54,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +13820,2,4,2,21,49,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +13821,2,5,2,17,52,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,115,0,0,0,0 +13822,2,15,1,13,48,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +13823,2,10,2,17,46,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +13824,2,2,2,15,45,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +13825,2,3,1,26,52,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +13842,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13843,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13844,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13845,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13846,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13847,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13848,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13849,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13850,12,0,0,0,0,0,0,0,-1,0,132384,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13851,0,0,0,0,25,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13852,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13853,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13854,4,0,2,23,1,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13855,4,0,2,23,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13856,4,1,7,6,46,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13857,4,1,7,5,47,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13858,4,1,7,20,47,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13859,4,0,2,23,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13860,4,1,7,16,48,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13861,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +13862,4,0,2,23,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13863,4,1,7,10,50,0,0,0,-1,0,132959,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13864,4,1,7,8,51,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13865,4,1,7,7,52,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13866,4,1,7,1,54,0,0,0,-1,0,133694,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13867,4,1,7,3,56,0,0,0,-1,0,135052,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13868,4,1,7,20,46,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13869,4,1,7,5,46,0,0,0,-1,0,132649,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13870,4,1,7,10,47,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13871,4,1,7,7,51,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13872,12,0,0,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13873,13,0,0,0,0,0,0,0,-1,0,134248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13874,15,0,2,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13875,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13876,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13877,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13878,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13879,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13880,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13881,0,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13882,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13883,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13884,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13885,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13886,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13887,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13888,0,0,0,0,45,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13889,0,0,0,0,45,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13890,5,0,0,0,0,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13891,0,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13892,12,0,0,0,15,0,0,0,-1,0,132488,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13893,0,0,0,0,45,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13894,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13895,4,0,7,20,0,0,0,0,-1,0,132670,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13896,4,0,7,20,0,0,0,0,-1,0,132664,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13897,4,0,7,20,0,0,0,0,-1,0,132691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13898,4,0,7,20,0,0,0,0,-1,0,132671,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13899,4,0,7,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13900,4,0,7,20,0,0,0,0,-1,0,132663,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13901,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13902,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13903,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13904,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13905,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13906,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13907,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13908,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13909,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13910,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13911,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13912,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13913,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13914,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13915,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13916,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13917,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13918,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13919,2,6,1,13,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13920,12,0,0,0,55,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13922,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13923,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13924,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13925,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13926,7,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13927,0,0,0,0,35,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13928,0,0,0,0,35,0,0,0,-1,0,133899,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13929,0,0,0,0,35,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13930,0,0,0,0,35,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13931,0,0,0,0,35,0,0,0,-1,0,132804,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13932,0,0,0,0,35,0,0,0,-1,0,133905,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13933,0,0,0,0,45,0,0,0,-1,0,132804,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13934,0,0,0,0,45,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13935,0,0,0,0,45,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13936,4,1,7,1,57,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13937,2,10,2,17,57,2,0,0,-1,0,133445,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +13938,2,19,2,26,57,0,0,0,-1,0,133732,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +13939,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13940,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13941,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13942,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13943,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13944,4,2,8,5,57,0,0,0,-1,0,132639,7,0,100,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13945,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13946,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13947,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13948,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13949,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13950,4,3,5,6,57,0,0,0,-1,0,132498,10,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13951,4,4,6,9,57,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13952,2,0,1,21,57,3,0,0,-1,0,132394,8,0,90,0,0,4,0,0,0,0,0,0,0,0,0,0,57,1,0,0,0,106,5,0,0,0 +13953,2,7,1,21,57,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +13954,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13955,4,4,6,3,56,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13956,4,1,7,6,56,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13957,4,2,8,10,56,0,0,0,-1,0,132943,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13958,4,1,7,9,0,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13959,4,4,6,6,0,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13960,4,0,5,2,56,0,0,0,-1,0,134335,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13961,4,2,8,3,0,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +13962,4,2,8,6,0,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13963,4,3,5,10,0,0,0,0,-1,0,132949,10,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13964,2,15,1,13,57,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +13965,4,0,0,12,0,0,0,0,-1,0,133604,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13966,4,0,0,12,0,0,0,0,-1,0,133442,8,0,0,0,0,0,0,0,0,180,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +13967,4,3,5,8,56,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13968,4,0,0,12,0,0,0,0,-1,0,133441,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13969,4,3,5,9,56,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13982,2,8,1,17,0,1,0,0,-1,0,135349,9,0,100,0,0,4,0,0,0,0,0,0,0,0,0,0,142,1,0,0,0,214,22,0,0,0 +13983,2,1,1,17,57,1,0,0,-1,0,135579,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,217,0,0,0,0 +13984,2,15,1,13,0,3,0,0,-1,0,135657,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13985,4,1,7,0,70,0,0,0,-1,0,132768,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13986,4,1,7,1,0,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,73,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +14002,4,6,1,14,0,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2153,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0 +14022,4,0,0,12,0,0,0,0,-1,0,133706,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14023,4,0,0,12,0,0,0,0,-1,0,133706,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14024,2,15,1,13,56,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +14025,4,1,7,6,12,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14042,4,1,7,5,47,0,0,0,-1,0,132648,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14043,4,1,7,10,49,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14044,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14045,4,1,7,7,51,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14046,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14047,7,0,7,0,0,0,0,0,-1,0,132903,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14048,7,0,8,0,0,0,0,0,-1,0,132904,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14062,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14082,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14083,2,10,2,17,1,2,0,0,-1,0,135151,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +14084,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14085,2,7,1,13,1,2,0,0,-1,0,135128,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14086,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14087,4,1,7,9,3,0,0,0,-1,0,132611,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14088,4,1,7,16,3,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14089,4,1,7,10,5,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14090,4,1,7,7,6,0,538,0,-1,0,134582,7,0,35,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14091,4,1,7,20,6,0,454,0,-1,0,132663,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14092,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14093,4,1,7,6,4,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14094,4,1,7,5,6,0,454,0,-1,0,135009,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14095,4,1,7,9,6,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14096,4,1,7,5,11,0,456,0,-1,0,135009,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14097,4,1,7,7,9,0,539,0,-1,0,134582,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14098,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14099,4,1,7,6,7,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14100,4,1,7,20,49,0,0,0,-1,0,132667,7,0,70,0,0,0,0,0,0,70,0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0 +14101,4,1,7,10,49,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,44,0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0 +14102,4,1,7,10,8,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14103,4,1,7,16,50,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,36,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0 +14104,4,1,7,7,53,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,66,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0 +14105,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14106,4,1,7,20,56,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14107,4,1,7,7,50,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14108,4,1,7,8,52,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14109,4,1,7,20,11,0,456,0,-1,0,132662,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14110,4,1,7,8,8,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14111,4,1,7,1,53,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14112,4,1,7,3,57,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14113,4,1,7,6,10,0,875,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14114,4,1,7,8,11,0,792,0,-1,0,132592,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14115,4,1,7,9,9,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14116,4,1,7,16,9,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14117,4,1,7,10,11,0,708,0,-1,0,132952,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14118,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14119,4,1,7,7,12,0,540,0,-1,0,134706,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14120,4,1,7,20,15,0,457,0,-1,0,132657,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14121,4,1,7,5,15,0,457,0,-1,0,132716,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14122,4,1,7,9,13,0,1044,0,-1,0,132609,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14123,4,1,7,16,12,0,960,0,-1,0,133766,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14124,4,1,7,10,15,0,709,0,-1,0,132952,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14125,4,1,7,7,16,0,541,0,-1,0,134589,7,0,45,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14126,4,1,7,3,18,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14127,4,1,7,20,19,0,458,0,-1,0,132659,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14128,4,1,7,20,55,0,0,0,-1,0,132687,7,0,70,0,0,0,0,0,0,77,0,18,0,0,0,17,0,0,0,0,0,0,0,0,0,0 +14129,4,1,7,8,15,0,793,0,-1,0,132537,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14130,4,1,7,1,56,0,0,0,-1,0,133165,7,0,45,0,0,0,0,0,0,64,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0 +14131,4,1,7,6,14,0,877,0,-1,0,132494,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14132,4,1,7,7,50,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,62,0,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0 +14133,4,1,7,5,19,0,458,0,-1,0,135009,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14134,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14135,12,0,0,0,0,0,0,0,-1,0,134871,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14136,4,1,7,20,52,0,0,0,-1,0,132690,7,0,80,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14137,4,1,7,7,53,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14138,4,1,7,5,55,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14139,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14140,4,1,7,1,57,0,0,0,-1,0,133693,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14141,4,1,7,5,50,0,0,0,-1,0,135012,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14142,4,1,7,10,49,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14143,4,1,7,6,48,0,0,0,-1,0,132505,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14144,4,1,7,7,53,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14145,2,7,1,21,13,3,0,0,-1,0,135648,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +14146,4,1,7,10,57,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14147,4,3,5,9,13,0,0,0,-1,0,132606,10,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14148,4,1,7,9,13,0,0,0,-1,0,132612,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14149,4,1,7,16,13,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14150,4,1,7,20,13,0,0,0,-1,0,132665,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14151,2,15,1,13,13,3,0,0,-1,0,135661,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +14152,4,1,7,20,57,0,0,0,-1,0,132679,7,0,100,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14153,4,1,7,20,57,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14154,4,1,7,20,57,0,0,0,-1,0,132672,7,0,100,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14155,1,0,8,18,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14156,1,0,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14157,4,1,7,3,19,0,0,0,-1,0,135037,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14158,4,1,7,5,21,0,459,0,-1,0,135011,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14159,4,1,7,8,17,0,794,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14160,4,1,7,9,14,0,1045,0,-1,0,132610,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14161,4,1,7,16,13,0,960,0,-1,0,133762,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14162,4,1,7,10,18,0,710,0,-1,0,132939,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14163,4,1,7,20,21,0,459,0,-1,0,132661,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14164,4,1,7,6,16,0,877,0,-1,0,132513,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14165,4,1,7,7,20,0,543,0,-1,0,134582,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14166,4,1,7,9,14,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14167,4,1,7,16,14,0,961,0,-1,0,133770,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14168,4,1,7,10,15,0,709,0,-1,0,132950,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14169,4,1,7,3,16,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14170,4,1,7,3,17,0,0,0,-1,0,135044,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14171,4,1,7,7,17,0,542,0,-1,0,134586,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14172,4,1,7,20,18,0,458,0,-1,0,132659,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14173,4,1,7,6,15,0,877,0,-1,0,132511,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14174,4,1,7,8,14,0,793,0,-1,0,132539,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14175,4,1,7,5,18,0,458,0,-1,0,135012,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14176,4,1,7,8,21,0,795,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14177,4,1,7,9,21,0,1047,0,-1,0,132605,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14178,4,1,7,1,26,0,629,0,-1,0,133134,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14179,4,1,7,16,19,0,962,0,-1,0,133767,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14180,4,1,7,5,25,0,460,0,-1,0,135010,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14181,4,1,7,10,23,0,712,0,-1,0,132939,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14182,4,1,7,3,23,0,1132,0,-1,0,135040,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14183,4,1,7,7,25,0,544,0,-1,0,134581,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14184,4,1,7,20,25,0,460,0,-1,0,132663,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14185,4,1,7,6,22,0,879,0,-1,0,132510,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14186,4,1,7,3,24,0,1132,0,-1,0,135036,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14187,4,1,7,9,23,0,1048,0,-1,0,132606,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14188,4,1,7,16,22,0,963,0,-1,0,133768,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14189,4,1,7,1,27,0,629,0,-1,0,133131,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14190,4,1,7,5,26,0,461,0,-1,0,135014,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14191,4,1,7,10,25,0,712,0,-1,0,132954,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14192,4,1,7,20,26,0,461,0,-1,0,132660,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14193,4,1,7,7,26,0,545,0,-1,0,134593,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14194,4,1,7,6,23,0,880,0,-1,0,133693,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14195,4,1,7,8,24,0,796,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14196,4,1,7,8,27,0,797,0,-1,0,132538,7,0,35,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14197,4,1,7,9,25,0,1048,0,-1,0,132612,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14198,4,1,7,16,26,0,965,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14199,4,1,7,10,28,0,713,0,-1,0,132940,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14200,4,1,7,1,30,0,630,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14201,4,1,7,3,29,0,1134,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14202,4,1,7,5,31,0,462,0,-1,0,135011,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14203,4,1,7,7,30,0,546,0,-1,0,134592,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14204,4,1,7,20,31,0,462,0,-1,0,132661,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14205,4,1,7,6,27,0,881,0,-1,0,132512,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14206,4,1,7,9,27,0,1049,0,-1,0,132605,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14207,4,1,7,7,31,0,546,0,-1,0,134587,7,0,55,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14208,4,1,7,1,31,0,630,0,-1,0,132514,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14209,4,1,7,6,28,0,881,0,-1,0,132510,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14210,4,1,7,16,27,0,965,0,-1,0,133767,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14211,4,1,7,10,29,0,714,0,-1,0,132957,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14212,4,1,7,3,30,0,1134,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14213,4,1,7,20,32,0,463,0,-1,0,132647,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14214,4,1,7,8,29,0,798,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14215,4,1,7,5,32,0,463,0,-1,0,135010,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14216,4,1,7,5,36,0,464,0,-1,0,132646,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14217,4,1,7,6,31,0,882,0,-1,0,132491,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14218,4,1,7,8,32,0,799,0,-1,0,132541,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14219,4,1,7,16,29,0,966,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14220,4,1,7,1,35,0,632,0,-1,0,132512,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14221,4,1,7,9,30,0,1050,0,-1,0,132601,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14222,4,1,7,10,32,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14223,4,1,7,3,33,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14224,4,1,7,7,34,0,547,0,-1,0,134589,7,0,55,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14225,4,1,7,20,36,0,464,0,-1,0,132681,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14226,4,1,7,9,32,0,1051,0,-1,0,132608,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14227,7,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14228,4,1,7,1,36,0,632,0,-1,0,132521,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14229,4,1,7,16,31,0,966,0,-1,0,133760,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14230,4,1,7,5,37,0,464,0,-1,0,135008,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14231,4,1,7,10,33,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14232,4,1,7,3,34,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14233,4,1,7,7,35,0,548,0,-1,0,134592,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14234,4,1,7,20,37,0,464,0,-1,0,132666,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14235,4,1,7,6,32,0,883,0,-1,0,132500,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14236,4,1,7,8,33,0,799,0,-1,0,132542,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14237,4,1,7,5,41,0,466,0,-1,0,135020,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14238,4,1,7,8,36,0,800,0,-1,0,132541,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14239,4,1,7,16,34,0,967,0,-1,0,133756,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14240,4,1,7,9,35,0,1052,0,-1,0,132612,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14241,4,1,7,10,36,0,716,0,-1,0,132966,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14242,4,1,7,7,38,0,549,0,-1,0,134588,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14243,4,1,7,3,38,0,1137,0,-1,0,135033,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14244,4,1,7,20,41,0,466,0,-1,0,132677,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14245,4,1,7,6,36,0,884,0,-1,0,132499,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14246,4,1,7,1,39,0,633,0,-1,0,133090,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14247,4,1,7,3,39,0,1137,0,-1,0,135043,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14248,4,1,7,9,36,0,1052,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14249,4,1,7,5,42,0,466,0,-1,0,135017,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14250,4,1,7,8,37,0,800,0,-1,0,132541,7,0,35,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14251,4,1,7,16,35,0,968,0,-1,0,133754,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14252,4,1,7,1,40,0,633,0,-1,0,132511,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14253,4,1,7,10,38,0,717,0,-1,0,132954,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14254,4,1,7,20,42,0,466,0,-1,0,132678,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14255,4,1,7,6,36,0,884,0,-1,0,132497,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14256,7,0,7,0,0,0,0,0,-1,0,132888,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14257,4,1,7,7,40,0,549,0,-1,0,134593,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14258,4,1,7,6,40,0,885,0,-1,0,132496,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14259,4,1,7,8,41,0,802,0,-1,0,132542,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14260,4,1,7,9,39,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14261,4,1,7,16,38,0,969,0,-1,0,133760,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14262,4,1,7,10,40,0,717,0,-1,0,132953,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14263,4,1,7,1,43,0,634,0,-1,0,133694,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14264,4,1,7,7,43,0,550,0,-1,0,134592,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14265,4,1,7,20,46,0,467,0,-1,0,132643,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14266,4,1,7,3,42,0,1138,0,-1,0,135033,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14267,4,1,7,5,46,0,467,0,-1,0,135008,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14268,4,1,7,9,41,0,1054,0,-1,0,132608,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14269,4,1,7,8,42,0,802,0,-1,0,132541,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14270,4,1,7,16,40,0,969,0,-1,0,132655,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14271,4,1,7,1,44,0,635,0,-1,0,132520,7,0,45,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14272,4,1,7,10,42,0,718,0,-1,0,132949,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14273,4,1,7,3,43,0,1138,0,-1,0,135048,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14274,4,1,7,7,46,0,551,0,-1,0,134591,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14275,4,1,7,20,47,0,468,0,-1,0,132670,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14276,4,1,7,6,42,0,886,0,-1,0,132499,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14277,4,1,7,5,47,0,468,0,-1,0,132649,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14278,4,1,7,3,45,0,1139,0,-1,0,135056,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14279,4,1,7,9,44,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14280,4,1,7,16,43,0,970,0,-1,0,133772,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14281,4,1,7,1,48,0,636,0,-1,0,132505,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14282,4,1,7,10,45,0,719,0,-1,0,132957,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14283,4,1,7,7,49,0,552,0,-1,0,134592,7,0,55,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14284,4,1,7,20,51,0,469,0,-1,0,132687,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14285,4,1,7,8,45,0,803,0,-1,0,132541,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14286,4,1,7,6,45,0,887,0,-1,0,132510,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14287,4,1,7,5,51,0,469,0,-1,0,132684,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14288,4,1,7,5,52,0,469,0,-1,0,135021,7,0,70,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14289,4,1,7,6,46,0,887,0,-1,0,132499,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14290,4,1,7,8,46,0,803,0,-1,0,132539,7,0,35,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14291,4,1,7,9,45,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14292,4,1,7,16,44,0,971,0,-1,0,132656,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14293,4,1,7,1,50,0,637,0,-1,0,132767,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14294,4,1,7,10,46,0,719,0,-1,0,132949,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14295,4,1,7,7,50,0,553,0,-1,0,134594,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14296,4,1,7,3,47,0,1140,0,-1,0,135049,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14297,4,1,7,20,52,0,469,0,-1,0,132676,7,0,70,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14298,4,1,7,3,51,0,1141,0,-1,0,135045,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14299,4,1,7,8,49,0,804,0,-1,0,132541,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14300,4,1,7,16,47,0,972,0,-1,0,133754,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14301,4,1,7,9,48,0,1056,0,-1,0,132616,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14302,4,1,7,10,51,0,721,0,-1,0,132943,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14303,4,1,7,20,55,0,470,0,-1,0,132679,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14304,4,1,7,6,50,0,889,0,-1,0,132519,7,0,25,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14305,4,1,7,7,52,0,553,0,-1,0,134593,7,0,55,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14306,4,1,7,5,55,0,470,0,-1,0,132658,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14307,4,1,7,1,54,0,638,0,-1,0,132768,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14308,4,1,7,5,56,0,471,0,-1,0,132633,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14309,4,1,7,6,51,0,889,0,-1,0,132518,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14310,4,1,7,8,53,0,806,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14311,4,1,7,9,50,0,1057,0,-1,0,132616,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14312,4,1,7,1,56,0,639,0,-1,0,132767,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14313,4,1,7,16,49,0,972,0,-1,0,133757,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14314,4,1,7,10,53,0,722,0,-1,0,132954,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14315,4,1,7,7,54,0,554,0,-1,0,134593,7,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14316,4,1,7,3,54,0,1142,0,-1,0,135056,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14317,4,1,7,20,56,0,471,0,-1,0,132669,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14318,4,1,7,5,58,0,471,0,-1,0,132659,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14319,4,1,7,8,54,0,806,0,-1,0,132542,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14320,4,1,7,9,52,0,1057,0,-1,0,132608,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14321,4,1,7,16,50,0,973,0,-1,0,133760,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14322,4,1,7,1,57,0,639,0,-1,0,133069,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14323,4,1,7,10,55,0,722,0,-1,0,132937,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14324,4,1,7,7,55,0,554,0,-1,0,134592,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14325,4,1,7,3,56,0,1143,0,-1,0,135054,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14326,4,1,7,20,58,0,471,0,-1,0,132666,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14327,4,1,7,6,53,0,890,0,-1,0,132502,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14328,4,1,7,5,60,0,472,0,-1,0,135021,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14329,4,1,7,8,57,0,807,0,-1,0,132541,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14330,4,1,7,9,56,0,1059,0,-1,0,132615,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14331,4,1,7,16,53,0,974,0,-1,0,133756,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14332,4,1,7,1,59,0,640,0,-1,0,133074,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14333,4,1,7,10,58,0,723,0,-1,0,132940,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14334,4,1,7,7,58,0,555,0,-1,0,134593,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14335,4,1,7,3,58,0,1143,0,-1,0,135045,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14336,4,1,7,20,60,0,472,0,-1,0,132670,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14337,4,1,7,6,56,0,891,0,-1,0,132499,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14338,12,0,0,0,0,0,0,0,-1,0,134865,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14339,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14340,4,1,7,20,57,0,0,0,-1,0,132687,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14341,7,0,8,0,0,0,0,0,-1,0,136120,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14342,7,0,7,0,0,0,0,0,-1,0,132895,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14343,7,0,2,0,0,0,0,0,-1,0,132874,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14344,7,0,2,0,0,0,0,0,-1,0,132873,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14362,12,0,0,0,0,0,0,0,-1,0,133679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14363,4,1,7,7,11,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14364,4,1,7,8,13,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14365,4,1,7,16,10,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14366,4,1,7,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14367,4,1,7,10,14,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14368,4,1,7,3,17,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14369,4,1,7,5,18,0,0,0,-1,0,135017,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14370,4,1,7,7,14,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14371,4,1,7,20,18,0,0,0,-1,0,132655,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14372,4,1,7,5,23,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14373,4,1,7,6,20,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14374,4,1,7,8,19,0,0,0,-1,0,132540,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14375,4,1,7,9,20,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14376,4,1,7,16,17,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14377,4,1,7,10,21,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14378,4,1,7,3,22,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14379,4,1,7,7,24,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14380,4,1,7,20,23,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14381,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14382,4,1,7,5,0,0,0,0,-1,0,135017,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14383,4,1,7,9,0,0,0,0,-1,0,132608,7,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14384,4,1,7,8,0,0,0,0,-1,0,132539,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14385,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14386,4,1,7,1,0,0,0,0,-1,0,133090,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14387,4,1,7,10,0,0,0,0,-1,0,132940,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14388,4,1,7,7,0,0,0,0,-1,0,134593,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14389,4,1,7,3,0,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14390,4,1,7,6,0,0,0,0,-1,0,132493,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14391,2,7,1,13,0,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14392,2,10,2,17,0,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14393,4,6,1,14,0,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14394,2,2,2,15,0,0,0,0,-1,0,135490,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +14395,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14396,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14397,4,1,7,3,27,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14398,4,1,7,5,28,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14399,4,1,7,8,26,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14400,4,1,7,16,24,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14401,4,1,7,1,28,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14402,4,1,7,9,24,0,0,0,-1,0,132600,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14403,4,1,7,10,26,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14404,4,1,7,7,28,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14405,4,1,7,20,28,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14406,4,1,7,6,25,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14407,4,1,7,5,34,0,0,0,-1,0,135012,7,0,70,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14408,4,1,7,8,30,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14409,4,1,7,16,28,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14410,4,1,7,1,33,0,0,0,-1,0,132515,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14411,4,1,7,10,30,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14412,4,1,7,3,31,0,0,0,-1,0,135034,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14413,4,1,7,20,34,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14414,4,1,7,6,29,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14415,4,1,7,7,32,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14416,4,1,7,9,29,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14417,4,1,7,5,39,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14418,4,1,7,8,34,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14419,4,1,7,9,33,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14420,4,1,7,16,33,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14421,4,1,7,1,37,0,0,0,-1,0,132500,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14422,4,1,7,10,35,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14423,4,1,7,3,35,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14424,4,1,7,7,37,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14425,4,1,7,20,39,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14426,4,1,7,6,34,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14427,4,1,7,5,44,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14428,4,1,7,8,39,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14429,4,1,7,9,38,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14430,4,1,7,16,37,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14431,4,1,7,10,39,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14432,4,1,7,3,40,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14433,4,1,7,7,41,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14434,4,1,7,20,44,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14435,4,1,7,6,38,0,0,0,-1,0,132512,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14436,4,1,7,1,41,0,0,0,-1,0,133111,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14437,4,1,7,5,49,0,0,0,-1,0,135010,7,0,70,0,0,0,0,0,0,70,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14438,4,1,7,8,43,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14439,4,1,7,9,42,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,27,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +14440,4,1,7,16,41,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,30,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14441,4,1,7,1,45,0,0,0,-1,0,133134,7,0,45,0,0,0,0,0,0,53,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14442,4,1,7,10,44,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,40,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +14443,4,1,7,3,44,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,48,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14444,4,1,7,7,47,0,0,0,-1,0,134594,7,0,55,0,0,0,0,0,0,59,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +14445,4,1,7,20,49,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,70,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14446,4,1,7,6,43,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,35,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +14447,4,1,7,8,48,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14448,4,1,7,9,47,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14449,4,1,7,1,52,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14450,4,1,7,16,46,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14451,4,1,7,10,48,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14452,4,1,7,3,49,0,0,0,-1,0,135055,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14453,4,1,7,20,54,0,0,0,-1,0,132677,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14454,4,1,7,6,48,0,0,0,-1,0,132519,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14455,4,1,7,5,54,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14456,4,1,7,5,59,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14457,4,1,7,9,53,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14458,4,1,7,8,55,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14459,4,1,7,16,52,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14460,4,1,7,1,58,0,0,0,-1,0,133123,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14461,4,1,7,10,57,0,0,0,-1,0,132944,7,0,25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14462,4,1,7,7,57,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14463,4,1,7,3,57,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14464,4,1,7,20,59,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14465,4,1,7,6,55,0,0,0,-1,0,132506,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14466,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14467,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14468,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14469,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14470,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14471,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14472,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14473,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14474,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14475,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14476,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14477,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14478,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14479,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14480,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14481,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14482,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14483,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14484,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14485,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14486,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14487,2,4,2,13,57,3,0,0,-1,0,133050,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +14488,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14489,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14490,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14491,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14492,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14493,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14494,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14495,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14496,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14497,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14498,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14499,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14500,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14501,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14502,4,2,8,6,57,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,98,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +14503,4,2,8,3,57,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14504,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14505,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14506,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14507,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14508,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14509,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14510,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14511,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14512,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14513,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14514,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14522,4,3,5,7,57,0,0,0,-1,0,134584,10,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14523,12,0,1,0,0,0,0,0,-1,0,136248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14524,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14525,4,4,6,10,57,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14526,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14527,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14528,4,6,1,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +14529,0,0,7,0,0,0,0,0,-1,0,133681,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14530,0,0,7,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14531,2,5,2,17,54,1,0,0,-1,0,133050,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +14532,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14533,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14534,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14535,2,6,1,17,1,2,0,0,-1,0,135130,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14536,4,3,5,5,56,0,0,0,-1,0,132636,10,0,120,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14537,4,4,6,8,57,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,445,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +14538,4,1,7,3,57,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14539,4,2,8,1,57,0,0,0,-1,0,133116,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14540,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14541,2,8,1,17,56,1,0,0,-1,0,135273,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +14542,0,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14543,4,1,7,10,57,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,55,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0 +14544,12,0,0,0,0,0,0,0,-1,0,134417,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14545,4,2,8,7,57,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14546,12,0,0,0,0,0,0,0,-1,0,133721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14547,12,0,1,0,0,0,0,0,-1,0,132937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14548,4,3,5,3,57,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14549,4,4,6,8,40,0,0,0,-1,0,132586,11,0,75,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14550,4,2,8,9,44,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14551,4,3,5,10,44,0,0,0,-1,0,132964,10,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14552,4,4,6,3,50,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14553,4,2,8,6,56,0,0,0,-1,0,132498,7,0,40,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14554,4,4,6,7,57,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14555,2,15,1,13,58,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,10,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +14556,4,0,0,2,58,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14557,4,0,4,12,58,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14558,4,0,0,2,59,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14559,4,2,8,6,13,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14560,4,2,8,8,14,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14561,4,2,8,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14562,4,2,8,5,18,0,0,0,-1,0,132724,7,0,75,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14563,4,1,7,16,12,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14564,4,2,8,10,14,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14565,4,2,8,7,16,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14566,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14567,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14568,4,2,8,8,18,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14569,4,2,8,9,17,0,0,0,-1,0,132607,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14570,4,2,8,5,23,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14571,4,1,7,16,16,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14572,4,2,8,10,19,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14573,4,2,8,3,22,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14574,4,2,8,7,21,0,0,0,-1,0,134587,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14575,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14576,2,7,1,21,54,3,0,0,-1,0,135313,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +14577,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +14578,4,2,8,6,24,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14579,4,2,8,8,26,0,0,0,-1,0,132543,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14580,4,2,8,9,22,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14581,4,2,8,5,28,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14582,4,1,7,16,23,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14583,4,2,8,10,27,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14584,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14585,4,2,8,7,27,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14586,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14587,4,2,8,3,27,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14588,4,2,8,6,31,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14589,4,2,8,8,32,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14590,4,2,8,9,30,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14591,4,2,8,1,35,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14592,4,2,8,5,35,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14593,4,1,7,16,30,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14594,4,2,8,10,32,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14595,4,2,8,7,33,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14596,4,2,8,3,33,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14597,4,6,1,14,36,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14598,4,2,8,6,35,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14599,4,2,8,8,37,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14600,4,2,8,9,35,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14601,4,2,8,5,39,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14602,4,1,7,16,34,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14603,4,2,8,3,36,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14604,4,2,8,1,40,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14605,4,2,8,7,38,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14606,4,2,8,10,36,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14607,4,6,1,14,32,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14608,4,6,1,14,26,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14609,4,6,1,14,12,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14610,12,0,0,0,0,0,0,0,-1,0,136162,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14611,4,3,5,5,56,0,0,0,-1,0,132720,10,0,120,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14612,4,3,5,7,56,0,0,0,-1,0,134586,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14613,12,0,0,0,0,0,0,0,-1,0,133038,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14614,4,3,5,6,56,0,0,0,-1,0,132512,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14615,4,3,5,10,56,0,0,0,-1,0,132960,10,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14616,4,3,5,8,56,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14617,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14618,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14619,12,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14620,4,4,6,6,56,0,0,0,-1,0,132501,11,0,45,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14621,4,4,6,8,56,0,0,0,-1,0,132535,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14622,4,4,6,10,56,0,0,0,-1,0,132962,11,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14623,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14624,4,4,6,5,56,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14625,12,0,0,0,0,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14626,4,1,7,20,56,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14627,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14628,12,0,0,0,0,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14629,4,1,7,9,56,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14630,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14631,4,1,7,8,56,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14632,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14633,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14634,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14635,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14636,4,2,8,6,56,0,0,0,-1,0,132505,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14637,4,2,8,5,56,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14638,4,2,8,7,56,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14639,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14640,4,2,8,10,56,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14641,4,2,8,8,56,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14642,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14643,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +14644,12,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14645,12,0,0,0,0,0,0,0,-1,0,135657,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14646,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14647,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14648,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14649,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14650,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14651,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14652,4,2,8,6,40,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14653,4,2,8,8,41,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14654,4,2,8,9,39,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14655,4,2,8,5,44,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14656,4,1,7,16,39,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14657,4,2,8,10,41,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14658,4,2,8,1,44,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14659,4,2,8,7,42,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14660,4,2,8,3,42,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14661,4,2,8,6,44,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14662,4,2,8,8,46,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14663,4,2,8,9,43,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14664,4,2,8,5,49,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14665,4,1,7,16,43,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14666,4,2,8,10,46,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14667,4,2,8,1,48,0,0,0,-1,0,133127,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14668,4,2,8,7,47,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14669,4,2,8,3,46,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14670,4,2,8,5,54,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14671,4,2,8,8,51,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14672,4,2,8,9,48,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14673,4,1,7,16,47,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14674,4,2,8,6,50,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14675,4,2,8,10,51,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14676,4,2,8,1,53,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14677,4,2,8,7,53,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14678,4,2,8,3,52,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14679,12,0,0,0,0,0,0,0,-1,0,134942,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14680,4,2,8,5,59,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14681,4,2,8,8,57,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14682,4,2,8,9,54,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14683,4,1,7,16,54,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14684,4,2,8,6,55,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14685,4,2,8,10,57,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14686,4,2,8,1,58,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14687,4,2,8,7,57,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14688,4,2,8,3,56,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14689,4,3,5,8,7,0,0,0,-1,0,132589,10,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14690,4,3,5,9,4,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14691,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14692,4,1,7,16,4,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14693,4,3,5,6,5,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14694,4,3,5,10,6,0,0,0,-1,0,132962,10,0,20,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14695,4,3,5,7,7,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14696,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14697,4,3,5,5,8,0,0,0,-1,0,132624,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14698,4,3,5,5,13,0,0,0,-1,0,132631,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14699,4,3,5,8,10,0,0,0,-1,0,132543,10,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14700,4,3,5,9,7,0,0,0,-1,0,132604,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14701,4,1,7,16,8,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14702,4,3,5,6,9,0,0,0,-1,0,132494,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14703,4,3,5,10,9,0,0,0,-1,0,132939,10,0,20,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14704,4,3,5,7,11,0,0,0,-1,0,134589,10,0,55,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14705,4,6,1,14,11,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14706,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14707,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14722,4,3,5,8,12,0,0,0,-1,0,132540,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14723,4,3,5,9,12,0,0,0,-1,0,132605,10,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14724,4,1,7,16,11,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14725,4,3,5,6,12,0,0,0,-1,0,132514,10,0,25,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14726,4,3,5,10,13,0,0,0,-1,0,132946,10,0,25,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14727,4,3,5,7,14,0,0,0,-1,0,134585,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14728,4,3,5,3,17,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14729,4,6,1,14,15,4,0,0,-1,0,134964,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14730,4,3,5,5,18,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14742,4,3,5,8,19,0,0,0,-1,0,132541,10,0,45,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14743,4,3,5,9,17,0,0,0,-1,0,132608,10,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14744,4,3,5,5,23,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14745,4,1,7,16,15,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14746,4,3,5,6,17,0,0,0,-1,0,132511,10,0,30,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14747,4,3,5,10,18,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14748,4,3,5,7,20,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14749,4,3,5,3,21,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14750,4,3,5,9,23,0,0,0,-1,0,132610,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14751,4,3,5,5,28,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14752,4,1,7,16,22,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14753,4,3,5,1,28,0,0,0,-1,0,133161,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14754,4,3,5,10,24,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14755,4,3,5,6,23,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14756,4,3,5,8,24,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14757,4,3,5,7,27,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14758,4,3,5,3,26,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14759,4,3,5,9,29,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14760,4,3,5,5,34,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14761,4,3,5,6,29,0,0,0,-1,0,132518,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14762,4,3,5,8,32,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14763,4,1,7,16,27,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14764,4,3,5,10,30,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14765,4,3,5,1,33,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14766,4,3,5,7,32,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14767,4,3,5,3,33,0,0,0,-1,0,135052,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14768,4,3,5,5,39,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14769,4,3,5,8,37,0,0,0,-1,0,132579,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14770,4,3,5,9,35,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14771,4,1,7,16,34,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14772,4,3,5,10,35,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14773,4,3,5,6,34,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14774,4,3,5,1,38,0,0,0,-1,0,133121,10,0,60,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14775,4,3,5,7,38,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14776,4,3,5,3,38,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14777,4,6,1,14,39,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14778,4,3,5,9,40,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14779,4,3,5,5,44,0,0,0,-1,0,132643,10,0,100,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14780,4,6,1,14,44,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14781,4,1,7,16,39,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14782,4,3,5,10,40,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14783,4,3,5,6,41,0,0,0,-1,0,132500,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14784,4,3,5,8,41,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14785,4,3,5,1,43,0,0,0,-1,0,133101,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14786,4,3,5,7,42,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14787,4,3,5,3,42,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14788,4,3,5,9,44,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14789,4,3,5,5,49,0,0,0,-1,0,132723,10,0,100,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14790,4,6,1,14,49,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14791,4,1,7,16,43,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14792,4,3,5,10,45,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14793,4,3,5,6,45,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14794,4,3,5,8,45,0,0,0,-1,0,132543,10,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14795,4,3,5,1,48,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14796,4,3,5,7,48,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14797,4,3,5,3,46,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14798,4,3,5,5,54,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14799,4,3,5,8,53,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14800,4,6,1,14,54,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14801,4,1,7,16,47,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14802,4,3,5,10,50,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14803,4,3,5,6,50,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14804,4,3,5,1,53,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14805,4,3,5,7,52,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14806,4,3,5,3,52,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14807,4,3,5,9,48,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14808,4,3,5,6,54,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14809,4,3,5,8,57,0,0,0,-1,0,132541,10,0,50,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14810,4,3,5,9,54,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14811,4,3,5,5,59,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14812,4,6,1,14,59,4,0,0,-1,0,134966,9,0,85,0,0,0,0,0,0,1946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14813,4,1,7,16,52,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14814,4,3,5,1,58,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14815,4,3,5,10,57,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14816,4,3,5,7,57,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14817,4,3,5,3,57,0,0,0,-1,0,135033,10,0,60,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14818,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14819,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14820,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14821,4,4,6,5,40,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14822,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14823,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14824,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14825,4,6,1,14,38,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14826,4,4,6,10,40,0,0,0,-1,0,132949,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14827,4,4,6,6,40,0,0,0,-1,0,132520,11,0,40,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14828,4,4,6,8,40,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14829,4,4,6,7,40,0,0,0,-1,0,134593,11,0,85,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14830,4,4,6,3,40,0,0,0,-1,0,135042,11,0,70,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14831,4,4,6,1,40,0,0,0,-1,0,132768,11,0,70,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14832,4,4,6,9,40,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14833,4,4,6,10,40,0,0,0,-1,0,132953,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14834,4,4,6,9,40,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14835,4,4,6,5,43,0,0,0,-1,0,132743,11,0,115,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14836,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14837,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14838,4,4,6,6,40,0,0,0,-1,0,132513,11,0,40,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14839,4,4,6,8,40,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14840,4,4,6,7,42,0,0,0,-1,0,134586,11,0,85,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14841,4,4,6,3,40,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14842,4,6,1,14,43,4,0,0,-1,0,134963,9,0,85,0,0,0,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14843,4,4,6,1,41,0,0,0,-1,0,133101,11,0,70,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14844,4,4,6,5,49,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14845,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14846,4,4,6,10,45,0,0,0,-1,0,132938,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14847,4,4,6,6,44,0,0,0,-1,0,132508,11,0,40,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14848,4,4,6,8,45,0,0,0,-1,0,132541,11,0,55,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14849,4,4,6,1,48,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14850,4,4,6,7,47,0,0,0,-1,0,134582,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14851,4,4,6,3,46,0,0,0,-1,0,135051,11,0,70,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14852,4,6,1,14,49,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14853,4,4,6,9,43,0,0,0,-1,0,132608,11,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14854,4,4,6,5,54,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14855,4,4,6,10,50,0,0,0,-1,0,132951,11,0,40,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14856,4,4,6,6,49,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14857,4,4,6,8,49,0,0,0,-1,0,132586,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14858,4,4,6,1,53,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14859,4,4,6,7,52,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14860,4,4,6,3,51,0,0,0,-1,0,135058,11,0,70,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14861,4,4,6,9,47,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14862,4,4,6,5,58,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14863,4,4,6,10,55,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14864,4,4,6,6,54,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14865,4,4,6,8,55,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14866,4,4,6,1,57,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14867,4,4,6,7,57,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14868,4,4,6,3,56,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14869,4,4,6,9,53,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14870,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14871,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14872,12,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14873,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14874,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14875,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14876,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14877,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14878,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14879,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14880,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14881,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14882,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14883,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14884,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14885,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14886,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14887,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14888,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14889,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14890,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14891,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14892,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14893,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14894,0,0,3,0,0,0,0,0,-1,0,134182,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14895,4,4,6,5,40,0,527,0,-1,0,132743,11,0,115,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14896,4,4,6,8,40,0,863,0,-1,0,132589,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14897,4,4,6,10,40,0,779,0,-1,0,132956,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14898,4,4,6,6,40,0,947,0,-1,0,132502,11,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14899,4,4,6,1,40,0,695,0,-1,0,133122,11,0,70,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14900,4,4,6,7,40,0,611,0,-1,0,134587,11,0,85,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14901,4,4,6,3,40,0,1199,0,-1,0,135036,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14902,4,6,1,14,36,4,2046,0,-1,0,134958,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14903,4,4,6,9,40,0,1115,0,-1,0,132603,11,0,40,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14904,4,4,6,5,45,0,530,0,-1,0,132626,11,0,115,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14905,4,4,6,10,40,0,780,0,-1,0,132962,11,0,40,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14906,4,4,6,6,40,0,948,0,-1,0,132513,11,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14907,4,4,6,1,43,0,697,0,-1,0,133127,11,0,70,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14908,4,4,6,7,43,0,613,0,-1,0,134584,11,0,85,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14909,4,4,6,3,40,0,1200,0,-1,0,135042,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14910,4,4,6,9,40,0,1116,0,-1,0,132612,11,0,40,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14911,4,4,6,8,41,0,865,0,-1,0,132587,11,0,55,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14912,4,6,1,14,45,4,2064,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14913,4,4,6,8,44,0,866,0,-1,0,132586,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14914,4,4,6,9,41,0,1117,0,-1,0,132611,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14915,4,4,6,5,48,0,531,0,-1,0,132742,11,0,115,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14916,4,6,1,14,48,4,2070,0,-1,0,134967,9,0,85,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14917,4,4,6,10,43,0,781,0,-1,0,132964,11,0,40,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14918,4,4,6,6,42,0,949,0,-1,0,132506,11,0,40,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14919,4,4,6,1,47,0,699,0,-1,0,132514,11,0,70,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14920,4,4,6,7,46,0,614,0,-1,0,134585,11,0,85,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14921,4,4,6,3,44,0,1202,0,-1,0,135047,11,0,70,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14922,4,4,6,8,48,0,867,0,-1,0,132592,11,0,55,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14923,4,4,6,9,45,0,1118,0,-1,0,132613,11,0,40,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14924,4,4,6,5,52,0,532,0,-1,0,132760,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14925,4,4,6,1,52,0,700,0,-1,0,133078,11,0,70,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14926,4,4,6,10,48,0,783,0,-1,0,132963,11,0,40,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14927,4,4,6,6,47,0,951,0,-1,0,132521,11,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14928,4,4,6,7,50,0,616,0,-1,0,134584,11,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14929,4,4,6,3,49,0,1203,0,-1,0,135059,11,0,70,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14930,4,6,1,14,52,4,2076,0,-1,0,134963,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14931,4,4,6,5,57,0,534,0,-1,0,132632,11,0,115,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14932,4,4,6,8,53,0,869,0,-1,0,132587,11,0,55,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14933,4,4,6,10,53,0,785,0,-1,0,132965,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14934,4,4,6,6,52,0,952,0,-1,0,132501,11,0,40,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14935,4,4,6,1,55,0,701,0,-1,0,133122,11,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14936,4,4,6,7,56,0,618,0,-1,0,134584,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14937,4,4,6,3,54,0,1205,0,-1,0,135047,11,0,70,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14938,4,4,6,9,51,0,1120,0,-1,0,132613,11,0,40,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14939,4,4,6,5,41,0,529,0,-1,0,132725,11,0,115,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14940,4,4,6,8,40,0,864,0,-1,0,132590,11,0,55,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14941,4,4,6,9,40,0,1115,0,-1,0,132618,11,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14942,4,4,6,10,40,0,779,0,-1,0,132961,11,0,40,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14943,4,4,6,6,40,0,947,0,-1,0,132503,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14944,4,4,6,1,40,0,696,0,-1,0,132517,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14945,4,4,6,7,40,0,612,0,-1,0,134584,11,0,85,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14946,4,4,6,3,40,0,1200,0,-1,0,135053,11,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14947,4,6,1,14,41,4,2058,0,-1,0,134965,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14948,4,4,6,5,46,0,530,0,-1,0,132629,11,0,115,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14949,4,4,6,10,42,0,781,0,-1,0,132953,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14950,4,4,6,6,41,0,949,0,-1,0,132502,11,0,40,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14951,4,4,6,8,42,0,865,0,-1,0,132536,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14952,4,4,6,1,45,0,698,0,-1,0,133101,11,0,70,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14953,4,4,6,7,44,0,614,0,-1,0,134586,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14954,4,6,1,14,46,4,2064,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14955,4,4,6,3,42,0,1201,0,-1,0,135054,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14956,4,4,6,9,40,0,1116,0,-1,0,132608,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14957,4,4,6,8,46,0,866,0,-1,0,132539,11,0,55,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14958,4,4,6,5,51,0,532,0,-1,0,132636,11,0,115,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14959,4,4,6,10,47,0,783,0,-1,0,132940,11,0,40,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14960,4,4,6,6,46,0,950,0,-1,0,132518,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14961,4,4,6,1,50,0,700,0,-1,0,133125,11,0,70,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14962,4,4,6,7,49,0,615,0,-1,0,134588,11,0,85,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14963,4,4,6,3,48,0,1203,0,-1,0,135036,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14964,4,6,1,14,51,4,2076,0,-1,0,134966,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14965,4,4,6,9,44,0,1118,0,-1,0,132612,11,0,40,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14966,4,4,6,5,56,0,534,0,-1,0,132738,11,0,115,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14967,4,4,6,10,51,0,784,0,-1,0,132944,11,0,40,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14968,4,4,6,6,50,0,952,0,-1,0,132500,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14969,4,4,6,1,54,0,701,0,-1,0,133073,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14970,4,4,6,7,53,0,617,0,-1,0,134582,11,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14971,4,4,6,3,52,0,1204,0,-1,0,135051,11,0,70,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14972,4,4,6,8,51,0,868,0,-1,0,132584,11,0,55,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14973,4,6,1,14,55,4,2082,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14974,4,4,6,9,50,0,1120,0,-1,0,132618,11,0,40,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14975,4,4,6,5,60,0,535,0,-1,0,132745,11,0,115,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14976,4,4,6,10,56,0,786,0,-1,0,132938,11,0,40,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14977,4,4,6,6,55,0,953,0,-1,0,132513,11,0,40,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14978,4,4,6,8,58,0,870,0,-1,0,132592,11,0,55,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14979,4,4,6,1,59,0,703,0,-1,0,133078,11,0,70,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14980,4,4,6,7,58,0,618,0,-1,0,134592,11,0,85,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14981,4,4,6,3,57,0,1206,0,-1,0,135044,11,0,70,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14982,4,6,1,14,60,4,2094,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14983,4,4,6,9,54,0,1121,0,-1,0,132608,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15002,12,0,0,0,0,0,0,0,-1,0,135128,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15003,4,2,8,6,3,0,0,0,-1,0,132512,7,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15004,4,2,8,8,4,0,0,0,-1,0,132542,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15005,4,2,8,9,4,0,0,0,-1,0,132611,7,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15006,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15007,4,1,7,16,3,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15008,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15009,4,2,8,7,6,0,559,0,-1,0,134585,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15010,4,2,8,5,6,0,475,0,-1,0,132719,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15011,4,2,8,6,10,0,896,0,-1,0,132492,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15012,4,2,8,8,11,0,813,0,-1,0,132539,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15013,4,2,8,9,9,0,0,0,-1,0,132604,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15014,4,6,1,14,12,4,1996,0,-1,0,134955,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15015,4,1,7,16,8,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15016,4,2,8,10,11,0,729,0,-1,0,132949,7,0,20,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15017,4,2,8,7,14,0,562,0,-1,0,134586,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15018,4,2,8,5,15,0,478,0,-1,0,132715,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15019,4,2,8,3,16,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15022,12,0,0,0,0,0,0,0,-1,0,133648,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15042,12,0,0,0,0,0,0,0,-1,0,134743,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15043,12,0,0,0,0,0,0,0,-1,0,134321,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15044,12,0,0,0,0,0,0,0,-1,0,132620,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15045,4,3,5,5,47,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,311,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0 +15046,4,3,5,7,49,0,0,0,-1,0,134585,10,0,90,0,0,0,0,0,0,282,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0 +15047,4,3,5,5,56,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,360,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15048,4,3,5,5,52,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,338,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0 +15049,4,3,5,3,54,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,262,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0 +15050,4,3,5,5,53,0,0,0,-1,0,132741,10,0,120,0,0,0,0,0,0,344,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15051,4,3,5,3,55,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,266,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15052,4,3,5,7,57,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,320,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15053,4,2,8,5,52,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,148,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15054,4,2,8,7,49,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15055,4,2,8,3,56,0,0,0,-1,0,135044,7,0,50,0,0,0,0,0,0,117,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15056,4,2,8,5,52,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15057,4,2,8,7,50,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15058,4,2,8,3,54,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15059,4,2,8,5,55,0,0,0,-1,0,132742,7,0,100,0,0,0,0,0,0,169,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +15060,4,2,8,7,52,0,0,0,-1,0,134585,7,0,75,0,0,0,0,0,0,142,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +15061,4,2,8,3,49,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,117,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +15062,4,2,8,7,55,0,0,0,-1,0,134706,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15063,4,2,8,10,53,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15064,4,2,8,5,50,0,0,0,-1,0,132719,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15065,4,2,8,7,52,0,0,0,-1,0,134706,7,0,75,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15066,4,2,8,5,53,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15067,4,2,8,3,49,0,0,0,-1,0,135037,7,0,60,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15068,4,2,8,5,57,0,0,0,-1,0,132632,7,0,85,0,0,0,0,0,0,158,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +15069,4,2,8,7,52,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,129,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0 +15070,4,2,8,10,54,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,95,0,0,0,13,12,0,0,0,0,0,0,0,0,0,0,0 +15071,4,2,8,8,50,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,99,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +15072,4,2,8,7,51,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,127,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0 +15073,4,2,8,8,50,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,99,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0 +15074,4,2,8,10,48,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,87,0,0,12,0,0,11,0,0,0,0,0,0,0,0,0,0 +15075,4,2,8,5,53,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,150,0,0,17,0,0,16,0,0,0,0,0,0,0,0,0,0 +15076,4,3,5,5,48,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15077,4,3,5,9,46,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15078,4,3,5,10,50,0,0,0,-1,0,132958,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15079,4,3,5,7,52,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15080,4,3,5,1,54,0,0,0,-1,0,133122,10,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15081,4,3,5,3,56,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15082,4,3,5,6,51,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15083,4,2,8,10,47,0,0,0,-1,0,132965,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15084,4,2,8,9,48,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15085,4,2,8,5,56,0,0,0,-1,0,132741,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15086,4,2,8,1,51,0,0,0,-1,0,133683,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15087,4,2,8,7,53,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15088,4,2,8,6,55,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15089,4,3,5,5,39,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15090,4,2,8,5,57,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15091,4,2,8,10,49,0,0,0,-1,0,132965,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15092,4,2,8,9,50,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15093,4,2,8,6,51,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15094,4,2,8,1,53,0,0,0,-1,0,133681,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15095,4,2,8,7,55,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15096,4,2,8,3,57,0,0,0,-1,0,135046,7,0,50,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15102,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15103,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15104,4,1,7,8,0,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15105,2,10,2,17,0,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15106,2,10,2,17,0,2,0,0,-1,0,135149,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15107,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15108,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15109,2,10,2,17,0,2,0,0,-1,0,135146,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +15110,4,2,8,6,15,0,898,0,-1,0,132494,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15111,4,2,8,8,16,0,814,0,-1,0,132537,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15112,4,2,8,9,15,0,1066,0,-1,0,132600,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15113,4,6,1,14,18,4,2010,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15114,4,1,7,16,14,0,982,0,-1,0,133762,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15115,4,2,8,10,17,0,731,0,-1,0,132958,7,0,25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15116,4,2,8,3,21,0,1152,0,-1,0,135039,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15117,4,2,8,7,19,0,563,0,-1,0,134582,7,0,60,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15118,4,2,8,5,21,0,480,0,-1,0,132725,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15119,4,1,7,7,51,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15120,4,2,8,6,21,0,900,0,-1,0,132495,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15121,4,2,8,8,23,0,817,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15122,4,2,8,9,20,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15123,4,6,1,14,23,4,2020,0,-1,0,134956,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15124,4,1,7,16,20,0,984,0,-1,0,133755,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15125,4,2,8,10,24,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15126,4,2,8,7,24,0,565,0,-1,0,134587,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15127,4,2,8,3,25,0,1153,0,-1,0,135039,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15128,4,2,8,5,26,0,482,0,-1,0,132646,7,0,85,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15129,4,2,8,1,26,0,650,0,-1,0,133117,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15130,4,2,8,5,29,0,483,0,-1,0,132719,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15131,4,2,8,8,27,0,818,0,-1,0,132539,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15132,4,2,8,9,24,0,1069,0,-1,0,132609,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15133,4,6,1,14,28,4,2026,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15134,4,2,8,1,32,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15135,4,1,7,16,25,0,985,0,-1,0,133760,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15136,4,2,8,6,26,0,902,0,-1,0,132500,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15137,4,2,8,10,28,0,734,0,-1,0,132956,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15138,4,1,7,16,55,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,43,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15139,4,2,8,7,28,0,566,0,-1,0,134587,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15140,4,2,8,3,29,0,1155,0,-1,0,135042,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15141,4,3,5,5,57,0,0,0,-1,0,132741,10,0,140,0,0,0,0,0,0,398,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15142,4,2,8,8,30,0,819,0,-1,0,132592,7,0,45,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15143,4,2,8,9,28,0,1070,0,-1,0,132607,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15144,4,2,8,5,32,0,484,0,-1,0,132736,7,0,85,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15145,4,6,1,14,31,4,2032,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15146,4,2,8,1,34,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15147,4,1,7,16,28,0,986,0,-1,0,133758,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15148,4,2,8,6,29,0,903,0,-1,0,132493,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15149,4,2,8,10,31,0,735,0,-1,0,132939,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15150,4,2,8,3,31,0,1155,0,-1,0,135039,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15151,4,2,8,7,31,0,567,0,-1,0,134706,7,0,65,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15152,4,2,8,8,36,0,821,0,-1,0,132542,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15153,4,1,7,16,32,0,988,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15154,4,2,8,6,33,0,904,0,-1,0,132504,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15155,4,2,8,10,34,0,736,0,-1,0,132959,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15156,4,2,8,1,38,0,654,0,-1,0,133111,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15157,4,2,8,7,36,0,569,0,-1,0,134583,7,0,65,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15158,4,2,8,3,35,0,1157,0,-1,0,135053,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15159,4,2,8,5,37,0,485,0,-1,0,132720,7,0,85,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15160,4,2,8,9,34,0,1072,0,-1,0,132608,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15161,4,2,8,6,38,0,906,0,-1,0,132501,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15162,4,2,8,8,40,0,822,0,-1,0,132536,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15163,4,2,8,9,38,0,1074,0,-1,0,132615,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15164,4,2,8,5,42,0,487,0,-1,0,132720,7,0,85,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15165,4,1,7,16,37,0,989,0,-1,0,133770,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15166,4,2,8,10,40,0,738,0,-1,0,132956,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15167,4,2,8,1,43,0,655,0,-1,0,133694,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15168,4,2,8,7,40,0,570,0,-1,0,134586,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15169,4,2,8,3,39,0,1158,0,-1,0,135054,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15170,4,2,8,5,47,0,489,0,-1,0,132635,7,0,85,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15171,4,2,8,8,45,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15172,4,2,8,9,42,0,1075,0,-1,0,132613,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15173,4,1,7,16,41,0,991,0,-1,0,133758,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15174,4,2,8,10,45,0,740,0,-1,0,132946,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15175,4,2,8,1,46,0,656,0,-1,0,133111,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15176,4,2,8,7,45,0,572,0,-1,0,134586,7,0,65,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15177,4,2,8,3,44,0,1160,0,-1,0,135044,7,0,50,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15178,4,2,8,6,42,0,907,0,-1,0,132505,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15179,4,2,8,5,52,0,490,0,-1,0,132629,7,0,85,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15180,4,2,8,6,48,0,909,0,-1,0,132500,7,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15181,4,2,8,8,50,0,826,0,-1,0,132588,7,0,45,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15182,4,2,8,9,46,0,1076,0,-1,0,132613,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15183,4,1,7,16,45,0,992,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15184,4,2,8,10,49,0,741,0,-1,0,132963,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15185,4,2,8,1,52,0,658,0,-1,0,132500,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15186,4,2,8,7,50,0,574,0,-1,0,134586,7,0,65,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15187,4,2,8,3,49,0,1161,0,-1,0,135054,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15188,4,2,8,9,52,0,1078,0,-1,0,132617,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15189,4,2,8,8,55,0,827,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15190,4,1,7,16,50,0,994,0,-1,0,133754,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15191,4,2,8,6,52,0,910,0,-1,0,132501,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15192,4,2,8,10,55,0,743,0,-1,0,132965,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15193,4,2,8,1,57,0,660,0,-1,0,133074,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15194,4,2,8,7,56,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15195,4,2,8,5,57,0,492,0,-1,0,132720,7,0,85,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15196,4,0,0,19,0,0,0,0,-1,0,134472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15197,4,0,0,19,0,0,0,0,-1,0,134473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15198,4,0,0,19,0,0,0,0,-1,0,134474,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15199,4,0,0,19,0,0,0,0,-1,0,134475,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15200,4,0,5,2,30,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15202,4,2,8,7,0,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15203,4,3,5,7,0,0,0,0,-1,0,134588,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15204,2,19,2,26,0,0,0,0,-1,0,135469,21,0,40,0,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +15205,2,3,1,26,0,0,0,0,-1,0,135613,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +15206,4,0,0,23,0,7,0,0,-1,0,135466,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15207,4,6,1,14,0,4,0,0,-1,0,134957,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15208,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15209,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15210,2,7,1,13,11,3,5177,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,20,0,0,0,0 +15211,2,7,1,13,17,3,5195,0,-1,0,135321,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +15212,2,7,1,21,22,3,5204,0,-1,0,135356,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +15213,2,7,1,13,31,3,5231,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +15214,2,7,1,13,35,3,5249,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +15215,2,7,1,21,40,3,5258,0,-1,0,135314,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +15216,2,7,1,13,46,3,5276,0,-1,0,135351,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,63,0,0,0,0 +15217,2,7,1,13,49,3,5285,0,-1,0,135351,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +15218,2,7,1,13,52,3,5294,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +15219,2,7,1,13,54,3,5303,0,-1,0,135324,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +15220,2,7,1,21,57,3,5312,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +15221,2,7,1,13,60,3,5321,0,-1,0,135276,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +15222,2,4,2,21,14,3,5188,0,-1,0,133045,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +15223,2,4,2,21,19,3,5197,0,-1,0,133045,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +15224,2,4,2,13,20,3,5206,0,-1,0,133045,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +15225,2,4,2,21,28,3,5224,0,-1,0,133045,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +15226,2,4,2,21,32,3,5242,0,-1,0,133053,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +15227,2,4,2,13,44,3,5278,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +15228,2,4,2,13,48,3,5287,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,115,0,0,0,0 +15229,2,4,2,13,50,3,5296,0,-1,0,133039,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +15230,2,0,1,21,20,3,5205,0,-1,0,132415,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +15231,2,0,1,13,26,3,5223,0,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +15232,2,0,1,13,28,3,5223,0,-1,0,135649,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,43,0,0,0,0 +15233,2,0,1,21,34,3,5241,0,-1,0,132399,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +15234,2,0,1,21,35,3,5250,0,-1,0,132394,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +15235,2,0,1,13,43,3,5268,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +15236,2,0,1,13,47,3,5286,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +15237,2,0,1,13,50,3,5295,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +15238,2,0,1,13,53,3,5304,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +15239,2,0,1,13,56,3,5313,0,-1,0,132401,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +15240,2,0,1,13,59,3,5322,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +15241,2,15,1,13,21,3,5207,0,-1,0,135637,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +15242,2,15,1,13,25,3,5216,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +15243,2,15,1,13,31,3,5234,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +15244,2,15,1,13,37,3,5252,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +15245,2,15,1,13,45,3,5279,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +15246,2,15,1,13,57,3,5315,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +15247,2,15,1,13,59,3,5324,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +15248,2,8,1,17,15,1,5191,0,-1,0,135324,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +15249,2,8,1,17,21,1,5209,0,-1,0,135324,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +15250,2,8,1,17,27,1,5227,0,-1,0,135321,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +15251,2,8,1,17,38,1,5263,0,-1,0,135352,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15252,2,8,1,17,44,1,5281,0,-1,0,135355,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +15253,2,8,1,17,47,1,5290,0,-1,0,135330,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,170,0,0,0,0 +15254,2,8,1,17,49,1,5290,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,166,0,0,0,0 +15255,2,8,1,17,52,1,5299,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +15256,2,8,1,17,54,1,5308,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,209,0,0,0,0 +15257,2,8,1,17,57,1,5317,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,127,0,0,0,0 +15258,2,8,1,17,60,1,5326,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,164,0,0,0,0 +15259,2,5,2,17,20,1,5211,0,-1,0,133053,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,65,0,0,0,0 +15260,2,5,2,17,33,1,5247,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,96,0,0,0,0 +15261,2,5,2,17,35,1,5256,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,132,0,0,0,0 +15262,2,5,2,17,41,1,5274,0,-1,0,133056,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +15263,2,5,2,17,45,1,5283,0,-1,0,133048,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,126,0,0,0,0 +15264,2,5,2,17,51,1,5301,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +15265,2,5,2,17,53,1,5310,0,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +15266,2,5,2,17,56,1,5319,0,-1,0,133045,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +15267,2,5,2,17,58,1,5319,0,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +15268,2,1,1,17,11,1,5183,0,-1,0,132400,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +15269,2,1,1,17,19,1,5201,0,-1,0,132415,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +15270,2,1,1,17,41,1,5273,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +15271,2,1,1,17,51,1,5300,0,-1,0,132403,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,198,0,0,0,0 +15272,2,1,1,17,54,1,5309,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,138,0,0,0,0 +15273,2,1,1,17,58,1,5318,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,165,0,0,0,0 +15274,2,10,2,17,47,2,5293,0,-1,0,135163,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,126,0,0,0,0 +15275,2,10,2,17,49,2,5293,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +15276,2,10,2,17,53,2,5311,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,184,0,0,0,0 +15277,15,0,0,0,40,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15278,2,10,2,17,55,2,5311,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +15279,2,19,2,26,46,0,5280,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15280,2,19,2,26,48,0,5289,0,-1,0,135468,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,104,0,0,0,0 +15281,2,19,2,26,52,0,5298,0,-1,0,135147,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +15282,2,19,2,26,55,0,5307,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +15283,2,19,2,26,59,0,5850,0,-1,0,135143,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,126,0,0,0,0 +15284,2,2,2,15,24,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +15285,2,2,2,15,27,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +15286,2,2,2,15,30,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +15287,2,2,2,15,40,0,5852,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +15288,2,2,2,15,56,0,5838,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +15289,2,2,2,15,60,0,5859,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,91,0,0,0,0 +15290,15,0,0,0,40,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15291,2,2,2,15,46,0,5854,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,84,0,0,0,0 +15292,15,0,0,0,60,0,0,0,-1,0,132244,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15293,15,0,0,0,60,0,0,0,-1,0,132244,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15294,2,2,2,15,48,0,5855,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +15295,2,2,2,15,50,0,5856,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15296,2,2,2,15,58,0,5858,0,-1,0,135500,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +15297,4,2,8,9,6,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15298,4,6,1,14,8,4,6272,0,-1,0,134956,9,0,50,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15299,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15300,4,2,8,10,9,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15301,4,2,8,8,8,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15302,4,2,8,6,6,0,0,0,-1,0,132498,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15303,4,2,8,7,9,0,560,0,-1,0,134589,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15304,4,2,8,5,11,0,477,0,-1,0,132716,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15305,4,2,8,8,13,0,813,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15306,4,2,8,9,11,0,1065,0,-1,0,132604,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15307,4,6,1,14,14,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15308,4,2,8,6,12,0,897,0,-1,0,132492,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15309,4,1,7,16,10,0,980,0,-1,0,133770,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15310,4,2,8,10,13,0,729,0,-1,0,132939,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15311,4,2,8,5,17,0,479,0,-1,0,132719,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15312,4,2,8,7,15,0,562,0,-1,0,134586,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15313,4,2,8,3,19,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15314,0,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15322,2,3,1,26,34,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +15323,2,3,1,26,45,0,5854,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +15324,2,3,1,26,51,0,5856,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +15325,2,3,1,26,55,0,5857,0,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +15326,2,16,1,25,35,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +15327,2,16,1,25,35,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +15328,12,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15329,4,2,8,6,19,0,899,0,-1,0,132505,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15330,4,2,8,8,20,0,816,0,-1,0,132539,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15331,4,2,8,9,18,0,1067,0,-1,0,132605,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15332,4,6,1,14,22,4,2014,0,-1,0,134948,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15333,4,1,7,16,17,0,983,0,-1,0,133753,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15334,4,2,8,10,22,0,732,0,-1,0,132961,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15335,2,7,1,13,0,3,0,0,-1,0,135321,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +15336,4,2,8,7,22,0,564,0,-1,0,134582,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15337,4,2,8,5,24,0,481,0,-1,0,132656,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15338,4,2,8,3,23,0,1153,0,-1,0,135049,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15339,4,2,8,1,29,0,651,0,-1,0,133117,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15340,4,1,7,16,22,0,984,0,-1,0,133753,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15341,4,2,8,8,25,0,817,0,-1,0,132539,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15342,4,6,1,14,25,4,2020,0,-1,0,134967,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15343,4,2,8,10,25,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15344,4,2,8,7,26,0,566,0,-1,0,134587,7,0,65,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15345,4,2,8,3,26,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15346,4,2,8,5,27,0,482,0,-1,0,132656,7,0,85,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15347,4,2,8,6,23,0,901,0,-1,0,132514,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15348,4,2,8,9,21,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15349,4,2,8,6,28,0,902,0,-1,0,132492,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15350,4,2,8,8,29,0,819,0,-1,0,132539,7,0,45,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15351,4,2,8,9,25,0,1069,0,-1,0,132612,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15352,4,6,1,14,29,4,2032,0,-1,0,134967,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15353,4,2,8,1,33,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15354,4,1,7,16,27,0,986,0,-1,0,133755,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15355,4,2,8,10,29,0,735,0,-1,0,132956,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15356,4,2,8,5,31,0,483,0,-1,0,132723,7,0,85,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15357,4,2,8,3,30,0,1155,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15358,4,2,8,7,30,0,567,0,-1,0,134587,7,0,65,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15359,4,2,8,5,36,0,485,0,-1,0,132649,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15360,4,2,8,9,33,0,1072,0,-1,0,132606,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15361,4,2,8,6,32,0,904,0,-1,0,132498,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15362,4,2,8,8,34,0,820,0,-1,0,132541,7,0,45,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15363,4,2,8,1,37,0,653,0,-1,0,133121,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15364,4,1,7,16,31,0,987,0,-1,0,133768,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15365,4,2,8,10,33,0,736,0,-1,0,132949,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15366,4,2,8,7,35,0,569,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15367,4,6,1,14,34,4,2038,0,-1,0,134962,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15368,4,2,8,3,34,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15369,4,2,8,6,37,0,905,0,-1,0,132491,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15370,4,2,8,8,39,0,822,0,-1,0,132542,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15371,4,1,7,16,36,0,989,0,-1,0,133774,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15372,4,2,8,10,38,0,738,0,-1,0,132959,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15373,4,2,8,1,42,0,655,0,-1,0,133119,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15374,4,2,8,7,39,0,570,0,-1,0,134586,7,0,65,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15375,4,2,8,3,38,0,1158,0,-1,0,135054,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15376,4,2,8,5,41,0,487,0,-1,0,132722,7,0,85,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15377,4,2,8,9,37,0,1073,0,-1,0,132608,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15378,4,2,8,6,41,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15379,4,2,8,8,43,0,823,0,-1,0,132535,7,0,45,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15380,4,2,8,9,41,0,1075,0,-1,0,132615,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15381,4,2,8,5,46,0,488,0,-1,0,132720,7,0,85,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15382,4,1,7,16,40,0,990,0,-1,0,133770,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15383,4,2,8,10,43,0,739,0,-1,0,132956,7,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15384,4,2,8,1,45,0,656,0,-1,0,133126,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15385,4,2,8,7,44,0,572,0,-1,0,134592,7,0,65,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15386,4,2,8,3,43,0,1159,0,-1,0,135032,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15387,4,2,8,9,45,0,1076,0,-1,0,132605,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15388,4,2,8,6,47,0,909,0,-1,0,132510,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15389,4,2,8,8,48,0,825,0,-1,0,132542,7,0,45,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15390,4,2,8,5,51,0,490,0,-1,0,132742,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15391,4,2,8,1,51,0,658,0,-1,0,133142,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15392,4,1,7,16,44,0,992,0,-1,0,133769,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15393,4,2,8,10,47,0,741,0,-1,0,132945,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15394,4,2,8,7,49,0,573,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15395,4,2,8,3,48,0,1161,0,-1,0,135049,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15396,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +15397,2,10,2,17,0,2,0,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +15398,4,1,7,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15399,4,2,8,6,0,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15400,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15401,4,1,7,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15402,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15403,4,2,8,9,0,0,0,0,-1,0,132609,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15404,4,3,5,6,0,0,0,0,-1,0,132499,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15405,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15406,4,3,5,8,0,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15407,7,0,8,0,0,0,0,0,-1,0,134355,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15408,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15409,7,0,8,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15410,7,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15411,4,0,0,2,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15412,15,0,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15413,4,4,6,5,0,0,0,0,-1,0,132744,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15414,15,0,0,0,0,0,0,0,-1,0,134317,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15415,15,0,0,0,0,0,0,0,-1,0,134311,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15416,15,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15417,7,0,8,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15418,2,5,2,17,0,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,192,0,0,0,0 +15419,7,0,8,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15420,5,0,0,0,0,0,0,0,-1,0,132918,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15421,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15422,7,0,8,0,0,0,0,0,-1,0,134350,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15423,7,0,8,0,0,0,0,0,-1,0,134250,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15424,2,1,1,17,0,1,0,0,-1,0,132395,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +15425,4,2,8,9,50,0,1078,0,-1,0,132601,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15426,4,2,8,8,53,0,827,0,-1,0,132542,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15427,4,1,7,16,49,0,993,0,-1,0,133754,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15428,4,2,8,6,51,0,910,0,-1,0,132501,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15429,4,2,8,10,53,0,743,0,-1,0,132949,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15430,4,2,8,1,55,0,659,0,-1,0,133689,7,0,50,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15431,4,2,8,7,54,0,575,0,-1,0,134586,7,0,65,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15432,4,2,8,3,53,0,1163,0,-1,0,135039,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15433,4,2,8,5,56,0,492,0,-1,0,132717,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15434,4,2,8,6,56,0,912,0,-1,0,132501,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15435,4,2,8,8,58,0,828,0,-1,0,132589,7,0,45,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15436,4,2,8,9,55,0,1079,0,-1,0,132614,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15437,4,1,7,16,56,0,996,0,-1,0,133754,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15438,4,2,8,10,58,0,744,0,-1,0,132960,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15439,4,2,8,1,59,0,661,0,-1,0,132767,7,0,50,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15440,4,2,8,7,58,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15441,4,2,8,3,58,0,1164,0,-1,0,135052,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15442,4,2,8,5,60,0,493,0,-1,0,132741,7,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15443,2,15,1,13,0,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +15444,2,10,2,17,0,2,0,0,-1,0,135225,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +15445,2,4,2,21,0,3,0,0,-1,0,133060,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +15446,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15447,12,0,0,0,0,0,0,0,-1,0,134350,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15448,12,0,0,0,0,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15449,4,1,7,7,0,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15450,4,2,8,7,0,0,0,0,-1,0,134587,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15451,4,3,5,7,0,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15452,4,1,7,9,0,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15453,4,2,8,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15454,12,0,0,0,0,0,0,0,-1,0,133748,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15455,4,1,7,20,0,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15456,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15457,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15458,4,2,8,8,0,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15459,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15460,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +15461,4,1,7,8,0,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15462,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15463,4,3,5,10,0,0,0,0,-1,0,132943,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15464,2,5,2,17,0,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +15465,2,19,2,26,0,0,0,0,-1,0,135469,21,0,50,0,3,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +15466,4,6,1,14,0,4,0,0,-1,0,134967,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15467,4,0,5,11,0,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15468,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15469,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15470,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15471,4,2,8,5,0,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15472,4,3,5,6,4,0,0,0,-1,0,132511,10,0,20,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15473,4,3,5,8,5,0,0,0,-1,0,132541,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15474,4,3,5,9,3,0,0,0,-1,0,132608,10,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15475,4,1,7,16,3,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15476,4,3,5,10,5,0,0,0,-1,0,132952,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15477,4,3,5,7,6,0,580,0,-1,0,134592,10,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15478,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15479,4,3,5,5,6,0,496,0,-1,0,132638,10,0,65,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15480,4,3,5,6,8,0,0,0,-1,0,132502,10,0,20,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15481,4,3,5,8,8,0,0,0,-1,0,132536,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15482,4,3,5,9,6,0,0,0,-1,0,132607,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15483,4,1,7,16,5,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15484,4,3,5,10,7,0,0,0,-1,0,132953,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15485,4,3,5,7,9,0,581,0,-1,0,134586,10,0,55,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15486,4,6,1,14,7,4,6278,0,-1,0,134954,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15487,4,3,5,5,11,0,498,0,-1,0,132629,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15488,4,3,5,5,16,0,499,0,-1,0,132629,10,0,85,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15489,4,3,5,8,11,0,834,0,-1,0,132537,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15490,4,1,7,16,9,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15491,4,3,5,10,10,0,749,0,-1,0,132949,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15492,4,3,5,6,10,0,917,0,-1,0,132502,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15493,4,3,5,7,13,0,582,0,-1,0,134586,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15494,4,6,1,14,13,4,1998,0,-1,0,134960,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15495,4,3,5,9,10,0,1085,0,-1,0,132609,10,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15496,4,3,5,3,16,0,0,0,-1,0,135054,10,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15497,4,3,5,6,14,0,919,0,-1,0,132518,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15498,4,3,5,8,15,0,835,0,-1,0,132539,10,0,40,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15499,4,3,5,9,13,0,1086,0,-1,0,132612,10,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15500,4,3,5,5,19,0,500,0,-1,0,132626,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15501,4,1,7,16,12,0,1002,0,-1,0,133765,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15502,4,3,5,10,15,0,751,0,-1,0,132951,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15503,4,3,5,7,17,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15504,4,6,1,14,17,4,2010,0,-1,0,134956,9,0,70,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15505,4,3,5,3,18,0,0,0,-1,0,135058,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15506,4,3,5,8,16,0,835,0,-1,0,132542,10,0,40,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15507,4,3,5,9,14,0,1087,0,-1,0,132608,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15508,4,1,7,16,14,0,1003,0,-1,0,133766,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15509,4,3,5,10,16,0,751,0,-1,0,132953,10,0,30,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15510,4,3,5,6,15,0,919,0,-1,0,132504,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15511,4,3,5,7,19,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15512,4,6,1,14,19,4,2010,0,-1,0,134957,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15513,4,3,5,3,20,0,1173,0,-1,0,135037,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15514,4,3,5,5,21,0,501,0,-1,0,132624,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15515,4,3,5,6,20,0,921,0,-1,0,132505,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15516,4,3,5,8,22,0,837,0,-1,0,132579,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15517,4,3,5,9,20,0,1089,0,-1,0,132615,10,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15518,4,3,5,5,25,0,502,0,-1,0,132639,10,0,100,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15519,4,1,7,16,18,0,1004,0,-1,0,133772,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15520,4,3,5,10,21,0,753,0,-1,0,132956,10,0,35,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15521,4,3,5,7,22,0,585,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15522,4,6,1,14,24,4,2022,0,-1,0,134953,9,0,85,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15523,4,3,5,3,22,0,1173,0,-1,0,135050,10,0,55,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15524,4,3,5,5,26,0,503,0,-1,0,132719,10,0,100,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15525,4,3,5,8,23,0,838,0,-1,0,132589,10,0,50,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15526,4,1,7,16,19,0,1004,0,-1,0,133763,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15527,4,3,5,10,22,0,753,0,-1,0,132956,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15528,4,3,5,6,21,0,921,0,-1,0,132516,10,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15529,4,3,5,7,24,0,586,0,-1,0,134706,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15530,4,6,1,14,26,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15531,4,3,5,3,25,0,1174,0,-1,0,135040,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15532,4,3,5,9,21,0,1089,0,-1,0,132615,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15533,4,3,5,1,26,0,671,0,-1,0,132767,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15534,4,3,5,8,26,0,839,0,-1,0,132541,10,0,50,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15535,4,3,5,9,24,0,1090,0,-1,0,132606,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15536,4,3,5,5,29,0,504,0,-1,0,132739,10,0,100,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15537,4,1,7,16,23,0,1006,0,-1,0,133754,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15538,4,3,5,10,25,0,754,0,-1,0,132949,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15539,4,3,5,6,25,0,922,0,-1,0,132515,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15540,4,3,5,1,29,0,672,0,-1,0,133077,10,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15541,4,3,5,7,28,0,587,0,-1,0,134583,10,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15542,4,3,5,3,27,0,1175,0,-1,0,135040,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15543,4,6,1,14,29,4,2034,0,-1,0,134955,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15544,4,3,5,8,27,0,839,0,-1,0,132539,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15545,4,3,5,9,25,0,1090,0,-1,0,132605,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15546,4,3,5,5,31,0,504,0,-1,0,132647,10,0,100,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15547,4,1,7,16,24,0,1006,0,-1,0,133769,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15548,4,3,5,10,27,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15549,4,3,5,6,26,0,923,0,-1,0,132510,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15550,4,3,5,1,30,0,672,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15551,4,3,5,7,30,0,588,0,-1,0,134584,10,0,75,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15552,4,6,1,14,31,4,2034,0,-1,0,134953,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15553,4,3,5,3,29,0,1176,0,-1,0,135049,10,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15554,4,3,5,6,28,0,923,0,-1,0,132513,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15555,4,3,5,8,28,0,839,0,-1,0,132592,10,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15556,4,3,5,9,27,0,1091,0,-1,0,132606,10,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15557,4,3,5,5,32,0,505,0,-1,0,132634,10,0,100,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15558,4,3,5,1,32,0,673,0,-1,0,132768,10,0,60,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15559,4,1,7,16,26,0,1007,0,-1,0,133757,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15560,4,3,5,10,29,0,756,0,-1,0,132945,10,0,35,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15561,4,3,5,7,31,0,588,0,-1,0,134583,10,0,75,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15562,4,3,5,3,31,0,1176,0,-1,0,135046,10,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15563,4,6,1,14,32,4,2040,0,-1,0,134953,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15564,0,0,8,0,40,0,0,0,-1,0,133604,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15565,4,3,5,8,33,0,841,0,-1,0,132535,10,0,50,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15566,4,3,5,9,30,0,1092,0,-1,0,132615,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15567,4,3,5,5,35,0,506,0,-1,0,132739,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15568,4,1,7,16,28,0,1007,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15569,4,6,1,14,35,4,2046,0,-1,0,134952,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15570,4,3,5,10,31,0,756,0,-1,0,132958,10,0,35,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15571,4,3,5,6,30,0,924,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15572,4,3,5,1,34,0,673,0,-1,0,132767,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15573,4,3,5,7,33,0,589,0,-1,0,134589,10,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15574,4,3,5,3,35,0,1178,0,-1,0,135058,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15575,4,3,5,6,31,0,924,0,-1,0,132516,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15576,4,3,5,8,34,0,841,0,-1,0,132584,10,0,50,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15577,4,3,5,9,31,0,1092,0,-1,0,132609,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15578,4,3,5,5,36,0,506,0,-1,0,132751,10,0,100,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15579,4,1,7,16,30,0,1008,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15580,4,3,5,1,35,0,674,0,-1,0,133141,10,0,60,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15581,4,3,5,10,33,0,757,0,-1,0,132945,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15582,4,3,5,7,35,0,590,0,-1,0,134589,10,0,75,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15583,4,3,5,3,36,0,1178,0,-1,0,135041,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15584,4,6,1,14,36,4,2044,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15585,4,1,7,10,0,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15586,12,0,0,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15587,4,2,8,6,0,0,0,0,-1,0,132523,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15588,4,3,5,6,0,0,0,0,-1,0,132510,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15589,4,3,5,8,36,0,842,0,-1,0,132535,10,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15590,4,3,5,9,32,0,1093,0,-1,0,132612,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15591,4,3,5,5,38,0,507,0,-1,0,132626,10,0,100,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15592,4,6,1,14,38,4,2050,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15593,4,3,5,1,37,0,674,0,-1,0,132767,10,0,60,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15594,4,1,7,16,32,0,1009,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15595,4,3,5,10,34,0,757,0,-1,0,132938,10,0,35,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15596,4,3,5,7,36,0,590,0,-1,0,134588,10,0,75,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15597,4,3,5,3,37,0,1178,0,-1,0,135052,10,0,60,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15598,4,3,5,6,33,0,925,0,-1,0,132519,10,0,35,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15599,4,3,5,8,39,0,843,0,-1,0,132585,10,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15600,4,3,5,9,37,0,1094,0,-1,0,132614,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15601,4,3,5,5,41,0,508,0,-1,0,132632,10,0,100,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15602,4,3,5,1,40,0,675,0,-1,0,133090,10,0,60,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15603,4,1,7,16,36,0,1010,0,-1,0,133763,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15604,4,6,1,14,41,4,2056,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15605,4,3,5,10,37,0,758,0,-1,0,132950,10,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15606,4,3,5,6,36,0,926,0,-1,0,132499,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15607,4,3,5,7,39,0,591,0,-1,0,134584,10,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15608,4,3,5,3,39,0,1179,0,-1,0,135040,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15609,4,3,5,5,42,0,508,0,-1,0,132627,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15610,4,3,5,9,38,0,1095,0,-1,0,132615,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15611,4,1,7,16,38,0,1011,0,-1,0,133763,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15612,4,3,5,10,39,0,759,0,-1,0,132963,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15613,4,3,5,6,37,0,926,0,-1,0,132524,10,0,35,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15614,4,3,5,8,40,0,843,0,-1,0,132590,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15615,4,3,5,1,41,0,676,0,-1,0,133070,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15616,4,3,5,7,41,0,592,0,-1,0,134581,10,0,75,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15617,4,3,5,3,40,0,1179,0,-1,0,135053,10,0,60,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15618,4,6,1,14,42,4,2056,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15619,4,3,5,6,43,0,928,0,-1,0,132518,10,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15620,4,3,5,9,42,0,1096,0,-1,0,132612,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15621,4,6,1,14,46,4,2062,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15622,4,3,5,5,46,0,509,0,-1,0,132741,10,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15623,4,3,5,1,45,0,677,0,-1,0,132767,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15624,4,1,7,16,40,0,1011,0,-1,0,133771,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15625,4,3,5,10,42,0,760,0,-1,0,132944,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15626,4,3,5,8,42,0,844,0,-1,0,132542,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15627,4,3,5,7,45,0,593,0,-1,0,134586,10,0,75,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15628,4,3,5,3,43,0,1180,0,-1,0,135032,10,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15629,4,3,5,9,43,0,1096,0,-1,0,132606,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15630,4,3,5,8,44,0,845,0,-1,0,132587,10,0,50,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15631,4,3,5,5,47,0,510,0,-1,0,132632,10,0,100,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15632,4,1,7,16,41,0,1012,0,-1,0,133754,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15633,4,6,1,14,47,4,2068,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15634,4,3,5,1,47,0,678,0,-1,0,132767,10,0,60,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15635,4,3,5,10,43,0,760,0,-1,0,132963,10,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15636,4,3,5,6,44,0,929,0,-1,0,132524,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15637,4,3,5,7,46,0,593,0,-1,0,134584,10,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15638,4,3,5,3,44,0,1181,0,-1,0,135061,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15639,4,3,5,9,45,0,1097,0,-1,0,132608,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15640,4,3,5,5,51,0,511,0,-1,0,132743,10,0,100,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15641,4,3,5,6,46,0,929,0,-1,0,132492,10,0,35,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15642,4,3,5,8,47,0,846,0,-1,0,132536,10,0,50,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15643,4,1,7,16,44,0,1013,0,-1,0,133774,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15644,4,3,5,10,47,0,762,0,-1,0,132956,10,0,35,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15645,4,3,5,1,50,0,679,0,-1,0,133076,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15646,4,3,5,7,50,0,595,0,-1,0,134583,10,0,75,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15647,4,3,5,3,48,0,1182,0,-1,0,135055,10,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15648,4,6,1,14,51,4,2074,0,-1,0,134965,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15649,4,3,5,9,46,0,1097,0,-1,0,132609,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15650,4,3,5,5,52,0,511,0,-1,0,132722,10,0,100,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15651,4,3,5,1,51,0,679,0,-1,0,132768,10,0,60,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15652,4,1,7,16,46,0,1013,0,-1,0,133760,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15653,4,3,5,10,48,0,762,0,-1,0,132938,10,0,35,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15654,4,3,5,6,49,0,930,0,-1,0,132496,10,0,35,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15655,4,3,5,7,51,0,595,0,-1,0,134586,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15656,4,3,5,3,49,0,1182,0,-1,0,135054,10,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15657,4,6,1,14,52,4,2074,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15658,4,3,5,8,54,0,848,0,-1,0,132589,10,0,50,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15659,4,3,5,9,50,0,1099,0,-1,0,132614,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15660,4,3,5,5,56,0,513,0,-1,0,132736,10,0,100,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15661,4,1,7,16,49,0,1014,0,-1,0,133763,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15662,4,3,5,10,52,0,763,0,-1,0,132963,10,0,35,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15663,4,3,5,6,51,0,931,0,-1,0,132507,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15664,4,3,5,1,55,0,680,0,-1,0,133111,10,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15665,4,3,5,7,55,0,596,0,-1,0,134581,10,0,75,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15666,4,3,5,3,54,0,1184,0,-1,0,135044,10,0,60,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15667,4,6,1,14,56,4,2086,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15668,4,3,5,9,53,0,1100,0,-1,0,132609,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15669,4,3,5,5,57,0,513,0,-1,0,132629,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15670,4,3,5,1,56,0,681,0,-1,0,133101,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15671,4,1,7,16,51,0,1015,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15672,4,3,5,10,55,0,764,0,-1,0,132953,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15673,4,3,5,6,53,0,932,0,-1,0,132500,10,0,35,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15674,4,3,5,8,55,0,848,0,-1,0,132536,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15675,4,6,1,14,57,4,2086,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15676,4,3,5,7,56,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15677,4,3,5,3,56,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15678,4,3,5,8,58,0,849,0,-1,0,132584,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15679,4,3,5,9,56,0,1101,0,-1,0,132602,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15680,4,3,5,5,60,0,514,0,-1,0,132751,10,0,100,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15681,4,1,7,16,53,0,1016,0,-1,0,133766,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15682,4,3,5,10,58,0,765,0,-1,0,132938,10,0,35,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15683,4,3,5,6,55,0,932,0,-1,0,132500,10,0,35,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15684,4,3,5,1,59,0,682,0,-1,0,133101,10,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15685,4,3,5,7,58,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15686,4,3,5,3,58,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15687,4,6,1,14,60,4,2092,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15688,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15689,4,0,1,11,0,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15690,4,0,3,2,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15691,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +15692,2,19,2,26,0,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15693,4,2,8,3,54,0,1163,0,-1,0,135055,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15694,4,3,5,8,49,0,846,0,-1,0,132589,10,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15695,4,6,1,14,0,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15696,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15697,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15698,4,3,5,3,0,0,0,0,-1,0,135045,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15699,15,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15702,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15703,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15704,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15705,2,7,1,13,0,3,0,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,115,0,0,0,0 +15706,2,15,1,13,0,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +15707,4,1,7,6,0,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15708,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15709,4,4,6,6,0,0,0,0,-1,0,132522,11,0,40,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15710,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15722,12,0,0,0,0,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15723,0,0,3,0,50,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15724,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15725,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15726,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15727,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15728,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15729,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15730,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15731,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15732,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15733,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15734,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15735,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15736,12,0,0,0,0,0,0,0,-1,0,133715,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15737,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15738,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15739,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15740,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15741,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15742,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15743,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15744,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15745,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15746,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15747,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15748,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15749,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15750,12,0,0,0,0,0,0,0,-1,0,135161,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15751,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15752,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15753,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15754,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15755,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15756,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15757,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15758,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15759,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15760,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15761,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15762,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15763,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15764,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15765,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15766,12,0,3,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15767,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15768,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15772,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15773,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15774,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15775,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15776,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15777,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15778,0,0,3,0,0,0,0,0,-1,0,132189,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15779,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15780,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15781,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15782,2,7,1,13,0,3,0,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +15783,2,15,1,13,0,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +15784,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15785,12,0,0,0,0,0,0,0,-1,0,134178,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15786,4,2,8,5,0,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15787,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15788,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15789,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15790,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15791,4,1,7,6,0,0,0,0,-1,0,132499,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15792,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15793,15,0,0,0,0,0,0,0,-1,0,133726,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15794,4,0,0,7,0,0,0,0,-1,0,134706,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15795,4,4,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15796,4,3,5,9,0,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15797,4,4,6,9,0,0,0,0,-1,0,132617,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15798,15,0,0,0,0,0,0,0,-1,0,133724,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15799,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15800,2,7,1,13,0,3,0,0,-1,0,135327,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +15801,2,7,1,13,0,3,0,0,-1,0,135326,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +15802,4,1,7,8,51,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15803,12,0,8,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15804,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15805,4,0,3,23,0,7,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15806,2,7,1,13,0,3,0,0,-1,0,135344,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +15807,2,18,2,26,3,0,0,0,-1,0,135531,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,0,0,0 +15808,2,18,2,26,16,0,0,0,-1,0,135531,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,20,0,0,0,0 +15809,2,18,2,26,29,0,0,0,-1,0,135532,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,37,0,0,0,0 +15810,2,6,1,17,20,1,0,0,-1,0,135128,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,60,0,0,0,0 +15811,2,6,1,17,30,1,0,0,-1,0,135129,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,102,0,0,0,0 +15812,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15813,4,3,5,6,0,0,0,0,-1,0,132511,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15814,2,7,1,13,0,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +15815,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0 +15822,4,2,8,3,0,0,0,0,-1,0,135055,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15823,4,3,5,10,0,0,0,0,-1,0,132963,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15824,4,1,7,20,0,0,0,0,-1,0,132648,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15825,4,2,8,5,0,0,0,0,-1,0,132741,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15826,12,0,0,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15827,4,3,5,5,0,0,0,0,-1,0,132626,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15842,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15843,12,0,0,0,0,0,0,0,-1,0,134743,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15844,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15845,12,0,0,0,0,0,0,0,-1,0,134743,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15846,7,3,8,0,0,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15847,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15848,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15849,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15850,12,0,0,0,0,0,0,0,-1,0,134349,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15851,12,0,0,0,0,0,0,0,-1,0,134522,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15852,12,0,0,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15853,2,0,1,13,0,3,0,0,-1,0,132399,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +15854,2,10,2,17,0,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,148,0,0,0,0 +15855,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15856,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15857,4,0,3,23,0,7,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,10,0,10,0,10,0,0,0,0,0,0,0,0,0,0 +15858,4,1,7,10,0,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15859,4,3,5,6,0,0,0,0,-1,0,132512,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15860,4,4,6,9,0,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15861,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15862,2,0,1,13,0,3,0,0,-1,0,135576,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +15863,2,4,2,21,0,3,0,0,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +15864,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15865,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15866,4,0,0,23,0,7,0,0,-1,0,133639,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15867,4,0,0,12,0,0,0,0,-1,0,134139,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15868,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15869,7,0,2,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15870,7,0,2,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15871,7,0,2,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15872,7,0,2,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15873,4,0,0,12,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15874,13,0,0,0,0,0,0,0,-1,0,134433,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15875,12,0,0,0,0,0,0,0,-1,0,133976,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15876,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15877,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15878,12,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15879,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15880,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15881,12,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15882,12,0,0,0,0,0,0,0,-1,0,133442,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15883,12,0,0,0,0,0,0,0,-1,0,133443,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15884,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15885,12,0,0,0,0,0,0,0,-1,0,133444,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15886,12,0,0,0,50,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15887,4,6,1,14,57,4,2088,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15888,4,6,1,14,55,4,2082,0,-1,0,134153,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15889,4,6,1,14,52,4,2082,0,-1,0,136051,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15890,4,6,1,14,54,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15891,4,6,1,14,21,4,0,0,-1,0,134965,9,0,80,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15892,4,6,1,14,27,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15893,4,6,1,14,16,4,0,0,-1,0,134955,9,0,65,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15894,4,6,1,14,20,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15895,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15902,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15903,2,13,1,21,20,7,0,0,-1,0,132941,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +15904,2,13,1,21,30,7,0,0,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +15905,2,13,1,21,10,7,0,0,-1,0,132938,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +15906,2,13,1,22,10,7,0,0,-1,0,132938,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +15907,2,13,1,22,20,7,0,0,-1,0,132941,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +15908,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15909,2,13,1,22,30,7,0,0,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +15910,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +15911,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15912,4,0,0,23,18,7,2008,0,-1,0,135467,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15913,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15914,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15915,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15916,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15917,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15918,4,0,0,23,33,7,2038,0,-1,0,134336,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15919,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15920,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15921,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15922,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15923,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15924,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15925,4,0,0,23,5,7,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15926,4,0,0,23,12,7,0,0,-1,0,134333,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15927,4,0,0,23,22,7,0,0,-1,0,134123,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15928,4,0,0,23,26,7,0,0,-1,0,135469,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15929,4,0,0,23,32,7,0,0,-1,0,134336,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15930,4,0,0,23,51,7,0,0,-1,0,135468,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15931,4,0,0,23,56,7,0,0,-1,0,135140,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15932,4,0,0,23,7,7,6273,0,-1,0,132790,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15933,4,0,0,23,10,7,6272,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15934,4,0,0,23,27,7,2026,0,-1,0,135154,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15935,4,0,0,23,29,7,2032,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15936,4,0,0,23,50,7,2074,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15937,4,0,0,23,46,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15938,4,0,0,23,53,7,2080,0,-1,0,134334,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15939,4,0,0,23,54,7,2080,0,-1,0,135466,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15940,4,0,0,23,57,7,2086,0,-1,0,135473,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15941,4,0,0,23,59,7,2092,0,-1,0,135467,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15942,4,0,0,23,60,7,2092,0,-1,0,135144,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15943,4,6,1,14,56,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15944,4,0,0,23,7,7,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15945,4,0,0,23,13,7,0,0,-1,0,135153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15946,4,0,0,23,18,7,0,0,-1,0,134121,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15947,4,0,0,23,23,7,0,0,-1,0,135160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15962,4,0,0,23,28,7,0,0,-1,0,135145,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15963,4,0,0,23,34,7,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15964,4,0,0,23,39,7,0,0,-1,0,134334,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15965,4,0,3,23,44,7,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15966,4,0,0,23,49,7,0,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +15967,4,0,0,23,54,7,0,0,-1,0,135464,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15968,4,0,0,23,59,7,0,0,-1,0,134337,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15969,4,0,0,23,5,7,6273,0,-1,0,134337,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15970,4,0,0,23,10,7,6272,0,-1,0,135465,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15971,4,0,0,23,15,7,2002,0,-1,0,135225,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15972,4,0,0,23,19,7,2008,0,-1,0,132795,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15973,4,0,0,23,25,7,2020,0,-1,0,135464,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15974,4,0,0,23,21,7,2014,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15975,4,0,0,23,26,7,2026,0,-1,0,135467,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15976,4,0,0,23,31,7,2032,0,-1,0,135474,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15977,4,0,0,23,32,7,2038,0,-1,0,134333,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15978,4,0,0,23,36,7,2044,0,-1,0,135169,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15979,4,0,0,23,37,7,2044,0,-1,0,135165,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15980,4,0,0,23,41,7,2056,0,-1,0,134337,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15981,4,0,0,23,42,7,2056,0,-1,0,134122,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15982,4,0,0,23,46,7,2062,0,-1,0,135150,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15983,4,0,0,23,47,7,2068,0,-1,0,135466,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15984,4,0,0,23,51,7,2074,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15985,4,0,0,23,52,7,2074,0,-1,0,135465,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15986,4,0,0,23,55,7,2080,0,-1,0,135160,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15987,4,0,0,23,56,7,2086,0,-1,0,134333,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15988,4,0,0,23,58,7,2086,0,-1,0,134335,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15989,4,0,0,23,60,7,2092,0,-1,0,135151,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15990,4,6,1,14,34,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15991,4,6,1,14,58,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15992,7,1,8,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15993,7,2,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15994,7,1,8,0,0,0,0,0,-1,0,132998,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15995,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +15996,7,3,0,0,0,0,0,0,-1,0,134301,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15997,6,3,2,24,52,0,0,0,-1,0,132385,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,0,0,0 +15998,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15999,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16000,7,1,6,0,0,0,0,0,-1,0,133027,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16001,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16002,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16003,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16004,2,3,1,26,50,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +16005,7,2,8,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16006,7,1,8,0,0,0,0,0,-1,0,133001,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16007,2,3,1,26,56,0,0,0,-1,0,135612,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +16008,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16009,4,0,3,2,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16022,7,3,8,12,50,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16023,7,3,8,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16024,12,0,0,0,0,0,0,0,-1,0,135277,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16025,12,0,0,0,0,0,0,0,-1,0,135277,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16026,4,4,6,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16027,4,4,6,5,0,0,0,0,-1,0,132737,11,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16028,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16029,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16030,4,4,6,8,0,0,0,0,-1,0,132590,11,0,55,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16031,4,4,6,3,0,0,0,0,-1,0,135051,11,0,70,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16032,4,0,0,0,0,0,0,0,-1,0,135051,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16033,4,4,6,9,0,0,0,0,-1,0,133344,11,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16034,4,0,0,16,0,0,0,0,-1,0,133773,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16035,4,4,6,1,0,0,0,0,-1,0,133075,11,0,70,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16036,4,0,0,5,0,0,0,0,-1,0,132649,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16037,4,0,0,7,0,0,0,0,-1,0,134589,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16038,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16039,2,8,1,17,52,1,0,0,-1,0,135351,9,0,100,0,0,6,0,0,0,0,0,0,0,0,0,0,129,1,0,0,0,194,20,0,0,0 +16040,7,2,8,0,0,0,0,0,-1,0,136173,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16041,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16042,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16043,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16044,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16045,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16046,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16047,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16048,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16049,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16050,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16051,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16052,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16053,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16054,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16055,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16056,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16057,1,0,7,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16058,4,0,5,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16059,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16060,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16061,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16062,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16063,4,1,7,10,30,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16064,4,3,5,6,30,0,0,0,-1,0,133693,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16065,4,2,8,8,30,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16066,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16067,4,0,0,11,0,0,0,0,-1,0,133343,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16068,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16069,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16070,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16071,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16072,9,5,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16073,9,5,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16074,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16075,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16076,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16077,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16078,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16079,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16080,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16081,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16082,9,9,0,0,35,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16083,9,9,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16084,9,7,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16085,9,7,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16086,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16102,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16103,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16104,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16105,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16106,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16107,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16108,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16109,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16110,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16111,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16112,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16113,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16114,12,0,0,0,0,0,0,0,-1,0,133486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16115,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16116,4,1,7,16,30,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16117,4,1,7,10,30,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16118,4,1,7,7,30,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16119,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16120,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16121,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16122,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16123,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16124,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16125,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16126,4,2,8,6,30,0,0,0,-1,0,133693,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16127,4,2,8,9,30,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16128,4,2,8,1,30,0,0,0,-1,0,133133,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16129,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16130,4,4,6,1,30,0,0,0,-1,0,133133,7,0,70,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16131,4,3,5,6,30,0,0,0,-1,0,133693,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16132,4,2,8,9,30,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16133,4,2,8,1,30,0,0,0,-1,0,133133,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16134,4,3,5,3,30,0,0,0,-1,0,135049,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16135,4,1,7,8,30,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16136,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16137,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16138,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16139,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16140,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16141,4,3,5,1,30,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16142,4,3,5,9,30,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16143,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16144,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16145,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16146,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16147,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16148,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16149,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16150,4,2,8,6,30,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16151,4,1,7,8,30,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16152,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16153,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16154,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16155,4,2,8,6,30,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16156,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16157,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16158,4,3,5,9,30,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16159,4,3,5,1,30,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16160,4,4,6,3,40,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16161,4,4,6,10,40,0,0,0,-1,0,132957,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16162,4,4,6,3,40,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16163,4,3,5,6,30,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16164,4,3,5,10,30,0,0,0,-1,0,132962,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16165,4,3,5,7,30,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16166,0,0,0,0,1,0,0,0,-1,0,132804,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16167,0,0,0,0,5,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16168,0,0,0,0,35,0,0,0,-1,0,133998,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16169,0,0,0,0,25,0,0,0,-1,0,133991,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16170,0,0,0,0,15,0,0,0,-1,0,134007,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16171,0,0,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16172,4,4,6,10,40,0,0,0,-1,0,132957,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16173,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16174,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16175,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16176,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16177,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16178,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16179,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16180,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16181,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16182,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16183,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16184,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16185,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16186,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16187,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16188,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16189,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16190,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16191,12,0,0,0,0,0,0,0,-1,0,134961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16192,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16202,7,0,2,0,0,0,0,0,-1,0,132865,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16203,7,0,2,0,0,0,0,0,-1,0,132864,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16204,7,0,2,0,0,0,0,0,-1,0,132856,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16205,12,0,0,0,0,0,0,0,-1,0,133944,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16206,7,0,1,0,0,5,0,0,-1,0,135156,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16207,7,0,1,0,0,5,0,0,-1,0,135471,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16208,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16209,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16210,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16211,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16212,2,7,1,13,0,3,0,0,-1,0,132312,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +16213,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16214,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16215,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16216,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16217,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16218,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16219,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16220,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16221,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16222,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16223,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16224,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16242,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16243,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16244,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16245,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16246,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16247,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16248,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16249,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16250,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16251,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16252,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16253,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16254,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16255,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16262,12,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16263,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16282,0,0,0,0,0,0,0,0,-1,0,134252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16283,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16302,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16303,12,0,0,0,20,0,0,0,-1,0,132941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16304,12,0,0,0,20,0,0,0,-1,0,132225,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16305,12,0,0,0,20,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16306,12,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16307,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16308,13,0,0,0,0,0,0,0,-1,0,134520,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16309,4,0,0,2,50,0,0,0,-1,0,133444,24,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16310,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16311,12,0,0,0,0,0,0,0,-1,0,134709,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16312,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16313,12,0,0,0,0,0,0,0,-1,0,132597,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16314,12,0,0,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16315,4,1,7,16,25,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16316,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16317,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16318,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16319,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16320,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16321,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16322,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16323,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16324,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16325,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16326,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16327,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16328,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16329,9,0,0,0,44,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16330,9,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16331,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16332,12,0,0,0,0,0,0,0,-1,0,134707,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16333,12,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16334,4,0,5,2,40,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16335,4,0,5,2,58,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16336,4,1,7,16,40,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16337,4,1,7,16,55,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16338,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16339,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16340,4,1,7,16,40,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16341,4,1,7,16,45,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16342,4,1,7,16,58,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16343,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16344,15,0,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16345,2,7,1,13,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +16346,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16347,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16348,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16349,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16350,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16351,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16352,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16353,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16354,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16355,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16356,9,0,0,0,56,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16357,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16358,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16359,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16360,9,0,0,0,42,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16361,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16362,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16363,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16364,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16365,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16366,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16367,4,1,7,6,55,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16368,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16369,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16370,4,1,7,9,55,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16371,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16372,9,0,0,0,44,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16373,9,0,0,0,52,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16374,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16375,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16376,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16377,9,0,0,0,46,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16378,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16379,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16380,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16381,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16382,9,0,0,0,46,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16383,9,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16384,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16385,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16386,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16387,9,0,0,0,56,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16388,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16389,9,0,0,0,52,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16390,9,0,0,0,42,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16391,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16392,4,2,8,8,58,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16393,4,2,8,8,58,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16394,4,2,8,9,55,0,0,0,-1,0,132601,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16395,4,2,8,9,55,0,0,0,-1,0,132601,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16396,4,2,8,10,58,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16397,4,2,8,10,58,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16398,4,2,8,6,55,0,0,0,-1,0,132512,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16399,4,2,8,6,55,0,0,0,-1,0,132512,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16400,4,3,5,6,55,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16401,4,3,5,8,58,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16402,4,3,5,9,55,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16403,4,3,5,10,58,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16404,4,4,6,9,55,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16405,4,4,6,8,58,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16406,4,4,6,10,58,0,0,0,-1,0,132957,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16407,4,4,6,6,55,0,0,0,-1,0,132516,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16408,12,0,0,0,23,0,0,0,-1,0,136222,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16409,4,4,6,8,58,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16410,4,4,6,10,58,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16411,4,4,6,6,55,0,0,0,-1,0,132516,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16412,4,4,6,9,55,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16413,4,1,7,20,58,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16414,4,1,7,7,58,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16415,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16416,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16417,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16418,4,2,8,1,58,0,0,0,-1,0,133144,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16419,4,2,8,7,58,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16420,4,2,8,3,58,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16421,4,2,8,5,58,0,0,0,-1,0,132725,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16422,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16423,4,2,8,3,58,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16424,4,2,8,1,58,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16425,4,3,5,5,58,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16426,4,3,5,7,58,0,0,0,-1,0,134590,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16427,4,3,5,3,58,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16428,4,3,5,1,58,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16429,4,4,6,1,58,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16430,4,4,6,5,58,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16431,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16432,4,4,6,3,58,0,0,0,-1,0,135051,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16433,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16434,4,4,6,1,58,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16435,4,4,6,7,58,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16436,4,4,6,3,58,0,0,0,-1,0,135059,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16437,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16438,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16439,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16440,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16441,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16442,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16443,4,1,7,20,60,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16444,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16445,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16446,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16447,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16448,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16449,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16450,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16451,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16452,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16453,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16454,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16455,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16456,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16457,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16458,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16459,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16460,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16461,4,3,5,9,60,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16462,4,3,5,8,60,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16463,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16464,4,3,5,6,60,0,0,0,-1,0,132517,10,0,50,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16465,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16466,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16467,4,3,5,7,60,0,0,0,-1,0,134669,10,0,105,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16468,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16469,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16470,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16471,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16472,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16473,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16474,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16475,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16476,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16477,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16478,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16479,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16480,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16481,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16482,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16483,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16484,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16485,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16486,4,1,7,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16487,4,1,7,10,58,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16488,4,1,7,6,55,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16489,4,1,7,1,58,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16490,4,1,7,7,58,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16491,4,1,7,20,58,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16492,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16493,4,2,8,9,55,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16494,4,2,8,8,58,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16495,4,2,8,6,55,0,0,0,-1,0,132495,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16496,4,2,8,10,58,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16497,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16498,4,2,8,8,58,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16499,4,2,8,10,58,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16500,4,2,8,6,55,0,0,0,-1,0,132495,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16501,4,2,8,3,58,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16502,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16503,4,2,8,1,58,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16504,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16505,4,2,8,5,58,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16506,4,2,8,1,58,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16507,4,2,8,3,58,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16508,4,2,8,7,58,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16509,4,4,6,8,58,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16510,4,4,6,10,58,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16511,4,4,6,6,55,0,0,0,-1,0,132498,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16512,4,4,6,9,55,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16513,4,4,6,5,58,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16514,4,4,6,1,58,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16515,4,4,6,7,58,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16516,4,4,6,3,58,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16517,4,3,5,9,55,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16518,4,3,5,8,58,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16519,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16520,4,3,5,6,55,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16521,4,3,5,1,58,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16522,4,3,5,5,58,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16523,4,3,5,7,58,0,0,0,-1,0,134589,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16524,4,3,5,3,58,0,0,0,-1,0,135035,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16525,4,3,5,5,58,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16526,4,3,5,1,58,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16527,4,3,5,7,58,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16528,4,3,5,3,58,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16529,4,3,5,6,55,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16530,4,3,5,10,58,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16531,4,3,5,8,58,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16532,4,3,5,9,58,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16533,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16534,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16535,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16536,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16537,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16538,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16539,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16540,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16541,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16542,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16543,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16544,4,4,6,3,60,0,0,0,-1,0,135042,11,0,100,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16545,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16546,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16547,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16548,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16549,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16550,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16551,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16552,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16553,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16554,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16555,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16556,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16557,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16558,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16559,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16560,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16561,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16562,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16563,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16564,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16565,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16566,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16567,4,3,5,7,60,0,0,0,-1,0,134668,10,0,105,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16568,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16569,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16570,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16571,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16572,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16573,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16574,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16575,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16576,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16577,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16578,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16579,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16580,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16581,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16582,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +16583,5,0,2,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16602,12,0,0,0,0,0,0,0,-1,0,133447,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16603,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16604,4,1,7,20,0,0,0,0,-1,0,132677,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16605,4,1,7,20,0,0,0,0,-1,0,132645,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16606,4,1,7,20,0,0,0,0,-1,0,132645,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16607,4,1,7,20,0,0,0,0,-1,0,132660,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16608,4,2,8,6,0,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16622,2,2,2,15,0,0,0,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +16623,4,0,3,2,0,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16642,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16643,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16644,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16645,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16646,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16647,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16648,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16649,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16650,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16651,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16652,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16653,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16654,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16655,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16656,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16657,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16658,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16659,4,2,8,6,0,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16660,4,6,1,14,0,4,0,0,-1,0,134962,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16661,4,1,7,16,0,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16662,12,0,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16663,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16664,4,3,5,9,49,0,1098,0,-1,0,132613,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16665,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16666,4,3,5,5,58,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16667,4,3,5,1,57,0,0,0,-1,0,133072,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16668,4,3,5,7,56,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16669,4,3,5,3,55,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16670,4,3,5,8,54,0,0,0,-1,0,132592,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16671,4,3,5,9,52,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16672,4,3,5,10,54,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16673,4,3,5,6,53,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16674,4,3,5,5,58,0,0,0,-1,0,132625,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16675,4,3,5,8,54,0,0,0,-1,0,132588,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16676,4,3,5,10,54,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16677,4,3,5,1,57,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16678,4,3,5,7,56,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16679,4,3,5,3,55,0,0,0,-1,0,135041,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16680,4,3,5,6,53,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16681,4,3,5,9,52,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16682,4,1,7,8,54,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16683,4,1,7,9,52,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16684,4,1,7,10,54,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16685,4,1,7,6,53,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16686,4,1,7,1,57,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16687,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16688,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16689,4,1,7,3,55,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16690,4,1,7,20,58,0,0,0,-1,0,132652,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16691,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16692,4,1,7,10,54,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16693,4,1,7,1,57,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16694,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16695,4,1,7,3,55,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16696,4,1,7,6,53,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16697,4,1,7,9,52,0,0,0,-1,0,132520,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16698,4,1,7,1,57,0,0,0,-1,0,133131,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16699,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16700,4,1,7,20,58,0,0,0,-1,0,132690,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16701,4,1,7,3,55,0,0,0,-1,0,133732,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16702,4,1,7,6,53,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16703,4,1,7,9,52,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16704,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16705,4,1,7,10,54,0,0,0,-1,0,132966,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16706,4,2,8,5,58,0,0,0,-1,0,132741,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16707,4,2,8,1,57,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16708,4,2,8,3,55,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16709,4,2,8,7,56,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16710,4,2,8,9,52,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16711,4,2,8,8,54,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16712,4,2,8,10,54,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16713,4,2,8,6,53,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16714,4,2,8,9,52,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16715,4,2,8,8,54,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16716,4,2,8,6,53,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16717,4,2,8,10,54,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16718,4,2,8,3,55,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16719,4,2,8,7,56,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16720,4,2,8,1,57,0,0,0,-1,0,133129,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16721,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16722,4,4,6,9,52,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16723,4,4,6,6,53,0,0,0,-1,0,132500,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16724,4,4,6,10,54,0,0,0,-1,0,132953,11,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16725,4,4,6,8,54,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16726,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16727,4,4,6,1,57,0,0,0,-1,0,133076,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16728,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16729,4,4,6,3,55,0,0,0,-1,0,135041,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16730,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16731,4,4,6,1,57,0,0,0,-1,0,133070,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16732,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16733,4,4,6,3,55,0,0,0,-1,0,135061,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16734,4,4,6,8,54,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16735,4,4,6,9,52,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16736,4,4,6,6,53,0,0,0,-1,0,132523,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16737,4,4,6,10,54,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16738,4,1,7,10,0,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16739,4,2,8,3,0,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16740,4,1,7,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16741,4,2,8,10,0,0,0,0,-1,0,132946,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16742,12,0,0,0,0,0,0,0,-1,0,132407,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16743,12,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16744,12,0,0,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16745,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16746,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16747,15,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16748,15,0,0,0,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16762,12,0,0,0,0,0,0,0,-1,0,134462,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16763,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16764,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16765,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16766,0,0,0,0,35,0,0,0,-1,0,132804,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16767,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16768,4,0,3,23,0,7,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16769,2,4,2,21,47,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +16782,12,0,0,0,21,0,0,0,-1,0,136222,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16783,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16784,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16785,12,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16786,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16787,12,0,0,2,0,0,0,0,-1,0,133608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16788,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16789,2,19,2,26,0,0,0,0,-1,0,135145,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +16790,15,0,0,0,17,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16791,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16792,2,4,2,21,32,3,5242,0,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +16793,4,3,5,3,0,0,0,0,-1,0,135047,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16794,4,3,5,9,0,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16795,4,1,7,1,60,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,83,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16796,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,89,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16797,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,76,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16798,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,102,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16799,4,1,7,9,60,0,0,0,-1,0,132518,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16800,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,70,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16801,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,63,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16802,4,1,7,6,60,0,0,0,-1,0,132519,7,0,35,0,0,0,0,0,0,57,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16803,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,70,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16804,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16805,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,63,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16806,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,57,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16807,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,76,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16808,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,83,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16809,4,1,7,20,60,0,0,0,-1,0,132650,7,0,100,0,0,0,0,0,0,102,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16810,4,1,7,7,60,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,89,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16811,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,70,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16812,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,63,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16813,4,1,7,1,60,0,0,0,-1,0,133136,7,0,60,0,0,0,0,0,0,83,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16814,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,89,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16815,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,102,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16816,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,76,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16817,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,57,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16818,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,65,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16819,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16820,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,200,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16821,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,163,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16822,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,175,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16823,4,2,8,3,60,0,0,0,-1,0,135056,7,0,70,0,0,0,0,0,0,150,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16824,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,138,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16825,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16826,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,125,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16827,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,113,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16828,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,113,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16829,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,138,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16830,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16831,4,2,8,10,60,0,0,0,-1,0,132941,7,0,40,0,0,0,0,0,0,125,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16832,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,169,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16833,4,2,8,20,60,0,0,0,-1,0,132647,7,0,120,0,0,0,0,0,0,200,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16834,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,163,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16835,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,175,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16836,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,150,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16837,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,290,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16838,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,237,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16839,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,264,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16840,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16841,4,3,5,20,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,422,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16842,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,343,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16843,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,369,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16844,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,317,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16845,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,422,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16846,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,343,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16847,4,3,5,7,60,0,0,0,-1,0,134655,10,0,105,0,0,0,0,0,0,369,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16848,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,317,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16849,4,3,5,8,60,0,0,0,-1,0,132556,10,0,70,0,0,0,0,0,0,290,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16850,4,3,5,9,60,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16851,4,3,5,6,60,0,0,0,-1,0,132517,10,0,50,0,0,0,0,0,0,237,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16852,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,264,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16853,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,749,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16854,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,608,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16855,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,655,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16856,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,562,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16857,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16858,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,421,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16859,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,515,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16860,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,468,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16861,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16862,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,515,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16863,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,468,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16864,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,421,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16865,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,749,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16866,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,608,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16867,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,655,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16868,4,4,6,3,60,0,0,0,-1,0,135046,11,0,100,0,0,0,0,0,0,562,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16869,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16870,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16871,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16872,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16873,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16882,15,0,1,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16883,15,0,1,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16884,15,0,1,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16885,15,0,1,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16886,2,7,1,13,0,3,0,0,-1,0,135343,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +16887,4,0,1,23,0,7,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16888,12,0,0,0,0,0,0,0,-1,0,133444,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16889,2,10,2,17,0,2,0,0,-1,0,135157,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,50,0,0,0,0 +16890,2,7,1,13,0,3,0,0,-1,0,135343,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +16891,2,7,1,13,0,3,0,0,-1,0,135324,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +16892,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16893,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16894,2,10,2,17,0,2,0,0,-1,0,135469,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +16895,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16896,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16897,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,225,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16898,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,154,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16899,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,140,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16900,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,183,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16901,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,197,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16902,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,169,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16903,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,126,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16904,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16905,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,225,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16906,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,154,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16907,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,140,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16908,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,183,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16909,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,197,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16910,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,126,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16911,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16912,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,80,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16913,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,72,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16914,4,1,7,1,60,0,0,0,-1,0,133172,7,0,60,0,0,0,0,0,0,94,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16915,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16916,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,116,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16917,4,1,7,3,60,0,0,0,-1,0,135063,7,0,60,0,0,0,0,0,0,87,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16918,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16919,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,80,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16920,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,72,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16921,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,94,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +16922,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0 +16923,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,116,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16924,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,87,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16925,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,65,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16926,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16927,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,80,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16928,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,72,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16929,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,94,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16930,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,101,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16931,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,116,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16932,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,87,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16933,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,65,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16934,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16935,4,3,5,9,60,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16936,4,3,5,6,60,0,0,0,-1,0,132517,10,0,50,0,0,0,0,0,0,271,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16937,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,362,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16938,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,422,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16939,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,392,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16940,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,301,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16941,4,3,5,8,60,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,332,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16942,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,482,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16943,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16944,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,271,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16945,4,3,5,3,60,0,0,0,-1,0,135064,10,0,85,0,0,0,0,0,0,362,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16946,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,422,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16947,4,3,5,1,60,0,0,0,-1,0,133171,10,0,85,0,0,0,0,0,0,392,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16948,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,301,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16949,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,332,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16950,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,482,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16951,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16952,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,482,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16953,4,4,6,3,60,0,0,0,-1,0,135068,11,0,100,0,0,0,0,0,0,642,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16954,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,749,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16955,4,4,6,1,60,0,0,0,-1,0,133176,11,0,100,0,0,0,0,0,0,696,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16956,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,535,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16957,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,589,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16958,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,857,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16959,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16960,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,482,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16961,4,4,6,3,60,0,0,0,-1,0,135065,11,0,100,0,0,0,0,0,0,642,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16962,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,749,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16963,4,4,6,1,60,0,0,0,-1,0,133173,11,0,100,0,0,0,0,0,0,696,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16964,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,535,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16965,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,589,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16966,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,857,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16967,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16968,12,0,0,0,0,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16969,12,0,0,0,0,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16970,12,0,0,0,0,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16971,0,0,0,0,40,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16972,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16973,12,0,0,0,0,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16974,12,0,3,0,0,0,0,0,-1,0,134868,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16975,4,1,7,6,0,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16976,12,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16977,4,2,8,8,0,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16978,4,3,5,10,0,0,0,0,-1,0,132949,10,0,40,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16979,4,1,7,10,57,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,60,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16980,4,1,7,3,56,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,71,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16981,4,1,7,9,0,0,0,0,-1,0,132609,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16982,4,2,8,8,54,0,0,0,-1,0,132541,7,0,60,0,0,0,0,0,0,126,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16983,4,2,8,1,55,0,0,0,-1,0,133076,7,0,70,0,0,0,0,0,0,150,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16984,4,3,8,8,56,0,0,0,-1,0,132590,7,0,70,0,0,0,0,0,0,270,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16985,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16986,4,3,5,10,0,0,0,0,-1,0,132943,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16987,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16988,4,3,5,3,57,0,0,0,-1,0,135054,10,0,85,0,0,0,0,0,0,299,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16989,4,3,6,6,54,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,214,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16990,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16991,12,0,0,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16992,2,3,1,26,0,0,0,0,-1,0,135617,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +16993,2,19,2,26,0,0,0,0,-1,0,135465,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,132,0,0,0,0 +16994,4,2,8,10,0,0,0,0,-1,0,132936,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16995,4,2,8,3,0,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16996,2,2,2,15,0,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +16997,2,19,2,26,0,0,0,0,-1,0,135467,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +16998,4,6,1,14,0,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16999,4,0,0,11,54,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17000,4,0,0,11,0,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0 +17001,4,0,0,11,0,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17002,2,0,1,13,0,3,0,0,-1,0,135575,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +17003,2,4,2,21,0,3,0,0,-1,0,133731,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +17004,2,10,2,17,0,2,0,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +17005,4,2,8,5,0,0,0,0,-1,0,135017,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17006,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17007,4,3,5,10,46,0,0,0,-1,0,132949,10,0,50,0,0,0,0,0,0,209,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17008,15,0,0,0,28,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17009,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17010,5,0,0,0,0,0,0,0,-1,0,135812,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17011,5,0,0,0,0,0,0,0,-1,0,136025,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17012,7,0,8,0,0,0,0,0,-1,0,132386,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17013,4,4,6,7,55,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,598,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17014,4,4,6,9,54,0,0,0,-1,0,132606,11,0,55,0,0,0,0,0,0,294,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17015,2,7,1,21,60,3,0,0,-1,0,135358,8,0,90,0,0,0,0,0,0,0,0,6,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +17016,2,0,1,21,60,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,6,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +17017,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17018,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17019,5,0,2,0,0,0,0,0,-1,0,133849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17020,5,0,2,0,0,0,0,0,-1,0,133848,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17021,5,0,2,0,0,0,0,0,-1,0,133749,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17022,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17023,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17024,5,0,2,0,0,0,0,0,-1,0,134413,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17025,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17026,5,0,2,0,0,0,0,0,-1,0,134412,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17027,5,0,2,0,0,0,0,0,-1,0,133750,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17028,5,0,2,0,0,0,0,0,-1,0,133752,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17029,5,0,2,0,0,0,0,0,-1,0,133751,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17030,5,0,2,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17031,5,0,2,0,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17032,5,0,2,0,0,0,0,0,-1,0,134421,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17033,5,0,2,0,0,0,0,0,-1,0,135259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17034,5,0,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17035,5,0,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17036,5,0,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17037,5,0,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17038,5,0,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17039,2,4,2,21,0,3,0,0,-1,0,133728,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +17040,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17041,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17042,2,3,1,26,0,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +17043,4,1,7,20,0,0,0,0,-1,0,132647,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17044,4,0,5,2,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17045,4,0,5,11,0,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17046,2,0,1,13,0,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,46,0,0,0,0 +17047,4,1,7,3,0,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17048,0,0,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17049,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17050,4,1,7,20,47,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +17051,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17052,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17053,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17054,2,7,1,13,45,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +17055,2,4,2,13,45,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17056,15,0,2,0,0,0,0,0,-1,0,132917,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17057,15,0,2,0,0,0,0,0,-1,0,134310,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17058,15,0,2,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17059,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17060,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17061,4,1,7,16,53,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,41,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +17062,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17063,4,0,3,11,60,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17064,4,0,2,12,60,0,0,0,-1,0,134317,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17065,4,0,0,2,60,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17066,4,6,1,14,60,4,0,0,-1,0,134956,9,0,120,0,0,0,0,0,0,2539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17067,4,0,3,23,60,7,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17068,2,0,1,13,60,3,0,0,-1,0,132400,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +17069,2,2,2,15,60,0,0,0,-1,0,135496,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,129,0,0,0,0 +17070,2,15,1,13,60,3,0,0,-1,0,135642,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +17071,2,15,1,13,60,3,0,0,-1,0,135654,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,119,0,0,0,0 +17072,2,3,1,26,60,0,0,0,-1,0,135618,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +17073,2,5,2,17,60,1,0,0,-1,0,133041,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +17074,2,6,1,17,58,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +17075,2,7,1,13,60,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +17076,2,8,1,17,60,1,0,0,-1,0,135302,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,310,0,0,0,0 +17077,2,19,2,26,58,0,0,0,-1,0,135150,21,0,75,0,2,0,0,0,0,0,0,10,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +17078,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,55,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0 +17082,4,0,2,12,60,0,0,0,-1,0,134337,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17102,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,57,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +17103,2,7,1,21,60,3,0,0,-1,0,135349,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +17104,2,1,1,17,60,1,0,0,-1,0,132400,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +17105,2,4,2,13,60,3,0,0,-1,0,133042,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +17106,4,6,1,14,60,4,0,0,-1,0,134954,9,0,120,0,0,0,0,0,0,2822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17107,4,1,7,16,60,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,56,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0 +17108,4,0,3,11,60,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17109,4,0,0,2,60,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17110,4,0,3,11,60,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +17111,4,0,0,2,60,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17112,2,4,2,21,60,3,0,0,-1,0,133042,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,175,0,0,0,0 +17113,2,10,2,17,60,2,0,0,-1,0,135225,13,0,120,0,0,0,0,0,0,0,0,5,5,5,5,5,168,0,0,0,0,252,0,0,0,0 +17114,12,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17115,12,0,0,0,0,0,0,0,-1,0,133786,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17116,12,0,0,0,0,0,0,0,-1,0,133786,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17117,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17118,12,0,0,0,0,0,0,0,-1,0,132761,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17119,0,0,0,0,5,0,0,0,-1,0,134024,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17122,12,0,0,0,0,0,0,0,-1,0,132483,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17123,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17124,12,0,0,0,0,0,0,0,-1,0,133598,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17125,12,0,0,0,0,0,0,0,-1,0,133434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17126,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17142,2,15,0,13,60,1,0,0,-1,0,135271,8,0,95,0,0,5,0,0,0,0,0,0,0,0,0,0,52,10,0,0,0,61,15,0,0,0 +17162,0,0,0,0,1,0,0,0,-1,0,132381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17163,0,0,0,0,1,0,0,0,-1,0,132387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17182,2,5,1,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,223,0,0,0,0,372,0,0,0,0 +17183,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17184,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17185,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17186,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17187,4,6,1,14,9,4,0,0,-1,0,134949,9,0,50,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17188,4,6,1,14,14,4,0,0,-1,0,134956,9,0,65,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17189,4,6,1,14,29,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17190,4,6,1,14,42,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17191,12,0,0,0,0,0,0,0,-1,0,135153,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17192,4,6,1,14,19,4,0,0,-1,0,134956,9,0,75,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17193,2,5,2,17,60,1,0,0,-1,0,133066,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,295,0,0,0,0 +17194,7,0,0,0,0,0,0,0,-1,0,133644,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17195,15,0,0,0,0,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17196,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17197,0,0,0,0,1,0,0,0,-1,0,134018,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17198,0,0,0,0,1,0,0,0,-1,0,132791,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17199,0,0,0,0,1,0,0,0,-1,0,132792,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17200,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17201,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17202,0,0,0,0,0,0,0,0,-1,0,132387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17203,7,0,2,0,0,0,0,0,-1,0,135824,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17204,7,0,2,0,0,0,0,0,-1,0,134124,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17222,0,0,0,0,35,0,0,0,-1,0,134022,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17223,2,6,1,17,58,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +17224,12,0,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17242,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17262,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17282,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +17283,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +17302,0,0,0,0,0,0,0,0,-1,0,133204,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17303,0,0,0,0,0,0,0,0,-1,0,133207,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17304,0,0,0,0,0,0,0,0,-1,0,133205,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17305,0,0,0,0,0,0,0,0,-1,0,133202,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17306,12,0,0,0,0,0,0,0,-1,0,134830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17307,0,0,0,0,0,0,0,0,-1,0,133206,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17308,0,0,0,0,0,0,0,0,-1,0,133203,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17309,12,0,0,0,0,0,0,0,-1,0,132606,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17310,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17322,12,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17323,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17324,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17325,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17326,12,0,0,0,0,0,0,0,-1,0,134008,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17327,12,0,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17328,12,0,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17329,12,0,0,0,0,0,0,0,-1,0,132960,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17330,12,0,0,0,0,0,0,0,-1,0,132937,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17331,12,0,0,0,0,0,0,0,-1,0,135817,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17332,12,0,0,0,0,0,0,0,-1,0,132953,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17333,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17342,2,7,1,22,1,3,7441,0,-1,0,135274,8,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17343,4,1,6,5,1,0,7441,0,-1,0,132633,10,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17344,0,0,0,0,1,0,0,0,-1,0,134017,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17345,12,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17346,12,0,0,0,0,0,0,0,-1,0,134967,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17347,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17348,0,0,0,0,45,0,0,0,-1,0,134818,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17349,0,0,0,0,35,0,0,0,-1,0,134819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17350,0,0,3,0,22,0,0,0,-1,0,134852,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17351,0,0,3,0,45,0,0,0,-1,0,134860,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17352,0,0,3,0,35,0,0,0,-1,0,134861,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17353,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17354,12,0,0,0,0,0,0,0,-1,0,136206,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17355,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17362,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17363,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17364,12,0,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17382,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17383,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +17384,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17402,0,0,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17403,0,0,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17404,0,0,7,0,5,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17405,0,0,3,0,25,0,0,0,-1,0,132819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17406,0,0,0,0,5,0,0,0,-1,0,133945,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17407,0,0,0,0,25,0,0,0,-1,0,133952,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17408,0,0,0,0,35,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17409,12,0,0,0,54,0,0,0,-1,0,135841,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17410,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17411,12,0,0,0,0,0,0,0,-1,0,134064,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17412,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17413,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17414,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17422,12,0,0,0,0,0,0,0,-1,0,135050,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17423,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17442,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17462,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17463,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +17482,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17502,12,0,0,0,0,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17503,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17504,12,0,0,0,0,0,0,0,-1,0,133445,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17505,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17506,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17507,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17508,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17522,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17523,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17542,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17562,4,1,7,8,58,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17563,4,1,7,9,55,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17564,4,1,7,10,58,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17565,4,1,7,6,55,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17566,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17567,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17568,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17569,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17570,4,1,7,1,58,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17571,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17572,4,1,7,20,58,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17573,4,1,7,3,58,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17574,4,1,7,6,55,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17575,4,1,7,9,55,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17576,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17577,4,1,7,10,58,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17578,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17579,4,1,7,7,60,0,0,0,-1,0,134603,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17580,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17581,4,1,7,20,60,0,0,0,-1,0,132650,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17582,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17583,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17584,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17585,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17586,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17587,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17588,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17589,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17590,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17591,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17592,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17593,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17594,4,1,7,8,58,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17595,4,1,7,9,55,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17596,4,1,7,10,58,0,0,0,-1,0,132964,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17597,4,1,7,6,55,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17598,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17599,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17600,4,1,7,20,58,0,0,0,-1,0,132652,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17601,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17602,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17603,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17604,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17605,4,1,7,20,60,0,0,0,-1,0,132643,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17606,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17607,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17608,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17609,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17610,4,1,7,1,58,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17611,4,1,7,7,58,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17612,4,1,7,20,58,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17613,4,1,7,3,58,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17614,4,1,7,6,55,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17615,4,1,7,9,55,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17616,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17617,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17618,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17619,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17620,4,1,7,10,60,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17621,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17622,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17623,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17624,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17625,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17626,12,0,0,0,0,0,0,0,-1,0,133565,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17642,12,0,0,0,0,0,0,0,-1,0,134354,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17643,12,0,0,0,0,0,0,0,-1,0,134354,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17662,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17682,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17683,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17684,12,0,1,0,0,0,0,0,-1,0,133440,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17685,15,0,0,0,0,0,0,0,-1,0,133203,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17686,2,2,2,15,0,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +17687,2,3,1,26,0,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +17688,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17689,12,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17690,4,0,0,12,0,0,0,0,-1,0,133283,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17691,4,0,0,12,0,0,0,0,-1,0,133429,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17692,4,0,0,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17693,12,0,3,0,0,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17694,4,0,0,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17695,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17696,12,0,3,0,0,0,0,0,-1,0,134804,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17702,12,0,0,0,0,0,0,0,-1,0,135156,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17703,12,0,0,0,0,0,0,0,-1,0,133441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17704,2,0,1,21,33,3,0,0,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,56,0,0,0,0 +17705,2,7,1,13,0,3,0,0,-1,0,135346,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +17706,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17707,4,0,3,2,49,0,0,0,-1,0,135227,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17708,0,0,3,0,28,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17709,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17710,2,15,1,21,49,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +17711,4,4,6,7,49,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,496,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17712,15,0,0,0,0,0,0,0,-1,0,135850,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17713,4,0,5,11,49,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17714,4,3,5,9,49,0,0,0,-1,0,132613,10,0,40,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17715,4,1,7,1,49,0,0,0,-1,0,132767,14,0,50,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17716,7,3,8,0,0,0,0,0,-1,0,135863,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17717,2,3,1,26,48,0,0,0,-1,0,135614,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,5,32,0,0,0,0,61,0,0,0,0 +17718,4,6,1,14,48,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,1835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17719,2,7,1,13,48,3,0,0,-1,0,135312,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +17720,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17721,4,2,8,10,33,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17722,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17723,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17724,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17725,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17726,15,0,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17727,15,0,0,0,0,0,0,0,-1,0,134140,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17728,4,2,8,8,48,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,105,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +17729,0,0,0,0,0,0,0,0,-1,0,136108,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17730,2,1,1,17,48,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +17731,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17732,4,1,7,3,48,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17733,2,4,2,21,48,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17734,4,4,6,1,48,0,0,0,-1,0,133122,11,0,80,0,0,0,0,0,0,453,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17735,15,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17736,4,3,5,10,48,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17737,4,0,3,23,48,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +17738,2,13,1,22,47,7,0,0,-1,0,132369,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +17739,4,1,7,16,47,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,37,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17740,4,2,8,1,47,0,0,0,-1,0,133101,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17741,4,1,7,20,46,0,0,0,-1,0,132656,7,0,80,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17742,4,2,8,5,46,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17743,2,10,2,17,0,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,209,0,0,0,0 +17744,4,0,5,12,46,0,0,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17745,2,19,2,26,46,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,5,0,0,0,56,0,0,0,0,104,0,0,0,0 +17746,4,4,6,9,46,0,0,0,-1,0,132605,11,0,45,0,0,0,0,0,0,235,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +17747,0,0,0,0,40,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17748,4,1,7,8,46,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,50,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0 +17749,4,2,8,3,46,0,0,0,-1,0,135037,7,0,60,0,0,0,0,0,0,111,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17750,4,1,7,6,46,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,37,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +17751,4,2,8,7,46,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,118,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17752,2,15,1,13,45,3,0,0,-1,0,135645,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +17753,2,2,2,15,0,0,0,0,-1,0,135491,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +17754,4,3,5,7,45,0,0,0,-1,0,134706,10,0,90,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17755,4,1,7,6,45,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,40,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +17756,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17757,12,0,0,0,0,0,0,0,-1,0,133277,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17758,12,0,0,0,0,0,0,0,-1,0,133279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17759,4,0,4,12,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17760,12,0,0,0,0,0,0,0,-1,0,134199,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17761,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17762,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17763,12,0,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17764,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17765,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17766,2,5,2,17,49,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +17767,4,3,5,1,46,0,0,0,-1,0,133119,10,0,70,0,0,0,0,0,0,249,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17768,4,0,5,11,0,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17769,4,3,8,3,0,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17770,4,4,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17771,7,0,2,0,0,0,0,0,-1,0,133235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17772,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17773,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17774,4,0,5,12,0,0,0,0,-1,0,133441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17775,4,1,7,20,0,0,0,0,-1,0,132690,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17776,4,2,8,1,0,0,0,0,-1,0,133137,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17777,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17778,4,2,8,6,0,0,0,0,-1,0,132514,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17779,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17780,2,15,1,21,49,3,0,0,-1,0,135279,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +17781,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17782,4,0,0,2,60,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0 +17783,4,0,0,2,60,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0 +17802,2,7,1,21,100,1,0,0,-1,0,135349,9,0,125,0,0,3,0,0,0,0,0,8,9,0,0,0,82,16,0,0,0,153,30,0,0,0 +17822,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17823,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17824,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17825,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17826,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17827,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17828,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17829,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17830,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17831,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17832,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17833,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17834,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17835,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17836,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17837,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17838,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17839,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17840,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17841,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17842,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17843,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17844,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17845,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17846,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17847,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17848,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17849,12,0,0,0,0,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17850,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17851,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17852,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17853,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17854,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17855,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17856,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17857,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17858,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17859,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17860,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17861,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17862,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17882,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17883,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17884,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17885,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17886,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17887,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17888,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17889,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17890,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17891,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17892,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17893,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17894,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17895,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17896,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17897,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17898,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17899,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17900,4,0,0,12,0,0,0,0,-1,0,133429,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17901,4,0,0,12,0,0,0,0,-1,0,133430,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17902,4,0,0,12,0,0,0,0,-1,0,133431,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0 +17903,4,0,0,12,0,0,0,0,-1,0,133432,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17904,4,0,0,12,0,0,0,0,-1,0,133433,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17905,4,0,0,12,0,0,0,0,-1,0,133283,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17906,4,0,0,12,0,0,0,0,-1,0,133284,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17907,4,0,0,12,0,0,0,0,-1,0,133285,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0 +17908,4,0,0,12,0,0,0,0,-1,0,133286,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17909,4,0,0,12,0,0,0,0,-1,0,133287,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17910,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17911,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17922,4,2,8,5,5,0,0,0,-1,0,132715,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17942,2,5,2,17,1,1,0,0,-1,0,133477,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +17943,2,4,2,21,48,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17962,15,0,3,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17963,15,0,3,0,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17964,15,0,3,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17965,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17966,1,0,8,18,0,0,0,0,-1,0,133655,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17967,7,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17968,7,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17969,15,0,3,0,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17982,4,0,3,11,60,0,3474,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18002,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18022,4,0,0,11,0,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18023,4,0,3,2,54,0,0,0,-1,0,134128,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18042,6,2,2,24,52,0,0,0,-1,0,132382,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,0,0,0 +18043,4,2,8,8,52,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,112,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18044,2,4,2,21,52,7,0,0,-1,0,132791,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +18045,0,0,0,0,40,0,0,0,-1,0,134003,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18046,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18047,4,3,5,8,57,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,251,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18048,2,4,2,21,55,3,0,0,-1,0,133043,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +18062,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18063,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18082,2,10,2,17,42,2,0,0,-1,0,135147,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +18083,4,1,7,10,42,0,0,0,-1,0,132943,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18102,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18103,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18104,4,3,5,6,58,0,0,0,-1,0,132492,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18105,0,0,0,0,0,0,0,0,-1,0,133854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18106,0,0,0,0,0,0,0,0,-1,0,133857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18122,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18123,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18142,12,0,0,0,1,0,0,0,-1,0,134162,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18143,12,0,0,0,1,0,0,0,-1,0,134323,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18144,12,0,0,0,1,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18145,12,0,0,0,1,0,0,0,-1,0,134060,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18146,12,0,0,0,1,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18147,12,0,0,0,1,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18148,12,0,0,0,1,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18149,12,0,0,0,0,0,0,0,-1,0,134418,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18150,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18151,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18152,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18153,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18154,0,0,0,0,0,0,0,0,-1,0,135724,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18155,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18156,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18157,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18158,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18159,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18160,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18161,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18162,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18163,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18164,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18165,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18166,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18167,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18168,4,6,0,14,60,4,0,0,-1,0,135741,0,0,120,0,0,0,0,0,0,2468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18169,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18170,12,0,0,0,0,0,0,0,-1,0,135849,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18171,12,0,0,0,0,0,0,0,-1,0,135987,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18172,12,0,0,0,0,0,0,0,-1,0,136074,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18173,12,0,0,0,0,0,0,0,-1,0,136185,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18182,12,0,0,0,0,0,0,0,-1,0,134139,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18202,2,13,1,22,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +18203,2,13,1,21,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +18204,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18205,4,0,0,2,60,0,0,0,-1,0,132501,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18206,12,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18207,12,0,0,0,0,0,0,0,-1,0,133725,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18208,4,1,7,16,60,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18209,0,0,0,0,0,0,0,0,-1,0,133001,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18222,15,0,0,0,0,0,0,0,-1,0,134196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18223,15,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18224,15,0,0,0,0,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18225,15,0,8,0,0,0,0,0,-1,0,132536,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18226,15,0,2,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18227,15,0,8,0,0,0,0,0,-1,0,132999,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18228,15,0,3,0,0,0,0,0,-1,0,134946,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18229,15,0,0,0,0,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18230,15,0,1,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18231,15,0,7,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18232,7,3,8,0,0,0,0,0,-1,0,132836,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18233,15,0,7,0,0,0,0,0,-1,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18234,15,0,2,0,0,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18235,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18236,15,0,0,0,0,0,0,0,-1,0,133854,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18237,15,0,0,0,0,0,0,0,-1,0,133726,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18238,4,2,8,10,35,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18239,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18240,7,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18241,15,0,0,0,40,0,0,0,-1,0,132251,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18242,15,0,0,0,40,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18243,15,0,0,0,40,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18244,15,0,0,0,40,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18245,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18246,15,0,0,0,40,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18247,15,0,0,0,40,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18248,15,0,0,0,40,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18249,13,0,0,0,0,0,0,0,-1,0,134244,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18250,15,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18251,0,0,8,0,50,0,0,0,-1,0,133600,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18252,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18253,0,0,3,0,50,0,0,0,-1,0,134827,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18254,0,0,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18255,0,0,0,0,45,0,0,0,-1,0,134011,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18256,7,0,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18257,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18258,0,0,0,0,55,0,0,0,-1,0,132636,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18259,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18260,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18261,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18262,7,0,0,0,50,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18263,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,43,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18264,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18265,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18266,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18267,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18268,13,0,0,0,0,0,0,0,-1,0,134238,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18269,0,0,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18282,2,3,1,26,60,0,0,0,-1,0,135614,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +18283,7,3,8,0,50,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18284,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18285,15,0,3,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18286,15,0,3,0,0,0,0,0,-1,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18287,0,0,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18288,0,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18289,4,0,2,2,51,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18290,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18291,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18292,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18293,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18294,0,0,3,0,35,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18295,4,1,7,8,50,0,3325,0,-1,0,132540,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18296,4,3,5,9,51,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18297,0,0,0,0,55,0,0,0,-1,0,132877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18298,4,2,8,7,51,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18299,12,0,0,0,0,0,0,0,-1,0,134808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18300,0,0,7,0,55,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18301,2,19,2,26,53,0,0,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,113,0,0,0,0 +18302,4,0,5,11,53,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18303,4,6,0,14,53,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18304,4,3,5,5,53,0,0,0,-1,0,132742,11,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18305,4,4,6,7,53,0,0,0,-1,0,134584,9,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18306,4,1,7,10,53,0,0,0,-1,0,132956,0,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18307,4,1,7,8,53,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18308,4,2,8,1,53,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18309,4,2,8,10,54,0,0,0,-1,0,132954,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18310,2,7,1,13,54,3,0,0,-1,0,135316,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +18311,2,10,2,17,53,2,0,0,-1,0,135151,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,167,0,0,0,0 +18312,4,4,6,5,54,0,0,0,-1,0,132746,9,0,135,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18313,4,4,6,1,53,0,0,0,-1,0,133121,9,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18314,4,0,5,11,54,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18315,4,0,5,11,54,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18316,4,0,3,23,53,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18317,4,0,3,2,53,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18318,4,3,5,8,54,0,0,0,-1,0,132535,11,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18319,4,3,5,1,53,0,3441,0,-1,0,133140,11,0,70,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18320,4,3,5,3,53,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18321,2,4,2,21,54,3,0,0,-1,0,133488,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,107,0,0,0,0 +18322,4,2,8,8,53,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18323,2,2,2,15,53,0,0,0,-1,0,135491,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +18324,2,1,6,17,53,1,0,0,-1,0,132408,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +18325,4,2,8,1,53,0,0,0,-1,0,133133,7,0,60,0,0,0,0,0,0,134,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18326,4,4,6,10,54,0,0,0,-1,0,132965,8,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18327,4,1,8,6,54,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18328,4,1,7,16,54,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,42,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0 +18329,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18330,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18331,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18332,9,0,0,0,50,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18333,9,0,0,0,50,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18334,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18335,15,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18336,12,0,0,0,0,0,0,0,-1,0,132956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18337,4,1,7,9,54,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18338,2,19,2,26,54,0,0,0,-1,0,135464,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +18339,4,1,7,16,54,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,38,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0 +18340,4,0,3,2,54,0,0,0,-1,0,133447,14,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +18341,4,1,7,6,54,0,0,0,-1,0,132521,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0 +18342,4,6,6,14,54,0,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0 +18343,4,0,3,11,59,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +18344,4,2,8,10,54,0,0,0,-1,0,132957,7,0,35,0,0,0,0,0,0,105,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0 +18345,4,0,3,11,55,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18346,4,1,7,7,55,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18347,2,0,1,13,56,3,0,0,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +18348,2,7,1,21,60,3,0,0,-1,0,135271,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,126,0,0,0,0 +18349,4,3,5,10,56,0,0,0,-1,0,132946,11,0,35,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18350,4,1,7,16,56,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18351,4,4,6,9,56,0,0,0,-1,0,132617,9,0,40,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18352,4,6,2,14,56,4,0,0,-1,0,134964,13,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18353,2,10,2,17,56,2,0,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,171,0,0,0,0 +18354,4,0,3,12,55,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18355,4,0,3,12,55,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18356,15,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18357,15,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18358,15,0,0,0,54,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18359,15,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18360,15,0,0,0,54,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18361,15,0,0,0,54,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18362,15,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18363,15,0,0,0,54,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18364,15,0,0,0,54,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18365,15,0,0,0,0,0,0,0,-1,0,133735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18366,4,4,6,10,0,0,0,0,-1,0,132943,9,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18367,4,3,5,10,0,0,0,0,-1,0,132943,11,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18368,4,2,8,10,0,0,0,0,-1,0,132935,7,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18369,4,1,7,10,0,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18370,4,0,3,12,57,0,0,0,-1,0,134458,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18371,4,0,3,12,56,0,0,0,-1,0,132489,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18372,2,15,1,21,57,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,74,0,0,0,0 +18373,4,2,8,5,57,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18374,4,2,8,3,57,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,131,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18375,4,2,8,9,57,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18376,2,4,1,13,57,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,120,0,0,0,0,0,0,62,0,0,0,0,117,0,0,0,0 +18377,4,2,8,10,57,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18378,4,3,5,7,57,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18379,4,3,5,8,57,0,0,0,-1,0,132587,11,0,60,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18380,4,4,6,7,57,0,0,0,-1,0,134584,9,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18381,4,0,3,2,57,0,0,0,-1,0,133884,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18382,4,1,7,16,57,0,3458,0,-1,0,133766,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18383,4,4,6,10,56,0,0,0,-1,0,132943,9,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18384,4,4,6,3,57,0,0,0,-1,0,135048,9,0,80,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18385,4,1,7,20,57,0,0,0,-1,0,132692,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18386,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18387,4,1,7,10,55,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18388,2,18,2,26,57,0,0,0,-1,0,135537,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,111,0,0,0,0 +18389,4,1,7,16,57,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18390,4,2,8,7,57,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18391,4,2,8,6,57,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18392,2,15,1,22,57,3,0,0,-1,0,135641,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +18393,4,3,2,6,56,0,0,0,-1,0,132523,12,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18394,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18395,4,0,3,11,57,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18396,2,7,6,21,57,3,0,0,-1,0,135658,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +18397,4,0,3,2,56,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18398,4,0,3,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18399,4,0,3,11,0,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18400,4,0,3,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18401,15,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18402,4,0,3,11,0,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18403,4,0,3,11,0,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18404,4,0,3,2,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18405,4,1,7,6,57,0,0,0,-1,0,132520,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18406,4,0,3,12,0,0,0,0,-1,0,136168,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18407,4,1,7,10,57,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18408,4,1,7,10,57,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18409,4,1,7,10,57,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18410,2,8,6,17,0,1,0,0,-1,0,135329,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +18411,4,2,8,8,0,0,0,0,-1,0,132540,7,0,45,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18412,12,0,0,0,0,0,0,0,-1,0,134116,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18413,4,1,7,16,57,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18414,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18415,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18416,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18417,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18418,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18419,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18420,2,5,2,17,0,1,0,0,-1,0,133477,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +18421,4,3,5,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18422,12,0,0,0,60,0,0,0,-1,0,134153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18423,12,0,0,0,60,0,0,0,-1,0,134153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18424,4,2,8,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0 +18425,4,0,3,23,55,7,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18426,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18427,4,1,7,16,30,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18428,4,0,5,2,45,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18429,4,4,6,9,58,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18430,4,4,6,9,45,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18431,4,4,6,9,30,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18432,4,3,5,9,45,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18433,4,3,5,9,30,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18434,4,2,8,9,58,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18435,4,2,8,9,45,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18436,4,2,8,9,45,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18437,4,1,7,9,45,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18438,4,0,1,12,35,0,0,0,-1,0,134951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18439,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18440,4,1,7,16,30,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18441,4,1,7,16,45,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18442,4,0,5,2,30,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18443,4,0,5,2,58,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18444,4,0,5,2,45,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18445,4,4,6,9,58,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18446,4,4,6,9,30,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18447,4,4,6,9,45,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18448,4,3,5,9,58,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18449,4,3,5,9,45,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18450,4,1,7,20,55,0,0,0,-1,0,132665,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18451,4,2,8,6,55,0,0,0,-1,0,132505,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18452,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18453,4,2,8,9,45,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18454,4,2,8,9,58,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18455,4,2,8,9,45,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18456,4,1,7,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18457,4,1,7,9,45,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18458,4,3,5,9,55,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18459,4,4,6,9,55,0,0,0,-1,0,132618,9,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18460,2,3,1,26,55,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,91,0,0,0,0 +18461,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18462,2,13,5,21,55,0,0,0,-1,0,132947,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,78,0,0,0,0 +18463,2,7,6,13,55,3,0,0,-1,0,135274,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +18464,4,0,1,11,55,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18465,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18466,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18467,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18468,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18469,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18470,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18471,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18472,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18473,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18474,15,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18475,4,1,7,6,55,0,0,0,-1,0,132496,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18476,4,2,8,8,55,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18477,4,2,8,7,55,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18478,4,2,8,5,55,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18479,4,3,5,1,55,0,0,0,-1,0,133090,11,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18480,4,4,6,1,55,0,0,0,-1,0,133125,9,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18481,2,5,6,17,55,1,0,0,-1,0,133480,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +18482,2,2,2,15,55,0,0,0,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,62,0,0,0,0 +18483,2,19,2,26,56,0,0,0,-1,0,135467,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +18484,2,7,1,13,56,3,0,0,-1,0,135640,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +18485,4,6,6,14,56,4,0,0,-1,0,134959,9,0,100,0,0,0,0,0,0,2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18486,4,1,7,20,56,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18487,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18488,12,0,0,0,0,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18489,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18490,4,2,8,1,56,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18491,2,15,4,21,0,3,0,0,-1,0,135657,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +18492,12,0,0,0,0,0,0,0,-1,0,135329,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18493,4,4,6,3,55,0,0,0,-1,0,135057,9,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18494,4,3,5,3,55,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18495,4,1,7,16,58,0,0,0,-1,0,133773,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18496,4,1,7,16,55,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18497,4,1,7,9,55,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18498,2,0,1,13,55,3,0,0,-1,0,132402,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +18499,4,6,6,14,57,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18500,4,0,3,11,56,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18501,12,0,0,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18502,2,6,6,17,57,1,0,0,-1,0,135579,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +18503,4,4,6,5,57,0,0,0,-1,0,132636,9,0,135,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18504,4,2,8,6,57,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18505,4,2,8,6,57,0,0,0,-1,0,132491,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18506,4,2,8,8,57,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18507,4,1,7,8,57,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18508,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18509,4,1,7,16,57,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,48,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0 +18510,4,1,7,16,57,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18511,4,1,7,16,57,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18512,5,0,0,0,0,0,0,0,-1,0,134802,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18513,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18514,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18515,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18516,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18517,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18518,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18519,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18520,2,8,1,17,58,1,0,0,-1,0,135291,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18521,4,4,6,8,58,0,0,0,-1,0,132582,9,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18522,4,0,3,11,58,0,0,0,-1,0,133374,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18523,4,0,3,23,58,7,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18524,4,3,5,7,58,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18525,4,2,8,9,58,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18526,4,1,3,1,58,0,0,0,-1,0,132767,14,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18527,4,3,5,10,58,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18528,4,2,8,3,56,0,0,0,-1,0,135057,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18529,4,4,6,6,56,0,3499,0,-1,0,132507,8,0,45,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18530,4,3,5,5,57,0,0,0,-1,0,132634,11,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18531,2,5,6,17,57,1,0,0,-1,0,133059,9,0,100,0,0,0,0,0,0,250,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +18532,4,1,7,20,57,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18533,4,4,6,9,58,0,0,0,-1,0,132613,9,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18534,2,10,2,17,58,2,0,0,-1,0,135169,12,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +18535,4,6,2,14,0,4,0,0,-1,0,134958,13,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18536,4,0,8,23,0,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18537,4,0,3,12,58,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18538,2,1,6,17,58,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,193,0,0,0,0 +18539,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18540,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18541,4,1,7,16,60,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18542,2,8,1,17,60,1,0,0,-1,0,135351,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,225,0,0,0,0 +18543,4,0,3,11,60,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18544,4,2,8,10,60,0,0,0,-1,0,132956,7,0,40,0,0,0,0,0,0,133,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18545,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,93,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0 +18546,4,3,5,1,60,0,0,0,-1,0,133120,11,0,85,0,0,0,0,0,0,358,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18547,4,4,6,6,60,0,0,0,-1,0,132520,10,0,55,0,0,0,0,0,0,452,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0 +18562,7,0,2,0,0,0,0,0,-1,0,135248,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18563,15,0,0,0,0,0,0,0,-1,0,135988,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18564,15,0,0,0,0,0,0,0,-1,0,135988,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18565,12,0,0,0,100,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18566,12,0,0,0,100,0,0,0,-1,0,135826,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18567,7,0,7,0,0,0,0,0,-1,0,135839,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18582,2,7,0,13,70,3,0,0,-1,0,135748,8,0,0,0,0,5,6,0,0,0,0,0,0,0,100,100,132,40,40,0,0,139,60,60,0,0 +18583,2,7,0,13,70,1,0,0,-1,0,135277,8,0,0,0,0,6,0,0,0,0,0,0,0,0,50,60,85,30,0,0,0,95,60,0,0,0 +18584,2,7,0,13,70,1,0,0,-1,0,135277,8,0,0,0,0,5,0,0,0,0,0,0,0,0,60,50,85,30,0,0,0,95,60,0,0,0 +18585,4,0,3,11,0,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18586,4,0,3,11,0,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18587,7,3,0,12,0,0,0,0,-1,0,133869,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18588,7,2,8,0,30,0,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18589,12,0,0,0,60,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18590,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18591,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18592,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18593,12,0,0,0,60,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +18594,7,2,4,0,0,0,0,0,-1,0,136152,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18595,0,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18596,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18597,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18598,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18599,0,0,0,0,0,0,0,0,-1,0,133434,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18600,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18601,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18602,4,0,0,23,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18603,12,0,0,0,0,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18604,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18605,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18606,0,0,0,0,0,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18607,0,0,0,0,0,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18608,2,10,2,17,60,2,0,0,-1,0,135167,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,176,0,0,0,0,264,0,0,0,0 +18609,2,10,2,17,60,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,176,0,0,0,0,264,0,0,0,0 +18610,2,7,1,21,1,3,0,0,-1,0,135314,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +18611,4,2,8,7,2,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18612,4,3,5,8,3,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18622,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18623,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18624,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18625,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18626,12,0,0,0,0,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18627,12,0,0,0,0,0,0,0,-1,0,133061,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18628,12,0,0,0,60,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18629,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18630,12,0,0,0,0,0,0,0,-1,0,134536,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18631,7,1,8,0,0,0,0,0,-1,0,135155,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18632,0,0,0,0,25,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18633,0,0,0,0,5,0,0,0,-1,0,133982,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18634,7,3,8,12,47,0,0,0,-1,0,133860,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +18635,0,0,0,0,35,0,0,0,-1,0,133983,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18636,7,3,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18637,7,3,8,12,0,0,0,0,-1,0,133867,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18638,7,3,8,12,53,0,0,0,-1,0,133862,8,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18639,7,3,8,12,55,0,0,0,-1,0,133874,8,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +18640,0,0,0,0,1,0,0,0,-1,0,132384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18641,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18642,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18643,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18644,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18645,7,3,8,0,0,0,0,0,-1,0,133871,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18646,4,0,0,12,60,0,0,0,-1,0,135933,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18647,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18648,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18649,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18650,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18651,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18652,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18653,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18654,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18655,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18656,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18657,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18658,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18659,12,0,0,0,60,0,0,0,-1,0,135152,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18660,7,3,8,0,0,0,0,0,-1,0,133866,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18661,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18662,0,0,8,0,1,0,0,0,-1,0,134480,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18663,12,0,0,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18664,15,0,0,0,0,0,0,0,-1,0,133740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18665,4,0,0,12,60,0,0,0,-1,0,136224,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18666,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18667,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18668,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18669,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18670,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18671,2,4,1,21,54,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,132,0,0,0,0 +18672,4,0,3,23,54,0,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18673,4,6,1,14,54,4,0,0,-1,0,134949,9,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18674,4,0,1,11,54,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18675,15,0,0,0,0,0,0,0,-1,0,133742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18676,4,3,5,6,56,0,0,0,-1,0,132520,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18677,4,1,7,16,56,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,39,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +18678,4,0,3,2,56,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +18679,4,0,3,11,56,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18680,2,2,2,15,56,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +18681,4,1,7,3,56,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18682,4,2,8,7,56,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18683,2,4,1,13,56,3,0,0,-1,0,133050,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +18684,4,0,3,11,56,0,3306,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18685,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +18686,4,3,2,3,57,0,0,0,-1,0,135034,10,0,70,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18687,12,0,0,0,0,0,0,0,-1,0,133849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18688,12,0,0,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18689,4,1,7,16,57,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18690,4,4,6,7,57,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18691,4,0,3,2,56,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18692,4,4,6,8,54,0,0,0,-1,0,132589,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18693,4,1,7,10,57,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18694,4,3,5,8,57,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,251,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18695,4,0,8,23,57,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18696,4,6,6,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18697,4,1,7,8,50,0,0,0,-1,0,132579,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18698,4,2,8,1,51,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18699,4,2,8,3,52,0,0,0,-1,0,135058,7,0,60,0,0,0,0,0,0,122,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +18700,4,2,8,9,53,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18701,4,0,3,11,54,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18702,4,4,6,6,55,0,0,0,-1,0,132517,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18703,12,0,0,0,60,0,0,0,-1,0,136085,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18704,12,0,0,0,60,0,0,0,-1,0,133674,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18705,12,0,0,0,60,0,0,0,-1,0,135894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18706,12,0,0,12,35,0,0,0,-1,0,133608,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18707,12,0,0,0,60,0,0,0,-1,0,135159,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18708,12,0,0,0,60,0,0,0,-1,0,136064,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18709,4,1,6,9,45,0,0,0,-1,0,132609,11,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18710,4,2,6,9,45,0,0,0,-1,0,132607,11,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18711,4,3,6,9,45,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18712,4,4,6,9,45,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18713,2,2,2,15,60,0,0,0,-1,0,135489,13,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,166,0,0,0,0 +18714,11,2,8,18,60,0,0,0,-1,0,134403,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18715,2,10,0,17,60,2,0,0,-1,0,135158,13,0,120,0,0,0,0,0,0,0,0,0,10,0,0,0,187,0,0,0,0,282,0,0,0,0 +18716,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18717,2,5,1,17,58,1,0,0,-1,0,133043,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +18718,4,4,6,1,58,0,0,0,-1,0,133078,11,0,80,0,0,0,0,0,0,534,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +18719,12,0,4,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18720,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18721,4,3,8,6,56,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18722,4,4,6,10,57,0,0,0,-1,0,132947,11,0,45,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18723,4,0,3,2,57,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18724,12,0,0,0,60,0,0,0,-1,0,135894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18725,2,6,2,17,54,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +18726,4,2,8,9,54,0,0,0,-1,0,132610,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18727,4,1,7,1,54,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18728,4,0,3,2,55,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18729,2,2,2,15,55,0,0,0,-1,0,135500,12,0,75,2,0,0,0,0,0,0,0,0,0,0,10,0,70,0,0,0,0,71,0,0,0,0 +18730,4,1,7,10,55,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,53,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0 +18731,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18732,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18733,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18734,4,1,7,16,57,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,44,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18735,4,1,7,8,57,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18736,4,2,8,7,57,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18737,2,0,1,13,57,3,0,0,-1,0,132402,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +18738,2,18,2,26,56,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +18739,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18740,4,1,7,6,56,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18741,4,4,6,9,56,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18742,4,3,5,3,55,0,0,0,-1,0,135045,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18743,4,1,7,16,54,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18744,4,2,8,10,53,0,0,0,-1,0,132952,7,0,35,0,0,0,0,0,0,103,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18745,4,1,7,7,52,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18746,12,0,0,0,0,0,0,0,-1,0,133866,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18747,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18748,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18749,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18750,12,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18751,12,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18752,12,0,0,0,0,0,0,0,-1,0,135923,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18753,12,0,0,0,0,0,0,0,-1,0,135061,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18754,4,4,6,9,57,0,0,0,-1,0,132614,11,0,45,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18755,2,3,2,26,57,0,0,0,-1,0,135612,12,0,75,3,0,0,0,0,0,0,0,0,0,0,6,0,57,0,0,0,0,108,0,0,0,0 +18756,4,6,2,14,57,4,0,0,-1,0,134963,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18757,4,1,7,3,57,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18758,2,15,1,13,57,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +18759,2,1,1,17,57,1,0,0,-1,0,132409,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +18760,4,0,3,11,57,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18761,2,19,2,26,57,0,0,0,-1,0,135474,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,147,0,0,0,0 +18762,4,0,3,23,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18763,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +18764,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +18765,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +18766,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18767,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18768,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18769,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18770,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18771,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18772,15,0,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18773,15,0,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18774,15,0,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18775,12,0,0,0,0,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18776,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18777,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18778,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18779,12,0,0,0,50,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18780,12,0,0,0,50,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18781,12,0,0,0,50,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18782,12,0,0,0,50,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18783,12,0,0,0,50,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18784,12,0,0,0,50,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18785,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18786,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18787,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18788,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18789,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18790,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18791,15,0,0,0,60,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18792,12,0,0,0,0,0,0,0,-1,0,135062,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18793,15,0,0,0,60,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18794,15,0,0,0,60,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18795,15,0,0,0,60,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18796,15,0,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18797,15,0,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18798,15,0,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18799,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18800,2,4,2,21,60,2,0,0,-1,0,135225,13,0,105,0,0,0,0,0,0,0,0,5,5,5,5,5,85,0,0,0,0,159,0,0,0,0 +18801,2,10,0,21,60,1,0,0,-1,0,135167,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,118,0,0,0,0,220,0,0,0,0 +18802,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18803,2,5,1,17,60,1,0,0,-1,0,132996,9,0,120,0,0,0,0,0,0,0,0,15,0,0,0,0,155,0,0,0,0,234,0,0,0,0 +18804,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18805,2,15,1,13,60,3,0,0,-1,0,135647,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +18806,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,544,0,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18807,4,3,5,1,0,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18808,4,1,7,10,60,0,0,0,-1,0,132937,7,0,35,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18809,4,1,7,6,60,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18810,4,2,8,3,60,0,0,0,-1,0,135049,7,0,70,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18811,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,54,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18812,4,3,5,9,60,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18813,4,0,3,11,60,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,60,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +18814,4,0,3,2,60,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18815,4,0,0,12,60,0,0,0,-1,0,135805,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18816,2,15,1,13,60,3,0,0,-1,0,135358,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +18817,4,3,1,1,60,0,0,0,-1,0,132768,10,0,85,0,0,0,0,0,0,392,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18818,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18819,12,0,0,0,0,0,0,0,-1,0,135923,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18820,4,0,3,12,60,0,0,0,-1,0,134465,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18821,4,0,3,11,60,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18822,2,8,1,17,60,1,0,0,-1,0,135329,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,264,0,0,0,0 +18823,4,2,8,10,60,0,0,0,-1,0,132957,7,0,40,0,0,0,0,0,0,130,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +18824,4,4,6,8,60,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,544,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18825,4,6,1,14,60,4,0,0,-1,0,134951,9,0,120,0,0,0,0,0,0,2929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18826,4,6,1,14,60,4,0,0,-1,0,134965,9,0,120,0,0,0,0,0,0,2929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18827,2,0,1,13,60,3,0,0,-1,0,132418,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18828,2,0,1,13,60,3,0,0,-1,0,132393,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18829,4,3,5,3,60,0,0,0,-1,0,135035,10,0,85,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18830,2,1,1,17,60,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18831,2,1,1,17,60,1,0,0,-1,0,132415,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18832,2,7,1,13,60,3,0,0,-1,0,135313,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +18833,2,2,2,15,60,0,0,0,-1,0,135500,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,100,0,0,0,0 +18834,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18835,2,2,2,15,60,0,0,0,-1,0,135496,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,100,0,0,0,0 +18836,2,18,2,26,60,0,0,0,-1,0,135533,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +18837,2,18,2,26,60,0,0,0,-1,0,135539,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +18838,2,15,1,13,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +18839,0,0,0,0,35,0,0,0,-1,0,134819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18840,2,15,1,13,60,3,0,0,-1,0,135649,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +18841,0,0,3,0,41,0,0,0,-1,0,134861,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18842,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,234,0,0,0,0 +18843,2,13,1,21,60,7,0,0,-1,0,135643,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18844,2,13,1,21,60,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18845,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18846,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18847,2,13,1,22,60,7,0,0,-1,0,132302,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18848,2,13,1,22,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18849,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18850,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18851,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18852,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18853,4,0,0,12,0,0,0,0,-1,0,133453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18854,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18855,2,3,1,26,60,0,0,0,-1,0,135617,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +18856,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18857,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18858,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18859,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18860,2,3,1,26,60,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +18861,4,4,6,7,56,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,608,0,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0 +18862,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18863,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18864,4,0,0,12,0,0,0,0,-1,0,133452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18865,2,4,2,13,60,3,0,0,-1,0,133488,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18866,2,4,2,13,60,3,0,0,-1,0,133057,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18867,2,5,2,17,60,1,0,0,-1,0,133040,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18868,2,5,2,17,60,1,0,0,-1,0,133047,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18869,2,6,1,17,60,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18870,4,3,5,1,57,0,0,0,-1,0,133120,10,0,85,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18871,2,6,1,17,60,2,0,0,-1,0,135124,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18872,4,1,7,7,58,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18873,2,10,2,17,60,2,0,0,-1,0,135151,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,279,0,0,0,0 +18874,2,10,2,17,60,2,0,0,-1,0,133729,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,279,0,0,0,0 +18875,4,2,8,7,59,0,0,0,-1,0,134592,7,0,90,0,0,0,0,0,0,171,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18876,2,8,1,17,60,1,0,0,-1,0,135349,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18877,2,8,1,17,60,1,0,0,-1,0,135358,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18878,2,15,1,21,60,3,0,0,-1,0,135643,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +18879,4,0,1,11,60,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18880,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18881,2,5,2,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,180,0,0,0,0,302,0,0,0,0 +18882,2,8,1,17,60,1,0,0,-1,0,135302,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,328,0,0,0,0 +18902,15,0,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18903,12,0,8,12,0,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18904,12,0,0,0,0,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18922,12,0,0,0,0,0,0,0,-1,0,134943,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18942,12,0,0,0,0,0,0,0,-1,0,132863,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18943,12,0,0,0,0,0,0,0,-1,0,133611,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18944,12,0,0,0,0,0,0,0,-1,0,134318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18945,15,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18946,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18947,12,0,0,0,0,0,0,0,-1,0,134359,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18948,4,2,8,9,27,0,0,0,-1,0,132614,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18949,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18950,12,0,0,0,0,0,0,0,-1,0,133601,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18951,4,0,7,12,0,0,0,0,-1,0,133612,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18952,12,0,0,0,0,0,0,0,-1,0,136220,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18953,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18954,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18955,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18956,12,0,3,0,0,0,0,0,-1,0,132857,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18957,2,7,1,13,0,1,0,0,-1,0,135276,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +18958,12,0,0,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18959,12,0,0,0,0,0,0,0,-1,0,134538,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18960,12,0,0,0,0,0,0,0,-1,0,134440,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18961,12,0,0,0,0,0,0,0,-1,0,134967,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18962,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18963,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18964,15,0,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18965,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18966,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18967,15,0,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18968,4,0,0,11,0,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18969,12,0,0,0,40,0,0,0,-1,0,134362,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18970,4,0,0,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18971,4,0,0,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18972,12,0,0,0,40,0,0,0,-1,0,134362,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18982,4,0,0,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18983,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18984,4,0,0,12,0,0,0,0,-1,0,133865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18985,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18986,4,0,0,12,0,0,0,0,-1,0,133870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18987,12,0,0,0,55,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19002,12,0,0,0,60,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19003,12,0,0,0,60,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19004,0,0,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19005,0,0,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19006,0,0,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19007,0,0,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19008,0,0,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19009,0,0,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19010,0,0,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19011,0,0,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19012,0,0,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19013,0,0,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19014,2,0,1,17,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19015,2,0,1,17,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19016,12,0,0,0,60,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19017,12,0,0,0,0,0,0,0,-1,0,135826,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19018,12,0,0,0,60,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19019,2,7,1,13,60,1,0,0,-1,0,135349,9,0,125,0,0,3,0,0,0,0,0,8,9,0,0,0,82,16,0,0,0,153,30,0,0,0 +19020,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19022,2,20,0,17,0,1,0,0,-1,0,132931,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,140,0,0,0,0 +19023,12,0,0,0,0,0,0,0,-1,0,134324,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19024,4,0,0,12,0,0,0,0,-1,0,133599,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19025,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19026,0,0,0,0,0,0,0,0,-1,0,135920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19027,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19028,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19029,15,0,0,0,60,0,0,0,-1,0,134227,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19030,15,0,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19031,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19032,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19033,12,0,0,0,0,0,0,0,-1,0,134521,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19034,12,0,0,0,0,0,0,0,-1,0,134016,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19035,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19036,12,0,0,0,0,0,0,0,-1,0,135125,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19037,4,4,6,3,0,0,0,0,-1,0,135057,11,0,70,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19038,4,0,3,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19039,4,2,8,1,0,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19040,2,7,1,13,0,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +19041,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19042,4,2,8,5,0,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19043,4,3,0,6,53,0,0,0,-1,0,132505,0,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19044,4,2,0,6,53,0,0,0,-1,0,132498,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19045,0,0,0,0,0,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19046,0,0,0,0,0,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19047,4,1,0,6,53,0,0,0,-1,0,132498,0,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19048,4,3,0,8,59,0,0,0,-1,0,132553,0,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19049,4,2,0,10,59,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19050,4,1,7,3,59,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19051,4,4,0,6,53,0,0,0,-1,0,132500,0,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19052,4,2,0,8,53,0,0,0,-1,0,132565,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19053,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19054,15,0,0,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19055,15,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19056,4,1,0,8,53,0,0,0,-1,0,132560,0,0,40,0,0,0,0,0,0,57,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0 +19057,4,4,0,10,59,0,0,0,-1,0,132963,0,0,45,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19058,4,2,0,3,59,0,0,0,-1,0,135057,0,0,60,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19059,4,1,0,3,59,0,0,0,-1,0,135044,0,0,50,0,0,0,0,0,0,68,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +19060,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19061,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19062,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19063,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19064,12,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19065,4,0,3,11,0,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19066,0,0,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19067,0,0,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19068,0,0,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19069,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19070,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19071,12,0,0,0,0,0,0,0,-1,0,134514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19082,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19083,4,1,7,16,55,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19084,4,1,7,16,55,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19085,4,1,7,16,55,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19086,4,1,7,16,55,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19087,4,4,5,6,55,0,0,0,-1,0,132524,11,0,45,0,0,0,0,0,0,353,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19088,4,3,5,6,55,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,199,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19089,4,2,8,6,55,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,95,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19090,4,1,7,6,55,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19091,4,4,5,6,55,0,0,0,-1,0,132524,11,0,45,0,0,0,0,0,0,353,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19092,4,3,5,6,55,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,199,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19093,4,2,8,6,55,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,95,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19094,4,1,7,6,55,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19095,4,0,3,2,55,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19096,4,0,3,2,55,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19097,4,0,3,2,55,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19098,4,0,3,2,55,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19099,2,15,1,13,60,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19100,2,15,1,13,60,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19101,2,10,2,17,60,2,0,0,-1,0,135167,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19102,2,10,2,17,60,2,0,0,-1,0,135157,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19103,2,0,1,13,60,3,0,0,-1,0,132416,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19104,2,4,1,13,60,3,0,0,-1,0,133058,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19105,4,1,7,1,58,0,0,0,-1,0,133163,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19106,2,6,1,17,0,1,0,0,-1,0,135127,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +19107,2,18,2,26,0,0,0,0,-1,0,135536,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,128,0,0,0,0 +19108,2,19,2,26,0,0,0,0,-1,0,135463,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +19109,4,0,3,11,58,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19110,2,7,1,13,58,3,0,0,-1,0,135357,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +19111,4,3,5,3,58,0,0,0,-1,0,135043,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19112,4,4,6,9,58,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19113,4,2,8,9,58,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19114,2,2,2,15,0,0,0,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +19115,4,0,3,23,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19116,4,1,7,10,0,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19117,4,4,6,7,0,0,0,0,-1,0,134585,11,0,85,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19118,2,19,2,26,0,0,0,0,-1,0,135474,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19119,4,2,8,10,0,0,0,0,-1,0,132942,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19120,4,0,4,12,0,0,0,0,-1,0,134420,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19121,4,1,7,16,0,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19122,4,0,8,0,0,0,0,0,-1,0,134196,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19123,4,1,7,10,0,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19124,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19125,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19126,4,4,6,10,0,0,0,0,-1,0,132956,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19127,4,2,8,5,0,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19128,4,3,5,5,0,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19129,4,1,0,20,0,0,0,0,-1,0,132657,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19130,2,19,2,26,60,0,0,0,-1,0,135463,21,0,75,0,4,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +19131,4,1,7,8,60,0,0,0,-1,0,132571,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19132,4,1,3,1,60,0,0,0,-1,0,132767,11,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19133,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19134,4,2,8,6,60,0,0,0,-1,0,132505,7,0,40,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19135,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19136,4,1,7,6,60,0,0,0,-1,0,132500,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19137,4,4,6,6,60,0,0,0,-1,0,132518,11,0,55,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19138,4,0,3,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19139,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,159,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19140,4,0,3,11,60,0,0,0,-1,0,133381,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19141,4,0,7,12,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19142,4,0,8,23,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19143,4,4,6,10,60,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19144,4,3,5,8,60,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19145,4,1,7,20,60,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19146,4,2,8,9,60,0,0,0,-1,0,132603,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19147,4,0,3,11,60,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19148,4,4,6,1,60,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,608,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19149,4,2,8,6,60,0,0,0,-1,0,132521,7,0,40,0,0,0,0,0,0,113,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19150,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19151,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19152,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19153,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19154,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19155,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19156,4,1,7,20,60,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,102,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19157,4,3,7,10,60,0,0,0,-1,0,132956,7,0,50,0,0,0,0,0,0,279,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0 +19158,2,5,2,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,180,0,0,0,0,302,0,0,0,0 +19159,4,0,8,2,0,0,0,0,-1,0,134196,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19160,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19162,4,2,8,6,60,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,118,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19163,4,2,8,6,60,0,0,0,-1,0,132502,7,0,40,0,0,0,0,0,0,118,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19164,4,4,8,10,60,0,0,0,-1,0,132956,7,0,55,0,0,0,0,0,0,495,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19165,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,94,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19166,2,15,1,13,60,3,0,0,-1,0,135648,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19167,2,6,1,17,60,2,0,0,-1,0,135131,8,0,120,0,0,0,0,0,0,0,0,10,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +19168,2,7,1,13,60,3,0,0,-1,0,135349,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +19169,2,1,1,17,60,1,0,0,-1,0,132403,8,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19170,2,4,1,13,60,3,0,0,-1,0,133056,8,0,105,0,0,0,0,0,0,0,0,7,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +19182,0,0,7,0,0,0,0,0,-1,0,134481,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19183,0,0,0,0,0,0,0,0,-1,0,133849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19184,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +19185,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +19186,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +19187,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19188,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +19189,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +19190,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +19191,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +19192,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +19193,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +19194,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19195,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +19196,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,201,0,0,0,0 +19197,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,214,0,0,0,0 +19198,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,220,0,0,0,0 +19199,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +19200,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +19201,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,240,0,0,0,0 +19202,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19203,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19204,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19205,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19206,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19207,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19208,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19209,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19210,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19211,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19212,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19213,12,0,0,0,0,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19214,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +19215,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19216,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19217,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19218,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19219,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19220,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19221,0,0,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19222,0,0,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19223,0,0,0,0,1,0,0,0,-1,0,134022,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19224,0,0,0,0,25,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19225,0,0,0,0,45,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19226,2,13,1,26,1,0,0,0,-1,0,135612,8,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +19227,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19228,15,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19229,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19230,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19231,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19232,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19233,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19234,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19235,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19236,15,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19237,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19238,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19239,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19240,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19241,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19242,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19243,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19244,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19245,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19246,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19247,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19248,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19249,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19250,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19251,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19252,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19253,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19254,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19255,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19256,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19257,15,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19258,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19259,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19260,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19261,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19262,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19263,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19264,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19265,15,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19266,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19267,15,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19268,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19269,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19270,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19271,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19272,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19273,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19274,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19275,15,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19276,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19277,15,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19278,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19279,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19280,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19281,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19282,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19283,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19284,15,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19285,6,3,1,21,1,7,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +19286,6,3,2,24,1,0,0,0,-1,0,132385,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +19287,4,0,0,12,60,0,0,0,-1,0,134488,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19288,4,0,0,12,60,0,0,0,-1,0,134484,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19289,4,0,0,12,60,0,0,0,-1,0,134491,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19290,4,0,0,12,60,0,0,0,-1,0,134495,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19291,1,0,8,18,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19292,2,4,2,13,29,3,0,0,-1,0,133974,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +19293,2,4,2,13,50,3,0,0,-1,0,133974,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +19294,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19295,4,0,0,23,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19296,15,0,1,0,45,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19297,15,0,1,0,30,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19298,15,0,1,0,15,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19299,0,0,7,0,15,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19300,0,0,7,0,35,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19301,0,0,0,0,51,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19302,4,0,0,11,50,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19303,4,0,0,2,50,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19304,0,0,0,0,5,0,0,0,-1,0,134256,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19305,0,0,0,0,15,0,0,0,-1,0,134061,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19306,0,0,0,0,35,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19307,0,0,7,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19308,4,0,0,23,60,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19309,4,0,0,23,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19310,4,0,0,23,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19311,4,0,0,23,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19312,4,0,0,23,60,0,0,0,-1,0,133941,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19313,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +19314,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +19315,4,0,0,23,60,0,0,0,-1,0,133749,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19316,6,2,2,24,51,0,0,0,-1,0,135855,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,17,0,0,0,0 +19317,6,3,2,24,51,0,0,0,-1,0,135844,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,17,0,0,0,0 +19318,0,0,0,0,55,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19319,11,2,8,18,55,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19320,11,3,8,18,55,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19321,4,6,1,14,60,4,0,0,-1,0,135835,9,0,120,0,0,0,0,0,0,2468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19322,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19323,2,5,1,17,60,1,0,0,-1,0,133050,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,292,0,0,0,0 +19324,2,15,1,13,60,3,0,0,-1,0,135330,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +19325,4,0,0,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19326,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19327,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19328,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19329,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19330,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19331,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19332,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19333,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19334,2,8,1,17,60,1,0,0,-1,0,135360,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +19335,2,4,1,21,60,3,0,0,-1,0,133481,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +19336,4,0,4,12,60,0,0,0,-1,0,136116,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19337,4,0,4,12,60,0,0,0,-1,0,133738,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19338,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19339,4,0,4,12,60,0,0,0,-1,0,136115,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19340,4,0,4,12,60,0,0,0,-1,0,134419,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19341,4,0,4,12,60,0,0,0,-1,0,134124,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19342,4,0,4,12,60,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19343,4,0,4,12,60,0,0,0,-1,0,134944,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19344,4,0,4,12,60,0,0,0,-1,0,134073,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19345,4,0,4,12,60,0,0,0,-1,0,135880,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19346,2,15,1,13,60,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19347,2,15,1,13,60,3,0,0,-1,0,135664,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +19348,4,6,6,14,60,4,0,0,-1,0,134966,9,0,120,0,0,0,0,0,0,2787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19349,4,6,6,14,60,4,0,0,-1,0,134963,9,0,120,0,0,0,0,0,0,2893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19350,2,2,2,15,60,0,0,0,-1,0,135497,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +19351,2,7,1,13,60,3,0,0,-1,0,135359,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,162,0,0,0,0 +19352,2,7,1,13,60,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,198,0,0,0,0 +19353,2,1,1,17,60,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,300,0,0,0,0 +19354,2,1,1,17,60,1,0,0,-1,0,132415,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,262,0,0,0,0 +19355,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19356,2,10,2,17,60,2,0,0,-1,0,135143,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +19357,2,5,1,17,60,1,0,0,-1,0,133480,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,300,0,0,0,0 +19358,2,5,1,17,60,1,0,0,-1,0,133480,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19359,2,4,1,13,60,3,0,0,-1,0,133482,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +19360,2,4,1,21,60,3,0,0,-1,0,133481,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,172,0,0,0,0 +19361,2,18,2,26,60,0,0,0,-1,0,135538,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,186,0,0,0,0 +19362,2,0,1,13,60,3,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +19363,2,0,1,13,60,3,0,0,-1,0,132403,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,188,0,0,0,0 +19364,2,8,1,17,60,1,0,0,-1,0,135360,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0,344,0,0,0,0 +19365,2,13,1,21,60,7,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +19366,4,0,3,23,60,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19367,2,19,2,26,60,0,0,0,-1,0,135473,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,199,0,0,0,0 +19368,2,3,2,26,60,0,0,0,-1,0,135611,12,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +19369,4,1,7,10,60,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19370,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19371,4,0,3,2,60,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19372,4,4,6,1,60,0,0,0,-1,0,133078,11,0,100,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19373,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19374,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19375,4,1,7,1,60,0,0,0,-1,0,133154,7,0,60,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19376,4,0,3,11,60,0,0,0,-1,0,133382,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19377,4,0,3,2,60,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19378,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19379,4,0,4,12,60,0,0,0,-1,0,135241,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19380,4,3,5,6,60,0,0,0,-1,0,132507,10,0,50,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19381,4,2,8,8,60,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19382,4,0,4,11,60,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19383,4,0,4,2,60,0,0,0,-1,0,133305,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19384,4,0,4,11,60,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19385,4,1,7,7,60,0,0,0,-1,0,134613,7,0,75,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19386,4,1,7,16,60,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19387,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19388,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19389,4,2,8,3,60,0,0,0,-1,0,135039,7,0,70,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19390,4,2,8,10,60,0,0,0,-1,0,132953,7,0,40,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19391,4,1,7,8,60,0,0,0,-1,0,132558,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19392,4,4,6,6,60,0,0,0,-1,0,132500,11,0,55,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19393,4,3,5,6,60,0,0,0,-1,0,132510,10,0,50,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19394,4,4,6,3,60,0,0,0,-1,0,135054,11,0,100,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19395,4,0,3,12,60,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19396,4,2,8,6,60,0,0,0,-1,0,132505,7,0,40,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19397,4,0,4,11,60,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19398,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19399,4,1,7,20,60,0,0,0,-1,0,132691,7,0,100,0,0,0,0,0,0,114,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19400,4,1,7,6,60,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19401,4,3,5,7,60,0,0,0,-1,0,134671,10,0,105,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19402,4,4,6,7,60,0,0,0,-1,0,134692,11,0,120,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19403,4,0,3,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19404,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19405,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19406,4,0,4,12,60,0,0,0,-1,0,133723,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19407,4,1,7,10,60,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19422,15,0,0,0,0,0,0,0,-1,0,133672,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19423,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19424,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19425,0,0,2,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19426,4,0,0,2,60,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19427,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +19428,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,156,0,0,0,0 +19429,15,0,1,0,45,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19430,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19431,4,0,4,12,60,0,0,0,-1,0,133605,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19432,4,0,4,11,60,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19433,4,3,5,7,60,0,0,0,-1,0,134669,10,0,105,0,0,0,0,0,0,417,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19434,4,0,3,11,60,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19435,2,19,2,26,60,0,0,0,-1,0,135468,21,0,75,0,6,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +19436,4,1,7,16,60,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19437,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19438,4,1,7,8,60,0,0,0,-1,0,132573,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19439,4,2,8,5,60,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,212,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0 +19440,5,0,7,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19441,7,0,3,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19442,9,7,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19443,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19444,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19445,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19446,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19447,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19448,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19449,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19450,15,0,0,0,0,0,0,0,-1,0,132835,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19451,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19452,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19453,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19454,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19455,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19456,2,7,1,13,60,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,233,0,0,0,0 +19457,2,7,1,13,60,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,121,0,0,0,0 +19462,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19482,12,0,0,0,0,0,0,0,-1,0,134353,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19483,15,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19484,15,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19485,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19486,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19487,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19488,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19489,2,18,2,26,60,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,139,0,0,0,0 +19490,2,2,2,15,60,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +19491,4,0,0,2,60,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19502,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,119,0,0,0,0 +19503,2,7,1,13,58,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,177,0,0,0,0 +19504,2,7,1,13,58,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,148,0,0,0,0 +19505,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19506,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19507,4,1,7,3,36,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19508,4,2,8,9,36,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19509,4,3,5,8,36,0,0,0,-1,0,132545,10,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19510,4,0,4,11,58,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19511,4,0,4,11,48,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19512,4,0,4,11,38,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19513,4,0,4,11,28,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19514,4,0,4,11,58,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19515,4,0,4,11,38,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19516,4,0,4,11,48,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19517,4,0,4,11,28,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19518,4,0,4,11,58,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19519,4,0,4,11,48,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19520,4,0,4,11,38,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19521,4,0,4,11,28,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19522,4,0,4,11,58,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19523,4,0,4,11,48,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19524,4,0,4,11,38,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19525,4,0,4,11,28,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19526,4,1,7,16,58,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19527,4,1,7,16,48,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19528,4,1,7,16,38,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19529,4,1,7,16,28,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19530,4,1,7,16,58,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19531,4,1,7,16,48,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19532,4,1,7,16,38,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19533,4,1,7,16,28,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19534,4,0,4,2,58,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19535,4,0,4,2,48,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19536,4,0,4,2,38,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19537,4,0,4,2,28,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19538,4,0,4,2,58,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19539,4,0,4,2,48,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19540,4,0,4,2,38,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19541,4,0,4,2,28,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19542,2,15,1,13,58,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19543,2,15,1,13,48,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +19544,2,15,1,13,38,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +19545,2,15,1,13,28,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +19546,2,15,1,13,58,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19547,2,15,1,13,48,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +19548,2,15,1,13,38,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +19549,2,15,1,13,28,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +19550,2,7,1,13,58,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19551,2,7,1,13,48,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +19552,2,7,1,13,38,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +19553,2,7,1,13,28,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19554,2,7,1,13,58,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19555,2,7,1,13,48,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +19556,2,7,1,13,38,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +19557,2,7,1,13,28,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19558,2,2,2,15,58,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +19559,2,2,2,15,48,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +19560,2,2,2,15,38,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +19561,2,2,2,15,28,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +19562,2,2,2,15,58,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +19563,2,2,2,15,48,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +19564,2,2,2,15,38,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +19565,2,2,2,15,28,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +19566,2,10,2,17,58,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19567,2,10,2,17,48,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +19568,2,10,2,17,38,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +19569,2,10,2,17,28,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +19570,2,10,2,17,58,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19571,2,10,2,17,48,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +19572,2,10,2,17,38,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +19573,2,10,2,17,28,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +19574,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19575,4,0,4,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19576,4,0,4,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19577,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19578,4,4,6,9,60,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19579,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19580,4,4,6,9,50,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19581,4,4,6,9,40,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19582,4,3,5,9,60,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19583,4,3,5,9,50,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19584,4,3,5,9,40,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19585,4,0,4,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19586,4,0,4,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19587,4,2,8,9,60,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19588,4,0,4,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19589,4,2,8,9,50,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19590,4,2,8,9,40,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19591,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19592,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19593,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19594,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19595,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19596,4,1,7,9,50,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19597,4,1,7,9,40,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19598,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19599,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19600,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19601,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19602,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19603,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19604,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19605,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19606,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19607,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19608,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19609,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19610,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19611,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19612,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19613,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19614,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19615,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19616,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19617,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19618,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19619,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19620,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19621,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19622,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +19623,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +19642,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19662,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +19682,4,1,7,5,60,0,0,0,-1,0,132648,7,0,80,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19683,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19684,4,1,0,8,60,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19685,4,2,8,5,60,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19686,4,2,8,10,60,0,0,0,-1,0,132965,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19687,4,2,8,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19688,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19689,4,2,8,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19690,4,3,5,5,60,0,0,0,-1,0,132636,10,0,120,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19691,4,3,5,3,60,0,0,0,-1,0,135046,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19692,4,3,5,10,60,0,0,0,-1,0,132965,10,0,40,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19693,4,4,6,5,60,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19694,4,4,6,7,60,0,0,0,-1,0,134697,11,0,100,0,0,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19695,4,4,6,3,60,0,0,0,-1,0,135032,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19696,0,0,0,0,0,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19697,4,0,0,0,0,0,0,0,-1,0,134229,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19698,12,0,1,0,0,0,0,0,-1,0,133606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19699,12,0,1,0,0,0,0,0,-1,0,133793,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19700,12,0,1,0,0,0,0,0,-1,0,133792,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19701,12,0,1,0,0,0,0,0,-1,0,133790,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19702,12,0,1,0,0,0,0,0,-1,0,133796,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19703,12,0,1,0,0,0,0,0,-1,0,133797,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19704,12,0,1,0,0,0,0,0,-1,0,133798,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19705,12,0,1,0,0,0,0,0,-1,0,133795,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19706,12,0,1,0,0,0,0,0,-1,0,133794,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19707,12,0,1,0,58,0,0,0,-1,0,132532,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19708,12,0,1,0,58,0,0,0,-1,0,132526,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19709,12,0,1,0,58,0,0,0,-1,0,132534,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19710,12,0,1,0,58,0,0,0,-1,0,132530,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19711,12,0,1,0,58,0,0,0,-1,0,132529,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19712,12,0,1,0,58,0,0,0,-1,0,132531,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19713,12,0,1,0,58,0,0,0,-1,0,132527,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19714,12,0,1,0,58,0,0,0,-1,0,132533,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19715,12,0,1,0,58,0,0,0,-1,0,132528,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19716,12,0,1,0,0,0,0,0,-1,0,132604,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19717,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19718,12,0,1,0,0,0,0,0,-1,0,132613,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19719,12,0,1,0,0,0,0,0,-1,0,132501,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19720,12,0,1,0,0,0,0,0,-1,0,132496,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19721,12,0,1,0,0,0,0,0,-1,0,135050,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19722,12,0,1,0,0,0,0,0,-1,0,132482,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19723,12,0,1,0,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19724,12,0,1,0,0,0,0,0,-1,0,132634,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19725,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19726,7,0,7,0,0,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19727,7,0,7,0,0,0,0,0,-1,0,135665,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19742,4,2,8,7,55,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19743,4,2,8,1,33,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19762,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19763,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19764,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19765,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19766,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19767,7,0,8,0,0,0,0,0,-1,0,134345,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19768,7,0,8,0,0,0,0,0,-1,0,134348,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19772,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19773,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19774,7,0,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19775,15,0,7,0,0,0,0,0,-1,0,133649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19776,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19777,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19778,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19779,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19780,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19781,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19782,15,0,0,0,60,0,0,0,-1,0,135971,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19783,15,0,0,0,60,0,0,0,-1,0,135942,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19784,15,0,0,0,60,0,0,0,-1,0,136191,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19785,15,0,0,0,60,0,0,0,-1,0,136036,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19786,15,0,0,0,60,0,0,0,-1,0,136075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19787,15,0,0,0,60,0,0,0,-1,0,136153,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19788,15,0,0,0,60,0,0,0,-1,0,136164,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19789,15,0,0,0,60,0,0,0,-1,0,135923,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19790,15,0,0,0,60,0,0,0,-1,0,136080,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19802,12,0,0,0,58,0,0,0,-1,0,134085,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19803,15,0,0,0,0,0,0,0,-1,0,133896,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19804,15,0,0,0,0,0,0,0,-1,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19805,15,0,0,0,0,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19806,15,0,0,0,0,0,0,0,-1,0,133895,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19807,12,0,0,0,0,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19808,2,4,2,13,40,3,0,0,-1,0,133913,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +19809,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +19810,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +19811,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +19812,4,0,0,12,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19813,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19814,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19815,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19816,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19817,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19818,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19819,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19820,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19821,15,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19822,4,4,6,5,0,0,0,0,-1,0,132742,9,0,165,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19823,4,4,6,6,0,0,0,0,-1,0,132521,9,0,55,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19824,4,4,6,9,0,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19825,4,4,6,5,0,0,0,0,-1,0,132742,9,0,165,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19826,4,4,6,6,0,0,0,0,-1,0,132521,9,0,55,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19827,4,4,6,9,0,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19828,4,3,5,5,0,0,0,0,-1,0,132715,11,0,140,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19829,4,3,5,6,0,0,0,0,-1,0,132508,11,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19830,4,3,5,9,0,0,0,0,-1,0,132614,10,0,50,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19831,4,3,5,3,0,0,0,0,-1,0,135053,11,0,85,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19832,4,3,5,6,0,0,0,0,-1,0,132508,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19833,4,3,5,9,0,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19834,4,2,8,5,0,0,0,0,-1,0,132725,7,0,120,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19835,4,2,8,3,0,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19836,4,2,8,9,0,0,0,0,-1,0,132613,7,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19837,4,2,2,15,0,0,0,0,-1,0,135492,12,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +19838,4,2,8,5,0,0,0,0,-1,0,132721,7,0,120,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19839,4,2,8,6,0,0,0,0,-1,0,132490,7,0,40,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19840,4,2,8,9,0,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19841,4,1,7,3,0,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19842,4,1,7,6,0,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19843,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19844,4,1,7,5,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19845,4,1,7,3,0,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19846,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19847,4,1,7,5,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19848,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19849,4,1,7,3,0,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19850,12,0,0,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19851,12,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19852,2,0,1,13,60,3,0,0,-1,0,132428,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19853,2,3,1,26,60,0,0,0,-1,0,135619,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,142,0,0,0,0 +19854,2,8,1,17,60,1,0,0,-1,0,135365,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,295,0,0,0,0 +19855,4,4,6,7,60,0,0,0,-1,0,134697,9,0,120,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19856,4,0,3,2,60,0,0,0,-1,0,133309,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19857,4,1,7,16,60,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19858,12,0,0,0,0,0,0,0,-1,0,133791,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19859,2,15,1,13,60,3,0,0,-1,0,135666,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +19860,12,0,0,0,0,0,0,0,-1,0,135824,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19861,2,19,2,26,60,0,0,0,-1,0,135471,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +19862,4,6,6,14,60,4,0,0,-1,0,134958,9,0,120,0,0,0,0,0,0,2575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19863,4,0,3,11,60,0,0,0,-1,0,133389,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19864,2,7,1,21,60,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19865,2,7,1,21,60,1,0,0,-1,0,135365,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +19866,2,7,1,22,60,1,0,0,-1,0,135365,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +19867,2,7,1,21,60,3,0,0,-1,0,135364,8,0,105,0,0,0,0,0,0,80,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +19868,2,2,2,26,60,0,0,0,-1,0,135461,12,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,135,0,0,0,0 +19869,4,2,8,10,60,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19870,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19871,4,0,3,2,60,0,0,0,-1,0,133308,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19872,15,0,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19873,4,0,3,11,60,0,0,0,-1,0,133381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19874,2,6,1,17,60,1,0,0,-1,0,135582,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +19875,4,3,5,1,60,0,0,0,-1,0,133141,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19876,4,0,3,2,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19877,4,2,8,7,60,0,0,0,-1,0,134666,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19878,4,4,6,3,60,0,0,0,-1,0,135032,8,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19879,2,10,0,17,60,0,0,0,-1,0,135168,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +19880,12,0,0,0,0,0,0,0,-1,0,133306,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19881,12,0,0,0,0,0,0,0,-1,0,134178,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19882,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19883,12,0,0,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19884,2,10,2,17,60,2,0,0,-1,0,135170,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,248,0,0,0,0 +19885,4,0,3,2,60,0,0,0,-1,0,133387,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19886,4,1,2,1,60,0,0,0,-1,0,133565,12,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19887,4,3,5,7,60,0,0,0,-1,0,134661,11,0,90,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19888,4,1,7,16,60,0,0,0,-1,0,133773,11,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19889,4,2,8,7,60,0,0,0,-1,0,134634,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19890,2,4,1,21,60,3,0,0,-1,0,133492,12,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19891,4,0,7,23,60,7,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19892,4,2,8,8,60,0,0,0,-1,0,132556,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19893,4,0,3,11,60,0,0,0,-1,0,133388,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19894,4,4,6,10,60,0,0,0,-1,0,132948,8,0,45,0,0,0,0,0,0,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19895,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19896,2,13,1,21,60,7,0,0,-1,0,135592,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +19897,4,1,7,8,60,0,0,0,-1,0,132566,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19898,4,0,3,11,60,0,0,0,-1,0,133386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19899,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19900,2,1,1,17,60,1,0,0,-1,0,132427,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +19901,2,7,1,13,60,3,0,0,-1,0,135345,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19902,15,0,0,0,60,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19903,2,15,1,21,60,3,0,0,-1,0,135667,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +19904,4,3,5,5,60,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19905,4,0,3,11,60,0,0,0,-1,0,133388,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19906,4,2,8,8,60,0,0,0,-1,0,132547,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19907,4,1,7,16,60,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19908,2,4,1,13,60,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,145,0,0,0,0 +19909,2,10,2,17,60,2,0,0,-1,0,135172,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,222,0,0,0,0 +19910,2,13,1,22,60,7,0,0,-1,0,135592,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19911,15,0,2,0,0,0,0,0,-1,0,134187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19912,4,0,3,11,60,0,0,0,-1,0,133381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19913,4,4,6,8,60,0,0,0,-1,0,132587,8,0,65,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19914,1,0,8,18,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19915,4,6,6,14,60,4,0,0,-1,0,134968,9,0,100,0,0,0,0,0,0,2312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19916,2,4,2,13,1,3,0,0,-1,0,136040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19917,4,0,1,23,1,0,0,0,-1,0,135474,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19918,2,5,1,17,60,1,0,0,-1,0,133494,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,266,0,0,0,0 +19919,4,3,5,8,60,0,0,0,-1,0,132547,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19920,4,0,3,11,60,0,0,0,-1,0,133389,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19921,2,0,1,13,60,3,4990,0,-1,0,132399,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +19922,4,0,3,23,60,7,0,0,-1,0,133728,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19923,4,0,3,2,60,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19924,2,15,1,13,1,3,0,0,-1,0,134298,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19925,4,0,3,11,60,0,0,0,-1,0,133386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19926,4,1,7,5,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19927,2,19,3,26,60,0,0,0,-1,0,135468,24,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,170,0,0,0,0 +19928,4,2,8,3,60,0,0,0,-1,0,135040,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19929,4,1,7,10,60,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19930,4,0,3,12,60,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19931,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19932,12,0,0,0,0,0,0,0,-1,0,133624,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19933,15,0,0,0,0,0,0,0,-1,0,136168,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19934,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19935,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19936,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19937,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19938,15,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19939,12,0,3,0,0,0,0,0,-1,0,134806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19940,12,0,3,0,0,0,0,0,-1,0,134298,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19941,12,0,7,0,0,0,0,0,-1,0,134323,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19942,12,0,7,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19943,7,0,8,0,0,0,0,0,-1,0,136101,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19944,2,10,2,17,60,1,0,0,-1,0,132932,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,258,0,0,0,0 +19945,4,2,8,1,60,0,0,0,-1,0,133148,7,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19946,2,6,3,17,60,1,0,0,-1,0,135127,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,232,0,0,0,0 +19947,4,0,1,12,60,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19948,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19949,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19950,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19951,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19952,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19953,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19954,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19955,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19956,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19957,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19958,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19959,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19960,15,0,3,0,0,0,0,0,-1,0,134136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19961,2,4,1,13,60,3,0,0,-1,0,133479,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +19962,2,1,1,17,60,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,274,0,0,0,0 +19963,2,6,1,17,60,1,0,0,-1,0,135126,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +19964,2,7,1,21,60,3,0,0,-1,0,135347,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +19965,2,15,1,21,60,3,0,0,-1,0,135347,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +19966,2,2,2,26,60,0,0,0,-1,0,135496,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,118,0,0,0,0 +19967,2,19,3,26,60,0,0,0,-1,0,135467,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +19968,2,7,1,21,60,3,0,0,-1,0,135271,8,0,90,0,0,0,0,0,0,60,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +19969,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19970,2,20,0,17,0,1,0,0,-1,0,132931,12,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,63,0,0,0,0 +19971,7,0,8,0,0,0,0,0,-1,0,132893,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19972,4,1,7,1,0,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19973,12,0,0,0,0,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19974,12,0,0,0,0,0,0,0,-1,0,132620,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19975,12,0,0,0,0,0,0,0,-1,0,133891,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19976,12,0,0,0,0,0,0,0,-1,0,132620,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19977,0,0,0,0,0,0,0,0,-1,0,132392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19978,15,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19979,4,0,0,12,0,0,0,0,-1,0,136245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19980,2,15,1,13,1,3,0,0,-1,0,135639,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19981,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19982,4,1,7,16,0,0,0,0,-1,0,133772,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19983,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +19984,4,2,0,1,0,0,0,0,-1,0,133132,0,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19985,4,4,6,6,58,0,0,0,-1,0,132524,0,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19986,4,2,0,1,0,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19987,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19988,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +19989,4,0,0,23,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +19990,4,0,0,12,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19991,4,0,0,12,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19992,4,0,0,12,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19993,2,2,2,15,60,0,0,0,-1,0,135462,13,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +19994,0,0,0,0,0,0,0,0,-1,0,133997,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19995,0,0,0,0,0,0,0,0,-1,0,134016,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19996,0,0,0,0,0,0,0,0,-1,0,133905,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19997,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19998,4,2,7,1,60,0,0,0,-1,0,133146,7,0,60,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19999,4,1,7,1,60,0,0,0,-1,0,133149,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20000,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20001,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20002,0,0,0,0,55,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20003,2,13,0,21,0,0,0,0,-1,0,134295,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +20004,0,0,3,0,53,0,0,0,-1,0,134860,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20005,2,13,0,22,0,0,0,0,-1,0,134295,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +20006,4,0,0,11,0,0,0,0,-1,0,133374,24,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +20007,0,0,3,0,40,0,0,0,-1,0,134825,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20008,0,0,3,0,47,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20009,15,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20010,15,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20011,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20012,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20013,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20014,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20015,15,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20016,15,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20017,15,0,3,0,0,0,0,0,-1,0,134413,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20018,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20019,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20020,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20021,12,0,0,0,0,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20022,15,0,1,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20023,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20024,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20025,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20026,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20027,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20028,12,0,2,0,0,0,0,0,-1,0,133848,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20029,12,0,0,0,0,0,0,0,-1,0,135231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20030,15,0,0,0,0,0,0,0,-1,0,135234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20031,0,0,0,0,55,0,0,0,-1,0,133998,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20032,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20033,4,1,7,20,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20034,4,1,7,20,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20035,2,15,0,13,0,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +20036,4,0,4,12,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20037,4,0,0,2,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20038,2,2,2,15,60,0,0,0,-1,0,135461,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +20039,4,4,8,8,60,0,866,0,-1,0,132551,7,0,75,0,0,0,0,0,0,544,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20040,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20041,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20042,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20043,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20044,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20045,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20046,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20047,4,1,7,6,58,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20048,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20049,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20050,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20051,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20052,4,2,8,8,58,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20053,4,2,8,8,58,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20054,4,1,7,8,58,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20055,4,3,6,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20056,4,3,6,3,60,0,0,0,-1,0,135050,10,0,85,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20057,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20058,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20059,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20060,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20061,4,1,7,3,60,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20062,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20063,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20064,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20065,0,0,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20066,0,0,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20067,0,0,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20068,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20069,2,10,2,17,60,2,0,0,-1,0,135466,13,0,120,0,0,0,0,0,0,100,0,0,0,0,0,0,156,0,0,0,0,262,0,0,0,0 +20070,2,15,1,13,60,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +20071,4,0,4,12,58,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20072,4,0,4,12,58,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20073,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20074,0,0,0,0,20,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20075,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20076,12,0,0,0,0,0,0,0,-1,0,133388,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20077,12,0,0,0,0,0,0,0,-1,0,133603,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20078,12,0,0,0,0,0,0,0,-1,0,135940,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20079,0,0,3,0,55,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20080,0,0,3,0,55,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20081,0,0,3,0,55,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20082,2,19,0,26,0,0,0,0,-1,0,135471,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +20083,2,6,0,17,0,1,0,0,-1,0,135125,8,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,168,0,0,0,0 +20084,15,0,8,12,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20085,15,0,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20086,2,16,1,25,0,0,0,0,-1,0,135427,8,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,65,7,0,0,0 +20087,15,0,3,0,0,0,0,0,-1,0,134314,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20088,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20089,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20090,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20091,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20092,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20093,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20094,4,1,7,8,48,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20095,4,1,7,8,38,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20096,4,1,7,8,28,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20097,4,1,7,6,48,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20098,4,1,7,6,38,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20099,4,1,7,6,28,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20100,4,2,8,8,48,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20101,4,2,8,8,38,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20102,4,2,8,8,28,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20103,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20104,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20105,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20106,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20107,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20108,4,3,6,6,28,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20109,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20110,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20111,4,3,6,8,28,0,0,0,-1,0,132585,11,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20112,4,2,8,8,48,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20113,4,2,8,8,38,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20114,4,2,8,8,28,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20115,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20116,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20117,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20118,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20119,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20120,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20121,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20122,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20123,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20124,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20125,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20126,4,3,6,6,28,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20127,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20128,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20129,4,3,6,8,28,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20130,4,0,0,12,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20131,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20132,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20133,4,3,5,10,0,0,0,0,-1,0,132964,10,0,50,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20134,4,3,5,1,0,0,0,0,-1,0,133159,10,0,85,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20135,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20136,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,1006,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +20137,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20138,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20139,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,880,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +20140,4,4,6,3,60,0,0,0,-1,0,135046,11,0,100,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20141,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,691,0,8,8,8,8,7,0,0,0,0,0,0,0,0,0,0 +20142,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,566,0,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +20143,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20144,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20145,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20146,2,3,1,26,60,0,0,0,-1,0,135614,8,0,90,3,0,0,0,0,0,0,0,3,2,2,2,2,101,0,0,0,0,189,0,0,0,0 +20147,4,0,0,12,60,0,0,0,-1,0,134484,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20148,4,0,0,12,60,0,0,0,-1,0,134484,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20149,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,408,0,0,0,0 +20150,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20151,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20152,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20153,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20154,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20155,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20156,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20157,4,2,8,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20158,4,3,6,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20159,4,1,7,8,58,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20160,4,1,7,8,48,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20161,4,1,7,8,38,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20162,4,1,7,8,28,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20163,4,1,7,6,58,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20164,4,1,7,6,28,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20165,4,1,7,6,48,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20166,4,1,7,6,38,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20167,4,2,8,8,58,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20168,4,2,8,8,38,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20169,4,2,8,8,28,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20170,4,2,8,8,48,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20171,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20172,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20173,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20174,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20175,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20176,4,1,7,3,60,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20177,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20178,4,3,6,6,28,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20179,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20180,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20181,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20182,4,3,6,8,28,0,0,0,-1,0,132585,11,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20183,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20184,4,4,5,3,60,0,0,0,-1,0,135032,10,0,100,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20185,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20186,4,2,8,8,58,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20187,4,2,8,8,38,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20188,4,2,8,8,28,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20189,4,2,8,8,48,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20190,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20191,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20192,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20193,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20194,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20195,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20196,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20197,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20198,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20199,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20200,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20201,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20202,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20203,4,3,6,3,60,0,0,0,-1,0,135050,10,0,85,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20204,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20205,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20206,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20207,4,3,6,6,28,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20208,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20209,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20210,4,3,6,8,28,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20211,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20212,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20213,4,4,6,6,0,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20214,2,15,1,13,60,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +20215,4,3,5,6,0,0,0,0,-1,0,132501,10,0,40,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20216,4,2,8,6,0,0,0,0,-1,0,132503,7,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20217,4,1,7,6,0,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20218,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20219,4,1,7,16,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20220,2,10,2,17,60,2,0,0,-1,0,135466,13,0,120,0,0,0,0,0,0,100,0,0,0,0,0,0,156,0,0,0,0,262,0,0,0,0 +20221,15,0,0,0,60,0,0,0,-1,0,134154,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20222,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20223,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20224,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20225,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20226,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20227,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20228,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20229,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20230,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20231,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20232,0,0,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20233,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20234,0,0,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20235,0,0,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20236,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20237,0,0,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20238,2,1,1,17,60,1,0,0,-1,0,132392,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0,325,0,0,0,0 +20239,4,4,6,9,60,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20240,4,4,6,5,60,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20241,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20242,4,4,6,10,60,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20243,0,0,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20244,0,0,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20245,2,3,1,26,60,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +20246,4,4,6,1,60,0,0,0,-1,0,133077,11,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20247,4,4,6,7,60,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20248,4,0,3,2,60,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20249,4,4,6,3,60,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20250,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20251,4,4,6,8,60,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20252,4,4,6,6,60,0,0,0,-1,0,132498,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20253,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20254,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20255,4,2,8,8,0,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20256,12,0,7,0,0,0,0,0,-1,0,134411,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20257,4,3,5,10,60,0,0,0,-1,0,132964,10,0,50,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20258,2,10,2,17,60,2,0,0,-1,0,135171,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,174,0,0,0,0 +20259,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20260,4,3,5,7,60,0,0,0,-1,0,134658,11,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20261,4,2,8,6,60,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20262,4,3,5,8,60,0,0,0,-1,0,132554,11,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20263,4,4,6,1,60,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20264,4,4,5,10,60,0,0,0,-1,0,132944,10,0,55,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20265,4,4,5,8,60,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20266,4,4,5,7,60,0,0,0,-1,0,134680,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20267,4,2,8,6,60,0,0,0,-1,0,132492,7,0,40,0,0,0,0,0,0,145,0,8,8,8,8,7,0,0,0,0,0,0,0,0,0,0 +20268,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20269,4,2,8,9,60,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,113,0,4,4,4,4,5,0,0,0,0,0,0,0,0,0,0 +20270,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20271,4,2,8,10,60,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20272,4,2,8,7,60,0,0,0,-1,0,134582,7,0,90,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20273,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20274,4,2,8,5,60,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20275,4,0,5,2,60,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,4,5,4,4,4,0,0,0,0,0,0,0,0,0,0 +20276,4,1,7,16,60,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,68,0,5,4,4,4,4,0,0,0,0,0,0,0,0,0,0 +20277,4,0,5,11,60,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20278,2,2,2,15,60,0,0,0,-1,0,135492,12,0,90,2,0,0,0,0,0,0,0,3,3,3,3,3,101,0,0,0,0,189,0,0,0,0 +20279,2,15,1,13,60,7,0,0,-1,0,132797,8,0,75,0,0,0,0,0,0,0,0,2,2,2,2,3,104,0,0,0,0,194,0,0,0,0 +20280,2,1,1,17,58,1,0,0,-1,0,132392,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +20281,4,4,6,9,58,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20282,4,4,6,5,58,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20283,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20284,4,4,6,10,58,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20285,2,3,1,26,58,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +20286,4,4,6,1,58,0,0,0,-1,0,133077,11,0,70,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20287,4,4,6,7,58,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20288,4,0,3,2,58,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20289,4,4,6,3,58,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20290,4,0,5,11,58,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20291,4,4,6,8,58,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20292,4,4,6,6,58,0,0,0,-1,0,132498,11,0,40,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20294,4,2,8,8,54,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20295,4,3,5,7,55,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,310,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0 +20296,4,3,5,10,51,0,0,0,-1,0,132946,10,0,40,0,0,0,0,0,0,208,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0 +20297,4,2,8,6,60,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20298,4,2,8,8,60,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20299,2,2,2,15,60,0,0,0,-1,0,135492,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +20300,4,2,8,9,60,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20301,4,2,8,1,60,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20302,4,1,7,16,60,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20303,2,15,1,13,60,7,0,0,-1,0,132797,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +20304,4,2,8,10,60,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20305,4,0,5,2,60,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20306,4,2,8,7,60,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20307,4,0,5,11,60,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20308,4,2,8,3,60,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20309,4,2,8,5,60,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20310,12,0,0,0,25,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20311,4,2,8,6,58,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20312,4,2,8,8,58,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20313,2,2,2,15,58,0,0,0,-1,0,135492,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +20314,4,2,8,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20315,4,2,8,1,58,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20316,4,1,7,16,58,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20317,2,15,1,13,58,7,0,0,-1,0,132797,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +20318,4,2,8,10,58,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20319,4,0,5,2,58,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20320,4,2,8,7,58,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20321,4,0,5,11,58,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20322,4,2,8,3,58,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20323,4,2,8,5,58,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20324,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20325,4,1,7,9,60,0,0,0,-1,0,133365,7,0,35,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20326,4,1,7,8,60,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20327,4,1,7,1,60,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20328,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20329,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20330,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20331,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20332,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20333,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20334,2,10,2,17,60,2,0,0,-1,0,135169,12,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +20335,2,19,2,26,60,0,0,0,-1,0,135467,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,225,0,0,0,0 +20336,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20337,0,0,0,22,0,0,0,0,-1,0,135724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20338,4,1,7,6,60,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20339,4,1,7,9,60,0,0,0,-1,0,133365,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20340,4,1,7,8,60,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20341,4,1,7,1,60,0,0,0,-1,0,132768,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20342,4,1,7,10,60,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20343,4,1,7,7,60,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20344,4,1,7,3,60,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20345,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20346,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20347,4,1,7,20,60,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20348,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20349,2,10,2,17,60,2,0,0,-1,0,135169,12,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,251,0,0,0,0 +20350,2,19,2,26,60,0,0,0,-1,0,135467,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,173,0,0,0,0 +20351,4,1,7,6,58,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20352,4,1,7,9,58,0,0,0,-1,0,133365,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20353,4,1,7,8,58,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20354,4,1,7,1,58,0,0,0,-1,0,132768,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20355,4,1,7,10,58,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20356,4,1,7,7,58,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20357,4,1,7,3,58,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20358,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20359,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20360,4,1,7,20,58,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20361,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20362,2,10,2,17,58,2,0,0,-1,0,135169,12,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +20363,2,19,2,26,58,0,0,0,-1,0,135467,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +20364,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20365,0,0,0,0,0,0,0,0,-1,0,132482,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20366,15,0,2,0,0,0,0,0,-1,0,132595,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20367,15,0,4,0,0,0,0,0,-1,0,132595,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20368,2,2,2,15,60,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,46,0,0,0,0 +20369,4,3,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20370,2,10,2,17,60,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,240,0,0,0,0,0,0,186,0,0,0,0,280,0,0,0,0 +20371,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20372,2,10,2,17,60,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,170,0,0,0,0,0,0,146,0,0,0,0,219,0,0,0,0 +20373,12,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20374,12,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20375,12,0,0,0,0,0,0,0,-1,0,132274,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20376,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20377,12,0,0,0,0,0,0,0,-1,0,134298,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20378,12,0,0,0,1,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20379,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20380,4,3,5,5,60,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,434,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +20381,15,0,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20382,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20383,12,0,0,0,0,0,0,0,-1,0,136140,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20384,12,0,0,0,0,0,0,0,-1,0,134315,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20385,12,0,0,0,0,0,0,0,-1,0,133708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20386,0,0,0,1,0,0,0,0,-1,0,135724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20387,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20388,0,0,0,0,0,0,0,0,-1,0,133982,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20389,0,0,0,0,0,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20390,0,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20391,4,0,0,1,0,0,0,0,-1,0,134164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20392,4,0,0,1,0,0,0,0,-1,0,134165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20393,15,0,0,0,0,0,0,0,-1,0,133644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20394,12,0,0,0,0,0,0,0,-1,0,133738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20395,12,0,0,0,0,0,0,0,-1,0,133733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20396,12,0,0,0,0,0,0,0,-1,0,133737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20397,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20398,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20399,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20400,1,0,0,18,0,0,0,0,-1,0,134015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20401,12,0,0,0,0,0,0,0,-1,0,134458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20402,15,0,0,0,0,0,0,0,-1,0,132093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20403,15,0,0,0,0,0,0,0,-1,0,135971,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20404,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20405,0,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20406,4,1,7,3,60,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20407,4,1,7,20,60,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20408,4,1,7,1,60,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20409,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20410,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20411,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20412,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20413,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20414,0,0,0,0,0,0,0,0,-1,0,135474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20415,15,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20416,15,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20417,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20418,15,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20419,15,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20420,15,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20421,15,0,0,0,0,0,0,0,-1,0,133281,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20422,15,0,0,2,0,0,0,0,-1,0,133281,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20423,7,0,0,0,1,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20424,7,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20425,2,10,2,17,18,2,0,0,-1,0,135162,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +20426,4,0,4,11,18,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20427,4,1,7,16,18,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20428,4,1,7,16,18,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20429,4,0,4,11,18,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20430,2,7,1,13,18,3,0,0,-1,0,135341,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +20431,4,0,4,11,18,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20432,15,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20433,15,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20434,2,10,2,17,18,2,0,0,-1,0,135165,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +20435,15,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20436,15,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20437,2,2,2,15,18,0,0,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +20438,2,2,2,15,18,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +20439,4,0,4,11,18,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20440,2,7,1,13,18,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +20441,2,15,1,13,18,3,0,0,-1,0,135651,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +20442,4,0,4,2,18,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20443,2,15,1,13,18,3,0,0,-1,0,135650,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +20444,4,0,4,2,18,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20445,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20446,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20447,15,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20448,15,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20449,15,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20450,15,0,0,0,0,0,0,0,-1,0,135473,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20451,15,0,0,11,60,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20452,0,0,0,0,45,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20453,12,0,0,0,0,0,0,0,-1,0,133000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20454,12,0,0,0,0,0,0,0,-1,0,134946,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20455,12,0,0,0,0,0,0,0,-1,0,134945,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20456,12,0,0,0,0,0,0,0,-1,0,134944,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20457,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20458,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20459,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20460,4,0,0,0,58,0,0,0,-1,0,133464,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +20461,15,0,0,0,58,0,0,0,-1,0,133463,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20462,12,0,3,0,0,0,0,0,-1,0,134015,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20463,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20464,15,0,0,0,0,0,0,0,-1,0,136192,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20465,12,0,0,0,0,0,0,0,-1,0,136098,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20466,12,0,0,0,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20467,12,0,0,0,0,0,0,0,-1,0,134939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20468,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +20469,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20475,15,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20476,4,3,5,9,57,0,0,0,-1,0,132611,10,0,40,0,0,0,0,0,0,160,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +20477,4,3,5,10,57,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,228,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20478,4,3,5,5,57,0,0,0,-1,0,132742,11,0,120,0,0,0,0,0,0,365,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20479,4,3,5,5,57,0,0,0,-1,0,132717,11,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20480,4,3,5,10,57,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20481,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20485,12,0,0,0,0,0,0,0,-1,0,135824,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20487,2,10,0,17,60,2,0,0,-1,0,135158,13,0,120,0,0,0,0,0,0,0,0,0,10,0,0,0,187,0,0,0,0,282,0,0,0,0 +20488,2,2,2,15,60,0,0,0,-1,0,135489,13,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,166,0,0,0,0 +20489,12,0,0,0,0,0,0,0,-1,0,132767,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20490,12,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20491,12,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20492,12,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20493,12,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20494,12,0,0,0,0,0,0,0,-1,0,134123,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20495,12,0,0,0,0,0,0,0,-1,0,134123,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20496,12,0,0,0,0,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20497,12,0,0,0,0,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20498,15,0,0,0,0,0,0,0,-1,0,134315,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20499,15,0,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20500,15,0,0,0,0,0,0,0,-1,0,134316,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20501,15,0,0,0,0,0,0,0,-1,0,134307,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20502,4,6,2,14,0,4,0,0,-1,0,134957,13,0,100,0,0,0,0,0,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20503,4,0,0,12,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20504,2,8,1,17,47,1,0,0,-1,0,135349,9,0,100,0,0,0,0,0,0,0,0,10,0,10,10,0,118,0,0,0,0,178,0,0,0,0 +20505,4,0,5,11,0,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20506,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20507,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20508,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20509,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20510,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20511,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20512,4,0,0,12,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20513,15,0,0,0,1,0,0,0,-1,0,133438,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20514,15,0,0,0,1,0,0,0,-1,0,133378,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20515,15,0,0,0,1,0,0,0,-1,0,135150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20516,0,0,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20517,4,4,6,3,0,0,0,0,-1,0,135047,11,0,80,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20518,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20519,12,0,0,0,0,0,0,0,-1,0,133168,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20520,7,0,2,0,0,0,0,0,-1,0,136192,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20521,4,4,6,1,0,0,0,0,-1,0,133069,9,0,80,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20522,2,10,2,17,0,2,0,0,-1,0,135157,13,0,100,0,0,0,0,0,0,110,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +20523,4,2,7,7,0,0,0,0,-1,0,134588,7,0,90,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20524,4,2,0,7,0,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,132,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +20525,4,0,0,12,0,0,0,0,-1,0,136069,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20526,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20527,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20528,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20529,4,1,7,5,0,0,0,0,-1,0,135021,7,0,80,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20530,4,1,7,20,0,0,0,0,-1,0,132651,7,0,80,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20531,15,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20532,15,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20533,15,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20534,4,0,0,12,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20535,15,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20536,2,10,2,17,0,2,0,0,-1,0,135358,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +20537,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20538,4,1,7,7,58,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,78,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20539,4,1,7,6,58,0,0,0,-1,0,132503,11,0,30,0,0,0,0,0,0,50,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20540,15,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20541,15,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20542,15,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20543,15,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20544,15,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20545,15,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20546,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20547,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20548,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20549,4,4,0,10,58,0,0,0,-1,0,132961,0,0,45,0,0,0,0,0,0,410,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20550,4,4,6,5,58,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,657,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20551,4,4,6,1,58,0,0,0,-1,0,133078,11,0,80,0,0,0,0,0,0,534,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20552,15,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20553,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20554,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20555,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20556,2,10,2,17,0,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,135,0,0,0,0 +20557,0,0,0,0,0,0,0,0,-1,0,134015,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20558,0,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20559,0,0,0,0,0,0,0,0,-1,0,133282,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20560,0,0,0,0,0,0,0,0,-1,0,133308,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20561,4,0,0,1,0,0,0,0,-1,0,134159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20562,4,0,0,1,0,0,0,0,-1,0,134160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20563,4,0,0,1,0,0,0,0,-1,0,134162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20564,4,0,0,1,0,0,0,0,-1,0,132089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20565,4,0,0,1,0,0,0,0,-1,0,134167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20566,4,0,0,1,0,0,0,0,-1,0,134173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20567,4,0,0,1,0,0,0,0,-1,0,134178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20568,4,0,0,1,0,0,0,0,-1,0,134177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20569,4,0,0,1,0,0,0,0,-1,0,134171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20570,4,0,0,1,0,0,0,0,-1,0,132366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20571,4,0,0,1,0,0,0,0,-1,0,134175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20572,4,0,0,1,0,0,0,0,-1,0,134174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20573,4,0,0,1,0,0,0,0,-1,0,134179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20574,4,0,0,1,0,0,0,0,-1,0,134180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20575,4,2,8,5,15,0,0,0,-1,0,132686,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20576,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20577,2,7,1,13,60,3,0,0,-1,0,135354,8,0,105,0,0,0,0,0,0,70,0,0,0,0,0,0,99,0,0,0,0,185,0,0,0,0 +20578,2,15,1,13,60,3,0,0,-1,0,135658,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +20579,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,54,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20580,2,4,1,21,60,3,0,0,-1,0,133497,8,0,105,0,0,0,0,0,0,90,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +20581,2,10,2,17,60,2,0,0,-1,0,135173,13,0,120,0,0,0,0,0,0,0,0,0,20,0,0,0,142,0,0,0,0,213,0,0,0,0 +20582,4,0,3,23,60,0,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20583,4,0,0,1,0,0,0,0,-1,0,134160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20584,4,0,0,1,0,0,0,0,-1,0,134165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20585,4,0,0,1,0,0,0,0,-1,0,134167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20586,4,0,0,1,0,0,0,0,-1,0,134162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20587,4,0,0,1,0,0,0,0,-1,0,134171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20588,4,0,0,1,0,0,0,0,-1,0,134175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20589,4,0,0,1,0,0,0,0,-1,0,134178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20590,4,0,0,1,0,0,0,0,-1,0,134180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20591,4,0,0,1,0,0,0,0,-1,0,134159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20592,4,0,0,1,0,0,0,0,-1,0,134164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20593,4,0,0,1,0,0,0,0,-1,0,134173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20594,4,0,0,1,0,0,0,0,-1,0,132089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20595,4,0,0,1,0,0,0,0,-1,0,132366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20596,4,0,0,1,0,0,0,0,-1,0,134174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20597,4,0,0,1,0,0,0,0,-1,0,134177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20598,4,0,0,1,0,0,0,0,-1,0,134179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20599,2,18,2,26,60,0,0,0,-1,0,135540,12,0,90,2,0,0,0,0,0,0,0,0,7,0,0,0,101,0,0,0,0,153,0,0,0,0 +20600,4,0,4,11,60,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20601,15,0,0,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20602,15,0,0,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20603,15,0,0,0,0,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20604,12,0,0,0,0,0,0,0,-1,0,133860,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20605,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20606,15,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20607,15,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20608,15,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20609,15,0,0,0,0,0,0,0,-1,0,135225,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20610,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20611,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20612,15,0,0,0,0,0,0,0,-1,0,135257,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20613,15,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20614,15,0,0,0,0,0,0,0,-1,0,134437,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20615,4,2,8,9,60,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,93,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0 +20616,4,4,1,9,60,0,0,0,-1,0,132613,11,0,55,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20617,4,3,5,7,60,0,0,0,-1,0,134660,10,0,105,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20618,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20619,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,559,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20620,15,0,3,0,0,0,0,0,-1,0,135241,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20621,4,3,5,8,60,0,0,0,-1,0,132554,10,0,70,0,0,0,0,0,0,311,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20622,4,0,4,2,60,0,0,0,-1,0,133305,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20623,4,2,8,1,60,0,0,0,-1,0,133119,7,0,70,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20624,4,0,1,11,60,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20625,4,1,7,6,60,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,61,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20626,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20627,4,2,8,7,60,0,0,0,-1,0,134636,7,0,90,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20628,4,2,8,1,60,0,0,0,-1,0,133145,7,0,70,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20629,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20630,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20631,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20632,4,0,4,11,60,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20633,4,2,8,3,60,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,161,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20634,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20635,4,1,7,20,60,0,0,0,-1,0,132680,7,0,100,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20636,4,0,3,12,60,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20637,4,4,6,3,60,0,0,0,-1,0,135042,11,0,100,0,0,0,0,0,0,610,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20638,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20639,4,4,6,7,60,0,0,0,-1,0,134681,11,0,120,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20640,4,4,6,1,0,0,0,0,-1,0,133122,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20641,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20642,4,1,7,5,0,0,0,0,-1,0,132688,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20643,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20644,12,0,0,0,60,0,0,0,-1,0,136163,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20645,4,0,4,2,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0 +20646,2,2,2,15,0,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +20647,2,15,1,21,0,3,0,0,-1,0,135656,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +20648,2,4,1,21,0,3,0,0,-1,0,133059,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +20649,4,0,3,2,0,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20650,4,4,6,10,0,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20651,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20652,4,1,7,8,55,0,8654,0,-1,0,132567,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20653,4,4,6,10,55,0,8657,0,-1,0,132963,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20654,2,10,2,17,55,2,0,0,-1,0,135148,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +20655,4,1,7,10,55,0,8654,0,-1,0,132966,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20656,4,3,5,8,55,0,8675,0,-1,0,132552,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20657,2,15,1,13,55,3,0,0,-1,0,135663,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +20658,4,2,8,8,55,0,8655,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20659,4,3,5,10,55,0,8659,0,-1,0,132966,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20660,2,6,1,17,55,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,228,0,0,0,0 +20661,4,2,8,10,55,0,8655,0,-1,0,132939,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20662,4,4,6,8,55,0,8657,0,-1,0,132586,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20663,2,2,2,15,55,0,0,0,-1,0,135498,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +20664,4,1,7,6,60,0,8660,0,-1,0,132495,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20665,4,2,8,7,57,0,8664,0,-1,0,134630,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20666,2,4,1,13,57,3,0,0,-1,0,133051,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +20667,4,2,8,6,60,0,8658,0,-1,0,132519,7,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20668,4,3,5,7,57,0,8663,0,-1,0,134668,10,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20669,2,8,1,17,57,1,0,0,-1,0,135345,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,229,0,0,0,0 +20670,4,3,5,6,60,0,8659,0,-1,0,132505,10,0,35,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20671,4,4,6,7,57,0,8662,0,-1,0,134688,11,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20672,2,19,2,26,57,0,0,0,-1,0,135474,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +20673,4,4,7,6,60,0,8661,0,-1,0,132515,7,0,40,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20674,4,1,7,7,57,0,8665,0,-1,0,134598,7,0,65,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20675,2,0,1,13,57,3,0,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +20676,0,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20677,0,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20678,0,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20679,0,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20680,4,3,5,3,60,0,8672,0,-1,0,135047,10,0,70,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20681,4,2,8,9,60,0,8667,0,-1,0,132609,7,0,35,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20682,4,0,4,11,60,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20683,4,4,6,3,60,0,8670,0,-1,0,135053,11,0,80,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20684,4,3,5,9,60,0,8668,0,-1,0,132606,10,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20685,4,0,4,2,60,0,0,0,-1,0,133308,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20686,4,1,7,3,60,0,8673,0,-1,0,135056,7,0,50,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20687,4,4,6,9,60,0,8669,0,-1,0,132618,11,0,45,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20688,4,6,6,14,60,4,0,0,-1,0,134961,9,0,120,0,0,0,0,0,0,2468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20689,4,2,8,3,60,0,8671,0,-1,0,135039,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20690,4,1,7,9,60,0,8666,0,-1,0,132611,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20691,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20692,4,0,7,11,55,0,3499,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20693,4,1,7,16,55,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20694,4,0,3,23,55,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20695,4,0,4,2,58,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20696,2,5,1,17,58,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,252,0,0,0,0 +20697,4,1,7,16,58,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20698,2,7,3,21,58,3,0,0,-1,0,135323,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +20699,4,4,6,7,0,0,0,0,-1,0,134694,11,0,100,0,0,0,0,0,0,575,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20700,4,4,6,7,0,0,0,0,-1,0,134694,11,0,100,0,0,0,0,0,0,575,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20701,4,3,5,7,0,0,0,0,-1,0,134660,11,0,90,0,0,0,0,0,0,324,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20702,4,3,5,7,0,0,0,0,-1,0,134660,11,0,90,0,0,0,0,0,0,324,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20703,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,154,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20704,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,154,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20705,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20706,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20707,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20708,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20709,0,0,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20710,4,4,6,8,0,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20711,4,4,6,8,0,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20712,4,3,5,10,0,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20713,4,3,5,10,0,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20714,4,2,8,8,0,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20715,4,2,8,8,0,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20716,4,1,7,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20717,4,1,7,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20718,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20719,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20720,2,15,1,21,60,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +20721,4,0,4,11,60,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20722,2,3,2,26,60,0,0,0,-1,0,135612,12,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +20723,2,0,1,21,0,3,0,0,-1,0,134709,12,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,130,0,0,0,0 +20724,2,10,2,17,0,2,0,0,-1,0,135144,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +20725,7,0,2,0,0,0,0,0,-1,0,132880,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20726,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20727,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20728,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20729,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20730,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20731,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20732,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20733,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20734,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20735,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20736,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20737,15,0,0,0,0,0,0,0,-1,0,134337,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20738,2,4,1,13,1,7,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +20739,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +20740,12,0,0,0,0,0,0,0,-1,0,133280,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +20741,15,0,0,0,45,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20742,15,0,0,0,50,0,0,0,-1,0,135816,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20744,7,0,0,0,5,0,0,0,-1,0,134711,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20745,7,0,0,0,20,0,0,0,-1,0,134878,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20746,7,0,0,0,30,0,0,0,-1,0,134725,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20747,7,0,0,0,40,0,0,0,-1,0,134879,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20748,7,0,0,0,45,0,0,0,-1,0,134722,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20749,7,0,0,0,45,0,0,0,-1,0,134727,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20750,7,0,0,0,40,0,0,0,-1,0,134726,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20751,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20752,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20753,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20754,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20755,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20756,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20757,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20758,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20761,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20763,15,0,0,0,0,0,0,0,-1,0,132363,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20766,15,0,0,0,0,0,0,0,-1,0,133642,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20767,15,0,0,0,0,0,0,0,-1,0,133642,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20768,15,0,0,0,0,0,0,0,-1,0,133645,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20769,15,0,0,0,0,0,0,0,-1,0,132107,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20770,15,0,0,0,0,0,0,0,-1,0,132108,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20800,12,0,0,0,0,0,0,0,-1,0,133303,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20801,12,0,0,0,0,0,0,0,-1,0,133277,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20802,12,0,0,0,0,0,0,0,-1,0,133439,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20803,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20805,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20806,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20807,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20808,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20809,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20810,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20814,2,16,1,25,60,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +20834,7,3,8,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20844,0,0,3,0,60,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20858,12,0,1,0,0,0,0,0,-1,0,134936,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20859,12,0,1,0,0,0,0,0,-1,0,134933,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20860,12,0,1,0,0,0,0,0,-1,0,134935,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20861,12,0,1,0,0,0,0,0,-1,0,134930,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20862,12,0,1,0,0,0,0,0,-1,0,134932,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20863,12,0,1,0,0,0,0,0,-1,0,134931,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20864,12,0,1,0,0,0,0,0,-1,0,134929,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20865,12,0,1,0,0,0,0,0,-1,0,2241756,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20866,12,0,1,0,0,0,0,0,-1,0,134898,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20867,12,0,1,0,0,0,0,0,-1,0,134905,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20868,12,0,1,0,0,0,0,0,-1,0,134901,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20869,12,0,1,0,0,0,0,0,-1,0,134897,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20870,12,0,1,0,0,0,0,0,-1,0,134900,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20871,12,0,1,0,0,0,0,0,-1,0,134904,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20872,12,0,1,0,0,0,0,0,-1,0,134910,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20873,12,0,1,0,0,0,0,0,-1,0,134896,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20874,12,0,1,0,0,0,0,0,-1,0,134909,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20875,12,0,1,0,0,0,0,0,-1,0,134903,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20876,12,0,1,0,0,0,0,0,-1,0,134899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20877,12,0,1,0,0,0,0,0,-1,0,134907,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20878,12,0,1,0,0,0,0,0,-1,0,134906,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20879,12,0,1,0,0,0,0,0,-1,0,134902,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20880,12,0,1,0,58,0,0,0,-1,0,132528,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20881,12,0,1,0,0,0,0,0,-1,0,134908,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20882,12,0,1,0,0,0,0,0,-1,0,134911,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20883,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20884,12,0,1,0,0,0,0,0,-1,0,134894,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20885,12,0,1,0,0,0,0,0,-1,0,134883,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20886,12,0,1,0,0,0,0,0,-1,0,134886,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20887,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20888,12,0,1,0,0,0,0,0,-1,0,134893,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20889,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20890,12,0,1,0,0,0,0,0,-1,0,134885,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20905,0,0,0,26,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20908,0,0,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20926,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20927,12,0,1,0,0,0,0,0,-1,0,134892,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20928,12,0,1,0,0,0,0,0,-1,0,134880,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20929,12,0,1,0,0,0,0,0,-1,0,134882,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20930,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20931,12,0,1,0,0,0,0,0,-1,0,134895,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20932,12,0,1,0,0,0,0,0,-1,0,134881,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20933,12,0,1,0,0,0,0,0,-1,0,134887,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20936,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20937,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20939,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20940,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20941,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20942,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20943,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20944,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20945,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20946,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20947,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20948,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20949,12,0,0,0,0,0,0,0,-1,0,133472,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20951,12,0,0,0,0,0,0,0,-1,0,133149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21023,0,0,0,0,55,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21024,7,0,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21025,9,5,0,0,0,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21027,12,0,0,0,0,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21028,12,0,0,0,0,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21029,12,0,0,0,0,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21030,0,0,0,0,35,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21031,0,0,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21032,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21033,0,0,0,0,45,0,0,0,-1,0,134020,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21037,15,0,0,0,0,0,0,0,-1,0,132319,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21038,0,0,0,0,0,0,0,0,-1,0,132387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21039,4,0,0,0,0,0,0,0,-1,0,133165,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21040,4,0,0,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21041,12,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21042,15,0,0,0,0,0,0,0,-1,0,133655,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21043,12,0,0,0,16,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21071,0,0,0,0,10,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21072,0,0,0,0,10,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21099,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21100,12,0,0,0,0,0,0,0,-1,0,133858,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21101,2,10,2,17,58,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21102,2,10,2,17,58,2,0,0,-1,0,135152,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21103,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21104,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21105,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21106,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21107,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21108,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21109,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21110,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21111,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21112,12,0,0,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21113,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21114,0,0,3,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21115,4,0,4,12,48,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21116,4,0,4,12,38,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21117,4,0,4,12,48,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21118,4,0,4,12,38,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21119,4,0,4,12,28,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21120,4,0,4,12,28,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21121,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +21122,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +21123,2,14,1,13,1,0,0,0,-1,0,133939,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +21124,2,19,2,26,60,0,0,0,-1,0,135474,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +21125,2,10,2,17,60,2,0,0,-1,0,135138,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,255,0,0,0,0 +21126,2,15,1,13,60,3,0,0,-1,0,135669,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,144,0,0,0,0 +21127,2,4,1,21,60,3,0,0,-1,0,133501,12,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +21128,2,10,2,17,60,2,0,0,-1,0,135138,13,0,120,0,0,0,0,0,0,0,0,10,10,10,10,10,170,0,0,0,0,255,0,0,0,0 +21129,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21130,15,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21131,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21132,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21133,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21134,2,1,1,17,60,1,0,0,-1,0,132418,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0,364,0,0,0,0 +21135,2,16,1,25,58,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +21136,12,0,0,0,0,0,0,0,-1,0,133001,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21137,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21138,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21139,12,0,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21140,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21141,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21142,15,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21143,12,0,0,0,58,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21144,12,0,0,0,0,0,0,0,-1,0,135432,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21145,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21146,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21147,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21148,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21149,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21150,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21151,0,0,3,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21152,12,0,0,0,0,0,0,0,-1,0,136160,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21153,0,0,0,0,30,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21154,4,0,0,20,0,0,0,0,-1,0,132697,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21155,12,0,1,0,0,0,0,0,-1,0,133474,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21156,15,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21157,4,0,0,20,0,0,0,0,-1,0,132698,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21158,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21159,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21160,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21161,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21162,0,0,0,0,5,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21163,0,0,0,0,15,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21164,0,0,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21165,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21166,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21167,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21168,15,0,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21169,15,0,0,22,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21170,15,0,0,22,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21171,15,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21172,15,0,0,23,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21173,15,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21174,15,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21175,15,0,0,0,0,0,0,0,-1,0,133062,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21176,15,0,0,0,60,0,0,0,-1,0,134399,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21177,5,0,2,0,0,0,0,0,-1,0,134471,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21178,4,2,8,10,0,0,0,0,-1,0,132952,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21179,4,0,0,11,0,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21180,4,0,3,12,0,0,0,0,-1,0,136006,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21181,4,0,3,12,0,0,0,0,-1,0,134182,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21182,4,0,0,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21183,4,1,7,5,0,0,0,0,-1,0,132647,7,0,80,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21184,4,4,6,9,0,0,0,0,-1,0,132606,11,0,55,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21185,4,0,3,23,0,7,0,0,-1,0,134125,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21186,4,1,7,9,0,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21187,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21188,2,5,2,17,60,1,0,0,-1,0,133060,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +21189,4,0,0,11,0,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21190,4,0,0,11,0,0,0,0,-1,0,133382,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21191,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21192,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21193,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21194,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21195,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21196,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21197,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21198,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21199,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21200,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21201,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21202,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21203,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21204,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21205,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21206,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21207,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21208,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21209,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21210,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21211,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21212,0,0,0,0,40,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21213,0,0,0,0,40,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21214,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21215,0,0,0,0,40,0,0,0,-1,0,132934,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21216,15,0,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21217,0,0,0,0,30,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21218,15,0,0,0,60,0,0,0,-1,0,134398,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21219,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21220,12,0,1,0,60,0,0,0,-1,0,132192,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21221,12,0,0,0,60,0,0,0,-1,0,136152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21222,15,0,0,0,0,0,0,0,-1,0,135035,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21223,15,0,0,0,0,0,0,0,-1,0,134456,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21224,15,0,0,0,0,0,0,0,-1,0,133601,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21225,15,0,0,0,0,0,0,0,-1,0,134308,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21226,15,0,0,0,0,0,0,0,-1,0,134464,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21227,15,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21228,15,0,2,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21229,15,0,0,0,0,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21230,15,0,0,0,60,0,0,0,-1,0,134232,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21231,15,0,1,0,60,0,0,0,-1,0,135311,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21232,15,0,2,0,60,0,0,0,-1,0,135161,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21233,15,0,2,0,60,0,0,0,-1,0,134964,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21234,15,0,2,0,60,0,0,0,-1,0,133483,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21235,0,0,0,0,0,0,0,0,-1,0,134006,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21236,0,0,0,0,0,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21237,15,0,2,0,60,0,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21238,0,0,0,0,0,0,0,0,-1,0,134018,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21239,15,0,2,0,60,0,0,0,-1,0,135353,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21240,0,0,0,0,0,0,0,0,-1,0,134017,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21241,0,0,0,0,0,0,0,0,-1,0,132803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21242,2,0,1,13,60,3,0,0,-1,0,132420,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +21243,0,0,0,0,0,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21244,2,15,1,13,60,3,0,0,-1,0,135671,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,134,0,0,0,0 +21245,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21246,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21247,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21248,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21249,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21250,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21251,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21252,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21253,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21254,0,0,0,0,0,0,0,0,-1,0,134018,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21255,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21256,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21257,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21258,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21259,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21260,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21261,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21262,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21263,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21264,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21265,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21266,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21267,0,0,0,0,0,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21268,2,4,1,13,60,3,0,0,-1,0,133501,9,0,105,0,0,0,0,0,0,70,0,0,0,0,0,0,89,0,0,0,0,166,0,0,0,0 +21269,4,6,1,14,60,4,0,0,-1,0,134969,9,0,120,0,0,0,0,0,0,2964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21270,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21271,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21272,2,3,1,26,60,0,0,0,-1,0,135620,9,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +21273,2,10,2,17,60,2,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21274,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21275,2,10,2,17,60,2,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21276,2,10,2,17,60,0,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +21277,7,3,0,0,0,0,0,0,-1,0,132189,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21278,4,2,0,10,57,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21279,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21280,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21281,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21282,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21283,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21284,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21285,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21286,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21287,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21288,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21289,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21290,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21291,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21292,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21293,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21294,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21295,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21296,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21297,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21298,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21299,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21300,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21301,15,0,0,0,0,0,0,0,-1,0,133204,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21302,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21303,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21304,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21305,15,0,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21306,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21307,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21308,15,0,0,0,0,0,0,0,-1,0,133706,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21309,15,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21310,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21311,4,1,7,5,0,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21312,4,3,5,6,0,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21313,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21314,15,0,0,0,0,0,0,0,-1,0,133459,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21315,15,0,0,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21316,4,4,6,7,0,0,0,0,-1,0,134662,9,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21317,4,2,8,1,0,0,0,0,-1,0,133078,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21318,4,1,7,10,0,0,0,0,-1,0,132958,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21319,4,2,7,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21320,4,3,7,5,0,0,0,0,-1,0,132638,11,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21321,15,0,0,0,60,0,0,0,-1,0,134396,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21322,4,4,7,5,0,0,0,0,-1,0,132751,9,0,115,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21323,15,0,0,0,60,0,0,0,-1,0,134397,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21324,15,0,0,0,60,0,0,0,-1,0,134395,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21325,0,0,3,0,0,0,0,0,-1,0,132189,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21326,4,0,0,12,0,0,0,0,-1,0,134227,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21327,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21328,15,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21329,4,4,1,1,60,0,0,0,-1,0,133174,11,0,100,0,0,0,0,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21330,4,4,6,3,60,0,0,0,-1,0,135066,11,0,100,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21331,4,4,6,5,60,0,0,0,-1,0,132747,11,0,165,0,0,0,0,0,0,985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21332,4,4,1,7,60,0,0,0,-1,0,134679,11,0,120,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21333,4,4,1,8,60,0,0,0,-1,0,132586,11,0,75,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21334,4,1,7,20,60,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21335,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21336,4,1,7,7,60,0,0,0,-1,0,134596,7,0,75,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21337,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21338,4,1,7,8,60,0,0,0,-1,0,132559,7,0,50,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21339,4,1,7,10,60,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21340,1,1,8,18,0,0,0,0,-1,0,133670,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21341,1,1,8,18,0,0,0,0,-1,0,133667,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21342,1,1,8,18,0,0,0,0,-1,0,133664,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21343,4,1,7,20,60,0,0,0,-1,0,132652,7,0,100,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21344,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21345,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21346,4,1,7,7,60,0,0,0,-1,0,134602,7,0,75,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21347,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21348,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21349,4,1,7,8,60,0,0,0,-1,0,132564,7,0,50,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21350,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21351,4,1,7,20,60,0,0,0,-1,0,132651,7,0,100,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21352,4,1,7,7,60,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21353,4,2,8,1,60,0,0,0,-1,0,133074,7,0,70,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21354,4,2,8,3,60,0,0,0,-1,0,135034,7,0,70,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21355,4,2,8,8,60,0,0,0,-1,0,132564,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21356,4,2,8,7,60,0,0,0,-1,0,134626,7,0,90,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21357,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21358,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21359,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21360,4,2,8,1,60,0,0,0,-1,0,133072,7,0,70,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21361,4,2,8,3,60,0,0,0,-1,0,135034,7,0,70,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21362,4,2,8,7,60,0,0,0,-1,0,134632,7,0,90,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21363,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21364,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21365,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21366,4,3,5,1,60,0,0,0,-1,0,133175,10,0,85,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21367,4,3,5,3,60,0,0,0,-1,0,135067,10,0,85,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21368,4,3,5,7,60,0,0,0,-1,0,134663,10,0,105,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21369,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21370,4,3,5,5,60,0,0,0,-1,0,132626,10,0,140,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21371,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21372,4,3,5,1,60,0,0,0,-1,0,133175,10,0,85,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21373,4,3,5,8,60,0,0,0,-1,0,132550,10,0,70,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21374,4,3,5,5,60,0,0,0,-1,0,132635,10,0,140,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21375,4,3,5,7,60,0,0,0,-1,0,134662,10,0,105,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21376,4,3,5,3,60,0,0,0,-1,0,135034,10,0,85,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21377,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21378,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21379,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21380,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21381,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21382,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21383,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21384,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21385,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21386,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21387,4,4,6,1,60,0,0,0,-1,0,133174,11,0,100,0,0,0,0,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21388,4,4,6,8,60,0,0,0,-1,0,132550,11,0,75,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21389,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21390,4,4,6,7,60,0,0,0,-1,0,134678,11,0,120,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21391,4,4,6,3,60,0,0,0,-1,0,135066,11,0,100,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21392,2,0,1,13,60,7,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +21393,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21394,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21395,2,7,1,21,60,3,0,0,-1,0,135367,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +21396,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21397,4,1,7,16,60,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21398,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +21399,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21400,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21401,2,0,1,13,60,7,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +21402,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21403,4,1,7,16,60,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21404,2,15,1,13,60,3,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +21405,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21406,4,1,7,16,60,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21407,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,175,0,0,0,0 +21408,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21409,4,1,7,16,60,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21410,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +21411,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21412,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21413,2,7,1,21,60,3,0,0,-1,0,135367,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +21414,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21415,4,1,7,16,60,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21416,2,15,1,13,60,3,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +21417,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21418,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21419,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21420,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21421,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21422,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21423,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21424,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21425,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21426,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21427,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21428,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21429,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21430,4,0,0,20,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21431,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21432,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21433,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21434,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21435,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21436,15,0,0,0,0,0,0,0,-1,0,132486,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21437,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21438,15,0,0,0,0,0,0,0,-1,0,132485,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21439,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21440,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21441,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21442,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21443,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21444,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21445,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21446,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21447,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21448,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21449,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21450,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21451,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21452,2,10,2,17,60,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21453,4,4,6,3,60,0,0,0,-1,0,135059,11,0,100,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21454,4,3,5,3,60,0,0,0,-1,0,135049,10,0,85,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21455,4,2,8,1,60,0,0,0,-1,0,133069,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21456,4,1,7,16,60,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21457,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21458,4,2,8,10,60,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21459,2,18,2,26,60,0,0,0,-1,0,135535,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +21460,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21461,4,1,7,7,60,0,0,0,-1,0,134600,7,0,75,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21462,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21463,4,3,5,6,60,0,0,0,-1,0,132507,10,0,50,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21464,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21465,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21466,2,4,1,21,60,3,0,0,-1,0,2245030,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +21467,4,2,8,5,60,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,208,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +21468,4,1,7,3,60,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21469,4,2,8,10,60,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21470,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21471,4,0,3,23,60,7,0,0,-1,0,133498,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21472,4,1,7,1,60,0,0,0,-1,0,133164,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21473,4,0,4,12,60,0,0,0,-1,0,133884,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21474,4,2,8,3,60,0,0,0,-1,0,135060,7,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21475,4,4,6,7,60,0,0,0,-1,0,134677,11,0,100,0,0,0,0,0,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21476,4,3,5,7,60,0,0,0,-1,0,134667,11,0,90,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21477,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21478,2,2,2,15,60,0,0,0,-1,0,135501,12,0,90,2,0,0,0,0,0,0,0,0,8,0,0,0,59,0,0,0,0,111,0,0,0,0 +21479,4,4,6,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21480,4,3,5,10,60,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21481,4,4,6,8,60,0,0,0,-1,0,132586,11,0,65,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21482,4,3,5,8,60,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21483,4,0,4,11,60,0,0,0,-1,0,133427,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21484,4,2,8,1,60,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21485,4,6,6,14,60,4,0,0,-1,0,134968,9,0,120,0,0,0,0,0,0,2575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21486,4,4,6,10,60,0,0,0,-1,0,132964,11,0,55,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21487,4,3,5,10,60,0,0,0,-1,0,132946,11,0,50,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21488,4,0,4,12,60,0,0,0,-1,0,133571,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21489,4,1,7,8,60,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21490,4,4,6,8,60,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21491,4,2,8,9,60,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21492,2,8,1,17,60,1,0,0,-1,0,135366,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,270,0,0,0,0 +21493,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21494,4,2,8,6,60,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21495,4,4,6,7,60,0,0,0,-1,0,134691,11,0,100,0,0,0,0,0,0,644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21496,4,1,7,9,60,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21497,4,3,5,8,60,0,0,0,-1,0,132554,10,0,60,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21498,2,15,1,13,60,3,0,0,-1,0,135648,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +21499,4,1,7,20,60,0,0,0,-1,0,132658,7,0,100,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21500,4,1,7,6,60,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21501,4,2,8,10,60,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21502,4,3,5,9,60,0,0,0,-1,0,132618,10,0,40,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21503,4,4,6,6,60,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21504,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21505,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21506,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21507,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21508,12,0,0,0,0,0,0,0,-1,0,133299,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21509,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21510,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21511,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21512,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21513,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21514,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21515,12,0,0,0,0,0,0,0,-1,0,133301,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21516,2,15,2,13,58,2,0,0,-1,0,135150,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21517,4,1,7,1,60,0,0,0,-1,0,133165,7,0,60,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21518,2,15,2,13,58,2,0,0,-1,0,135150,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21519,15,0,0,0,0,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21520,2,7,4,13,60,3,0,0,-1,0,135359,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +21521,2,7,4,21,60,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +21522,2,15,4,13,60,3,0,0,-1,0,135661,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +21523,2,15,4,21,60,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +21524,4,0,0,1,0,0,0,0,-1,0,133169,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21525,4,0,0,1,0,0,0,0,-1,0,133170,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21526,4,0,4,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +21527,4,1,7,20,60,0,0,0,-1,0,132672,7,0,100,0,0,0,0,0,0,117,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21528,15,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21529,4,0,3,2,60,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21530,4,3,5,7,60,0,0,0,-1,0,134656,10,0,105,0,0,0,0,0,0,427,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0 +21531,4,0,4,2,60,0,0,0,-1,0,133309,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21532,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,156,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21533,12,0,0,0,0,0,0,0,-1,0,134311,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21534,12,0,0,0,0,0,0,0,-1,0,134314,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21535,12,0,0,0,0,0,0,0,-1,0,134317,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21536,0,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21537,0,0,0,0,0,0,0,0,-1,0,134056,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21538,4,0,0,20,0,0,0,0,-1,0,132699,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21539,4,0,0,20,0,0,0,0,-1,0,132700,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21540,15,0,0,0,40,0,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21541,4,0,0,20,0,0,0,0,-1,0,132694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21542,4,0,0,20,0,0,0,0,-1,0,132696,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21543,4,0,0,20,0,0,0,0,-1,0,132695,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21544,4,0,0,20,0,0,0,0,-1,0,132693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21545,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21546,0,0,3,0,40,0,0,0,-1,0,134840,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21547,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21548,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21549,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21550,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21551,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +21552,0,0,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21553,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21554,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21555,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +21556,0,0,0,0,0,0,0,0,-1,0,132392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21557,0,0,0,0,0,0,0,0,-1,0,134285,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21558,0,0,0,0,0,0,0,0,-1,0,134282,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21559,0,0,0,0,0,0,0,0,-1,0,134283,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21560,0,0,0,0,0,0,0,0,-1,0,134284,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21561,0,0,0,0,0,0,0,0,-1,0,134286,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21562,0,0,0,0,0,0,0,0,-1,0,134287,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21563,4,0,0,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21564,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21565,4,0,4,12,40,0,0,0,-1,0,134418,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21566,4,0,4,12,20,0,0,0,-1,0,134418,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21567,4,0,4,12,40,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21568,4,0,4,12,20,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21569,0,0,0,0,0,0,0,0,-1,0,134538,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21570,0,0,0,0,0,0,0,0,-1,0,133861,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21571,0,0,0,0,0,0,0,0,-1,0,134288,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21572,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21573,2,7,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21574,0,0,0,0,0,0,0,0,-1,0,134289,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21575,0,0,0,0,0,0,0,0,-1,0,134290,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21576,0,0,0,0,0,0,0,0,-1,0,134291,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21577,0,0,0,0,0,0,0,0,-1,0,134292,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21578,0,0,0,0,0,0,0,0,-1,0,134293,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21579,4,0,4,12,60,0,0,0,-1,0,133574,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21580,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21581,4,4,6,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21582,4,1,7,6,60,0,0,0,-1,0,132520,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21583,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21584,4,3,5,9,60,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21585,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21586,4,2,5,6,60,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21587,4,4,6,9,60,0,0,0,-1,0,132618,10,0,55,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21588,4,3,5,9,60,0,0,0,-1,0,132613,10,0,50,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21589,0,0,0,0,0,0,0,0,-1,0,134270,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21590,0,0,0,0,0,0,0,0,-1,0,134271,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21591,0,0,0,0,0,0,0,0,-1,0,134272,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21592,0,0,0,0,0,0,0,0,-1,0,134273,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21593,0,0,0,0,0,0,0,0,-1,0,134274,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21594,4,2,8,9,60,0,0,0,-1,0,132610,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21595,0,0,0,0,0,0,0,0,-1,0,134275,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21596,4,0,4,11,60,0,0,0,-1,0,133428,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21597,4,0,3,23,60,0,0,0,-1,0,135472,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21598,4,4,6,6,60,0,0,0,-1,0,132520,11,0,55,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21599,4,3,5,10,60,0,0,0,-1,0,132962,10,0,50,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21600,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21601,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21602,4,2,8,9,60,0,0,0,-1,0,132612,7,0,40,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21603,2,19,2,26,60,0,0,0,-1,0,135468,21,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +21604,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21605,4,2,8,10,60,0,0,0,-1,0,132953,7,0,40,0,0,0,0,0,0,148,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +21606,4,4,6,6,60,0,0,0,-1,0,132523,11,0,55,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21607,4,3,5,6,60,0,0,0,-1,0,132521,10,0,50,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21608,4,0,4,2,60,0,0,0,-1,0,133339,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21609,4,2,8,6,60,0,0,0,-1,0,132500,7,0,40,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21610,4,6,2,14,60,4,0,0,-1,0,134970,13,0,120,0,0,0,0,0,0,3035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21611,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21612,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21613,4,2,8,8,60,0,0,0,-1,0,132538,7,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21614,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,192,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +21615,4,1,7,1,60,0,0,0,-1,0,133153,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21616,2,2,2,15,60,0,0,0,-1,0,135502,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,163,0,0,0,0 +21617,4,2,8,10,60,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21618,4,4,6,9,60,0,0,0,-1,0,132601,11,0,55,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21619,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21620,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21621,4,1,7,16,60,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21622,2,7,1,21,60,3,0,0,-1,0,135368,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +21623,4,4,6,10,60,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21624,4,3,5,10,60,0,0,0,-1,0,132960,10,0,50,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21625,4,0,4,12,60,0,0,0,-1,0,133575,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21626,4,3,5,7,60,0,0,0,-1,0,134663,10,0,105,0,0,0,0,0,0,432,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0 +21627,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,59,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21628,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21629,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21630,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21631,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21632,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21633,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21634,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21635,2,6,1,17,60,1,0,0,-1,0,135591,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +21636,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21637,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21638,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21639,4,4,6,3,60,0,0,0,-1,0,135060,11,0,100,0,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21640,15,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21641,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21642,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21643,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21644,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21645,4,2,8,8,60,0,0,0,-1,0,132538,7,0,60,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21646,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21647,4,0,4,12,60,0,0,0,-1,0,133572,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21648,4,1,7,8,60,0,0,0,-1,0,132564,7,0,50,0,0,0,0,0,0,80,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21649,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21650,2,7,1,13,60,3,0,0,-1,0,135369,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +21651,4,3,5,7,60,0,0,0,-1,0,134662,10,0,105,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21652,4,4,6,5,60,0,0,0,-1,0,132744,11,0,165,0,0,0,0,0,0,867,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0 +21653,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21654,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21655,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21656,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21657,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21658,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21659,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21660,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21661,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21662,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21663,4,1,7,20,60,0,0,0,-1,0,132664,7,0,100,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21664,4,0,4,2,60,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21665,4,2,8,3,60,0,0,0,-1,0,135061,7,0,70,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21666,4,0,1,23,60,0,0,0,-1,0,134911,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21667,4,4,6,7,60,0,0,0,-1,0,134687,11,0,120,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21668,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21669,4,2,8,1,60,0,0,0,-1,0,133069,7,0,70,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21670,4,0,4,12,60,0,0,0,-1,0,133573,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21671,4,1,7,20,60,0,0,0,-1,0,132667,7,0,100,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21672,4,2,8,10,60,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21673,2,13,1,21,60,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +21674,4,4,2,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21675,4,2,8,6,60,0,0,0,-1,0,132504,7,0,40,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21676,4,1,3,7,60,0,0,0,-1,0,134596,7,0,75,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21677,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21678,4,0,7,2,60,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21679,2,8,1,17,60,1,0,0,-1,0,135366,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +21680,4,2,8,5,60,0,0,0,-1,0,132686,7,0,120,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21681,4,0,4,11,60,0,0,0,-1,0,133427,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21682,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,143,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21683,4,4,6,3,60,0,0,0,-1,0,135060,11,0,100,0,0,0,0,0,0,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21684,4,3,5,3,60,0,0,0,-1,0,135059,10,0,85,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21685,4,0,4,12,60,0,0,0,-1,0,133570,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21686,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21687,4,0,4,11,60,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21688,4,4,6,8,60,0,0,0,-1,0,132582,11,0,75,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21689,4,2,8,10,60,0,0,0,-1,0,132957,7,0,40,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21690,4,0,4,2,60,0,0,0,-1,0,133307,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21691,4,4,6,10,60,0,0,0,-1,0,132945,11,0,55,0,0,0,0,0,0,529,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +21692,4,4,6,6,60,0,0,0,-1,0,132507,11,0,55,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21693,4,2,8,1,60,0,0,0,-1,0,133074,7,0,70,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21694,4,1,7,3,60,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21695,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21696,4,1,7,20,60,0,0,0,-1,0,132663,7,0,100,0,0,0,0,0,0,114,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +21697,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21698,4,2,8,7,60,0,0,0,-1,0,134636,7,0,90,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21699,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21700,4,0,4,2,60,0,0,0,-1,0,133339,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21701,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21702,4,0,4,2,60,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21703,2,5,1,17,60,1,0,0,-1,0,133498,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,297,0,0,0,0 +21704,4,4,6,8,60,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21705,4,3,5,8,60,0,0,0,-1,0,132549,10,0,70,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21706,4,4,6,8,60,0,0,0,-1,0,132587,11,0,75,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21707,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21708,4,2,8,9,60,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,95,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +21709,4,0,4,11,60,0,0,0,-1,0,133424,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21710,4,1,7,16,60,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21711,0,0,0,0,1,0,0,0,-1,0,134941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21712,4,0,4,2,60,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21713,2,14,0,0,0,0,0,0,-1,0,134536,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21714,0,0,0,0,0,0,0,0,-1,0,134276,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21715,2,4,1,13,60,3,0,0,-1,0,133501,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +21716,0,0,0,0,0,0,0,0,-1,0,134277,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21717,0,0,0,0,0,0,0,0,-1,0,134278,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21718,0,0,0,0,0,0,0,0,-1,0,134279,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21719,0,0,0,0,0,0,0,0,-1,0,134280,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21720,0,0,0,0,0,0,0,0,-1,0,134281,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21721,0,0,3,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21722,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21723,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21724,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21725,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21726,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21727,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21728,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21729,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21730,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21731,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21732,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21733,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21734,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21735,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21736,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21737,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21738,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21739,0,0,0,0,1,0,0,0,-1,0,134941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21740,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21741,0,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21742,0,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21743,0,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21744,0,0,0,0,0,0,0,0,-1,0,134280,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21745,0,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21746,0,0,0,0,0,0,0,0,-1,0,134268,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21747,0,0,0,0,0,0,0,0,-1,0,133713,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21749,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21750,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21751,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21761,13,0,0,0,0,0,0,0,-1,0,134242,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21762,13,0,0,0,0,0,0,0,-1,0,134242,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21782,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +21794,2,8,1,17,1,1,0,0,-1,0,135366,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +21795,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21796,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +21797,2,8,6,17,60,1,0,0,-1,0,135366,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21798,2,8,6,17,60,1,0,0,-1,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,508,0,0,0,0 +21799,2,8,1,17,60,1,0,0,-1,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,328,0,0,0,0 +21800,2,3,1,26,60,0,0,0,-1,0,135619,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +21801,2,19,2,26,60,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +21802,2,15,1,21,60,3,0,0,-1,0,135342,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +21803,4,4,6,1,60,0,0,0,-1,0,133071,9,0,80,0,0,0,0,0,0,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21804,4,3,5,1,60,0,0,0,-1,0,133126,11,0,70,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21805,4,4,6,3,60,0,0,0,-1,0,135057,11,0,80,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21806,2,5,1,17,60,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +21809,4,0,0,2,60,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21810,4,1,7,8,60,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21811,0,0,0,0,0,0,0,0,-1,0,132595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21812,15,0,0,0,1,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21813,15,0,0,0,1,0,0,0,-1,0,135452,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21814,4,4,6,5,60,0,0,0,-1,0,132737,11,0,165,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21815,0,0,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21816,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21817,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21818,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21819,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21820,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21821,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21822,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21823,15,0,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21829,0,0,0,0,0,0,0,0,-1,0,135447,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21830,15,0,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21831,15,0,0,0,0,0,0,0,-1,0,134144,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21832,0,0,0,1,0,0,0,0,-1,0,132483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21833,0,0,0,0,0,0,0,0,-1,0,135446,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21834,0,0,0,0,0,0,0,0,-1,0,134838,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21836,4,0,4,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21837,2,4,1,13,60,3,0,0,-1,0,133048,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +21838,4,1,7,20,60,0,0,0,-1,0,132689,7,0,100,0,0,0,0,0,0,109,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +21839,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +21856,2,1,1,17,60,1,0,0,-1,0,132400,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,303,0,0,0,0 +21857,1,2,8,18,0,0,0,0,-1,0,133670,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21888,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21889,4,4,6,10,60,0,0,0,-1,0,132953,8,0,55,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21890,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21891,4,0,1,12,60,0,0,0,-1,0,133573,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21920,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21921,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21922,0,0,0,0,0,0,0,0,-1,0,132598,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21923,0,0,0,0,0,0,0,0,-1,0,133625,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21925,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21926,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21928,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21930,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21935,12,0,0,0,0,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21936,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21937,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21938,12,0,0,0,0,0,0,0,-1,0,134085,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21939,15,0,1,0,0,0,0,0,-1,0,135155,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21946,12,0,0,0,0,0,0,0,-1,0,133882,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21960,0,0,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21961,0,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21962,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21963,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21964,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21965,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21966,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21967,0,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21968,0,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21969,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21970,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21971,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21972,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21973,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21974,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21975,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21976,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21977,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21978,0,0,0,0,0,0,0,0,-1,0,132597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21979,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21980,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21981,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21982,12,0,0,0,0,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21983,12,0,0,0,0,0,0,0,-1,0,132619,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21984,12,0,0,0,0,0,0,0,-1,0,133320,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21985,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21986,12,0,0,0,0,0,0,0,-1,0,132619,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21987,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21988,12,0,0,0,0,0,0,0,-1,0,132386,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21989,12,0,0,0,0,0,0,0,-1,0,135805,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21994,4,4,6,6,0,0,0,0,-1,0,132523,11,0,45,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21995,4,4,6,8,0,0,0,0,-1,0,132584,11,0,75,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21996,4,4,6,9,0,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21997,4,4,6,5,0,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21998,4,4,6,10,0,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21999,4,4,6,1,0,0,0,0,-1,0,133070,11,0,100,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22000,4,4,6,7,0,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22001,4,4,6,3,0,0,0,0,-1,0,135061,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22002,4,2,8,6,0,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22003,4,2,8,8,0,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22004,4,2,8,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22005,4,2,8,1,0,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22006,4,2,8,10,0,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22007,4,2,8,7,0,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22008,4,2,8,3,0,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22009,4,2,8,5,0,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22010,4,3,5,6,0,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22011,4,3,5,9,0,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22013,4,3,5,1,0,0,0,0,-1,0,133126,10,0,85,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22014,12,0,0,0,0,0,0,0,-1,0,133879,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22015,4,3,5,10,0,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22016,4,3,5,3,0,0,0,0,-1,0,135041,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22017,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22020,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22021,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22022,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22023,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22024,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22025,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22026,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22027,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22028,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22029,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22030,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22031,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22032,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22033,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22034,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22035,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22036,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22037,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22038,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22039,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22040,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22041,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22042,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22043,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22045,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22046,12,0,0,0,0,0,0,0,-1,0,133318,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22047,12,0,0,0,0,0,0,0,-1,0,133316,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22048,12,0,0,0,0,0,0,0,-1,0,133314,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22049,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22050,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22051,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22052,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22056,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22057,12,0,0,0,0,0,0,0,-1,0,133880,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22058,0,0,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22059,15,0,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22060,4,3,5,5,0,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22061,4,3,5,8,0,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22062,4,1,7,6,0,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22063,4,1,7,9,0,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22064,4,1,7,8,0,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22065,4,1,7,1,0,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22066,4,1,7,10,0,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22067,4,1,7,7,0,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22068,4,1,7,3,0,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22069,4,1,7,20,0,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22070,4,1,7,6,0,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22071,4,1,7,9,0,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22072,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22073,4,1,7,3,0,0,0,0,-1,0,133732,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22074,4,1,7,1,0,0,0,0,-1,0,133131,7,0,60,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22075,4,1,7,20,0,0,0,0,-1,0,132690,7,0,100,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22076,4,1,7,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22077,4,1,7,10,0,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22078,4,1,7,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22079,4,1,7,9,0,0,0,0,-1,0,132520,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22080,4,1,7,1,0,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22081,4,1,7,10,0,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22082,4,1,7,3,0,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22083,4,1,7,20,0,0,0,0,-1,0,132652,7,0,100,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22084,4,1,7,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22085,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22086,4,4,6,6,0,0,0,0,-1,0,132500,11,0,45,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22087,4,4,6,8,0,0,0,0,-1,0,132584,11,0,75,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22088,4,4,6,9,0,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22089,4,4,6,5,0,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22090,4,4,6,10,0,0,0,0,-1,0,132953,11,0,55,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22091,4,4,6,1,0,0,0,0,-1,0,133076,11,0,100,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22092,4,4,6,7,0,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22093,4,4,6,3,0,0,0,0,-1,0,135041,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22094,12,0,0,0,0,0,0,0,-1,0,134192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22095,4,3,5,9,0,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22096,4,3,5,8,0,0,0,0,-1,0,132592,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22097,4,3,5,1,0,0,0,0,-1,0,133072,10,0,85,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22098,4,3,5,6,0,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22099,4,3,5,10,0,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22100,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22101,4,3,5,3,0,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22102,4,3,5,5,0,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22106,4,2,8,6,0,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22107,4,2,8,8,0,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22108,4,2,8,9,0,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22109,4,2,8,1,0,0,0,0,-1,0,133129,7,0,70,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22110,4,2,8,10,0,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22111,4,2,8,7,0,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22112,4,2,8,3,0,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22113,4,2,8,5,0,0,0,0,-1,0,132741,7,0,120,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22114,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22115,12,0,0,0,0,0,0,0,-1,0,133878,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22117,0,0,0,0,0,0,0,0,-1,0,134330,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22118,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22119,0,0,0,0,0,0,0,0,-1,0,134329,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22120,0,0,0,0,0,0,0,0,-1,0,134332,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22121,0,0,0,0,0,0,0,0,-1,0,134331,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22122,0,0,0,0,0,0,0,0,-1,0,134327,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22123,0,0,0,0,0,0,0,0,-1,0,134331,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22124,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22125,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22126,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22127,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22129,0,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22130,15,0,0,0,1,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22131,15,0,0,0,1,0,0,0,-1,0,134142,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22132,15,0,0,0,1,0,0,0,-1,0,134140,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22133,15,0,0,0,1,0,0,0,-1,0,134141,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22134,15,0,0,0,1,0,0,0,-1,0,134143,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22135,15,0,0,0,1,0,0,0,-1,0,134144,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22136,15,0,0,0,1,0,0,0,-1,0,134140,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22137,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22138,12,0,0,0,0,0,0,0,-1,0,132614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22139,12,0,0,0,0,0,0,0,-1,0,133308,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22140,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22141,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22142,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22143,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22144,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22145,0,0,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22149,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22150,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22151,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22152,15,0,0,0,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22154,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22155,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22156,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22157,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22158,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22159,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22160,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22161,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22162,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22163,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22164,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22165,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22166,0,0,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22167,0,0,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22168,0,0,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22169,0,0,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22170,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22171,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22172,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22173,0,0,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22174,0,0,0,0,0,0,0,0,-1,0,134939,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22175,0,0,0,0,0,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22176,0,0,0,0,0,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22177,0,0,0,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22178,0,0,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22191,4,3,5,5,60,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22192,0,0,3,0,0,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22193,0,0,3,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22194,4,3,5,10,60,0,0,0,-1,0,132965,10,0,50,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22195,4,3,0,6,60,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22196,4,4,5,5,60,0,0,0,-1,0,132639,10,0,165,0,0,0,0,0,0,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22197,4,4,0,6,60,0,0,0,-1,0,132505,11,0,45,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22198,4,6,6,14,60,4,0,0,-1,0,134968,9,0,120,0,0,0,0,0,0,2645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22199,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +22200,15,0,0,0,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22201,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22202,7,0,0,0,0,0,0,0,-1,0,134455,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22203,7,0,0,0,0,0,0,0,-1,0,135241,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22204,4,2,8,9,55,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22205,4,4,6,9,52,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22206,4,0,0,23,0,0,0,0,-1,0,134927,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22207,4,3,5,6,55,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22208,2,5,1,17,53,1,0,0,-1,0,133047,11,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,203,0,0,0,0 +22209,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22210,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22211,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22212,4,3,5,3,51,0,0,0,-1,0,135047,10,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22213,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22214,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22215,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22216,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22217,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22218,0,0,0,0,0,0,0,0,-1,0,133851,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22219,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22220,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22221,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22222,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22223,4,4,6,1,50,0,0,0,-1,0,133122,11,0,80,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22224,12,0,3,0,1,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22225,4,1,0,1,55,0,3304,0,-1,0,133129,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22226,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22227,12,0,0,0,0,0,0,0,-1,0,136244,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22228,12,0,0,0,0,0,0,0,-1,0,135271,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22229,12,0,0,0,0,0,0,0,-1,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22230,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22231,4,1,0,8,56,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22232,4,3,5,6,56,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22233,1,0,1,18,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22234,4,1,7,3,48,0,0,0,-1,0,135040,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22235,15,0,0,0,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22236,0,0,0,0,0,0,0,0,-1,0,135457,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22237,0,0,0,0,0,0,0,0,-1,0,135460,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22238,0,0,0,0,0,0,0,0,-1,0,135458,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22239,0,0,0,0,0,0,0,0,-1,0,135459,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22240,4,3,5,8,48,0,0,0,-1,0,132547,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22241,4,2,8,3,52,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22242,4,3,5,6,51,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22243,1,1,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22244,1,1,8,18,0,0,0,0,-1,0,134711,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22245,4,1,7,8,51,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22246,1,3,8,18,0,0,0,0,-1,0,133665,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22247,4,1,7,8,58,0,0,0,-1,0,132560,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22248,1,3,8,18,0,0,0,0,-1,0,133666,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22249,1,3,8,18,0,0,0,0,-1,0,133662,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22250,1,2,8,18,0,0,0,0,-1,0,133668,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22251,1,2,8,18,0,0,0,0,-1,0,133663,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22252,1,2,8,18,0,0,0,0,-1,0,133669,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22253,4,0,8,23,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22254,2,19,2,26,52,0,0,0,-1,0,135464,21,0,65,0,1,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +22255,4,0,1,11,52,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22256,4,1,7,10,52,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22257,4,0,4,11,52,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22258,15,0,0,0,1,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22259,0,0,0,0,0,0,0,0,-1,0,133345,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22260,0,0,0,0,0,0,0,0,-1,0,133345,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22261,15,0,8,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22262,15,0,0,0,1,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22263,15,0,0,0,1,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22264,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22265,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22266,2,15,1,13,52,7,0,0,-1,0,135124,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +22267,4,1,7,1,60,0,0,0,-1,0,133164,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22268,4,0,3,12,58,0,0,0,-1,0,133442,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22269,4,1,7,16,58,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22270,4,4,6,8,50,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22271,4,2,8,7,52,0,0,0,-1,0,134646,7,0,75,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22272,4,2,8,5,0,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22273,4,2,8,1,0,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22274,4,2,8,5,0,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22275,4,2,8,8,52,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22276,4,0,0,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22277,4,0,0,20,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22278,4,0,0,20,0,0,0,0,-1,0,132664,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22279,4,0,0,20,0,0,0,0,-1,0,132691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22280,4,0,0,20,0,0,0,0,-1,0,132658,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22281,4,0,0,20,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22282,4,0,0,20,0,0,0,0,-1,0,135028,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22283,0,0,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22284,0,0,0,0,0,0,0,0,-1,0,133459,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22285,0,0,0,0,0,0,0,0,-1,0,133457,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22286,0,0,0,0,0,0,0,0,-1,0,133458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22287,0,0,0,0,0,0,0,0,-1,0,133462,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22288,0,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22289,0,0,0,0,0,0,0,0,-1,0,133465,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22290,0,0,0,0,0,0,0,0,-1,0,133460,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22291,0,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22292,0,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22293,0,0,0,0,0,0,0,0,-1,0,133467,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22294,0,0,0,0,0,0,0,0,-1,0,133461,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22295,0,0,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22296,0,0,0,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22297,0,0,0,0,0,0,0,0,-1,0,133468,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22298,0,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22299,0,0,0,0,0,0,0,0,-1,0,133472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22300,0,0,0,0,0,0,0,0,-1,0,133473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22301,4,1,7,20,58,0,0,0,-1,0,132689,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22302,4,1,7,1,58,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22303,4,1,7,7,57,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22304,4,1,7,10,56,0,0,0,-1,0,132961,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22305,4,1,7,3,56,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22306,4,1,7,6,56,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22307,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22308,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22309,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22310,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22311,4,1,7,8,56,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22312,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22313,4,1,7,9,56,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22314,2,6,1,17,56,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,226,0,0,0,0 +22315,2,4,2,21,56,3,0,0,-1,0,133039,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +22316,4,7,0,28,10,0,0,0,-1,0,135464,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +22317,2,13,1,13,56,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +22318,2,2,2,15,56,0,0,0,-1,0,135500,13,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +22319,4,0,8,23,56,7,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22320,15,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22321,4,0,0,12,56,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22322,2,4,2,13,56,3,0,0,-1,0,133490,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +22324,0,0,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22325,4,2,8,6,56,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22326,4,0,5,11,58,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22327,4,0,3,2,58,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22328,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22329,4,0,8,23,58,0,0,0,-1,0,135469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22330,4,1,7,16,56,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22331,4,0,3,11,57,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22332,2,7,1,21,57,3,0,0,-1,0,135326,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +22333,2,5,1,17,57,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +22334,4,0,5,11,57,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22335,2,10,2,17,58,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +22336,4,6,1,14,58,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22337,4,1,7,16,58,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22338,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22339,4,0,5,11,58,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22340,4,0,3,2,58,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22341,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22342,4,1,7,7,58,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22343,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22344,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22345,4,9,2,28,57,0,0,0,-1,0,134920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22346,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +22347,2,18,2,26,0,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,128,0,0,0,0 +22348,2,5,1,17,0,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,265,0,0,0,0 +22349,15,0,0,0,60,0,0,0,-1,0,133831,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22350,15,0,0,0,60,0,0,0,-1,0,133823,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22351,15,0,0,0,60,0,0,0,-1,0,133807,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22352,15,0,0,0,60,0,0,0,-1,0,133834,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22353,15,0,0,0,60,0,0,0,-1,0,133833,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22354,15,0,0,0,60,0,0,0,-1,0,133835,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22355,15,0,0,0,60,0,0,0,-1,0,133830,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22356,15,0,0,0,60,0,0,0,-1,0,133828,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22357,15,0,0,0,60,0,0,0,-1,0,133832,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22358,15,0,0,0,60,0,0,0,-1,0,133829,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22359,15,0,0,0,60,0,0,0,-1,0,133826,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22360,15,0,0,0,60,0,0,0,-1,0,133825,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22361,15,0,0,0,60,0,0,0,-1,0,133827,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22362,15,0,0,0,60,0,0,0,-1,0,133822,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22363,15,0,0,0,60,0,0,0,-1,0,133820,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22364,15,0,0,0,60,0,0,0,-1,0,133824,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22365,15,0,0,0,60,0,0,0,-1,0,133821,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22366,15,0,0,0,60,0,0,0,-1,0,133810,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22367,15,0,0,0,60,0,0,0,-1,0,133809,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22368,15,0,0,0,60,0,0,0,-1,0,133811,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22369,15,0,0,0,60,0,0,0,-1,0,133806,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22370,15,0,0,0,60,0,0,0,-1,0,133804,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22371,15,0,0,0,60,0,0,0,-1,0,133808,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22372,15,0,0,0,60,0,0,0,-1,0,133805,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22373,15,0,0,0,0,0,0,0,-1,0,134517,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22374,15,0,0,0,0,0,0,0,-1,0,134515,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22375,15,0,0,0,0,0,0,0,-1,0,134518,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22376,15,0,0,0,0,0,0,0,-1,0,134516,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22377,2,15,1,13,0,3,0,0,-1,0,135315,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +22378,2,7,1,13,0,3,0,0,-1,0,135348,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +22379,2,15,1,21,0,3,0,0,-1,0,135322,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,84,0,0,0,0 +22380,2,4,1,21,0,3,0,0,-1,0,133042,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +22381,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22382,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22383,2,7,0,21,59,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +22384,2,4,1,21,58,3,0,0,-1,0,133045,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +22385,4,4,6,7,55,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22386,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +22387,12,0,0,0,0,0,0,0,-1,0,134131,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22388,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22389,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22390,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22391,2,10,2,17,58,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +22392,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22393,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22394,2,10,2,17,57,2,0,0,-1,0,135166,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +22395,4,9,2,28,52,0,0,0,-1,0,134919,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22396,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22397,4,8,2,28,52,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22398,4,8,2,28,57,0,0,0,-1,0,134914,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22399,4,8,2,28,60,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22400,4,7,2,28,52,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22401,4,7,2,28,57,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22402,4,7,2,28,60,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22403,4,0,3,2,56,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22404,2,13,1,21,56,7,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +22405,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22406,2,10,2,17,56,2,0,0,-1,0,135160,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +22407,4,2,8,1,56,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22408,2,19,2,26,58,0,0,0,-1,0,135469,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +22409,4,2,8,5,58,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22410,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22411,4,4,6,1,58,0,0,0,-1,0,133069,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22412,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22416,4,4,1,5,60,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22417,4,4,1,7,60,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22418,4,4,1,1,60,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22419,4,4,1,3,60,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22420,4,4,1,8,60,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22421,4,4,1,10,60,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22422,4,4,1,6,60,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22423,4,4,1,9,60,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22424,4,4,1,9,60,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22425,4,4,1,5,60,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22426,4,4,1,10,60,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22427,4,4,1,7,60,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22428,4,4,1,1,60,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22429,4,4,1,3,60,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22430,4,4,1,8,60,0,0,0,-1,0,132548,9,0,75,0,0,0,0,0,0,662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22431,4,4,1,6,60,0,0,0,-1,0,132511,9,0,55,0,0,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22432,12,0,8,0,0,0,0,0,-1,0,135125,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22433,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22434,15,0,8,0,0,0,0,0,-1,0,134528,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22435,15,0,8,0,0,0,0,0,-1,0,136067,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22436,4,3,5,5,60,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22437,4,3,5,7,60,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22438,4,3,5,1,60,0,0,0,-1,0,133117,11,0,85,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22439,4,3,5,3,60,0,0,0,-1,0,135045,11,0,85,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22440,4,3,5,8,60,0,0,0,-1,0,132548,11,0,70,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22441,4,3,5,10,60,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22442,4,3,5,6,60,0,0,0,-1,0,132511,11,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22443,4,3,5,9,60,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22444,15,0,8,0,0,0,0,0,-1,0,132106,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22458,2,10,2,17,0,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +22464,4,3,5,5,60,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22465,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22466,4,3,5,1,60,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22467,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22468,4,3,5,8,60,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22469,4,3,5,10,60,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22470,4,3,5,6,60,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22471,4,3,5,9,60,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22472,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22476,4,2,8,5,60,0,0,0,-1,0,132737,10,0,120,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22477,4,2,8,7,60,0,0,0,-1,0,134681,10,0,90,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22478,4,2,8,1,60,0,0,0,-1,0,133160,10,0,70,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22479,4,2,8,3,60,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22480,4,2,8,8,60,0,0,0,-1,0,132587,10,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22481,4,2,8,10,60,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22482,4,2,8,6,60,0,0,0,-1,0,132516,10,0,40,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22483,4,2,8,9,60,0,0,0,-1,0,132614,10,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22484,15,0,0,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22485,15,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22486,13,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22488,4,2,8,5,60,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22489,4,2,8,7,60,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22490,4,2,8,1,60,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22491,4,2,8,3,60,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22492,4,2,8,8,60,0,0,0,-1,0,132548,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22493,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22494,4,2,8,6,60,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22495,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22496,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22497,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22498,4,1,7,1,60,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22499,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22500,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22501,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22502,4,1,7,6,60,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22503,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22504,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22505,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22506,4,1,7,1,60,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22507,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22508,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22509,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22510,4,1,7,6,60,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22511,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22512,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22513,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22514,4,1,7,1,60,0,0,0,-1,0,132767,8,0,60,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22515,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22516,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22517,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22518,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22519,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22520,15,0,0,0,60,0,0,0,-1,0,134514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22523,15,0,0,0,0,0,0,0,-1,0,134499,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22524,15,0,0,0,0,0,0,0,-1,0,134503,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22525,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22526,15,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22527,15,0,0,0,0,0,0,0,-1,0,134139,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22528,15,0,0,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22529,15,0,0,0,0,0,0,0,-1,0,136074,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22568,15,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22584,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22585,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22586,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22587,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22588,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22589,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22593,15,0,0,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22595,15,0,0,0,1,0,0,0,-1,0,134328,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22596,2,8,0,17,0,0,0,0,-1,0,135356,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +22600,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22601,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22602,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22603,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22604,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22605,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22606,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22607,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22608,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22609,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22610,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22611,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22612,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22613,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22614,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22615,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22616,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22617,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22618,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22619,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22620,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22621,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22622,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22623,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22624,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22625,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22626,15,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22630,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22631,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22632,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22635,15,0,0,0,55,0,0,0,-1,0,136094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22636,15,0,0,0,55,0,0,0,-1,0,135849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22637,15,0,3,0,58,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22638,15,0,0,0,55,0,0,0,-1,0,136121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22648,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22649,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22650,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22651,4,4,6,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22652,4,1,7,5,60,0,0,0,-1,0,132649,7,0,100,0,0,0,0,0,0,121,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22654,4,1,7,10,60,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,76,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22655,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,53,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22656,2,3,1,26,0,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +22657,4,0,0,2,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22658,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,61,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22659,4,0,0,2,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22660,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,49,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22661,4,2,7,5,60,0,0,0,-1,0,132649,7,0,120,0,0,0,0,0,0,234,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22662,4,2,7,10,60,0,0,0,-1,0,132940,7,0,40,0,0,0,0,0,0,146,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22663,4,2,7,9,60,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,102,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22664,4,3,7,5,60,0,0,0,-1,0,132744,10,0,140,0,0,0,0,0,0,506,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22665,4,3,7,9,60,0,0,0,-1,0,132606,10,0,50,0,0,0,0,0,0,221,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22666,4,3,7,10,60,0,0,0,-1,0,132962,10,0,50,0,0,0,0,0,0,316,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22667,4,1,7,9,0,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22668,4,2,8,9,0,0,0,0,-1,0,132603,7,0,40,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22669,4,4,7,5,60,0,0,0,-1,0,132633,9,0,165,0,0,0,0,0,0,899,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0 +22670,4,4,7,10,60,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,562,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0 +22671,4,4,7,9,60,0,0,0,-1,0,132606,9,0,55,0,0,0,0,0,0,393,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22672,4,4,6,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22673,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22676,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22678,4,0,3,12,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22679,1,0,8,18,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22680,4,0,0,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22681,4,0,0,11,0,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22682,7,0,2,0,60,0,0,0,-1,0,134422,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22683,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22684,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22685,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22686,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22687,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22688,2,15,1,21,0,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +22689,4,2,8,1,0,0,0,0,-1,0,133111,7,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22690,4,3,5,7,0,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22691,2,8,1,17,60,1,0,0,-1,0,135331,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,389,0,0,0,0 +22692,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22694,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22695,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22696,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22697,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22698,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22699,4,4,6,7,0,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,787,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22700,4,1,7,7,0,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,106,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22701,4,2,8,7,0,0,0,0,-1,0,134646,7,0,90,0,0,0,0,0,0,205,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22702,4,3,5,7,0,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,443,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22703,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22704,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22705,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22707,4,0,4,11,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0 +22708,12,0,0,0,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22709,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22711,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22712,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22713,2,4,1,13,60,3,0,0,-1,0,135461,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,152,0,0,0,0 +22714,4,4,6,10,60,0,0,0,-1,0,132965,8,0,45,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22715,4,3,5,10,60,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22716,4,1,7,6,60,0,0,0,-1,0,132490,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22718,4,2,8,1,60,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22719,15,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22720,4,1,7,1,60,0,0,0,-1,0,133163,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22721,4,0,3,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22722,4,0,3,11,60,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22723,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22724,2,4,2,13,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +22725,4,0,4,11,0,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0 +22726,15,0,0,0,60,0,0,0,-1,0,134888,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22727,15,0,0,0,60,0,0,0,-1,0,135157,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22728,7,3,0,0,0,0,0,0,-1,0,133878,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22729,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22730,4,1,7,6,60,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22731,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22732,4,0,4,2,60,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22733,12,0,0,0,0,0,0,0,-1,0,133573,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22734,12,0,0,0,0,0,0,0,-1,0,134909,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22736,2,7,1,21,60,1,0,0,-1,0,135371,9,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,329,0,0,0,0 +22737,15,0,0,0,60,0,0,0,-1,0,135156,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22738,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +22739,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22740,4,2,8,7,60,0,0,0,-1,0,134637,7,0,90,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22741,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22742,4,0,0,5,1,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22743,0,0,0,6,1,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22744,4,0,0,8,1,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22745,4,0,0,7,1,0,0,0,-1,0,134596,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22746,15,0,0,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22747,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22748,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22749,4,2,8,7,60,0,0,0,-1,0,134637,7,0,90,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22750,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22751,4,4,6,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22752,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22753,4,4,6,7,60,0,0,0,-1,0,134691,9,0,120,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22754,12,0,0,0,0,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22756,4,1,5,5,60,0,0,0,-1,0,132742,7,0,80,0,0,0,0,0,0,98,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22757,4,1,5,1,60,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,80,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22758,4,1,5,3,60,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,74,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22759,4,2,5,1,60,0,0,0,-1,0,133160,7,0,60,0,0,0,0,0,0,156,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22760,4,2,5,8,60,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,132,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +22761,4,2,5,6,60,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,108,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +22762,4,4,5,5,60,0,0,0,-1,0,132742,9,0,135,0,0,0,0,0,0,726,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22763,4,4,5,10,60,0,0,0,-1,0,132963,9,0,45,0,0,0,0,0,0,454,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22764,4,4,5,6,60,0,0,0,-1,0,132510,8,0,45,0,0,0,0,0,0,408,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +22765,0,0,7,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22766,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22767,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22768,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22772,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22773,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22774,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22780,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22781,15,0,0,0,0,0,0,0,-1,0,132498,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22798,2,5,1,17,60,1,0,0,-1,0,133502,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0,435,0,0,0,0 +22799,2,10,2,17,60,2,0,0,-1,0,135152,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0,366,0,0,0,0 +22800,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +22801,2,10,2,17,60,2,0,0,-1,0,135168,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +22802,2,15,1,13,60,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +22803,2,15,1,13,60,3,0,0,-1,0,133455,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +22804,2,15,1,13,60,3,0,0,-1,0,133454,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +22805,2,7,1,13,60,3,0,0,-1,0,135370,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,198,0,0,0,0 +22806,2,7,1,13,60,3,0,0,-1,0,135370,8,0,105,0,0,0,0,0,0,100,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +22807,2,7,1,13,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,153,0,0,0,0 +22808,2,4,1,13,60,3,0,0,-1,0,133495,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,221,0,0,0,0 +22809,2,5,1,17,60,1,0,0,-1,0,133503,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0,367,0,0,0,0 +22810,2,3,1,26,60,0,0,0,-1,0,135620,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +22811,2,2,2,15,60,0,0,0,-1,0,135501,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,192,0,0,0,0 +22812,2,18,2,26,60,0,0,0,-1,0,135541,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,238,0,0,0,0 +22813,2,8,1,17,60,1,0,0,-1,0,135356,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,354,0,0,0,0 +22814,2,8,1,17,60,1,0,0,-1,0,135345,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0,344,0,0,0,0 +22815,2,1,1,17,60,1,0,0,-1,0,132416,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,354,0,0,0,0 +22816,2,0,1,13,60,3,0,0,-1,0,132399,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,221,0,0,0,0 +22817,2,6,1,17,60,1,0,0,-1,0,135574,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22818,4,6,6,14,60,4,0,0,-1,0,134972,9,0,120,0,0,0,0,0,0,3106,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +22819,4,6,6,14,60,4,0,0,-1,0,134973,9,0,120,0,0,0,0,0,0,3425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22820,2,19,2,26,60,0,0,0,-1,0,135481,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,222,0,0,0,0 +22821,2,19,2,26,60,0,0,0,-1,0,135482,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,271,0,0,0,0 +22822,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22843,4,3,5,8,60,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22852,4,2,8,8,60,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22855,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22856,4,2,8,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22857,4,3,5,8,60,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22858,4,4,6,8,60,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22859,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22860,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22862,4,3,5,10,60,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22863,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22864,4,2,8,10,60,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22865,4,1,7,10,60,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22867,4,3,5,10,60,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22868,4,4,6,10,60,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22869,4,1,7,10,60,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22870,4,1,7,10,60,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22872,4,4,6,5,60,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22873,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22874,4,3,5,5,60,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22875,4,3,5,7,60,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22876,4,3,5,5,60,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22877,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22878,4,2,8,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22879,4,2,8,5,60,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22880,4,2,8,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22881,4,1,7,7,60,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22882,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22883,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22884,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22885,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22886,4,1,7,20,60,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22887,4,3,5,7,60,0,0,0,-1,0,134589,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22890,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22891,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22892,12,0,0,0,1,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22895,0,0,0,0,55,0,0,0,-1,0,134029,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22897,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22930,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22932,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22933,12,0,0,0,1,0,0,0,-1,0,134576,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22935,4,0,3,2,60,0,0,0,-1,0,133279,24,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22936,4,4,1,9,60,0,0,0,-1,0,132616,9,0,55,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22937,4,0,3,23,60,0,0,0,-1,0,134548,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22938,4,1,7,16,60,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22939,4,0,3,11,60,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22940,4,4,7,3,60,0,0,0,-1,0,135047,9,0,100,0,0,0,0,0,0,698,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22941,4,2,7,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,181,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22942,2,4,1,13,60,3,0,0,-1,0,133506,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +22943,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22944,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22945,12,0,0,0,0,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22946,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22947,4,0,3,2,60,0,0,0,-1,0,133317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22948,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22949,12,0,0,0,1,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22950,12,0,0,0,1,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22954,4,0,4,12,60,0,0,0,-1,0,135442,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22960,4,1,7,16,60,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22961,4,0,4,11,60,0,0,0,-1,0,133391,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22967,4,3,5,3,0,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,393,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22968,4,1,5,3,0,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,94,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22970,12,0,0,0,45,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22972,12,0,0,0,45,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22973,12,0,0,0,45,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22974,12,0,0,0,45,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22975,12,0,0,0,45,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22977,12,0,0,0,45,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22981,4,0,4,2,60,0,0,0,-1,0,133315,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22983,4,1,7,3,60,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22988,2,4,1,13,60,3,0,0,-1,0,133496,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,162,0,0,0,0 +22994,4,0,1,23,60,0,0,0,-1,0,134555,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22999,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23000,4,4,6,5,60,0,0,0,-1,0,132637,11,0,165,0,0,0,0,0,0,953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23001,4,0,4,12,60,0,0,0,-1,0,135440,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23002,15,0,0,0,0,0,0,0,-1,0,132763,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23004,4,8,2,28,60,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23005,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23006,4,7,2,28,60,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23007,15,0,0,0,0,0,0,0,-1,0,132514,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23008,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23009,2,19,2,26,60,0,0,0,-1,0,135481,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,222,0,0,0,0 +23010,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23011,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23012,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23013,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23014,2,7,1,13,60,3,0,0,-1,0,135277,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +23015,15,0,0,0,0,0,0,0,-1,0,132599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23016,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23017,4,1,7,16,60,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23018,4,0,3,11,60,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23019,4,4,7,1,60,0,0,0,-1,0,133074,9,0,100,0,0,0,0,0,0,757,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23020,4,2,7,1,60,0,0,0,-1,0,133072,7,0,70,0,0,0,0,0,0,196,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23021,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23022,15,0,0,0,0,0,0,0,-1,0,133640,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23023,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23024,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23025,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23027,4,0,4,12,60,0,0,0,-1,0,135439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23028,4,0,4,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +23029,4,0,3,23,60,0,0,0,-1,0,134547,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23030,4,1,7,16,60,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23031,4,0,3,11,60,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23032,4,1,7,1,60,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,102,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +23033,4,3,5,1,60,0,0,0,-1,0,133122,10,0,85,0,0,0,0,0,0,425,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23034,4,4,1,3,60,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23035,4,1,7,1,60,0,0,0,-1,0,133152,7,0,60,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23036,4,0,3,2,60,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23037,4,0,3,11,60,0,0,0,-1,0,133394,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23038,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23039,2,6,1,17,60,1,0,0,-1,0,135574,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0,378,0,0,0,0 +23040,4,0,4,12,60,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23041,4,0,4,12,60,0,0,0,-1,0,135441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23042,4,0,4,12,60,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0 +23043,4,6,6,14,60,4,0,0,-1,0,134971,9,0,120,0,0,0,0,0,0,3354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23044,2,15,1,13,60,3,0,0,-1,0,133456,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,126,0,0,0,0 +23045,4,1,7,16,60,0,0,0,-1,0,133777,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23046,4,0,4,12,60,0,0,0,-1,0,135444,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23047,4,0,4,12,60,0,0,0,-1,0,135439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23048,4,0,3,23,60,0,0,0,-1,0,134545,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23049,4,0,3,23,60,0,0,0,-1,0,134546,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23050,4,1,7,16,60,0,0,0,-1,0,133777,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23053,4,0,4,2,60,0,0,0,-1,0,133317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23054,2,7,1,13,60,3,0,0,-1,0,135371,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,257,0,0,0,0 +23055,15,0,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23056,2,4,1,13,60,3,0,0,-1,0,133504,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +23057,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23058,4,0,3,2,60,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23059,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23060,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23061,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23062,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23063,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23064,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23065,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23066,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23067,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23068,4,4,1,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23069,4,1,7,20,60,0,0,0,-1,0,132687,7,0,100,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23070,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23071,4,2,8,7,60,0,0,0,-1,0,134634,7,0,90,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23072,4,4,1,10,60,0,0,0,-1,0,132956,9,0,55,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23073,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23075,4,6,6,14,60,4,0,0,-1,0,132389,9,0,120,0,0,0,0,0,0,3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23078,4,4,1,10,0,0,0,0,-1,0,132963,9,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23081,4,2,8,10,0,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23082,4,3,5,10,0,0,0,0,-1,0,132945,11,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23083,15,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23084,4,1,7,10,0,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23085,4,1,7,20,58,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23086,0,0,0,0,0,0,0,0,-1,0,132934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23087,4,4,1,5,58,0,0,0,-1,0,132745,9,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23088,4,3,5,5,58,0,0,0,-1,0,132630,11,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23089,4,2,8,5,58,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23090,4,4,1,9,58,0,0,0,-1,0,132613,9,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23091,4,1,7,9,58,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23092,4,3,5,9,58,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23093,4,2,8,9,58,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23122,7,0,0,0,50,0,0,0,-1,0,135249,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23123,7,0,0,0,50,0,0,0,-1,0,134806,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23124,2,10,2,17,55,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,241,0,0,0,0 +23125,4,0,3,2,55,0,0,0,-1,0,132507,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23126,4,1,7,6,55,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23127,4,1,7,16,58,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23128,4,1,7,10,57,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23129,4,1,7,9,57,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23132,2,7,1,13,57,3,0,0,-1,0,135275,9,0,90,0,0,0,0,0,0,60,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +23139,4,6,1,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23156,4,0,1,23,57,7,0,0,-1,0,133727,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23160,0,0,0,0,45,0,0,0,-1,0,133991,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23161,0,0,7,0,45,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23162,1,0,0,18,60,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23163,0,0,0,0,0,0,0,0,-1,0,135468,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23164,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23168,2,15,1,13,30,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +23169,4,0,3,2,30,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23170,4,3,5,10,30,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23171,2,1,1,17,20,1,0,0,-1,0,132394,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +23172,0,0,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23173,4,1,7,7,20,0,0,0,-1,0,134586,7,0,60,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23175,0,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23176,0,0,3,0,0,0,0,0,-1,0,132489,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23177,2,19,2,26,36,0,0,0,-1,0,135474,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +23178,4,1,7,16,36,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23179,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23180,12,0,0,0,0,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23181,12,0,0,0,0,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23182,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23183,12,0,0,0,0,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23184,12,0,0,0,0,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23185,12,0,0,0,0,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23186,12,0,0,0,0,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23187,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23188,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23189,12,0,0,0,0,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23190,12,0,0,0,0,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23192,4,0,7,19,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23193,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23194,0,0,0,0,1,0,0,0,-1,0,134499,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23195,0,0,0,0,1,0,0,0,-1,0,134500,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23196,0,0,0,0,1,0,0,0,-1,0,134501,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23197,4,8,2,28,60,0,0,0,-1,0,134914,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23198,4,8,2,28,60,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23199,4,9,2,28,60,0,0,0,-1,0,134919,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23200,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23201,4,7,2,28,60,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23202,4,7,2,28,60,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23203,4,7,2,28,60,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23204,4,7,2,28,60,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23206,4,0,0,12,0,0,0,0,-1,0,134500,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23207,4,0,0,12,0,0,0,0,-1,0,134501,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23208,4,0,0,12,0,0,0,0,-1,0,134501,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23209,0,0,0,0,1,0,0,0,-1,0,135267,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23210,0,0,0,0,1,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23211,0,0,0,0,1,0,0,0,-1,0,135267,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23215,0,0,0,0,1,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23219,4,4,6,6,60,0,0,0,-1,0,132502,11,0,55,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23220,4,1,7,20,60,0,0,0,-1,0,132687,7,0,100,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23221,2,4,2,13,60,3,0,0,-1,0,133505,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,238,0,0,0,0 +23224,0,0,0,0,0,0,0,0,-1,0,134140,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23226,4,2,8,5,60,0,0,0,-1,0,132717,7,0,120,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23227,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23237,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23238,4,6,6,14,60,4,0,0,-1,0,132390,9,0,120,0,0,0,0,0,0,3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23242,2,13,1,22,60,7,0,0,-1,0,135594,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +23243,4,4,6,3,60,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23244,4,4,6,1,60,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23245,0,0,0,0,0,0,0,0,-1,0,135264,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23246,0,0,0,0,0,0,0,0,-1,0,135262,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23247,15,0,0,0,0,0,0,0,-1,0,135263,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23250,15,0,0,0,0,0,0,0,-1,0,133797,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23251,4,3,5,1,60,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23252,4,3,5,3,60,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23253,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23254,4,2,8,3,60,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23255,4,1,7,1,60,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23256,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23257,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23258,4,2,8,3,60,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23259,4,3,5,1,60,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23260,4,3,5,3,60,0,0,0,-1,0,135035,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23261,4,1,7,1,60,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23262,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23263,4,1,7,1,60,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23264,4,1,7,3,60,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23271,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23272,4,4,6,5,60,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23273,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23274,4,4,6,10,60,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23275,4,4,6,8,60,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23276,4,4,6,1,60,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23277,4,4,6,3,60,0,0,0,-1,0,135059,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23278,4,3,5,8,60,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23279,4,3,5,10,60,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23280,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23281,4,2,8,8,60,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23282,4,1,7,10,60,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23283,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23284,4,2,8,10,60,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23285,4,2,8,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23286,4,4,6,10,60,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23287,4,4,6,8,60,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23288,4,1,7,10,60,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23289,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23290,4,1,7,10,60,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23291,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23292,4,3,5,5,60,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23293,4,3,5,7,60,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23294,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23295,4,2,8,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23296,4,1,7,7,60,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23297,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23298,4,2,8,5,60,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23299,4,2,8,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23300,4,4,6,5,60,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23301,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23302,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23303,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23304,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23305,4,1,7,20,60,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23306,4,3,5,1,60,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23307,4,3,5,3,60,0,0,0,-1,0,135047,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23308,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23309,4,2,8,3,60,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23310,4,1,7,1,60,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23311,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23312,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23313,4,2,8,3,60,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23314,4,4,6,1,60,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23315,4,4,6,3,60,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23316,4,1,7,1,60,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23317,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23318,4,1,7,1,60,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23319,4,1,7,3,60,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23320,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23323,4,1,0,1,0,0,0,0,-1,0,133076,8,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23324,4,1,0,3,0,0,0,0,-1,0,135054,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23325,15,0,0,0,1,0,0,0,-1,0,134144,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23326,0,0,0,0,1,0,0,0,-1,0,134009,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23327,0,0,0,0,1,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23328,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23356,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23360,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23369,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +23379,0,0,3,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23418,7,2,8,0,0,0,0,0,-1,0,135826,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23435,0,0,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23451,2,15,1,13,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +23452,4,0,3,23,60,7,0,0,-1,0,133744,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23453,4,0,3,23,60,7,0,0,-1,0,133745,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23454,2,4,2,13,60,3,0,0,-1,0,133039,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +23455,2,5,2,17,60,1,0,0,-1,0,133060,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +23456,2,7,1,13,60,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +23464,2,4,2,13,60,3,0,0,-1,0,133039,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +23465,2,5,2,17,60,1,0,0,-1,0,133484,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +23466,2,15,1,13,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +23467,2,7,1,13,60,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +23468,4,0,3,23,60,7,0,0,-1,0,133747,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23469,4,0,3,23,60,7,0,0,-1,0,133746,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23545,12,0,0,0,60,0,0,0,-1,0,136141,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23547,12,0,0,0,60,0,0,0,-1,0,136143,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23548,12,0,0,0,60,0,0,0,-1,0,136146,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23549,12,0,0,0,60,0,0,0,-1,0,136121,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23557,2,3,1,26,60,0,0,0,-1,0,135619,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,192,0,0,0,0 +23558,4,0,4,12,60,0,0,0,-1,0,134969,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23567,7,0,0,0,1,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23570,4,0,4,12,60,0,0,0,-1,0,133877,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23577,2,7,1,13,60,3,0,0,-1,0,135372,8,0,105,0,0,0,0,0,0,140,0,0,0,0,0,0,76,0,0,0,0,143,0,0,0,0 +23578,0,0,3,0,49,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23579,0,0,0,0,45,0,0,0,-1,0,134834,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23582,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23583,2,4,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23640,0,0,0,0,1,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23641,0,0,0,0,1,0,0,0,-1,0,133982,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23656,0,0,0,0,0,0,0,0,-1,0,132761,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23663,4,3,5,6,60,0,0,0,-1,0,132521,10,0,50,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23664,4,3,5,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23665,4,3,5,7,60,0,0,0,-1,0,134666,10,0,105,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23666,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23667,4,4,6,3,60,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23668,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23683,0,0,0,0,45,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23684,0,0,7,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23689,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23690,9,5,0,0,0,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23696,0,0,0,0,1,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23698,0,0,0,0,1,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23699,0,0,0,0,1,0,0,0,-1,0,135265,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23700,0,0,0,0,1,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23701,0,0,0,0,1,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23705,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23709,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23710,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23712,15,0,0,0,0,0,0,0,-1,0,134176,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23713,15,0,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23714,4,0,0,12,0,0,0,0,-1,0,134284,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23715,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23716,4,0,0,12,0,0,0,0,-1,0,134230,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23718,0,0,0,0,0,0,0,0,-1,0,133849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23719,0,0,0,0,0,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23720,15,0,0,0,20,0,0,0,-1,0,132199,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23721,0,0,0,0,0,0,0,0,-1,0,133986,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23722,0,0,0,0,0,0,0,0,-1,0,135241,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23725,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23727,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23728,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23743,2,7,1,13,1,3,0,0,-1,0,135370,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23794,0,0,3,0,55,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23795,0,0,3,0,55,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23796,0,0,3,0,55,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24071,2,15,0,13,0,0,0,0,-1,0,135302,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,82,0,0,0,0 +24101,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24102,9,0,0,0,60,0,0,0,-1,0,133746,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24222,2,15,1,13,52,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +24231,15,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24232,15,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24281,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24282,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24283,15,0,0,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24358,4,0,3,11,1,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122270,18,0,1,0,1,0,0,0,-1,0,1121394,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122284,18,0,1,0,1,0,0,0,-1,0,1120721,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +172070,15,0,0,0,1,0,0,0,-1,0,134142,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +180089,15,0,0,0,0,0,0,0,-1,0,132494,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184937,0,0,0,0,0,0,0,0,-1,0,133879,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184938,0,0,0,0,0,0,0,0,-1,0,133881,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/HermesProxy/CSV/Item2.csv b/HermesProxy/CSV/Item2.csv new file mode 100644 index 00000000..ef34d713 --- /dev/null +++ b/HermesProxy/CSV/Item2.csv @@ -0,0 +1,30007 @@ +Id,ClassId,SubclassId,Material,InventoryType,RequiredLevel,SheatheType,RandomProperty,ItemRandomSuffixGroupId,SoundOverrideSubclassId,ScalingStatDistributionId,IconFileDataId,ItemGroupSoundsId,ContentTuningId,MaxDurability,AmmoType,DamageType1,DamageType2,DamageType3,DamageType4,DamageType5,Resistances1,Resistances2,Resistances3,Resistances4,Resistances5,Resistances6,Resistances7,MinDamage1,MinDamage2,MinDamage3,MinDamage4,MinDamage5,MaxDamage1,MaxDamage2,MaxDamage3,MaxDamage4,MaxDamage5 +17,4,4,6,4,0,3,0,0,-1,0,132759,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +35,2,10,2,17,1,2,0,0,-1,0,135145,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +36,2,4,2,21,1,3,0,0,-1,0,133478,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +37,2,0,1,21,1,3,0,0,-1,0,132402,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +38,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +40,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +41,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +42,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +43,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +44,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +45,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +46,4,0,7,6,1,0,0,0,-1,0,132495,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +47,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +48,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +49,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +51,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +52,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +55,4,0,7,8,0,0,0,0,-1,0,132543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +56,4,1,7,20,1,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +57,4,1,7,20,1,0,0,0,-1,0,132665,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +58,4,0,7,6,1,0,0,0,-1,0,132492,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +59,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60,4,2,8,5,0,0,0,0,-1,0,132724,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +61,4,2,8,7,0,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +77,4,1,7,5,0,0,0,0,-1,0,135006,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +79,4,1,7,7,0,0,0,0,-1,0,134589,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +80,4,1,7,8,0,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +85,4,2,8,5,1,0,0,0,-1,0,135011,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +86,4,0,7,6,0,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +87,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +88,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +89,4,0,7,4,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +90,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +91,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +92,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +93,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +94,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +95,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +97,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +98,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +99,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +100,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +101,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +102,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +103,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +104,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +105,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +113,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +114,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +115,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +117,0,5,0,0,1,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +118,0,1,3,0,1,0,0,0,-1,0,134829,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +119,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +120,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +121,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +123,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +124,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +125,4,0,7,8,1,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +126,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +127,4,0,7,4,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +128,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +129,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +130,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +131,4,0,7,6,1,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +132,4,0,7,8,1,0,0,0,-1,0,132536,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +133,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +134,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +136,4,0,7,8,0,0,0,0,-1,0,132535,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +137,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +138,4,0,7,4,0,0,0,0,-1,0,132719,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +139,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +140,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +141,4,0,7,6,1,0,0,0,-1,0,132491,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +143,4,6,1,14,1,4,0,0,-1,0,134951,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,4,0,7,6,1,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +147,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +148,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +149,4,0,7,6,0,0,0,0,-1,0,132493,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +150,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +151,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +152,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +153,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +154,4,0,7,4,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +155,4,0,7,6,1,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +156,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +157,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +159,0,5,0,0,1,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +182,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +192,2,14,6,21,0,3,0,0,-1,0,133476,8,0,0,0,0,2,4,0,0,100,0,110,100,100,100,0,19,5,6,0,0,37,10,60,0,0 +193,4,1,7,5,1,0,0,0,-1,0,135022,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +194,4,1,7,7,1,0,0,0,-1,0,134592,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +195,4,1,7,8,1,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +200,4,1,7,5,17,0,0,0,-1,0,135006,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +201,4,1,7,7,17,0,0,0,-1,0,134592,7,0,45,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +202,4,1,7,8,17,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +203,4,1,7,10,17,0,0,0,-1,0,132955,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +209,4,2,8,7,1,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +210,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +236,4,2,8,5,17,0,0,0,-1,0,132725,7,0,75,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +237,4,2,8,7,17,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +238,4,2,8,8,17,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +239,4,2,8,10,17,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +285,4,3,5,5,17,0,0,0,-1,0,132631,10,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +286,4,3,5,7,17,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +287,4,3,5,8,17,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +414,0,5,0,0,5,0,0,0,-1,0,133995,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +422,0,5,0,0,15,0,0,0,-1,0,133949,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +527,12,0,2,0,0,0,0,0,-1,0,133280,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +537,15,0,2,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +555,15,0,7,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +556,15,0,2,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +647,2,8,1,17,52,1,0,0,-1,0,135317,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +710,4,1,7,9,0,0,0,0,-1,0,132610,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +711,4,1,7,10,1,0,0,0,-1,0,132961,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +714,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +718,4,3,5,10,17,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +719,4,1,7,10,0,0,0,0,-1,0,132940,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +720,4,2,8,10,23,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +723,7,8,8,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +724,0,5,0,0,5,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +725,12,0,8,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +727,2,7,1,13,5,3,5168,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +728,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +729,7,8,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +730,7,8,4,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +731,7,8,0,0,0,0,0,0,-1,0,135997,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +732,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +733,0,5,7,0,5,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +734,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +735,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +737,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +738,12,0,0,0,0,0,0,0,-1,0,134058,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +739,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +740,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +741,7,7,1,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +742,12,0,2,0,0,0,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +743,12,0,2,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +744,4,0,4,12,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +745,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +746,4,0,7,19,1,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +748,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +750,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +751,2,4,2,21,1,3,0,0,-1,0,133718,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +752,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +753,2,7,1,13,23,3,0,0,-1,0,135346,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +754,2,7,1,13,42,3,0,0,-1,0,135312,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +755,15,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +756,2,1,1,17,24,1,0,0,-1,0,134708,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +761,0,8,8,0,1,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +763,4,2,8,9,7,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +765,7,9,2,0,0,0,0,0,-1,0,134190,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +766,2,4,2,21,2,3,0,0,-1,0,133482,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +767,2,10,2,17,3,2,0,0,-1,0,135145,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +768,2,0,1,21,4,3,0,0,-1,0,132392,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +769,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +770,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +771,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +772,12,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +773,12,0,0,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +774,3,7,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +776,2,15,1,13,26,3,0,0,-1,0,135638,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +777,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +778,2,0,1,21,2,1,0,0,-1,0,134708,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +779,15,0,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +780,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +781,2,4,2,21,4,3,0,0,-1,0,133046,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +782,12,0,7,0,0,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +783,7,6,8,0,0,0,0,0,-1,0,134369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +784,7,11,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +785,7,9,2,0,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +786,7,7,1,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +787,0,5,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +788,2,7,1,21,0,3,0,0,-1,0,135323,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +789,2,4,2,21,17,3,5197,0,-1,0,133045,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +790,2,0,1,21,18,3,5196,0,-1,0,132405,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +791,2,10,2,17,26,2,0,0,-1,0,135139,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,99,0,0,0,0 +792,4,1,7,8,5,0,0,0,-1,0,132579,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +793,4,1,7,10,5,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +794,4,1,7,7,5,0,0,0,-1,0,134591,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +795,4,1,7,5,5,0,0,0,-1,0,135014,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +796,4,2,8,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +797,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +798,4,2,8,7,5,0,0,0,-1,0,134589,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +799,4,2,8,5,5,0,0,0,-1,0,132760,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +804,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +805,1,0,8,18,0,0,0,0,-1,0,133638,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +806,1,0,0,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +807,7,7,1,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +808,7,11,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +809,2,7,1,13,45,3,0,0,-1,0,135329,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,130,0,0,0,0 +810,2,4,2,13,49,3,0,0,-1,0,133048,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +811,2,0,1,13,52,3,0,0,-1,0,132398,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +812,2,10,2,17,49,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,0,0,0,15,0,0,0,127,0,0,0,0,191,0,0,0,0 +813,15,0,0,0,0,0,0,0,-1,0,134063,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +814,7,1,0,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +816,2,15,1,13,6,3,0,0,-1,0,135637,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +818,3,7,0,0,0,0,0,0,-1,0,134118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +820,2,15,1,13,12,3,0,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +821,4,2,8,5,8,0,0,0,-1,0,135011,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +823,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +826,2,0,1,13,10,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +827,2,4,2,13,12,3,0,0,-1,0,133476,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +828,1,0,8,18,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +829,12,0,8,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +832,4,3,5,6,10,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +833,4,0,4,12,51,0,0,0,-1,0,134580,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +835,0,0,8,0,2,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +836,0,8,8,0,5,3,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +837,4,1,7,5,12,0,0,0,-1,0,135010,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +838,4,1,7,7,12,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +839,4,1,7,10,12,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +840,4,1,7,8,12,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +841,12,0,0,0,0,0,0,0,-1,0,134377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +842,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +843,4,2,8,8,12,0,0,0,-1,0,132592,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +844,4,2,8,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +845,4,2,8,7,12,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +846,4,2,8,5,12,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +847,4,3,5,5,12,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +848,4,3,5,7,12,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +849,4,3,5,8,12,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +850,4,3,5,10,12,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +851,2,7,1,13,10,3,0,0,-1,0,135346,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +852,2,4,2,13,9,3,0,0,-1,0,133490,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +853,2,0,1,13,11,3,0,0,-1,0,132402,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +854,2,10,2,17,11,2,0,0,-1,0,135154,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +855,1,0,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +856,1,0,8,18,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +857,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +858,0,1,3,0,3,0,0,0,-1,0,134830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +859,4,0,7,4,0,0,0,0,-1,0,135006,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +860,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +862,4,0,4,11,45,0,3253,0,-1,0,132523,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +863,2,0,1,13,32,3,5241,0,-1,0,132399,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +864,2,7,1,13,33,3,5240,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +865,2,4,2,13,26,3,5224,0,-1,0,133478,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +866,2,10,2,17,37,2,5257,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +867,4,2,8,10,37,0,0,0,-1,0,132940,7,0,40,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +868,2,4,2,13,38,3,0,0,-1,0,133488,8,0,105,0,0,0,0,0,0,100,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +869,2,7,1,13,36,3,0,0,-1,0,135326,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +870,2,1,1,17,35,1,0,0,-1,0,132393,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,141,0,0,0,0 +871,2,0,1,13,42,3,0,0,-1,0,132408,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +872,2,1,1,17,16,1,0,0,-1,0,135419,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +873,2,10,2,17,35,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,180,0,0,0,0 +875,15,0,0,0,1,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +876,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +877,12,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +878,7,11,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +880,2,10,2,17,18,2,0,0,-1,0,135162,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +883,12,0,0,0,0,0,0,0,-1,0,133565,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +884,12,0,0,0,0,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +885,2,0,1,13,19,3,0,0,-1,0,132405,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +886,2,7,1,13,21,3,0,0,-1,0,135327,8,0,70,0,0,0,0,0,0,0,0,0,0,0,4,0,16,0,0,0,0,30,0,0,0,0 +887,15,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +888,4,2,8,10,22,0,0,0,-1,0,132947,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +889,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +890,2,10,2,17,19,2,0,0,-1,0,135141,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +892,4,1,7,10,17,0,0,0,-1,0,132938,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +893,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +894,15,0,0,0,0,0,0,0,-1,0,134297,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +895,12,0,0,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +896,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +897,4,2,8,9,24,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +898,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +899,2,15,1,13,14,3,0,0,-1,0,134298,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +900,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +901,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +902,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +903,15,0,0,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +905,4,1,7,3,1,0,0,0,-1,0,135039,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +906,4,1,7,3,1,0,0,0,-1,0,135039,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +907,4,3,7,3,1,0,0,0,-1,0,135033,10,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +908,4,1,7,3,1,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +909,4,1,7,3,1,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +910,12,0,0,0,0,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +911,2,5,2,17,20,1,0,0,-1,0,133476,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +913,2,8,1,17,24,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +914,4,3,5,5,25,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +915,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +916,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +917,4,2,8,5,13,0,0,0,-1,0,132715,7,0,65,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +918,1,0,8,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +920,2,4,2,13,20,3,0,0,-1,0,133486,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +921,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +922,2,8,1,17,21,1,0,0,-1,0,135280,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,60,0,0,0,0 +923,2,7,1,21,21,3,0,0,-1,0,135324,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +924,2,5,2,17,21,1,0,0,-1,0,133044,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,56,0,0,0,0 +925,2,4,2,21,20,3,0,0,-1,0,133476,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +926,2,1,1,17,20,1,0,0,-1,0,135423,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +927,2,0,1,13,19,3,0,0,-1,0,132415,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +928,2,10,2,17,20,2,0,0,-1,0,135157,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +929,0,1,3,0,12,0,0,0,-1,0,134831,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +930,1,0,7,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +931,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +932,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +933,1,0,8,18,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +934,2,0,1,13,32,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +935,2,7,1,13,15,3,0,0,-1,0,135327,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +936,2,4,2,13,33,3,0,0,-1,0,133729,8,0,90,0,0,5,0,0,0,0,0,0,0,0,10,0,45,1,0,0,0,84,10,0,0,0 +937,2,10,2,17,33,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +938,12,0,0,0,0,0,0,0,-1,0,133680,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +939,12,0,0,0,0,0,0,0,-1,0,133688,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +940,4,1,7,20,42,0,0,0,-1,0,132667,7,0,100,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +941,4,0,0,12,35,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +942,4,0,3,11,47,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +943,2,10,2,17,43,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,260,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +944,2,10,2,17,56,2,0,0,-1,0,135144,13,0,120,0,0,0,0,0,0,0,0,20,0,20,0,0,147,0,0,0,0,221,0,0,0,0 +945,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +948,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +951,0,8,0,0,1,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +954,0,4,7,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +955,0,4,7,0,5,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +956,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +957,12,0,0,0,0,0,0,0,-1,0,133751,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +958,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +960,12,0,0,0,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +961,0,5,7,0,0,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +962,12,0,0,0,0,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +964,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +965,1,0,7,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +966,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +967,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +968,9,0,0,0,6,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +973,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +974,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +975,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +976,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +980,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +981,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +983,4,1,7,6,0,0,0,0,-1,0,133694,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +985,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +986,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +989,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +992,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +994,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +996,4,0,0,11,1,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +997,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1004,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1006,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1008,2,7,1,21,0,3,0,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1009,2,4,2,21,0,3,0,0,-1,0,133045,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +1010,2,10,2,17,0,2,0,0,-1,0,135154,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +1011,2,0,1,21,0,3,0,0,-1,0,132395,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +1013,12,0,1,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1014,12,0,1,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1015,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1016,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1017,0,5,0,0,15,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1018,2,7,1,22,1,3,0,0,-1,0,135274,8,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1019,12,0,7,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1020,4,2,8,1,1,0,0,0,-1,0,133072,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1021,4,2,8,1,1,0,0,0,-1,0,133072,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1022,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1023,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1024,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1025,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1026,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1027,4,2,8,1,1,0,0,0,-1,0,133071,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1028,4,3,5,1,15,0,0,0,-1,0,133070,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1029,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1030,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1031,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1032,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1033,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1034,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1035,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1036,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1037,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1038,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1041,15,0,0,0,30,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1042,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1043,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1044,15,0,0,0,1,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1046,2,3,1,26,1,1,0,0,-1,0,134537,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +1047,2,3,1,26,1,1,0,0,-1,0,134537,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +1048,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1049,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1052,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1053,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1057,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1058,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1061,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1063,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1072,0,5,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1074,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1075,12,0,0,0,0,0,0,0,-1,0,133437,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1076,4,0,5,11,20,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1077,4,0,5,11,21,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1078,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1080,7,8,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1081,7,8,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1082,0,5,0,0,10,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1083,12,0,0,0,0,0,0,0,-1,0,133277,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1084,9,0,0,0,8,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1085,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1086,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1087,9,0,0,0,4,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1088,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1089,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1090,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1091,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1092,9,0,0,0,4,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1093,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1095,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1096,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1099,9,0,0,0,21,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1100,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1101,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1102,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1105,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1108,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1109,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1111,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1112,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1113,0,5,0,0,5,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1114,0,5,0,0,15,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1115,12,0,0,0,0,0,0,0,-1,0,133622,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1116,4,0,0,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1117,2,4,2,13,1,2,0,0,-1,0,133942,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +1119,0,5,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1121,4,2,8,8,19,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1122,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1123,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1124,4,0,0,2,40,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1125,12,0,1,0,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1127,0,0,0,0,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1128,0,8,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1129,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1130,12,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1131,4,0,1,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1132,15,5,0,0,30,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1133,15,0,0,0,30,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1134,15,0,0,0,30,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1136,9,0,0,0,18,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1138,9,0,0,0,4,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1139,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1141,9,0,0,0,6,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1144,9,0,0,0,34,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1146,9,0,0,0,12,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1149,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1150,9,0,0,0,6,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1151,9,0,0,0,14,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1154,4,3,5,6,0,0,0,0,-1,0,132493,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1155,2,10,2,17,24,2,0,0,-1,0,135143,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +1156,4,0,1,11,17,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1157,2,0,1,21,1,3,0,0,-1,0,132392,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0 +1158,2,4,2,21,0,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1159,2,10,2,17,0,2,0,0,-1,0,135145,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +1161,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1162,4,1,7,1,5,0,0,0,-1,0,134955,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1163,4,1,7,1,5,0,0,0,-1,0,134442,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1164,9,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1165,0,5,0,0,1,0,0,0,-1,0,133943,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1166,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1167,4,6,1,14,5,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1168,4,6,1,14,54,4,0,0,-1,0,134947,9,0,120,0,0,0,0,0,0,2593,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +1169,4,6,1,14,41,4,0,0,-1,0,136162,9,0,120,0,0,0,0,0,0,2063,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +1170,4,2,8,5,0,0,0,0,-1,0,132725,7,0,50,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1171,4,1,7,20,0,0,0,0,-1,0,132665,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1172,4,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1173,4,2,8,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1174,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1175,15,0,1,0,0,0,0,0,-1,0,134566,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1176,0,0,0,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1177,0,8,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1178,0,8,0,0,0,0,0,0,-1,0,132383,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1179,0,5,7,0,5,0,0,0,-1,0,132815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1180,0,4,7,0,5,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1181,0,4,7,0,1,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1182,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1183,4,1,7,9,0,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1184,4,0,1,12,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1186,4,0,7,12,35,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1187,0,0,2,0,20,0,0,0,-1,0,133075,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1189,4,0,1,11,15,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1190,4,1,7,16,15,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1191,0,0,0,0,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1192,4,3,5,1,15,0,0,0,-1,0,133070,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1193,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1194,2,8,1,17,1,1,0,0,-1,0,135276,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +1195,2,5,2,17,3,1,0,0,-1,0,134435,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +1196,2,1,1,17,9,1,0,0,-1,0,132395,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +1197,2,5,2,17,10,1,0,0,-1,0,133477,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +1198,2,8,1,17,10,1,0,0,-1,0,135350,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +1199,0,0,3,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1200,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1201,4,6,1,14,5,4,0,0,-1,0,134950,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1202,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1203,4,6,1,14,49,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,1867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1204,4,6,1,14,36,4,0,0,-1,0,134952,9,0,120,0,0,0,0,0,0,1507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1205,0,5,7,0,15,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1206,3,7,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1207,2,4,2,13,34,3,5242,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +1208,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1210,3,7,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1211,4,2,8,5,10,0,0,0,-1,0,132719,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1212,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1213,4,2,8,9,9,0,0,0,-1,0,132603,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1214,2,4,2,13,12,3,0,0,-1,0,133046,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +1215,4,2,8,6,17,0,0,0,-1,0,132498,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1216,4,1,7,9,28,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0 +1217,12,0,0,0,0,0,0,0,-1,0,134400,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1218,2,5,2,17,16,1,0,0,-1,0,133489,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +1219,2,7,1,13,11,3,0,0,-1,0,135314,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +1220,2,1,1,17,15,1,0,0,-1,0,132405,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +1221,12,0,8,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1222,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1224,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1228,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1229,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1231,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1232,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1238,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1239,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1243,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1244,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1245,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1246,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1250,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1251,0,7,0,0,0,0,0,0,-1,0,133685,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1252,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1253,13,1,1,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1254,4,0,1,28,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1255,15,0,1,0,18,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1256,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1257,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1258,4,0,1,12,35,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1259,2,0,1,21,0,3,2191,0,-1,0,132392,8,0,20,0,0,2,3,4,5,0,0,0,0,0,0,0,1,3000,2000,1000,4000,1,3000,2000,1000,4000 +1260,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1261,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1262,0,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1263,2,1,1,17,55,1,0,0,-1,0,135580,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +1264,2,5,2,17,0,1,0,0,-1,0,133482,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +1265,2,7,1,13,34,3,0,0,-1,0,135302,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +1266,2,8,1,17,0,1,0,0,-1,0,135276,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1267,0,8,0,0,1,0,0,0,-1,0,134514,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1268,0,8,0,0,1,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1269,0,8,0,0,0,0,0,0,-1,0,133622,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1270,4,1,7,16,0,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1272,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1273,4,3,5,5,0,0,0,0,-1,0,132742,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1274,12,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1275,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1276,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1279,4,2,8,1,0,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1280,4,2,8,1,33,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1281,11,2,0,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1282,4,3,5,1,0,0,0,0,-1,0,133070,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1283,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1284,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1287,2,15,1,13,10,3,0,0,-1,0,134298,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +1288,7,11,3,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1292,2,0,1,13,20,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,32,0,0,0,0 +1293,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1294,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1296,2,4,2,13,16,3,0,0,-1,0,133481,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +1297,4,1,7,20,26,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1298,4,1,7,9,13,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1299,4,1,7,6,17,0,0,0,-1,0,132518,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1300,2,10,2,17,15,2,0,0,-1,0,135469,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,54,0,0,0,0 +1302,4,2,8,10,0,0,0,0,-1,0,132951,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1303,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1304,4,1,7,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1306,4,2,8,9,0,0,0,0,-1,0,132603,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1307,12,0,0,0,7,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1309,12,0,0,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1310,4,2,8,7,0,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1311,2,1,1,17,0,1,0,0,-1,0,132402,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,29,0,0,0,0 +1312,2,4,2,21,0,3,0,0,-1,0,133057,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +1313,2,15,1,13,0,3,0,0,-1,0,135128,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +1314,4,2,8,10,15,0,0,0,-1,0,132947,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1315,4,0,0,2,46,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1317,2,10,2,17,0,2,0,0,-1,0,135153,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,67,0,0,0,0 +1318,2,1,1,17,18,1,0,0,-1,0,135424,9,0,80,0,0,5,0,0,0,0,0,0,0,0,0,0,52,1,0,0,0,78,5,0,0,0 +1319,4,0,4,11,0,0,0,0,-1,0,132520,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1321,0,8,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1322,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1323,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1324,12,0,0,21,0,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1325,12,0,0,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1326,0,5,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1327,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1328,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1332,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1334,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1339,9,0,0,0,8,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1341,9,0,0,0,4,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1349,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1350,4,0,0,12,0,0,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1351,4,1,7,9,23,0,0,0,-1,0,132615,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1352,12,0,0,0,12,0,0,0,-1,0,133728,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1353,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1354,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1355,4,1,7,16,10,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1356,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1357,12,0,0,0,10,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1358,12,0,0,0,0,0,0,0,-1,0,134251,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1359,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1360,4,3,5,10,0,0,0,0,-1,0,132939,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1361,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1362,12,0,0,0,0,0,0,0,-1,0,134252,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1363,4,1,7,1,0,0,0,0,-1,0,133148,7,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1364,4,2,8,5,1,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1366,4,2,8,7,1,0,0,0,-1,0,134586,7,0,30,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1367,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1368,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1369,4,2,8,6,1,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1370,4,2,8,9,1,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1371,4,2,8,3,1,0,0,0,-1,0,135039,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1372,4,1,7,16,1,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1374,4,1,7,8,1,0,0,0,-1,0,132543,7,0,18,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1376,4,1,7,16,1,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1377,4,1,7,10,1,0,0,0,-1,0,132952,7,0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1378,4,1,7,7,1,0,0,0,-1,0,134589,7,0,25,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1379,4,1,7,3,1,0,0,0,-1,0,135037,7,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1380,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1381,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1382,2,4,2,21,0,3,0,0,-1,0,133482,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +1383,2,0,1,21,0,3,0,0,-1,0,135421,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +1384,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +1385,2,5,2,17,1,1,0,0,-1,0,133046,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +1386,2,1,1,17,0,1,0,0,-1,0,132392,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +1387,2,8,1,17,14,1,0,0,-1,0,135277,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,54,0,0,0,0 +1388,2,10,2,17,1,2,0,0,-1,0,135159,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +1389,2,4,2,21,2,3,0,0,-1,0,133046,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +1391,2,10,2,17,13,2,0,0,-1,0,135473,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,43,0,0,0,0 +1392,4,1,7,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1394,2,4,2,13,10,3,0,0,-1,0,133485,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +1395,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1396,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1397,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1398,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1399,0,8,0,0,1,0,0,0,-1,0,133751,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1400,0,8,0,0,2,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1401,0,5,0,0,4,0,0,0,-1,0,134190,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1402,0,8,0,0,2,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1403,4,0,0,12,35,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1404,4,0,0,12,36,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1405,2,10,2,17,12,2,0,0,-1,0,135143,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +1406,2,6,1,17,20,2,0,0,-1,0,135129,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +1407,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1408,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1409,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1410,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1411,2,10,2,17,3,2,0,0,-1,0,135139,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +1412,2,8,1,17,2,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,12,0,0,0,0 +1413,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1414,2,5,2,17,4,1,0,0,-1,0,133046,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,15,0,0,0,0 +1415,2,4,2,21,4,3,0,0,-1,0,133052,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +1416,2,0,1,21,4,3,0,0,-1,0,135421,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +1417,2,1,1,17,3,1,0,0,-1,0,135424,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +1418,4,2,8,6,2,0,0,0,-1,0,132513,7,0,18,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1419,4,2,8,8,3,0,0,0,-1,0,132540,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1420,4,2,8,9,4,0,0,0,-1,0,132604,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1421,4,1,7,16,5,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1422,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1423,4,2,8,7,2,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1424,4,2,8,3,3,0,0,0,-1,0,135039,7,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1425,4,2,8,5,4,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1427,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1429,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1430,4,1,7,10,2,0,0,0,-1,0,132952,7,0,14,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1431,4,1,7,7,3,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1432,4,1,7,3,4,0,0,0,-1,0,135037,7,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1433,4,1,7,5,2,0,0,0,-1,0,135010,7,0,40,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1434,0,0,2,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1435,4,2,8,3,0,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1436,4,2,8,7,0,0,0,0,-1,0,134585,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1438,4,6,1,14,4,4,0,0,-1,0,134949,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1440,2,4,2,13,14,3,0,0,-1,0,133048,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +1443,4,0,0,2,55,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1444,4,0,0,12,35,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1445,4,3,5,3,18,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1446,4,3,5,8,14,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1447,4,0,1,11,41,0,0,0,-1,0,132516,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1448,4,3,5,10,15,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1449,4,0,5,11,0,1,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1450,0,1,0,0,15,1,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1451,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1453,12,0,3,0,0,0,0,0,-1,0,133800,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1454,2,0,1,13,22,3,0,0,-1,0,132415,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +1455,2,1,1,17,19,1,0,0,-1,0,135562,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +1457,2,4,2,13,17,3,0,0,-1,0,133476,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1458,2,5,2,17,18,1,0,0,-1,0,133053,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +1459,2,0,1,13,19,3,0,0,-1,0,135421,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +1460,2,8,1,17,15,1,0,0,-1,0,135356,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +1461,2,1,1,17,20,1,0,0,-1,0,135424,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +1462,4,0,1,11,20,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +1464,15,0,8,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1465,2,15,1,13,33,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +1467,12,0,0,0,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1468,7,8,0,0,0,0,0,0,-1,0,134304,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1469,2,7,1,13,14,3,0,0,-1,0,135325,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +1470,1,0,8,18,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1472,4,0,0,12,35,0,0,0,-1,0,134431,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1473,2,10,2,17,14,2,0,0,-1,0,135145,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +1475,7,11,3,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1476,15,0,0,0,0,1,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1477,0,4,7,0,25,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1478,0,4,7,0,15,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1479,4,1,7,10,0,0,0,0,-1,0,132940,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1480,2,4,2,13,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +1481,2,0,1,13,20,3,0,0,-1,0,132404,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +1482,2,7,1,13,19,3,0,0,-1,0,135311,8,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,29,4,0,0,0,55,8,0,0,0 +1483,2,4,2,13,16,3,0,0,-1,0,133045,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +1484,2,10,2,17,17,2,0,0,-1,0,135466,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +1485,2,6,1,17,20,1,0,0,-1,0,135127,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,45,0,0,0,0 +1486,4,1,7,5,19,0,0,0,-1,0,135006,7,0,75,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1487,0,5,0,0,25,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1488,4,3,5,5,26,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1489,4,2,8,5,20,0,0,0,-1,0,132723,7,0,95,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1490,4,0,3,12,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1491,4,0,1,11,20,1,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1492,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1493,2,7,1,13,22,3,0,0,-1,0,135325,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,54,0,0,0,0 +1495,4,1,7,8,8,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1497,4,1,7,16,9,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1498,4,1,7,10,10,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1499,4,1,7,7,6,0,0,0,-1,0,134591,7,0,35,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1500,15,1,2,0,0,0,0,0,-1,0,136008,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1501,4,1,7,5,8,0,0,0,-1,0,135020,7,0,50,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1502,4,2,8,6,9,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1503,4,2,8,8,10,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1504,4,2,8,9,6,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1505,4,1,7,16,7,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1506,4,2,8,10,8,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1507,4,2,8,7,9,0,0,0,-1,0,134588,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1508,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1509,4,2,8,5,6,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1510,2,4,2,21,7,3,0,0,-1,0,133052,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1511,2,7,1,21,8,3,0,0,-1,0,135274,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1512,2,1,1,17,7,1,0,0,-1,0,135423,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +1513,2,8,1,17,9,1,0,0,-1,0,135276,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1514,2,5,2,17,9,1,0,0,-1,0,133053,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +1515,2,10,2,17,7,2,0,0,-1,0,135146,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,20,0,0,0,0 +1516,2,0,1,21,9,3,0,0,-1,0,135419,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +1518,12,0,3,0,0,0,0,0,-1,0,133800,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1519,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1520,15,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1521,2,1,1,17,39,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +1522,2,6,1,17,31,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,95,0,0,0,0 +1523,2,5,2,17,31,1,0,0,-1,0,133489,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,107,0,0,0,0 +1524,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1527,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1528,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1529,3,7,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1532,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1533,0,8,0,0,27,0,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1534,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1535,4,2,8,5,33,0,0,0,-1,0,132760,7,0,85,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1536,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1537,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1539,2,10,2,17,14,2,0,0,-1,0,135154,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,42,0,0,0,0 +1544,4,0,0,12,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1545,4,1,7,3,0,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1547,4,6,1,14,0,4,0,0,-1,0,135940,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1554,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1557,4,6,1,14,0,4,0,0,-1,0,134955,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1559,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1560,4,1,7,8,16,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1561,4,1,7,20,0,0,0,0,-1,0,132654,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1566,2,8,1,17,0,1,0,0,-1,0,135326,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,39,0,0,0,0 +1567,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1568,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1571,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1574,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1588,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1589,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1591,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1596,12,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1597,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1598,12,0,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1599,9,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1602,2,0,1,13,34,3,0,0,-1,0,132397,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +1603,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1604,2,8,1,17,40,1,0,0,-1,0,135323,9,0,85,0,0,0,0,0,0,0,0,7,7,7,7,7,100,0,0,0,0,150,0,0,0,0 +1607,2,10,2,17,49,2,0,0,-1,0,136163,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,213,0,0,0,0 +1608,2,4,2,13,42,3,5269,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +1612,0,8,0,0,28,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1613,2,10,2,17,39,2,5266,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +1619,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1622,4,0,7,12,37,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1623,1,0,7,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1624,4,3,5,1,38,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1625,2,8,1,17,36,1,5254,0,-1,0,135356,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +1630,15,0,0,0,0,0,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1637,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1638,7,11,0,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1639,2,1,1,17,44,1,5282,0,-1,0,132395,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,128,0,0,0,0 +1640,2,1,1,17,37,1,5255,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +1641,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1645,0,5,7,0,35,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1648,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1649,0,8,0,0,30,0,0,0,-1,0,133951,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1651,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1652,1,0,0,18,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1654,7,11,0,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1655,9,0,0,0,29,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1656,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1657,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1658,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1659,4,1,7,10,35,0,0,0,-1,0,132938,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1663,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1664,2,10,2,17,36,2,0,0,-1,0,135165,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,116,0,0,0,0 +1672,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1676,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1677,4,3,5,5,41,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1678,4,3,5,8,32,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1679,2,5,2,17,31,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +1680,2,1,1,17,39,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,117,0,0,0,0 +1681,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1684,4,2,8,1,39,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1685,1,0,7,18,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1686,15,0,8,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1687,15,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1688,15,0,0,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1689,7,11,8,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1690,15,0,8,0,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1691,15,0,0,0,0,0,0,0,-1,0,134296,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1692,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1693,7,11,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1694,7,11,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1695,7,11,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1696,15,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1697,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1698,12,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1699,12,0,0,0,0,0,0,0,-1,0,134413,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1700,0,0,0,2,33,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1701,15,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1702,15,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1703,0,8,0,0,25,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1704,0,8,0,0,29,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1705,3,7,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1706,15,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1707,0,5,0,0,25,0,0,0,-1,0,133994,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1708,0,5,3,0,25,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1710,0,1,0,0,21,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1711,0,4,7,0,20,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1712,0,4,7,0,15,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1713,4,0,1,12,40,0,0,0,-1,0,135943,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1714,4,0,3,2,38,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1715,4,3,5,5,39,0,0,0,-1,0,132631,10,0,120,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1716,4,1,7,20,35,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1717,4,3,5,5,25,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1718,4,2,8,7,38,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1719,2,0,1,21,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1720,2,10,2,17,41,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,165,0,0,0,0 +1721,2,4,2,13,49,3,0,0,-1,0,133046,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +1722,2,5,2,17,37,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,10,0,0,0,95,0,0,0,0,143,0,0,0,0 +1724,1,0,8,18,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1725,1,0,7,18,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1726,2,6,1,17,31,2,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +1727,2,7,1,13,23,3,0,0,-1,0,135327,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +1728,2,7,1,13,60,3,0,0,-1,0,135323,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,178,0,0,0,0 +1729,1,0,7,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1730,4,3,5,6,7,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1731,4,3,5,8,8,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1732,4,3,5,9,9,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1733,4,1,7,16,10,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1734,4,3,5,10,6,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1735,4,3,5,7,7,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1736,4,3,5,3,8,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1737,4,3,5,5,9,0,0,0,-1,0,132624,10,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1738,4,3,5,6,14,0,0,0,-1,0,132495,10,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1739,4,3,5,8,15,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1740,4,3,5,9,11,0,0,0,-1,0,132602,10,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1741,4,1,7,16,12,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1742,4,3,5,10,13,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1743,4,3,5,7,14,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1744,4,3,5,3,15,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1745,4,3,5,5,11,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1746,4,3,5,6,20,0,0,0,-1,0,132495,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1747,4,3,5,8,16,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1748,4,3,5,9,17,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1749,4,1,7,16,18,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1750,4,3,5,10,19,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1751,4,3,5,7,20,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1752,4,3,5,3,16,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1753,4,3,5,5,17,0,0,0,-1,0,132624,10,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1754,4,3,5,6,21,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1755,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1756,4,3,5,9,23,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1757,4,1,7,16,24,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1758,4,3,5,10,25,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1759,4,3,5,7,21,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1760,4,3,5,3,22,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1761,4,3,5,5,23,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1764,4,1,7,8,12,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1766,4,1,7,16,13,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1767,4,1,7,10,14,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1768,4,1,7,7,15,0,0,0,-1,0,134589,7,0,45,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1769,4,1,7,3,15,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1770,4,1,7,5,12,0,0,0,-1,0,135025,7,0,55,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1772,4,1,7,8,18,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1774,4,1,7,16,19,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1775,4,1,7,10,20,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1776,4,1,7,7,16,0,0,0,-1,0,134591,7,0,45,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1777,4,1,7,3,17,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1778,4,1,7,5,18,0,0,0,-1,0,135023,7,0,65,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1780,4,1,7,8,24,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1782,4,1,7,16,25,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1783,4,1,7,10,21,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1784,4,1,7,7,22,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1785,4,1,7,3,23,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1786,4,1,7,5,24,0,0,0,-1,0,135031,7,0,70,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1787,4,2,8,6,13,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1788,4,2,8,8,14,0,0,0,-1,0,132592,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1789,4,2,8,9,15,0,0,0,-1,0,132607,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1790,4,1,7,16,11,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1791,4,2,8,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1792,4,2,8,7,13,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1793,4,2,8,3,15,0,0,0,-1,0,135037,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1794,4,2,8,5,15,0,0,0,-1,0,132760,7,0,70,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1795,4,2,8,6,19,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1796,4,2,8,8,20,0,0,0,-1,0,132540,7,0,40,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1797,4,2,8,9,16,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1798,4,1,7,16,17,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1799,4,2,8,10,18,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1800,4,2,8,7,19,0,0,0,-1,0,134589,7,0,60,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1801,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1802,4,2,8,5,16,0,0,0,-1,0,132724,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1803,4,2,8,6,25,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1804,4,2,8,8,21,0,0,0,-1,0,132543,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1805,4,2,8,9,22,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1806,4,1,7,16,23,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1807,4,2,8,10,24,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1808,4,2,8,7,25,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1809,4,2,8,3,21,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1810,4,2,8,5,22,0,0,0,-1,0,132725,7,0,80,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1811,2,8,1,17,12,1,0,0,-1,0,135276,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1812,2,1,1,17,12,1,0,0,-1,0,135423,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +1813,2,10,2,17,13,2,0,0,-1,0,135145,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,27,0,0,0,0 +1814,2,5,2,17,14,1,0,0,-1,0,133053,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1815,2,4,2,21,12,3,0,0,-1,0,133478,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +1816,2,0,1,21,14,3,0,0,-1,0,135421,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +1817,2,7,1,21,14,3,0,0,-1,0,135274,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +1818,2,8,1,17,19,1,0,0,-1,0,135276,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +1819,2,0,1,21,17,3,0,0,-1,0,134708,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1820,2,5,2,17,17,1,0,0,-1,0,133052,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +1821,2,7,1,21,19,3,0,0,-1,0,135274,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +1822,2,10,2,17,18,2,0,0,-1,0,135145,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +1823,2,4,2,21,17,3,0,0,-1,0,133485,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +1824,2,1,1,17,18,1,0,0,-1,0,132409,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +1825,2,4,2,21,23,3,0,0,-1,0,133046,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1826,2,5,2,17,22,1,0,0,-1,0,133046,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +1827,2,0,1,21,22,3,0,0,-1,0,132417,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +1828,2,1,1,17,22,1,0,0,-1,0,132414,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +1829,2,7,1,21,24,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +1830,2,8,1,17,23,1,0,0,-1,0,135276,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +1831,2,10,2,17,23,2,0,0,-1,0,135145,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,51,0,0,0,0 +1832,4,1,7,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1835,4,2,8,6,1,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1836,4,2,8,9,1,0,0,0,-1,0,132603,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1839,4,2,8,6,5,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1840,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1843,4,2,8,6,12,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1844,4,2,8,9,12,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1845,4,3,5,6,12,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1846,4,3,5,9,12,0,0,0,-1,0,132606,10,0,25,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1849,4,2,8,6,17,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1850,4,2,8,9,17,0,0,0,-1,0,132603,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1851,0,8,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1852,4,3,5,9,17,0,0,0,-1,0,132606,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1853,4,3,5,6,17,0,0,0,-1,0,132493,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1854,4,0,4,12,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1875,12,0,0,0,0,0,0,0,-1,0,133278,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1877,9,0,0,0,16,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1882,9,0,0,0,16,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1886,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1893,2,1,1,17,0,1,0,0,-1,0,134709,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +1894,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1895,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1896,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1897,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1899,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1900,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1901,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1902,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1903,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1904,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1905,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1906,2,4,2,13,1,7,0,0,-1,0,135805,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1907,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1908,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1909,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1910,2,0,1,13,1,3,0,0,-1,0,134707,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1911,2,4,2,13,1,7,0,0,-1,0,134520,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1912,4,0,2,12,35,0,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1913,2,4,2,21,5,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +1914,4,0,0,12,35,0,0,0,-1,0,133038,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1915,15,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1917,2,15,1,13,5,3,0,0,-1,0,135651,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +1918,13,1,0,0,2,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1922,12,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1923,12,0,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1924,12,0,2,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1925,2,7,1,13,11,3,0,0,-1,0,135340,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +1926,2,4,2,13,10,3,0,0,-1,0,133481,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,22,0,0,0,0 +1927,2,0,1,13,10,3,0,0,-1,0,132402,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +1928,2,10,2,17,11,2,0,0,-1,0,135155,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +1929,4,1,7,7,13,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1930,4,1,7,16,13,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1931,12,0,0,0,0,0,0,0,-1,0,134297,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1933,2,10,2,17,10,2,0,0,-1,0,135150,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +1934,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1935,2,15,1,13,19,3,0,0,-1,0,135660,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +1936,2,15,1,13,13,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +1937,2,7,1,13,16,3,0,0,-1,0,135325,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +1938,2,4,2,13,17,3,0,0,-1,0,133052,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +1939,12,0,0,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1940,12,0,8,0,0,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1941,12,0,2,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1942,12,0,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1943,4,3,5,7,14,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1944,4,2,8,10,13,0,0,0,-1,0,132938,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1945,4,2,8,10,13,0,0,0,-1,0,132955,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1946,12,0,0,0,0,0,0,0,-1,0,134576,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1948,2,10,2,17,11,1,0,0,-1,0,133040,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,29,0,0,0,0 +1950,7,7,4,0,0,0,0,0,-1,0,133217,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1951,2,7,1,13,14,3,0,0,-1,0,135325,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +1955,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1956,12,0,0,0,0,0,0,0,-1,0,133437,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1957,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1958,2,4,2,13,12,3,0,0,-1,0,133718,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +1959,2,1,1,17,12,1,0,0,-1,0,134707,9,0,60,0,0,4,0,0,0,0,0,0,0,0,0,0,27,1,0,0,0,41,5,0,0,0 +1960,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1961,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1962,12,0,0,0,15,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1963,7,11,0,0,0,0,0,0,-1,0,133724,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1965,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1968,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1969,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1970,0,0,2,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1971,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1972,12,0,0,0,8,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1973,4,0,3,12,54,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1974,4,1,7,9,17,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1975,2,8,1,17,23,1,0,0,-1,0,135326,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +1976,2,5,2,17,24,1,0,0,-1,0,133053,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +1977,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1978,4,2,8,10,22,0,0,0,-1,0,132938,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1979,4,6,1,14,45,4,0,0,-1,0,134948,9,0,120,0,0,0,0,0,0,2226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1980,4,0,1,11,38,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1981,4,3,5,5,39,0,0,0,-1,0,132741,10,0,140,0,0,0,0,0,0,336,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +1982,2,8,1,17,39,1,0,0,-1,0,135272,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +1983,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +1984,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1985,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1986,2,8,1,17,36,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +1987,12,0,1,0,0,1,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1988,4,3,5,10,33,0,0,0,-1,0,132956,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1990,2,5,2,17,31,1,5238,0,-1,0,133481,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +1991,2,5,2,17,29,1,0,0,-1,0,134436,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +1992,4,0,0,23,33,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0 +1993,4,0,1,11,31,0,0,0,-1,0,132524,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1994,2,0,1,13,41,3,5268,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +1995,0,0,0,0,24,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1996,4,0,0,11,32,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1997,4,1,7,20,29,0,0,0,-1,0,132663,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1998,2,10,2,17,28,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,75,0,0,0,0 +1999,4,2,8,5,29,0,0,0,-1,0,135006,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2000,2,8,1,17,0,1,0,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,95,0,0,0,0 +2002,11,2,8,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2003,11,2,0,18,1,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2004,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2005,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2006,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2007,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2008,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2011,2,7,1,13,21,3,0,0,-1,0,135325,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +2012,4,0,0,12,35,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2013,2,10,2,17,21,2,0,0,-1,0,135163,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +2014,2,8,1,17,24,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,78,0,0,0,0 +2015,2,1,1,17,23,1,0,0,-1,0,132408,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +2016,4,3,5,5,21,0,0,0,-1,0,132624,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017,4,2,8,9,23,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018,2,7,1,13,22,3,0,0,-1,0,135317,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +2020,2,15,1,13,13,3,0,0,-1,0,135652,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +2021,4,6,1,14,16,4,0,0,-1,0,134321,9,0,65,0,0,0,0,0,0,428,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +2023,2,6,1,17,1,2,0,0,-1,0,135130,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2024,2,8,1,17,16,1,0,0,-1,0,135353,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +2025,2,1,1,17,15,1,0,0,-1,0,132394,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +2026,2,5,2,17,16,1,0,0,-1,0,133046,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,56,0,0,0,0 +2027,2,7,1,13,14,3,0,0,-1,0,135343,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2028,2,4,2,13,16,3,0,0,-1,0,133052,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2029,2,0,1,13,15,3,0,0,-1,0,132417,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2030,2,10,2,17,15,2,0,0,-1,0,135147,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,42,0,0,0,0 +2032,4,1,7,9,0,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2033,4,2,8,8,0,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2034,4,1,7,20,20,0,0,0,-1,0,132645,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2035,2,7,1,13,19,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +2036,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2037,4,3,5,8,0,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2038,4,2,8,1,0,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2039,4,0,4,11,24,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2040,4,6,1,14,43,4,0,0,-1,0,134962,9,0,100,0,0,0,0,0,0,1676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2041,4,2,8,5,0,0,0,0,-1,0,132722,7,0,90,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2042,2,10,2,17,0,2,0,0,-1,0,135147,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +2043,4,0,1,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2044,2,0,1,13,0,3,0,0,-1,0,132397,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +2045,4,1,7,1,0,0,0,0,-1,0,133074,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2046,2,7,1,13,19,3,0,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +2047,2,0,1,21,0,3,0,0,-1,0,135419,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2048,2,4,2,21,0,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2050,7,7,3,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2051,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2052,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2053,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2054,2,0,1,21,1,3,0,0,-1,0,132410,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2055,2,4,2,21,1,3,0,0,-1,0,133052,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2056,2,4,2,21,5,3,0,0,-1,0,133039,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2057,2,7,1,21,1,3,0,0,-1,0,135274,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2058,2,5,2,17,22,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +2059,4,1,7,16,19,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2060,7,11,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2064,2,4,2,21,6,3,0,0,-1,0,133052,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +2065,2,7,1,21,4,3,0,0,-1,0,135357,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2066,2,0,1,21,3,3,0,0,-1,0,132402,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2067,2,10,2,17,5,2,0,0,-1,0,135152,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2069,4,2,8,5,7,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2070,0,5,0,0,1,0,0,0,-1,0,133948,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2071,0,8,0,0,1,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2072,2,10,2,17,22,2,5212,0,-1,0,135141,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,62,0,0,0,0 +2073,2,0,1,21,10,3,5169,0,-1,0,132395,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2074,2,7,1,13,0,3,0,0,-1,0,135324,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2075,2,4,2,21,7,3,5170,0,-1,0,133481,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +2077,2,10,2,17,24,2,5221,0,-1,0,135468,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +2078,2,7,1,13,13,3,5177,0,-1,0,135321,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2079,2,4,2,13,12,3,5179,0,-1,0,133048,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +2080,2,0,1,13,29,3,5232,0,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +2081,4,0,1,23,1,7,0,0,-1,0,135126,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2082,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2084,2,8,1,17,25,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,79,0,0,0,0 +2085,15,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2087,4,2,8,5,8,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2088,2,15,1,13,10,3,0,0,-1,0,133723,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2089,2,15,1,13,0,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2091,0,8,0,0,10,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2092,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2098,2,3,1,26,22,0,0,0,-1,0,135617,8,0,70,3,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,52,0,0,0,0 +2099,2,3,1,26,53,0,0,0,-1,0,135618,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +2100,2,3,1,26,43,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,56,0,0,0,0 +2101,11,2,0,18,1,0,0,0,-1,0,134409,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2102,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2103,6,2,2,24,1,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2104,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2105,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2106,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2107,4,0,7,8,0,0,0,0,-1,0,132543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2108,4,2,8,5,1,0,0,0,-1,0,132760,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2109,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2110,4,1,7,20,1,0,0,0,-1,0,132663,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2112,4,2,8,5,4,0,0,0,-1,0,132725,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2113,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2114,4,1,7,20,3,0,0,0,-1,0,132674,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2115,1,0,8,18,0,0,0,0,-1,0,133627,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2117,4,1,7,8,1,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2119,4,1,7,10,1,0,0,0,-1,0,132952,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2120,4,1,7,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2121,4,1,7,5,1,0,0,0,-1,0,135029,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2122,4,2,8,6,1,0,0,0,-1,0,132515,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2123,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2124,4,2,8,9,1,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2125,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2126,4,2,8,7,1,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2127,4,2,8,5,1,0,0,0,-1,0,135010,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2128,2,8,1,17,1,1,0,0,-1,0,135276,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0 +2129,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2130,2,4,2,13,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2131,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2132,2,10,2,17,1,2,0,0,-1,0,135139,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +2133,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2134,2,0,1,13,1,3,0,0,-1,0,132410,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2136,0,5,7,0,15,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2137,2,15,1,13,0,3,0,0,-1,0,135637,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2138,2,15,1,13,2,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2139,2,15,1,13,1,3,0,0,-1,0,135650,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2140,2,15,1,13,6,3,5171,0,-1,0,135637,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +2141,4,2,8,5,22,0,0,0,-1,0,132724,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2142,4,2,8,6,22,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2143,4,2,8,8,22,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2144,4,2,8,9,22,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2145,4,2,8,10,22,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2146,4,2,8,7,22,0,0,0,-1,0,134589,7,0,60,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2147,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2148,4,3,5,6,22,0,0,0,-1,0,132493,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2149,4,3,5,8,22,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2150,4,3,5,9,22,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2151,4,3,5,10,22,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2152,4,3,5,7,22,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2153,4,3,5,5,22,0,0,0,-1,0,132631,10,0,95,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2154,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2156,4,1,7,8,22,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2158,4,1,7,10,22,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2159,4,1,7,7,22,0,0,0,-1,0,134587,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2160,4,1,7,5,22,0,0,0,-1,0,135006,7,0,70,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2161,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2162,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2163,2,15,1,13,48,3,0,0,-1,0,135302,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +2164,2,15,1,13,40,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +2165,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2166,4,3,5,7,15,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2167,4,2,8,10,15,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2168,4,1,7,8,16,0,0,0,-1,0,132537,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2169,2,15,1,13,16,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +2170,4,6,1,14,15,4,0,0,-1,0,134321,9,0,65,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2172,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2173,4,2,8,6,0,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2175,2,1,1,17,18,1,0,0,-1,0,135424,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +2176,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2177,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2178,2,7,1,13,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2179,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2180,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2181,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2182,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2183,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2184,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2186,4,2,8,6,0,0,0,0,-1,0,132495,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2187,12,0,0,0,0,0,0,0,-1,0,133459,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2188,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2189,2,4,2,21,95,1,0,0,-1,0,135613,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +2191,12,0,0,0,0,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2194,2,4,2,13,20,3,0,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2195,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2196,2,4,2,13,1,7,0,0,-1,0,133974,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2197,2,4,2,13,1,7,0,0,-1,0,133964,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2198,2,14,1,13,1,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2199,2,14,1,13,1,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2200,2,14,1,13,1,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2201,2,14,1,13,1,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2202,2,4,2,13,1,7,0,0,-1,0,133974,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2203,2,1,1,17,14,1,0,0,-1,0,132417,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +2204,2,8,1,17,12,1,0,0,-1,0,135321,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +2205,2,8,1,17,20,1,0,0,-1,0,135351,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +2206,2,15,1,13,17,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2207,2,15,1,13,11,3,0,0,-1,0,135640,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +2208,2,15,1,13,14,3,0,0,-1,0,135302,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,15,0,0,0,0 +2209,2,15,1,13,19,3,0,0,-1,0,135342,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +2210,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2211,4,6,1,14,1,4,0,0,-1,0,134955,9,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2212,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2213,4,6,1,14,2,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2214,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2215,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2216,4,6,1,14,11,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2217,4,6,1,14,12,4,0,0,-1,0,134949,9,0,60,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2218,2,15,1,13,0,3,0,0,-1,0,135641,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +2219,4,6,1,14,17,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2220,4,6,1,14,18,4,0,0,-1,0,134949,9,0,70,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2221,4,6,1,14,23,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2222,4,6,1,14,24,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2223,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2224,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2225,2,15,1,13,0,3,0,0,-1,0,135650,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2226,2,10,2,17,22,2,0,0,-1,0,135468,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +2227,2,1,1,17,22,1,0,0,-1,0,135562,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +2230,4,3,5,10,0,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2231,4,1,7,20,0,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2232,4,1,7,8,20,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2233,4,2,8,7,22,0,0,0,-1,0,134592,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2234,4,1,7,5,25,0,0,0,-1,0,135020,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2235,2,15,1,13,14,3,0,0,-1,0,135651,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2236,2,15,1,13,20,3,0,0,-1,0,135638,8,0,50,0,0,0,0,0,0,0,0,0,0,0,5,0,17,0,0,0,0,32,0,0,0,0 +2237,4,2,8,7,0,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2238,4,1,7,7,0,0,0,0,-1,0,134588,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2239,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2240,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2241,4,1,7,16,15,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2243,2,4,2,13,57,3,0,0,-1,0,133489,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +2244,2,7,1,13,51,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +2245,4,3,5,1,54,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2246,4,0,1,11,53,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2249,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2250,12,0,0,0,0,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2251,7,8,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2252,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2254,2,5,2,17,7,1,0,0,-1,0,133041,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +2255,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2256,2,4,2,13,19,3,0,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2257,2,10,2,17,5,2,0,0,-1,0,135148,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,21,0,0,0,0 +2258,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2259,2,4,2,21,3,3,0,0,-1,0,133053,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2260,2,0,1,21,4,3,0,0,-1,0,132408,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2262,4,0,0,11,31,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2263,2,7,1,13,0,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +2264,4,2,8,3,25,0,0,0,-1,0,135039,7,0,60,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2265,2,0,1,13,8,3,0,0,-1,0,132410,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2266,2,15,1,13,8,3,0,0,-1,0,135644,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +2267,2,4,2,13,10,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +2268,2,7,1,21,5,3,0,0,-1,0,135357,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2271,2,10,2,17,18,2,0,0,-1,0,135168,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +2273,4,3,5,5,10,0,0,0,-1,0,132626,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2274,4,3,5,10,12,0,0,0,-1,0,132937,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2275,4,3,5,1,15,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2276,4,2,8,8,32,0,0,0,-1,0,132543,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2277,4,1,7,7,30,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2278,4,2,8,3,26,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2280,2,10,2,17,22,2,0,0,-1,0,135143,13,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,75,0,0,0,0 +2281,2,0,1,13,6,3,0,0,-1,0,132410,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2282,2,7,1,21,5,3,0,0,-1,0,135357,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +2283,4,1,7,6,10,0,0,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2284,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2287,0,5,0,0,5,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2288,0,5,7,0,5,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2289,0,4,7,0,25,1,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2290,0,4,7,0,20,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2291,2,1,1,17,44,1,0,0,-1,0,132406,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,205,0,0,0,0 +2292,4,1,7,20,20,0,0,0,-1,0,132677,7,0,75,0,0,0,0,0,0,43,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +2295,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2296,7,8,0,0,0,0,0,0,-1,0,134172,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2299,2,1,1,17,28,1,0,0,-1,0,132393,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,110,0,0,0,0 +2300,4,2,8,5,7,0,0,0,-1,0,132724,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2302,4,2,8,8,3,0,0,0,-1,0,132538,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2303,4,2,8,7,5,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2304,0,6,8,0,1,0,0,0,-1,0,133611,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2305,4,1,7,16,1,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2306,4,2,8,8,1,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2307,4,2,8,8,13,0,0,0,-1,0,132540,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2308,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2309,4,2,8,8,10,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2310,4,1,7,16,8,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2311,4,2,8,5,8,0,0,0,-1,0,132760,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2312,4,2,8,10,10,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2313,0,6,8,0,5,0,0,0,-1,0,133609,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2314,4,2,8,5,19,0,0,0,-1,0,132725,7,0,75,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2315,4,2,8,8,15,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2316,4,1,7,16,17,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2317,4,2,8,5,15,0,0,0,-1,0,132718,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2318,7,6,8,0,0,0,0,0,-1,0,134252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2319,7,6,8,0,0,0,0,0,-1,0,134254,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2320,7,5,8,0,0,0,0,0,-1,0,132891,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2321,7,5,8,0,0,0,0,0,-1,0,132912,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2322,7,11,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2323,7,11,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2324,7,11,3,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2325,7,11,3,0,0,0,0,0,-1,0,134843,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2326,4,1,7,9,0,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2327,4,2,8,9,5,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2361,2,5,2,17,1,1,0,0,-1,0,133052,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +2362,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2363,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2364,4,1,7,5,5,0,0,0,-1,0,135011,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2366,4,1,7,7,5,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2367,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2369,4,1,7,10,5,0,0,0,-1,0,132957,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2370,4,2,8,5,5,0,0,0,-1,0,132719,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2371,4,2,8,6,5,0,0,0,-1,0,132492,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2372,4,2,8,7,5,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2373,4,2,8,8,5,0,0,0,-1,0,132592,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2374,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2375,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2376,4,6,1,14,5,4,0,0,-1,0,134950,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2377,4,6,1,14,5,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2378,12,0,0,0,0,0,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2379,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2380,4,3,5,6,1,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2381,4,3,5,7,1,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2382,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2383,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2384,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2385,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2386,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2387,4,3,5,6,1,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2388,4,3,5,7,1,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2389,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2390,4,3,5,9,1,0,0,0,-1,0,132604,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2391,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2392,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2393,4,3,5,6,5,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2394,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2395,4,3,5,8,5,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2396,4,3,5,9,5,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2397,4,3,5,10,5,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2398,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2399,4,3,5,6,5,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2400,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2401,4,3,5,8,5,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2402,4,3,5,9,5,0,0,0,-1,0,132604,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2403,4,3,5,10,5,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2404,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2405,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2406,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2407,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2408,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2409,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2410,4,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2411,15,5,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2412,15,0,0,0,40,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2413,15,0,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2414,15,5,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2415,15,0,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2417,4,3,5,5,32,0,0,0,-1,0,132747,10,0,100,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2418,4,3,5,7,32,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2419,4,3,5,6,32,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2420,4,3,5,8,32,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2421,4,3,5,9,32,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2422,4,3,5,10,32,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2423,4,3,5,5,45,0,0,0,-1,0,132748,10,0,100,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2424,4,3,5,6,45,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2425,4,3,5,7,45,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2426,4,3,5,8,45,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2427,4,3,5,9,45,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2428,4,3,5,10,45,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2429,4,1,7,5,32,0,0,0,-1,0,135018,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2431,4,1,7,7,32,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2432,4,1,7,8,32,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2434,4,1,7,10,32,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2435,4,1,7,5,45,0,0,0,-1,0,135021,7,0,70,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2437,4,1,7,7,45,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2438,4,1,7,8,45,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2440,4,1,7,10,45,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2441,4,6,1,14,17,4,0,0,-1,0,134956,9,0,70,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2442,4,6,1,14,22,4,0,0,-1,0,134956,9,0,80,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2443,4,6,1,14,32,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2444,4,6,1,14,45,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2445,4,6,1,14,17,4,0,0,-1,0,134949,9,0,70,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2446,4,6,1,14,22,4,0,0,-1,0,134952,9,0,80,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2447,7,9,7,0,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2448,4,6,1,14,32,4,0,0,-1,0,134949,9,0,85,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2449,7,9,2,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2450,7,9,2,0,0,0,0,0,-1,0,134412,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2451,4,6,1,14,45,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2452,7,9,2,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2453,7,9,7,0,0,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2454,0,2,3,0,1,0,0,0,-1,0,134836,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2455,0,1,3,0,5,0,0,0,-1,0,134850,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2456,0,1,3,0,5,0,0,0,-1,0,134713,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2457,0,2,3,0,2,0,0,0,-1,0,134871,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2458,0,2,3,0,2,0,0,0,-1,0,134822,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2459,0,1,3,0,5,0,0,0,-1,0,134875,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2460,0,2,3,0,5,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2461,0,1,3,0,10,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2462,0,1,3,0,1,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2463,4,2,8,5,32,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2464,4,2,8,6,32,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2465,4,2,8,7,32,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2466,12,0,0,0,0,0,0,0,-1,0,134232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2467,4,2,8,8,32,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2468,4,2,8,9,32,0,0,0,-1,0,132601,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2469,4,2,8,10,32,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2470,4,2,8,5,45,0,0,0,-1,0,132646,7,0,85,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2471,4,2,8,6,45,0,0,0,-1,0,132505,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2472,4,2,8,7,45,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2473,4,2,8,8,45,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2474,4,2,8,9,45,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2475,4,2,8,10,45,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2476,12,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2477,12,0,4,0,0,0,0,0,-1,0,133729,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2478,4,0,1,12,35,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2479,2,1,1,17,1,1,0,0,-1,0,132402,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +2480,2,5,2,17,1,1,0,0,-1,0,133481,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2481,2,7,1,21,1,3,0,0,-1,0,135274,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +2482,2,0,1,13,1,3,0,0,-1,0,135421,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2483,2,1,1,17,1,1,0,0,-1,0,135420,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2484,2,15,1,13,1,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2485,2,4,2,21,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +2486,2,5,2,17,1,1,0,0,-1,0,133046,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2487,2,10,2,17,1,2,0,0,-1,0,135151,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2488,2,7,1,13,4,3,0,0,-1,0,135321,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2489,2,8,1,17,2,1,0,0,-1,0,135312,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2490,2,0,1,13,4,3,0,0,-1,0,135421,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +2491,2,1,1,17,3,1,0,0,-1,0,132401,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +2492,2,4,2,13,2,3,0,0,-1,0,135434,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +2493,2,5,2,17,4,1,0,0,-1,0,133053,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,16,0,0,0,0 +2494,2,15,1,13,3,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +2495,2,10,2,17,3,2,0,0,-1,0,135145,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2496,2,7,1,21,3,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2497,2,8,1,17,4,1,0,0,-1,0,135276,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2498,2,0,1,13,3,3,0,0,-1,0,132410,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +2499,2,1,1,17,4,1,0,0,-1,0,135424,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +2500,2,4,2,21,2,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2501,2,5,2,17,4,1,0,0,-1,0,133052,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +2502,2,15,1,13,2,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2503,2,10,2,17,3,2,0,0,-1,0,135139,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +2504,2,2,2,15,1,0,0,0,-1,0,135493,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2505,2,2,2,15,1,0,0,0,-1,0,135490,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2506,2,2,2,15,3,0,0,0,-1,0,135499,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +2507,2,2,2,15,11,0,0,0,-1,0,135489,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +2508,2,3,1,26,1,0,0,0,-1,0,135610,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2509,2,3,1,26,4,0,0,0,-1,0,135611,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,15,0,0,0,0 +2510,2,3,1,26,1,0,0,0,-1,0,135616,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2511,2,3,1,26,9,0,0,0,-1,0,135613,8,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2512,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2513,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2514,6,2,2,24,3,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +2515,6,2,2,24,10,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0 +2516,6,3,2,24,1,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2517,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2518,6,3,2,24,3,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +2519,6,3,2,24,10,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0 +2520,2,7,1,21,31,3,0,0,-1,0,135275,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2521,2,8,1,17,31,1,0,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +2522,2,0,1,21,30,3,0,0,-1,0,135419,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +2523,2,1,1,17,30,1,0,0,-1,0,135576,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,102,0,0,0,0 +2524,2,4,2,21,29,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +2525,2,5,2,17,30,1,0,0,-1,0,133040,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +2526,2,15,1,13,29,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +2527,2,10,2,17,31,2,0,0,-1,0,135469,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +2528,2,7,1,21,41,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +2529,2,8,1,17,41,1,0,0,-1,0,135313,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +2530,2,0,1,21,41,3,0,0,-1,0,132392,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +2531,2,1,1,17,39,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,135,0,0,0,0 +2532,2,4,2,21,41,3,0,0,-1,0,133487,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +2533,2,5,2,17,40,1,0,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +2534,2,15,1,13,39,3,0,0,-1,0,135341,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,50,0,0,0,0 +2535,2,10,2,17,40,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +2536,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2545,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2546,4,3,5,6,6,0,0,0,-1,0,132498,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2547,4,3,5,10,0,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2548,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2549,2,10,2,17,22,2,0,0,-1,0,135162,13,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +2550,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2551,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2552,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +2553,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2554,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2555,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2556,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2557,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2558,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2559,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2560,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2561,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2562,4,0,0,23,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2563,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2564,4,2,8,10,45,0,0,0,-1,0,132941,7,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2565,4,0,1,23,30,7,0,0,-1,0,135124,8,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2566,4,1,7,20,22,0,0,0,-1,0,132643,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2567,2,15,1,13,18,3,0,0,-1,0,135651,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +2568,4,1,7,5,3,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2569,4,1,7,8,8,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2570,4,1,7,16,1,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2571,4,1,7,8,0,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2572,4,1,7,20,5,0,0,0,-1,0,132659,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2573,4,1,7,10,4,0,0,0,-1,0,132940,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2574,4,1,7,5,10,0,0,0,-1,0,135005,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2575,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2576,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2577,4,0,7,4,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2578,4,1,7,5,9,0,0,0,-1,0,132715,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2579,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2580,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2581,0,7,7,0,0,0,0,0,-1,0,133688,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2582,4,1,7,5,12,0,0,0,-1,0,132680,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2583,4,1,7,8,14,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2584,4,1,7,16,11,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2585,4,1,7,20,16,0,0,0,-1,0,132654,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2586,4,1,7,20,0,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2587,4,0,7,4,0,0,0,0,-1,0,135025,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2588,4,2,8,1,15,0,0,0,-1,0,133694,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2589,7,5,8,0,0,0,0,0,-1,0,132889,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2590,15,0,8,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2591,15,0,8,0,0,0,0,0,-1,0,133693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2592,7,5,8,0,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2593,0,5,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2594,0,5,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2595,0,5,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2596,0,5,0,0,0,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2598,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2599,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2600,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2601,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2602,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2604,7,11,3,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2605,7,11,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2606,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2607,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2608,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2609,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2610,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2611,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2612,4,1,7,20,3,0,0,0,-1,0,132674,7,0,45,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2613,4,1,7,20,8,0,0,0,-1,0,132665,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2614,4,1,7,20,12,0,0,0,-1,0,132679,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2615,4,1,7,20,24,0,0,0,-1,0,132679,7,0,70,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2616,4,1,7,20,18,0,0,0,-1,0,132645,7,0,65,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2617,4,1,7,20,32,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2618,4,1,7,20,45,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2619,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2620,4,1,7,1,34,0,0,0,-1,0,133756,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2621,4,1,7,1,31,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2622,4,1,7,1,32,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2623,4,1,7,1,36,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2624,4,1,7,1,37,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2625,12,0,0,0,0,0,0,0,-1,0,135896,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2628,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2629,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2632,2,15,1,13,9,3,5171,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +2633,0,1,7,0,22,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2634,12,0,7,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2635,4,3,5,6,3,0,0,0,-1,0,132495,10,0,20,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2636,12,0,0,0,0,0,0,0,-1,0,134230,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2637,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2638,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2639,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2640,12,0,1,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2642,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2643,4,3,5,9,5,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2644,4,1,7,16,1,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2645,4,3,5,10,2,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2646,4,3,5,7,3,0,0,0,-1,0,134583,10,0,45,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2647,4,3,5,3,4,0,0,0,-1,0,135038,10,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2648,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2649,4,3,5,6,1,0,0,0,-1,0,132495,10,0,16,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2650,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2651,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2652,4,1,7,16,1,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2653,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2654,4,3,5,7,1,0,0,0,-1,0,134583,10,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2655,4,3,5,3,1,0,0,0,-1,0,135038,10,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2656,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2657,1,0,8,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2658,12,0,0,0,0,0,0,0,-1,0,135235,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2659,12,0,0,0,0,0,0,0,-1,0,135237,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2660,12,0,0,0,0,0,0,0,-1,0,135236,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2661,12,0,0,0,0,0,0,0,-1,0,135238,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2662,11,2,8,18,50,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2663,11,3,8,18,50,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2664,2,15,1,13,13,3,0,0,-1,0,134298,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +2665,7,8,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2666,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2667,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2668,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2669,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2671,12,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2672,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2673,7,8,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2674,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2675,7,8,0,0,0,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2676,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2677,7,8,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2678,7,11,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2679,0,5,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2680,0,5,0,0,1,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2681,0,5,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2682,0,5,0,0,5,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2683,0,5,0,0,5,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2684,0,5,0,0,5,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2685,0,5,0,0,10,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2686,0,5,3,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2687,0,5,0,0,5,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2688,0,8,3,0,0,0,0,0,-1,0,133944,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2690,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2691,4,3,5,8,0,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2692,7,11,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2693,7,11,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2694,4,3,5,7,0,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2695,2,4,2,13,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2696,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2697,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2698,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2699,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2700,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2701,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2702,12,0,0,0,0,0,0,0,-1,0,133218,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2703,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2704,2,14,1,13,1,7,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2705,2,14,1,13,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2706,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2707,2,14,1,13,1,0,0,0,-1,0,133938,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2708,2,14,1,13,1,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2709,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2710,2,14,1,13,1,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2711,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +2712,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2713,12,0,0,0,0,0,0,0,-1,0,132183,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2714,2,14,1,13,1,7,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2715,2,14,1,13,1,7,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2716,2,14,1,13,1,7,0,0,-1,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2717,2,14,1,13,1,7,0,0,-1,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2718,2,14,1,13,1,7,0,0,-1,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2719,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2720,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2721,4,1,7,1,27,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2722,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2723,0,5,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2724,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2725,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2728,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2730,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2732,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2734,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2735,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2738,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2740,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2742,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2744,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2745,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2748,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2749,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2750,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2751,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2754,2,8,1,17,1,1,0,0,-1,0,135276,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +2755,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2756,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2757,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2758,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2759,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2760,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2763,2,15,1,13,9,3,0,0,-1,0,135637,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +2764,2,15,1,13,13,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2765,2,15,1,13,18,3,0,0,-1,0,135651,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2766,2,15,1,13,24,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,0,0,0 +2770,7,7,2,0,0,0,0,0,-1,0,134566,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2771,7,7,1,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2772,7,7,1,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2773,2,2,2,15,3,0,0,0,-1,0,135493,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2774,2,3,1,26,2,0,0,0,-1,0,135612,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +2775,7,7,1,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2776,7,7,2,0,0,0,0,0,-1,0,134571,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2777,2,2,2,15,8,0,0,0,-1,0,135493,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,0,0,0 +2778,2,3,1,26,8,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +2779,12,0,0,0,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2780,2,2,2,15,14,0,0,0,-1,0,135490,12,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +2781,2,3,1,26,13,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2782,2,2,2,15,19,0,0,0,-1,0,135491,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +2783,2,3,1,26,17,0,0,0,-1,0,135610,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +2784,12,0,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2785,2,2,2,15,23,0,0,0,-1,0,135493,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +2786,2,3,1,26,24,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +2787,2,15,1,13,1,3,0,0,-1,0,135644,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2788,12,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2789,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2790,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2791,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2792,13,1,4,0,1,0,0,0,-1,0,134065,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2793,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2794,12,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2795,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2797,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2798,12,0,1,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2799,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2800,4,1,7,20,21,0,0,0,-1,0,132689,7,0,75,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2801,2,8,1,17,59,1,0,0,-1,0,135280,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,152,0,0,0,0 +2802,4,0,0,12,38,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2803,4,0,0,12,35,0,0,0,-1,0,133435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2804,4,0,0,12,35,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2805,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2806,12,0,1,0,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2807,2,0,1,13,18,3,0,0,-1,0,132418,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2808,2,14,1,13,0,7,0,0,-1,0,135142,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +2809,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2810,2,4,2,13,1,3,0,0,-1,0,136040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2811,2,10,2,17,0,2,0,0,-1,0,135138,13,0,85,0,1,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +2812,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +2813,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2814,2,5,2,17,0,1,0,0,-1,0,133041,9,0,85,0,1,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,77,0,0,0,0 +2815,2,0,1,13,40,3,0,0,-1,0,132417,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +2816,2,4,2,21,27,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +2817,4,2,8,5,0,0,0,0,-1,0,135014,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2818,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2819,2,15,1,13,23,3,5216,0,-1,0,135641,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +2820,4,0,0,12,0,0,0,0,-1,0,134376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2821,2,4,2,13,13,3,0,0,-1,0,133052,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2822,2,8,1,17,13,1,0,0,-1,0,135355,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +2823,2,1,1,17,14,1,0,0,-1,0,132397,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,48,0,0,0,0 +2824,2,2,2,15,48,0,0,0,-1,0,135500,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +2825,2,2,2,15,37,0,0,0,-1,0,135497,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +2826,4,0,0,12,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2827,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2828,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2829,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2830,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2831,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2832,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2833,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2834,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2835,7,7,0,0,0,0,0,0,-1,0,135232,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2836,7,7,0,0,0,0,0,0,-1,0,135235,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2837,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2838,7,7,0,0,0,0,0,0,-1,0,135238,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2839,12,0,0,0,4,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2840,7,7,2,0,0,0,0,0,-1,0,133216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2841,7,7,2,0,0,0,0,0,-1,0,133227,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2842,7,7,2,0,0,0,0,0,-1,0,133215,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2843,12,0,0,0,0,0,0,0,-1,0,133727,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2844,2,4,2,21,4,3,0,0,-1,0,133476,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +2845,2,0,1,21,4,3,0,0,-1,0,132417,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +2846,12,0,0,0,0,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2847,2,7,1,21,4,3,0,0,-1,0,135327,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +2848,2,4,2,21,17,3,0,0,-1,0,133483,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +2849,2,0,1,21,18,3,0,0,-1,0,132408,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +2850,2,7,1,21,19,3,0,0,-1,0,135274,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +2851,4,3,5,6,6,0,0,0,-1,0,132491,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2852,4,3,5,7,4,0,0,0,-1,0,134583,10,0,45,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2853,4,3,5,9,2,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2854,4,3,5,9,14,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2855,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2856,12,0,1,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2857,4,3,5,6,13,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2858,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2859,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2862,0,8,0,0,1,0,0,0,-1,0,135248,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2863,0,8,0,0,5,0,0,0,-1,0,135249,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2864,4,3,5,5,13,0,0,0,-1,0,132738,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2865,4,3,5,7,16,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2866,4,3,5,5,18,0,0,0,-1,0,132630,10,0,90,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2867,4,3,5,9,18,0,0,0,-1,0,132604,10,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2868,4,3,5,9,20,0,0,0,-1,0,132606,10,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2869,4,3,5,5,21,0,0,0,-1,0,132631,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2870,4,3,5,5,24,0,0,0,-1,0,132750,10,0,120,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2871,0,8,0,0,15,0,0,0,-1,0,135250,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2872,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2874,12,0,0,0,16,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2875,12,0,0,0,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2876,12,0,8,0,0,0,0,0,-1,0,134355,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2877,2,8,1,17,28,1,0,0,-1,0,135324,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +2878,2,0,1,13,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +2879,4,0,1,23,17,7,0,0,-1,0,135466,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2880,7,11,7,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2881,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2882,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2883,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2884,2,4,2,13,1,7,0,0,-1,0,133714,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2885,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2886,7,8,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2887,15,0,8,0,0,0,0,0,-1,0,134369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2888,0,5,0,0,1,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2889,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2890,15,0,8,0,0,0,0,0,-1,0,134363,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2891,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2892,0,8,3,0,30,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2893,0,8,3,0,38,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2894,0,5,0,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2895,15,1,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2896,15,1,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2898,4,3,5,5,2,0,0,0,-1,0,132624,10,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2899,4,2,8,6,10,0,0,0,-1,0,132490,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2900,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2901,2,14,1,21,1,0,0,0,-1,0,134708,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +2902,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2903,2,2,2,15,0,0,0,0,-1,0,135490,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +2904,2,3,1,26,0,0,0,0,-1,0,135612,8,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +2905,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2906,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2907,2,1,1,17,0,1,0,0,-1,0,135419,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +2908,2,15,1,13,0,3,0,0,-1,0,135651,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +2909,12,0,0,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2910,4,3,5,8,0,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2911,4,1,7,6,18,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2912,2,15,1,13,27,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +2913,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2915,2,5,2,17,47,1,0,0,-1,0,133039,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +2916,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2917,4,0,0,11,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2918,4,3,5,1,0,0,0,0,-1,0,133070,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2919,4,0,2,12,25,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2920,4,0,2,12,5,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2921,4,0,2,12,10,0,0,0,-1,0,134414,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2922,4,0,2,12,15,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2923,4,0,2,12,20,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2924,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2925,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2926,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2927,15,1,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2928,15,1,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2929,7,11,7,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2930,15,1,7,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2931,15,1,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2932,7,11,7,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2933,4,0,0,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2934,7,6,8,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2939,12,0,0,0,0,0,0,0,-1,0,133884,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2940,15,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2941,2,15,1,13,21,3,0,0,-1,0,135654,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +2942,2,13,1,13,21,7,0,0,-1,0,132938,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +2943,4,0,3,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2944,4,0,3,23,26,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2945,12,0,1,0,0,0,0,0,-1,0,135426,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +2946,15,0,1,0,3,0,0,0,-1,0,135641,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2947,15,0,1,0,1,0,0,0,-1,0,135426,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2948,4,0,4,12,0,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2949,4,2,8,8,0,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2950,2,10,2,17,0,2,0,0,-1,0,135152,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,77,0,0,0,0 +2951,4,0,0,11,31,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2953,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2954,4,1,7,7,0,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2955,4,1,7,1,35,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2956,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2957,4,1,7,5,6,0,0,0,-1,0,132647,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2958,4,1,7,7,5,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2959,4,1,7,8,4,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2960,4,1,7,10,4,0,0,0,-1,0,132955,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2961,4,2,8,5,6,0,0,0,-1,0,135013,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2962,4,2,8,7,5,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2963,4,2,8,8,4,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2964,4,2,8,10,5,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2965,4,3,5,5,6,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2966,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2967,4,3,5,8,5,0,0,0,-1,0,132589,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2968,4,3,5,10,4,0,0,0,-1,0,132962,10,0,20,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2969,4,1,7,5,12,0,0,0,-1,0,132647,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2970,4,1,7,7,11,0,0,0,-1,0,134590,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2971,4,1,7,8,9,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2972,4,1,7,10,9,0,0,0,-1,0,132955,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2973,4,2,8,5,12,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2974,4,2,8,7,11,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2975,4,2,8,8,9,0,0,0,-1,0,132592,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2976,4,2,8,10,10,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2977,4,3,5,5,11,0,0,0,-1,0,132631,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2978,4,3,5,7,10,0,0,0,-1,0,134589,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2979,4,3,5,8,9,0,0,0,-1,0,132543,10,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2980,4,3,5,10,10,0,0,0,-1,0,132939,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2981,4,1,7,20,16,0,0,0,-1,0,132649,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2982,4,1,7,7,15,0,0,0,-1,0,134581,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2983,4,1,7,8,12,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2984,4,1,7,10,13,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2985,4,2,8,5,16,0,0,0,-1,0,132724,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2986,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2987,4,2,8,8,13,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2988,4,2,8,10,14,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2989,4,3,5,5,16,0,0,0,-1,0,132628,10,0,85,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2990,4,3,5,7,16,0,0,0,-1,0,134582,10,0,65,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2991,4,3,5,8,16,0,0,0,-1,0,132588,10,0,40,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2992,4,3,5,10,15,0,0,0,-1,0,132944,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2993,4,2,8,1,15,0,0,0,-1,0,133071,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2994,4,1,7,1,18,0,0,0,-1,0,134442,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2995,4,3,5,1,18,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2996,7,5,7,0,0,0,0,0,-1,0,132890,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2997,7,5,8,0,0,0,0,0,-1,0,132913,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2998,12,0,0,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2999,12,0,0,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3000,4,2,8,5,5,0,0,0,-1,0,132724,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3001,4,0,2,12,15,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3002,4,0,2,12,25,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3003,4,0,2,12,5,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3004,4,0,2,12,10,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3005,4,0,2,12,15,0,0,0,-1,0,133435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3006,4,0,2,12,20,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3007,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3008,4,1,7,16,4,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3010,15,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3011,4,2,8,1,31,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3012,0,4,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3013,0,4,0,0,1,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3014,12,0,0,0,0,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3015,4,0,0,12,35,0,0,0,-1,0,135242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3016,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3017,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3018,4,1,7,16,18,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3019,4,1,7,20,13,0,0,0,-1,0,132679,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3020,4,2,8,1,28,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3021,2,2,2,15,20,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +3022,4,2,8,7,18,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3023,2,3,1,26,16,0,0,0,-1,0,135612,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +3024,2,3,1,26,21,0,0,0,-1,0,135612,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +3025,2,3,1,26,31,0,0,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +3026,2,2,2,15,16,0,0,0,-1,0,135490,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +3027,2,2,2,15,20,0,0,0,-1,0,135489,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +3028,2,2,2,15,29,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +3029,6,2,2,24,15,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +3030,6,2,2,24,25,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +3031,6,2,2,24,30,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +3032,6,3,2,24,15,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +3033,6,3,2,24,25,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +3034,6,3,2,24,30,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +3035,12,0,0,0,0,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3036,2,2,2,15,10,0,0,0,-1,0,135500,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +3037,2,2,2,15,29,0,0,0,-1,0,135500,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +3039,2,2,2,15,18,0,0,0,-1,0,135491,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +3040,2,3,1,26,14,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3041,2,3,1,26,26,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +3042,2,3,1,26,28,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +3044,2,4,2,22,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3045,4,3,5,8,22,0,0,0,-1,0,132588,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3046,4,3,5,1,21,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3047,4,3,5,10,22,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3048,4,3,5,7,21,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3049,4,3,5,5,22,0,0,0,-1,0,132628,10,0,95,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3050,4,3,5,7,23,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3051,4,3,5,10,20,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3052,4,3,5,1,21,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3053,4,3,5,5,23,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3054,4,3,5,8,19,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3055,4,2,8,5,21,0,0,0,-1,0,132723,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3056,4,2,8,7,21,0,0,0,-1,0,134587,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3057,4,2,8,8,19,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3058,4,2,8,10,20,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3059,4,2,8,1,21,0,0,0,-1,0,133071,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3060,4,2,8,8,22,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3061,4,2,8,5,23,0,0,0,-1,0,132715,7,0,85,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3062,4,2,8,10,20,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3063,4,2,8,1,22,0,0,0,-1,0,133071,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3064,4,2,8,7,20,0,0,0,-1,0,134582,7,0,60,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3065,4,1,7,8,18,0,0,0,-1,0,132541,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3066,4,1,7,10,19,0,0,0,-1,0,132957,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3067,4,1,7,7,21,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3068,4,1,7,1,27,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3069,4,1,7,20,22,0,0,0,-1,0,132667,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3070,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3071,2,0,1,21,0,3,0,0,-1,0,132402,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +3072,4,1,7,20,21,0,0,0,-1,0,132659,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3073,4,1,7,7,21,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3074,4,1,7,10,19,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3075,4,1,7,1,49,0,0,0,-1,0,133146,7,0,60,0,0,0,0,0,0,79,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3076,4,1,7,8,18,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3077,4,1,7,1,21,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3078,2,2,2,15,21,0,0,0,-1,0,135492,12,0,70,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +3079,2,3,1,26,0,0,0,0,-1,0,135610,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +3080,12,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3081,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3082,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3083,12,0,0,0,0,0,0,0,-1,0,134064,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3084,12,0,0,0,0,0,0,0,-1,0,134063,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3085,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3086,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3087,0,1,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3088,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3089,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3090,9,0,0,0,4,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3091,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3092,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3093,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3094,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3095,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3096,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3097,9,0,0,0,10,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3098,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3099,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3100,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3101,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3102,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3103,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,27,0,0,0,0 +3107,15,0,1,0,11,0,0,0,-1,0,135425,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3108,15,0,1,0,22,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3109,12,0,1,0,0,0,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3110,12,0,0,0,0,0,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3111,15,0,1,0,1,0,0,0,-1,0,132410,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3113,9,0,0,0,6,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3114,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3115,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3116,9,0,0,0,12,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3117,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3118,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3119,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3120,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3121,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3122,9,0,0,0,18,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3123,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3124,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3125,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3126,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3127,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3128,12,0,1,0,0,0,0,0,-1,0,132392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3129,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3130,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3131,15,0,1,0,3,0,0,0,-1,0,135421,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3132,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3133,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3134,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3135,15,0,1,0,11,0,0,0,-1,0,135419,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3136,12,0,1,0,0,0,0,0,-1,0,132393,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +3137,15,0,1,0,22,0,0,0,-1,0,135423,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3138,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3139,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3140,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3141,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3142,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3143,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3144,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3145,2,15,1,13,1,3,0,0,-1,0,133980,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3146,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3147,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3148,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3149,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3150,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3151,4,3,5,5,0,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3152,4,2,8,10,0,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3153,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3154,2,0,1,13,0,3,0,0,-1,0,132402,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3155,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3156,12,0,0,0,0,0,0,0,-1,0,132604,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3157,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3158,4,2,8,9,0,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3159,4,3,5,3,0,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3160,4,6,1,14,0,4,0,0,-1,0,134956,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3161,4,1,7,20,0,0,0,0,-1,0,132662,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3162,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3163,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3164,7,11,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3165,12,0,0,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3166,4,3,5,5,0,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3167,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3168,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3169,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3170,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3171,15,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3172,7,8,0,0,0,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3173,7,8,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3174,7,8,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3175,15,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3176,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3177,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3179,15,0,0,0,0,0,0,0,-1,0,134306,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3180,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3181,15,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3182,7,5,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3183,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3184,2,15,1,13,15,3,5189,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3185,2,10,2,17,29,2,5239,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +3186,2,7,1,21,25,3,5213,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +3187,2,15,1,13,39,3,5261,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +3188,2,8,1,17,10,1,0,0,-1,0,135348,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +3189,2,1,1,17,3,1,0,0,-1,0,132402,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,17,0,0,0,0 +3190,2,5,2,17,3,1,0,0,-1,0,133477,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,14,0,0,0,0 +3191,2,1,1,17,20,1,0,0,-1,0,132397,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +3192,2,8,1,17,7,1,5173,0,-1,0,135350,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +3193,2,5,2,17,16,1,5193,0,-1,0,133052,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +3194,2,5,2,17,16,1,0,0,-1,0,133476,9,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,48,1,0,0,0,73,6,0,0,0 +3195,2,1,1,17,13,1,5183,0,-1,0,132401,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +3196,2,8,1,17,13,1,5182,0,-1,0,135324,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +3197,2,8,1,17,30,1,5236,0,-1,0,135357,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +3198,2,5,2,17,18,1,5202,0,-1,0,133053,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,57,0,0,0,0 +3199,2,1,1,17,17,1,5201,0,-1,0,135424,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +3200,4,2,8,9,3,0,0,0,-1,0,132609,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3201,2,1,1,17,23,1,5219,0,-1,0,132408,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +3202,4,2,8,9,19,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3203,2,5,2,17,23,1,0,0,-1,0,133488,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +3204,4,2,8,9,21,0,0,0,-1,0,132605,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3205,4,2,8,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3206,2,8,1,17,23,1,5218,0,-1,0,135321,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +3207,4,2,8,9,9,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3208,2,5,2,17,43,1,5274,0,-1,0,133479,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +3209,2,8,1,17,0,1,0,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +3210,2,1,1,17,25,1,5219,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,88,0,0,0,0 +3211,4,3,5,9,14,0,0,0,-1,0,132600,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3212,4,3,5,9,21,0,0,0,-1,0,132600,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3213,4,3,5,9,8,0,0,0,-1,0,132604,10,0,20,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3214,4,3,5,9,4,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3215,4,3,5,9,20,0,0,0,-1,0,132602,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3216,4,1,7,20,0,0,0,0,-1,0,132682,7,0,45,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3217,4,1,7,6,0,0,0,0,-1,0,132512,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3218,12,0,0,0,0,0,0,0,-1,0,132602,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3219,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3220,0,5,0,0,5,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3221,4,1,7,3,0,0,0,0,-1,0,135040,7,0,30,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3222,2,15,1,13,14,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +3223,2,4,2,13,6,3,0,0,-1,0,133482,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +3224,4,1,7,9,5,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3225,2,15,1,13,4,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +3226,4,3,5,3,7,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3227,2,10,2,17,18,2,0,0,-1,0,135149,13,0,70,0,0,0,0,0,0,0,0,0,0,0,7,0,32,0,0,0,0,49,0,0,0,0 +3228,4,3,5,9,21,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3229,4,1,7,6,18,0,0,0,-1,0,132496,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3230,4,2,8,9,20,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3231,4,3,5,3,20,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3232,4,3,5,7,28,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3233,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3234,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3235,4,0,0,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3236,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3237,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3238,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3239,0,8,0,0,1,0,0,0,-1,0,135255,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3240,0,8,0,0,5,0,0,0,-1,0,135256,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3241,0,8,0,0,15,0,0,0,-1,0,135257,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3242,4,4,6,5,1,0,0,0,-1,0,132736,11,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3243,4,4,6,7,1,0,0,0,-1,0,134584,11,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3244,4,4,6,8,1,0,0,0,-1,0,132535,11,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3245,4,4,6,10,1,0,0,0,-1,0,132938,11,0,18,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3246,4,4,6,3,1,0,0,0,-1,0,135033,11,0,30,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3247,4,3,5,6,1,0,0,0,-1,0,132490,10,0,16,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3248,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3249,15,0,0,0,0,0,0,0,-1,0,133215,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3250,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3251,12,0,0,0,0,1,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3252,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3253,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3254,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3255,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3256,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3257,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3258,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3259,15,0,8,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3260,4,1,7,20,1,0,0,0,-1,0,132659,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3261,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3262,2,4,2,21,1,3,0,0,-1,0,133052,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3263,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3264,12,0,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3265,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3266,12,0,0,0,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3267,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +3268,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +3269,2,4,2,21,0,3,0,0,-1,0,133053,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +3270,4,1,7,5,0,0,0,0,-1,0,135009,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3271,4,1,7,3,0,0,0,0,-1,0,135040,7,0,20,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3272,4,2,8,7,0,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3273,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3274,4,1,7,8,0,0,0,0,-1,0,132538,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3275,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3276,4,6,1,14,0,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3277,2,10,2,17,0,2,0,0,-1,0,135150,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +3278,2,7,1,21,25,3,0,0,-1,0,135274,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3279,4,3,5,8,7,0,0,0,-1,0,132539,10,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3280,4,3,5,9,4,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3281,4,3,5,10,6,0,0,0,-1,0,132963,10,0,20,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3282,4,3,5,7,7,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3283,4,3,5,5,8,0,0,0,-1,0,132719,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3284,4,2,8,8,7,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3285,4,2,8,9,5,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3286,4,2,8,10,7,0,0,0,-1,0,132953,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3287,4,2,8,7,7,0,0,0,-1,0,134586,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3288,4,2,8,5,8,0,0,0,-1,0,132657,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3289,4,1,7,8,6,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3290,4,1,7,10,7,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3291,4,1,7,7,8,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3292,4,1,7,5,8,0,0,0,-1,0,135011,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3293,2,0,1,21,1,3,0,0,-1,0,132417,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0 +3294,2,4,2,21,1,3,0,0,-1,0,133485,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3295,2,7,1,21,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +3296,2,15,1,13,1,3,0,0,-1,0,135641,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3297,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3298,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3299,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3300,15,0,0,0,0,0,0,0,-1,0,132936,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3301,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3302,4,3,5,8,10,0,0,0,-1,0,132537,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3303,4,3,5,9,7,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3304,4,3,5,10,9,0,0,0,-1,0,132959,10,0,20,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3305,4,3,5,7,11,0,0,0,-1,0,134583,10,0,55,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3306,4,3,5,5,13,0,0,0,-1,0,132647,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3307,4,1,7,8,10,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3308,4,1,7,10,10,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3309,4,1,7,7,11,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3310,4,1,7,5,13,0,0,0,-1,0,135011,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3311,4,2,8,8,10,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3312,4,2,8,9,8,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3313,4,2,8,5,13,0,0,0,-1,0,132719,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3314,4,2,8,10,10,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3315,4,2,8,7,12,0,0,0,-1,0,134706,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3316,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3317,12,0,0,0,12,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3318,12,0,0,0,0,0,0,0,-1,0,133640,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3319,2,7,1,21,4,3,0,0,-1,0,135325,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3320,4,1,7,6,4,0,0,0,-1,0,133693,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3321,4,2,8,8,4,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3322,4,1,7,16,1,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3323,4,1,7,9,3,0,0,0,-1,0,132606,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3324,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3325,2,1,1,17,4,1,0,0,-1,0,132415,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +3326,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3327,2,10,2,17,4,2,0,0,-1,0,135158,13,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,18,0,0,0,0 +3328,4,1,7,20,4,0,0,0,-1,0,132675,7,0,45,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3329,2,4,2,21,6,3,0,0,-1,0,133485,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +3330,4,3,5,5,8,0,0,0,-1,0,132624,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3331,4,1,7,16,7,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3332,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3333,4,3,5,3,6,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3334,2,5,2,17,2,1,0,0,-1,0,134435,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,17,0,0,0,0 +3335,2,10,2,17,3,2,0,0,-1,0,135145,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,14,0,0,0,0 +3336,2,15,1,13,24,3,0,0,-1,0,135646,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +3337,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3338,12,0,0,0,0,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3339,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3340,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3341,4,3,5,10,27,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3342,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3343,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3344,4,1,7,6,0,0,0,0,-1,0,133694,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3345,4,1,7,1,32,0,0,0,-1,0,133117,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3346,2,6,1,17,1,2,0,0,-1,0,134435,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3347,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3348,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3349,12,0,0,0,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3350,2,4,2,13,1,3,0,0,-1,0,0,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3351,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3352,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3353,12,0,0,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3354,12,0,0,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3355,7,9,7,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3356,7,9,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3357,7,9,7,0,0,0,0,0,-1,0,134413,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3358,7,9,2,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3360,4,0,0,23,25,3,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3361,2,4,2,13,1,3,0,0,-1,0,133490,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3362,2,14,2,13,1,2,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3363,4,1,7,6,1,0,0,0,-1,0,132493,7,0,12,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3364,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3365,4,1,7,9,1,0,0,0,-1,0,132609,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3366,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3367,2,6,1,17,1,2,0,0,-1,0,135127,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3368,2,14,2,13,1,2,0,0,-1,0,135129,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3369,7,9,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3370,4,1,7,6,3,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3371,7,11,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3372,7,11,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3373,4,1,7,9,4,0,0,0,-1,0,132606,7,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3374,4,1,7,6,9,0,0,0,-1,0,132495,7,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3375,4,1,7,9,7,0,0,0,-1,0,132612,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3376,4,1,7,6,13,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3377,4,1,7,9,14,0,0,0,-1,0,132612,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3378,4,1,7,6,16,0,0,0,-1,0,132492,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3379,4,1,7,9,17,0,0,0,-1,0,132602,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3380,4,1,7,6,25,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3381,4,1,7,9,23,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3382,0,1,3,0,1,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3383,0,2,3,0,10,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3384,0,1,3,0,12,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3385,0,1,3,0,14,0,0,0,-1,0,134851,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3386,0,2,3,0,14,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3387,0,1,3,0,45,0,0,0,-1,0,134842,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3388,0,1,3,0,15,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3389,0,2,3,0,16,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3390,0,2,3,0,18,0,0,0,-1,0,134872,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3391,0,2,3,0,20,0,0,0,-1,0,134837,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3392,4,2,8,1,25,0,0,0,-1,0,133077,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3393,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3394,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3395,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3396,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3397,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3399,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3400,2,7,1,13,0,3,0,0,-1,0,135321,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +3401,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3402,15,0,0,0,0,0,0,0,-1,0,134360,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3403,15,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3404,7,8,0,0,0,0,0,0,-1,0,134304,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3405,12,0,0,0,0,0,0,0,-1,0,134334,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3406,12,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3407,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3408,12,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3409,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3410,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3411,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3412,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3413,2,15,1,13,20,3,0,0,-1,0,135330,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3414,2,4,2,13,22,3,0,0,-1,0,133483,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +3415,2,10,2,17,19,2,0,0,-1,0,135169,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +3416,4,3,5,5,21,0,0,0,-1,0,132624,10,0,110,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3417,2,8,1,17,21,1,0,0,-1,0,135311,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +3418,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3419,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3420,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3421,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3422,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3423,4,0,0,23,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3424,4,0,0,23,0,0,0,0,-1,0,133436,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3425,12,0,0,0,0,0,0,0,-1,0,135463,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3426,4,0,7,4,0,0,0,0,-1,0,135031,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3427,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3428,4,0,7,4,0,0,0,0,-1,0,135025,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3429,4,2,8,6,19,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3430,2,3,1,26,39,0,5852,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,85,0,0,0,0 +3431,4,2,8,5,0,0,0,0,-1,0,132717,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3432,2,6,1,17,1,2,0,0,-1,0,135128,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3433,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3434,0,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3435,4,2,8,9,0,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3436,4,1,7,3,0,0,0,0,-1,0,135037,7,0,25,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3437,4,3,5,6,0,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3438,0,0,0,0,0,0,0,0,-1,0,133439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3439,4,2,8,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3440,2,5,2,17,0,1,0,0,-1,0,133479,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3441,0,8,2,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3442,4,1,7,6,0,0,0,0,-1,0,133693,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3443,2,0,1,21,0,3,0,0,-1,0,135421,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3444,4,2,8,5,0,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3445,2,15,1,13,0,3,0,0,-1,0,135646,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +3446,2,10,2,17,0,2,0,0,-1,0,135153,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3447,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3448,0,5,0,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3449,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3450,4,6,1,14,0,4,0,0,-1,0,134950,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3451,4,0,0,23,0,7,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3452,2,10,2,17,0,2,0,0,-1,0,135144,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +3453,4,1,7,9,0,0,0,0,-1,0,132610,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3454,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3455,2,7,1,13,0,3,0,0,-1,0,135313,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +3456,0,0,0,0,25,0,0,0,-1,0,132161,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3457,4,1,7,7,0,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3458,4,3,5,10,0,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3459,4,2,8,3,0,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3460,12,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3461,4,1,7,20,0,0,0,0,-1,0,132659,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3462,2,7,1,13,0,3,0,0,-1,0,135302,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +3463,15,0,1,0,0,0,0,0,-1,0,132330,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3464,6,2,2,24,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +3465,6,3,2,24,0,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,10,0,0,0,0 +3466,7,11,7,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3467,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3468,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3469,4,3,5,8,4,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3470,7,7,0,0,0,0,0,0,-1,0,135243,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3471,4,3,5,5,5,0,0,0,-1,0,132624,10,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3472,4,3,5,10,7,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3473,4,3,5,7,8,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3474,4,3,5,10,10,0,749,0,-1,0,132939,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3475,4,1,7,16,60,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,57,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3476,12,0,0,0,0,0,0,0,-1,0,132121,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3477,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3478,7,7,0,0,0,0,0,0,-1,0,135244,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3480,4,3,5,3,17,0,0,0,-1,0,135036,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3481,4,3,5,3,20,0,0,0,-1,0,135040,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3482,4,3,5,8,21,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3483,4,3,5,10,22,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3484,4,3,5,8,24,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3485,4,3,5,10,25,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3486,7,7,0,0,0,0,0,0,-1,0,135245,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3487,2,8,1,17,14,1,0,0,-1,0,135312,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,41,0,0,0,0 +3488,2,1,1,17,8,1,0,0,-1,0,135420,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +3489,2,0,1,21,12,3,0,0,-1,0,135419,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +3490,2,15,1,13,20,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +3491,2,4,2,21,20,3,0,0,-1,0,133483,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +3492,2,4,2,21,25,3,0,0,-1,0,133041,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +3493,2,2,2,15,0,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +3494,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +3495,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3496,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3497,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3498,12,0,0,0,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3499,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3500,15,0,0,0,0,0,0,0,-1,0,133343,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3501,15,0,0,0,0,0,0,0,-1,0,134064,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3502,12,0,0,0,0,0,0,0,-1,0,134531,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3503,15,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3504,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3505,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3506,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3507,0,8,0,0,6,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3508,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3509,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3510,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3511,4,1,7,16,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3513,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3514,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3515,12,0,0,0,0,0,0,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3516,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3517,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3518,12,0,7,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3519,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3520,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3521,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3522,4,3,5,5,1,0,0,0,-1,0,132715,10,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3523,4,3,5,7,1,0,0,0,-1,0,134582,10,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3524,4,3,5,8,1,0,0,0,-1,0,132542,10,0,20,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3525,4,3,5,9,1,0,0,0,-1,0,132603,10,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3526,4,3,5,10,1,0,0,0,-1,0,132939,10,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3527,4,3,5,5,1,0,0,0,-1,0,132715,10,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3528,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3529,4,3,5,1,1,0,0,0,-1,0,133072,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3530,0,7,7,0,0,0,0,0,-1,0,133684,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3531,0,7,7,0,0,0,0,0,-1,0,133687,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3532,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3533,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3534,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3535,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3536,4,3,5,1,1,0,0,0,-1,0,133072,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3537,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3538,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3539,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3540,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3541,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3542,4,2,8,8,1,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3543,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3544,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3545,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3546,4,2,8,9,1,0,0,0,-1,0,132603,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3547,4,2,8,5,1,0,0,0,-1,0,132715,7,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3548,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3549,4,2,8,10,1,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3550,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3551,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3552,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3553,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3554,12,0,0,0,0,0,0,0,-1,0,132768,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3555,4,1,7,20,0,0,0,0,-1,0,132681,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3556,4,1,7,1,0,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3557,4,0,7,19,1,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3558,4,1,7,20,0,0,0,0,-1,0,132655,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3559,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3560,4,1,7,3,0,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3561,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3562,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3563,4,1,7,7,15,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3564,12,0,0,0,0,0,0,0,-1,0,132761,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3565,4,1,7,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3566,4,2,8,5,0,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3567,2,3,1,26,0,0,0,0,-1,0,135610,8,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +3568,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3569,4,1,7,20,21,0,0,0,-1,0,132683,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3570,2,4,2,13,0,3,0,0,-1,0,133481,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +3571,2,5,2,17,16,1,0,0,-1,0,133052,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,60,0,0,0,0 +3572,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +3573,11,2,0,18,0,0,0,0,-1,0,134403,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3574,11,3,0,18,0,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3575,7,7,2,0,0,0,0,0,-1,0,133232,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3576,7,7,6,0,0,0,0,0,-1,0,133219,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3577,7,7,4,0,0,0,0,0,-1,0,133217,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3578,4,2,8,7,0,0,0,0,-1,0,134585,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3580,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3581,2,15,1,13,0,3,0,0,-1,0,135637,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +3582,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3583,4,2,8,6,0,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3584,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3585,4,2,8,5,0,0,0,0,-1,0,132723,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3586,2,1,1,17,0,1,0,0,-1,0,132402,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +3587,4,1,7,6,45,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3588,4,1,7,9,45,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3589,4,1,7,6,12,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3590,4,1,7,9,12,0,0,0,-1,0,132605,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3591,4,1,7,6,22,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3592,4,1,7,9,22,0,0,0,-1,0,132610,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3593,4,1,7,6,32,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3594,4,1,7,9,32,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3595,4,1,7,6,1,0,0,0,-1,0,132513,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3596,4,1,7,9,1,0,0,0,-1,0,132606,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3597,4,1,7,6,17,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3598,4,1,7,9,17,0,0,0,-1,0,132610,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3599,4,1,7,6,1,0,0,0,-1,0,132495,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3600,4,1,7,9,1,0,0,0,-1,0,132602,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3601,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3602,4,1,7,6,5,0,0,0,-1,0,132495,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3603,4,1,7,9,5,0,0,0,-1,0,132602,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3604,11,3,8,18,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3605,11,2,8,18,0,0,0,0,-1,0,134404,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3606,4,1,7,6,5,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3607,4,1,7,9,5,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3608,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3609,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3610,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3611,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3612,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3613,12,0,0,0,0,0,0,0,-1,0,132943,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3614,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3615,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3616,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3617,12,0,0,0,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3618,12,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3619,12,0,0,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3620,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3621,12,0,0,0,0,0,0,0,-1,0,133731,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3622,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3623,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3624,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3625,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3626,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3627,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3628,12,0,0,0,0,0,0,0,-1,0,132943,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3629,12,0,0,0,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3630,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3631,12,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3632,12,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3633,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3634,12,0,0,0,0,0,0,0,-1,0,133730,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3635,12,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3636,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3637,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3638,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3639,12,0,0,0,0,0,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3640,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3641,4,1,7,9,3,0,0,0,-1,0,132602,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3642,4,1,7,9,4,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3643,4,1,7,9,9,0,0,0,-1,0,132605,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3644,4,1,7,9,7,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3645,4,1,7,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3646,4,1,7,9,21,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3647,4,1,7,9,18,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3648,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3649,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3650,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3651,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3652,4,6,1,14,9,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3653,4,6,1,14,10,4,0,0,-1,0,134955,9,0,55,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3654,4,6,1,14,9,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3655,4,6,1,14,16,4,0,0,-1,0,134949,9,0,65,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3656,4,6,1,14,22,4,0,0,-1,0,134949,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3657,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3658,12,0,2,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3659,12,0,2,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3660,12,0,2,0,0,0,0,0,-1,0,132761,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3661,2,10,2,17,1,2,0,0,-1,0,135158,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +3662,0,5,0,0,5,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3663,0,5,0,0,15,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3664,0,5,0,0,15,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3665,0,5,0,0,15,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3666,0,5,0,0,15,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3667,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3668,12,0,2,0,30,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3669,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3670,15,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3671,15,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3672,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3673,15,0,0,0,0,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3674,15,0,0,0,0,0,0,0,-1,0,132535,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3675,15,0,0,23,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3676,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3677,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3678,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3679,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3680,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3681,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3682,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3683,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3684,12,0,0,0,0,0,0,0,-1,0,132767,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3685,7,8,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3686,12,0,0,0,0,0,0,0,-1,0,132381,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3687,2,8,1,17,35,1,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +3688,12,0,0,0,0,0,0,0,-1,0,134086,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3689,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3690,12,0,0,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3691,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3692,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3693,12,0,0,0,0,0,0,0,-1,0,135276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3694,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3695,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3696,2,14,2,13,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3697,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3698,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3699,2,14,2,13,1,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3701,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3702,15,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3703,0,5,0,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3704,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3705,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3706,12,0,2,0,30,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3707,12,0,2,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3708,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3710,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3711,12,0,2,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3712,7,8,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3713,7,11,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3714,12,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3715,12,0,0,0,0,0,0,0,-1,0,132612,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3716,12,0,0,0,0,0,0,0,-1,0,134169,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3717,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3718,12,0,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3719,4,1,7,16,25,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3720,12,0,0,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3721,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3722,15,0,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3723,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3724,15,0,8,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3725,15,0,8,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3726,0,5,0,0,15,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3727,0,5,0,0,15,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3728,0,5,0,0,20,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3729,0,5,0,0,25,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3730,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3731,7,8,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3732,4,1,7,1,0,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3733,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3734,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3735,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3736,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3737,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3738,2,10,2,17,0,2,0,0,-1,0,135466,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +3739,4,0,0,11,0,0,0,0,-1,0,132501,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3740,2,7,1,21,19,3,5195,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +3741,4,2,8,8,0,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3742,2,2,2,15,0,0,0,0,-1,0,135490,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +3743,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3744,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3745,12,0,0,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3746,15,0,0,0,25,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3747,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3748,4,1,7,3,23,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3749,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3750,4,2,8,5,0,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3751,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3752,4,1,7,5,0,0,0,0,-1,0,135011,7,0,60,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3753,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3754,4,2,8,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3755,2,0,1,13,0,3,0,0,-1,0,132416,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +3756,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3757,4,0,2,23,1,7,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3758,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3759,4,1,7,10,0,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3760,4,0,1,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3761,4,6,1,14,0,4,0,0,-1,0,134947,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3762,1,0,7,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3763,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3764,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3765,4,3,5,3,0,0,0,0,-1,0,135034,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3766,15,0,0,0,0,0,0,0,-1,0,132921,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3767,15,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3768,0,8,0,0,18,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3769,15,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3770,0,5,0,0,15,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3771,0,5,0,0,25,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3772,0,5,3,0,25,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3773,0,8,7,0,35,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3774,2,4,2,13,1,7,0,0,-1,0,133711,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +3775,0,8,3,0,20,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3776,0,8,3,0,50,0,0,0,-1,0,132274,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3777,15,1,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3778,2,2,2,15,26,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +3779,2,1,1,17,27,1,0,0,-1,0,132402,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +3780,2,3,1,26,28,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +3781,2,8,1,17,29,1,0,0,-1,0,135324,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +3782,2,5,2,17,30,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +3783,2,7,1,21,31,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +3784,2,10,2,17,32,2,0,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,57,0,0,0,0 +3785,2,0,1,21,33,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +3786,2,15,1,13,34,3,0,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +3787,2,4,2,21,35,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +3788,4,0,2,12,35,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3789,4,0,2,12,30,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3790,4,0,2,12,30,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3791,4,0,2,12,35,0,0,0,-1,0,134249,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3792,4,1,7,6,29,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3793,4,1,7,8,27,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3794,4,1,7,9,33,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3795,4,1,7,16,31,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3796,4,1,7,10,28,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3797,4,1,7,7,34,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3798,4,1,7,3,30,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3799,4,1,7,5,32,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3800,4,2,8,6,34,0,0,0,-1,0,132515,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3801,4,2,8,8,30,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3802,4,2,8,9,29,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3803,4,1,7,16,33,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3804,4,2,8,10,31,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3805,4,2,8,7,27,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3806,4,2,8,3,32,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3807,4,2,8,5,28,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3808,4,3,5,6,29,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3809,4,3,5,8,27,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3810,4,3,5,9,33,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3811,4,1,7,16,32,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3812,4,3,5,10,31,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3813,4,3,5,7,30,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3814,4,3,5,3,34,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3815,4,3,5,5,28,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3816,4,6,1,14,31,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3817,4,6,1,14,28,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3818,7,9,7,0,0,0,0,0,-1,0,134193,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3819,7,9,7,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3820,7,9,7,0,0,0,0,0,-1,0,134191,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3821,7,9,7,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3822,2,8,1,17,0,1,0,0,-1,0,135272,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +3823,0,1,3,0,23,0,0,0,-1,0,134798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3824,0,8,3,0,24,0,0,0,-1,0,134803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3825,0,2,3,0,25,0,0,0,-1,0,134823,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3826,0,1,3,0,26,0,0,0,-1,0,134859,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3827,0,1,3,0,22,0,0,0,-1,0,134852,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3828,0,2,3,0,29,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3829,0,8,3,0,30,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3830,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3831,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3832,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3833,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3834,4,1,7,7,0,0,0,0,-1,0,134587,7,0,30,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3835,4,3,5,9,28,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3836,4,3,5,1,29,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3837,4,3,5,1,33,0,0,0,-1,0,133138,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3838,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3839,12,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3840,4,3,5,3,27,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3841,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3842,4,3,5,7,26,0,0,0,-1,0,134585,10,0,75,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3843,4,3,5,7,29,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3844,4,3,5,5,31,0,0,0,-1,0,132624,10,0,120,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3845,4,3,5,5,35,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3846,4,3,5,8,32,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3847,4,3,5,8,35,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3848,2,15,1,13,15,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +3849,2,7,1,21,27,3,0,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +3850,2,7,1,13,30,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +3851,2,5,2,17,26,1,0,0,-1,0,133044,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +3852,2,5,2,17,29,1,0,0,-1,0,133041,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +3853,2,8,1,17,31,1,0,0,-1,0,135326,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +3854,2,8,1,17,35,1,0,0,-1,0,135275,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,118,0,0,0,0 +3855,2,1,1,17,32,1,0,0,-1,0,135423,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,108,0,0,0,0 +3856,2,1,1,17,35,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,87,0,0,0,0 +3857,7,7,7,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3858,7,7,1,0,0,0,0,0,-1,0,134576,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3859,7,7,2,0,0,0,0,0,-1,0,133234,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3860,7,7,2,0,0,0,0,0,-1,0,133220,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3861,7,7,2,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3862,12,0,0,0,0,0,0,0,-1,0,134251,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3863,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3864,3,7,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3865,2,15,1,22,1,3,0,0,-1,0,133980,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +3866,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3867,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3868,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3869,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3870,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3871,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3872,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3873,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3874,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3875,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3876,12,0,0,0,0,0,0,0,-1,0,134298,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3877,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3878,15,0,1,0,27,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3879,12,0,0,0,0,0,0,0,-1,0,132179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3880,12,0,0,0,0,0,0,0,-1,0,134176,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3881,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3882,15,0,2,0,0,0,0,0,-1,0,132915,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3883,4,1,7,1,17,0,0,0,-1,0,133072,7,0,35,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3884,4,2,8,1,17,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3885,4,3,5,1,17,0,0,0,-1,0,133071,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3886,4,1,7,1,22,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3887,4,2,8,1,22,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3888,4,3,5,1,22,0,0,0,-1,0,133071,10,0,55,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3889,4,1,7,1,32,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3890,4,2,8,1,32,0,0,0,-1,0,133122,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3891,4,3,5,1,32,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3892,4,1,7,1,45,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3893,4,2,8,1,45,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3894,4,3,5,1,45,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3895,2,0,1,21,25,1,0,0,-1,0,132392,8,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +3897,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3898,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3899,15,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3900,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3901,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3902,2,10,2,17,13,2,0,0,-1,0,135466,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +3904,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3905,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3906,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3907,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3908,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3909,12,0,0,0,0,0,0,0,-1,0,135032,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3910,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3911,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3912,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3913,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3914,1,0,7,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3915,12,0,0,0,0,0,0,0,-1,0,133724,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3916,12,0,0,0,0,0,0,0,-1,0,133727,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3917,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3918,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3919,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3920,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3921,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3922,12,0,0,0,0,0,0,0,-1,0,133789,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3923,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3924,12,0,0,0,0,0,0,0,-1,0,133476,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3925,12,0,0,0,0,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3926,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3927,0,5,0,0,35,0,0,0,-1,0,133945,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3928,0,1,0,0,35,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3929,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3930,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3931,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3932,12,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3933,2,7,1,21,18,6,0,0,-1,0,135131,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +3934,2,8,1,21,19,2,0,0,-1,0,135574,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +3935,2,7,1,13,20,3,0,0,-1,0,135325,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +3936,4,1,7,6,37,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3937,4,1,7,8,41,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3938,4,1,7,9,39,0,0,0,-1,0,132604,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3939,4,1,7,16,42,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3940,4,1,7,10,43,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3941,4,1,7,7,40,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3942,4,1,7,3,44,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3943,4,1,7,5,38,0,0,0,-1,0,135009,7,0,70,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3944,4,1,7,6,48,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3945,4,1,7,8,50,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3946,4,1,7,9,49,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3947,4,1,7,16,47,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3948,4,1,7,10,53,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3949,4,1,7,7,54,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3950,4,1,7,3,51,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3951,4,1,7,5,52,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3952,4,1,7,6,63,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3953,4,1,7,8,59,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3954,4,1,7,9,60,0,0,0,-1,0,132604,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3955,4,1,7,16,57,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3956,4,1,7,10,58,0,0,0,-1,0,132958,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3957,4,1,7,7,62,0,0,0,-1,0,134587,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3958,4,1,7,3,64,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3959,4,1,7,5,61,0,0,0,-1,0,135009,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3960,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3961,4,2,8,6,39,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3962,4,2,8,8,43,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3963,4,2,8,9,38,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3964,4,1,7,16,41,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3965,4,2,8,10,44,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3966,4,2,8,7,37,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3967,4,2,8,3,42,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3968,4,2,8,5,40,0,0,0,-1,0,135017,7,0,85,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3969,4,2,8,6,50,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3970,4,2,8,8,49,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3971,4,2,8,9,54,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3972,4,1,7,16,51,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3973,4,2,8,10,53,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3974,4,2,8,7,48,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3975,4,2,8,3,47,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3976,4,2,8,5,52,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3977,4,2,8,6,58,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3978,4,2,8,8,64,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3979,4,2,8,9,62,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3980,4,1,7,16,57,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3981,4,2,8,10,63,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3982,4,2,8,7,61,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3983,4,2,8,3,60,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3984,4,2,8,5,59,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3985,4,1,7,6,35,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3986,4,6,1,14,43,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3987,4,6,1,14,48,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3988,4,6,1,14,60,4,0,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3989,4,6,1,14,37,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3990,4,6,1,14,51,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3991,4,6,1,14,63,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3992,4,3,5,6,47,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3993,4,3,5,8,48,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3994,4,3,5,9,53,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3995,4,1,7,16,52,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3996,4,3,5,10,54,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3997,4,3,5,7,51,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3998,4,3,5,3,50,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3999,4,3,5,5,49,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4000,4,3,5,6,39,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4001,4,3,5,8,41,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4002,4,3,5,9,43,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4003,4,1,7,16,44,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4004,4,3,5,10,42,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4005,4,3,5,7,38,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4006,4,3,5,3,37,0,0,0,-1,0,135046,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4007,4,3,5,5,40,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4008,4,3,5,6,58,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4009,4,3,5,8,60,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4010,4,3,5,9,61,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4011,4,1,7,16,63,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4012,4,3,5,10,62,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4013,4,3,5,7,59,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4014,4,3,5,3,64,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4015,4,3,5,5,57,0,0,0,-1,0,132736,10,0,100,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4016,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4017,2,7,1,21,41,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +4018,2,8,1,17,37,1,0,0,-1,0,135349,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +4019,2,0,1,21,43,3,0,0,-1,0,135421,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,52,0,0,0,0 +4020,2,1,1,17,44,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +4021,2,4,2,21,41,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +4022,2,5,2,17,45,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +4023,2,15,1,13,39,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +4024,2,10,2,17,42,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,90,0,0,0,0 +4025,2,2,2,15,40,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +4026,2,3,1,26,38,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +4027,12,0,0,0,0,0,0,0,-1,0,135637,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4028,12,0,0,0,0,0,0,0,-1,0,135437,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4029,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4030,4,0,2,12,40,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4031,4,0,2,12,40,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4032,4,0,2,12,45,0,0,0,-1,0,133039,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4033,4,0,2,12,45,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4034,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4035,4,1,7,20,26,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4036,4,1,7,9,22,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4037,4,1,7,7,25,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4038,4,1,7,20,32,0,0,0,-1,0,132669,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4039,4,1,7,1,30,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4040,4,1,7,10,29,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4041,4,1,7,1,34,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4042,4,1,7,10,34,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4043,4,1,7,9,33,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4044,4,1,7,7,35,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4045,4,1,7,9,37,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4046,4,1,7,7,40,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4047,4,1,7,8,38,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4048,4,2,8,1,26,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4049,4,2,8,9,23,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4050,4,2,8,7,26,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4051,4,2,8,8,25,0,0,0,-1,0,132543,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4052,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4053,12,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4054,4,2,8,7,30,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4055,4,2,8,8,29,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4056,12,0,0,0,35,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4057,4,2,8,5,31,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4058,4,2,8,5,36,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4059,4,2,8,9,32,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4060,4,2,8,7,35,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4061,4,2,8,9,37,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4062,4,2,8,7,40,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4063,4,2,8,10,38,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4064,4,6,1,14,25,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4065,4,6,1,14,31,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4066,4,6,1,14,30,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4067,4,6,1,14,34,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4068,4,6,1,14,35,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4069,4,6,1,14,42,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4070,4,6,1,14,36,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4071,4,3,5,5,26,0,0,0,-1,0,132751,10,0,100,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4072,4,3,5,10,25,0,0,0,-1,0,132937,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4073,4,3,5,8,26,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4074,4,3,5,5,31,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4075,4,3,5,10,29,0,0,0,-1,0,132959,10,0,35,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4076,4,3,5,8,30,0,0,0,-1,0,132541,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4077,4,3,5,1,30,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4078,4,3,5,1,34,0,0,0,-1,0,133131,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4079,4,3,5,7,35,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4080,4,3,5,1,40,0,0,0,-1,0,133118,10,0,60,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4082,4,3,5,5,42,0,0,0,-1,0,132634,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4083,4,3,5,10,39,0,0,0,-1,0,132966,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4084,4,3,5,7,41,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4085,12,0,1,0,0,1,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4086,2,3,1,26,0,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +4087,2,2,2,15,36,0,5851,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +4088,2,15,1,13,42,3,5270,0,-1,0,135351,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +4089,2,3,1,26,43,0,5853,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +4090,2,4,2,13,41,7,0,0,-1,0,132790,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +4091,2,15,1,13,42,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +4092,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4093,15,0,0,0,0,0,0,0,-1,0,134413,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4094,12,0,0,0,0,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4095,15,0,0,0,0,0,0,0,-1,0,134325,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4096,15,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4097,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4098,12,0,0,0,42,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4099,15,0,0,0,0,0,0,0,-1,0,134347,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4100,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4101,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4102,15,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4103,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4104,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4105,12,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4106,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4107,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4108,4,2,8,7,0,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4109,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4110,2,2,2,15,0,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +4111,2,3,1,26,0,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +4112,4,0,3,2,0,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4113,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4114,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4115,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4116,2,7,1,13,0,3,0,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +4117,4,1,7,6,0,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4118,4,3,5,9,0,0,0,0,-1,0,133345,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4119,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4120,4,1,7,20,0,0,0,0,-1,0,132660,7,0,80,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4121,4,1,7,10,0,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4122,2,4,2,13,0,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +4123,4,3,5,3,0,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4124,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4125,4,0,3,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4126,2,0,1,13,0,3,0,0,-1,0,132415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +4127,2,3,1,26,0,0,0,0,-1,0,135611,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +4128,2,5,2,17,0,1,0,0,-1,0,134436,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +4129,4,6,1,14,0,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4130,4,0,0,12,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4131,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4132,4,3,5,9,0,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4133,4,1,7,9,0,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4134,2,10,2,17,0,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +4135,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4136,4,3,5,8,0,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4137,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4138,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4139,4,1,7,8,0,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4140,4,1,7,3,0,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4141,9,0,0,0,6,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4143,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4145,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4146,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4147,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4148,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4149,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4150,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4151,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4152,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4153,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4154,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4155,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4156,9,0,0,0,37,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4157,9,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4158,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4159,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4161,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4162,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4163,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4164,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4165,9,0,0,0,38,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4166,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4167,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4168,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4169,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4170,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4171,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4172,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4173,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4174,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4175,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4176,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4177,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4178,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4179,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4180,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4181,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4182,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4183,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4184,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4185,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4186,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4187,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4188,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4189,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4190,4,2,8,5,22,0,0,0,-1,0,132721,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4191,4,2,8,7,22,0,0,0,-1,0,134582,7,0,60,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4192,4,2,8,10,22,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4193,4,2,8,1,22,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4194,4,2,8,9,22,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4195,4,2,8,8,22,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4196,4,2,8,3,25,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4197,4,1,7,3,0,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4198,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4199,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4200,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4201,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4202,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4203,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4204,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4205,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4206,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4207,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4208,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4209,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4210,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4211,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4212,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4213,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4214,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4215,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4216,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4217,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4218,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4219,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4220,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4221,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4223,9,0,0,0,36,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4225,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4226,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4228,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4230,9,0,0,0,32,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4231,7,6,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4232,7,6,8,0,0,0,0,0,-1,0,134364,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4233,7,6,8,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4234,7,6,8,0,0,0,0,0,-1,0,134256,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4235,7,6,8,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4236,7,6,8,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4237,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4238,1,0,8,18,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4239,4,2,8,10,8,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4240,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4241,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4242,4,2,8,7,10,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4243,4,2,8,5,12,0,0,0,-1,0,132724,7,0,65,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4244,4,2,8,5,15,0,0,0,-1,0,132725,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4245,1,0,8,18,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4246,4,2,8,6,11,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4247,4,2,8,10,24,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4248,4,2,8,10,21,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4249,4,2,8,6,20,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4250,4,2,8,6,20,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4251,4,2,8,3,21,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4252,4,2,8,3,23,0,0,0,-1,0,135043,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4253,4,2,8,10,22,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4254,4,2,8,10,25,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4255,4,2,8,5,26,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4256,4,2,8,5,30,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4257,4,2,8,6,27,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4258,4,2,8,6,29,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4259,4,2,8,9,31,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4260,4,2,8,9,34,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4261,4,1,7,7,3,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4262,4,2,8,6,32,0,0,0,-1,0,132490,7,0,35,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4263,4,6,1,14,5,4,0,0,-1,0,134952,9,0,45,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4264,4,2,8,6,35,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4265,0,6,8,0,20,0,0,0,-1,0,133610,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4266,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4267,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4268,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4269,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4270,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4271,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4272,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4273,9,0,0,0,16,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4274,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4275,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4276,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4277,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4278,12,0,1,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4279,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4280,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4281,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4282,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4283,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4284,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4285,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4286,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4287,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4288,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4289,7,6,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4290,4,6,1,14,13,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4291,7,5,8,0,0,0,0,0,-1,0,132906,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4292,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4293,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4294,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4295,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4296,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4297,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4298,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4299,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4300,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4301,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4302,2,15,1,13,5,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +4303,2,4,2,13,7,3,0,0,-1,0,133054,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +4304,7,6,8,0,0,0,0,0,-1,0,134257,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4305,7,5,8,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4306,7,5,8,0,0,0,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4307,4,1,7,10,5,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4308,4,1,7,9,7,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4309,4,1,7,7,9,0,0,0,-1,0,134587,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4310,4,1,7,10,12,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4311,4,1,7,16,16,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4312,4,1,7,8,11,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4313,4,1,7,8,15,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4314,4,1,7,3,17,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4315,4,1,7,3,19,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4316,4,1,7,7,17,0,0,0,-1,0,134581,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4317,4,1,7,7,20,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4318,4,1,7,10,21,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4319,4,1,7,10,24,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4320,4,1,7,8,20,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4321,4,1,7,8,23,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4322,4,1,7,1,28,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4323,4,1,7,1,29,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4324,4,1,7,5,25,0,0,0,-1,0,132678,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4325,4,1,7,8,30,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4326,4,1,7,16,32,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4327,4,1,7,16,35,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,29,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0 +4328,4,1,7,6,31,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4329,4,1,7,6,35,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4330,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4331,4,1,7,10,20,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4332,4,0,7,4,0,0,0,0,-1,0,135031,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4333,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4334,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4335,4,0,7,4,0,0,0,0,-1,0,135020,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4336,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4337,7,5,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4338,7,5,7,0,0,0,0,0,-1,0,132892,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4339,7,5,8,0,0,0,0,0,-1,0,132894,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4340,7,11,3,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4341,7,11,3,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4342,7,11,3,0,0,0,0,0,-1,0,134713,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4343,4,1,7,7,5,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4344,4,0,7,4,0,0,0,0,-1,0,135006,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4345,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4346,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4347,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4348,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4349,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4350,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4351,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4352,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4353,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4354,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4355,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4356,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4357,7,1,8,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4358,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4359,7,1,8,0,0,0,0,0,-1,0,134068,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4360,7,2,8,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4361,7,1,8,0,0,0,0,0,-1,0,133025,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4362,2,3,1,26,5,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +4363,7,1,8,0,0,0,0,0,-1,0,132997,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4364,7,1,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4365,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4366,7,3,8,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4367,7,2,4,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4368,4,1,7,1,0,0,0,0,-1,0,133149,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4369,2,3,1,26,16,0,0,0,-1,0,135616,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +4370,7,2,8,0,0,0,0,0,-1,0,133709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4371,7,1,8,0,0,0,0,0,-1,0,133024,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4372,2,3,1,26,19,0,0,0,-1,0,135616,8,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +4373,4,1,7,1,0,0,0,0,-1,0,133149,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4374,7,2,8,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4375,7,1,8,0,0,0,0,0,-1,0,132996,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4376,7,3,8,0,15,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4377,7,1,8,0,0,0,0,0,-1,0,133853,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4378,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4379,2,3,1,26,21,0,0,0,-1,0,135616,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,50,0,0,0,0 +4380,7,2,8,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4381,4,0,8,12,0,0,0,0,-1,0,133001,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4382,7,1,8,0,0,0,0,0,-1,0,133006,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4383,2,3,1,26,24,0,0,0,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +4384,7,2,8,0,0,0,0,0,-1,0,136071,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4385,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4386,7,3,8,0,21,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4387,7,1,8,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4388,7,3,8,0,0,0,0,0,-1,0,134441,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4389,7,1,8,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4390,7,2,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4391,7,3,8,0,30,0,0,0,-1,0,133076,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4392,7,3,8,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4393,4,1,7,1,0,0,0,0,-1,0,133146,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4394,7,2,8,0,0,0,0,0,-1,0,133709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4395,7,2,8,0,0,0,0,0,-1,0,134954,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4396,4,0,8,12,30,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4397,4,0,8,12,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4398,7,2,4,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4399,7,1,8,0,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4400,7,1,8,0,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4401,15,2,8,0,0,0,0,0,-1,0,132761,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4402,7,11,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4403,7,3,8,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4404,7,1,8,0,0,0,0,0,-1,0,133218,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4405,7,3,8,0,5,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4406,7,3,8,0,10,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4407,7,3,8,0,20,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4408,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4409,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4410,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4411,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4412,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4413,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4414,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4415,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4416,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4417,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4418,0,5,0,0,35,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4419,0,4,7,0,35,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4421,0,4,7,0,30,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4422,0,4,7,0,35,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4424,0,4,7,0,30,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4425,0,4,7,0,40,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4426,0,4,7,0,40,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4427,0,8,7,0,29,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4428,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4429,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4430,4,0,3,2,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4431,12,0,0,0,25,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4432,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4433,12,0,0,0,25,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4434,4,1,7,7,15,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4435,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4436,4,1,7,6,16,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4437,2,10,2,17,15,2,0,0,-1,0,135151,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,54,0,0,0,0 +4438,4,3,5,9,25,0,0,0,-1,0,132602,10,0,40,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4439,2,4,2,13,17,3,0,0,-1,0,133485,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +4440,12,0,0,0,0,0,0,0,-1,0,134414,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4441,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4442,4,2,8,3,18,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4443,4,3,5,3,0,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4444,4,6,1,14,19,4,0,0,-1,0,134321,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4445,2,0,1,13,18,3,0,0,-1,0,132407,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +4446,2,15,1,13,21,3,0,0,-1,0,135638,8,0,60,0,0,5,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,39,7,0,0,0 +4447,4,1,7,16,21,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4448,4,3,5,5,22,0,0,0,-1,0,134321,10,0,95,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4449,2,15,1,13,22,3,0,0,-1,0,134298,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +4450,12,0,0,0,0,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4451,15,0,0,0,0,0,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4452,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4453,12,0,0,0,0,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4454,2,15,1,13,21,3,0,0,-1,0,135652,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +4455,4,2,8,5,28,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4456,4,2,8,6,28,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4457,0,5,0,0,25,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4458,12,0,0,0,0,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4459,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4460,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4461,7,6,8,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4462,4,1,7,16,26,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4463,4,1,7,6,26,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4464,4,3,5,8,27,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4465,4,3,5,10,27,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4466,12,0,0,0,0,0,0,0,-1,0,133434,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4467,12,0,0,0,0,0,0,0,-1,0,133435,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4468,12,0,0,0,0,0,0,0,-1,0,135272,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4469,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4470,7,11,0,0,0,0,0,0,-1,0,135435,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4471,7,11,0,0,0,0,0,0,-1,0,135237,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4472,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4473,12,0,5,0,0,0,0,0,-1,0,132612,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4474,2,2,2,15,27,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +4475,15,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4476,4,1,7,20,29,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4477,4,6,1,14,29,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4478,4,3,5,7,40,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,217,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0 +4479,0,8,0,0,25,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4480,0,8,0,0,25,0,0,0,-1,0,133435,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4481,0,8,0,0,25,0,0,0,-1,0,133438,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4482,12,0,0,0,0,0,0,0,-1,0,133470,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4483,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4484,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4485,13,0,0,0,0,0,0,0,-1,0,134236,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4486,15,0,0,0,0,0,0,0,-1,0,133472,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4487,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4488,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4489,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4490,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4491,12,0,0,1,0,0,0,0,-1,0,133149,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4492,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4493,12,0,0,0,0,0,0,0,-1,0,134118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4494,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4495,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4496,1,0,8,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4497,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4498,1,0,0,18,0,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4499,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4500,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4501,1,0,8,18,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4502,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4503,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4504,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4505,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4506,12,0,0,0,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4507,4,6,1,14,0,4,0,0,-1,0,134953,9,0,100,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4508,4,3,5,5,0,0,0,0,-1,0,132743,10,0,120,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4509,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4510,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4511,2,4,2,13,0,3,0,0,-1,0,133044,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +4512,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4513,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4514,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4515,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4516,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4517,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4518,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4519,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4520,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4521,12,0,0,0,0,0,0,0,-1,0,135234,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4522,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4523,12,0,0,0,0,0,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4524,12,0,0,0,0,0,0,0,-1,0,135233,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4525,12,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4526,12,0,0,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4527,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4528,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4529,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4530,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4531,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4532,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4533,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4534,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4535,4,0,0,11,0,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4536,0,5,0,0,1,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4537,0,5,0,0,5,0,0,0,-1,0,133980,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4538,0,5,0,0,15,0,0,0,-1,0,133978,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4539,0,5,0,0,25,0,0,0,-1,0,133976,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4540,0,5,0,0,1,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4541,0,5,0,0,5,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4542,0,5,0,0,15,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4543,4,2,8,1,0,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4544,0,5,0,0,25,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4545,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4546,0,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4547,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,56,0,0,0,0 +4548,2,5,2,17,0,1,0,0,-1,0,133041,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +4549,4,0,5,11,0,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4550,4,0,5,11,0,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4551,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4552,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4553,15,0,0,0,0,0,0,0,-1,0,135239,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4554,15,0,0,0,0,0,0,0,-1,0,135240,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4555,15,0,0,0,0,0,0,0,-1,0,134306,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4556,15,0,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4557,15,0,0,0,0,0,0,0,-1,0,135813,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4558,15,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4560,2,7,1,13,1,3,0,0,-1,0,135325,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4561,2,0,1,21,6,3,5169,0,-1,0,132410,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +4562,2,1,1,17,5,1,5174,0,-1,0,135420,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,27,0,0,0,0 +4563,2,4,2,21,4,3,0,0,-1,0,133476,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,0,0,0 +4564,2,5,2,17,8,1,5175,0,-1,0,133489,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,34,0,0,0,0 +4565,2,15,1,13,1,3,0,0,-1,0,135637,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4566,2,10,2,17,8,2,5176,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +4567,2,8,1,17,11,1,5182,0,-1,0,135274,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4568,2,0,1,13,16,3,5187,0,-1,0,132403,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +4569,2,4,2,21,9,3,5170,0,-1,0,133045,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4570,2,5,2,17,10,1,5175,0,-1,0,133052,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +4571,2,15,1,13,12,3,5180,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +4573,15,0,0,0,25,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4575,2,10,2,17,14,2,5194,0,-1,0,135168,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +4576,2,2,2,15,16,0,0,0,-1,0,135495,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +4577,2,3,1,26,8,0,0,0,-1,0,135612,8,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4578,15,0,8,0,0,0,0,0,-1,0,134413,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4579,15,0,8,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4580,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4581,15,0,8,0,0,0,0,0,-1,0,134353,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4582,12,0,0,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4583,15,0,0,0,0,0,0,0,-1,0,134353,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4584,15,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4585,15,0,0,0,0,0,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4586,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4587,15,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4588,15,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4589,7,11,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4590,15,0,0,0,0,0,0,0,-1,0,133708,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4591,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4592,0,5,0,0,5,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4593,0,5,0,0,15,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4594,0,5,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4595,0,5,3,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4596,0,1,3,0,5,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4597,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4598,0,0,8,0,0,0,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4599,0,5,0,0,35,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4600,0,5,3,0,25,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4601,0,5,0,0,35,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4602,0,5,0,0,35,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4603,7,8,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4604,0,5,0,0,1,0,0,0,-1,0,134534,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4605,0,5,0,0,5,0,0,0,-1,0,134532,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4606,0,5,0,0,15,0,0,0,-1,0,134529,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4607,0,5,0,0,25,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4608,0,5,0,0,35,0,0,0,-1,0,134524,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4609,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4610,12,0,0,0,0,0,0,0,-1,0,134514,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4611,7,11,0,0,0,0,0,0,-1,0,134564,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4612,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4613,12,0,0,0,30,0,0,0,-1,0,134711,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4614,4,0,0,2,30,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4615,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4616,2,14,1,13,0,3,0,0,-1,0,134709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4620,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4621,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4622,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4623,0,1,3,0,33,0,0,0,-1,0,134847,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4624,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4625,7,9,7,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4626,12,0,0,0,0,0,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4627,12,0,0,0,0,0,0,0,-1,0,135234,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4628,12,0,0,0,0,0,0,0,-1,0,132601,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4629,12,0,0,0,0,0,0,0,-1,0,132761,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4630,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4631,12,0,0,0,0,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4632,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4633,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4634,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4635,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4636,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4637,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4638,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4639,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4640,12,0,0,0,0,0,0,0,-1,0,134566,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4641,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4643,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4644,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4645,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4646,12,0,2,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4647,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4648,12,0,0,0,0,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4649,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4650,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4652,4,6,1,14,0,4,0,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4653,4,3,5,8,0,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4654,12,0,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4655,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4656,0,5,0,0,1,0,0,0,-1,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4657,4,3,5,3,6,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4658,4,1,7,16,3,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4659,4,3,5,6,3,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4660,4,1,7,8,13,0,0,0,-1,0,132540,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4661,4,1,7,3,21,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4662,4,1,7,16,3,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4663,4,1,7,6,4,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4664,4,2,8,3,6,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4665,4,1,7,16,3,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4666,4,2,8,6,4,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4667,4,3,5,3,8,0,0,0,-1,0,135038,10,0,40,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4668,4,1,7,16,4,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4669,4,3,5,6,5,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4670,4,1,7,3,8,0,0,0,-1,0,135040,7,0,30,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4671,4,1,7,16,4,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4672,4,1,7,6,5,0,0,0,-1,0,132492,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4673,4,2,8,3,7,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4674,4,1,7,16,4,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4675,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4676,4,3,5,10,12,0,0,0,-1,0,132937,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4677,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4678,4,3,5,6,9,0,0,0,-1,0,132494,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4679,4,3,5,3,10,0,0,0,-1,0,135038,10,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4680,4,1,7,16,8,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4681,4,3,5,6,9,0,0,0,-1,0,132514,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4682,4,1,7,3,12,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4683,4,1,7,16,8,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4684,4,1,7,6,8,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4685,4,1,7,3,13,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4686,4,1,7,16,7,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4687,4,1,7,6,9,0,0,0,-1,0,132492,7,0,18,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4688,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4689,4,1,7,16,8,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4690,4,2,8,6,8,0,0,0,-1,0,132510,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4691,4,2,8,3,10,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4692,4,1,7,16,7,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4693,4,2,8,6,9,0,0,0,-1,0,132505,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4694,4,3,5,3,17,0,0,0,-1,0,135059,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4695,4,1,7,16,13,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4696,4,0,3,23,54,7,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4697,4,3,5,6,15,0,0,0,-1,0,132523,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4698,4,1,7,3,16,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4699,4,1,7,6,13,0,0,0,-1,0,132511,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4700,4,2,8,3,16,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4701,4,1,7,16,11,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4702,12,0,0,0,0,0,0,0,-1,0,134707,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4703,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4704,2,14,0,21,0,0,0,0,-1,0,133486,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4705,4,3,5,3,22,0,0,0,-1,0,135039,10,0,55,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4706,4,1,7,16,19,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4707,4,3,5,6,21,0,0,0,-1,0,132493,10,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4708,4,1,7,6,19,0,0,0,-1,0,132500,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4709,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4710,4,1,7,16,17,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4711,4,1,7,16,23,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4712,4,3,5,6,24,0,0,0,-1,0,132521,10,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4713,4,1,7,16,21,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4714,4,1,7,6,22,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4715,4,1,7,16,22,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4716,4,1,7,16,27,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4717,4,3,5,6,29,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4718,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4719,4,1,7,16,27,0,0,0,-1,0,132682,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4720,4,1,7,6,28,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4721,4,2,8,3,30,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4722,4,1,7,16,27,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4723,4,1,7,7,24,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4724,4,2,8,1,25,0,0,0,-1,0,133122,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4725,4,3,5,3,35,0,0,0,-1,0,135045,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4726,4,1,7,16,31,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4727,4,3,5,6,33,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4728,4,3,5,3,0,0,0,0,-1,0,135034,10,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4729,4,1,7,3,34,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4730,2,0,1,21,2,3,0,0,-1,0,134707,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +4731,4,2,8,3,34,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4732,4,1,7,16,32,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4733,4,3,5,3,41,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4734,4,1,7,3,38,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4735,4,1,7,16,36,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4736,4,1,7,6,37,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4737,4,2,8,3,39,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4738,4,2,8,6,37,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4739,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4740,12,0,0,0,0,0,0,0,-1,0,132918,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4741,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4742,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4743,4,0,3,2,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4744,4,1,7,9,0,0,0,0,-1,0,132617,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4745,4,3,5,9,0,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4746,4,1,7,20,0,0,0,0,-1,0,132660,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4747,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4748,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4749,12,0,0,0,0,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4750,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4751,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4752,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4753,12,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4754,12,0,0,0,0,0,0,0,-1,0,132794,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4755,12,0,0,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4756,15,0,8,0,0,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4757,15,0,8,0,0,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4758,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4759,12,0,0,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4760,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4761,4,3,5,7,5,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4762,4,0,2,17,0,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4763,2,2,2,15,4,0,0,0,-1,0,135500,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4764,4,2,8,3,5,0,0,0,-1,0,135039,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4765,2,7,1,13,9,3,0,0,-1,0,135321,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +4766,2,7,1,13,8,3,0,0,-1,0,135325,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +4767,4,1,7,10,10,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4768,4,1,7,10,10,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4769,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4770,12,0,0,0,0,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4771,4,1,7,16,10,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4772,4,1,7,16,6,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4773,4,3,5,9,7,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4774,4,3,5,9,10,0,0,0,-1,0,132602,10,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4775,15,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4776,15,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4777,2,5,2,17,13,1,0,0,-1,0,133053,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,40,0,0,0,0 +4778,2,5,2,17,14,1,0,0,-1,0,133476,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +4779,15,0,0,0,0,0,0,0,-1,0,135240,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4780,15,0,0,0,0,0,0,0,-1,0,135232,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4781,4,1,7,5,15,0,0,0,-1,0,135014,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4782,4,1,7,20,13,0,0,0,-1,0,132658,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4783,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4784,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4785,4,1,7,6,19,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4786,4,1,7,6,15,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4787,15,0,0,0,0,0,0,0,-1,0,132386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4788,4,2,8,8,15,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4789,4,2,8,8,13,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4790,4,1,7,16,20,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4791,0,5,3,0,25,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4792,4,1,7,16,18,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4793,4,1,7,16,19,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4794,4,2,8,9,20,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4795,4,2,8,9,20,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4796,4,2,8,9,20,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4797,4,1,7,16,20,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4798,4,1,7,16,20,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4799,4,1,7,16,18,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4800,4,3,5,7,18,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4801,12,0,8,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4802,12,0,8,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4803,12,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4804,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4805,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4806,12,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4807,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4808,12,0,0,0,0,0,0,0,-1,0,135238,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4809,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4810,4,2,8,3,32,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4811,4,2,8,3,15,0,0,0,-1,0,135039,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4812,4,3,5,3,14,0,0,0,-1,0,135040,10,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4813,15,0,0,0,0,0,0,0,-1,0,133676,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4814,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4815,4,3,5,3,12,0,0,0,-1,0,135040,10,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4816,4,3,5,7,19,0,0,0,-1,0,134583,10,0,65,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4817,2,8,1,17,17,1,0,0,-1,0,135311,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +4818,2,8,1,17,19,1,0,0,-1,0,135329,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,65,0,0,0,0 +4819,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4820,4,6,1,14,20,4,0,0,-1,0,134956,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4821,4,6,1,14,18,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4822,4,6,1,14,18,4,0,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4823,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4824,2,0,1,13,22,3,0,0,-1,0,132405,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +4825,2,0,1,13,24,3,0,0,-1,0,132415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +4826,2,0,1,13,21,3,0,0,-1,0,132417,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +4827,4,1,7,6,23,0,0,0,-1,0,132518,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4828,4,1,7,6,22,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4829,4,1,7,6,24,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4830,4,2,8,7,23,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4831,4,2,8,7,21,0,0,0,-1,0,134590,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4832,4,2,8,7,24,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4833,4,3,5,3,23,0,0,0,-1,0,135036,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4834,12,0,0,0,0,0,0,0,-1,0,133470,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4835,4,3,5,3,25,0,0,0,-1,0,135036,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4836,4,0,3,23,23,7,0,0,-1,0,133434,21,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4837,4,0,8,23,25,7,0,0,-1,0,133438,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4838,4,0,8,23,21,7,0,0,-1,0,134564,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4839,12,0,0,0,5,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4840,2,15,1,13,0,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +4841,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4843,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4844,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4845,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4846,12,0,0,0,0,0,0,0,-1,0,134063,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4847,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4848,12,0,0,0,0,0,0,0,-1,0,135997,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4849,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4850,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4851,12,0,0,0,1,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4852,7,2,0,0,27,0,0,0,-1,0,133581,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4853,4,2,8,1,5,0,0,0,-1,0,132381,7,0,30,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4854,4,1,7,16,6,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4855,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4856,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4857,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4858,4,1,7,3,30,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4859,12,0,0,0,0,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4860,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4861,4,2,8,5,5,0,0,0,-1,0,132715,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4862,12,0,0,0,0,0,0,0,-1,0,132274,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4863,12,0,0,0,0,0,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4864,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4865,15,0,8,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4866,12,0,0,0,0,0,0,0,-1,0,136218,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4867,15,0,0,0,0,1,0,0,-1,0,134321,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4868,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4869,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4870,12,0,0,0,0,0,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4871,12,0,0,0,0,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4872,15,0,3,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4873,15,0,0,0,0,1,0,0,-1,0,135232,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4874,15,0,3,0,0,0,0,0,-1,0,133719,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4875,15,0,0,0,0,1,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4876,15,0,3,0,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4877,15,0,0,0,0,1,0,0,-1,0,132381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4878,15,0,3,0,0,0,0,0,-1,0,135493,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4879,15,0,0,0,0,1,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4880,15,0,3,0,0,0,0,0,-1,0,135128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4881,12,0,0,0,1,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4882,13,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4883,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4884,12,0,0,0,0,0,0,0,-1,0,135034,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4885,12,0,0,0,0,0,0,0,-1,0,135035,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4886,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4887,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4888,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4889,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4890,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4891,12,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4892,12,0,0,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4893,12,0,0,0,0,0,0,0,-1,0,133722,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4894,12,0,0,0,0,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4895,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4896,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4897,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4898,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4899,2,18,2,26,20,1,0,0,-1,0,135530,12,0,55,2,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +4900,2,17,2,17,20,1,0,0,-1,0,135124,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4901,2,6,1,17,20,1,0,0,-1,0,135574,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +4902,2,19,2,26,1,0,0,0,-1,0,135464,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +4903,12,0,0,0,4,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4904,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4905,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4906,4,2,8,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4907,4,2,8,5,0,0,0,0,-1,0,132724,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4908,4,2,8,9,0,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4909,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4910,4,3,5,10,0,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4911,4,6,1,14,0,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4912,2,19,2,26,20,0,0,0,-1,0,135464,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4913,4,3,5,6,0,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4914,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4915,4,1,7,8,0,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4916,4,1,7,5,0,0,0,0,-1,0,135018,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4917,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4918,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4919,4,1,7,6,0,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4920,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4921,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4922,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4923,2,0,1,21,0,3,0,0,-1,0,135419,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4924,2,4,2,21,0,3,0,0,-1,0,133485,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +4925,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +4926,12,0,0,0,11,0,0,0,-1,0,132623,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4927,12,0,0,0,0,0,0,0,-1,0,132623,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4928,4,2,8,9,0,0,0,0,-1,0,132611,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4929,4,2,8,5,0,0,0,0,-1,0,132716,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4930,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4931,2,2,2,15,0,0,0,0,-1,0,135493,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +4932,2,7,1,21,0,3,0,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +4933,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4934,4,1,7,3,0,0,0,0,-1,0,135040,7,0,25,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4935,4,3,5,6,0,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4936,4,1,7,8,0,0,0,0,-1,0,132542,7,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4937,4,6,1,14,0,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4938,2,10,2,17,0,2,0,0,-1,0,135158,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +4939,2,8,1,17,0,1,0,0,-1,0,135344,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +4940,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4941,0,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4942,4,2,8,8,0,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4943,2,5,2,17,0,1,0,0,-1,0,133052,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +4944,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4945,0,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4946,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4947,2,15,1,13,0,3,0,0,-1,0,135638,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +4948,2,4,2,13,0,3,0,0,-1,0,133476,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +4949,2,0,1,13,16,3,0,0,-1,0,132414,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +4950,4,6,1,14,0,4,0,0,-1,0,134957,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4951,4,2,8,6,1,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4952,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4953,0,0,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4954,4,2,8,6,0,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4955,4,2,8,3,0,0,0,0,-1,0,135039,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4956,2,14,2,17,2,2,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +4957,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4958,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4959,15,0,1,0,0,0,0,0,-1,0,135421,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4960,6,3,2,24,0,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +4961,2,10,2,17,0,2,0,0,-1,0,135159,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,22,0,0,0,0 +4962,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4963,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4964,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +4965,2,0,1,21,0,3,0,0,-1,0,132402,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +4966,12,0,0,0,4,0,0,0,-1,0,133707,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4967,4,6,1,14,0,4,0,0,-1,0,134957,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4968,4,2,8,5,0,0,0,0,-1,0,132719,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4969,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4970,4,2,8,7,0,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4971,2,4,2,13,0,3,0,0,-1,0,133046,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +4972,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4973,4,2,8,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4974,2,15,1,13,0,3,0,0,-1,0,135641,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +4975,4,6,1,14,0,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4976,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4977,2,7,1,13,0,3,0,0,-1,0,135350,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +4978,2,4,2,13,0,3,0,0,-1,0,133041,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +4979,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4980,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4981,1,0,0,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4982,4,2,8,6,0,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4983,2,5,2,17,0,1,0,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +4984,4,0,2,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4985,2,19,2,26,20,0,0,0,-1,0,135464,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +4986,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4987,2,7,1,13,0,3,0,0,-1,0,135326,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +4988,4,0,5,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4989,4,1,7,20,0,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4990,4,1,7,9,0,0,0,0,-1,0,132616,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4991,2,8,1,17,1,1,0,0,-1,0,135315,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +4992,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4993,2,4,2,13,1,7,0,0,-1,0,133729,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4994,2,14,1,21,1,7,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +4995,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4996,2,4,2,21,5,0,0,0,-1,0,133039,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4997,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4998,4,0,5,11,19,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4999,4,0,5,11,22,0,0,0,-1,0,132518,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5000,4,0,5,11,21,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5001,4,0,5,11,22,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5002,4,0,3,2,25,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5003,4,0,3,2,26,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5004,4,0,3,2,30,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5005,4,0,3,2,30,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5006,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5007,4,0,0,11,26,0,0,0,-1,0,134412,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5008,4,0,0,11,31,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5009,4,0,0,11,31,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5010,4,0,0,11,35,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5011,4,0,0,11,35,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5012,12,0,0,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5013,0,8,0,0,5,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5014,0,8,0,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5015,0,8,0,0,0,0,0,0,-1,0,132907,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5016,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5017,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5018,12,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5019,12,0,0,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5020,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5021,12,0,2,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5022,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5023,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5024,15,1,3,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5025,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5026,12,0,3,0,0,0,0,0,-1,0,132386,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5027,12,0,0,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5028,4,0,2,23,42,3,0,0,-1,0,135472,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5029,4,0,3,2,42,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5030,12,0,0,0,0,0,0,0,-1,0,132607,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5038,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5040,2,15,1,13,27,3,0,0,-1,0,135647,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +5041,0,8,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5042,0,8,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5043,0,8,0,0,0,0,0,0,-1,0,134140,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5044,0,8,0,0,0,0,0,0,-1,0,134142,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5045,0,8,0,0,35,0,0,0,-1,0,134143,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5048,0,8,0,0,0,0,0,0,-1,0,134147,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5049,0,8,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5050,13,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5051,12,0,0,0,0,0,0,0,-1,0,134359,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5052,12,0,0,0,0,0,0,0,-1,0,134361,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5053,4,1,7,20,0,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5054,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5055,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5056,12,0,8,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5057,0,5,0,0,1,0,0,0,-1,0,133978,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5058,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5059,12,0,0,0,0,0,0,0,-1,0,132938,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5060,15,1,1,0,15,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5061,12,0,0,0,0,0,0,0,-1,0,133787,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5062,12,0,0,0,0,0,0,0,-1,0,136217,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5063,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5064,12,0,0,0,0,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5065,12,0,0,0,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5066,0,5,0,0,5,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5067,12,0,0,0,0,0,0,0,-1,0,136220,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5068,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5069,2,19,2,26,7,0,0,0,-1,0,135139,21,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +5071,2,19,2,26,9,0,0,0,-1,0,135645,21,0,35,0,5,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5072,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5073,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5074,12,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5075,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5076,12,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5077,12,0,0,0,0,0,0,0,-1,0,134442,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5078,12,0,0,0,0,0,0,0,-1,0,133277,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5079,4,0,0,12,35,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5080,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5081,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5082,7,6,8,0,0,0,0,0,-1,0,134255,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5083,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5084,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5085,12,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5086,12,0,0,0,0,0,0,0,-1,0,132368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5087,12,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5088,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5089,13,0,0,0,0,0,0,0,-1,0,134248,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5090,4,0,7,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5091,4,3,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5092,2,19,2,26,18,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +5093,2,15,1,13,16,3,0,0,-1,0,135640,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +5094,4,6,1,14,19,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5095,0,5,0,0,5,0,0,0,-1,0,133913,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5096,12,0,0,0,0,0,0,0,-1,0,132935,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5097,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5098,12,0,0,0,0,0,0,0,-1,0,134303,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5099,12,0,0,0,10,0,0,0,-1,0,132318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5100,12,0,0,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5101,12,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5102,12,0,0,0,10,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5103,12,0,0,0,10,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5104,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5105,15,0,3,0,0,0,0,0,-1,0,135809,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5106,4,1,7,1,10,0,0,0,-1,0,133694,7,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5107,4,0,0,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5108,4,2,8,5,27,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5109,4,1,7,5,12,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5110,4,1,7,20,13,0,0,0,-1,0,132677,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5111,4,1,7,16,10,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5112,2,15,1,13,10,3,0,0,-1,0,135638,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +5113,15,0,2,0,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5114,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5115,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5116,7,6,0,0,0,0,0,0,-1,0,132916,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5117,12,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5118,15,0,0,0,0,1,0,0,-1,0,135233,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5119,15,0,3,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5120,15,0,3,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5121,15,0,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5122,15,0,0,0,0,0,0,0,-1,0,132889,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5123,15,0,0,0,0,1,0,0,-1,0,132381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5124,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5125,15,0,3,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5126,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5127,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5128,15,0,3,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5129,9,0,0,0,22,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5130,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5131,9,0,0,0,13,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5132,9,0,0,0,22,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5133,15,0,3,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5134,12,0,0,0,0,0,0,0,-1,0,132179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5135,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5136,15,0,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5137,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5138,12,0,0,0,10,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5139,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5140,15,1,0,0,0,0,0,0,-1,0,134387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5141,9,0,0,0,12,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5142,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5143,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5145,9,0,0,0,8,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5147,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5148,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5149,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5150,9,0,0,0,14,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5151,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5152,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5153,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5154,9,0,0,0,24,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5155,9,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5156,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5158,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5160,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5163,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5164,12,0,0,0,0,0,0,0,-1,0,134303,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5165,12,0,0,0,0,0,0,0,-1,0,132914,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5166,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5167,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5168,12,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5169,12,0,0,0,0,0,0,0,-1,0,136065,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5170,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5171,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5172,15,1,0,0,0,0,0,0,-1,0,136210,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5173,15,1,7,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5174,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5175,15,1,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5176,15,1,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5177,15,1,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5178,15,1,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5179,12,0,0,0,5,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5180,4,0,3,2,29,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5181,4,1,7,16,28,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5182,2,8,1,17,15,1,0,0,-1,0,135327,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +5183,4,0,0,23,15,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5184,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5185,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5186,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5187,2,5,2,17,15,1,0,0,-1,0,133046,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +5188,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5189,12,0,0,0,0,0,0,0,-1,0,133977,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5190,12,0,0,0,0,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5191,2,7,1,13,19,3,0,0,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +5192,2,7,1,13,17,3,0,0,-1,0,135325,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5193,4,1,7,16,20,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5194,2,1,1,17,18,1,0,0,-1,0,135424,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +5195,4,1,7,10,17,0,0,0,-1,0,132957,7,0,20,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5196,2,0,1,13,17,3,0,0,-1,0,132416,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +5197,2,4,2,13,16,7,0,0,-1,0,132906,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +5198,2,19,2,26,17,0,0,0,-1,0,135139,21,0,50,0,6,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +5199,4,2,8,7,16,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5200,2,6,1,17,20,2,0,0,-1,0,135130,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +5201,2,10,2,17,18,2,0,0,-1,0,135150,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +5202,4,1,7,5,19,0,0,0,-1,0,135012,7,0,75,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5203,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5204,12,0,0,0,0,0,0,0,-1,0,132496,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5205,0,8,3,0,5,0,0,0,-1,0,134184,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5206,0,8,3,0,0,0,0,0,-1,0,134187,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5207,2,19,2,26,15,0,0,0,-1,0,135469,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +5208,2,19,2,26,15,0,0,0,-1,0,135468,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +5209,2,19,2,26,16,0,0,0,-1,0,135139,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5210,2,19,2,26,20,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5211,2,19,2,26,20,0,0,0,-1,0,135469,21,0,45,0,5,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +5212,2,19,2,26,12,0,0,0,-1,0,135139,21,0,35,0,2,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +5213,2,19,2,26,30,0,0,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +5214,2,19,2,26,27,0,0,0,-1,0,135463,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +5215,2,19,2,26,36,0,5253,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5216,2,19,2,26,40,0,5262,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +5217,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5218,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5219,12,0,0,0,0,0,0,0,-1,0,134413,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5220,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5221,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5222,4,0,1,12,23,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5223,0,8,1,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5226,4,0,1,12,32,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5227,0,8,1,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5228,0,8,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5229,0,8,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5230,4,0,1,23,21,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5231,4,0,1,23,33,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5232,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5233,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5234,12,0,0,0,0,0,0,0,-1,0,134434,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5235,2,19,2,26,0,0,0,0,-1,0,135139,21,0,25,0,2,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +5236,2,19,2,26,29,0,0,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +5237,0,8,3,0,24,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5238,2,19,2,26,40,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +5239,2,19,2,26,41,0,0,0,-1,0,133718,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +5240,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +5241,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5242,2,19,2,26,0,0,0,0,-1,0,135139,21,0,35,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,22,0,0,0,0 +5243,2,19,2,26,15,0,0,0,-1,0,135473,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +5244,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +5245,2,19,2,26,29,0,0,0,-1,0,135144,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5246,2,19,2,26,0,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +5247,2,19,2,26,0,0,0,0,-1,0,135144,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +5248,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,52,0,0,0,0 +5249,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,56,0,0,0,0 +5250,2,19,2,26,0,0,0,0,-1,0,135139,21,0,50,0,2,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +5251,12,0,0,0,0,0,0,0,-1,0,134715,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5252,2,19,2,26,0,0,0,0,-1,0,135466,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,31,0,0,0,0 +5253,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,85,0,0,0,0 +5254,4,2,8,3,15,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5255,2,0,1,21,10,3,0,0,-1,0,135421,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5256,2,4,2,13,30,3,0,0,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +5257,4,1,7,16,32,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5258,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5259,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5260,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5261,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5262,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5263,15,0,0,0,0,0,0,0,-1,0,132911,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5264,12,0,0,0,0,0,0,0,-1,0,133788,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5265,0,5,0,0,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5266,4,0,5,11,48,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5267,2,15,1,13,58,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +5268,15,0,0,0,0,0,0,0,-1,0,134321,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5269,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5270,12,0,0,0,0,0,0,0,-1,0,134523,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5271,12,0,0,0,0,0,0,0,-1,0,134531,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5272,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5273,12,0,0,0,0,0,0,0,-1,0,134231,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5274,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5275,4,2,8,6,0,0,0,0,-1,0,132490,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5276,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5277,2,10,2,17,1,2,0,0,-1,0,135144,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5278,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5279,2,15,1,13,0,3,0,0,-1,0,135650,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +5280,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5281,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5282,2,15,1,13,1,3,0,0,-1,0,134298,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5283,2,15,1,13,1,3,0,0,-1,0,135639,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5284,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5285,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5286,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5287,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5288,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5289,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +5291,2,4,2,21,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5292,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5293,2,5,2,17,1,1,0,0,-1,0,133477,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +5294,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5295,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5296,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5297,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5298,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5299,4,2,8,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5300,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5301,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5302,4,6,1,14,0,4,0,0,-1,0,134956,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5303,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +5304,2,10,2,17,1,2,0,0,-1,0,135144,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +5305,2,7,1,13,1,3,0,0,-1,0,135321,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5306,2,10,2,17,0,2,0,0,-1,0,135225,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +5307,4,2,8,1,0,0,0,0,-1,0,133072,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5308,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5309,2,3,1,26,0,0,0,0,-1,0,135613,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,33,0,0,0,0 +5310,4,1,7,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311,4,2,8,8,0,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5312,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5313,4,0,5,11,0,0,0,0,-1,0,134413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5314,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5315,4,1,7,9,0,0,0,0,-1,0,132610,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5316,4,2,8,5,0,0,0,0,-1,0,135009,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5317,4,2,8,5,0,0,0,0,-1,0,135010,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5318,2,1,1,17,0,1,0,0,-1,0,135572,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +5319,4,2,8,3,15,0,0,0,-1,0,135038,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5320,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5321,2,7,1,13,0,3,0,0,-1,0,135276,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +5322,2,5,2,17,0,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +5323,4,0,0,23,0,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5324,2,4,2,13,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5325,4,6,1,14,0,4,0,0,-1,0,134952,9,0,55,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5326,2,19,2,26,0,0,0,0,-1,0,135139,21,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5327,4,2,8,7,0,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5328,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5329,15,0,0,0,0,0,0,0,-1,0,134176,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5330,12,0,0,0,0,0,0,0,-1,0,132819,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5331,15,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5332,15,0,0,0,0,0,0,0,-1,0,134176,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5333,12,0,0,0,0,0,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5334,12,0,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5335,15,0,1,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5336,12,0,0,0,0,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5337,4,1,7,10,0,0,0,0,-1,0,132940,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5338,12,0,0,0,0,0,0,0,-1,0,134457,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5339,12,0,0,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5340,2,10,2,17,0,2,0,0,-1,0,135145,13,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +5341,4,2,8,5,0,0,0,0,-1,0,135011,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5342,0,5,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5343,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5344,2,0,1,13,0,3,0,0,-1,0,135419,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +5345,2,5,2,17,0,1,0,0,-1,0,133052,9,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +5346,2,2,2,15,0,0,0,0,-1,0,135496,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +5347,2,19,2,26,30,0,0,0,-1,0,135466,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +5348,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5349,0,5,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5350,0,5,7,0,1,0,0,0,-1,0,132793,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5351,4,0,4,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5352,12,0,0,0,10,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5353,12,0,0,0,0,0,0,0,-1,0,133471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5354,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5355,4,2,8,6,0,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5356,2,19,2,26,0,0,0,0,-1,0,135124,21,0,50,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +5357,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5358,4,3,5,1,0,0,0,0,-1,0,133072,10,0,55,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5359,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5360,12,0,0,0,0,0,0,0,-1,0,134459,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5361,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5362,15,0,0,0,0,1,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5363,15,0,0,0,0,1,0,0,-1,0,132905,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5364,15,0,0,0,0,1,0,0,-1,0,135234,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5365,15,0,0,0,0,1,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5366,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5367,15,0,0,0,0,1,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5368,15,0,0,0,0,1,0,0,-1,0,133611,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5369,15,0,0,0,0,1,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5370,15,0,0,0,0,1,0,0,-1,0,134435,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5371,15,0,0,0,0,0,0,0,-1,0,135240,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5372,12,0,0,0,0,0,0,0,-1,0,136224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5373,15,0,0,0,0,1,0,0,-1,0,133601,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5374,15,0,0,0,0,1,0,0,-1,0,134377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5375,15,0,0,0,0,1,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5376,15,0,0,0,0,1,0,0,-1,0,134442,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5377,15,0,0,0,0,1,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5379,15,0,1,0,3,0,0,0,-1,0,135426,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5380,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5381,12,0,0,0,0,0,0,0,-1,0,133461,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5382,12,0,0,0,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5383,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5385,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5386,12,0,0,0,0,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5387,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5388,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5389,12,0,0,0,0,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5390,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5391,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5392,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +5393,2,10,2,17,0,2,0,0,-1,0,135146,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5394,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5395,4,6,1,14,0,4,0,0,-1,0,134949,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5396,13,0,0,0,0,0,0,0,-1,0,134248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5397,13,0,0,0,0,0,0,0,-1,0,133587,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5398,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5399,4,3,5,8,0,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5400,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5401,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5402,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5403,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5404,4,2,8,3,18,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5405,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5406,0,8,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5407,0,8,1,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5408,4,0,1,23,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5409,4,0,1,23,9,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5410,2,14,0,0,0,0,0,0,-1,0,133486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5411,4,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5412,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5413,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5414,12,0,0,0,0,0,0,0,-1,0,134359,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5415,12,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5416,12,0,2,0,0,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5417,15,0,0,0,0,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5418,15,0,0,0,0,0,0,0,-1,0,133710,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5419,4,2,8,9,0,0,0,0,-1,0,132601,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5420,4,1,7,5,0,0,0,0,-1,0,135011,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5421,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5422,4,2,8,7,15,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5423,2,1,1,17,15,1,0,0,-1,0,132408,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,53,0,0,0,0 +5424,12,0,0,0,0,0,0,0,-1,0,134230,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5425,4,3,5,6,15,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5426,2,0,1,13,15,3,0,0,-1,0,132417,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +5427,15,0,0,0,0,1,0,0,-1,0,134378,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5428,15,0,0,0,0,1,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5429,15,0,0,0,0,1,0,0,-1,0,134566,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5430,15,0,0,0,0,1,0,0,-1,0,134335,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5431,15,0,0,0,0,1,0,0,-1,0,132788,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5432,15,0,0,0,0,1,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5433,15,0,0,0,0,1,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5434,15,0,0,0,0,1,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5435,15,0,0,0,0,1,0,0,-1,0,134436,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5436,15,0,0,0,0,1,0,0,-1,0,133854,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5437,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5438,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5439,11,2,0,18,1,0,0,0,-1,0,134409,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5440,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5441,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5442,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5443,4,6,1,14,15,4,0,0,-1,0,134948,9,0,75,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5444,4,1,7,16,14,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5445,12,0,0,0,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5446,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5447,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5448,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5449,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5450,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5451,15,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5453,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5454,12,0,0,0,0,0,0,0,-1,0,132606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5455,12,0,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5456,12,0,0,0,0,0,0,0,-1,0,134943,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5457,0,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5458,4,1,7,6,0,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5459,2,0,1,13,0,3,0,0,-1,0,132392,8,0,45,0,0,0,0,0,0,10,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +5460,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5461,12,0,0,0,0,0,0,0,-1,0,136065,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5462,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5463,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5464,12,0,0,0,0,0,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5465,7,8,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5466,7,8,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5467,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5468,7,8,0,0,0,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5469,7,8,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5470,7,8,0,0,0,0,0,0,-1,0,133721,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5471,7,8,0,0,0,0,0,0,-1,0,134370,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5472,0,5,0,0,1,0,0,0,-1,0,134024,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5473,0,5,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5474,0,5,0,0,1,0,0,0,-1,0,134016,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5475,13,0,0,0,0,0,0,0,-1,0,134239,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5476,0,5,0,0,5,0,0,0,-1,0,133891,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5477,0,5,0,0,5,0,0,0,-1,0,133748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5478,0,5,0,0,10,0,0,0,-1,0,133748,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5479,0,5,0,0,12,0,0,0,-1,0,133973,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5480,0,5,0,0,15,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5481,12,0,0,0,0,0,0,0,-1,0,133721,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5482,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5483,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5484,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5485,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5486,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5487,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5488,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5489,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5490,12,0,0,0,0,0,0,0,-1,0,134300,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5491,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5493,12,0,0,0,0,0,0,0,-1,0,134564,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5494,12,0,0,0,0,0,0,0,-1,0,133849,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5495,2,4,2,13,1,3,0,0,-1,0,133038,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5498,3,7,0,0,0,0,0,0,-1,0,134122,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5500,3,7,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5502,2,7,1,13,1,3,0,0,-1,0,135315,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +5503,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5504,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5505,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5506,15,0,3,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5507,7,3,8,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5508,12,0,0,0,0,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5509,0,8,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5510,0,8,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5511,0,8,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5512,0,8,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5513,0,0,1,0,38,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5514,4,0,1,0,28,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5515,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5516,2,15,1,13,11,3,0,0,-1,0,133723,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +5517,15,1,0,0,0,0,0,0,-1,0,134239,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5518,15,1,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5519,12,0,0,0,0,0,0,0,-1,0,134334,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5520,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5521,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5522,4,0,1,28,36,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5523,7,11,0,0,0,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5524,7,11,0,0,0,0,0,0,-1,0,134432,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5525,0,5,0,0,5,0,0,0,-1,0,134432,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5526,0,5,0,0,10,0,0,0,-1,0,134712,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5527,0,5,0,0,15,0,0,0,-1,0,134431,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5528,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5529,15,0,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5530,15,0,7,0,0,0,0,0,-1,0,133592,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5531,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5532,2,14,1,13,1,3,0,0,-1,0,135271,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +5533,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5534,12,0,0,0,0,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5535,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5536,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5537,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5538,12,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5539,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5540,2,15,1,13,18,3,0,0,-1,0,135641,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,26,0,0,0,0 +5541,2,4,2,13,23,3,0,0,-1,0,133042,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5542,4,1,7,16,14,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5543,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5544,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5545,2,6,1,17,1,1,0,0,-1,0,135574,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5546,2,18,2,26,1,0,0,0,-1,0,135530,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,14,0,0,0,0 +5547,12,0,0,0,0,0,0,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5548,2,2,2,15,1,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,14,0,0,0,0 +5549,2,15,1,13,1,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5550,2,3,1,26,1,0,0,0,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,14,0,0,0,0 +5551,2,0,1,21,1,3,0,0,-1,0,132392,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5552,2,1,1,17,1,1,0,0,-1,0,132395,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5553,2,4,2,21,1,3,0,0,-1,0,133478,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5554,2,5,2,17,1,1,0,0,-1,0,133480,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +5555,2,7,1,21,1,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0 +5556,2,8,1,17,1,1,0,0,-1,0,135276,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5557,2,17,1,17,1,2,0,0,-1,0,135129,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5558,2,10,2,17,1,2,0,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5559,15,0,2,0,1,0,0,0,-1,0,135419,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5560,2,19,2,26,1,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0 +5561,2,14,1,21,1,7,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +5562,15,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5563,15,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5564,15,1,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5565,15,1,0,0,0,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5566,15,0,3,0,0,0,0,0,-1,0,133721,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5567,15,0,2,0,0,0,0,0,-1,0,136245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5568,6,3,2,24,13,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0 +5569,15,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5570,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5571,1,0,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5572,1,0,8,18,0,0,0,0,-1,0,133637,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5573,1,0,8,18,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5574,1,0,8,18,0,0,0,0,-1,0,133627,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5575,1,0,8,18,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5576,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5577,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5578,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5579,2,5,2,17,0,1,0,0,-1,0,133052,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0 +5580,2,4,2,21,0,3,0,0,-1,0,133057,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5581,2,10,2,17,0,2,0,0,-1,0,135148,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5582,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5583,12,0,0,0,0,0,0,0,-1,0,134303,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5584,12,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5585,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5586,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +5587,2,4,2,13,0,3,0,0,-1,0,133490,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5588,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5589,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5590,4,1,7,9,0,0,0,0,-1,0,132612,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5591,4,1,7,16,0,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5592,4,3,5,6,0,0,0,0,-1,0,132499,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5593,4,6,1,14,0,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5594,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5595,2,5,2,17,0,1,0,0,-1,0,133052,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,24,0,0,0,0 +5596,2,2,2,15,0,0,0,0,-1,0,135489,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +5597,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5598,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5599,2,0,1,13,1,3,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5600,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5601,15,0,8,0,0,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5602,15,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5603,1,0,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5604,2,19,2,26,0,0,0,0,-1,0,135139,21,0,30,0,6,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +5605,2,15,1,13,0,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +5606,4,1,7,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5607,4,3,5,3,0,0,0,0,-1,0,135038,10,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5608,4,1,7,1,35,0,0,0,-1,0,133072,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5609,4,2,8,6,0,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5610,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5611,4,0,0,23,0,7,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5612,4,2,8,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5613,2,10,2,17,0,2,0,0,-1,0,135160,13,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +5614,2,8,1,17,0,1,0,0,-1,0,135328,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,81,0,0,0,0 +5615,2,8,1,17,0,1,0,0,-1,0,135352,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,52,0,0,0,0 +5616,2,15,1,13,42,3,0,0,-1,0,135341,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +5617,4,2,8,7,0,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5618,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5619,12,0,0,0,0,0,0,0,-1,0,134721,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5620,12,0,0,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5621,12,0,0,0,0,0,0,0,-1,0,134765,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5622,4,0,4,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5623,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5624,4,1,7,1,33,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5625,4,2,8,1,0,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5626,2,1,1,17,0,1,0,0,-1,0,132417,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,55,0,0,0,0 +5627,2,15,1,13,0,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +5628,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5629,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5630,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5631,0,1,3,0,4,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5632,0,1,3,0,15,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5633,0,1,0,0,25,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5634,0,1,3,0,20,0,0,0,-1,0,134715,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5635,7,11,1,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5636,15,0,0,0,0,0,0,0,-1,0,132923,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5637,7,11,1,0,0,0,0,0,-1,0,133725,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5638,12,0,0,0,0,0,0,0,-1,0,132620,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5639,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5640,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5641,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5642,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5643,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5644,9,0,0,0,4,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5645,12,0,0,0,0,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5646,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5647,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5648,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5649,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5650,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5651,12,0,0,0,0,0,0,0,-1,0,135638,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5652,12,0,0,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5653,12,0,0,0,0,0,0,0,-1,0,134955,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5654,15,1,3,0,24,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5655,15,5,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5656,15,5,0,0,30,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5657,9,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5658,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5659,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5660,9,0,0,0,16,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5661,9,0,0,0,26,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5662,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5663,15,0,0,0,30,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5664,12,0,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5665,15,5,0,0,30,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5666,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5667,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5668,15,5,0,0,30,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5669,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5670,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5671,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5672,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5673,9,0,0,0,28,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5674,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5675,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5676,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5677,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5679,9,0,0,0,36,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5680,9,0,0,0,20,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5681,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5682,9,0,0,0,38,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5683,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5684,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5685,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5686,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5687,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5688,9,0,0,0,0,0,0,0,-1,0,132089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5689,12,0,0,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5690,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5691,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5692,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5693,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5694,12,0,0,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5695,12,0,0,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5696,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5697,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5698,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5699,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5700,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5701,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5702,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5703,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5704,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5705,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5706,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5707,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5708,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5709,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5710,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5711,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5712,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5713,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5714,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5715,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5716,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5717,12,0,0,0,0,0,0,0,-1,0,133465,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5718,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5719,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5720,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5721,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5722,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5723,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5724,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5725,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5726,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5727,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5728,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5729,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5730,9,0,0,0,4,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5731,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5732,12,0,0,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5733,12,0,0,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5734,12,0,0,0,0,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5735,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5736,12,0,0,0,0,0,0,0,-1,0,132154,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5737,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5738,15,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5739,4,2,8,5,33,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5740,0,8,0,0,0,0,0,0,-1,0,135808,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5741,15,0,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5742,2,15,1,13,35,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,5,0,5,0,0,23,0,0,0,0,44,0,0,0,0 +5743,4,0,0,11,35,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5744,2,7,1,13,7,3,0,0,-1,0,135325,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +5745,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5746,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5747,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5748,2,2,2,15,11,0,0,0,-1,0,135495,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,26,0,0,0,0 +5749,2,1,1,17,18,1,0,0,-1,0,132397,9,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,66,0,0,0,0 +5750,4,3,5,6,18,0,0,0,-1,0,132492,10,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5751,4,1,7,16,20,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5752,2,15,1,13,21,3,0,0,-1,0,135652,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +5753,4,2,8,1,26,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5754,4,0,3,2,26,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5755,4,3,5,5,30,0,0,0,-1,0,132739,10,0,100,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5756,2,15,1,13,32,3,0,0,-1,0,135660,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +5757,2,4,2,13,0,7,0,0,-1,0,133486,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +5758,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5759,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5760,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5761,2,5,2,17,0,1,0,0,-1,0,133052,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5762,1,0,8,18,0,0,0,0,-1,0,133623,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5763,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5764,1,0,8,18,0,0,0,0,-1,0,133631,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5765,1,0,8,18,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5766,4,1,7,20,22,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5767,4,1,7,20,4,0,0,0,-1,0,132679,7,0,45,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5768,12,0,0,0,0,0,0,0,-1,0,134941,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5769,12,0,0,0,0,0,0,0,-1,0,134941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5770,4,1,7,20,25,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5771,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5772,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5773,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5774,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5775,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5776,2,10,2,17,0,2,0,0,-1,0,135154,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5777,2,1,1,17,0,1,0,0,-1,0,135423,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5778,2,10,2,17,0,2,0,0,-1,0,135139,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +5779,2,8,1,17,0,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +5780,4,2,8,6,13,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5781,4,2,8,5,14,0,0,0,-1,0,132634,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5782,4,2,8,5,29,0,0,0,-1,0,132634,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5783,4,2,8,9,33,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5784,7,6,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5785,7,6,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5786,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5787,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5788,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5789,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5790,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5791,12,0,0,0,29,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5792,12,0,0,0,0,0,0,0,-1,0,133434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5793,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5794,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5795,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5796,12,0,0,0,0,0,0,0,-1,0,134305,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5797,12,0,0,0,0,0,0,0,-1,0,134456,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5798,12,0,0,0,0,0,0,0,-1,0,132997,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5799,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5800,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5801,12,0,0,0,0,0,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5802,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5803,12,0,0,0,0,0,0,0,-1,0,133849,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5804,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5805,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5806,12,0,0,0,0,0,0,0,-1,0,132623,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5807,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5808,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5809,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5810,12,0,0,0,0,0,0,0,-1,0,134368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5811,12,0,0,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5812,4,1,7,20,0,0,0,0,-1,0,132679,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5813,2,8,1,17,0,1,0,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,81,0,0,0,0 +5814,4,2,8,5,0,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5815,2,5,2,17,0,1,0,0,-1,0,133484,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,91,0,0,0,0 +5816,0,0,3,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5817,2,2,2,15,0,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +5818,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +5819,4,3,5,1,28,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,185,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5820,4,1,7,3,0,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5821,4,2,8,8,0,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5822,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5823,0,8,0,0,5,0,0,0,-1,0,134527,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5824,12,0,0,0,0,0,0,0,-1,0,134414,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5825,12,0,0,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5826,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5827,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5828,4,0,5,11,1,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,315,315,315,315,315,0,0,0,0,0,0,0,0,0,0 +5829,15,0,0,0,0,0,0,0,-1,0,133707,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5830,12,0,0,0,0,0,0,0,-1,0,134167,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5831,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5832,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5833,12,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5834,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5835,12,0,0,0,0,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5836,12,0,0,0,0,0,0,0,-1,0,132595,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5837,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5838,12,0,0,0,0,0,0,0,-1,0,134252,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5839,15,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5840,12,0,0,0,0,0,0,0,-1,0,134317,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5841,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5842,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5843,12,0,0,0,0,0,0,0,-1,0,134295,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5844,12,0,0,0,0,0,0,0,-1,0,135239,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5845,0,0,0,0,15,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5846,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5847,12,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5848,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5849,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5850,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5851,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5852,12,0,0,0,0,0,0,0,-1,0,134330,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5853,12,0,0,0,0,0,0,0,-1,0,135035,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5854,12,0,0,0,0,0,0,0,-1,0,134295,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5855,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5856,2,16,1,25,1,0,0,0,-1,0,132392,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5857,12,0,0,0,0,0,0,0,-1,0,134142,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5858,12,0,0,0,0,0,0,0,-1,0,134143,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5859,0,8,0,0,0,0,0,0,-1,0,132385,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5860,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5861,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5862,12,0,0,0,0,0,0,0,-1,0,132385,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5863,15,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5864,15,5,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5865,12,0,0,0,0,0,0,0,-1,0,132385,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5866,12,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5867,12,0,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5868,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5869,12,0,0,0,0,0,0,0,-1,0,132368,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5870,2,16,1,25,1,0,0,0,-1,0,135128,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +5871,15,0,3,0,0,0,0,0,-1,0,132368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5872,15,5,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5873,15,5,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5874,15,0,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5875,15,0,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5876,12,0,0,0,0,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5877,12,0,0,0,28,0,0,0,-1,0,135034,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5878,0,8,0,0,0,0,0,0,-1,0,133849,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5879,12,0,0,0,0,0,0,0,-1,0,133281,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5880,0,0,0,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5881,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5882,12,0,0,0,0,0,0,0,-1,0,133467,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5883,12,0,0,0,0,0,0,0,-1,0,134343,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5884,12,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5896,12,0,0,0,0,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5897,12,0,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5916,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5917,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5918,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5919,12,0,0,0,0,0,0,0,-1,0,134950,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5936,4,2,8,6,0,0,0,0,-1,0,132493,7,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5937,13,0,0,0,0,0,0,0,-1,0,134075,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5938,12,0,0,0,0,0,0,0,-1,0,134321,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5939,4,2,8,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5940,4,6,1,14,0,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5941,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5942,12,0,0,0,0,0,0,0,-1,0,133278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5943,4,3,5,9,20,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5944,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5945,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5946,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5947,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5948,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5949,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5950,12,0,0,0,0,0,0,0,-1,0,134951,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5951,0,0,0,0,0,0,0,0,-1,0,133677,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5952,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5953,2,7,1,13,0,3,0,0,-1,0,133069,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +5954,2,7,1,13,0,3,0,0,-1,0,132312,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +5956,2,14,1,21,1,0,0,0,-1,0,133057,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +5957,4,2,8,5,3,0,0,0,-1,0,132760,7,0,50,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5958,4,2,8,7,16,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5959,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5960,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5961,4,2,8,7,18,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5962,4,2,8,7,27,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5963,4,2,8,7,29,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5964,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5965,4,1,7,16,32,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5966,4,2,8,10,33,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5967,4,1,7,6,13,0,0,0,-1,0,132499,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5968,4,2,8,8,10,0,0,0,-1,0,132537,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5969,4,1,7,16,18,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5970,4,1,7,10,18,0,0,0,-1,0,132953,7,0,20,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5971,4,1,7,16,21,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5972,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5973,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5974,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5975,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5976,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5996,0,2,3,0,8,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5997,0,2,3,0,1,0,0,0,-1,0,134843,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5998,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6016,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6036,2,15,1,13,34,3,0,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +6037,7,7,4,0,0,0,0,0,-1,0,133222,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6038,0,5,0,0,25,0,0,0,-1,0,132386,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6039,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6040,4,3,5,9,32,0,0,0,-1,0,132609,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6041,0,6,8,0,0,0,0,0,-1,0,135834,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6042,0,6,8,0,0,0,0,0,-1,0,133596,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6043,0,6,8,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6044,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6045,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6046,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6047,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6048,0,1,3,0,17,0,0,0,-1,0,134824,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6049,0,1,3,0,23,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6050,0,1,3,0,28,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6051,0,1,3,0,10,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6052,0,1,3,0,28,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6053,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6054,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6055,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6056,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6057,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6058,4,2,8,6,0,0,0,0,-1,0,132492,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6059,4,2,8,5,0,0,0,0,-1,0,132721,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6060,4,1,7,9,0,0,0,0,-1,0,132609,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6061,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6062,4,1,7,9,0,0,0,0,-1,0,132606,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6063,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6064,12,0,0,0,0,0,0,0,-1,0,134375,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6065,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6066,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6067,12,0,0,0,0,0,0,0,-1,0,133855,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6068,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6069,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6070,4,2,8,9,0,0,0,0,-1,0,132604,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6071,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6072,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6073,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6074,0,0,0,0,0,0,0,0,-1,0,134374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6075,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6076,4,1,7,7,0,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6077,12,0,0,0,0,0,0,0,-1,0,134232,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6078,4,6,1,14,0,4,0,0,-1,0,134949,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6079,12,0,0,0,0,0,0,0,-1,0,134231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6080,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6081,12,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6082,12,0,0,0,0,0,0,0,-1,0,136124,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6083,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6084,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6085,4,2,8,5,0,0,0,0,-1,0,132724,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6086,12,0,0,0,0,0,0,0,-1,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6087,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6088,2,16,2,25,1,7,0,0,-1,0,135279,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +6089,12,0,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6090,12,0,0,0,0,0,0,0,-1,0,133485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6091,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6092,4,2,8,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6093,2,5,2,17,0,1,0,0,-1,0,133482,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,79,0,0,0,0 +6094,2,1,1,17,0,1,0,0,-1,0,135419,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +6095,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6096,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6097,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6098,4,1,7,20,1,0,0,0,-1,0,132674,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6116,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6117,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6118,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6119,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6120,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6121,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6122,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6123,4,1,7,20,1,0,0,0,-1,0,132675,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6124,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6125,4,0,7,4,0,0,0,0,-1,0,132719,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6126,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6127,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6129,4,1,7,20,1,0,0,0,-1,0,132657,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6130,4,0,7,4,0,0,0,0,-1,0,132716,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6131,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6132,9,0,0,0,12,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6133,9,0,0,0,14,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6134,4,0,7,4,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6135,4,2,8,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6136,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6137,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6138,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6139,4,1,7,20,1,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6140,4,1,7,20,1,0,0,0,-1,0,132663,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6144,4,1,7,20,1,0,0,0,-1,0,132654,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6145,12,0,0,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6146,12,0,0,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6147,4,2,8,6,5,0,0,0,-1,0,132493,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6148,4,1,7,8,5,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6149,0,1,3,0,31,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6150,15,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6166,12,0,0,0,0,0,0,0,-1,0,133726,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6167,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6168,12,0,0,0,0,0,0,0,-1,0,134295,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6169,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6170,12,0,0,0,0,0,0,0,-1,0,133640,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6171,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6172,12,0,0,0,30,0,0,0,-1,0,132620,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6173,4,1,7,8,0,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6174,2,14,6,17,15,3,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +6175,12,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6176,4,6,1,14,0,4,0,0,-1,0,134950,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6177,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6178,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6179,4,1,7,16,14,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6180,4,3,5,5,10,0,0,0,-1,0,132634,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6181,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6182,4,0,2,23,5,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6183,0,8,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6184,12,0,0,0,0,0,0,0,-1,0,134294,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6185,4,1,7,16,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6186,2,8,1,17,0,1,0,0,-1,0,135356,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,49,0,0,0,0 +6187,4,6,1,14,0,4,0,0,-1,0,134951,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6188,4,3,5,8,0,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6189,4,3,5,3,0,0,0,0,-1,0,135036,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6190,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6191,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6192,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6193,12,0,0,0,0,0,0,0,-1,0,133644,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6194,2,0,1,13,0,3,0,0,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,41,0,0,0,0 +6195,4,3,5,5,10,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6196,2,4,2,13,29,3,0,0,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +6197,4,2,8,5,17,0,0,0,-1,0,132760,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6198,4,2,8,9,25,0,0,0,-1,0,132600,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6199,4,0,5,11,19,0,0,0,-1,0,134321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6200,4,3,5,6,24,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6201,4,2,8,8,5,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6202,4,1,7,10,6,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6203,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6204,4,2,8,1,27,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6205,2,5,2,17,10,1,0,0,-1,0,134435,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,28,0,0,0,0 +6206,2,1,1,17,10,1,0,0,-1,0,134708,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +6207,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6208,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6209,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6210,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6211,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6212,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6213,0,8,0,0,5,0,0,0,-1,0,135233,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6214,2,5,2,17,11,1,0,0,-1,0,133055,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +6215,2,10,2,17,0,2,0,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,21,0,0,0,0 +6216,7,12,7,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6217,7,12,1,0,0,5,0,0,-1,0,133942,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6218,7,12,1,0,1,5,0,0,-1,0,135225,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6219,2,14,1,21,0,3,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +6220,2,15,1,13,20,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +6222,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6223,4,6,1,14,0,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6224,2,8,1,17,1,1,0,0,-1,0,135313,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6225,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6226,4,1,7,20,18,0,0,0,-1,0,132665,7,0,75,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6227,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6228,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6229,2,14,1,13,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6230,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +6231,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +6232,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6233,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6234,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6235,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6236,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6237,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6238,4,1,7,20,5,0,0,0,-1,0,132662,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6239,4,1,7,5,7,0,0,0,-1,0,132681,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6240,4,1,7,5,7,0,0,0,-1,0,132678,7,0,50,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6241,4,1,7,20,5,0,0,0,-1,0,132645,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6242,4,1,7,20,9,0,0,0,-1,0,132664,7,0,50,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6243,4,1,7,20,13,0,0,0,-1,0,132663,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6245,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6246,12,0,0,0,0,0,0,0,-1,0,134294,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6247,12,0,0,0,0,0,0,0,-1,0,133722,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6248,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6249,12,0,0,0,0,0,0,0,-1,0,134250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6250,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6251,12,0,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6252,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6253,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6254,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6256,2,20,2,17,0,1,0,0,-1,0,132932,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +6257,12,0,0,0,0,0,0,0,-1,0,133707,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6258,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6259,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6260,7,11,3,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6261,7,11,3,0,0,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6262,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6263,4,1,7,20,15,0,0,0,-1,0,135017,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6264,4,1,7,20,18,0,0,0,-1,0,132665,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6265,15,1,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6266,4,1,7,5,8,0,455,0,-1,0,135009,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6267,4,1,7,7,7,0,538,0,-1,0,134586,7,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6268,4,2,8,5,8,0,476,0,-1,0,135010,7,0,60,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6269,4,2,8,7,7,0,559,0,-1,0,134585,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6270,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6271,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6272,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6273,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6274,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6275,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6276,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6277,12,0,0,0,0,0,0,0,-1,0,133463,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6278,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6279,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6280,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6281,12,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6282,4,1,7,7,0,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6283,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6284,12,0,0,0,0,0,0,0,-1,0,134416,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6285,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6286,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6287,12,0,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6288,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6289,7,8,0,0,5,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6290,0,5,8,0,1,0,0,0,-1,0,133893,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6291,7,8,8,0,1,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6292,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6293,15,0,0,0,0,0,0,0,-1,0,136168,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6294,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6295,15,0,0,23,0,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6296,15,0,0,0,0,0,0,0,-1,0,134360,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6297,15,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6298,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6299,0,5,8,0,1,0,0,0,-1,0,133914,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6300,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6301,15,0,0,0,0,0,0,0,-1,0,133728,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6302,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6303,7,8,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6304,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6305,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6306,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6307,15,0,0,0,0,0,0,0,-1,0,132799,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6308,7,8,0,0,15,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6309,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6310,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6311,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6312,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6313,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6314,4,1,7,16,20,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6315,2,18,2,26,22,0,0,0,-1,0,135530,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,61,0,0,0,0 +6316,0,5,0,0,5,0,0,0,-1,0,134712,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6317,7,8,0,0,5,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6318,2,10,2,17,21,2,0,0,-1,0,135164,13,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +6319,4,2,8,6,19,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6320,4,6,1,14,20,4,0,0,-1,0,134949,9,0,95,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6321,4,0,5,11,21,0,0,0,-1,0,132518,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6322,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6323,2,4,2,13,20,3,0,0,-1,0,133477,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +6324,4,1,7,20,20,0,0,0,-1,0,132672,7,0,80,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6325,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6326,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6327,2,5,2,17,32,1,0,0,-1,0,133484,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,156,0,0,0,0 +6328,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6329,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6330,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6331,2,15,1,13,31,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +6332,4,0,4,11,17,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6333,2,15,1,13,17,3,0,0,-1,0,135646,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6334,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6335,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6336,4,3,5,5,8,0,497,0,-1,0,132624,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6337,4,3,5,7,7,0,580,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6338,7,12,1,0,0,5,0,0,-1,0,135138,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6339,7,12,1,0,1,5,0,0,-1,0,135138,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6340,4,1,7,16,20,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6341,4,0,0,23,14,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6342,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6343,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6344,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6345,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6346,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6347,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6348,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6349,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6350,4,3,5,8,13,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6351,15,4,2,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6352,15,4,2,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6353,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6354,15,0,2,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6355,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6356,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6357,15,4,2,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6358,7,11,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6359,7,11,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6360,2,4,2,13,20,3,0,0,-1,0,133890,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +6361,7,8,0,0,5,0,0,0,-1,0,133911,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6362,7,8,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6363,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6364,15,0,0,23,0,0,0,0,-1,0,133916,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6365,2,20,2,17,5,1,0,0,-1,0,132932,12,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +6366,2,20,2,17,15,1,0,0,-1,0,132932,12,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,43,0,0,0,0 +6367,2,20,1,17,25,1,0,0,-1,0,132931,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +6368,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6369,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6370,7,11,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6371,7,11,0,0,0,0,0,0,-1,0,134818,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6372,0,1,3,0,10,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6373,0,2,3,0,18,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6374,7,12,7,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6375,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6376,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6377,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6378,4,1,7,16,12,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6379,4,2,8,6,12,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6380,4,6,1,14,13,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6381,4,1,7,16,18,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6382,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6383,4,6,1,14,19,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6384,4,0,7,4,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6385,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6386,4,3,5,7,25,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6387,4,3,5,9,24,0,0,0,-1,0,132618,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6388,4,3,5,3,25,0,0,0,-1,0,135051,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6389,4,3,5,1,26,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6390,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6391,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6392,4,1,7,6,20,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6393,4,1,7,10,23,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6394,4,1,7,8,22,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6395,4,1,7,3,24,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6396,4,2,8,5,27,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6397,4,2,8,10,24,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6398,4,2,8,6,24,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6399,4,2,8,3,25,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6400,4,6,1,14,26,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6401,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6402,4,3,5,7,31,0,0,0,-1,0,134589,10,0,75,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6403,4,3,5,9,28,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6404,4,3,5,3,30,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6405,4,1,7,7,31,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6406,4,1,7,8,29,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6407,4,1,7,9,28,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6408,4,2,8,10,29,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6409,4,2,8,6,29,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6410,4,2,8,9,28,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6411,4,3,5,5,36,0,0,0,-1,0,132743,10,0,100,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6412,4,3,5,8,34,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6413,4,3,5,9,32,0,0,0,-1,0,132617,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6414,4,0,1,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6415,4,1,7,20,36,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6416,4,1,7,8,33,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6417,4,1,7,16,32,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6418,4,1,7,6,32,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6419,4,2,8,10,33,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6420,4,2,8,8,34,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6421,4,2,8,6,33,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6422,4,2,8,1,34,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6423,4,3,5,8,40,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6424,4,1,7,16,37,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6425,4,3,5,6,39,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6426,4,3,5,9,38,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6427,4,1,7,20,41,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6428,4,1,7,10,38,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6429,4,1,7,1,39,0,0,0,-1,0,133090,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6430,4,2,8,5,41,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6431,4,2,8,8,38,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6432,4,1,7,16,36,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6433,4,2,8,1,38,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6434,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6435,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6436,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6437,12,0,1,0,0,0,0,0,-1,0,134257,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6438,15,0,0,0,0,0,0,0,-1,0,132609,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6439,15,0,0,0,0,0,0,0,-1,0,132609,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6440,4,0,1,11,43,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6441,12,0,4,0,0,0,0,0,-1,0,134361,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6442,12,0,0,0,0,0,0,0,-1,0,134564,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6443,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6444,15,0,0,0,0,0,0,0,-1,0,136040,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6445,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6446,1,0,8,18,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6447,4,6,1,14,15,4,0,0,-1,0,134967,9,0,75,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6448,2,15,1,13,17,3,0,0,-1,0,135646,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +6449,4,1,7,16,17,0,0,0,-1,0,132656,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6450,0,7,7,0,0,0,0,0,-1,0,133671,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6451,0,7,7,0,0,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6452,0,8,7,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6453,0,8,7,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6454,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6455,15,0,0,0,0,0,0,0,-1,0,134955,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6456,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6457,15,0,0,0,0,0,0,0,-1,0,134064,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6458,0,8,0,0,5,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6459,4,3,5,8,18,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6460,4,3,5,6,19,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6461,4,1,7,3,20,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6462,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6463,4,0,5,11,20,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6464,0,0,0,0,0,0,0,0,-1,0,136016,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6465,4,1,7,20,17,0,0,0,-1,0,132677,7,0,70,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6466,4,1,7,16,13,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6467,4,2,8,10,16,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6468,4,2,8,6,18,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6469,2,2,2,15,19,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +6470,7,6,0,0,0,0,0,0,-1,0,134304,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6471,7,6,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6472,2,4,2,13,19,3,0,0,-1,0,135472,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +6473,4,2,8,5,18,0,0,0,-1,0,135020,7,0,90,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6474,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6475,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6476,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6477,4,1,7,6,0,0,0,0,-1,0,132491,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6478,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6479,12,0,0,0,0,0,0,0,-1,0,133294,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6480,4,2,8,7,0,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6481,4,3,5,10,0,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6482,4,1,7,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6486,0,0,0,0,0,0,0,0,-1,0,134305,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6487,12,0,0,0,0,0,0,0,-1,0,136140,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6488,12,0,0,0,0,0,0,0,-1,0,134455,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6489,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6490,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6491,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6492,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6493,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6494,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6495,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6496,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6497,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6498,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6499,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6500,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6501,12,0,0,0,0,0,0,0,-1,0,134257,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6502,4,3,5,5,0,0,0,0,-1,0,132626,10,0,85,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6503,4,1,7,20,0,0,0,0,-1,0,132642,7,0,60,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6504,2,7,1,13,0,3,0,0,-1,0,135314,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6505,2,10,2,17,0,2,0,0,-1,0,135141,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +6506,4,3,5,8,6,0,0,0,-1,0,132582,10,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6507,4,3,5,9,5,0,0,0,-1,0,132613,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6508,4,1,7,16,4,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6509,4,3,5,6,5,0,0,0,-1,0,132511,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6510,4,3,5,10,6,0,0,0,-1,0,132945,10,0,20,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6511,4,1,7,20,6,0,0,0,-1,0,135012,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6512,4,1,7,20,8,0,455,0,-1,0,132663,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6513,4,1,7,6,5,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6514,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6515,4,1,7,10,6,0,0,0,-1,0,132955,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6516,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6517,4,2,8,6,5,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6518,4,2,8,8,6,0,0,0,-1,0,132542,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6519,4,2,8,9,5,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6520,4,1,7,16,4,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6521,4,2,8,10,6,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6522,0,5,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6523,4,2,8,5,12,0,0,0,-1,0,132716,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6524,4,2,8,5,17,0,0,0,-1,0,132716,7,0,75,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6525,4,2,8,5,22,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6526,4,2,8,5,32,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6527,4,1,7,20,8,0,0,0,-1,0,132654,7,0,50,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6528,4,1,7,20,12,0,0,0,-1,0,132663,7,0,55,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6529,0,8,0,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6530,0,8,0,0,0,0,0,0,-1,0,134324,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6531,4,1,7,20,13,0,0,0,-1,0,132655,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6532,0,8,0,0,0,0,0,0,-1,0,134139,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6533,7,3,0,0,0,0,0,0,-1,0,133982,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6534,12,0,0,0,0,0,0,0,-1,0,133233,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6535,12,0,0,0,0,0,0,0,-1,0,134458,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6536,4,1,7,5,14,0,457,0,-1,0,135024,7,0,60,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6537,4,1,7,8,10,0,791,0,-1,0,132537,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6538,4,1,7,20,14,0,457,0,-1,0,132656,7,0,60,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6539,4,1,7,6,11,0,876,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6540,4,1,7,7,13,0,540,0,-1,0,134590,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6541,4,1,7,10,11,0,708,0,-1,0,132957,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6542,4,1,7,16,10,0,959,0,-1,0,133769,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6543,4,1,7,9,10,0,1043,0,-1,0,132611,7,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6544,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6545,4,3,5,5,13,0,498,0,-1,0,132638,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6546,4,3,5,7,12,0,582,0,-1,0,134590,10,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6547,4,3,5,10,12,0,750,0,-1,0,132946,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6548,4,3,5,6,11,0,918,0,-1,0,132514,10,0,25,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6549,4,1,7,16,9,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6550,4,3,5,9,10,0,1085,0,-1,0,132611,10,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6551,4,3,5,8,12,0,834,0,-1,0,132535,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6552,4,2,8,5,14,0,478,0,-1,0,135015,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6553,4,2,8,7,13,0,561,0,-1,0,134586,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6554,4,2,8,10,12,0,729,0,-1,0,132949,7,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6555,4,1,7,16,9,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6556,4,2,8,9,10,0,1064,0,-1,0,132604,7,0,20,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6557,4,2,8,8,11,0,813,0,-1,0,132539,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6558,4,2,8,6,10,0,896,0,-1,0,132492,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6559,4,6,1,14,11,4,1998,0,-1,0,134955,9,0,55,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6560,4,6,1,14,12,4,1998,0,-1,0,134956,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6561,4,1,7,5,16,0,0,0,-1,0,135006,7,0,60,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6562,4,1,7,8,16,0,793,0,-1,0,132539,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6563,4,1,7,9,15,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6564,4,1,7,16,16,0,961,0,-1,0,133767,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6565,4,1,7,10,17,0,710,0,-1,0,132950,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6566,4,1,7,3,19,0,0,0,-1,0,135044,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6567,4,1,7,5,20,0,459,0,-1,0,135012,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6568,4,1,7,7,19,0,542,0,-1,0,134581,7,0,50,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6569,4,1,7,20,20,0,459,0,-1,0,132683,7,0,65,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6570,4,1,7,6,17,0,878,0,-1,0,132514,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6571,4,6,1,14,17,4,2010,0,-1,0,134948,9,0,70,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6572,4,6,1,14,18,4,2010,0,-1,0,134952,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6573,4,3,5,8,18,0,836,0,-1,0,132582,10,0,45,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6574,4,3,5,9,17,0,1088,0,-1,0,132613,10,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6575,4,1,7,16,15,0,1003,0,-1,0,133757,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6576,4,3,5,6,17,0,920,0,-1,0,132511,10,0,30,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6577,4,3,5,10,18,0,752,0,-1,0,132945,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6578,4,3,5,7,18,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6579,4,3,5,3,19,0,0,0,-1,0,135058,10,0,55,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6580,4,3,5,5,18,0,500,0,-1,0,132626,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6581,4,2,8,6,16,0,898,0,-1,0,132505,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6582,4,2,8,8,17,0,815,0,-1,0,132539,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6583,4,2,8,9,16,0,1066,0,-1,0,132606,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6584,4,2,8,5,20,0,480,0,-1,0,132725,7,0,80,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6585,4,1,7,16,15,0,982,0,-1,0,133754,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6586,4,2,8,10,18,0,731,0,-1,0,132961,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6587,4,2,8,7,19,0,563,0,-1,0,134582,7,0,60,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6588,4,2,8,3,18,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6589,4,0,5,11,21,0,3475,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6590,4,3,5,8,24,0,838,0,-1,0,132589,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6591,4,3,5,9,22,0,1089,0,-1,0,132609,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6592,4,3,5,5,24,0,502,0,-1,0,132629,10,0,100,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6593,4,1,7,16,21,0,1005,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6594,4,3,5,6,23,0,922,0,-1,0,132500,10,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6595,4,3,5,10,23,0,754,0,-1,0,132960,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6596,4,3,5,7,23,0,586,0,-1,0,134586,10,0,75,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6597,4,3,5,3,23,0,1174,0,-1,0,135038,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6598,4,6,1,14,23,4,2022,0,-1,0,134956,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6599,4,6,1,14,24,4,2022,0,-1,0,134951,9,0,85,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6600,4,2,8,6,22,0,900,0,-1,0,132514,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6601,4,2,8,8,23,0,817,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6602,4,2,8,9,22,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6603,4,2,8,5,25,0,481,0,-1,0,132716,7,0,85,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6604,4,1,7,16,21,0,984,0,-1,0,133759,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6605,4,2,8,10,23,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6607,4,2,8,7,25,0,565,0,-1,0,134587,7,0,65,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6608,4,1,7,5,22,0,0,0,-1,0,132722,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6609,4,1,7,5,27,0,461,0,-1,0,135012,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6610,4,1,7,20,27,0,461,0,-1,0,132660,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6611,4,1,7,6,24,0,880,0,-1,0,133693,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6612,4,1,7,8,23,0,796,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6613,4,1,7,9,23,0,1048,0,-1,0,132610,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6614,4,1,7,16,23,0,964,0,-1,0,133768,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6615,4,1,7,10,24,0,712,0,-1,0,132950,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6616,4,1,7,7,27,0,545,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6617,4,1,7,3,25,0,1132,0,-1,0,135033,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6618,2,4,2,13,1,0,0,0,-1,0,134333,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +6619,9,0,0,0,10,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6620,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6621,9,0,0,0,10,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6622,2,7,1,13,58,3,0,0,-1,0,135349,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +6623,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6624,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6625,12,0,0,0,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6626,12,0,0,0,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6627,4,3,5,5,20,0,0,0,-1,0,132743,10,0,120,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6628,4,1,7,10,17,0,0,0,-1,0,136076,7,0,20,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6629,4,1,7,16,18,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6630,4,6,1,14,20,4,0,0,-1,0,134956,9,0,90,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6631,2,10,2,17,20,2,0,0,-1,0,135162,13,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +6632,4,1,7,16,15,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6633,2,7,1,13,18,3,0,0,-1,0,135314,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +6634,12,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6635,0,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6636,0,0,0,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6637,0,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6638,0,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6639,12,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6640,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6641,2,8,1,17,20,1,0,0,-1,0,135315,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,99,0,0,0,0 +6642,4,3,5,5,20,0,0,0,-1,0,132627,10,0,105,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6643,15,4,8,0,1,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6644,15,4,8,0,1,0,0,0,-1,0,133910,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6645,15,4,0,0,5,0,0,0,-1,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6646,15,4,0,0,5,0,0,0,-1,0,133913,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6647,15,4,0,0,15,0,0,0,-1,0,133915,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6648,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6649,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6650,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6651,2,4,2,13,7,3,0,0,-1,0,132797,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +6652,12,0,0,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6653,12,0,2,23,0,7,0,0,-1,0,135434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6654,12,0,2,23,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6655,12,0,0,0,0,0,0,0,-1,0,134335,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6656,12,0,0,0,0,0,0,0,-1,0,134096,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6657,0,5,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6658,12,0,0,0,0,0,0,0,-1,0,132519,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6659,4,1,7,7,0,0,0,0,-1,0,134586,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6660,2,15,1,13,50,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +6661,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6662,0,2,3,0,8,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6663,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6664,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6665,4,3,5,9,0,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6666,4,3,5,8,0,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6667,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6668,4,2,8,8,0,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6669,4,0,0,11,0,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6670,4,2,8,5,0,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6671,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6672,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6673,4,0,5,11,1,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6674,4,0,5,11,1,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6675,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6676,4,6,1,14,0,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6677,2,19,2,26,0,0,0,0,-1,0,135467,21,0,50,0,6,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6678,4,0,4,11,0,0,0,0,-1,0,132521,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6679,2,6,1,17,24,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,74,0,0,0,0 +6680,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6681,2,15,1,13,27,3,0,0,-1,0,135646,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +6682,4,1,7,20,26,0,0,0,-1,0,132661,7,0,80,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6683,12,0,1,0,0,0,0,0,-1,0,133290,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,42,0,0,0,0 +6684,12,0,0,0,0,0,0,0,-1,0,135474,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6685,4,1,7,3,25,0,0,0,-1,0,135040,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6686,4,3,5,1,27,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6687,2,1,1,17,27,1,0,0,-1,0,135562,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,132,0,0,0,0 +6688,4,2,8,1,27,0,0,0,-1,0,133119,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6689,2,10,2,17,27,2,0,0,-1,0,135138,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +6690,4,2,8,7,29,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6691,2,15,1,13,30,3,0,0,-1,0,133723,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6692,2,0,1,13,30,3,0,0,-1,0,132409,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +6693,4,0,5,11,27,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6694,4,6,1,14,27,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6695,4,0,3,2,27,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6696,2,2,2,15,27,0,0,0,-1,0,135500,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +6697,4,1,7,3,27,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6698,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6707,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6708,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6709,4,2,8,5,13,0,0,0,-1,0,132724,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6710,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6711,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6712,15,0,1,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6713,4,1,7,7,0,0,0,0,-1,0,134587,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6714,7,2,8,0,10,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6715,7,3,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6716,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6717,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6718,12,0,0,0,0,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6719,4,2,8,6,0,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6720,4,2,8,1,0,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6721,4,3,5,5,0,0,0,0,-1,0,132720,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6722,4,3,5,9,0,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6723,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6724,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6725,4,6,1,14,0,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6726,4,1,7,6,0,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6727,4,2,8,10,0,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6728,4,0,5,11,1,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6729,2,19,2,26,0,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +6730,4,3,5,5,11,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6731,4,3,5,5,15,0,0,0,-1,0,132740,10,0,80,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6732,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6733,4,3,5,10,23,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6734,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6735,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6736,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6737,4,1,7,7,0,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6738,2,0,1,13,0,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +6739,2,2,2,15,0,0,0,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +6740,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6741,2,8,1,17,0,1,0,0,-1,0,135311,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,68,0,0,0,0 +6742,4,3,5,6,0,0,0,0,-1,0,132524,10,0,40,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6743,4,0,4,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6744,4,1,7,10,0,0,0,0,-1,0,132937,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6745,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6746,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6747,4,3,5,3,0,0,0,0,-1,0,135034,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6748,4,0,5,11,0,1,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6749,4,0,5,11,0,1,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6750,4,0,5,11,0,1,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6751,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6752,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6753,12,0,0,0,0,0,0,0,-1,0,135225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6754,1,0,8,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6755,15,0,1,0,0,0,0,0,-1,0,134344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6756,1,0,8,18,0,0,0,0,-1,0,134344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6757,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6766,12,0,0,0,25,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6767,12,0,0,0,0,0,0,0,-1,0,133290,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6773,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6774,4,0,3,23,0,7,0,0,-1,0,135465,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6775,12,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6776,12,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6777,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6778,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6779,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6780,4,1,7,6,0,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6781,0,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6782,0,0,0,0,0,0,0,0,-1,0,133277,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6783,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6784,4,2,8,10,0,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6785,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6786,4,0,7,20,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6787,4,1,7,20,17,0,0,0,-1,0,135016,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6788,4,2,8,6,0,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6789,4,1,7,16,0,0,0,0,-1,0,133764,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6790,4,0,1,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6791,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6792,4,3,5,3,0,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6793,4,3,5,9,0,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6794,4,2,8,10,0,0,0,0,-1,0,132960,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6795,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6796,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6797,2,19,2,26,0,0,0,0,-1,0,135465,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +6798,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +6799,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6800,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6801,4,1,7,20,0,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6802,2,7,1,13,0,3,0,0,-1,0,135317,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +6803,4,0,3,23,0,2,0,0,-1,0,135138,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6804,2,4,2,13,0,3,0,0,-1,0,133042,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +6805,12,0,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6806,2,19,2,26,0,0,0,0,-1,0,135466,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +6807,0,5,0,0,0,0,0,0,-1,0,133748,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6808,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6809,12,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6810,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6811,0,8,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6812,0,0,0,0,0,0,0,0,-1,0,132594,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6826,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6827,15,0,1,0,0,0,0,0,-1,0,132762,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6828,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6829,2,7,1,13,0,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +6830,2,1,1,17,0,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +6831,2,15,1,13,0,3,0,0,-1,0,135311,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +6832,4,1,7,16,0,0,0,0,-1,0,132656,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6833,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6834,4,1,7,5,0,0,0,0,-1,0,135022,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6835,4,1,7,7,0,0,0,0,-1,0,134581,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6836,4,1,7,8,0,0,0,0,-1,0,132539,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6837,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6838,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6839,12,0,0,0,0,0,0,0,-1,0,134227,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6840,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6841,0,0,0,0,0,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6842,0,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6843,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6844,12,0,0,0,0,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6845,12,0,0,0,0,0,0,0,-1,0,135227,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6846,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6847,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6848,12,0,0,0,0,0,0,0,-1,0,134128,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6849,12,0,0,0,0,0,0,0,-1,0,132835,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6850,12,0,0,0,0,0,0,0,-1,0,134361,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6851,0,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6852,0,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6866,12,0,0,0,12,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6886,2,16,1,25,1,0,0,0,-1,0,135641,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +6887,0,5,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6888,0,5,0,0,1,0,0,0,-1,0,132834,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6889,7,8,0,0,0,0,0,0,-1,0,132832,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6890,0,5,0,0,5,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6891,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6892,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6893,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6894,12,0,0,0,0,0,0,0,-1,0,134131,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6895,12,0,0,0,0,0,0,0,-1,0,133046,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6896,2,14,6,10,15,3,0,0,-1,0,135736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,100,0,0,0,0 +6897,9,0,0,0,30,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6898,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6899,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6900,4,1,7,20,0,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6901,4,1,7,16,24,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6902,4,2,8,9,22,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6903,4,1,7,7,23,0,0,0,-1,0,134582,7,0,60,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6904,2,15,1,13,23,3,0,0,-1,0,134298,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +6905,2,1,1,17,22,1,0,0,-1,0,135576,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +6906,4,3,5,10,23,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6907,4,3,5,5,20,0,0,0,-1,0,135010,10,0,105,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6908,4,1,7,6,20,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6909,2,8,1,17,24,1,0,0,-1,0,135352,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,102,0,0,0,0 +6910,4,1,7,7,24,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6911,4,2,8,6,24,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6912,12,0,0,0,0,0,0,0,-1,0,136065,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6913,12,0,0,0,0,0,0,0,-1,0,136065,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6914,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6915,12,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6916,12,0,0,0,12,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6926,0,0,0,0,0,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6927,0,0,0,0,0,0,0,0,-1,0,133854,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6928,12,0,0,0,0,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6929,0,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6930,12,0,0,0,0,0,0,0,-1,0,135469,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6931,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6946,2,4,2,13,1,0,0,0,-1,0,135612,8,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +6947,0,8,3,0,20,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6948,15,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6949,0,8,3,0,28,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6950,0,8,3,0,36,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6951,0,8,3,0,38,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6952,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6953,2,5,2,17,0,1,0,0,-1,0,133042,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,99,0,0,0,0 +6966,2,0,1,13,0,3,0,0,-1,0,132395,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6967,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6968,2,4,2,13,0,3,0,0,-1,0,133057,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6969,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6970,4,6,1,14,0,4,0,0,-1,0,134951,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6971,4,3,5,1,0,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6972,4,3,5,5,0,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6973,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6974,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6975,2,1,1,17,0,1,0,0,-1,0,132403,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +6976,2,5,2,17,0,1,0,0,-1,0,133045,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +6977,2,8,1,17,0,1,0,0,-1,0,135313,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +6978,2,0,1,13,0,3,0,0,-1,0,132408,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6979,2,0,1,13,0,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +6980,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6981,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +6982,2,4,2,13,0,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6983,2,4,2,13,0,3,0,0,-1,0,133045,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +6984,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6985,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +6986,15,0,7,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6987,8,0,8,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6988,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6989,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6990,12,0,0,0,0,0,0,0,-1,0,135230,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6991,12,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6992,12,0,0,0,0,0,0,0,-1,0,132766,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6993,12,0,0,0,0,0,0,0,-1,0,132761,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6994,12,0,0,0,0,0,0,0,-1,0,135435,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6995,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6996,12,0,0,0,0,0,0,0,-1,0,133457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6997,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6998,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6999,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7000,4,2,8,6,0,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7001,2,19,2,26,0,0,0,0,-1,0,135466,21,0,65,0,5,0,0,0,0,0,0,0,0,0,5,0,30,0,0,0,0,57,0,0,0,0 +7002,4,6,1,14,0,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,642,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +7003,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7004,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7005,2,14,1,13,1,3,0,0,-1,0,135637,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +7006,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7007,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7026,4,1,7,6,4,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7027,4,1,7,8,23,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7046,4,1,7,7,23,0,0,0,-1,0,134588,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7047,4,1,7,10,24,0,0,0,-1,0,132956,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7048,4,1,7,1,24,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7049,4,1,7,10,25,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7050,4,1,7,1,27,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7051,4,1,7,5,29,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7052,4,1,7,6,30,0,0,0,-1,0,132511,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7053,4,1,7,16,30,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7054,4,1,7,20,33,0,0,0,-1,0,132643,7,0,80,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7055,4,1,7,6,30,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7056,4,1,7,16,31,0,0,0,-1,0,132657,7,0,0,0,0,0,0,0,0,24,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7057,4,1,7,3,31,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7058,4,1,7,5,32,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7059,4,1,7,3,33,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7060,4,1,7,3,33,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7061,4,1,7,6,34,0,0,0,-1,0,132513,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7062,4,1,7,7,34,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7063,4,1,7,20,36,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7064,4,1,7,10,37,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7065,4,1,7,5,28,0,0,0,-1,0,132647,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7067,7,10,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7068,7,10,0,0,0,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7069,7,10,0,0,0,0,0,0,-1,0,136107,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7070,7,10,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7071,7,1,0,0,0,0,0,0,-1,0,133607,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7072,7,11,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7073,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7074,15,0,8,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7075,7,10,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7076,7,10,0,0,0,0,0,0,-1,0,136102,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7077,7,10,0,0,0,0,0,0,-1,0,135819,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7078,7,10,0,0,0,0,0,0,-1,0,135830,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7079,7,10,0,0,0,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7080,7,10,0,0,0,0,0,0,-1,0,136007,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7081,7,10,0,0,0,0,0,0,-1,0,136018,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7082,7,10,0,0,0,0,0,0,-1,0,136022,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7083,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7084,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7085,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7086,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7087,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7088,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7089,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7090,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7091,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7092,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7093,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7094,2,10,2,17,5,2,0,0,-1,0,135146,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,24,0,0,0,0 +7095,4,1,7,8,4,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7096,15,0,8,0,0,0,0,0,-1,0,132929,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7097,0,5,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7098,15,0,8,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7099,15,0,0,0,0,1,0,0,-1,0,133708,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7100,15,0,0,0,0,1,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7101,15,0,0,0,0,1,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7106,4,1,7,10,0,0,0,0,-1,0,132954,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7107,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7108,4,6,1,14,6,4,6278,0,-1,0,134955,9,0,45,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7109,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7110,4,1,7,5,26,0,0,0,-1,0,135022,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7111,4,1,7,5,32,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7112,4,1,7,5,36,0,0,0,-1,0,135005,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7113,4,1,7,5,41,0,0,0,-1,0,135021,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7114,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7115,2,0,1,13,0,3,0,0,-1,0,132408,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +7116,2,15,1,13,0,3,0,0,-1,0,135651,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +7117,2,4,2,13,0,3,0,0,-1,0,133049,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +7118,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +7119,12,0,0,0,0,0,0,0,-1,0,133027,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7120,4,6,1,14,0,4,0,0,-1,0,134960,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7126,12,0,0,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7127,0,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7128,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7129,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7130,4,3,5,1,0,0,0,0,-1,0,133070,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7131,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7132,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7133,4,3,5,5,0,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7134,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7135,12,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7146,13,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7148,4,0,0,0,0,0,0,0,-1,0,133868,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7166,2,15,1,13,6,3,0,0,-1,0,135650,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +7170,2,14,6,17,15,3,0,0,-1,0,135273,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +7171,2,7,1,13,1,3,0,0,-1,0,133069,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7187,4,2,8,8,20,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7188,4,6,1,14,19,4,0,0,-1,0,134950,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7189,4,1,7,8,0,0,0,0,-1,0,133029,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7190,15,0,0,0,0,0,0,0,-1,0,133030,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7191,7,1,0,0,0,0,0,0,-1,0,134065,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7192,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7206,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7207,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7208,12,0,0,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7209,15,0,0,0,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7226,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7227,0,0,0,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7228,0,5,0,0,15,0,0,0,-1,0,133987,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7229,4,3,5,5,0,0,0,0,-1,0,132634,10,0,70,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7230,2,5,2,17,18,1,0,0,-1,0,133046,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +7231,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7247,15,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7248,4,1,7,16,7,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7249,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7266,0,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7267,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7268,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7269,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7270,12,0,0,0,0,0,0,0,-1,0,134162,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7271,12,0,0,0,0,0,0,0,-1,0,133721,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7272,12,0,0,0,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7273,12,0,0,0,0,0,0,0,-1,0,135465,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7274,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7275,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7276,4,1,7,16,4,0,0,0,-1,0,133150,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7277,4,2,8,9,4,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7278,11,2,0,18,1,0,0,0,-1,0,134401,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7279,11,3,0,18,1,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7280,4,2,8,7,6,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7281,4,2,8,9,9,0,0,0,-1,0,132603,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7282,4,2,8,7,14,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7283,4,1,7,16,15,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7284,4,2,8,10,19,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7285,4,2,8,10,19,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7286,7,6,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7287,15,0,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7288,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7289,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7290,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7291,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7292,12,0,0,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7293,12,0,0,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7294,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7295,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7296,15,0,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7297,4,0,0,23,0,3,0,0,-1,0,135142,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7298,2,15,1,13,0,3,0,0,-1,0,135662,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +7299,4,1,7,1,25,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7306,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7307,0,8,0,0,0,0,0,0,-1,0,134324,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7308,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7309,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7326,2,0,1,13,0,3,0,0,-1,0,132392,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +7327,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +7328,2,4,2,13,0,3,0,0,-1,0,133487,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +7329,2,7,1,13,0,3,0,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +7330,4,6,1,14,28,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7331,4,6,1,14,29,4,2034,0,-1,0,134953,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7332,4,1,7,5,40,0,465,0,-1,0,135007,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7333,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7334,4,1,7,20,0,0,0,0,-1,0,132651,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7335,4,2,8,5,0,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7336,4,3,5,5,0,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7337,4,0,5,11,0,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7338,4,0,5,11,0,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7339,4,0,5,11,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7340,4,0,5,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7341,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7342,4,0,5,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7343,12,0,0,0,0,0,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7344,4,0,0,23,0,3,0,0,-1,0,135142,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7345,12,0,0,0,0,0,0,0,-1,0,134428,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7346,12,0,0,0,0,0,0,0,-1,0,133057,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7347,12,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7348,4,2,8,10,20,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7349,4,2,8,10,22,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7350,4,1,7,9,5,0,0,0,-1,0,132611,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7351,4,1,7,8,6,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7352,4,2,8,3,22,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7353,4,1,7,5,30,0,462,0,-1,0,135020,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7354,4,1,7,8,28,0,797,0,-1,0,132539,7,0,35,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7355,4,1,7,9,26,0,1049,0,-1,0,132612,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7356,4,1,7,16,25,0,964,0,-1,0,133754,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7357,4,1,7,1,29,0,630,0,-1,0,133117,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7358,4,2,8,10,23,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7359,4,2,8,10,24,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7360,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7361,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7362,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7363,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7364,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7365,12,0,0,0,0,0,0,0,-1,0,132995,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7366,4,1,7,10,27,0,713,0,-1,0,132951,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7367,4,1,7,3,28,0,1133,0,-1,0,135057,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7368,4,1,7,7,29,0,546,0,-1,0,134588,7,0,55,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7369,4,1,7,20,30,0,462,0,-1,0,132658,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7370,4,1,7,6,26,0,881,0,-1,0,132504,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7371,11,2,8,18,30,0,0,0,-1,0,134402,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7372,11,3,8,18,30,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7373,4,2,8,7,28,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7374,4,2,8,5,30,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7375,4,2,8,5,30,0,0,0,-1,0,132631,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7376,12,0,0,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7377,4,1,7,16,31,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7378,4,2,8,9,32,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7386,4,2,8,9,33,0,0,0,-1,0,132605,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7387,4,2,8,6,34,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7388,0,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7389,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7390,4,2,8,8,35,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7391,4,2,8,8,35,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7392,7,6,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7406,4,2,8,6,27,0,902,0,-1,0,132492,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7407,4,2,8,5,30,0,483,0,-1,0,132718,7,0,85,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7408,4,2,8,3,28,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7409,4,2,8,8,28,0,818,0,-1,0,132539,7,0,45,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7410,4,2,8,9,26,0,1070,0,-1,0,132606,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7411,4,1,7,16,26,0,986,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7412,4,2,8,10,27,0,734,0,-1,0,132956,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7413,4,2,8,1,28,0,650,0,-1,0,133117,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7414,4,2,8,7,29,0,567,0,-1,0,134587,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7415,4,2,8,3,24,0,1153,0,-1,0,135039,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7416,4,3,5,9,26,0,1091,0,-1,0,132613,10,0,35,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7417,4,3,5,8,29,0,840,0,-1,0,132535,10,0,50,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7418,4,3,5,5,30,0,504,0,-1,0,132736,10,0,100,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7419,4,1,7,16,25,0,1006,0,-1,0,133767,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7420,4,3,5,1,28,0,671,0,-1,0,132767,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7421,4,3,5,10,28,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7422,4,3,5,6,27,0,923,0,-1,0,132494,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7423,4,3,5,7,29,0,588,0,-1,0,134584,10,0,75,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7424,4,3,5,3,28,0,1175,0,-1,0,135057,10,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7425,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7426,4,0,5,11,25,0,3476,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7427,4,0,3,2,26,0,3506,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7428,7,6,8,0,0,0,0,0,-1,0,134345,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7429,4,1,7,5,35,0,464,0,-1,0,135017,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7430,4,1,7,20,35,0,464,0,-1,0,132666,7,0,70,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7431,4,1,7,7,34,0,547,0,-1,0,134588,7,0,55,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7432,4,1,7,1,33,0,631,0,-1,0,133131,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7433,4,1,7,10,32,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7434,4,1,7,8,32,0,799,0,-1,0,132539,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7435,4,1,7,3,33,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7436,4,1,7,16,30,0,966,0,-1,0,133765,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7437,4,1,7,9,31,0,1050,0,-1,0,132608,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7438,4,1,7,6,31,0,882,0,-1,0,132499,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7439,4,2,8,5,35,0,485,0,-1,0,132719,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7440,4,2,8,7,34,0,568,0,-1,0,134706,7,0,65,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7441,4,2,8,1,33,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7442,12,0,0,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7443,4,2,8,10,32,0,736,0,-1,0,132939,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7444,4,2,8,8,32,0,820,0,-1,0,132592,7,0,45,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7445,4,2,8,3,33,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7446,4,1,7,16,31,0,987,0,-1,0,133758,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7447,4,2,8,9,31,0,1071,0,-1,0,132607,7,0,30,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7448,4,2,8,6,31,0,903,0,-1,0,132493,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7449,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7450,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7451,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7452,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7453,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7454,4,3,5,5,34,0,505,0,-1,0,132739,10,0,100,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7455,4,3,5,7,34,0,589,0,-1,0,134584,10,0,75,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7456,4,3,5,1,33,0,673,0,-1,0,132767,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7457,4,3,5,10,32,0,757,0,-1,0,132962,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7458,4,3,5,8,32,0,841,0,-1,0,132535,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7459,4,3,5,3,33,0,1177,0,-1,0,135058,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7460,4,1,7,16,29,0,1008,0,-1,0,133768,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7461,4,3,5,9,31,0,1092,0,-1,0,132606,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7462,4,3,5,6,32,0,925,0,-1,0,132515,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7463,4,6,1,14,33,4,2040,0,-1,0,134956,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7464,12,0,0,0,0,0,0,0,-1,0,134416,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7465,4,6,1,14,34,4,2040,0,-1,0,134952,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7466,4,0,5,11,32,0,3479,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7467,4,0,3,2,30,0,3507,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7468,4,1,7,20,40,0,465,0,-1,0,132677,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7469,4,1,7,7,39,0,549,0,-1,0,134593,7,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7470,4,1,7,1,37,0,632,0,-1,0,133090,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7471,4,1,7,10,37,0,716,0,-1,0,132966,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7472,4,1,7,8,36,0,800,0,-1,0,132539,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7473,4,1,7,3,37,0,1136,0,-1,0,135033,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7474,4,1,7,16,35,0,968,0,-1,0,133754,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7475,4,1,7,9,36,0,1052,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7476,4,1,7,6,35,0,884,0,-1,0,132497,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7477,4,2,8,5,40,0,486,0,-1,0,132723,7,0,85,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7478,4,2,8,7,38,0,570,0,-1,0,134594,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7479,4,2,8,1,37,0,653,0,-1,0,133111,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7480,4,2,8,10,36,0,737,0,-1,0,132959,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7481,4,2,8,8,37,0,821,0,-1,0,132542,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7482,4,2,8,3,37,0,1157,0,-1,0,135049,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7483,4,1,7,16,35,0,989,0,-1,0,133753,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7484,4,2,8,9,36,0,1073,0,-1,0,132608,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7485,4,2,8,6,36,0,905,0,-1,0,132506,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7486,4,3,5,5,39,0,507,0,-1,0,132742,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7487,4,3,5,7,38,0,591,0,-1,0,134590,10,0,75,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7488,4,3,5,1,37,0,674,0,-1,0,132767,10,0,60,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7489,4,3,5,10,36,0,758,0,-1,0,132938,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7490,4,3,5,8,37,0,842,0,-1,0,132590,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7491,4,3,5,3,38,0,1179,0,-1,0,135049,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7492,4,1,7,16,34,0,1009,0,-1,0,133753,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7493,4,3,5,9,35,0,1094,0,-1,0,132611,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7494,4,3,5,6,36,0,926,0,-1,0,132514,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7495,4,6,1,14,39,4,2052,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7496,4,6,1,14,38,4,2052,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7497,4,0,0,11,35,0,3480,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7498,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7499,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7500,12,0,0,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7506,4,0,8,12,0,0,0,0,-1,0,134376,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7507,4,0,0,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7508,4,0,0,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7509,4,1,7,20,0,0,0,0,-1,0,132677,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7510,4,1,7,20,0,0,0,0,-1,0,132659,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7511,4,1,7,20,0,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7512,4,1,7,20,0,0,0,0,-1,0,132661,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7513,2,19,2,26,0,0,0,0,-1,0,135471,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +7514,2,19,2,26,0,0,0,0,-1,0,135467,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +7515,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7516,0,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7517,4,1,7,5,45,0,467,0,-1,0,135007,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7518,4,1,7,20,45,0,467,0,-1,0,132645,7,0,70,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7519,4,1,7,7,42,0,550,0,-1,0,134592,7,0,55,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7520,4,1,7,1,42,0,634,0,-1,0,133111,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7521,4,1,7,10,41,0,718,0,-1,0,132966,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7522,4,1,7,8,40,0,801,0,-1,0,132543,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7523,4,1,7,3,41,0,1138,0,-1,0,135033,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7524,4,1,7,16,39,0,969,0,-1,0,133766,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7525,4,1,7,9,40,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7526,4,1,7,6,41,0,886,0,-1,0,132496,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7527,4,2,8,5,45,0,488,0,-1,0,132720,7,0,85,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7528,4,2,8,7,43,0,571,0,-1,0,134706,7,0,65,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7529,4,2,8,1,42,0,655,0,-1,0,133120,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7530,4,2,8,10,41,0,739,0,-1,0,132956,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7531,4,2,8,8,41,0,823,0,-1,0,132535,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7532,4,2,8,3,42,0,1159,0,-1,0,135032,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7533,4,1,7,16,39,0,990,0,-1,0,133770,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7534,4,2,8,9,40,0,1074,0,-1,0,132615,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7535,4,2,8,6,41,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7536,4,6,1,14,43,4,2058,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7537,4,6,1,14,44,4,2064,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7538,4,3,5,5,43,0,508,0,-1,0,132627,10,0,100,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7539,4,3,5,7,43,0,592,0,-1,0,134583,10,0,75,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7540,4,3,5,1,42,0,676,0,-1,0,133070,10,0,60,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7541,4,3,5,10,41,0,760,0,-1,0,132963,10,0,35,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7542,4,3,5,8,41,0,844,0,-1,0,132590,10,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7543,4,3,5,3,42,0,1180,0,-1,0,135053,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7544,4,1,7,16,39,0,1011,0,-1,0,133763,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7545,4,3,5,9,40,0,1095,0,-1,0,132615,10,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7546,4,3,5,6,41,0,928,0,-1,0,132493,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7547,4,0,5,11,41,0,3482,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7548,4,0,3,2,41,0,3511,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7549,4,0,3,2,42,0,0,0,-1,0,132520,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7550,4,0,3,2,42,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7551,4,0,3,2,42,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7552,4,0,5,11,39,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7553,4,0,5,11,43,1,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7554,4,0,0,23,14,7,2002,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7555,4,0,0,23,40,7,2050,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7556,4,0,0,23,35,7,2044,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7557,4,0,2,23,45,7,2062,0,-1,0,135464,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7558,4,0,0,23,20,7,2014,0,-1,0,135466,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7559,4,0,0,23,12,2,0,0,-1,0,135139,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7560,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7561,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7566,12,0,0,0,0,0,0,0,-1,0,135274,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7567,12,0,0,0,0,0,0,0,-1,0,132392,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7568,12,0,0,0,0,0,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7569,12,0,0,0,0,0,0,0,-1,0,133487,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7586,12,0,0,0,0,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7587,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7606,4,3,5,10,0,0,0,0,-1,0,132938,10,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7607,2,19,2,26,0,0,0,0,-1,0,135139,21,0,45,0,5,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +7608,4,0,0,23,16,7,0,0,-1,0,132791,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7609,4,0,0,23,30,7,2032,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7610,4,0,0,23,36,7,0,0,-1,0,134121,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7611,4,0,3,23,41,7,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7612,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +7613,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7626,12,0,0,0,1,0,0,0,-1,0,134366,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7627,0,0,0,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7628,12,0,0,0,1,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7629,0,0,0,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7646,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7666,12,0,0,0,37,0,0,0,-1,0,133289,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7667,12,0,0,0,0,0,0,0,-1,0,134715,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7668,15,0,0,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7669,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7670,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7671,12,0,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7672,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7673,4,0,0,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7674,12,0,0,0,1,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7675,12,0,0,0,1,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7676,0,5,3,0,5,0,0,0,-1,0,132819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7678,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7679,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7680,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7682,2,15,1,13,29,3,0,0,-1,0,135124,8,0,65,0,0,2,0,0,0,0,0,0,0,0,0,0,26,5,0,0,0,49,7,0,0,0 +7683,2,13,1,13,29,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +7684,4,1,7,3,30,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7685,4,0,0,23,33,7,0,0,-1,0,134334,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7686,4,0,5,11,30,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7687,2,4,2,13,30,3,0,0,-1,0,133056,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +7688,4,3,5,5,30,0,0,0,-1,0,132750,10,0,120,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7689,2,8,1,17,30,1,0,0,-1,0,135302,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +7690,4,2,8,10,30,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7691,4,1,7,1,30,0,0,0,-1,0,133130,7,0,50,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7706,2,5,2,13,1,1,0,0,-1,0,133488,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7707,2,5,2,17,35,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,71,0,0,0,0 +7708,2,19,2,26,30,0,0,0,-1,0,135466,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7709,4,1,7,7,30,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7710,2,10,2,17,31,2,0,0,-1,0,135155,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +7711,4,1,7,20,33,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7712,4,1,7,3,33,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7713,2,10,2,17,34,2,0,0,-1,0,135466,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +7714,2,15,1,21,34,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +7715,12,0,0,0,1,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7717,2,1,1,17,37,1,0,0,-1,0,135575,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +7718,4,3,5,3,37,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7719,4,3,5,1,37,0,0,0,-1,0,133127,10,0,70,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7720,4,1,7,1,39,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7721,2,4,2,21,39,3,0,0,-1,0,133039,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +7722,4,0,3,2,39,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7723,2,5,2,17,39,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +7724,4,3,5,10,39,0,0,0,-1,0,132953,10,0,40,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7725,4,0,7,19,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7726,4,6,1,14,39,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,1548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7727,4,2,8,3,27,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7728,4,1,7,20,29,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7729,2,3,1,26,28,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +7730,2,5,2,17,29,1,0,0,-1,0,133041,9,0,100,0,0,4,0,0,0,0,0,0,0,0,0,0,74,5,0,0,0,111,5,0,0,0 +7731,4,0,3,2,30,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7733,12,0,0,0,0,0,0,0,-1,0,135138,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7734,4,0,0,12,46,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7735,12,0,0,0,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7736,2,4,2,13,34,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,76,0,0,0,0 +7737,12,0,0,0,1,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7738,4,1,7,10,0,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7739,4,1,7,16,0,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7740,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7741,12,0,0,0,0,0,0,0,-1,0,135225,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7742,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7746,4,0,3,2,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7747,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7748,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7749,4,0,3,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7750,4,1,7,3,0,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7751,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7752,2,4,2,13,28,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +7753,2,1,1,17,27,1,0,0,-1,0,132401,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +7754,4,2,8,8,25,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7755,4,2,8,3,33,0,0,0,-1,0,135044,7,0,60,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7756,4,2,8,10,29,0,0,0,-1,0,132941,7,0,35,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7757,2,10,2,17,32,2,0,0,-1,0,135469,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +7758,2,6,1,17,34,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,113,0,0,0,0 +7759,4,3,5,5,33,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7760,4,2,8,7,34,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7761,2,0,1,13,33,3,0,0,-1,0,132397,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7766,12,0,0,0,1,0,0,0,-1,0,132825,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7767,12,0,0,0,1,0,0,0,-1,0,132821,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7768,12,0,0,0,1,0,0,0,-1,0,132829,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7769,12,0,0,0,1,0,0,0,-1,0,132824,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7770,12,0,0,0,1,0,0,0,-1,0,132820,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7771,12,0,0,0,1,0,0,0,-1,0,132828,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7786,2,0,1,13,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +7787,4,6,1,14,26,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7806,0,5,0,0,1,0,0,0,-1,0,133982,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7807,0,5,0,0,1,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7808,0,5,0,0,1,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7809,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7810,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7811,12,0,0,0,0,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7812,12,0,0,0,0,0,0,0,-1,0,132608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7813,12,0,0,0,1,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7826,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +7846,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7847,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7848,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7866,12,0,0,0,0,0,0,0,-1,0,134867,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7867,12,0,0,0,0,0,0,0,-1,0,134832,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7868,15,0,2,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7869,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7870,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7871,12,0,0,0,1,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7872,7,11,1,0,15,0,0,0,-1,0,134065,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7886,12,0,0,0,0,0,0,0,-1,0,133736,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7887,12,0,0,0,0,0,0,0,-1,0,133645,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7888,4,0,0,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7906,12,0,0,0,0,0,0,0,-1,0,134228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7907,15,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7908,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7909,3,7,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7910,3,7,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7911,7,7,1,0,0,0,0,0,-1,0,134580,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7912,7,7,0,0,0,0,0,0,-1,0,135236,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7913,4,3,5,3,27,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7914,4,3,5,5,27,0,0,0,-1,0,132636,10,0,100,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7915,4,3,5,1,30,0,0,0,-1,0,133127,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7916,4,3,5,8,31,0,0,0,-1,0,132582,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7917,4,3,5,10,32,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7918,4,4,6,3,40,0,0,0,-1,0,135053,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7919,4,4,6,10,40,0,0,0,-1,0,132961,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7920,4,3,5,7,37,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7921,4,4,6,7,40,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7922,4,4,6,1,40,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7923,13,0,0,0,0,0,0,0,-1,0,134245,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7924,4,3,5,9,38,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7925,4,3,5,10,39,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7926,4,4,6,7,40,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7927,4,4,6,10,40,0,0,0,-1,0,132965,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7928,4,4,6,3,40,0,0,0,-1,0,135040,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7929,4,3,5,7,37,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7930,4,4,6,5,41,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7931,4,3,5,1,41,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7932,4,3,5,3,42,0,0,0,-1,0,135043,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7933,4,4,6,8,42,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7934,4,4,6,1,42,0,0,0,-1,0,133078,11,0,70,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7935,4,4,6,5,43,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7936,4,4,6,8,44,0,0,0,-1,0,132535,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7937,4,4,6,1,44,0,0,0,-1,0,133078,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7938,4,4,6,10,40,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7939,4,4,6,5,44,0,0,0,-1,0,132739,11,0,135,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7941,2,0,1,21,37,3,0,0,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +7942,2,0,1,13,39,3,0,0,-1,0,132394,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +7943,2,7,1,21,40,3,0,0,-1,0,135280,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +7944,2,7,1,21,43,3,0,0,-1,0,135340,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,63,0,0,0,0 +7945,2,4,2,21,41,3,0,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +7946,2,4,2,21,44,3,0,0,-1,0,133054,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,76,0,0,0,0 +7947,2,15,1,13,46,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,59,0,0,0,0 +7948,4,2,8,6,0,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7949,4,2,8,7,0,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,90,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0 +7950,4,2,8,5,0,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7951,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,60,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0 +7952,4,2,8,8,0,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7953,4,2,8,1,0,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7954,2,4,2,21,42,3,0,0,-1,0,133055,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +7955,2,8,1,17,6,1,0,0,-1,0,135322,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,23,0,0,0,0 +7956,2,5,2,17,20,1,0,0,-1,0,133055,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,57,0,0,0,0 +7957,2,8,1,17,21,1,0,0,-1,0,135321,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,58,0,0,0,0 +7958,2,1,1,17,22,1,0,0,-1,0,132415,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +7959,2,6,1,17,45,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,141,0,0,0,0 +7960,2,8,1,17,47,1,0,0,-1,0,135317,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +7961,2,7,1,21,44,1,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +7963,4,3,5,5,35,0,0,0,-1,0,132740,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7964,0,8,0,0,25,0,0,0,-1,0,135251,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7965,0,8,0,0,25,0,0,0,-1,0,135258,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7966,7,7,0,0,0,0,0,0,-1,0,135246,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7967,0,6,8,0,0,0,0,0,-1,0,133597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7968,12,0,0,0,0,0,0,0,-1,0,134344,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7969,0,6,8,0,0,0,0,0,-1,0,132307,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7970,0,0,0,0,0,0,0,0,-1,0,134059,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7971,3,7,0,0,0,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7972,7,10,0,0,0,0,0,0,-1,0,134437,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7973,7,11,0,0,0,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7974,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7975,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7976,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7977,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7978,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7979,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7980,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7981,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7982,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7983,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7984,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7985,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7986,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7987,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7988,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7989,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7990,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7991,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7992,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7993,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7994,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7995,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7996,4,1,7,1,15,0,0,0,-1,0,133133,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +7997,4,0,0,1,0,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8006,2,15,1,13,34,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +8007,0,0,1,0,48,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8008,0,0,1,0,58,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8009,12,0,0,0,0,0,0,0,-1,0,132489,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8026,12,0,0,0,0,0,0,0,-1,0,132482,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8027,12,0,0,0,0,0,0,0,-1,0,132790,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8028,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8029,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8030,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8046,9,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8047,12,0,0,0,0,0,0,0,-1,0,134530,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8048,0,0,0,0,0,0,0,0,-1,0,134430,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8049,12,0,3,0,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8050,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8051,12,0,0,0,0,0,0,0,-1,0,134536,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8052,12,0,0,0,0,0,0,0,-1,0,132488,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8053,12,0,0,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8066,12,0,0,0,1,0,0,0,-1,0,134374,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8067,6,3,2,24,5,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0 +8068,6,3,2,24,15,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +8069,6,3,2,24,30,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,0,0,0 +8070,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8071,2,19,2,26,0,0,0,0,-1,0,135139,21,0,45,0,2,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +8072,13,0,0,0,1,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8073,12,0,0,0,1,0,0,0,-1,0,134846,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8074,12,0,0,0,1,0,0,0,-1,0,134166,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8075,0,5,0,0,35,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8076,0,5,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8077,0,5,3,0,35,0,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8078,0,5,3,0,45,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8079,0,5,3,0,55,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8080,4,4,6,5,53,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8081,4,4,6,6,52,0,0,0,-1,0,132505,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8082,4,4,6,8,47,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8083,4,4,6,9,48,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8084,4,4,6,10,51,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8085,4,4,6,7,50,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8086,4,4,6,3,49,0,0,0,-1,0,135044,11,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8087,15,0,0,0,1,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8088,4,4,6,6,45,0,0,0,-1,0,132504,11,0,40,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8089,4,4,6,8,45,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8090,4,4,6,9,45,0,0,0,-1,0,132613,11,0,40,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8091,4,4,6,10,45,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8092,4,4,6,1,45,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8093,4,4,6,7,45,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8094,4,4,6,5,45,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8095,0,0,0,0,1,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8106,4,1,7,5,45,0,0,0,-1,0,135010,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8107,4,1,7,8,42,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8108,4,1,7,9,42,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8109,4,1,7,16,41,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8110,4,1,7,10,42,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8111,4,1,7,3,43,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8112,4,1,7,7,44,0,0,0,-1,0,134594,7,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8113,4,1,7,20,46,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8114,4,1,7,6,42,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8115,4,1,7,1,43,0,0,0,-1,0,133134,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8116,4,2,8,6,42,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8117,4,2,8,8,42,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8118,4,2,8,9,41,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8119,4,2,8,5,46,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8120,4,1,7,16,40,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8121,4,2,8,10,42,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8122,4,2,8,1,43,0,0,0,-1,0,133127,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8123,4,2,8,7,44,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8124,4,2,8,3,43,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8125,4,3,5,9,43,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8126,4,3,5,5,46,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8127,4,1,7,16,42,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8128,4,3,5,10,44,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8129,4,3,5,6,44,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8130,4,3,5,8,44,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8131,4,3,5,1,45,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8132,4,3,5,7,46,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8133,4,3,5,3,45,0,0,0,-1,0,135057,10,0,60,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8134,4,6,1,14,46,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8135,4,6,1,14,41,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8136,12,0,0,0,1,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8137,4,4,6,9,40,0,0,0,-1,0,132613,11,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8138,4,4,6,5,42,0,0,0,-1,0,132749,11,0,115,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8139,4,4,6,10,40,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8140,4,4,6,6,40,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8141,4,4,6,8,40,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8142,4,4,6,1,40,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8143,4,4,6,7,41,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8144,4,4,6,3,40,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8146,7,11,1,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8147,15,1,0,0,0,0,0,0,-1,0,134246,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8148,15,1,0,0,0,0,0,0,-1,0,134248,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8149,12,0,0,0,0,0,0,0,-1,0,132502,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8150,7,6,8,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8151,7,11,8,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8152,7,11,8,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8153,7,9,7,0,0,0,0,0,-1,0,134183,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8154,7,6,0,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8155,12,0,0,0,0,0,0,0,-1,0,135652,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8156,4,4,6,9,40,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8157,4,4,6,5,40,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8158,4,4,6,10,40,0,0,0,-1,0,132951,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8159,4,4,6,6,40,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8160,4,4,6,8,40,0,0,0,-1,0,132583,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8161,4,4,6,1,40,0,0,0,-1,0,133159,11,0,70,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8162,4,4,6,7,40,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8163,4,4,6,3,40,0,0,0,-1,0,135043,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8164,0,8,0,0,0,0,0,0,-1,0,134937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8165,7,6,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8167,7,6,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8168,7,6,0,0,0,0,0,0,-1,0,132915,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8169,7,6,8,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8170,7,6,8,0,0,0,0,0,-1,0,134251,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8171,7,6,8,0,0,0,0,0,-1,0,134357,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8172,7,6,8,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8173,0,6,8,0,30,0,0,0,-1,0,133602,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8174,4,2,8,1,35,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8175,4,2,8,5,36,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8176,4,2,8,1,36,0,0,0,-1,0,132513,7,0,50,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8177,2,8,1,17,2,1,0,0,-1,0,135355,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0 +8178,2,8,1,17,5,1,5173,0,-1,0,135355,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +8179,2,2,2,15,1,0,0,0,-1,0,135493,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +8180,2,2,2,15,6,0,0,0,-1,0,135491,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +8181,2,3,1,26,4,0,0,0,-1,0,135613,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +8182,2,3,1,26,2,0,0,0,-1,0,135613,8,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +8183,2,2,2,15,22,0,0,0,-1,0,135492,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +8184,2,19,2,26,24,0,0,0,-1,0,135473,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +8185,4,3,5,7,42,0,0,0,-1,0,134582,10,0,75,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8186,2,19,2,26,21,0,0,0,-1,0,135468,21,0,50,0,5,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +8187,4,3,5,10,36,0,0,0,-1,0,132939,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8188,2,3,1,26,32,0,0,0,-1,0,135617,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,56,0,0,0,0 +8189,4,3,5,5,37,0,0,0,-1,0,132634,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8190,2,7,1,13,50,3,0,0,-1,0,135280,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +8191,4,3,5,1,41,0,0,0,-1,0,133142,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8192,4,2,8,3,37,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8193,4,2,8,7,41,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8194,2,4,2,13,38,3,5251,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +8195,4,1,7,16,41,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8196,2,7,1,13,38,3,5258,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +8197,4,2,8,8,42,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8198,4,3,5,9,37,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8199,2,8,1,17,42,1,5272,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +8200,4,2,8,20,38,0,0,0,-1,0,132666,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8201,4,2,8,1,39,0,0,0,-1,0,132482,7,0,50,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8202,4,2,8,7,42,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8203,4,3,5,5,39,0,0,0,-1,0,132717,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8204,4,3,5,10,40,0,0,0,-1,0,132958,10,0,35,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8205,4,3,5,9,39,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8206,4,3,5,7,44,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8207,4,3,5,3,43,0,0,0,-1,0,135035,10,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8208,4,3,5,1,45,0,0,0,-1,0,133122,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8209,4,3,5,8,42,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8210,4,2,8,3,39,0,1158,0,-1,0,135049,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8211,4,2,8,5,40,0,486,0,-1,0,132647,7,0,85,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8212,4,2,8,7,45,0,572,0,-1,0,134594,7,0,65,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8213,4,2,8,8,44,0,824,0,-1,0,132541,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8214,4,2,8,1,40,0,654,0,-1,0,133078,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8215,4,1,7,16,45,0,992,0,-1,0,133755,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8216,4,1,7,16,43,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8217,11,2,8,18,40,0,0,0,-1,0,134407,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8218,11,3,8,18,40,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8223,2,7,1,13,32,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +8224,2,7,1,13,31,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +8225,2,7,1,13,31,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +8226,2,7,1,13,26,3,0,0,-1,0,135316,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +8243,0,5,0,0,1,0,0,0,-1,0,133983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8244,12,0,0,0,1,0,0,0,-1,0,134564,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8245,4,1,7,5,51,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8246,4,1,7,8,47,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8247,4,1,7,9,46,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8248,4,1,7,16,45,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8249,4,1,7,10,47,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8250,4,1,7,3,47,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8251,4,1,7,7,49,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8252,4,1,7,20,51,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8253,4,1,7,6,46,0,0,0,-1,0,132518,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8254,4,1,7,1,48,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8255,4,2,8,6,45,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8256,4,2,8,8,47,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8257,4,2,8,9,45,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8258,4,2,8,5,51,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8259,4,1,7,16,45,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8260,4,2,8,10,47,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8261,4,2,8,1,49,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8262,4,2,8,7,49,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8263,4,2,8,3,48,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8264,4,3,5,9,47,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8265,4,3,5,5,51,0,0,0,-1,0,132639,10,0,100,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8266,4,1,7,16,46,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8267,4,3,5,10,49,0,0,0,-1,0,132949,10,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8268,4,3,5,6,49,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8269,4,3,5,8,50,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8270,4,3,5,1,50,0,0,0,-1,0,133074,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8271,4,3,5,7,51,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8272,4,3,5,3,49,0,0,0,-1,0,135058,10,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8273,4,4,6,9,41,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8274,4,4,6,5,46,0,0,0,-1,0,132646,11,0,115,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8275,4,6,1,14,51,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8276,4,4,6,10,42,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8277,4,4,6,6,41,0,0,0,-1,0,132508,11,0,40,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8278,4,4,6,8,42,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8279,4,4,6,1,43,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8280,4,4,6,7,44,0,0,0,-1,0,134592,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8281,4,4,6,3,43,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8282,4,6,1,14,46,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8283,4,1,7,5,56,0,0,0,-1,0,135017,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8284,4,1,7,8,52,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8285,4,1,7,9,51,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8286,4,1,7,16,50,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8287,4,1,7,10,52,0,0,0,-1,0,132940,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8288,4,1,7,3,54,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8289,4,1,7,7,55,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8290,4,1,7,20,56,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8291,4,1,7,6,51,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8292,4,1,7,1,53,0,0,0,-1,0,133090,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8293,4,2,8,6,51,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8294,4,2,8,8,52,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8295,4,2,8,9,51,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8296,4,2,8,5,56,0,0,0,-1,0,132720,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8297,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8298,4,2,8,10,52,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8299,4,2,8,1,54,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8300,4,2,8,7,55,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8301,4,2,8,3,54,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8302,4,3,5,9,53,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8303,4,3,5,5,57,0,0,0,-1,0,132749,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8304,4,1,7,16,52,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8305,4,3,5,10,54,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8306,4,3,5,6,54,0,0,0,-1,0,132519,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8307,4,3,5,8,55,0,0,0,-1,0,132589,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8308,4,3,5,1,55,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8309,4,3,5,7,56,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8310,4,3,5,3,55,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8311,4,4,6,9,48,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8312,4,4,6,5,52,0,0,0,-1,0,132627,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8313,4,6,1,14,57,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8314,4,4,6,10,48,0,0,0,-1,0,132960,11,0,40,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8315,4,4,6,6,47,0,0,0,-1,0,132507,11,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8316,4,4,6,8,48,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8317,4,4,6,1,49,0,0,0,-1,0,133118,11,0,70,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8318,4,4,6,7,51,0,0,0,-1,0,134581,11,0,85,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8319,4,4,6,3,50,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8320,4,6,1,14,52,4,0,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8343,7,5,8,0,0,0,0,0,-1,0,132906,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8344,12,0,0,0,0,0,0,0,-1,0,135652,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8345,4,2,8,1,40,0,0,0,-1,0,133072,7,0,60,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8346,4,2,8,10,41,0,0,0,-1,0,132964,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8347,4,3,5,10,40,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8348,4,2,8,1,45,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,118,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8349,4,2,8,5,45,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8350,4,0,5,11,10,1,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8363,12,0,0,0,0,0,0,0,-1,0,132502,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8364,0,5,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8365,7,8,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8366,15,4,0,0,25,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8367,4,3,5,5,46,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,306,0,13,0,13,12,0,0,0,0,0,0,0,0,0,0,0 +8368,7,6,8,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8383,15,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8384,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8385,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8386,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8387,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8388,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8389,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8390,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8391,12,0,0,0,1,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8392,12,0,0,0,1,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8393,12,0,0,0,1,0,0,0,-1,0,133708,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8394,12,0,0,0,1,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8395,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8396,12,0,0,0,1,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8397,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8398,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8399,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8400,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8401,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8402,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8403,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8404,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8405,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8406,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8407,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8408,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8409,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8410,0,0,0,0,0,0,0,0,-1,0,135241,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8411,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8412,0,0,0,0,0,0,0,0,-1,0,133849,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8423,0,0,0,0,0,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8424,0,0,0,0,0,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8425,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8426,15,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8427,15,0,0,0,0,0,0,0,-1,0,134356,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8428,12,0,0,0,0,0,0,0,-1,0,134374,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8429,15,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8430,15,0,0,0,0,0,0,0,-1,0,133727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8431,12,0,0,0,0,0,0,0,-1,0,132906,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8432,0,0,0,0,1,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8443,12,0,0,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8444,0,8,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8463,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8483,12,0,0,0,0,0,0,0,-1,0,132816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8484,15,0,0,0,0,0,0,0,-1,0,132764,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8485,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8486,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8487,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8488,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8489,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8490,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8491,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8492,15,2,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8493,0,8,0,0,0,0,0,0,-1,0,132620,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8494,15,2,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8495,15,2,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8496,15,2,0,0,0,0,0,0,-1,0,136036,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8497,15,2,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8498,15,2,0,0,0,0,0,0,-1,0,134157,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8499,15,2,0,0,0,0,0,0,-1,0,134153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8500,15,2,0,0,0,0,0,0,-1,0,132150,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8501,15,2,0,0,0,0,0,0,-1,0,132150,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8502,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8503,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8504,15,0,1,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8505,15,0,1,0,0,0,0,0,-1,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8506,15,0,1,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8507,15,0,1,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8508,15,0,2,0,0,0,0,0,-1,0,134305,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8523,12,0,0,0,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8524,12,0,0,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8525,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8526,12,0,0,0,0,0,0,0,-1,0,134527,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8527,12,0,0,0,0,0,0,0,-1,0,133632,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8528,12,0,0,0,0,0,0,0,-1,0,134798,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8529,0,2,0,0,35,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8543,0,5,0,0,25,0,0,0,-1,0,134533,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8544,0,7,7,0,0,0,0,0,-1,0,133689,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8545,0,7,7,0,0,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8546,0,8,0,0,0,0,0,0,-1,0,133588,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8547,9,7,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8548,0,0,0,0,0,0,0,0,-1,0,135470,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8563,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8564,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8583,15,0,0,0,30,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8584,12,0,0,0,0,0,0,0,-1,0,134867,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8585,12,0,0,0,0,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8586,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8587,12,0,0,0,0,0,0,0,-1,0,134365,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8588,15,5,0,0,30,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8589,15,0,0,0,30,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8590,15,0,0,0,30,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8591,15,5,0,0,30,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8592,15,5,0,0,30,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8593,12,0,0,0,0,0,0,0,-1,0,132995,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8594,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8595,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8603,12,0,0,0,0,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8623,12,0,0,0,43,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8624,4,0,2,23,0,0,0,0,-1,0,135468,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8625,4,0,2,23,0,0,0,0,-1,0,135469,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8626,4,0,2,23,0,0,0,0,-1,0,135467,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8627,15,0,0,0,30,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8628,15,0,0,0,30,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8629,15,5,0,0,30,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8630,15,0,0,0,30,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8631,15,5,0,0,30,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8632,15,5,0,0,30,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8633,15,0,0,0,30,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8643,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8644,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8645,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8646,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8647,12,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8663,12,0,0,12,0,0,0,0,-1,0,133598,8,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8683,12,0,0,0,1,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8684,12,0,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8685,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8686,12,0,0,0,1,0,0,0,-1,0,133278,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8687,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8688,4,0,1,12,35,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8703,12,0,0,12,0,0,0,0,-1,0,133603,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8704,12,0,0,0,43,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8705,12,0,0,0,40,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8707,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8708,2,4,2,13,40,3,0,0,-1,0,133061,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +8723,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8724,12,0,0,0,1,0,0,0,-1,0,134459,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8743,9,0,0,0,1,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8744,9,0,0,0,6,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8746,4,1,7,1,28,0,0,0,-1,0,133130,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8747,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8748,4,3,5,1,25,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8749,4,1,7,1,38,0,0,0,-1,0,133117,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8750,4,2,8,1,37,0,0,0,-1,0,133090,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8751,4,3,5,1,39,0,0,0,-1,0,133141,10,0,60,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8752,4,3,5,1,49,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8753,4,2,8,1,52,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8754,4,1,7,1,51,0,0,0,-1,0,133135,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8755,4,4,5,1,50,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8756,9,0,0,0,18,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8757,9,0,0,0,20,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8758,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8759,9,0,0,0,24,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8760,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8761,9,0,0,0,26,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8762,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8763,9,0,0,0,28,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8764,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8765,9,0,0,0,30,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8766,0,5,7,0,45,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8768,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8769,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8770,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8771,9,0,0,0,34,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8772,9,0,0,0,36,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8773,9,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8774,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8775,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8776,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8777,9,0,0,0,52,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8778,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8779,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8780,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8781,9,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8782,9,0,0,0,44,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8783,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8784,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8785,9,0,0,0,52,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8786,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8787,9,0,0,0,22,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8788,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8789,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8790,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8791,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8792,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8793,9,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8794,9,0,0,0,56,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8795,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8796,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8797,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8798,9,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8799,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8800,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8801,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8802,9,0,0,0,1,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8804,9,0,0,0,14,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8805,9,0,0,0,16,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8806,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8807,9,0,0,0,18,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8808,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8809,9,0,0,0,8,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8810,9,0,0,0,20,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8811,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8812,9,0,0,0,22,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8813,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8814,9,0,0,0,24,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8815,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8816,9,0,0,0,26,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8818,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8819,9,0,0,0,28,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8820,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8821,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8822,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8823,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8824,9,0,0,0,30,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8825,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8826,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8827,0,2,3,0,35,0,0,0,-1,0,134794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8828,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8829,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8830,9,0,0,0,34,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8831,7,9,7,0,0,0,0,0,-1,0,134198,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8832,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8833,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8834,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8835,9,0,0,0,36,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8836,7,9,7,0,0,0,0,0,-1,0,134194,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8837,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8838,7,9,7,0,0,0,0,0,-1,0,134199,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8839,7,9,7,0,0,0,0,0,-1,0,134195,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8840,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8841,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8842,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8843,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8844,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8845,7,9,7,0,0,0,0,0,-1,0,134529,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8846,7,9,7,0,0,0,0,0,-1,0,134197,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8847,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8848,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8849,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8850,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8851,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8852,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8853,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8854,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8855,9,0,0,0,42,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8856,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8857,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8858,9,0,0,0,44,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8859,9,0,0,0,46,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8860,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8861,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8862,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8863,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8864,9,0,0,0,48,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8865,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8866,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8867,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8868,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8869,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8871,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8872,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8873,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8874,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8875,9,0,0,0,52,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8876,9,0,0,0,32,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8877,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8878,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8879,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8880,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8881,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8882,9,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8883,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8884,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8885,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8886,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8887,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8888,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8889,9,0,0,0,58,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8890,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8891,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8892,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8893,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8894,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8895,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8896,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8897,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8898,9,0,0,0,38,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8899,9,0,0,0,40,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8900,9,0,0,0,38,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8901,9,0,0,0,44,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8902,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8903,9,0,0,0,40,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8904,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8905,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8906,9,0,0,0,46,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8907,9,0,0,0,42,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8909,9,0,0,0,8,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8910,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8911,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8912,9,0,0,0,10,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8913,9,0,0,0,16,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8914,9,0,0,0,22,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8915,9,0,0,0,24,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8916,9,0,0,0,26,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8917,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8918,9,0,0,0,30,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8919,9,0,0,0,32,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8920,9,0,0,0,34,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8921,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8922,9,0,0,0,40,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8923,15,1,7,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8924,15,1,7,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8925,7,11,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8926,0,8,3,0,44,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8927,0,8,3,0,52,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8928,0,8,3,0,60,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8929,9,0,0,0,44,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8930,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8931,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8932,0,5,0,0,45,0,0,0,-1,0,133993,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8933,9,0,0,0,46,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8934,9,0,0,0,48,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8935,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8936,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8937,9,0,0,0,50,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8938,9,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8939,9,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8940,9,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8941,9,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8942,9,0,0,0,56,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8943,9,0,0,0,56,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8944,9,0,0,0,58,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8945,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8947,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8948,0,5,0,0,45,0,0,0,-1,0,134526,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8949,0,2,3,0,27,0,0,0,-1,0,134873,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8950,0,5,0,0,45,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8951,0,2,3,0,29,0,0,0,-1,0,134845,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8952,0,5,0,0,45,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8953,0,5,0,0,45,0,0,0,-1,0,133979,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8954,9,0,0,0,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8955,9,0,0,0,8,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8956,0,8,3,0,31,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8957,0,5,0,0,45,0,0,0,-1,0,133908,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8958,9,0,0,0,10,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8959,7,8,0,0,45,0,0,0,-1,0,133908,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8960,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8961,9,0,0,0,14,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8962,9,0,0,0,16,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8963,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8964,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8965,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8966,9,0,0,0,20,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8967,9,0,0,0,22,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8968,9,0,0,0,24,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8969,9,0,0,0,26,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8971,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8972,9,0,0,0,28,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8973,12,0,0,0,0,0,0,0,-1,0,134361,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8974,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8975,9,0,0,0,30,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8976,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8977,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8978,9,0,0,0,32,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8980,9,0,0,0,34,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8981,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8983,9,0,0,0,38,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8984,0,8,3,0,46,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8985,0,8,3,0,54,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8986,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8987,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8988,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8989,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8990,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8991,9,0,0,0,40,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8992,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8993,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8994,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8995,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8996,9,0,0,0,42,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8997,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8998,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8999,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9000,9,0,0,0,44,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9001,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9002,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9003,9,0,0,0,46,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9004,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9005,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9006,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9007,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9008,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9009,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9010,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9011,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9012,9,0,0,0,50,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9013,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9014,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9015,9,0,0,0,52,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9016,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9017,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9018,9,0,0,0,54,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9019,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9020,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9021,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9022,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9023,9,0,0,0,56,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9024,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9025,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9026,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9027,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9028,9,0,0,0,58,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9029,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9030,0,1,3,0,32,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9031,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9032,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9033,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9034,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9035,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9036,0,1,3,0,32,0,0,0,-1,0,134787,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9037,9,0,0,0,1,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9039,9,0,0,0,4,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9040,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9041,9,0,0,0,6,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9043,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9044,9,0,0,0,8,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9046,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9047,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9048,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9049,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9050,9,0,0,0,12,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9051,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9052,9,0,0,0,14,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9053,9,0,0,0,16,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9054,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9055,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9056,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9057,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9058,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9059,9,0,0,0,10,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9060,7,1,0,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9061,7,1,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9062,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9063,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9064,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9065,9,0,0,0,22,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9066,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9067,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9068,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9069,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9070,9,0,0,0,24,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9071,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9072,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9073,9,0,0,0,26,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9074,9,0,0,0,28,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9075,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9076,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9077,9,0,0,0,18,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9078,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9079,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9080,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9081,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9082,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9083,9,0,0,0,30,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9084,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9085,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9086,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9087,9,0,0,0,32,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9088,0,2,0,0,38,0,0,0,-1,0,134808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9089,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9090,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9091,9,0,0,0,34,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9093,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9094,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9095,9,0,0,0,36,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9096,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9097,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9098,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9099,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9100,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9101,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9102,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9103,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9104,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9105,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9123,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9124,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9125,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9126,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9127,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9128,9,0,0,0,42,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9129,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9130,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9131,9,0,0,0,44,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9132,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9133,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9134,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9135,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9136,9,0,0,0,46,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9137,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9138,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9139,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9140,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9141,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9142,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9143,9,0,0,0,48,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9144,0,1,0,0,35,0,0,0,-1,0,134814,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9145,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9146,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9147,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9148,9,0,0,0,50,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9149,4,0,2,12,35,0,0,0,-1,0,134333,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9150,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9151,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9152,9,0,0,0,52,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9153,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9154,0,2,0,0,36,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9155,0,2,0,0,37,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9156,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9157,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9158,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9159,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9160,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9161,9,0,0,0,54,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9162,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9164,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9165,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9166,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9167,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9168,9,0,0,0,56,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9169,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9170,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9171,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9172,0,1,3,0,37,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9173,12,0,0,0,1,0,0,0,-1,0,132488,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9174,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9175,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9176,9,0,0,0,58,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9177,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9178,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9179,0,2,3,0,37,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9180,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9181,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9182,9,0,0,0,60,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9183,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9184,9,0,0,0,40,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9185,9,0,0,0,38,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9186,0,8,3,0,52,0,0,0,-1,0,136066,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9187,0,2,3,0,38,0,0,0,-1,0,134874,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9188,9,0,0,0,20,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9189,12,0,0,0,0,0,0,0,-1,0,133706,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9190,9,0,0,0,1,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9191,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9192,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9193,9,0,0,0,6,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9194,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9195,9,0,0,0,10,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9197,0,2,3,0,38,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9198,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9199,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9200,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9201,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9202,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9203,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9204,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9205,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9206,0,2,3,0,38,0,0,0,-1,0,134841,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9207,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9208,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9209,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9210,7,11,3,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9211,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9212,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9214,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9215,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9216,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9217,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9218,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9219,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9221,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9222,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9223,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9224,0,2,3,0,40,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9225,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9226,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9227,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9228,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9229,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9230,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9231,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9233,0,2,0,0,40,0,0,0,-1,0,134833,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9234,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9235,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9236,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9237,12,0,8,0,0,0,0,0,-1,0,134322,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9238,12,0,0,0,0,0,0,0,-1,0,134305,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9240,12,0,0,0,0,0,0,0,-1,0,133056,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9241,12,0,0,0,0,0,0,0,-1,0,133056,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9242,15,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9243,4,0,8,2,40,0,0,0,-1,0,134338,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9244,12,0,0,0,0,0,0,0,-1,0,132620,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9245,12,0,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9246,12,0,0,0,0,0,0,0,-1,0,134166,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9247,12,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9248,12,0,0,0,0,0,0,0,-1,0,136098,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9249,13,0,0,0,0,0,0,0,-1,0,134235,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9250,12,0,0,0,40,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9251,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9252,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9253,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9254,12,0,0,0,40,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9255,12,0,1,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9256,12,0,1,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9257,12,0,1,0,0,0,0,0,-1,0,134577,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9258,12,0,1,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9259,15,0,0,0,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9260,0,1,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9261,15,0,1,0,0,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9262,7,11,1,0,0,0,0,0,-1,0,134133,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9263,12,0,0,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9264,0,2,3,0,40,0,0,0,-1,0,134826,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9265,12,0,0,0,0,0,0,0,-1,0,132594,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9266,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9275,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9276,15,0,0,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9277,12,0,0,0,0,0,0,0,-1,0,132488,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9278,12,0,0,0,0,0,0,0,-1,0,132995,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9279,12,0,0,0,0,0,0,0,-1,0,134393,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9280,12,0,0,0,0,0,0,0,-1,0,134394,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9281,12,0,0,0,0,0,0,0,-1,0,134392,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9282,12,0,0,0,0,0,0,0,-1,0,134390,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9283,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9284,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9285,4,4,6,9,40,0,1115,0,-1,0,132616,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9286,4,4,6,5,40,0,528,0,-1,0,132749,11,0,115,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9287,4,4,6,10,40,0,779,0,-1,0,132938,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9288,4,4,6,6,40,0,947,0,-1,0,132492,11,0,40,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9289,4,4,6,8,40,0,863,0,-1,0,132535,11,0,55,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9290,4,4,6,1,40,0,695,0,-1,0,133124,11,0,70,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9291,4,4,6,7,40,0,612,0,-1,0,134583,11,0,85,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9292,4,4,6,3,40,0,1199,0,-1,0,135040,11,0,70,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9293,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9294,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9295,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9296,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9297,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9298,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9299,13,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9300,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9301,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9302,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9303,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9304,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9305,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9306,12,0,2,0,0,0,0,0,-1,0,135157,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9307,12,0,1,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9308,12,0,0,0,0,0,0,0,-1,0,132386,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9309,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9311,0,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9312,0,8,0,0,0,0,0,0,-1,0,135989,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9313,0,8,0,0,0,0,0,0,-1,0,136006,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9314,0,8,0,0,0,0,0,0,-1,0,135815,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9315,0,8,0,0,0,0,0,0,-1,0,135920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9316,12,0,0,0,0,0,0,0,-1,0,134391,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9317,0,8,0,0,0,0,0,0,-1,0,135934,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9318,0,8,0,0,0,0,0,0,-1,0,135808,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9319,0,0,0,0,0,0,0,0,-1,0,135125,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9320,12,0,0,0,0,0,0,0,-1,0,133731,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9321,12,0,3,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9322,12,0,0,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9323,12,0,7,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9324,12,0,0,0,0,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9325,12,0,2,0,0,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9326,12,0,0,0,28,0,0,0,-1,0,135230,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9327,12,0,0,0,0,0,0,0,-1,0,133218,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9328,12,0,1,0,0,0,0,0,-1,0,134442,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9329,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9330,12,0,0,0,0,0,0,0,-1,0,134300,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9331,12,0,0,0,0,0,0,0,-1,0,133734,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9332,15,0,3,0,0,0,0,0,-1,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9333,4,0,3,2,0,0,0,0,-1,0,132507,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9334,15,0,3,0,0,0,0,0,-1,0,132835,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9335,15,0,3,0,0,0,0,0,-1,0,133476,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9336,15,0,3,0,0,0,0,0,-1,0,133025,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9355,15,0,3,0,0,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9356,15,0,3,0,0,0,0,0,-1,0,133479,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9357,15,0,3,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9358,15,0,3,0,0,0,0,0,-1,0,133694,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9359,2,4,2,13,40,3,0,0,-1,0,133942,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +9360,0,5,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9361,0,5,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9362,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9363,15,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9364,12,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9365,12,0,0,0,0,0,0,0,-1,0,136006,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9366,4,3,5,10,36,0,0,0,-1,0,132963,10,0,35,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9367,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9368,12,0,0,0,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9369,12,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9370,12,0,0,0,38,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9371,12,0,1,0,0,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9372,2,8,1,17,50,1,0,0,-1,0,135350,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,163,0,0,0,0 +9375,4,2,8,1,33,0,0,0,-1,0,133120,7,0,60,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9378,2,0,1,13,33,3,0,0,-1,0,134708,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +9379,2,7,1,13,44,3,0,0,-1,0,135355,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +9380,2,7,1,13,45,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +9381,2,19,2,26,33,0,0,0,-1,0,135154,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +9382,4,2,8,8,33,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9383,2,1,1,17,35,1,0,0,-1,0,132405,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +9384,2,15,1,13,31,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +9385,2,8,1,17,31,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,100,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +9386,2,4,2,13,31,7,0,0,-1,0,135432,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,82,0,0,0,0 +9387,4,4,6,8,40,0,863,0,-1,0,132587,11,0,65,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9388,4,3,5,9,35,0,1094,0,-1,0,132615,10,0,40,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9389,4,2,8,3,36,0,1157,0,-1,0,135056,7,0,60,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9390,4,1,7,10,35,0,716,0,-1,0,132951,7,0,30,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9391,2,5,2,17,32,1,0,0,-1,0,134436,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9392,2,7,1,13,35,3,0,0,-1,0,135327,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,64,0,0,0,0 +9393,4,0,0,23,33,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9394,4,4,6,1,40,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9395,4,1,7,10,29,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9396,4,3,5,7,34,0,0,0,-1,0,134590,10,0,90,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9397,4,1,7,16,34,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9398,4,2,8,8,35,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9399,6,2,2,24,35,0,0,0,-1,0,132381,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,12,0,0,0,0 +9400,2,2,2,15,36,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +9401,2,7,1,13,38,3,0,0,-1,0,135325,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +9402,4,2,8,7,55,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9403,4,6,1,14,35,4,0,0,-1,0,134953,9,0,100,0,0,0,0,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9404,4,6,1,14,37,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9405,4,3,5,6,28,0,0,0,-1,0,132516,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9406,4,2,8,5,30,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9407,4,1,7,7,35,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9408,2,10,2,17,37,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +9409,4,3,5,9,37,0,1096,0,-1,0,132618,10,0,40,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9410,4,4,6,10,40,0,782,0,-1,0,132946,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9411,4,3,5,3,40,0,0,0,-1,0,135033,10,0,70,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9412,2,3,1,26,40,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +9413,2,5,2,17,40,1,0,0,-1,0,133049,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +9414,4,2,8,7,40,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9415,4,1,7,5,40,0,0,0,-1,0,135009,7,0,80,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9416,2,6,1,17,40,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9417,4,0,3,2,42,0,0,0,-1,0,134459,24,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9418,2,8,1,17,40,1,0,0,-1,0,135357,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +9419,2,4,2,13,40,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +9420,4,2,8,1,32,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9421,0,8,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9422,2,3,1,26,38,0,0,0,-1,0,134536,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +9423,2,5,2,17,40,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,119,0,0,0,0 +9424,2,7,1,13,36,1,0,0,-1,0,135352,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +9425,2,1,1,17,39,1,0,0,-1,0,135578,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,187,0,0,0,0 +9426,2,2,2,15,36,0,0,0,-1,0,135489,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +9427,2,4,2,13,37,3,0,0,-1,0,133718,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +9428,4,2,8,9,30,0,1073,0,-1,0,132605,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9429,4,1,7,1,39,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9430,4,3,5,3,40,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9431,4,1,7,1,38,0,0,0,-1,0,133130,7,0,50,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9432,4,4,6,9,40,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9433,4,1,7,9,41,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9434,4,1,7,5,36,0,0,0,-1,0,132718,7,0,80,0,0,0,0,0,0,59,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +9435,4,3,5,10,31,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9436,12,0,0,0,0,0,0,0,-1,0,133472,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9437,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9438,12,0,0,0,0,0,0,0,-1,0,136128,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9439,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9440,12,0,0,0,0,0,0,0,-1,0,134305,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9441,12,0,0,0,0,0,0,0,-1,0,134370,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9442,12,0,0,0,0,0,0,0,-1,0,136128,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9443,12,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9444,4,6,1,14,21,4,0,0,-1,0,134955,9,0,80,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9445,4,3,5,10,29,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9446,2,7,1,13,28,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +9447,4,0,5,11,28,1,0,0,-1,0,134066,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9448,4,1,7,9,28,0,0,0,-1,0,133679,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9449,2,5,2,17,28,1,0,0,-1,0,133489,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,70,0,0,0,0 +9450,4,2,8,8,28,0,0,0,-1,0,132537,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9451,0,5,7,0,15,0,0,0,-1,0,134712,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9452,2,10,2,17,27,2,0,0,-1,0,135152,13,0,100,0,0,0,0,0,0,0,0,0,0,15,0,0,59,0,0,0,0,90,0,0,0,0 +9453,2,15,1,13,27,3,0,0,-1,0,135638,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +9454,4,1,7,8,27,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,34,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +9455,4,2,8,9,28,0,1072,0,-1,0,132608,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 +9456,2,3,1,26,30,0,0,0,-1,0,135611,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +9457,2,4,2,13,30,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +9458,4,6,1,14,28,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9459,2,1,1,17,28,1,0,0,-1,0,132394,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +9460,12,0,0,0,0,0,0,0,-1,0,133721,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9461,4,0,5,11,28,1,3481,0,-1,0,134063,14,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0 +9462,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9463,12,0,1,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9464,12,0,1,0,0,0,0,0,-1,0,134435,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,73,0,0,0,0 +9465,2,0,1,13,40,3,0,0,-1,0,134707,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +9466,12,0,1,0,0,0,0,0,-1,0,134435,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9467,2,15,1,13,42,3,0,0,-1,0,134298,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +9468,12,0,0,0,0,0,0,0,-1,0,135992,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9469,4,3,5,5,43,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9470,4,1,7,1,44,0,0,0,-1,0,132482,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9471,12,0,0,0,0,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9472,12,0,0,0,0,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9473,4,2,8,5,44,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9474,4,2,8,7,44,0,0,0,-1,0,134585,7,0,75,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9475,2,6,1,17,44,2,0,0,-1,0,135124,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +9476,4,4,6,3,45,0,0,0,-1,0,135032,11,0,80,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9477,2,10,2,17,45,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +9478,2,0,1,13,45,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,117,0,0,0,0 +9479,4,2,8,1,45,0,0,0,-1,0,132266,7,0,60,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9480,2,6,1,17,43,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +9481,2,1,1,17,44,1,0,0,-1,0,132394,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,164,0,0,0,0 +9482,2,10,2,17,42,2,0,0,-1,0,135168,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,114,0,0,0,0 +9483,2,19,2,26,44,0,0,0,-1,0,135432,21,0,65,0,2,0,0,0,0,0,0,8,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +9484,4,1,7,7,45,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9485,2,0,1,13,25,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +9486,2,1,1,17,23,1,0,0,-1,0,132415,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,78,0,0,0,0 +9487,2,3,1,26,24,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,55,0,0,0,0 +9488,2,4,2,13,23,3,0,0,-1,0,133045,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +9489,2,19,2,26,26,0,0,0,-1,0,135467,21,0,55,0,4,0,0,0,0,0,0,0,0,5,0,0,24,0,0,0,0,46,0,0,0,0 +9490,2,8,1,17,24,1,0,0,-1,0,135347,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,92,0,0,0,0 +9491,4,1,7,10,27,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9492,4,1,7,1,28,0,0,0,-1,0,132995,7,0,50,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9507,12,0,0,0,0,0,0,0,-1,0,132764,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9508,4,1,7,20,26,0,0,0,-1,0,135018,7,0,80,0,0,0,0,0,0,48,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 +9509,4,2,8,7,25,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,90,0,-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9510,4,3,5,8,27,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9511,2,7,1,13,41,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +9512,4,1,7,16,41,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9513,2,10,2,17,0,2,0,0,-1,0,135158,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,0,0,0 +9514,2,10,2,17,0,2,0,0,-1,0,135147,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +9515,4,1,7,5,0,0,0,0,-1,0,135011,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9516,4,1,7,5,0,0,0,0,-1,0,135015,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9517,2,10,2,17,0,2,0,0,-1,0,135151,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +9518,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9519,4,1,7,8,0,0,0,0,-1,0,132540,7,0,35,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9520,2,15,1,13,0,3,0,0,-1,0,135654,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +9521,2,1,1,17,0,1,0,0,-1,0,132397,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +9522,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9523,12,0,7,0,0,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9527,2,10,2,17,0,2,0,0,-1,0,135473,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,116,0,0,0,0 +9528,12,0,0,0,0,0,0,0,-1,0,134131,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9529,15,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9530,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9531,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9532,15,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9533,4,0,5,11,0,1,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9534,4,2,8,1,0,0,0,0,-1,0,133135,7,0,60,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9535,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9536,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9537,15,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9538,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9539,15,0,0,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9540,15,0,0,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9541,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9542,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9543,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9544,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9545,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9546,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9547,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9548,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9550,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9551,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9552,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9553,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9554,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9555,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9556,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9557,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9558,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9559,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9560,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9561,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9562,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9563,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9564,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9565,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9566,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9567,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9568,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9569,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9570,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9571,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9572,12,0,0,0,0,0,0,0,-1,0,134414,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9573,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9574,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9575,12,0,0,0,0,0,0,0,-1,0,134455,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9576,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9577,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9578,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9579,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9580,12,0,0,0,0,0,0,0,-1,0,134415,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9581,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9587,1,0,7,18,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9588,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9589,12,0,1,0,0,0,0,0,-1,0,134139,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9590,12,0,1,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9591,12,0,8,0,0,0,0,0,-1,0,134257,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9592,12,0,1,0,0,0,0,0,-1,0,135241,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9593,12,0,1,0,0,0,0,0,-1,0,136074,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9594,12,0,1,0,0,0,0,0,-1,0,135992,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9595,12,0,1,0,0,0,0,0,-1,0,135865,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9596,12,0,1,0,0,0,0,0,-1,0,136011,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9597,12,0,1,0,0,0,0,0,-1,0,136018,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9598,4,1,7,20,0,0,0,0,-1,0,132677,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9599,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9600,4,1,7,7,0,0,0,0,-1,0,134589,7,0,35,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9601,4,2,8,8,0,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9602,2,8,1,17,0,1,0,0,-1,0,135276,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,26,0,0,0,0 +9603,2,10,2,17,0,2,0,0,-1,0,135159,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,22,0,0,0,0 +9604,2,5,2,17,0,1,0,0,-1,0,133479,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +9605,4,1,7,16,0,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9606,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9607,4,6,1,14,0,4,0,0,-1,0,134952,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9608,2,0,1,22,0,3,0,0,-1,0,134520,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +9609,4,1,7,10,0,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9618,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9619,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9620,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9621,12,0,1,0,0,0,0,0,-1,0,133841,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9622,4,0,0,11,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9623,4,1,7,20,0,0,0,0,-1,0,132659,7,0,80,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9624,4,2,8,7,0,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9625,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9626,2,1,1,17,0,1,0,0,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +9627,4,0,3,23,0,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9628,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9629,12,0,0,0,0,0,0,0,-1,0,134150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9630,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9631,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9632,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9633,4,2,8,8,0,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9634,4,1,7,10,0,0,0,0,-1,0,132956,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9635,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9636,4,1,7,6,0,0,0,0,-1,0,133694,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9637,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9638,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9639,2,4,2,13,43,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,113,0,0,0,0 +9640,4,4,6,10,43,0,783,0,-1,0,132960,11,0,45,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9641,4,0,3,2,43,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9642,4,0,5,11,0,1,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9643,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9644,4,0,3,23,0,7,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9645,4,1,7,8,0,0,0,0,-1,0,132535,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9646,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9647,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9648,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9649,4,1,7,20,0,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9650,4,3,5,5,0,0,0,0,-1,0,132751,10,0,120,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9651,2,4,2,13,0,3,0,0,-1,0,133038,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +9652,4,2,8,7,0,0,0,0,-1,0,134593,7,0,75,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9653,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9654,2,19,2,26,0,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +9655,4,0,5,11,0,1,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9656,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9657,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9658,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9659,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +9660,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9661,4,6,1,14,0,4,0,0,-1,0,134959,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9662,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9663,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9664,4,4,6,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9665,4,1,7,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9666,4,3,5,6,0,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9678,2,5,2,17,0,1,0,0,-1,0,133480,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +9679,2,1,1,17,0,1,0,0,-1,0,135562,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,125,0,0,0,0 +9680,2,15,1,13,0,3,0,0,-1,0,135654,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +9681,0,5,0,0,35,0,0,0,-1,0,132274,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9682,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9683,2,10,2,17,0,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +9684,2,0,1,13,0,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +9685,2,1,1,17,46,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +9686,2,4,2,13,0,3,0,0,-1,0,133060,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,115,0,0,0,0 +9687,4,2,8,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9698,4,2,8,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9699,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9700,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9701,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9702,2,14,2,13,1,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9703,4,1,7,16,0,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9704,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9705,4,2,8,6,0,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9706,4,6,1,14,0,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9718,2,7,1,13,33,3,0,0,-1,0,135280,8,0,90,0,0,2,0,0,0,0,0,0,0,0,0,0,39,5,0,0,0,74,10,0,0,0 +9719,7,11,1,0,0,0,0,0,-1,0,135280,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9738,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9739,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9740,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9741,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9742,4,1,7,6,7,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9743,4,1,7,8,7,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9744,4,1,7,9,7,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9745,4,1,7,16,6,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9746,4,1,7,10,8,0,0,0,-1,0,132955,7,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9747,4,1,7,7,9,0,539,0,-1,0,134586,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9748,4,1,7,20,10,0,455,0,-1,0,132659,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9749,4,1,7,5,10,0,455,0,-1,0,135009,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9750,4,2,8,6,7,0,0,0,-1,0,132514,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9751,4,2,8,8,7,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9752,4,2,8,9,7,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9753,4,6,1,14,7,4,6278,0,-1,0,134956,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9754,4,1,7,16,6,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9755,4,2,8,10,8,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9756,4,2,8,7,9,0,560,0,-1,0,134585,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9757,4,2,8,5,10,0,476,0,-1,0,135010,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9758,4,3,5,6,7,0,0,0,-1,0,132506,10,0,20,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9759,4,3,5,8,8,0,0,0,-1,0,132582,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9760,4,3,5,9,7,0,0,0,-1,0,132611,10,0,20,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9761,4,1,7,16,6,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9762,4,3,5,10,8,0,0,0,-1,0,132946,10,0,20,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9763,4,3,5,7,9,0,581,0,-1,0,134590,10,0,55,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9764,4,6,1,14,8,4,6279,0,-1,0,134955,9,0,50,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9765,4,3,5,5,10,0,497,0,-1,0,132627,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9766,4,1,7,6,17,0,878,0,-1,0,132494,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9767,4,1,7,8,18,0,794,0,-1,0,132537,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9768,4,1,7,9,16,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9769,4,0,0,23,22,7,2014,0,-1,0,135153,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9770,4,1,7,16,15,0,961,0,-1,0,133769,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9771,4,1,7,10,20,0,711,0,-1,0,132952,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9772,4,1,7,7,22,0,543,0,-1,0,134590,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9773,4,1,7,20,22,0,459,0,-1,0,132656,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9774,4,1,7,5,22,0,459,0,-1,0,132656,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9775,4,2,8,6,14,0,898,0,-1,0,132492,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9776,4,2,8,8,15,0,814,0,-1,0,132539,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9777,4,2,8,9,14,0,1066,0,-1,0,132604,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9778,4,6,1,14,15,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9779,4,1,7,16,13,0,981,0,-1,0,133771,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9780,4,2,8,10,15,0,730,0,-1,0,132949,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9781,4,2,8,7,17,0,563,0,-1,0,134586,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9782,4,2,8,5,18,0,479,0,-1,0,135015,7,0,75,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9783,4,3,5,5,15,0,499,0,-1,0,132629,10,0,80,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9784,4,3,5,8,14,0,835,0,-1,0,132535,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9785,4,3,5,9,12,0,1086,0,-1,0,132612,10,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9786,4,1,7,16,11,0,1002,0,-1,0,133770,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9787,4,3,5,10,14,0,751,0,-1,0,132938,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9788,4,3,5,6,13,0,918,0,-1,0,132500,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9789,4,3,5,7,14,0,583,0,-1,0,134583,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9790,4,6,1,14,14,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9791,4,1,7,5,24,0,460,0,-1,0,135010,7,0,70,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9792,4,1,7,8,20,0,795,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9793,4,1,7,9,20,0,1047,0,-1,0,132611,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9794,4,1,7,16,20,0,963,0,-1,0,133767,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9795,4,1,7,10,21,0,711,0,-1,0,132961,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9796,4,1,7,3,22,0,1131,0,-1,0,135044,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9797,4,1,7,7,23,0,544,0,-1,0,134594,7,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9798,4,1,7,20,24,0,460,0,-1,0,132683,7,0,70,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9799,4,1,7,6,21,0,879,0,-1,0,132514,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9800,4,0,0,23,24,7,2020,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9801,4,2,8,6,20,0,900,0,-1,0,132491,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9802,4,2,8,8,21,0,816,0,-1,0,132537,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9803,4,2,8,9,21,0,1068,0,-1,0,132601,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9804,4,6,1,14,21,4,2016,0,-1,0,134955,9,0,80,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9805,4,1,7,16,19,0,983,0,-1,0,133762,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9806,4,2,8,10,22,0,732,0,-1,0,132939,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9807,4,2,8,3,22,0,1152,0,-1,0,135039,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9808,4,2,8,7,23,0,565,0,-1,0,134582,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9809,4,2,8,5,23,0,481,0,-1,0,132725,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9810,4,3,5,8,20,0,837,0,-1,0,132535,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9811,4,3,5,9,19,0,1088,0,-1,0,132602,10,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9812,4,1,7,16,17,0,1004,0,-1,0,133766,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9813,4,3,5,10,20,0,753,0,-1,0,132955,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9814,4,3,5,6,19,0,920,0,-1,0,132493,10,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9815,4,3,5,7,20,0,585,0,-1,0,134583,10,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9816,4,6,1,14,20,4,2016,0,-1,0,134953,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9817,4,3,5,3,21,0,1173,0,-1,0,135038,10,0,55,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9818,4,3,5,5,20,0,501,0,-1,0,132624,10,0,90,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9819,4,1,7,5,29,0,462,0,-1,0,132646,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9820,4,1,7,8,26,0,797,0,-1,0,132537,7,0,35,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9821,4,1,7,9,25,0,1048,0,-1,0,132610,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9822,4,1,7,16,24,0,964,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9823,4,1,7,10,26,0,713,0,-1,0,132939,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9824,4,1,7,3,27,0,1133,0,-1,0,135037,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9825,4,1,7,7,28,0,545,0,-1,0,134589,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9826,4,1,7,20,29,0,462,0,-1,0,132661,7,0,70,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9827,4,2,8,6,25,0,901,0,-1,0,132498,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9828,4,2,8,8,26,0,818,0,-1,0,132537,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9829,4,2,8,9,24,0,1069,0,-1,0,132602,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9830,4,6,1,14,27,4,2026,0,-1,0,134956,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9831,4,1,7,16,24,0,985,0,-1,0,133759,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9832,4,2,8,10,26,0,734,0,-1,0,132958,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9833,4,2,8,7,28,0,566,0,-1,0,134582,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9834,4,2,8,3,27,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9835,4,2,8,5,28,0,482,0,-1,0,132725,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9836,4,3,5,5,28,0,503,0,-1,0,132739,10,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9837,4,3,5,9,25,0,1090,0,-1,0,132602,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9838,4,1,7,16,24,0,1006,0,-1,0,133758,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9839,4,3,5,10,26,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9840,4,3,5,6,26,0,923,0,-1,0,132495,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9841,4,3,5,7,27,0,587,0,-1,0,134583,10,0,75,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9842,4,3,5,3,27,0,1175,0,-1,0,135046,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9843,4,6,1,14,28,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9844,4,1,7,5,33,0,463,0,-1,0,132647,7,0,70,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9845,4,1,7,8,30,0,798,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9846,4,1,7,9,30,0,1050,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9847,4,1,7,16,28,0,965,0,-1,0,133769,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9848,4,1,7,10,31,0,714,0,-1,0,132956,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9849,4,1,7,1,31,0,630,0,-1,0,133134,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9850,4,1,7,3,31,0,1134,0,-1,0,135036,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9851,4,1,7,7,32,0,547,0,-1,0,134587,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9852,4,1,7,20,33,0,463,0,-1,0,132663,7,0,70,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9853,4,1,7,6,29,0,882,0,-1,0,132504,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9854,4,2,8,5,33,0,484,0,-1,0,132723,7,0,85,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9855,4,2,8,6,30,0,903,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9856,4,2,8,8,31,0,819,0,-1,0,132542,7,0,45,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9857,4,2,8,9,29,0,1071,0,-1,0,132611,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9858,4,6,1,14,31,4,2034,0,-1,0,134955,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9859,4,2,8,1,31,0,651,0,-1,0,133117,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9860,4,1,7,16,29,0,987,0,-1,0,133755,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9861,4,2,8,10,30,0,735,0,-1,0,132956,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9862,4,2,8,7,32,0,568,0,-1,0,134587,7,0,65,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9863,4,2,8,3,32,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9864,4,3,5,8,31,0,840,0,-1,0,132539,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9865,4,3,5,9,29,0,1092,0,-1,0,132606,10,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9866,4,3,5,5,33,0,505,0,-1,0,132634,10,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9867,4,1,7,16,28,0,1007,0,-1,0,133757,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9868,4,3,5,10,30,0,756,0,-1,0,132962,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9869,4,3,5,6,30,0,924,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9870,4,3,5,1,31,0,672,0,-1,0,132768,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9871,4,3,5,7,32,0,589,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9872,4,3,5,3,32,0,1177,0,-1,0,135040,10,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9873,4,6,1,14,32,4,2040,0,-1,0,134953,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9874,4,1,7,5,38,0,465,0,-1,0,135017,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9875,4,1,7,6,34,0,883,0,-1,0,132499,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9876,4,1,7,8,35,0,800,0,-1,0,132539,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9877,4,1,7,16,33,0,967,0,-1,0,133765,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9878,4,1,7,1,36,0,632,0,-1,0,133153,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9879,4,1,7,9,34,0,1051,0,-1,0,132608,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9880,4,1,7,10,35,0,716,0,-1,0,132955,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9881,4,1,7,3,36,0,1136,0,-1,0,135033,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9882,4,0,0,23,38,7,2050,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9883,4,1,7,7,37,0,548,0,-1,0,134588,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9884,4,1,7,20,38,0,465,0,-1,0,132664,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9885,4,2,8,8,35,0,821,0,-1,0,132541,7,0,45,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9886,4,2,8,9,34,0,1072,0,-1,0,132605,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9887,4,2,8,5,38,0,486,0,-1,0,132722,7,0,85,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9888,4,6,1,14,31,4,2044,0,-1,0,136085,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9889,4,2,8,1,35,0,653,0,-1,0,132514,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9890,4,1,7,16,33,0,988,0,-1,0,133761,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9891,4,2,8,6,34,0,904,0,-1,0,132506,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9892,4,2,8,10,35,0,737,0,-1,0,132949,7,0,30,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9893,4,2,8,7,37,0,569,0,-1,0,134594,7,0,65,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9894,4,2,8,3,36,0,1157,0,-1,0,135039,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9895,4,3,5,8,35,0,842,0,-1,0,132589,10,0,50,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9896,4,3,5,9,34,0,1093,0,-1,0,132616,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9897,4,3,5,5,37,0,506,0,-1,0,132631,10,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9898,4,1,7,16,33,0,1009,0,-1,0,133759,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9899,4,6,1,14,37,4,2046,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9900,4,3,5,10,35,0,758,0,-1,0,132946,10,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9901,4,3,5,6,35,0,926,0,-1,0,132516,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9902,4,3,5,1,36,0,674,0,-1,0,133139,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9903,4,3,5,7,37,0,590,0,-1,0,134583,10,0,75,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9904,4,3,5,3,36,0,1178,0,-1,0,135057,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9905,4,1,7,5,43,0,466,0,-1,0,135017,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9906,4,1,7,6,39,0,885,0,-1,0,132499,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9907,4,1,7,8,39,0,801,0,-1,0,132539,7,0,35,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9908,4,1,7,16,38,0,969,0,-1,0,133754,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9909,4,1,7,9,38,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9910,4,1,7,10,39,0,717,0,-1,0,132951,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9911,4,1,7,7,41,0,550,0,-1,0,134593,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9912,4,1,7,3,40,0,1137,0,-1,0,135033,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9913,4,1,7,20,43,0,466,0,-1,0,132644,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9914,4,0,0,23,43,7,2056,0,-1,0,133483,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9915,4,1,7,1,40,0,633,0,-1,0,133693,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9916,4,2,8,6,39,0,906,0,-1,0,132506,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9917,4,2,8,8,39,0,822,0,-1,0,132542,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9918,4,6,1,14,40,4,2052,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9919,4,1,7,16,38,0,990,0,-1,0,133753,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9920,4,2,8,10,39,0,738,0,-1,0,132959,7,0,30,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9921,4,2,8,1,40,0,654,0,-1,0,133119,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9922,4,2,8,7,41,0,571,0,-1,0,134594,7,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9923,4,2,8,3,40,0,1158,0,-1,0,135049,7,0,50,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9924,4,2,8,5,43,0,487,0,-1,0,132723,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9925,4,2,8,9,39,0,1074,0,-1,0,132608,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9926,4,3,5,8,38,0,843,0,-1,0,132589,10,0,50,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9927,4,3,5,9,37,0,1094,0,-1,0,132612,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9928,4,3,5,5,40,0,507,0,-1,0,132750,10,0,100,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9929,4,1,7,16,36,0,1010,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9930,4,3,5,10,38,0,759,0,-1,0,132960,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9931,4,3,5,6,38,0,927,0,-1,0,132500,10,0,35,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9932,4,3,5,1,39,0,675,0,-1,0,133090,10,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9933,4,3,5,7,40,0,591,0,-1,0,134584,10,0,75,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9934,4,3,5,3,39,0,1179,0,-1,0,135054,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9935,4,6,1,14,40,4,2052,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9936,4,1,7,8,44,0,803,0,-1,0,132543,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9937,4,1,7,9,43,0,1054,0,-1,0,132610,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9938,4,1,7,16,43,0,970,0,-1,0,133768,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9939,4,1,7,10,44,0,719,0,-1,0,132951,7,0,25,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9940,4,1,7,1,45,0,635,0,-1,0,133131,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9941,4,1,7,3,44,0,1139,0,-1,0,135033,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9942,4,1,7,7,45,0,551,0,-1,0,134588,7,0,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9943,4,1,7,20,48,0,468,0,-1,0,132664,7,0,70,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9944,4,0,2,23,48,7,2068,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9945,4,1,7,6,43,0,886,0,-1,0,132511,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9946,4,1,7,5,48,0,468,0,-1,0,135021,7,0,70,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9947,4,2,8,6,43,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9948,4,2,8,8,44,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9949,4,2,8,9,43,0,1075,0,-1,0,132615,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9950,4,2,8,5,48,0,489,0,-1,0,132720,7,0,85,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9951,4,1,7,16,42,0,991,0,-1,0,133770,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9952,4,2,8,10,44,0,740,0,-1,0,132956,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9953,4,2,8,1,45,0,656,0,-1,0,133126,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9954,4,2,8,7,46,0,572,0,-1,0,134592,7,0,65,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9955,4,2,8,3,45,0,1160,0,-1,0,135032,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9956,4,3,5,9,41,0,1096,0,-1,0,132600,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9957,4,3,5,5,45,0,509,0,-1,0,132759,10,0,100,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9958,4,6,1,14,45,4,2064,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9959,4,1,7,16,40,0,1011,0,-1,0,133772,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9960,4,3,5,10,42,0,760,0,-1,0,132960,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9961,4,3,5,6,42,0,928,0,-1,0,132497,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9962,4,3,5,8,43,0,844,0,-1,0,132589,10,0,50,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9963,4,3,5,1,43,0,676,0,-1,0,132767,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9964,4,3,5,7,44,0,593,0,-1,0,134586,10,0,75,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9965,4,3,5,3,44,0,1181,0,-1,0,135036,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9966,4,4,6,5,40,0,528,0,-1,0,132722,11,0,115,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9967,4,4,6,10,40,0,780,0,-1,0,132957,11,0,40,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9968,4,4,6,6,40,0,947,0,-1,0,132500,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9969,4,4,6,1,40,0,696,0,-1,0,133127,11,0,70,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9970,4,4,6,7,40,0,612,0,-1,0,134586,11,0,85,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9971,4,4,6,3,40,0,1200,0,-1,0,135054,11,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9972,4,4,6,9,40,0,1115,0,-1,0,132602,11,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9973,4,4,6,8,40,0,863,0,-1,0,132588,11,0,55,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9974,4,6,1,14,47,4,2070,0,-1,0,135971,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9978,12,0,0,1,0,0,0,0,-1,0,133151,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9998,4,1,7,5,36,0,0,0,-1,0,132718,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9999,4,1,7,7,36,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10000,12,0,0,0,40,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10001,4,1,7,20,37,0,0,0,-1,0,132654,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10002,4,1,7,7,37,0,0,0,-1,0,134591,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10003,4,1,7,10,38,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10004,4,1,7,20,38,0,0,0,-1,0,132679,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10005,12,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10007,4,1,7,5,38,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10008,4,1,7,1,38,0,0,0,-1,0,133763,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10009,4,1,7,7,38,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10010,4,1,7,7,39,0,0,0,-1,0,134593,7,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10011,4,1,7,10,39,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10018,4,1,7,10,40,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10019,4,1,7,10,40,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10020,4,1,7,5,40,0,0,0,-1,0,132649,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10021,4,1,7,5,40,0,0,0,-1,0,132683,7,0,80,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10022,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10023,4,1,7,10,40,0,0,0,-1,0,132943,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10024,4,1,7,1,41,0,0,0,-1,0,133693,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10025,4,1,7,1,44,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10026,4,1,7,8,41,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10027,4,1,7,3,41,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10028,4,1,7,3,42,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10029,4,1,7,3,42,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10030,4,1,7,1,43,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10031,4,1,7,8,43,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10032,4,1,7,1,43,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10033,4,1,7,1,43,0,0,0,-1,0,133694,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10034,4,0,7,4,0,0,0,0,-1,0,135012,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10035,4,1,7,7,1,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10036,4,1,7,5,0,0,0,0,-1,0,135022,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10038,4,1,7,3,44,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10039,4,1,7,8,45,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10040,4,1,7,20,30,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10041,4,1,7,1,45,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10042,4,1,7,20,40,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10043,4,1,7,7,0,0,0,0,-1,0,134591,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10044,4,1,7,8,44,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10045,4,1,7,7,2,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10046,4,1,7,8,4,0,0,0,-1,0,132539,7,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10047,4,1,7,7,10,0,0,0,-1,0,134591,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10048,4,1,7,7,14,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10049,2,15,1,13,0,3,0,0,-1,0,135638,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +10050,1,0,8,18,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10051,1,0,8,18,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10052,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10053,4,0,7,20,0,0,0,0,-1,0,132662,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10054,4,0,7,4,0,0,0,0,-1,0,135028,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10055,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10056,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10057,4,1,7,5,50,0,469,0,-1,0,132724,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10058,4,1,7,8,45,0,803,0,-1,0,132543,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10059,4,1,7,9,45,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10060,4,1,7,16,44,0,971,0,-1,0,133772,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10061,4,1,7,1,46,0,635,0,-1,0,133134,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10062,4,1,7,10,46,0,719,0,-1,0,132957,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10063,4,1,7,3,46,0,1139,0,-1,0,135049,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10064,4,1,7,7,48,0,552,0,-1,0,134589,7,0,55,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10065,4,1,7,20,50,0,469,0,-1,0,132687,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10066,4,1,7,6,44,0,887,0,-1,0,132492,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10067,4,2,8,6,44,0,908,0,-1,0,132505,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10068,4,2,8,8,46,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10069,4,2,8,9,44,0,1076,0,-1,0,132613,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10070,4,2,8,5,50,0,490,0,-1,0,132632,7,0,85,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10071,4,1,7,16,44,0,992,0,-1,0,133758,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10072,4,2,8,10,46,0,740,0,-1,0,132946,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10073,4,2,8,1,47,0,657,0,-1,0,133111,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10074,4,2,8,7,48,0,573,0,-1,0,134591,7,0,65,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10075,4,2,8,3,46,0,1160,0,-1,0,135044,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10076,4,3,5,9,44,0,1097,0,-1,0,132613,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10077,4,3,5,5,48,0,510,0,-1,0,132750,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10078,4,6,1,14,48,4,2070,0,-1,0,135964,9,0,85,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10079,4,1,7,16,43,0,1012,0,-1,0,133754,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10080,4,3,5,10,45,0,761,0,-1,0,132963,10,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10081,4,3,5,6,45,0,929,0,-1,0,132524,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10082,4,3,5,8,46,0,845,0,-1,0,132587,10,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10083,4,3,5,1,46,0,677,0,-1,0,132767,10,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10084,4,3,5,7,47,0,594,0,-1,0,134584,10,0,75,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10085,4,3,5,3,47,0,1182,0,-1,0,135061,10,0,60,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10086,4,4,6,5,44,0,530,0,-1,0,132722,11,0,115,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10087,4,4,6,10,41,0,781,0,-1,0,132955,11,0,40,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10088,4,4,6,6,40,0,948,0,-1,0,132502,11,0,40,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10089,4,4,6,8,40,0,864,0,-1,0,132542,11,0,55,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10090,4,4,6,1,41,0,697,0,-1,0,133078,11,0,70,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10091,4,4,6,7,42,0,613,0,-1,0,134589,11,0,85,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10092,4,4,6,3,42,0,1201,0,-1,0,135039,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10093,4,6,1,14,49,4,2070,0,-1,0,134952,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10094,4,4,6,9,40,0,1116,0,-1,0,132607,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10095,4,1,7,8,51,0,805,0,-1,0,132543,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10096,4,1,7,9,49,0,1056,0,-1,0,132611,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10097,4,1,7,1,52,0,637,0,-1,0,132767,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10098,4,1,7,16,48,0,972,0,-1,0,133769,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10099,4,1,7,10,50,0,721,0,-1,0,132955,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10100,4,1,7,3,52,0,1141,0,-1,0,135037,7,0,45,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10101,4,1,7,7,53,0,554,0,-1,0,134590,7,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10102,4,1,7,20,54,0,470,0,-1,0,132680,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10103,4,1,7,6,49,0,888,0,-1,0,132514,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10104,4,1,7,5,54,0,470,0,-1,0,132651,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10105,4,2,8,5,55,0,491,0,-1,0,132725,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10106,4,2,8,8,51,0,826,0,-1,0,132541,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10107,4,2,8,9,49,0,1077,0,-1,0,132604,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10108,4,1,7,16,48,0,993,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10109,4,2,8,6,49,0,909,0,-1,0,132500,7,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10110,4,2,8,10,50,0,742,0,-1,0,132958,7,0,30,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10111,4,2,8,1,52,0,658,0,-1,0,133152,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10112,4,2,8,7,53,0,575,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10113,4,2,8,3,52,0,1162,0,-1,0,135039,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10118,4,3,5,5,53,0,512,0,-1,0,132632,10,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10119,4,3,5,8,52,0,847,0,-1,0,132586,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10120,4,1,7,16,48,0,1014,0,-1,0,133758,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10121,4,3,5,10,51,0,763,0,-1,0,132944,10,0,35,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10122,4,3,5,6,50,0,931,0,-1,0,132496,10,0,35,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10123,4,3,5,1,52,0,679,0,-1,0,132768,10,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10124,4,3,5,7,52,0,595,0,-1,0,134584,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10125,4,3,5,3,51,0,1183,0,-1,0,135033,10,0,60,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10126,4,3,5,9,49,0,1098,0,-1,0,132613,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10127,4,4,6,9,44,0,1118,0,-1,0,132615,11,0,40,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10128,4,4,6,5,49,0,531,0,-1,0,132746,11,0,115,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10129,4,4,6,10,45,0,782,0,-1,0,132965,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10130,4,4,6,6,45,0,950,0,-1,0,132519,11,0,40,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10131,4,4,6,8,45,0,866,0,-1,0,132583,11,0,55,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10132,4,4,6,1,46,0,698,0,-1,0,133071,11,0,70,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10133,4,4,6,7,47,0,615,0,-1,0,134583,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10134,4,4,6,3,46,0,1202,0,-1,0,135045,11,0,70,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10135,4,1,7,5,59,0,472,0,-1,0,135021,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10136,4,1,7,9,55,0,1058,0,-1,0,132604,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10137,4,1,7,8,56,0,807,0,-1,0,132542,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10138,4,1,7,16,54,0,974,0,-1,0,133768,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10139,4,1,7,1,57,0,639,0,-1,0,132768,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10140,4,1,7,10,56,0,723,0,-1,0,132940,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10141,4,1,7,7,58,0,555,0,-1,0,134593,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10142,4,1,7,3,57,0,1143,0,-1,0,135033,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10143,4,1,7,20,59,0,472,0,-1,0,132653,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10144,4,1,7,6,55,0,890,0,-1,0,132493,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10145,4,2,8,6,54,0,911,0,-1,0,132501,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10146,4,2,8,8,56,0,828,0,-1,0,132541,7,0,45,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10147,4,2,8,9,55,0,1079,0,-1,0,132617,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10148,4,1,7,16,53,0,995,0,-1,0,133762,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10149,4,2,8,10,56,0,744,0,-1,0,132957,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10150,4,2,8,1,57,0,660,0,-1,0,133156,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10151,4,2,8,5,59,0,493,0,-1,0,132646,7,0,85,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10152,4,2,8,7,58,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10153,4,2,8,3,57,0,1164,0,-1,0,135055,7,0,50,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10154,4,3,5,6,56,0,933,0,-1,0,132500,10,0,35,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10155,4,3,5,8,56,0,849,0,-1,0,132536,10,0,50,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10156,4,3,5,9,55,0,1100,0,-1,0,132617,10,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10157,4,3,5,5,59,0,514,0,-1,0,132629,10,0,100,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10158,4,6,1,14,59,4,2094,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10159,4,1,7,16,54,0,1016,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10160,4,3,5,1,57,0,681,0,-1,0,132767,10,0,60,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10161,4,3,5,10,56,0,765,0,-1,0,132960,10,0,35,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10162,4,3,5,7,58,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10163,4,3,5,3,57,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10164,4,4,6,5,53,0,533,0,-1,0,132751,11,0,115,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10165,4,4,6,10,50,0,784,0,-1,0,132963,11,0,40,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10166,4,4,6,6,49,0,951,0,-1,0,132521,11,0,40,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10167,4,4,6,8,50,0,868,0,-1,0,132584,11,0,55,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10168,4,4,6,1,51,0,700,0,-1,0,132767,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10169,4,4,6,7,52,0,616,0,-1,0,134586,11,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10170,4,4,6,3,51,0,1204,0,-1,0,135061,11,0,70,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10171,4,4,6,9,49,0,1119,0,-1,0,132613,11,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10172,4,1,7,3,50,0,1141,0,-1,0,135052,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10173,4,1,7,9,48,0,1056,0,-1,0,132609,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10174,4,1,7,16,47,0,972,0,-1,0,133754,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10175,4,1,7,1,50,0,637,0,-1,0,133163,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10176,4,1,7,10,49,0,720,0,-1,0,132957,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10177,4,1,7,7,51,0,553,0,-1,0,134586,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10178,4,1,7,20,53,0,470,0,-1,0,132658,7,0,70,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10179,4,1,7,8,49,0,804,0,-1,0,132543,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10180,4,1,7,6,47,0,888,0,-1,0,132491,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10181,4,1,7,5,53,0,470,0,-1,0,135021,7,0,70,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10182,4,2,8,5,53,0,491,0,-1,0,132717,7,0,85,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10183,4,2,8,8,49,0,825,0,-1,0,132542,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10184,4,2,8,9,47,0,1077,0,-1,0,132602,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10185,4,1,7,16,46,0,992,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10186,4,2,8,10,48,0,741,0,-1,0,132937,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10187,4,2,8,1,50,0,658,0,-1,0,133148,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10188,4,2,8,7,51,0,574,0,-1,0,134586,7,0,65,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10189,4,2,8,3,50,0,1162,0,-1,0,135054,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10190,4,2,8,6,47,0,909,0,-1,0,132502,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10191,4,3,5,9,46,0,1097,0,-1,0,132613,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10192,4,3,5,8,48,0,846,0,-1,0,132588,10,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10193,4,3,5,5,50,0,511,0,-1,0,132628,10,0,100,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10194,4,1,7,16,45,0,1013,0,-1,0,133766,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10195,4,6,1,14,50,4,2076,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10196,4,3,5,10,47,0,762,0,-1,0,132957,10,0,35,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10197,4,3,5,6,47,0,930,0,-1,0,132493,10,0,35,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10198,4,3,5,1,48,0,678,0,-1,0,133127,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10199,4,3,5,7,49,0,594,0,-1,0,134583,10,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10200,4,3,5,3,48,0,1182,0,-1,0,135059,10,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10201,4,4,6,8,43,0,865,0,-1,0,132535,11,0,55,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10202,4,4,6,9,43,0,1117,0,-1,0,132602,11,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10203,4,4,6,5,47,0,531,0,-1,0,132739,11,0,115,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10204,4,6,1,14,50,4,2076,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10205,4,4,6,10,44,0,782,0,-1,0,132938,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10206,4,4,6,6,43,0,949,0,-1,0,132495,11,0,40,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10207,4,4,6,1,44,0,698,0,-1,0,132767,11,0,70,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10208,4,4,6,7,45,0,614,0,-1,0,134581,11,0,85,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10209,4,4,6,3,45,0,1202,0,-1,0,135044,11,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10210,4,1,7,3,55,0,1142,0,-1,0,135041,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10211,4,1,7,8,54,0,806,0,-1,0,132536,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10212,4,1,7,16,52,0,973,0,-1,0,133758,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10213,4,1,7,9,53,0,1058,0,-1,0,132612,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10214,4,1,7,10,54,0,722,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10215,4,1,7,20,57,0,471,0,-1,0,132671,7,0,70,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10216,4,1,7,6,53,0,890,0,-1,0,132518,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10217,4,1,7,7,56,0,555,0,-1,0,134586,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10218,4,1,7,5,57,0,471,0,-1,0,132649,7,0,70,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10219,4,1,7,1,55,0,638,0,-1,0,132767,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10220,4,2,8,5,58,0,492,0,-1,0,132717,7,0,85,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10221,4,2,8,6,53,0,911,0,-1,0,132501,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10222,4,2,8,8,54,0,827,0,-1,0,132535,7,0,45,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10223,4,2,8,9,53,0,1079,0,-1,0,132615,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10224,4,1,7,16,52,0,994,0,-1,0,133754,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10225,4,2,8,10,54,0,743,0,-1,0,132949,7,0,30,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10226,4,2,8,1,56,0,660,0,-1,0,133076,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10227,4,2,8,7,57,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10228,4,2,8,3,55,0,1163,0,-1,0,135042,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10229,4,3,5,9,51,0,1099,0,-1,0,132602,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10230,4,3,5,5,55,0,512,0,-1,0,132751,10,0,100,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10231,4,1,7,16,50,0,1015,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10232,4,3,5,10,53,0,764,0,-1,0,132937,10,0,35,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10233,4,3,5,6,52,0,931,0,-1,0,132500,10,0,35,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10234,4,3,5,8,53,0,848,0,-1,0,132589,10,0,50,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10235,4,3,5,1,54,0,680,0,-1,0,133076,10,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10236,4,3,5,7,54,0,596,0,-1,0,134586,10,0,75,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10237,4,3,5,3,53,0,1184,0,-1,0,135054,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10238,4,4,6,8,47,0,867,0,-1,0,132535,11,0,55,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10239,4,4,6,9,46,0,1118,0,-1,0,132602,11,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10240,4,4,6,5,50,0,532,0,-1,0,132723,11,0,115,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10241,4,4,6,1,48,0,699,0,-1,0,133123,11,0,70,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10242,4,4,6,10,47,0,783,0,-1,0,132938,11,0,40,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10243,4,4,6,6,46,0,950,0,-1,0,132499,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10244,4,4,6,7,49,0,615,0,-1,0,134583,11,0,85,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10245,4,4,6,3,48,0,1203,0,-1,0,135049,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10246,4,1,7,5,60,0,472,0,-1,0,135008,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10247,4,1,7,8,58,0,807,0,-1,0,132539,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10248,4,1,7,9,57,0,1059,0,-1,0,132606,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10249,4,1,7,16,56,0,975,0,-1,0,133772,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10250,4,1,7,1,58,0,639,0,-1,0,133153,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10251,4,1,7,10,58,0,723,0,-1,0,132961,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10252,4,1,7,7,59,0,556,0,-1,0,134589,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10253,4,1,7,3,58,0,1143,0,-1,0,135040,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10254,4,1,7,20,60,0,472,0,-1,0,132670,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10255,4,1,7,6,57,0,891,0,-1,0,132493,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10256,4,2,8,9,56,0,1080,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10257,4,2,8,8,57,0,828,0,-1,0,132541,7,0,45,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10258,4,1,7,16,55,0,995,0,-1,0,133760,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10259,4,2,8,6,57,0,912,0,-1,0,132495,7,0,30,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10260,4,2,8,10,58,0,744,0,-1,0,132959,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10261,4,2,8,1,58,0,660,0,-1,0,133694,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10262,4,2,8,7,59,0,577,0,-1,0,134586,7,0,65,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10263,4,2,8,3,58,0,1164,0,-1,0,135046,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10264,4,2,8,5,60,0,493,0,-1,0,132722,7,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10265,4,3,5,9,57,0,1101,0,-1,0,132602,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10266,4,3,5,5,60,0,514,0,-1,0,132751,10,0,100,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10267,4,1,7,16,56,0,1017,0,-1,0,133766,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10268,4,3,5,10,58,0,765,0,-1,0,132938,10,0,35,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10269,4,3,5,6,57,0,933,0,-1,0,132500,10,0,35,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10270,4,3,5,8,58,0,849,0,-1,0,132584,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10271,4,6,1,14,60,4,2094,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10272,4,3,5,1,58,0,681,0,-1,0,133345,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10273,4,3,5,7,59,0,598,0,-1,0,134586,10,0,75,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10274,4,3,5,3,58,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10275,4,4,6,5,55,0,533,0,-1,0,132647,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10276,4,4,6,8,51,0,868,0,-1,0,132535,11,0,55,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10277,4,4,6,10,52,0,784,0,-1,0,132938,11,0,40,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10278,4,4,6,6,50,0,952,0,-1,0,132493,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10279,4,4,6,1,53,0,701,0,-1,0,133078,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10280,4,4,6,7,54,0,617,0,-1,0,134583,11,0,85,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10281,4,4,6,3,53,0,1205,0,-1,0,135033,11,0,70,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10282,4,4,6,9,51,0,1120,0,-1,0,132602,11,0,40,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10283,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10285,7,5,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10286,7,10,0,0,0,0,0,0,-1,0,134188,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10287,4,1,7,3,21,0,1131,0,-1,0,135044,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10288,4,1,7,1,26,0,629,0,-1,0,133693,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10289,4,1,7,1,27,0,629,0,-1,0,133117,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10290,7,11,3,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10298,4,0,5,11,25,0,3476,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10299,4,0,3,2,26,0,3506,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10300,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10301,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10302,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10303,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10304,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10305,0,4,7,0,45,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10306,0,4,7,0,45,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10307,0,4,7,0,50,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10308,0,4,7,0,50,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10309,0,4,7,0,55,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10310,0,4,7,0,55,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10311,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10312,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10313,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10314,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10315,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10316,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10317,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10318,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10319,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10320,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10321,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10322,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10323,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10324,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10325,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10326,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10327,12,0,0,0,0,0,0,0,-1,0,134227,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10328,4,3,5,5,34,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10329,4,3,5,6,32,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10330,4,3,5,7,38,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10331,4,3,5,10,33,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10332,4,3,5,8,30,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10333,4,3,5,9,31,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10338,12,0,0,0,0,0,0,0,-1,0,134368,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10358,4,3,5,9,0,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10359,4,1,7,8,0,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10360,15,2,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10361,15,2,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10362,4,6,1,14,53,4,2082,0,-1,0,135940,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10363,4,6,1,14,55,4,2082,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10364,4,6,1,14,53,4,2082,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10365,4,6,1,14,54,4,2082,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10366,4,6,1,14,58,4,2088,0,-1,0,136185,9,0,85,0,0,0,0,0,0,1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10367,4,6,1,14,60,4,2094,0,-1,0,135940,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10368,4,4,6,5,57,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10369,4,4,6,10,53,0,0,0,-1,0,132940,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10370,4,4,6,6,52,0,0,0,-1,0,132501,11,0,40,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10371,4,4,6,8,53,0,0,0,-1,0,132586,11,0,55,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10372,4,4,6,1,54,0,0,0,-1,0,133074,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10373,4,4,6,7,56,0,0,0,-1,0,134588,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10374,4,4,6,3,54,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10375,4,4,6,9,52,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10376,4,4,6,8,55,0,869,0,-1,0,132589,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10377,4,4,6,9,54,0,1121,0,-1,0,132612,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10378,4,4,6,5,58,0,534,0,-1,0,132741,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10379,4,4,6,1,56,0,702,0,-1,0,133069,11,0,70,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10380,4,4,6,10,55,0,785,0,-1,0,132966,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10381,4,4,6,6,54,0,953,0,-1,0,132502,11,0,40,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10382,4,4,6,7,57,0,618,0,-1,0,134583,11,0,85,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10383,4,4,6,3,56,0,1206,0,-1,0,135032,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10384,4,4,6,5,60,0,535,0,-1,0,132751,11,0,115,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10385,4,4,6,8,57,0,870,0,-1,0,132589,11,0,55,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10386,4,4,6,10,57,0,786,0,-1,0,132937,11,0,40,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10387,4,4,6,6,56,0,954,0,-1,0,132517,11,0,40,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10388,4,4,6,1,58,0,702,0,-1,0,133101,11,0,70,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10389,4,4,6,7,59,0,619,0,-1,0,134584,11,0,85,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10390,4,4,6,3,58,0,1206,0,-1,0,135054,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10391,4,4,6,9,55,0,1121,0,-1,0,132616,11,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10392,15,2,0,0,0,0,0,0,-1,0,136040,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10393,15,2,0,0,0,0,0,0,-1,0,136128,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10394,15,2,0,0,0,0,0,0,-1,0,132161,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10398,15,2,0,0,0,0,0,0,-1,0,135996,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10399,4,2,8,5,19,0,0,0,-1,0,132723,7,0,90,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10400,4,2,8,7,13,0,0,0,-1,0,134592,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10401,4,2,8,10,13,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10402,4,2,8,8,13,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10403,4,2,8,6,17,0,0,0,-1,0,132515,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10404,4,1,7,6,25,0,880,0,-1,0,132492,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10405,4,2,8,3,17,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10406,4,2,8,1,27,0,650,0,-1,0,133681,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10407,4,3,5,3,16,0,0,0,-1,0,135054,10,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10408,4,3,5,1,27,0,671,0,-1,0,133138,10,0,60,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10409,4,3,5,8,27,0,839,0,-1,0,132535,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10410,4,2,8,7,18,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10411,4,2,8,8,18,0,0,0,-1,0,132538,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10412,4,2,8,6,16,0,0,0,-1,0,132519,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10413,4,2,8,10,14,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10414,12,0,0,0,0,0,0,0,-1,0,134303,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10418,12,0,0,12,0,0,0,0,-1,0,133435,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10420,12,0,0,0,0,0,0,0,-1,0,133730,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10421,4,3,5,5,2,0,0,0,-1,0,132624,10,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10423,4,3,5,7,26,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10424,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10438,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10439,12,0,0,0,0,0,0,0,-1,0,132791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10440,12,0,0,0,0,0,0,0,-1,0,132791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10441,12,0,0,0,15,0,0,0,-1,0,135229,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10442,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10443,12,0,0,0,40,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10444,12,0,0,0,1,0,0,0,-1,0,134537,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10445,12,0,0,0,1,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10446,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10447,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10450,12,0,0,0,1,0,0,0,-1,0,132921,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10454,12,0,0,0,48,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10455,4,0,0,12,0,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10456,15,0,1,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10457,15,0,0,0,0,1,0,0,-1,0,134434,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10458,12,0,0,0,0,0,0,0,-1,0,134459,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10459,12,0,0,0,0,0,0,0,-1,0,134172,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10460,13,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10461,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10462,4,1,7,6,0,0,0,0,-1,0,132515,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10463,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10464,12,0,0,0,0,0,0,0,-1,0,135163,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10465,12,0,7,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10466,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10467,15,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10478,12,0,0,0,1,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10479,15,0,8,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10498,7,1,1,0,1,5,0,0,-1,0,134429,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10499,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10500,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,44,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10501,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10502,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10503,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10504,4,1,7,1,0,0,8652,0,-1,0,133146,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10505,7,1,8,0,0,0,0,0,-1,0,134380,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10506,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10507,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10508,2,3,1,26,36,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +10509,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10510,2,3,1,26,39,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +10511,12,0,0,0,0,0,0,0,-1,0,134120,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10512,6,3,2,24,37,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,13,0,0,0,0 +10513,6,3,2,24,44,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,0,0,0,0 +10514,7,2,8,0,0,0,0,0,-1,0,133710,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10515,4,0,2,17,0,2,0,0,-1,0,135466,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10518,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10538,12,0,0,0,0,0,0,0,-1,0,134457,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10539,12,0,0,0,0,0,0,0,-1,0,134458,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10540,12,0,0,0,0,0,0,0,-1,0,134455,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10541,12,0,0,0,0,0,0,0,-1,0,134456,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10542,4,3,5,1,0,0,0,0,-1,0,133127,10,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10543,4,1,7,1,0,0,0,0,-1,0,133162,7,0,45,0,0,0,0,0,0,44,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10544,2,4,2,21,0,3,0,0,-1,0,133053,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +10545,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10546,7,3,8,0,30,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10547,2,15,1,13,0,3,0,0,-1,0,135637,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +10548,7,3,8,0,40,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10549,4,1,7,7,0,0,0,0,-1,0,134593,7,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10550,4,1,7,10,0,0,0,0,-1,0,132936,7,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10551,12,0,1,0,0,0,0,0,-1,0,135650,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10552,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10553,4,1,7,5,6,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10554,4,1,7,7,6,0,0,0,-1,0,134587,7,0,35,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10555,4,0,0,11,0,0,0,0,-1,0,134412,14,0,0,0,0,0,0,0,0,-50,-50,-50,-50,-50,-50,0,0,0,0,0,0,0,0,0,0,0 +10556,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10558,7,1,8,0,0,0,0,0,-1,0,132489,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10559,7,1,8,0,0,0,0,0,-1,0,134535,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10560,7,1,8,0,0,0,0,0,-1,0,132488,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10561,7,1,8,0,0,0,0,0,-1,0,133021,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10562,7,2,8,0,0,0,0,0,-1,0,133715,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10563,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10564,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10565,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10566,12,0,0,0,1,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10567,2,2,2,15,33,0,0,0,-1,0,135489,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +10568,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10569,15,0,1,0,0,0,0,0,-1,0,132595,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10570,2,1,1,17,34,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +10571,2,4,2,13,32,3,0,0,-1,0,133727,8,0,90,0,0,0,0,0,0,0,0,0,0,0,5,0,31,0,0,0,0,59,0,0,0,0 +10572,2,19,2,26,34,0,0,0,-1,0,135463,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +10573,2,8,1,17,32,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,106,0,0,0,0 +10574,4,1,7,1,35,0,0,0,-1,0,133756,7,0,50,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10575,15,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10576,4,0,8,12,40,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10577,4,0,8,12,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10578,4,1,7,8,33,0,0,0,-1,0,132535,7,0,40,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10579,6,2,2,24,37,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,15,0,0,0,0 +10580,7,2,8,0,0,0,0,0,-1,0,132594,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10581,4,1,7,5,35,0,0,0,-1,0,132723,7,0,80,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10582,4,2,8,8,31,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10583,4,2,8,5,34,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10584,4,3,5,10,31,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10585,4,0,8,12,0,0,0,0,-1,0,135899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10586,7,2,8,0,0,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10587,4,0,8,12,0,0,0,0,-1,0,133000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10588,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10589,12,0,0,0,48,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10590,12,0,0,0,30,0,0,0,-1,0,134400,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10591,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10592,0,2,3,0,30,0,0,0,-1,0,134816,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10593,12,0,0,0,0,0,0,0,-1,0,134089,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10594,15,0,5,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10595,15,0,0,0,0,0,0,0,-1,0,134344,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10596,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10597,12,0,0,0,1,0,0,0,-1,0,134167,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10598,12,0,0,0,0,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10599,12,0,0,0,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10600,12,0,0,0,0,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10601,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10602,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10603,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10604,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10605,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10606,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10607,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10608,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10609,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10610,12,0,0,0,0,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10611,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10612,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10613,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10614,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10615,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10616,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10617,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10618,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10619,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +10620,7,7,1,0,0,0,0,0,-1,0,134578,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10621,0,0,0,0,15,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10622,12,0,0,0,0,0,0,0,-1,0,132484,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10623,2,0,1,13,43,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +10624,2,2,2,15,42,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +10625,2,15,1,13,44,3,0,0,-1,0,135351,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +10626,2,5,2,17,45,1,0,0,-1,0,133043,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,193,0,0,0,0 +10627,2,10,2,17,42,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +10628,2,8,1,17,43,1,0,0,-1,0,135341,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +10629,4,1,7,8,45,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10630,4,1,7,1,46,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10631,4,3,5,10,41,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10632,4,3,5,9,44,0,0,0,-1,0,133345,10,0,40,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10633,4,4,6,7,46,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10634,4,0,1,11,41,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10635,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10636,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10637,4,1,7,10,0,0,0,0,-1,0,132940,7,0,18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10638,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10639,12,0,0,0,1,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10640,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10641,12,0,0,0,0,0,0,0,-1,0,134182,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10642,12,0,0,0,0,0,0,0,-1,0,134814,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10643,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10644,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10645,4,0,8,12,0,0,0,0,-1,0,133002,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10646,7,2,8,0,0,0,0,0,-1,0,135826,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10647,7,1,3,0,0,0,0,0,-1,0,134845,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10648,7,11,3,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10649,12,0,0,0,0,0,0,0,-1,0,135229,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10650,12,0,0,0,0,0,0,0,-1,0,134358,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10651,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10652,2,1,1,17,0,1,0,0,-1,0,135575,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +10653,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10654,4,1,7,10,0,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10655,4,1,7,7,0,0,0,0,-1,0,134592,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10656,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10657,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10658,4,3,5,8,0,0,0,0,-1,0,132541,10,0,45,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10659,4,0,0,12,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10660,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10661,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10662,12,0,7,0,0,0,0,0,-1,0,132836,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10663,0,0,0,0,0,0,0,0,-1,0,136148,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10664,12,0,0,0,45,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10678,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10679,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10680,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10681,12,0,0,0,1,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10682,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10683,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10684,0,0,0,0,0,0,0,0,-1,0,132369,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10685,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +10686,4,6,1,14,0,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,1898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10687,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10688,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10689,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10690,0,0,0,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10691,12,0,0,0,0,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10692,12,0,0,0,0,0,0,0,-1,0,134822,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10693,12,0,0,0,0,0,0,0,-1,0,134836,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10694,12,0,0,0,0,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10695,15,0,0,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10696,2,7,1,13,0,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +10697,2,15,1,13,0,3,0,0,-1,0,135341,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +10698,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,157,0,0,0,0 +10699,12,0,0,0,0,0,0,0,-1,0,135474,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10700,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10701,4,3,5,8,0,0,0,0,-1,0,132588,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10702,4,2,8,8,0,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10703,2,15,1,13,0,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +10704,2,19,2,26,0,0,0,0,-1,0,135463,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +10705,4,1,7,9,0,0,0,0,-1,0,132611,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10706,4,3,5,6,0,0,0,0,-1,0,132522,10,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10707,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10708,4,0,3,23,0,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10709,4,0,3,23,0,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10710,4,0,5,11,0,1,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10711,4,0,3,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10712,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10713,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10714,12,0,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10715,12,0,0,0,0,0,0,0,-1,0,134442,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10716,4,0,8,12,0,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10717,12,0,0,0,0,0,0,0,-1,0,134376,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10718,12,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10719,7,3,8,0,0,0,0,0,-1,0,132761,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10720,4,0,8,12,0,0,0,0,-1,0,134325,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10721,4,2,8,6,0,0,0,0,-1,0,132495,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10722,12,0,0,0,0,0,0,0,-1,0,135996,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10723,4,0,8,12,0,0,0,0,-1,0,135899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10724,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10725,4,0,8,12,0,0,0,0,-1,0,135996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10726,4,1,7,1,0,0,0,0,-1,0,133151,7,0,45,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10727,4,0,8,12,0,0,0,0,-1,0,135812,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10728,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10738,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10739,4,0,5,11,0,1,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10740,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10741,4,2,8,1,0,0,0,0,-1,0,133090,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10742,4,1,7,7,0,0,0,0,-1,0,134585,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10743,4,3,5,1,0,0,0,0,-1,0,133119,10,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10744,2,0,1,13,0,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +10745,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10746,4,4,6,9,0,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10747,4,1,7,6,0,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10748,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10749,4,4,6,1,0,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10750,2,15,1,13,0,3,0,0,-1,0,135322,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +10751,4,1,7,1,0,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10752,15,0,0,0,0,0,0,0,-1,0,132596,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10753,12,0,0,0,0,0,0,0,-1,0,133277,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10754,12,0,0,0,0,0,0,0,-1,0,133279,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10755,12,0,0,0,0,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10756,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10757,13,0,0,0,0,0,0,0,-1,0,133276,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10758,2,8,1,17,35,1,0,0,-1,0,135355,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,148,0,0,0,0 +10759,12,0,0,0,0,0,0,0,-1,0,134228,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10760,4,2,8,10,34,0,0,0,-1,0,132957,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10761,2,15,1,13,37,3,0,0,-1,0,135344,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +10762,4,1,7,20,37,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10763,4,4,6,1,40,0,0,0,-1,0,133111,11,0,80,0,0,0,0,0,0,383,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +10764,4,3,5,5,37,0,0,0,-1,0,132747,10,0,120,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10765,4,2,8,10,37,0,0,0,-1,0,132943,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10766,2,19,2,26,35,0,0,0,-1,0,135465,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +10767,4,6,1,14,37,4,0,0,-1,0,134963,9,0,100,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10768,4,3,5,6,37,0,0,0,-1,0,132500,10,0,40,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10769,4,0,3,2,36,0,0,0,-1,0,134335,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10770,4,0,0,23,36,7,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10771,4,1,7,6,36,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10772,2,0,1,13,36,3,0,0,-1,0,132417,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +10773,15,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10774,4,2,8,3,37,0,0,0,-1,0,135059,7,0,60,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10775,4,4,6,5,40,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10776,4,1,7,16,35,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10777,4,2,8,10,37,0,739,0,-1,0,132966,7,0,35,0,0,0,0,0,0,79,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +10778,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +10779,4,0,4,12,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10780,4,0,5,11,0,1,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10781,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10782,4,1,7,1,0,0,0,0,-1,0,133140,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10783,4,2,8,3,47,0,1163,0,-1,0,135049,7,0,60,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10784,4,3,5,5,47,0,512,0,-1,0,132627,10,0,120,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10785,4,2,8,7,47,0,573,0,-1,0,134587,7,0,75,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10786,4,3,5,8,47,0,846,0,-1,0,132535,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10787,4,1,7,10,47,0,722,0,-1,0,132617,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10788,4,4,6,6,47,0,951,0,-1,0,132504,11,0,45,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10789,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10790,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10791,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10792,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10793,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10794,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10795,4,0,5,11,49,1,3486,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10796,4,0,3,23,49,7,2080,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10797,2,7,1,13,48,3,0,0,-1,0,135279,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +10798,4,4,5,6,46,0,0,0,-1,0,132504,11,0,45,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10799,2,6,1,17,46,2,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,159,0,0,0,0 +10800,4,2,8,9,47,0,1079,0,-1,0,132607,7,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10801,4,2,8,8,47,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10802,4,1,7,16,47,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10803,2,7,1,13,49,3,0,0,-1,0,135348,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +10804,2,4,2,13,49,3,0,0,-1,0,133048,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +10805,2,0,1,13,49,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +10806,4,1,7,5,50,0,0,0,-1,0,132679,7,0,80,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10807,4,1,7,7,50,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10808,4,1,7,10,50,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10818,12,0,7,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10819,12,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10820,4,1,7,6,0,0,0,0,-1,0,132498,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10821,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10822,15,2,0,0,0,0,0,0,-1,0,134154,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10823,2,7,1,13,0,3,0,0,-1,0,135345,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +10824,4,0,3,2,0,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10825,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10826,2,10,2,17,0,2,0,0,-1,0,135164,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,139,0,0,0,0 +10827,4,2,8,5,0,0,0,0,-1,0,132720,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10828,2,15,1,13,50,3,5315,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +10829,4,0,3,2,50,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10830,0,0,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10831,12,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10832,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10833,4,3,5,1,50,0,0,0,-1,0,133127,10,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10834,15,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10835,4,6,1,14,50,4,0,0,-1,0,134950,9,0,100,0,0,0,0,0,0,1930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10836,2,19,2,26,50,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +10837,2,0,1,13,50,3,0,0,-1,0,132398,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,116,0,0,0,0 +10838,2,4,2,13,49,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +10839,15,0,0,0,0,0,0,0,-1,0,134416,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10840,15,0,0,0,0,0,0,0,-1,0,134416,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10841,0,5,3,0,25,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10842,4,2,8,7,49,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10843,4,1,7,16,49,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10844,2,10,2,17,49,2,0,0,-1,0,135169,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +10845,4,4,6,5,49,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10846,4,3,5,8,49,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10847,2,7,1,13,52,3,0,0,-1,0,135348,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +10858,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10878,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10898,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +10918,0,8,3,0,32,0,0,0,-1,0,134197,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10919,4,1,7,10,0,0,0,0,-1,0,132940,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10920,0,8,3,0,40,0,0,0,-1,0,134197,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10921,0,8,3,0,48,0,0,0,-1,0,134197,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10922,0,8,3,0,56,0,0,0,-1,0,134197,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10938,7,12,2,0,0,0,0,0,-1,0,132867,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10939,7,12,2,0,0,0,0,0,-1,0,132866,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10940,7,12,2,0,0,0,0,0,-1,0,132858,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10958,12,0,0,0,0,0,0,0,-1,0,133298,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10959,1,0,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10978,7,12,2,0,0,0,0,0,-1,0,132877,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10998,7,12,2,0,0,0,0,0,-1,0,132863,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10999,12,0,0,0,0,0,0,0,-1,0,133060,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11000,13,0,0,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11018,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11019,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11020,12,0,0,0,0,0,0,0,-1,0,133651,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11021,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +11022,12,0,0,0,0,0,0,0,-1,0,136074,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11023,15,2,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11024,12,0,0,0,0,0,0,0,-1,0,134001,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11025,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11026,15,2,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11027,15,2,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11038,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11039,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11040,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11041,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11042,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11058,12,0,0,0,0,0,0,0,-1,0,133356,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11078,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11079,13,0,0,0,0,0,0,0,-1,0,136133,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11080,12,0,0,0,0,0,0,0,-1,0,136133,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11081,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11082,7,12,2,0,0,0,0,0,-1,0,132862,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11083,7,12,2,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11084,7,12,2,0,0,0,0,0,-1,0,132876,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11085,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11086,2,7,1,21,45,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +11087,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11098,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11099,7,7,1,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11101,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11102,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11103,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11104,12,0,0,0,0,0,0,0,-1,0,134377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11105,12,0,0,0,0,0,0,0,-1,0,134269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11106,12,0,0,0,0,0,0,0,-1,0,134238,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11107,12,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11108,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11109,0,5,0,0,1,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11110,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11111,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11112,12,0,0,0,0,0,0,0,-1,0,133000,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11113,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11114,12,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11115,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11116,15,0,0,0,48,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11118,4,0,3,11,40,0,3484,0,-1,0,135241,24,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11119,12,0,0,0,0,0,0,0,-1,0,134014,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11120,2,4,2,13,0,3,0,0,-1,0,133047,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +11121,2,7,1,13,21,3,0,0,-1,0,135346,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +11122,4,0,4,12,0,0,0,0,-1,0,134010,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11123,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11124,4,3,5,1,0,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11125,12,0,0,0,0,0,0,0,-1,0,134939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11126,12,0,0,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11127,12,0,0,0,0,0,0,0,-1,0,132766,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11128,7,12,1,0,0,5,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11129,12,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11130,7,12,1,0,0,5,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11131,12,0,0,0,0,0,0,0,-1,0,134822,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11132,12,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11133,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11134,7,12,2,0,0,0,0,0,-1,0,132869,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11135,7,12,2,0,0,0,0,0,-1,0,132868,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11136,12,0,0,0,0,0,0,0,-1,0,135324,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11137,7,12,2,0,0,0,0,0,-1,0,132859,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11138,7,12,2,0,0,0,0,0,-1,0,132879,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11139,7,12,2,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11140,13,0,0,0,0,0,0,0,-1,0,134244,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11141,12,0,0,0,0,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11142,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11143,12,0,0,0,0,0,0,0,-1,0,134063,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11144,7,12,1,0,0,5,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11145,7,12,1,0,0,5,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11146,12,0,0,0,0,0,0,0,-1,0,132995,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11147,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11148,0,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11149,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11150,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11151,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11152,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11162,12,0,0,0,0,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11163,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11164,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11165,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11166,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11167,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11168,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11169,12,0,0,0,0,0,0,0,-1,0,133742,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11170,4,0,0,23,0,0,0,0,-1,0,135467,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11171,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11172,12,0,0,0,0,0,0,0,-1,0,134319,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11173,12,0,0,0,0,0,0,0,-1,0,135241,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11174,7,12,2,0,0,0,0,0,-1,0,132871,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11175,7,12,2,0,0,0,0,0,-1,0,132870,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11176,7,12,2,0,0,0,0,0,-1,0,132855,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11177,7,12,2,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11178,7,12,2,0,0,0,0,0,-1,0,132883,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11179,12,0,0,0,0,0,0,0,-1,0,134961,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11184,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11185,12,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11186,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11187,4,1,7,9,0,0,0,0,-1,0,132611,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11188,12,0,0,0,0,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11189,4,1,7,20,0,0,0,0,-1,0,132663,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11190,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11191,4,1,7,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11192,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11193,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11194,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11195,4,4,6,5,0,0,0,0,-1,0,132638,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11196,4,0,3,2,0,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11197,13,0,0,0,0,0,0,0,-1,0,134245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11198,12,0,0,0,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11199,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11200,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11201,4,6,1,14,1,0,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11202,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11203,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11204,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11205,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11206,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11207,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11208,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11222,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11223,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11224,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11225,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11226,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11227,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11228,15,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11229,4,3,5,6,0,0,0,0,-1,0,132495,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11230,12,0,0,0,0,0,0,0,-1,0,135824,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11231,12,0,8,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11242,12,0,1,0,0,0,0,0,-1,0,134193,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11243,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11262,4,0,3,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11263,2,19,2,26,0,0,0,0,-1,0,135469,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +11264,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11265,2,5,2,17,0,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +11266,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11267,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11268,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11269,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11270,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11282,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11283,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11284,6,3,2,24,40,0,0,0,-1,0,132383,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,13,0,0,0,0 +11285,6,2,2,24,40,0,0,0,-1,0,135661,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,13,0,0,0,0 +11286,12,0,0,0,0,0,0,0,-1,0,132507,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11287,2,19,2,26,5,0,0,0,-1,0,135139,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,22,0,0,0,0 +11288,2,19,2,26,13,0,0,0,-1,0,135144,21,0,45,0,6,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,41,0,0,0,0 +11289,2,19,2,26,26,0,0,0,-1,0,135139,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +11290,2,19,2,26,30,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,76,0,0,0,0 +11291,7,11,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11302,4,0,5,12,47,0,0,0,-1,0,133439,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11303,2,2,2,15,11,0,0,0,-1,0,135495,12,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +11304,2,2,2,15,14,0,0,0,-1,0,135490,12,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +11305,2,2,2,15,30,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +11306,2,2,2,15,27,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,50,0,0,0,0 +11307,2,2,2,15,42,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +11308,2,2,2,15,44,0,0,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +11309,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11310,4,1,7,3,40,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11311,4,1,7,16,40,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11312,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11313,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11314,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11315,12,0,0,0,0,0,0,0,-1,0,134001,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11316,12,0,0,0,0,0,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11317,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11318,12,0,0,0,0,0,0,0,-1,0,134134,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11319,12,0,0,0,0,0,0,0,-1,0,133000,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11320,12,0,0,0,0,0,0,0,-1,0,133001,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11321,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11322,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11323,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11324,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11325,0,8,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11342,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11343,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11362,11,2,0,18,10,0,0,0,-1,0,134410,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11363,11,3,0,18,10,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11364,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11365,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11366,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11367,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11368,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11369,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11370,7,7,1,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11371,7,7,2,0,0,0,0,0,-1,0,133233,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11382,3,7,0,0,0,0,0,0,-1,0,134086,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11383,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11384,15,0,0,0,0,0,0,0,-1,0,133724,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11385,15,0,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11386,15,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11387,15,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11388,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11389,15,0,0,0,0,0,0,0,-1,0,134308,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11390,15,0,0,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11391,15,0,0,0,0,0,0,0,-1,0,134257,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11392,15,0,0,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11393,15,0,0,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11394,15,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11395,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11402,15,0,0,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11403,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11404,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11405,0,0,0,0,0,0,0,0,-1,0,134580,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11406,15,0,0,0,0,0,0,0,-1,0,134357,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11407,12,0,0,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11408,15,0,0,0,0,0,0,0,-1,0,133726,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11409,15,0,0,0,0,0,0,0,-1,0,133973,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11410,15,0,0,0,0,0,0,0,-1,0,134296,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11411,2,4,2,21,23,3,0,0,-1,0,133718,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +11412,12,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11413,0,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11414,15,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11415,0,5,0,0,45,0,0,0,-1,0,133996,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11416,15,0,0,0,0,0,0,0,-1,0,133719,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11417,15,0,0,0,0,0,0,0,-1,0,134303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11418,15,0,0,0,0,0,0,0,-1,0,133718,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11419,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11420,15,0,0,0,0,0,0,0,-1,0,132920,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11422,15,0,0,0,0,0,0,0,-1,0,134143,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11423,15,0,0,0,0,0,0,0,-1,0,134144,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11424,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11443,0,8,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11444,0,5,0,0,45,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11445,12,0,0,0,0,0,0,0,-1,0,133942,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11446,12,0,0,0,50,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11462,12,0,0,0,0,0,0,0,-1,0,135660,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11463,12,0,0,0,40,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11464,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11465,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11466,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11467,12,0,0,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11468,12,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11469,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11470,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11471,12,0,0,0,0,0,0,0,-1,0,132833,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11472,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11473,12,0,0,0,0,0,0,0,-1,0,133001,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11474,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11475,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11476,12,0,0,0,0,0,0,0,-1,0,134354,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11477,12,0,0,0,0,0,0,0,-1,0,133723,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11478,12,0,0,0,0,0,0,0,-1,0,134356,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11479,12,0,0,0,0,0,0,0,-1,0,134365,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11480,12,0,0,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11482,12,0,0,0,0,0,0,0,-1,0,133740,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11502,4,2,8,3,0,0,0,0,-1,0,135055,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11503,12,0,0,0,0,0,0,0,-1,0,134085,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11504,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11505,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11506,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +11507,12,0,0,0,0,0,0,0,-1,0,134364,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11508,4,1,7,8,0,0,0,0,-1,0,132579,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11509,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11510,12,0,0,0,0,0,0,0,-1,0,132193,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11511,12,0,0,0,0,0,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11512,12,0,0,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11513,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11514,12,0,0,0,0,0,0,0,-1,0,136007,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11515,12,0,0,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11516,12,0,0,0,0,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11522,4,0,0,23,0,0,0,0,-1,0,135467,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11542,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +11562,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11563,12,0,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11564,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11565,12,0,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11566,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11567,12,0,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11568,15,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11569,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11570,12,0,0,0,0,0,0,0,-1,0,134743,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11582,15,0,0,0,0,0,0,0,-1,0,134877,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11583,12,0,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11584,0,5,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11585,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11586,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11587,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11588,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11589,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11590,7,3,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11591,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11602,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11603,2,13,1,21,46,7,0,0,-1,0,132369,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +11604,4,4,6,5,54,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,617,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11605,4,4,6,3,53,0,0,0,-1,0,135040,11,0,70,0,0,0,0,0,0,414,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11606,4,3,5,5,51,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,303,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11607,2,1,1,17,52,1,0,0,-1,0,135572,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,153,0,0,0,0 +11608,2,5,2,17,50,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,211,0,0,0,0 +11609,12,0,0,0,0,0,0,0,-1,0,134430,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11610,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11611,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11612,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11613,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11614,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11615,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11616,0,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11617,12,0,8,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11622,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11623,4,1,7,16,47,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11624,4,1,7,3,47,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11625,4,0,3,23,48,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11626,4,1,7,16,48,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11627,4,3,5,8,48,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11628,2,2,2,15,48,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +11629,2,3,1,26,48,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,104,0,0,0,0 +11630,6,3,2,24,47,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,18,0,0,0,0 +11631,4,6,1,14,47,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11632,4,4,6,3,47,0,0,0,-1,0,135057,11,0,80,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11633,4,4,6,5,49,0,0,0,-1,0,132737,11,0,135,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11634,4,1,7,10,49,0,0,0,-1,0,132946,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11635,2,15,1,13,49,3,0,0,-1,0,135646,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +11642,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11643,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11644,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11645,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11646,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11647,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11648,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11649,12,0,0,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11662,4,1,7,6,49,0,0,0,-1,0,132518,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11663,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11664,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11665,4,2,8,10,49,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11666,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11667,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11668,12,0,0,0,49,0,0,0,-1,0,133942,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11669,4,0,5,11,54,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11670,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11671,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11672,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11673,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11674,12,0,0,0,0,0,0,0,-1,0,133565,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11675,4,2,8,8,50,0,0,0,-1,0,132535,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11676,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11677,4,1,7,16,50,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11678,4,4,6,5,50,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11679,4,3,5,9,50,0,0,0,-1,0,132612,10,0,40,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11682,12,0,3,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11683,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11684,2,4,2,13,55,3,0,0,-1,0,135847,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +11685,4,2,8,3,50,0,0,0,-1,0,135044,7,0,60,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11686,4,2,8,6,50,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11702,2,0,1,13,50,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +11703,4,4,6,6,50,0,0,0,-1,0,132505,11,0,45,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11722,4,3,5,3,50,0,0,0,-1,0,135061,10,0,70,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11723,12,0,0,0,0,0,0,0,-1,0,135272,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11724,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11725,12,0,0,0,0,0,0,0,-1,0,134321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11726,4,3,5,5,52,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11727,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11728,4,3,5,7,52,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11729,4,3,5,1,52,0,0,0,-1,0,133069,10,0,70,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11730,4,3,5,10,52,0,0,0,-1,0,132938,10,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11731,4,3,5,8,52,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11732,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11733,9,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11734,9,0,0,0,50,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11735,4,2,8,1,52,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11736,9,0,0,0,50,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11737,9,0,0,0,50,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11742,1,0,8,18,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11743,2,13,1,13,50,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +11744,2,13,1,13,51,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +11745,4,4,6,10,51,0,0,0,-1,0,132956,11,0,45,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11746,4,4,6,1,51,0,0,0,-1,0,133125,11,0,80,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11747,4,2,8,20,48,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11748,2,19,2,26,48,0,0,0,-1,0,135150,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +11749,4,3,5,7,48,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11750,2,10,2,17,48,2,0,0,-1,0,135155,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +11751,12,0,0,0,0,0,0,0,-1,0,135819,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11752,12,0,0,0,0,0,0,0,-1,0,134849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11753,12,0,0,0,0,0,0,0,-1,0,136155,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11754,12,0,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11755,4,0,3,2,51,0,0,0,-1,0,133684,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11762,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11763,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11764,4,2,8,9,52,0,1080,0,-1,0,132601,7,0,35,0,0,0,0,0,0,71,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11765,4,3,5,9,52,0,1101,0,-1,0,132617,10,0,40,0,0,0,0,0,0,148,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11766,4,1,7,9,52,0,1059,0,-1,0,132604,7,0,30,0,0,0,0,0,0,35,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11767,4,4,6,9,52,0,1122,0,-1,0,132617,11,0,45,0,0,0,0,0,0,261,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11768,4,1,7,9,52,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,35,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11782,4,1,7,3,52,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11783,4,3,5,6,52,0,0,0,-1,0,132522,10,0,40,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11784,2,7,1,21,48,3,0,0,-1,0,135324,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +11785,4,6,1,14,53,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,1994,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0 +11786,2,8,1,17,51,1,0,0,-1,0,135357,9,0,100,0,0,0,0,0,0,280,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +11787,4,4,6,8,53,0,0,0,-1,0,132582,11,0,65,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11802,4,4,6,7,53,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11803,2,5,2,17,51,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +11804,12,0,0,0,0,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11805,2,4,2,13,51,3,0,0,-1,0,133046,8,0,90,0,0,0,0,0,0,120,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +11807,4,1,7,6,53,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11808,4,1,7,1,54,0,0,0,-1,0,135805,7,0,60,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11809,2,6,1,17,51,2,0,0,-1,0,135124,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +11810,4,0,0,12,55,0,0,0,-1,0,133276,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11811,4,0,0,12,50,0,0,0,-1,0,134084,8,0,0,0,0,0,0,0,0,150,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0 +11812,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11813,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11814,4,3,5,10,53,0,0,0,-1,0,132938,10,0,40,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11815,4,0,0,12,53,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11816,2,1,1,17,51,1,0,0,-1,0,135576,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +11817,2,7,1,13,51,3,0,0,-1,0,135326,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +11818,12,0,0,0,43,0,0,0,-1,0,134246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11819,4,0,0,12,54,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11820,4,3,5,5,53,0,0,0,-1,0,132739,10,0,120,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11821,4,2,8,7,53,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11822,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11823,4,2,8,7,54,0,0,0,-1,0,134593,7,0,75,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11824,4,0,5,11,49,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11825,7,3,0,0,0,0,0,0,-1,0,133712,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11826,7,3,0,0,0,0,0,0,-1,0,134231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11827,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11828,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11829,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11830,12,0,8,0,0,0,0,0,-1,0,134318,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11831,12,0,8,0,0,0,0,0,-1,0,134314,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11832,4,0,0,12,53,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11833,12,0,0,0,0,0,0,0,-1,0,134809,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11834,12,0,8,0,0,0,0,0,-1,0,132386,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11835,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11837,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11838,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +11839,4,1,7,1,50,0,0,0,-1,0,133146,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11840,4,0,7,4,0,0,0,0,-1,0,135022,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11841,4,1,7,7,50,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11842,4,3,5,3,50,0,0,0,-1,0,135046,10,0,70,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11843,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11844,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11845,1,0,7,18,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11846,0,5,0,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11847,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11848,4,1,7,6,0,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11849,4,3,5,9,0,0,0,0,-1,0,132606,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11850,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11851,4,2,8,5,0,0,0,0,-1,0,132718,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11852,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11853,4,2,8,8,0,0,0,0,-1,0,132537,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11854,2,8,1,17,0,1,0,0,-1,0,135356,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,38,0,0,0,0 +11855,4,0,0,23,0,3,0,0,-1,0,134520,8,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11856,2,15,1,13,0,3,0,0,-1,0,135311,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,63,0,0,0,0 +11857,2,10,2,17,0,2,0,0,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +11858,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11859,4,0,3,23,0,7,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11860,2,19,2,26,0,0,0,0,-1,0,135470,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +11861,4,3,5,6,0,0,0,0,-1,0,132516,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11862,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11863,2,13,1,22,0,7,0,0,-1,0,132369,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +11864,2,6,1,17,0,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +11865,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11866,4,2,8,6,0,0,0,0,-1,0,132500,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11867,4,3,5,10,0,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11868,4,0,5,11,0,1,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11869,4,0,5,11,0,1,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11870,4,0,3,23,0,7,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11871,4,2,8,3,0,0,0,0,-1,0,135046,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11872,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11873,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11874,4,2,8,3,0,0,0,0,-1,0,135061,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11875,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11876,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11882,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11883,15,0,1,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11884,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11885,12,0,0,0,0,7,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11886,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11887,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11888,4,1,7,10,0,0,0,0,-1,0,132959,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11889,4,4,6,3,0,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11902,2,7,1,21,0,3,0,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +11903,15,2,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11904,4,0,3,23,0,7,0,0,-1,0,134564,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11905,4,0,2,12,0,0,0,0,-1,0,135646,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11906,2,4,2,13,0,3,0,0,-1,0,133060,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +11907,2,1,1,17,0,1,0,0,-1,0,132401,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +11908,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11909,4,2,8,6,0,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11910,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11911,4,1,7,7,0,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11912,15,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11913,4,3,5,1,0,0,0,0,-1,0,133158,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11914,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11915,4,6,1,14,0,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11916,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11917,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11918,4,3,5,10,0,0,0,0,-1,0,132951,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11919,4,4,6,8,0,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11920,2,0,1,13,51,3,0,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +11921,2,5,2,17,52,1,0,0,-1,0,133045,9,0,100,0,0,0,0,0,0,30,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +11922,2,15,1,21,52,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +11923,2,4,2,21,52,3,0,0,-1,0,133044,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +11924,4,1,7,20,55,0,0,0,-1,0,132657,7,0,80,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11925,4,2,8,1,52,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,132,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +11926,4,3,5,5,52,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11927,4,4,6,7,52,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11928,4,0,3,23,55,3,0,0,-1,0,133488,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11929,4,1,7,7,52,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11930,4,1,7,16,55,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11931,2,1,1,17,54,1,0,0,-1,0,132416,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,225,0,0,0,0 +11932,2,10,2,17,54,2,0,0,-1,0,135167,13,0,100,0,0,0,0,0,0,0,0,0,0,10,0,0,133,0,0,0,0,200,0,0,0,0 +11933,4,0,3,2,55,0,0,0,-1,0,134131,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11934,4,0,5,11,55,0,3256,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11935,4,0,3,23,53,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11936,4,1,7,6,0,0,0,0,-1,0,132512,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11937,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11938,15,0,3,0,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11939,15,0,3,0,0,0,0,0,-1,0,132522,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11940,15,0,3,0,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11941,15,0,3,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11942,15,0,3,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11943,15,0,3,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11944,15,0,3,0,0,0,0,0,-1,0,132540,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11945,4,0,5,11,48,0,3484,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11946,4,0,3,2,47,0,3513,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11947,12,0,0,0,0,0,0,0,-1,0,134815,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11948,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11949,12,0,0,0,0,0,0,0,-1,0,134857,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11950,0,8,0,0,45,0,0,0,-1,0,134014,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11951,0,5,0,0,45,0,0,0,-1,0,134011,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11952,0,8,0,0,45,0,0,0,-1,0,134001,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11953,0,0,0,0,0,0,0,0,-1,0,134864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11954,12,0,0,0,0,0,0,0,-1,0,134836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11955,15,0,0,0,0,0,0,0,-1,0,133622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11962,4,1,7,9,0,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11963,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11964,2,4,2,13,0,3,0,0,-1,0,133483,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +11965,4,0,0,11,15,0,3295,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11966,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11967,4,0,0,11,18,0,3296,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11968,4,0,0,11,21,0,3297,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11969,4,0,0,11,24,0,3298,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11970,4,0,0,11,29,0,3300,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11971,4,0,0,11,32,0,3301,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11972,4,0,0,11,35,0,3302,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11973,4,0,0,11,38,0,3303,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11974,4,0,0,11,41,0,3304,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11975,4,0,0,11,44,0,3305,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11976,4,0,0,11,47,0,3306,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11977,4,0,0,11,50,0,3307,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11978,4,0,0,11,53,0,3308,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11979,4,0,0,11,56,0,3309,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11980,4,0,0,11,59,0,3310,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11981,4,0,0,11,15,0,3241,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11982,4,0,0,11,18,0,3242,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11983,4,0,0,11,21,0,3243,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11984,4,0,0,11,24,0,3244,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11985,4,0,0,11,30,0,3246,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11986,4,0,0,11,34,0,3247,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11987,4,0,0,11,38,0,3249,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11988,4,0,0,11,42,0,3250,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11989,4,0,0,11,46,0,3251,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11990,4,0,0,11,50,0,3253,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11991,4,0,0,11,54,0,3254,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11992,4,0,0,11,58,0,3255,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11993,4,0,0,11,17,0,3259,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11994,4,0,0,11,20,0,3260,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11995,4,0,0,11,23,0,3261,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11996,4,0,0,11,29,0,3263,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11997,4,0,0,11,33,0,3264,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11998,4,0,0,11,37,0,3265,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11999,4,0,0,11,41,0,3267,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12000,2,1,1,17,0,1,0,0,-1,0,132393,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,123,0,0,0,0 +12001,4,0,0,11,45,0,3268,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12002,4,0,0,11,49,0,3269,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12003,0,5,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12004,4,0,0,11,53,0,3271,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12005,4,0,0,11,57,0,3272,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12006,4,0,0,11,17,0,2123,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12007,4,0,0,11,20,0,2124,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12008,4,0,0,11,23,0,2125,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12009,4,0,0,11,28,0,2126,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12010,4,0,0,11,32,0,2128,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12011,4,0,0,11,36,0,2129,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12012,4,0,0,11,40,0,2130,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12013,4,0,0,11,44,0,2132,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12014,4,0,0,11,48,0,2133,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12015,4,0,0,11,52,0,2134,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12016,4,0,0,11,56,0,2136,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12017,4,0,0,11,60,0,3461,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12018,4,3,5,1,0,0,0,0,-1,0,133069,10,0,60,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12019,4,0,3,2,27,0,2030,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12020,4,0,3,2,31,0,2036,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12021,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12022,4,0,3,2,36,0,2048,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12023,4,0,3,2,40,0,2054,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12024,4,0,3,2,45,0,2066,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12025,4,0,3,2,49,0,2072,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12026,4,0,3,2,54,0,2084,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12027,4,0,3,2,58,0,2090,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12028,4,0,3,2,27,0,3281,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12029,4,0,3,2,30,0,3282,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12030,4,0,3,2,34,0,3283,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12031,4,0,3,2,39,0,3285,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12032,4,0,3,2,43,0,3286,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12033,15,0,1,0,0,0,0,0,-1,0,133650,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12034,4,0,3,2,48,0,3288,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12035,4,0,3,2,52,0,3289,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12036,4,0,3,2,57,0,3291,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12037,7,8,0,0,0,0,0,0,-1,0,134023,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12038,4,0,5,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12039,4,0,3,2,28,0,3539,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12040,4,0,3,2,33,0,3541,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12041,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12042,4,0,3,2,37,0,3542,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12043,4,0,3,2,42,0,3544,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12044,4,0,3,2,46,0,3545,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12045,4,0,3,2,51,0,3547,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12046,4,0,3,2,55,0,3548,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12047,4,0,3,2,25,0,3463,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12048,4,0,3,2,60,0,3462,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12049,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12050,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12051,4,3,5,10,0,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12052,4,0,5,11,16,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12053,4,0,5,11,16,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12054,4,0,5,11,19,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12055,4,0,5,11,47,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12056,4,0,5,11,51,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12057,4,0,5,11,55,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12058,4,0,5,11,59,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12059,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12060,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12061,2,7,1,13,0,3,0,0,-1,0,135327,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +12062,2,15,1,13,0,3,0,0,-1,0,135322,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,65,0,0,0,0 +12063,2,6,1,17,0,2,0,0,-1,0,135124,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12064,4,1,7,1,0,0,0,0,-1,0,133131,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12065,4,0,2,12,0,0,0,0,-1,0,133435,21,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 +12066,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12082,4,2,8,3,0,0,0,0,-1,0,135047,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12083,4,1,7,6,0,0,0,0,-1,0,132500,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12102,4,0,5,11,0,1,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12103,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12104,4,2,8,5,0,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12105,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12106,4,4,6,5,0,0,0,0,-1,0,132723,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12107,4,1,7,7,0,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12108,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12109,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12110,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12111,4,4,6,10,0,0,0,0,-1,0,132960,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12112,4,3,5,9,0,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12113,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12114,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12115,4,4,6,6,0,0,0,0,-1,0,132523,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12122,15,0,1,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12142,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12143,13,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12144,13,0,0,0,0,0,0,0,-1,0,133003,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12162,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12163,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12164,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12182,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12183,2,4,2,13,1,1,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12184,7,8,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12185,4,1,7,1,0,0,0,0,-1,0,133168,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12186,12,0,1,0,0,0,0,0,-1,0,134243,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12187,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12188,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12189,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12190,0,1,0,0,35,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12191,12,0,0,0,0,0,0,0,-1,0,132596,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12192,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12202,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12203,7,8,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12204,7,8,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12205,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12206,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12207,7,8,0,0,0,0,0,0,-1,0,132834,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12208,7,8,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12209,0,5,0,0,15,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12210,0,5,0,0,25,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12211,0,5,0,0,25,0,0,0,-1,0,134004,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12212,0,5,0,0,25,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12213,0,5,0,0,25,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12214,0,5,0,0,25,0,0,0,-1,0,132806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12215,0,5,0,0,35,0,0,0,-1,0,132806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12216,0,5,0,0,40,0,0,0,-1,0,134004,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12217,0,5,0,0,35,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12218,0,5,0,0,40,0,0,0,-1,0,133948,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12219,12,0,0,0,0,0,0,0,-1,0,135725,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12220,12,0,0,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12223,7,8,0,0,0,0,0,0,-1,0,134360,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12224,0,5,0,0,1,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12225,2,20,2,17,0,1,0,0,-1,0,132932,12,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,21,0,0,0,0 +12226,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12227,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12228,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12229,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12230,12,0,0,0,0,0,0,0,-1,0,134817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12231,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12232,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12233,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12234,12,0,0,0,0,0,0,0,-1,0,134815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12235,12,0,0,0,0,0,0,0,-1,0,134859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12236,12,0,0,0,0,0,0,0,-1,0,134857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12237,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12238,0,5,0,0,5,0,0,0,-1,0,133912,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12239,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12240,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12241,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12242,12,0,0,0,0,0,0,0,-1,0,133719,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12243,2,6,1,17,49,2,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +12244,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12245,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12247,2,15,1,13,27,3,0,0,-1,0,135640,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +12248,2,15,1,13,29,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +12249,2,1,1,17,26,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,81,0,0,0,0 +12250,2,1,1,17,29,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +12251,2,10,2,17,32,2,0,0,-1,0,135158,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,93,0,0,0,0 +12252,2,10,2,17,34,2,0,0,-1,0,135144,13,0,85,0,0,0,0,0,0,100,0,6,6,6,6,6,66,0,0,0,0,100,0,0,0,0 +12253,4,1,7,16,36,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12254,4,1,7,16,39,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12255,4,1,7,7,41,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12256,4,1,7,7,44,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12257,4,3,5,6,37,0,0,0,-1,0,132523,10,0,35,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12258,4,3,5,6,39,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12259,2,15,1,13,31,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +12260,2,15,1,21,34,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,0,0,0 +12261,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12262,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12263,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12264,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12282,2,1,1,17,1,1,0,0,-1,0,132400,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +12283,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12284,12,0,0,0,0,0,0,0,-1,0,133001,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12285,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12286,12,0,0,0,0,0,0,0,-1,0,133003,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12287,12,0,0,0,0,0,0,0,-1,0,133014,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12288,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12289,12,0,0,0,0,0,0,0,-1,0,133724,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12290,2,0,1,13,1,3,0,0,-1,0,132392,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12291,12,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12292,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12293,12,0,0,0,0,0,0,0,-1,0,132890,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12294,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12295,4,1,7,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12296,2,19,2,26,0,0,0,0,-1,0,135139,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +12297,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12298,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12299,4,1,7,10,0,0,0,0,-1,0,132939,7,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12300,12,0,0,0,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12301,13,0,0,0,0,0,0,0,-1,0,134239,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12302,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12303,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12304,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12322,2,10,2,17,0,2,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12323,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12324,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12325,15,5,0,0,30,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12326,15,5,0,0,30,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12327,15,5,0,0,30,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12328,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12329,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12330,15,5,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12331,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12332,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12334,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12335,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12336,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12337,12,0,0,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12338,2,6,1,17,1,1,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12339,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12341,12,0,0,0,0,0,0,0,-1,0,134013,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12342,12,0,0,0,0,0,0,0,-1,0,134059,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12343,12,0,0,0,0,0,0,0,-1,0,133944,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12344,4,0,0,11,0,0,0,0,-1,0,133343,24,0,0,0,0,0,0,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0 +12345,12,0,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12346,12,0,0,0,0,0,0,0,-1,0,133748,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12347,12,0,0,0,0,0,0,0,-1,0,134712,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12348,2,0,1,13,1,3,0,0,-1,0,132392,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12349,12,0,0,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12350,12,0,0,0,0,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12351,15,5,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12352,12,0,0,0,0,0,0,0,-1,0,133276,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12353,15,5,0,0,60,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12354,15,5,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12355,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12356,12,0,0,0,0,0,0,0,-1,0,132833,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12358,12,0,0,0,0,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12359,7,7,2,0,0,0,0,0,-1,0,133221,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12360,7,7,2,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12361,3,7,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12363,3,7,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12364,3,7,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12365,7,7,0,0,0,0,0,0,-1,0,134461,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12366,12,0,0,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12367,12,0,0,0,0,0,0,0,-1,0,135657,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12368,12,0,0,0,0,0,0,0,-1,0,132596,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12369,12,0,0,0,0,0,0,0,-1,0,135471,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12382,13,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12383,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12384,12,0,0,0,0,0,0,0,-1,0,133296,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12385,0,8,0,7,1,0,0,0,-1,0,135736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12402,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12403,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12404,0,8,0,0,35,0,0,0,-1,0,135252,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12405,4,4,6,5,45,0,0,0,-1,0,132743,11,0,115,0,0,0,0,0,0,480,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 +12406,4,4,6,6,45,0,0,0,-1,0,132519,11,0,40,0,0,0,0,0,0,270,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +12408,4,4,6,9,46,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,214,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12409,4,4,6,8,51,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,367,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0 +12410,4,4,6,1,51,0,0,0,-1,0,133125,11,0,70,0,0,0,0,0,0,434,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +12411,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12412,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12414,4,4,6,7,55,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,499,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +12415,4,3,5,5,49,0,0,0,-1,0,132751,10,0,100,0,0,0,0,0,0,293,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0 +12416,4,3,5,6,47,0,0,0,-1,0,132500,10,0,35,0,0,0,0,0,0,159,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +12417,4,3,5,1,54,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,258,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +12418,4,3,5,10,52,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,192,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +12419,4,3,5,8,53,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,215,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0 +12420,4,3,5,7,56,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,286,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +12421,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12422,4,4,6,5,55,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12424,4,4,6,6,47,0,0,0,-1,0,132490,11,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12425,4,4,6,9,49,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12426,4,4,6,8,54,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12427,4,4,6,1,54,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12428,4,4,6,3,47,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12429,4,4,6,7,56,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12430,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12431,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12432,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12433,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12434,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12435,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12436,12,0,0,0,0,0,0,0,-1,0,135227,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12437,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12438,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12440,0,8,0,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12442,4,0,0,23,0,7,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12443,4,0,0,23,0,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12444,12,0,0,0,0,0,0,0,-1,0,134228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12445,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12446,2,3,1,26,0,0,0,0,-1,0,135616,8,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +12447,2,2,2,15,0,0,0,0,-1,0,135490,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +12448,2,3,1,26,0,0,0,0,-1,0,135616,8,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +12449,2,2,2,15,0,0,0,0,-1,0,135490,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +12450,12,0,0,0,0,0,0,0,-1,0,134319,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12451,12,0,0,0,0,0,0,0,-1,0,134313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12452,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12453,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12454,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12455,12,0,0,0,0,0,0,0,-1,0,134317,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12456,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12457,12,0,0,0,0,0,0,0,-1,0,134311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12458,12,0,0,0,0,0,0,0,-1,0,134315,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12459,12,0,0,0,0,0,0,0,-1,0,134319,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12460,12,0,0,0,0,0,0,0,-1,0,134309,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12461,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12462,4,1,7,20,50,0,0,0,-1,0,132683,7,0,100,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12463,2,8,1,17,48,1,0,0,-1,0,135317,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +12464,4,2,8,10,48,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12465,4,1,7,16,48,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12466,4,1,7,6,48,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12467,12,0,0,0,1,0,0,0,-1,0,135231,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12468,2,19,2,26,1,0,0,0,-1,0,135139,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,19,0,0,0,0 +12469,2,8,1,17,42,1,0,0,-1,0,135272,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +12470,4,2,8,8,42,0,0,0,-1,0,132603,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12471,4,0,0,23,42,2,0,0,-1,0,135158,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12472,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12482,2,0,1,13,1,1,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12502,2,0,1,22,1,1,0,0,-1,0,135279,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +12522,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12523,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +12524,12,0,0,0,0,0,0,0,-1,0,132925,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12525,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12526,0,8,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12527,2,0,1,13,48,3,5304,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +12528,2,5,2,17,47,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,184,0,0,0,0 +12529,15,0,0,0,0,0,0,0,-1,0,132598,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12530,12,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12531,2,15,1,13,46,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +12532,2,10,2,17,51,2,0,0,-1,0,135469,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +12533,0,0,0,0,0,0,0,0,-1,0,135124,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12534,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12535,2,7,1,13,49,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +12542,4,1,7,20,46,0,0,0,-1,0,132681,7,0,80,0,0,0,0,0,0,73,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12543,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12544,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12545,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12546,4,1,7,9,49,0,0,0,-1,0,132604,7,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12547,4,2,8,10,51,0,0,0,-1,0,132957,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12548,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12549,4,3,5,1,47,0,0,0,-1,0,133078,10,0,70,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12550,4,4,6,9,48,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12551,4,1,7,16,51,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12552,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +12553,4,2,8,8,54,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12554,4,1,7,10,54,0,0,0,-1,0,132966,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12555,4,4,6,8,50,0,0,0,-1,0,132587,11,0,65,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12556,4,1,7,8,54,0,0,0,-1,0,132592,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12557,4,4,6,3,54,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12558,12,0,0,0,52,0,0,0,-1,0,133298,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12562,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12563,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12564,12,0,0,0,23,0,0,0,-1,0,133473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12565,15,0,0,0,0,0,0,0,-1,0,132599,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12566,12,0,3,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12567,12,0,3,0,0,0,0,0,-1,0,134802,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12582,2,15,1,13,55,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +12583,2,6,1,17,58,1,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +12584,2,7,1,13,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +12585,15,0,0,0,0,0,0,0,-1,0,134414,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12586,0,8,0,0,0,0,0,0,-1,0,134339,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12587,4,2,8,1,58,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12588,4,3,5,3,58,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12589,4,1,7,6,56,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12590,2,15,1,13,58,3,0,0,-1,0,135661,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +12591,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12592,2,8,1,17,58,1,0,0,-1,0,135330,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +12593,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12602,4,6,1,14,58,4,0,0,-1,0,134966,9,0,100,0,0,0,0,0,0,2153,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12603,4,2,8,5,56,0,0,0,-1,0,132741,7,0,100,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12604,4,1,7,1,55,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12605,2,19,2,26,51,0,0,0,-1,0,133729,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +12606,4,2,8,6,56,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12607,12,0,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12608,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12609,4,1,8,5,56,0,0,0,-1,0,132658,7,0,80,0,0,0,0,0,0,87,0,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0 +12610,4,4,6,3,55,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,427,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +12611,4,4,6,8,55,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,392,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +12612,4,4,6,1,56,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,471,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0 +12613,4,4,6,5,57,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,588,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +12614,4,4,6,7,57,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,515,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0 +12615,4,3,5,5,57,0,0,0,-1,0,132738,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12616,4,3,5,8,58,0,0,0,-1,0,132582,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12617,4,3,5,3,58,0,0,0,-1,0,135046,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12618,4,4,6,5,58,0,0,0,-1,0,132745,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12619,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12620,4,4,6,1,57,0,0,0,-1,0,133070,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12621,2,0,1,13,54,3,0,0,-1,0,135581,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,142,0,0,0,0 +12622,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12623,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12624,4,3,5,5,49,0,0,0,-1,0,132634,10,0,120,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12625,4,4,6,3,53,0,0,0,-1,0,135051,11,0,80,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12626,4,1,7,9,54,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12627,12,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12628,4,4,6,5,52,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12629,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12630,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12631,4,4,6,10,53,0,0,0,-1,0,132937,11,0,45,0,0,0,0,0,0,379,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12632,4,3,5,10,54,0,0,0,-1,0,132964,10,0,40,0,0,0,0,0,0,218,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12633,4,4,6,1,55,0,0,0,-1,0,133111,11,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12634,4,3,5,6,55,0,0,0,-1,0,132502,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12635,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12636,4,3,5,1,56,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12637,4,4,6,10,55,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12638,12,0,0,0,0,0,0,0,-1,0,134377,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12639,4,4,6,10,57,0,0,0,-1,0,132964,11,0,55,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12640,4,4,6,1,56,0,0,0,-1,0,133138,11,0,100,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12641,4,3,5,5,57,0,0,0,-1,0,132629,10,0,140,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12642,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12643,0,8,0,0,35,0,0,0,-1,0,135259,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12644,7,7,0,0,0,0,0,0,-1,0,135247,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12645,0,6,8,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12646,12,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12647,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12648,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12649,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12650,0,0,0,0,0,0,0,0,-1,0,134961,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12651,2,18,2,26,54,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +12652,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12653,2,2,2,15,54,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +12654,6,2,2,24,54,0,0,0,-1,0,132169,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,20,0,0,0,0 +12655,7,7,2,0,0,0,0,0,-1,0,133229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12662,7,11,2,0,0,0,0,0,-1,0,134417,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12663,12,0,0,0,0,0,0,0,-1,0,135645,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12682,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12683,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12684,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12685,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12687,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12688,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12689,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12690,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12691,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12692,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12693,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12694,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12695,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12696,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12697,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12698,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12699,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12700,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12701,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12702,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12703,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12704,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12705,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12706,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12707,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12708,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12709,2,15,1,13,58,3,0,0,-1,0,135343,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +12710,12,0,0,0,0,0,0,0,-1,0,133998,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12711,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12712,0,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12713,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12714,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12715,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12716,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12717,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12718,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12719,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12720,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12721,12,0,0,0,0,0,0,0,-1,0,133442,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12722,12,0,0,0,0,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12723,12,0,0,0,0,0,0,0,-1,0,133444,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12724,12,0,0,0,0,0,0,0,-1,0,134144,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12725,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12726,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12727,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12728,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12729,0,8,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12730,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12731,12,0,0,0,0,0,0,0,-1,0,134317,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12732,12,0,0,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12733,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12734,12,0,0,0,0,0,0,0,-1,0,132906,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12735,12,0,0,0,0,0,0,0,-1,0,134365,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12736,12,0,0,0,0,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12737,12,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12738,12,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12739,12,0,0,0,0,0,0,0,-1,0,134246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12740,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12741,12,0,0,0,0,0,0,0,-1,0,134417,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12742,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12743,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12744,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12745,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12746,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12747,2,14,1,22,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12748,2,14,1,13,1,0,0,0,-1,0,135471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12749,4,0,1,23,1,0,0,0,-1,0,135471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12750,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12751,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12752,4,1,7,1,0,0,0,0,-1,0,133161,7,0,60,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12753,12,0,0,0,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12754,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12755,2,8,1,17,1,1,0,0,-1,0,135330,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12756,4,2,8,7,0,0,0,0,-1,0,134585,7,0,90,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12757,4,2,8,5,0,0,0,0,-1,0,132635,7,0,120,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12762,12,0,0,0,0,0,0,0,-1,0,134943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12763,0,5,7,0,45,0,0,0,-1,0,133998,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12764,2,8,1,17,47,1,0,0,-1,0,135323,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +12765,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12766,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12768,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12769,2,1,1,17,49,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +12770,12,0,0,0,0,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12771,12,0,0,0,52,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12772,2,5,2,17,49,1,0,0,-1,0,133046,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +12773,2,0,1,21,50,3,0,0,-1,0,132403,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +12774,2,0,1,13,50,3,0,0,-1,0,132396,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +12775,2,1,1,17,51,1,0,0,-1,0,135581,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,172,0,0,0,0 +12776,2,5,2,17,51,1,0,0,-1,0,133042,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,150,0,0,0,0 +12777,2,7,1,13,51,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +12778,12,0,0,0,0,0,0,0,-1,0,132762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12779,2,0,1,21,52,3,0,0,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +12780,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12781,2,4,2,21,52,3,0,0,-1,0,133477,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +12782,2,8,1,17,53,1,0,0,-1,0,135277,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +12783,2,15,1,13,58,3,0,0,-1,0,135315,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +12784,2,1,1,17,58,1,0,0,-1,0,132400,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,256,0,0,0,0 +12785,12,0,0,0,0,0,0,0,-1,0,134514,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12786,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12787,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12788,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12789,15,0,0,0,0,0,0,0,-1,0,134228,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12790,2,8,1,17,58,1,0,0,-1,0,135349,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +12791,2,15,1,13,50,7,0,0,-1,0,132797,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +12792,2,4,2,21,53,3,0,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,113,0,0,0,0 +12793,4,2,8,5,50,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12794,2,4,2,21,57,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +12795,2,13,1,21,55,7,0,0,-1,0,135663,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +12796,2,5,2,17,58,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +12797,2,7,1,21,58,3,0,0,-1,0,135291,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +12798,2,0,1,21,58,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +12799,3,7,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12800,3,7,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12801,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +12802,2,6,1,17,55,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +12803,7,10,0,0,0,0,0,0,-1,0,136006,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12804,7,11,8,0,0,0,0,0,-1,0,136011,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12805,4,0,0,12,0,0,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12806,12,0,1,0,0,0,0,0,-1,0,132739,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12807,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12808,7,10,0,0,0,0,0,0,-1,0,136195,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12809,7,7,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12810,7,6,8,0,0,0,0,0,-1,0,134418,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12811,7,11,0,0,0,0,0,0,-1,0,134122,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12812,12,0,6,0,0,0,0,0,-1,0,132963,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12813,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12814,12,0,0,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12815,12,0,0,0,0,0,0,0,-1,0,135432,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12816,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12817,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12818,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12819,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12820,0,2,0,0,45,0,0,0,-1,0,134872,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12821,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12822,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12823,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12824,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12825,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12826,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12827,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12828,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12829,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12830,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12831,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12832,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12833,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12834,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12835,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12836,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12837,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12838,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12839,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12840,12,0,0,0,0,0,0,0,-1,0,133447,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12841,12,0,0,0,0,0,0,0,-1,0,133446,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12842,12,0,0,0,52,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12843,12,0,0,0,0,0,0,0,-1,0,133445,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12844,12,0,0,0,0,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12845,12,0,0,0,0,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12846,4,0,0,12,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12847,12,0,0,0,0,0,0,0,-1,0,135129,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12848,12,0,0,0,0,0,0,0,-1,0,135129,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12849,12,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12850,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12851,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12852,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12853,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12854,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12855,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12856,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12857,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12858,2,14,1,13,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12859,4,0,1,23,1,0,0,0,-1,0,133639,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12860,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12861,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12862,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12863,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12864,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12865,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12866,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12867,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12868,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12869,4,0,1,23,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +12870,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12871,15,0,0,0,0,0,0,0,-1,0,134967,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12882,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12883,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12884,0,0,0,0,0,0,0,0,-1,0,134060,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12885,0,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12886,0,0,0,0,0,0,0,0,-1,0,134164,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12887,12,0,0,0,0,0,0,0,-1,0,134230,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12888,12,0,0,0,0,0,0,0,-1,0,134230,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12889,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12890,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12891,12,0,0,0,0,0,0,0,-1,0,134708,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12892,2,7,1,13,1,1,0,0,-1,0,135280,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12893,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12894,0,0,0,0,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12895,4,4,6,5,0,0,0,0,-1,0,132744,11,0,165,0,0,0,0,0,0,806,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12896,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12897,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12898,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12899,12,0,0,0,0,0,0,0,-1,0,135152,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12900,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12901,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12902,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12903,4,3,5,7,0,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,398,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12904,4,1,7,1,61,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12905,4,1,7,16,56,0,0,0,-1,0,132657,7,0,0,0,0,0,0,0,0,43,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12906,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12907,12,0,0,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12922,0,0,0,0,0,0,0,0,-1,0,132788,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12923,12,0,0,0,0,0,0,0,-1,0,134312,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12924,0,0,0,0,0,0,0,0,-1,0,133752,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12925,12,0,0,0,0,0,0,0,-1,0,134318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12926,4,0,5,11,56,0,3248,0,-1,0,135926,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12927,4,2,8,3,56,0,0,0,-1,0,135041,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12928,12,0,0,0,0,0,0,0,-1,0,133003,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12929,4,0,3,2,56,0,0,0,-1,0,133292,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12930,4,0,0,12,55,0,0,0,-1,0,134413,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12931,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12932,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12933,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12934,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12935,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12936,4,4,6,9,58,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12937,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12938,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12939,2,7,1,22,58,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,100,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +12940,2,7,1,21,58,3,0,0,-1,0,135353,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +12941,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +12942,12,0,0,0,0,0,0,0,-1,0,134241,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12943,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +12944,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12945,4,3,5,7,0,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,398,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +12946,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12947,4,0,0,11,0,0,0,0,-1,0,133006,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12949,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12950,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +12951,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +12952,4,4,6,1,55,0,3304,0,-1,0,133125,11,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12953,4,3,5,1,55,0,3304,0,-1,0,133141,10,0,70,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12954,12,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12955,12,0,0,0,0,0,0,0,-1,0,134951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12956,12,0,0,0,0,0,0,0,-1,0,133729,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12957,12,0,0,0,0,0,0,0,-1,0,135357,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12958,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12959,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12960,4,2,8,1,55,0,3304,0,-1,0,133126,7,0,60,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12961,4,6,1,14,0,0,0,0,-1,0,134949,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12962,4,2,8,10,0,0,0,0,-1,0,132946,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12963,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12964,4,3,5,7,58,0,0,0,-1,0,134584,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12965,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12966,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12967,4,1,7,16,58,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12968,4,1,7,16,58,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12969,2,5,2,17,58,1,0,0,-1,0,133054,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +12970,4,4,6,5,58,0,0,0,-1,0,132745,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12971,2,7,1,21,0,0,0,0,-1,0,135271,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +12972,2,7,1,21,0,0,0,0,-1,0,135271,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,19,0,0,0,0 +12973,13,0,0,0,0,0,0,0,-1,0,132383,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12974,2,7,1,13,26,3,0,0,-1,0,135311,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +12975,2,1,1,17,15,1,0,0,-1,0,132394,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,51,0,0,0,0 +12976,2,7,1,13,15,3,0,0,-1,0,135327,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +12977,4,1,7,10,15,0,0,0,-1,0,132961,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12978,4,3,5,6,15,0,0,0,-1,0,132504,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12979,4,1,7,16,16,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12980,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12981,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12982,4,3,5,8,16,0,0,0,-1,0,132535,10,0,45,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12983,2,5,2,17,16,1,0,0,-1,0,133046,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,57,0,0,0,0 +12984,2,19,2,26,16,0,0,0,-1,0,135464,21,0,45,0,6,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +12985,4,0,4,11,17,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12987,4,1,7,7,17,0,0,0,-1,0,134586,7,0,50,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12988,4,2,8,5,17,0,0,0,-1,0,132725,7,0,90,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12989,2,6,1,17,20,2,0,0,-1,0,135128,9,0,80,0,0,0,0,0,0,60,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +12990,2,0,1,13,18,3,0,0,-1,0,135578,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +12991,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +12992,2,8,1,17,18,1,0,0,-1,0,135322,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +12993,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +12994,4,3,5,10,18,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12995,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12996,4,0,5,11,18,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12997,4,6,1,14,19,4,0,0,-1,0,134948,9,0,90,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12998,4,1,7,3,20,0,0,0,-1,0,135044,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12999,4,2,8,9,20,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13000,2,10,2,17,57,2,0,0,-1,0,135160,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,210,0,0,0,0 +13001,4,0,5,11,55,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13002,4,0,3,2,54,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13003,2,1,1,17,51,1,0,0,-1,0,135572,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +13004,2,19,2,26,53,0,0,0,-1,0,135473,21,0,65,0,2,0,0,0,0,0,0,10,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +13005,4,1,7,16,23,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13006,2,4,2,13,57,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +13007,4,1,7,16,53,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,41,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13008,4,1,7,7,47,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13009,4,2,8,5,46,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,148,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +13010,4,3,5,7,21,0,0,0,-1,0,134583,10,0,80,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13011,4,2,8,6,22,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13012,4,3,5,9,22,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13013,4,1,7,3,51,0,0,0,-1,0,135045,7,0,50,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13014,2,0,1,13,48,3,0,0,-1,0,132415,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +13015,2,0,1,13,56,3,0,0,-1,0,132399,8,0,90,0,0,0,0,0,0,100,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +13016,2,1,1,17,21,1,0,0,-1,0,132401,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +13017,2,1,1,17,35,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +13018,2,1,1,17,43,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +13019,2,2,2,15,27,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +13020,2,2,2,15,34,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +13021,2,2,2,15,42,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13022,2,2,2,15,50,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +13023,2,2,2,15,58,0,0,0,-1,0,135499,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +13024,2,4,2,13,24,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +13025,2,4,2,13,32,3,0,0,-1,0,133053,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +13026,2,4,2,13,40,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +13027,2,4,2,13,48,3,0,0,-1,0,133057,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +13028,2,4,2,13,56,3,0,0,-1,0,133056,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +13029,4,0,1,23,38,7,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13030,4,0,1,23,46,7,0,0,-1,0,133727,8,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +13031,4,0,1,23,23,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13032,2,7,1,13,22,3,0,0,-1,0,135327,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +13033,2,7,1,13,29,3,0,0,-1,0,135313,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13034,2,7,1,13,36,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +13035,2,7,1,13,44,3,0,0,-1,0,135343,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +13036,2,7,1,13,52,3,0,0,-1,0,135352,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +13037,2,18,2,26,27,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,69,0,0,0,0 +13038,2,18,2,26,35,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,65,0,0,0,0 +13039,2,18,2,26,43,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,99,0,0,0,0 +13040,2,18,2,26,51,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +13041,2,8,1,17,21,1,0,0,-1,0,135326,9,0,95,0,0,0,0,0,0,40,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +13042,2,8,1,17,36,1,0,0,-1,0,135351,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,145,0,0,0,0 +13043,2,8,1,17,44,1,0,0,-1,0,135277,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +13044,2,8,1,17,52,1,0,0,-1,0,135273,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,182,0,0,0,0 +13045,2,5,2,17,30,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,105,0,0,0,0 +13046,2,5,2,17,45,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,5,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +13047,2,5,2,17,53,1,0,0,-1,0,133488,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +13048,2,4,2,13,26,3,0,0,-1,0,133041,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +13049,2,8,1,17,26,1,0,0,-1,0,135356,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,80,0,0,0,0 +13050,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13051,2,8,1,17,39,1,0,0,-1,0,135345,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,131,0,0,0,0 +13052,2,8,1,17,47,1,0,0,-1,0,135356,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +13053,2,8,1,17,55,1,0,0,-1,0,135271,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,173,0,0,0,0 +13054,2,6,1,17,35,1,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +13055,2,6,1,17,43,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +13056,2,6,1,17,51,1,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +13057,2,6,1,17,23,2,0,0,-1,0,135125,9,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +13058,2,6,1,17,39,2,0,0,-1,0,135125,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,117,0,0,0,0 +13059,2,6,1,17,47,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +13060,2,6,1,17,55,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +13061,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13062,2,19,2,26,22,0,0,0,-1,0,135139,21,0,60,0,3,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +13063,2,19,2,26,29,0,0,0,-1,0,135139,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +13064,2,19,2,26,37,0,0,0,-1,0,135471,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +13065,2,19,2,26,45,0,0,0,-1,0,135471,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,9,64,0,0,0,0,120,0,0,0,0 +13066,4,4,6,3,46,0,0,0,-1,0,135055,11,0,80,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13067,4,4,6,5,49,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,567,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13068,4,4,6,8,40,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13069,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13070,4,4,6,8,53,0,0,0,-1,0,132586,11,0,65,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13071,4,4,6,10,40,0,0,0,-1,0,132944,11,0,45,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13072,4,4,6,10,55,0,0,0,-1,0,132937,11,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13073,4,4,6,1,47,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13074,4,4,6,7,41,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13075,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13076,4,4,6,9,43,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13077,4,4,6,6,52,0,0,0,-1,0,132521,11,0,45,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13078,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13079,4,6,1,14,25,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13080,4,1,7,20,58,0,0,0,-1,0,132643,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0 +13081,4,6,1,14,33,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13082,4,6,1,14,41,4,0,0,-1,0,134961,9,0,100,0,0,0,0,0,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13083,4,6,1,14,57,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13084,4,0,3,2,30,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13085,4,0,3,2,46,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13086,15,5,0,0,60,0,0,0,-1,0,132252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13087,4,0,3,2,28,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13088,4,0,3,2,36,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13089,4,0,3,2,44,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13090,4,3,5,5,58,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13091,4,0,3,2,52,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13092,4,2,8,5,58,0,0,0,-1,0,132646,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13093,4,0,1,11,32,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13094,4,0,1,11,25,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13095,4,0,0,11,39,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13096,4,0,0,11,55,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13097,4,0,0,11,24,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13098,4,0,5,11,58,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13099,4,1,7,8,24,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13100,4,1,7,8,39,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13101,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13102,4,1,7,1,42,0,0,0,-1,0,133345,7,0,50,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13103,4,1,7,3,33,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,41,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +13104,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13105,4,1,7,6,32,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13106,4,1,7,9,26,0,0,0,-1,0,132618,7,0,30,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13107,4,1,7,9,57,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13108,4,1,7,16,29,0,0,0,-1,0,134348,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13109,4,1,7,16,44,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,35,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +13110,4,2,8,5,31,0,0,0,-1,0,132719,7,0,100,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13111,4,2,8,8,49,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13112,4,2,8,1,43,0,0,0,-1,0,133121,7,0,60,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13113,4,2,8,1,58,0,0,0,-1,0,133072,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13114,4,2,8,7,25,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13115,4,2,8,3,40,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13116,4,2,8,3,56,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13117,4,2,8,6,37,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13118,4,2,8,6,52,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13119,4,2,8,9,34,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13120,4,2,8,9,50,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13121,4,1,7,16,33,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13122,4,1,7,16,50,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13123,4,3,5,5,57,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13124,4,3,5,8,30,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13125,4,3,5,8,45,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13126,4,3,5,10,48,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13127,4,3,5,1,27,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13128,4,3,5,1,42,0,0,0,-1,0,133120,10,0,70,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13129,4,3,5,7,34,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,218,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13130,4,3,5,7,51,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13131,4,3,5,3,24,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13132,4,3,5,3,38,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13133,4,3,5,3,56,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,270,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13134,4,3,5,6,44,0,0,0,-1,0,132512,10,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13135,4,3,5,9,54,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13136,2,3,1,26,16,0,0,0,-1,0,135617,8,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,48,0,0,0,0 +13137,2,3,1,26,29,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +13138,2,3,1,26,37,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +13139,2,3,1,26,45,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,116,0,0,0,0 +13140,12,0,0,0,49,0,0,0,-1,0,134235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13141,4,0,3,2,58,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13142,4,4,6,6,58,0,0,0,-1,0,132522,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13143,4,0,1,11,56,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13144,4,1,7,6,48,0,0,0,-1,0,132496,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13145,4,4,6,6,40,0,0,0,-1,0,132516,11,0,45,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13146,2,3,1,26,53,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +13147,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +13148,2,6,1,17,56,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +13149,0,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13150,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13151,0,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13152,0,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13153,0,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13154,0,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13155,0,0,0,0,0,0,0,0,-1,0,136207,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13156,0,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13157,12,0,0,0,0,0,0,0,-1,0,133728,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13158,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13159,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13160,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13161,2,10,2,17,56,2,0,0,-1,0,135166,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +13162,4,4,6,10,56,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13163,2,8,1,17,57,1,0,0,-1,0,135316,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,210,0,0,0,0 +13164,4,0,0,12,56,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13165,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13166,4,4,6,3,55,0,0,0,-1,0,135054,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13167,2,5,2,17,55,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +13168,4,4,6,5,55,0,0,0,-1,0,132748,11,0,135,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13169,4,2,8,7,55,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13170,4,1,7,7,55,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13171,4,0,8,12,0,0,0,0,-1,0,135825,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13172,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13173,15,0,1,0,55,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13174,12,0,0,0,0,0,0,0,-1,0,134358,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13175,2,2,2,15,55,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,76,0,0,0,0 +13176,12,0,0,0,0,0,0,0,-1,0,134420,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13177,4,0,3,2,55,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13178,4,0,5,11,55,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13179,4,3,5,9,55,0,0,0,-1,0,132608,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13180,12,0,0,0,0,0,0,0,-1,0,134855,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13181,4,1,7,10,52,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13182,2,7,1,13,52,3,0,0,-1,0,135346,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +13183,2,4,2,13,55,3,0,0,-1,0,135472,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +13184,4,2,8,10,56,0,0,0,-1,0,132947,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13185,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13186,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13187,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13188,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13189,12,0,0,0,0,0,0,0,-1,0,134870,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13190,12,0,0,0,0,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13191,12,0,0,0,0,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13192,12,0,0,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13193,12,0,0,0,0,0,0,0,-1,0,134828,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13194,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13195,12,0,0,0,0,0,0,0,-1,0,134247,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13196,12,0,0,0,0,0,0,0,-1,0,134247,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13197,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13198,2,13,1,13,55,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +13199,4,3,5,9,36,0,0,0,-1,0,132618,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13202,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13203,4,1,7,16,55,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13204,2,4,2,13,55,3,0,0,-1,0,133490,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,93,0,0,0,0 +13205,4,6,1,14,56,4,0,0,-1,0,134960,9,0,100,0,0,0,0,0,0,2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13206,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +13207,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13208,4,2,8,9,56,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13209,4,0,0,12,0,0,0,0,-1,0,133612,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13210,4,2,8,8,55,0,0,0,-1,0,132592,7,0,50,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13211,4,3,5,9,55,0,0,0,-1,0,132606,10,0,40,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13212,4,0,3,2,55,0,0,0,-1,0,132503,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13213,4,0,0,12,55,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13214,4,4,6,8,1,0,0,0,-1,0,132535,11,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13216,4,1,7,1,0,0,0,0,-1,0,133074,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13217,4,0,0,11,0,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13218,2,15,1,13,56,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +13219,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13220,2,4,2,13,1,7,0,0,-1,0,133964,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13221,4,0,2,23,1,7,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13222,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13223,12,0,0,0,0,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13242,4,2,8,8,55,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13243,4,6,1,14,0,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13244,4,3,5,10,55,0,0,0,-1,0,132963,10,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13245,4,6,1,14,15,4,0,0,-1,0,134964,9,0,75,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13246,2,7,1,13,0,3,0,0,-1,0,135275,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,108,0,0,0,0 +13247,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13248,2,3,1,26,51,0,0,0,-1,0,135615,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +13249,2,10,2,17,0,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +13250,12,0,0,0,0,0,0,0,-1,0,136183,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13251,12,0,0,0,0,0,0,0,-1,0,136129,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13252,4,2,8,6,55,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13253,4,1,7,10,55,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13254,4,6,1,14,51,4,4313,0,-1,0,134958,9,0,100,0,0,0,0,0,0,1930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13255,4,3,5,10,54,0,0,0,-1,0,132964,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13257,4,2,8,3,54,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13258,4,2,8,10,56,0,745,0,-1,0,132956,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13259,4,4,6,8,56,0,0,0,-1,0,132589,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13260,4,3,5,8,56,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13261,4,0,3,23,54,7,0,0,-1,0,135471,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13262,2,8,1,17,60,1,0,0,-1,0,135358,9,0,145,0,0,1,0,0,0,0,0,0,0,0,0,0,201,30,0,0,0,247,50,0,0,0 +13282,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13283,4,0,5,11,54,0,0,0,-1,0,135926,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13284,4,3,5,8,53,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13285,2,1,1,17,53,1,0,0,-1,0,135581,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,239,0,0,0,0 +13286,2,0,1,13,53,3,0,0,-1,0,134710,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +13287,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13288,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13289,12,0,0,26,0,0,0,0,-1,0,135614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13290,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13291,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13292,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13293,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +13302,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13303,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13304,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13305,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13306,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13307,13,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13308,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13309,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13310,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13311,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13312,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13313,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13314,4,1,7,20,57,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13315,4,0,0,23,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13316,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13317,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13318,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13319,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13320,12,0,0,0,0,0,0,0,-1,0,136006,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13321,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13322,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13323,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13324,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13325,15,5,0,0,30,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13326,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13327,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13328,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13329,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13330,1,0,0,18,1,0,0,0,-1,0,134012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13331,15,5,0,0,30,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13332,15,5,0,0,30,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13333,15,5,0,0,30,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13334,15,5,0,0,60,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13335,15,5,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13336,2,10,2,17,0,2,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13337,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13338,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13339,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13340,4,1,7,16,58,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13341,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13342,15,2,0,0,0,0,0,0,-1,0,133889,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13343,15,2,0,0,0,0,0,0,-1,0,135240,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13344,4,3,5,10,58,0,0,0,-1,0,132965,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13345,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13346,4,1,7,20,58,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13347,12,0,0,12,0,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13348,2,8,1,17,58,1,0,0,-1,0,135312,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +13349,2,4,2,13,58,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,129,0,0,0,0 +13350,12,0,0,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13351,12,0,0,0,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13352,12,0,0,0,0,0,0,0,-1,0,134462,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13353,4,0,3,23,58,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13354,12,0,0,0,0,0,0,0,-1,0,136152,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13356,12,0,0,0,0,0,0,0,-1,0,136134,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13357,12,0,0,0,0,0,0,0,-1,0,136188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13358,4,2,8,3,58,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13359,4,3,5,1,58,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13360,2,15,1,13,58,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13361,2,7,1,13,58,1,0,0,-1,0,135302,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +13362,15,0,0,0,0,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13363,15,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13364,15,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13365,15,0,0,0,0,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13366,15,0,0,0,0,0,0,0,-1,0,132998,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13367,0,8,0,0,0,0,0,0,-1,0,134140,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13368,2,15,1,13,57,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,74,0,0,0,0 +13369,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13370,12,0,0,0,0,0,0,0,-1,0,135143,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13371,4,0,0,23,0,7,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13372,2,10,2,17,55,2,0,0,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,241,0,0,0,0 +13373,4,0,5,11,55,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13374,4,1,7,3,55,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13375,4,6,1,14,55,4,0,0,-1,0,134965,9,0,100,0,0,0,0,0,0,2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13376,4,1,7,16,54,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13377,6,3,2,24,56,0,0,0,-1,0,132384,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,21,0,0,0,0 +13378,4,2,8,5,53,0,0,0,-1,0,132679,7,0,100,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13379,4,0,0,12,53,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13380,2,3,1,26,56,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +13381,4,4,6,8,56,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13382,4,0,0,12,56,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13383,4,3,5,7,53,0,0,0,-1,0,134594,10,0,90,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13384,4,4,6,6,53,0,0,0,-1,0,132519,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13385,4,0,3,23,56,7,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13386,4,1,7,16,56,0,975,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13387,4,3,5,6,56,0,933,0,-1,0,132510,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13388,4,1,7,5,56,0,0,0,-1,0,132725,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13389,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13390,4,1,7,1,56,0,0,0,-1,0,133685,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13391,4,1,7,8,56,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13392,4,0,5,11,56,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13393,2,5,2,17,56,1,0,0,-1,0,133476,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,238,0,0,0,0 +13394,4,4,6,5,54,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,617,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +13395,4,2,8,10,54,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13396,2,19,2,26,52,0,0,0,-1,0,133729,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +13397,4,1,7,16,56,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13398,4,2,8,8,57,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,120,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13399,2,13,1,22,54,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +13400,4,4,6,9,54,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13401,2,4,2,13,56,3,0,0,-1,0,133729,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +13402,4,3,5,8,54,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13403,4,1,7,6,54,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13404,4,2,8,1,52,0,0,0,-1,0,133693,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13405,4,4,6,3,52,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,448,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13406,4,0,2,23,1,0,0,0,-1,0,133974,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13407,4,0,2,23,1,0,0,0,-1,0,133974,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13408,2,0,1,13,52,3,0,0,-1,0,135575,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +13409,4,1,7,9,52,0,1059,0,-1,0,132612,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13422,7,11,0,0,0,0,0,0,-1,0,133897,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13423,7,11,0,0,0,0,0,0,-1,0,134848,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13442,0,1,0,0,46,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13443,0,1,3,0,41,0,0,0,-1,0,134854,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13444,0,1,3,0,49,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13445,0,2,3,0,43,0,0,0,-1,0,134846,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13446,0,1,0,0,45,0,0,0,-1,0,134834,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13447,0,2,3,0,44,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13448,12,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13450,12,0,0,0,0,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13451,12,0,0,0,0,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13452,0,2,3,0,46,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13453,0,2,3,0,45,0,0,0,-1,0,134839,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13454,0,2,0,0,47,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13455,0,1,3,0,46,0,0,0,-1,0,134849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13456,0,1,3,0,48,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13457,0,1,3,0,48,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13458,0,1,3,0,48,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13459,0,1,3,0,48,0,0,0,-1,0,134803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13460,0,1,3,0,48,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13461,0,1,3,0,48,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13462,0,1,3,0,47,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13463,7,9,7,0,0,0,0,0,-1,0,134204,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13464,7,9,7,0,0,0,0,0,-1,0,134221,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13465,7,9,7,0,0,0,0,0,-1,0,134215,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13466,7,9,7,0,0,0,0,0,-1,0,134219,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13467,7,9,7,0,0,0,0,0,-1,0,134212,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13468,7,9,7,0,0,0,0,0,-1,0,134202,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13469,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13470,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13471,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13473,4,0,3,2,0,0,0,0,-1,0,133444,14,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0 +13474,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +13475,4,0,5,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13476,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13477,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13478,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13479,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13480,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13481,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13482,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13483,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13484,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13485,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13486,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13487,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13488,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13489,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13490,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13491,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13492,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13493,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13494,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13495,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13496,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13497,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13498,4,4,6,7,55,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13499,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13500,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13501,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13502,4,4,6,6,58,0,0,0,-1,0,132512,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13503,7,11,2,12,0,0,0,0,-1,0,135948,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13504,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13505,2,8,1,17,58,1,0,0,-1,0,135315,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,257,0,0,0,0 +13506,0,3,3,0,50,0,0,0,-1,0,134806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13507,12,0,0,0,1,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13508,0,0,0,0,55,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13509,0,0,0,0,55,0,0,0,-1,0,134416,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13510,0,3,3,0,50,0,0,0,-1,0,134842,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13511,0,3,3,0,50,0,0,0,-1,0,134877,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13512,0,3,3,0,50,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13513,0,3,3,0,50,0,0,0,-1,0,134828,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13514,0,0,0,0,55,0,0,0,-1,0,136183,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13515,4,0,0,12,55,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13517,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13518,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13519,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13520,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13521,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13522,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13523,12,0,0,0,0,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13524,4,0,3,23,57,7,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +13525,4,1,7,10,57,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,50,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +13526,4,2,8,6,57,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,89,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13527,4,4,6,8,57,0,0,0,-1,0,132590,11,0,55,0,0,0,0,0,0,404,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13528,4,3,5,9,57,0,0,0,-1,0,132615,10,0,35,0,0,0,0,0,0,145,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +13529,4,6,1,14,56,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2089,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +13530,4,1,7,8,56,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,54,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +13531,4,2,8,7,56,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,136,0,0,18,0,18,0,0,0,0,0,0,0,0,0,0,0 +13532,4,3,5,10,56,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,204,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0 +13533,4,4,6,3,56,0,0,0,-1,0,135049,11,0,70,0,0,0,0,0,0,434,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +13534,2,19,2,26,55,0,0,0,-1,0,135654,21,0,65,0,4,0,0,0,0,0,0,0,0,10,0,0,79,0,0,0,0,148,0,0,0,0 +13535,4,1,7,20,55,0,0,0,-1,0,132688,7,0,70,0,0,0,0,0,0,77,0,0,0,20,0,13,0,0,0,0,0,0,0,0,0,0 +13536,12,0,0,0,0,0,0,0,-1,0,134229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13537,4,2,8,9,55,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,67,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +13538,4,3,5,3,55,0,0,0,-1,0,135044,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0 +13539,4,4,6,10,55,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,356,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0 +13542,12,0,1,0,0,0,0,0,-1,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13543,12,0,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13544,4,0,0,12,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13545,12,0,0,0,0,0,0,0,-1,0,133900,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13546,0,5,0,0,25,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13562,0,0,0,0,0,0,0,0,-1,0,133639,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13582,15,0,0,0,0,0,0,0,-1,0,136217,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13583,15,0,0,0,0,0,0,0,-1,0,132494,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13584,15,0,0,0,0,0,0,0,-1,0,132787,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13585,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13586,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13602,4,0,1,28,48,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13603,4,0,1,28,60,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13604,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13605,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13606,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13607,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +13608,2,14,2,13,1,3,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +13609,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13610,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13611,4,0,2,23,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13612,2,14,1,13,1,7,0,0,-1,0,132796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13622,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13623,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13624,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13625,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13626,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13627,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13628,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13629,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13630,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13631,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13632,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13642,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13643,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13644,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13645,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13646,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13647,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13648,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13649,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13650,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13651,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13652,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13653,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13654,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13655,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13656,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13657,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13658,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13659,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13660,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13661,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13662,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13663,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13664,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13665,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13666,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13667,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13668,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13669,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13670,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13671,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13672,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13673,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13674,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13675,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13676,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13677,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13678,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13679,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13680,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13681,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13682,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13683,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13684,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13685,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13686,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13687,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13688,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13689,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13690,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13691,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13692,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13693,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13694,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13695,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13696,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13697,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13698,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13699,4,0,1,28,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13700,4,0,1,28,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13701,4,0,1,28,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13702,12,0,0,0,0,0,0,0,-1,0,134194,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13703,0,0,0,0,0,0,0,0,-1,0,133726,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13704,13,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13705,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13706,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13707,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13708,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13709,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13710,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13711,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13712,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13713,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13714,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13715,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13716,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13717,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13718,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13719,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13720,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13721,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13722,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13723,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13724,0,5,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13725,12,0,0,0,0,0,0,0,-1,0,133648,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13726,4,1,7,10,1,0,0,0,-1,0,132950,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13727,4,1,7,10,100,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13728,4,1,7,10,100,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13730,4,3,5,10,100,0,0,0,-1,0,132944,10,0,35,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13731,4,4,6,10,100,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13732,4,2,8,10,1,0,0,0,-1,0,132957,7,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13733,4,3,5,10,1,0,0,0,-1,0,132944,10,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13734,4,4,6,10,1,0,0,0,-1,0,132963,11,0,18,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13736,4,3,5,10,100,0,0,0,-1,0,132944,10,0,35,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13737,4,4,6,10,100,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13738,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13739,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13740,4,1,7,9,100,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13741,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13742,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13743,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13744,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13745,4,4,6,9,100,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13746,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13747,4,3,5,9,100,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13748,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13749,4,2,8,9,100,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13750,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13751,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13752,12,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13753,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13754,7,8,0,0,35,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13755,0,5,0,0,35,0,0,0,-1,0,133899,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13756,7,8,0,0,35,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13757,7,11,0,0,0,0,0,0,-1,0,133898,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13758,7,8,0,0,35,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13759,7,8,0,0,35,0,0,0,-1,0,133909,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13760,7,8,0,0,35,0,0,0,-1,0,133905,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13761,0,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13762,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13763,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13764,4,1,7,5,100,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13765,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13766,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13767,4,2,8,5,100,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13768,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13769,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13770,4,3,5,5,100,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13771,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13772,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13773,4,4,6,5,100,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13775,4,1,7,7,100,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13776,4,1,7,7,100,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13777,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13778,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13779,4,2,8,7,100,0,0,0,-1,0,134585,7,0,65,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13780,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13781,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13782,4,3,5,7,100,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13783,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13784,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13785,4,4,6,7,100,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13787,4,1,7,1,1,0,0,0,-1,0,133116,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13788,4,1,7,1,100,0,0,0,-1,0,133116,7,0,45,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13790,4,2,8,1,1,0,0,0,-1,0,133117,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13791,4,2,8,1,100,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13793,4,3,5,1,1,0,0,0,-1,0,133137,10,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13794,4,3,5,1,100,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13796,4,4,6,1,1,0,0,0,-1,0,133126,11,0,30,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13797,4,4,6,1,100,0,0,0,-1,0,133126,11,0,70,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13798,4,1,7,8,100,0,0,0,-1,0,132579,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13801,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13802,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13803,4,2,8,8,100,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13804,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13805,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13806,4,3,5,8,100,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13807,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13808,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13809,4,4,6,8,100,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13810,0,5,0,0,45,0,0,0,-1,0,133997,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13811,4,0,0,2,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13812,4,0,0,11,0,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13813,0,0,0,0,45,0,0,0,-1,0,132803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13814,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13815,12,0,0,0,0,0,0,0,-1,0,134418,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13816,2,7,1,21,47,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +13817,2,8,1,17,53,1,0,0,-1,0,135349,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +13818,2,0,1,21,51,3,0,0,-1,0,135421,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +13819,2,1,1,17,54,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,83,0,0,0,0 +13820,2,4,2,21,49,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +13821,2,5,2,17,52,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,115,0,0,0,0 +13822,2,15,1,13,48,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,40,0,0,0,0 +13823,2,10,2,17,46,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,89,0,0,0,0 +13824,2,2,2,15,45,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +13825,2,3,1,26,52,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,56,0,0,0,0 +13842,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13843,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13844,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13845,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13846,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13847,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13848,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13849,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13850,12,0,0,0,0,0,0,0,-1,0,132384,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13851,0,5,0,0,25,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13852,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13853,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13854,4,0,2,23,1,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13855,4,0,2,23,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13856,4,1,7,6,46,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13857,4,1,7,5,47,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13858,4,1,7,20,47,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13859,4,0,2,23,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13860,4,1,7,16,48,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13861,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13862,4,0,2,23,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13863,4,1,7,10,50,0,0,0,-1,0,132959,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13864,4,1,7,8,51,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13865,4,1,7,7,52,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13866,4,1,7,1,54,0,0,0,-1,0,133694,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13867,4,1,7,3,56,0,0,0,-1,0,135052,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13868,4,1,7,20,46,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13869,4,1,7,5,46,0,0,0,-1,0,132649,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13870,4,1,7,10,47,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13871,4,1,7,7,51,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13872,12,0,0,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13873,13,0,0,0,0,0,0,0,-1,0,134248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13874,15,4,2,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13875,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13876,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13877,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13878,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13879,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13880,15,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13881,15,4,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13882,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13883,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13884,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13885,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13886,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13887,15,0,0,23,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13888,7,8,0,0,45,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13889,7,8,0,0,45,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13890,12,0,0,0,0,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13891,15,4,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13892,12,0,0,0,15,0,0,0,-1,0,132488,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13893,0,5,0,0,45,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13894,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +13895,4,0,7,20,0,0,0,0,-1,0,132670,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13896,4,0,7,20,0,0,0,0,-1,0,132664,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13897,4,0,7,20,0,0,0,0,-1,0,132691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13898,4,0,7,20,0,0,0,0,-1,0,132671,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13899,4,0,7,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13900,4,0,7,20,0,0,0,0,-1,0,132663,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13901,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13902,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13903,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13904,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13905,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13906,15,0,0,23,0,0,0,0,-1,0,133888,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13907,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13908,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13909,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13910,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13911,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13912,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13913,15,0,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13914,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13915,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13916,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13917,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13918,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13920,12,0,0,0,55,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13922,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13923,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +13924,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +13925,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +13926,3,7,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13927,0,5,0,0,35,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13928,0,5,0,0,35,0,0,0,-1,0,133899,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13929,0,5,0,0,35,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13930,0,5,0,0,35,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13931,0,5,0,0,35,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13932,0,5,0,0,35,0,0,0,-1,0,133905,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13933,0,5,0,0,45,0,0,0,-1,0,132804,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13934,0,5,0,0,45,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13935,0,5,0,0,45,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13936,4,1,7,1,57,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13937,2,10,2,17,57,2,0,0,-1,0,133445,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +13938,2,19,2,26,57,0,0,0,-1,0,133732,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +13939,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13940,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13941,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13942,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13943,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13944,4,2,8,5,57,0,0,0,-1,0,132639,7,0,100,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13945,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13946,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13947,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13948,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13949,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13950,4,3,5,6,57,0,0,0,-1,0,132498,10,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13951,4,4,6,9,57,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13952,2,0,1,13,57,3,0,0,-1,0,132394,8,0,90,0,0,4,0,0,0,0,0,0,0,0,0,0,57,1,0,0,0,106,5,0,0,0 +13953,2,7,1,13,57,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +13954,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13955,4,4,6,3,56,0,0,0,-1,0,135056,11,0,80,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13956,4,1,7,6,56,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13957,4,2,8,10,56,0,0,0,-1,0,132943,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13958,4,1,7,9,0,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13959,4,4,6,6,0,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13960,4,0,5,2,56,0,0,0,-1,0,134335,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13961,4,2,8,3,0,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +13962,4,2,8,6,0,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13963,4,3,5,10,0,0,0,0,-1,0,132949,10,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13964,2,15,1,21,57,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +13965,4,0,0,12,0,0,0,0,-1,0,133604,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13966,4,0,0,12,0,0,0,0,-1,0,133442,8,0,0,0,0,0,0,0,0,180,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +13967,4,3,5,8,56,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13968,4,0,0,12,0,0,0,0,-1,0,133441,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13969,4,3,5,9,56,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13982,2,8,1,17,0,1,0,0,-1,0,135349,9,0,100,0,0,4,0,0,0,0,0,0,0,0,0,0,142,1,0,0,0,214,22,0,0,0 +13983,2,1,1,17,57,1,0,0,-1,0,135579,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,217,0,0,0,0 +13984,2,15,1,13,0,3,0,0,-1,0,135657,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +13986,4,1,7,1,0,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,73,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +14002,4,6,1,14,0,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,2153,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0 +14022,4,0,0,12,0,0,0,0,-1,0,133706,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14023,4,0,0,12,0,0,0,0,-1,0,133706,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14024,2,15,1,13,56,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +14025,4,1,7,6,12,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14042,4,1,7,5,47,0,0,0,-1,0,132648,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14043,4,1,7,10,49,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14044,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14045,4,1,7,7,51,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14046,1,0,8,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14047,7,5,7,0,0,0,0,0,-1,0,132903,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14048,7,5,8,0,0,0,0,0,-1,0,132904,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14062,15,0,0,0,30,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14082,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14083,2,10,2,17,1,2,0,0,-1,0,135151,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +14084,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14085,2,7,1,13,1,2,0,0,-1,0,135128,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14086,4,1,7,8,5,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14087,4,1,7,9,3,0,0,0,-1,0,132611,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14088,4,1,7,16,3,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14089,4,1,7,10,5,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14090,4,1,7,7,6,0,538,0,-1,0,134582,7,0,35,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14091,4,1,7,20,6,0,454,0,-1,0,132663,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14092,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14093,4,1,7,6,4,0,0,0,-1,0,132491,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14094,4,1,7,5,6,0,454,0,-1,0,135009,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14095,4,1,7,9,6,0,0,0,-1,0,132607,7,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14096,4,1,7,5,11,0,456,0,-1,0,135009,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14097,4,1,7,7,9,0,539,0,-1,0,134582,7,0,40,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14098,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14099,4,1,7,6,7,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14100,4,1,7,20,49,0,0,0,-1,0,132667,7,0,70,0,0,0,0,0,0,70,0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0 +14101,4,1,7,10,49,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,44,0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0 +14102,4,1,7,10,8,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14103,4,1,7,16,50,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,36,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0 +14104,4,1,7,7,53,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,66,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0 +14105,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +14106,4,1,7,20,56,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14107,4,1,7,7,50,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14108,4,1,7,8,52,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14109,4,1,7,20,11,0,456,0,-1,0,132662,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14110,4,1,7,8,8,0,0,0,-1,0,132543,7,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14111,4,1,7,1,53,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14112,4,1,7,3,57,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14113,4,1,7,6,10,0,875,0,-1,0,132494,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14114,4,1,7,8,11,0,792,0,-1,0,132592,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14115,4,1,7,9,9,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14116,4,1,7,16,9,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14117,4,1,7,10,11,0,708,0,-1,0,132952,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14118,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +14119,4,1,7,7,12,0,540,0,-1,0,134706,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14120,4,1,7,20,15,0,457,0,-1,0,132657,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14121,4,1,7,5,15,0,457,0,-1,0,132716,7,0,60,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14122,4,1,7,9,13,0,1044,0,-1,0,132609,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14123,4,1,7,16,12,0,960,0,-1,0,133766,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14124,4,1,7,10,15,0,709,0,-1,0,132952,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14125,4,1,7,7,16,0,541,0,-1,0,134589,7,0,45,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14126,4,1,7,3,18,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14127,4,1,7,20,19,0,458,0,-1,0,132659,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14128,4,1,7,20,55,0,0,0,-1,0,132687,7,0,70,0,0,0,0,0,0,77,0,18,0,0,0,17,0,0,0,0,0,0,0,0,0,0 +14129,4,1,7,8,15,0,793,0,-1,0,132537,7,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14130,4,1,7,1,56,0,0,0,-1,0,133165,7,0,45,0,0,0,0,0,0,64,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0 +14131,4,1,7,6,14,0,877,0,-1,0,132494,7,0,20,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14132,4,1,7,7,50,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,62,0,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0 +14133,4,1,7,5,19,0,458,0,-1,0,135009,7,0,65,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14134,4,1,7,16,50,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14136,4,1,7,20,52,0,0,0,-1,0,132690,7,0,80,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14137,4,1,7,7,53,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14138,4,1,7,5,55,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14139,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14140,4,1,7,1,57,0,0,0,-1,0,133693,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14141,4,1,7,5,50,0,0,0,-1,0,135012,7,0,70,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14142,4,1,7,10,49,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14143,4,1,7,6,48,0,0,0,-1,0,132505,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14144,4,1,7,7,53,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14145,2,7,1,13,13,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +14146,4,1,7,10,57,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14147,4,3,5,9,13,0,0,0,-1,0,132606,10,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14148,4,1,7,9,13,0,0,0,-1,0,132612,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14149,4,1,7,16,13,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14150,4,1,7,20,13,0,0,0,-1,0,132665,7,0,65,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14151,2,15,1,13,13,3,0,0,-1,0,135661,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +14152,4,1,7,20,57,0,0,0,-1,0,132679,7,0,100,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14153,4,1,7,20,57,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14154,4,1,7,20,57,0,0,0,-1,0,132672,7,0,100,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14155,1,0,8,18,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14156,1,0,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14157,4,1,7,3,19,0,0,0,-1,0,135037,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14158,4,1,7,5,21,0,459,0,-1,0,135011,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14159,4,1,7,8,17,0,794,0,-1,0,132539,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14160,4,1,7,9,14,0,1045,0,-1,0,132610,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14161,4,1,7,16,13,0,960,0,-1,0,133762,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14162,4,1,7,10,18,0,710,0,-1,0,132939,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14163,4,1,7,20,21,0,459,0,-1,0,132661,7,0,65,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14164,4,1,7,6,16,0,877,0,-1,0,132513,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14165,4,1,7,7,20,0,543,0,-1,0,134582,7,0,50,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14166,4,1,7,9,14,0,1045,0,-1,0,132611,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14167,4,1,7,16,14,0,961,0,-1,0,133770,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14168,4,1,7,10,15,0,709,0,-1,0,132950,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14169,4,1,7,3,16,0,0,0,-1,0,135037,7,0,35,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14170,4,1,7,3,17,0,0,0,-1,0,135044,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14171,4,1,7,7,17,0,542,0,-1,0,134586,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14172,4,1,7,20,18,0,458,0,-1,0,132659,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14173,4,1,7,6,15,0,877,0,-1,0,132511,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14174,4,1,7,8,14,0,793,0,-1,0,132539,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14175,4,1,7,5,18,0,458,0,-1,0,135012,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14176,4,1,7,8,21,0,795,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14177,4,1,7,9,21,0,1047,0,-1,0,132605,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14178,4,1,7,1,26,0,629,0,-1,0,133134,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14179,4,1,7,16,19,0,962,0,-1,0,133767,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14180,4,1,7,5,25,0,460,0,-1,0,135010,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14181,4,1,7,10,23,0,712,0,-1,0,132939,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14182,4,1,7,3,23,0,1132,0,-1,0,135040,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14183,4,1,7,7,25,0,544,0,-1,0,134581,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14184,4,1,7,20,25,0,460,0,-1,0,132663,7,0,70,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14185,4,1,7,6,22,0,879,0,-1,0,132510,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14186,4,1,7,3,24,0,1132,0,-1,0,135036,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14187,4,1,7,9,23,0,1048,0,-1,0,132606,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14188,4,1,7,16,22,0,963,0,-1,0,133768,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14189,4,1,7,1,27,0,629,0,-1,0,133131,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14190,4,1,7,5,26,0,461,0,-1,0,135014,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14191,4,1,7,10,25,0,712,0,-1,0,132954,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14192,4,1,7,20,26,0,461,0,-1,0,132660,7,0,70,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14193,4,1,7,7,26,0,545,0,-1,0,134593,7,0,55,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14194,4,1,7,6,23,0,880,0,-1,0,133693,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14195,4,1,7,8,24,0,796,0,-1,0,132539,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14196,4,1,7,8,27,0,797,0,-1,0,132538,7,0,35,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14197,4,1,7,9,25,0,1048,0,-1,0,132612,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14198,4,1,7,16,26,0,965,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14199,4,1,7,10,28,0,713,0,-1,0,132940,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14200,4,1,7,1,30,0,630,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14201,4,1,7,3,29,0,1134,0,-1,0,135036,7,0,45,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14202,4,1,7,5,31,0,462,0,-1,0,135011,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14203,4,1,7,7,30,0,546,0,-1,0,134592,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14204,4,1,7,20,31,0,462,0,-1,0,132661,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14205,4,1,7,6,27,0,881,0,-1,0,132512,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14206,4,1,7,9,27,0,1049,0,-1,0,132605,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14207,4,1,7,7,31,0,546,0,-1,0,134587,7,0,55,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14208,4,1,7,1,31,0,630,0,-1,0,132514,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14209,4,1,7,6,28,0,881,0,-1,0,132510,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14210,4,1,7,16,27,0,965,0,-1,0,133767,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14211,4,1,7,10,29,0,714,0,-1,0,132957,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14212,4,1,7,3,30,0,1134,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14213,4,1,7,20,32,0,463,0,-1,0,132647,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14214,4,1,7,8,29,0,798,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14215,4,1,7,5,32,0,463,0,-1,0,135010,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14216,4,1,7,5,36,0,464,0,-1,0,132646,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14217,4,1,7,6,31,0,882,0,-1,0,132491,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14218,4,1,7,8,32,0,799,0,-1,0,132541,7,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14219,4,1,7,16,29,0,966,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14220,4,1,7,1,35,0,632,0,-1,0,132512,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14221,4,1,7,9,30,0,1050,0,-1,0,132601,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14222,4,1,7,10,32,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14223,4,1,7,3,33,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14224,4,1,7,7,34,0,547,0,-1,0,134589,7,0,55,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14225,4,1,7,20,36,0,464,0,-1,0,132681,7,0,70,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14226,4,1,7,9,32,0,1051,0,-1,0,132608,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14227,7,5,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14228,4,1,7,1,36,0,632,0,-1,0,132521,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14229,4,1,7,16,31,0,966,0,-1,0,133760,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14230,4,1,7,5,37,0,464,0,-1,0,135008,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14231,4,1,7,10,33,0,715,0,-1,0,132955,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14232,4,1,7,3,34,0,1135,0,-1,0,135033,7,0,45,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14233,4,1,7,7,35,0,548,0,-1,0,134592,7,0,55,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14234,4,1,7,20,37,0,464,0,-1,0,132666,7,0,70,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14235,4,1,7,6,32,0,883,0,-1,0,132500,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14236,4,1,7,8,33,0,799,0,-1,0,132542,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14237,4,1,7,5,41,0,466,0,-1,0,135020,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14238,4,1,7,8,36,0,800,0,-1,0,132541,7,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14239,4,1,7,16,34,0,967,0,-1,0,133756,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14240,4,1,7,9,35,0,1052,0,-1,0,132612,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14241,4,1,7,10,36,0,716,0,-1,0,132966,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14242,4,1,7,7,38,0,549,0,-1,0,134588,7,0,55,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14243,4,1,7,3,38,0,1137,0,-1,0,135033,7,0,45,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14244,4,1,7,20,41,0,466,0,-1,0,132677,7,0,70,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14245,4,1,7,6,36,0,884,0,-1,0,132499,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14246,4,1,7,1,39,0,633,0,-1,0,133090,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14247,4,1,7,3,39,0,1137,0,-1,0,135043,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14248,4,1,7,9,36,0,1052,0,-1,0,132608,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14249,4,1,7,5,42,0,466,0,-1,0,135017,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14250,4,1,7,8,37,0,800,0,-1,0,132541,7,0,35,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14251,4,1,7,16,35,0,968,0,-1,0,133754,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14252,4,1,7,1,40,0,633,0,-1,0,132511,7,0,45,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14253,4,1,7,10,38,0,717,0,-1,0,132954,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14254,4,1,7,20,42,0,466,0,-1,0,132678,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14255,4,1,7,6,36,0,884,0,-1,0,132497,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14256,7,5,7,0,0,0,0,0,-1,0,132888,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14257,4,1,7,7,40,0,549,0,-1,0,134593,7,0,55,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14258,4,1,7,6,40,0,885,0,-1,0,132496,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14259,4,1,7,8,41,0,802,0,-1,0,132542,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14260,4,1,7,9,39,0,1053,0,-1,0,132608,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14261,4,1,7,16,38,0,969,0,-1,0,133760,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14262,4,1,7,10,40,0,717,0,-1,0,132953,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14263,4,1,7,1,43,0,634,0,-1,0,133694,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14264,4,1,7,7,43,0,550,0,-1,0,134592,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14265,4,1,7,20,46,0,467,0,-1,0,132643,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14266,4,1,7,3,42,0,1138,0,-1,0,135033,7,0,45,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14267,4,1,7,5,46,0,467,0,-1,0,135008,7,0,70,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14268,4,1,7,9,41,0,1054,0,-1,0,132608,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14269,4,1,7,8,42,0,802,0,-1,0,132541,7,0,35,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14270,4,1,7,16,40,0,969,0,-1,0,132655,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14271,4,1,7,1,44,0,635,0,-1,0,132520,7,0,45,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14272,4,1,7,10,42,0,718,0,-1,0,132949,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14273,4,1,7,3,43,0,1138,0,-1,0,135048,7,0,45,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14274,4,1,7,7,46,0,551,0,-1,0,134591,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14275,4,1,7,20,47,0,468,0,-1,0,132670,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14276,4,1,7,6,42,0,886,0,-1,0,132499,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14277,4,1,7,5,47,0,468,0,-1,0,132649,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14278,4,1,7,3,45,0,1139,0,-1,0,135056,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14279,4,1,7,9,44,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14280,4,1,7,16,43,0,970,0,-1,0,133772,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14281,4,1,7,1,48,0,636,0,-1,0,132505,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14282,4,1,7,10,45,0,719,0,-1,0,132957,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14283,4,1,7,7,49,0,552,0,-1,0,134592,7,0,55,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14284,4,1,7,20,51,0,469,0,-1,0,132687,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14285,4,1,7,8,45,0,803,0,-1,0,132541,7,0,35,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14286,4,1,7,6,45,0,887,0,-1,0,132510,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14287,4,1,7,5,51,0,469,0,-1,0,132684,7,0,70,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14288,4,1,7,5,52,0,469,0,-1,0,135021,7,0,70,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14289,4,1,7,6,46,0,887,0,-1,0,132499,7,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14290,4,1,7,8,46,0,803,0,-1,0,132539,7,0,35,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14291,4,1,7,9,45,0,1055,0,-1,0,132606,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14292,4,1,7,16,44,0,971,0,-1,0,132656,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14293,4,1,7,1,50,0,637,0,-1,0,132767,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14294,4,1,7,10,46,0,719,0,-1,0,132949,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14295,4,1,7,7,50,0,553,0,-1,0,134594,7,0,55,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14296,4,1,7,3,47,0,1140,0,-1,0,135049,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14297,4,1,7,20,52,0,469,0,-1,0,132676,7,0,70,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14298,4,1,7,3,51,0,1141,0,-1,0,135045,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14299,4,1,7,8,49,0,804,0,-1,0,132541,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14300,4,1,7,16,47,0,972,0,-1,0,133754,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14301,4,1,7,9,48,0,1056,0,-1,0,132616,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14302,4,1,7,10,51,0,721,0,-1,0,132943,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14303,4,1,7,20,55,0,470,0,-1,0,132679,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14304,4,1,7,6,50,0,889,0,-1,0,132519,7,0,25,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14305,4,1,7,7,52,0,553,0,-1,0,134593,7,0,55,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14306,4,1,7,5,55,0,470,0,-1,0,132658,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14307,4,1,7,1,54,0,638,0,-1,0,132768,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14308,4,1,7,5,56,0,471,0,-1,0,132633,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14309,4,1,7,6,51,0,889,0,-1,0,132518,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14310,4,1,7,8,53,0,806,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14311,4,1,7,9,50,0,1057,0,-1,0,132616,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14312,4,1,7,1,56,0,639,0,-1,0,132767,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14313,4,1,7,16,49,0,972,0,-1,0,133757,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14314,4,1,7,10,53,0,722,0,-1,0,132954,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14315,4,1,7,7,54,0,554,0,-1,0,134593,7,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14316,4,1,7,3,54,0,1142,0,-1,0,135056,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14317,4,1,7,20,56,0,471,0,-1,0,132669,7,0,70,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14318,4,1,7,5,58,0,471,0,-1,0,132659,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14319,4,1,7,8,54,0,806,0,-1,0,132542,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14320,4,1,7,9,52,0,1057,0,-1,0,132608,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14321,4,1,7,16,50,0,973,0,-1,0,133760,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14322,4,1,7,1,57,0,639,0,-1,0,133069,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14323,4,1,7,10,55,0,722,0,-1,0,132937,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14324,4,1,7,7,55,0,554,0,-1,0,134592,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14325,4,1,7,3,56,0,1143,0,-1,0,135054,7,0,45,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14326,4,1,7,20,58,0,471,0,-1,0,132666,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14327,4,1,7,6,53,0,890,0,-1,0,132502,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14328,4,1,7,5,60,0,472,0,-1,0,135021,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14329,4,1,7,8,57,0,807,0,-1,0,132541,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14330,4,1,7,9,56,0,1059,0,-1,0,132615,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14331,4,1,7,16,53,0,974,0,-1,0,133756,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14332,4,1,7,1,59,0,640,0,-1,0,133074,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14333,4,1,7,10,58,0,723,0,-1,0,132940,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14334,4,1,7,7,58,0,555,0,-1,0,134593,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14335,4,1,7,3,58,0,1143,0,-1,0,135045,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14336,4,1,7,20,60,0,472,0,-1,0,132670,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14337,4,1,7,6,56,0,891,0,-1,0,132499,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14338,12,0,0,0,0,0,0,0,-1,0,134865,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14339,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14340,4,1,7,20,57,0,0,0,-1,0,132687,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14341,7,5,8,0,0,0,0,0,-1,0,136120,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14342,7,5,7,0,0,0,0,0,-1,0,132895,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14343,7,12,2,0,0,0,0,0,-1,0,132874,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14344,7,12,2,0,0,0,0,0,-1,0,132873,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14363,4,1,7,7,11,0,0,0,-1,0,134706,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14364,4,1,7,8,13,0,0,0,-1,0,132539,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14365,4,1,7,16,10,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14366,4,1,7,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14367,4,1,7,10,14,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14368,4,1,7,3,17,0,0,0,-1,0,135040,7,0,35,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14369,4,1,7,5,18,0,0,0,-1,0,135017,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14370,4,1,7,7,14,0,0,0,-1,0,134582,7,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14371,4,1,7,20,18,0,0,0,-1,0,132655,7,0,65,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14372,4,1,7,5,23,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14373,4,1,7,6,20,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14374,4,1,7,8,19,0,0,0,-1,0,132540,7,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14375,4,1,7,9,20,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14376,4,1,7,16,17,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14377,4,1,7,10,21,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14378,4,1,7,3,22,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14379,4,1,7,7,24,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14380,4,1,7,20,23,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14381,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14382,4,1,7,5,0,0,0,0,-1,0,135017,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14383,4,1,7,9,0,0,0,0,-1,0,132608,7,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14384,4,1,7,8,0,0,0,0,-1,0,132539,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14385,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14386,4,1,7,1,0,0,0,0,-1,0,133090,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14387,4,1,7,10,0,0,0,0,-1,0,132940,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14388,4,1,7,7,0,0,0,0,-1,0,134593,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14389,4,1,7,3,0,0,0,0,-1,0,135033,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14390,4,1,7,6,0,0,0,0,-1,0,132493,7,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14391,2,7,1,13,0,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14392,2,10,2,17,0,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14393,4,6,1,14,0,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14394,2,2,2,15,0,0,0,0,-1,0,135490,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +14395,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14396,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14397,4,1,7,3,27,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14398,4,1,7,5,28,0,0,0,-1,0,135013,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14399,4,1,7,8,26,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14400,4,1,7,16,24,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14401,4,1,7,1,28,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14402,4,1,7,9,24,0,0,0,-1,0,132600,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14403,4,1,7,10,26,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14404,4,1,7,7,28,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14405,4,1,7,20,28,0,0,0,-1,0,132681,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14406,4,1,7,6,25,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14407,4,1,7,5,34,0,0,0,-1,0,135012,7,0,70,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14408,4,1,7,8,30,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14409,4,1,7,16,28,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14410,4,1,7,1,33,0,0,0,-1,0,132515,7,0,45,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14411,4,1,7,10,30,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14412,4,1,7,3,31,0,0,0,-1,0,135034,7,0,45,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14413,4,1,7,20,34,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14414,4,1,7,6,29,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14415,4,1,7,7,32,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14416,4,1,7,9,29,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14417,4,1,7,5,39,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14418,4,1,7,8,34,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14419,4,1,7,9,33,0,0,0,-1,0,132601,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14420,4,1,7,16,33,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14421,4,1,7,1,37,0,0,0,-1,0,132500,7,0,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14422,4,1,7,10,35,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14423,4,1,7,3,35,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14424,4,1,7,7,37,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14425,4,1,7,20,39,0,0,0,-1,0,132650,7,0,70,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14426,4,1,7,6,34,0,0,0,-1,0,132495,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14427,4,1,7,5,44,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14428,4,1,7,8,39,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14429,4,1,7,9,38,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14430,4,1,7,16,37,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14431,4,1,7,10,39,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14432,4,1,7,3,40,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14433,4,1,7,7,41,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14434,4,1,7,20,44,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14435,4,1,7,6,38,0,0,0,-1,0,132512,7,0,25,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14436,4,1,7,1,41,0,0,0,-1,0,133111,7,0,45,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14437,4,1,7,5,49,0,0,0,-1,0,135010,7,0,70,0,0,0,0,0,0,70,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14438,4,1,7,8,43,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14439,4,1,7,9,42,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,27,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +14440,4,1,7,16,41,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,30,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14441,4,1,7,1,45,0,0,0,-1,0,133134,7,0,45,0,0,0,0,0,0,53,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14442,4,1,7,10,44,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,40,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +14443,4,1,7,3,44,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,48,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14444,4,1,7,7,47,0,0,0,-1,0,134594,7,0,55,0,0,0,0,0,0,59,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +14445,4,1,7,20,49,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,70,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +14446,4,1,7,6,43,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,35,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +14447,4,1,7,8,48,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14448,4,1,7,9,47,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14449,4,1,7,1,52,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14450,4,1,7,16,46,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14451,4,1,7,10,48,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14452,4,1,7,3,49,0,0,0,-1,0,135055,7,0,45,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14453,4,1,7,20,54,0,0,0,-1,0,132677,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14454,4,1,7,6,48,0,0,0,-1,0,132519,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14455,4,1,7,5,54,0,0,0,-1,0,135007,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14456,4,1,7,5,59,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14457,4,1,7,9,53,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14458,4,1,7,8,55,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14459,4,1,7,16,52,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14460,4,1,7,1,58,0,0,0,-1,0,133123,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14461,4,1,7,10,57,0,0,0,-1,0,132944,7,0,25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14462,4,1,7,7,57,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14463,4,1,7,3,57,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14464,4,1,7,20,59,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14465,4,1,7,6,55,0,0,0,-1,0,132506,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14466,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14467,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14468,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14469,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14470,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14471,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14472,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14473,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14474,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14475,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14476,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14477,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14478,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14479,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14480,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14481,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14482,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14483,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14484,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14485,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14486,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14487,2,4,2,13,57,3,0,0,-1,0,133050,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +14488,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14489,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14490,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14491,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14492,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14493,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14494,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14495,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14496,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14497,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14498,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14499,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14500,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14501,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14502,4,2,8,6,57,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,98,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +14503,4,2,8,3,57,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14504,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14505,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14506,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14507,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14508,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14509,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14510,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14511,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14512,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14513,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14514,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14522,4,3,5,7,57,0,0,0,-1,0,134584,10,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14523,12,0,1,0,0,0,0,0,-1,0,136248,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14524,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14525,4,4,6,10,57,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14526,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14527,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14528,4,6,1,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +14529,0,7,7,0,0,0,0,0,-1,0,133681,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14530,0,7,7,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14531,2,5,2,17,54,1,0,0,-1,0,133050,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +14532,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14533,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14534,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14535,2,6,1,17,1,2,0,0,-1,0,135130,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14536,4,3,5,5,56,0,0,0,-1,0,132636,10,0,120,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14537,4,4,6,8,57,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,445,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +14538,4,1,7,3,57,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14539,4,2,8,1,57,0,0,0,-1,0,133116,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14540,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14541,2,8,1,17,56,1,0,0,-1,0,135273,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +14542,0,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14543,4,1,7,10,57,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,55,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0 +14544,12,0,0,0,0,0,0,0,-1,0,134417,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14545,4,2,8,7,57,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14546,12,0,0,0,0,0,0,0,-1,0,133721,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14547,12,0,1,0,0,0,0,0,-1,0,132937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14548,4,3,5,3,57,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14549,4,4,6,8,40,0,0,0,-1,0,132586,11,0,75,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14550,4,2,8,9,44,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14551,4,3,5,10,44,0,0,0,-1,0,132964,10,0,50,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14552,4,4,6,3,50,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14553,4,2,8,6,56,0,0,0,-1,0,132498,7,0,40,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14554,4,4,6,7,57,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14555,2,15,1,13,58,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,10,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +14557,4,0,4,12,58,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14558,4,0,0,2,59,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14559,4,2,8,6,13,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14560,4,2,8,8,14,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14561,4,2,8,9,12,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14562,4,2,8,5,18,0,0,0,-1,0,132724,7,0,75,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14563,4,1,7,16,12,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14564,4,2,8,10,14,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14565,4,2,8,7,16,0,0,0,-1,0,134582,7,0,55,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14566,4,2,8,3,20,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14567,4,2,8,6,18,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14568,4,2,8,8,18,0,0,0,-1,0,132542,7,0,40,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14569,4,2,8,9,17,0,0,0,-1,0,132607,7,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14570,4,2,8,5,23,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14571,4,1,7,16,16,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14572,4,2,8,10,19,0,0,0,-1,0,132955,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14573,4,2,8,3,22,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14574,4,2,8,7,21,0,0,0,-1,0,134587,7,0,60,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14575,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14576,2,7,1,13,54,3,0,0,-1,0,135313,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +14577,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +14578,4,2,8,6,24,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14579,4,2,8,8,26,0,0,0,-1,0,132543,7,0,45,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14580,4,2,8,9,22,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14581,4,2,8,5,28,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14582,4,1,7,16,23,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14583,4,2,8,10,27,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14584,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14585,4,2,8,7,27,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14586,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14587,4,2,8,3,27,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14588,4,2,8,6,31,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14589,4,2,8,8,32,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14590,4,2,8,9,30,0,0,0,-1,0,132603,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14591,4,2,8,1,35,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14592,4,2,8,5,35,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14593,4,1,7,16,30,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14594,4,2,8,10,32,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14595,4,2,8,7,33,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14596,4,2,8,3,33,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14597,4,6,1,14,36,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14598,4,2,8,6,35,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14599,4,2,8,8,37,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14600,4,2,8,9,35,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14601,4,2,8,5,39,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14602,4,1,7,16,34,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14603,4,2,8,3,36,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14604,4,2,8,1,40,0,0,0,-1,0,133111,7,0,50,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14605,4,2,8,7,38,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14606,4,2,8,10,36,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14607,4,6,1,14,32,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14608,4,6,1,14,26,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14609,4,6,1,14,12,4,0,0,-1,0,134955,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14610,12,0,0,0,0,0,0,0,-1,0,136162,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14611,4,3,5,5,56,0,0,0,-1,0,132720,10,0,120,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14612,4,3,5,7,56,0,0,0,-1,0,134586,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14613,12,0,0,0,0,0,0,0,-1,0,133038,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14614,4,3,5,6,56,0,0,0,-1,0,132512,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14615,4,3,5,10,56,0,0,0,-1,0,132960,10,0,40,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14616,4,3,5,8,56,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14617,4,0,7,4,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14618,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14619,12,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14620,4,4,6,6,56,0,0,0,-1,0,132501,11,0,45,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14621,4,4,6,8,56,0,0,0,-1,0,132535,11,0,65,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14622,4,4,6,10,56,0,0,0,-1,0,132962,11,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14623,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14624,4,4,6,5,56,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14625,12,0,0,0,0,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14626,4,1,7,20,56,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14627,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14628,12,0,0,0,0,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14629,4,1,7,9,56,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14630,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14631,4,1,7,8,56,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14632,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14633,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14634,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14635,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14636,4,2,8,6,56,0,0,0,-1,0,132505,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14637,4,2,8,5,56,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14638,4,2,8,7,56,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14639,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14640,4,2,8,10,56,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14641,4,2,8,8,56,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14642,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +14643,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +14644,12,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14645,12,0,0,0,0,0,0,0,-1,0,135657,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14646,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14647,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14648,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14649,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14650,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14651,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14652,4,2,8,6,40,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14653,4,2,8,8,41,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14654,4,2,8,9,39,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14655,4,2,8,5,44,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14656,4,1,7,16,39,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14657,4,2,8,10,41,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14658,4,2,8,1,44,0,0,0,-1,0,133118,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14659,4,2,8,7,42,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14660,4,2,8,3,42,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14661,4,2,8,6,44,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14662,4,2,8,8,46,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14663,4,2,8,9,43,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14664,4,2,8,5,49,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14665,4,1,7,16,43,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14666,4,2,8,10,46,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14667,4,2,8,1,48,0,0,0,-1,0,133127,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14668,4,2,8,7,47,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14669,4,2,8,3,46,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14670,4,2,8,5,54,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14671,4,2,8,8,51,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14672,4,2,8,9,48,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14673,4,1,7,16,47,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14674,4,2,8,6,50,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14675,4,2,8,10,51,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14676,4,2,8,1,53,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14677,4,2,8,7,53,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14678,4,2,8,3,52,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14679,12,0,0,0,0,0,0,0,-1,0,134942,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14680,4,2,8,5,59,0,0,0,-1,0,132717,7,0,85,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14681,4,2,8,8,57,0,0,0,-1,0,132535,7,0,45,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14682,4,2,8,9,54,0,0,0,-1,0,132602,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14683,4,1,7,16,54,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14684,4,2,8,6,55,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14685,4,2,8,10,57,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14686,4,2,8,1,58,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14687,4,2,8,7,57,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14688,4,2,8,3,56,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14691,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14696,4,6,1,14,6,4,0,0,-1,0,134955,9,0,45,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14706,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14707,2,10,2,17,1,2,0,0,-1,0,135146,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14722,4,3,5,8,12,0,0,0,-1,0,132540,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14723,4,3,5,9,12,0,0,0,-1,0,132605,10,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14724,4,1,7,16,11,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14725,4,3,5,6,12,0,0,0,-1,0,132514,10,0,25,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14726,4,3,5,10,13,0,0,0,-1,0,132946,10,0,25,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14727,4,3,5,7,14,0,0,0,-1,0,134585,10,0,60,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14728,4,3,5,3,17,0,0,0,-1,0,135038,10,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14729,4,6,1,14,15,4,0,0,-1,0,134964,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14730,4,3,5,5,18,0,0,0,-1,0,132624,10,0,90,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14742,4,3,5,8,19,0,0,0,-1,0,132541,10,0,45,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14743,4,3,5,9,17,0,0,0,-1,0,132608,10,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14744,4,3,5,5,23,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14745,4,1,7,16,15,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14746,4,3,5,6,17,0,0,0,-1,0,132511,10,0,30,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14747,4,3,5,10,18,0,0,0,-1,0,132939,10,0,30,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14748,4,3,5,7,20,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14749,4,3,5,3,21,0,0,0,-1,0,135038,10,0,55,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14750,4,3,5,9,23,0,0,0,-1,0,132610,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14751,4,3,5,5,28,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14752,4,1,7,16,22,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14753,4,3,5,1,28,0,0,0,-1,0,133161,10,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14754,4,3,5,10,24,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14755,4,3,5,6,23,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14756,4,3,5,8,24,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14757,4,3,5,7,27,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14758,4,3,5,3,26,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14759,4,3,5,9,29,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14760,4,3,5,5,34,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14761,4,3,5,6,29,0,0,0,-1,0,132518,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14762,4,3,5,8,32,0,0,0,-1,0,132539,10,0,50,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14763,4,1,7,16,27,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14764,4,3,5,10,30,0,0,0,-1,0,132943,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14765,4,3,5,1,33,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14766,4,3,5,7,32,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14767,4,3,5,3,33,0,0,0,-1,0,135052,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14768,4,3,5,5,39,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14769,4,3,5,8,37,0,0,0,-1,0,132579,10,0,50,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14770,4,3,5,9,35,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14771,4,1,7,16,34,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14772,4,3,5,10,35,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14773,4,3,5,6,34,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14774,4,3,5,1,38,0,0,0,-1,0,133121,10,0,60,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14775,4,3,5,7,38,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14776,4,3,5,3,38,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14777,4,6,1,14,39,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14778,4,3,5,9,40,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14779,4,3,5,5,44,0,0,0,-1,0,132643,10,0,100,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14780,4,6,1,14,44,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14781,4,1,7,16,39,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14782,4,3,5,10,40,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14783,4,3,5,6,41,0,0,0,-1,0,132500,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14784,4,3,5,8,41,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14785,4,3,5,1,43,0,0,0,-1,0,133101,10,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14786,4,3,5,7,42,0,0,0,-1,0,134586,10,0,75,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14787,4,3,5,3,42,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14788,4,3,5,9,44,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14789,4,3,5,5,49,0,0,0,-1,0,132723,10,0,100,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14790,4,6,1,14,49,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14791,4,1,7,16,43,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14792,4,3,5,10,45,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14793,4,3,5,6,45,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14794,4,3,5,8,45,0,0,0,-1,0,132543,10,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14795,4,3,5,1,48,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14796,4,3,5,7,48,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14797,4,3,5,3,46,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14798,4,3,5,5,54,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14799,4,3,5,8,53,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14800,4,6,1,14,54,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14801,4,1,7,16,47,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14802,4,3,5,10,50,0,0,0,-1,0,132953,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14803,4,3,5,6,50,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14804,4,3,5,1,53,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14805,4,3,5,7,52,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14806,4,3,5,3,52,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14807,4,3,5,9,48,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14808,4,3,5,6,54,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14809,4,3,5,8,57,0,0,0,-1,0,132541,10,0,50,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14810,4,3,5,9,54,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14811,4,3,5,5,59,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14812,4,6,1,14,59,4,0,0,-1,0,134966,9,0,85,0,0,0,0,0,0,1946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14813,4,1,7,16,52,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14814,4,3,5,1,58,0,0,0,-1,0,133078,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14815,4,3,5,10,57,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14816,4,3,5,7,57,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14817,4,3,5,3,57,0,0,0,-1,0,135033,10,0,60,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14818,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14820,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14821,4,4,6,5,40,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14822,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14823,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14824,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +14825,4,6,1,14,38,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14826,4,4,6,10,40,0,0,0,-1,0,132949,11,0,40,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14827,4,4,6,6,40,0,0,0,-1,0,132520,11,0,40,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14828,4,4,6,8,40,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14829,4,4,6,7,40,0,0,0,-1,0,134593,11,0,85,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14830,4,4,6,3,40,0,0,0,-1,0,135042,11,0,70,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14831,4,4,6,1,40,0,0,0,-1,0,132768,11,0,70,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14832,4,4,6,9,40,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14833,4,4,6,10,40,0,0,0,-1,0,132953,11,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14834,4,4,6,9,40,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14835,4,4,6,5,43,0,0,0,-1,0,132743,11,0,115,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14836,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14837,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14838,4,4,6,6,40,0,0,0,-1,0,132513,11,0,40,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14839,4,4,6,8,40,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14840,4,4,6,7,42,0,0,0,-1,0,134586,11,0,85,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14841,4,4,6,3,40,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14842,4,6,1,14,43,4,0,0,-1,0,134963,9,0,85,0,0,0,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14843,4,4,6,1,41,0,0,0,-1,0,133101,11,0,70,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14844,4,4,6,5,49,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14845,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14846,4,4,6,10,45,0,0,0,-1,0,132938,11,0,40,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14847,4,4,6,6,44,0,0,0,-1,0,132508,11,0,40,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14848,4,4,6,8,45,0,0,0,-1,0,132541,11,0,55,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14849,4,4,6,1,48,0,0,0,-1,0,133124,11,0,70,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14850,4,4,6,7,47,0,0,0,-1,0,134582,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14851,4,4,6,3,46,0,0,0,-1,0,135051,11,0,70,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14852,4,6,1,14,49,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14853,4,4,6,9,43,0,0,0,-1,0,132608,11,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14854,4,4,6,5,54,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14855,4,4,6,10,50,0,0,0,-1,0,132951,11,0,40,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14856,4,4,6,6,49,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14857,4,4,6,8,49,0,0,0,-1,0,132586,11,0,55,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14858,4,4,6,1,53,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14859,4,4,6,7,52,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14860,4,4,6,3,51,0,0,0,-1,0,135058,11,0,70,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14861,4,4,6,9,47,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14862,4,4,6,5,58,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14863,4,4,6,10,55,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14864,4,4,6,6,54,0,0,0,-1,0,132511,11,0,40,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14865,4,4,6,8,55,0,0,0,-1,0,132539,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14866,4,4,6,1,57,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14867,4,4,6,7,57,0,0,0,-1,0,134583,11,0,85,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14868,4,4,6,3,56,0,0,0,-1,0,135033,11,0,70,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14869,4,4,6,9,53,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14870,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +14871,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14872,12,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14873,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14874,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14875,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14876,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14877,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14878,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14879,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14880,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14881,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14882,2,0,1,13,1,3,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14883,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14884,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14885,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14886,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14887,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14888,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14889,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14890,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14891,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14892,2,7,1,13,1,0,0,0,-1,0,135643,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +14893,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +14894,0,0,3,0,0,0,0,0,-1,0,134182,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14895,4,4,6,5,40,0,527,0,-1,0,132743,11,0,115,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14896,4,4,6,8,40,0,863,0,-1,0,132589,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14897,4,4,6,10,40,0,779,0,-1,0,132956,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14898,4,4,6,6,40,0,947,0,-1,0,132502,11,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14899,4,4,6,1,40,0,695,0,-1,0,133122,11,0,70,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14900,4,4,6,7,40,0,611,0,-1,0,134587,11,0,85,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14901,4,4,6,3,40,0,1199,0,-1,0,135036,11,0,70,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14902,4,6,1,14,36,4,2046,0,-1,0,134958,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14903,4,4,6,9,40,0,1115,0,-1,0,132603,11,0,40,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14904,4,4,6,5,45,0,530,0,-1,0,132626,11,0,115,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14905,4,4,6,10,40,0,780,0,-1,0,132962,11,0,40,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14906,4,4,6,6,40,0,948,0,-1,0,132513,11,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14907,4,4,6,1,43,0,697,0,-1,0,133127,11,0,70,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14908,4,4,6,7,43,0,613,0,-1,0,134584,11,0,85,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14909,4,4,6,3,40,0,1200,0,-1,0,135042,11,0,70,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14910,4,4,6,9,40,0,1116,0,-1,0,132612,11,0,40,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14911,4,4,6,8,41,0,865,0,-1,0,132587,11,0,55,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14912,4,6,1,14,45,4,2064,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14913,4,4,6,8,44,0,866,0,-1,0,132586,11,0,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14914,4,4,6,9,41,0,1117,0,-1,0,132611,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14915,4,4,6,5,48,0,531,0,-1,0,132742,11,0,115,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14916,4,6,1,14,48,4,2070,0,-1,0,134967,9,0,85,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14917,4,4,6,10,43,0,781,0,-1,0,132964,11,0,40,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14918,4,4,6,6,42,0,949,0,-1,0,132506,11,0,40,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14919,4,4,6,1,47,0,699,0,-1,0,132514,11,0,70,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14920,4,4,6,7,46,0,614,0,-1,0,134585,11,0,85,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14921,4,4,6,3,44,0,1202,0,-1,0,135047,11,0,70,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14922,4,4,6,8,48,0,867,0,-1,0,132592,11,0,55,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14923,4,4,6,9,45,0,1118,0,-1,0,132613,11,0,40,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14924,4,4,6,5,52,0,532,0,-1,0,132760,11,0,115,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14925,4,4,6,1,52,0,700,0,-1,0,133078,11,0,70,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14926,4,4,6,10,48,0,783,0,-1,0,132963,11,0,40,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14927,4,4,6,6,47,0,951,0,-1,0,132521,11,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14928,4,4,6,7,50,0,616,0,-1,0,134584,11,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14929,4,4,6,3,49,0,1203,0,-1,0,135059,11,0,70,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14930,4,6,1,14,52,4,2076,0,-1,0,134963,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14931,4,4,6,5,57,0,534,0,-1,0,132632,11,0,115,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14932,4,4,6,8,53,0,869,0,-1,0,132587,11,0,55,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14933,4,4,6,10,53,0,785,0,-1,0,132965,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14934,4,4,6,6,52,0,952,0,-1,0,132501,11,0,40,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14935,4,4,6,1,55,0,701,0,-1,0,133122,11,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14936,4,4,6,7,56,0,618,0,-1,0,134584,11,0,85,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14937,4,4,6,3,54,0,1205,0,-1,0,135047,11,0,70,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14938,4,4,6,9,51,0,1120,0,-1,0,132613,11,0,40,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14939,4,4,6,5,41,0,529,0,-1,0,132725,11,0,115,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14940,4,4,6,8,40,0,864,0,-1,0,132590,11,0,55,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14941,4,4,6,9,40,0,1115,0,-1,0,132618,11,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14942,4,4,6,10,40,0,779,0,-1,0,132961,11,0,40,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14943,4,4,6,6,40,0,947,0,-1,0,132503,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14944,4,4,6,1,40,0,696,0,-1,0,132517,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14945,4,4,6,7,40,0,612,0,-1,0,134584,11,0,85,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14946,4,4,6,3,40,0,1200,0,-1,0,135053,11,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14947,4,6,1,14,41,4,2058,0,-1,0,134965,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14948,4,4,6,5,46,0,530,0,-1,0,132629,11,0,115,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14949,4,4,6,10,42,0,781,0,-1,0,132953,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14950,4,4,6,6,41,0,949,0,-1,0,132502,11,0,40,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14951,4,4,6,8,42,0,865,0,-1,0,132536,11,0,55,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14952,4,4,6,1,45,0,698,0,-1,0,133101,11,0,70,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14953,4,4,6,7,44,0,614,0,-1,0,134586,11,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14954,4,6,1,14,46,4,2064,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14955,4,4,6,3,42,0,1201,0,-1,0,135054,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14956,4,4,6,9,40,0,1116,0,-1,0,132608,11,0,40,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14957,4,4,6,8,46,0,866,0,-1,0,132539,11,0,55,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14958,4,4,6,5,51,0,532,0,-1,0,132636,11,0,115,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14959,4,4,6,10,47,0,783,0,-1,0,132940,11,0,40,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14960,4,4,6,6,46,0,950,0,-1,0,132518,11,0,40,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14961,4,4,6,1,50,0,700,0,-1,0,133125,11,0,70,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14962,4,4,6,7,49,0,615,0,-1,0,134588,11,0,85,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14963,4,4,6,3,48,0,1203,0,-1,0,135036,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14964,4,6,1,14,51,4,2076,0,-1,0,134966,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14965,4,4,6,9,44,0,1118,0,-1,0,132612,11,0,40,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14966,4,4,6,5,56,0,534,0,-1,0,132738,11,0,115,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14967,4,4,6,10,51,0,784,0,-1,0,132944,11,0,40,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14968,4,4,6,6,50,0,952,0,-1,0,132500,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14969,4,4,6,1,54,0,701,0,-1,0,133073,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14970,4,4,6,7,53,0,617,0,-1,0,134582,11,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14971,4,4,6,3,52,0,1204,0,-1,0,135051,11,0,70,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14972,4,4,6,8,51,0,868,0,-1,0,132584,11,0,55,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14973,4,6,1,14,55,4,2082,0,-1,0,134961,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14974,4,4,6,9,50,0,1120,0,-1,0,132618,11,0,40,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14975,4,4,6,5,60,0,535,0,-1,0,132745,11,0,115,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14976,4,4,6,10,56,0,786,0,-1,0,132938,11,0,40,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14977,4,4,6,6,55,0,953,0,-1,0,132513,11,0,40,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14978,4,4,6,8,58,0,870,0,-1,0,132592,11,0,55,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14979,4,4,6,1,59,0,703,0,-1,0,133078,11,0,70,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14980,4,4,6,7,58,0,618,0,-1,0,134592,11,0,85,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14981,4,4,6,3,57,0,1206,0,-1,0,135044,11,0,70,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14982,4,6,1,14,60,4,2094,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14983,4,4,6,9,54,0,1121,0,-1,0,132608,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15002,12,0,0,0,0,0,0,0,-1,0,135128,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15003,4,2,8,6,3,0,0,0,-1,0,132512,7,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15004,4,2,8,8,4,0,0,0,-1,0,132542,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15005,4,2,8,9,4,0,0,0,-1,0,132611,7,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15006,4,6,1,14,4,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15007,4,1,7,16,3,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15008,4,2,8,10,5,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15009,4,2,8,7,6,0,559,0,-1,0,134585,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15010,4,2,8,5,6,0,475,0,-1,0,132719,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15011,4,2,8,6,10,0,896,0,-1,0,132492,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15012,4,2,8,8,11,0,813,0,-1,0,132539,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15013,4,2,8,9,9,0,0,0,-1,0,132604,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15014,4,6,1,14,12,4,1996,0,-1,0,134955,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15015,4,1,7,16,8,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15016,4,2,8,10,11,0,729,0,-1,0,132949,7,0,20,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15017,4,2,8,7,14,0,562,0,-1,0,134586,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15018,4,2,8,5,15,0,478,0,-1,0,132715,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15019,4,2,8,3,16,0,0,0,-1,0,135037,7,0,45,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15042,12,0,0,0,0,0,0,0,-1,0,134743,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15043,12,0,0,0,0,0,0,0,-1,0,134321,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15044,12,0,0,0,0,0,0,0,-1,0,132620,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15045,4,3,5,5,47,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,311,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0 +15046,4,3,5,7,49,0,0,0,-1,0,134585,10,0,90,0,0,0,0,0,0,282,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0 +15047,4,3,5,5,56,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,360,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15048,4,3,5,5,52,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,338,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0 +15049,4,3,5,3,54,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,262,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0 +15050,4,3,5,5,53,0,0,0,-1,0,132741,10,0,120,0,0,0,0,0,0,344,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15051,4,3,5,3,55,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,266,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15052,4,3,5,7,57,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,320,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15053,4,2,8,5,52,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,148,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15054,4,2,8,7,49,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15055,4,2,8,3,56,0,0,0,-1,0,135044,7,0,50,0,0,0,0,0,0,117,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15056,4,2,8,5,52,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15057,4,2,8,7,50,0,0,0,-1,0,134589,7,0,75,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15058,4,2,8,3,54,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15059,4,2,8,5,55,0,0,0,-1,0,132742,7,0,100,0,0,0,0,0,0,169,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +15060,4,2,8,7,52,0,0,0,-1,0,134585,7,0,75,0,0,0,0,0,0,142,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +15061,4,2,8,3,49,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,117,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +15062,4,2,8,7,55,0,0,0,-1,0,134706,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15063,4,2,8,10,53,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15064,4,2,8,5,50,0,0,0,-1,0,132719,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15065,4,2,8,7,52,0,0,0,-1,0,134706,7,0,75,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15066,4,2,8,5,53,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15067,4,2,8,3,49,0,0,0,-1,0,135037,7,0,60,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15068,4,2,8,5,57,0,0,0,-1,0,132632,7,0,85,0,0,0,0,0,0,158,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0 +15069,4,2,8,7,52,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,129,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0 +15070,4,2,8,10,54,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,95,0,0,0,13,12,0,0,0,0,0,0,0,0,0,0,0 +15071,4,2,8,8,50,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,99,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0 +15072,4,2,8,7,51,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,127,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0 +15073,4,2,8,8,50,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,99,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0 +15074,4,2,8,10,48,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,87,0,0,12,0,0,11,0,0,0,0,0,0,0,0,0,0 +15075,4,2,8,5,53,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,150,0,0,17,0,0,16,0,0,0,0,0,0,0,0,0,0 +15076,4,3,5,5,48,0,0,0,-1,0,132637,10,0,100,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15077,4,3,5,9,46,0,0,0,-1,0,132608,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15078,4,3,5,10,50,0,0,0,-1,0,132958,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15079,4,3,5,7,52,0,0,0,-1,0,134592,10,0,75,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15080,4,3,5,1,54,0,0,0,-1,0,133122,10,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15081,4,3,5,3,56,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15082,4,3,5,6,51,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15083,4,2,8,10,47,0,0,0,-1,0,132965,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15084,4,2,8,9,48,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15085,4,2,8,5,56,0,0,0,-1,0,132741,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15086,4,2,8,1,51,0,0,0,-1,0,133683,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15087,4,2,8,7,53,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15088,4,2,8,6,55,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15090,4,2,8,5,57,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15091,4,2,8,10,49,0,0,0,-1,0,132965,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15092,4,2,8,9,50,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15093,4,2,8,6,51,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15094,4,2,8,1,53,0,0,0,-1,0,133681,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15095,4,2,8,7,55,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15096,4,2,8,3,57,0,0,0,-1,0,135046,7,0,50,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15102,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15103,15,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15104,4,1,7,8,0,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15105,2,10,2,17,0,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15106,2,10,2,17,0,2,0,0,-1,0,135149,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15107,4,0,3,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15108,4,0,0,23,0,7,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15109,2,10,2,17,0,2,0,0,-1,0,135146,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,59,0,0,0,0 +15110,4,2,8,6,15,0,898,0,-1,0,132494,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15111,4,2,8,8,16,0,814,0,-1,0,132537,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15112,4,2,8,9,15,0,1066,0,-1,0,132600,7,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15113,4,6,1,14,18,4,2010,0,-1,0,134955,9,0,70,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15114,4,1,7,16,14,0,982,0,-1,0,133762,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15115,4,2,8,10,17,0,731,0,-1,0,132958,7,0,25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15116,4,2,8,3,21,0,1152,0,-1,0,135039,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15117,4,2,8,7,19,0,563,0,-1,0,134582,7,0,60,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15118,4,2,8,5,21,0,480,0,-1,0,132725,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15119,4,1,7,7,51,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15120,4,2,8,6,21,0,900,0,-1,0,132495,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15121,4,2,8,8,23,0,817,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15122,4,2,8,9,20,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15123,4,6,1,14,23,4,2020,0,-1,0,134956,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15124,4,1,7,16,20,0,984,0,-1,0,133755,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15125,4,2,8,10,24,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15126,4,2,8,7,24,0,565,0,-1,0,134587,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15127,4,2,8,3,25,0,1153,0,-1,0,135039,7,0,50,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15128,4,2,8,5,26,0,482,0,-1,0,132646,7,0,85,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15129,4,2,8,1,26,0,650,0,-1,0,133117,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15130,4,2,8,5,29,0,483,0,-1,0,132719,7,0,85,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15131,4,2,8,8,27,0,818,0,-1,0,132539,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15132,4,2,8,9,24,0,1069,0,-1,0,132609,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15133,4,6,1,14,28,4,2026,0,-1,0,134955,9,0,85,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15134,4,2,8,1,32,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15135,4,1,7,16,25,0,985,0,-1,0,133760,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15136,4,2,8,6,26,0,902,0,-1,0,132500,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15137,4,2,8,10,28,0,734,0,-1,0,132956,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15138,4,1,7,16,55,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,43,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15139,4,2,8,7,28,0,566,0,-1,0,134587,7,0,65,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15140,4,2,8,3,29,0,1155,0,-1,0,135042,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15141,4,3,5,5,57,0,0,0,-1,0,132741,10,0,140,0,0,0,0,0,0,455,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15142,4,2,8,8,30,0,819,0,-1,0,132592,7,0,45,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15143,4,2,8,9,28,0,1070,0,-1,0,132607,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15144,4,2,8,5,32,0,484,0,-1,0,132736,7,0,85,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15145,4,6,1,14,31,4,2032,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15146,4,2,8,1,34,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15147,4,1,7,16,28,0,986,0,-1,0,133758,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15148,4,2,8,6,29,0,903,0,-1,0,132493,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15149,4,2,8,10,31,0,735,0,-1,0,132939,7,0,30,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15150,4,2,8,3,31,0,1155,0,-1,0,135039,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15151,4,2,8,7,31,0,567,0,-1,0,134706,7,0,65,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15152,4,2,8,8,36,0,821,0,-1,0,132542,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15153,4,1,7,16,32,0,988,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15154,4,2,8,6,33,0,904,0,-1,0,132504,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15155,4,2,8,10,34,0,736,0,-1,0,132959,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15156,4,2,8,1,38,0,654,0,-1,0,133111,7,0,50,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15157,4,2,8,7,36,0,569,0,-1,0,134583,7,0,65,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15158,4,2,8,3,35,0,1157,0,-1,0,135053,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15159,4,2,8,5,37,0,485,0,-1,0,132720,7,0,85,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15160,4,2,8,9,34,0,1072,0,-1,0,132608,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15161,4,2,8,6,38,0,906,0,-1,0,132501,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15162,4,2,8,8,40,0,822,0,-1,0,132536,7,0,45,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15163,4,2,8,9,38,0,1074,0,-1,0,132615,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15164,4,2,8,5,42,0,487,0,-1,0,132720,7,0,85,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15165,4,1,7,16,37,0,989,0,-1,0,133770,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15166,4,2,8,10,40,0,738,0,-1,0,132956,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15167,4,2,8,1,43,0,655,0,-1,0,133694,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15168,4,2,8,7,40,0,570,0,-1,0,134586,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15169,4,2,8,3,39,0,1158,0,-1,0,135054,7,0,50,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15170,4,2,8,5,47,0,489,0,-1,0,132635,7,0,85,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15171,4,2,8,8,45,0,824,0,-1,0,132535,7,0,45,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15172,4,2,8,9,42,0,1075,0,-1,0,132613,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15173,4,1,7,16,41,0,991,0,-1,0,133758,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15174,4,2,8,10,45,0,740,0,-1,0,132946,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15175,4,2,8,1,46,0,656,0,-1,0,133111,7,0,50,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15176,4,2,8,7,45,0,572,0,-1,0,134586,7,0,65,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15177,4,2,8,3,44,0,1160,0,-1,0,135044,7,0,50,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15178,4,2,8,6,42,0,907,0,-1,0,132505,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15179,4,2,8,5,52,0,490,0,-1,0,132629,7,0,85,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15180,4,2,8,6,48,0,909,0,-1,0,132500,7,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15181,4,2,8,8,50,0,826,0,-1,0,132588,7,0,45,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15182,4,2,8,9,46,0,1076,0,-1,0,132613,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15183,4,1,7,16,45,0,992,0,-1,0,133770,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15184,4,2,8,10,49,0,741,0,-1,0,132963,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15185,4,2,8,1,52,0,658,0,-1,0,132500,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15186,4,2,8,7,50,0,574,0,-1,0,134586,7,0,65,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15187,4,2,8,3,49,0,1161,0,-1,0,135054,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15188,4,2,8,9,52,0,1078,0,-1,0,132617,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15189,4,2,8,8,55,0,827,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15190,4,1,7,16,50,0,994,0,-1,0,133754,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15191,4,2,8,6,52,0,910,0,-1,0,132501,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15192,4,2,8,10,55,0,743,0,-1,0,132965,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15193,4,2,8,1,57,0,660,0,-1,0,133074,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15194,4,2,8,7,56,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15195,4,2,8,5,57,0,492,0,-1,0,132720,7,0,85,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15196,4,0,7,19,0,0,0,0,-1,0,134472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15197,4,0,7,19,0,0,0,0,-1,0,134473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15198,4,0,7,19,0,0,0,0,-1,0,134474,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15199,4,0,7,19,0,0,0,0,-1,0,134475,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15200,4,0,5,2,30,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15202,4,2,8,7,0,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15203,4,3,5,7,0,0,0,0,-1,0,134588,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15204,2,19,2,26,0,0,0,0,-1,0,135469,21,0,40,0,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +15205,2,3,1,26,0,0,0,0,-1,0,135613,8,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +15206,4,0,0,23,0,7,0,0,-1,0,135466,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15207,4,6,1,14,0,4,0,0,-1,0,134957,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15208,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15209,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15210,2,7,1,13,11,3,5177,0,-1,0,135274,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,20,0,0,0,0 +15211,2,7,1,13,17,3,5195,0,-1,0,135321,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,36,0,0,0,0 +15212,2,7,1,21,22,3,5204,0,-1,0,135356,8,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +15213,2,7,1,13,31,3,5231,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +15214,2,7,1,13,35,3,5249,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,61,0,0,0,0 +15215,2,7,1,21,40,3,5258,0,-1,0,135314,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +15216,2,7,1,13,46,3,5276,0,-1,0,135351,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,63,0,0,0,0 +15217,2,7,1,13,49,3,5285,0,-1,0,135351,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +15218,2,7,1,13,52,3,5294,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +15219,2,7,1,13,54,3,5303,0,-1,0,135324,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,73,0,0,0,0 +15220,2,7,1,21,57,3,5312,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +15221,2,7,1,13,60,3,5321,0,-1,0,135276,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +15222,2,4,2,21,14,3,5188,0,-1,0,133045,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +15223,2,4,2,21,19,3,5197,0,-1,0,133045,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +15224,2,4,2,13,20,3,5206,0,-1,0,133045,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,45,0,0,0,0 +15225,2,4,2,21,28,3,5224,0,-1,0,133045,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,0,0,0,0 +15226,2,4,2,21,32,3,5242,0,-1,0,133053,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +15227,2,4,2,13,44,3,5278,0,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +15228,2,4,2,13,48,3,5287,0,-1,0,133729,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,115,0,0,0,0 +15229,2,4,2,13,50,3,5296,0,-1,0,133039,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +15230,2,0,1,21,20,3,5205,0,-1,0,132415,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,37,0,0,0,0 +15231,2,0,1,13,26,3,5223,0,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +15232,2,0,1,13,28,3,5223,0,-1,0,135649,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,43,0,0,0,0 +15233,2,0,1,21,34,3,5241,0,-1,0,132399,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +15234,2,0,1,21,35,3,5250,0,-1,0,132394,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +15235,2,0,1,13,43,3,5268,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +15236,2,0,1,13,47,3,5286,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +15237,2,0,1,13,50,3,5295,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +15238,2,0,1,13,53,3,5304,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +15239,2,0,1,13,56,3,5313,0,-1,0,132401,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +15240,2,0,1,13,59,3,5322,0,-1,0,132407,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,113,0,0,0,0 +15241,2,15,1,13,21,3,5207,0,-1,0,135637,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,28,0,0,0,0 +15242,2,15,1,13,25,3,5216,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +15243,2,15,1,13,31,3,5234,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +15244,2,15,1,13,37,3,5252,0,-1,0,135637,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +15245,2,15,1,13,45,3,5279,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +15246,2,15,1,13,57,3,5315,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +15247,2,15,1,13,59,3,5324,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +15248,2,8,1,17,15,1,5191,0,-1,0,135324,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,46,0,0,0,0 +15249,2,8,1,17,21,1,5209,0,-1,0,135324,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +15250,2,8,1,17,27,1,5227,0,-1,0,135321,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,84,0,0,0,0 +15251,2,8,1,17,38,1,5263,0,-1,0,135352,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,94,0,0,0,0 +15252,2,8,1,17,44,1,5281,0,-1,0,135355,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +15253,2,8,1,17,47,1,5290,0,-1,0,135330,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,170,0,0,0,0 +15254,2,8,1,17,49,1,5290,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,166,0,0,0,0 +15255,2,8,1,17,52,1,5299,0,-1,0,135278,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +15256,2,8,1,17,54,1,5308,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,209,0,0,0,0 +15257,2,8,1,17,57,1,5317,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,127,0,0,0,0 +15258,2,8,1,17,60,1,5326,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +15259,2,5,2,17,20,1,5211,0,-1,0,133053,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,65,0,0,0,0 +15260,2,5,2,17,33,1,5247,0,-1,0,133054,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,96,0,0,0,0 +15261,2,5,2,17,35,1,5256,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,132,0,0,0,0 +15262,2,5,2,17,41,1,5274,0,-1,0,133056,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +15263,2,5,2,17,45,1,5283,0,-1,0,133048,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,126,0,0,0,0 +15264,2,5,2,17,51,1,5301,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +15265,2,5,2,17,53,1,5310,0,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +15266,2,5,2,17,56,1,5319,0,-1,0,133045,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +15267,2,5,2,17,58,1,5319,0,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +15268,2,1,1,17,11,1,5183,0,-1,0,132400,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +15269,2,1,1,17,19,1,5201,0,-1,0,132415,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +15270,2,1,1,17,41,1,5273,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +15271,2,1,1,17,51,1,5300,0,-1,0,132403,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,198,0,0,0,0 +15272,2,1,1,17,54,1,5309,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,138,0,0,0,0 +15273,2,1,1,17,58,1,5318,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,165,0,0,0,0 +15274,2,10,2,17,47,2,5293,0,-1,0,135163,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,126,0,0,0,0 +15275,2,10,2,17,49,2,5293,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +15276,2,10,2,17,53,2,5311,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,184,0,0,0,0 +15277,15,5,0,0,30,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15278,2,10,2,17,55,2,5311,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +15279,2,19,2,26,46,0,5280,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15280,2,19,2,26,48,0,5289,0,-1,0,135468,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,104,0,0,0,0 +15281,2,19,2,26,52,0,5298,0,-1,0,135147,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +15282,2,19,2,26,55,0,5307,0,-1,0,135468,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +15283,2,19,2,26,59,0,5850,0,-1,0,135143,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +15284,2,2,2,15,24,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +15285,2,2,2,15,27,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +15286,2,2,2,15,30,0,0,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +15287,2,2,2,15,40,0,5852,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15288,2,2,2,15,56,0,5838,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +15289,2,2,2,15,60,0,5859,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +15290,15,5,0,0,30,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15291,2,2,2,15,46,0,5854,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +15292,15,5,0,0,60,0,0,0,-1,0,132244,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15293,15,5,0,0,60,0,0,0,-1,0,132244,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15294,2,2,2,15,48,0,5855,0,-1,0,135495,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,117,0,0,0,0 +15295,2,2,2,15,50,0,5856,0,-1,0,135498,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +15296,2,2,2,15,58,0,5858,0,-1,0,135500,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +15297,4,2,8,9,6,0,0,0,-1,0,132601,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15298,4,6,1,14,8,4,6272,0,-1,0,134956,9,0,50,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15299,4,1,7,16,5,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15300,4,2,8,10,9,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15301,4,2,8,8,8,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15302,4,2,8,6,6,0,0,0,-1,0,132498,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15303,4,2,8,7,9,0,560,0,-1,0,134589,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15304,4,2,8,5,11,0,477,0,-1,0,132716,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15305,4,2,8,8,13,0,813,0,-1,0,132539,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15306,4,2,8,9,11,0,1065,0,-1,0,132604,7,0,20,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15307,4,6,1,14,14,4,2004,0,-1,0,134955,9,0,65,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15308,4,2,8,6,12,0,897,0,-1,0,132492,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15309,4,1,7,16,10,0,980,0,-1,0,133770,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15310,4,2,8,10,13,0,729,0,-1,0,132939,7,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15311,4,2,8,5,17,0,479,0,-1,0,132719,7,0,75,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15312,4,2,8,7,15,0,562,0,-1,0,134586,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15313,4,2,8,3,19,0,0,0,-1,0,135039,7,0,45,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15314,0,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15322,2,3,1,26,34,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,72,0,0,0,0 +15323,2,3,1,26,45,0,5854,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,91,0,0,0,0 +15324,2,3,1,26,51,0,5856,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +15325,2,3,1,26,55,0,5857,0,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,104,0,0,0,0 +15326,15,0,1,0,35,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15327,15,0,1,0,35,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15328,12,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15329,4,2,8,6,19,0,899,0,-1,0,132505,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15330,4,2,8,8,20,0,816,0,-1,0,132539,7,0,40,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15331,4,2,8,9,18,0,1067,0,-1,0,132605,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15332,4,6,1,14,22,4,2014,0,-1,0,134948,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15333,4,1,7,16,17,0,983,0,-1,0,133753,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15334,4,2,8,10,22,0,732,0,-1,0,132961,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15335,2,7,1,13,0,3,0,0,-1,0,135321,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +15336,4,2,8,7,22,0,564,0,-1,0,134582,7,0,60,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15337,4,2,8,5,24,0,481,0,-1,0,132656,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15338,4,2,8,3,23,0,1153,0,-1,0,135049,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15339,4,2,8,1,29,0,651,0,-1,0,133117,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15340,4,1,7,16,22,0,984,0,-1,0,133753,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15341,4,2,8,8,25,0,817,0,-1,0,132539,7,0,45,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15342,4,6,1,14,25,4,2020,0,-1,0,134967,9,0,85,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15343,4,2,8,10,25,0,733,0,-1,0,132958,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15344,4,2,8,7,26,0,566,0,-1,0,134587,7,0,65,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15345,4,2,8,3,26,0,1154,0,-1,0,135039,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15346,4,2,8,5,27,0,482,0,-1,0,132656,7,0,85,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15347,4,2,8,6,23,0,901,0,-1,0,132514,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15348,4,2,8,9,21,0,1068,0,-1,0,132611,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15349,4,2,8,6,28,0,902,0,-1,0,132492,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15350,4,2,8,8,29,0,819,0,-1,0,132539,7,0,45,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15351,4,2,8,9,25,0,1069,0,-1,0,132612,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15352,4,6,1,14,29,4,2032,0,-1,0,134967,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15353,4,2,8,1,33,0,652,0,-1,0,133117,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15354,4,1,7,16,27,0,986,0,-1,0,133755,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15355,4,2,8,10,29,0,735,0,-1,0,132956,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15356,4,2,8,5,31,0,483,0,-1,0,132723,7,0,85,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15357,4,2,8,3,30,0,1155,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15358,4,2,8,7,30,0,567,0,-1,0,134587,7,0,65,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15359,4,2,8,5,36,0,485,0,-1,0,132649,7,0,85,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15360,4,2,8,9,33,0,1072,0,-1,0,132606,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15361,4,2,8,6,32,0,904,0,-1,0,132498,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15362,4,2,8,8,34,0,820,0,-1,0,132541,7,0,45,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15363,4,2,8,1,37,0,653,0,-1,0,133121,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15364,4,1,7,16,31,0,987,0,-1,0,133768,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15365,4,2,8,10,33,0,736,0,-1,0,132949,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15366,4,2,8,7,35,0,569,0,-1,0,134593,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15367,4,6,1,14,34,4,2038,0,-1,0,134962,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15368,4,2,8,3,34,0,1156,0,-1,0,135039,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15369,4,2,8,6,37,0,905,0,-1,0,132491,7,0,30,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15370,4,2,8,8,39,0,822,0,-1,0,132542,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15371,4,1,7,16,36,0,989,0,-1,0,133774,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15372,4,2,8,10,38,0,738,0,-1,0,132959,7,0,30,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15373,4,2,8,1,42,0,655,0,-1,0,133119,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15374,4,2,8,7,39,0,570,0,-1,0,134586,7,0,65,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15375,4,2,8,3,38,0,1158,0,-1,0,135054,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15376,4,2,8,5,41,0,487,0,-1,0,132722,7,0,85,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15377,4,2,8,9,37,0,1073,0,-1,0,132608,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15378,4,2,8,6,41,0,907,0,-1,0,132501,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15379,4,2,8,8,43,0,823,0,-1,0,132535,7,0,45,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15380,4,2,8,9,41,0,1075,0,-1,0,132615,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15381,4,2,8,5,46,0,488,0,-1,0,132720,7,0,85,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15382,4,1,7,16,40,0,990,0,-1,0,133770,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15383,4,2,8,10,43,0,739,0,-1,0,132956,7,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15384,4,2,8,1,45,0,656,0,-1,0,133126,7,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15385,4,2,8,7,44,0,572,0,-1,0,134592,7,0,65,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15386,4,2,8,3,43,0,1159,0,-1,0,135032,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15387,4,2,8,9,45,0,1076,0,-1,0,132605,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15388,4,2,8,6,47,0,909,0,-1,0,132510,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15389,4,2,8,8,48,0,825,0,-1,0,132542,7,0,45,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15390,4,2,8,5,51,0,490,0,-1,0,132742,7,0,85,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15391,4,2,8,1,51,0,658,0,-1,0,133142,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15392,4,1,7,16,44,0,992,0,-1,0,133769,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15393,4,2,8,10,47,0,741,0,-1,0,132945,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15394,4,2,8,7,49,0,573,0,-1,0,134586,7,0,65,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15395,4,2,8,3,48,0,1161,0,-1,0,135049,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15396,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +15397,2,10,2,17,0,2,0,0,-1,0,135145,13,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +15398,4,1,7,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15399,4,2,8,6,0,0,0,0,-1,0,132495,7,0,20,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15400,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15401,4,1,7,10,0,0,0,0,-1,0,132939,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15402,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15403,4,2,8,9,0,0,0,0,-1,0,132609,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15404,4,3,5,6,0,0,0,0,-1,0,132499,10,0,25,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15405,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15406,4,3,5,8,0,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15407,7,6,8,0,0,0,0,0,-1,0,134355,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15408,7,6,0,0,0,0,0,0,-1,0,134305,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15409,7,6,8,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15410,7,6,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15411,4,0,0,2,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15412,7,6,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15413,4,4,6,5,0,0,0,0,-1,0,132744,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15414,7,6,0,0,0,0,0,0,-1,0,134317,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15415,7,6,0,0,0,0,0,0,-1,0,134311,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15416,7,6,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15417,7,6,8,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15418,2,5,2,17,0,1,0,0,-1,0,133044,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,192,0,0,0,0 +15419,7,6,8,0,0,0,0,0,-1,0,134360,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15420,7,6,0,0,0,0,0,0,-1,0,132918,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15421,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15422,7,6,8,0,0,0,0,0,-1,0,134350,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15423,7,6,8,0,0,0,0,0,-1,0,134250,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15424,2,1,1,17,0,1,0,0,-1,0,132395,9,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +15425,4,2,8,9,50,0,1078,0,-1,0,132601,7,0,30,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15426,4,2,8,8,53,0,827,0,-1,0,132542,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15427,4,1,7,16,49,0,993,0,-1,0,133754,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15428,4,2,8,6,51,0,910,0,-1,0,132501,7,0,30,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15429,4,2,8,10,53,0,743,0,-1,0,132949,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15430,4,2,8,1,55,0,659,0,-1,0,133689,7,0,50,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15431,4,2,8,7,54,0,575,0,-1,0,134586,7,0,65,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15432,4,2,8,3,53,0,1163,0,-1,0,135039,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15433,4,2,8,5,56,0,492,0,-1,0,132717,7,0,85,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15434,4,2,8,6,56,0,912,0,-1,0,132501,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15435,4,2,8,8,58,0,828,0,-1,0,132589,7,0,45,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15436,4,2,8,9,55,0,1079,0,-1,0,132614,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15437,4,1,7,16,56,0,996,0,-1,0,133754,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15438,4,2,8,10,58,0,744,0,-1,0,132960,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15439,4,2,8,1,59,0,661,0,-1,0,132767,7,0,50,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15440,4,2,8,7,58,0,576,0,-1,0,134586,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15441,4,2,8,3,58,0,1164,0,-1,0,135052,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15442,4,2,8,5,60,0,493,0,-1,0,132741,7,0,85,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15443,2,15,1,13,0,3,0,0,-1,0,135641,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +15444,2,10,2,17,0,2,0,0,-1,0,135225,13,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,47,0,0,0,0 +15445,2,4,2,13,0,3,0,0,-1,0,133060,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +15446,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15447,12,0,0,0,0,0,0,0,-1,0,134350,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15448,12,0,0,0,0,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15449,4,1,7,7,0,0,0,0,-1,0,134594,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15450,4,2,8,7,0,0,0,0,-1,0,134587,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15451,4,3,5,7,0,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15452,4,1,7,9,0,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15453,4,2,8,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15454,12,0,0,0,0,0,0,0,-1,0,133748,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15455,4,1,7,20,0,0,0,0,-1,0,132673,7,0,70,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15456,4,2,8,7,0,0,0,0,-1,0,134593,7,0,65,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15457,4,1,7,3,0,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15458,4,2,8,8,0,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15459,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15460,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +15461,4,1,7,8,0,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15462,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15463,4,3,5,10,0,0,0,0,-1,0,132943,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15464,2,5,2,17,0,1,0,0,-1,0,133053,9,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +15465,2,19,2,26,0,0,0,0,-1,0,135469,21,0,50,0,3,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,52,0,0,0,0 +15466,4,6,1,14,0,4,0,0,-1,0,134967,9,0,80,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15467,4,0,5,11,0,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15468,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15469,4,2,8,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15470,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15471,4,2,8,5,0,0,0,0,-1,0,132716,7,0,85,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15472,4,3,5,6,4,0,0,0,-1,0,132511,10,0,20,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15473,4,3,5,8,5,0,0,0,-1,0,132541,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15474,4,3,5,9,3,0,0,0,-1,0,132608,10,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15475,4,1,7,16,3,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15476,4,3,5,10,5,0,0,0,-1,0,132952,10,0,20,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15477,4,3,5,7,6,0,580,0,-1,0,134592,10,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15478,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15479,4,3,5,5,6,0,496,0,-1,0,132638,10,0,65,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15480,4,3,5,6,8,0,0,0,-1,0,132502,10,0,20,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15481,4,3,5,8,8,0,0,0,-1,0,132536,10,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15482,4,3,5,9,6,0,0,0,-1,0,132607,10,0,20,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15483,4,1,7,16,5,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15484,4,3,5,10,7,0,0,0,-1,0,132953,10,0,20,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15485,4,3,5,7,9,0,581,0,-1,0,134586,10,0,55,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15486,4,6,1,14,7,4,6278,0,-1,0,134954,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15487,4,3,5,5,11,0,498,0,-1,0,132629,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15488,4,3,5,5,16,0,499,0,-1,0,132629,10,0,85,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15489,4,3,5,8,11,0,834,0,-1,0,132537,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15490,4,1,7,16,9,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15491,4,3,5,10,10,0,749,0,-1,0,132949,10,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15492,4,3,5,6,10,0,917,0,-1,0,132502,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15493,4,3,5,7,13,0,582,0,-1,0,134586,10,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15494,4,6,1,14,13,4,1998,0,-1,0,134960,9,0,60,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15495,4,3,5,9,10,0,1085,0,-1,0,132609,10,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15496,4,3,5,3,16,0,0,0,-1,0,135054,10,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15497,4,3,5,6,14,0,919,0,-1,0,132518,10,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15498,4,3,5,8,15,0,835,0,-1,0,132539,10,0,40,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15499,4,3,5,9,13,0,1086,0,-1,0,132612,10,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15500,4,3,5,5,19,0,500,0,-1,0,132626,10,0,90,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15501,4,1,7,16,12,0,1002,0,-1,0,133765,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15502,4,3,5,10,15,0,751,0,-1,0,132951,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15503,4,3,5,7,17,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15504,4,6,1,14,17,4,2010,0,-1,0,134956,9,0,70,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15505,4,3,5,3,18,0,0,0,-1,0,135058,10,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15506,4,3,5,8,16,0,835,0,-1,0,132542,10,0,40,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15507,4,3,5,9,14,0,1087,0,-1,0,132608,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15508,4,1,7,16,14,0,1003,0,-1,0,133766,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15509,4,3,5,10,16,0,751,0,-1,0,132953,10,0,30,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15510,4,3,5,6,15,0,919,0,-1,0,132504,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15511,4,3,5,7,19,0,584,0,-1,0,134583,10,0,65,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15512,4,6,1,14,19,4,2010,0,-1,0,134957,9,0,75,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15513,4,3,5,3,20,0,1173,0,-1,0,135037,10,0,55,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15514,4,3,5,5,21,0,501,0,-1,0,132624,10,0,95,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15515,4,3,5,6,20,0,921,0,-1,0,132505,10,0,30,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15516,4,3,5,8,22,0,837,0,-1,0,132579,10,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15517,4,3,5,9,20,0,1089,0,-1,0,132615,10,0,30,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15518,4,3,5,5,25,0,502,0,-1,0,132639,10,0,100,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15519,4,1,7,16,18,0,1004,0,-1,0,133772,7,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15520,4,3,5,10,21,0,753,0,-1,0,132956,10,0,35,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15521,4,3,5,7,22,0,585,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15522,4,6,1,14,24,4,2022,0,-1,0,134953,9,0,85,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15523,4,3,5,3,22,0,1173,0,-1,0,135050,10,0,55,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15524,4,3,5,5,26,0,503,0,-1,0,132719,10,0,100,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15525,4,3,5,8,23,0,838,0,-1,0,132589,10,0,50,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15526,4,1,7,16,19,0,1004,0,-1,0,133763,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15527,4,3,5,10,22,0,753,0,-1,0,132956,10,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15528,4,3,5,6,21,0,921,0,-1,0,132516,10,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15529,4,3,5,7,24,0,586,0,-1,0,134706,10,0,75,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15530,4,6,1,14,26,4,2028,0,-1,0,134955,9,0,85,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15531,4,3,5,3,25,0,1174,0,-1,0,135040,10,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15532,4,3,5,9,21,0,1089,0,-1,0,132615,10,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15533,4,3,5,1,26,0,671,0,-1,0,132767,10,0,60,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15534,4,3,5,8,26,0,839,0,-1,0,132541,10,0,50,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15535,4,3,5,9,24,0,1090,0,-1,0,132606,10,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15536,4,3,5,5,29,0,504,0,-1,0,132739,10,0,100,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15537,4,1,7,16,23,0,1006,0,-1,0,133754,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15538,4,3,5,10,25,0,754,0,-1,0,132949,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15539,4,3,5,6,25,0,922,0,-1,0,132515,10,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15540,4,3,5,1,29,0,672,0,-1,0,133077,10,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15541,4,3,5,7,28,0,587,0,-1,0,134583,10,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15542,4,3,5,3,27,0,1175,0,-1,0,135040,10,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15543,4,6,1,14,29,4,2034,0,-1,0,134955,9,0,85,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15544,4,3,5,8,27,0,839,0,-1,0,132539,10,0,50,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15545,4,3,5,9,25,0,1090,0,-1,0,132605,10,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15546,4,3,5,5,31,0,504,0,-1,0,132647,10,0,100,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15547,4,1,7,16,24,0,1006,0,-1,0,133769,7,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15548,4,3,5,10,27,0,755,0,-1,0,132945,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15549,4,3,5,6,26,0,923,0,-1,0,132510,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15550,4,3,5,1,30,0,672,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15551,4,3,5,7,30,0,588,0,-1,0,134584,10,0,75,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15552,4,6,1,14,31,4,2034,0,-1,0,134953,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15553,4,3,5,3,29,0,1176,0,-1,0,135049,10,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15554,4,3,5,6,28,0,923,0,-1,0,132513,10,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15555,4,3,5,8,28,0,839,0,-1,0,132592,10,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15556,4,3,5,9,27,0,1091,0,-1,0,132606,10,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15557,4,3,5,5,32,0,505,0,-1,0,132634,10,0,100,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15558,4,3,5,1,32,0,673,0,-1,0,132768,10,0,60,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15559,4,1,7,16,26,0,1007,0,-1,0,133757,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15560,4,3,5,10,29,0,756,0,-1,0,132945,10,0,35,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15561,4,3,5,7,31,0,588,0,-1,0,134583,10,0,75,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15562,4,3,5,3,31,0,1176,0,-1,0,135046,10,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15563,4,6,1,14,32,4,2040,0,-1,0,134953,9,0,85,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15564,0,6,8,0,40,0,0,0,-1,0,133604,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15565,4,3,5,8,33,0,841,0,-1,0,132535,10,0,50,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15566,4,3,5,9,30,0,1092,0,-1,0,132615,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15567,4,3,5,5,35,0,506,0,-1,0,132739,10,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15568,4,1,7,16,28,0,1007,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15569,4,6,1,14,35,4,2046,0,-1,0,134952,9,0,85,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15570,4,3,5,10,31,0,756,0,-1,0,132958,10,0,35,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15571,4,3,5,6,30,0,924,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15572,4,3,5,1,34,0,673,0,-1,0,132767,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15573,4,3,5,7,33,0,589,0,-1,0,134589,10,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15574,4,3,5,3,35,0,1178,0,-1,0,135058,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15575,4,3,5,6,31,0,924,0,-1,0,132516,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15576,4,3,5,8,34,0,841,0,-1,0,132584,10,0,50,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15577,4,3,5,9,31,0,1092,0,-1,0,132609,10,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15578,4,3,5,5,36,0,506,0,-1,0,132751,10,0,100,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15579,4,1,7,16,30,0,1008,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15580,4,3,5,1,35,0,674,0,-1,0,133141,10,0,60,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15581,4,3,5,10,33,0,757,0,-1,0,132945,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15582,4,3,5,7,35,0,590,0,-1,0,134589,10,0,75,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15583,4,3,5,3,36,0,1178,0,-1,0,135041,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15584,4,6,1,14,36,4,2044,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15585,4,1,7,10,0,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15586,12,0,0,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15587,4,2,8,6,0,0,0,0,-1,0,132523,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15588,4,3,5,6,0,0,0,0,-1,0,132510,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15589,4,3,5,8,36,0,842,0,-1,0,132535,10,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15590,4,3,5,9,32,0,1093,0,-1,0,132612,10,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15591,4,3,5,5,38,0,507,0,-1,0,132626,10,0,100,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15592,4,6,1,14,38,4,2050,0,-1,0,134957,9,0,85,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15593,4,3,5,1,37,0,674,0,-1,0,132767,10,0,60,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15594,4,1,7,16,32,0,1009,0,-1,0,133754,7,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15595,4,3,5,10,34,0,757,0,-1,0,132938,10,0,35,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15596,4,3,5,7,36,0,590,0,-1,0,134588,10,0,75,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15597,4,3,5,3,37,0,1178,0,-1,0,135052,10,0,60,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15598,4,3,5,6,33,0,925,0,-1,0,132519,10,0,35,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15599,4,3,5,8,39,0,843,0,-1,0,132585,10,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15600,4,3,5,9,37,0,1094,0,-1,0,132614,10,0,35,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15601,4,3,5,5,41,0,508,0,-1,0,132632,10,0,100,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15602,4,3,5,1,40,0,675,0,-1,0,133090,10,0,60,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15603,4,1,7,16,36,0,1010,0,-1,0,133763,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15604,4,6,1,14,41,4,2056,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15605,4,3,5,10,37,0,758,0,-1,0,132950,10,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15606,4,3,5,6,36,0,926,0,-1,0,132499,10,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15607,4,3,5,7,39,0,591,0,-1,0,134584,10,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15608,4,3,5,3,39,0,1179,0,-1,0,135040,10,0,60,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15609,4,3,5,5,42,0,508,0,-1,0,132627,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15610,4,3,5,9,38,0,1095,0,-1,0,132615,10,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15611,4,1,7,16,38,0,1011,0,-1,0,133763,7,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15612,4,3,5,10,39,0,759,0,-1,0,132963,10,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15613,4,3,5,6,37,0,926,0,-1,0,132524,10,0,35,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15614,4,3,5,8,40,0,843,0,-1,0,132590,10,0,50,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15615,4,3,5,1,41,0,676,0,-1,0,133070,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15616,4,3,5,7,41,0,592,0,-1,0,134581,10,0,75,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15617,4,3,5,3,40,0,1179,0,-1,0,135053,10,0,60,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15618,4,6,1,14,42,4,2056,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15619,4,3,5,6,43,0,928,0,-1,0,132518,10,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15620,4,3,5,9,42,0,1096,0,-1,0,132612,10,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15621,4,6,1,14,46,4,2062,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15622,4,3,5,5,46,0,509,0,-1,0,132741,10,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15623,4,3,5,1,45,0,677,0,-1,0,132767,10,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15624,4,1,7,16,40,0,1011,0,-1,0,133771,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15625,4,3,5,10,42,0,760,0,-1,0,132944,10,0,35,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15626,4,3,5,8,42,0,844,0,-1,0,132542,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15627,4,3,5,7,45,0,593,0,-1,0,134586,10,0,75,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15628,4,3,5,3,43,0,1180,0,-1,0,135032,10,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15629,4,3,5,9,43,0,1096,0,-1,0,132606,10,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15630,4,3,5,8,44,0,845,0,-1,0,132587,10,0,50,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15631,4,3,5,5,47,0,510,0,-1,0,132632,10,0,100,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15632,4,1,7,16,41,0,1012,0,-1,0,133754,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15633,4,6,1,14,47,4,2068,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15634,4,3,5,1,47,0,678,0,-1,0,132767,10,0,60,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15635,4,3,5,10,43,0,760,0,-1,0,132963,10,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15636,4,3,5,6,44,0,929,0,-1,0,132524,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15637,4,3,5,7,46,0,593,0,-1,0,134584,10,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15638,4,3,5,3,44,0,1181,0,-1,0,135061,10,0,60,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15639,4,3,5,9,45,0,1097,0,-1,0,132608,10,0,35,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15640,4,3,5,5,51,0,511,0,-1,0,132743,10,0,100,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15641,4,3,5,6,46,0,929,0,-1,0,132492,10,0,35,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15642,4,3,5,8,47,0,846,0,-1,0,132536,10,0,50,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15643,4,1,7,16,44,0,1013,0,-1,0,133774,7,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15644,4,3,5,10,47,0,762,0,-1,0,132956,10,0,35,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15645,4,3,5,1,50,0,679,0,-1,0,133076,10,0,60,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15646,4,3,5,7,50,0,595,0,-1,0,134583,10,0,75,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15647,4,3,5,3,48,0,1182,0,-1,0,135055,10,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15648,4,6,1,14,51,4,2074,0,-1,0,134965,9,0,85,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15649,4,3,5,9,46,0,1097,0,-1,0,132609,10,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15650,4,3,5,5,52,0,511,0,-1,0,132722,10,0,100,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15651,4,3,5,1,51,0,679,0,-1,0,132768,10,0,60,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15652,4,1,7,16,46,0,1013,0,-1,0,133760,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15653,4,3,5,10,48,0,762,0,-1,0,132938,10,0,35,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15654,4,3,5,6,49,0,930,0,-1,0,132496,10,0,35,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15655,4,3,5,7,51,0,595,0,-1,0,134586,10,0,75,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15656,4,3,5,3,49,0,1182,0,-1,0,135054,10,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15657,4,6,1,14,52,4,2074,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15658,4,3,5,8,54,0,848,0,-1,0,132589,10,0,50,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15659,4,3,5,9,50,0,1099,0,-1,0,132614,10,0,35,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15660,4,3,5,5,56,0,513,0,-1,0,132736,10,0,100,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15661,4,1,7,16,49,0,1014,0,-1,0,133763,7,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15662,4,3,5,10,52,0,763,0,-1,0,132963,10,0,35,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15663,4,3,5,6,51,0,931,0,-1,0,132507,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15664,4,3,5,1,55,0,680,0,-1,0,133111,10,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15665,4,3,5,7,55,0,596,0,-1,0,134581,10,0,75,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15666,4,3,5,3,54,0,1184,0,-1,0,135044,10,0,60,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15667,4,6,1,14,56,4,2086,0,-1,0,134949,9,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15668,4,3,5,9,53,0,1100,0,-1,0,132609,10,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15669,4,3,5,5,57,0,513,0,-1,0,132629,10,0,100,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15670,4,3,5,1,56,0,681,0,-1,0,133101,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15671,4,1,7,16,51,0,1015,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15672,4,3,5,10,55,0,764,0,-1,0,132953,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15673,4,3,5,6,53,0,932,0,-1,0,132500,10,0,35,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15674,4,3,5,8,55,0,848,0,-1,0,132536,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15675,4,6,1,14,57,4,2086,0,-1,0,134951,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15676,4,3,5,7,56,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15677,4,3,5,3,56,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15678,4,3,5,8,58,0,849,0,-1,0,132584,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15679,4,3,5,9,56,0,1101,0,-1,0,132602,10,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15680,4,3,5,5,60,0,514,0,-1,0,132751,10,0,100,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15681,4,1,7,16,53,0,1016,0,-1,0,133766,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15682,4,3,5,10,58,0,765,0,-1,0,132938,10,0,35,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15683,4,3,5,6,55,0,932,0,-1,0,132500,10,0,35,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15684,4,3,5,1,59,0,682,0,-1,0,133101,10,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15685,4,3,5,7,58,0,597,0,-1,0,134586,10,0,75,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15686,4,3,5,3,58,0,1185,0,-1,0,135054,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15687,4,6,1,14,60,4,2092,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15688,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15689,4,0,1,11,0,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15690,4,0,3,2,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15691,2,3,1,26,0,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +15692,2,19,2,26,0,0,0,0,-1,0,135469,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +15693,4,2,8,3,54,0,1163,0,-1,0,135055,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15694,4,3,5,8,49,0,846,0,-1,0,132589,10,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15695,4,6,1,14,0,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15696,12,0,0,0,0,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15697,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15698,4,3,5,3,0,0,0,0,-1,0,135045,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15699,15,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15702,4,0,5,11,0,1,0,0,-1,0,133722,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15703,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15704,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15705,2,7,1,13,0,3,0,0,-1,0,135349,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,115,0,0,0,0 +15706,2,15,1,13,0,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,66,0,0,0,0 +15707,4,1,7,6,0,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15708,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15709,4,4,6,6,0,0,0,0,-1,0,132522,11,0,40,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15710,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15722,12,0,0,0,0,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15723,0,0,3,0,50,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15724,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15725,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15726,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15727,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15728,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15729,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15730,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15731,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15732,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15733,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15734,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15735,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15736,12,0,0,0,0,0,0,0,-1,0,133715,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15737,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15738,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15739,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15740,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15741,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15742,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15743,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15744,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15745,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15746,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15747,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15748,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15749,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15750,12,0,0,0,0,0,0,0,-1,0,135161,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15751,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15752,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15753,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15754,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15755,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15756,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15757,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15758,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15759,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15760,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15761,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15762,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15763,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15764,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15765,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15766,12,0,3,0,0,0,0,0,-1,0,134073,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15767,12,0,0,0,0,0,0,0,-1,0,134245,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15768,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15772,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15773,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15774,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15775,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15776,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15777,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15778,0,0,3,0,0,0,0,0,-1,0,132189,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15779,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15780,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15781,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15782,2,7,1,13,0,3,0,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +15783,2,15,1,13,0,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +15784,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15785,12,0,0,0,0,0,0,0,-1,0,134178,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15786,4,2,8,5,0,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15787,4,3,5,5,0,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15788,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15789,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15790,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15791,4,1,7,6,0,0,0,0,-1,0,132499,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15792,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15793,15,0,0,0,0,0,0,0,-1,0,133726,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15794,4,1,0,7,0,0,0,0,-1,0,134706,7,0,35,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15795,4,4,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15796,4,3,5,9,0,0,0,0,-1,0,132616,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15797,4,4,6,9,0,0,0,0,-1,0,132617,11,0,40,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15798,15,0,0,0,0,0,0,0,-1,0,133724,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15799,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15800,2,7,1,13,0,3,0,0,-1,0,135327,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +15801,2,7,1,13,0,3,0,0,-1,0,135326,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +15802,4,1,7,8,51,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15803,12,0,8,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15804,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15805,4,0,3,23,0,7,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15806,2,7,1,13,0,3,0,0,-1,0,135344,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,87,0,0,0,0 +15807,2,18,2,26,3,0,0,0,-1,0,135531,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,12,0,0,0,0 +15808,2,18,2,26,16,0,0,0,-1,0,135531,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,29,0,0,0,0 +15809,2,18,2,26,29,0,0,0,-1,0,135532,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,50,0,0,0,0 +15810,2,6,1,17,20,1,0,0,-1,0,135128,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,60,0,0,0,0 +15811,2,6,1,17,30,1,0,0,-1,0,135129,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,102,0,0,0,0 +15812,4,1,7,3,0,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15813,4,3,5,6,0,0,0,0,-1,0,132511,10,0,35,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15814,2,7,1,13,0,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +15815,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0 +15822,4,2,8,3,0,0,0,0,-1,0,135055,7,0,50,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15823,4,3,5,10,0,0,0,0,-1,0,132963,10,0,35,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15824,4,1,7,20,0,0,0,0,-1,0,132648,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15825,4,2,8,5,0,0,0,0,-1,0,132741,7,0,85,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15826,12,0,0,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15827,4,3,5,5,0,0,0,0,-1,0,132626,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15842,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15843,12,0,0,0,0,0,0,0,-1,0,134743,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15844,12,0,0,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15845,12,0,0,0,0,0,0,0,-1,0,134743,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15846,7,3,8,0,0,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15847,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15848,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15849,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15850,12,0,0,0,0,0,0,0,-1,0,134349,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15851,12,0,0,0,0,0,0,0,-1,0,134522,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15852,12,0,0,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15853,2,0,1,13,0,3,0,0,-1,0,132399,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +15854,2,10,2,17,0,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,148,0,0,0,0 +15855,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15856,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15857,4,0,3,23,0,7,0,0,-1,0,135148,21,0,0,0,0,0,0,0,0,0,0,10,0,10,0,10,0,0,0,0,0,0,0,0,0,0 +15858,4,1,7,10,0,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15859,4,3,5,6,0,0,0,0,-1,0,132512,10,0,35,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15860,4,4,6,9,0,0,0,0,-1,0,132616,11,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15861,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15862,2,0,1,13,0,3,0,0,-1,0,135576,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +15863,2,4,2,13,0,3,0,0,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,67,0,0,0,0 +15864,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15865,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15866,4,0,0,23,0,7,0,0,-1,0,133639,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15867,4,0,0,12,0,0,0,0,-1,0,134139,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15868,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15869,0,8,2,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15870,0,8,2,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15871,0,8,2,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15872,0,8,2,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15873,4,0,0,12,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15874,13,0,0,0,0,0,0,0,-1,0,134433,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15875,12,0,0,0,0,0,0,0,-1,0,133976,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15876,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15877,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15878,12,0,0,0,0,0,0,0,-1,0,134237,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15879,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15880,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15881,12,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15882,12,0,0,0,0,0,0,0,-1,0,133442,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15883,12,0,0,0,0,0,0,0,-1,0,133443,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15884,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15885,12,0,0,0,0,0,0,0,-1,0,133444,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15886,12,0,0,0,50,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15887,4,6,1,14,57,4,2088,0,-1,0,134950,9,0,85,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15888,4,6,1,14,55,4,2082,0,-1,0,134153,9,0,85,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15889,4,6,1,14,52,4,2082,0,-1,0,136051,9,0,85,0,0,0,0,0,0,1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15890,4,6,1,14,54,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15891,4,6,1,14,21,4,0,0,-1,0,134965,9,0,80,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15892,4,6,1,14,27,4,0,0,-1,0,134961,9,0,85,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15893,4,6,1,14,16,4,0,0,-1,0,134955,9,0,65,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15894,4,6,1,14,20,4,0,0,-1,0,134955,9,0,75,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15895,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15902,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15903,2,13,1,21,20,7,0,0,-1,0,132941,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +15904,2,13,1,21,30,7,0,0,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +15905,2,13,1,21,10,7,0,0,-1,0,132938,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +15906,2,13,1,22,10,7,0,0,-1,0,132938,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +15907,2,13,1,22,20,7,0,0,-1,0,132941,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,23,0,0,0,0 +15908,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15909,2,13,1,22,30,7,0,0,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +15910,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +15911,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15912,4,0,0,23,18,7,2008,0,-1,0,135467,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15913,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15914,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15915,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15916,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15917,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15918,4,0,0,23,33,7,2038,0,-1,0,134336,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15919,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15920,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15921,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15922,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15923,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15924,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15925,4,0,0,23,5,7,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15926,4,0,0,23,12,7,0,0,-1,0,134333,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15927,4,0,0,23,22,7,0,0,-1,0,134123,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15928,4,0,0,23,26,7,0,0,-1,0,135469,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15929,4,0,0,23,32,7,0,0,-1,0,134336,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15930,4,0,0,23,51,7,0,0,-1,0,135468,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15931,4,0,0,23,56,7,0,0,-1,0,135140,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15932,4,0,0,23,7,7,6273,0,-1,0,132790,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15933,4,0,0,23,10,7,6272,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15934,4,0,0,23,27,7,2026,0,-1,0,135154,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15935,4,0,0,23,29,7,2032,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15936,4,0,0,23,50,7,2074,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15937,4,0,0,23,46,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15938,4,0,0,23,53,7,2080,0,-1,0,134334,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15939,4,0,0,23,54,7,2080,0,-1,0,135466,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15940,4,0,0,23,57,7,2086,0,-1,0,135473,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15941,4,0,0,23,59,7,2092,0,-1,0,135467,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15942,4,0,0,23,60,7,2092,0,-1,0,135144,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15943,4,6,1,14,56,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15944,4,0,0,23,7,7,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15945,4,0,0,23,13,7,0,0,-1,0,135153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15946,4,0,0,23,18,7,0,0,-1,0,134121,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15947,4,0,0,23,23,7,0,0,-1,0,135160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15962,4,0,0,23,28,7,0,0,-1,0,135145,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15963,4,0,0,23,34,7,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15964,4,0,0,23,39,7,0,0,-1,0,134334,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15965,4,0,3,23,44,7,0,0,-1,0,135140,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15966,4,0,0,23,49,7,0,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +15967,4,0,0,23,54,7,0,0,-1,0,135464,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15968,4,0,0,23,59,7,0,0,-1,0,134337,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15969,4,0,0,23,5,7,6273,0,-1,0,134337,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15970,4,0,0,23,10,7,6272,0,-1,0,135465,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15971,4,0,0,23,15,7,2002,0,-1,0,135225,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15972,4,0,0,23,19,7,2008,0,-1,0,132795,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15973,4,0,0,23,25,7,2020,0,-1,0,135464,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15974,4,0,0,23,21,7,2014,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15975,4,0,0,23,26,7,2026,0,-1,0,135467,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15976,4,0,0,23,31,7,2032,0,-1,0,135474,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15977,4,0,0,23,32,7,2038,0,-1,0,134333,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15978,4,0,0,23,36,7,2044,0,-1,0,135169,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15979,4,0,0,23,37,7,2044,0,-1,0,135165,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15980,4,0,0,23,41,7,2056,0,-1,0,134337,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15981,4,0,0,23,42,7,2056,0,-1,0,134122,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15982,4,0,0,23,46,7,2062,0,-1,0,135150,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15983,4,0,0,23,47,7,2068,0,-1,0,135466,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15984,4,0,0,23,51,7,2074,0,-1,0,135144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15985,4,0,0,23,52,7,2074,0,-1,0,135465,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15986,4,0,0,23,55,7,2080,0,-1,0,135160,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15987,4,0,0,23,56,7,2086,0,-1,0,134333,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15988,4,0,0,23,58,7,2086,0,-1,0,134335,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15989,4,0,0,23,60,7,2092,0,-1,0,135151,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15990,4,6,1,14,34,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15991,4,6,1,14,58,4,0,0,-1,0,134953,9,0,85,0,0,0,0,0,0,1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15992,7,1,8,0,0,0,0,0,-1,0,133587,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15993,7,2,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15994,7,1,8,0,0,0,0,0,-1,0,132998,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15995,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +15996,15,2,0,0,0,0,0,0,-1,0,134301,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15997,6,3,2,24,52,0,0,0,-1,0,132385,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,0,0,0 +15998,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15999,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16000,7,1,6,0,0,0,0,0,-1,0,133027,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16001,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16002,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16003,12,0,0,0,0,0,0,0,-1,0,133599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16004,2,3,1,26,50,0,0,0,-1,0,135617,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +16005,7,2,8,0,0,0,0,0,-1,0,133713,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16006,7,1,8,0,0,0,0,0,-1,0,133001,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16007,2,3,1,26,56,0,0,0,-1,0,135612,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +16008,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16009,4,0,3,2,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16022,4,0,8,12,50,0,0,0,-1,0,134153,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16023,7,3,8,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16024,12,0,0,0,0,0,0,0,-1,0,135277,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16025,12,0,0,0,0,0,0,0,-1,0,135277,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16026,4,4,6,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16027,4,4,6,5,0,0,0,0,-1,0,132737,11,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16028,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16029,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16030,4,4,6,8,0,0,0,0,-1,0,132590,11,0,55,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16031,4,4,6,3,0,0,0,0,-1,0,135051,11,0,70,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16033,4,4,6,9,0,0,0,0,-1,0,133344,11,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16034,4,0,0,16,0,0,0,0,-1,0,133773,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16035,4,4,6,1,0,0,0,0,-1,0,133075,11,0,70,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16036,4,0,0,5,0,0,0,0,-1,0,132649,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16037,4,0,0,7,0,0,0,0,-1,0,134589,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16038,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16039,2,8,1,17,52,1,0,0,-1,0,135351,9,0,100,0,0,6,0,0,0,0,0,0,0,0,0,0,129,1,0,0,0,194,20,0,0,0 +16040,7,2,8,0,0,0,0,0,-1,0,136173,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16041,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16042,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16043,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16044,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16045,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16046,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16047,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16048,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16049,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16050,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16051,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16052,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16053,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16054,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16055,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16056,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16057,1,0,7,18,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16058,4,0,5,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16059,4,0,7,4,0,0,0,0,-1,0,135027,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16060,4,0,7,4,0,0,0,0,-1,0,135030,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16061,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16062,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16063,4,1,7,10,30,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16064,4,3,5,6,30,0,0,0,-1,0,133693,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16065,4,2,8,8,30,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16066,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16067,4,0,0,11,0,0,0,0,-1,0,133343,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16068,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16069,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16070,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16071,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16072,9,5,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16073,9,5,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16074,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16075,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16076,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16077,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16078,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16079,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16080,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16081,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16082,9,9,0,0,35,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16083,9,9,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16084,9,7,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16085,9,7,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16086,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16102,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16103,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16104,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16105,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16106,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16107,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16108,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16109,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16110,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16111,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16112,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16113,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16114,12,0,0,0,0,0,0,0,-1,0,133486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16115,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16116,4,1,7,16,30,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16117,4,1,7,10,30,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16118,4,1,7,7,30,0,0,0,-1,0,134592,7,0,55,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16119,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16120,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16121,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16122,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16123,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16124,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16125,4,0,3,2,30,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16126,4,2,8,6,30,0,0,0,-1,0,133693,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16127,4,2,8,9,30,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16129,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16131,4,3,5,6,30,0,0,0,-1,0,133693,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16132,4,2,8,9,30,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16134,4,3,5,3,30,0,0,0,-1,0,135049,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16135,4,1,7,8,30,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16136,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16137,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16138,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16139,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16140,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16141,4,3,5,1,30,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16142,4,3,5,9,30,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16143,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16144,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16145,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16146,4,1,7,1,30,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16147,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16148,4,2,8,3,30,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16149,4,3,5,3,30,0,0,0,-1,0,135040,10,0,60,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16150,4,2,8,6,30,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16151,4,1,7,8,30,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16152,4,1,7,6,30,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16153,4,1,7,9,30,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16154,4,1,7,3,30,0,0,0,-1,0,135049,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16155,4,2,8,6,30,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16156,4,2,8,1,30,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16157,4,3,5,8,30,0,0,0,-1,0,132542,10,0,50,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16158,4,3,5,9,30,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16159,4,3,5,1,30,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16160,4,4,6,3,40,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16161,4,4,6,10,40,0,0,0,-1,0,132957,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16162,4,4,6,3,40,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16163,4,3,5,6,30,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16164,4,3,5,10,30,0,0,0,-1,0,132962,10,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16165,4,3,5,7,30,0,0,0,-1,0,134584,10,0,75,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16166,0,5,0,0,1,0,0,0,-1,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16167,0,5,0,0,5,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16168,0,5,0,0,35,0,0,0,-1,0,133998,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16169,0,5,0,0,25,0,0,0,-1,0,133991,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16170,0,5,0,0,15,0,0,0,-1,0,134007,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16171,0,5,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16172,4,4,6,10,40,0,0,0,-1,0,132957,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16173,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16174,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16175,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16176,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16177,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16178,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16179,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16180,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16181,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16182,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16183,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16184,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16185,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16186,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16187,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16188,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16189,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16190,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16191,12,0,0,0,0,0,0,0,-1,0,134961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16192,12,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16202,7,12,2,0,0,0,0,0,-1,0,132865,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16203,7,12,2,0,0,0,0,0,-1,0,132864,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16204,7,12,2,0,0,0,0,0,-1,0,132856,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16205,12,0,0,0,0,0,0,0,-1,0,133944,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16206,7,12,1,0,0,5,0,0,-1,0,135156,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16207,7,12,1,0,0,5,0,0,-1,0,135471,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16208,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16209,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16210,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16211,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16212,2,7,1,13,0,3,0,0,-1,0,132312,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +16213,4,4,6,5,55,0,0,0,-1,0,132633,10,0,115,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16214,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16215,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16216,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16217,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16218,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16219,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16220,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16221,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16222,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16223,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16224,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16242,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16243,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16244,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16245,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16246,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16247,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16248,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16249,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16250,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16251,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16252,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16253,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16254,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16255,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16262,12,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16263,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16282,0,0,0,0,0,0,0,0,-1,0,134252,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16283,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16302,9,0,0,0,8,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16303,12,0,0,0,20,0,0,0,-1,0,132941,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16304,12,0,0,0,20,0,0,0,-1,0,132225,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16305,12,0,0,0,20,0,0,0,-1,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16306,12,0,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16307,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16308,13,0,0,0,0,0,0,0,-1,0,134520,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16309,4,0,0,2,50,0,0,0,-1,0,133444,24,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16310,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16311,12,0,0,0,0,0,0,0,-1,0,134709,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16312,12,0,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16313,12,0,0,0,0,0,0,0,-1,0,132597,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16314,12,0,0,0,0,0,0,0,-1,0,134068,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16316,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16317,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16318,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16319,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16320,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16321,9,0,0,0,4,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16322,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16323,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16324,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16325,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16326,9,0,0,0,14,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16327,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16328,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16329,9,0,0,0,44,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16330,9,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16331,9,0,0,0,12,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16332,12,0,0,0,0,0,0,0,-1,0,134707,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16333,12,0,0,0,0,0,0,0,-1,0,133728,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16335,4,0,5,2,58,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16338,15,0,0,0,40,0,0,0,-1,0,132261,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16339,15,0,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16341,4,1,7,16,45,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16342,4,1,7,16,58,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16343,15,0,0,0,40,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16344,15,0,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16345,2,7,1,13,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +16346,9,0,0,0,20,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16347,9,0,0,0,30,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16348,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16349,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16350,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16351,9,0,0,0,16,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16352,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16353,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16354,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16355,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16356,9,0,0,0,56,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16357,9,0,0,0,18,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16358,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16359,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16360,9,0,0,0,42,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16361,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16362,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16363,9,0,0,0,24,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16364,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16365,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16366,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16368,9,0,0,0,28,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16369,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16371,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16372,9,0,0,0,44,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16373,9,0,0,0,52,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16374,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16375,9,0,0,0,22,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16376,9,0,0,0,34,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16377,9,0,0,0,46,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16378,9,0,0,0,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16379,9,0,0,0,26,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16380,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16381,9,0,0,0,38,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16382,9,0,0,0,46,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16383,9,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16384,9,0,0,0,32,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16385,9,0,0,0,40,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16386,9,0,0,0,48,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16387,9,0,0,0,56,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16388,9,0,0,0,36,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16389,9,0,0,0,52,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16390,9,0,0,0,42,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16391,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16392,4,2,8,8,58,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16393,4,2,8,8,58,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16396,4,2,8,10,58,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16397,4,2,8,10,58,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16401,4,3,5,8,58,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16403,4,3,5,10,58,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16405,4,4,6,8,58,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16406,4,4,6,10,58,0,0,0,-1,0,132957,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16408,12,0,0,0,23,0,0,0,-1,0,136222,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16409,4,4,6,8,58,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16410,4,4,6,10,58,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16413,4,1,7,20,58,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16414,4,1,7,7,58,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16415,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16416,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16417,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16418,4,2,8,1,58,0,0,0,-1,0,133144,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16419,4,2,8,7,58,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16420,4,2,8,3,58,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16421,4,2,8,5,58,0,0,0,-1,0,132725,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16422,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16423,4,2,8,3,58,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16424,4,2,8,1,58,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16425,4,3,5,5,58,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16426,4,3,5,7,58,0,0,0,-1,0,134590,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16427,4,3,5,3,58,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16428,4,3,5,1,58,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16429,4,4,6,1,58,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16430,4,4,6,5,58,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16431,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16432,4,4,6,3,58,0,0,0,-1,0,135051,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16433,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16434,4,4,6,1,58,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16435,4,4,6,7,58,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16436,4,4,6,3,58,0,0,0,-1,0,135059,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16437,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16440,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16441,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16442,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16443,4,1,7,20,60,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16444,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16446,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16448,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16449,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16450,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16451,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16452,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16453,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16454,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16455,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16456,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16457,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16459,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16462,4,3,5,8,60,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16463,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16465,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16466,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16467,4,3,5,7,60,0,0,0,-1,0,134669,10,0,105,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16468,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16471,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16472,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16473,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16474,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16475,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16476,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16477,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16478,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16479,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16480,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16483,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16484,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16485,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16486,4,1,7,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16487,4,1,7,10,58,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16489,4,1,7,1,58,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16490,4,1,7,7,58,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16491,4,1,7,20,58,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16492,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16494,4,2,8,8,58,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16496,4,2,8,10,58,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16497,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16498,4,2,8,8,58,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16499,4,2,8,10,58,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16501,4,2,8,3,58,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16502,4,2,8,7,58,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16503,4,2,8,1,58,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16504,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16505,4,2,8,5,58,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16506,4,2,8,1,58,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16507,4,2,8,3,58,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16508,4,2,8,7,58,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16509,4,4,6,8,58,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16510,4,4,6,10,58,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16513,4,4,6,5,58,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16514,4,4,6,1,58,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16515,4,4,6,7,58,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16516,4,4,6,3,58,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16518,4,3,5,8,58,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16519,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16521,4,3,5,1,58,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16522,4,3,5,5,58,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16523,4,3,5,7,58,0,0,0,-1,0,134589,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16524,4,3,5,3,58,0,0,0,-1,0,135035,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16525,4,3,5,5,58,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16526,4,3,5,1,58,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16527,4,3,5,7,58,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16528,4,3,5,3,58,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16530,4,3,5,10,58,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16531,4,3,5,8,58,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16532,4,3,5,9,58,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16533,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16534,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16535,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16536,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16539,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16540,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16541,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16542,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16543,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16544,4,4,6,3,60,0,0,0,-1,0,135042,11,0,100,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16545,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16548,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16549,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16550,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16551,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16552,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16554,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16555,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16558,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16560,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16561,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16562,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16563,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16564,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16565,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16566,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16567,4,3,5,7,60,0,0,0,-1,0,134668,10,0,105,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16568,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16569,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16571,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16573,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16574,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16577,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16578,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16579,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16580,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16581,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16582,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +16583,15,1,2,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16602,12,0,0,0,0,0,0,0,-1,0,133447,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16603,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16604,4,1,7,20,0,0,0,0,-1,0,132677,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16605,4,1,7,20,0,0,0,0,-1,0,132645,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16606,4,1,7,20,0,0,0,0,-1,0,132645,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16607,4,1,7,20,0,0,0,0,-1,0,132660,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16608,4,2,8,6,0,0,0,0,-1,0,132515,7,0,20,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16622,2,2,2,15,0,0,0,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,126,0,0,0,0 +16623,4,0,3,2,0,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16642,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16643,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16644,12,0,0,0,0,0,0,0,-1,0,133677,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16645,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16646,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16647,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16648,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16649,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16650,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16651,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16652,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16653,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16654,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16655,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16656,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16658,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16659,4,2,8,6,0,0,0,0,-1,0,132498,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16660,4,6,1,14,0,4,0,0,-1,0,134962,9,0,80,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16661,4,1,7,16,0,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16662,12,0,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16663,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16664,4,3,5,9,49,0,1098,0,-1,0,132613,10,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16665,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16666,4,3,5,5,58,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16667,4,3,5,1,57,0,0,0,-1,0,133072,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16668,4,3,5,7,56,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16669,4,3,5,3,55,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16670,4,3,5,8,54,0,0,0,-1,0,132592,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16671,4,3,5,9,52,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16672,4,3,5,10,54,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16673,4,3,5,6,53,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16674,4,3,5,5,58,0,0,0,-1,0,132625,10,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16675,4,3,5,8,54,0,0,0,-1,0,132588,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16676,4,3,5,10,54,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16677,4,3,5,1,57,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16678,4,3,5,7,56,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16679,4,3,5,3,55,0,0,0,-1,0,135041,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16680,4,3,5,6,53,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16681,4,3,5,9,52,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16682,4,1,7,8,54,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16683,4,1,7,9,52,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16684,4,1,7,10,54,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16685,4,1,7,6,53,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16686,4,1,7,1,57,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16687,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16688,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16689,4,1,7,3,55,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16690,4,1,7,20,58,0,0,0,-1,0,132652,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16691,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16692,4,1,7,10,54,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16693,4,1,7,1,57,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16694,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16695,4,1,7,3,55,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16696,4,1,7,6,53,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16697,4,1,7,9,52,0,0,0,-1,0,132520,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16698,4,1,7,1,57,0,0,0,-1,0,133131,7,0,50,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16699,4,1,7,7,56,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16700,4,1,7,20,58,0,0,0,-1,0,132690,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16701,4,1,7,3,55,0,0,0,-1,0,133732,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16702,4,1,7,6,53,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16703,4,1,7,9,52,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16704,4,1,7,8,54,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16705,4,1,7,10,54,0,0,0,-1,0,132966,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16706,4,2,8,5,58,0,0,0,-1,0,132741,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16707,4,2,8,1,57,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16708,4,2,8,3,55,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16709,4,2,8,7,56,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16710,4,2,8,9,52,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16711,4,2,8,8,54,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16712,4,2,8,10,54,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16713,4,2,8,6,53,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16714,4,2,8,9,52,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16715,4,2,8,8,54,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16716,4,2,8,6,53,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16717,4,2,8,10,54,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16718,4,2,8,3,55,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16719,4,2,8,7,56,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16720,4,2,8,1,57,0,0,0,-1,0,133129,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16721,4,2,8,5,58,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16722,4,4,6,9,52,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16723,4,4,6,6,53,0,0,0,-1,0,132500,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16724,4,4,6,10,54,0,0,0,-1,0,132953,11,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16725,4,4,6,8,54,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16726,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16727,4,4,6,1,57,0,0,0,-1,0,133076,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16728,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16729,4,4,6,3,55,0,0,0,-1,0,135041,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16730,4,4,6,5,58,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16731,4,4,6,1,57,0,0,0,-1,0,133070,11,0,80,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16732,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16733,4,4,6,3,55,0,0,0,-1,0,135061,11,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16734,4,4,6,8,54,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16735,4,4,6,9,52,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16736,4,4,6,6,53,0,0,0,-1,0,132523,11,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16737,4,4,6,10,54,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16738,4,1,7,10,0,0,0,0,-1,0,132949,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16739,4,2,8,3,0,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16740,4,1,7,10,0,0,0,0,-1,0,132952,7,0,25,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16741,4,2,8,10,0,0,0,0,-1,0,132946,7,0,30,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16742,12,0,0,0,0,0,0,0,-1,0,132407,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16743,12,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16744,12,0,0,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16745,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16746,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16747,15,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16748,15,0,0,0,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16762,12,0,0,0,0,0,0,0,-1,0,134462,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16763,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16764,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16765,12,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16766,0,5,0,0,35,0,0,0,-1,0,132804,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16767,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16768,4,0,3,23,0,7,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16769,2,4,2,13,47,3,0,0,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +16782,12,0,0,0,21,0,0,0,-1,0,136222,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16783,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16784,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16785,12,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16786,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16787,12,0,0,2,0,0,0,0,-1,0,133608,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16788,4,6,1,14,0,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16789,2,19,2,26,0,0,0,0,-1,0,135145,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,58,0,0,0,0 +16790,15,0,0,0,17,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16791,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16792,2,4,2,21,32,3,5242,0,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +16793,4,3,5,3,0,0,0,0,-1,0,135047,10,0,60,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16794,4,3,5,9,0,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16795,4,1,7,1,60,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,94,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16796,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16797,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,87,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16798,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,116,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16799,4,1,7,9,60,0,0,0,-1,0,132518,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16800,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,80,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16801,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,72,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16802,4,1,7,6,60,0,0,0,-1,0,132519,7,0,35,0,0,0,0,0,0,65,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16803,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,80,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16804,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16805,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,72,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16806,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,65,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16807,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,87,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16808,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,94,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16809,4,1,7,20,60,0,0,0,-1,0,132650,7,0,100,0,0,0,0,0,0,116,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16810,4,1,7,7,60,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,101,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16811,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,80,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16812,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,72,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16813,4,1,7,1,60,0,0,0,-1,0,133136,7,0,60,0,0,0,0,0,0,94,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16814,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,101,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16815,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,116,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16816,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,87,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16817,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,65,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16818,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,74,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16819,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16820,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,228,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16821,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,186,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16822,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,200,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16823,4,2,8,3,60,0,0,0,-1,0,135056,7,0,70,0,0,0,0,0,0,171,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16824,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,157,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16825,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16826,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,143,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16827,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,128,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16828,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,128,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16829,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,157,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16830,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16831,4,2,8,10,60,0,0,0,-1,0,132941,7,0,40,0,0,0,0,0,0,143,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16832,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,192,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16833,4,2,8,20,60,0,0,0,-1,0,132647,7,0,120,0,0,0,0,0,0,228,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16834,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,186,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16835,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,200,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16836,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,171,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16837,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,331,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16838,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,271,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16839,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,301,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16840,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16841,4,3,5,20,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,482,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16842,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,392,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16843,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,422,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16844,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,362,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16845,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,482,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16846,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,392,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16847,4,3,5,7,60,0,0,0,-1,0,134655,10,0,105,0,0,0,0,0,0,422,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16848,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,362,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16849,4,3,5,8,60,0,0,0,-1,0,132556,10,0,70,0,0,0,0,0,0,331,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16850,4,3,5,9,60,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16851,4,3,5,6,60,0,0,0,-1,0,132517,10,0,50,0,0,0,0,0,0,271,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16852,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,301,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16853,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,855,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16854,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,695,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16855,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,748,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16856,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,641,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16857,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16858,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,481,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16859,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,588,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16860,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,534,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16861,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16862,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,588,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16863,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,534,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16864,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,481,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16865,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,855,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16866,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,695,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16867,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,748,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16868,4,4,6,3,60,0,0,0,-1,0,135046,11,0,100,0,0,0,0,0,0,641,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0 +16869,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16870,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16871,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16872,12,0,0,0,0,0,0,0,-1,0,134153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16873,4,2,8,10,0,0,0,0,-1,0,132959,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16882,15,0,1,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16883,15,0,1,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16884,15,0,1,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16885,15,0,1,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16886,2,7,1,13,0,3,0,0,-1,0,135343,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +16887,4,0,1,23,0,7,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16888,12,0,0,0,0,0,0,0,-1,0,133444,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16889,2,10,2,17,0,2,0,0,-1,0,135157,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,50,0,0,0,0 +16890,2,7,1,13,0,3,0,0,-1,0,135343,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,35,0,0,0,0 +16891,2,7,1,13,0,3,0,0,-1,0,135324,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +16892,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16893,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16894,2,10,2,17,0,2,0,0,-1,0,135469,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,51,0,0,0,0 +16895,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16896,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16897,4,2,8,5,60,0,0,0,-1,0,132638,7,0,120,0,0,0,0,0,0,257,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16898,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,176,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16899,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,160,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16900,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,208,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16901,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,224,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16902,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,192,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16903,4,2,8,6,60,0,0,0,-1,0,132495,7,0,40,0,0,0,0,0,0,144,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16904,4,2,8,9,60,0,0,0,-1,0,132602,7,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16905,4,2,8,5,60,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,257,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16906,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,176,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16907,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,160,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16908,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,208,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16909,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,224,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16910,4,2,8,6,60,0,0,0,-1,0,132512,7,0,40,0,0,0,0,0,0,144,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16911,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16912,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,91,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16913,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,83,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16914,4,1,7,1,60,0,0,0,-1,0,133172,7,0,60,0,0,0,0,0,0,107,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16915,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,116,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16916,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,132,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16917,4,1,7,3,60,0,0,0,-1,0,135063,7,0,60,0,0,0,0,0,0,99,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16918,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16919,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,91,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16920,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,83,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16921,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,107,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +16922,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,116,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0 +16923,4,1,7,20,60,0,0,0,-1,0,132644,7,0,100,0,0,0,0,0,0,132,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16924,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,99,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16925,4,1,7,6,60,0,0,0,-1,0,132511,7,0,35,0,0,0,0,0,0,74,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16926,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16927,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,91,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16928,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,83,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16929,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,107,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16930,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,116,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16931,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,132,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16932,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,99,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16933,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,74,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16934,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16935,4,3,5,9,60,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16936,4,3,5,6,60,0,0,0,-1,0,132517,10,0,50,0,0,0,0,0,0,310,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16937,4,3,5,3,60,0,0,0,-1,0,135041,10,0,85,0,0,0,0,0,0,413,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16938,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,482,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16939,4,3,5,1,60,0,0,0,-1,0,133073,10,0,85,0,0,0,0,0,0,447,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16940,4,3,5,10,60,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,344,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16941,4,3,5,8,60,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,379,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16942,4,3,5,5,60,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,551,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16943,4,3,5,9,60,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16944,4,3,5,6,60,0,0,0,-1,0,132503,10,0,50,0,0,0,0,0,0,310,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16945,4,3,5,3,60,0,0,0,-1,0,135064,10,0,85,0,0,0,0,0,0,413,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16946,4,3,5,7,60,0,0,0,-1,0,134583,10,0,105,0,0,0,0,0,0,482,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16947,4,3,5,1,60,0,0,0,-1,0,133171,10,0,85,0,0,0,0,0,0,447,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16948,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,344,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16949,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,379,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16950,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,551,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16951,4,4,6,9,60,0,0,0,-1,0,132617,11,0,55,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16952,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,550,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16953,4,4,6,3,60,0,0,0,-1,0,135068,11,0,100,0,0,0,0,0,0,733,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16954,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,856,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16955,4,4,6,1,60,0,0,0,-1,0,133176,11,0,100,0,0,0,0,0,0,795,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16956,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,611,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16957,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,672,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16958,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,978,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16959,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16960,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,550,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16961,4,4,6,3,60,0,0,0,-1,0,135065,11,0,100,0,0,0,0,0,0,733,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16962,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,856,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 +16963,4,4,6,1,60,0,0,0,-1,0,133173,11,0,100,0,0,0,0,0,0,795,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +16964,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,611,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +16965,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,672,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16966,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,978,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +16967,15,0,0,23,0,0,0,0,-1,0,134300,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16968,12,0,0,0,0,0,0,0,-1,0,133918,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16969,12,0,0,0,0,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16970,12,0,0,0,0,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16971,0,5,0,0,40,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16972,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16973,12,0,0,0,0,0,0,0,-1,0,134805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16974,12,0,3,0,0,0,0,0,-1,0,134868,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16975,4,1,7,6,0,0,0,0,-1,0,132491,7,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16976,12,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16977,4,2,8,8,0,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16978,4,3,5,10,0,0,0,0,-1,0,132949,10,0,40,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16979,4,1,7,10,57,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,68,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16980,4,1,7,3,56,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,81,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16981,4,1,7,9,0,0,0,0,-1,0,132609,7,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16982,4,2,8,8,54,0,0,0,-1,0,132541,7,0,60,0,0,0,0,0,0,144,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16983,4,2,8,1,55,0,0,0,-1,0,133076,7,0,70,0,0,0,0,0,0,171,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16984,4,3,8,8,56,0,0,0,-1,0,132590,7,0,70,0,0,0,0,0,0,308,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16985,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16986,4,3,5,10,0,0,0,0,-1,0,132943,10,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16987,4,2,8,6,0,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16988,4,3,5,3,57,0,0,0,-1,0,135054,10,0,85,0,0,0,0,0,0,341,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16989,4,3,6,6,54,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,245,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16990,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16991,12,0,0,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16992,2,3,1,26,0,0,0,0,-1,0,135617,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +16993,2,19,2,26,0,0,0,0,-1,0,135465,21,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,132,0,0,0,0 +16994,4,2,8,10,0,0,0,0,-1,0,132936,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16995,4,2,8,3,0,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16996,2,2,2,15,0,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +16997,2,19,2,26,0,0,0,0,-1,0,135467,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +16998,4,6,1,14,0,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16999,4,0,0,11,54,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17000,4,0,0,11,0,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0 +17001,4,0,0,11,0,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17002,2,0,1,13,0,3,0,0,-1,0,135575,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +17003,2,4,2,13,0,3,0,0,-1,0,133731,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +17004,2,10,2,17,0,2,0,0,-1,0,135147,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +17005,4,2,8,5,0,0,0,0,-1,0,135017,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17006,4,3,5,7,0,0,0,0,-1,0,134583,10,0,70,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17007,4,3,5,10,46,0,0,0,-1,0,132949,10,0,50,0,0,0,0,0,0,238,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17008,15,0,0,0,28,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17009,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17010,7,11,0,0,0,0,0,0,-1,0,135812,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17011,7,11,0,0,0,0,0,0,-1,0,136025,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17012,7,6,8,0,0,0,0,0,-1,0,132386,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17013,4,4,6,7,55,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,683,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17014,4,4,6,9,54,0,0,0,-1,0,132606,11,0,55,0,0,0,0,0,0,336,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17015,2,7,1,21,60,3,0,0,-1,0,135358,8,0,90,0,0,0,0,0,0,0,0,6,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +17016,2,0,1,21,60,3,0,0,-1,0,132403,8,0,90,0,0,0,0,0,0,0,0,6,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +17017,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17018,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17019,15,1,2,0,0,0,0,0,-1,0,133849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17020,15,1,2,0,0,0,0,0,-1,0,133848,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17021,15,1,2,0,0,0,0,0,-1,0,133749,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17022,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17023,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17024,15,1,2,0,0,0,0,0,-1,0,134413,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17025,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17026,15,1,2,0,0,0,0,0,-1,0,134412,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17027,15,1,2,0,0,0,0,0,-1,0,133750,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17028,15,1,2,0,0,0,0,0,-1,0,133752,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17029,15,1,2,0,0,0,0,0,-1,0,133751,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17030,5,0,2,0,0,0,0,0,-1,0,133439,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17031,15,1,2,0,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17032,15,1,2,0,0,0,0,0,-1,0,134421,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17033,15,1,2,0,0,0,0,0,-1,0,135259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17034,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17035,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17036,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17037,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17038,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17039,2,4,2,13,0,3,0,0,-1,0,133728,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +17040,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17041,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17042,2,3,1,26,0,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,49,0,0,0,0 +17043,4,1,7,20,0,0,0,0,-1,0,132647,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17044,4,0,5,2,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17045,4,0,5,11,0,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17046,2,0,1,13,0,3,0,0,-1,0,132417,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,46,0,0,0,0 +17047,4,1,7,3,0,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17048,0,0,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17049,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17050,4,1,7,20,47,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,75,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +17051,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17052,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17053,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17054,2,7,1,13,45,3,0,0,-1,0,135351,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +17055,2,4,2,13,45,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17056,15,1,2,0,0,0,0,0,-1,0,132917,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17057,15,1,2,0,0,0,0,0,-1,0,134310,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17058,15,1,2,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17059,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17060,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17061,4,1,7,16,53,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,41,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +17062,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17063,4,0,3,11,60,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17064,4,0,2,12,60,0,0,0,-1,0,134317,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17065,4,0,0,2,60,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17066,4,6,1,14,60,4,0,0,-1,0,134956,9,0,120,0,0,0,0,0,0,2918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17067,4,0,7,23,60,7,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17068,2,0,1,13,60,3,0,0,-1,0,132400,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +17069,2,2,2,15,60,0,0,0,-1,0,135496,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,158,0,0,0,0 +17070,2,15,1,21,60,3,0,0,-1,0,135642,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +17071,2,15,1,13,60,3,0,0,-1,0,135654,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,119,0,0,0,0 +17072,2,3,1,26,60,0,0,0,-1,0,135618,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,167,0,0,0,0 +17073,2,5,2,17,60,1,0,0,-1,0,133041,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +17074,2,6,1,17,58,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +17075,2,7,1,13,60,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +17076,2,8,1,17,60,1,0,0,-1,0,135302,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,310,0,0,0,0 +17077,2,19,2,26,58,0,0,0,-1,0,135150,21,0,75,0,2,0,0,0,0,0,0,10,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +17078,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,63,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0 +17082,4,0,2,12,60,0,0,0,-1,0,134337,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17102,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,65,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +17103,2,7,1,21,60,3,0,0,-1,0,135349,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +17104,2,1,1,17,60,1,0,0,-1,0,132400,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +17105,2,4,2,21,60,3,0,0,-1,0,133042,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +17106,4,6,1,14,60,4,0,0,-1,0,134954,9,0,120,0,0,0,0,0,0,3244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17107,4,1,7,16,60,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,64,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0 +17108,4,0,3,11,60,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17109,4,0,0,2,60,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17110,4,0,3,11,60,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +17111,4,0,0,2,60,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17112,2,4,2,13,60,3,0,0,-1,0,133042,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,175,0,0,0,0 +17113,2,10,2,17,60,2,0,0,-1,0,135225,13,0,120,0,0,0,0,0,0,0,0,5,5,5,5,5,168,0,0,0,0,252,0,0,0,0 +17114,12,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17115,12,0,0,0,0,0,0,0,-1,0,133786,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17116,12,0,0,0,0,0,0,0,-1,0,133786,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17117,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17118,12,0,0,0,0,0,0,0,-1,0,132761,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17119,0,5,0,0,5,0,0,0,-1,0,134024,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17122,12,0,0,0,0,0,0,0,-1,0,132483,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17123,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17124,12,0,0,0,0,0,0,0,-1,0,133598,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17125,12,0,0,0,0,0,0,0,-1,0,133434,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17126,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17142,2,15,0,13,60,1,0,0,-1,0,135271,8,0,95,0,0,5,0,0,0,0,0,0,0,0,0,0,52,10,0,0,0,61,15,0,0,0 +17162,0,8,0,0,1,0,0,0,-1,0,132381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17163,0,8,0,0,1,0,0,0,-1,0,132387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17182,2,5,1,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,223,0,0,0,0,372,0,0,0,0 +17183,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17184,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17185,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17186,4,6,1,14,3,4,0,0,-1,0,134955,9,0,40,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17187,4,6,1,14,9,4,0,0,-1,0,134949,9,0,50,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17188,4,6,1,14,14,4,0,0,-1,0,134956,9,0,65,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17189,4,6,1,14,29,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17190,4,6,1,14,42,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17191,12,0,0,0,0,0,0,0,-1,0,135153,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17192,4,6,1,14,19,4,0,0,-1,0,134956,9,0,75,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17193,2,5,2,17,60,1,0,0,-1,0,133066,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,295,0,0,0,0 +17194,15,3,0,0,0,0,0,0,-1,0,133644,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17195,15,0,0,0,0,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17196,0,5,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17197,0,5,0,0,1,0,0,0,-1,0,134018,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17198,0,5,0,0,1,0,0,0,-1,0,132791,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17199,0,5,0,0,1,0,0,0,-1,0,132792,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17200,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17201,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17202,15,3,0,0,0,0,0,0,-1,0,132387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17203,7,7,2,0,0,0,0,0,-1,0,135824,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17204,7,11,2,0,0,0,0,0,-1,0,134124,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17222,0,5,0,0,35,0,0,0,-1,0,134022,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17223,2,6,1,17,58,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,221,0,0,0,0 +17224,12,0,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17242,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17262,13,0,0,0,0,0,0,0,-1,0,134240,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17282,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +17283,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +17302,0,8,0,0,0,0,0,0,-1,0,133204,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17303,0,8,0,0,0,0,0,0,-1,0,133207,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17304,0,8,0,0,0,0,0,0,-1,0,133205,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17305,0,8,0,0,0,0,0,0,-1,0,133202,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17306,12,0,0,0,0,0,0,0,-1,0,134830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17307,0,8,0,0,0,0,0,0,-1,0,133206,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17308,0,8,0,0,0,0,0,0,-1,0,133203,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17309,12,0,0,0,0,0,0,0,-1,0,132606,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17310,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17322,12,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17323,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17324,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17325,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17326,12,0,0,0,0,0,0,0,-1,0,134008,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17327,12,0,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17328,12,0,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17329,12,0,0,0,0,0,0,0,-1,0,132960,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17330,12,0,0,0,0,0,0,0,-1,0,132937,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17331,12,0,0,0,0,0,0,0,-1,0,135817,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17332,12,0,0,0,0,0,0,0,-1,0,132953,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17333,12,0,0,0,0,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17342,2,7,1,22,1,3,7441,0,-1,0,135274,8,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17343,4,1,6,5,1,0,7441,0,-1,0,132633,10,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17344,0,5,0,0,1,0,0,0,-1,0,134017,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17345,12,0,0,0,0,0,0,0,-1,0,134437,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17346,12,0,0,0,0,0,0,0,-1,0,134967,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17347,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17348,0,1,0,0,45,0,0,0,-1,0,134818,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17349,0,1,0,0,35,0,0,0,-1,0,134819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17351,0,1,3,0,45,0,0,0,-1,0,134860,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17352,0,1,3,0,35,0,0,0,-1,0,134861,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17353,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17354,12,0,0,0,0,0,0,0,-1,0,136206,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17355,12,0,0,0,0,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17362,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17363,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17364,12,0,0,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17382,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17383,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +17384,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17402,0,5,0,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17403,0,5,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17404,0,5,7,0,5,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17405,15,3,3,0,25,0,0,0,-1,0,132819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17406,0,5,0,0,5,0,0,0,-1,0,133945,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17407,0,5,0,0,25,0,0,0,-1,0,133952,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17408,0,5,0,0,35,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17409,12,0,0,0,54,0,0,0,-1,0,135841,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17410,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17411,12,0,0,0,0,0,0,0,-1,0,134064,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17412,9,0,0,0,36,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17413,9,0,0,0,48,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17414,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17422,12,0,0,0,0,0,0,0,-1,0,135050,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17423,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17442,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17462,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +17463,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +17482,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17502,12,0,0,0,0,0,0,0,-1,0,133439,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17503,12,0,0,0,0,0,0,0,-1,0,133437,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17504,12,0,0,0,0,0,0,0,-1,0,133445,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17505,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17506,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17507,12,0,0,0,0,0,0,0,-1,0,135148,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17508,4,6,1,14,0,4,0,0,-1,0,134948,9,0,85,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17522,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17523,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17542,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17562,4,1,7,8,58,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17564,4,1,7,10,58,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17566,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17567,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17568,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17569,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17570,4,1,7,1,58,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17571,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17572,4,1,7,20,58,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17573,4,1,7,3,58,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17576,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17577,4,1,7,10,58,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17578,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17579,4,1,7,7,60,0,0,0,-1,0,134603,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17580,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17581,4,1,7,20,60,0,0,0,-1,0,132650,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17583,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17584,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17586,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17588,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17590,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17591,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17592,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17593,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17594,4,1,7,8,58,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17596,4,1,7,10,58,0,0,0,-1,0,132964,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17598,4,1,7,1,58,0,0,0,-1,0,133126,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17599,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17600,4,1,7,20,58,0,0,0,-1,0,132652,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17601,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17602,4,1,7,1,60,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17603,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17604,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17605,4,1,7,20,60,0,0,0,-1,0,132643,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17607,4,1,7,8,60,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17608,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17610,4,1,7,1,58,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17611,4,1,7,7,58,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17612,4,1,7,20,58,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17613,4,1,7,3,58,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17616,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17617,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17618,4,1,7,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17620,4,1,7,10,60,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17622,4,1,7,3,60,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17623,4,1,7,1,60,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17624,4,1,7,20,60,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17625,4,1,7,7,60,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17626,12,0,0,0,0,0,0,0,-1,0,133565,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17642,12,0,0,0,0,0,0,0,-1,0,134354,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17643,12,0,0,0,0,0,0,0,-1,0,134354,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17662,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17682,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17683,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17684,12,0,1,0,0,0,0,0,-1,0,133440,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17685,15,0,0,0,0,0,0,0,-1,0,133203,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17686,2,2,2,15,0,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +17687,2,3,1,26,0,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +17688,4,4,6,8,0,0,0,0,-1,0,132582,11,0,55,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17689,12,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17690,4,0,0,12,0,0,0,0,-1,0,133283,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17691,4,0,0,12,0,0,0,0,-1,0,133429,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17692,4,0,0,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17693,12,0,3,0,0,0,0,0,-1,0,134865,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17694,4,0,0,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17695,4,1,7,3,0,0,0,0,-1,0,135040,7,0,40,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17696,12,0,3,0,0,0,0,0,-1,0,134800,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17702,12,0,0,0,0,0,0,0,-1,0,135156,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17703,12,0,0,0,0,0,0,0,-1,0,133441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17704,2,0,1,21,33,3,0,0,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,56,0,0,0,0 +17705,2,7,1,13,0,3,0,0,-1,0,135346,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +17706,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17707,4,0,3,2,48,0,0,0,-1,0,135227,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17708,0,2,3,0,28,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17709,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17710,2,15,1,13,48,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +17711,4,4,6,7,48,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17712,15,0,0,0,0,0,0,0,-1,0,135850,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17713,4,0,5,11,48,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17714,4,3,5,9,48,0,0,0,-1,0,132613,10,0,40,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17715,4,1,7,1,48,0,0,0,-1,0,132767,14,0,50,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17716,7,3,8,0,0,0,0,0,-1,0,135863,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17717,2,3,1,26,48,0,0,0,-1,0,135614,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +17718,4,6,1,14,48,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,1835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17719,2,7,1,13,48,3,0,0,-1,0,135312,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +17720,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17721,4,2,8,10,33,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17722,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17723,4,0,7,4,0,0,0,0,-1,0,135024,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17724,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17725,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17726,15,0,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17727,15,0,0,0,0,0,0,0,-1,0,134140,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17728,4,2,8,8,48,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17730,2,1,1,17,48,1,0,0,-1,0,132395,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +17731,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17732,4,1,7,3,48,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17733,2,4,2,13,48,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17734,4,4,6,1,48,0,0,0,-1,0,133122,11,0,80,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17735,15,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17736,4,3,5,10,48,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17737,4,0,3,23,48,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17738,2,13,1,22,46,7,0,0,-1,0,132369,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +17739,4,1,7,16,46,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17740,4,2,8,1,46,0,0,0,-1,0,133101,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17741,4,1,7,20,46,0,0,0,-1,0,132656,7,0,80,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17742,4,2,8,5,46,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17743,2,10,2,17,0,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,209,0,0,0,0 +17744,4,0,5,12,46,0,0,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +17745,2,19,2,26,46,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,104,0,0,0,0 +17746,4,4,6,9,46,0,0,0,-1,0,132605,11,0,45,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17747,0,8,0,0,40,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17748,4,1,7,8,46,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17749,4,2,8,3,46,0,0,0,-1,0,135037,7,0,60,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17750,4,1,7,6,46,0,0,0,-1,0,132514,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17751,4,2,8,7,46,0,0,0,-1,0,134585,7,0,75,0,0,0,0,0,0,130,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +17752,2,15,1,13,44,3,0,0,-1,0,135645,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +17753,2,2,2,15,0,0,0,0,-1,0,135491,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +17754,4,3,5,7,44,0,0,0,-1,0,134706,10,0,90,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17755,4,1,7,6,44,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17756,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17757,12,0,0,0,0,0,0,0,-1,0,133277,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17758,12,0,0,0,0,0,0,0,-1,0,133279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17759,4,0,4,12,0,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17760,12,0,0,0,0,0,0,0,-1,0,134199,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17761,12,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17762,12,0,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17763,12,0,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17764,12,0,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17765,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17766,2,5,2,17,48,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,190,0,0,0,0 +17767,4,3,5,1,46,0,0,0,-1,0,133119,10,0,70,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17768,4,0,5,11,0,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17769,4,3,8,3,0,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17770,4,4,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17771,7,7,2,0,0,0,0,0,-1,0,133235,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17772,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17773,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17774,4,0,5,12,0,0,0,0,-1,0,133441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17775,4,1,7,20,0,0,0,0,-1,0,132690,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17776,4,2,8,1,0,0,0,0,-1,0,133137,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17777,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17778,4,2,8,6,0,0,0,0,-1,0,132514,7,0,30,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17779,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17780,2,15,1,13,49,3,0,0,-1,0,135279,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +17781,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17782,4,0,0,2,60,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0 +17783,4,0,0,2,60,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0 +17802,2,7,1,21,100,1,0,0,-1,0,135349,9,0,125,0,0,3,0,0,0,0,0,8,9,0,0,0,82,16,0,0,0,153,30,0,0,0 +17822,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17823,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17824,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17825,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17826,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17827,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17828,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17829,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17830,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17831,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17832,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17833,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17834,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17835,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17836,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17837,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17838,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17839,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17840,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17841,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17842,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17843,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17844,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17845,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17846,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17847,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17848,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17849,12,0,0,0,0,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17850,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17851,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17852,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17853,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17854,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17855,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17856,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17857,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17858,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17859,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17860,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17861,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17862,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17882,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17883,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17884,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17885,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17886,4,0,3,11,1,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17887,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17888,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17889,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17890,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17891,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17892,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17893,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17894,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17895,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17896,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17897,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17898,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17899,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17900,4,0,0,12,0,0,0,0,-1,0,133429,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17901,4,0,0,12,0,0,0,0,-1,0,133430,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17902,4,0,0,12,0,0,0,0,-1,0,133431,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0 +17903,4,0,0,12,0,0,0,0,-1,0,133432,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17904,4,0,0,12,0,0,0,0,-1,0,133433,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17905,4,0,0,12,0,0,0,0,-1,0,133283,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17906,4,0,0,12,0,0,0,0,-1,0,133284,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +17907,4,0,0,12,0,0,0,0,-1,0,133285,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0 +17908,4,0,0,12,0,0,0,0,-1,0,133286,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17909,4,0,0,12,0,0,0,0,-1,0,133287,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 +17910,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17911,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17922,4,2,8,5,5,0,0,0,-1,0,132715,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17942,2,5,2,17,1,1,0,0,-1,0,133477,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +17943,2,4,2,13,48,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +17962,15,0,3,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17963,15,0,3,0,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17964,15,0,3,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17965,15,0,3,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17966,1,0,8,18,0,0,0,0,-1,0,133655,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17967,7,6,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17968,7,11,0,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17969,15,0,3,0,0,0,0,0,-1,0,133643,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17982,4,0,3,11,60,0,3474,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18002,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18022,4,0,0,11,0,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18023,4,0,3,2,54,0,0,0,-1,0,134128,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18042,6,2,2,24,52,0,0,0,-1,0,132382,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,0,0,0 +18043,4,2,8,8,52,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18044,2,4,2,13,52,7,0,0,-1,0,132791,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +18045,0,5,0,0,40,0,0,0,-1,0,134003,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18046,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18047,4,3,5,8,57,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18048,2,4,2,21,55,3,0,0,-1,0,133043,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +18062,2,5,2,17,1,1,0,0,-1,0,133041,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18063,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18082,2,10,2,17,42,2,0,0,-1,0,135147,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +18083,4,1,7,10,42,0,0,0,-1,0,132943,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18102,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18103,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18104,4,3,5,6,58,0,0,0,-1,0,132492,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18105,0,8,0,0,0,0,0,0,-1,0,133854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18106,0,8,0,0,0,0,0,0,-1,0,133857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18122,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18123,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18142,12,0,0,0,1,0,0,0,-1,0,134162,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18143,12,0,0,0,1,0,0,0,-1,0,134323,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18144,12,0,0,0,1,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18145,12,0,0,0,1,0,0,0,-1,0,134060,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18146,12,0,0,0,1,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18147,12,0,0,0,1,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18148,12,0,0,0,1,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18149,12,0,0,0,0,0,0,0,-1,0,134418,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18150,12,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18151,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18152,12,0,0,0,0,0,0,0,-1,0,134798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18153,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18154,0,8,0,0,0,0,0,0,-1,0,135724,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18155,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18156,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18157,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18158,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18159,12,0,0,0,0,0,0,0,-1,0,133367,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18160,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18161,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18162,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18163,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18164,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18165,4,0,7,8,0,0,0,0,-1,0,132538,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18166,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18167,2,7,1,13,1,3,0,0,-1,0,135316,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18168,4,6,0,14,60,4,0,0,-1,0,135741,9,0,120,0,0,0,0,0,0,2836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18169,12,0,0,0,0,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18170,12,0,0,0,0,0,0,0,-1,0,135849,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18171,12,0,0,0,0,0,0,0,-1,0,135987,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18172,12,0,0,0,0,0,0,0,-1,0,136074,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18173,12,0,0,0,0,0,0,0,-1,0,136185,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18182,12,0,0,0,0,0,0,0,-1,0,134139,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18202,2,13,1,22,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +18203,2,13,1,21,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +18204,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18205,4,0,0,2,60,0,0,0,-1,0,132501,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18206,12,0,0,0,0,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18207,12,0,0,0,0,0,0,0,-1,0,133725,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18208,4,1,7,16,60,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18209,0,0,0,0,0,0,0,0,-1,0,133001,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18222,15,0,0,0,0,0,0,0,-1,0,134196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18223,15,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18224,15,0,0,0,0,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18225,15,0,8,0,0,0,0,0,-1,0,132536,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18226,15,0,2,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18227,15,0,8,0,0,0,0,0,-1,0,132999,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18228,15,0,3,0,0,0,0,0,-1,0,134946,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18229,15,0,0,0,0,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18230,15,0,1,0,0,0,0,0,-1,0,134335,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18231,15,0,7,4,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18232,7,3,8,0,0,0,0,0,-1,0,132836,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18233,15,0,7,0,0,0,0,0,-1,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18234,15,0,2,0,0,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18235,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18236,15,0,0,0,0,0,0,0,-1,0,133854,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18237,15,0,0,0,0,0,0,0,-1,0,133726,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18238,4,2,8,10,35,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18239,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18240,7,11,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18241,15,5,0,0,55,0,0,0,-1,0,132251,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18242,15,5,0,0,55,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18243,15,5,0,0,55,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18244,15,5,0,0,55,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18245,15,5,0,0,55,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18246,15,5,0,0,55,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18247,15,5,0,0,55,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18248,15,5,0,0,55,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18249,13,0,0,0,0,0,0,0,-1,0,134244,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18250,15,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18251,0,6,8,0,50,0,0,0,-1,0,133600,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18252,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18253,0,1,3,0,50,0,0,0,-1,0,134827,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18254,0,5,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18255,0,5,0,0,45,0,0,0,-1,0,134011,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18256,7,11,3,0,0,0,0,0,-1,0,132793,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18257,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18258,12,0,0,0,55,0,0,0,-1,0,132636,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18259,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18260,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18261,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18262,0,8,0,0,50,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18263,4,1,7,9,60,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,49,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18264,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18265,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18266,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18267,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18268,13,0,0,0,0,0,0,0,-1,0,134238,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18269,0,0,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18282,2,3,1,26,60,0,0,0,-1,0,135614,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,148,0,0,0,0 +18283,7,3,8,0,50,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18284,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18285,15,0,3,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18286,15,0,3,0,0,0,0,0,-1,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18287,0,5,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18288,0,5,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18289,4,0,2,2,51,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18290,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18291,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18292,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18293,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18294,0,2,3,0,35,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18295,4,1,7,8,50,0,3325,0,-1,0,132540,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18296,4,3,5,9,51,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18297,0,0,0,0,55,0,0,0,-1,0,132877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18298,4,2,8,7,51,0,0,0,-1,0,134591,7,0,75,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18299,12,0,0,0,0,0,0,0,-1,0,134808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18300,0,5,7,0,55,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18301,2,19,2,26,53,0,0,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,113,0,0,0,0 +18302,4,0,5,11,53,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18303,4,6,0,14,53,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18304,4,3,5,5,53,0,0,0,-1,0,132742,11,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18305,4,4,6,7,53,0,0,0,-1,0,134584,9,0,85,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18306,4,1,7,10,53,0,0,0,-1,0,132956,0,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18307,4,1,7,8,53,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18308,4,2,8,1,53,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18309,4,2,8,10,54,0,0,0,-1,0,132954,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18310,2,7,1,13,54,3,0,0,-1,0,135316,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +18311,2,10,2,17,53,2,0,0,-1,0,135151,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,167,0,0,0,0 +18312,4,4,6,5,54,0,0,0,-1,0,132746,9,0,135,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18313,4,4,6,1,53,0,0,0,-1,0,133121,9,0,80,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18314,4,0,5,11,54,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18315,4,0,5,11,54,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18316,4,0,3,23,53,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18317,4,0,3,2,53,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18318,4,3,5,8,54,0,0,0,-1,0,132535,11,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18319,4,3,5,1,53,0,3441,0,-1,0,133140,11,0,70,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18320,4,3,5,3,53,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18321,2,4,2,21,54,3,0,0,-1,0,133488,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,107,0,0,0,0 +18322,4,2,8,8,53,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18323,2,2,2,15,53,0,0,0,-1,0,135491,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +18324,2,1,6,17,53,1,0,0,-1,0,132408,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +18325,4,2,8,1,53,0,0,0,-1,0,133133,7,0,60,0,0,0,0,0,0,134,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18326,4,4,6,10,54,0,0,0,-1,0,132965,8,0,45,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18327,4,1,8,6,54,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18328,4,1,7,16,54,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,42,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0 +18329,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18330,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18331,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18332,9,0,0,0,50,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18333,9,0,0,0,50,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18334,9,0,0,0,50,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18335,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18336,12,0,0,0,0,0,0,0,-1,0,132956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18337,4,1,7,9,54,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18338,2,19,2,26,54,0,0,0,-1,0,135464,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +18339,4,1,7,16,54,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,38,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0 +18340,4,0,3,2,54,0,0,0,-1,0,133447,14,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +18341,4,1,7,6,54,0,0,0,-1,0,132521,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0 +18342,4,6,6,14,54,0,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0 +18343,4,0,3,11,59,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 +18344,4,2,8,10,54,0,0,0,-1,0,132957,7,0,35,0,0,0,0,0,0,105,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0 +18345,4,0,3,11,55,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18346,4,1,7,7,55,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18347,2,0,1,13,56,3,0,0,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +18348,2,7,1,13,60,3,0,0,-1,0,135271,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +18349,4,3,5,10,56,0,0,0,-1,0,132946,11,0,35,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18350,4,1,7,16,56,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18351,4,4,6,9,56,0,0,0,-1,0,132617,9,0,40,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18352,4,6,2,14,56,4,0,0,-1,0,134964,13,0,85,0,0,0,0,0,0,1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18353,2,10,2,17,56,2,0,0,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,171,0,0,0,0 +18354,4,0,3,12,55,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18355,4,0,3,12,55,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18356,12,0,0,0,54,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18357,12,0,0,0,54,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18358,12,0,0,0,54,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18359,12,0,0,0,54,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18360,12,0,0,0,54,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18361,12,0,0,0,54,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18362,12,0,0,0,54,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18363,12,0,0,0,54,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18364,12,0,0,0,54,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18365,15,0,0,0,0,0,0,0,-1,0,133735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18366,4,4,6,10,0,0,0,0,-1,0,132943,9,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18367,4,3,5,10,0,0,0,0,-1,0,132943,11,0,40,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18368,4,2,8,10,0,0,0,0,-1,0,132935,7,0,35,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18369,4,1,7,10,0,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18370,4,0,3,12,57,0,0,0,-1,0,134458,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18371,4,0,3,12,56,0,0,0,-1,0,132489,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18372,2,15,1,13,57,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,74,0,0,0,0 +18373,4,2,8,5,57,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18374,4,2,8,3,57,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,131,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18375,4,2,8,9,57,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18376,2,4,1,13,57,3,0,0,-1,0,133482,8,0,90,0,0,0,0,0,0,120,0,0,0,0,0,0,62,0,0,0,0,117,0,0,0,0 +18377,4,2,8,10,57,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18378,4,3,5,7,57,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18379,4,3,5,8,57,0,0,0,-1,0,132587,11,0,60,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18380,4,4,6,7,57,0,0,0,-1,0,134584,9,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18381,4,0,3,2,57,0,0,0,-1,0,133884,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18382,4,1,7,16,57,0,3458,0,-1,0,133766,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18383,4,4,6,10,56,0,0,0,-1,0,132943,9,0,45,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18384,4,4,6,3,57,0,0,0,-1,0,135048,9,0,80,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18385,4,1,7,20,57,0,0,0,-1,0,132692,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18386,4,1,7,7,56,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18387,4,1,7,10,55,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18388,2,18,2,26,57,0,0,0,-1,0,135537,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,141,0,0,0,0 +18389,4,1,7,16,57,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18390,4,2,8,7,57,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18391,4,2,8,6,57,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18392,2,15,1,22,57,3,0,0,-1,0,135641,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,64,0,0,0,0 +18393,4,3,2,6,56,0,0,0,-1,0,132523,12,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18394,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18395,4,0,3,11,57,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18396,2,7,6,21,57,3,0,0,-1,0,135658,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +18397,4,0,3,2,56,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18398,4,0,3,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18399,4,0,3,11,0,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18400,4,0,3,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18401,12,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18402,4,0,3,11,0,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18403,4,0,3,11,0,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18404,4,0,3,2,0,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18405,4,1,7,6,57,0,0,0,-1,0,132520,7,0,35,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18406,4,0,3,12,0,0,0,0,-1,0,136168,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18407,4,1,7,10,57,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18408,4,1,7,10,57,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18409,4,1,7,10,57,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18410,2,8,6,17,0,1,0,0,-1,0,135329,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +18411,4,2,8,8,0,0,0,0,-1,0,132540,7,0,45,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18412,12,0,0,0,0,0,0,0,-1,0,134116,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18413,4,1,7,16,57,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18414,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18415,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18416,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18417,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18418,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18419,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +18420,2,5,2,17,0,1,0,0,-1,0,133477,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +18421,4,3,5,1,0,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18422,12,0,0,0,60,0,0,0,-1,0,134153,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18423,12,0,0,0,60,0,0,0,-1,0,134153,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18424,4,2,8,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,121,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0 +18425,4,0,3,23,55,7,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18426,12,0,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18427,4,1,7,16,30,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18428,4,0,5,2,45,0,0,0,-1,0,134317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18429,4,4,6,9,58,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18430,4,4,6,9,45,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18432,4,3,5,9,45,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18434,4,2,8,9,58,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18435,4,2,8,9,45,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18436,4,2,8,9,45,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18437,4,1,7,9,45,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18438,4,0,1,12,35,0,0,0,-1,0,134951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18440,4,1,7,16,30,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18441,4,1,7,16,45,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18442,4,0,5,2,30,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18443,4,0,5,2,58,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18444,4,0,5,2,45,0,0,0,-1,0,134311,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18445,4,4,6,9,58,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18447,4,4,6,9,45,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18448,4,3,5,9,58,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18449,4,3,5,9,45,0,0,0,-1,0,132605,10,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18450,4,1,7,20,55,0,0,0,-1,0,132665,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18451,4,2,8,6,55,0,0,0,-1,0,132505,7,0,30,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18452,4,2,8,9,58,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18453,4,2,8,9,45,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18454,4,2,8,9,58,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18455,4,2,8,9,45,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18456,4,1,7,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18457,4,1,7,9,45,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18458,4,3,5,9,55,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18459,4,4,6,9,55,0,0,0,-1,0,132618,9,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18460,2,3,1,26,55,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,118,0,0,0,0 +18461,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18462,2,13,5,13,55,0,0,0,-1,0,132947,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +18463,2,7,6,13,55,3,0,0,-1,0,135274,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,112,0,0,0,0 +18464,4,0,1,11,55,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18465,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18466,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18467,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18468,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18469,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18470,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18471,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18472,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18473,4,0,0,12,0,0,0,0,-1,0,133443,8,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18475,4,1,7,6,55,0,0,0,-1,0,132496,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18476,4,2,8,8,55,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18477,4,2,8,7,55,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18478,4,2,8,5,55,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18479,4,3,5,1,55,0,0,0,-1,0,133090,11,0,60,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18480,4,4,6,1,55,0,0,0,-1,0,133125,9,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18481,2,5,6,17,55,1,0,0,-1,0,133480,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +18482,2,2,2,15,55,0,0,0,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,80,0,0,0,0 +18483,2,19,2,26,56,0,0,0,-1,0,135467,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +18484,2,7,1,13,56,3,0,0,-1,0,135640,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +18485,4,6,6,14,56,4,0,0,-1,0,134959,9,0,100,0,0,0,0,0,0,2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18486,4,1,7,20,56,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18487,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18488,12,0,0,0,0,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18489,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18490,4,2,8,1,56,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18491,2,15,4,13,0,3,0,0,-1,0,135657,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,74,0,0,0,0 +18492,12,0,0,0,0,0,0,0,-1,0,135329,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18493,4,4,6,3,55,0,0,0,-1,0,135057,9,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18494,4,3,5,3,55,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18495,4,1,7,16,58,0,0,0,-1,0,133773,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18496,4,1,7,16,55,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18497,4,1,7,9,55,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18498,2,0,1,13,55,3,0,0,-1,0,132402,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,90,0,0,0,0 +18499,4,6,6,14,57,4,0,0,-1,0,134956,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18500,4,0,3,11,56,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18501,12,0,0,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18502,2,6,6,17,57,1,0,0,-1,0,135579,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,185,0,0,0,0 +18503,4,4,6,5,57,0,0,0,-1,0,132636,9,0,135,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18504,4,2,8,6,57,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18505,4,2,8,6,57,0,0,0,-1,0,132491,7,0,35,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18506,4,2,8,8,57,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18507,4,1,7,8,57,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18508,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18509,4,1,7,16,57,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,55,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0 +18510,4,1,7,16,57,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18511,4,1,7,16,57,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18512,7,11,0,0,0,0,0,0,-1,0,134802,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18513,12,0,0,0,0,0,0,0,-1,0,135357,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18514,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18515,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18516,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18517,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18518,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18519,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18520,2,8,1,17,58,1,0,0,-1,0,135291,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18521,4,4,6,8,58,0,0,0,-1,0,132582,9,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18522,4,0,3,11,58,0,0,0,-1,0,133374,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18523,4,0,3,23,58,7,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18524,4,3,5,7,58,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18525,4,2,8,9,58,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18526,4,1,3,1,58,0,0,0,-1,0,132767,14,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18527,4,3,5,10,58,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18528,4,2,8,3,56,0,0,0,-1,0,135057,7,0,60,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18529,4,4,6,6,56,0,3499,0,-1,0,132507,8,0,45,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18530,4,3,5,5,57,0,0,0,-1,0,132634,11,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18531,2,5,6,17,57,1,0,0,-1,0,133059,9,0,100,0,0,0,0,0,0,250,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +18532,4,1,7,20,57,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18533,4,4,6,9,58,0,0,0,-1,0,132613,9,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18534,2,10,2,17,58,2,0,0,-1,0,135169,12,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +18535,4,6,2,14,0,4,0,0,-1,0,134958,13,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18536,4,0,8,23,0,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18537,4,0,3,12,58,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18538,2,1,1,17,58,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,243,0,0,0,0 +18539,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18540,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18541,4,1,7,16,60,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18542,2,8,1,17,60,1,0,0,-1,0,135351,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,225,0,0,0,0 +18543,4,0,3,11,60,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18544,4,2,8,10,60,0,0,0,-1,0,132956,7,0,40,0,0,0,0,0,0,152,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18545,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,106,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0 +18546,4,3,5,1,60,0,0,0,-1,0,133120,11,0,85,0,0,0,0,0,0,408,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18547,4,4,6,6,60,0,0,0,-1,0,132520,10,0,55,0,0,0,0,0,0,516,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0 +18562,7,7,2,0,0,0,0,0,-1,0,135248,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18563,15,0,0,0,0,0,0,0,-1,0,135988,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18564,15,0,0,0,0,0,0,0,-1,0,135988,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18565,12,0,0,0,100,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18566,12,0,0,0,100,0,0,0,-1,0,135826,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18567,7,7,7,0,0,0,0,0,-1,0,135839,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18582,2,7,0,13,70,3,0,0,-1,0,135748,8,0,0,0,0,5,6,0,0,0,0,0,0,0,100,100,118,40,40,0,0,125,60,60,0,0 +18583,2,7,0,13,70,1,0,0,-1,0,135277,8,0,0,0,0,6,0,0,0,0,0,0,0,0,50,60,77,30,0,0,0,85,60,0,0,0 +18584,2,7,0,13,70,1,0,0,-1,0,135277,8,0,0,0,0,5,0,0,0,0,0,0,0,0,60,50,77,30,0,0,0,85,60,0,0,0 +18585,4,0,3,11,0,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18586,4,0,3,11,0,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18587,7,3,0,0,0,0,0,0,-1,0,133869,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18588,7,2,8,0,30,0,0,0,-1,0,133711,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18589,12,0,0,0,60,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18590,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18591,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18592,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18593,12,0,1,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +18594,7,2,4,0,0,0,0,0,-1,0,136152,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18595,0,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18596,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18597,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18598,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18599,0,8,0,0,0,0,0,0,-1,0,133434,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18600,9,0,0,0,56,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18601,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18602,4,0,0,23,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18603,12,0,0,0,0,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18604,12,0,0,0,0,0,0,0,-1,0,134076,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18605,12,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18606,0,0,0,0,0,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18607,0,0,0,0,0,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18608,2,10,2,17,60,2,0,0,-1,0,135167,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,176,0,0,0,0,264,0,0,0,0 +18609,2,10,2,17,60,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,176,0,0,0,0,264,0,0,0,0 +18610,2,7,1,21,1,3,0,0,-1,0,135314,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +18611,4,2,8,7,2,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18612,4,3,5,8,3,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18622,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18623,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18624,12,0,0,0,0,0,0,0,-1,0,135228,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18625,12,0,0,0,0,0,0,0,-1,0,135231,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18626,12,0,0,0,0,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18627,12,0,0,0,0,0,0,0,-1,0,133061,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18628,12,0,0,0,60,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18629,12,0,0,0,0,0,0,0,-1,0,134120,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18630,12,0,0,0,0,0,0,0,-1,0,134536,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18631,7,1,8,0,0,0,0,0,-1,0,135155,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18632,0,5,0,0,25,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18633,0,5,0,0,5,0,0,0,-1,0,133982,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18634,4,0,8,12,47,0,0,0,-1,0,133860,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +18635,0,5,0,0,35,0,0,0,-1,0,133983,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18636,7,3,0,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18637,4,0,8,12,0,0,0,0,-1,0,133867,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18638,4,0,8,12,53,0,0,0,-1,0,133862,8,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18639,4,0,8,12,55,0,0,0,-1,0,133874,8,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +18640,0,8,0,0,1,0,0,0,-1,0,132384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18641,7,2,8,0,0,0,0,0,-1,0,133714,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18642,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18643,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18644,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18645,7,3,8,0,0,0,0,0,-1,0,133871,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18646,4,0,0,12,60,0,0,0,-1,0,135933,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18647,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18648,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18649,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18650,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18651,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18652,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18653,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18654,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18655,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18656,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18657,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18658,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18659,12,0,0,0,60,0,0,0,-1,0,135152,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18660,7,3,8,0,0,0,0,0,-1,0,133866,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18661,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18662,0,8,8,0,1,0,0,0,-1,0,134480,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18663,12,0,0,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18664,15,0,0,0,0,0,0,0,-1,0,133740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18665,4,0,0,12,60,0,0,0,-1,0,136224,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18666,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18667,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18668,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18669,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18670,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18671,2,4,1,13,54,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,132,0,0,0,0 +18672,4,0,3,23,54,0,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18673,4,6,1,14,54,4,0,0,-1,0,134949,9,0,100,0,0,0,0,0,0,2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18674,4,0,1,11,54,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18675,15,0,0,0,0,0,0,0,-1,0,133742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18676,4,3,5,6,56,0,0,0,-1,0,132520,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18677,4,1,7,16,56,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,39,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +18678,4,0,3,2,56,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +18679,4,0,3,11,56,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18680,2,2,2,15,56,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,145,0,0,0,0 +18681,4,1,7,3,56,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18682,4,2,8,7,56,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18683,2,4,1,13,56,3,0,0,-1,0,133050,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +18684,4,0,3,11,56,0,3306,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18685,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +18686,4,3,2,3,57,0,0,0,-1,0,135034,10,0,70,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18687,12,0,0,0,0,0,0,0,-1,0,133849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18688,12,0,0,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18689,4,1,7,16,57,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18690,4,4,6,7,57,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18691,4,0,3,2,56,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18692,4,4,6,8,54,0,0,0,-1,0,132589,11,0,65,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18693,4,1,7,10,57,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18694,4,3,5,8,57,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,251,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18695,4,0,8,23,57,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18696,4,6,6,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18697,4,1,7,8,50,0,0,0,-1,0,132579,7,0,40,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18698,4,2,8,1,51,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18699,4,2,8,3,52,0,0,0,-1,0,135058,7,0,60,0,0,0,0,0,0,122,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0 +18700,4,2,8,9,53,0,0,0,-1,0,132606,10,0,35,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18701,4,0,3,11,54,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18702,4,4,6,6,55,0,0,0,-1,0,132517,11,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18703,12,0,0,0,60,0,0,0,-1,0,136085,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18704,12,0,0,0,60,0,0,0,-1,0,133674,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18705,12,0,0,0,60,0,0,0,-1,0,135894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18706,12,0,0,12,35,0,0,0,-1,0,133608,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18707,12,0,0,0,60,0,0,0,-1,0,135159,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18708,12,0,0,0,60,0,0,0,-1,0,136064,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18709,4,1,6,9,45,0,0,0,-1,0,132609,11,0,30,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18710,4,2,6,9,45,0,0,0,-1,0,132607,11,0,35,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18711,4,3,6,9,45,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18712,4,4,6,9,45,0,0,0,-1,0,132618,11,0,45,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18713,2,2,2,15,60,0,0,0,-1,0,135489,13,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +18714,11,2,8,18,60,0,0,0,-1,0,134403,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18715,2,10,0,17,60,2,0,0,-1,0,135158,13,0,120,0,0,0,0,0,0,0,0,0,10,0,0,0,187,0,0,0,0,282,0,0,0,0 +18716,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18717,2,5,1,17,58,1,0,0,-1,0,133043,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +18718,4,4,6,1,58,0,0,0,-1,0,133078,11,0,80,0,0,0,0,0,0,534,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0 +18719,12,0,4,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18720,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18721,4,3,8,6,56,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18722,4,4,6,10,57,0,0,0,-1,0,132947,11,0,45,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18723,4,0,3,2,57,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18724,12,0,0,0,60,0,0,0,-1,0,135894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18725,2,6,2,17,54,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +18726,4,2,8,9,54,0,0,0,-1,0,132610,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18727,4,1,7,1,54,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18728,4,0,3,2,55,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18729,2,2,2,15,55,0,0,0,-1,0,135500,12,0,75,2,0,0,0,0,0,0,0,0,0,0,10,0,90,0,0,0,0,90,0,0,0,0 +18730,4,1,7,10,55,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,53,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0 +18731,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18734,4,1,7,16,57,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,44,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18735,4,1,7,8,57,0,0,0,-1,0,132537,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18736,4,2,8,7,57,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18737,2,0,1,13,57,3,0,0,-1,0,132402,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +18738,2,18,2,26,56,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +18739,4,4,6,7,56,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18740,4,1,7,6,56,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18741,4,4,6,9,56,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18742,4,3,5,3,55,0,0,0,-1,0,135045,10,0,70,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18743,4,1,7,16,54,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18744,4,2,8,10,53,0,0,0,-1,0,132952,7,0,35,0,0,0,0,0,0,103,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +18745,4,1,7,7,52,0,0,0,-1,0,134581,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18746,12,0,0,0,0,0,0,0,-1,0,133866,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18747,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18749,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18752,12,0,0,0,0,0,0,0,-1,0,135923,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18753,12,0,0,0,0,0,0,0,-1,0,135061,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18754,4,4,6,9,57,0,0,0,-1,0,132614,11,0,45,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18755,2,3,2,26,57,0,0,0,-1,0,135612,12,0,75,3,0,0,0,0,0,0,0,0,0,0,6,0,73,0,0,0,0,137,0,0,0,0 +18756,4,6,2,14,57,4,0,0,-1,0,134963,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18757,4,1,7,3,57,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18758,2,15,1,13,57,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,96,0,0,0,0 +18759,2,1,1,17,57,1,0,0,-1,0,132409,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +18760,4,0,3,11,57,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18761,2,19,2,26,57,0,0,0,-1,0,135474,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,147,0,0,0,0 +18762,4,0,3,23,0,0,0,0,-1,0,134430,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18763,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +18764,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +18765,2,3,1,26,47,0,0,0,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +18766,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18767,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18768,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18769,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18770,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18771,12,0,0,0,50,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18772,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18773,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18774,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18775,12,0,0,0,0,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18776,15,5,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18777,15,5,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18778,15,5,0,0,60,0,0,0,-1,0,132261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18779,12,0,0,0,50,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18780,12,0,0,0,50,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18781,12,0,0,0,50,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18782,12,0,0,0,50,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18783,12,0,0,0,50,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18784,12,0,0,0,50,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18785,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18786,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18787,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18788,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18789,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18790,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18791,15,5,0,0,60,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18792,12,0,0,0,0,0,0,0,-1,0,135062,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18793,15,5,0,0,60,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18794,15,5,0,0,60,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18795,15,5,0,0,60,0,0,0,-1,0,132243,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18796,15,5,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18797,15,5,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18798,15,5,0,0,60,0,0,0,-1,0,132266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18799,12,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18800,2,4,2,21,60,2,0,0,-1,0,135225,13,0,105,0,0,0,0,0,0,0,0,5,5,5,5,5,85,0,0,0,0,159,0,0,0,0 +18801,2,10,0,21,60,1,0,0,-1,0,135167,13,0,120,0,0,0,0,0,0,0,0,0,0,0,20,0,118,0,0,0,0,220,0,0,0,0 +18802,12,0,0,0,0,0,0,0,-1,0,134807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18803,2,5,1,17,60,1,0,0,-1,0,132996,9,0,120,0,0,0,0,0,0,0,0,15,0,0,0,0,155,0,0,0,0,234,0,0,0,0 +18804,12,0,0,0,0,0,0,0,-1,0,133633,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18805,2,15,1,13,60,3,0,0,-1,0,135647,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +18806,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,621,0,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0 +18807,4,3,5,1,0,0,0,0,-1,0,133126,10,0,70,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18808,4,1,7,10,60,0,0,0,-1,0,132937,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18809,4,1,7,6,60,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18810,4,2,8,3,60,0,0,0,-1,0,135049,7,0,70,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18811,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,62,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18812,4,3,5,9,60,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18813,4,0,3,11,60,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,60,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +18814,4,0,3,2,60,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18815,4,0,0,12,60,0,0,0,-1,0,135805,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18816,2,15,1,13,60,3,0,0,-1,0,135358,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +18817,4,3,1,1,60,0,0,0,-1,0,132768,10,0,85,0,0,0,0,0,0,447,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18818,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18819,12,0,0,0,0,0,0,0,-1,0,135923,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18820,4,0,3,12,60,0,0,0,-1,0,134465,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18821,4,0,3,11,60,0,0,0,-1,0,133349,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18822,2,8,1,17,60,1,0,0,-1,0,135329,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,264,0,0,0,0 +18823,4,2,8,10,60,0,0,0,-1,0,132957,7,0,40,0,0,0,0,0,0,148,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +18824,4,4,6,8,60,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,621,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18825,4,6,1,14,60,4,0,0,-1,0,134951,9,0,120,0,0,0,0,0,0,3366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18826,4,6,1,14,60,4,0,0,-1,0,134965,9,0,120,0,0,0,0,0,0,3366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18827,2,0,1,13,60,3,0,0,-1,0,132418,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18828,2,0,1,13,60,3,0,0,-1,0,132393,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18829,4,3,5,3,60,0,0,0,-1,0,135035,10,0,85,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18830,2,1,1,17,60,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18831,2,1,1,17,60,1,0,0,-1,0,132415,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18832,2,7,1,13,60,3,0,0,-1,0,135313,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +18833,2,2,2,15,60,0,0,0,-1,0,135500,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +18834,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18835,2,2,2,15,60,0,0,0,-1,0,135496,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +18836,2,18,2,26,60,0,0,0,-1,0,135533,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,195,0,0,0,0 +18837,2,18,2,26,60,0,0,0,-1,0,135539,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,195,0,0,0,0 +18838,2,15,1,13,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +18839,0,0,0,0,35,0,0,0,-1,0,134819,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18840,2,15,1,13,60,3,0,0,-1,0,135649,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,143,0,0,0,0 +18841,0,0,3,0,41,0,0,0,-1,0,134861,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18842,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,234,0,0,0,0 +18843,2,13,1,21,60,7,0,0,-1,0,135643,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18844,2,13,1,21,60,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18845,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18846,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18847,2,13,1,22,60,7,0,0,-1,0,132302,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18848,2,13,1,22,60,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18849,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18850,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18851,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18852,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18853,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18854,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18855,2,3,1,26,60,0,0,0,-1,0,135617,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,195,0,0,0,0 +18856,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18857,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18858,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18859,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18860,2,3,1,26,60,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,195,0,0,0,0 +18861,4,4,6,7,56,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,694,0,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0 +18862,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18863,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18864,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18865,2,4,2,13,60,3,0,0,-1,0,133488,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18866,2,4,2,13,60,3,0,0,-1,0,133057,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +18867,2,5,2,17,60,1,0,0,-1,0,133040,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18868,2,5,2,17,60,1,0,0,-1,0,133047,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18869,2,6,1,17,60,2,0,0,-1,0,135131,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18870,4,3,5,1,57,0,0,0,-1,0,133120,10,0,85,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18871,2,6,1,17,60,2,0,0,-1,0,135124,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18872,4,1,7,7,58,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18873,2,10,2,17,60,2,0,0,-1,0,135151,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,279,0,0,0,0 +18874,2,10,2,17,60,2,0,0,-1,0,133729,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,279,0,0,0,0 +18875,4,2,8,7,59,0,0,0,-1,0,134592,7,0,90,0,0,0,0,0,0,195,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18876,2,8,1,17,60,1,0,0,-1,0,135349,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18877,2,8,1,17,60,1,0,0,-1,0,135358,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +18878,2,15,1,21,60,3,0,0,-1,0,135643,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +18879,4,0,1,11,60,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18880,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18881,2,5,2,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,180,0,0,0,0,302,0,0,0,0 +18882,2,8,1,17,60,1,0,0,-1,0,135302,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,328,0,0,0,0 +18902,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18904,12,0,0,0,0,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18922,12,0,0,0,0,0,0,0,-1,0,134943,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18942,12,0,0,0,0,0,0,0,-1,0,132863,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18943,12,0,0,0,0,0,0,0,-1,0,133611,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18944,12,0,0,0,0,0,0,0,-1,0,134318,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18945,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18946,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18947,12,0,0,0,0,0,0,0,-1,0,134359,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18948,4,2,8,9,27,0,0,0,-1,0,132614,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18949,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18950,12,0,0,0,0,0,0,0,-1,0,133601,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18951,4,0,7,12,0,0,0,0,-1,0,133612,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18952,12,0,0,0,0,0,0,0,-1,0,136220,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18953,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18954,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18955,12,0,0,0,0,0,0,0,-1,0,136221,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18956,12,0,3,0,0,0,0,0,-1,0,132857,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18957,2,7,1,13,0,1,0,0,-1,0,135276,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,21,0,0,0,0 +18958,12,0,0,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18959,12,0,0,0,0,0,0,0,-1,0,134538,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18960,12,0,0,0,0,0,0,0,-1,0,134440,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18961,12,0,0,0,0,0,0,0,-1,0,134967,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18962,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18963,15,2,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18964,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18965,15,2,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18966,15,2,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18967,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18968,4,0,0,11,0,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18969,12,0,0,0,40,0,0,0,-1,0,134362,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18970,4,0,0,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18971,4,0,0,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18972,12,0,0,0,40,0,0,0,-1,0,134362,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18982,4,0,0,11,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18983,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18984,4,0,0,12,0,0,0,0,-1,0,133865,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18985,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +18986,4,0,0,12,0,0,0,0,-1,0,133870,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18987,12,0,0,0,55,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19002,12,0,0,0,60,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19003,12,0,0,0,60,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19004,0,8,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19005,0,8,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19006,0,8,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19007,0,8,1,0,12,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19008,0,8,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19009,0,8,1,0,24,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19010,0,8,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19011,0,8,1,0,36,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19012,0,8,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19013,0,8,1,0,48,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19014,2,0,1,17,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19015,2,0,1,17,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19016,12,0,0,0,60,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19017,12,0,0,0,0,0,0,0,-1,0,135826,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19018,12,0,0,0,60,0,0,0,-1,0,135349,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19019,2,7,1,13,60,1,0,0,-1,0,135349,9,0,125,0,0,3,0,0,0,0,0,8,9,0,0,0,82,16,0,0,0,153,30,0,0,0 +19020,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19022,2,20,2,17,0,1,0,0,-1,0,132931,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,140,0,0,0,0 +19023,12,0,0,0,0,0,0,0,-1,0,134324,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19024,4,0,0,12,0,0,0,0,-1,0,133599,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19025,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19026,0,8,0,0,0,0,0,0,-1,0,135920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19027,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19028,4,0,7,20,0,0,0,0,-1,0,132645,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19029,15,5,0,0,60,0,0,0,-1,0,134227,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19030,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19031,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19032,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19033,12,0,0,0,0,0,0,0,-1,0,134521,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19034,12,0,0,0,0,0,0,0,-1,0,134016,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19035,15,0,1,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19036,12,0,0,0,0,0,0,0,-1,0,135125,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19037,4,4,6,3,0,0,0,0,-1,0,135057,11,0,70,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19038,4,0,3,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19039,4,2,8,1,0,0,0,0,-1,0,133153,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19040,2,7,1,13,0,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,86,0,0,0,0 +19041,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19042,4,2,8,5,0,0,0,0,-1,0,132723,7,0,85,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19043,4,3,0,6,53,0,0,0,-1,0,132505,0,0,40,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19044,4,2,0,6,53,0,0,0,-1,0,132498,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19045,0,0,0,0,0,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19046,0,0,0,0,0,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19047,4,1,0,6,53,0,0,0,-1,0,132498,0,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19048,4,3,0,8,59,0,0,0,-1,0,132553,0,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19049,4,2,0,10,59,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19050,4,1,7,3,59,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19051,4,4,0,6,53,0,0,0,-1,0,132500,0,0,45,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19052,4,2,0,8,53,0,0,0,-1,0,132565,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19053,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19054,15,0,0,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19055,15,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19056,4,1,0,8,53,0,0,0,-1,0,132560,0,0,40,0,0,0,0,0,0,57,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0 +19057,4,4,0,10,59,0,0,0,-1,0,132963,0,0,45,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19058,4,2,0,3,59,0,0,0,-1,0,135057,0,0,60,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19059,4,1,0,3,59,0,0,0,-1,0,135044,0,0,50,0,0,0,0,0,0,68,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +19060,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19061,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19062,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19064,12,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19065,4,0,3,11,0,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19066,0,7,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19067,0,7,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19068,0,7,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19069,12,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19070,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19071,12,0,0,0,0,0,0,0,-1,0,134514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19082,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19083,4,1,7,16,55,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19084,4,1,7,16,55,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19085,4,1,7,16,55,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19086,4,1,7,16,55,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,43,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19087,4,4,5,6,55,0,0,0,-1,0,132524,11,0,45,0,0,0,0,0,0,353,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19088,4,3,5,6,55,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,199,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19089,4,2,8,6,55,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,95,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19090,4,1,7,6,55,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19091,4,4,5,6,55,0,0,0,-1,0,132524,11,0,45,0,0,0,0,0,0,353,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19092,4,3,5,6,55,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,199,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19093,4,2,8,6,55,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,95,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19094,4,1,7,6,55,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,48,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +19095,4,0,3,2,55,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19096,4,0,3,2,55,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19097,4,0,3,2,55,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19098,4,0,3,2,55,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19099,2,15,1,13,60,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19100,2,15,1,13,60,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19101,2,10,2,17,60,2,0,0,-1,0,135167,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19102,2,10,2,17,60,2,0,0,-1,0,135157,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19103,2,0,1,13,60,3,0,0,-1,0,132416,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19104,2,4,1,13,60,3,0,0,-1,0,133058,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19105,4,1,7,1,58,0,0,0,-1,0,133163,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19106,2,6,1,17,0,1,0,0,-1,0,135127,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +19107,2,18,2,26,0,0,0,0,-1,0,135536,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +19108,2,19,2,26,0,0,0,0,-1,0,135463,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +19109,4,0,3,11,58,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19110,2,7,1,13,58,3,0,0,-1,0,135357,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +19111,4,3,5,3,58,0,0,0,-1,0,135043,10,0,70,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19112,4,4,6,9,58,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19113,4,2,8,9,58,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19114,2,2,2,15,0,0,0,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,100,0,0,0,0 +19115,4,0,3,23,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19116,4,1,7,10,0,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19117,4,4,6,7,0,0,0,0,-1,0,134585,11,0,85,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19118,2,19,2,26,0,0,0,0,-1,0,135474,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19119,4,2,8,10,0,0,0,0,-1,0,132942,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19120,4,0,4,12,0,0,0,0,-1,0,134420,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19121,4,1,7,16,0,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19122,4,0,8,0,0,0,0,0,-1,0,134196,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19123,4,1,7,10,0,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19124,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19125,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19126,4,4,6,10,0,0,0,0,-1,0,132956,11,0,40,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19127,4,2,8,5,0,0,0,0,-1,0,132718,7,0,85,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19128,4,3,5,5,0,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19129,4,1,0,20,0,0,0,0,-1,0,132657,7,0,70,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19130,2,19,2,26,60,0,0,0,-1,0,135463,21,0,75,0,4,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +19131,4,1,7,8,60,0,0,0,-1,0,132571,7,0,50,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19132,4,1,3,1,60,0,0,0,-1,0,132767,11,0,60,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19133,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19134,4,2,8,6,60,0,0,0,-1,0,132505,7,0,40,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19135,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19136,4,1,7,6,60,0,0,0,-1,0,132500,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19137,4,4,6,6,60,0,0,0,-1,0,132518,11,0,55,0,0,0,0,0,0,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19138,4,0,3,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19139,4,2,8,3,60,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,182,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19140,4,0,3,11,60,0,0,0,-1,0,133381,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19141,4,0,7,12,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19142,4,0,7,23,60,7,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19143,4,4,6,10,60,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19144,4,3,5,8,60,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19145,4,1,7,20,60,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19146,4,2,8,9,60,0,0,0,-1,0,132603,7,0,40,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19147,4,0,3,11,60,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19148,4,4,6,1,60,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,695,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19149,4,2,8,6,60,0,0,0,-1,0,132521,7,0,40,0,0,0,0,0,0,128,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19150,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19151,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19152,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19153,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19154,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19155,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19156,4,1,7,20,60,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,116,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19157,4,3,7,10,60,0,0,0,-1,0,132956,7,0,50,0,0,0,0,0,0,318,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0 +19158,2,5,2,17,60,1,0,0,-1,0,133066,9,0,145,0,0,0,0,0,0,0,0,30,0,0,0,0,180,0,0,0,0,302,0,0,0,0 +19159,4,0,8,2,0,0,0,0,-1,0,134196,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19160,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19162,4,2,8,6,60,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,135,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19163,4,2,8,6,60,0,0,0,-1,0,132502,7,0,40,0,0,0,0,0,0,135,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19164,4,4,8,10,60,0,0,0,-1,0,132956,7,0,55,0,0,0,0,0,0,565,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19165,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,107,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19166,2,15,1,13,60,3,0,0,-1,0,135648,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +19167,2,6,1,17,60,2,0,0,-1,0,135131,8,0,120,0,0,0,0,0,0,0,0,10,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +19168,2,7,1,13,60,3,0,0,-1,0,135349,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +19169,2,1,1,17,60,1,0,0,-1,0,132403,8,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19170,2,4,1,13,60,3,0,0,-1,0,133056,8,0,105,0,0,0,0,0,0,0,0,7,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +19182,0,0,7,0,0,0,0,0,-1,0,134481,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19183,0,8,0,0,0,0,0,0,-1,0,133849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19184,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +19185,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +19186,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +19187,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +19188,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,142,0,0,0,0 +19189,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +19190,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +19191,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +19192,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +19193,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +19194,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19195,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,194,0,0,0,0 +19196,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,201,0,0,0,0 +19197,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,214,0,0,0,0 +19198,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,220,0,0,0,0 +19199,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +19200,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +19201,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,240,0,0,0,0 +19202,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19203,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19204,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19205,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19206,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19207,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19208,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19209,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19210,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19211,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19212,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19213,12,0,0,0,0,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19214,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +19215,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19216,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19217,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19218,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19219,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19220,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19221,0,5,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19222,0,5,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19223,0,5,0,0,1,0,0,0,-1,0,134022,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19224,0,5,0,0,25,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19225,0,5,0,0,45,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19226,2,13,1,26,1,0,0,0,-1,0,135612,8,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +19227,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19228,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19229,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19230,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19231,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19232,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19233,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19234,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19235,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19236,12,0,0,0,0,0,0,0,-1,0,134482,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19237,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19238,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19239,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19240,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19241,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19242,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19243,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19244,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19245,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19246,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19247,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19248,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19249,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19250,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19251,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19252,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19253,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19254,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19255,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19256,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19257,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19258,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19259,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19260,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19261,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19262,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19263,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19264,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19265,12,0,0,0,0,0,0,0,-1,0,134497,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19266,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19267,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19268,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19269,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19270,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19271,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19272,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19273,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19274,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19275,12,0,0,0,0,0,0,0,-1,0,134486,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19276,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19277,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19278,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19279,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19280,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19281,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19282,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19283,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19284,12,0,0,0,0,0,0,0,-1,0,134492,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19286,6,3,2,24,1,0,0,0,-1,0,132385,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,8,0,0,0,0 +19287,4,0,0,12,60,0,0,0,-1,0,134488,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19288,4,0,0,12,60,0,0,0,-1,0,134484,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19289,4,0,0,12,60,0,0,0,-1,0,134491,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19290,4,0,0,12,60,0,0,0,-1,0,134495,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19291,1,0,8,18,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19292,2,4,2,13,29,3,0,0,-1,0,133974,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,54,0,0,0,0 +19293,2,4,2,13,50,3,0,0,-1,0,133974,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,82,0,0,0,0 +19295,4,0,0,23,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19296,0,8,1,0,45,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19297,0,8,1,0,30,0,0,0,-1,0,133629,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19298,0,8,1,0,15,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19299,0,5,7,0,15,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19300,0,5,7,0,35,0,0,0,-1,0,132805,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19301,0,5,0,0,51,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19302,4,0,0,11,50,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19303,4,0,0,2,50,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19304,0,5,0,0,5,0,0,0,-1,0,134256,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19305,0,5,0,0,15,0,0,0,-1,0,134061,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19306,0,5,0,0,35,0,0,0,-1,0,133919,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19307,0,7,7,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19308,4,0,7,23,60,7,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19309,4,0,7,23,60,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19310,4,0,7,23,60,7,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19311,4,0,7,23,60,7,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19312,4,0,0,23,60,0,0,0,-1,0,133941,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19313,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,70,0,0,0,0 +19314,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +19315,4,0,0,23,60,0,0,0,-1,0,133749,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19316,6,2,2,24,51,0,0,0,-1,0,135855,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,17,0,0,0,0 +19317,6,3,2,24,51,0,0,0,-1,0,135844,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,17,0,0,0,0 +19318,0,0,0,0,55,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19319,11,2,8,18,55,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19320,11,3,8,18,55,0,0,0,-1,0,133581,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19321,4,6,1,14,60,4,0,0,-1,0,135835,9,0,120,0,0,0,0,0,0,2836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19322,12,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19323,2,5,1,17,60,1,0,0,-1,0,133050,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,292,0,0,0,0 +19324,2,15,1,13,60,3,0,0,-1,0,135330,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +19325,4,0,0,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19326,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19327,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19328,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19329,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19330,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19331,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19332,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19333,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19334,2,8,1,17,60,1,0,0,-1,0,135360,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +19335,2,4,1,13,60,3,0,0,-1,0,133481,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +19336,4,0,4,12,60,0,0,0,-1,0,136116,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19337,4,0,4,12,60,0,0,0,-1,0,133738,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19338,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19339,4,0,4,12,60,0,0,0,-1,0,136115,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19340,4,0,4,12,60,0,0,0,-1,0,134419,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19341,4,0,4,12,60,0,0,0,-1,0,134124,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19342,4,0,4,12,60,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19343,4,0,4,12,60,0,0,0,-1,0,134944,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19344,4,0,4,12,60,0,0,0,-1,0,134073,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19345,4,0,4,12,60,0,0,0,-1,0,135880,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19346,2,15,1,13,60,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19347,2,15,1,21,60,3,0,0,-1,0,135664,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +19348,4,6,6,14,60,4,0,0,-1,0,134966,9,0,120,0,0,0,0,0,0,3204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19349,4,6,6,14,60,4,0,0,-1,0,134963,9,0,120,0,0,0,0,0,0,3325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19350,2,2,2,15,60,0,0,0,-1,0,135497,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,180,0,0,0,0 +19351,2,7,1,13,60,3,0,0,-1,0,135359,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,162,0,0,0,0 +19352,2,7,1,13,60,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,198,0,0,0,0 +19353,2,1,1,17,60,1,0,0,-1,0,132401,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,300,0,0,0,0 +19354,2,1,1,17,60,1,0,0,-1,0,132415,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,262,0,0,0,0 +19355,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19356,2,10,2,17,60,2,0,0,-1,0,135143,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +19357,2,5,1,17,60,1,0,0,-1,0,133480,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,300,0,0,0,0 +19358,2,5,1,17,60,1,0,0,-1,0,133480,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19360,2,4,1,21,60,3,0,0,-1,0,133481,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,172,0,0,0,0 +19361,2,18,2,26,60,0,0,0,-1,0,135538,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,225,0,0,0,0 +19362,2,0,1,13,60,3,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +19363,2,0,1,13,60,3,0,0,-1,0,132403,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,188,0,0,0,0 +19364,2,8,1,17,60,1,0,0,-1,0,135360,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0,344,0,0,0,0 +19365,2,13,1,21,60,7,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +19366,4,0,3,23,60,0,0,0,-1,0,134335,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19367,2,19,2,26,60,0,0,0,-1,0,135473,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,199,0,0,0,0 +19368,2,3,2,26,60,0,0,0,-1,0,135611,12,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,194,0,0,0,0 +19369,4,1,7,10,60,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19370,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19371,4,0,3,2,60,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19372,4,4,6,1,60,0,0,0,-1,0,133078,11,0,100,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19373,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19374,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19375,4,1,7,1,60,0,0,0,-1,0,133154,7,0,60,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19376,4,0,3,11,60,0,0,0,-1,0,133382,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19377,4,0,3,2,60,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19378,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19379,4,0,4,12,60,0,0,0,-1,0,135241,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19380,4,3,5,6,60,0,0,0,-1,0,132507,10,0,50,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19381,4,2,8,8,60,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19382,4,0,4,11,60,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19383,4,0,4,2,60,0,0,0,-1,0,133305,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19384,4,0,4,11,60,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19385,4,1,7,7,60,0,0,0,-1,0,134613,7,0,75,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19386,4,1,7,16,60,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19387,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19388,4,1,7,6,60,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19389,4,2,8,3,60,0,0,0,-1,0,135039,7,0,70,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19390,4,2,8,10,60,0,0,0,-1,0,132953,7,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19391,4,1,7,8,60,0,0,0,-1,0,132558,7,0,50,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19392,4,4,6,6,60,0,0,0,-1,0,132500,11,0,55,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19393,4,3,5,6,60,0,0,0,-1,0,132510,10,0,50,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19394,4,4,6,3,60,0,0,0,-1,0,135054,11,0,100,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19395,4,0,3,12,60,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19396,4,2,8,6,60,0,0,0,-1,0,132505,7,0,40,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19397,4,0,4,11,60,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19398,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19399,4,1,7,20,60,0,0,0,-1,0,132691,7,0,100,0,0,0,0,0,0,131,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19400,4,1,7,6,60,0,0,0,-1,0,132499,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19401,4,3,5,7,60,0,0,0,-1,0,134671,10,0,105,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19402,4,4,6,7,60,0,0,0,-1,0,134692,11,0,120,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19403,4,0,3,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19404,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19405,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19406,4,0,4,12,60,0,0,0,-1,0,133723,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19407,4,1,7,10,60,0,0,0,-1,0,132961,7,0,35,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19422,12,0,0,0,0,0,0,0,-1,0,133672,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19423,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19424,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19425,0,0,2,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19426,4,0,0,2,60,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19427,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +19428,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,156,0,0,0,0 +19430,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19431,4,0,4,12,60,0,0,0,-1,0,133605,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19432,4,0,4,11,60,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19433,4,3,5,7,60,0,0,0,-1,0,134669,10,0,105,0,0,0,0,0,0,476,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19434,4,0,3,11,60,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19435,2,19,2,26,60,0,0,0,-1,0,135468,21,0,75,0,6,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +19436,4,1,7,16,60,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19437,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19438,4,1,7,8,60,0,0,0,-1,0,132573,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19439,4,2,8,5,60,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,243,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0 +19440,0,8,7,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19441,7,11,3,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19442,9,7,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19443,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19444,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19445,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19446,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19447,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19448,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19449,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19450,15,2,0,0,0,0,0,0,-1,0,132835,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19451,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19452,15,0,0,0,10,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19453,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19454,15,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19455,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,282,0,0,0,0 +19456,2,7,1,13,60,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,233,0,0,0,0 +19457,2,7,1,13,60,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,121,0,0,0,0 +19462,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19482,12,0,0,0,0,0,0,0,-1,0,134353,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19483,15,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19484,15,0,0,0,0,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19485,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19486,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19487,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19488,2,14,1,22,1,7,0,0,-1,0,133888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19489,2,18,2,26,60,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +19490,2,2,2,15,60,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +19491,4,0,0,2,60,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19502,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,119,0,0,0,0 +19503,2,7,1,13,58,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,177,0,0,0,0 +19504,2,7,1,13,58,3,0,0,-1,0,135637,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,148,0,0,0,0 +19505,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19506,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19507,4,1,7,3,36,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19508,4,2,8,9,36,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19509,4,3,5,8,36,0,0,0,-1,0,132545,10,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19510,4,0,4,11,58,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19511,4,0,4,11,48,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19512,4,0,4,11,38,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19513,4,0,4,11,28,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19514,4,0,4,11,58,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19515,4,0,4,11,38,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19516,4,0,4,11,48,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19517,4,0,4,11,28,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19518,4,0,4,11,58,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19519,4,0,4,11,48,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19520,4,0,4,11,38,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19521,4,0,4,11,28,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19522,4,0,4,11,58,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19523,4,0,4,11,48,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19524,4,0,4,11,38,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19525,4,0,4,11,28,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19526,4,1,7,16,58,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19527,4,1,7,16,48,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19528,4,1,7,16,38,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19529,4,1,7,16,28,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19530,4,1,7,16,58,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19531,4,1,7,16,48,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19532,4,1,7,16,38,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19533,4,1,7,16,28,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19534,4,0,4,2,58,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19535,4,0,4,2,48,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19536,4,0,4,2,38,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19537,4,0,4,2,28,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19538,4,0,4,2,58,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19539,4,0,4,2,48,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19540,4,0,4,2,38,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19541,4,0,4,2,28,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19542,2,15,1,13,58,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19543,2,15,1,13,48,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +19544,2,15,1,13,38,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +19545,2,15,1,13,28,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +19546,2,15,1,13,58,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19547,2,15,1,13,48,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +19548,2,15,1,13,38,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +19549,2,15,1,13,28,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +19550,2,7,1,13,58,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19551,2,7,1,13,48,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +19552,2,7,1,13,38,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +19553,2,7,1,13,28,3,0,0,-1,0,135341,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19554,2,7,1,13,58,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19555,2,7,1,13,48,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +19556,2,7,1,13,38,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +19557,2,7,1,13,28,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,75,0,0,0,0 +19558,2,2,2,15,58,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +19559,2,2,2,15,48,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +19560,2,2,2,15,38,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +19561,2,2,2,15,28,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +19562,2,2,2,15,58,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +19563,2,2,2,15,48,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +19564,2,2,2,15,38,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +19565,2,2,2,15,28,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +19566,2,10,2,17,58,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19567,2,10,2,17,48,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +19568,2,10,2,17,38,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +19569,2,10,2,17,28,2,0,0,-1,0,135162,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +19570,2,10,2,17,58,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,188,0,0,0,0 +19571,2,10,2,17,48,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +19572,2,10,2,17,38,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +19573,2,10,2,17,28,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,97,0,0,0,0 +19574,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19575,4,0,4,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19576,4,0,4,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19577,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19578,4,4,6,9,60,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19579,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19580,4,4,6,9,50,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19581,4,4,6,9,40,0,0,0,-1,0,132605,11,0,55,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19582,4,3,5,9,60,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19583,4,3,5,9,50,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19584,4,3,5,9,40,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19585,4,0,4,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19586,4,0,4,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19587,4,2,8,9,60,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19588,4,0,4,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19589,4,2,8,9,50,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19590,4,2,8,9,40,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19591,4,0,4,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19592,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19593,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19594,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19595,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19596,4,1,7,9,50,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19597,4,1,7,9,40,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19598,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19599,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19600,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19601,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19602,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19603,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19604,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19605,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19606,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19607,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19608,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19609,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19610,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19611,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19612,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19613,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19614,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19615,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19616,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19617,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19618,4,0,0,2,0,0,0,0,-1,0,133310,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19619,4,0,0,2,0,0,0,0,-1,0,133311,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19620,4,0,0,2,0,0,0,0,-1,0,133312,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19621,4,0,0,2,0,0,0,0,-1,0,133313,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19622,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +19623,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +19642,12,0,0,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19662,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +19682,4,1,7,5,60,0,0,0,-1,0,132648,7,0,80,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19683,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19684,4,1,0,8,60,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19685,4,2,8,5,60,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19686,4,2,8,10,60,0,0,0,-1,0,132965,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19687,4,2,8,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19688,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19689,4,2,8,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19690,4,3,5,5,60,0,0,0,-1,0,132636,10,0,120,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19691,4,3,5,3,60,0,0,0,-1,0,135046,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19692,4,3,5,10,60,0,0,0,-1,0,132965,10,0,40,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19693,4,4,6,5,60,0,0,0,-1,0,132743,11,0,135,0,0,0,0,0,0,676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19694,4,4,6,7,60,0,0,0,-1,0,134697,11,0,100,0,0,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19695,4,4,6,3,60,0,0,0,-1,0,135032,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19696,0,5,0,0,0,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19697,4,0,0,0,0,0,0,0,-1,0,134229,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19698,12,0,1,0,0,0,0,0,-1,0,133606,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19699,12,0,1,0,0,0,0,0,-1,0,133793,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19700,12,0,1,0,0,0,0,0,-1,0,133792,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19701,12,0,1,0,0,0,0,0,-1,0,133790,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19702,12,0,1,0,0,0,0,0,-1,0,133796,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19703,12,0,1,0,0,0,0,0,-1,0,133797,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19704,12,0,1,0,0,0,0,0,-1,0,133798,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19705,12,0,1,0,0,0,0,0,-1,0,133795,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19706,12,0,1,0,0,0,0,0,-1,0,133794,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19707,12,0,1,0,58,0,0,0,-1,0,132532,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19708,12,0,1,0,58,0,0,0,-1,0,132526,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19709,12,0,1,0,58,0,0,0,-1,0,132534,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19710,12,0,1,0,58,0,0,0,-1,0,132530,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19711,12,0,1,0,58,0,0,0,-1,0,132529,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19712,12,0,1,0,58,0,0,0,-1,0,132531,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19713,12,0,1,0,58,0,0,0,-1,0,132527,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19714,12,0,1,0,58,0,0,0,-1,0,132533,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19715,12,0,1,0,58,0,0,0,-1,0,132528,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19716,12,0,1,0,0,0,0,0,-1,0,132604,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19717,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19718,12,0,1,0,0,0,0,0,-1,0,132613,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19719,12,0,1,0,0,0,0,0,-1,0,132501,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19720,12,0,1,0,0,0,0,0,-1,0,132496,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19721,12,0,1,0,0,0,0,0,-1,0,135050,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19722,12,0,1,0,0,0,0,0,-1,0,132482,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19723,12,0,1,0,0,0,0,0,-1,0,135011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19724,12,0,1,0,0,0,0,0,-1,0,132634,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19725,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19726,7,9,7,0,0,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19727,7,9,7,0,0,0,0,0,-1,0,135665,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19742,4,2,8,7,55,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19743,4,2,8,1,33,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19762,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19763,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19764,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19765,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19766,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19767,7,6,8,0,0,0,0,0,-1,0,134345,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19768,7,6,8,0,0,0,0,0,-1,0,134348,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19772,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19773,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19774,3,7,0,0,0,0,0,0,-1,0,134071,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19775,15,0,7,0,0,0,0,0,-1,0,133649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19776,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19777,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19778,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19779,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19780,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19781,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19782,15,0,0,0,60,0,0,0,-1,0,135971,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19783,15,0,0,0,60,0,0,0,-1,0,135942,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19784,15,0,0,0,60,0,0,0,-1,0,136191,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19785,15,0,0,0,60,0,0,0,-1,0,136036,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19786,15,0,0,0,60,0,0,0,-1,0,136075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19787,15,0,0,0,60,0,0,0,-1,0,136153,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19788,15,0,0,0,60,0,0,0,-1,0,136164,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19789,15,0,0,0,60,0,0,0,-1,0,135923,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19790,15,0,0,0,60,0,0,0,-1,0,136080,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19802,12,0,0,0,58,0,0,0,-1,0,134085,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19803,15,0,0,0,0,0,0,0,-1,0,133896,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19804,15,0,0,0,0,0,0,0,-1,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19805,15,0,0,0,0,0,0,0,-1,0,133894,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19806,15,0,0,0,0,0,0,0,-1,0,133895,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19807,12,0,0,0,0,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19808,2,4,2,13,40,3,0,0,-1,0,133913,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,87,0,0,0,0 +19809,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +19810,2,15,1,13,58,3,0,0,-1,0,135637,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,51,0,0,0,0 +19811,2,1,1,17,58,1,0,0,-1,0,132392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,154,0,0,0,0 +19812,4,0,0,12,0,0,0,0,-1,0,134419,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19813,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19814,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19815,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19816,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19817,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19818,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19819,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19820,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19821,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19822,4,4,6,5,0,0,0,0,-1,0,132742,9,0,165,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19823,4,4,6,6,0,0,0,0,-1,0,132521,9,0,55,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19824,4,4,6,9,0,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19825,4,4,6,5,0,0,0,0,-1,0,132742,9,0,165,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19826,4,4,6,6,0,0,0,0,-1,0,132521,9,0,55,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19827,4,4,6,9,0,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19828,4,3,5,5,0,0,0,0,-1,0,132715,11,0,140,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19829,4,3,5,6,0,0,0,0,-1,0,132508,11,0,50,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19830,4,3,5,9,0,0,0,0,-1,0,132614,10,0,50,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19831,4,3,5,3,0,0,0,0,-1,0,135053,11,0,85,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19832,4,3,5,6,0,0,0,0,-1,0,132508,10,0,50,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19833,4,3,5,9,0,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19834,4,2,8,5,0,0,0,0,-1,0,132725,7,0,120,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19835,4,2,8,3,0,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19836,4,2,8,9,0,0,0,0,-1,0,132613,7,0,40,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19837,4,2,2,15,0,0,0,0,-1,0,135492,12,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,104,0,0,0,0 +19838,4,2,8,5,0,0,0,0,-1,0,132721,7,0,120,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19839,4,2,8,6,0,0,0,0,-1,0,132490,7,0,40,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19840,4,2,8,9,0,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19841,4,1,7,3,0,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19842,4,1,7,6,0,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19843,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19844,4,1,7,5,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19845,4,1,7,3,0,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19846,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19847,4,1,7,5,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19848,4,1,7,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19849,4,1,7,3,0,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19850,12,0,0,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19851,12,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19852,2,0,1,13,60,3,0,0,-1,0,132428,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19853,2,3,1,26,60,0,0,0,-1,0,135619,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +19854,2,8,1,17,60,1,0,0,-1,0,135365,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,295,0,0,0,0 +19855,4,4,6,7,60,0,0,0,-1,0,134697,9,0,120,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19856,4,0,3,2,60,0,0,0,-1,0,133309,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19857,4,1,7,16,60,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19858,12,0,0,0,0,0,0,0,-1,0,133791,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19859,2,15,1,13,60,3,0,0,-1,0,135666,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +19861,2,19,2,26,60,0,0,0,-1,0,135471,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +19862,4,6,6,14,60,4,0,0,-1,0,134958,9,0,120,0,0,0,0,0,0,2959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19863,4,0,3,11,60,0,0,0,-1,0,133389,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19864,2,7,1,21,60,3,0,0,-1,0,135316,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +19865,2,7,1,21,60,1,0,0,-1,0,135365,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +19866,2,7,1,22,60,1,0,0,-1,0,135365,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,106,0,0,0,0 +19867,2,7,1,13,60,3,0,0,-1,0,135364,8,0,105,0,0,0,0,0,0,80,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +19868,2,2,2,26,60,0,0,0,-1,0,135461,12,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,167,0,0,0,0 +19869,4,2,8,10,60,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19870,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19871,4,0,3,2,60,0,0,0,-1,0,133308,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19872,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19873,4,0,3,11,60,0,0,0,-1,0,133381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19874,2,6,1,17,60,1,0,0,-1,0,135582,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +19875,4,3,5,1,60,0,0,0,-1,0,133141,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19876,4,0,3,2,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19877,4,2,8,7,60,0,0,0,-1,0,134666,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19878,4,4,6,3,60,0,0,0,-1,0,135032,8,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19879,2,10,0,17,60,0,0,0,-1,0,135168,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,242,0,0,0,0 +19880,12,0,0,0,0,0,0,0,-1,0,133306,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19881,12,0,0,0,0,0,0,0,-1,0,134178,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19882,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19883,12,0,0,0,0,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19884,2,10,2,17,60,2,0,0,-1,0,135170,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,248,0,0,0,0 +19885,4,0,3,2,60,0,0,0,-1,0,133387,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19886,4,1,2,1,60,0,0,0,-1,0,133565,12,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19887,4,3,5,7,60,0,0,0,-1,0,134661,11,0,90,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19888,4,1,7,16,60,0,0,0,-1,0,133773,11,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19889,4,2,8,7,60,0,0,0,-1,0,134634,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19890,2,4,1,21,60,3,0,0,-1,0,133492,12,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +19891,4,0,7,23,60,7,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19892,4,2,8,8,60,0,0,0,-1,0,132556,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19893,4,0,3,11,60,0,0,0,-1,0,133388,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19894,4,4,6,10,60,0,0,0,-1,0,132948,8,0,45,0,0,0,0,0,0,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19895,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19896,2,13,1,21,60,7,0,0,-1,0,135592,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +19897,4,1,7,8,60,0,0,0,-1,0,132566,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19898,4,0,3,11,60,0,0,0,-1,0,133386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19899,4,1,7,7,60,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19900,2,1,1,17,60,1,0,0,-1,0,132427,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +19901,2,7,1,13,60,3,0,0,-1,0,135345,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +19902,15,5,0,0,60,0,0,0,-1,0,132242,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19903,2,15,1,21,60,3,0,0,-1,0,135667,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,80,0,0,0,0 +19904,4,3,5,5,60,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19905,4,0,3,11,60,0,0,0,-1,0,133388,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19906,4,2,8,8,60,0,0,0,-1,0,132547,7,0,50,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19907,4,1,7,16,60,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19908,2,4,1,13,60,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,145,0,0,0,0 +19909,2,10,2,17,60,2,0,0,-1,0,135172,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,222,0,0,0,0 +19910,2,13,1,22,60,7,0,0,-1,0,135592,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +19911,15,0,2,0,0,0,0,0,-1,0,134187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19912,4,0,3,11,60,0,0,0,-1,0,133381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19913,4,4,6,8,60,0,0,0,-1,0,132587,8,0,65,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19914,1,0,8,18,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19915,4,6,6,14,60,4,0,0,-1,0,134968,9,0,100,0,0,0,0,0,0,2312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19916,2,4,2,13,1,3,0,0,-1,0,136040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19917,4,0,1,23,1,0,0,0,-1,0,135474,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8,0,0,0,0 +19918,2,5,1,17,60,1,0,0,-1,0,133494,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,266,0,0,0,0 +19919,4,3,5,8,60,0,0,0,-1,0,132547,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19920,4,0,3,11,60,0,0,0,-1,0,133389,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19921,2,0,1,13,60,3,4990,0,-1,0,132399,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,134,0,0,0,0 +19922,4,0,3,23,60,7,0,0,-1,0,133728,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19923,4,0,3,2,60,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19924,2,15,1,13,1,3,0,0,-1,0,134298,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19925,4,0,3,11,60,0,0,0,-1,0,133386,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19926,4,1,7,5,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19927,2,19,2,26,60,0,0,0,-1,0,135468,24,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,170,0,0,0,0 +19928,4,2,8,3,60,0,0,0,-1,0,135040,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19929,4,1,7,10,60,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19930,4,0,3,12,60,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19931,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19932,12,0,0,0,0,0,0,0,-1,0,133624,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19933,15,0,0,0,0,0,0,0,-1,0,136168,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19934,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19935,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19936,15,0,0,0,0,0,0,0,-1,0,133856,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19937,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19938,15,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19939,12,0,3,0,0,0,0,0,-1,0,134806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19940,12,0,3,0,0,0,0,0,-1,0,134298,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19941,12,0,7,0,0,0,0,0,-1,0,134323,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19942,12,0,7,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19943,7,11,8,0,0,0,0,0,-1,0,136101,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19944,2,10,2,17,60,1,0,0,-1,0,132932,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,258,0,0,0,0 +19945,4,2,8,1,60,0,0,0,-1,0,133148,7,0,70,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19946,2,6,3,17,60,1,0,0,-1,0,135127,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,232,0,0,0,0 +19947,4,0,1,12,60,0,0,0,-1,0,133003,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19948,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19949,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19950,4,0,3,12,0,0,0,0,-1,0,133300,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19951,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19952,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19953,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19954,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19955,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19956,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19957,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19958,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19959,4,0,1,12,60,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19960,12,0,3,0,0,0,0,0,-1,0,134136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19961,2,4,1,13,60,3,0,0,-1,0,133479,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +19962,2,1,1,17,60,1,0,0,-1,0,132418,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,274,0,0,0,0 +19963,2,6,1,17,60,1,0,0,-1,0,135126,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,246,0,0,0,0 +19964,2,7,1,21,60,3,0,0,-1,0,135347,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +19965,2,15,1,21,60,3,0,0,-1,0,135347,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +19966,2,2,2,26,60,0,0,0,-1,0,135496,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,148,0,0,0,0 +19967,2,19,3,26,60,0,0,0,-1,0,135467,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +19968,2,7,1,13,60,3,0,0,-1,0,135271,8,0,90,0,0,0,0,0,0,60,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +19969,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19970,2,20,1,17,0,1,0,0,-1,0,132931,12,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,63,0,0,0,0 +19971,0,6,8,0,0,0,0,0,-1,0,132893,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19972,4,1,7,1,0,0,0,0,-1,0,133133,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19973,12,0,0,0,0,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19974,12,0,0,0,0,0,0,0,-1,0,132620,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19975,12,0,0,0,0,0,0,0,-1,0,133891,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19978,15,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19979,4,0,0,12,0,0,0,0,-1,0,136245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19980,2,15,1,13,1,3,0,0,-1,0,135639,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19981,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +19982,4,1,7,16,0,0,0,0,-1,0,133772,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19983,2,19,2,26,1,0,0,0,-1,0,135463,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +19984,4,2,0,1,0,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19986,4,2,0,1,0,0,0,0,-1,0,133148,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19987,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +19988,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +19989,4,0,0,23,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +19990,4,0,0,12,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19991,4,0,0,12,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19992,4,0,0,12,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19993,2,2,2,15,60,0,0,0,-1,0,135462,13,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +19994,0,5,0,0,0,0,0,0,-1,0,133997,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19995,0,5,0,0,0,0,0,0,-1,0,134016,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19996,0,5,0,0,0,0,0,0,-1,0,133905,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19997,0,0,0,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19998,4,2,7,1,60,0,0,0,-1,0,133146,7,0,60,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +19999,4,1,7,1,60,0,0,0,-1,0,133149,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20000,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20001,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20002,0,1,0,0,55,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20003,2,13,0,21,0,0,0,0,-1,0,134295,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +20004,0,1,3,0,53,0,0,0,-1,0,134860,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20005,2,13,0,22,0,0,0,0,-1,0,134295,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +20006,4,0,0,11,0,0,0,0,-1,0,133374,24,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +20007,0,1,3,0,40,0,0,0,-1,0,134825,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20008,0,1,3,0,47,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20009,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20010,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20011,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20012,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20013,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20014,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20015,15,0,0,0,0,0,0,0,-1,0,132914,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20016,15,0,0,0,0,0,0,0,-1,0,133732,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20017,15,0,3,0,0,0,0,0,-1,0,134413,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20018,12,0,0,0,0,0,0,0,-1,0,134353,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20019,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20020,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20021,12,0,0,0,0,0,0,0,-1,0,133348,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20022,15,0,1,0,0,0,0,0,-1,0,134242,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20023,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20024,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20025,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20026,12,0,0,0,0,0,0,0,-1,0,133970,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20027,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20028,12,0,2,0,0,0,0,0,-1,0,133848,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20029,12,0,0,0,0,0,0,0,-1,0,135231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20030,15,0,0,0,0,0,0,0,-1,0,135234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20031,0,5,0,0,55,0,0,0,-1,0,133998,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20032,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20033,4,1,7,20,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20034,4,1,7,20,0,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20035,2,15,0,13,0,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +20036,4,0,4,12,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20037,4,0,0,2,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20038,2,2,2,15,60,0,0,0,-1,0,135461,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +20039,4,4,8,8,60,0,866,0,-1,0,132551,8,0,75,0,0,0,0,0,0,621,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20040,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20041,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20042,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20043,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20044,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20045,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20046,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20047,4,1,7,6,58,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20048,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20049,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20050,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20051,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20052,4,2,8,8,58,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20053,4,2,8,8,58,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20054,4,1,7,8,58,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20055,4,3,6,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20056,4,3,6,3,60,0,0,0,-1,0,135050,10,0,85,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20057,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20058,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20059,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20060,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20061,4,1,7,3,60,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20062,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20063,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20064,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20065,0,7,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20066,0,7,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20067,0,7,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20068,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20069,2,10,2,17,60,2,0,0,-1,0,135466,13,0,120,0,0,0,0,0,0,100,0,0,0,0,0,0,156,0,0,0,0,262,0,0,0,0 +20070,2,15,1,21,60,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +20071,4,0,4,12,58,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20072,4,0,4,12,58,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20073,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20074,0,5,0,0,20,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20075,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20076,12,0,0,0,0,0,0,0,-1,0,133388,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20077,12,0,0,0,0,0,0,0,-1,0,133603,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20078,12,0,0,0,0,0,0,0,-1,0,135940,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20079,0,0,3,0,55,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20080,0,0,3,0,55,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20081,0,0,3,0,55,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20082,2,19,0,26,0,0,0,0,-1,0,135471,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +20083,2,6,0,17,0,1,0,0,-1,0,135125,8,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,168,0,0,0,0 +20084,15,0,8,12,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20085,15,0,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20086,15,0,1,0,0,0,0,0,-1,0,135427,8,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,0,0 +20087,15,0,3,0,0,0,0,0,-1,0,134314,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20088,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20089,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20090,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20091,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20092,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20093,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20094,4,1,7,8,48,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20095,4,1,7,8,38,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20096,4,1,7,8,28,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20097,4,1,7,6,48,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20098,4,1,7,6,38,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20099,4,1,7,6,28,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20100,4,2,8,8,48,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20101,4,2,8,8,38,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20102,4,2,8,8,28,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20103,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20104,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20105,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20106,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20107,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20108,4,3,6,6,28,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20109,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20110,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20111,4,3,6,8,28,0,0,0,-1,0,132585,11,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20112,4,2,8,8,48,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20113,4,2,8,8,38,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20114,4,2,8,8,28,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20115,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20116,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20117,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20118,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20119,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20120,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20121,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20122,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20123,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20124,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20125,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20126,4,3,6,6,28,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20127,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20128,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20129,4,3,6,8,28,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20130,4,0,0,12,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20131,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20132,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20134,4,3,5,1,0,0,0,0,-1,0,133159,10,0,85,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20135,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20136,4,4,6,5,60,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,1148,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +20137,4,4,6,10,60,0,0,0,-1,0,132944,11,0,55,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20138,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20139,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,1005,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +20140,4,4,6,3,60,0,0,0,-1,0,135046,11,0,100,0,0,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20141,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,789,0,8,8,8,8,7,0,0,0,0,0,0,0,0,0,0 +20142,4,4,6,6,60,0,0,0,-1,0,132498,11,0,55,0,0,0,0,0,0,646,0,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0 +20143,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20144,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20145,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20146,2,3,1,26,60,0,0,0,-1,0,135614,8,0,90,3,0,0,0,0,0,0,0,3,2,2,2,2,120,0,0,0,0,223,0,0,0,0 +20149,2,1,1,17,60,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,408,0,0,0,0 +20150,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20151,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20152,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20153,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20154,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20155,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20156,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20157,4,2,8,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20158,4,3,6,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20159,4,1,7,8,58,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20160,4,1,7,8,48,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20161,4,1,7,8,38,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20162,4,1,7,8,28,0,0,0,-1,0,132564,7,0,40,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20163,4,1,7,6,58,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20164,4,1,7,6,28,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20165,4,1,7,6,48,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20166,4,1,7,6,38,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20167,4,2,8,8,58,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20168,4,2,8,8,38,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20169,4,2,8,8,28,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20170,4,2,8,8,48,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20171,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20172,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20173,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20174,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20175,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20176,4,1,7,3,60,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20177,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20178,4,3,6,6,28,0,0,0,-1,0,132503,11,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20179,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20180,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20181,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20182,4,3,6,8,28,0,0,0,-1,0,132585,11,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20183,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20184,4,4,5,3,60,0,0,0,-1,0,135032,10,0,100,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20185,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20186,4,2,8,8,58,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20187,4,2,8,8,38,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20188,4,2,8,8,28,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20189,4,2,8,8,48,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20190,4,2,8,6,58,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20191,4,2,8,6,28,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20192,4,2,8,6,38,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20193,4,2,8,6,48,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20194,4,2,8,3,60,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20195,4,3,5,6,58,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20196,4,3,5,6,48,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20197,4,2,5,6,28,0,0,0,-1,0,132509,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20198,4,3,5,6,40,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20199,4,3,5,8,58,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20200,4,3,5,8,40,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20201,4,2,5,8,28,0,0,0,-1,0,132545,7,0,50,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20202,4,3,5,8,48,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20203,4,3,6,3,60,0,0,0,-1,0,135050,10,0,85,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20204,4,4,6,6,58,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20205,4,4,6,6,48,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20206,4,4,6,6,40,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20207,4,3,6,6,28,0,0,0,-1,0,132503,10,0,40,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20208,4,4,6,8,58,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20209,4,4,6,8,40,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20210,4,3,6,8,28,0,0,0,-1,0,132585,10,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20211,4,4,6,8,48,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20212,4,4,5,3,60,0,0,0,-1,0,135032,11,0,100,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20213,4,4,6,6,0,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20214,2,15,1,21,60,3,0,0,-1,0,135311,8,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +20215,4,3,5,6,0,0,0,0,-1,0,132501,10,0,40,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20216,4,2,8,6,0,0,0,0,-1,0,132503,7,0,35,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20217,4,1,7,6,0,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20218,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20219,4,1,7,16,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20220,2,10,2,17,60,2,0,0,-1,0,135466,13,0,120,0,0,0,0,0,0,100,0,0,0,0,0,0,156,0,0,0,0,262,0,0,0,0 +20221,15,0,0,0,60,0,0,0,-1,0,134154,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20222,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20223,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20224,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20225,0,0,0,0,45,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20226,0,0,0,0,25,0,0,0,-1,0,133951,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20227,0,0,0,0,35,0,0,0,-1,0,133950,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20228,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20229,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20230,0,0,0,0,0,0,0,0,-1,0,134143,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20231,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20232,0,7,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20233,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20234,0,7,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20235,0,7,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20236,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20237,0,7,7,0,35,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20238,2,1,1,17,60,1,0,0,-1,0,132392,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +20239,4,4,6,9,60,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20240,4,4,6,5,60,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20241,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20242,4,4,6,10,60,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20243,0,7,7,0,45,0,0,0,-1,0,133682,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20244,0,7,7,0,25,0,0,0,-1,0,133672,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20245,2,3,1,26,60,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +20246,4,4,6,1,60,0,0,0,-1,0,133077,11,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20247,4,4,6,7,60,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20248,4,0,3,2,60,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20249,4,4,6,3,60,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20250,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20251,4,4,6,8,60,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20252,4,4,6,6,60,0,0,0,-1,0,132498,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20253,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20254,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20255,4,2,8,8,0,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20256,12,0,7,0,0,0,0,0,-1,0,134411,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20257,4,3,5,10,60,0,0,0,-1,0,132964,10,0,50,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20258,2,10,2,17,60,2,0,0,-1,0,135171,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,174,0,0,0,0 +20259,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20260,4,3,5,7,60,0,0,0,-1,0,134658,11,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20261,4,2,8,6,60,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20262,4,3,5,8,60,0,0,0,-1,0,132554,11,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20263,4,4,6,1,60,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20264,4,4,5,10,60,0,0,0,-1,0,132944,10,0,55,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20265,4,4,5,8,60,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20266,4,4,5,7,60,0,0,0,-1,0,134680,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20267,4,2,8,6,60,0,0,0,-1,0,132492,7,0,40,0,0,0,0,0,0,165,0,8,8,8,8,7,0,0,0,0,0,0,0,0,0,0 +20268,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20269,4,2,8,9,60,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,128,0,4,4,4,4,5,0,0,0,0,0,0,0,0,0,0 +20270,4,2,8,1,60,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20271,4,2,8,10,60,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20272,4,2,8,7,60,0,0,0,-1,0,134582,7,0,90,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20273,4,2,8,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20274,4,2,8,5,60,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20275,4,0,5,2,60,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,4,5,4,4,4,0,0,0,0,0,0,0,0,0,0 +20276,4,1,7,16,60,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,77,0,5,4,4,4,4,0,0,0,0,0,0,0,0,0,0 +20277,4,0,5,11,60,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20278,2,2,2,15,60,0,0,0,-1,0,135492,12,0,90,2,0,0,0,0,0,0,0,3,3,3,3,3,120,0,0,0,0,223,0,0,0,0 +20279,2,15,1,13,60,7,0,0,-1,0,132797,8,0,75,0,0,0,0,0,0,0,0,2,2,2,2,3,104,0,0,0,0,194,0,0,0,0 +20280,2,1,1,17,58,1,0,0,-1,0,132392,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +20281,4,4,6,9,58,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20282,4,4,6,5,58,0,0,0,-1,0,132751,11,0,115,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20283,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20284,4,4,6,10,58,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20285,2,3,1,26,58,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +20286,4,4,6,1,58,0,0,0,-1,0,133077,11,0,70,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20287,4,4,6,7,58,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20288,4,0,3,2,58,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20289,4,4,6,3,58,0,0,0,-1,0,135046,11,0,70,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20290,4,0,5,11,58,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20291,4,4,6,8,58,0,0,0,-1,0,132585,11,0,55,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20292,4,4,6,6,58,0,0,0,-1,0,132498,11,0,40,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20295,4,3,5,7,55,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,310,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0 +20296,4,3,5,10,51,0,0,0,-1,0,132946,10,0,40,0,0,0,0,0,0,208,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0 +20297,4,2,8,6,60,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20298,4,2,8,8,60,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20299,2,2,2,15,60,0,0,0,-1,0,135492,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +20300,4,2,8,9,60,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20301,4,2,8,1,60,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20302,4,1,7,16,60,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20303,2,15,1,13,60,7,0,0,-1,0,132797,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,124,0,0,0,0 +20304,4,2,8,10,60,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20305,4,0,5,2,60,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20306,4,2,8,7,60,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20307,4,0,5,11,60,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20308,4,2,8,3,60,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20309,4,2,8,5,60,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20310,12,0,0,0,25,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20311,4,2,8,6,58,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20312,4,2,8,8,58,0,0,0,-1,0,132542,7,0,45,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20313,2,2,2,15,58,0,0,0,-1,0,135492,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +20314,4,2,8,9,58,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20315,4,2,8,1,58,0,0,0,-1,0,133143,7,0,50,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20316,4,1,7,16,58,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20317,2,15,1,13,58,7,0,0,-1,0,132797,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +20318,4,2,8,10,58,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20319,4,0,5,2,58,0,0,0,-1,0,133440,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20320,4,2,8,7,58,0,0,0,-1,0,134582,7,0,65,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20321,4,0,5,11,58,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20322,4,2,8,3,58,0,0,0,-1,0,135038,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20323,4,2,8,5,58,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20324,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20325,4,1,7,9,60,0,0,0,-1,0,133365,7,0,35,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20326,4,1,7,8,60,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20327,4,1,7,1,60,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20328,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20329,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20330,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20331,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20332,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20333,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20334,2,10,2,17,60,2,0,0,-1,0,135169,12,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +20335,2,19,2,26,60,0,0,0,-1,0,135467,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,225,0,0,0,0 +20336,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20337,0,8,0,22,0,0,0,0,-1,0,135724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +20338,4,1,7,6,60,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20339,4,1,7,9,60,0,0,0,-1,0,133365,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20340,4,1,7,8,60,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20341,4,1,7,1,60,0,0,0,-1,0,132768,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20342,4,1,7,10,60,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20343,4,1,7,7,60,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20344,4,1,7,3,60,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20345,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20346,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20347,4,1,7,20,60,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20348,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20349,2,10,2,17,60,2,0,0,-1,0,135169,12,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,202,0,0,0,0 +20350,2,19,2,26,60,0,0,0,-1,0,135467,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,139,0,0,0,0 +20351,4,1,7,6,58,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20352,4,1,7,9,58,0,0,0,-1,0,133365,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20353,4,1,7,8,58,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20354,4,1,7,1,58,0,0,0,-1,0,132768,7,0,45,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20355,4,1,7,10,58,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20356,4,1,7,7,58,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20357,4,1,7,3,58,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20358,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20359,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20360,4,1,7,20,58,0,0,0,-1,0,132666,7,0,70,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20361,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20362,2,10,2,17,58,2,0,0,-1,0,135169,12,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,159,0,0,0,0 +20363,2,19,2,26,58,0,0,0,-1,0,135467,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,95,0,0,0,0 +20364,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20367,15,0,4,0,0,0,0,0,-1,0,132595,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20368,2,2,2,15,60,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,59,0,0,0,0 +20369,4,3,6,10,0,0,0,0,-1,0,132964,11,0,40,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20370,2,10,2,17,60,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,240,0,0,0,0,0,0,186,0,0,0,0,280,0,0,0,0 +20371,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20372,2,10,2,17,60,2,0,0,-1,0,135166,13,0,120,0,0,0,0,0,0,170,0,0,0,0,0,0,146,0,0,0,0,219,0,0,0,0 +20373,12,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20374,12,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20375,12,0,0,0,0,0,0,0,-1,0,132274,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20376,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20377,12,0,0,0,0,0,0,0,-1,0,134298,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20378,12,0,0,0,1,0,0,0,-1,0,134419,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20379,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20380,4,3,5,5,60,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,496,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +20381,7,6,0,0,0,0,0,0,-1,0,134313,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20382,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20383,12,0,0,0,0,0,0,0,-1,0,136140,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20384,12,0,0,0,0,0,0,0,-1,0,134315,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20385,12,0,0,0,0,0,0,0,-1,0,133708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20387,12,0,0,0,0,0,0,0,-1,0,134743,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20388,0,0,0,0,0,0,0,0,-1,0,133982,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20389,0,0,0,0,0,0,0,0,-1,0,133986,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20390,0,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20391,4,0,0,1,0,0,0,0,-1,0,134164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20392,4,0,0,1,0,0,0,0,-1,0,134165,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20393,15,0,8,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20394,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20395,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20396,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20397,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20398,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20399,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20400,1,0,0,18,0,0,0,0,-1,0,134015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20401,12,0,0,0,0,0,0,0,-1,0,134458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20402,15,0,0,0,0,0,0,0,-1,0,132093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20403,15,0,0,0,0,0,0,0,-1,0,135971,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20404,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20405,12,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20406,4,1,7,3,60,0,0,0,-1,0,135036,7,0,45,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20407,4,1,7,20,60,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20408,4,1,7,1,60,0,0,0,-1,0,133129,7,0,45,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20409,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20410,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20411,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20412,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20413,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20414,0,0,0,0,0,0,0,0,-1,0,135474,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20415,15,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20416,12,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20417,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20418,12,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20419,12,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20420,12,0,0,0,0,0,0,0,-1,0,134458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20422,12,0,0,2,0,0,0,0,-1,0,133281,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20423,7,11,0,0,1,0,0,0,-1,0,133708,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20424,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20425,2,10,2,17,18,2,0,0,-1,0,135162,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +20426,4,0,4,11,18,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20427,4,1,7,16,18,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20428,4,1,7,16,18,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20429,4,0,4,11,18,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20430,2,7,1,13,18,3,0,0,-1,0,135341,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +20431,4,0,4,11,18,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20432,12,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20433,12,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20434,2,10,2,17,18,2,0,0,-1,0,135165,13,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +20435,12,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20436,12,0,0,0,0,0,0,0,-1,0,134457,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20437,2,2,2,15,18,0,0,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +20438,2,2,2,15,18,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +20439,4,0,4,11,18,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20440,2,7,1,13,18,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +20441,2,15,1,13,18,3,0,0,-1,0,135651,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +20442,4,0,4,2,18,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20443,2,15,1,13,18,3,0,0,-1,0,135650,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +20444,4,0,4,2,18,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20445,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20446,4,0,5,11,0,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20447,12,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20448,12,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20449,12,0,0,0,0,0,0,0,-1,0,135473,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20450,12,0,0,0,0,0,0,0,-1,0,135473,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20451,12,0,0,11,60,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20452,0,5,0,0,45,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20453,12,0,0,0,0,0,0,0,-1,0,133000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20454,12,0,0,0,0,0,0,0,-1,0,134946,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20455,12,0,0,0,0,0,0,0,-1,0,134945,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20456,12,0,0,0,0,0,0,0,-1,0,134944,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20457,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20458,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20459,12,0,0,0,0,0,0,0,-1,0,134340,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20460,15,0,0,0,58,0,0,0,-1,0,133464,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20461,15,0,0,0,58,0,0,0,-1,0,133463,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20463,12,0,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20464,15,0,0,0,0,0,0,0,-1,0,136192,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20465,12,0,0,0,0,0,0,0,-1,0,136098,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20466,12,0,0,0,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20467,12,0,0,0,0,0,0,0,-1,0,134939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20468,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20469,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20470,0,0,0,0,0,0,0,0,-1,0,134333,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20471,0,0,0,0,0,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20472,0,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20473,0,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20474,1,0,0,18,0,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20475,0,8,2,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20476,4,3,5,9,57,0,0,0,-1,0,132611,10,0,40,0,0,0,0,0,0,160,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +20477,4,3,5,10,57,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,228,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20478,4,3,5,5,57,0,0,0,-1,0,132742,11,0,120,0,0,0,0,0,0,365,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20479,4,3,5,5,57,0,0,0,-1,0,132717,11,0,120,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20480,4,3,5,10,57,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20481,4,3,5,9,57,0,0,0,-1,0,132604,10,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20482,12,0,3,0,0,0,0,0,-1,0,132877,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20483,15,0,0,0,0,0,0,0,-1,0,132884,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20485,12,0,0,0,0,0,0,0,-1,0,135824,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20487,2,10,0,17,60,2,0,0,-1,0,135158,13,0,120,0,0,0,0,0,0,0,0,0,10,0,0,0,187,0,0,0,0,282,0,0,0,0 +20488,2,2,2,15,60,0,0,0,-1,0,135489,13,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +20489,12,0,0,0,0,0,0,0,-1,0,132767,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20490,12,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20491,12,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20492,12,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20493,12,0,0,0,0,0,0,0,-1,0,133983,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20494,12,0,0,0,0,0,0,0,-1,0,134123,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20495,12,0,0,0,0,0,0,0,-1,0,134123,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20496,12,0,0,0,0,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20497,12,0,0,0,0,0,0,0,-1,0,133985,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20498,7,6,0,0,0,0,0,0,-1,0,134315,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20499,15,0,0,0,0,0,0,0,-1,0,134319,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20500,7,6,0,0,0,0,0,0,-1,0,134316,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20501,7,6,0,0,0,0,0,0,-1,0,134307,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20502,4,6,2,14,0,4,0,0,-1,0,134957,13,0,100,0,0,0,0,0,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20503,4,0,0,12,0,0,0,0,-1,0,135463,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20504,2,8,1,17,47,1,0,0,-1,0,135349,9,0,100,0,0,0,0,0,0,0,0,10,0,10,10,0,118,0,0,0,0,178,0,0,0,0 +20505,4,0,5,11,0,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20506,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20507,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20508,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20509,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20510,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20511,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20512,4,0,0,12,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20513,12,0,0,0,1,0,0,0,-1,0,133438,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20514,12,0,0,0,1,0,0,0,-1,0,133378,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20515,12,0,0,0,1,0,0,0,-1,0,135150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20516,0,5,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20517,4,4,6,3,0,0,0,0,-1,0,135047,11,0,80,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20518,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20519,12,0,0,0,0,0,0,0,-1,0,133168,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20520,7,11,2,0,0,0,0,0,-1,0,136192,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20521,4,4,6,1,0,0,0,0,-1,0,133069,9,0,80,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20522,2,10,2,17,0,2,0,0,-1,0,135157,13,0,100,0,0,0,0,0,0,110,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +20524,4,2,0,7,0,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,132,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +20525,4,0,0,12,0,0,0,0,-1,0,136069,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20526,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20527,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20528,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20530,4,1,7,20,0,0,0,0,-1,0,132651,7,0,80,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20531,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20532,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20533,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20534,4,0,0,12,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20535,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20536,2,10,2,17,0,2,0,0,8,0,135358,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +20537,4,1,7,8,58,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,61,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20538,4,1,7,7,58,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,78,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20539,4,1,7,6,58,0,0,0,-1,0,132503,7,0,30,0,0,0,0,0,0,50,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20540,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20541,12,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20542,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20543,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20544,12,0,0,0,0,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20545,12,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20546,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20547,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20548,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20549,4,4,0,10,58,0,0,0,-1,0,132961,0,0,45,0,0,0,0,0,0,410,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +20550,4,4,6,5,58,0,0,0,-1,0,132741,11,0,135,0,0,0,0,0,0,657,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20551,4,4,6,1,58,0,0,0,-1,0,133078,11,0,80,0,0,0,0,0,0,534,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +20552,12,0,0,0,0,0,0,0,-1,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20553,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20554,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20555,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20556,2,10,2,17,0,2,0,0,-1,0,135225,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,135,0,0,0,0 +20557,0,0,0,0,0,0,0,0,-1,0,134015,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20558,0,0,0,0,0,0,0,0,-1,0,134420,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20559,0,0,0,0,0,0,0,0,-1,0,133282,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20560,0,0,0,0,0,0,0,0,-1,0,133308,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20561,4,0,0,1,0,0,0,0,-1,0,134159,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20562,4,0,0,1,0,0,0,0,-1,0,134160,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20563,4,0,0,1,0,0,0,0,-1,0,134162,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20564,4,0,0,1,0,0,0,0,-1,0,132089,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20565,4,0,0,1,0,0,0,0,-1,0,134167,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20566,4,0,0,1,0,0,0,0,-1,0,134173,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20567,4,0,0,1,0,0,0,0,-1,0,134178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20568,4,0,0,1,0,0,0,0,-1,0,134177,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20569,4,0,0,1,0,0,0,0,-1,0,134171,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20570,4,0,0,1,0,0,0,0,-1,0,132366,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20571,4,0,0,1,0,0,0,0,-1,0,134175,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20572,4,0,0,1,0,0,0,0,-1,0,134174,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20573,4,0,0,1,0,0,0,0,-1,0,134179,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20574,4,0,0,1,0,0,0,0,-1,0,134180,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20575,4,2,8,5,15,0,0,0,-1,0,132686,7,0,70,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20576,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20577,2,7,1,13,60,3,0,0,-1,0,135354,8,0,105,0,0,0,0,0,0,70,0,0,0,0,0,0,99,0,0,0,0,185,0,0,0,0 +20578,2,15,1,13,60,3,0,0,-1,0,135658,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +20579,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,62,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20580,2,4,1,13,60,3,0,0,-1,0,133497,8,0,105,0,0,0,0,0,0,90,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +20581,2,10,2,17,60,2,0,0,-1,0,135173,13,0,120,0,0,0,0,0,0,0,0,0,20,0,0,0,142,0,0,0,0,213,0,0,0,0 +20582,4,0,3,23,60,0,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20583,4,0,0,1,0,0,0,0,-1,0,134160,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20584,4,0,0,1,0,0,0,0,-1,0,134165,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20585,4,0,0,1,0,0,0,0,-1,0,134167,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20586,4,0,0,1,0,0,0,0,-1,0,134162,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20587,4,0,0,1,0,0,0,0,-1,0,134171,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20588,4,0,0,1,0,0,0,0,-1,0,134175,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20589,4,0,0,1,0,0,0,0,-1,0,134178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20590,4,0,0,1,0,0,0,0,-1,0,134180,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20591,4,0,0,1,0,0,0,0,-1,0,134159,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20592,4,0,0,1,0,0,0,0,-1,0,134164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20593,4,0,0,1,0,0,0,0,-1,0,134173,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20594,4,0,0,1,0,0,0,0,-1,0,132089,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20595,4,0,0,1,0,0,0,0,-1,0,132366,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20596,4,0,0,1,0,0,0,0,-1,0,134174,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20597,4,0,0,1,0,0,0,0,-1,0,134177,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20598,4,0,0,1,0,0,0,0,-1,0,134179,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20599,2,18,2,26,60,0,0,0,-1,0,135540,12,0,90,2,0,0,0,0,0,0,0,0,7,0,0,0,124,0,0,0,0,186,0,0,0,0 +20600,4,0,4,11,60,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +20601,15,0,0,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20602,15,0,0,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20603,15,0,0,0,0,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20604,12,0,0,0,0,0,0,0,-1,0,133860,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20605,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20606,15,0,0,0,0,0,0,0,-1,0,132927,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20607,15,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20608,15,0,0,0,0,0,0,0,-1,0,132925,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20609,15,0,0,0,0,0,0,0,-1,0,135225,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20610,15,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20611,15,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20612,15,0,0,0,0,0,0,0,-1,0,135257,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20613,15,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20614,15,0,0,0,0,0,0,0,-1,0,134437,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20615,4,2,8,9,60,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,106,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0 +20616,4,4,1,9,60,0,0,0,-1,0,132613,11,0,55,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20617,4,3,5,7,60,0,0,0,-1,0,134660,10,0,105,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20618,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20619,4,4,6,8,60,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,639,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20620,15,0,3,0,0,0,0,0,-1,0,135241,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20621,4,3,5,8,60,0,0,0,-1,0,132554,10,0,70,0,0,0,0,0,0,355,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20622,4,0,4,2,60,0,0,0,-1,0,133305,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20623,4,2,8,1,60,0,0,0,-1,0,133119,7,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20624,4,0,1,11,60,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20625,4,1,7,6,60,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,70,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20626,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20627,4,2,8,7,60,0,0,0,-1,0,134636,7,0,90,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20628,4,2,8,1,60,0,0,0,-1,0,133145,7,0,70,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20629,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20630,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20631,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20632,4,0,4,11,60,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20633,4,2,8,3,60,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,184,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20634,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20635,4,1,7,20,60,0,0,0,-1,0,132680,7,0,100,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20636,4,0,3,12,60,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20637,4,4,6,3,60,0,0,0,-1,0,135042,11,0,100,0,0,0,0,0,0,697,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20638,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20639,4,4,6,7,60,0,0,0,-1,0,134681,11,0,120,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20640,4,4,6,1,0,0,0,0,-1,0,133122,11,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20641,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20642,4,1,7,5,0,0,0,0,-1,0,132688,7,0,70,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20643,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20644,12,0,0,0,60,0,0,0,-1,0,136163,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20645,4,0,4,2,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0 +20646,2,2,2,15,0,0,0,0,-1,0,135491,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +20647,2,15,1,21,0,3,0,0,-1,0,135656,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +20648,2,4,1,13,0,3,0,0,-1,0,133059,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +20649,4,0,3,2,0,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20650,4,4,6,10,0,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20651,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20652,4,1,7,8,55,0,8654,0,-1,0,132567,7,0,35,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20653,4,4,6,10,55,0,8657,0,-1,0,132963,11,0,40,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20654,2,10,2,17,55,2,0,0,-1,0,135148,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,179,0,0,0,0 +20655,4,1,7,10,55,0,8654,0,-1,0,132966,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20656,4,3,5,8,55,0,8675,0,-1,0,132552,10,0,50,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20657,2,15,1,13,55,3,0,0,-1,0,135663,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +20658,4,2,8,8,55,0,8655,0,-1,0,132541,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20659,4,3,5,10,55,0,8659,0,-1,0,132966,10,0,35,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20660,2,6,1,17,55,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,228,0,0,0,0 +20661,4,2,8,10,55,0,8655,0,-1,0,132939,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20662,4,4,6,8,55,0,8657,0,-1,0,132586,11,0,55,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20663,2,2,2,15,55,0,0,0,-1,0,135498,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +20664,4,1,7,6,60,0,8660,0,-1,0,132495,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20665,4,2,8,7,57,0,8664,0,-1,0,134630,7,0,75,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20666,2,4,1,21,57,3,0,0,-1,0,133051,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +20667,4,2,8,6,60,0,8658,0,-1,0,132519,7,0,30,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20668,4,3,5,7,57,0,8663,0,-1,0,134668,10,0,90,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20669,2,8,1,17,57,1,0,0,-1,0,135345,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,229,0,0,0,0 +20670,4,3,5,6,60,0,8659,0,-1,0,132505,10,0,35,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20671,4,4,6,7,57,0,8662,0,-1,0,134688,11,0,100,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20672,2,19,2,26,57,0,0,0,-1,0,135474,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +20673,4,4,7,6,60,0,8661,0,-1,0,132515,7,0,40,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20674,4,1,7,7,57,0,8665,0,-1,0,134598,7,0,65,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20675,2,0,1,13,57,3,0,0,-1,0,132404,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +20676,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20677,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20678,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20679,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20680,4,3,5,3,60,0,8672,0,-1,0,135047,10,0,70,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20681,4,2,8,9,60,0,8667,0,-1,0,132609,7,0,35,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20682,4,0,4,11,60,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20683,4,4,6,3,60,0,8670,0,-1,0,135053,11,0,80,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20684,4,3,5,9,60,0,8668,0,-1,0,132606,10,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20685,4,0,4,2,60,0,0,0,-1,0,133308,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20686,4,1,7,3,60,0,8673,0,-1,0,135056,7,0,50,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20687,4,4,6,9,60,0,8669,0,-1,0,132618,11,0,45,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20688,4,6,6,14,60,4,0,0,-1,0,134961,9,0,120,0,0,0,0,0,0,2836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20689,4,2,8,3,60,0,8671,0,-1,0,135039,7,0,60,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20690,4,1,7,9,60,0,8666,0,-1,0,132611,7,0,30,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20691,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20692,4,0,7,11,55,0,3499,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20693,4,1,7,16,55,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20694,4,0,3,23,55,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20695,4,0,4,2,58,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20696,2,5,1,17,58,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,252,0,0,0,0 +20697,4,1,7,16,58,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20698,2,7,3,21,58,3,0,0,-1,0,135323,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +20699,4,4,6,7,0,0,0,0,-1,0,134694,11,0,100,0,0,0,0,0,0,575,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20700,4,4,6,7,0,0,0,0,-1,0,134694,11,0,100,0,0,0,0,0,0,575,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20701,4,3,5,7,0,0,0,0,-1,0,134660,11,0,90,0,0,0,0,0,0,324,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20702,4,3,5,7,0,0,0,0,-1,0,134660,11,0,90,0,0,0,0,0,0,324,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20703,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,154,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20704,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,154,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20705,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20706,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20707,4,1,7,7,0,0,0,0,-1,0,134600,7,0,65,0,0,0,0,0,0,78,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +20708,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20709,0,5,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20710,4,4,6,8,0,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20711,4,4,6,8,0,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20712,4,3,5,10,0,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20713,4,3,5,10,0,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20714,4,2,8,8,0,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20715,4,2,8,8,0,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20716,4,1,7,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20717,4,1,7,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20718,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20719,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20720,2,15,1,21,60,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +20721,4,0,4,11,60,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20722,2,3,2,26,60,0,0,0,-1,0,135612,12,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,153,0,0,0,0 +20723,2,0,1,13,0,3,0,0,-1,0,134709,12,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,130,0,0,0,0 +20724,2,10,2,17,0,2,0,0,-1,0,135144,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +20725,7,12,2,0,0,0,0,0,-1,0,132880,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20726,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20727,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20728,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20729,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20730,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20731,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20732,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20733,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20734,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20735,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20736,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20737,15,0,0,0,0,0,0,0,-1,0,134337,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20738,2,4,1,13,1,7,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +20739,12,0,1,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +20740,12,0,0,0,0,0,0,0,-1,0,133280,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +20741,15,0,0,0,45,0,0,0,-1,0,136232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20742,15,0,0,0,50,0,0,0,-1,0,135816,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20743,12,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20744,0,8,0,0,5,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20745,0,8,0,0,20,0,0,0,-1,0,134878,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20746,7,12,0,0,30,0,0,0,-1,0,134725,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20747,7,12,0,0,40,0,0,0,-1,0,134879,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20748,0,8,0,0,45,0,0,0,-1,0,134722,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20749,0,8,0,0,45,0,0,0,-1,0,134727,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20750,0,8,0,0,40,0,0,0,-1,0,134726,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20752,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20753,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20754,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20755,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20756,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20757,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20758,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20759,12,0,1,0,0,0,0,0,-1,0,133040,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20760,12,0,0,0,0,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20761,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20762,12,0,1,0,0,0,0,0,-1,0,134089,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20763,15,0,0,0,0,0,0,0,-1,0,132363,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20764,12,0,0,0,0,0,0,0,-1,0,134159,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20765,12,0,7,0,4,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20766,15,0,0,0,0,0,0,0,-1,0,133642,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20767,15,0,0,0,0,0,0,0,-1,0,133642,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20768,15,0,0,0,0,0,0,0,-1,0,133645,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20769,15,2,0,0,0,0,0,0,-1,0,132107,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20770,15,0,0,0,0,0,0,0,-1,0,132108,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20771,12,0,0,0,1,0,0,0,-1,0,134579,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20772,12,0,0,0,0,0,0,0,-1,0,134364,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20773,4,3,5,1,0,0,0,0,-1,0,133072,10,0,60,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20774,4,3,5,3,0,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20775,4,3,5,5,0,0,0,0,-1,0,132633,10,0,100,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20776,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20777,4,3,5,10,0,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20778,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20779,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20780,4,3,5,8,0,0,0,0,-1,0,132592,10,0,50,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20781,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20782,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20783,4,0,0,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20784,2,1,1,17,0,1,0,0,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,233,0,0,0,0 +20785,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20786,4,3,5,9,0,0,0,0,-1,0,132601,10,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20787,4,3,5,8,0,0,0,0,-1,0,132592,10,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20788,4,3,5,1,0,0,0,0,-1,0,133072,10,0,60,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20789,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20790,4,3,5,10,0,0,0,0,-1,0,132945,10,0,35,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20791,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20792,4,0,3,2,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20793,4,3,5,3,0,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20794,4,0,0,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20795,4,3,5,5,0,0,0,0,-1,0,132633,10,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20796,2,1,1,17,0,1,0,0,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,296,0,0,0,0 +20797,12,0,1,0,0,0,0,0,-1,0,132494,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20798,12,0,0,0,1,0,0,0,-1,0,132836,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20799,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20800,12,0,0,0,0,0,0,0,-1,0,133303,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20801,12,0,0,0,0,0,0,0,-1,0,133277,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20802,12,0,0,0,0,0,0,0,-1,0,133439,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20803,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20804,12,0,0,0,0,0,0,0,-1,0,134144,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20805,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20806,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20807,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20808,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20809,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20810,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20812,15,0,8,0,0,0,0,0,-1,0,134349,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20813,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20814,15,0,1,0,60,0,0,0,-1,0,135427,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20815,7,11,1,0,1,5,0,0,-1,0,132595,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20816,7,4,2,0,0,0,0,0,-1,0,133243,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20817,7,4,2,0,0,0,0,0,-1,0,133237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20818,4,0,1,11,17,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20819,7,4,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20820,4,0,0,11,17,0,0,0,-1,0,133370,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20821,4,0,0,11,15,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20822,7,4,0,0,0,0,0,0,-1,0,134118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20823,4,0,5,11,19,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20824,7,4,1,0,1,5,0,0,-1,0,135243,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20825,7,4,0,0,0,0,0,0,-1,0,134074,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20826,4,0,1,11,22,1,3476,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20827,4,0,5,11,21,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20828,4,0,4,11,23,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20829,7,4,0,0,0,0,0,0,-1,0,134090,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20830,4,0,3,2,25,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20831,4,0,3,2,30,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20832,4,1,5,1,26,0,0,0,-1,0,132771,10,0,50,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20833,4,0,1,11,27,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20834,7,3,8,0,0,0,0,0,-1,0,134440,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20835,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +20836,2,15,1,13,0,3,0,0,-1,0,135650,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +20837,2,0,1,21,0,1,0,0,-1,0,132392,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,9,0,0,0,0 +20838,2,2,2,15,0,0,0,0,-1,0,135490,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +20839,2,10,2,17,0,2,0,0,-1,0,135138,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +20840,2,4,1,21,0,3,0,0,-1,0,133478,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +20841,4,6,1,14,0,4,0,0,-1,0,134961,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20842,15,0,8,0,0,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20843,15,0,8,0,0,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20844,0,8,3,0,60,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20845,15,0,8,0,0,0,0,0,-1,0,134311,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20846,15,0,8,0,0,0,0,0,-1,0,133884,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20847,15,0,8,0,0,0,0,0,-1,0,134096,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20848,15,0,8,0,0,0,0,0,-1,0,132857,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20849,2,7,1,13,1,3,0,0,-1,0,135274,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +20850,2,0,1,13,1,3,0,0,-1,0,132410,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +20851,2,4,2,13,1,3,0,0,-1,0,133485,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +20852,2,15,1,13,1,3,0,0,-1,0,135648,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +20853,2,10,2,17,1,2,0,0,-1,0,135139,13,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,8,0,0,0,0 +20854,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20855,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20856,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20857,0,5,0,0,1,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20858,12,0,1,0,0,0,0,0,-1,0,134936,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20859,12,0,1,0,0,0,0,0,-1,0,134933,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20860,12,0,1,0,0,0,0,0,-1,0,134935,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20861,12,0,1,0,0,0,0,0,-1,0,134930,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20862,12,0,1,0,0,0,0,0,-1,0,134932,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20863,12,0,1,0,0,0,0,0,-1,0,134931,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20864,12,0,1,0,0,0,0,0,-1,0,134929,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20865,12,0,1,0,0,0,0,0,-1,0,2241756,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20866,12,0,1,0,0,0,0,0,-1,0,134898,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20867,12,0,1,0,0,0,0,0,-1,0,134905,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20868,12,0,1,0,0,0,0,0,-1,0,134901,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20869,12,0,1,0,0,0,0,0,-1,0,134897,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20870,12,0,1,0,0,0,0,0,-1,0,134900,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20871,12,0,1,0,0,0,0,0,-1,0,134904,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20872,12,0,1,0,0,0,0,0,-1,0,134910,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20873,12,0,1,0,0,0,0,0,-1,0,134896,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20874,12,0,1,0,0,0,0,0,-1,0,134909,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20875,12,0,1,0,0,0,0,0,-1,0,134903,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20876,12,0,1,0,0,0,0,0,-1,0,134899,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20877,12,0,1,0,0,0,0,0,-1,0,134907,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20878,12,0,1,0,0,0,0,0,-1,0,134906,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20879,12,0,1,0,0,0,0,0,-1,0,134902,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20881,12,0,1,0,0,0,0,0,-1,0,134908,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20882,12,0,1,0,0,0,0,0,-1,0,134911,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20883,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20884,12,0,1,0,0,0,0,0,-1,0,134894,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20885,12,0,1,0,0,0,0,0,-1,0,134883,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20886,12,0,1,0,0,0,0,0,-1,0,134886,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20887,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20888,12,0,1,0,0,0,0,0,-1,0,134893,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20889,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20890,12,0,1,0,0,0,0,0,-1,0,134885,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20891,4,1,7,20,1,0,0,0,-1,0,132674,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20892,4,1,7,20,1,0,0,0,-1,0,132657,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20893,4,1,7,20,1,0,0,0,-1,0,132679,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20894,4,1,7,7,1,0,0,0,-1,0,134596,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20895,4,0,7,8,0,0,0,0,-1,0,132543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20896,4,1,7,7,0,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20897,4,0,7,4,0,0,0,0,-1,0,132724,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20898,4,1,7,8,0,0,0,0,-1,0,132539,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20899,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20900,4,1,7,8,0,0,0,0,-1,0,132540,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20901,4,0,7,4,0,0,0,0,-1,0,132722,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20902,4,1,7,7,1,0,0,0,-1,0,134655,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20903,4,1,7,8,0,0,0,0,-1,0,132547,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20904,4,3,7,5,0,0,0,0,-1,0,132635,7,0,45,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20906,4,0,1,11,10,0,0,0,-1,0,133355,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20907,4,0,1,11,17,0,0,0,-1,0,133356,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20908,15,3,0,0,0,0,0,0,-1,0,135434,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20909,4,0,3,2,25,0,0,0,-1,0,133309,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20910,2,2,2,15,1,0,0,0,-1,0,135490,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +20911,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20912,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20913,4,6,1,14,1,4,0,0,-1,0,134955,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20914,4,3,5,6,1,0,0,0,-1,0,132495,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20915,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20916,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20917,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20918,4,3,5,7,1,0,0,0,-1,0,134655,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20919,4,3,5,5,1,0,0,0,-1,0,132635,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20920,4,2,8,6,1,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20921,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20922,4,2,8,9,1,0,0,0,-1,0,132610,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20923,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20924,4,2,8,7,1,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20925,4,2,8,5,1,0,0,0,-1,0,135010,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20926,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20927,12,0,1,0,0,0,0,0,-1,0,134892,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20928,12,0,1,0,0,0,0,0,-1,0,134880,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20929,12,0,1,0,0,0,0,0,-1,0,134882,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20930,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20931,12,0,1,0,0,0,0,0,-1,0,134895,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20932,12,0,1,0,0,0,0,0,-1,0,134881,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20933,12,0,1,0,0,0,0,0,-1,0,134887,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20934,12,0,0,0,0,0,0,0,-1,0,132856,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20935,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20936,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20937,12,0,1,0,0,0,0,0,-1,0,132617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20938,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20939,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20940,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20941,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20942,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20943,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20944,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20945,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20946,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20947,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20948,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20949,12,0,0,0,0,0,0,0,-1,0,133472,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20950,4,0,3,2,26,0,0,0,-1,0,134967,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20951,12,0,0,0,0,0,0,0,-1,0,133149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20952,7,4,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20953,7,4,0,0,0,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20954,2,13,1,13,27,7,0,0,-1,0,132938,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,35,0,0,0,0 +20955,4,0,0,11,28,0,0,0,-1,0,133382,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20956,4,0,3,2,29,0,0,0,-1,0,133436,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20957,7,4,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20958,4,0,5,11,30,1,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20959,4,0,0,11,32,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20960,4,0,0,11,32,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20961,4,0,0,11,33,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20962,7,4,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20963,7,4,2,0,0,0,0,0,-1,0,133253,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20964,4,0,0,11,37,0,3482,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20965,7,4,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20966,4,0,3,2,31,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20967,4,0,3,2,34,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20969,4,1,8,1,40,0,0,0,-1,0,132769,7,0,50,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20970,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20971,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20972,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20973,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20974,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20975,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20976,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20977,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +20978,2,10,2,17,1,2,0,0,-1,0,135145,13,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +20979,2,0,1,21,1,3,0,0,-1,0,132402,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +20980,2,2,2,15,1,0,0,0,-1,0,135493,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +20981,2,4,2,21,1,3,0,0,-1,0,133477,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +20982,2,15,1,13,1,3,0,0,-1,0,135654,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20983,2,15,1,13,1,3,0,0,-1,0,135654,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +20984,4,6,1,14,1,4,0,0,-1,0,134951,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20985,4,1,7,8,1,0,0,0,-1,0,132543,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20986,4,1,7,7,1,0,0,0,-1,0,134582,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20987,4,1,7,10,1,0,0,0,-1,0,132952,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20988,4,1,7,9,1,0,0,0,-1,0,132602,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20989,4,1,7,6,1,0,0,0,-1,0,132495,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20990,4,1,7,5,1,0,0,0,-1,0,135029,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20991,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20992,4,1,7,9,0,0,0,0,-1,0,132611,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20993,4,2,8,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20994,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20995,4,1,7,10,0,0,0,0,-1,0,132940,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20996,4,2,8,6,0,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20997,4,3,5,8,0,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20998,4,1,7,6,0,0,0,0,-1,0,132492,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20999,4,3,5,10,0,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21000,4,2,8,9,0,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21001,4,1,7,7,0,0,0,0,-1,0,134592,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21002,4,1,7,6,1,0,0,0,-1,0,132493,7,0,12,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21003,4,1,7,9,1,0,0,0,-1,0,132610,7,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21004,4,1,7,16,1,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21005,4,1,7,10,1,0,0,0,-1,0,132952,7,0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21006,4,1,7,7,1,0,0,0,-1,0,134589,7,0,25,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21007,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21008,4,1,7,8,1,0,0,0,-1,0,132543,7,0,18,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21009,4,2,8,6,1,0,0,0,-1,0,132513,7,0,16,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21010,4,2,8,8,1,0,0,0,-1,0,132540,7,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21011,4,2,8,9,1,0,0,0,-1,0,132609,7,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21012,4,2,8,10,1,0,0,0,-1,0,132952,7,0,16,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21013,4,2,8,7,1,0,0,0,-1,0,134586,7,0,30,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21014,4,2,8,5,1,0,0,0,-1,0,135009,7,0,45,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21015,4,3,5,6,1,0,0,0,-1,0,132495,10,0,16,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21016,4,3,5,5,1,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21017,4,3,5,7,1,0,0,0,-1,0,134583,10,0,35,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21018,4,3,5,10,1,0,0,0,-1,0,132938,10,0,18,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21019,4,3,5,9,1,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21020,4,3,5,8,1,0,0,0,-1,0,132535,10,0,25,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21021,4,6,1,14,1,4,0,0,-1,0,134955,9,0,30,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21022,4,6,1,14,1,4,0,0,-1,0,134955,9,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21023,0,5,0,0,55,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21024,7,8,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21025,9,5,0,0,0,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21026,15,0,0,0,1,0,0,0,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21027,12,0,0,0,0,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21028,12,0,0,0,0,0,0,0,-1,0,133971,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21029,12,0,0,0,0,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21030,0,5,0,0,35,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21031,0,5,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21032,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21033,0,5,0,0,45,0,0,0,-1,0,134020,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21034,2,1,1,17,55,1,0,0,-1,0,132392,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +21035,2,15,1,13,55,3,0,0,-1,0,135637,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,77,0,0,0,0 +21036,2,2,2,15,55,0,0,0,-1,0,135492,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,129,0,0,0,0 +21037,15,0,0,0,0,0,0,0,-1,0,132319,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21038,0,8,0,0,0,0,0,0,-1,0,132387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21039,4,0,0,0,0,0,0,0,-1,0,133165,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21040,4,0,0,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21041,12,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21042,15,0,0,0,0,0,0,0,-1,0,133655,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21043,12,0,0,0,16,0,0,0,-1,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21044,15,0,0,0,0,0,0,0,-1,0,133749,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21045,4,1,7,6,58,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21046,4,1,7,9,58,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21047,4,1,7,8,58,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21048,4,1,7,1,58,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21049,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21050,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21051,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21052,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21053,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21054,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21055,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21056,2,10,2,17,58,2,0,0,-1,0,135169,12,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +21057,2,19,2,26,58,0,0,0,-1,0,135467,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +21058,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21059,4,1,7,9,60,0,0,0,-1,0,133365,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21060,4,1,7,8,60,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21061,4,1,7,1,60,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21062,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21063,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21064,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21065,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21066,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21067,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21068,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21069,2,10,2,21,60,2,0,0,-1,0,135169,12,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,169,0,0,0,0 +21070,2,19,2,26,60,0,0,0,-1,0,135467,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +21071,7,8,0,0,10,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21072,0,5,0,0,10,0,0,0,-1,0,133906,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21073,4,1,7,6,58,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21074,4,1,7,9,58,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21075,4,1,7,8,58,0,0,0,-1,0,132536,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21076,4,1,7,1,58,0,0,0,-1,0,132768,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21077,4,1,7,10,58,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21078,4,1,7,7,58,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21079,4,1,7,3,58,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21080,4,0,5,2,58,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21081,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21082,4,1,7,20,58,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21083,4,1,7,16,58,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21084,2,10,2,17,58,2,0,0,-1,0,135169,12,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,175,0,0,0,0 +21085,2,19,2,26,58,0,0,0,-1,0,135467,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +21086,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21087,4,1,7,9,60,0,0,0,-1,0,133365,7,0,35,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21088,4,1,7,8,60,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21089,4,1,7,1,60,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21090,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21091,4,1,7,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21092,4,1,7,3,60,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21093,4,0,5,2,60,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21094,4,0,5,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21095,4,1,7,20,60,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21096,4,1,7,16,60,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21097,2,10,2,21,60,2,0,0,-1,0,135169,12,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,169,0,0,0,0 +21098,2,19,2,26,60,0,0,0,-1,0,135467,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +21099,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21100,12,0,0,0,0,0,0,0,-1,0,133858,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21101,2,10,2,17,58,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21102,2,10,2,17,58,2,0,0,-1,0,135152,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21103,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21104,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21105,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21106,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21107,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21108,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21109,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21110,15,0,0,0,0,0,0,0,-1,0,134457,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21111,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21112,12,0,0,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21113,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21114,0,5,3,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21115,4,0,4,12,48,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21116,4,0,4,12,38,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21117,4,0,4,12,48,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21118,4,0,4,12,38,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21119,4,0,4,12,28,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21120,4,0,4,12,28,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21121,2,14,1,13,1,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21122,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +21123,2,14,1,13,1,0,0,0,-1,0,133939,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21124,2,19,2,26,60,0,0,0,-1,0,135474,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +21125,2,10,2,17,60,2,0,0,-1,0,135138,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,255,0,0,0,0 +21126,2,15,1,13,60,3,0,0,-1,0,135669,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,144,0,0,0,0 +21127,2,4,1,21,60,3,0,0,-1,0,133501,12,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +21128,2,10,2,17,60,2,0,0,-1,0,135138,13,0,120,0,0,0,0,0,0,0,0,10,10,10,10,10,170,0,0,0,0,255,0,0,0,0 +21129,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21130,15,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21131,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21132,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21133,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21134,2,1,1,17,60,1,0,0,-1,0,132418,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0,364,0,0,0,0 +21135,15,0,1,0,58,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21136,12,0,0,0,0,0,0,0,-1,0,133001,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21137,12,0,0,0,0,0,0,0,-1,0,134133,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21138,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21139,12,0,0,0,0,0,0,0,-1,0,134106,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21140,0,8,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21141,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21142,15,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21143,12,0,0,0,58,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21144,12,0,0,0,0,0,0,0,-1,0,135432,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21145,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21146,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21147,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21148,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21149,12,0,0,0,0,0,0,0,-1,0,136120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21150,15,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21151,0,5,3,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21152,12,0,0,0,0,0,0,0,-1,0,136160,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21153,7,8,0,0,30,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21154,4,1,0,20,0,0,0,0,-1,0,132697,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21155,12,0,1,0,0,0,0,0,-1,0,133474,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21156,15,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21157,4,0,0,20,0,0,0,0,-1,0,132698,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21158,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21159,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21160,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21161,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21162,15,4,0,0,5,0,0,0,-1,0,134302,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21163,15,4,0,0,15,0,0,0,-1,0,134299,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21164,15,4,0,0,25,0,0,0,-1,0,133890,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21165,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21166,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21167,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21168,15,2,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21171,15,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21173,15,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21174,15,0,0,0,0,0,0,0,-1,0,132791,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21175,15,0,0,0,0,0,0,0,-1,0,133062,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21176,15,0,0,0,60,0,0,0,-1,0,134399,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21177,15,1,2,0,0,0,0,0,-1,0,134471,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21178,4,2,8,10,0,0,0,0,-1,0,132952,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21179,4,0,0,11,0,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21180,4,0,3,12,0,0,0,0,-1,0,136006,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21181,4,0,3,12,0,0,0,0,-1,0,134182,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21182,4,0,0,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21183,4,1,7,5,0,0,0,0,-1,0,132647,7,0,80,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21184,4,4,6,9,0,0,0,0,-1,0,132606,11,0,55,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21185,4,0,3,23,0,7,0,0,-1,0,134125,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21186,4,1,7,9,0,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21187,4,1,7,16,0,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21188,2,5,2,17,60,1,0,0,-1,0,133060,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,263,0,0,0,0 +21189,4,0,0,11,0,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21190,4,0,0,11,0,0,0,0,-1,0,133382,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21191,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21192,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21193,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21194,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21195,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21196,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21197,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21198,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21199,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21200,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21201,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21202,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21203,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21204,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21205,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21206,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21207,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21208,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21209,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21210,4,0,3,11,60,0,0,0,-1,0,133382,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21211,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21212,0,0,0,0,30,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21213,15,3,0,0,30,0,0,0,-1,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21214,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21215,0,5,0,0,40,0,0,0,-1,0,132934,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21216,15,0,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21217,0,5,0,0,30,0,0,0,-1,0,133907,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21218,15,5,0,0,60,0,0,0,-1,0,134398,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21219,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21220,12,0,1,0,60,0,0,0,-1,0,132192,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21221,12,0,0,0,60,0,0,0,-1,0,136152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21222,15,0,0,0,0,0,0,0,-1,0,135035,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21223,15,0,0,0,0,0,0,0,-1,0,134456,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21224,15,0,0,0,0,0,0,0,-1,0,133601,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21225,15,0,0,0,0,0,0,0,-1,0,134308,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21226,15,0,0,0,0,0,0,0,-1,0,134464,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21227,15,0,0,0,0,0,0,0,-1,0,133731,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21228,15,0,2,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21229,15,0,0,0,0,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21230,15,0,0,0,60,0,0,0,-1,0,134232,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21232,15,0,2,0,60,0,0,0,-1,0,135161,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21235,0,5,0,0,0,0,0,0,-1,0,134006,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21236,0,5,0,0,0,0,0,0,-1,0,133968,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21237,15,0,2,0,60,0,0,0,-1,0,135157,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21238,0,0,0,0,0,0,0,0,-1,0,134018,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21240,0,5,0,0,0,0,0,0,-1,0,134017,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21241,0,0,0,0,0,0,0,0,-1,0,132803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21242,2,0,1,13,60,3,0,0,-1,0,132420,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +21243,15,4,0,0,0,0,0,0,-1,0,134301,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21244,2,15,1,13,60,3,0,0,-1,0,135671,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,134,0,0,0,0 +21245,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21246,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21247,12,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21248,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21249,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21250,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21251,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21252,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21253,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21254,0,5,0,0,0,0,0,0,-1,0,134018,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21255,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21256,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21257,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21258,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21259,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21260,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21261,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21262,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21263,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21264,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21265,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21266,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21267,15,3,0,0,0,0,0,0,-1,0,132789,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21268,2,4,1,13,60,3,0,0,-1,0,133501,9,0,105,0,0,0,0,0,0,70,0,0,0,0,0,0,89,0,0,0,0,166,0,0,0,0 +21269,4,6,1,14,60,4,0,0,-1,0,134969,9,0,120,0,0,0,0,0,0,3407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21270,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21271,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21272,2,3,1,26,60,0,0,0,-1,0,135620,9,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,192,0,0,0,0 +21273,2,10,2,17,60,2,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21274,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21275,2,10,2,17,60,2,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21276,2,10,2,17,60,0,0,0,-1,0,135157,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +21277,15,2,0,0,0,0,0,0,-1,0,132189,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21278,4,2,0,10,50,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21279,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21280,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21281,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21282,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21283,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21284,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21285,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21286,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21287,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21288,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21289,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21290,9,0,0,0,60,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21291,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21292,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21293,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21294,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21295,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21296,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21297,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21298,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21299,9,0,0,0,60,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21300,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21301,15,3,0,0,0,0,0,0,-1,0,133204,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21302,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21303,9,0,0,0,60,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21304,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21305,15,3,0,0,0,0,0,0,-1,0,133202,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21306,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21307,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21308,15,3,0,0,0,0,0,0,-1,0,133706,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21309,15,3,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21310,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21311,4,1,7,5,0,0,0,0,-1,0,132646,7,0,70,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21312,4,3,5,6,0,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21313,1,1,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21314,15,0,0,0,0,0,0,0,-1,0,133459,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21315,15,0,0,0,0,0,0,0,-1,0,133622,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21316,4,4,6,7,0,0,0,0,-1,0,134662,9,0,85,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21317,4,2,8,1,0,0,0,0,-1,0,133078,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21318,4,1,7,10,0,0,0,0,-1,0,132958,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21319,4,2,7,10,0,0,0,0,-1,0,132955,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21320,4,3,7,5,0,0,0,0,-1,0,132638,11,0,100,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21321,15,5,0,0,60,0,0,0,-1,0,134396,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21322,4,4,7,5,0,0,0,0,-1,0,132751,9,0,115,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21323,15,5,0,0,60,0,0,0,-1,0,134397,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21324,15,5,0,0,60,0,0,0,-1,0,134395,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21325,0,0,3,0,0,0,0,0,-1,0,132189,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21326,4,0,0,12,0,0,0,0,-1,0,134227,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21327,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21328,15,0,0,0,0,0,0,0,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21329,4,4,1,1,60,0,0,0,-1,0,133174,11,0,100,0,0,0,0,0,0,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21330,4,4,6,3,60,0,0,0,-1,0,135066,11,0,100,0,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21331,4,4,6,5,60,0,0,0,-1,0,132747,11,0,165,0,0,0,0,0,0,1124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21332,4,4,1,7,60,0,0,0,-1,0,134679,11,0,120,0,0,0,0,0,0,909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21333,4,4,1,8,60,0,0,0,-1,0,132586,11,0,75,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21334,4,1,7,20,60,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21335,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21336,4,1,7,7,60,0,0,0,-1,0,134596,7,0,75,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21337,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21338,4,1,7,8,60,0,0,0,-1,0,132559,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21339,4,1,7,10,60,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21340,1,1,8,18,0,0,0,0,-1,0,133670,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21341,1,1,8,18,0,0,0,0,-1,0,133667,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21342,1,1,8,18,0,0,0,0,-1,0,133664,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21343,4,1,7,20,60,0,0,0,-1,0,132652,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21344,4,1,7,8,60,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21345,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21346,4,1,7,7,60,0,0,0,-1,0,134602,7,0,75,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21347,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21348,4,1,7,1,60,0,0,0,-1,0,133074,7,0,60,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21349,4,1,7,8,60,0,0,0,-1,0,132564,7,0,50,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21350,4,1,7,3,60,0,0,0,-1,0,135034,7,0,60,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21351,4,1,7,20,60,0,0,0,-1,0,132651,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21352,4,1,7,7,60,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21353,4,2,8,1,60,0,0,0,-1,0,133074,7,0,70,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21354,4,2,8,3,60,0,0,0,-1,0,135034,7,0,70,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21355,4,2,8,8,60,0,0,0,-1,0,132564,7,0,60,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21356,4,2,8,7,60,0,0,0,-1,0,134626,7,0,90,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21357,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21358,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21359,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21360,4,2,8,1,60,0,0,0,-1,0,133072,7,0,70,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21361,4,2,8,3,60,0,0,0,-1,0,135034,7,0,70,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21362,4,2,8,7,60,0,0,0,-1,0,134632,7,0,90,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21363,15,0,0,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21364,4,2,8,5,60,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21365,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21366,4,3,5,1,60,0,0,0,-1,0,133175,10,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21367,4,3,5,3,60,0,0,0,-1,0,135067,10,0,85,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21368,4,3,5,7,60,0,0,0,-1,0,134663,10,0,105,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21369,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21370,4,3,5,5,60,0,0,0,-1,0,132626,10,0,140,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21371,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21372,4,3,5,1,60,0,0,0,-1,0,133175,10,0,85,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21373,4,3,5,8,60,0,0,0,-1,0,132550,10,0,70,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21374,4,3,5,5,60,0,0,0,-1,0,132635,10,0,140,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21375,4,3,5,7,60,0,0,0,-1,0,134662,10,0,105,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21376,4,3,5,3,60,0,0,0,-1,0,135034,10,0,85,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21377,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21378,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21379,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21380,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21381,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21382,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21383,12,0,0,0,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21384,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21385,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21386,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21387,4,4,6,1,60,0,0,0,-1,0,133174,11,0,100,0,0,0,0,0,0,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21388,4,4,6,8,60,0,0,0,-1,0,132550,11,0,75,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21389,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,1124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21390,4,4,6,7,60,0,0,0,-1,0,134678,11,0,120,0,0,0,0,0,0,909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21391,4,4,6,3,60,0,0,0,-1,0,135066,11,0,100,0,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21392,2,0,1,13,60,7,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +21393,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21394,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21395,2,7,1,13,60,3,0,0,-1,0,135367,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +21396,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21397,4,1,7,16,60,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21398,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +21399,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21400,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21401,2,0,1,13,60,7,0,0,-1,0,132406,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +21402,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21403,4,1,7,16,60,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21404,2,15,1,13,60,3,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +21405,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21406,4,1,7,16,60,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21407,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,175,0,0,0,0 +21408,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21409,4,1,7,16,60,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21410,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +21411,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21412,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21413,2,7,1,21,60,3,0,0,-1,0,135367,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,154,0,0,0,0 +21414,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21415,4,1,7,16,60,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21416,2,15,1,21,60,3,0,0,-1,0,135663,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +21417,4,0,4,11,60,0,0,0,-1,0,133425,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21418,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21419,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21420,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21421,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21422,4,0,0,5,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21423,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21424,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21425,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21426,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21427,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21428,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21429,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21430,4,0,0,20,0,0,0,0,-1,0,132642,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21431,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21432,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21433,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21434,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21435,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21436,15,0,0,0,0,0,0,0,-1,0,132486,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21437,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21438,15,0,0,0,0,0,0,0,-1,0,132485,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21439,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21440,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21441,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21442,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21443,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21444,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21445,4,0,0,9,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21446,4,0,0,1,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21447,4,0,0,3,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21448,4,0,0,7,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21449,4,0,0,8,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21450,4,0,0,10,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21451,4,0,0,6,0,0,0,0,-1,0,135725,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21452,2,10,2,17,60,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +21453,4,4,6,3,60,0,0,0,-1,0,135059,11,0,100,0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21454,4,3,5,3,60,0,0,0,-1,0,135049,10,0,85,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21455,4,2,8,1,60,0,0,0,-1,0,133069,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21456,4,1,7,16,60,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21457,4,4,6,9,60,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21458,4,2,8,10,60,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21459,2,18,2,26,60,0,0,0,-1,0,135535,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,189,0,0,0,0 +21460,4,4,6,1,60,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21461,4,1,7,7,60,0,0,0,-1,0,134600,7,0,75,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21462,4,1,7,10,60,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21463,4,3,5,6,60,0,0,0,-1,0,132507,10,0,50,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21464,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21465,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21466,2,4,1,21,60,3,0,0,-1,0,2245030,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +21467,4,2,8,5,60,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,237,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 +21468,4,1,7,3,60,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21469,4,2,8,10,60,0,0,0,-1,0,132939,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21470,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21471,4,0,3,23,60,7,0,0,-1,0,133498,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21472,4,1,7,1,60,0,0,0,-1,0,133164,7,0,60,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21473,4,0,4,12,60,0,0,0,-1,0,133884,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21474,4,2,8,3,60,0,0,0,-1,0,135060,7,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21475,4,4,6,7,60,0,0,0,-1,0,134677,11,0,100,0,0,0,0,0,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21476,4,3,5,7,60,0,0,0,-1,0,134667,11,0,90,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21477,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21478,2,2,2,15,60,0,0,0,-1,0,135501,12,0,90,2,0,0,0,0,0,0,0,0,8,0,0,0,73,0,0,0,0,137,0,0,0,0 +21479,4,4,6,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21480,4,3,5,10,60,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21481,4,4,6,8,60,0,0,0,-1,0,132586,11,0,65,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21482,4,3,5,8,60,0,0,0,-1,0,132545,10,0,60,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21483,4,0,4,11,60,0,0,0,-1,0,133427,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21484,4,2,8,1,60,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21485,4,6,6,14,60,4,0,0,-1,0,134968,9,0,120,0,0,0,0,0,0,2959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21486,4,4,6,10,60,0,0,0,-1,0,132964,11,0,55,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21487,4,3,5,10,60,0,0,0,-1,0,132946,11,0,50,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21488,4,0,4,12,60,0,0,0,-1,0,133571,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21489,4,1,7,8,60,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21490,4,4,6,8,60,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21491,4,2,8,9,60,0,0,0,-1,0,132602,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21492,2,8,1,17,60,1,0,0,-1,0,135366,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,270,0,0,0,0 +21493,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21494,4,2,8,6,60,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21495,4,4,6,7,60,0,0,0,-1,0,134691,11,0,100,0,0,0,0,0,0,644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21496,4,1,7,9,60,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21497,4,3,5,8,60,0,0,0,-1,0,132554,10,0,60,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21498,2,15,1,13,60,3,0,0,-1,0,135648,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +21499,4,1,7,20,60,0,0,0,-1,0,132658,7,0,100,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21500,4,1,7,6,60,0,0,0,-1,0,132494,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21501,4,2,8,10,60,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21502,4,3,5,9,60,0,0,0,-1,0,132618,10,0,40,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21503,4,4,6,6,60,0,0,0,-1,0,132502,11,0,45,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21504,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21505,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21506,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21507,4,0,4,2,60,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21508,12,0,0,0,0,0,0,0,-1,0,133299,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21509,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21510,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21511,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21512,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21513,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21514,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21515,12,0,0,0,0,0,0,0,-1,0,133301,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21516,2,15,2,13,58,2,0,0,-1,0,135150,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21517,4,1,7,1,60,0,0,0,-1,0,133165,7,0,60,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21518,2,15,2,13,58,2,0,0,-1,0,135150,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +21519,15,0,0,0,0,0,0,0,-1,0,134189,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21520,2,7,1,13,60,3,0,0,-1,0,135359,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +21521,2,7,4,21,60,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +21522,2,15,4,13,60,3,0,0,-1,0,135661,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +21523,2,15,4,21,60,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +21524,4,1,0,1,0,0,0,0,-1,0,133169,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21525,4,1,0,1,0,0,0,0,-1,0,133170,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21526,4,0,4,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +21527,4,1,7,20,60,0,0,0,-1,0,132672,7,0,100,0,0,0,0,0,0,134,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21528,15,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21529,4,0,3,2,60,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21530,4,3,5,7,60,0,0,0,-1,0,134656,10,0,105,0,0,0,0,0,0,488,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0 +21531,4,0,4,2,60,0,0,0,-1,0,133309,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21532,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,178,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21533,12,0,0,0,0,0,0,0,-1,0,134311,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21534,12,0,0,0,0,0,0,0,-1,0,134314,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21535,12,0,0,0,0,0,0,0,-1,0,134317,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21536,15,3,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21537,0,0,0,0,0,0,0,0,-1,0,134056,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21538,4,0,0,20,0,0,0,0,-1,0,132699,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21539,4,0,0,20,0,0,0,0,-1,0,132700,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21540,15,0,0,0,40,0,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21541,4,0,0,20,0,0,0,0,-1,0,132694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21542,4,0,0,20,0,0,0,0,-1,0,132696,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21543,4,0,0,20,0,0,0,0,-1,0,132695,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21544,4,0,0,20,0,0,0,0,-1,0,132693,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21545,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21546,0,2,3,0,40,0,0,0,-1,0,134840,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21547,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21548,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21549,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21550,2,18,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +21551,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +21552,0,5,0,0,35,0,0,0,-1,0,133887,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21553,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21554,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +21555,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +21557,15,3,0,0,0,0,0,0,-1,0,134285,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21558,15,3,0,0,0,0,0,0,-1,0,134282,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21559,15,3,0,0,0,0,0,0,-1,0,134283,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21560,15,3,0,0,0,0,0,0,-1,0,134284,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21561,15,3,0,0,0,0,0,0,-1,0,134286,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21562,15,3,0,0,0,0,0,0,-1,0,134287,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21563,4,0,0,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21564,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +21565,4,0,4,12,40,0,0,0,-1,0,134418,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21566,4,0,4,12,20,0,0,0,-1,0,134418,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21567,4,0,4,12,40,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21568,4,0,4,12,20,0,0,0,-1,0,134415,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21569,15,3,0,0,0,0,0,0,-1,0,134538,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21570,15,3,0,0,0,0,0,0,-1,0,133861,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21571,15,3,0,0,0,0,0,0,-1,0,134288,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21572,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21573,2,7,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21574,15,3,0,0,0,0,0,0,-1,0,134289,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21575,15,3,0,0,0,0,0,0,-1,0,134290,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21576,15,3,0,0,0,0,0,0,-1,0,134291,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21577,15,3,0,0,0,0,0,0,-1,0,134292,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21578,15,3,0,0,0,0,0,0,-1,0,134293,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21579,4,0,4,12,60,0,0,0,-1,0,133574,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21580,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +21581,4,4,6,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21582,4,1,7,6,60,0,0,0,-1,0,132520,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21583,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21584,4,3,5,9,60,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21585,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21586,4,2,5,6,60,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21587,4,4,6,9,60,0,0,0,-1,0,132618,10,0,55,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21588,4,3,5,9,60,0,0,0,-1,0,132613,10,0,50,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21589,15,3,0,0,0,0,0,0,-1,0,134270,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21590,15,3,0,0,0,0,0,0,-1,0,134271,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21591,15,3,0,0,0,0,0,0,-1,0,134272,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21592,15,3,0,0,0,0,0,0,-1,0,134273,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21593,15,3,0,0,0,0,0,0,-1,0,134274,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21594,4,2,8,9,60,0,0,0,-1,0,132610,7,0,40,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21595,15,3,0,0,0,0,0,0,-1,0,134275,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21596,4,0,4,11,60,0,0,0,-1,0,133428,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21597,4,0,3,23,60,0,0,0,-1,0,135472,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21598,4,4,6,6,60,0,0,0,-1,0,132520,11,0,55,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21599,4,3,5,10,60,0,0,0,-1,0,132962,10,0,50,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21600,4,1,7,8,60,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21601,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21602,4,2,8,9,60,0,0,0,-1,0,132612,7,0,40,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21603,2,19,2,26,60,0,0,0,-1,0,135468,21,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +21604,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21605,4,2,8,10,60,0,0,0,-1,0,132953,7,0,40,0,0,0,0,0,0,169,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0 +21606,4,4,6,6,60,0,0,0,-1,0,132523,11,0,55,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21607,4,3,5,6,60,0,0,0,-1,0,132521,10,0,50,0,0,0,0,0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21608,4,0,4,2,60,0,0,0,-1,0,133339,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21609,4,2,8,6,60,0,0,0,-1,0,132500,7,0,40,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21610,4,6,2,14,60,4,0,0,-1,0,134970,13,0,120,0,0,0,0,0,0,3488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21611,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21612,4,3,5,8,60,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21613,4,2,8,8,60,0,0,0,-1,0,132538,7,0,60,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21614,4,2,8,1,60,0,0,0,-1,0,133077,7,0,70,0,0,0,0,0,0,219,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +21615,4,1,7,1,60,0,0,0,-1,0,133153,7,0,60,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21616,2,2,2,15,60,0,0,0,-1,0,135502,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +21617,4,2,8,10,60,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21618,4,4,6,9,60,0,0,0,-1,0,132601,11,0,55,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21619,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21620,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21621,4,1,7,16,60,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21622,2,7,1,21,60,3,0,0,-1,0,135393,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +21623,4,4,6,10,60,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21624,4,3,5,10,60,0,0,0,-1,0,132960,10,0,50,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21625,4,0,4,12,60,0,0,0,-1,0,133575,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21626,4,3,5,7,60,0,0,0,-1,0,134663,10,0,105,0,0,0,0,0,0,494,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0 +21627,4,1,7,16,60,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,67,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21628,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21629,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21630,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21631,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21632,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21633,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21634,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21635,2,6,1,17,60,1,0,0,-1,0,135591,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +21636,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21637,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21638,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21639,4,4,6,3,60,0,0,0,-1,0,135060,11,0,100,0,0,0,0,0,0,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21640,15,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21641,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21642,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21643,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21644,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21645,4,2,8,8,60,0,0,0,-1,0,132538,7,0,60,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21646,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21647,4,0,4,12,60,0,0,0,-1,0,133572,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21648,4,1,7,8,60,0,0,0,-1,0,132564,7,0,50,0,0,0,0,0,0,91,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21649,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21650,2,7,1,13,60,3,0,0,-1,0,135394,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +21651,4,3,5,7,60,0,0,0,-1,0,134662,10,0,105,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21652,4,4,6,5,60,0,0,0,-1,0,132744,11,0,165,0,0,0,0,0,0,990,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0 +21653,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21655,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21656,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21657,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21658,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21659,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21660,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21661,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21662,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21663,4,1,7,20,60,0,0,0,-1,0,132664,7,0,100,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21664,4,0,4,2,60,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21665,4,2,8,3,60,0,0,0,-1,0,135061,7,0,70,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21666,4,0,1,23,60,0,0,0,-1,0,134911,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21667,4,4,6,7,60,0,0,0,-1,0,134687,11,0,120,0,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21668,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21669,4,2,8,1,60,0,0,0,-1,0,133069,7,0,70,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21670,4,0,4,12,60,0,0,0,-1,0,133573,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21671,4,1,7,20,60,0,0,0,-1,0,132667,7,0,100,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21672,4,2,8,10,60,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21673,2,13,1,21,60,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +21674,4,4,2,10,60,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21675,4,2,8,6,60,0,0,0,-1,0,132504,7,0,40,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21676,4,1,3,7,60,0,0,0,-1,0,134596,7,0,75,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21677,4,0,4,11,60,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21678,4,0,7,2,60,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21679,2,8,1,17,60,1,0,0,-1,0,135366,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,315,0,0,0,0 +21680,4,2,8,5,60,0,0,0,-1,0,132686,7,0,120,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21681,4,0,4,11,60,0,0,0,-1,0,133427,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21682,4,2,8,10,60,0,0,0,-1,0,132955,7,0,40,0,0,0,0,0,0,164,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21683,4,4,6,3,60,0,0,0,-1,0,135060,11,0,100,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21684,4,3,5,3,60,0,0,0,-1,0,135059,10,0,85,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21685,4,0,4,12,60,0,0,0,-1,0,133570,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21686,4,1,7,3,60,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21687,4,0,4,11,60,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0 +21688,4,4,6,8,60,0,0,0,-1,0,132582,11,0,75,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21689,4,2,8,10,60,0,0,0,-1,0,132957,7,0,40,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21690,4,0,4,2,60,0,0,0,-1,0,133307,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21691,4,4,6,10,60,0,0,0,-1,0,132945,11,0,55,0,0,0,0,0,0,603,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +21692,4,4,6,6,60,0,0,0,-1,0,132507,11,0,55,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21693,4,2,8,1,60,0,0,0,-1,0,133074,7,0,70,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21694,4,1,7,3,60,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21695,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21696,4,1,7,20,60,0,0,0,-1,0,132663,7,0,100,0,0,0,0,0,0,131,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +21697,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21698,4,2,8,7,60,0,0,0,-1,0,134636,7,0,90,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21699,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21700,4,0,4,2,60,0,0,0,-1,0,133339,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21701,4,1,7,16,60,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21702,4,0,4,2,60,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +21703,2,5,1,17,60,1,0,0,-1,0,133498,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,297,0,0,0,0 +21704,4,4,6,8,60,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21705,4,3,5,8,60,0,0,0,-1,0,132549,10,0,70,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21706,4,4,6,8,60,0,0,0,-1,0,132587,11,0,75,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21707,4,0,4,11,60,0,0,0,-1,0,133426,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21708,4,2,8,9,60,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,109,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +21709,4,0,4,11,60,0,0,0,-1,0,133424,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21710,4,1,7,16,60,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21711,0,0,0,0,1,0,0,0,-1,0,134941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21712,4,0,4,2,60,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21713,2,14,0,0,0,0,0,0,-1,0,134536,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21714,15,3,0,0,0,0,0,0,-1,0,134276,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21715,2,4,1,13,60,3,0,0,-1,0,133501,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +21716,15,3,0,0,0,0,0,0,-1,0,134277,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21717,15,3,0,0,0,0,0,0,-1,0,134278,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21718,15,3,0,0,0,0,0,0,-1,0,134279,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21719,15,3,0,0,0,0,0,0,-1,0,134280,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21720,15,3,0,0,0,0,0,0,-1,0,134281,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21721,0,5,3,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21722,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21723,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21724,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21725,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21726,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21727,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21728,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21729,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21730,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21731,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21732,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21733,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21734,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21735,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21736,15,0,0,0,60,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21737,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21738,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21739,0,0,0,0,1,0,0,0,-1,0,134941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21740,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21741,0,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21742,0,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21743,0,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21744,0,0,0,0,0,0,0,0,-1,0,134280,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21745,0,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21746,0,0,0,0,0,0,0,0,-1,0,134268,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21747,15,3,0,0,0,0,0,0,-1,0,133713,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21748,4,0,3,12,35,0,0,0,-1,0,133247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21749,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21750,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21751,12,0,0,0,60,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21752,7,4,2,0,0,0,0,0,-1,0,133273,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21753,4,0,0,11,45,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21754,4,0,3,11,44,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21755,4,0,3,2,39,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21756,4,0,3,12,35,0,0,0,-1,0,133246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21757,12,0,0,0,0,0,0,0,-1,0,134169,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21758,4,0,3,12,38,0,0,0,-1,0,133236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21760,4,0,3,12,40,0,0,0,-1,0,133275,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21761,13,0,0,0,0,0,0,0,-1,0,134242,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21762,13,0,0,0,0,0,0,0,-1,0,134242,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21763,4,0,3,12,42,0,0,0,-1,0,133274,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21764,4,0,3,2,42,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21765,4,0,5,11,43,1,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21766,4,0,5,2,45,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21767,4,0,5,11,47,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21768,4,0,0,11,50,0,3461,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21769,4,0,3,12,47,0,0,0,-1,0,133262,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21770,12,0,0,0,0,0,0,0,-1,0,133378,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21771,12,0,0,0,1,0,0,0,-1,0,132622,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21772,7,4,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21773,7,4,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21774,4,1,8,1,50,0,0,0,-1,0,132770,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21775,4,0,5,11,51,0,0,0,-1,0,133369,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21776,12,0,0,0,5,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21777,4,0,3,12,50,0,0,0,-1,0,133247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21778,4,0,3,11,52,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21779,4,0,0,11,57,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21780,4,1,8,1,60,0,0,0,-1,0,132769,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21781,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21782,2,7,1,13,58,3,0,0,-1,0,135637,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +21783,12,0,0,0,1,0,0,0,-1,0,133736,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21784,4,0,3,12,55,0,0,0,-1,0,133275,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21785,7,4,0,0,0,0,0,0,-1,0,134104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21786,7,4,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21789,4,0,3,12,55,0,0,0,-1,0,132186,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21790,4,0,3,2,51,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21791,4,0,3,2,53,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21792,4,0,3,2,56,0,0,0,-1,0,133326,14,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0 +21793,4,0,0,2,58,0,0,0,-1,0,135642,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21794,2,8,1,17,1,1,0,0,-1,0,135366,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +21795,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21796,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +21800,2,3,1,26,60,0,0,0,-1,0,135619,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +21801,2,19,2,26,60,0,0,0,-1,0,135466,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +21802,2,15,1,21,60,3,0,0,-1,0,135342,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +21803,4,4,6,1,60,0,0,0,-1,0,133071,9,0,80,0,0,0,0,0,0,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21804,4,3,5,1,60,0,0,0,-1,0,133126,11,0,70,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21805,4,4,6,3,60,0,0,0,-1,0,135057,11,0,80,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21806,2,5,1,17,60,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,162,0,0,0,0 +21807,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21808,12,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21809,4,0,0,2,60,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21810,4,1,7,8,60,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21811,12,0,0,0,0,0,0,0,-1,0,132595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21812,15,0,0,0,1,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21813,15,0,0,0,1,0,0,0,-1,0,135452,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21814,4,4,6,5,60,0,0,0,-1,0,132737,11,0,165,0,0,0,0,0,0,941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21815,0,0,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21816,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21817,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21818,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21819,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21820,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21821,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21822,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21823,15,3,0,0,1,0,0,0,-1,0,135451,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21829,15,3,0,0,0,0,0,0,-1,0,135447,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21830,15,3,0,0,0,0,0,0,-1,0,134146,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21831,15,3,0,0,0,0,0,0,-1,0,134144,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21833,15,3,0,0,0,0,0,0,-1,0,135446,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21835,0,8,3,0,68,0,0,0,-1,0,136093,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21836,4,0,4,11,60,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21837,2,4,1,13,60,3,0,0,-1,0,133048,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +21838,4,1,7,20,60,0,0,0,-1,0,132689,7,0,100,0,0,0,0,0,0,124,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 +21839,2,4,1,21,60,3,0,0,-1,0,133474,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +21840,7,5,8,0,0,0,0,0,-1,0,132899,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21841,1,0,8,18,0,0,0,0,-1,0,133656,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21842,7,5,8,0,0,0,0,0,-1,0,132900,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21843,1,0,8,18,0,0,0,0,-1,0,133657,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21844,7,5,8,0,0,0,0,0,-1,0,132909,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21845,7,5,7,0,0,0,0,0,-1,0,132897,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21846,4,1,6,6,70,0,0,0,-1,0,132493,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21847,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21848,4,1,7,20,70,0,0,0,-1,0,132643,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21849,4,1,7,9,61,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21850,4,1,7,6,61,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21851,4,1,7,10,63,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21852,4,1,7,7,64,0,0,0,-1,0,134589,7,0,55,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21853,4,1,7,8,62,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21854,4,1,7,20,67,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21855,4,1,7,5,68,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21856,2,1,1,17,60,1,0,0,-1,0,132400,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,303,0,0,0,0 +21857,1,2,8,18,0,0,0,0,-1,0,133670,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21858,1,3,8,18,0,0,0,0,-1,0,133659,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21859,4,1,8,7,67,0,0,0,-1,0,134634,7,0,65,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21860,4,1,6,8,69,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21861,4,1,7,20,70,0,0,0,-1,0,132653,7,0,80,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21862,4,1,7,5,70,0,0,0,-1,0,132686,7,0,80,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21863,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,106,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0 +21864,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,127,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +21865,4,1,7,5,70,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,170,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0 +21866,4,1,5,9,69,0,0,0,-1,0,132618,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0 +21867,4,1,6,8,70,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,106,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0 +21868,4,1,7,20,70,0,0,0,-1,0,132642,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0 +21869,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21870,4,1,6,8,70,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21871,4,1,7,20,70,0,0,0,-1,0,132649,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21872,1,1,8,18,0,0,0,0,-1,0,133667,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21873,4,1,6,6,70,0,0,0,-1,0,132520,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21874,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21875,4,1,7,20,70,0,0,0,-1,0,132645,7,0,100,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21876,1,0,8,18,0,0,0,0,-1,0,133658,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21877,7,5,7,0,0,0,0,0,-1,0,132898,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21878,7,11,8,0,0,0,0,0,-1,0,136120,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21879,7,11,0,0,0,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21880,12,0,0,0,0,0,0,0,-1,0,134094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21881,7,5,0,0,0,0,0,0,-1,0,136113,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21882,7,11,0,0,0,0,0,0,-1,0,136214,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21883,7,5,7,0,0,0,0,0,-1,0,132888,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21884,7,10,0,0,0,0,0,0,-1,0,132847,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21885,7,10,0,0,0,0,0,0,-1,0,132852,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21886,7,10,0,0,0,0,0,0,-1,0,132848,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21887,7,6,8,0,0,0,0,0,-1,0,134259,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21888,4,1,7,10,60,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21889,4,4,6,10,60,0,0,0,-1,0,132953,8,0,55,0,0,0,0,0,0,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21890,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21891,4,0,1,12,60,0,0,0,-1,0,133573,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21892,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21893,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21894,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21895,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21896,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21897,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21898,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21899,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21900,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21901,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21902,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21903,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21904,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21905,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21906,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21907,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21908,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21909,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21910,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21911,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21912,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21913,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21914,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21915,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21916,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21917,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21918,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21919,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21920,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21921,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21923,12,0,0,0,0,0,0,0,-1,0,133625,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21924,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21925,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21926,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21927,0,8,3,0,68,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21928,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21929,3,5,0,0,0,0,0,0,-1,0,134111,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21930,12,0,0,0,0,0,0,0,-1,0,132596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21931,4,0,1,11,10,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21932,4,0,1,11,12,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21933,4,0,3,2,17,0,0,0,-1,0,132508,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21934,4,0,3,2,15,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21935,12,0,0,0,0,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21936,12,0,0,0,0,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21937,12,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21938,12,0,0,0,0,0,0,0,-1,0,134085,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21939,12,0,1,0,0,0,0,0,-1,0,135155,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21940,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21941,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21942,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21943,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21944,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21945,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21946,12,0,0,0,0,0,0,0,-1,0,133882,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21947,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21948,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21949,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21950,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21951,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21952,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21953,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21954,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21955,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21956,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21957,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21958,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21959,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21960,15,3,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21962,12,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21963,12,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21964,12,0,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21975,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21979,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21980,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21981,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21982,12,0,0,0,0,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21983,12,0,0,0,0,0,0,0,-1,0,132619,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21984,12,0,0,0,0,0,0,0,-1,0,133320,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21985,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21986,12,0,0,0,0,0,0,0,-1,0,132619,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21987,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21988,12,0,0,0,0,0,0,0,-1,0,132386,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21989,12,0,0,0,0,0,0,0,-1,0,135805,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21990,0,7,7,0,0,0,0,0,-1,0,133691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21991,0,7,7,0,0,0,0,0,-1,0,133692,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21992,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21993,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21994,4,4,6,6,0,0,0,0,-1,0,132523,11,0,45,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21995,4,4,6,8,0,0,0,0,-1,0,132584,11,0,75,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21996,4,4,6,9,0,0,0,0,-1,0,132617,11,0,45,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21997,4,4,6,5,0,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21998,4,4,6,10,0,0,0,0,-1,0,132960,11,0,55,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21999,4,4,6,1,0,0,0,0,-1,0,133070,11,0,100,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22000,4,4,6,7,0,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22001,4,4,6,3,0,0,0,0,-1,0,135061,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22002,4,2,8,6,0,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22003,4,2,8,8,0,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22004,4,2,8,9,0,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22005,4,2,8,1,0,0,0,0,-1,0,133143,7,0,70,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22006,4,2,8,10,0,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22007,4,2,8,7,0,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22008,4,2,8,3,0,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22009,4,2,8,5,0,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22010,4,3,5,6,0,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22011,4,3,5,9,0,0,0,0,-1,0,132616,10,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22012,9,7,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22013,4,3,5,1,0,0,0,0,-1,0,133126,10,0,85,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22014,12,0,0,0,0,0,0,0,-1,0,133879,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22015,4,3,5,10,0,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22016,4,3,5,3,0,0,0,0,-1,0,135041,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22017,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22018,0,5,3,0,65,0,0,0,-1,0,132803,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22019,0,5,0,0,65,0,0,0,-1,0,133988,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22020,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22021,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22022,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22023,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22024,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22025,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22026,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22027,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22028,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22029,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22030,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22031,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22032,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22033,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22034,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22035,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22036,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22037,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22038,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22039,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22040,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22041,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22042,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22043,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22044,0,0,1,0,68,0,0,0,-1,0,134134,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22045,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22046,12,0,0,0,0,0,0,0,-1,0,133318,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22047,12,0,0,0,0,0,0,0,-1,0,133316,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22048,12,0,0,0,0,0,0,0,-1,0,133314,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22049,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22050,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22051,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22052,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22053,0,8,3,0,62,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22054,0,8,3,0,70,0,0,0,-1,0,132290,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22055,0,8,3,0,64,0,0,0,-1,0,134197,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22056,12,0,0,0,0,0,0,0,-1,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22057,12,0,0,0,0,0,0,0,-1,0,133880,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22058,15,3,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22059,15,0,0,0,0,0,0,0,-1,0,135453,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22060,4,3,5,5,0,0,0,0,-1,0,132625,10,0,140,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22061,4,3,5,8,0,0,0,0,-1,0,132588,10,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22062,4,1,7,6,0,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22063,4,1,7,9,0,0,0,0,-1,0,133365,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22064,4,1,7,8,0,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22065,4,1,7,1,0,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22066,4,1,7,10,0,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22067,4,1,7,7,0,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22068,4,1,7,3,0,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22069,4,1,7,20,0,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22070,4,1,7,6,0,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22071,4,1,7,9,0,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22072,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22073,4,1,7,3,0,0,0,0,-1,0,133732,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22074,4,1,7,1,0,0,0,0,-1,0,133131,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22075,4,1,7,20,0,0,0,0,-1,0,132690,7,0,100,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22076,4,1,7,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22077,4,1,7,10,0,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22078,4,1,7,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22079,4,1,7,9,0,0,0,0,-1,0,132520,7,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22080,4,1,7,1,0,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22081,4,1,7,10,0,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22082,4,1,7,3,0,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22083,4,1,7,20,0,0,0,0,-1,0,132652,7,0,100,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22084,4,1,7,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22085,4,1,7,7,0,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22086,4,4,6,6,0,0,0,0,-1,0,132500,11,0,45,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22087,4,4,6,8,0,0,0,0,-1,0,132584,11,0,75,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22088,4,4,6,9,0,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22089,4,4,6,5,0,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22090,4,4,6,10,0,0,0,0,-1,0,132953,11,0,55,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22091,4,4,6,1,0,0,0,0,-1,0,133076,11,0,100,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22092,4,4,6,7,0,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22093,4,4,6,3,0,0,0,0,-1,0,135041,11,0,80,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22094,12,0,0,0,0,0,0,0,-1,0,134192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22095,4,3,5,9,0,0,0,0,-1,0,132601,10,0,40,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22096,4,3,5,8,0,0,0,0,-1,0,132592,10,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22097,4,3,5,1,0,0,0,0,-1,0,133072,10,0,85,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22098,4,3,5,6,0,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22099,4,3,5,10,0,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22100,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22101,4,3,5,3,0,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22102,4,3,5,5,0,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22103,0,8,1,0,60,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22104,0,8,1,0,60,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22105,0,8,1,0,60,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22106,4,2,8,6,0,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22107,4,2,8,8,0,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22108,4,2,8,9,0,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22109,4,2,8,1,0,0,0,0,-1,0,133129,7,0,70,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22110,4,2,8,10,0,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22111,4,2,8,7,0,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22112,4,2,8,3,0,0,0,0,-1,0,135032,7,0,60,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22113,4,2,8,5,0,0,0,0,-1,0,132741,7,0,120,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22114,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22115,12,0,0,0,0,0,0,0,-1,0,133878,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22116,0,0,3,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22117,15,3,0,0,0,0,0,0,-1,0,134330,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22119,15,3,0,0,0,0,0,0,-1,0,134329,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22120,15,3,0,0,0,0,0,0,-1,0,134332,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22121,15,3,0,0,0,0,0,0,-1,0,134331,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22122,15,3,0,0,0,0,0,0,-1,0,134327,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22123,15,3,0,0,0,0,0,0,-1,0,134331,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22128,4,0,1,28,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22130,15,3,0,0,1,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22131,15,3,0,0,1,0,0,0,-1,0,134142,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22132,15,3,0,0,1,0,0,0,-1,0,134140,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22133,15,3,0,0,1,0,0,0,-1,0,134141,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22134,15,3,0,0,1,0,0,0,-1,0,134143,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22135,15,3,0,0,1,0,0,0,-1,0,134144,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22136,15,3,0,0,1,0,0,0,-1,0,134140,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22137,15,0,0,0,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22138,12,0,0,0,0,0,0,0,-1,0,132614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22139,12,0,0,0,0,0,0,0,-1,0,133308,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22140,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22141,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22142,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22143,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22144,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22145,15,3,0,0,0,0,0,0,-1,0,135454,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22146,9,0,0,0,70,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22147,15,1,2,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22148,15,1,2,0,0,0,0,0,-1,0,134412,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22149,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22150,4,0,3,2,0,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22151,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22152,15,0,0,0,0,0,0,0,-1,0,133636,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22153,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22154,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22155,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22156,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22157,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22158,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22159,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22160,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22161,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22162,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22163,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22164,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22165,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22166,15,3,0,0,0,0,0,0,-1,0,135450,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22167,15,3,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22168,15,3,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22169,15,3,0,0,0,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22170,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22171,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22172,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22173,15,3,0,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22174,15,3,0,0,0,0,0,0,-1,0,134939,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22175,15,3,0,0,0,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22176,15,3,0,0,0,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22177,15,3,0,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22178,15,3,0,0,0,0,0,0,-1,0,135449,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22179,9,0,0,0,68,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22180,9,0,0,0,62,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22181,9,0,0,0,64,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22182,9,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22183,9,0,0,0,63,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22184,9,0,0,0,66,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22185,9,0,0,0,64,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22186,9,0,0,0,68,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22187,9,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22188,9,0,0,0,62,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22189,9,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22190,9,0,0,0,64,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22191,4,3,5,5,60,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22192,0,0,3,0,0,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22193,0,0,3,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22194,4,3,5,10,60,0,0,0,-1,0,132965,10,0,50,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22195,4,3,0,6,60,0,0,0,-1,0,132505,10,0,40,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22196,4,4,5,5,60,0,0,0,-1,0,132639,10,0,165,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22197,4,4,0,6,60,0,0,0,-1,0,132505,11,0,45,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22198,4,6,6,14,60,4,0,0,-1,0,134968,9,0,120,0,0,0,0,0,0,3040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22199,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +22200,15,0,0,0,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22201,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22202,7,7,0,0,0,0,0,0,-1,0,134455,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22203,7,7,0,0,0,0,0,0,-1,0,135241,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22204,4,2,8,9,55,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22205,4,4,6,9,52,0,0,0,-1,0,132613,11,0,45,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22206,4,0,0,23,0,0,0,0,-1,0,134927,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22207,4,3,5,6,55,0,0,0,-1,0,132517,10,0,40,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22208,2,5,1,17,53,1,0,0,-1,0,133047,11,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,203,0,0,0,0 +22209,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22210,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22211,2,13,1,22,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22212,4,3,5,3,51,0,0,0,-1,0,135047,10,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22213,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22214,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22215,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +22216,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22217,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22218,15,3,0,0,0,0,0,0,-1,0,133851,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22219,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22220,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22221,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22222,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22223,4,4,6,1,50,0,0,0,-1,0,133122,11,0,80,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22224,12,0,3,0,1,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22225,4,1,0,1,55,0,3304,0,-1,0,133129,7,0,50,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22226,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22227,12,0,0,0,0,0,0,0,-1,0,136244,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22228,12,0,0,0,0,0,0,0,-1,0,135271,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22229,12,0,0,0,0,0,0,0,-1,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22230,4,1,7,16,0,0,0,0,-1,0,133755,7,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22231,4,1,0,8,56,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22232,4,3,5,6,56,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22233,1,0,1,18,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22234,4,1,7,3,48,0,0,0,-1,0,135040,7,0,50,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22235,15,0,0,0,0,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22236,0,0,0,0,0,0,0,0,-1,0,135457,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22237,0,0,0,0,0,0,0,0,-1,0,135460,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22238,0,0,0,0,0,0,0,0,-1,0,135458,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22239,0,0,0,0,0,0,0,0,-1,0,135459,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22240,4,3,5,8,48,0,0,0,-1,0,132547,10,0,60,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22241,4,2,8,3,52,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22242,4,3,5,6,51,0,0,0,-1,0,132507,10,0,40,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22243,1,1,8,18,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22244,1,1,8,18,0,0,0,0,-1,0,134711,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22245,4,1,7,8,51,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22246,1,3,8,18,0,0,0,0,-1,0,133665,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22247,4,1,7,8,58,0,0,0,-1,0,132560,7,0,40,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22248,1,3,8,18,0,0,0,0,-1,0,133666,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22249,1,3,8,18,0,0,0,0,-1,0,133662,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22250,1,2,8,18,0,0,0,0,-1,0,133668,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22251,1,2,8,18,0,0,0,0,-1,0,133663,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22252,1,2,8,18,0,0,0,0,-1,0,133669,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22253,4,0,8,23,58,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22254,2,19,2,26,52,0,0,0,-1,0,135464,21,0,65,0,1,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +22255,4,0,1,11,52,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22256,4,1,7,10,52,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22257,4,0,4,11,52,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22258,15,0,0,0,1,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22259,0,0,0,0,0,0,0,0,-1,0,133345,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22260,0,0,0,0,0,0,0,0,-1,0,133345,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22261,15,3,8,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22262,15,3,0,0,1,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22263,15,3,0,0,1,0,0,0,-1,0,135449,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22264,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22265,15,0,0,0,1,0,0,0,-1,0,135454,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22266,2,15,1,13,52,3,0,0,-1,0,135124,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +22267,4,1,7,1,60,0,0,0,-1,0,133164,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22268,4,0,3,12,58,0,0,0,-1,0,133442,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22269,4,1,7,16,58,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22270,4,4,6,8,50,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22271,4,2,8,7,52,0,0,0,-1,0,134646,7,0,75,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22272,4,2,8,5,0,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22273,4,2,8,1,0,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22274,4,2,8,5,0,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22275,4,2,8,8,52,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22276,4,0,0,20,0,0,0,0,-1,0,132665,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22277,4,0,0,20,0,0,0,0,-1,0,135029,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22278,4,0,0,20,0,0,0,0,-1,0,132664,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22279,4,0,0,20,0,0,0,0,-1,0,132691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22280,4,0,0,20,0,0,0,0,-1,0,132658,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22281,4,0,0,20,0,0,0,0,-1,0,135023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22282,4,0,0,20,0,0,0,0,-1,0,135028,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22283,15,3,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22284,15,3,0,0,0,0,0,0,-1,0,133459,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22285,15,3,0,0,0,0,0,0,-1,0,133457,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22286,15,3,0,0,0,0,0,0,-1,0,133458,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22287,15,3,0,0,0,0,0,0,-1,0,133462,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22288,15,3,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22289,15,3,0,0,0,0,0,0,-1,0,133465,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22290,15,3,0,0,0,0,0,0,-1,0,133460,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22291,15,3,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22292,15,3,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22293,15,3,0,0,0,0,0,0,-1,0,133467,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22294,15,3,0,0,0,0,0,0,-1,0,133461,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22295,15,3,0,0,0,0,0,0,-1,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22296,15,3,0,0,0,0,0,0,-1,0,133938,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22297,15,3,0,0,0,0,0,0,-1,0,133468,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22298,15,3,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22299,15,3,0,0,0,0,0,0,-1,0,133472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22300,15,3,0,0,0,0,0,0,-1,0,133473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22301,4,1,7,20,58,0,0,0,-1,0,132689,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22302,4,1,7,1,58,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22303,4,1,7,7,57,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22304,4,1,7,10,56,0,0,0,-1,0,132961,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22305,4,1,7,3,56,0,0,0,-1,0,135036,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22306,4,1,7,6,56,0,0,0,-1,0,132492,7,0,30,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22307,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22308,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22309,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22310,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22311,4,1,7,8,56,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22312,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22313,4,1,7,9,56,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22314,2,6,1,17,56,1,0,0,-1,0,135129,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,226,0,0,0,0 +22315,2,4,2,21,56,3,0,0,-1,0,133039,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +22316,4,7,0,28,10,0,0,0,-1,0,135464,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0 +22317,2,13,1,13,56,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,78,0,0,0,0 +22318,2,2,2,15,56,0,0,0,-1,0,135500,13,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,150,0,0,0,0 +22319,4,0,8,23,56,7,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22320,15,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22321,4,0,0,12,56,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22322,2,4,2,13,56,3,0,0,-1,0,133490,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +22324,0,5,0,0,45,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22325,4,2,8,6,56,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22326,4,0,5,11,58,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22327,4,0,3,2,58,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22328,4,4,6,7,58,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22329,4,0,8,23,58,0,0,0,-1,0,135469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22330,4,1,7,16,56,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22331,4,0,3,11,57,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22332,2,7,1,13,57,3,0,0,-1,0,135326,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +22333,2,5,1,17,57,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +22334,4,0,5,11,57,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22335,2,10,2,17,58,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +22336,4,6,1,14,58,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22337,4,1,7,16,58,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22338,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22339,4,0,5,11,58,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22340,4,0,3,2,58,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22341,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22342,4,1,7,7,58,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22343,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22344,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22345,4,9,2,28,57,0,0,0,-1,0,134920,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22346,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +22347,2,18,2,26,0,0,0,0,-1,0,135533,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,162,0,0,0,0 +22348,2,5,1,17,0,1,0,0,-1,0,133047,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,265,0,0,0,0 +22349,15,0,0,0,60,0,0,0,-1,0,133831,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22350,15,0,0,0,60,0,0,0,-1,0,133823,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22351,15,0,0,0,60,0,0,0,-1,0,133807,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22352,15,0,0,0,60,0,0,0,-1,0,133834,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22353,15,0,0,0,60,0,0,0,-1,0,133833,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22354,15,0,0,0,60,0,0,0,-1,0,133835,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22355,15,0,0,0,60,0,0,0,-1,0,133830,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22356,15,0,0,0,60,0,0,0,-1,0,133828,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22357,15,0,0,0,60,0,0,0,-1,0,133832,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22358,15,0,0,0,60,0,0,0,-1,0,133829,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22359,15,0,0,0,60,0,0,0,-1,0,133826,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22360,15,0,0,0,60,0,0,0,-1,0,133825,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22361,15,0,0,0,60,0,0,0,-1,0,133827,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22362,15,0,0,0,60,0,0,0,-1,0,133822,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22363,15,0,0,0,60,0,0,0,-1,0,133820,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22364,15,0,0,0,60,0,0,0,-1,0,133824,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22365,15,0,0,0,60,0,0,0,-1,0,133821,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22366,15,0,0,0,60,0,0,0,-1,0,133810,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22367,15,0,0,0,60,0,0,0,-1,0,133809,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22368,15,0,0,0,60,0,0,0,-1,0,133811,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22369,15,0,0,0,60,0,0,0,-1,0,133806,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22370,15,0,0,0,60,0,0,0,-1,0,133804,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22371,15,0,0,0,60,0,0,0,-1,0,133808,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22372,15,0,0,0,60,0,0,0,-1,0,133805,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22373,12,0,0,0,0,0,0,0,-1,0,134517,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22374,12,0,0,0,0,0,0,0,-1,0,134515,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22375,12,0,0,0,0,0,0,0,-1,0,134518,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22376,12,0,0,0,0,0,0,0,-1,0,134516,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22377,2,15,1,13,0,3,0,0,-1,0,135315,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +22378,2,7,1,13,0,3,0,0,-1,0,135348,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +22379,2,15,1,21,0,3,0,0,-1,0,135322,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,84,0,0,0,0 +22380,2,4,1,21,0,3,0,0,-1,0,133042,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,100,0,0,0,0 +22381,12,0,0,0,0,0,0,0,-1,0,134437,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22382,12,0,0,0,0,0,0,0,-1,0,132595,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22383,2,7,0,21,59,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +22384,2,4,1,21,58,3,0,0,-1,0,133045,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +22385,4,4,6,7,55,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22386,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,33,0,0,0,0 +22387,12,0,0,0,0,0,0,0,-1,0,134131,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22388,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22389,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22390,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22391,2,10,2,17,58,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,136,0,0,0,0 +22392,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22393,9,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22394,2,10,2,17,57,2,0,0,-1,0,135166,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +22395,4,9,2,28,52,0,0,0,-1,0,134919,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22396,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22397,4,8,2,28,52,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22398,4,8,2,28,57,0,0,0,-1,0,134914,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22399,4,8,2,28,60,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22400,4,7,2,28,52,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22401,4,7,2,28,57,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22402,4,7,2,28,60,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22403,4,0,3,2,56,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22404,2,13,1,21,56,7,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +22405,4,1,7,3,56,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22406,2,10,2,17,56,2,0,0,-1,0,135160,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,132,0,0,0,0 +22407,4,2,8,1,56,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22408,2,19,2,26,58,0,0,0,-1,0,135469,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +22409,4,2,8,5,58,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22410,4,3,5,10,58,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22411,4,4,6,1,58,0,0,0,-1,0,133069,11,0,80,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22412,4,1,7,3,58,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22413,12,0,0,0,0,0,0,0,-1,0,135325,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22414,12,0,7,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22415,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22416,4,4,1,5,60,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22417,4,4,1,7,60,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22418,4,4,1,1,60,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22419,4,4,1,3,60,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22420,4,4,1,8,60,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22421,4,4,1,10,60,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22422,4,4,1,6,60,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22423,4,4,1,9,60,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22424,4,4,1,9,60,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22425,4,4,1,5,60,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22426,4,4,1,10,60,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22427,4,4,1,7,60,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22428,4,4,1,1,60,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22429,4,4,1,3,60,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22430,4,4,1,8,60,0,0,0,-1,0,132548,9,0,75,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22431,4,4,1,6,60,0,0,0,-1,0,132511,9,0,55,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22432,12,0,8,0,0,0,0,0,-1,0,135125,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22433,4,0,5,11,58,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22434,15,0,8,0,0,0,0,0,-1,0,134528,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22435,15,0,8,0,0,0,0,0,-1,0,136067,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22436,4,3,5,5,60,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22437,4,3,5,7,60,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22438,4,3,5,1,60,0,0,0,-1,0,133117,11,0,85,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22439,4,3,5,3,60,0,0,0,-1,0,135045,11,0,85,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22440,4,3,5,8,60,0,0,0,-1,0,132548,11,0,70,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22441,4,3,5,10,60,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22442,4,3,5,6,60,0,0,0,-1,0,132511,11,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22443,4,3,5,9,60,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22444,15,0,8,0,0,0,0,0,-1,0,132106,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22445,7,12,2,0,0,0,0,0,-1,0,132854,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22446,7,12,2,0,0,0,0,0,-1,0,132860,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22447,7,12,2,0,0,0,0,0,-1,0,132861,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22448,7,12,2,0,0,0,0,0,-1,0,132882,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22449,7,12,2,0,0,0,0,0,-1,0,132881,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22450,7,12,2,0,0,0,0,0,-1,0,132885,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22451,7,10,0,0,0,0,0,0,-1,0,132845,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22452,7,10,0,0,0,0,0,0,-1,0,132846,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22456,7,10,0,0,0,0,0,0,-1,0,132851,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22457,7,10,0,0,0,0,0,0,-1,0,132849,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22458,2,10,2,17,0,2,0,0,-1,0,135165,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,200,0,0,0,0 +22459,3,8,2,0,0,0,0,0,-1,0,132886,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22460,3,8,2,0,0,0,0,0,-1,0,132872,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22461,7,12,1,0,0,5,0,0,-1,0,134924,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22462,7,12,1,0,0,5,0,0,-1,0,134922,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22463,7,12,1,0,0,5,0,0,-1,0,134923,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22464,4,3,5,5,60,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22465,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22466,4,3,5,1,60,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22467,4,3,5,3,60,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22468,4,3,5,8,60,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22469,4,3,5,10,60,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22470,4,3,5,6,60,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22471,4,3,5,9,60,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22472,4,2,8,8,56,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22473,12,0,0,0,0,0,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22474,12,0,0,0,0,0,0,0,-1,0,133302,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22475,12,0,0,0,0,0,0,0,-1,0,133303,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22476,4,2,8,5,60,0,0,0,-1,0,132737,10,0,120,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22477,4,2,8,7,60,0,0,0,-1,0,134681,10,0,90,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22478,4,2,8,1,60,0,0,0,-1,0,133160,10,0,70,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22479,4,2,8,3,60,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22480,4,2,8,8,60,0,0,0,-1,0,132587,10,0,60,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22481,4,2,8,10,60,0,0,0,-1,0,132962,10,0,40,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22482,4,2,8,6,60,0,0,0,-1,0,132516,10,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22483,4,2,8,9,60,0,0,0,-1,0,132614,10,0,40,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22484,15,0,0,0,0,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22485,15,0,0,0,0,0,0,0,-1,0,134421,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22486,13,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22487,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22488,4,2,8,5,60,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22489,4,2,8,7,60,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22490,4,2,8,1,60,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22491,4,2,8,3,60,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22492,4,2,8,8,60,0,0,0,-1,0,132548,7,0,60,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22493,4,2,8,10,60,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22494,4,2,8,6,60,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22495,4,2,8,9,60,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22496,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22497,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22498,4,1,7,1,60,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22499,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22500,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22501,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22502,4,1,7,6,60,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22503,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22504,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22505,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22506,4,1,7,1,60,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22507,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22508,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22509,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22510,4,1,7,6,60,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22511,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22512,4,1,7,20,60,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22513,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22514,4,1,7,1,60,0,0,0,-1,0,132767,8,0,60,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22515,4,1,7,3,60,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22516,4,1,7,8,60,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22517,4,1,7,10,60,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22518,4,1,7,6,60,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22519,4,1,7,9,60,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22520,15,0,0,0,60,0,0,0,-1,0,134514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22521,0,8,0,0,52,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22522,0,8,0,0,58,0,0,0,-1,0,134767,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22523,15,0,0,0,0,0,0,0,-1,0,134499,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22524,15,0,0,0,0,0,0,0,-1,0,134503,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22525,12,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22526,12,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22527,12,0,0,0,0,0,0,0,-1,0,134139,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22528,12,0,0,0,0,0,0,0,-1,0,133614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22529,12,0,0,0,0,0,0,0,-1,0,136074,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22530,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22531,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22532,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22533,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22534,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22535,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22536,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22537,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22538,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22539,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22540,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22541,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22542,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22543,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22544,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22545,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22546,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22547,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22548,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22549,12,0,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22550,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22551,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22552,9,8,4,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22553,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22554,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22555,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22556,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22557,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22558,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22559,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22560,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22561,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22562,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22563,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22564,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22565,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22566,12,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22567,12,0,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22568,15,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22569,12,0,0,0,0,0,0,0,-1,0,133723,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22570,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22571,1,0,7,18,0,0,0,0,-1,0,133625,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22572,7,10,0,0,0,0,0,0,-1,0,132837,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22573,7,10,0,0,0,0,0,0,-1,0,132838,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22574,7,10,0,0,0,0,0,0,-1,0,132839,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22575,7,10,0,0,0,0,0,0,-1,0,132840,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22576,7,10,0,0,0,0,0,0,-1,0,132841,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22577,7,10,0,0,0,0,0,0,-1,0,132843,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22578,7,10,0,0,0,0,0,0,-1,0,132844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22579,12,0,0,0,1,0,0,0,-1,0,133720,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22580,12,0,0,0,0,0,0,0,-1,0,134137,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22581,12,0,0,0,0,0,0,0,-1,0,132997,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22582,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22583,12,0,0,0,0,0,0,0,-1,0,132766,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22584,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22585,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22586,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22587,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22588,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22589,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22590,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22591,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22592,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22593,15,0,0,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22594,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22595,15,0,0,0,1,0,0,0,-1,0,134328,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22596,2,8,0,17,0,0,0,0,-1,0,135356,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +22597,12,0,0,0,15,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22598,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22599,12,0,0,0,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22600,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22601,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22602,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22603,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22604,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22605,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22606,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22607,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22608,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22609,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22610,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22611,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22612,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22613,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22614,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22615,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22616,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22617,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22618,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22619,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22620,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22621,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22622,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22623,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22624,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22625,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22626,12,0,0,0,55,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22627,12,0,0,0,1,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22628,12,0,3,0,0,0,0,0,-1,0,134814,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22629,12,0,0,0,1,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22630,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22631,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22632,2,10,2,17,60,2,0,0,-1,0,135226,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22633,12,0,0,0,1,0,0,0,-1,0,133790,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22634,12,0,0,0,1,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22635,15,0,0,0,55,0,0,0,-1,0,136094,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22636,15,0,0,0,55,0,0,0,-1,0,135849,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22637,15,0,3,0,58,0,0,0,-1,0,135723,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22638,15,0,0,0,55,0,0,0,-1,0,136121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22639,12,0,0,0,1,0,0,0,-1,0,133857,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22640,12,0,0,0,1,0,0,0,-1,0,134177,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22641,12,0,0,0,0,0,0,0,-1,0,134339,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22642,12,0,0,0,0,0,0,0,-1,0,134387,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22644,7,8,0,0,0,0,0,0,-1,0,133571,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22645,0,5,0,0,5,0,0,0,-1,0,134044,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22646,4,0,1,28,66,7,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22647,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22648,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22649,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22650,15,0,0,0,0,0,0,0,-1,0,133460,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22651,4,4,6,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22652,4,1,7,5,60,0,0,0,-1,0,132649,7,0,100,0,0,0,0,0,0,139,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22653,12,0,0,0,0,0,0,0,-1,0,134179,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22654,4,1,7,10,60,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,87,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22655,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,61,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22656,2,3,1,26,0,0,0,0,-1,0,135615,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +22657,4,0,0,2,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22658,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,69,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22659,4,0,0,2,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22660,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,49,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22661,4,2,7,5,60,0,0,0,-1,0,132649,7,0,120,0,0,0,0,0,0,267,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22662,4,2,7,10,60,0,0,0,-1,0,132940,7,0,40,0,0,0,0,0,0,167,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22663,4,2,7,9,60,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,117,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22664,4,3,7,5,60,0,0,0,-1,0,132744,10,0,140,0,0,0,0,0,0,578,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22665,4,3,7,9,60,0,0,0,-1,0,132606,10,0,50,0,0,0,0,0,0,253,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +22666,4,3,7,10,60,0,0,0,-1,0,132962,10,0,50,0,0,0,0,0,0,361,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +22667,4,1,7,9,0,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22668,4,2,8,9,0,0,0,0,-1,0,132603,7,0,40,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22669,4,4,7,5,60,0,0,0,-1,0,132633,9,0,165,0,0,0,0,0,0,1027,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0 +22670,4,4,7,10,60,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,642,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0 +22671,4,4,7,9,60,0,0,0,-1,0,132606,9,0,55,0,0,0,0,0,0,449,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22672,4,4,6,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22673,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22674,12,0,0,0,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22675,12,0,0,0,0,0,0,0,-1,0,133282,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22676,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22677,12,0,0,0,0,0,0,0,-1,0,135652,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22678,4,0,3,12,0,0,0,0,-1,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22679,1,0,8,18,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22680,4,0,0,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22681,4,0,0,11,0,0,0,0,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22682,7,11,2,0,60,0,0,0,-1,0,134422,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22683,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22684,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22685,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22686,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22687,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22688,2,15,1,21,0,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,79,0,0,0,0 +22689,4,2,8,1,0,0,0,0,-1,0,133111,7,0,60,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22690,4,3,5,7,0,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22691,2,8,1,17,60,1,0,0,-1,0,135331,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,389,0,0,0,0 +22692,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22693,12,0,0,0,0,0,0,0,-1,0,134095,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22694,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22695,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22696,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22697,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22698,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22699,4,4,6,7,0,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,898,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22700,4,1,7,7,0,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,121,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22701,4,2,8,7,0,0,0,0,-1,0,134646,7,0,90,0,0,0,0,0,0,234,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22702,4,3,5,7,0,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,505,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +22703,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22704,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22705,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22706,12,0,0,0,1,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22707,4,0,4,11,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0 +22708,12,0,0,0,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22709,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +22710,7,9,7,0,0,0,0,0,-1,0,134191,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22711,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22712,4,1,7,16,60,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22713,2,4,1,21,60,3,0,0,-1,0,135461,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,152,0,0,0,0 +22714,4,4,6,10,60,0,0,0,-1,0,132965,8,0,45,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22715,4,3,5,10,60,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22716,4,1,7,6,60,0,0,0,-1,0,132490,7,0,30,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22717,12,0,0,0,0,0,0,0,-1,0,133458,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22718,4,2,8,1,60,0,0,0,-1,0,133143,7,0,60,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22719,15,0,0,0,60,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22720,4,1,7,1,60,0,0,0,-1,0,133163,7,0,50,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22721,4,0,3,11,60,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22722,4,0,3,11,60,0,0,0,-1,0,133362,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22723,12,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22724,2,4,2,13,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +22725,4,0,4,11,0,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0 +22726,15,0,0,0,60,0,0,0,-1,0,134888,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22727,15,0,0,0,60,0,0,0,-1,0,135157,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22728,7,3,0,0,0,0,0,0,-1,0,133015,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22729,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22730,4,1,7,6,60,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22731,4,1,7,16,60,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22732,4,0,4,2,60,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22733,12,0,0,0,0,0,0,0,-1,0,133573,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22734,12,0,0,0,0,0,0,0,-1,0,134909,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22735,12,0,0,0,0,0,0,0,-1,0,133464,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22736,2,7,1,21,60,1,0,0,-1,0,135371,9,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,296,0,0,0,0 +22737,15,0,0,0,60,0,0,0,-1,0,135156,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22738,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +22739,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22740,4,2,8,7,60,0,0,0,-1,0,134637,7,0,90,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22741,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22742,4,1,0,5,1,0,0,0,-1,0,135012,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22743,0,0,0,6,1,0,0,0,-1,0,133694,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22744,4,1,0,8,1,0,0,0,-1,0,132539,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22745,4,1,0,7,1,0,0,0,-1,0,134596,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22746,15,0,0,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22747,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22748,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22749,4,2,8,7,60,0,0,0,-1,0,134637,7,0,90,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22750,4,2,8,7,60,0,0,0,-1,0,134586,7,0,90,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22752,4,1,7,7,60,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22753,4,4,6,7,60,0,0,0,-1,0,134691,9,0,120,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22754,12,0,0,0,0,0,0,0,-1,0,134863,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22755,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22756,4,1,5,5,60,0,0,0,-1,0,132742,7,0,80,0,0,0,0,0,0,98,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22757,4,1,5,1,60,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,80,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22758,4,1,5,3,60,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,74,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22759,4,2,5,1,60,0,0,0,-1,0,133160,7,0,60,0,0,0,0,0,0,156,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22760,4,2,5,8,60,0,0,0,-1,0,132561,7,0,50,0,0,0,0,0,0,132,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0 +22761,4,2,5,6,60,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,108,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +22762,4,4,5,5,60,0,0,0,-1,0,132742,9,0,135,0,0,0,0,0,0,726,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +22763,4,4,5,10,60,0,0,0,-1,0,132963,9,0,45,0,0,0,0,0,0,454,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 +22764,4,4,5,6,60,0,0,0,-1,0,132510,8,0,45,0,0,0,0,0,0,408,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0 +22765,15,0,7,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22766,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22767,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22768,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22769,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22770,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22771,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22772,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22773,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22774,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22775,12,0,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22776,12,0,3,0,0,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22777,12,0,2,0,0,0,0,0,-1,0,134285,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22778,0,0,3,0,1,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22779,0,0,3,0,1,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22780,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22781,15,0,0,0,0,0,0,0,-1,0,132498,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22782,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22783,2,7,1,13,0,3,0,0,-1,0,135276,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +22784,4,0,0,23,1,7,0,0,-1,0,134333,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22785,7,9,7,0,0,0,0,0,-1,0,134208,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22786,7,9,7,0,0,0,0,0,-1,0,134205,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22787,7,9,7,0,0,0,0,0,-1,0,134220,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22788,7,9,7,0,55,0,0,0,-1,0,134209,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22789,7,9,7,0,0,0,0,0,-1,0,134223,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22790,7,9,7,0,0,0,0,0,-1,0,134201,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22791,7,9,7,0,0,0,0,0,-1,0,134216,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22792,7,9,7,0,0,0,0,0,-1,0,134218,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22793,7,9,7,0,0,0,0,0,-1,0,134214,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22794,7,9,7,0,0,0,0,0,-1,0,134207,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22795,0,0,0,0,60,0,0,0,-1,0,134206,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22796,12,0,3,0,0,0,0,0,-1,0,134875,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22797,7,9,7,0,60,0,0,0,-1,0,134217,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22798,2,5,1,17,60,1,0,0,-1,0,133502,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0,435,0,0,0,0 +22799,2,10,2,17,60,2,0,0,-1,0,135152,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0,366,0,0,0,0 +22800,2,10,2,17,60,2,0,0,-1,0,135150,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +22801,2,10,2,17,60,2,0,0,-1,0,135168,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +22802,2,15,1,13,60,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,158,0,0,0,0 +22803,2,15,1,21,60,3,0,0,-1,0,133455,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,147,0,0,0,0 +22804,2,15,1,13,60,3,0,0,-1,0,133454,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,141,0,0,0,0 +22805,2,7,1,13,60,3,0,0,-1,0,135370,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,198,0,0,0,0 +22806,2,7,1,13,60,3,0,0,-1,0,135370,8,0,105,0,0,0,0,0,0,100,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +22807,2,7,1,21,60,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,153,0,0,0,0 +22808,2,4,1,13,60,3,0,0,-1,0,133495,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,221,0,0,0,0 +22809,2,5,1,17,60,1,0,0,-1,0,133503,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0,367,0,0,0,0 +22810,2,3,1,26,60,0,0,0,-1,0,135620,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,153,0,0,0,0 +22811,2,2,2,15,60,0,0,0,-1,0,135501,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,229,0,0,0,0 +22812,2,18,2,26,60,0,0,0,-1,0,135541,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,281,0,0,0,0 +22813,2,8,1,17,60,1,0,0,-1,0,135356,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,354,0,0,0,0 +22814,2,8,1,17,60,1,0,0,-1,0,135345,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0,344,0,0,0,0 +22815,2,1,1,17,60,1,0,0,-1,0,132416,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,354,0,0,0,0 +22816,2,0,1,13,60,3,0,0,-1,0,132399,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,221,0,0,0,0 +22817,2,6,1,17,60,1,0,0,-1,0,135574,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,338,0,0,0,0 +22818,4,6,6,14,60,4,0,0,-1,0,134972,9,0,120,0,0,0,0,0,0,3570,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +22819,4,6,6,14,60,4,0,0,-1,0,134973,9,0,120,0,0,0,0,0,0,3936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22820,2,19,2,26,60,0,0,0,-1,0,135481,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,222,0,0,0,0 +22821,2,19,2,26,60,0,0,0,-1,0,135482,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,271,0,0,0,0 +22822,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22823,0,2,3,0,50,0,0,0,-1,0,134777,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22824,0,2,3,0,50,0,0,0,-1,0,134773,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22825,0,2,3,0,50,0,0,0,-1,0,134768,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22826,0,1,3,0,50,0,0,0,-1,0,134733,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22827,0,2,3,0,50,0,0,0,-1,0,134774,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22828,0,1,3,0,50,0,0,0,-1,0,134731,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22829,0,1,3,0,55,0,0,0,-1,0,134756,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22830,0,2,3,0,55,0,0,0,-1,0,134760,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22831,0,2,3,0,55,0,0,0,-1,0,134751,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22832,0,1,3,0,55,0,0,0,-1,0,134762,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22833,0,2,3,0,50,0,0,0,-1,0,134772,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22834,0,2,3,0,55,0,0,0,-1,0,134746,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22835,0,2,3,0,60,0,0,0,-1,0,134771,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22836,0,1,3,0,60,0,0,0,-1,0,134764,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22837,0,1,3,0,60,0,0,0,-1,0,134728,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22838,0,1,3,0,60,0,0,0,-1,0,134730,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22839,0,1,3,0,60,0,0,0,-1,0,134729,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22840,0,2,3,0,60,0,0,0,-1,0,134778,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22841,0,1,3,0,60,0,0,0,-1,0,134748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22842,0,1,3,0,60,0,0,0,-1,0,134750,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22843,4,3,5,8,60,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22844,0,1,3,0,60,0,0,0,-1,0,134751,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22845,0,1,3,0,60,0,0,0,-1,0,134752,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22846,0,1,3,0,60,0,0,0,-1,0,134747,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22847,0,1,3,0,60,0,0,0,-1,0,134749,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22848,0,2,3,0,60,0,0,0,-1,0,134761,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22849,0,1,3,0,60,0,0,0,-1,0,134758,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22850,0,1,3,0,65,0,0,0,-1,0,134759,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22851,0,3,3,0,65,0,0,0,-1,0,134742,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22852,4,2,8,8,60,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22853,0,3,3,0,65,0,0,0,-1,0,134741,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22854,0,3,3,0,65,0,0,0,-1,0,134740,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22855,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22856,4,2,8,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22857,4,3,5,8,60,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22858,4,4,6,8,60,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22859,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22860,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22861,0,3,3,0,65,0,0,0,-1,0,134739,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22862,4,3,5,10,60,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22863,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22864,4,2,8,10,60,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22865,4,1,7,10,60,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22866,0,3,3,0,65,0,0,0,-1,0,134738,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22867,4,3,5,10,60,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22868,4,4,6,10,60,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22869,4,1,7,10,60,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22870,4,1,7,10,60,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22871,0,1,3,0,55,0,0,0,-1,0,134770,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22872,4,4,6,5,60,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22873,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22874,4,3,5,5,60,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22875,4,3,5,7,60,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22876,4,3,5,5,60,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22877,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22878,4,2,8,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22879,4,2,8,5,60,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22880,4,2,8,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22881,4,1,7,7,60,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22882,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22883,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22884,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22885,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22886,4,1,7,20,60,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22887,4,3,5,7,60,0,0,0,-1,0,134589,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22888,12,0,0,0,0,0,0,0,-1,0,134140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22889,12,0,0,0,0,0,0,0,-1,0,134844,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22890,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22891,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22892,12,0,0,0,1,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22893,12,0,0,0,0,0,0,0,-1,0,136118,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22894,12,0,0,0,0,0,0,0,-1,0,136182,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22895,0,5,0,0,55,0,0,0,-1,0,134029,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22896,12,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22897,9,0,0,0,60,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22898,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22899,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22900,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22901,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22902,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22903,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22904,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22905,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22906,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22907,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22908,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22909,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22910,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22911,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22912,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22913,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22914,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22915,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22916,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22917,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22918,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22919,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22920,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22921,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22922,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22923,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22924,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22925,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22926,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22927,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22928,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22929,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22930,12,0,0,0,0,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22931,12,0,0,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22932,12,0,0,0,0,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22933,12,0,0,0,1,0,0,0,-1,0,134576,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22934,12,0,0,0,0,0,0,0,-1,0,134192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22935,4,0,3,2,60,0,0,0,-1,0,133279,24,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0 +22936,4,4,1,9,60,0,0,0,-1,0,132616,9,0,55,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22937,4,0,3,23,60,0,0,0,-1,0,134548,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22938,4,1,7,16,60,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22939,4,0,3,11,60,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22940,4,4,7,3,60,0,0,0,-1,0,135047,9,0,100,0,0,0,0,0,0,797,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22941,4,2,7,3,60,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,207,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22942,2,4,1,21,60,3,0,0,-1,0,133506,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +22943,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22944,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22945,12,0,0,0,0,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22946,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22947,4,0,3,2,60,0,0,0,-1,0,133317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22948,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22949,12,0,0,0,1,0,0,0,-1,0,135228,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22950,12,0,0,0,1,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22951,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22952,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22953,4,3,5,5,0,0,0,0,-1,0,132624,10,0,60,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22954,4,0,4,12,60,0,0,0,-1,0,135442,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22955,12,0,0,0,0,0,0,0,-1,0,132858,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22956,2,4,1,13,0,3,0,0,-1,0,133487,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +22957,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0 +22958,2,8,1,17,0,1,0,0,-1,0,135276,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,23,0,0,0,0 +22959,2,10,2,17,0,2,0,0,-1,0,135175,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,20,0,0,0,0 +22960,4,1,7,16,60,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22961,4,0,4,11,60,0,0,0,-1,0,133391,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22962,12,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22963,2,15,1,13,0,3,0,0,-1,0,135641,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0 +22964,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22965,4,2,8,9,0,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22966,4,1,7,9,0,0,0,0,-1,0,132606,7,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22967,4,3,5,3,0,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,448,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22968,4,1,5,3,0,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,108,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0 +22969,2,2,2,15,0,0,0,0,-1,0,135493,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,18,0,0,0,0 +22970,12,0,0,0,45,0,0,0,-1,0,133466,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22971,2,19,2,26,0,0,0,0,-1,0,135139,21,0,30,0,6,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +22972,12,0,0,0,45,0,0,0,-1,0,133457,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22973,12,0,0,0,45,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22974,12,0,0,0,45,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22975,12,0,0,0,45,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22976,1,0,8,18,0,0,0,0,-1,0,133638,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22977,12,0,0,0,45,0,0,0,-1,0,133460,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22978,12,0,0,0,0,0,0,0,-1,0,134075,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22979,4,0,4,11,0,0,0,0,-1,0,133343,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22980,2,10,2,17,0,2,0,0,-1,0,135176,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,66,0,0,0,0 +22981,4,0,4,2,60,0,0,0,-1,0,133315,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22982,2,2,2,15,0,0,0,0,-1,0,135495,12,0,60,2,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +22983,4,1,7,3,60,0,0,0,-1,0,135036,7,0,60,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22984,2,15,1,13,0,3,0,0,-1,0,135651,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +22985,4,3,5,5,10,0,0,0,-1,0,132624,10,0,75,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22986,4,1,7,20,10,0,0,0,-1,0,132660,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22987,4,2,8,5,10,0,0,0,-1,0,132716,7,0,65,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22988,2,4,1,21,60,3,0,0,-1,0,133496,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,162,0,0,0,0 +22989,12,0,0,0,1,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22990,4,1,7,16,16,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22991,4,1,7,8,10,0,0,0,-1,0,132562,7,0,25,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22992,4,2,7,8,10,0,0,0,-1,0,132538,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22993,4,3,7,8,10,0,0,0,-1,0,132535,10,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22994,4,0,1,23,60,0,0,0,-1,0,134555,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22995,2,8,1,17,0,1,0,0,-1,0,135369,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,75,0,0,0,0 +22996,4,6,1,14,0,4,0,0,-1,0,134951,9,0,65,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22997,2,19,2,26,0,0,0,0,-1,0,135469,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,28,0,0,0,0 +22998,4,2,8,7,0,0,0,0,-1,0,134631,7,0,55,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +22999,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23000,4,4,6,5,60,0,0,0,-1,0,132637,11,0,165,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23001,4,0,4,12,60,0,0,0,-1,0,135440,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23002,15,0,0,0,0,0,0,0,-1,0,132763,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23003,12,0,0,0,1,0,0,0,-1,0,132319,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23004,4,8,2,28,60,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23005,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23006,4,7,2,28,60,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23007,15,0,0,0,0,0,0,0,-1,0,132514,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23008,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23009,2,19,2,26,60,0,0,0,-1,0,135481,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,222,0,0,0,0 +23010,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23011,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23012,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23013,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23014,2,7,1,13,60,3,0,0,-1,0,135277,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +23015,15,0,0,0,0,0,0,0,-1,0,132599,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23016,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23017,4,1,7,16,60,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23018,4,0,3,11,60,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23019,4,4,7,1,60,0,0,0,-1,0,133074,9,0,100,0,0,0,0,0,0,864,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23020,4,2,7,1,60,0,0,0,-1,0,133072,7,0,70,0,0,0,0,0,0,224,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23021,4,1,7,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23022,15,0,0,0,0,0,0,0,-1,0,133640,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23023,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23024,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23025,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23026,12,0,0,0,1,0,0,0,-1,0,132876,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23027,4,0,4,12,60,0,0,0,-1,0,135439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23028,4,0,4,11,60,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0 +23029,4,0,3,23,60,0,0,0,-1,0,134547,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23030,4,1,7,16,60,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23031,4,0,3,11,60,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23032,4,1,7,1,60,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,117,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 +23033,4,3,5,1,60,0,0,0,-1,0,133122,10,0,85,0,0,0,0,0,0,486,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0 +23034,4,4,1,3,60,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23035,4,1,7,1,60,0,0,0,-1,0,133152,7,0,60,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23036,4,0,3,2,60,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23037,4,0,3,11,60,0,0,0,-1,0,133394,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23038,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23039,2,6,1,17,60,1,0,0,-1,0,135574,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0,378,0,0,0,0 +23040,4,0,4,12,60,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23041,4,0,4,12,60,0,0,0,-1,0,135441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23042,4,0,4,12,60,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0 +23043,4,6,6,14,60,4,0,0,-1,0,134971,9,0,120,0,0,0,0,0,0,3854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23044,2,15,1,13,60,3,0,0,-1,0,133456,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,126,0,0,0,0 +23045,4,1,7,16,60,0,0,0,-1,0,133777,7,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23046,4,0,4,12,60,0,0,0,-1,0,135444,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23047,4,0,4,12,60,0,0,0,-1,0,135439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23048,4,0,3,23,60,0,0,0,-1,0,134545,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23049,4,0,3,23,60,0,0,0,-1,0,134546,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23050,4,1,7,16,60,0,0,0,-1,0,133777,7,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23051,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23052,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23053,4,0,4,2,60,0,0,0,-1,0,133317,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23054,2,7,1,13,60,3,0,0,-1,0,135371,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,257,0,0,0,0 +23055,7,11,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23056,2,4,1,21,60,3,0,0,-1,0,133504,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +23057,4,0,4,2,60,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23058,4,0,3,2,60,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23059,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23060,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23061,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23062,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23063,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23064,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23065,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23066,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23067,4,0,3,11,60,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23068,4,4,1,7,60,0,0,0,-1,0,134696,9,0,120,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23069,4,1,7,20,60,0,0,0,-1,0,132687,7,0,100,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23070,4,1,7,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23071,4,2,8,7,60,0,0,0,-1,0,134634,7,0,90,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23072,4,4,1,10,60,0,0,0,-1,0,132956,9,0,55,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23073,4,2,8,8,60,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23074,12,0,0,0,0,0,0,0,-1,0,133724,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23075,4,6,6,14,60,4,0,0,-1,0,132389,9,0,120,0,0,0,0,0,0,3570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23076,7,11,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23077,3,0,0,0,0,0,0,0,-1,0,134083,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23078,4,4,1,10,0,0,0,0,-1,0,132963,9,0,45,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23079,3,4,0,0,0,0,0,0,-1,0,134093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23081,4,2,8,10,0,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23082,4,3,5,10,0,0,0,0,-1,0,132945,11,0,40,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23083,15,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23084,4,1,7,10,0,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23085,4,1,7,20,58,0,0,0,-1,0,132645,7,0,80,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23086,15,3,0,0,0,0,0,0,-1,0,132934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23087,4,4,1,5,58,0,0,0,-1,0,132745,9,0,135,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23088,4,3,5,5,58,0,0,0,-1,0,132630,11,0,120,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23089,4,2,8,5,58,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23090,4,4,1,9,58,0,0,0,-1,0,132613,9,0,45,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23091,4,1,7,9,58,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23092,4,3,5,9,58,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23093,4,2,8,9,58,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23094,3,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23095,3,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23096,3,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23097,3,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23098,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23099,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23100,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23101,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23103,3,4,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23104,3,4,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23105,3,4,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23106,3,4,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23107,3,3,0,0,0,0,0,0,-1,0,134103,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23108,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23109,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23110,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23111,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23112,3,2,0,0,0,0,0,0,-1,0,134114,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23113,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23114,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23115,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23116,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23117,3,1,0,0,0,0,0,0,-1,0,134080,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23118,3,1,0,0,0,0,0,0,-1,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23119,3,1,0,0,0,0,0,0,-1,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23120,3,1,0,0,0,0,0,0,-1,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23121,3,1,0,0,0,0,0,0,-1,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23122,0,8,0,0,50,0,0,0,-1,0,135249,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23123,0,8,0,0,50,0,0,0,-1,0,134806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23124,2,10,2,17,55,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,241,0,0,0,0 +23125,4,0,3,2,55,0,0,0,-1,0,132507,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23126,4,1,7,6,55,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23127,4,1,7,16,58,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23128,4,1,7,10,57,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23129,4,1,7,9,57,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23130,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23131,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23132,2,7,1,13,57,3,0,0,-1,0,135275,9,0,90,0,0,0,0,0,0,60,0,0,0,0,0,0,42,0,0,0,0,80,0,0,0,0 +23133,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23134,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23135,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23136,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23137,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23138,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23139,4,6,1,14,57,4,0,0,-1,0,134948,9,0,100,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23140,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23141,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23142,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23143,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23144,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23145,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23146,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23147,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23148,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23149,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23150,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23151,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23152,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23153,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23154,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23155,9,10,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23156,4,0,1,23,57,7,0,0,-1,0,133727,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23157,7,4,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23158,3,7,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23159,3,7,0,0,0,0,0,0,-1,0,134088,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23160,0,5,0,0,45,0,0,0,-1,0,133991,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23161,0,0,7,0,45,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23162,1,0,0,18,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23163,0,0,0,0,0,0,0,0,-1,0,135468,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23164,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23165,12,0,0,0,0,0,0,0,-1,0,132410,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23166,12,0,0,0,0,0,0,0,-1,0,135154,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23167,12,0,0,0,0,0,0,0,-1,0,135461,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23168,2,15,1,21,30,3,0,0,-1,0,135643,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,42,0,0,0,0 +23169,4,0,3,2,30,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23170,4,3,5,10,30,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23171,2,1,1,17,20,1,0,0,-1,0,132394,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,76,0,0,0,0 +23172,0,5,0,0,0,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23173,4,1,7,7,20,0,0,0,-1,0,134586,7,0,60,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23174,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +23175,0,0,0,0,0,0,0,0,-1,0,133984,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23176,0,0,3,0,0,0,0,0,-1,0,132489,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23177,2,19,2,26,36,0,0,0,-1,0,135474,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +23178,4,1,7,16,36,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23179,12,0,0,0,50,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23180,12,0,0,0,50,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23181,12,0,0,0,50,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23182,12,0,0,0,50,0,0,0,-1,0,135813,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23183,12,0,0,0,50,0,0,0,-1,0,135819,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23184,12,0,0,0,50,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23191,12,0,0,0,0,0,0,0,-1,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23192,4,0,7,19,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23193,15,0,0,0,60,0,0,0,-1,0,132264,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23194,0,0,0,0,1,0,0,0,-1,0,134499,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23195,0,0,0,0,1,0,0,0,-1,0,134500,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23196,0,0,0,0,1,0,0,0,-1,0,134501,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23197,4,8,2,28,60,0,0,0,-1,0,134914,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23198,4,8,2,28,60,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23199,4,9,2,28,60,0,0,0,-1,0,134919,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23200,4,9,2,28,60,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23201,4,7,2,28,60,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23203,4,7,2,28,60,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23205,12,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23206,4,0,0,12,0,0,0,0,-1,0,134500,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23207,4,0,0,12,0,0,0,0,-1,0,134501,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23211,0,0,0,0,1,0,0,0,-1,0,135267,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23212,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23213,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23214,12,0,0,0,0,0,0,0,-1,0,134172,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23215,0,0,0,0,1,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23216,12,0,0,0,58,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23217,12,0,0,0,0,0,0,0,-1,0,132832,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23218,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23219,4,4,6,6,60,0,0,0,-1,0,132502,11,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23220,4,1,7,20,60,0,0,0,-1,0,132687,7,0,100,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23221,2,4,2,13,60,3,0,0,-1,0,133505,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,238,0,0,0,0 +23222,12,0,0,0,0,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23223,12,0,0,0,0,0,0,0,-1,0,133719,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23224,0,8,0,0,0,0,0,0,-1,0,134140,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23225,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23226,4,2,8,5,60,0,0,0,-1,0,132717,7,0,120,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23227,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23228,12,0,0,0,7,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23229,2,7,1,13,0,3,0,0,-1,0,135350,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +23230,2,7,1,13,0,3,0,0,-1,0,135312,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +23231,12,0,0,0,0,0,0,0,-1,0,134343,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23232,2,7,1,13,0,3,0,0,-1,0,135350,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,69,0,0,0,0 +23233,7,4,0,0,0,0,0,0,-1,0,134086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23234,7,4,0,0,2,0,0,0,-1,0,134090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23235,7,4,0,0,0,0,0,0,-1,0,134136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23236,7,4,0,0,0,0,0,0,-1,0,134095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23237,4,0,3,11,60,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23238,4,6,6,14,60,4,0,0,-1,0,132390,9,0,120,0,0,0,0,0,0,3570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23239,12,0,0,0,0,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23240,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23241,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23242,2,13,1,22,60,7,0,0,-1,0,135594,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +23243,4,4,6,3,60,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23244,4,4,6,1,60,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23246,0,0,3,0,1,0,0,0,-1,0,135262,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23247,15,0,0,0,0,0,0,0,-1,0,135263,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23248,12,0,0,0,0,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23249,12,0,0,0,8,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23250,15,0,0,0,0,0,0,0,-1,0,133797,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23251,4,3,5,1,60,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23252,4,3,5,3,60,0,0,0,-1,0,135032,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23253,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23254,4,2,8,3,60,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23255,4,1,7,1,60,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23256,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23257,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23258,4,2,8,3,60,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23259,4,3,5,1,60,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23260,4,3,5,3,60,0,0,0,-1,0,135035,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23261,4,1,7,1,60,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23262,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23263,4,1,7,1,60,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23264,4,1,7,3,60,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23265,4,3,5,6,0,0,0,0,-1,0,132499,10,0,20,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23266,4,2,8,5,0,0,0,0,-1,0,135009,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23267,4,1,8,8,0,0,0,0,-1,0,132537,7,0,25,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23268,12,0,0,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23269,12,0,0,0,0,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23270,12,0,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23271,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23272,4,4,6,5,60,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23273,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23274,4,4,6,10,60,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23275,4,4,6,8,60,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23276,4,4,6,1,60,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23277,4,4,6,3,60,0,0,0,-1,0,135059,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23278,4,3,5,8,60,0,0,0,-1,0,132539,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23279,4,3,5,10,60,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23280,4,2,8,10,60,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23281,4,2,8,8,60,0,0,0,-1,0,132542,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23282,4,1,7,10,60,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23283,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23284,4,2,8,10,60,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23285,4,2,8,8,60,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23286,4,4,6,10,60,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23287,4,4,6,8,60,0,0,0,-1,0,132590,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23288,4,1,7,10,60,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23289,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23290,4,1,7,10,60,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23291,4,1,7,8,60,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23292,4,3,5,5,60,0,0,0,-1,0,132626,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23293,4,3,5,7,60,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23294,4,2,8,5,60,0,0,0,-1,0,132722,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23295,4,2,8,7,60,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23296,4,1,7,7,60,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23297,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23298,4,2,8,5,60,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23299,4,2,8,7,60,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23300,4,4,6,5,60,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23301,4,4,6,7,60,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23302,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23303,4,1,7,20,60,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23304,4,1,7,7,60,0,0,0,-1,0,134591,7,0,65,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23305,4,1,7,20,60,0,0,0,-1,0,132669,7,0,80,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23306,4,3,5,1,60,0,0,0,-1,0,133123,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23307,4,3,5,3,60,0,0,0,-1,0,135047,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23308,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23309,4,2,8,3,60,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23310,4,1,7,1,60,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23311,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23312,4,2,8,1,60,0,0,0,-1,0,133077,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23313,4,2,8,3,60,0,0,0,-1,0,135045,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23314,4,4,6,1,60,0,0,0,-1,0,133077,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23315,4,4,6,3,60,0,0,0,-1,0,135042,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23316,4,1,7,1,60,0,0,0,-1,0,133119,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23317,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23318,4,1,7,1,60,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23319,4,1,7,3,60,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23320,9,0,0,0,60,0,0,0,-1,0,134465,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23321,4,1,7,20,1,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23322,4,1,7,20,1,0,0,0,-1,0,132662,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23323,4,1,0,1,0,0,0,0,-1,0,133076,8,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23324,4,0,0,3,0,0,0,0,-1,0,135054,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23326,0,0,4,0,1,0,0,0,-1,0,134009,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23327,0,0,0,0,1,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23328,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23329,0,8,8,0,0,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23330,15,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23331,15,0,0,0,0,0,0,0,-1,0,134196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23332,15,0,0,0,0,0,0,0,-1,0,134412,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23333,15,0,3,0,0,0,0,0,-1,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23334,0,8,3,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23335,2,10,2,17,1,2,0,0,-1,0,135144,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23336,12,0,0,0,0,0,0,0,-1,0,134829,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23337,12,0,0,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23338,12,0,0,0,58,0,0,0,-1,0,133651,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23339,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23340,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23341,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23342,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23343,12,0,0,0,0,0,0,0,-1,0,133635,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23344,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23345,4,0,7,4,0,0,0,0,-1,0,135018,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23346,2,8,1,17,1,1,0,0,-1,0,135276,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0 +23347,2,18,2,26,1,0,0,0,-1,0,135531,12,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,0,0,0 +23348,4,0,7,8,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23349,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23350,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23351,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23352,12,0,0,0,0,0,0,0,-1,0,136200,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23353,15,0,3,0,0,0,0,0,-1,0,133850,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23354,0,8,3,0,0,0,0,0,-1,0,134133,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23355,12,0,0,0,0,0,0,0,-1,0,134023,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23356,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23357,12,0,0,0,0,0,0,0,-1,0,132835,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23358,12,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23360,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23361,0,0,0,0,0,0,0,0,-1,0,134861,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23362,2,4,0,21,60,0,0,0,-1,0,133058,9,0,105,0,0,0,0,0,0,80,0,10,0,0,10,0,104,0,0,0,0,194,0,0,0,0 +23363,4,4,0,5,60,0,0,0,-1,0,132751,9,0,165,0,0,0,0,0,0,1148,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0 +23364,7,4,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23365,4,6,1,14,0,4,0,0,-1,0,134953,9,0,35,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23366,7,4,0,0,0,0,0,0,-1,0,134094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23367,4,1,7,20,0,0,0,0,-1,0,132665,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23368,4,2,8,8,0,0,0,0,-1,0,132537,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23369,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +23370,2,7,1,13,0,3,0,0,-1,0,135325,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23371,2,10,2,17,0,2,0,0,-1,0,135145,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +23372,2,8,1,17,0,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,0,0,0 +23373,2,7,1,13,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +23374,12,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23375,4,2,8,5,0,0,0,0,-1,0,132718,7,0,50,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23376,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23377,4,1,7,7,0,0,0,0,-1,0,134589,7,0,30,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23378,12,0,0,0,0,0,0,0,-1,0,136217,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23379,0,0,3,0,0,0,0,0,-1,0,132608,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23380,15,0,3,0,0,0,0,0,-1,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23381,0,8,3,0,0,0,0,0,-1,0,134095,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23382,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23383,15,0,8,0,0,0,0,0,-1,0,134311,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23384,15,0,8,0,0,0,0,0,-1,0,133884,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23385,15,0,3,0,0,0,0,0,-1,0,133850,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23386,0,8,3,0,0,0,0,0,-1,0,134133,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23387,12,0,0,0,0,0,0,0,-1,0,132928,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23388,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23389,1,0,8,18,0,0,0,0,-1,0,133626,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23390,2,8,1,17,0,1,0,0,-1,0,135276,9,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +23391,2,15,1,13,0,3,0,0,-1,0,135641,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23392,2,4,2,21,0,3,0,0,-1,0,133053,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23393,2,7,1,21,0,3,0,0,-1,0,135274,8,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23394,12,0,0,0,0,0,0,0,-1,0,134720,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23395,4,6,1,14,0,4,0,0,-1,0,134953,9,0,40,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23396,2,7,1,21,0,3,0,0,-1,0,135274,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,0,0,0 +23397,4,1,7,10,0,0,0,0,-1,0,132939,7,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23398,2,2,2,15,0,0,0,0,-1,0,135499,12,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +23399,4,1,7,20,0,0,0,0,-1,0,132677,7,0,45,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23400,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23401,4,0,0,23,0,7,0,0,-1,0,134333,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23402,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +23403,4,3,5,7,0,0,0,0,-1,0,134590,10,0,55,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23404,4,2,8,8,0,0,0,0,-1,0,132537,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23405,4,2,8,5,0,0,0,0,-1,0,132724,7,0,60,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23406,4,3,5,9,0,0,0,0,-1,0,132600,10,0,30,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23407,4,1,7,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23408,4,2,8,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23409,2,2,2,15,0,0,0,0,-1,0,135490,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,39,0,0,0,0 +23410,2,7,2,21,0,3,0,0,-1,0,135275,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +23411,2,10,2,17,0,2,0,0,-1,0,135168,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,39,0,0,0,0 +23412,4,3,5,8,0,0,0,0,-1,0,132535,10,0,40,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23413,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23414,4,2,8,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23415,2,15,1,13,0,3,0,0,-1,0,135641,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +23416,2,10,2,17,1,2,0,0,-1,0,135138,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23417,0,0,0,0,0,0,0,0,-1,0,132878,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23418,7,2,8,0,0,0,0,0,-1,0,135826,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23420,2,1,1,17,0,1,0,0,-1,0,132416,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,43,0,0,0,0 +23421,2,7,1,13,0,3,0,0,-1,0,135321,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,24,0,0,0,0 +23422,2,15,1,13,0,3,0,0,-1,0,135302,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,0,0,0 +23423,2,8,1,17,0,1,0,0,-1,0,135324,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +23424,7,7,1,0,0,0,0,0,-1,0,134569,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23425,7,7,1,0,0,0,0,0,-1,0,134561,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23426,7,7,1,0,0,0,0,0,-1,0,134573,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23427,7,7,1,0,0,0,0,0,-1,0,134567,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23428,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +23429,2,5,1,17,0,1,0,0,-1,0,133481,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +23430,2,7,1,13,0,3,0,0,-1,0,135321,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +23431,2,15,1,13,0,3,0,0,-1,0,135302,8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,0,0,0 +23432,2,8,1,17,0,3,0,0,-1,0,135324,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,35,0,0,0,0 +23433,4,1,7,20,0,0,0,0,-1,0,132642,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23434,4,1,7,20,0,0,0,0,-1,0,132645,7,0,50,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23435,0,0,0,0,1,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23436,3,0,0,0,0,0,0,0,-1,0,133251,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23437,3,4,0,0,0,0,0,0,-1,0,133271,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23438,3,1,0,0,0,0,0,0,-1,0,133268,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23439,3,5,0,0,0,0,0,0,-1,0,133258,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23440,3,2,0,0,0,0,0,0,-1,0,133241,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23441,3,3,0,0,0,0,0,0,-1,0,133255,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23442,12,0,0,0,0,0,0,0,-1,0,132883,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23443,12,0,0,0,0,0,0,0,-1,0,132878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23444,0,2,3,0,0,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23445,7,7,1,0,0,0,0,0,-1,0,133230,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23446,7,7,1,0,0,0,0,0,-1,0,133224,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23447,7,7,1,0,0,0,0,0,-1,0,133225,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23448,7,7,1,0,0,0,0,0,-1,0,133231,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23449,7,7,1,0,0,0,0,0,-1,0,133223,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23450,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +23451,2,15,1,21,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +23452,4,0,7,23,60,7,0,0,-1,0,133744,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23453,4,0,7,23,60,7,0,0,-1,0,133745,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23454,2,4,2,21,60,3,0,0,-1,0,133039,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,225,0,0,0,0 +23455,2,5,2,17,60,1,0,0,-1,0,133060,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +23456,2,7,1,13,60,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +23457,2,5,2,17,60,1,0,0,-1,0,133480,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +23458,2,15,1,21,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +23459,2,4,2,21,60,3,0,0,-1,0,133489,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,225,0,0,0,0 +23460,12,0,0,0,0,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23461,2,7,1,13,60,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +23462,4,0,3,23,60,7,0,0,-1,0,133747,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23463,4,0,3,23,60,7,0,0,-1,0,133746,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23464,2,4,2,21,60,3,0,0,-1,0,133039,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,225,0,0,0,0 +23465,2,5,2,17,60,1,0,0,-1,0,133484,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,353,0,0,0,0 +23466,2,15,1,21,60,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +23467,2,7,1,13,60,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,129,0,0,0,0 +23468,4,0,3,23,60,7,0,0,-1,0,133747,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23469,4,0,3,23,60,7,0,0,-1,0,133746,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23470,4,0,7,4,0,0,0,0,-1,0,135005,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23471,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23472,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23473,4,0,7,4,0,0,0,0,-1,0,135009,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23474,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23475,4,0,7,8,0,0,0,0,-1,0,132540,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23476,4,0,7,4,0,0,0,0,-1,0,135020,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23477,4,1,7,7,1,0,0,0,-1,0,134581,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23478,4,1,7,7,1,0,0,0,-1,0,134582,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23479,4,1,7,20,1,0,0,0,-1,0,132664,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23480,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23481,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +23482,4,4,0,10,61,0,0,0,-1,0,132937,8,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23483,12,0,8,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23484,4,4,0,6,61,0,0,0,-1,0,132510,8,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23485,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23486,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23487,4,4,0,8,62,0,0,0,-1,0,132554,8,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23488,4,4,0,7,62,0,0,0,-1,0,134694,9,0,85,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23489,4,4,0,5,64,0,0,0,-1,0,132742,9,0,115,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23490,4,3,0,5,63,0,0,0,-1,0,132636,9,0,100,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23491,4,3,0,10,61,0,0,0,-1,0,132945,8,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23492,0,0,3,0,1,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23493,4,3,0,1,60,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23494,4,3,0,9,62,0,0,0,-1,0,132612,10,0,35,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23495,0,5,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23497,2,0,1,13,61,3,0,0,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +23498,2,4,1,13,62,3,0,0,-1,0,133043,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,143,0,0,0,0 +23499,2,8,1,17,63,1,0,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,259,0,0,0,0 +23500,15,0,0,0,0,0,0,0,-1,0,133461,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23501,15,0,7,0,0,0,0,0,-1,0,134197,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23502,2,5,1,17,64,1,0,0,-1,0,133489,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +23503,2,1,1,17,65,1,0,0,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +23504,2,15,1,13,65,3,0,0,-1,0,135302,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +23505,2,7,1,13,66,3,0,0,-1,0,135340,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +23506,4,4,0,9,66,0,0,0,-1,0,132606,8,0,45,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23507,4,4,0,5,67,0,0,0,-1,0,132746,9,0,135,0,0,0,0,0,0,1077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23508,4,4,0,10,66,0,0,0,-1,0,132964,8,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23509,4,4,0,5,70,0,0,0,-1,0,132745,9,0,135,0,0,0,0,0,0,1154,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0 +23510,4,4,0,6,70,0,0,0,-1,0,132518,8,0,45,0,0,0,0,0,0,644,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +23511,4,4,0,8,70,0,0,0,-1,0,132551,11,0,65,0,0,0,0,0,0,787,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +23512,4,4,0,7,70,0,0,0,-1,0,134688,9,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0 +23513,4,4,0,5,70,0,0,0,-1,0,132751,9,0,135,0,0,0,0,0,0,1164,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23514,4,4,0,10,70,0,0,0,-1,0,132945,8,0,45,0,0,0,0,0,0,722,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23515,4,4,0,9,69,0,0,0,-1,0,132618,8,0,45,0,0,0,0,0,0,497,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23516,4,4,0,1,70,0,0,0,-1,0,133124,8,0,80,0,0,0,0,0,0,930,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23517,4,4,0,10,70,0,0,0,-1,0,132963,8,0,45,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23518,4,4,0,7,70,0,0,0,-1,0,134682,9,0,100,0,0,0,0,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23519,4,4,0,1,70,0,0,0,-1,0,133124,8,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23520,4,4,0,10,70,0,0,0,-1,0,132960,10,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23521,4,4,0,1,70,0,0,0,-1,0,133124,9,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23522,4,4,0,5,70,0,0,0,-1,0,132638,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23523,4,4,0,7,70,0,0,0,-1,0,134680,9,0,100,0,0,0,0,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23524,4,4,0,6,70,0,0,0,-1,0,132500,8,0,45,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23525,4,4,0,8,70,0,0,0,-1,0,132544,10,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23526,4,3,0,10,70,0,0,0,-1,0,132951,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23527,4,3,0,5,70,0,0,0,-1,0,132745,9,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23528,0,8,0,0,50,0,0,0,-1,0,135253,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23529,0,8,0,0,60,0,0,0,-1,0,135254,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23530,0,6,8,0,0,0,0,0,-1,0,133621,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23531,4,3,0,10,70,0,0,0,-1,0,132960,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23532,4,4,0,10,70,0,0,0,-1,0,132963,8,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23533,4,4,0,10,70,0,0,0,-1,0,132963,10,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23534,4,3,0,1,70,0,0,0,-1,0,133131,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23535,4,4,0,1,70,0,0,0,-1,0,133076,10,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23536,4,4,0,1,70,0,0,0,-1,0,133140,10,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23537,4,4,0,9,70,0,0,0,-1,0,132606,8,0,55,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23538,4,4,0,9,70,0,0,0,-1,0,132605,8,0,55,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23539,4,4,0,9,70,0,0,0,-1,0,132602,8,0,55,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23540,2,7,1,13,70,1,0,0,-1,0,135369,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,239,0,0,0,0 +23541,2,8,1,17,70,1,0,0,-1,0,135278,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0,430,0,0,0,0 +23542,2,0,1,13,70,1,0,0,-1,0,132406,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,239,0,0,0,0 +23543,2,1,1,17,70,1,0,0,-1,0,132393,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,443,0,0,0,0 +23544,2,4,1,13,70,3,0,0,-1,0,133046,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,261,0,0,0,0 +23545,12,0,0,0,60,0,0,0,-1,0,136141,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23546,2,5,1,17,70,1,0,0,-1,0,133054,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0,430,0,0,0,0 +23547,12,0,0,0,60,0,0,0,-1,0,136143,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23548,12,0,0,0,60,0,0,0,-1,0,136146,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23549,12,0,0,0,60,0,0,0,-1,0,136121,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23550,12,0,1,0,0,0,0,0,-1,0,132392,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23551,12,0,3,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23552,12,0,3,0,0,0,0,0,-1,0,134754,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23553,2,10,2,17,0,1,0,0,-1,0,136065,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +23554,2,15,1,21,70,3,0,0,-1,0,135641,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,185,0,0,0,0 +23555,2,15,1,13,70,3,0,0,-1,0,135641,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,152,0,0,0,0 +23556,2,4,1,21,70,3,0,0,-1,0,133491,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,207,0,0,0,0 +23557,2,3,1,26,60,0,0,0,-1,0,135619,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,229,0,0,0,0 +23558,4,0,4,12,60,0,0,0,-1,0,134969,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23559,0,8,0,0,55,0,0,0,-1,0,134424,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23560,15,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23561,15,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23562,15,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23563,4,3,0,5,70,0,0,0,-1,0,132639,11,0,140,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23564,4,3,0,5,70,0,0,0,-1,0,132639,11,0,140,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23565,4,3,0,5,70,0,0,0,-1,0,132639,11,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23566,12,0,3,0,0,0,0,0,-1,0,134776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23567,7,11,0,0,1,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23568,12,0,0,0,0,0,0,0,-1,0,133631,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23569,12,0,0,0,0,0,0,0,-1,0,133458,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23570,4,0,4,12,60,0,0,0,-1,0,133877,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23571,7,10,0,0,0,0,0,0,-1,0,136050,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23572,7,13,0,0,0,0,0,0,-1,0,132850,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23573,7,7,1,0,0,0,0,0,-1,0,133226,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23574,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23575,0,8,0,0,55,0,0,0,-1,0,134425,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23576,0,8,0,0,55,0,0,0,-1,0,134426,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23577,2,7,1,13,60,3,0,0,-1,0,135372,8,0,105,0,0,0,0,0,0,140,0,0,0,0,0,0,76,0,0,0,0,143,0,0,0,0 +23578,0,1,3,0,49,0,0,0,-1,0,134856,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23579,0,1,0,0,45,0,0,0,-1,0,134834,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23580,12,0,0,0,60,0,0,0,-1,0,134124,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23582,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +23583,2,4,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23584,0,0,1,0,0,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23585,0,0,7,0,0,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23586,0,0,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23587,4,1,7,1,0,0,0,0,-1,0,133152,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23588,12,0,0,0,0,0,0,0,-1,0,132926,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23589,12,0,0,0,0,0,0,0,-1,0,133306,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23590,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23591,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23592,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23593,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23594,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23595,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23596,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23597,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23598,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23599,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23600,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23601,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23602,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23603,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23604,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23605,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23606,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23607,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23608,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23609,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23610,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23611,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23612,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23613,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23614,12,0,0,0,0,0,0,0,-1,0,133892,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23615,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23616,15,0,0,0,0,0,0,0,-1,0,134075,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23617,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23618,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23619,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23620,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23621,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23622,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23623,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23624,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23625,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23626,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23627,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23628,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23629,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23630,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23631,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23632,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23633,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23634,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23635,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23636,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23637,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23638,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23639,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23642,12,0,0,0,0,0,0,0,-1,0,134907,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23643,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23644,12,0,0,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23645,0,0,0,0,0,0,0,0,-1,0,134907,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23646,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23647,2,7,1,13,0,3,0,0,-1,0,135344,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23648,2,7,1,13,0,3,0,0,-1,0,135344,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23649,2,7,1,13,0,3,0,0,-1,0,135344,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23650,2,15,1,13,0,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +23651,2,7,1,13,0,3,0,0,-1,0,135344,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +23652,2,7,1,21,0,3,0,0,-1,0,135344,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +23653,2,7,1,21,0,3,0,0,-1,0,135344,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +23654,12,0,0,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23655,12,0,0,0,0,0,0,0,-1,0,132614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23656,0,8,0,0,0,0,0,0,-1,0,132761,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23657,12,0,0,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23658,12,0,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23659,12,0,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23660,12,0,0,0,0,0,0,0,-1,0,135340,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23661,12,0,0,0,0,0,0,0,-1,0,135160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23662,12,0,0,0,0,0,0,0,-1,0,133458,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23663,4,3,5,6,60,0,0,0,-1,0,132521,10,0,50,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23664,4,3,5,3,60,0,0,0,-1,0,135032,10,0,85,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23665,4,3,5,7,60,0,0,0,-1,0,134666,10,0,105,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23666,4,4,6,6,60,0,0,0,-1,0,132516,11,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23667,4,4,6,3,60,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23668,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23669,12,0,0,0,0,0,0,0,-1,0,132203,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23670,12,0,0,0,0,0,0,0,-1,0,134754,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23671,12,0,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23672,12,0,0,0,0,0,0,0,-1,0,132764,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23673,2,7,3,13,1,1,0,0,-1,0,135275,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +23674,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23675,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23676,7,8,0,0,0,0,0,0,-1,0,134025,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23677,12,0,0,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23678,12,0,0,0,5,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23679,12,0,0,0,0,0,0,0,-1,0,136232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23680,12,0,0,0,0,0,0,0,-1,0,136232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23681,12,0,0,0,0,0,0,0,-1,0,134131,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23682,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23684,0,7,7,0,0,0,0,0,-1,0,133686,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23685,12,0,0,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23686,12,0,7,0,0,0,0,0,-1,0,134516,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23687,12,0,0,0,0,0,0,0,-1,0,134295,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23688,12,0,0,0,0,0,0,0,-1,0,133848,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23689,9,7,0,0,0,0,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23691,12,0,0,23,0,0,0,0,-1,0,135160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23692,12,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23693,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23694,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23695,12,0,0,0,0,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23696,0,1,0,0,1,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23697,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23698,0,1,0,0,1,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23699,0,8,0,0,1,0,0,0,-1,0,135265,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23700,0,8,0,0,1,0,0,0,-1,0,132486,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23701,0,8,0,0,1,0,0,0,-1,0,132485,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23702,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23703,12,0,0,0,0,0,0,0,-1,0,132164,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23704,0,5,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23705,4,0,7,19,0,0,0,0,-1,0,134473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23706,12,0,3,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23707,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23708,2,4,2,13,1,3,0,0,-1,0,133038,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23709,4,0,7,19,0,0,0,0,-1,0,134472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23710,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23711,9,0,0,0,52,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23712,15,0,0,0,0,0,0,0,-1,0,134176,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23713,15,0,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23714,4,0,0,12,0,0,0,0,-1,0,134284,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23715,0,0,0,0,0,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23716,4,0,0,12,0,0,0,0,-1,0,134230,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23717,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23718,0,0,0,0,0,0,0,0,-1,0,133849,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23719,0,0,0,0,0,0,0,0,-1,0,134812,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23720,15,0,0,0,1,0,0,0,-1,0,132199,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23721,0,0,0,0,0,0,0,0,-1,0,133986,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23722,0,0,0,0,0,0,0,0,-1,0,135241,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23723,12,0,0,0,0,0,0,0,-1,0,135594,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23725,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23726,12,0,0,0,0,0,0,0,-1,0,134399,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23727,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23728,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23729,12,0,0,0,0,0,0,0,-1,0,132485,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23730,9,0,0,0,61,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23731,9,0,0,0,69,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23732,12,0,0,0,0,0,0,0,-1,0,134078,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23733,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23734,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23735,12,0,0,0,0,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23736,7,2,8,0,0,0,0,0,-1,0,133009,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23737,7,2,8,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23738,12,0,0,0,0,0,0,0,-1,0,134378,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23739,12,0,0,0,0,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23740,12,0,0,0,0,0,0,0,-1,0,134939,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23741,2,7,1,13,1,3,0,0,-1,0,135370,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23742,2,3,1,26,63,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,185,0,0,0,0 +23743,2,7,1,13,1,3,0,0,-1,0,135370,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23744,12,0,0,0,0,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23745,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23746,2,3,1,26,69,0,0,0,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,234,0,0,0,0 +23747,2,3,1,26,70,0,0,0,-1,0,135613,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,194,0,0,0,0 +23748,2,3,1,26,70,0,0,0,-1,0,135612,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,268,0,0,0,0 +23749,12,0,0,0,1,0,0,0,-1,0,132825,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23750,12,0,0,0,1,0,0,0,-1,0,132824,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23751,12,0,0,0,1,0,0,0,-1,0,132824,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23752,12,0,0,0,1,0,0,0,-1,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23753,12,0,0,0,1,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23754,12,0,0,0,0,0,0,0,-1,0,134253,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23755,9,0,0,0,68,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23756,0,5,0,0,1,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23757,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23758,4,2,7,1,0,0,0,63,-1,0,133023,7,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23759,12,0,0,0,6,0,0,0,-1,0,134462,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23760,12,0,0,0,0,0,0,0,-1,0,132819,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23761,4,1,7,1,0,0,0,0,-1,0,133023,7,0,50,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23762,4,1,7,1,0,0,0,0,-1,0,133023,7,0,50,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23763,4,2,7,1,0,0,0,0,-1,0,133023,7,0,60,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23764,7,3,8,0,55,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23765,7,3,8,0,55,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23766,7,3,8,0,60,0,0,0,-1,0,134441,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23767,7,3,0,0,0,0,0,0,-1,0,134231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23768,0,8,0,0,0,0,0,0,-1,0,134286,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23769,0,8,0,0,0,0,0,0,-1,0,134285,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23770,0,8,0,0,0,0,0,0,-1,0,134282,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23771,0,8,0,0,0,0,0,0,-1,0,134283,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23772,6,3,2,24,57,0,0,0,-1,0,133011,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,26,0,0,0,0 +23773,6,3,2,24,62,0,0,0,-1,0,133584,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,43,0,0,0,0 +23774,1,4,8,18,0,0,0,0,-1,0,133876,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23775,1,4,8,18,0,0,0,0,-1,0,133877,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23776,12,0,0,0,0,0,0,0,-1,0,135437,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23777,12,0,0,0,27,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23778,12,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23779,12,0,0,0,0,0,0,0,-1,0,134334,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23780,12,0,0,0,27,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23781,7,1,8,0,0,0,0,0,-1,0,133593,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23782,7,1,8,0,0,0,0,0,-1,0,133010,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23783,7,1,8,0,0,0,0,0,-1,0,133008,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23784,7,1,8,0,0,0,0,0,-1,0,133004,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23785,7,1,8,0,0,0,0,0,-1,0,133016,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23786,7,1,8,0,0,0,0,0,-1,0,133018,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23787,7,1,8,0,0,0,0,0,-1,0,133012,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23788,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23789,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23790,12,0,0,0,0,0,0,0,-1,0,136062,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23791,12,0,0,0,0,0,0,0,-1,0,136074,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23792,15,0,0,0,0,0,0,0,-1,0,132288,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23793,7,6,8,0,0,0,0,0,-1,0,134260,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23794,0,0,3,0,55,0,0,0,-1,0,134809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23795,0,0,3,0,55,0,0,0,-1,0,134810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23796,0,0,3,0,55,0,0,0,-1,0,134811,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23797,12,0,0,0,27,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23798,12,0,0,0,27,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23799,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23800,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23801,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23802,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23803,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23804,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23805,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23806,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23807,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23808,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23809,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23810,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23811,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23812,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23813,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23814,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23815,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23816,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23817,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23818,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23819,7,2,4,0,0,0,0,0,-1,0,136152,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23820,7,3,8,0,0,0,0,0,-1,0,133866,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23821,7,3,8,0,0,0,0,0,-1,0,133037,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23822,0,8,3,0,55,0,0,0,-1,0,134795,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23823,0,8,3,0,55,0,0,0,-1,0,134796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23824,4,2,7,8,0,0,0,0,-1,0,133029,7,0,50,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23825,4,1,8,6,0,0,0,0,-1,0,132516,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23826,7,2,8,0,0,0,0,0,-1,0,133036,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23827,7,2,8,0,0,0,0,0,-1,0,133035,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23828,4,1,7,1,0,0,0,0,-1,0,133149,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23829,4,2,7,1,0,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23830,12,0,0,0,0,0,0,0,-1,0,132995,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23831,7,3,0,0,0,0,0,0,-1,0,133878,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23832,7,3,0,0,0,0,0,0,-1,0,133878,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23833,12,0,0,0,0,0,0,0,-1,0,135644,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23834,12,0,0,0,0,0,0,0,-1,0,134230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23835,4,0,8,12,0,0,0,0,-1,0,133864,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23836,4,0,8,12,0,0,0,0,-1,0,133032,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23837,12,0,0,0,13,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23838,4,1,7,1,0,0,0,0,-1,0,133162,7,0,60,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23839,4,3,7,1,0,0,0,0,-1,0,133162,7,0,85,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23840,7,3,8,0,0,0,0,0,-1,0,133863,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23841,7,2,8,0,0,0,0,0,-1,0,133013,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23843,12,0,0,0,0,0,0,0,-1,0,136018,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23844,4,0,0,23,0,7,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23845,12,0,0,0,0,0,0,0,-1,0,134347,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23846,15,0,4,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23847,15,0,0,0,0,0,0,0,-1,0,133377,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23848,0,5,1,0,30,0,0,0,-1,0,132791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23849,12,0,0,0,0,0,0,0,-1,0,134058,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23850,12,0,0,0,7,0,0,0,-1,0,134350,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23851,12,0,0,0,0,0,0,0,-1,0,133745,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23852,1,0,8,18,0,0,0,0,-1,0,133630,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23853,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23854,7,5,7,0,0,0,0,0,-1,0,132887,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23855,7,5,7,0,0,0,0,0,-1,0,132910,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23856,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +23857,0,8,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23858,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23859,12,0,0,0,0,0,0,0,-1,0,134422,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23860,12,0,0,0,0,0,0,0,-1,0,134365,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23861,12,0,0,0,0,0,0,0,-1,0,132597,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23862,0,8,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23863,12,0,0,0,0,0,0,0,-1,0,134396,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23864,0,8,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23865,0,8,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23866,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23867,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23868,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23869,12,0,0,0,0,0,0,0,-1,0,132775,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23870,12,0,0,0,9,0,0,0,-1,0,133339,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23871,0,2,3,0,8,0,0,0,-1,0,134854,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23872,0,0,8,0,1,0,0,0,-1,0,133630,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23873,12,0,0,0,0,0,0,0,-1,0,133299,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23874,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23875,12,0,0,0,0,0,0,0,-1,0,134709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23876,12,0,0,0,0,0,0,0,-1,0,134709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23877,12,0,0,0,0,0,0,0,-1,0,134709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23878,12,0,0,0,0,0,0,0,-1,0,132778,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23879,12,0,0,0,0,0,0,0,-1,0,132784,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23880,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23881,12,0,0,0,0,0,0,0,-1,0,135665,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23882,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23883,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23884,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23885,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23886,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23887,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23888,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23889,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +23890,12,0,0,0,59,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23891,12,0,0,0,59,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23892,12,0,0,0,59,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23893,12,0,0,0,59,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23894,12,0,0,0,0,0,0,0,-1,0,134830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23895,15,0,0,0,0,0,0,0,-1,0,136113,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23896,12,0,0,0,0,0,0,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23897,12,0,0,0,0,0,0,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23898,12,0,0,0,0,0,0,0,-1,0,135139,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23899,12,0,0,0,0,0,0,0,-1,0,134939,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23900,12,0,0,0,10,0,0,0,-1,0,134518,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23901,12,0,0,0,0,0,0,0,-1,0,134158,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23902,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23903,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23904,12,0,0,0,70,0,0,0,-1,0,132363,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23905,2,15,1,13,0,3,0,0,-1,0,135344,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23906,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23907,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23908,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23909,4,0,0,1,5,0,0,0,-1,0,133133,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23910,15,0,0,0,5,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23911,2,15,1,13,0,3,0,0,-1,0,135344,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23912,2,15,1,21,0,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +23914,2,7,1,21,0,3,0,0,-1,0,135344,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,121,0,0,0,0 +23916,2,15,1,13,0,3,0,0,-1,0,135344,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,101,0,0,0,0 +23917,2,15,1,13,0,3,0,0,-1,0,135344,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +23918,2,7,1,13,0,3,0,0,-1,0,135344,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +23919,12,0,0,0,0,0,0,0,-1,0,133462,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23920,15,0,7,0,0,0,0,0,-1,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23921,15,0,7,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23922,15,0,3,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23923,2,15,1,13,12,3,0,0,-1,0,135311,8,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +23924,4,1,7,20,0,0,0,0,-1,0,132677,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23925,12,0,0,0,0,0,0,0,-1,0,134244,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23926,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23927,12,0,0,0,0,0,0,0,-1,0,133977,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23928,12,0,0,0,0,0,0,0,-1,0,134942,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23929,12,0,0,0,0,0,0,0,-1,0,133458,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23930,12,0,0,0,0,0,0,0,-1,0,133458,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23931,4,1,7,20,0,0,0,0,-1,0,132644,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23932,12,0,0,0,0,0,0,0,-1,0,132777,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23933,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23934,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23937,12,0,0,0,0,0,0,0,-1,0,133464,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23938,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23939,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23940,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23941,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23942,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23943,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23944,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23945,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23946,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23947,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23948,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23949,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23950,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23951,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23952,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23953,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23954,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23955,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23957,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23958,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23959,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23960,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23961,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23962,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23965,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23966,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23967,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23968,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23969,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23970,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23971,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23972,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23973,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23974,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23975,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23976,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23977,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23978,15,0,0,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23979,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23980,15,0,8,0,0,0,0,0,-1,0,133725,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23981,12,0,0,0,0,0,0,0,-1,0,132996,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23982,0,0,0,0,0,0,0,0,-1,0,132226,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23983,12,0,0,0,0,0,0,0,-1,0,134804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23984,12,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23985,0,0,0,0,0,0,0,0,-1,0,132777,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23986,0,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23987,15,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23988,15,0,0,0,0,0,0,0,-1,0,134196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23989,0,0,0,0,0,0,0,0,-1,0,132786,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23990,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23992,15,0,8,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23993,15,0,8,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23994,12,0,0,0,0,0,0,0,-1,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23995,12,0,0,0,0,0,0,0,-1,0,135619,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23996,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +23997,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23998,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +23999,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24000,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24001,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24002,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24003,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24004,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24005,12,0,0,0,0,0,0,0,-1,0,134330,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24006,0,0,8,0,45,0,0,0,-1,0,132824,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24007,0,0,8,0,55,0,0,0,-1,0,132824,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24008,0,5,0,0,55,0,0,0,-1,0,134522,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24009,0,5,0,0,55,0,0,0,-1,0,133998,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24010,13,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24011,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24012,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24013,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24014,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24015,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24016,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24017,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24018,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24019,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24020,2,7,1,21,60,3,0,0,-1,0,135373,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,179,0,0,0,0 +24021,4,4,6,5,60,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24022,4,3,5,7,60,0,0,0,-1,0,134640,11,0,90,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24023,4,2,8,9,60,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24024,4,1,7,3,60,0,0,0,-1,0,135032,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24025,12,0,0,0,0,0,0,0,-1,0,134297,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24026,12,0,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24027,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24028,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24029,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24030,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24031,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24032,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24033,3,1,0,0,0,0,0,0,-1,0,133269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24034,2,7,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +24035,3,1,0,0,0,0,0,0,-1,0,133269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24036,3,0,0,0,0,0,0,0,-1,0,133252,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24037,3,1,0,0,0,0,0,0,-1,0,133269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24038,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24039,3,1,0,0,0,0,0,0,-1,0,133269,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24040,12,0,0,0,0,0,0,0,-1,0,134528,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24041,12,0,0,0,0,0,0,0,-1,0,134523,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24042,12,0,0,0,0,0,0,0,-1,0,134529,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24043,12,0,0,0,0,0,0,0,-1,0,134524,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24044,2,6,1,17,60,1,0,0,-1,0,135563,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,281,0,0,0,0 +24045,4,0,5,11,60,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24046,4,3,5,7,60,0,0,0,-1,0,134686,10,0,90,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24047,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24048,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24049,12,0,0,0,0,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24050,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24051,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24052,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24053,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24054,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24055,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24056,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24057,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24058,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24059,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24060,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24061,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24062,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24063,4,2,8,6,60,0,0,0,-1,0,132518,7,0,35,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24064,4,4,6,8,60,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24065,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24066,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24067,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24068,15,0,0,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24069,2,10,2,17,60,2,0,0,-1,0,135182,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,174,0,0,0,0 +24071,2,15,0,13,0,0,0,0,-1,0,135302,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,82,0,0,0,0 +24072,0,5,0,0,5,0,0,0,-1,0,133952,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24073,4,0,0,2,60,0,0,0,-1,0,133309,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24074,4,0,5,11,61,0,0,0,-1,0,133381,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24075,4,0,5,11,61,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24076,4,0,5,11,63,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24077,4,0,5,2,66,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24078,4,0,5,11,66,0,0,0,-1,0,133401,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24079,4,0,5,11,69,0,0,0,-1,0,133404,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24080,4,0,5,11,70,0,0,0,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24081,12,0,0,0,0,0,0,0,-1,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24082,4,0,5,11,70,0,0,0,-1,0,133403,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24083,4,1,7,7,60,0,0,0,-1,0,134677,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24084,15,0,0,0,0,0,0,0,-1,0,132484,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24085,4,0,5,11,70,0,0,0,-1,0,133398,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24086,4,0,5,11,70,0,0,0,-1,0,133405,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24087,4,0,5,11,68,0,0,0,-1,0,133406,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24088,4,0,5,11,70,0,0,0,-1,0,133407,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24089,4,0,5,11,70,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24090,4,3,5,10,60,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24091,4,4,6,6,60,0,0,0,-1,0,132516,11,0,45,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24092,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24093,4,0,5,2,70,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0 +24094,2,5,1,17,60,1,0,0,-1,0,133042,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,182,0,0,0,0 +24095,4,0,5,2,70,0,0,0,-1,0,133322,14,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0 +24096,4,0,3,2,60,0,0,0,-1,0,133280,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24097,4,0,5,2,70,0,0,0,-1,0,133324,14,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0 +24098,4,0,5,2,70,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +24099,13,0,0,0,0,0,0,0,-1,0,134242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24100,2,15,1,13,1,3,0,0,-1,0,135654,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24101,9,0,0,0,60,0,0,0,-1,0,133734,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24102,9,0,0,0,60,0,0,0,-1,0,133746,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24103,4,2,7,8,0,0,0,0,-1,0,132540,7,0,25,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24104,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24105,0,5,0,0,0,0,0,0,-1,0,134016,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24106,4,0,5,2,70,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24107,4,3,8,5,0,0,0,0,-1,0,132630,10,0,65,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24108,4,2,5,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24109,4,1,7,6,0,0,0,0,-1,0,132494,7,0,16,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24110,4,0,5,2,70,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24111,4,2,8,5,0,0,0,0,-1,0,132715,7,0,55,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24112,4,1,7,8,0,0,0,0,-1,0,132579,7,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24113,4,1,8,9,0,0,0,0,-1,0,132601,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24114,4,0,5,2,70,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24115,7,11,1,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24116,4,0,5,2,70,0,0,0,-1,0,133316,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24117,4,0,5,2,70,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24118,4,0,1,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24119,4,0,1,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24120,4,0,1,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24121,4,0,5,2,70,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24122,4,1,8,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24123,4,1,8,1,70,0,0,0,-1,0,132768,7,0,60,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24124,4,0,3,12,70,0,0,0,-1,0,133274,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24125,4,0,3,12,70,0,0,0,-1,0,133275,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24126,4,0,3,12,70,0,0,0,-1,0,133262,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24127,4,0,3,12,70,0,0,0,-1,0,133247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24128,4,0,3,12,70,0,0,0,-1,0,133236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24129,4,2,8,6,0,0,0,0,-1,0,132493,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24130,4,1,7,8,0,0,0,0,-1,0,132538,7,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24131,4,3,5,9,0,0,0,0,-1,0,132602,10,0,18,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24132,12,0,0,0,15,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24133,4,3,5,5,0,0,0,0,-1,0,132624,10,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24134,4,2,8,5,0,0,0,0,-1,0,135011,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24135,4,1,7,5,0,0,0,0,-1,0,132665,7,0,40,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24136,2,2,2,15,0,0,0,0,-1,0,135491,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +24137,4,4,6,1,0,0,0,0,-1,0,133071,11,0,80,0,0,0,0,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24138,2,18,2,26,0,0,0,0,-1,0,135530,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +24139,12,0,0,0,0,0,0,0,-1,0,132867,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24140,0,0,0,0,0,0,0,0,-1,0,134514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24141,4,3,5,10,0,0,0,0,-1,0,132938,10,0,20,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24142,4,2,7,10,0,0,0,0,-1,0,132940,7,0,18,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24143,4,0,7,4,0,0,0,0,-1,0,132635,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24144,4,1,7,10,0,0,0,0,-1,0,132955,7,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24145,4,1,7,7,1,0,0,0,-1,0,134660,7,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24146,4,1,7,8,0,0,0,0,-1,0,132544,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24147,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24148,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24149,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24150,4,1,7,16,60,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24151,4,0,4,11,60,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24152,12,0,0,0,0,0,0,0,-1,0,133727,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24153,12,0,0,0,0,0,0,0,-1,0,136222,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24154,4,0,5,11,60,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24155,2,10,2,17,60,2,0,0,-1,0,135187,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,248,0,0,0,0 +24156,12,0,0,0,0,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24157,12,0,0,0,0,0,0,0,-1,0,134867,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24158,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24159,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24160,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24161,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24162,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24163,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24164,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24165,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24166,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24167,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24168,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24169,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24170,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24171,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24172,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24173,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24174,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24175,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24176,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24177,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24178,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24179,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24180,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24181,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24182,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24183,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24184,12,0,0,0,0,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24185,12,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24186,15,0,2,0,0,0,0,0,-1,0,134382,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24187,15,0,2,0,0,0,0,0,-1,0,134109,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24188,15,0,2,0,0,0,0,0,-1,0,134389,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24189,15,0,2,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24190,15,0,1,0,0,0,0,0,-1,0,134385,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24191,15,0,2,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24192,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24193,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24194,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24195,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24196,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24197,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24198,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24199,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24200,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24201,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24202,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24203,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24204,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24205,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24206,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24207,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24208,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24209,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24210,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24211,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24212,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24213,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24214,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24215,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24216,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24217,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24218,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24219,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24220,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24221,12,0,0,0,0,0,0,0,-1,0,133724,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24222,2,15,1,13,52,3,0,0,-1,0,135654,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,88,0,0,0,0 +24223,15,0,0,0,0,0,0,0,-1,0,134328,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24224,12,0,0,0,0,0,0,0,-1,0,132762,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24225,12,0,0,0,0,0,0,0,-1,0,134835,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24226,12,0,0,0,0,0,0,0,-1,0,133304,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24227,4,2,8,6,0,0,0,0,-1,0,132495,7,0,16,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24228,15,0,0,0,14,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24229,15,0,0,0,14,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24230,12,0,0,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24231,15,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24232,15,0,0,0,0,0,0,0,-1,0,133676,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24233,12,0,0,0,0,0,0,0,-1,0,134529,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24234,15,0,1,0,0,0,0,0,-1,0,134386,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24235,15,0,1,0,0,0,0,0,-1,0,134388,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24236,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24237,12,0,0,0,0,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24238,12,0,0,0,0,0,0,0,-1,0,134531,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24239,12,0,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24240,12,0,0,0,0,0,0,0,-1,0,132765,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24241,4,3,5,6,0,0,0,0,-1,0,132506,10,0,18,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24242,15,0,1,0,0,0,0,0,-1,0,134383,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24243,7,4,1,0,0,0,0,0,-1,0,134379,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24244,2,3,2,26,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +24245,12,0,0,0,0,0,0,0,-1,0,134523,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24246,12,0,0,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24247,12,0,0,0,0,0,0,0,-1,0,134192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24248,12,0,0,0,0,0,0,0,-1,0,136125,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24249,4,1,7,9,69,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24250,4,1,7,9,69,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24251,4,1,7,9,69,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24252,4,1,7,16,69,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24253,4,1,7,16,69,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24254,4,1,7,16,69,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24255,4,1,6,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24256,4,1,6,6,70,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24257,4,1,6,6,70,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24258,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24259,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24260,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24261,4,1,7,7,70,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24262,4,1,7,7,70,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24263,4,1,7,7,70,0,0,0,-1,0,134606,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24264,4,1,7,1,70,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24265,4,1,7,1,70,0,0,0,-1,0,133129,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24266,4,1,7,1,70,0,0,0,-1,0,133129,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24267,4,1,7,1,70,0,0,0,-1,0,133172,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24268,0,8,8,0,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24269,0,8,8,0,0,0,0,0,-1,0,134325,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24270,1,5,8,18,0,0,0,0,-1,0,133648,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24271,7,5,7,0,0,0,0,0,-1,0,132910,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24272,7,5,7,0,0,0,0,0,-1,0,132887,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24273,0,6,0,0,60,0,0,0,-1,0,136010,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24274,0,6,0,0,60,0,0,0,-1,0,136011,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24275,0,6,0,0,60,0,0,0,-1,0,136048,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24276,0,6,0,0,60,0,0,0,-1,0,135954,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24277,15,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24278,15,0,0,0,0,0,0,0,-1,0,134536,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24279,12,0,0,0,0,0,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24280,12,0,0,0,0,0,0,0,-1,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24281,15,0,0,0,0,0,0,0,-1,0,133727,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24282,15,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24283,15,0,0,0,0,0,0,0,-1,0,134535,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24284,12,0,0,0,0,0,0,0,-1,0,134858,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24285,12,0,0,0,0,0,0,0,-1,0,134384,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24286,12,0,0,0,0,0,0,0,-1,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24287,15,0,0,0,0,0,0,0,-1,0,134846,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24288,7,11,8,0,0,0,0,0,-1,0,136120,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24289,0,0,0,0,0,0,0,0,-1,0,134500,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24290,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24291,12,0,0,0,0,0,0,0,-1,0,134324,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24292,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24293,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24294,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24295,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24296,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24297,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24298,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24299,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24300,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24301,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24302,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24303,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24304,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24305,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24306,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24307,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24308,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24309,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24310,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24311,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24312,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24313,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24314,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24315,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24316,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24317,12,0,0,0,0,0,0,0,-1,0,134801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24318,12,0,0,0,0,0,0,0,-1,0,134870,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24319,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +24320,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24321,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24322,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24323,12,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24324,2,15,1,13,1,3,0,0,-1,0,135639,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +24325,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24326,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +24327,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24328,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24329,4,0,0,20,0,0,0,0,-1,0,132675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24330,0,0,0,0,59,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24331,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24332,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24333,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24334,4,6,1,14,0,4,0,0,-1,0,134955,9,0,65,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24335,15,0,0,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24336,15,0,0,0,1,0,0,0,-1,0,133655,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24337,12,0,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24338,0,5,0,0,55,0,0,0,-1,0,134439,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24339,2,7,1,13,0,1,0,0,-1,0,135276,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +24340,4,1,7,7,0,0,0,0,-1,0,134590,7,0,35,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24341,4,3,5,10,0,0,0,0,-1,0,132939,10,0,20,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24342,2,19,2,26,0,0,0,0,-1,0,135139,21,0,30,0,6,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +24343,2,4,2,21,0,3,0,0,-1,0,133046,8,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,24,0,0,0,0 +24344,4,0,0,19,0,0,0,0,-1,0,135016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24345,9,0,0,0,60,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24346,4,1,7,20,0,0,0,0,-1,0,132662,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24347,4,2,8,5,0,0,0,0,-1,0,132722,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24348,4,3,5,5,0,0,0,0,-1,0,132638,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24349,4,0,0,11,0,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24350,4,0,0,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24351,2,4,1,13,0,3,0,0,-1,0,133515,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +24352,2,8,1,17,0,1,0,0,-1,0,135416,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,41,0,0,0,0 +24353,2,18,2,26,0,0,0,0,-1,0,135542,12,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,30,0,0,0,0 +24354,2,10,2,17,0,2,0,0,-1,0,135222,13,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,30,0,0,0,0 +24355,0,0,0,0,0,0,0,0,-1,0,136074,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24356,2,15,1,21,62,3,0,0,-1,0,135669,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +24357,4,3,5,5,62,0,0,0,-1,0,132647,10,0,120,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24358,4,0,3,11,1,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24359,4,1,7,7,62,0,0,0,-1,0,134610,7,0,65,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24360,4,3,5,6,62,0,0,0,-1,0,132500,10,0,40,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24361,2,7,1,21,62,3,0,0,-1,0,135275,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,159,0,0,0,0 +24362,4,1,7,16,62,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24363,4,4,6,5,62,0,0,0,-1,0,132748,11,0,135,0,0,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24364,4,4,6,7,62,0,0,0,-1,0,134667,11,0,100,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24365,4,2,8,10,62,0,0,0,-1,0,132956,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24366,4,3,5,3,62,0,0,0,-1,0,135034,11,0,70,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24367,12,0,0,0,67,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24368,12,0,0,0,0,0,0,0,-1,0,135129,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24369,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24372,12,0,0,0,0,0,0,0,-1,0,134320,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24373,12,0,0,0,0,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24374,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24375,12,0,0,0,0,0,0,0,-1,0,134309,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24376,4,0,4,12,62,0,0,0,-1,0,134527,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24378,2,4,2,21,62,3,0,0,-1,0,133520,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,173,0,0,0,0 +24379,4,1,7,16,62,0,0,0,-1,0,133758,11,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24380,2,19,2,26,62,0,0,0,-1,0,135466,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +24381,2,18,2,26,62,0,0,0,-1,0,135540,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,187,0,0,0,0 +24382,12,0,0,0,0,0,0,0,-1,0,133469,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24383,12,0,0,0,0,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24384,2,4,1,21,61,3,0,0,-1,0,133509,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +24385,4,0,3,2,61,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24386,4,7,2,28,61,0,0,0,-1,0,133745,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24387,4,4,6,10,61,0,0,0,-1,0,132937,9,0,45,0,0,0,0,0,0,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24388,4,3,5,6,61,0,0,0,-1,0,132520,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24389,2,3,1,26,61,0,0,0,-1,0,135625,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +24390,4,0,3,12,61,0,0,0,-1,0,134889,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24391,4,2,8,7,61,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24392,4,1,7,9,61,0,0,0,-1,0,133377,7,0,30,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24393,4,1,7,10,61,0,0,0,-1,0,134470,7,0,30,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24394,2,1,1,17,61,1,0,0,-1,0,132448,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,262,0,0,0,0 +24395,4,1,7,6,61,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24396,4,2,8,5,61,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24397,4,1,7,20,61,0,0,0,-1,0,132672,7,0,80,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24398,4,2,8,3,61,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24399,15,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24400,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24401,12,0,0,0,0,0,0,0,-1,0,133940,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24402,15,0,0,0,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24403,12,0,0,0,0,0,0,0,-1,0,134191,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24404,15,0,0,0,0,0,0,0,-1,0,134185,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24405,12,0,0,0,0,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24406,12,0,0,0,0,0,0,0,-1,0,133939,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24407,0,0,0,0,60,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24408,0,0,0,0,0,0,0,0,-1,0,134221,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24409,2,0,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +24410,15,0,1,0,63,0,0,0,-1,0,135430,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24411,12,0,0,0,0,0,0,0,-1,0,132594,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24412,6,2,2,24,62,0,0,0,-1,0,133577,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,37,0,0,0,0 +24413,4,9,2,28,63,0,0,0,-1,0,136048,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24414,12,0,0,0,2,0,0,0,-1,0,132319,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24415,12,0,0,0,0,0,0,0,-1,0,133463,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24416,12,0,0,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24417,6,2,2,24,61,0,0,0,-1,0,133580,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,26,0,0,0,0 +24418,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +24419,12,0,0,0,0,0,0,0,-1,0,133999,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24420,4,0,1,12,35,0,0,0,-1,0,135279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24421,0,0,0,0,0,0,0,0,-1,0,133999,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24422,12,0,0,0,0,0,0,0,-1,0,134230,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24423,4,3,5,7,0,0,0,0,-1,0,134583,10,0,40,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24424,4,2,8,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24425,4,1,7,7,0,0,0,0,-1,0,134591,7,0,30,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24426,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24427,12,0,0,0,0,0,0,0,-1,0,133899,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24428,12,0,0,0,0,0,0,0,-1,0,134823,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24429,0,0,0,0,60,0,0,0,-1,0,132863,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24430,2,8,1,17,0,1,0,0,-1,0,135417,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +24431,2,4,2,21,0,3,0,0,-1,0,133514,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +24432,2,5,2,17,0,1,0,0,-1,0,133513,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +24433,2,18,2,26,0,0,0,0,-1,0,135542,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,14,0,0,0,0 +24434,2,10,2,17,0,2,0,0,-1,0,135222,13,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,18,0,0,0,0 +24435,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24436,4,2,8,9,0,0,0,0,-1,0,132607,7,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24437,4,1,7,9,0,0,0,0,-1,0,132604,7,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24438,4,1,7,20,0,0,0,0,-1,0,132662,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24439,4,2,8,7,0,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24440,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24441,2,18,2,26,0,0,0,0,-1,0,135543,12,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +24442,4,3,5,6,0,0,0,0,-1,0,132492,10,0,20,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24443,4,2,8,9,0,0,0,0,-1,0,132606,7,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24444,4,1,7,7,0,0,0,0,-1,0,134586,7,0,35,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24445,4,3,5,9,0,0,0,0,-1,0,132602,10,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24446,4,2,8,6,0,0,0,0,-1,0,132513,7,0,20,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24447,4,3,5,8,0,0,0,0,-1,0,132535,10,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24448,2,7,1,21,0,3,0,0,-1,0,135411,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,0,0,0 +24449,12,0,0,0,0,0,0,0,-1,0,133851,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24450,4,1,7,10,63,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24451,4,3,5,9,63,0,0,0,-1,0,133423,10,0,40,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24452,4,2,8,10,63,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24453,2,15,1,21,63,3,0,0,-1,0,135663,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +24454,4,1,7,16,63,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24455,4,2,8,5,63,0,0,0,-1,0,132741,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24456,4,4,6,7,63,0,0,0,-1,0,134671,9,0,100,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24457,4,4,6,3,63,0,0,0,-1,0,135052,11,0,80,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24458,4,4,6,6,63,0,0,0,-1,0,132490,11,0,45,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24459,4,1,7,16,63,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24460,4,0,3,2,63,0,0,0,-1,0,133862,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24461,2,5,2,17,63,1,0,0,-1,0,133498,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0,318,0,0,0,0 +24462,4,0,3,2,63,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24463,4,4,6,3,63,0,0,0,-1,0,135046,9,0,80,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24464,2,15,1,13,63,3,0,0,-1,0,135363,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +24465,4,3,5,5,63,0,0,0,-1,0,132625,10,0,120,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24466,4,2,8,7,63,0,0,0,-1,0,134673,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24467,15,0,0,0,0,0,0,0,-1,0,134813,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24468,12,0,0,0,0,0,0,0,-1,0,134523,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24469,12,0,0,0,0,0,0,0,-1,0,136030,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24470,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24471,12,0,0,0,0,0,0,0,-1,0,134329,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24472,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24473,12,0,0,0,0,0,0,0,-1,0,132780,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24474,0,0,0,0,0,0,0,0,-1,0,134075,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24475,15,0,0,0,0,0,0,0,-1,0,135241,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24476,7,11,0,0,0,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24477,7,8,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24478,3,7,0,0,0,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24479,3,7,0,0,0,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24480,12,0,0,0,0,0,0,0,-1,0,132856,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24481,4,1,7,20,63,0,0,0,-1,0,132653,7,0,80,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24482,12,0,0,0,0,0,0,0,-1,0,133460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24483,12,0,0,0,60,0,0,0,-1,0,134001,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24484,12,0,0,0,60,0,0,0,-1,0,134001,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24485,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24486,12,0,0,0,0,0,0,0,-1,0,134310,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24487,12,0,0,0,0,0,0,0,-1,0,134237,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24488,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24489,12,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24490,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24491,0,8,0,0,0,0,0,0,-1,0,132384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24492,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24493,12,0,0,0,0,0,0,0,-1,0,135671,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24494,0,0,0,0,0,0,0,0,-1,0,135728,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24495,2,8,1,17,1,1,0,0,-1,0,135410,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +24496,12,0,0,0,0,0,0,0,-1,0,136231,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24497,12,0,0,0,0,0,0,0,-1,0,136070,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24498,12,0,0,0,0,0,0,0,-1,0,136070,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24499,12,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24500,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24501,15,0,0,0,0,0,0,0,-1,0,135242,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24502,15,0,0,0,0,0,0,0,-1,0,133731,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24503,12,0,0,0,0,0,0,0,-1,0,132097,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24504,15,0,0,0,64,0,0,0,-1,0,135988,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24505,12,0,0,0,0,0,0,0,-1,0,134338,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24506,15,0,3,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24507,15,0,3,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24508,15,0,3,0,0,0,0,0,-1,0,132777,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24509,15,0,3,0,0,0,0,0,-1,0,132786,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24510,15,0,3,0,0,0,0,0,-1,0,132785,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24511,15,0,3,0,0,0,0,0,-1,0,132781,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24512,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +24513,12,0,0,0,0,0,0,0,-1,0,132150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24514,12,0,0,0,0,0,0,0,-1,0,134238,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24515,15,0,8,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24516,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24517,15,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24518,15,0,8,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24519,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24520,0,0,0,0,1,0,0,0,-1,0,132483,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24521,15,0,0,0,0,0,0,0,-1,0,134970,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24522,0,0,0,0,1,0,0,0,-1,0,135726,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24523,12,0,0,0,0,0,0,0,-1,0,132368,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24524,2,1,1,17,70,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0,517,0,0,0,0 +24525,2,1,1,17,70,1,0,0,-1,0,132392,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0,517,0,0,0,0 +24526,4,4,6,9,70,0,0,0,-1,0,132618,0,0,55,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24527,4,4,6,5,70,0,0,0,-1,0,132751,11,0,165,0,0,0,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24528,4,1,7,16,70,0,0,0,-1,0,133759,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24529,4,4,6,10,70,0,0,0,-1,0,132944,0,0,55,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24530,2,3,1,26,70,0,0,0,-1,0,135614,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,278,0,0,0,0 +24531,4,4,6,1,70,0,0,0,-1,0,133077,11,0,100,0,0,0,0,0,0,1326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24532,4,4,6,7,70,0,0,0,-1,0,134584,0,0,120,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24533,4,0,3,2,70,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24534,4,4,6,3,70,0,0,0,-1,0,135046,0,0,100,0,0,0,0,0,0,1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24535,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24536,4,4,6,8,70,0,0,0,-1,0,132585,0,0,75,0,0,0,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24537,4,4,6,6,70,0,0,0,-1,0,132498,0,0,55,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24538,0,8,0,0,1,0,0,0,-1,0,133717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24539,0,5,0,0,55,0,0,0,-1,0,134522,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24540,0,0,0,0,0,0,0,0,-1,0,134192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24541,0,8,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24542,12,0,0,0,0,0,0,0,-1,0,135723,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24543,12,0,0,0,0,0,0,0,-1,0,134161,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24544,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24545,4,4,6,1,70,0,0,0,-1,0,133075,11,0,100,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24546,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24547,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24548,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24549,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24550,2,8,1,17,70,1,0,0,-1,0,135380,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,513,0,0,0,0 +24551,4,0,4,12,70,0,0,0,-1,0,133442,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24552,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24553,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24554,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24555,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24556,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24557,2,10,2,17,70,2,0,0,-1,0,135189,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,285,0,0,0,0 +24558,15,0,0,0,64,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24559,15,0,0,0,64,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24560,12,0,0,0,0,0,0,0,-1,0,135432,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24561,4,1,7,6,70,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24562,4,1,7,3,70,0,0,0,-1,0,133732,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24563,4,1,7,1,70,0,0,0,-1,0,133131,7,0,60,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24564,4,1,7,20,70,0,0,0,-1,0,132690,7,0,100,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24565,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24566,4,1,7,10,70,0,0,0,-1,0,132966,7,0,35,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24567,4,1,7,16,70,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24568,4,0,5,11,70,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24569,2,19,2,26,70,0,0,0,-1,0,135467,21,0,75,0,3,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,294,0,0,0,0 +24570,2,10,2,17,70,2,0,0,-1,0,135169,12,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,399,0,0,0,0 +24571,4,0,5,2,70,0,0,0,-1,0,133441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24572,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24573,12,0,0,0,0,0,0,0,-1,0,133471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24575,4,1,7,6,57,0,0,61,-1,0,132504,7,0,25,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24576,4,1,7,6,61,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24577,4,1,7,8,61,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24578,4,1,7,9,61,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24579,0,0,0,0,1,0,0,0,-1,0,134502,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24580,4,1,7,1,61,0,0,0,-1,0,133153,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24581,0,0,0,0,1,0,0,0,-1,0,134504,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24582,4,1,7,8,57,0,0,61,-1,0,132537,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24583,4,1,7,5,57,0,0,61,-1,0,132646,7,0,70,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24584,4,1,7,10,57,0,0,61,-1,0,132939,7,0,25,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24585,4,1,7,1,57,0,0,61,-1,0,133694,7,0,45,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24586,4,1,7,7,57,0,0,61,-1,0,134597,7,0,55,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24587,4,1,7,3,57,0,0,61,-1,0,135039,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24588,4,1,7,9,57,0,0,61,-1,0,132611,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24589,4,1,7,6,58,0,0,61,-1,0,132492,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24590,4,1,7,8,58,0,0,61,-1,0,132541,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24591,4,1,7,5,58,0,0,61,-1,0,132647,7,0,70,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24592,4,1,7,10,58,0,0,61,-1,0,132939,7,0,25,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24593,4,1,7,1,58,0,0,61,-1,0,133153,7,0,45,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24594,4,1,7,7,58,0,0,61,-1,0,134596,7,0,55,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24595,4,1,7,3,58,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24596,4,1,7,9,58,0,0,61,-1,0,132601,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24597,4,1,7,6,59,0,0,61,-1,0,132505,7,0,25,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24598,4,1,7,8,59,0,0,61,-1,0,132542,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24599,4,1,7,5,59,0,0,61,-1,0,132718,7,0,70,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24600,4,1,7,10,59,0,0,61,-1,0,132953,7,0,25,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24601,4,1,7,1,59,0,0,61,-1,0,132767,7,0,45,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24602,4,1,7,7,59,0,0,61,-1,0,134644,7,0,55,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24603,4,1,7,3,59,0,0,61,-1,0,135054,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24604,4,1,7,9,59,0,0,61,-1,0,132609,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24605,4,1,7,6,60,0,0,61,-1,0,132492,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24606,4,1,7,8,60,0,0,61,-1,0,132539,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24607,4,1,7,5,60,0,0,61,-1,0,132646,7,0,70,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24608,4,1,7,10,60,0,0,61,-1,0,132958,7,0,25,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24609,4,1,7,1,60,0,0,61,-1,0,133153,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24610,4,1,7,7,60,0,0,61,-1,0,134598,7,0,55,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24611,4,1,7,3,60,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24612,4,1,7,9,60,0,0,61,-1,0,132606,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24613,4,1,7,6,61,0,0,61,-1,0,132520,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24614,4,1,7,8,61,0,0,61,-1,0,132551,7,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24615,4,1,7,5,61,0,0,61,-1,0,132660,7,0,70,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24616,4,1,7,10,61,0,0,61,-1,0,132940,7,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24617,4,1,7,1,61,0,0,61,-1,0,133163,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24618,4,1,7,7,61,0,0,61,-1,0,134588,7,0,55,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24619,4,1,7,3,61,0,0,61,-1,0,135032,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24620,4,1,7,9,61,0,0,61,-1,0,132612,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24621,4,1,7,6,62,0,0,61,-1,0,132492,7,0,25,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24622,4,1,7,8,62,0,0,61,-1,0,132541,7,0,35,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24623,4,1,7,5,62,0,0,61,-1,0,132723,7,0,70,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24624,4,1,7,10,62,0,0,61,-1,0,132952,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24625,4,1,7,1,62,0,0,61,-1,0,133161,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24626,4,1,7,7,62,0,0,61,-1,0,134587,7,0,55,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24627,4,1,7,3,62,0,0,61,-1,0,135049,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24628,4,1,7,9,62,0,0,61,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24629,4,1,7,6,63,0,0,61,-1,0,132514,7,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24630,4,1,7,8,63,0,0,61,-1,0,132561,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24631,4,1,7,5,63,0,0,61,-1,0,135010,7,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24632,4,1,7,10,63,0,0,61,-1,0,132951,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24633,4,1,7,1,63,0,0,61,-1,0,133134,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24634,4,1,7,7,63,0,0,61,-1,0,134590,7,0,55,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24635,4,1,7,3,63,0,0,61,-1,0,135049,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24636,4,1,7,9,63,0,0,61,-1,0,132611,7,0,25,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24637,4,1,7,6,64,0,0,61,-1,0,132514,7,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24638,4,1,7,8,64,0,0,61,-1,0,132543,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24639,4,1,7,5,64,0,0,61,-1,0,135010,7,0,70,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24640,4,1,7,10,64,0,0,61,-1,0,132950,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24641,4,1,7,1,64,0,0,61,-1,0,133134,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24642,4,1,7,7,64,0,0,61,-1,0,134600,7,0,55,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24643,4,1,7,3,64,0,0,61,-1,0,135049,7,0,45,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24644,4,1,7,9,64,0,0,61,-1,0,132611,7,0,25,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24645,4,1,7,6,65,0,0,61,-1,0,132505,7,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24646,4,1,7,8,65,0,0,61,-1,0,132560,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24647,4,1,7,5,65,0,0,61,-1,0,132673,7,0,70,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24648,4,1,7,10,65,0,0,61,-1,0,132954,7,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24649,4,1,7,1,65,0,0,61,-1,0,132767,8,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24650,4,1,7,7,65,0,0,61,-1,0,134685,7,0,55,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24651,4,1,7,3,65,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24652,4,1,7,9,65,0,0,61,-1,0,132606,7,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24653,4,1,7,6,66,0,0,61,-1,0,132495,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24654,4,1,7,8,66,0,0,61,-1,0,132543,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24655,4,1,7,5,66,0,0,61,-1,0,132691,7,0,70,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24656,4,1,7,10,66,0,0,61,-1,0,132957,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24657,4,1,7,1,66,0,0,61,-1,0,133135,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24658,4,1,7,7,66,0,0,61,-1,0,134599,7,0,55,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24659,4,1,7,3,66,0,0,61,-1,0,135032,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24660,4,1,7,9,66,0,0,61,-1,0,132608,7,0,25,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24661,4,1,7,6,67,0,0,61,-1,0,132510,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24662,4,1,7,8,67,0,0,61,-1,0,132562,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24663,4,1,7,5,67,0,0,61,-1,0,135012,7,0,70,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24664,4,1,7,10,67,0,0,61,-1,0,132952,7,0,25,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24665,4,1,7,1,67,0,0,61,-1,0,133132,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24666,4,1,7,7,67,0,0,61,-1,0,134598,7,0,55,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24667,4,1,7,3,67,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24668,4,1,7,9,67,0,0,61,-1,0,132606,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24669,4,1,7,6,68,0,0,61,-1,0,132506,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24670,4,1,7,8,68,0,0,61,-1,0,132554,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24671,4,1,7,5,68,0,0,61,-1,0,132680,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24672,4,1,7,10,68,0,0,61,-1,0,132951,7,0,25,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24673,4,1,7,1,68,0,0,61,-1,0,133134,7,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24674,4,1,7,7,68,0,0,61,-1,0,134604,7,0,55,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24675,4,1,7,3,68,0,0,61,-1,0,135049,7,0,45,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24676,4,1,7,9,68,0,0,61,-1,0,132605,7,0,25,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24677,4,1,7,6,69,0,0,61,-1,0,132491,7,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24678,4,1,7,8,69,0,0,61,-1,0,132543,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24679,4,1,7,5,69,0,0,61,-1,0,135008,7,0,70,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24680,4,1,7,10,69,0,0,61,-1,0,132957,7,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24681,4,1,7,1,69,0,0,61,-1,0,132768,7,0,45,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24682,4,1,7,7,69,0,0,61,-1,0,134586,7,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24683,4,1,7,3,69,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24684,4,1,7,9,69,0,0,61,-1,0,132609,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24685,4,1,7,6,70,0,0,61,-1,0,132491,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24686,4,1,7,8,70,0,0,61,-1,0,132543,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24687,4,1,7,5,70,0,0,61,-1,0,135008,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24688,4,1,7,10,70,0,0,61,-1,0,132957,7,0,25,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24689,4,1,7,1,70,0,0,61,-1,0,133161,7,0,45,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24690,4,1,7,7,70,0,0,61,-1,0,134586,7,0,55,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24691,4,1,7,3,70,0,0,61,-1,0,135040,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24692,4,1,7,9,70,0,0,61,-1,0,132609,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24693,4,2,8,6,57,0,0,63,-1,0,132491,7,0,30,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24694,4,2,8,8,57,0,0,63,-1,0,132540,7,0,45,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24695,4,2,8,5,57,0,0,63,-1,0,132722,7,0,85,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24696,4,2,8,10,57,0,0,63,-1,0,132939,7,0,30,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24697,4,2,8,1,57,0,0,63,-1,0,133072,7,0,50,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24698,4,2,8,7,57,0,0,63,-1,0,134638,7,0,65,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24699,4,2,8,3,57,0,0,63,-1,0,135054,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24700,4,2,8,9,57,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24701,4,2,8,6,58,0,0,63,-1,0,132514,7,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24702,4,2,8,8,58,0,0,63,-1,0,132539,7,0,45,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24703,4,2,8,5,58,0,0,63,-1,0,132647,7,0,85,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24704,4,2,8,10,58,0,0,63,-1,0,132952,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24705,4,2,8,1,58,0,0,63,-1,0,133123,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24706,4,2,8,7,58,0,0,63,-1,0,134600,7,0,65,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24707,4,2,8,3,58,0,0,63,-1,0,135049,7,0,50,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24708,4,2,8,9,58,0,0,63,-1,0,132611,7,0,30,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24709,4,2,8,6,59,0,0,63,-1,0,132514,7,0,30,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24710,4,2,8,8,59,0,0,63,-1,0,132564,7,0,45,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24711,4,2,8,5,59,0,0,63,-1,0,132723,7,0,85,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24712,4,2,8,10,59,0,0,63,-1,0,132948,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24713,4,2,8,1,59,0,0,63,-1,0,133077,7,0,50,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24714,4,2,8,7,59,0,0,63,-1,0,134594,7,0,65,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24715,4,2,8,3,59,0,0,63,-1,0,135039,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24716,4,2,8,9,59,0,0,63,-1,0,132605,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24717,4,2,8,6,60,0,0,63,-1,0,132512,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24718,4,2,8,8,60,0,0,63,-1,0,132545,7,0,45,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24719,4,2,8,5,60,0,0,63,-1,0,132724,7,0,85,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24720,4,2,8,10,60,0,0,63,-1,0,132952,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24721,4,2,8,1,60,0,0,63,-1,0,133135,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24722,4,2,8,7,60,0,0,63,-1,0,134582,7,0,65,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24723,4,2,8,3,60,0,0,63,-1,0,135039,7,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24724,4,2,8,9,60,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24725,4,2,8,6,61,0,0,63,-1,0,132498,7,0,30,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24726,4,2,8,8,61,0,0,63,-1,0,132559,7,0,45,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24727,4,2,8,5,61,0,0,63,-1,0,135008,7,0,85,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24728,4,2,8,10,61,0,0,63,-1,0,132957,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24729,4,2,8,1,61,0,0,63,-1,0,133135,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24730,4,2,8,7,61,0,0,63,-1,0,134586,7,0,65,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24731,4,2,8,3,61,0,0,63,-1,0,135054,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24732,4,2,8,9,61,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24733,4,2,8,6,62,0,0,63,-1,0,132505,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24734,4,2,8,8,62,0,0,63,-1,0,132562,7,0,45,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24735,4,2,8,5,62,0,0,63,-1,0,132639,7,0,85,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24736,4,2,8,10,62,0,0,63,-1,0,132957,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24737,4,2,8,1,62,0,0,63,-1,0,133135,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24738,4,2,8,7,62,0,0,63,-1,0,134645,7,0,65,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24739,4,2,8,3,62,0,0,63,-1,0,135037,7,0,50,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24740,4,2,8,9,62,0,0,63,-1,0,132606,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24741,4,2,8,6,63,0,0,63,-1,0,132498,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24742,4,2,8,8,63,0,0,63,-1,0,132542,7,0,45,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24743,4,2,8,5,63,0,0,63,-1,0,132724,7,0,85,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24744,4,2,8,10,63,0,0,63,-1,0,132952,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24745,4,2,8,1,63,0,0,63,-1,0,133152,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24746,4,2,8,7,63,0,0,63,-1,0,134592,7,0,65,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24747,4,2,8,3,63,0,0,63,-1,0,135037,7,0,50,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24748,4,2,8,9,63,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24749,4,2,8,6,64,0,0,63,-1,0,132515,7,0,30,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24750,4,2,8,8,64,0,0,63,-1,0,132539,7,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24751,4,2,8,5,64,0,0,63,-1,0,132724,7,0,85,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24752,4,2,8,10,64,0,0,63,-1,0,132952,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24753,4,2,8,1,64,0,0,63,-1,0,133143,7,0,50,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24754,4,2,8,7,64,0,0,63,-1,0,134598,7,0,65,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24755,4,2,8,3,64,0,0,63,-1,0,135040,7,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24756,4,2,8,9,64,0,0,63,-1,0,132606,7,0,30,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24757,4,2,8,6,65,0,0,63,-1,0,132510,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24758,4,2,8,8,65,0,0,63,-1,0,132541,7,0,45,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24759,4,2,8,5,65,0,0,63,-1,0,132647,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24760,4,2,8,10,65,0,0,63,-1,0,132955,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24761,4,2,8,1,65,0,0,63,-1,0,133142,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24762,4,2,8,7,65,0,0,63,-1,0,134640,7,0,65,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24763,4,2,8,3,65,0,0,63,-1,0,135037,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24764,4,2,8,9,65,0,0,63,-1,0,132611,7,0,30,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24765,4,2,8,6,66,0,0,63,-1,0,132515,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24766,4,2,8,8,66,0,0,63,-1,0,132549,7,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24767,4,2,8,5,66,0,0,63,-1,0,135014,7,0,85,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24768,4,2,8,10,66,0,0,63,-1,0,132951,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24769,4,2,8,1,66,0,0,63,-1,0,133145,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24770,4,2,8,7,66,0,0,63,-1,0,134605,7,0,65,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24771,4,2,8,3,66,0,0,63,-1,0,135049,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24772,4,2,8,9,66,0,0,63,-1,0,132606,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24773,4,2,8,6,67,0,0,63,-1,0,132505,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24774,4,2,8,8,67,0,0,63,-1,0,132560,7,0,45,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24775,4,2,8,5,67,0,0,63,-1,0,132674,7,0,85,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24776,4,2,8,10,67,0,0,63,-1,0,132954,7,0,30,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24777,4,2,8,1,67,0,0,63,-1,0,133117,7,0,50,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24778,4,2,8,7,67,0,0,63,-1,0,134581,7,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24779,4,2,8,3,67,0,0,63,-1,0,135034,7,0,50,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24780,4,2,8,9,67,0,0,63,-1,0,132607,7,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24781,4,2,8,6,68,0,0,63,-1,0,132491,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24782,4,1,7,10,61,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24783,4,2,8,8,68,0,0,63,-1,0,132563,7,0,45,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24784,4,2,8,5,68,0,0,63,-1,0,132719,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24785,4,2,8,10,68,0,0,63,-1,0,132957,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24786,4,2,8,1,68,0,0,63,-1,0,132919,7,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24787,4,2,8,7,68,0,0,63,-1,0,134638,7,0,65,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24788,4,2,8,3,68,0,0,63,-1,0,135037,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24789,4,2,8,9,68,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24790,4,2,8,6,69,0,0,63,-1,0,132491,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24791,4,2,8,8,69,0,0,63,-1,0,132543,7,0,45,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24792,4,2,8,5,69,0,0,63,-1,0,135008,7,0,85,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24793,4,2,8,10,69,0,0,63,-1,0,132957,7,0,30,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24794,4,2,8,1,69,0,0,63,-1,0,133135,7,0,50,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24795,4,2,8,7,69,0,0,63,-1,0,134586,7,0,65,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24796,4,2,8,3,69,0,0,63,-1,0,135040,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24797,4,2,8,9,69,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24798,4,2,8,6,70,0,0,63,-1,0,132491,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24799,4,2,8,8,70,0,0,63,-1,0,132543,7,0,45,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24800,4,2,8,5,70,0,0,63,-1,0,135008,7,0,85,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24801,4,2,8,10,70,0,0,63,-1,0,132957,7,0,30,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24802,4,2,8,1,70,0,0,63,-1,0,133126,7,0,50,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24803,4,2,8,7,70,0,0,63,-1,0,134586,7,0,65,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24804,4,2,8,3,70,0,0,63,-1,0,135040,7,0,50,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24805,4,2,8,9,70,0,0,63,-1,0,132609,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24806,4,3,5,6,57,0,0,64,-1,0,132506,10,0,35,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24807,4,3,5,8,57,0,0,64,-1,0,132564,10,0,50,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24808,4,3,5,5,57,0,0,64,-1,0,132634,10,0,100,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24809,4,3,5,10,57,0,0,64,-1,0,132955,10,0,35,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24810,4,3,5,1,57,0,0,64,-1,0,132767,10,0,60,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24811,4,3,5,7,57,0,0,64,-1,0,134605,10,0,75,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24812,4,3,5,3,57,0,0,64,-1,0,135049,10,0,60,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24813,4,3,5,9,57,0,0,64,-1,0,132605,10,0,35,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24814,4,3,5,6,58,0,0,64,-1,0,132518,10,0,35,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24815,4,3,5,8,58,0,0,64,-1,0,132550,10,0,50,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24816,4,3,5,5,58,0,0,64,-1,0,132626,10,0,100,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24817,4,3,5,10,58,0,0,64,-1,0,132943,10,0,35,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24818,4,3,5,1,58,0,0,64,-1,0,133077,10,0,60,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24819,4,3,5,7,58,0,0,64,-1,0,134663,10,0,75,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24820,4,3,5,3,58,0,0,64,-1,0,135052,10,0,60,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24821,4,3,5,9,58,0,0,64,-1,0,132612,10,0,35,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24822,4,3,5,6,59,0,0,64,-1,0,132511,10,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24823,4,3,5,8,59,0,0,64,-1,0,132551,10,0,50,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24824,4,3,5,5,59,0,0,64,-1,0,132634,10,0,100,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24825,4,3,5,10,59,0,0,64,-1,0,132951,10,0,35,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24826,4,3,5,1,59,0,0,64,-1,0,133135,10,0,60,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24827,4,3,5,7,59,0,0,64,-1,0,134664,10,0,75,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24828,4,3,5,3,59,0,0,64,-1,0,135045,10,0,60,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24829,4,3,5,9,59,0,0,64,-1,0,132612,10,0,35,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24830,4,3,5,6,60,0,0,64,-1,0,132492,7,0,35,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24831,4,3,5,8,60,0,0,64,-1,0,132549,7,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24832,4,3,5,5,60,0,0,64,-1,0,132634,7,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24833,4,3,5,10,60,0,0,64,-1,0,132945,7,0,35,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24834,4,3,5,1,60,0,0,64,-1,0,133141,7,0,60,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24835,4,3,5,7,60,0,0,64,-1,0,134667,7,0,75,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24836,4,3,5,3,60,0,0,64,-1,0,135040,7,0,60,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24837,4,3,5,9,60,0,0,64,-1,0,132606,7,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24838,4,3,5,6,61,0,0,64,-1,0,132502,7,0,35,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24839,4,3,5,8,61,0,0,64,-1,0,132550,7,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24840,4,3,5,5,61,0,0,64,-1,0,132629,7,0,100,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24841,4,3,5,10,61,0,0,64,-1,0,132944,7,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24842,4,3,5,1,61,0,0,64,-1,0,133126,7,0,60,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24843,4,3,5,7,61,0,0,64,-1,0,134661,7,0,75,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24844,4,3,5,3,61,0,0,64,-1,0,135054,7,0,60,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24845,4,3,5,9,61,0,0,64,-1,0,132603,7,0,35,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24846,4,3,5,6,62,0,0,64,-1,0,132506,7,0,35,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24847,4,3,5,8,62,0,0,64,-1,0,132554,7,0,50,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24848,4,3,5,5,62,0,0,64,-1,0,132634,7,0,100,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24849,4,3,5,10,62,0,0,64,-1,0,132946,7,0,35,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24850,4,3,5,1,62,0,0,64,-1,0,132506,7,0,60,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24851,4,3,5,7,62,0,0,64,-1,0,134660,7,0,75,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24852,4,3,5,3,62,0,0,64,-1,0,135049,7,0,60,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24853,4,3,5,9,62,0,0,64,-1,0,132605,7,0,35,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24854,4,3,5,6,63,0,0,64,-1,0,132500,10,0,35,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24855,4,3,5,8,63,0,0,64,-1,0,132547,10,0,50,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24856,4,3,5,5,63,0,0,64,-1,0,132629,10,0,100,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24857,4,3,5,10,63,0,0,64,-1,0,132960,10,0,35,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24858,4,3,5,1,63,0,0,64,-1,0,132768,10,0,60,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24859,4,3,5,7,63,0,0,64,-1,0,134661,10,0,75,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24860,4,3,5,3,63,0,0,64,-1,0,135046,10,0,60,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24861,4,3,5,9,63,0,0,64,-1,0,132603,10,0,35,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24862,4,3,5,6,64,0,0,64,-1,0,132490,7,0,35,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24863,4,3,5,8,64,0,0,64,-1,0,132536,7,0,50,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24864,4,3,5,5,64,0,0,64,-1,0,132738,7,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24865,4,3,5,10,64,0,0,64,-1,0,132953,7,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24866,4,3,5,1,64,0,0,64,-1,0,133073,7,0,60,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24867,4,3,5,7,64,0,0,64,-1,0,134672,7,0,75,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24868,4,3,5,3,64,0,0,64,-1,0,135054,7,0,60,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24869,4,3,5,9,64,0,0,64,-1,0,132609,7,0,35,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24870,4,3,5,6,65,0,0,64,-1,0,132511,10,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24871,4,3,5,8,65,0,0,64,-1,0,132550,10,0,50,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24872,4,3,5,5,65,0,0,64,-1,0,132628,11,0,100,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24873,4,3,5,10,65,0,0,64,-1,0,132946,10,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24874,4,3,5,1,65,0,0,64,-1,0,133137,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24875,4,3,5,7,65,0,0,64,-1,0,134665,11,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24876,4,3,5,3,65,0,0,64,-1,0,135047,11,0,60,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24877,4,3,5,9,65,0,0,64,-1,0,132601,10,0,35,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24878,4,3,5,6,66,0,0,64,-1,0,132510,10,0,35,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24879,4,3,5,8,66,0,0,64,-1,0,132554,10,0,50,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24880,4,3,5,5,66,0,0,64,-1,0,132742,11,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24881,4,3,5,10,66,0,0,64,-1,0,132939,10,0,35,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24882,4,3,5,1,66,0,0,64,-1,0,132768,10,0,60,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24883,4,3,5,7,66,0,0,64,-1,0,134626,11,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24884,4,3,5,3,66,0,0,64,-1,0,135049,11,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24885,4,3,5,9,66,0,0,64,-1,0,132605,10,0,35,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24886,4,3,5,6,67,0,0,64,-1,0,132513,10,0,35,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24887,4,3,5,8,67,0,0,64,-1,0,132543,10,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24888,4,3,5,5,67,0,0,64,-1,0,132634,11,0,100,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24889,4,3,5,10,67,0,0,64,-1,0,132945,10,0,35,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24890,4,3,5,1,67,0,0,64,-1,0,133144,10,0,60,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24891,4,3,5,7,67,0,0,64,-1,0,134596,10,0,75,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24892,4,3,5,3,67,0,0,64,-1,0,135045,11,0,60,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24893,4,3,5,9,67,0,0,64,-1,0,132612,10,0,35,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24894,4,3,5,6,68,0,0,64,-1,0,132520,10,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24895,4,3,5,8,68,0,0,64,-1,0,132549,10,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24896,4,3,5,5,68,0,0,64,-1,0,132631,11,0,100,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24897,4,3,5,10,68,0,0,64,-1,0,132964,10,0,35,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24898,4,3,5,1,68,0,0,64,-1,0,133111,8,0,60,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24899,4,3,5,7,68,0,0,64,-1,0,134667,11,0,75,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24900,4,3,5,3,68,0,0,64,-1,0,135033,11,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24901,4,3,5,9,68,0,0,64,-1,0,132617,10,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24902,4,3,5,6,69,0,0,64,-1,0,132491,10,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24903,4,3,5,8,69,0,0,64,-1,0,132543,10,0,50,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24904,4,3,5,5,69,0,0,64,-1,0,135008,10,0,100,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24905,4,3,5,10,69,0,0,64,-1,0,132957,10,0,35,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24906,4,3,5,1,69,0,0,64,-1,0,133076,10,0,60,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24907,4,3,5,7,69,0,0,64,-1,0,134586,10,0,75,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24908,4,3,5,3,69,0,0,64,-1,0,135040,10,0,60,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24909,4,3,5,9,69,0,0,64,-1,0,132609,10,0,35,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24910,4,3,5,6,70,0,0,64,-1,0,132491,7,0,35,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24911,4,3,5,8,70,0,0,64,-1,0,132547,10,0,50,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24912,4,3,5,5,70,0,0,64,-1,0,135008,7,0,100,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24913,4,3,5,10,70,0,0,64,-1,0,132957,7,0,35,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24914,4,3,5,1,70,0,0,64,-1,0,133074,10,0,60,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24915,4,3,5,7,70,0,0,64,-1,0,134586,11,0,75,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24916,4,3,5,3,70,0,0,64,-1,0,135040,7,0,60,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24917,4,3,5,9,70,0,0,64,-1,0,132609,7,0,35,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24918,4,4,6,6,57,0,0,65,-1,0,132511,11,0,40,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24919,4,4,6,8,57,0,0,65,-1,0,132549,11,0,55,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24920,4,4,6,5,57,0,0,65,-1,0,132739,11,0,115,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24921,4,4,6,10,57,0,0,65,-1,0,132962,11,0,40,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24922,4,4,6,1,57,0,0,65,-1,0,133127,11,0,70,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24923,4,4,6,7,57,0,0,65,-1,0,134692,11,0,85,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24924,4,4,6,3,57,0,0,65,-1,0,135057,11,0,70,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24925,4,4,6,9,57,0,0,65,-1,0,132613,11,0,40,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24926,4,4,6,6,58,0,0,65,-1,0,132516,11,0,40,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24927,4,4,6,8,58,0,0,65,-1,0,132590,11,0,55,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24928,4,4,6,5,58,0,0,65,-1,0,132723,11,0,115,0,0,0,0,0,0,785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24929,4,4,6,10,58,0,0,65,-1,0,132962,11,0,40,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24930,4,4,6,1,58,0,0,65,-1,0,133071,11,0,70,0,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24931,4,4,6,7,58,0,0,65,-1,0,134691,11,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24932,4,4,6,3,58,0,0,65,-1,0,135044,11,0,70,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24933,4,4,6,9,58,0,0,65,-1,0,132613,11,0,40,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24934,4,4,6,6,59,0,0,65,-1,0,132502,11,0,40,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24935,4,4,6,8,59,0,0,65,-1,0,132562,11,0,55,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24936,4,4,6,5,59,0,0,65,-1,0,132635,11,0,115,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24937,4,4,6,10,59,0,0,65,-1,0,132960,11,0,40,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24938,4,4,6,1,59,0,0,65,-1,0,133070,11,0,70,0,0,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24939,4,4,6,7,59,0,0,65,-1,0,134697,11,0,85,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24940,4,4,6,3,59,0,0,65,-1,0,135055,11,0,70,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24941,4,4,6,9,59,0,0,65,-1,0,132608,11,0,40,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24942,4,4,6,6,60,0,0,65,-1,0,132502,7,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24943,4,4,6,8,60,0,0,65,-1,0,132547,8,0,55,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24944,4,4,6,5,60,0,0,65,-1,0,132629,7,0,115,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24945,4,4,6,10,60,0,0,65,-1,0,132953,7,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24946,4,4,6,1,60,0,0,65,-1,0,133071,7,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24947,4,4,6,7,60,0,0,65,-1,0,134678,7,0,85,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24948,4,4,6,3,60,0,0,65,-1,0,135054,11,0,70,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24949,4,4,6,9,60,0,0,65,-1,0,132609,7,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24950,4,4,6,6,61,0,0,65,-1,0,132492,11,0,40,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24951,4,4,6,8,61,0,0,65,-1,0,132551,7,0,55,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24952,4,4,6,5,61,0,0,65,-1,0,132637,7,0,115,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24953,4,4,6,10,61,0,0,65,-1,0,132962,7,0,40,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24954,4,4,6,1,61,0,0,65,-1,0,133147,11,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24955,4,4,6,7,61,0,0,65,-1,0,134696,7,0,85,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24956,4,4,6,3,61,0,0,65,-1,0,135040,7,0,70,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24957,4,4,6,9,61,0,0,65,-1,0,132613,11,0,40,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24958,4,4,6,6,62,0,0,65,-1,0,132523,11,0,40,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24959,4,4,6,8,62,0,0,65,-1,0,132584,11,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24960,4,4,6,5,62,0,0,65,-1,0,132751,11,0,115,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24961,4,4,6,10,62,0,0,65,-1,0,132957,11,0,40,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24962,4,4,6,1,62,0,0,65,-1,0,133076,11,0,70,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24963,4,4,6,7,62,0,0,65,-1,0,134691,11,0,85,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24964,4,4,6,3,62,0,0,65,-1,0,135054,11,0,70,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24965,4,4,6,9,62,0,0,65,-1,0,132609,11,0,40,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24966,4,4,6,6,63,0,0,65,-1,0,132506,11,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24967,4,4,6,8,63,0,0,65,-1,0,132548,11,0,55,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24968,4,4,6,5,63,0,0,65,-1,0,132759,11,0,115,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24969,4,4,6,10,63,0,0,65,-1,0,132964,11,0,40,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24970,4,4,6,1,63,0,0,65,-1,0,133123,11,0,70,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24971,4,4,6,7,63,0,0,65,-1,0,134626,11,0,85,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24972,4,4,6,3,63,0,0,65,-1,0,135060,11,0,70,0,0,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24973,4,4,6,9,63,0,0,65,-1,0,132616,11,0,40,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24974,4,4,6,6,64,0,0,65,-1,0,132515,11,0,40,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24975,4,4,6,8,64,0,0,65,-1,0,132535,8,0,55,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24976,4,4,6,5,64,0,0,65,-1,0,132739,9,0,115,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24977,4,4,6,10,64,0,0,65,-1,0,132963,8,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24978,4,4,6,1,64,0,0,65,-1,0,133127,8,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24979,4,4,6,7,64,0,0,65,-1,0,134692,9,0,85,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24980,4,4,6,3,64,0,0,65,-1,0,135040,9,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24981,4,4,6,9,64,0,0,65,-1,0,132613,11,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24982,4,4,6,6,65,0,0,65,-1,0,132502,8,0,40,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24983,4,4,6,8,65,0,0,65,-1,0,132562,8,0,55,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24984,4,4,6,5,65,0,0,65,-1,0,132743,9,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24985,4,4,6,10,65,0,0,65,-1,0,132956,8,0,40,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24986,4,4,6,1,65,0,0,65,-1,0,133076,9,0,70,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24987,4,4,6,7,65,0,0,65,-1,0,134697,11,0,85,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24988,4,4,6,3,65,0,0,65,-1,0,135055,9,0,70,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24989,4,4,6,9,65,0,0,65,-1,0,132608,8,0,40,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24990,4,4,6,6,66,0,0,65,-1,0,132490,8,0,40,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24991,4,4,6,8,66,0,0,65,-1,0,132550,8,0,55,0,0,0,0,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24992,4,4,6,5,66,0,0,65,-1,0,132751,9,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24993,4,4,6,10,66,0,0,65,-1,0,132956,8,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24994,4,4,6,1,66,0,0,65,-1,0,133078,9,0,70,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24995,4,4,6,7,66,0,0,65,-1,0,134683,9,0,85,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24996,4,4,6,3,66,0,0,65,-1,0,135055,9,0,70,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24997,4,4,6,9,66,0,0,65,-1,0,132613,8,0,40,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24998,4,4,6,6,67,0,0,65,-1,0,132497,8,0,40,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24999,4,4,6,8,67,0,0,65,-1,0,132590,8,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25000,4,4,6,5,67,0,0,65,-1,0,132741,9,0,115,0,0,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25001,4,4,6,10,67,0,0,65,-1,0,132962,8,0,40,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25002,4,4,6,1,67,0,0,65,-1,0,133101,9,0,70,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25003,4,4,6,7,67,0,0,65,-1,0,134687,9,0,85,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25004,4,4,6,3,67,0,0,65,-1,0,135054,9,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25005,4,4,6,9,67,0,0,65,-1,0,132618,8,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25006,4,4,6,6,68,0,0,65,-1,0,132500,8,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25007,4,4,6,8,68,0,0,65,-1,0,132584,8,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25008,4,4,6,5,68,0,0,65,-1,0,132738,9,0,115,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25009,4,4,6,10,68,0,0,65,-1,0,132960,8,0,40,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25010,4,4,6,1,68,0,0,65,-1,0,133076,8,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25011,4,4,6,7,68,0,0,65,-1,0,134695,9,0,85,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25012,4,4,6,3,68,0,0,65,-1,0,135054,9,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25013,4,4,6,9,68,0,0,65,-1,0,132618,8,0,40,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25014,4,4,6,6,69,0,0,65,-1,0,132500,11,0,40,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25015,4,4,6,8,69,0,0,65,-1,0,132584,11,0,55,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25016,4,4,6,5,69,0,0,65,-1,0,132740,11,0,115,0,0,0,0,0,0,1076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25017,4,4,6,10,69,0,0,65,-1,0,132963,11,0,40,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25018,4,4,6,1,69,0,0,65,-1,0,133071,11,0,70,0,0,0,0,0,0,874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25019,4,4,6,7,69,0,0,65,-1,0,134691,11,0,85,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25020,4,4,6,3,69,0,0,65,-1,0,135041,11,0,70,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25021,4,4,6,9,69,0,0,65,-1,0,132609,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25022,4,4,6,6,70,0,0,65,-1,0,132502,11,0,40,0,0,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25023,4,4,6,8,70,0,0,65,-1,0,132547,9,0,55,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25024,4,4,6,5,70,0,0,65,-1,0,132749,9,0,115,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25025,4,4,6,10,70,0,0,65,-1,0,132962,11,0,40,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25026,4,4,6,1,70,0,0,65,-1,0,133124,11,0,70,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25027,4,4,6,7,70,0,0,65,-1,0,134697,9,0,85,0,0,0,0,0,0,965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25028,4,4,6,3,70,0,0,65,-1,0,135054,9,0,70,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25029,4,4,6,9,70,0,0,65,-1,0,132613,11,0,40,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25030,4,1,7,16,57,0,0,66,-1,0,133754,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25031,4,1,7,16,58,0,0,66,-1,0,133770,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25032,4,1,7,16,59,0,0,66,-1,0,133772,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25033,4,1,7,16,60,0,0,66,-1,0,133767,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25034,4,1,7,16,61,0,0,66,-1,0,133758,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25035,4,1,7,16,62,0,0,66,-1,0,133763,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25036,4,1,7,16,63,0,0,66,-1,0,133774,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25037,4,1,7,16,64,0,0,66,-1,0,133768,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25038,4,1,7,16,65,0,0,66,-1,0,133769,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25039,4,1,7,16,66,0,0,66,-1,0,133770,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25040,4,1,7,16,67,0,0,66,-1,0,133770,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25041,4,1,7,16,68,0,0,66,-1,0,133769,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25042,4,1,7,16,69,0,0,66,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25043,4,1,7,16,70,0,0,66,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25044,4,0,3,11,57,0,0,81,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25045,4,0,3,11,58,0,0,81,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25046,4,0,3,11,59,0,0,81,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25047,4,0,3,11,60,0,0,81,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25048,4,0,3,11,61,0,0,81,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25049,4,0,3,11,62,0,0,81,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25050,4,0,3,11,63,0,0,81,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25051,4,0,3,11,64,0,0,81,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25052,4,0,3,11,65,0,0,81,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25053,4,0,3,11,66,0,0,81,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25054,4,0,3,11,67,0,0,81,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25055,4,0,3,11,68,0,0,81,-1,0,133375,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25056,4,0,3,11,69,0,0,81,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25057,4,0,3,11,70,0,0,81,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25058,4,0,3,2,57,0,0,81,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25059,4,0,3,2,58,0,0,81,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25060,4,0,3,2,59,0,0,81,-1,0,134123,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25061,4,0,3,2,60,0,0,81,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25062,4,0,3,2,61,0,0,81,-1,0,134094,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25063,4,0,3,2,62,0,0,81,-1,0,134139,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25064,4,0,3,2,63,0,0,81,-1,0,134075,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25065,4,0,3,2,64,0,0,81,-1,0,134089,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25066,4,0,3,2,65,0,0,81,-1,0,134075,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25067,4,0,3,2,66,0,0,81,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25068,4,0,3,2,67,0,0,81,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25069,4,0,3,2,68,0,0,81,-1,0,134136,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25070,4,0,3,2,69,0,0,81,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25071,4,0,3,2,70,0,0,81,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25072,4,6,1,14,57,4,0,82,-1,0,134953,9,0,85,0,0,0,0,0,0,2428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25073,4,6,1,14,58,4,0,82,-1,0,134953,9,0,85,0,0,0,0,0,0,2513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25074,4,6,1,14,59,4,0,82,-1,0,134948,9,0,85,0,0,0,0,0,0,2598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25075,4,6,1,14,60,4,0,82,-1,0,134950,9,0,85,0,0,0,0,0,0,2683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25076,4,6,1,14,61,4,0,82,-1,0,134951,9,0,85,0,0,0,0,0,0,2768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25077,4,6,1,14,62,4,0,82,-1,0,134948,9,0,85,0,0,0,0,0,0,2853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25078,4,6,1,14,63,4,0,82,-1,0,134956,9,0,85,0,0,0,0,0,0,2938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25079,4,6,1,14,64,4,0,82,-1,0,134951,9,0,85,0,0,0,0,0,0,3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25080,4,6,1,14,65,4,0,82,-1,0,134951,9,0,85,0,0,0,0,0,0,3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25081,4,6,1,14,66,4,0,82,-1,0,134951,9,0,85,0,0,0,0,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25082,4,6,1,14,67,4,0,82,-1,0,134963,9,0,85,0,0,0,0,0,0,3278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25083,4,6,1,14,68,4,0,82,-1,0,134955,9,0,85,0,0,0,0,0,0,3363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25084,4,6,1,14,69,4,0,82,-1,0,134959,9,0,85,0,0,0,0,0,0,3448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25085,4,6,1,14,70,4,0,82,-1,0,134964,9,0,85,0,0,0,0,0,0,3533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25086,4,0,7,23,57,7,0,83,-1,0,133938,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25087,4,0,3,23,58,7,0,83,-1,0,135471,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25088,4,0,2,23,59,7,0,83,-1,0,133729,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25089,4,0,2,23,60,7,0,83,-1,0,135473,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25090,4,0,3,23,61,7,0,83,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25091,4,0,2,23,62,7,0,83,-1,0,133716,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25092,4,0,3,23,63,7,0,83,-1,0,134120,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25093,4,0,3,23,64,7,0,83,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25094,4,0,3,23,65,7,0,83,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25095,4,0,3,23,66,7,0,83,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25096,4,0,3,23,67,7,0,83,-1,0,135464,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25097,4,0,3,23,68,7,0,83,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25098,4,0,3,23,69,7,0,83,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25099,4,0,3,23,70,7,0,83,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25100,2,15,1,13,57,3,0,86,-1,0,135311,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +25101,2,15,1,13,58,3,0,86,-1,0,135313,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +25102,2,15,1,13,59,3,0,86,-1,0,135643,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +25103,2,15,1,13,60,3,0,86,-1,0,135638,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +25104,2,15,1,13,61,3,0,86,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +25105,2,15,1,13,62,3,0,86,-1,0,135669,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +25106,2,15,1,13,63,3,0,86,-1,0,135672,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +25107,2,15,1,13,64,3,0,86,-1,0,135652,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +25108,2,15,1,13,65,3,0,86,-1,0,135313,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +25109,2,15,1,13,66,3,0,86,-1,0,135313,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +25110,2,15,1,13,67,3,0,86,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +25111,2,15,1,13,68,3,0,86,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +25112,2,15,1,13,69,3,0,86,-1,0,135658,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +25113,2,15,1,13,70,3,0,86,-1,0,135313,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +25114,2,4,2,13,57,3,0,87,-1,0,133483,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +25115,2,4,2,13,58,3,0,87,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +25116,2,4,2,13,59,3,0,87,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +25117,2,4,2,13,60,3,0,87,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +25118,2,4,2,13,61,3,0,87,-1,0,133490,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +25119,2,4,2,13,62,3,0,87,-1,0,133510,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +25120,2,4,2,13,63,3,0,87,-1,0,135233,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +25121,2,4,2,13,64,3,0,87,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +25122,2,4,2,13,65,3,0,87,-1,0,133515,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +25123,2,4,2,13,66,3,0,87,-1,0,133483,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +25124,2,4,2,13,67,3,0,87,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +25125,2,4,2,13,68,3,0,87,-1,0,133730,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +25126,2,4,2,13,69,3,0,87,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25127,2,4,2,13,70,3,0,87,-1,0,133038,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +25128,2,5,2,17,57,1,0,88,-1,0,133477,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25129,2,5,2,17,58,1,0,88,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25130,2,5,2,17,59,1,0,88,-1,0,133487,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25131,2,5,2,17,60,1,0,88,-1,0,133479,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25132,2,5,2,17,61,1,0,88,-1,0,133484,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25133,2,5,2,17,62,1,0,88,-1,0,133488,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25134,2,5,2,17,63,1,0,88,-1,0,133052,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25135,2,5,2,17,64,1,0,88,-1,0,133479,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25136,2,5,2,17,65,1,0,88,-1,0,133052,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25137,2,5,2,17,66,1,0,88,-1,0,133513,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25138,2,5,2,17,67,1,0,88,-1,0,133510,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25139,2,5,2,17,68,1,0,88,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25140,2,5,2,17,69,1,0,88,-1,0,133055,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25141,2,5,2,17,70,1,0,88,-1,0,133045,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25142,2,7,1,13,57,3,0,89,-1,0,135415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +25143,2,7,1,13,58,3,0,89,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +25144,2,7,1,13,59,3,0,89,-1,0,135413,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +25145,2,7,1,13,60,3,0,89,-1,0,135316,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +25146,2,7,1,13,61,3,0,89,-1,0,135412,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +25147,2,7,1,13,62,3,0,89,-1,0,135351,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +25148,2,7,1,13,63,3,0,89,-1,0,135412,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +25149,2,7,1,13,64,3,0,89,-1,0,135411,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +25150,2,7,1,13,65,3,0,89,-1,0,135325,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +25151,2,7,1,13,66,3,0,89,-1,0,135350,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +25152,2,7,1,13,67,3,0,89,-1,0,135334,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +25153,2,7,1,13,68,3,0,89,-1,0,135411,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +25154,2,7,1,13,69,3,0,89,-1,0,135369,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25155,2,7,1,13,70,3,0,89,-1,0,135280,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +25156,2,8,1,17,57,1,0,90,-1,0,135328,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25157,2,8,1,17,58,1,0,90,-1,0,135418,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25158,2,8,1,17,59,1,0,90,-1,0,135416,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25159,2,8,1,17,60,1,0,90,-1,0,135359,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25160,2,8,1,17,61,1,0,90,-1,0,135374,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25161,2,8,1,17,62,1,0,90,-1,0,135337,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25162,2,8,1,17,63,1,0,90,-1,0,135368,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25163,2,8,1,17,64,1,0,90,-1,0,135328,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25164,2,8,1,17,65,1,0,90,-1,0,135417,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25165,2,8,1,17,66,1,0,90,-1,0,135321,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25166,2,8,1,17,67,1,0,90,-1,0,135365,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25167,2,8,1,17,68,1,0,90,-1,0,135335,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25168,2,8,1,17,69,1,0,90,-1,0,135418,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25169,2,8,1,17,70,1,0,90,-1,0,135334,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25170,2,10,2,17,57,2,0,91,-1,0,135156,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25171,2,10,2,17,58,2,0,91,-1,0,135157,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25172,2,10,2,17,59,2,0,91,-1,0,135222,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25173,2,10,2,17,60,2,0,91,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25174,2,10,2,17,61,2,0,91,-1,0,135223,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25175,2,10,2,17,62,2,0,91,-1,0,135224,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25176,2,10,2,17,63,2,0,91,-1,0,135223,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25177,2,10,2,17,64,2,0,91,-1,0,135144,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25178,2,10,2,17,65,2,0,91,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25179,2,10,2,17,66,2,0,91,-1,0,135146,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25180,2,10,2,17,67,2,0,91,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25181,2,10,2,17,68,2,0,91,-1,0,135157,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25182,2,10,2,17,69,2,0,91,-1,0,135222,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25183,2,10,2,17,70,2,0,91,-1,0,135225,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25184,2,13,1,21,57,7,0,93,-1,0,136097,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +25185,2,13,1,22,58,7,0,93,-1,0,132965,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +25186,2,13,1,21,59,7,0,93,-1,0,134296,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +25187,2,13,1,22,60,7,0,93,-1,0,134296,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +25188,2,13,1,21,61,7,0,93,-1,0,134294,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +25189,2,13,1,22,62,7,0,93,-1,0,132942,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +25190,2,13,1,21,63,7,0,93,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +25191,2,13,1,22,64,7,0,93,-1,0,134294,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +25192,2,13,1,13,65,7,0,93,-1,0,134298,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +25193,2,13,1,13,66,7,0,93,-1,0,132964,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +25194,2,13,1,13,67,7,0,93,-1,0,133723,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +25195,2,13,1,13,68,7,0,93,-1,0,132942,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +25196,2,13,1,21,69,7,0,93,-1,0,132935,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25197,2,13,1,22,70,7,0,93,-1,0,132936,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +25198,2,0,1,13,57,3,0,92,-1,0,132394,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +25199,2,0,1,13,58,3,0,92,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +25200,2,0,1,13,59,3,0,92,-1,0,132393,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +25201,2,0,1,13,60,3,0,92,-1,0,132402,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +25202,2,0,1,13,61,3,0,92,-1,0,132433,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +25203,2,0,1,13,62,3,0,92,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +25204,2,0,1,13,63,3,0,92,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +25205,2,0,1,13,64,3,0,92,-1,0,132423,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +25206,2,0,1,13,65,3,0,92,-1,0,132425,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +25207,2,0,1,13,66,3,0,92,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +25208,2,0,1,13,67,3,0,92,-1,0,132433,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +25209,2,0,1,13,68,3,0,92,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +25210,2,0,1,13,69,3,0,92,-1,0,132415,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25211,2,0,1,13,70,3,0,92,-1,0,132397,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +25212,2,1,1,17,57,1,0,92,-1,0,132435,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25213,2,1,1,17,58,1,0,92,-1,0,132434,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25214,2,1,1,17,59,1,0,92,-1,0,132411,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25215,2,1,1,17,60,1,0,92,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25216,2,1,1,17,61,1,0,92,-1,0,132435,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25217,2,1,1,17,62,1,0,92,-1,0,132434,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25218,2,1,1,17,63,1,0,92,-1,0,132403,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25219,2,1,1,17,64,1,0,92,-1,0,132400,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25220,2,1,1,17,65,1,0,92,-1,0,132436,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25221,2,1,1,17,66,1,0,92,-1,0,132435,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25222,2,1,1,17,67,1,0,92,-1,0,132415,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25223,2,1,1,17,68,1,0,92,-1,0,132402,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25224,2,1,1,17,69,1,0,92,-1,0,132434,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25225,2,1,1,17,70,1,0,92,-1,0,132393,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25226,2,6,1,17,57,1,0,94,-1,0,135576,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25227,2,6,1,17,58,1,0,94,-1,0,135591,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25228,2,6,1,17,59,1,0,94,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25229,2,6,1,17,60,1,0,94,-1,0,135354,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25230,2,6,1,17,61,1,0,94,-1,0,135314,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25231,2,6,1,17,62,1,0,94,-1,0,135314,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25232,2,6,1,17,63,1,0,94,-1,0,135131,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25233,2,6,1,17,64,1,0,94,-1,0,135646,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25234,2,6,1,17,65,1,0,94,-1,0,135652,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25235,2,6,1,17,66,1,0,94,-1,0,135314,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25236,2,6,1,17,67,1,0,94,-1,0,135369,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25237,2,6,1,17,68,1,0,94,-1,0,135127,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25238,2,6,1,17,69,1,0,94,-1,0,135124,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25239,2,6,1,17,70,1,0,94,-1,0,135369,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25240,2,2,2,15,57,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,156,0,0,0,0 +25241,2,2,2,15,58,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +25242,2,2,2,15,59,0,0,95,-1,0,135503,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +25243,2,2,2,15,60,0,0,95,-1,0,135503,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +25244,2,2,2,15,61,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,171,0,0,0,0 +25245,2,2,2,15,62,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,173,0,0,0,0 +25246,2,2,2,15,63,0,0,95,-1,0,135504,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,179,0,0,0,0 +25247,2,2,2,15,64,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +25248,2,2,2,15,65,0,0,95,-1,0,135504,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +25249,2,2,2,15,66,0,0,95,-1,0,135493,13,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,195,0,0,0,0 +25250,2,2,2,15,67,0,0,95,-1,0,135503,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,200,0,0,0,0 +25251,2,2,2,15,68,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,206,0,0,0,0 +25252,2,2,2,15,69,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25253,2,2,2,15,70,0,0,95,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25254,2,18,2,26,57,0,0,95,-1,0,135530,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,156,0,0,0,0 +25255,2,18,2,26,58,0,0,95,-1,0,135542,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +25256,2,18,2,26,59,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +25257,2,18,2,26,60,0,0,95,-1,0,135542,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +25258,2,18,2,26,61,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,171,0,0,0,0 +25259,2,18,2,26,62,0,0,95,-1,0,135543,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,173,0,0,0,0 +25260,2,18,2,26,63,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,179,0,0,0,0 +25261,2,18,2,26,64,0,0,95,-1,0,135543,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +25262,2,18,2,26,65,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +25263,2,18,2,26,66,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,195,0,0,0,0 +25264,2,18,2,26,67,0,0,95,-1,0,135530,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,200,0,0,0,0 +25265,2,18,2,26,68,0,0,95,-1,0,135542,13,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,206,0,0,0,0 +25266,2,18,2,26,69,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25267,2,18,2,26,70,0,0,95,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25268,2,3,1,26,57,0,0,95,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,156,0,0,0,0 +25269,2,3,1,26,58,0,0,95,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,160,0,0,0,0 +25270,2,3,1,26,59,0,0,95,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +25271,2,3,1,26,60,0,0,95,-1,0,135615,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +25272,2,3,1,26,61,0,0,95,-1,0,135615,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,171,0,0,0,0 +25273,2,3,1,26,62,0,0,95,-1,0,135610,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,173,0,0,0,0 +25274,2,3,1,26,63,0,0,95,-1,0,134537,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,179,0,0,0,0 +25275,2,3,1,26,64,0,0,95,-1,0,134538,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +25276,2,3,1,26,65,0,0,95,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +25277,2,3,1,26,66,0,0,95,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,195,0,0,0,0 +25278,2,3,1,26,67,0,0,95,-1,0,135612,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,200,0,0,0,0 +25279,2,3,1,26,68,0,0,95,-1,0,135613,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,206,0,0,0,0 +25280,2,3,1,26,69,0,0,95,-1,0,135617,12,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25281,2,3,1,26,70,0,0,95,-1,0,135616,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +25282,2,19,2,26,57,0,0,96,-1,0,135465,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,163,0,0,0,0 +25283,2,19,2,26,58,0,0,96,-1,0,135469,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,169,0,0,0,0 +25284,2,19,2,26,59,0,0,96,-1,0,135468,12,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,175,0,0,0,0 +25285,2,19,2,26,60,0,0,96,-1,0,135465,12,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +25286,2,19,2,26,61,0,0,96,-1,0,133749,12,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +25287,2,19,2,26,62,0,0,96,-1,0,135475,12,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,193,0,0,0,0 +25288,2,19,2,26,63,0,0,96,-1,0,135476,12,0,55,0,2,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,203,0,0,0,0 +25289,2,19,2,26,64,0,0,96,-1,0,135470,12,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25290,2,19,2,26,65,0,0,96,-1,0,135469,12,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,219,0,0,0,0 +25291,2,19,2,26,66,0,0,96,-1,0,134123,12,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,226,0,0,0,0 +25292,2,19,2,26,67,0,0,96,-1,0,135469,8,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,234,0,0,0,0 +25293,2,19,2,26,68,0,0,96,-1,0,135475,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,242,0,0,0,0 +25294,2,19,2,26,69,0,0,96,-1,0,135468,12,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,249,0,0,0,0 +25295,2,19,2,26,70,0,0,96,-1,0,135477,12,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,255,0,0,0,0 +25296,2,15,1,21,57,3,0,84,-1,0,135410,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +25297,2,15,1,21,58,3,0,84,-1,0,135311,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +25298,2,15,1,21,59,3,0,84,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +25299,2,15,1,21,60,3,0,84,-1,0,135667,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +25300,2,15,1,21,61,3,0,84,-1,0,135667,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +25301,2,15,1,21,62,3,0,84,-1,0,135333,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +25302,2,15,1,21,63,3,0,84,-1,0,135661,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +25303,2,15,1,21,64,3,0,84,-1,0,135642,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +25304,2,15,1,21,65,3,0,84,-1,0,135640,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +25305,2,15,1,21,66,3,0,84,-1,0,135643,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +25306,2,15,1,21,67,3,0,84,-1,0,135275,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +25307,2,15,1,21,68,3,0,84,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +25308,2,15,1,21,69,3,0,84,-1,0,135661,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +25309,2,15,1,21,70,3,0,84,-1,0,135660,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +25310,2,4,2,21,57,3,0,84,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +25311,2,4,2,21,58,3,0,84,-1,0,133515,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +25312,2,4,2,21,59,3,0,84,-1,0,134336,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +25313,2,4,2,21,60,3,0,84,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +25314,2,4,2,21,61,3,0,84,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +25315,2,4,2,21,62,3,0,84,-1,0,133483,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +25316,2,4,2,21,63,3,0,84,-1,0,133054,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +25317,2,4,2,21,64,3,0,84,-1,0,133514,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +25318,2,4,2,21,65,3,0,84,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +25319,2,4,2,21,66,3,0,84,-1,0,133486,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +25320,2,4,2,21,67,3,0,84,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +25321,2,4,2,21,68,3,0,84,-1,0,133491,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +25322,2,4,2,21,69,3,0,84,-1,0,133482,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +25323,2,4,2,21,70,3,0,84,-1,0,133527,12,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +25324,2,10,2,17,57,2,0,85,-1,0,135175,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +25325,2,10,2,17,58,2,0,85,-1,0,135163,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +25326,2,10,2,17,59,2,0,85,-1,0,135154,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +25327,2,10,2,17,60,2,0,85,-1,0,135175,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +25328,2,10,2,17,61,2,0,85,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25329,2,10,2,17,62,2,0,85,-1,0,135168,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25330,2,10,2,17,63,2,0,85,-1,0,135464,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +25331,2,10,2,17,64,2,0,85,-1,0,135176,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +25332,2,10,2,17,65,2,0,85,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +25333,2,10,2,17,66,2,0,85,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +25334,2,10,2,17,67,2,0,85,-1,0,135157,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +25335,2,10,2,17,68,2,0,85,-1,0,135138,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +25336,2,10,2,17,69,2,0,85,-1,0,135167,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +25337,2,10,2,17,70,2,0,85,-1,0,135185,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +25338,4,1,7,7,61,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25339,4,1,7,3,61,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25340,4,1,7,5,61,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25341,4,1,7,6,67,0,0,0,-1,0,132491,7,0,25,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25342,4,1,7,8,67,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25343,4,1,7,9,67,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25344,4,1,7,10,67,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25345,4,1,7,1,67,0,0,0,-1,0,133153,7,0,45,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25346,4,1,7,7,67,0,0,0,-1,0,134586,7,0,55,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25347,4,1,7,3,67,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25348,4,1,7,5,67,0,0,0,-1,0,135008,7,0,70,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25349,4,2,8,5,61,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25350,4,2,8,6,61,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25351,4,2,8,8,61,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25352,4,2,8,9,61,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25353,4,2,8,10,61,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25354,4,2,8,1,61,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25355,4,2,8,7,61,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25356,4,2,8,3,61,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25357,4,2,8,5,67,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25358,4,2,8,6,67,0,0,0,-1,0,132511,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25359,4,2,8,8,67,0,0,0,-1,0,132539,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25360,4,2,8,9,67,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25361,4,2,8,10,67,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25362,4,2,8,1,67,0,0,0,-1,0,133101,7,0,50,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25363,4,2,8,7,67,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25364,4,2,8,3,67,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25365,4,3,5,5,61,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25366,4,3,5,6,61,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25367,4,3,5,8,61,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25368,4,3,5,9,61,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25369,4,3,5,1,61,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25370,4,3,5,10,61,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25371,4,3,5,7,61,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25372,4,3,5,3,61,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25373,4,3,5,5,67,0,0,0,-1,0,132627,10,0,100,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25374,4,3,5,6,67,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25375,4,3,5,8,67,0,0,0,-1,0,132535,10,0,50,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25376,4,3,5,9,67,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25377,4,3,5,1,67,0,0,0,-1,0,132767,10,0,60,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25378,4,3,5,10,67,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25379,4,3,5,7,67,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25380,4,3,5,3,67,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25381,4,4,6,6,61,0,0,0,-1,0,132505,11,0,40,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25382,4,4,6,8,61,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25383,4,4,6,9,61,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25384,4,4,6,5,61,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25385,4,4,6,10,61,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25386,4,4,5,1,61,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25387,4,4,6,7,61,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25388,4,4,6,3,61,0,0,0,-1,0,135044,11,0,70,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25389,4,4,6,6,67,0,0,0,-1,0,132505,11,0,40,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25390,4,4,6,8,67,0,0,0,-1,0,132589,11,0,55,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25391,4,4,6,9,67,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25392,4,4,6,5,67,0,0,0,-1,0,132739,11,0,115,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25393,4,4,6,10,67,0,0,0,-1,0,132962,11,0,40,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25394,4,4,5,1,67,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25395,4,4,6,7,67,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25396,4,4,6,3,67,0,0,0,-1,0,135044,11,0,70,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25397,2,0,1,21,64,3,0,0,-1,0,135421,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,59,0,0,0,0 +25398,2,1,1,17,64,1,0,0,-1,0,135424,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,93,0,0,0,0 +25399,2,7,1,21,64,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,68,0,0,0,0 +25400,2,8,1,17,64,1,0,0,-1,0,135349,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,108,0,0,0,0 +25401,2,4,2,21,64,3,0,0,-1,0,133476,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,71,0,0,0,0 +25402,2,5,2,17,64,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,134,0,0,0,0 +25403,2,15,1,13,64,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,50,0,0,0,0 +25404,2,10,2,17,64,2,0,0,-1,0,135155,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,115,0,0,0,0 +25405,2,3,1,26,64,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,65,0,0,0,0 +25406,2,2,2,15,64,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,90,0,0,0,0 +25407,4,6,1,14,64,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25408,15,0,3,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25409,15,0,3,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25410,15,0,3,0,0,0,0,0,-1,0,134060,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25411,15,0,3,0,0,0,0,0,-1,0,134060,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25412,15,0,3,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25413,15,0,3,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25414,15,0,3,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25415,15,0,3,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25416,12,0,0,0,0,0,0,0,-1,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25417,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25418,15,0,3,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25419,15,0,0,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25420,15,0,3,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25421,15,0,3,0,0,0,0,0,-1,0,134294,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25422,15,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25423,15,0,0,0,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25424,15,0,0,0,0,0,0,0,-1,0,133468,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25425,15,0,3,0,0,0,0,0,-1,0,132917,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25426,15,0,3,0,0,0,0,0,-1,0,132917,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25427,15,0,3,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25428,15,0,3,0,0,0,0,0,-1,0,136063,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25429,15,0,3,0,0,0,0,0,-1,0,134314,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25430,15,0,3,0,0,0,0,0,-1,0,134314,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25431,15,0,3,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25432,15,0,3,0,0,0,0,0,-1,0,134304,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25433,12,0,0,0,0,0,0,0,-1,0,133306,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25434,15,0,3,0,0,0,0,0,-1,0,134967,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25435,15,0,3,0,0,0,0,0,-1,0,134967,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25436,15,0,3,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25437,15,0,3,0,0,0,0,0,-1,0,133571,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25438,4,0,3,2,13,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25439,4,0,1,11,13,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25440,15,0,3,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25441,15,0,3,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25442,15,0,4,0,0,0,0,0,-1,0,132184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25443,15,0,3,0,0,0,0,0,-1,0,134172,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25444,15,0,3,0,0,0,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25445,15,0,3,0,0,0,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25446,15,0,3,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25447,15,0,3,0,0,0,0,0,-1,0,133731,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25448,12,0,0,0,0,0,0,0,-1,0,135668,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25449,12,0,0,0,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25450,15,0,3,0,0,0,0,0,-1,0,134186,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25451,15,0,3,0,0,0,0,0,-1,0,134186,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25452,15,0,3,0,0,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25453,15,0,3,0,0,0,0,0,-1,0,134530,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25454,15,0,3,0,0,0,0,0,-1,0,134125,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25455,15,0,3,0,0,0,0,0,-1,0,134125,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25456,15,0,3,0,0,0,0,0,-1,0,136153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25457,15,0,3,0,0,0,0,0,-1,0,136153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25458,15,0,0,0,0,0,0,0,-1,0,132484,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25459,12,0,0,0,62,0,0,0,-1,0,135592,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25460,12,0,0,0,0,0,0,0,-1,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25461,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25462,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25463,12,0,0,0,0,0,0,0,-1,0,133721,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25464,2,6,1,17,0,1,0,0,-1,0,135133,8,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,69,0,0,0,0 +25465,0,0,0,0,0,0,0,0,-1,0,134911,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25466,15,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25467,15,0,0,0,0,0,0,0,-1,0,133678,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25468,15,0,0,0,0,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25469,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25470,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25471,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25472,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25473,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25474,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25475,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25476,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25477,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25478,4,4,6,10,0,0,0,0,-1,0,132965,11,0,40,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25479,4,3,5,8,0,0,0,0,-1,0,132549,10,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25480,4,1,7,6,0,0,0,0,-1,0,132499,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25481,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25482,4,3,5,8,0,0,0,0,-1,0,132548,10,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25483,4,1,7,6,0,0,0,0,-1,0,132496,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25484,4,0,7,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25485,4,0,6,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25486,4,2,8,9,0,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25487,4,0,3,2,0,0,0,0,-1,0,133309,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25488,4,0,3,11,0,0,0,0,-1,0,133359,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25489,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25490,12,0,0,0,0,0,0,0,-1,0,134245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25491,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25492,2,4,2,21,0,3,0,0,-1,0,133043,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,159,0,0,0,0 +25493,2,1,1,17,0,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,260,0,0,0,0 +25494,2,10,2,17,0,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,260,0,0,0,0 +25495,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +25496,2,2,2,15,0,0,0,0,-1,0,135494,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,177,0,0,0,0 +25497,15,0,1,0,0,0,0,0,-1,0,135427,8,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,0,0 +25498,0,0,0,0,0,0,0,0,-1,0,134450,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25499,4,0,0,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25500,4,0,3,2,0,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25501,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25502,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25503,4,1,7,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25504,4,2,8,6,0,0,0,0,-1,0,132501,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25505,4,0,3,11,0,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25506,4,3,5,1,0,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25507,4,2,8,7,0,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25508,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25509,12,0,0,0,0,0,0,0,-1,0,134245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25510,4,1,7,20,0,0,0,0,-1,0,132680,7,0,70,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25511,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25512,4,3,5,5,0,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25513,4,2,8,1,0,0,0,0,-1,0,133693,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25514,4,3,5,3,0,0,0,0,-1,0,135060,10,0,60,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25515,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25516,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25517,4,0,3,2,0,0,0,0,-1,0,133294,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25518,4,2,8,7,0,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25519,2,4,2,13,0,3,0,0,-1,0,133047,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +25520,2,6,1,17,1,1,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25521,0,8,0,0,60,0,0,0,-1,0,134423,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25522,4,4,6,3,0,0,0,0,-1,0,135047,11,0,70,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25523,4,3,5,10,0,0,0,0,-1,0,132946,11,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25524,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25525,4,1,7,3,0,0,0,0,-1,0,135055,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25526,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25527,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25528,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25529,15,5,0,0,70,0,0,0,-1,0,132239,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25530,4,4,6,1,0,0,0,0,-1,0,133078,11,0,70,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25531,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25532,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25533,15,5,0,0,70,0,0,0,-1,0,132268,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25534,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25535,15,0,0,0,0,0,0,0,-1,0,134539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25536,2,4,2,21,0,3,0,0,-1,0,133039,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +25537,2,1,1,17,0,1,0,0,-1,0,132393,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,265,0,0,0,0 +25538,2,13,1,13,0,7,0,0,-1,0,132945,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,184,0,0,0,0 +25539,0,2,0,0,60,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25540,4,1,7,16,0,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25541,4,0,5,11,0,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25542,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25543,2,15,1,21,0,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,109,0,0,0,0 +25544,2,3,1,26,0,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +25545,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +25546,4,4,6,5,0,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25547,4,2,8,3,0,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25548,0,1,0,0,40,0,0,0,-1,0,134531,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25549,4,0,0,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25550,0,8,0,0,40,0,0,0,-1,0,134528,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25551,4,3,5,7,0,0,0,0,-1,0,134657,10,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25552,15,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25553,2,10,2,17,0,2,0,0,-1,0,135148,13,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,0,0,0 +25554,12,0,0,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25555,15,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25556,4,3,5,5,0,0,0,0,-1,0,132628,10,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25557,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25558,4,1,7,1,0,0,0,0,-1,0,133136,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25559,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25560,4,3,5,3,0,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25561,4,4,0,8,0,0,0,0,-1,0,132547,11,0,55,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25562,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25563,4,0,3,2,0,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25564,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25565,4,2,8,3,0,0,0,0,-1,0,135046,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25566,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25567,4,3,5,6,0,0,0,0,-1,0,132505,10,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25568,4,3,5,7,0,0,0,0,-1,0,134667,10,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25569,4,4,6,5,0,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25570,4,2,8,1,0,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25571,4,2,8,1,0,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25572,4,3,5,7,0,0,0,0,-1,0,134667,10,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25573,4,4,6,5,0,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25574,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25575,4,3,5,1,0,0,0,0,-1,0,133119,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25576,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25577,4,1,7,7,0,0,0,0,-1,0,134590,7,0,55,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25578,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25579,4,3,5,1,0,0,0,0,-1,0,133119,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25580,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25581,4,3,5,10,0,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25582,4,2,8,6,0,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25583,4,2,8,6,0,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25584,4,3,5,10,0,0,0,0,-1,0,132960,10,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25585,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25586,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25587,2,14,2,13,1,2,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +25588,2,5,2,17,1,0,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25589,4,4,6,1,0,0,0,0,-1,0,133122,11,0,70,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25590,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25591,4,2,8,10,0,0,0,0,-1,0,132958,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25592,4,3,5,9,0,0,0,0,-1,0,132617,10,0,35,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25593,4,4,6,8,0,0,0,0,-1,0,132590,11,0,55,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25594,4,3,5,8,0,0,0,0,-1,0,132587,10,0,50,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25595,4,1,7,20,0,0,0,0,-1,0,132642,7,0,70,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25596,15,0,0,0,70,0,0,0,-1,0,134478,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25597,4,4,6,6,0,0,0,0,-1,0,132504,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25598,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25599,4,2,8,9,0,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25600,4,2,8,9,0,0,0,0,-1,0,132608,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25601,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25602,4,4,6,6,0,0,0,0,-1,0,132504,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25603,2,6,1,17,0,2,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25604,15,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25605,4,2,8,6,0,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25606,4,0,1,11,0,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25607,4,0,1,11,0,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25608,2,6,1,17,0,2,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +25609,4,2,8,6,0,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25610,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25611,4,1,7,10,0,0,0,0,-1,0,132966,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25612,4,3,5,5,0,0,0,0,-1,0,132743,10,0,100,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25613,4,1,7,10,0,0,0,0,-1,0,132966,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25614,4,3,5,5,0,0,0,0,-1,0,132743,10,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25615,4,4,6,8,0,0,0,0,-1,0,132588,11,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25616,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25617,4,2,8,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25618,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25619,4,0,8,12,0,0,0,0,-1,0,133316,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25620,4,0,8,12,0,0,0,0,-1,0,133316,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25621,4,1,7,16,0,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25622,2,10,2,17,0,2,0,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0,303,0,0,0,0 +25623,4,4,6,9,0,0,0,0,-1,0,132617,9,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25624,4,6,1,14,0,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25625,2,10,2,17,0,2,0,0,-1,0,135140,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0,303,0,0,0,0 +25626,4,4,6,9,0,0,0,0,-1,0,132617,9,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25627,4,6,1,14,0,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25628,4,0,8,12,0,0,0,0,-1,0,133437,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25629,2,19,2,26,0,0,0,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25630,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25631,4,1,7,8,0,0,0,0,-1,0,132543,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25632,2,19,2,26,0,0,0,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +25633,4,0,8,12,0,0,0,0,-1,0,133437,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25634,4,0,8,12,0,0,0,0,-1,0,133439,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25635,12,0,0,0,0,0,0,0,-1,0,134564,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25636,4,1,7,16,0,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25637,4,1,7,6,0,0,0,0,-1,0,132521,7,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25638,12,0,0,0,0,0,0,0,-1,0,134125,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25639,2,3,1,26,0,0,0,0,-1,0,135614,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,193,0,0,0,0 +25640,2,19,2,26,0,0,0,0,-1,0,135467,12,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,265,0,0,0,0 +25641,15,0,1,0,0,0,0,0,-1,0,135424,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25642,12,0,0,0,0,0,0,0,-1,0,136210,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25643,4,8,2,28,0,0,0,0,-1,0,134914,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25644,4,7,2,28,0,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25645,4,9,2,28,0,0,0,0,-1,0,134918,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25646,2,4,2,13,1,3,0,0,-1,0,133942,12,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +25647,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25648,12,0,0,0,0,0,0,0,-1,0,134245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25649,7,6,8,0,0,0,0,0,-1,0,134258,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25650,0,6,8,0,50,0,0,0,-1,0,133618,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25651,0,6,8,0,55,0,0,0,-1,0,133620,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25652,0,6,8,0,55,0,0,0,-1,0,133616,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25653,4,0,4,12,69,0,0,0,-1,0,133803,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25654,4,3,5,10,57,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25655,4,3,5,8,61,0,0,0,-1,0,132551,10,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25656,4,3,5,7,63,0,0,0,-1,0,134660,10,0,75,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25657,4,3,5,5,66,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25658,15,0,0,0,0,0,0,0,-1,0,133680,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25659,4,3,5,8,66,0,0,0,-1,0,132544,10,0,50,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25660,4,3,5,5,64,0,0,0,-1,0,132638,10,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25661,4,3,5,10,61,0,0,0,-1,0,132938,10,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25662,4,3,5,7,57,0,0,0,-1,0,134659,10,0,75,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25663,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25664,15,0,0,0,60,0,0,0,-1,0,133706,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25665,15,0,1,0,55,0,0,0,-1,0,135424,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25666,12,0,0,0,0,0,0,0,-1,0,134151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25667,4,8,2,28,64,0,0,0,-1,0,132117,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25668,4,2,5,8,63,0,0,0,-1,0,132544,7,0,45,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25669,4,2,5,10,57,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25670,4,2,5,7,62,0,0,0,-1,0,134632,7,0,65,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25671,4,2,8,5,65,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25672,12,0,0,0,0,0,0,0,-1,0,136128,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25673,4,2,5,8,57,0,0,0,-1,0,132544,7,0,45,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25674,4,2,5,10,61,0,0,0,-1,0,132938,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25675,4,2,5,7,63,0,0,0,-1,0,134632,7,0,65,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25676,4,2,8,5,65,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25677,12,0,0,0,0,0,0,0,-1,0,133999,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25678,12,0,0,0,0,0,0,0,-1,0,134124,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25679,0,8,8,0,0,0,0,0,-1,0,133611,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25680,4,2,5,1,69,0,0,0,-1,0,133152,7,0,60,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25681,4,3,5,1,69,0,0,0,-1,0,133153,7,0,70,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25682,4,2,5,1,69,0,0,0,-1,0,133152,7,0,60,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25683,4,3,5,1,69,0,0,0,-1,0,133152,7,0,70,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25684,12,0,0,0,0,0,0,0,-1,0,133301,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25685,4,2,5,10,67,0,0,0,-1,0,132956,7,0,35,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25686,4,2,8,8,69,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25687,4,2,8,7,69,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25688,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25689,4,2,8,5,70,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25690,4,2,8,7,70,0,0,0,-1,0,134592,7,0,75,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25691,4,2,8,8,69,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25692,4,3,8,7,67,0,0,0,-1,0,134688,10,0,90,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25693,4,3,8,8,69,0,0,0,-1,0,132549,10,0,60,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25694,4,3,5,6,67,0,0,0,-1,0,132504,10,0,40,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25695,4,3,5,6,69,0,0,0,-1,0,132502,7,0,40,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25696,4,3,8,5,70,0,0,0,-1,0,132635,7,0,120,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25697,4,3,8,9,70,0,0,0,-1,0,132613,7,0,40,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25698,2,10,2,17,0,2,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +25699,7,6,8,0,0,0,0,0,-1,0,134261,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25700,7,6,8,0,0,0,0,0,-1,0,134306,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25701,4,4,6,5,0,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25702,4,3,5,7,0,0,0,0,-1,0,134584,10,0,90,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25703,15,0,8,0,0,0,0,0,-1,0,134350,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25705,12,0,0,0,62,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25706,12,0,0,0,62,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25707,7,6,8,0,0,0,0,0,-1,0,134262,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25708,7,6,8,0,0,0,0,0,-1,0,134263,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25710,4,2,8,1,0,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25711,4,1,7,7,0,0,0,0,-1,0,134594,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25712,4,1,7,16,0,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25713,4,0,0,11,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25714,4,0,0,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25715,4,4,6,3,0,0,0,0,-1,0,135033,11,0,80,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25716,4,3,5,10,0,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25717,4,2,8,8,0,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25718,4,1,7,3,0,0,0,0,-1,0,135045,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25719,12,0,0,0,0,0,0,0,-1,0,132919,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25720,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25721,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25722,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25723,15,0,0,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25724,15,0,0,0,0,0,0,0,-1,0,133678,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25725,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25726,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25727,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25728,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25729,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25730,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25731,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25732,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25733,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25734,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25735,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25736,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25737,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25738,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25739,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25740,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25741,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25742,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25743,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25744,12,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25745,12,0,0,0,0,0,0,0,-1,0,134001,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25746,12,0,0,0,0,0,0,0,-1,0,132766,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25747,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25748,12,0,0,0,0,0,0,0,-1,0,134330,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25749,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25750,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25751,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25752,12,0,0,0,62,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25753,12,0,0,0,62,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25754,12,0,0,0,0,0,0,0,-1,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25755,12,0,0,0,0,0,0,0,-1,0,134330,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25756,12,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25757,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25758,2,6,1,17,1,2,0,0,-1,0,135133,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25759,2,4,2,21,0,3,0,0,-1,0,133050,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,171,0,0,0,0 +25760,2,10,2,17,0,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,206,0,0,0,0 +25761,2,10,2,17,0,2,0,0,-1,0,135171,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,323,0,0,0,0 +25762,2,1,1,17,0,1,0,0,-1,0,132437,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0,333,0,0,0,0 +25763,2,15,1,13,0,3,0,0,-1,0,135641,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,139,0,0,0,0 +25764,2,13,1,13,0,7,0,0,-1,0,132938,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,204,0,0,0,0 +25765,12,0,0,0,0,0,0,0,-1,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25766,15,0,0,0,0,0,0,0,-1,0,134327,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25767,12,0,0,0,0,0,0,0,-1,0,133784,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25768,12,0,0,0,0,0,0,0,-1,0,133784,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25769,12,0,0,0,0,0,0,0,-1,0,133784,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25770,12,0,0,0,0,0,0,0,-1,0,134245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25771,12,0,0,0,0,0,0,0,-1,0,134245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25772,2,7,1,13,0,3,0,0,-1,0,135321,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,165,0,0,0,0 +25773,2,4,2,13,0,3,0,0,-1,0,133484,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,126,0,0,0,0 +25774,2,15,1,21,0,3,0,0,-1,0,135657,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,109,0,0,0,0 +25775,4,0,0,11,0,0,0,0,-1,0,133344,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25776,4,0,3,2,0,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25777,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25778,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25779,4,0,8,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25780,4,1,6,16,0,0,0,0,-1,0,133770,11,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25781,4,4,6,5,0,0,0,0,-1,0,132646,11,0,115,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25782,4,3,5,7,0,0,0,0,-1,0,134656,10,0,75,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25783,4,1,7,1,0,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25784,4,0,3,2,0,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25785,4,0,3,11,0,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25786,4,0,0,12,0,0,0,0,-1,0,134139,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25787,4,0,3,12,0,0,0,0,-1,0,133438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25788,4,4,6,10,0,0,0,0,-1,0,132946,11,0,45,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25789,4,3,5,6,0,0,0,0,-1,0,132524,10,0,40,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25790,4,2,8,3,0,0,0,0,-1,0,135044,7,0,60,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25791,4,2,8,10,0,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25792,4,1,7,8,0,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25793,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25794,4,3,5,6,0,0,0,0,-1,0,132524,10,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25795,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25796,4,2,8,3,0,0,0,0,-1,0,135044,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25797,4,4,6,10,0,0,0,0,-1,0,132946,11,0,40,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25798,4,0,4,12,70,0,0,0,-1,0,135441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25799,2,0,0,13,70,1,0,0,-1,0,132401,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,271,0,0,0,0 +25800,4,1,7,7,70,0,0,0,-1,0,134588,7,0,75,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25801,4,0,4,12,70,0,0,0,-1,0,135444,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25802,12,0,3,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25803,4,0,5,2,0,0,0,0,-1,0,133308,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25804,4,0,3,11,0,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25805,4,1,7,16,0,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25806,2,19,2,26,0,0,0,0,-1,0,135467,12,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,284,0,0,0,0 +25807,12,0,0,0,0,0,0,0,-1,0,134322,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25808,2,19,3,26,0,0,0,0,-1,0,135467,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,284,0,0,0,0 +25809,4,0,5,2,0,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25810,4,1,7,16,0,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25811,4,0,3,11,0,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25812,12,0,0,0,0,0,0,0,-1,0,134366,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25813,15,0,3,0,0,0,0,0,-1,0,134533,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25814,12,0,0,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25815,12,0,0,0,0,0,0,0,-1,0,136168,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25816,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25817,12,0,0,0,0,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25818,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25819,4,4,6,5,0,0,0,0,-1,0,132629,11,0,135,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25820,4,3,5,1,0,0,0,0,-1,0,132767,10,0,70,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25821,4,2,8,7,0,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25822,4,1,7,5,0,0,0,0,-1,0,132659,7,0,80,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25823,2,0,1,13,60,3,0,0,-1,0,132402,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +25824,4,0,0,11,60,0,0,0,-1,0,133359,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25825,2,7,1,13,60,3,0,0,-1,0,135321,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,145,0,0,0,0 +25826,4,0,0,11,60,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25827,4,1,7,16,64,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25828,4,6,1,14,62,4,0,0,-1,0,134967,9,0,100,0,0,0,0,0,0,3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25829,4,0,4,12,70,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25830,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25831,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25832,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25833,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25834,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25835,2,10,2,17,62,2,0,0,-1,0,135168,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,199,0,0,0,0 +25836,2,4,2,21,62,3,0,0,-1,0,133486,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,180,0,0,0,0 +25837,12,0,0,0,0,0,0,0,-1,0,134367,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25838,4,2,8,5,62,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25839,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25840,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25841,12,0,0,0,0,0,0,0,-1,0,133869,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25842,12,0,0,0,0,0,0,0,-1,0,133719,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25843,7,12,1,0,0,5,0,0,-1,0,134926,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25844,7,12,1,0,0,5,0,0,-1,0,134921,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25845,7,12,1,0,0,5,0,0,-1,0,134925,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25846,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25847,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25848,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25849,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25850,12,0,0,0,0,0,0,0,-1,0,133866,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25852,12,0,0,0,0,0,0,0,-1,0,132925,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25853,15,0,0,0,0,0,0,0,-1,0,133713,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25854,4,1,7,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25855,4,1,7,1,70,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25856,4,1,7,20,70,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25857,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25858,4,1,7,7,70,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25859,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25860,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25861,2,16,1,25,1,0,0,0,-1,0,132410,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +25862,12,0,0,0,0,0,0,0,-1,0,133996,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25863,12,0,0,0,0,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25864,12,0,0,0,0,0,0,0,-1,0,134185,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25865,12,0,0,0,0,0,0,0,-1,0,134196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25866,15,0,0,0,0,0,0,0,-1,0,134331,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25867,3,6,0,0,0,0,0,0,-1,0,134097,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25868,3,6,0,0,0,0,0,0,-1,0,134098,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25869,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25870,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25871,2,16,0,25,0,7,0,0,-1,0,135429,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +25872,2,16,1,25,3,0,0,0,-1,0,135641,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0 +25873,2,16,1,25,11,0,0,0,-1,0,135425,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +25874,2,16,0,25,15,0,0,0,-1,0,135425,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,32,0,0,0,0 +25875,2,16,1,25,22,0,0,0,-1,0,135423,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +25876,2,16,1,25,35,0,0,0,-1,0,135424,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +25877,2,16,0,25,60,0,0,0,-1,0,135427,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +25878,2,16,1,25,0,0,0,0,-1,0,135427,8,0,200,0,0,5,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,65,7,0,0,0 +25879,2,7,1,13,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +25880,0,0,0,0,0,0,0,0,-1,0,134447,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25881,0,0,0,0,0,0,0,0,-1,0,134451,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25882,0,0,0,0,0,0,0,0,-1,0,134448,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25883,0,0,0,0,0,0,0,0,-1,0,134452,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25884,0,0,0,0,0,0,0,0,-1,0,134449,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25886,0,8,0,0,0,0,0,0,-1,0,134284,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25887,9,3,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25888,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25889,12,0,0,0,0,0,0,0,-1,0,134714,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25890,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25891,12,0,0,0,0,0,0,0,-1,0,133891,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25893,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25894,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25895,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25896,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25897,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25898,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25899,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25900,9,0,0,0,56,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25901,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25902,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25903,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25904,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25905,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25906,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25907,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25908,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25909,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25910,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25911,12,0,0,0,0,0,0,0,-1,0,135436,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25912,12,0,0,0,0,0,0,0,-1,0,134518,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25913,4,0,3,11,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25914,4,0,3,2,0,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25915,2,7,1,21,0,3,0,0,-1,0,135328,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +25916,2,0,1,13,0,3,0,0,-1,0,132394,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +25917,2,10,2,17,0,2,0,0,-1,0,135148,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,242,0,0,0,0 +25918,2,15,1,13,0,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,84,0,0,0,0 +25919,4,0,3,2,0,0,0,0,-1,0,133303,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25920,2,7,1,21,0,3,0,0,-1,0,135412,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +25921,4,0,3,11,0,0,0,0,-1,0,133371,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25922,4,4,6,6,0,0,0,0,-1,0,132521,11,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25923,4,3,5,3,0,0,0,0,-1,0,135052,10,0,60,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25924,4,2,8,8,0,0,0,0,-1,0,132538,7,0,45,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25925,4,1,7,3,0,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25926,4,0,3,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25927,4,1,3,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25928,4,0,3,2,0,0,0,0,-1,0,133295,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25929,4,4,6,7,0,0,0,0,-1,0,134587,11,0,85,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25930,4,3,5,1,0,0,0,0,-1,0,133120,11,0,60,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25931,4,1,7,1,0,0,0,0,-1,0,132767,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25932,4,2,8,5,0,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25933,2,7,1,13,0,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,128,0,0,0,0 +25934,2,5,2,17,0,1,0,0,-1,0,133476,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,276,0,0,0,0 +25935,2,10,2,17,0,2,0,0,-1,0,135166,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,251,0,0,0,0 +25936,4,0,3,12,0,0,0,0,-1,0,134465,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25937,4,0,3,12,0,0,0,0,-1,0,134465,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25938,12,0,0,0,0,0,0,0,-1,0,133745,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25939,2,19,2,26,64,0,0,0,-1,0,135468,21,0,65,0,4,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,257,0,0,0,0 +25940,4,8,2,28,64,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25941,4,3,5,8,64,0,0,0,-1,0,132546,11,0,60,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25942,4,4,6,10,64,0,0,0,-1,0,132964,11,0,45,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25943,2,13,1,21,64,7,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,197,0,0,0,0 +25944,2,8,1,17,64,1,0,0,-1,0,135392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,309,0,0,0,0 +25945,4,1,7,16,64,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25946,4,2,8,8,64,0,0,0,-1,0,132549,7,0,50,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25947,4,3,5,3,64,0,0,0,-1,0,135048,11,0,70,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25948,4,4,6,6,0,0,0,0,-1,0,132522,11,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25949,4,2,8,10,0,0,0,0,-1,0,132956,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25950,2,10,2,17,64,2,0,0,-1,0,135150,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,191,0,0,0,0 +25951,4,3,5,8,0,0,0,0,-1,0,132582,10,0,50,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25952,2,7,1,13,64,3,0,0,-1,0,135279,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +25953,2,2,2,15,64,0,0,0,-1,0,135508,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +25954,4,0,3,2,64,0,0,0,-1,0,135268,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25955,4,3,5,1,64,0,0,0,-1,0,133159,10,0,70,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25956,4,4,6,9,64,0,0,0,-1,0,132604,8,0,45,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25957,4,1,7,8,64,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25958,4,4,6,9,0,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25959,4,3,5,9,0,0,0,0,-1,0,132615,10,0,35,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25960,4,2,8,9,0,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25961,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25962,4,0,5,11,64,0,0,0,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25963,4,0,3,11,0,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25964,2,7,1,21,65,3,0,0,-1,0,135388,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +25965,4,1,3,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25966,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25967,4,4,6,3,0,0,0,0,-1,0,135060,11,0,80,0,0,0,0,0,0,699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25968,4,3,5,3,0,0,0,0,-1,0,135050,10,0,70,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25969,4,2,8,10,0,0,0,0,-1,0,132958,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25970,4,1,7,8,0,0,0,0,-1,0,132539,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25971,2,2,2,15,0,0,0,0,-1,0,135499,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +25972,2,3,1,26,0,0,0,0,-1,0,135610,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +25973,2,19,2,26,0,0,0,0,-1,0,135468,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,161,0,0,0,0 +25974,4,1,8,1,0,0,0,0,-1,0,133069,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25975,4,2,8,1,0,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25976,4,3,8,1,0,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25977,4,4,8,1,0,0,0,0,-1,0,133160,7,0,70,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25978,2,20,2,17,0,1,0,0,-1,0,132931,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,168,0,0,0,0 +25979,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25980,4,3,5,5,0,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25981,4,2,8,1,0,0,0,0,-1,0,133152,7,0,50,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25982,4,1,7,6,0,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25983,4,3,5,6,0,0,0,0,-1,0,132524,10,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25984,4,2,8,3,0,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25985,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,282,0,0,0,0 +25986,2,5,1,17,0,1,0,0,-1,0,133481,8,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,168,0,0,0,0 +25987,2,8,1,17,0,1,0,0,-1,0,135280,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +25988,4,0,3,11,0,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25989,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25990,4,0,3,11,0,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25991,4,0,3,11,0,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25992,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25993,4,0,3,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25994,4,0,3,12,0,0,0,0,-1,0,135259,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25995,4,0,3,12,0,0,0,0,-1,0,135730,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25996,4,0,3,12,0,0,0,0,-1,0,134948,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25997,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25998,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25999,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26000,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26001,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26002,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26003,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +26004,4,1,7,5,0,0,0,0,-1,0,135020,7,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26005,4,1,7,5,0,0,0,0,-1,0,135011,7,0,55,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26006,4,1,7,7,0,0,0,0,-1,0,134582,7,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26007,4,1,7,7,0,0,0,0,-1,0,134591,7,0,40,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26008,4,1,7,10,0,0,0,0,-1,0,132952,7,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26009,4,1,7,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26010,4,1,7,8,0,0,0,0,-1,0,132539,7,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26011,4,1,7,8,0,0,0,0,-1,0,132543,7,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26012,4,1,7,6,0,0,0,0,-1,0,132495,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26013,4,1,7,6,0,0,0,0,-1,0,132511,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26014,4,1,7,9,0,0,0,0,-1,0,132609,7,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26015,4,1,7,9,0,0,0,0,-1,0,132607,7,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26016,4,1,7,16,0,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26017,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26018,4,2,8,5,0,0,0,0,-1,0,135010,7,0,55,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26019,4,2,8,5,0,0,0,0,-1,0,135010,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26020,4,2,8,7,0,0,0,0,-1,0,134585,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26021,4,2,8,7,0,0,0,0,-1,0,134582,7,0,50,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26022,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26023,4,2,8,10,0,0,0,0,-1,0,132939,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26024,4,2,8,8,0,0,0,0,-1,0,132579,7,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26025,4,2,8,8,0,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26026,4,2,8,6,0,0,0,0,-1,0,132514,7,0,25,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26027,4,2,8,6,0,0,0,0,-1,0,132510,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26028,4,2,7,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26029,4,2,7,9,0,0,0,0,-1,0,132611,7,0,20,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26030,4,3,5,5,0,0,0,0,-1,0,132740,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26031,4,3,5,5,0,0,0,0,-1,0,132638,10,0,65,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26032,4,3,5,7,0,0,0,0,-1,0,134583,10,0,50,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26033,4,3,5,7,0,0,0,0,-1,0,134583,10,0,60,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26034,4,3,5,10,0,0,0,0,-1,0,132963,10,0,20,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26035,4,3,5,10,0,0,0,0,-1,0,132952,10,0,30,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26036,4,3,5,8,0,0,0,0,-1,0,132539,10,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26037,4,3,5,8,0,0,0,0,-1,0,132541,10,0,40,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26038,4,3,5,6,0,0,0,0,-1,0,132492,10,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26039,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26040,4,3,5,9,0,0,0,0,-1,0,132606,10,0,20,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26041,4,3,5,9,0,0,0,0,-1,0,132608,10,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26042,15,0,0,0,0,0,0,0,-1,0,132859,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26043,15,0,0,0,0,0,0,0,-1,0,132859,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26044,15,0,0,0,0,0,0,0,-1,0,134422,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26045,15,0,0,0,0,0,0,0,-1,0,134421,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26046,0,0,0,0,1,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26047,0,0,0,0,1,0,0,0,-1,0,133281,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26048,12,0,0,0,0,0,0,0,-1,0,133466,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26049,2,4,2,13,0,3,0,0,-1,0,135434,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,0,0,0 +26050,2,4,2,13,0,3,0,0,-1,0,133514,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +26051,2,5,2,17,0,1,0,0,-1,0,133477,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,33,0,0,0,0 +26052,2,5,2,17,0,1,0,0,-1,0,133513,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,36,0,0,0,0 +26053,2,7,1,13,0,3,0,0,-1,0,135274,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +26054,2,7,1,13,0,3,0,0,-1,0,135412,8,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +26055,4,0,0,12,65,0,0,0,-1,0,133387,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26056,4,1,7,6,57,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26057,4,1,7,8,57,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26058,4,1,7,5,57,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26059,4,1,7,10,57,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26060,4,1,7,1,57,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26061,4,1,7,7,57,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26062,4,1,7,3,57,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26063,4,1,7,9,57,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26064,4,1,7,6,58,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26065,4,1,7,8,58,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26066,4,1,7,5,58,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26067,4,1,7,10,58,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26068,4,1,7,1,58,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26069,4,1,7,7,58,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26070,4,1,7,3,58,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26071,4,1,7,9,58,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26072,4,1,7,6,59,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26073,4,1,7,8,59,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26074,4,1,7,5,59,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26075,4,1,7,10,59,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26076,4,1,7,1,59,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26077,4,1,7,7,59,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26078,4,1,7,3,59,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26079,4,1,7,9,59,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26080,4,1,7,6,60,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26081,4,1,7,8,60,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26082,4,1,7,5,60,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26083,4,1,7,10,60,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26084,4,1,7,1,60,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26085,4,1,7,7,60,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26086,4,1,7,3,60,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26087,4,1,7,9,60,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26088,4,1,7,6,61,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26089,4,1,7,8,61,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26090,4,1,7,5,61,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26091,4,1,7,10,61,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26092,4,1,7,1,61,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26093,4,1,7,7,61,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26094,4,1,7,3,61,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26095,4,1,7,9,61,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26096,4,1,7,6,62,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26097,4,1,7,8,62,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26098,4,1,7,5,62,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26099,4,1,7,10,62,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26100,4,1,7,1,62,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26101,4,1,7,7,62,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26102,4,1,7,3,62,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26103,4,1,7,9,62,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26104,4,1,7,6,63,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26105,4,1,7,8,63,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26106,4,1,7,5,63,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26107,4,1,7,10,63,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26108,4,1,7,1,63,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26109,4,1,7,7,63,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26110,4,1,7,3,63,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26111,4,1,7,9,63,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26112,4,1,7,6,64,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26113,4,1,7,8,64,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26114,4,1,7,5,64,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26115,4,1,7,10,64,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26116,4,1,7,1,64,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26117,4,1,7,7,64,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26118,4,1,7,3,64,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26119,4,1,7,9,64,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26120,4,1,7,6,65,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26121,4,1,7,8,65,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26122,4,1,7,5,65,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26123,4,1,7,10,65,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26124,4,1,7,1,65,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26125,4,1,7,7,65,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26126,4,1,7,3,65,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26127,4,1,7,9,65,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26128,4,1,7,6,66,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26129,4,1,7,8,66,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26130,4,1,7,5,66,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26131,4,1,7,10,66,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26132,4,1,7,1,66,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26133,4,1,7,7,66,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26134,4,1,7,3,66,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26135,4,1,7,9,66,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26136,4,1,7,6,67,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26137,4,1,7,8,67,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26138,4,1,7,5,67,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26139,4,1,7,10,67,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26140,4,1,7,1,67,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26141,4,1,7,7,67,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26142,4,1,7,3,67,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26143,4,1,7,9,67,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26144,4,1,7,6,68,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26145,4,1,7,8,68,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26146,4,1,7,5,68,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26147,4,1,7,10,68,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26148,4,1,7,1,68,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26149,4,1,7,7,68,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26150,4,1,7,3,68,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26151,4,1,7,9,68,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26152,4,1,7,6,69,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26153,4,1,7,8,69,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26154,4,1,7,5,69,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26155,4,1,7,10,69,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26156,4,1,7,1,69,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26157,4,1,7,7,69,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26158,4,1,7,3,69,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26159,4,1,7,9,69,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26160,4,1,7,6,70,0,0,101,-1,0,132491,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26161,4,1,7,8,70,0,0,101,-1,0,132543,7,0,35,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26162,4,1,7,5,70,0,0,101,-1,0,135008,7,0,70,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26163,4,1,7,10,70,0,0,101,-1,0,132957,7,0,25,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26164,4,1,7,1,70,0,0,101,-1,0,133135,7,0,45,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26165,4,1,7,7,70,0,0,101,-1,0,134586,7,0,55,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26166,4,1,7,3,70,0,0,101,-1,0,135040,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26167,4,1,7,9,70,0,0,101,-1,0,132609,7,0,25,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26168,4,2,8,6,57,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26169,4,2,8,8,57,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26170,4,2,8,5,57,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26171,4,2,8,10,57,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26172,4,2,8,1,57,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26173,4,2,8,7,57,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26174,4,2,8,3,57,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26175,4,2,8,9,57,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26176,4,2,8,6,58,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26177,4,2,8,8,58,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26178,4,2,8,5,58,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26179,4,2,8,10,58,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26180,4,2,8,1,58,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26181,4,2,8,7,58,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26182,4,2,8,3,58,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26183,4,2,8,9,58,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26184,4,2,8,6,59,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26185,4,2,8,8,59,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26186,4,2,8,5,59,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26187,4,2,8,10,59,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26188,4,2,8,1,59,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26189,4,2,8,7,59,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26190,4,2,8,3,59,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26191,4,2,8,9,59,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26192,4,2,8,6,60,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26193,4,2,8,8,60,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26194,4,2,8,5,60,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26195,4,2,8,10,60,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26196,4,2,8,1,60,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26197,4,2,8,7,60,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26198,4,2,8,3,60,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26199,4,2,8,9,60,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26200,4,2,8,6,61,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26201,4,2,8,8,61,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26202,4,2,8,5,61,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26203,4,2,8,10,61,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26204,4,2,8,1,61,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26205,4,2,8,7,61,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26206,4,2,8,3,61,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26207,4,2,8,9,61,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26208,4,2,8,6,62,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26209,4,2,8,8,62,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26210,4,2,8,5,62,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26211,4,2,8,10,62,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26212,4,2,8,1,62,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26213,4,2,8,7,62,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26214,4,2,8,3,62,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26215,4,2,8,9,62,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26216,4,2,8,6,63,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26217,4,2,8,8,63,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26218,4,2,8,5,63,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26219,4,2,8,10,63,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26220,4,2,8,1,63,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26221,4,2,8,7,63,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26222,4,2,8,3,63,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26223,4,2,8,9,63,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26224,4,2,8,6,64,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26225,4,2,8,8,64,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26226,4,2,8,5,64,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26227,4,2,8,10,64,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26228,4,2,8,1,64,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26229,4,2,8,7,64,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26230,4,2,8,3,64,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26231,4,2,8,9,64,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26232,4,2,8,6,65,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26233,4,2,8,8,65,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26234,4,2,8,5,65,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26235,4,2,8,10,65,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26236,4,2,8,1,65,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26237,4,2,8,7,65,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26238,4,2,8,3,65,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26239,4,2,8,9,65,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26240,4,2,8,6,66,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26241,4,2,8,8,66,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26242,4,2,8,5,66,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26243,4,2,8,10,66,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26244,4,2,8,1,66,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26245,4,2,8,7,66,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26246,4,2,8,3,66,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26247,4,2,8,9,66,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26248,4,2,8,6,67,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26249,4,2,8,8,67,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26250,4,2,8,5,67,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26251,4,2,8,10,67,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26252,4,2,8,1,67,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26253,4,2,8,7,67,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26254,4,2,8,3,67,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26255,4,2,8,9,67,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26256,4,2,8,6,68,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26257,4,2,8,8,68,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26258,4,2,8,5,68,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26259,4,2,8,10,68,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26260,4,2,8,1,68,0,0,103,-1,0,133132,7,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26261,4,2,8,7,68,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26262,4,2,8,3,68,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26263,4,2,8,9,68,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26264,4,2,8,6,69,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26265,4,2,8,8,69,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26266,4,2,8,5,69,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26267,4,2,8,10,69,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26268,4,2,8,1,69,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26269,4,2,8,7,69,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26270,4,2,8,3,69,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26271,4,2,8,9,69,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26272,4,2,8,6,70,0,0,103,-1,0,132491,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26273,4,2,8,8,70,0,0,103,-1,0,132543,7,0,45,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26274,4,2,8,5,70,0,0,103,-1,0,135008,7,0,85,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26275,4,2,8,10,70,0,0,103,-1,0,132957,7,0,30,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26276,4,2,8,1,70,0,0,103,-1,0,133135,7,0,50,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26277,4,2,8,7,70,0,0,103,-1,0,134586,7,0,65,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26278,4,2,8,3,70,0,0,103,-1,0,135040,7,0,50,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26279,4,2,8,9,70,0,0,103,-1,0,132609,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26280,4,3,5,6,57,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26281,4,3,5,8,57,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26282,4,3,5,5,57,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26283,4,3,5,10,57,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26284,4,3,5,1,57,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26285,4,3,5,7,57,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26286,4,3,5,3,57,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26287,4,3,5,9,57,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26288,4,3,5,6,58,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26289,4,3,5,8,58,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26290,4,3,5,5,58,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26291,4,3,5,10,58,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26292,4,3,5,1,58,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26293,4,3,5,7,58,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26294,4,3,5,3,58,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26295,4,3,5,9,58,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26296,4,3,5,6,59,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26297,4,3,5,8,59,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26298,4,3,5,5,59,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26299,4,3,5,10,59,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26300,4,3,5,1,59,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26301,4,3,5,7,59,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26302,4,3,5,3,59,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26303,4,3,5,9,59,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26304,4,3,5,6,60,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26305,4,3,5,8,60,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26306,4,3,5,5,60,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26307,4,3,5,10,60,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26308,4,3,5,1,60,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26309,4,3,5,7,60,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26310,4,3,5,3,60,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26311,4,3,5,9,60,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26312,4,3,5,6,61,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26313,4,3,5,8,61,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26314,4,3,5,5,61,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26315,4,3,5,10,61,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26316,4,3,5,1,61,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26317,4,3,5,7,61,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26318,4,3,5,3,61,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26319,4,3,5,9,61,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26320,4,3,5,6,62,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26321,4,3,5,8,62,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26322,4,3,5,5,62,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26323,4,3,5,10,62,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26324,4,3,5,1,62,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26325,4,3,5,7,62,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26326,4,3,5,3,62,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26327,4,3,5,9,62,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26328,4,3,5,6,63,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26329,4,3,5,8,63,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26330,4,3,5,5,63,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26331,4,3,5,10,63,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26332,4,3,5,1,63,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26333,4,3,5,7,63,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26334,4,3,5,3,63,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26335,4,3,5,9,63,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26336,4,3,5,6,64,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26337,4,3,5,8,64,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26338,4,3,5,5,64,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26339,4,3,5,10,64,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26340,4,3,5,1,64,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26341,4,3,5,7,64,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26342,4,3,5,3,64,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26343,4,3,5,9,64,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26344,4,3,5,6,65,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26345,4,3,5,8,65,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26346,4,3,5,5,65,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26347,4,3,5,10,65,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26348,4,3,5,1,65,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26349,4,3,5,7,65,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26350,4,3,5,3,65,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26351,4,3,5,9,65,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26352,4,3,5,6,66,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26353,4,3,5,8,66,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26354,4,3,5,5,66,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26355,4,3,5,10,66,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26356,4,3,5,1,66,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26357,4,3,5,7,66,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26358,4,3,5,3,66,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26359,4,3,5,9,66,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26360,4,3,5,6,67,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26361,4,3,5,8,67,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26362,4,3,5,5,67,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26363,4,3,5,10,67,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26364,4,3,5,1,67,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26365,4,3,5,7,67,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26366,4,3,5,3,67,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26367,4,3,5,9,67,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26368,4,3,5,6,68,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26369,4,3,5,8,68,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26370,4,3,5,5,68,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26371,4,3,5,10,68,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26372,4,3,5,1,68,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26373,4,3,5,7,68,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26374,4,3,5,3,68,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26375,4,3,5,9,68,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26376,4,3,5,6,69,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26377,4,3,5,8,69,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26378,4,3,5,5,69,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26379,4,3,5,10,69,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26380,4,3,5,1,69,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26381,4,3,5,7,69,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26382,4,3,5,3,69,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26383,4,3,5,9,69,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26384,4,3,5,6,70,0,0,103,-1,0,132491,7,0,35,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26385,4,3,5,8,70,0,0,103,-1,0,132543,7,0,50,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26386,4,3,5,5,70,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26387,4,3,5,10,70,0,0,103,-1,0,132957,7,0,35,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26388,4,3,5,1,70,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26389,4,3,5,7,70,0,0,103,-1,0,134586,7,0,75,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26390,4,3,5,3,70,0,0,103,-1,0,135040,7,0,60,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26391,4,3,5,9,70,0,0,103,-1,0,132609,7,0,35,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26392,4,4,6,6,57,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26393,4,4,6,8,57,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26394,4,4,6,5,57,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26395,4,4,6,10,57,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26396,4,4,6,1,57,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26397,4,4,6,7,57,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26398,4,4,6,3,57,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26399,4,4,6,9,57,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26400,4,4,6,6,58,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26401,4,4,6,8,58,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26402,4,4,6,5,58,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26403,4,4,6,10,58,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26404,4,4,6,1,58,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26405,4,4,6,7,58,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26406,4,4,6,3,58,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26407,4,4,6,9,58,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26408,4,4,6,6,59,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26409,4,4,6,8,59,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26410,4,4,6,5,59,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26411,4,4,6,10,59,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26412,4,4,6,1,59,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26413,4,4,6,7,59,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26414,4,4,6,3,59,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26415,4,4,6,9,59,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26416,4,4,6,6,60,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26417,4,4,6,8,60,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26418,4,4,6,5,60,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26419,4,4,6,10,60,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26420,4,4,6,1,60,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26421,4,4,6,7,60,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26422,4,4,6,3,60,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26423,4,4,6,9,60,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26424,4,4,6,6,61,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26425,4,4,6,8,61,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26426,4,4,6,5,61,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26427,4,4,6,10,61,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26428,4,4,6,1,61,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26429,4,4,6,7,61,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26430,4,4,6,3,61,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26431,4,4,6,9,61,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26432,4,4,6,6,62,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26433,4,4,6,8,62,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26434,4,4,6,5,62,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26435,4,4,6,10,62,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26436,4,4,6,1,62,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26437,4,4,6,7,62,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26438,4,4,6,3,62,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26439,4,4,6,9,62,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26440,4,4,6,6,63,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26441,4,4,6,8,63,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26442,4,4,6,5,63,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26443,4,4,6,10,63,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26444,4,4,6,1,63,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26445,4,4,6,7,63,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26446,4,4,6,3,63,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26447,4,4,6,9,63,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26448,4,4,6,6,64,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26449,4,4,6,8,64,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26450,4,4,6,5,64,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26451,4,4,6,10,64,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26452,4,4,6,1,64,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26453,4,4,6,7,64,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26454,4,4,6,3,64,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26455,4,4,6,9,64,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26456,4,4,6,6,65,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26457,4,4,6,8,65,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26458,4,4,6,5,65,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26459,4,4,6,10,65,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26460,4,4,6,1,65,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26461,4,4,6,7,65,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26462,4,4,6,3,65,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26463,4,4,6,9,65,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26464,4,4,6,6,66,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26465,4,4,6,8,66,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26466,4,4,6,5,66,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26467,4,4,6,10,66,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26468,4,4,6,1,66,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26469,4,4,6,7,66,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26470,4,4,6,3,66,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26471,4,4,6,9,66,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26472,4,4,6,6,67,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26473,4,4,6,8,67,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26474,4,4,6,5,67,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26475,4,4,6,10,67,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26476,4,4,6,1,67,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26477,4,4,6,7,67,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26478,4,4,6,3,67,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26479,4,4,6,9,67,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26480,4,4,6,6,68,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26481,4,4,6,8,68,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26482,4,4,6,5,68,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26483,4,4,6,10,68,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26484,4,4,6,1,68,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26485,4,4,6,7,68,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26486,4,4,6,3,68,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26487,4,4,6,9,68,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26488,4,4,6,6,69,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26489,4,4,6,8,69,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26490,4,4,6,5,69,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,1076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26491,4,4,6,10,69,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26492,4,4,6,1,69,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26493,4,4,6,7,69,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26494,4,4,6,3,69,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26495,4,4,6,9,69,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26496,4,4,6,6,70,0,0,102,-1,0,132491,7,0,40,0,0,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26497,4,4,6,8,70,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26498,4,4,6,5,70,0,0,102,-1,0,135008,7,0,115,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26499,4,4,6,10,70,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26500,4,4,6,1,70,0,0,102,-1,0,133135,7,0,70,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26501,4,4,6,7,70,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26502,4,4,6,3,70,0,0,102,-1,0,135040,7,0,70,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26503,4,4,6,9,70,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26504,4,1,7,16,57,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26505,4,1,7,16,58,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26506,4,1,7,16,59,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26507,4,1,7,16,60,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26508,4,1,7,16,61,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26509,4,1,7,16,62,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26510,4,1,7,16,63,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26511,4,1,7,16,64,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26512,4,1,7,16,65,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26513,4,1,7,16,66,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26514,4,1,7,16,67,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26515,4,1,7,16,68,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26516,4,1,7,16,69,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26517,4,1,7,16,70,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26518,4,0,3,11,57,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26519,4,0,3,11,58,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26520,4,0,3,11,59,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26521,4,0,3,11,60,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26522,4,0,3,11,61,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26523,4,0,3,11,62,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26524,4,0,3,11,63,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26525,4,0,3,11,64,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26526,4,0,3,11,65,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26527,4,0,3,11,66,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26528,4,0,3,11,67,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26529,4,0,3,11,68,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26530,4,0,3,11,69,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26531,4,0,3,11,70,0,0,101,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26532,4,0,3,2,57,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26533,4,0,3,2,58,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26534,4,0,3,2,59,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26535,4,0,3,2,60,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26536,4,0,3,2,61,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26537,4,0,3,2,62,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26538,4,0,3,2,63,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26539,4,0,3,2,64,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26540,4,0,3,2,65,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26541,4,0,3,2,66,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26542,4,0,3,2,67,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26543,4,0,3,2,68,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26544,4,0,3,2,69,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26545,4,0,3,2,70,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26546,4,6,1,14,57,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26547,4,6,1,14,58,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26548,4,6,1,14,59,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26549,4,6,1,14,60,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26550,4,6,1,14,61,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26551,4,6,1,14,62,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26552,4,6,1,14,63,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,2938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26553,4,6,1,14,64,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26554,4,6,1,14,65,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26555,4,6,1,14,66,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26556,4,6,1,14,67,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26557,4,6,1,14,68,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26558,4,6,1,14,69,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26559,4,6,1,14,70,0,0,102,-1,0,134955,9,0,85,0,0,0,0,0,0,3533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26560,4,0,3,23,57,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26561,4,0,3,23,58,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26562,4,0,3,23,59,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26563,4,0,3,23,60,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26564,4,0,3,23,61,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26565,4,0,3,23,62,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26566,4,0,3,23,63,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26567,4,0,3,23,64,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26568,4,0,3,23,65,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26569,4,0,3,23,66,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26570,4,0,3,23,67,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26571,4,0,3,23,68,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26572,4,0,3,23,69,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26573,4,0,3,23,70,0,0,101,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26574,2,15,1,13,57,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +26575,2,15,1,13,58,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +26576,2,15,1,13,59,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +26577,2,15,1,13,60,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +26578,2,15,1,13,61,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +26579,2,15,1,13,62,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +26580,2,15,1,13,63,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +26581,2,15,1,13,64,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +26582,2,15,1,13,65,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +26583,2,15,1,13,66,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +26584,2,15,1,13,67,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +26585,2,15,1,13,68,0,0,103,-1,0,135342,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +26586,2,15,1,13,69,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +26587,2,15,1,13,70,0,0,103,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +26588,2,4,2,13,57,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +26589,2,4,2,13,58,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +26590,2,4,2,13,59,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +26591,2,4,2,13,60,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +26592,2,4,2,13,61,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +26593,2,4,2,13,62,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +26594,2,4,2,13,63,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +26595,2,4,2,13,64,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +26596,2,4,2,13,65,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +26597,2,4,2,13,66,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +26598,2,4,2,13,67,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +26599,2,4,2,13,68,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +26600,2,4,2,13,69,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +26601,2,4,2,13,70,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +26602,2,5,2,17,57,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26603,2,5,2,17,58,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26604,2,5,2,17,59,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26605,2,5,2,17,60,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26606,2,5,2,17,61,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26607,2,5,2,17,62,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26608,2,5,2,17,63,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26609,2,5,2,17,64,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26610,2,5,2,17,65,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26611,2,5,2,17,66,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26612,2,5,2,17,67,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26613,2,5,2,17,68,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26614,2,5,2,17,69,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26615,2,5,2,17,70,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26616,2,7,1,13,57,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +26617,2,7,1,13,58,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +26618,2,7,1,13,59,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +26619,2,7,1,13,60,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +26620,2,7,1,13,61,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +26621,2,7,1,13,62,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +26622,2,7,1,13,63,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +26623,2,7,1,13,64,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +26624,2,7,1,13,65,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +26625,2,7,1,13,66,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +26626,2,7,1,13,67,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +26627,2,7,1,13,68,0,0,102,-1,0,135352,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +26628,2,7,1,13,69,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +26629,2,7,1,13,70,0,0,102,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +26630,2,8,1,17,57,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26631,2,8,1,17,58,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26632,2,8,1,17,59,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26633,2,8,1,17,60,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26634,2,8,1,17,61,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26635,2,8,1,17,62,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26636,2,8,1,17,63,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26637,2,8,1,17,64,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26638,2,8,1,17,65,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26639,2,8,1,17,66,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26640,2,8,1,17,67,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26641,2,8,1,17,68,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26642,2,8,1,17,69,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26643,2,8,1,17,70,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26644,2,10,2,17,57,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26645,2,10,2,17,58,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26646,2,10,2,17,59,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26647,2,10,2,17,60,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26648,2,10,2,17,61,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26649,2,10,2,17,62,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26650,2,10,2,17,63,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26651,2,10,2,17,64,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26652,2,10,2,17,65,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26653,2,10,2,17,66,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26654,2,10,2,17,67,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26655,2,10,2,17,68,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26656,2,10,2,17,69,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26657,2,10,2,17,70,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26658,2,13,1,13,57,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +26659,2,13,1,13,58,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +26660,2,13,1,13,59,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +26661,2,13,1,13,60,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +26662,2,13,1,13,61,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +26663,2,13,1,13,62,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +26664,2,13,1,13,63,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +26665,2,13,1,13,64,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +26666,2,13,1,13,65,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +26667,2,13,1,13,66,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +26668,2,13,1,13,67,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +26669,2,13,1,13,68,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +26670,2,13,1,13,69,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +26671,2,13,1,13,70,0,0,102,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +26672,2,0,1,13,57,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,91,0,0,0,0 +26673,2,0,1,13,58,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,155,0,0,0,0 +26674,2,0,1,13,59,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,158,0,0,0,0 +26675,2,0,1,13,60,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,162,0,0,0,0 +26676,2,0,1,13,61,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +26677,2,0,1,13,62,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,169,0,0,0,0 +26678,2,0,1,13,63,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +26679,2,0,1,13,64,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +26680,2,0,1,13,65,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +26681,2,0,1,13,66,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +26682,2,0,1,13,67,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +26683,2,0,1,13,68,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +26684,2,0,1,13,69,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +26685,2,0,1,13,70,0,0,103,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +26686,2,1,1,17,57,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26687,2,1,1,17,58,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26688,2,1,1,17,59,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26689,2,1,1,17,60,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26690,2,1,1,17,61,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26691,2,1,1,17,62,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26692,2,1,1,17,63,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26693,2,1,1,17,64,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26694,2,1,1,17,65,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26695,2,1,1,17,66,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26696,2,1,1,17,67,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26697,2,1,1,17,68,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26698,2,1,1,17,69,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26699,2,1,1,17,70,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26700,2,6,1,17,57,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26701,2,6,1,17,58,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26702,2,6,1,17,59,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26703,2,6,1,17,60,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26704,2,6,1,17,61,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26705,2,6,1,17,62,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26706,2,6,1,17,63,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26707,2,6,1,17,64,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26708,2,6,1,17,65,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26709,2,6,1,17,66,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26710,2,6,1,17,67,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26711,2,6,1,17,68,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26712,2,6,1,17,69,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26713,2,6,1,17,70,0,0,103,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26714,2,2,2,15,57,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,120,0,0,0,0 +26715,2,2,2,15,58,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,123,0,0,0,0 +26716,2,2,2,15,59,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,126,0,0,0,0 +26717,2,2,2,15,60,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,129,0,0,0,0 +26718,2,2,2,15,61,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,131,0,0,0,0 +26719,2,2,2,15,62,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,133,0,0,0,0 +26720,2,2,2,15,63,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,138,0,0,0,0 +26721,2,2,2,15,64,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,142,0,0,0,0 +26722,2,2,2,15,65,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,146,0,0,0,0 +26723,2,2,2,15,66,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,150,0,0,0,0 +26724,2,2,2,15,67,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,154,0,0,0,0 +26725,2,2,2,15,68,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,158,0,0,0,0 +26726,2,2,2,15,69,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,162,0,0,0,0 +26727,2,2,2,15,70,0,0,103,-1,0,135493,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,165,0,0,0,0 +26728,2,18,2,26,57,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,120,0,0,0,0 +26729,2,18,2,26,58,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,123,0,0,0,0 +26730,2,18,2,26,59,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,126,0,0,0,0 +26731,2,18,2,26,60,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,129,0,0,0,0 +26732,2,18,2,26,61,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,131,0,0,0,0 +26733,2,18,2,26,62,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,133,0,0,0,0 +26734,2,18,2,26,63,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,138,0,0,0,0 +26735,2,18,2,26,64,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,142,0,0,0,0 +26736,2,18,2,26,65,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,146,0,0,0,0 +26737,2,18,2,26,66,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,150,0,0,0,0 +26738,2,18,2,26,67,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,154,0,0,0,0 +26739,2,18,2,26,68,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,158,0,0,0,0 +26740,2,18,2,26,69,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,162,0,0,0,0 +26741,2,18,2,26,70,0,0,102,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,165,0,0,0,0 +26742,2,3,1,26,57,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,120,0,0,0,0 +26743,2,3,1,26,58,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,123,0,0,0,0 +26744,2,3,1,26,59,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,126,0,0,0,0 +26745,2,3,1,26,60,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,129,0,0,0,0 +26746,2,3,1,26,61,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,131,0,0,0,0 +26747,2,3,1,26,62,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,133,0,0,0,0 +26748,2,3,1,26,63,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,138,0,0,0,0 +26749,2,3,1,26,64,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,142,0,0,0,0 +26750,2,3,1,26,65,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,146,0,0,0,0 +26751,2,3,1,26,66,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,150,0,0,0,0 +26752,2,3,1,26,67,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,154,0,0,0,0 +26753,2,3,1,26,68,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,158,0,0,0,0 +26754,2,3,1,26,69,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,162,0,0,0,0 +26755,2,3,1,26,70,0,0,103,-1,0,135531,12,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,165,0,0,0,0 +26756,2,19,2,26,57,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,126,0,0,0,0 +26757,2,19,2,26,58,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,130,0,0,0,0 +26758,2,19,2,26,59,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,135,0,0,0,0 +26759,2,19,2,26,60,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,140,0,0,0,0 +26760,2,19,2,26,61,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,144,0,0,0,0 +26761,2,19,2,26,62,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,149,0,0,0,0 +26762,2,19,2,26,63,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,156,0,0,0,0 +26763,2,19,2,26,64,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,162,0,0,0,0 +26764,2,19,2,26,65,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0 +26765,2,19,2,26,66,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,174,0,0,0,0 +26766,2,19,2,26,67,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,180,0,0,0,0 +26767,2,19,2,26,68,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,186,0,0,0,0 +26768,2,19,2,26,69,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0 +26769,2,19,2,26,70,0,0,101,-1,0,135531,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,196,0,0,0,0 +26770,2,15,1,21,57,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +26771,2,15,1,21,58,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +26772,2,15,1,21,59,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +26773,2,15,1,21,60,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +26774,2,15,1,21,61,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +26775,2,15,1,21,62,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +26776,2,15,1,21,63,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +26777,2,15,1,21,64,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +26778,2,15,1,21,65,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +26779,2,15,1,21,66,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +26780,2,15,1,21,67,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +26781,2,15,1,21,68,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +26782,2,15,1,21,69,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +26783,2,15,1,21,70,0,0,105,-1,0,133485,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +26784,2,4,2,21,57,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +26785,2,4,2,21,58,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,101,0,0,0,0 +26786,2,4,2,21,59,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +26787,2,4,2,21,60,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +26788,2,4,2,21,61,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +26789,2,4,2,21,62,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,110,0,0,0,0 +26790,2,4,2,21,63,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +26791,2,4,2,21,64,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +26792,2,4,2,21,65,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +26793,2,4,2,21,66,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +26794,2,4,2,21,67,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,132,0,0,0,0 +26795,2,4,2,21,68,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,137,0,0,0,0 +26796,2,4,2,21,69,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,141,0,0,0,0 +26797,2,4,2,21,70,0,0,105,-1,0,133485,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,144,0,0,0,0 +26798,2,10,2,17,57,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +26799,2,10,2,17,58,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,250,0,0,0,0 +26800,2,10,2,17,59,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,256,0,0,0,0 +26801,2,10,2,17,60,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,261,0,0,0,0 +26802,2,10,2,17,61,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,267,0,0,0,0 +26803,2,10,2,17,62,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +26804,2,10,2,17,63,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +26805,2,10,2,17,64,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,294,0,0,0,0 +26806,2,10,2,17,65,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +26807,2,10,2,17,66,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,316,0,0,0,0 +26808,2,10,2,17,67,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +26809,2,10,2,17,68,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +26810,2,10,2,17,69,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +26811,2,10,2,17,70,0,0,102,-1,0,135145,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,356,0,0,0,0 +26812,4,2,8,6,57,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26813,4,2,8,8,57,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26814,4,2,8,5,57,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26815,4,2,8,10,57,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26816,4,2,8,1,57,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26817,4,2,8,7,57,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26818,4,2,8,3,57,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26819,4,2,8,9,57,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26820,4,2,8,6,58,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26821,4,2,8,8,58,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26822,4,2,8,5,58,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26823,4,2,8,10,58,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26824,4,2,8,1,58,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26825,4,2,8,7,58,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26826,4,2,8,3,58,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26827,4,2,8,9,58,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26828,4,2,8,6,59,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26829,4,2,8,8,59,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26830,4,2,8,5,59,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26831,4,2,8,10,59,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26832,4,2,8,1,59,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26833,4,2,8,7,59,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26834,4,2,8,3,59,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26835,4,2,8,9,59,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26836,4,2,8,6,60,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26837,4,2,8,8,60,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26838,4,2,8,5,60,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26839,4,2,8,10,60,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26840,4,2,8,1,60,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26841,4,2,8,7,60,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26842,4,2,8,3,60,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26843,4,2,8,9,60,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26844,4,2,8,6,61,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26845,4,2,8,8,61,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26846,4,2,8,5,61,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26847,4,2,8,10,61,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26848,4,2,8,1,61,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26849,4,2,8,7,61,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26850,4,2,8,3,61,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26851,4,2,8,9,61,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26852,4,2,8,6,62,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26853,4,2,8,8,62,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26854,4,2,8,5,62,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26855,4,2,8,10,62,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26856,4,2,8,1,62,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26857,4,2,8,7,62,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26858,4,2,8,3,62,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26859,4,2,8,9,62,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26860,4,2,8,6,63,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26861,4,2,8,8,63,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26862,4,2,8,5,63,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26863,4,2,8,10,63,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26864,4,2,8,1,63,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26865,4,2,8,7,63,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26866,4,2,8,3,63,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26867,4,2,8,9,63,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26868,4,2,8,6,64,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26869,4,2,8,8,64,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26870,4,2,8,5,64,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26871,4,2,8,10,64,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26872,4,2,8,1,64,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26873,4,2,8,7,64,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26874,4,2,8,3,64,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26875,4,2,8,9,64,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26876,4,2,8,6,65,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26877,4,2,8,8,65,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26878,4,2,8,5,65,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26879,4,2,8,10,65,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26880,4,2,8,1,65,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26881,4,2,8,7,65,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26882,4,2,8,3,65,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26883,4,2,8,9,65,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26884,4,2,8,6,66,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26885,4,2,8,8,66,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26886,4,2,8,5,66,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26887,4,2,8,10,66,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26888,4,2,8,1,66,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26889,4,2,8,7,66,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26890,4,2,8,3,66,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26891,4,2,8,9,66,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26892,4,2,8,6,67,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26893,4,2,8,8,67,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26894,4,2,8,5,67,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26895,4,2,8,10,67,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26896,4,2,8,1,67,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26897,4,2,8,7,67,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26898,4,2,8,3,67,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26899,4,2,8,9,67,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26900,4,2,8,6,68,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26901,4,2,8,8,68,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26902,4,2,8,5,68,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26903,4,2,8,10,68,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26904,4,2,8,1,68,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26905,4,2,8,7,68,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26906,4,2,8,3,68,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26907,4,2,8,9,68,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26908,4,2,8,6,69,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26909,4,2,8,8,69,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26910,4,2,8,5,69,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26911,4,2,8,10,69,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26912,4,2,8,1,69,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26913,4,2,8,7,69,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26914,4,2,8,3,69,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26915,4,2,8,9,69,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26916,4,2,8,6,70,0,0,102,-1,0,132491,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26917,4,2,8,8,70,0,0,102,-1,0,132543,7,0,45,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26918,4,2,8,5,70,0,0,102,-1,0,135008,7,0,85,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26919,4,2,8,10,70,0,0,102,-1,0,132957,7,0,30,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26920,4,2,8,1,70,0,0,102,-1,0,133135,7,0,50,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26921,4,2,8,7,70,0,0,102,-1,0,134586,7,0,65,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26922,4,2,8,3,70,0,0,102,-1,0,135040,7,0,50,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26923,4,2,8,9,70,0,0,102,-1,0,132609,7,0,30,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26924,4,3,5,6,57,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26925,4,3,5,8,57,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26926,4,3,5,5,57,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26927,4,3,5,10,57,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26928,4,3,5,1,57,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26929,4,3,5,7,57,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26930,4,3,5,3,57,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26931,4,3,5,9,57,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26932,4,3,5,6,58,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26933,4,3,5,8,58,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26934,4,3,5,5,58,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26935,4,3,5,10,58,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26936,4,3,5,1,58,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26937,4,3,5,7,58,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26938,4,3,5,3,58,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26939,4,3,5,9,58,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26940,4,3,5,6,59,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26941,4,3,5,8,59,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26942,4,3,5,5,59,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26943,4,3,5,10,59,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26944,4,3,5,1,59,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26945,4,3,5,7,59,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26946,4,3,5,3,59,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26947,4,3,5,9,59,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26948,4,3,5,6,60,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26949,4,3,5,8,60,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26950,4,3,5,5,60,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26951,4,3,5,10,60,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26952,4,3,5,1,60,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26953,4,3,5,7,60,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26954,4,3,5,3,60,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26955,4,3,5,9,60,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26956,4,3,5,6,61,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26957,4,3,5,8,61,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26958,4,3,5,5,61,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26959,4,3,5,10,61,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26960,4,3,5,1,61,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26961,4,3,5,7,61,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26962,4,3,5,3,61,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26963,4,3,5,9,61,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26964,4,3,5,6,62,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26965,4,3,5,8,62,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26966,4,3,5,5,62,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26967,4,3,5,10,62,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26968,4,3,5,1,62,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26969,4,3,5,7,62,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26970,4,3,5,3,62,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26971,4,3,5,9,62,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26972,4,3,5,6,63,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26973,4,3,5,8,63,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26974,4,3,5,5,63,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26975,4,3,5,10,63,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26976,4,3,5,1,63,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26977,4,3,5,7,63,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26978,4,3,5,3,63,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26979,4,3,5,9,63,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26980,4,3,5,6,64,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26981,4,3,5,8,64,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26982,4,3,5,5,64,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26983,4,3,5,10,64,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26984,4,3,5,1,64,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26985,4,3,5,7,64,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26986,4,3,5,3,64,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26987,4,3,5,9,64,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26988,4,3,5,6,65,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26989,4,3,5,8,65,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26990,4,3,5,5,65,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26991,4,3,5,10,65,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26992,4,3,5,1,65,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26993,4,3,5,7,65,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26994,4,3,5,3,65,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26995,4,3,5,9,65,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26996,4,3,5,6,66,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26997,4,3,5,8,66,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26998,4,3,5,5,66,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26999,4,3,5,10,66,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27000,4,3,5,1,66,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27001,4,3,5,7,66,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27002,4,3,5,3,66,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27003,4,3,5,9,66,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27004,4,3,5,6,67,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27005,4,3,5,8,67,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27006,4,3,5,5,67,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27007,4,3,5,10,67,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27008,4,3,5,1,67,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27009,4,3,5,7,67,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27010,4,3,5,3,67,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27011,4,3,5,9,67,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27012,4,3,5,6,68,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27013,4,3,5,8,68,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27014,4,3,5,5,68,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27015,4,3,5,10,68,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27016,4,3,5,1,68,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27017,4,3,5,7,68,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27018,4,3,5,3,68,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27019,4,3,5,9,68,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27020,4,3,5,6,69,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27021,4,3,5,8,69,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27022,4,3,5,5,69,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27023,4,3,5,10,69,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27024,4,3,5,1,69,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27025,4,3,5,7,69,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27026,4,3,5,3,69,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27027,4,3,5,9,69,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27028,4,3,5,6,70,0,0,104,-1,0,132491,7,0,35,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27029,4,3,5,8,70,0,0,105,-1,0,132543,7,0,50,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27030,4,3,5,5,70,0,0,105,-1,0,135008,7,0,100,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27031,4,3,5,10,70,0,0,105,-1,0,132957,7,0,35,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27032,4,3,5,1,70,0,0,105,-1,0,133135,7,0,60,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27033,4,3,5,7,70,0,0,104,-1,0,134586,7,0,75,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27034,4,3,5,3,70,0,0,104,-1,0,135040,7,0,60,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27035,4,3,5,9,70,0,0,104,-1,0,132609,7,0,35,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27036,4,4,6,6,57,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27037,4,4,6,8,57,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27038,4,4,6,5,57,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27039,4,4,6,10,57,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27040,4,4,6,1,57,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27041,4,4,6,7,57,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27042,4,4,6,3,57,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27043,4,4,6,9,57,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27044,4,4,6,6,58,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27045,4,4,6,8,58,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27046,4,4,6,5,58,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27047,4,4,6,10,58,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27048,4,4,6,1,58,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27049,4,4,6,7,58,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27050,4,4,6,3,58,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27051,4,4,6,9,58,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27052,4,4,6,6,59,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27053,4,4,6,8,59,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27054,4,4,6,5,59,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27055,4,4,6,10,59,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27056,4,4,6,1,59,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27057,4,4,6,7,59,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27058,4,4,6,3,59,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27059,4,4,6,9,59,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27060,4,4,6,6,60,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27061,4,4,6,8,60,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27062,4,4,6,5,60,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27063,4,4,6,10,60,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27064,4,4,6,1,60,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27065,4,4,6,7,60,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27066,4,4,6,3,60,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27067,4,4,6,9,60,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27068,4,4,6,6,61,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27069,4,4,6,8,61,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27070,4,4,6,5,61,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27071,4,4,6,10,61,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27072,4,4,6,1,61,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27073,4,4,6,7,61,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27074,4,4,6,3,61,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27075,4,4,6,9,61,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27076,4,4,6,6,62,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27077,4,4,6,8,62,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27078,4,4,6,5,62,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27079,4,4,6,10,62,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27080,4,4,6,1,62,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27081,4,4,6,7,62,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27082,4,4,6,3,62,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27083,4,4,6,9,62,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27084,4,4,6,6,63,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27085,4,4,6,8,63,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27086,4,4,6,5,63,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27087,4,4,6,10,63,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27088,4,4,6,1,63,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27089,4,4,6,7,63,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27090,4,4,6,3,63,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27091,4,4,6,9,63,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27092,4,4,6,6,64,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27093,4,4,6,8,64,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27094,4,4,6,5,64,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27095,4,4,6,10,64,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27096,4,4,6,1,64,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27097,4,4,6,7,64,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27098,4,4,6,3,64,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27099,4,4,6,9,64,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27100,4,4,6,6,65,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27101,4,4,6,8,65,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27102,4,4,6,5,65,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27103,4,4,6,10,65,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27104,4,4,6,1,65,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27105,4,4,6,7,65,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27106,4,4,6,3,65,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27107,4,4,6,9,65,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27108,4,4,6,6,66,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27109,4,4,6,8,66,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27110,4,4,6,5,66,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27111,4,4,6,10,66,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27112,4,4,6,1,66,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27113,4,4,6,7,66,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27114,4,4,6,3,66,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27115,4,4,6,9,66,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27116,4,4,6,6,67,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27117,4,4,6,8,67,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27118,4,4,6,5,67,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27119,4,4,6,10,67,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27120,4,4,6,1,67,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27121,4,4,6,7,67,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27122,4,4,6,3,67,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27123,4,4,6,9,67,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27124,4,4,6,6,68,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27125,4,4,6,8,68,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27126,4,4,6,5,68,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27127,4,4,6,10,68,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27128,4,4,6,1,68,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27129,4,4,6,7,68,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27130,4,4,6,3,68,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27131,4,4,6,9,68,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27132,4,4,6,6,69,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27133,4,4,6,8,69,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27134,4,4,6,5,69,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,1076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27135,4,4,6,10,69,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27136,4,4,6,1,69,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27137,4,4,6,7,69,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27138,4,4,6,3,69,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27139,4,4,6,9,69,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27140,4,4,6,6,70,0,0,101,-1,0,132491,7,0,40,0,0,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27141,4,4,6,8,70,0,0,102,-1,0,132543,7,0,55,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27142,4,4,6,5,70,0,0,101,-1,0,135008,7,0,115,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27143,4,4,6,10,70,0,0,102,-1,0,132957,7,0,40,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27144,4,4,6,1,70,0,0,101,-1,0,133135,7,0,70,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27145,4,4,6,7,70,0,0,102,-1,0,134586,7,0,85,0,0,0,0,0,0,965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27146,4,4,6,3,70,0,0,101,-1,0,135040,7,0,70,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27147,4,4,6,9,70,0,0,102,-1,0,132609,7,0,40,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27148,4,1,7,16,57,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27149,4,1,7,16,58,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27150,4,1,7,16,59,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27151,4,1,7,16,60,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27152,4,1,7,16,61,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27153,4,1,7,16,62,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27154,4,1,7,16,63,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27155,4,1,7,16,64,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27156,4,1,7,16,65,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27157,4,1,7,16,66,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27158,4,1,7,16,67,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27159,4,1,7,16,68,0,0,103,-1,0,133772,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27160,4,1,7,16,69,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27161,4,1,7,16,70,0,0,103,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27162,4,0,3,11,57,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27163,4,0,3,11,58,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27164,4,0,3,11,59,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27165,4,0,3,11,60,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27166,4,0,3,11,61,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27167,4,0,3,11,62,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27168,4,0,3,11,63,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27169,4,0,3,11,64,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27170,4,0,3,11,65,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27171,4,0,3,11,66,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27172,4,0,3,11,67,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27173,4,0,3,11,68,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27174,4,0,3,11,69,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27175,4,0,3,11,70,0,0,103,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27176,4,0,3,2,57,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27177,4,0,3,2,58,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27178,4,0,3,2,59,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27179,4,0,3,2,60,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27180,4,0,3,2,61,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27181,4,0,3,2,62,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27182,4,0,3,2,63,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27183,4,0,3,2,64,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27184,4,0,3,2,65,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27185,4,0,3,2,66,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27186,4,0,3,2,67,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27187,4,0,3,2,68,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27188,4,0,3,2,69,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27189,4,0,3,2,70,0,0,103,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27190,4,1,7,16,57,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27191,4,1,7,16,58,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27192,4,1,7,16,59,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27193,4,1,7,16,60,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27194,4,1,7,16,61,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27195,4,1,7,16,62,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27196,4,1,7,16,63,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27197,4,1,7,16,64,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27198,4,1,7,16,65,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27199,4,1,7,16,66,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27200,4,1,7,16,67,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27201,4,1,7,16,68,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27202,4,1,7,16,69,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27203,4,1,7,16,70,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27204,4,0,3,11,57,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27205,4,0,3,11,58,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27206,4,0,3,11,59,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27207,4,0,3,11,60,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27208,4,0,3,11,61,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27209,4,0,3,11,62,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27210,4,0,3,11,63,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27211,4,0,3,11,64,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27212,4,0,3,11,65,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27213,4,0,3,11,66,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27214,4,0,3,11,67,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27215,4,0,3,11,68,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27216,4,0,3,11,69,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27217,4,0,3,11,70,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27218,4,0,3,2,57,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27219,4,0,3,2,58,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27220,4,0,3,2,59,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27221,4,0,3,2,60,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27222,4,0,3,2,61,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27223,4,0,3,2,62,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27224,4,0,3,2,63,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27225,4,0,3,2,64,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27226,4,0,3,2,65,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27227,4,0,3,2,66,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27228,4,0,3,2,67,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27229,4,0,3,2,68,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27230,4,0,3,2,69,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27231,4,0,3,2,70,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27232,4,1,7,16,57,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27233,4,1,7,16,58,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27234,4,1,7,16,59,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27235,4,1,7,16,60,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27236,4,1,7,16,61,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27237,4,1,7,16,62,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27238,4,1,7,16,63,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27239,4,1,7,16,64,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27240,4,1,7,16,65,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27241,4,1,7,16,66,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27242,4,1,7,16,67,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27243,4,1,7,16,68,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27244,4,1,7,16,69,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27245,4,1,7,16,70,0,0,104,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27246,4,0,3,11,57,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27247,4,0,3,11,58,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27248,4,0,3,11,59,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27249,4,0,3,11,60,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27250,4,0,3,11,61,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27251,4,0,3,11,62,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27252,4,0,3,11,63,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27253,4,0,3,11,64,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27254,4,0,3,11,65,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27255,4,0,3,11,66,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27256,4,0,3,11,67,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27257,4,0,3,11,68,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27258,4,0,3,11,69,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27259,4,0,3,11,70,0,0,104,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27260,4,0,3,2,57,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27261,4,0,3,2,58,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27262,4,0,3,2,59,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27263,4,0,3,2,60,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27264,4,0,3,2,61,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27265,4,0,3,2,62,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27266,4,0,3,2,63,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27267,4,0,3,2,64,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27268,4,0,3,2,65,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27269,4,0,3,2,66,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27270,4,0,3,2,67,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27271,4,0,3,2,68,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27272,4,0,3,2,69,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27273,4,0,3,2,70,0,0,104,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27274,4,1,7,16,57,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27275,4,1,7,16,58,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27276,4,1,7,16,59,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27277,4,1,7,16,60,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27278,4,1,7,16,61,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27279,4,1,7,16,62,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27280,4,1,7,16,63,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27281,4,1,7,16,64,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27282,4,1,7,16,65,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27283,4,1,7,16,66,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27284,4,1,7,16,67,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27285,4,1,7,16,68,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27286,4,1,7,16,69,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27287,4,1,7,16,70,0,0,101,-1,0,133766,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27288,4,0,3,11,57,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27289,4,0,3,11,58,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27290,4,0,3,11,59,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27291,4,0,3,11,60,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27292,4,0,3,11,61,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27293,4,0,3,11,62,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27294,4,0,3,11,63,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27295,4,0,3,11,64,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27296,4,0,3,11,65,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27297,4,0,3,11,66,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27298,4,0,3,11,67,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27299,4,0,3,11,68,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27300,4,0,3,11,69,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27301,4,0,3,11,70,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27302,4,0,3,2,57,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27303,4,0,3,2,58,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27304,4,0,3,2,59,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27305,4,0,3,2,60,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27306,4,0,3,2,61,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27307,4,0,3,2,62,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27308,4,0,3,2,63,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27309,4,0,3,2,64,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27310,4,0,3,2,65,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27311,4,0,3,2,66,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27312,4,0,3,2,67,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27313,4,0,3,2,68,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27314,4,0,3,2,69,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27315,4,0,3,2,70,0,0,101,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27316,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27317,0,0,0,0,0,0,0,0,-1,0,134732,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27318,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27319,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27320,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27321,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27322,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27323,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27324,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27325,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27326,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27327,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27328,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27329,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27330,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27331,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27332,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27333,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27334,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27335,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27336,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27337,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27338,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27339,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27340,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27341,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27342,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27343,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27344,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27345,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27346,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27347,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27348,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27349,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27350,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27351,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27352,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27353,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27354,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27355,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27356,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27357,15,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27358,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27359,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27360,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27361,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27362,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27363,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27364,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27365,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27366,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27367,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27368,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27369,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27370,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27371,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27372,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27373,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27374,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27375,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27376,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27377,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27378,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27379,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27380,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27381,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27382,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27383,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27384,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27385,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27386,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27387,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27388,0,0,0,0,55,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27389,2,8,1,17,0,1,0,0,-1,0,135276,9,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,30,0,0,0,0 +27390,2,8,1,17,0,1,0,0,-1,0,135416,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +27391,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27392,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27393,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27394,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27395,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27396,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27397,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27398,4,0,0,23,0,7,0,0,-1,0,134337,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27399,4,6,1,14,0,4,0,0,-1,0,134955,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27400,4,6,1,14,0,4,0,0,-1,0,134948,9,0,60,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27401,2,18,2,26,0,0,0,0,-1,0,135533,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,25,0,0,0,0 +27402,2,18,2,26,0,0,0,0,-1,0,135533,12,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,32,0,0,0,0 +27403,2,19,2,26,0,0,0,0,-1,0,135469,21,0,30,0,3,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +27404,2,19,2,26,0,0,0,0,-1,0,135469,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,30,0,0,0,0 +27405,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27406,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27407,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27408,4,4,6,1,65,0,0,0,-1,0,133118,9,0,80,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27409,4,2,8,1,65,0,0,0,-1,0,133123,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27410,4,1,7,1,65,0,0,0,-1,0,133074,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27411,4,1,7,8,65,0,0,0,-1,0,132571,7,0,40,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27412,2,10,2,17,65,2,0,0,-1,0,135169,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,198,0,0,0,0 +27413,4,0,4,11,65,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27414,4,3,5,1,65,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27415,4,2,8,1,65,0,0,0,-1,0,133144,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27416,4,0,4,12,65,0,0,0,-1,0,133147,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27417,4,2,8,3,66,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27418,4,1,7,7,66,0,0,0,-1,0,134637,7,0,65,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27419,12,0,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27420,4,4,6,8,66,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27421,12,0,0,0,0,0,0,0,-1,0,134937,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27422,7,8,0,0,0,0,0,0,-1,0,133923,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27423,4,1,7,16,66,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27424,2,0,1,13,66,3,0,0,-1,0,132406,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,188,0,0,0,0 +27425,7,8,0,0,0,0,0,0,-1,0,133925,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27426,2,4,2,21,66,3,0,0,-1,0,133535,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,220,0,0,0,0 +27427,4,4,6,5,66,0,0,0,-1,0,132634,11,0,135,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27428,4,3,5,10,66,0,0,0,-1,0,132960,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27429,7,8,0,0,0,0,0,0,-1,0,133920,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27430,4,3,5,7,66,0,0,0,-1,0,134697,11,0,90,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27431,2,15,1,21,66,3,0,0,-1,0,135669,9,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,139,0,0,0,0 +27432,4,0,3,11,66,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27433,4,1,7,3,66,0,0,0,-1,0,135057,7,0,50,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27434,4,2,8,3,66,0,0,0,-1,0,135066,7,0,60,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27435,7,8,0,0,0,0,0,0,-1,0,133927,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27436,4,0,5,11,66,1,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27437,7,8,0,0,0,0,0,0,-1,0,133909,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27438,7,8,0,0,0,0,0,0,-1,0,133922,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27439,7,8,0,0,0,0,0,0,-1,0,133900,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27440,4,0,3,2,66,0,0,0,-1,0,134094,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27441,15,0,0,0,0,0,0,0,-1,0,133924,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27442,15,0,0,0,0,0,0,0,-1,0,133928,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27443,15,0,0,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27444,7,8,0,0,0,0,0,0,-1,0,133926,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27445,15,0,0,0,0,0,0,0,-1,0,132599,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27446,15,0,2,0,0,0,0,0,-1,0,134140,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27447,4,4,6,9,70,0,0,0,-1,0,132617,8,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27448,4,1,7,16,70,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27449,4,6,1,14,70,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0 +27450,4,3,5,8,70,0,0,0,-1,0,132546,10,0,60,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27451,4,1,7,8,70,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27452,4,1,7,9,70,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27453,4,0,5,11,70,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27454,4,3,5,3,70,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27455,4,4,6,1,70,0,0,0,-1,0,133101,9,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27456,4,2,8,20,70,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27457,4,4,6,10,70,0,0,0,-1,0,132943,9,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27458,4,3,5,7,70,0,0,0,-1,0,134605,11,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27459,4,4,6,9,70,0,0,0,-1,0,132605,8,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27460,4,0,3,11,70,0,0,0,-1,0,133425,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27461,4,2,8,5,70,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27462,4,1,7,9,70,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27463,2,15,1,13,70,3,0,0,-1,0,135667,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +27464,4,0,3,2,70,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27465,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27466,4,1,0,1,70,0,0,0,-1,0,133172,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27467,4,2,8,8,70,0,0,0,-1,0,132563,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27468,4,2,8,10,70,0,0,0,-1,0,132947,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27469,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27470,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27471,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27472,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27473,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27474,4,3,5,10,70,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27475,4,4,6,10,70,0,0,0,-1,0,132962,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27476,2,4,2,13,70,3,0,0,-1,0,133524,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27477,4,0,8,23,70,0,0,0,-1,0,135161,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27478,4,3,5,6,70,0,0,0,-1,0,132498,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27479,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27480,12,0,0,0,0,0,0,0,-1,0,134336,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27481,15,4,2,0,0,0,0,0,-1,0,132761,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27483,4,2,8,9,70,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27484,4,7,2,28,70,0,0,0,-1,0,134459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27485,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27486,4,4,0,1,0,0,0,0,-1,0,133073,8,0,70,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27487,4,4,6,7,70,0,0,0,-1,0,134678,9,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27488,4,1,7,1,70,0,0,0,-1,0,133136,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27489,4,4,6,9,70,0,0,0,-1,0,132612,8,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27490,2,0,1,13,70,3,0,0,-1,0,132452,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,224,0,0,0,0 +27491,4,0,3,11,70,0,0,0,-1,0,133401,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27492,4,2,8,7,70,0,0,0,-1,0,134606,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27493,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27494,4,3,5,9,70,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27495,4,0,3,2,70,0,0,0,-1,0,133330,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27496,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27497,4,4,1,10,70,0,0,0,-1,0,132963,9,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27498,0,4,7,0,60,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27499,0,4,7,0,60,1,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27500,0,4,7,0,60,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27501,0,4,7,0,60,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27502,0,4,7,0,60,0,0,0,-1,0,134943,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27503,0,4,7,0,60,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27505,4,4,6,1,70,0,0,0,-1,0,133101,9,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27506,4,1,7,20,70,0,0,0,-1,0,132679,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27507,2,18,2,26,70,0,0,0,-1,0,135544,8,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,239,0,0,0,0 +27508,4,1,7,10,70,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27509,4,2,8,10,70,0,0,0,-1,0,132935,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27510,4,3,5,10,70,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27511,7,11,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27512,2,7,1,21,70,3,0,0,-1,0,135271,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27513,7,11,0,0,0,0,0,0,-1,0,132762,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27514,4,2,8,7,70,0,0,0,-1,0,134637,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27515,15,0,7,23,0,0,0,0,-1,0,133925,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27516,15,0,4,23,0,0,0,0,-1,0,133923,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27517,4,1,7,9,68,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27518,4,8,2,28,68,0,0,0,-1,0,135730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27519,4,1,7,16,68,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27520,4,4,6,1,68,0,0,0,-1,0,133173,9,0,80,0,0,0,0,0,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27521,4,3,5,6,70,0,0,0,-1,0,132498,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27522,4,3,5,9,70,0,0,0,-1,0,132608,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27523,4,0,5,11,70,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27524,2,5,1,17,68,1,0,0,-1,0,133516,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0,418,0,0,0,0 +27525,4,1,7,8,68,0,0,0,-1,0,132569,7,0,40,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27526,2,2,2,15,68,0,0,0,-1,0,135505,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +27527,4,4,6,7,70,0,0,0,-1,0,134677,9,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27528,4,3,5,10,70,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27529,4,0,3,12,70,0,0,0,-1,0,134906,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27530,4,1,7,6,70,0,0,61,-1,0,132491,7,0,35,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27531,4,2,8,10,70,0,0,0,-1,0,132959,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27532,9,9,0,0,45,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27533,2,13,1,21,70,7,0,0,-1,0,135596,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +27534,4,0,3,23,70,7,0,0,-1,0,134115,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27535,4,4,1,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27536,4,1,7,10,70,0,0,0,-1,0,132961,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27537,4,1,7,10,70,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27538,2,4,2,21,70,3,0,0,-1,0,133060,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27539,4,4,6,3,70,0,0,0,-1,0,135068,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27540,2,19,2,26,70,0,0,0,-1,0,135479,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,303,0,0,0,0 +27541,4,3,5,6,70,0,0,0,-1,0,132514,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27542,4,1,6,6,70,0,0,0,-1,0,132519,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27543,2,15,1,21,70,3,0,0,-1,0,135672,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +27544,4,9,2,28,70,0,0,0,-1,0,136074,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27545,4,2,8,7,70,0,0,0,-1,0,134657,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27546,4,0,3,2,70,0,0,0,-1,0,134326,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27547,4,1,7,6,70,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27548,4,4,6,6,70,0,0,0,-1,0,132512,9,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27549,4,3,5,8,70,0,0,0,-1,0,132551,11,0,60,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27550,4,1,7,16,70,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27551,4,0,3,2,70,0,0,0,-1,0,133445,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27552,4,2,8,5,0,0,0,0,-1,0,132718,7,0,45,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27553,0,0,3,0,5,0,0,0,-1,0,132799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27554,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27555,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27556,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27557,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27558,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27559,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27560,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27561,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27562,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27563,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27564,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27565,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27566,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27567,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27568,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27569,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27570,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27571,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27572,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27573,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27574,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27575,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27576,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27577,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27578,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27579,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27580,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27581,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27582,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27583,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27584,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27585,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27586,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27587,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27588,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27589,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27590,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27591,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27592,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27593,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27594,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27595,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27596,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27597,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27598,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27599,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27600,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27601,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27602,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27603,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27604,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27605,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27606,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27607,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27608,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27609,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27610,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27611,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27612,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27613,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27614,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27615,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27616,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27617,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27618,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27619,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27620,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27621,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27622,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27623,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27624,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27625,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27626,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27627,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27628,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27629,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27630,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27631,2,16,1,25,63,0,0,0,-1,0,135430,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,86,0,0,0,0 +27632,12,0,0,0,0,0,0,0,-1,0,135134,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27633,12,0,0,0,0,0,0,0,-1,0,133067,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27634,12,0,0,0,0,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27635,0,5,0,0,0,0,0,0,-1,0,134003,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27636,0,5,0,0,5,0,0,0,-1,0,134042,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27637,4,2,8,6,66,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27638,4,1,7,6,66,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27639,4,4,6,6,66,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27640,2,18,1,26,0,0,0,0,-1,0,135543,8,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,26,0,0,0,0 +27641,2,10,1,17,0,2,0,0,-1,0,135224,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +27643,4,3,5,6,66,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27644,4,4,6,6,66,0,0,0,-1,0,132503,11,0,45,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27645,4,2,8,6,66,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27646,4,3,5,6,66,0,0,0,-1,0,132509,10,0,40,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27647,4,3,5,7,66,0,0,0,-1,0,134656,10,0,90,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27648,4,2,8,7,66,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27649,4,1,7,7,66,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27650,4,2,8,7,66,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27651,0,5,0,0,55,0,0,0,-1,0,134041,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27652,4,3,5,7,66,0,0,0,-1,0,134664,10,0,90,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27653,4,4,6,7,66,0,0,0,-1,0,134691,11,0,100,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27654,4,4,6,7,66,0,0,0,-1,0,134691,11,0,100,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27655,0,5,0,0,55,0,0,0,-1,0,134009,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27656,0,5,0,0,55,0,0,0,-1,0,134043,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27657,0,5,0,0,55,0,0,0,-1,0,134042,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27658,0,5,0,0,55,0,0,0,-1,0,134016,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27659,0,5,0,0,55,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27660,0,5,0,0,55,0,0,0,-1,0,134040,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27661,0,5,0,0,55,0,0,0,-1,0,134033,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27662,0,5,0,0,55,0,0,0,-1,0,134030,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27663,0,5,0,0,55,0,0,0,-1,0,134035,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27664,0,5,0,0,55,0,0,0,-1,0,134034,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27665,0,5,0,0,55,0,0,0,-1,0,134032,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27666,0,5,0,0,55,0,0,0,-1,0,133904,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27667,0,5,0,0,55,0,0,0,-1,0,133902,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27668,7,8,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27669,7,8,0,0,0,0,0,0,-1,0,134026,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27671,7,8,0,0,0,0,0,0,-1,0,134038,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27672,4,4,6,6,70,0,0,0,-1,0,132515,11,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27673,2,7,1,13,70,3,0,0,-1,0,135328,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,224,0,0,0,0 +27674,7,8,0,0,0,0,0,0,-1,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27676,7,8,0,0,0,0,0,0,-1,0,133851,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27677,7,8,0,0,0,0,0,0,-1,0,134037,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27678,7,8,0,0,0,0,0,0,-1,0,134036,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27679,3,2,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27680,1,0,8,18,0,0,0,0,-1,0,133650,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27681,7,8,0,0,0,0,0,0,-1,0,134039,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27682,7,8,0,0,0,0,0,0,-1,0,134027,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27683,4,0,0,12,70,0,0,0,-1,0,134120,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27684,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27685,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27686,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27687,9,5,2,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27688,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27689,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27690,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27691,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27692,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27693,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27694,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27695,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27696,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27697,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27698,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27699,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27700,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27701,2,4,2,13,1,3,0,0,-1,0,133476,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27702,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27703,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27704,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27705,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27706,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27707,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27708,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27709,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27710,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27711,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27712,4,2,8,9,70,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27713,4,3,5,3,70,0,0,0,-1,0,135051,11,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27714,4,0,8,23,70,0,0,0,-1,0,134552,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27715,4,4,5,1,0,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27716,4,4,6,5,0,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27717,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27718,4,4,6,7,0,0,0,0,-1,0,134584,11,0,85,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27719,4,2,8,7,0,0,0,0,-1,0,134586,7,0,65,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27720,4,1,7,20,0,0,0,0,-1,0,132654,7,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27721,4,4,6,8,0,0,0,0,-1,0,132583,11,0,55,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27722,4,3,5,10,0,0,0,0,-1,0,132946,10,0,35,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27723,4,2,8,6,0,0,0,0,-1,0,132514,7,0,30,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27724,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27725,4,4,6,3,0,0,0,0,-1,0,135045,11,0,70,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27726,4,3,5,6,0,0,0,0,-1,0,132515,10,0,35,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27727,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27728,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27729,15,0,0,0,0,0,0,0,-1,0,133730,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27730,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27731,4,1,7,16,0,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27732,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27733,4,0,0,11,0,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27734,4,0,0,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27735,4,0,0,2,0,0,0,0,-1,0,133282,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27736,9,5,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27737,4,2,8,3,70,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27738,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27739,4,4,6,3,70,0,0,0,-1,0,135041,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27740,4,0,0,11,70,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27741,2,4,2,21,70,3,0,0,-1,0,133495,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,224,0,0,0,0 +27742,4,1,7,6,70,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27743,4,3,5,6,70,0,0,0,-1,0,132500,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27744,4,8,2,28,70,0,0,0,-1,0,132121,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27745,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27746,4,1,7,9,70,0,0,0,-1,0,132618,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27747,2,13,1,22,70,7,0,0,-1,0,135602,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +27748,4,4,6,7,70,0,0,0,-1,0,132700,9,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27749,2,10,2,17,0,2,0,0,-1,0,135164,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,251,0,0,0,0 +27750,2,5,2,17,0,1,0,0,-1,0,133053,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +27751,2,6,1,17,0,2,0,0,-1,0,135125,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,259,0,0,0,0 +27752,2,8,1,17,0,1,0,0,-1,0,135348,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,227,0,0,0,0 +27753,2,15,1,21,0,3,0,0,-1,0,135410,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +27754,2,7,1,13,0,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,165,0,0,0,0 +27755,4,4,6,6,70,0,0,0,-1,0,132518,9,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27756,2,0,1,13,0,3,0,0,-1,0,132405,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +27757,2,10,2,17,70,2,0,0,-1,0,135192,13,0,100,0,0,0,0,0,0,360,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +27758,4,0,3,2,70,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27759,4,3,5,1,70,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27760,4,2,8,6,70,0,0,0,-1,0,132513,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27761,4,0,0,11,70,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27762,4,0,0,11,70,0,0,0,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27763,4,2,8,1,70,0,0,0,-1,0,133119,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27764,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27765,4,2,8,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27766,4,0,5,2,70,0,0,0,-1,0,133318,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27767,2,0,1,13,70,3,0,0,-1,0,132443,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,159,0,0,0,0 +27768,4,1,7,6,70,0,0,0,-1,0,132490,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27769,2,8,1,17,70,1,0,0,-1,0,135381,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,381,0,0,0,0 +27770,4,0,3,12,70,0,0,0,-1,0,133616,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27771,4,4,6,3,70,0,0,0,-1,0,135057,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27772,4,6,6,14,70,4,0,0,-1,0,134979,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27773,4,3,5,7,70,0,0,0,-1,0,134631,11,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27774,7,4,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27775,4,1,7,3,70,0,0,0,-1,0,135053,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27776,4,2,8,3,70,0,0,0,-1,0,135055,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27777,3,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27778,4,1,7,3,70,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27779,4,0,3,2,70,0,0,0,-1,0,133291,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27780,4,0,5,11,70,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27781,4,1,7,1,70,0,0,0,-1,0,133174,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27783,4,2,8,6,68,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27784,4,0,3,11,68,0,0,0,-1,0,133404,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27785,3,4,0,0,0,0,0,0,-1,0,134093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27786,3,4,0,0,0,0,0,0,-1,0,134091,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27787,4,2,8,5,68,0,0,0,-1,0,132746,7,0,100,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27788,4,4,6,8,68,0,0,0,-1,0,132547,9,0,65,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27789,4,1,7,16,68,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27790,4,4,6,1,68,0,0,0,-1,0,133176,9,0,80,0,0,0,0,0,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27791,2,10,2,17,68,2,0,0,-1,0,135184,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,260,0,0,0,0 +27792,4,0,3,2,68,0,0,0,-1,0,132300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27793,4,3,5,10,68,0,0,0,-1,0,132937,10,0,40,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27794,2,3,1,26,68,0,0,0,-1,0,135627,9,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,244,0,0,0,0 +27795,4,1,7,6,70,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27796,4,1,7,3,70,0,0,0,-1,0,135053,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27797,4,2,8,3,70,0,0,0,-1,0,135046,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27798,4,4,1,10,70,0,0,0,-1,0,132953,9,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27799,4,1,7,20,70,0,0,0,-1,0,132659,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27800,4,2,8,7,70,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27801,4,3,5,3,70,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27802,4,3,5,3,70,0,0,0,-1,0,135062,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27803,4,4,6,3,70,0,0,0,-1,0,135057,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27804,4,1,7,16,70,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27805,4,0,0,11,70,0,0,0,-1,0,133408,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27806,4,3,5,10,70,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27807,12,0,0,0,0,0,0,0,-1,0,135989,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27808,13,0,0,0,0,0,0,0,-1,0,134236,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27809,3,4,0,0,0,0,0,0,-1,0,134091,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27811,7,4,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27812,3,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27813,4,4,6,8,70,0,0,0,-1,0,132554,11,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27814,2,15,1,13,70,3,0,0,-1,0,135666,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +27815,4,9,2,28,70,0,0,0,-1,0,136233,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27816,4,1,7,3,70,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27817,2,2,2,15,70,0,0,0,-1,0,135494,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,242,0,0,0,0 +27818,4,2,8,20,70,0,0,0,-1,0,132649,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27819,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27820,3,4,0,0,0,0,0,0,-1,0,134093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27821,4,1,7,8,70,0,0,0,-1,0,132569,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27822,4,0,3,11,70,0,0,0,-1,0,133396,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27823,4,3,5,5,70,0,0,0,-1,0,132635,11,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27824,4,1,7,20,70,0,0,0,-1,0,132679,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27825,4,2,8,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27826,4,3,5,3,70,0,0,0,-1,0,135064,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27827,4,2,8,9,70,0,0,0,-1,0,132605,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27828,4,0,0,12,70,0,0,0,-1,0,134932,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27829,2,1,1,17,70,1,0,0,-1,0,132457,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,381,0,0,0,0 +27830,4,0,4,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27831,4,2,8,3,70,0,0,0,-1,0,135048,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27832,4,0,4,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27833,4,0,4,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27834,4,0,4,11,60,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27835,4,3,5,6,70,0,0,0,-1,0,132492,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27836,2,4,2,13,1,3,0,0,-1,0,133041,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27837,4,2,8,7,70,0,0,0,-1,0,134656,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27838,4,1,7,7,70,0,0,0,-1,0,134614,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27839,4,4,6,7,70,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27840,2,5,1,17,70,1,0,0,-1,0,133531,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0,408,0,0,0,0 +27841,12,0,0,0,0,0,0,0,-1,0,136063,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27842,2,10,2,17,70,2,0,0,-1,0,135181,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +27843,4,1,7,6,70,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27844,4,4,6,3,70,0,0,0,-1,0,135066,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27845,4,3,5,8,70,0,0,0,-1,0,132556,11,0,60,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27846,2,13,1,21,70,7,0,0,-1,0,135598,15,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,233,0,0,0,0 +27847,4,4,6,3,70,0,0,0,-1,0,135065,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27848,4,1,7,8,70,0,0,0,-1,0,132563,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27849,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +27850,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27851,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27852,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +27853,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27854,0,5,0,0,55,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27855,0,5,0,0,55,0,0,0,-1,0,134051,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27856,0,5,0,0,55,0,0,0,-1,0,134049,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27857,0,5,0,0,55,0,0,0,-1,0,134050,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27858,0,5,0,0,55,0,0,0,-1,0,134053,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27859,0,5,0,0,55,0,0,0,-1,0,134525,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27860,0,5,3,0,65,0,0,0,-1,0,132831,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27861,12,0,0,0,0,0,0,0,-1,0,133874,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27862,2,5,2,17,1,1,0,0,-1,0,133038,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27863,7,4,0,0,0,0,0,0,-1,0,134090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27864,7,4,0,0,0,0,0,0,-1,0,134090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27865,4,3,5,9,70,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27866,4,1,0,1,70,0,0,0,-1,0,133154,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27867,4,2,8,8,70,0,0,0,-1,0,132549,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27868,2,15,1,21,68,3,0,0,-1,0,135687,24,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +27869,4,0,3,11,70,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27870,4,4,6,7,70,0,0,0,-1,0,134688,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27871,4,0,3,2,70,0,0,0,-1,0,135980,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27872,2,0,1,13,70,3,0,0,-1,0,132449,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +27873,4,2,8,7,70,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27874,4,3,5,7,70,0,0,0,-1,0,134583,11,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27875,4,1,7,7,70,0,0,0,-1,0,134612,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27876,2,4,2,21,70,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27877,2,10,2,17,70,2,0,0,-1,0,135179,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +27878,4,1,7,16,70,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27879,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27880,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27881,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27882,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27883,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27884,4,4,6,8,68,0,0,0,-1,0,132547,9,0,65,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27885,2,19,2,26,68,0,0,0,-1,0,135467,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,293,0,0,0,0 +27886,4,8,2,28,68,0,0,0,-1,0,136061,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27887,4,6,1,14,68,4,0,0,-1,0,134980,9,0,100,0,0,0,0,0,0,3711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27888,4,3,5,1,68,0,0,0,-1,0,133123,11,0,70,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27889,4,1,7,10,68,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27890,2,19,2,26,68,0,0,0,-1,0,135480,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,293,0,0,0,0 +27891,4,0,3,12,68,0,0,0,-1,0,134907,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27892,4,1,7,16,68,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27893,4,4,6,7,68,0,0,0,-1,0,134697,9,0,100,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27894,15,0,8,0,0,0,0,0,-1,0,134323,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27895,4,0,3,11,68,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,190,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 +27896,4,0,0,12,70,0,0,0,-1,0,134755,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27897,4,4,6,5,68,0,0,0,-1,0,132746,9,0,135,0,0,0,0,0,0,1135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27898,2,3,1,26,68,0,0,0,-1,0,135628,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27899,2,7,1,21,70,3,0,0,-1,0,135414,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27900,4,0,3,12,68,0,0,0,-1,0,134115,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27901,2,4,2,13,68,3,0,0,-1,0,133515,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,136,0,0,0,0 +27902,4,1,7,8,70,0,0,0,-1,0,132566,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27903,2,6,1,17,70,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +27904,4,0,0,11,70,0,0,0,-1,0,133406,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27905,2,7,1,21,70,3,0,0,-1,0,135339,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27906,4,4,6,5,70,0,0,0,-1,0,132743,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27907,4,1,7,7,70,0,0,0,-1,0,134611,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27908,4,2,8,7,70,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27909,4,3,5,7,70,0,0,0,-1,0,134658,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27910,4,6,6,14,70,4,0,0,-1,0,134981,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27911,4,2,8,6,70,0,0,0,-1,0,132508,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27912,4,3,5,5,70,0,0,0,-1,0,132720,11,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27913,2,15,1,13,70,3,0,0,-1,0,135686,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,164,0,0,0,0 +27914,4,2,8,8,68,0,0,0,-1,0,132571,7,0,50,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27915,4,3,5,8,68,0,0,0,-1,0,132548,10,0,60,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27916,2,16,1,25,68,0,0,0,-1,0,135430,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,120,0,0,0,0 +27917,4,7,2,28,68,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27918,4,4,6,9,68,0,0,0,-1,0,132609,8,0,45,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27919,4,1,7,8,68,0,0,0,-1,0,132559,7,0,40,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27920,4,0,4,12,62,0,0,0,-1,0,133606,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27921,4,0,4,12,62,0,0,0,-1,0,133607,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27922,4,0,4,12,62,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27923,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +27924,4,0,4,12,62,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27925,4,0,5,11,68,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27926,4,0,4,12,62,0,0,0,-1,0,134909,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27927,4,0,4,12,62,0,0,0,-1,0,134909,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27928,2,16,1,25,62,0,0,0,-1,0,132394,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,96,0,0,0,0 +27929,2,16,1,25,62,0,0,0,-1,0,132394,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,96,0,0,0,0 +27930,2,2,2,15,62,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +27931,2,2,2,15,62,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +27932,15,0,8,0,0,0,0,0,-1,0,134296,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27933,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27934,15,0,8,0,0,0,0,0,-1,0,134296,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27935,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27936,4,3,5,7,68,0,0,0,-1,0,134614,11,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27937,2,4,2,21,68,3,0,0,-1,0,133514,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +27938,4,2,8,1,70,0,0,0,-1,0,133175,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27939,2,19,2,26,62,0,0,0,-1,0,135473,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,240,0,0,0,0 +27940,4,0,0,2,0,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27941,4,0,0,2,1,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27942,2,19,2,26,62,0,0,0,-1,0,135473,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,240,0,0,0,0 +27943,12,0,0,0,0,0,0,0,-1,0,136008,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27944,4,0,0,2,0,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27945,4,0,0,2,1,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27946,4,1,7,16,68,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27947,4,9,2,28,62,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27948,4,1,7,7,68,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27949,4,7,2,28,62,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27950,4,4,6,6,55,0,0,121,-1,0,132491,7,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27951,4,4,6,8,55,0,0,121,-1,0,132543,7,0,65,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27952,4,4,6,5,55,0,0,121,-1,0,135008,7,0,135,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27953,4,4,6,10,55,0,0,121,-1,0,132957,7,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27954,4,4,6,1,55,0,0,121,-1,0,133135,7,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27955,4,4,6,7,55,0,0,121,-1,0,134586,7,0,100,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27956,4,4,6,3,55,0,0,121,-1,0,135040,7,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27957,4,4,6,9,55,0,0,121,-1,0,132609,7,0,45,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27958,4,0,3,2,55,0,0,121,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27959,4,0,3,11,55,0,0,121,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27960,4,1,7,16,55,0,0,121,-1,0,133766,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27961,2,8,1,17,55,0,0,121,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,234,0,0,0,0 +27962,2,8,1,17,55,0,0,121,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,123,0,0,0,0 +27963,4,4,6,6,60,0,0,121,-1,0,132491,7,0,55,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27964,4,4,6,8,60,0,0,121,-1,0,132543,7,0,75,0,0,0,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27965,4,4,6,5,60,0,0,121,-1,0,135008,7,0,165,0,0,0,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27966,4,4,6,10,60,0,0,121,-1,0,132957,7,0,55,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27967,4,4,6,1,60,0,0,121,-1,0,133135,7,0,100,0,0,0,0,0,0,1326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27968,4,4,6,7,60,0,0,121,-1,0,134586,7,0,120,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27969,4,4,6,3,60,0,0,121,-1,0,135040,7,0,100,0,0,0,0,0,0,1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27970,4,4,6,9,60,0,0,121,-1,0,132609,7,0,55,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27971,4,0,3,2,60,0,0,121,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27972,4,0,3,11,60,0,0,121,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27973,4,1,7,16,60,0,0,121,-1,0,133766,7,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27974,2,8,1,17,60,0,0,121,-1,0,135145,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0,561,0,0,0,0 +27975,2,8,1,17,60,0,0,121,-1,0,135145,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,295,0,0,0,0 +27976,4,0,0,2,0,0,0,0,-1,0,133281,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27977,4,4,6,7,68,0,0,0,-1,0,134682,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27978,4,0,0,2,1,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27979,4,0,0,2,0,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27980,2,4,2,13,68,3,0,0,-1,0,133056,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +27981,4,1,7,16,68,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27982,4,0,0,2,0,0,0,0,-1,0,133434,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27983,4,7,2,28,62,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27984,4,9,2,28,62,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27985,4,4,6,6,68,0,0,0,-1,0,132512,8,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27986,2,1,1,17,68,1,0,0,-1,0,132456,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,381,0,0,0,0 +27987,2,2,2,15,68,0,0,0,-1,0,135507,13,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,252,0,0,0,0 +27988,4,1,7,16,68,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27989,4,8,2,28,62,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27990,4,8,2,28,62,0,0,0,-1,0,134912,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27991,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27992,4,0,0,2,0,0,0,0,-1,0,133300,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27993,4,3,5,1,68,0,0,0,-1,0,133119,11,0,70,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27994,4,1,7,3,68,0,0,0,-1,0,135067,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27995,4,2,8,3,68,0,0,0,-1,0,135039,7,0,60,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27996,4,0,3,11,68,0,0,0,-1,0,133401,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27997,4,4,6,6,55,0,0,102,-1,0,132491,7,0,45,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27998,4,4,6,8,55,0,0,102,-1,0,132543,7,0,65,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27999,4,4,6,5,55,0,0,102,-1,0,135008,7,0,135,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28000,4,4,6,10,55,0,0,102,-1,0,132957,7,0,45,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28001,4,4,6,1,55,0,0,102,-1,0,133135,7,0,80,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28002,4,4,6,7,55,0,0,102,-1,0,134586,7,0,100,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28003,4,4,6,3,55,0,0,102,-1,0,135040,7,0,80,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28004,4,4,6,9,55,0,0,102,-1,0,132609,7,0,45,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28005,4,0,3,2,55,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28006,4,0,3,11,55,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28007,4,1,7,16,55,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28008,2,8,1,17,55,0,0,102,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,234,0,0,0,0 +28009,2,8,1,17,55,0,0,102,-1,0,135145,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,123,0,0,0,0 +28010,4,4,6,6,60,0,0,102,-1,0,132491,7,0,55,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28011,4,4,6,8,60,0,0,102,-1,0,132543,7,0,75,0,0,0,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28012,4,4,6,5,60,0,0,102,-1,0,135008,7,0,165,0,0,0,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28013,4,4,6,10,60,0,0,102,-1,0,132957,7,0,55,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28014,4,4,6,1,60,0,0,102,-1,0,133135,7,0,100,0,0,0,0,0,0,1326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28015,4,4,6,7,60,0,0,102,-1,0,134586,7,0,120,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28016,4,4,6,3,60,0,0,102,-1,0,135040,7,0,100,0,0,0,0,0,0,1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28017,4,4,6,9,60,0,0,102,-1,0,132609,7,0,55,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28018,4,0,3,2,60,0,0,102,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28019,4,0,3,11,60,0,0,102,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28020,4,1,7,16,60,0,0,102,-1,0,133766,7,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28021,2,8,1,17,60,0,0,102,-1,0,135145,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0,561,0,0,0,0 +28022,2,8,1,17,60,0,0,102,-1,0,135145,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,295,0,0,0,0 +28023,2,16,1,25,1,0,0,0,-1,0,132392,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +28024,12,0,0,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28025,15,0,0,0,1,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28026,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28027,4,0,5,2,0,0,0,0,-1,0,133291,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28028,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28029,4,1,7,9,0,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28030,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28031,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28032,4,1,7,16,0,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28033,2,10,2,17,68,2,0,0,-1,0,135182,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,260,0,0,0,0 +28034,4,0,0,12,68,0,0,0,-1,0,133018,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28037,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28038,0,0,0,0,58,0,0,0,-1,0,133712,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28039,12,0,0,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28040,4,0,3,12,0,0,0,0,-1,0,132780,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28041,4,0,3,12,0,0,0,0,-1,0,132780,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28042,4,0,3,12,0,0,0,0,-1,0,132780,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28043,4,0,3,2,0,0,0,0,-1,0,133316,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28044,4,0,4,11,0,0,0,0,-1,0,133379,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28045,4,1,7,16,0,0,0,0,-1,0,132655,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28046,12,0,0,0,0,0,0,0,-1,0,134942,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28047,12,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28048,12,0,0,0,0,0,0,0,-1,0,133717,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28049,12,0,0,0,0,0,0,0,-1,0,134130,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28050,4,2,8,5,0,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28051,4,2,8,5,0,0,0,0,-1,0,132646,7,0,100,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28052,4,1,7,5,0,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28053,6,2,2,24,55,0,0,0,-1,0,133578,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,22,0,0,0,0 +28054,4,4,6,5,0,0,0,0,-1,0,132760,11,0,135,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28055,4,4,6,5,0,0,0,0,-1,0,132629,7,0,135,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28056,6,2,2,24,65,0,0,0,-1,0,133576,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,32,0,0,0,0 +28057,4,3,5,5,0,0,0,0,-1,0,132751,10,0,120,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28058,15,0,8,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28059,15,0,3,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28060,6,3,2,24,55,0,0,0,-1,0,133582,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,22,0,0,0,0 +28061,6,3,2,24,65,0,0,0,-1,0,133586,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,32,0,0,0,0 +28062,2,18,2,26,0,0,0,0,-1,0,135537,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +28063,2,19,2,26,0,0,0,0,-1,0,135463,21,0,55,0,4,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,143,0,0,0,0 +28064,4,8,2,28,0,0,0,0,-1,0,136095,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28065,4,7,2,28,0,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28066,4,9,2,28,0,0,0,0,-1,0,134919,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28067,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28068,9,0,0,0,69,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28069,4,4,5,8,0,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28070,4,3,5,10,0,0,0,0,-1,0,132944,11,0,40,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28071,9,0,0,0,50,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28072,9,0,0,0,60,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28073,9,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28074,4,2,8,8,0,0,0,0,-1,0,132541,7,0,50,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28075,4,1,7,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28076,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28077,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28078,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28079,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28080,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28081,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28082,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28083,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28084,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28085,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28086,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28087,2,7,1,13,60,3,0,0,-1,0,135277,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +28088,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28089,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28090,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28091,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28092,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28093,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28094,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28095,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28096,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28097,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28098,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28099,12,0,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28100,0,1,0,0,55,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28101,0,1,3,0,55,0,0,0,-1,0,134855,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28102,0,2,3,0,50,0,0,0,-1,0,134838,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28103,0,2,3,0,50,0,0,0,-1,0,134876,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28104,0,2,3,0,50,0,0,0,-1,0,134734,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28105,12,0,0,0,0,0,0,0,-1,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28106,15,0,0,0,0,0,0,0,-1,0,132489,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28107,12,0,0,0,0,0,0,0,-1,0,134942,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28108,4,0,4,12,0,0,0,0,-1,0,134532,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28109,4,0,4,12,0,0,0,0,-1,0,134532,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28110,0,0,0,0,58,0,0,0,-1,0,133712,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28111,4,0,0,0,0,0,0,0,-1,0,134192,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28112,0,5,0,0,0,0,0,0,-1,0,134001,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28113,15,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28114,15,0,0,0,58,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28115,2,8,1,17,0,1,0,0,-1,0,135329,9,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,37,0,0,0,0 +28116,12,0,0,0,0,0,0,0,-1,0,132996,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28117,7,4,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28118,3,0,0,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28119,3,2,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28120,3,2,0,0,0,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28121,4,0,0,12,70,0,0,0,-1,0,132619,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28122,7,4,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28123,3,5,0,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28124,4,2,8,6,70,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28125,2,8,1,17,1,1,0,0,-1,0,135273,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28126,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28127,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28128,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28129,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28130,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28131,0,0,0,0,58,0,0,0,-1,0,133710,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28132,0,0,0,0,58,0,0,0,-1,0,133709,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28133,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28134,4,0,3,2,68,0,0,0,-1,0,133314,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28135,15,0,0,0,60,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28136,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28137,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28138,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28139,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28140,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28141,4,1,7,6,0,0,0,0,-1,0,132495,7,0,18,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28142,4,2,8,6,0,0,0,0,-1,0,132492,7,0,20,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28143,4,3,5,6,0,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28144,4,1,7,10,0,0,0,0,-1,0,132940,7,0,16,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28145,4,2,8,10,0,0,0,0,-1,0,132952,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28146,4,1,7,9,0,0,0,0,-1,0,132612,7,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28147,4,2,8,9,0,0,0,0,-1,0,132604,7,0,20,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28148,4,3,5,9,0,0,0,0,-1,0,132611,10,0,20,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28149,4,2,8,7,0,0,0,0,-1,0,134582,7,0,40,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28150,4,1,7,16,0,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28151,2,19,2,26,0,0,0,0,-1,0,135139,21,0,35,0,6,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,22,0,0,0,0 +28152,2,2,2,15,0,0,0,0,-1,0,135490,12,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +28153,4,6,1,14,0,4,0,0,-1,0,134950,9,0,50,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28154,4,1,7,7,0,0,0,0,-1,0,134586,7,0,40,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28155,4,1,7,6,12,0,0,0,-1,0,133694,7,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28156,4,1,7,10,0,0,0,0,-1,0,132950,7,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28157,4,2,8,5,0,0,0,0,-1,0,132760,7,0,65,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28158,4,2,8,6,12,0,0,0,-1,0,132498,7,0,20,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28159,4,2,8,10,0,0,0,0,-1,0,132939,7,0,20,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28160,4,3,5,5,0,0,0,0,-1,0,132634,10,0,75,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28161,4,3,5,7,0,0,0,0,-1,0,134583,10,0,55,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28162,4,3,5,6,12,0,0,0,-1,0,132492,10,0,25,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28163,4,3,5,10,0,0,0,0,-1,0,132938,10,0,25,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28164,2,8,1,17,10,1,0,0,-1,0,135277,9,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,44,0,0,0,0 +28165,2,3,1,26,47,0,0,0,-1,0,135624,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +28166,4,6,6,14,64,4,0,0,-1,0,134959,9,0,100,0,0,0,0,0,0,3234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28167,4,4,6,9,0,0,0,0,-1,0,132616,11,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28168,4,0,3,2,0,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28169,4,1,7,1,0,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28170,4,3,5,9,0,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28171,4,2,8,9,0,0,0,0,-1,0,132607,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28172,4,2,8,5,0,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28173,4,3,5,7,0,0,0,0,-1,0,134661,11,0,90,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28174,4,1,7,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28175,4,4,6,7,0,0,0,0,-1,0,134697,11,0,100,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28176,4,4,0,8,0,0,0,0,-1,0,132544,10,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28177,4,3,5,8,0,0,0,0,-1,0,132554,11,0,60,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28178,4,2,8,8,0,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28179,4,1,7,8,0,0,0,0,-1,0,132579,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28180,4,4,6,1,0,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28181,4,3,5,1,0,0,0,0,-1,0,133140,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28182,4,2,8,1,0,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28183,4,1,7,1,0,0,0,0,-1,0,133164,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28184,2,7,1,13,68,3,0,0,-1,0,135374,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +28185,4,1,7,7,68,0,0,0,-1,0,134630,7,0,65,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28186,4,3,5,5,68,0,0,0,-1,0,132719,10,0,120,0,0,0,0,0,0,635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28187,4,0,3,23,68,7,0,0,-1,0,134551,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28188,2,10,2,17,70,2,0,0,-1,0,135177,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +28189,2,7,1,13,70,3,0,0,-1,0,135386,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +28190,4,0,0,12,70,0,0,0,-1,0,133575,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28191,4,1,7,20,70,0,0,0,-1,0,132683,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28192,4,3,5,1,70,0,0,0,-1,0,133120,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28193,4,1,7,1,70,0,0,0,-1,0,133398,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28194,4,3,5,9,70,0,0,0,-1,0,132611,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28195,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28196,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28197,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28198,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28199,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28200,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28201,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28202,4,2,8,20,70,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28203,4,4,6,5,70,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28204,4,2,8,5,70,0,0,0,-1,0,132639,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28205,4,4,6,5,70,0,0,0,-1,0,132637,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28206,4,2,8,1,70,0,0,0,-1,0,133131,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28207,4,4,6,3,70,0,0,0,-1,0,135032,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28208,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28209,12,0,0,0,7,0,0,0,-1,0,133280,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28210,2,4,2,13,70,3,0,0,-1,0,133524,24,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +28211,4,0,3,11,70,0,0,0,-1,0,133352,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28212,4,1,7,7,70,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28213,4,0,7,23,70,7,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28214,4,2,8,10,70,0,0,0,-1,0,132941,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28215,4,3,5,1,70,0,0,0,-1,0,133174,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28216,2,4,2,21,70,3,0,0,-1,0,133048,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +28217,4,0,3,2,70,0,0,0,-1,0,135438,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28218,4,1,7,7,70,0,0,0,-1,0,134612,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28219,4,3,5,7,70,0,0,0,-1,0,134668,11,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28220,4,2,8,1,70,0,0,0,-1,0,133126,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28221,4,4,6,8,70,0,0,0,-1,0,132551,9,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28222,2,1,1,17,70,1,0,0,-1,0,132458,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28223,4,0,0,12,70,0,0,0,-1,0,133254,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28224,4,2,8,1,70,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28225,4,4,6,1,70,0,0,0,-1,0,133122,9,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28226,2,15,1,13,70,3,0,0,-1,0,135686,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +28227,4,0,5,11,70,0,0,0,-1,0,133405,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28228,4,3,5,5,70,0,0,0,-1,0,132625,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28229,4,1,7,20,70,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28230,4,1,7,20,70,0,0,0,-1,0,132680,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28231,4,3,5,5,70,0,0,0,-1,0,132625,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28232,4,1,7,20,70,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28233,4,0,3,2,70,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28234,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28235,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28236,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28237,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28238,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28239,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28240,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28241,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28242,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28243,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28244,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28245,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28246,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28247,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28248,4,9,2,28,70,0,0,0,-1,0,135735,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28249,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28250,4,1,7,3,70,0,0,0,-1,0,135066,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28251,4,2,8,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28252,4,1,7,20,70,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28253,2,6,1,17,70,2,0,0,-1,0,135565,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +28254,4,0,3,2,70,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28255,4,2,8,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28256,4,1,7,16,70,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28257,2,4,2,21,70,3,0,0,-1,0,133488,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +28258,2,16,1,25,70,0,0,0,-1,0,133793,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,124,0,0,0,0 +28259,4,0,3,11,70,0,0,0,-1,0,133404,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28260,4,0,7,23,70,7,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28261,15,0,0,0,1,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28262,4,4,6,5,70,0,0,0,-1,0,132742,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28263,2,0,1,13,70,3,0,0,-1,0,132450,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,177,0,0,0,0 +28264,4,2,8,5,70,0,0,0,-1,0,132639,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28265,4,0,3,11,70,0,0,0,-1,0,133392,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28266,4,3,5,7,70,0,0,0,-1,0,134678,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28267,2,7,1,13,70,3,0,0,-1,0,135387,24,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +28268,4,2,8,10,70,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28269,4,1,7,16,70,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28270,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28271,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28272,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28273,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28274,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28275,4,3,5,1,70,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28276,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28277,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28278,4,1,0,1,70,0,0,0,-1,0,133136,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28279,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28280,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28281,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28282,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28283,12,0,0,0,0,0,0,0,-1,0,134375,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28284,0,5,3,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28285,4,4,6,1,70,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28286,2,3,1,26,70,0,0,0,-1,0,135630,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,259,0,0,0,0 +28287,12,0,0,0,0,0,0,0,-1,0,134799,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28288,4,0,0,12,70,0,0,0,-1,0,133876,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28289,15,0,0,0,60,0,0,0,-1,0,134227,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28290,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28291,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28292,12,0,0,0,0,0,0,0,-1,0,135181,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28293,2,8,1,17,70,1,0,0,-1,0,135358,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28294,2,18,2,26,70,0,0,0,-1,0,135539,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,307,0,0,0,0 +28295,2,7,1,13,70,3,0,0,-1,0,135381,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,285,0,0,0,0 +28296,4,7,2,28,70,0,0,0,-1,0,133744,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28297,2,15,1,21,70,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +28298,2,1,1,17,70,1,0,0,-1,0,132455,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,513,0,0,0,0 +28299,2,5,1,17,70,1,0,0,-1,0,133532,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,513,0,0,0,0 +28300,2,6,1,17,70,1,0,0,-1,0,135565,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,313,0,0,0,0 +28301,4,1,7,16,70,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,78,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0 +28302,2,4,1,22,70,3,0,0,-1,0,133516,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +28303,4,0,4,11,0,0,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28304,4,1,7,10,70,0,0,0,-1,0,132950,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28305,2,4,1,13,70,3,0,0,-1,0,133516,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,285,0,0,0,0 +28306,4,3,5,3,70,0,0,0,-1,0,135042,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28307,2,7,1,22,70,3,0,0,-1,0,135381,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +28308,2,0,1,13,70,3,0,0,-1,0,132442,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,285,0,0,0,0 +28309,2,0,1,22,70,3,0,0,-1,0,132442,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +28310,2,15,1,22,70,3,0,0,-1,0,135680,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,166,0,0,0,0 +28311,2,7,1,13,70,3,0,0,-1,0,135389,24,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +28312,2,15,1,13,70,3,0,0,-1,0,135680,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +28313,2,13,1,21,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,309,0,0,0,0 +28314,2,13,1,22,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +28315,2,13,1,22,70,7,0,0,-1,0,135599,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +28316,4,6,1,14,70,4,0,0,-1,0,134980,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28317,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28318,4,4,6,8,70,0,0,0,-1,0,132587,9,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28319,2,16,1,25,70,0,0,0,-1,0,132394,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,172,0,0,0,0 +28320,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,414,0,0,0,0 +28321,4,0,3,2,70,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28322,2,15,1,21,70,3,0,0,-1,0,135687,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +28323,4,0,5,11,70,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28324,4,4,6,10,70,0,0,0,-1,0,132960,9,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28325,2,10,2,17,70,2,0,0,-1,0,135185,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +28327,4,0,5,11,70,0,0,0,-1,0,133404,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28328,4,1,7,16,70,0,0,0,-1,0,133761,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28331,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28332,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28333,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28334,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28335,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28336,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28337,4,4,6,5,70,0,0,0,-1,0,132743,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28338,4,1,7,7,70,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28339,4,2,8,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28340,4,2,8,3,70,0,0,0,-1,0,135049,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28341,2,10,2,17,70,2,0,0,-1,0,135183,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +28342,4,1,7,20,70,0,0,0,-1,0,132670,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28343,4,0,3,2,70,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28344,4,3,5,3,70,0,0,0,-1,0,135049,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28345,2,15,1,13,70,3,0,0,-1,0,135692,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,112,0,0,0,0 +28346,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28347,4,2,8,7,70,0,0,0,-1,0,134673,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28348,4,2,8,1,70,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28349,4,3,5,1,70,0,0,0,-1,0,133121,11,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28350,4,4,6,1,70,0,0,0,-1,0,133122,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28351,12,0,0,0,0,0,0,0,-1,0,135359,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28352,12,0,0,0,0,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28353,12,0,0,0,0,0,0,0,-1,0,133153,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28354,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +28355,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28356,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28357,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28358,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,5197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28359,12,0,0,0,0,0,0,0,-1,0,134330,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28360,3,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28361,3,0,0,0,0,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28362,3,0,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28363,3,5,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28364,12,0,0,0,0,0,0,0,-1,0,134083,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28365,2,6,1,17,1,2,0,0,-1,0,135128,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28366,4,0,3,23,0,7,0,0,-1,0,134125,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28367,2,8,1,17,70,1,0,0,-1,0,135368,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +28368,12,0,0,0,0,0,0,0,-1,0,133325,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28369,12,0,0,0,0,0,0,0,-1,0,135624,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28370,4,0,0,12,70,0,0,0,-1,0,133314,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28371,4,1,7,16,70,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28372,4,8,2,28,70,0,0,0,-1,0,132130,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28373,4,1,7,16,70,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28374,4,1,7,3,70,0,0,0,-1,0,135063,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28375,4,4,6,6,70,0,0,0,-1,0,132512,8,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28376,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28377,4,1,7,16,70,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28378,4,1,7,16,70,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28379,4,1,7,16,70,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28380,4,1,7,16,70,0,0,0,-1,0,133759,7,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28381,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28383,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28384,4,3,5,8,70,0,0,0,-1,0,132552,11,0,60,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28385,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28386,2,19,2,26,70,0,0,0,-1,0,135478,21,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,303,0,0,0,0 +28387,4,0,3,23,70,3,0,0,-1,0,133488,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28388,7,4,0,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28389,7,4,0,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28390,4,4,0,10,70,0,0,0,-1,0,132964,8,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28391,4,3,5,5,70,0,0,0,-1,0,132760,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28392,2,13,1,21,70,7,0,0,-1,0,135599,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,252,0,0,0,0 +28393,2,5,1,17,70,1,0,0,-1,0,133522,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0,408,0,0,0,0 +28394,4,0,3,11,70,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28395,13,0,0,0,0,0,0,0,-1,0,134236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28396,4,2,8,10,70,0,0,0,-1,0,132956,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28397,2,18,2,26,70,0,0,0,-1,0,135546,8,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,239,0,0,0,0 +28398,4,2,8,6,70,0,0,0,-1,0,132515,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28399,0,5,3,0,60,0,0,0,-1,0,132830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28400,2,7,1,13,70,3,0,0,-1,0,135361,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,159,0,0,0,0 +28401,4,3,5,5,70,0,0,0,-1,0,132625,11,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28402,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28403,4,4,6,5,70,0,0,0,-1,0,132637,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28404,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28405,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28406,4,1,7,8,70,0,0,0,-1,0,132561,7,0,40,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28407,4,0,3,11,70,0,0,0,-1,0,133426,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28408,15,0,1,25,0,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +28409,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28410,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28411,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28412,4,0,3,23,70,7,0,0,-1,0,134553,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28413,4,1,0,1,70,0,0,0,-1,0,133404,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28414,4,2,8,1,70,0,0,0,-1,0,133117,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28415,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28416,2,15,1,13,70,3,0,0,-1,0,135671,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28417,12,0,0,0,0,0,0,0,-1,0,136067,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28418,4,0,0,12,70,0,0,0,-1,0,133007,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28419,4,0,5,2,70,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28420,0,8,0,0,50,0,0,0,-1,0,135260,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28421,0,8,0,0,60,0,0,0,-1,0,135261,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28422,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28423,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28424,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28425,2,7,1,13,70,3,0,0,-1,0,135318,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,176,0,0,0,0 +28426,2,7,1,13,70,3,0,0,-1,0,135319,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +28427,2,7,1,13,70,3,0,0,-1,0,135320,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,203,0,0,0,0 +28428,2,8,1,17,70,1,0,0,-1,0,135332,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0,474,0,0,0,0 +28429,2,8,1,17,70,1,0,0,-1,0,135333,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,513,0,0,0,0 +28430,2,8,1,17,70,1,0,0,-1,0,135334,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0,549,0,0,0,0 +28431,2,0,1,21,70,3,0,0,-1,0,132411,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,296,0,0,0,0 +28432,2,0,1,21,70,3,0,0,-1,0,132412,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,320,0,0,0,0 +28433,2,0,1,21,70,3,0,0,-1,0,132413,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,343,0,0,0,0 +28434,2,1,1,17,70,1,0,0,-1,0,132438,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0,487,0,0,0,0 +28435,2,1,1,17,70,1,0,0,-1,0,132439,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,527,0,0,0,0 +28436,2,1,1,17,70,1,0,0,-1,0,132440,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0,564,0,0,0,0 +28437,2,4,1,21,70,3,0,0,-1,0,133517,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,296,0,0,0,0 +28438,2,4,1,21,70,3,0,0,-1,0,133518,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,320,0,0,0,0 +28439,2,4,1,21,70,3,0,0,-1,0,133519,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,343,0,0,0,0 +28440,2,5,1,17,70,1,0,0,-1,0,133507,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0,500,0,0,0,0 +28441,2,5,1,17,70,1,0,0,-1,0,133508,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0,541,0,0,0,0 +28442,2,5,1,17,70,1,0,0,-1,0,133509,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,579,0,0,0,0 +28443,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28444,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28445,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28446,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28447,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28448,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28449,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28450,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28451,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28452,12,0,0,0,0,0,0,0,-1,0,132787,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28453,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28454,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28455,12,0,0,0,0,0,0,0,-1,0,135181,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28456,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28457,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28458,3,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28459,3,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28460,3,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28461,3,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28462,3,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28463,3,1,0,0,0,0,0,0,-1,0,134089,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28464,3,1,0,0,0,0,0,0,-1,0,134089,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28465,3,1,0,0,0,0,0,0,-1,0,134089,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28466,3,2,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28467,3,2,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28468,3,2,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28469,3,2,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28470,3,2,0,0,0,0,0,0,-1,0,134137,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28471,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28472,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28473,12,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28474,12,0,0,0,0,0,0,0,-1,0,134945,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28475,12,0,0,0,0,0,0,0,-1,0,133146,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28476,2,5,1,17,70,1,0,0,-1,0,133532,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,285,0,0,0,0 +28477,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28478,15,0,0,0,0,0,0,0,-1,0,132489,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28479,12,0,0,0,0,0,0,0,-1,0,134423,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28481,15,5,0,0,30,0,0,0,-1,0,132254,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28482,15,5,0,0,60,0,0,0,-1,0,132257,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28483,4,4,0,5,70,0,0,0,-1,0,132749,9,0,165,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28484,4,4,0,5,70,0,0,0,-1,0,132750,9,0,165,0,0,0,0,0,0,1595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28485,4,4,0,5,70,0,0,0,-1,0,132751,9,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28486,0,5,0,0,55,0,0,0,-1,0,133989,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28487,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28488,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28489,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28490,12,0,0,0,0,0,0,0,-1,0,133691,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28491,4,1,7,8,63,0,0,141,-1,0,132549,7,0,40,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28492,4,2,7,8,63,0,0,142,-1,0,132573,7,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28493,4,3,7,8,63,0,0,143,-1,0,132544,10,0,60,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28494,4,4,7,8,63,0,0,144,-1,0,132583,11,0,65,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28495,4,1,7,6,63,0,0,141,-1,0,132504,7,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28496,4,2,7,6,63,0,0,142,-1,0,132499,7,0,30,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28497,4,3,7,6,63,0,0,143,-1,0,132515,10,0,35,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28498,4,4,7,6,63,0,0,144,-1,0,132508,11,0,40,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28499,15,0,1,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28500,12,0,0,0,0,0,0,0,-1,0,132851,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28501,0,5,0,0,55,0,0,0,-1,0,132835,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28502,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28503,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28504,2,18,2,26,70,0,0,0,-1,0,135547,8,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,288,0,0,0,0 +28505,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28506,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28507,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28508,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28509,4,0,4,2,70,0,0,0,-1,0,133309,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28510,4,0,3,11,70,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28511,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28512,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28513,0,0,0,0,0,0,0,0,-1,0,134397,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28514,4,2,8,9,70,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28515,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28516,4,0,4,2,70,0,0,0,-1,0,133340,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28517,4,1,7,8,70,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28518,4,4,6,10,70,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28519,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28520,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28521,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28522,2,4,1,21,70,3,0,0,-1,0,133063,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,217,0,0,0,0 +28523,4,9,2,28,70,0,0,0,-1,0,136037,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28524,2,15,1,13,70,3,0,0,-1,0,135673,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,189,0,0,0,0 +28525,4,0,3,23,70,0,0,0,-1,0,133402,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28526,12,0,0,0,0,0,0,0,-1,0,134130,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28527,12,0,0,0,0,0,0,0,-1,0,133849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28528,4,0,4,12,70,0,0,0,-1,0,134377,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28529,4,1,7,16,70,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28530,4,0,3,2,70,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28531,2,16,2,25,57,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,89,0,0,0,0 +28532,2,16,2,25,58,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,91,0,0,0,0 +28533,2,16,2,25,59,0,0,95,-1,0,135646,12,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +28534,2,16,2,25,60,0,0,95,-1,0,135651,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +28535,2,16,2,25,61,0,0,95,-1,0,132410,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +28536,2,16,2,25,62,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,99,0,0,0,0 +28537,2,16,2,25,63,0,0,95,-1,0,132410,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +28538,2,16,2,25,64,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +28539,2,16,2,25,65,0,0,95,-1,0,135646,12,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,111,0,0,0,0 +28540,2,16,2,25,66,0,0,95,-1,0,132400,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +28541,2,16,2,25,67,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,119,0,0,0,0 +28542,2,16,2,25,68,0,0,95,-1,0,135654,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,123,0,0,0,0 +28543,2,16,2,25,69,0,0,95,-1,0,132402,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,127,0,0,0,0 +28544,2,16,2,25,70,0,0,95,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,130,0,0,0,0 +28545,4,2,8,8,70,0,0,0,-1,0,132587,7,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28546,4,0,0,20,0,0,0,0,-1,0,135015,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28547,12,0,0,0,0,0,0,0,-1,0,133860,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28548,12,0,0,0,0,0,0,0,-1,0,136116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28549,12,0,0,0,0,0,0,0,-1,0,133743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28550,12,0,0,0,0,0,0,0,-1,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28551,12,0,0,0,0,0,0,0,-1,0,132996,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28552,12,0,0,0,58,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28553,4,0,5,11,67,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28554,0,0,0,0,0,0,0,0,-1,0,134067,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28555,4,0,5,11,67,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28556,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28557,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28558,12,0,0,0,0,0,0,0,-1,0,133286,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28559,4,4,6,1,66,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28560,4,4,6,1,66,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28561,4,2,8,1,66,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28562,12,0,0,0,1,0,0,0,-1,0,134229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28563,12,0,0,0,0,0,0,0,-1,0,135593,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28564,12,0,0,0,0,0,0,0,-1,0,136039,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28565,4,1,7,6,70,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28566,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28567,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28568,4,8,2,28,70,0,0,0,-1,0,134478,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28569,4,4,1,8,70,0,0,0,-1,0,132548,9,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28570,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28571,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28572,2,15,1,13,70,3,0,0,-1,0,135674,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,168,0,0,0,0 +28573,2,8,1,17,70,1,0,0,-1,0,135379,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,479,0,0,0,0 +28574,4,2,8,1,66,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28575,4,2,8,1,66,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28576,4,3,5,1,66,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28577,4,3,5,1,66,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28578,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28579,4,0,4,12,70,0,0,0,-1,0,134711,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28580,0,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28581,2,3,1,26,70,0,0,0,-1,0,135631,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,278,0,0,0,0 +28582,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28583,4,3,5,1,70,0,0,0,-1,0,133072,10,0,85,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28584,2,13,1,21,70,7,0,0,-1,0,134297,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,285,0,0,0,0 +28585,4,1,7,8,70,0,0,0,-1,0,132566,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28586,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28587,2,1,1,17,70,1,0,0,-1,0,132436,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,479,0,0,0,0 +28588,2,19,2,26,70,0,0,0,-1,0,135477,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,314,0,0,0,0 +28589,4,3,5,3,70,0,0,0,-1,0,135067,11,0,85,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28590,4,0,4,12,70,0,0,0,-1,0,133686,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28591,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28592,4,7,2,28,70,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28593,4,4,0,1,70,0,0,0,-1,0,133071,10,0,100,0,0,0,0,0,0,1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28594,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28595,3,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28596,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28597,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28598,12,0,0,0,67,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28599,4,3,5,5,70,0,0,0,-1,0,132629,11,0,140,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28600,4,2,8,5,70,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28601,4,2,8,5,70,0,0,0,-1,0,132721,7,0,120,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28602,4,1,7,20,70,0,0,0,-1,0,132653,7,0,100,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28603,4,0,3,23,70,0,0,0,-1,0,134549,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28604,2,10,2,17,70,2,0,0,-1,0,135193,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,438,0,0,0,0 +28605,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28606,4,6,6,14,70,4,0,0,-1,0,134974,9,0,120,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28607,0,0,0,0,0,0,0,0,-1,0,134473,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28608,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28609,4,0,4,2,70,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28610,4,3,5,8,70,0,0,0,-1,0,132547,11,0,70,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28611,4,6,6,14,70,4,0,0,-1,0,134982,9,0,120,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28612,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28613,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28614,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28615,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28616,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28617,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28618,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28619,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28620,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28621,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28622,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28623,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28624,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28625,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28626,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28627,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28628,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28629,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28630,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28631,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28632,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28633,2,10,2,17,70,2,0,0,-1,0,135567,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,438,0,0,0,0 +28634,12,0,0,0,0,0,0,0,-1,0,133878,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28635,0,0,0,0,0,0,0,0,-1,0,132643,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28636,0,0,0,0,0,0,0,0,-1,0,132956,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28637,0,0,0,0,0,0,0,0,-1,0,133280,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28638,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28639,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28640,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28641,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28642,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28643,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28644,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28645,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28646,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28647,4,2,8,3,70,0,0,0,-1,0,135032,7,0,70,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28648,2,14,1,13,1,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28649,4,0,3,11,70,0,0,0,-1,0,133389,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28650,2,6,1,17,1,1,0,94,-1,0,135646,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +28651,12,0,0,0,1,0,0,0,-1,0,134229,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28652,4,1,7,6,70,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28653,4,1,7,16,70,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28654,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28655,4,2,8,6,70,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28656,4,3,5,6,70,0,0,0,-1,0,132511,11,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28657,2,4,1,21,70,3,0,0,-1,0,135679,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,296,0,0,0,0 +28658,2,10,2,17,70,2,0,0,-1,0,135191,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0,411,0,0,0,0 +28659,2,16,1,25,70,0,0,0,-1,0,135671,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,133,0,0,0,0 +28660,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28661,4,0,3,11,70,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28662,4,4,1,5,70,0,0,0,-1,0,132738,9,0,165,0,0,0,0,0,0,1450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28663,4,1,7,8,70,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28664,15,0,0,0,0,0,0,0,-1,0,133471,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28665,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28666,4,4,1,3,70,0,0,0,-1,0,135066,9,0,100,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28667,12,0,0,0,0,0,0,0,-1,0,133707,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28668,12,0,0,0,0,0,0,0,-1,0,134007,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28669,4,2,8,8,70,0,0,0,-1,0,132587,7,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28670,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28671,4,3,5,1,70,0,0,0,-1,0,133073,11,0,85,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28672,4,1,7,16,70,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28673,2,19,2,26,70,0,0,0,-1,0,135484,21,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,314,0,0,0,0 +28674,4,0,3,2,70,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28675,4,0,3,11,70,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28676,12,0,0,0,0,0,0,0,-1,0,134338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28677,15,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28678,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +28679,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28680,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28681,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28683,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28684,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28685,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28686,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28687,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28688,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28689,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28690,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28691,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28692,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28693,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28694,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28695,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28696,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28697,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28698,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28699,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28700,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28701,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28702,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28703,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28704,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28705,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28706,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28707,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28708,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28709,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28710,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28711,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28712,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28713,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28714,4,1,7,3,70,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28715,4,1,7,1,70,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28716,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28717,4,1,7,20,70,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28718,4,1,7,7,70,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28719,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28720,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28721,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28722,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28723,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28724,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28725,12,0,0,0,0,0,0,0,-1,0,135734,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28726,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28727,4,0,4,12,70,0,0,0,-1,0,135440,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28728,4,0,3,23,70,0,0,0,-1,0,134132,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28729,2,7,1,13,70,1,0,0,-1,0,135384,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,308,0,0,0,0 +28730,4,0,3,11,70,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28731,4,0,4,2,70,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28732,4,2,8,1,70,0,0,0,-1,0,133160,7,0,70,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28733,4,4,1,6,70,0,0,0,-1,0,132511,9,0,55,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28734,4,0,3,23,70,0,0,0,-1,0,134102,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28735,4,3,5,5,70,0,0,0,-1,0,132743,10,0,140,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28736,2,4,2,21,1,3,0,0,-1,0,133042,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +28737,4,6,1,14,1,4,0,0,-1,0,134954,9,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28738,2,10,2,17,1,2,0,0,-1,0,135167,13,0,20,0,0,0,0,0,0,0,0,0,0,0,20,0,2,0,0,0,0,4,0,0,0,0 +28739,2,10,2,17,1,2,0,0,-1,0,135149,13,0,20,0,0,0,0,0,0,0,0,0,0,0,20,0,2,0,0,0,0,4,0,0,0,0 +28740,4,3,5,7,70,0,0,0,-1,0,134678,11,0,105,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28741,4,2,8,7,70,0,0,0,-1,0,134638,7,0,90,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28742,4,1,7,7,70,0,0,0,-1,0,134607,7,0,75,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28743,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28744,4,1,7,1,70,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28745,4,0,4,2,70,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28746,4,3,5,8,70,0,0,0,-1,0,132548,11,0,70,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28747,4,4,1,8,70,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28748,4,4,1,7,70,0,0,0,-1,0,134694,9,0,120,0,0,0,0,0,0,1269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28749,2,7,1,13,70,3,0,0,-1,0,135384,8,0,105,0,0,0,0,0,0,182,0,0,0,0,0,0,98,0,0,0,0,182,0,0,0,0 +28750,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28751,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28752,4,2,8,8,70,0,0,0,-1,0,132548,7,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28753,4,0,3,11,70,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28754,4,6,6,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28755,4,2,8,3,70,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28756,4,1,7,1,70,0,0,0,-1,0,132767,8,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28757,4,0,4,11,70,0,0,0,-1,0,133427,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28758,4,3,5,1,66,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28759,4,1,7,1,66,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28760,4,1,7,1,66,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28761,4,4,6,1,66,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28762,4,0,4,2,70,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28763,4,0,3,11,70,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28764,4,1,7,16,70,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28765,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28766,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28767,2,0,1,21,70,3,0,0,-1,0,132453,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,312,0,0,0,0 +28768,2,15,1,13,70,3,0,0,-1,0,135675,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,199,0,0,0,0 +28769,12,0,0,0,0,0,0,0,-1,0,134425,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28770,2,15,1,21,70,3,0,0,-1,0,135676,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,216,0,0,0,0 +28771,2,4,1,21,70,3,0,0,-1,0,133526,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,216,0,0,0,0 +28772,2,2,2,15,70,0,0,0,-1,0,135506,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,314,0,0,0,0 +28773,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,518,0,0,0,0 +28774,2,6,1,17,70,1,0,0,-1,0,135566,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,532,0,0,0,0 +28775,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28776,4,2,8,10,70,0,0,0,-1,0,132953,7,0,40,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28777,4,1,7,16,70,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28778,4,3,5,6,70,0,0,0,-1,0,132509,11,0,50,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28779,4,4,1,6,70,0,0,0,-1,0,132511,9,0,55,0,0,0,0,0,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28780,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28781,4,0,3,23,70,0,0,0,-1,0,134542,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28782,2,10,2,17,70,2,0,0,-1,0,135189,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,460,0,0,0,0 +28783,2,19,2,26,70,0,0,0,-1,0,135483,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,330,0,0,0,0 +28784,0,0,0,0,0,0,0,0,-1,0,132483,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28785,4,0,4,12,70,0,0,0,-1,0,135444,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28786,12,0,0,0,0,0,0,0,-1,0,132786,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28787,12,0,0,0,0,0,0,0,-1,0,133874,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28788,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28789,4,0,4,12,70,0,0,0,-1,0,132840,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28790,4,0,3,11,0,0,0,0,-1,0,133412,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28791,4,0,3,11,0,0,0,0,-1,0,133413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28792,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28793,4,0,3,11,0,0,0,0,-1,0,133407,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28794,2,1,1,17,70,1,0,0,-1,0,132451,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,518,0,0,0,0 +28795,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28796,4,2,8,1,70,0,0,0,-1,0,133160,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28797,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28798,4,0,7,12,0,0,0,0,-1,0,133438,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28799,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28800,2,5,1,17,70,1,0,0,-1,0,133065,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,518,0,0,0,0 +28801,4,3,5,1,70,0,0,0,-1,0,133125,11,0,85,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28802,2,7,1,21,70,3,0,0,-1,0,135375,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,216,0,0,0,0 +28803,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28804,4,1,7,1,70,0,0,0,-1,0,133129,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28805,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28806,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28807,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28808,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28809,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28810,4,3,5,8,70,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28811,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28812,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28813,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28814,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28815,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28816,4,0,3,11,1,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28817,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28818,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28819,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28820,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28821,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28822,4,0,4,2,70,0,0,0,-1,0,133726,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28823,4,0,4,12,70,0,0,0,-1,0,136224,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28824,4,4,6,10,70,0,0,0,-1,0,132965,11,0,55,0,0,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28825,4,6,6,14,70,4,0,0,-1,0,134975,9,0,120,0,0,0,0,0,0,5279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28826,2,16,1,25,70,0,0,0,-1,0,133572,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,120,0,0,0,0 +28827,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28828,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28829,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28830,4,0,4,12,70,0,0,0,-1,0,133720,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28831,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28832,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28833,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28834,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28835,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28836,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28837,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28838,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28839,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28840,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28841,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28842,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28843,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28844,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28845,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28846,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28847,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28848,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28849,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28850,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28851,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28852,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28853,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28854,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28855,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28856,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28857,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28858,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28859,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28860,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28861,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28862,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28863,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28864,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28865,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28866,4,1,7,3,70,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28867,4,1,7,1,70,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28868,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28869,4,1,7,20,70,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28870,4,1,7,7,70,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28871,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28872,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28873,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28874,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28875,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28878,12,0,0,0,64,0,0,0,-1,0,135967,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28881,12,0,0,0,64,0,0,0,-1,0,135970,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28882,12,0,0,0,64,0,0,0,-1,0,135911,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28885,12,0,0,0,64,0,0,0,-1,0,135906,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28886,12,0,0,0,70,0,0,0,-1,0,135970,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28887,12,0,0,0,70,0,0,0,-1,0,135910,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28888,12,0,0,0,70,0,0,0,-1,0,135908,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28889,12,0,0,0,70,0,0,0,-1,0,135880,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28903,12,0,0,0,64,0,0,0,-1,0,134336,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28904,12,0,0,0,64,0,0,0,-1,0,135977,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28905,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +28906,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +28907,12,0,0,0,64,0,0,0,-1,0,132147,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28908,12,0,0,0,64,0,0,0,-1,0,135884,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28909,12,0,0,0,70,0,0,0,-1,0,134335,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28910,12,0,0,0,70,0,0,0,-1,0,135986,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28911,12,0,0,0,70,0,0,0,-1,0,135885,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28912,12,0,0,0,70,0,0,0,-1,0,135939,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28913,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28914,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +28915,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28916,2,8,2,17,1,1,0,0,-1,0,135369,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +28917,2,5,1,17,70,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28918,2,1,1,17,70,1,0,0,-1,0,132401,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28919,2,5,1,17,70,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28920,2,0,1,13,70,3,0,0,-1,0,132393,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28921,2,0,1,13,70,3,0,0,-1,0,132393,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28922,2,13,1,22,70,7,0,0,-1,0,135593,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +28923,2,6,1,17,70,1,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,246,0,0,0,0 +28924,2,4,1,13,70,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28925,2,4,1,13,70,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28926,2,7,1,13,70,3,0,0,-1,0,135271,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28927,15,5,0,0,30,0,0,0,-1,0,132227,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28928,2,13,1,21,70,7,0,0,-1,0,135593,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +28929,2,15,1,13,70,3,0,0,-1,0,135665,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28930,2,15,1,13,70,3,0,0,-1,0,135665,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +28931,2,15,1,21,70,3,0,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +28933,2,18,2,26,70,0,0,0,-1,0,135539,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,255,0,0,0,0 +28934,12,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28935,2,10,2,17,70,2,0,0,-1,0,133729,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,336,0,0,0,0 +28936,15,5,0,0,60,0,0,0,-1,0,132232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28937,2,7,1,13,70,3,0,0,-1,0,135271,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28938,4,0,7,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28939,4,6,1,14,70,4,0,0,-1,0,134965,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28940,4,6,1,14,70,4,0,0,-1,0,134965,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28941,4,0,7,23,70,7,0,0,-1,0,133744,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28942,2,5,1,17,70,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28943,2,8,1,17,70,1,0,0,-1,0,135349,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28944,2,0,1,13,70,3,0,0,-1,0,132394,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28945,2,1,1,17,70,1,0,0,-1,0,132400,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28946,2,0,1,13,70,3,0,0,-1,0,132394,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28947,2,13,1,22,70,7,0,0,-1,0,135593,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +28948,2,5,1,17,70,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +28949,2,6,1,17,70,1,0,0,-1,0,135574,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,246,0,0,0,0 +28950,2,4,1,13,70,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28951,2,4,1,13,70,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28952,2,7,1,13,70,3,0,0,-1,0,135275,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28953,2,13,1,21,70,7,0,0,-1,0,135593,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +28954,2,15,1,13,70,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +28955,2,15,1,13,70,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +28956,2,7,1,13,70,3,0,0,-1,0,135275,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,224,0,0,0,0 +28957,2,15,1,21,70,3,0,0,-1,0,135662,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +28959,2,10,2,17,70,2,0,0,-1,0,135144,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,336,0,0,0,0 +28960,2,18,2,26,70,0,0,0,-1,0,135539,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,255,0,0,0,0 +28962,12,0,0,0,0,0,0,0,-1,0,135164,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28963,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28964,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28965,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28966,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28967,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28968,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28969,12,0,0,0,0,0,0,0,-1,0,133870,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28970,12,0,4,0,0,0,0,0,-1,0,135894,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28971,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28972,2,16,1,25,55,0,0,0,-1,0,135424,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +28973,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28974,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28975,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28976,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28977,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28978,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28979,2,16,1,25,1,0,0,0,-1,0,135656,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +28980,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28981,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28982,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28983,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28984,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28985,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28986,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28987,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28988,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28989,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28990,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28991,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28992,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28993,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28994,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28995,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28996,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28997,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28998,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28999,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29000,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29001,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29002,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29003,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29004,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29005,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29006,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29007,2,16,1,25,3,0,0,0,-1,0,132414,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +29008,2,16,1,25,11,0,0,0,-1,0,132392,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,16,0,0,0,0 +29009,2,16,1,25,22,0,0,0,-1,0,135650,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,27,0,0,0,0 +29010,2,16,1,25,35,0,0,0,-1,0,135651,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +29011,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29012,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29013,2,16,1,25,50,0,0,0,-1,0,135419,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +29014,2,16,1,25,50,0,0,0,-1,0,135660,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,67,0,0,0,0 +29015,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29016,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29017,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29018,12,0,0,0,0,0,0,0,-1,0,135164,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29019,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29020,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29021,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29022,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29023,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29024,0,0,0,0,0,0,0,0,-1,0,136032,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29025,12,0,0,0,0,0,0,0,-1,0,135164,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29026,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29027,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29028,4,3,5,1,70,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29029,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29030,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29031,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29032,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29033,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29034,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29035,4,3,5,1,70,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29036,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29037,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29038,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29039,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29040,4,3,5,1,70,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29041,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29042,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29043,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29044,4,2,8,1,70,0,0,0,-1,0,133160,7,0,70,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29045,4,2,8,5,70,0,0,0,-1,0,132737,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29046,4,2,8,7,70,0,0,0,-1,0,134681,7,0,90,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29047,4,2,8,3,70,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29048,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29049,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29050,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29051,12,0,0,0,0,0,0,0,-1,0,134379,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29052,12,0,0,0,0,0,0,0,-1,0,133866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29053,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29054,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29055,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29056,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29057,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29058,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29059,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29060,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29061,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29062,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29063,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29064,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29065,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29066,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29067,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29068,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29069,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29070,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29071,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29072,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29073,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29074,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29075,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29076,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29077,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29078,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29079,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29080,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29081,4,3,5,1,70,0,0,0,-1,0,133117,11,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29082,4,3,5,5,70,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29083,4,3,5,7,70,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29084,4,3,5,3,70,0,0,0,-1,0,135045,11,0,85,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29085,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29086,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29087,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29088,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29089,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29090,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29091,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29092,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29093,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29094,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29095,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29096,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29097,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29098,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29099,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29100,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29101,12,0,0,0,0,0,0,0,-1,0,134229,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29102,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29103,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29104,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29105,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29106,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29107,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29108,2,7,1,13,0,3,0,0,-1,0,135324,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +29109,2,10,2,17,0,2,0,0,-1,0,135149,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +29110,15,0,0,0,0,0,0,0,-1,0,133752,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29111,15,0,0,0,0,0,0,0,-1,0,135450,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29112,0,5,3,0,0,0,0,0,-1,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29113,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29114,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29115,2,3,1,26,70,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,207,0,0,0,0 +29116,4,2,8,7,70,0,0,0,-1,0,134582,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29117,4,1,7,5,70,0,0,0,-1,0,132649,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29118,11,3,8,18,68,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29119,4,0,3,2,70,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29120,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29121,2,15,1,13,70,3,0,0,-1,0,135667,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,156,0,0,0,0 +29122,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29123,4,0,3,2,70,0,0,0,-1,0,133279,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29124,2,7,1,13,70,3,0,0,-1,0,135411,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,275,0,0,0,0 +29125,2,15,1,13,70,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +29126,4,0,3,11,70,0,0,0,-1,0,133394,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29127,4,4,6,5,70,0,0,0,-1,0,132737,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29128,4,0,5,11,70,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29129,4,1,7,20,70,0,0,0,-1,0,132660,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29130,2,10,2,17,70,2,0,0,-1,0,135151,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,235,0,0,0,0 +29131,4,2,8,7,70,0,0,0,-1,0,134643,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29132,4,0,0,12,70,0,0,0,-1,0,134085,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29133,2,10,2,17,70,2,0,0,-1,0,135175,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,235,0,0,0,0 +29134,4,4,1,10,70,0,0,0,-1,0,132960,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29135,4,3,5,1,70,0,0,0,-1,0,133119,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29136,4,3,5,1,70,0,0,0,-1,0,133072,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29137,2,1,1,17,70,1,0,0,-1,0,132434,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +29138,2,5,1,17,70,1,0,0,-1,0,133525,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +29139,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29140,4,1,7,16,70,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29141,4,2,8,7,70,0,0,0,-1,0,134639,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29142,4,2,8,7,70,0,0,0,-1,0,134639,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29143,11,2,8,18,68,0,0,0,-1,0,134408,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29144,11,2,8,18,68,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29145,4,0,5,11,70,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29146,4,0,5,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29147,4,2,8,3,70,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29148,4,2,8,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29149,2,19,2,26,62,0,0,0,-1,0,135139,21,0,65,0,2,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +29150,2,15,1,13,62,3,0,0,-1,0,135644,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,120,0,0,0,0 +29151,2,3,1,26,70,0,0,0,-1,0,135611,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,259,0,0,0,0 +29152,2,2,2,15,70,0,0,0,-1,0,135496,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,269,0,0,0,0 +29153,2,7,1,21,70,3,0,0,-1,0,135672,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +29154,12,0,0,0,0,0,0,0,-1,0,135628,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29155,2,7,1,21,70,3,0,0,-1,0,135271,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +29156,2,7,1,13,70,3,0,0,-1,0,135291,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +29157,4,0,0,11,31,0,0,0,-1,0,133388,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29158,4,0,0,11,35,0,0,0,-1,0,133372,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29159,4,0,5,11,51,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29160,4,0,5,11,53,0,0,0,-1,0,133360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29161,12,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29162,0,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29163,12,0,0,0,0,0,0,0,-1,0,132781,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29164,12,0,0,0,0,0,0,0,-1,0,134131,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29165,2,0,1,13,70,3,0,0,-1,0,132401,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +29166,2,6,1,17,70,2,0,0,-1,0,135582,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +29167,2,6,1,17,70,2,0,0,-1,0,135126,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,392,0,0,0,0 +29168,4,0,5,11,70,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29169,4,0,5,11,70,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29170,4,0,3,23,70,0,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29171,2,5,4,17,70,1,0,0,-1,0,133047,9,0,120,0,0,0,0,0,0,500,0,0,0,0,0,0,270,0,0,0,0,406,0,0,0,0 +29172,4,0,3,11,70,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29173,4,0,3,2,70,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29174,4,1,8,1,70,0,0,0,-1,0,133136,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29175,2,4,1,21,70,3,0,0,-1,0,133041,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +29176,4,6,6,14,70,4,0,0,-1,0,134975,9,0,120,0,0,0,0,0,0,4465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29177,4,0,3,11,70,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29179,4,0,0,12,70,0,0,0,-1,0,133858,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29180,4,3,5,6,70,0,0,0,-1,0,132497,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29181,4,0,4,12,70,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29182,2,15,1,13,70,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +29183,4,1,7,9,70,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29184,4,4,6,7,70,0,0,0,-1,0,134686,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29185,2,7,1,21,70,3,0,0,-1,0,135291,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +29186,12,0,0,0,70,0,0,0,-1,0,132365,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29187,12,0,0,0,70,0,0,0,-1,0,132360,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29188,12,0,0,0,69,0,0,0,-1,0,136080,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29189,12,0,0,0,70,0,0,0,-1,0,135917,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29190,12,0,0,0,70,0,0,0,-1,0,135917,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29191,12,0,0,0,70,0,0,0,-1,0,136050,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29192,12,0,0,0,70,0,0,0,-1,0,132121,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29193,12,0,0,0,70,0,0,0,-1,0,134446,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29194,12,0,0,0,70,0,0,0,-1,0,136074,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29195,12,0,0,0,70,0,0,0,-1,0,135733,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29196,12,0,0,0,70,0,0,0,-1,0,135824,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29197,12,0,0,0,70,0,0,0,-1,0,135824,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29198,12,0,0,0,70,0,0,0,-1,0,135843,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29199,12,0,0,0,70,0,0,0,-1,0,136192,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29200,2,3,1,26,0,0,0,0,-1,0,135614,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +29201,2,16,1,25,15,0,0,0,-1,0,135128,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,24,0,0,0,0 +29202,2,16,1,25,35,0,0,0,-1,0,132396,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,57,0,0,0,0 +29203,2,16,1,25,55,0,0,0,-1,0,135662,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +29204,2,16,1,25,70,0,0,0,-1,0,135662,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,135,0,0,0,0 +29205,12,0,0,0,0,0,0,0,-1,0,133314,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29206,12,0,0,0,0,0,0,0,-1,0,133316,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29207,12,0,0,0,0,0,0,0,-1,0,134381,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29208,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29209,12,0,0,0,0,0,0,0,-1,0,134517,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29210,2,16,1,25,58,0,0,0,-1,0,135424,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,112,0,0,0,0 +29211,2,16,1,25,0,0,0,0,-1,0,135424,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,149,0,0,0,0 +29212,2,16,1,25,0,0,0,0,-1,0,135427,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +29213,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29214,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29215,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29216,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29217,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29218,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29219,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29220,15,5,0,0,30,0,0,0,-1,0,132229,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29221,15,5,0,0,30,0,0,0,-1,0,132228,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29222,15,5,0,0,30,0,0,0,-1,0,132231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29223,15,5,0,0,60,0,0,0,-1,0,132235,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29224,15,5,0,0,60,0,0,0,-1,0,132236,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29225,15,5,0,0,60,0,0,0,-1,0,132233,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29226,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29227,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29228,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29229,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29230,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29231,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29232,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29233,12,0,0,0,67,0,0,0,-1,0,135359,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29234,12,0,0,0,67,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29235,12,0,0,0,67,0,0,0,-1,0,133775,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29236,12,0,0,0,67,0,0,0,-1,0,133153,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29237,4,4,6,9,70,0,0,0,-1,0,132606,11,0,55,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29238,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29239,4,4,1,8,70,0,0,0,-1,0,132582,9,0,75,0,0,0,0,0,0,955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29240,4,1,7,9,70,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29241,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29242,4,1,7,8,70,0,0,0,-1,0,132568,7,0,50,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29243,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29244,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29245,4,3,5,8,70,0,0,0,-1,0,132549,10,0,70,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29246,4,2,8,9,70,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29247,4,2,8,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29248,4,2,8,8,70,0,0,0,-1,0,132562,10,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29249,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29250,4,1,7,6,70,0,0,0,-1,0,132504,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29251,4,1,7,8,70,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29252,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29253,4,4,1,6,70,0,0,0,-1,0,132500,9,0,55,0,0,0,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29254,4,4,1,8,70,0,0,0,-1,0,132548,9,0,75,0,0,0,0,0,0,955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29255,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29257,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29258,4,1,7,8,70,0,0,0,-1,0,132563,7,0,50,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29259,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29260,12,0,0,0,0,0,0,0,-1,0,133001,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29261,4,3,5,6,70,0,0,0,-1,0,132519,11,0,50,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29262,4,3,5,8,70,0,0,0,-1,0,132548,11,0,70,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29263,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29264,4,2,8,6,70,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29265,4,2,8,8,70,0,0,0,-1,0,132548,7,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29266,4,6,6,14,70,4,0,0,-1,0,134978,9,0,120,0,0,0,0,0,0,4668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29267,4,6,6,14,70,4,0,0,-1,0,134978,9,0,120,0,0,0,0,0,0,4668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29268,4,6,6,14,70,4,0,0,-1,0,134982,9,0,120,0,0,0,0,0,0,4668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29269,4,0,3,23,70,0,0,0,-1,0,133718,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29270,4,0,3,23,70,0,0,0,-1,0,135824,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29271,4,0,3,23,70,0,0,0,-1,0,134550,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29272,4,0,3,23,70,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29273,4,0,3,23,70,0,0,0,-1,0,133642,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29274,4,0,3,23,70,0,0,0,-1,0,134855,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29275,2,15,1,22,70,3,0,0,-1,0,133456,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,145,0,0,0,0 +29276,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29277,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29278,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29279,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29280,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29281,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29282,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29283,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29284,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29285,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29286,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29287,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29288,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29289,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29290,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29291,4,0,3,11,0,0,0,0,-1,0,133404,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29292,0,5,0,0,55,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29293,0,5,0,0,55,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29294,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29295,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29296,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29297,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29298,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29299,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29300,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29301,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29302,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29303,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29304,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29305,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29306,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29307,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29308,4,0,3,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29309,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29310,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29311,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29312,4,4,6,1,0,0,0,0,-1,0,133127,11,0,80,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29313,4,3,5,8,0,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29314,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29315,4,1,7,10,0,0,0,0,-1,0,132948,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29316,4,4,6,3,0,0,0,0,-1,0,135032,11,0,80,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29317,4,1,7,10,0,0,0,0,-1,0,132966,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29318,4,2,8,8,0,0,0,0,-1,0,132549,7,0,50,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29319,4,3,5,6,0,0,0,0,-1,0,132513,10,0,40,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29320,4,0,5,11,0,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29321,4,0,5,11,0,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29322,4,0,5,11,0,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29323,4,0,5,11,0,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29324,0,0,0,0,0,0,0,0,-1,0,134125,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29325,4,4,6,8,0,0,0,0,-1,0,132585,11,0,65,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29326,4,3,5,3,0,0,0,0,-1,0,135034,10,0,70,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29327,4,2,8,10,0,0,0,0,-1,0,132956,7,0,35,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29328,4,1,7,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29329,2,6,1,17,0,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,370,0,0,0,0 +29330,4,0,8,23,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29331,12,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29332,4,2,8,1,0,0,0,0,-1,0,133694,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29333,4,0,3,2,0,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29334,4,0,3,2,0,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29335,4,0,3,2,0,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29336,4,0,3,2,0,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29337,4,4,0,5,0,0,0,0,-1,0,132745,9,0,135,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29338,12,0,0,0,0,0,0,0,-1,0,136213,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29339,4,3,0,5,0,0,0,0,-1,0,132745,11,0,120,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29340,4,2,8,5,0,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29341,4,1,7,20,0,0,0,0,-1,0,132687,7,0,80,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29342,4,4,6,7,0,0,0,0,-1,0,134584,9,0,100,0,0,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29343,4,2,8,7,0,0,0,0,-1,0,134626,7,0,75,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29344,4,3,5,7,0,0,0,0,-1,0,134583,10,0,90,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29345,4,1,7,7,0,0,0,0,-1,0,134637,7,0,65,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29346,2,15,1,13,70,3,0,0,-1,0,135348,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +29347,4,0,3,2,70,0,0,0,-1,0,132177,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29348,2,13,1,21,70,7,0,0,-1,0,135601,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,283,0,0,0,0 +29349,4,0,3,2,70,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29350,2,19,2,26,70,0,0,0,-1,0,135481,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,307,0,0,0,0 +29351,2,2,2,15,70,0,0,0,-1,0,135545,15,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,295,0,0,0,0 +29352,4,0,3,11,70,0,0,0,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29353,2,4,1,21,70,3,0,0,-1,0,133534,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,207,0,0,0,0 +29354,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29355,2,10,2,17,70,2,0,0,-1,0,135569,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,417,0,0,0,0 +29356,2,8,1,17,70,1,0,0,-1,0,135391,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,456,0,0,0,0 +29357,4,2,8,10,70,0,0,0,-1,0,132956,7,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29359,2,10,2,17,70,2,0,0,-1,0,135192,13,0,120,0,0,0,0,0,0,300,0,0,0,0,0,0,260,0,0,0,0,391,0,0,0,0 +29360,2,15,1,13,70,3,0,0,-1,0,135669,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +29361,12,0,0,0,0,0,0,0,-1,0,134908,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29362,2,7,1,13,70,3,0,0,-1,0,135373,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +29363,15,2,0,0,0,0,0,0,-1,0,136006,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29364,15,2,0,0,0,0,0,0,-1,0,132762,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29365,12,0,0,0,0,0,0,0,-1,0,133049,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29366,12,0,0,0,0,0,0,0,-1,0,132780,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29367,4,0,3,11,70,0,0,0,-1,0,133398,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29368,4,0,3,2,70,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29369,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29370,4,0,4,12,70,0,0,0,-1,0,135659,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29371,2,13,1,21,66,7,0,0,-1,0,135592,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +29372,2,13,1,22,66,7,0,0,-1,0,135592,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +29373,4,0,3,11,70,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29374,4,0,3,2,70,0,0,0,-1,0,133322,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29375,4,1,7,16,70,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29376,4,0,4,12,70,0,0,0,-1,0,135447,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29377,2,6,1,17,66,1,0,0,-1,0,135129,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,153,0,0,0,0 +29378,2,19,2,26,66,0,0,0,-1,0,135467,12,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,253,0,0,0,0 +29379,4,0,3,11,70,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29380,2,7,1,21,66,1,0,0,-1,0,135672,13,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,143,0,0,0,0 +29381,4,0,3,2,70,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29382,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29383,4,0,4,12,70,0,0,0,-1,0,134317,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29384,4,0,3,11,70,0,0,0,-1,0,133388,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29385,4,1,7,16,70,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29386,4,0,3,2,70,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29387,4,0,4,12,70,0,0,0,-1,0,132489,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29388,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29389,4,9,2,28,70,0,0,0,-1,0,132846,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29390,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29391,2,15,1,13,66,3,0,0,-1,0,135643,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,98,0,0,0,0 +29393,0,5,0,0,55,0,0,0,-1,0,134076,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29394,0,5,0,0,65,0,0,0,-1,0,133211,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29395,0,5,3,0,65,0,0,0,-1,0,132808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29396,12,0,0,0,0,0,0,0,-1,0,132780,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29397,12,0,0,0,0,0,0,0,-1,0,132780,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29398,4,0,5,11,0,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29399,2,10,2,17,0,2,0,0,-1,0,135224,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,214,0,0,0,0 +29400,4,1,7,16,0,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,58,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0 +29401,0,5,3,0,65,0,0,0,-1,0,132808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29402,0,5,0,0,50,0,0,0,-1,0,134019,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29403,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29404,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29405,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29406,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29407,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29408,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29409,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29410,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29411,12,0,0,0,0,0,0,0,-1,0,132780,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29412,0,5,0,0,55,0,0,0,-1,0,134019,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29413,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29414,2,0,1,13,1,3,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29415,2,7,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29416,2,10,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29417,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29418,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29419,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29420,2,7,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29421,2,10,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29422,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29423,2,5,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29424,2,4,1,13,1,3,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29425,12,0,0,0,0,0,0,0,-1,0,136149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29426,12,0,0,0,0,0,0,0,-1,0,133365,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29427,12,0,0,0,0,0,0,0,-1,0,136172,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29428,12,0,0,0,0,0,0,0,-1,0,133706,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29429,12,0,1,0,0,0,0,0,-1,0,133709,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29430,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29431,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29432,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29433,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29434,15,0,0,0,70,0,0,0,-1,0,135884,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29435,2,15,1,13,1,3,0,0,-1,0,135637,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +29436,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29437,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29438,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29439,2,7,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29440,2,10,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29441,2,10,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29442,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29443,0,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29444,2,0,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29445,12,0,0,0,0,0,0,0,-1,0,135482,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29446,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29447,12,0,0,0,0,0,0,0,-1,0,133868,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29448,0,5,0,0,65,0,0,0,-1,0,133946,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29449,0,5,0,0,65,0,0,0,-1,0,133990,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29450,0,5,0,0,65,0,0,0,-1,0,134013,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29451,0,5,0,0,65,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29452,0,5,0,0,65,0,0,0,-1,0,133912,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29453,0,5,0,0,65,0,0,0,-1,0,134052,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29454,0,5,3,0,55,0,0,0,-1,0,132807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29455,2,5,1,17,1,1,0,0,-1,0,132996,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29456,2,7,1,21,63,3,0,0,-1,0,135411,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,147,0,0,0,0 +29457,2,15,1,21,63,3,0,0,-1,0,135644,22,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,125,0,0,0,0 +29458,4,6,6,14,70,4,0,0,-1,0,134978,9,0,120,0,0,0,0,0,0,5279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29459,12,0,0,0,0,0,0,0,-1,0,134139,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29460,13,0,0,0,0,0,0,0,-1,0,134889,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29461,12,0,0,0,0,0,0,0,-1,0,133022,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29462,2,7,1,13,1,1,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29463,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29464,12,0,0,0,0,0,0,0,-1,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29465,15,5,0,0,60,0,0,0,-1,0,132247,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29466,15,5,0,0,60,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29467,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29468,15,5,0,0,60,0,0,0,-1,0,132251,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29469,15,5,0,0,60,0,0,0,-1,0,132224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29470,15,5,0,0,60,0,0,0,-1,0,132264,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29471,15,5,0,0,60,0,0,0,-1,0,132225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29472,15,5,0,0,60,0,0,0,-1,0,132253,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29473,15,0,0,0,0,0,0,0,-1,0,135626,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29474,12,0,0,0,0,0,0,0,-1,0,134209,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29475,12,0,0,0,0,0,0,0,-1,0,132859,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29476,12,0,0,0,61,0,0,0,-1,0,134081,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29477,12,0,0,0,0,0,0,0,-1,0,134081,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29478,12,0,0,0,0,0,0,0,-1,0,133944,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29479,2,5,1,17,1,1,0,0,-1,0,135814,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +29480,12,0,0,0,0,0,0,0,-1,0,134039,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29481,12,0,0,0,0,0,0,0,-1,0,134044,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29482,0,0,0,0,0,0,0,0,-1,0,134729,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29483,0,6,8,0,65,0,0,0,-1,0,136121,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29484,2,5,1,17,1,1,0,0,-1,0,135814,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0 +29485,0,6,8,0,65,0,0,0,-1,0,135824,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29486,0,6,8,0,65,0,0,0,-1,0,135865,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29487,0,6,8,0,65,0,0,0,-1,0,136094,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29488,0,6,8,0,65,0,0,0,-1,0,136192,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29489,4,3,8,7,69,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,556,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0 +29490,4,3,8,10,69,0,0,0,-1,0,132949,7,0,40,0,0,0,0,0,0,397,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +29491,4,3,8,8,69,0,0,0,-1,0,132549,7,0,60,0,0,0,0,0,0,437,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +29492,4,3,5,7,69,0,0,0,-1,0,134655,10,0,90,0,0,0,0,0,0,556,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29493,4,3,5,8,69,0,0,0,-1,0,132550,10,0,60,0,0,0,0,0,0,437,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29494,4,3,5,6,69,0,0,0,-1,0,132504,10,0,40,0,0,0,0,0,0,357,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29495,4,2,8,7,69,0,0,0,-1,0,134646,7,0,75,0,0,0,0,0,0,249,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0 +29496,4,2,8,10,69,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,178,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +29497,4,2,8,8,69,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,196,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +29498,4,2,8,7,69,0,0,0,-1,0,134630,7,0,75,0,0,0,0,0,0,249,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29499,4,2,8,8,69,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,196,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29500,4,2,8,6,69,0,0,0,-1,0,132495,7,0,35,0,0,0,0,0,0,160,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29501,13,0,0,0,0,0,0,0,-1,0,134240,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29502,4,2,7,1,70,0,0,0,-1,0,133140,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29503,4,2,7,10,70,0,0,0,-1,0,132949,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29504,4,2,7,1,70,0,0,0,-1,0,133131,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29505,4,2,7,1,70,0,0,0,-1,0,133134,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29506,4,2,7,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29507,4,2,7,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29508,4,3,7,1,70,0,0,0,-1,0,133111,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29509,4,3,7,10,70,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29510,4,3,7,1,70,0,0,0,-1,0,133074,8,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29511,4,3,7,10,70,0,0,0,-1,0,132939,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29512,4,3,7,8,70,0,0,0,-1,0,132545,10,0,70,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29513,12,0,0,0,0,0,0,0,-1,0,135225,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29514,4,3,7,5,70,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29515,4,3,7,5,70,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29516,4,3,7,6,70,0,0,0,-1,0,132518,11,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29517,4,3,7,9,70,0,0,0,-1,0,132618,11,0,50,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29518,2,7,1,13,16,3,0,0,-1,0,135343,8,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,34,0,0,0,0 +29519,4,3,7,5,70,0,0,0,-1,0,132742,11,0,140,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29520,4,3,7,6,70,0,0,0,-1,0,132492,11,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29521,4,3,7,9,70,0,0,0,-1,0,132611,11,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29522,4,2,7,5,70,0,0,0,-1,0,132716,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29523,4,2,7,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29524,4,2,7,6,70,0,0,0,-1,0,132492,7,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29525,4,2,7,5,70,0,0,0,-1,0,132686,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29526,4,2,7,6,70,0,0,0,-1,0,132492,7,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29527,4,2,7,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29528,0,8,2,0,0,0,0,0,-1,0,133843,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29529,0,8,2,0,0,0,0,0,-1,0,133842,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29530,0,8,2,0,0,0,0,0,-1,0,133844,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29531,0,8,2,0,0,0,0,0,-1,0,133847,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29532,0,8,2,0,0,0,0,0,-1,0,133846,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29533,0,6,0,0,60,0,0,0,-1,0,133615,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29534,0,6,0,0,60,0,0,0,-1,0,133617,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29535,0,6,0,0,60,0,0,0,-1,0,133619,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29536,0,6,0,0,60,0,0,0,-1,0,133619,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29537,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29538,2,8,1,17,1,1,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29539,7,6,8,0,0,0,0,0,-1,0,134320,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29540,1,6,8,18,0,0,0,0,-1,0,133648,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29541,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29542,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29543,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29544,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29545,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29546,12,0,0,0,0,0,0,0,-1,0,133458,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29547,7,6,8,0,0,0,0,0,-1,0,134308,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29548,7,6,8,0,0,0,0,0,-1,0,134312,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29549,9,0,0,0,70,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29550,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29551,15,0,7,0,0,0,0,0,-1,0,134322,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29552,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29553,15,0,0,0,0,0,0,0,-1,0,134342,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29554,15,0,0,0,0,0,0,0,-1,0,134307,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29555,15,0,0,0,0,0,0,0,-1,0,134303,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29556,15,0,0,0,0,0,0,0,-1,0,134343,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29557,15,0,0,0,0,0,0,0,-1,0,132925,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29558,15,0,0,0,0,0,0,0,-1,0,134311,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29559,15,0,0,0,0,0,0,0,-1,0,132926,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29560,15,0,0,0,0,0,0,0,-1,0,136051,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29561,15,0,0,0,0,0,0,0,-1,0,133718,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29562,15,0,0,0,0,0,0,0,-1,0,133725,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29563,15,0,0,0,0,0,0,0,-1,0,134295,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29564,15,0,0,0,0,0,0,0,-1,0,134298,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29565,12,0,0,0,0,0,0,0,-1,0,134342,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29566,15,0,0,0,0,0,0,0,-1,0,132929,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29567,15,0,0,0,0,0,0,0,-1,0,134295,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29568,15,0,0,0,0,0,0,0,-1,0,132928,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29569,15,0,1,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29570,15,0,0,0,0,1,0,0,-1,0,134231,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29571,15,0,0,0,0,1,0,0,-1,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29572,15,0,0,0,0,1,0,0,-1,0,134230,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29573,15,0,3,0,0,0,0,0,-1,0,134870,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29574,15,0,3,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29575,15,0,0,0,0,1,0,0,-1,0,134015,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29576,15,0,0,0,0,1,0,0,-1,0,133895,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29577,15,0,3,0,0,0,0,0,-1,0,133854,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29578,15,0,0,0,0,0,0,0,-1,0,134111,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29579,15,0,0,0,0,0,0,0,-1,0,134109,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29580,15,0,0,0,0,0,0,0,-1,0,134107,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29581,15,0,0,0,0,0,0,0,-1,0,134105,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29582,12,0,0,0,0,0,0,0,-1,0,135735,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29583,2,7,1,13,15,3,0,0,-1,0,135344,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,38,0,0,0,0 +29584,2,16,1,25,14,0,0,0,-1,0,135427,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,0,0,0 +29585,0,0,0,0,55,0,0,0,-1,0,133802,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29586,12,0,0,0,0,0,0,0,-1,0,133565,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29588,15,0,0,0,58,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29589,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29590,15,0,0,0,58,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29591,12,0,0,0,0,0,0,0,-1,0,133690,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29592,4,0,0,12,0,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29593,4,0,3,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29594,4,3,5,8,60,0,0,0,-1,0,132541,10,0,60,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29595,4,3,5,10,60,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29596,4,3,5,5,60,0,0,0,-1,0,132638,10,0,120,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29597,4,3,5,7,60,0,0,0,-1,0,134589,10,0,90,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29598,4,3,5,1,60,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29599,4,3,5,3,60,0,0,0,-1,0,135035,10,0,70,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29600,4,4,6,10,60,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29601,4,4,6,8,60,0,0,0,-1,0,132584,11,0,65,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29602,4,4,6,5,60,0,0,0,-1,0,132738,11,0,135,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29603,4,4,6,7,60,0,0,0,-1,0,134586,11,0,100,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29604,4,4,6,1,60,0,0,0,-1,0,133073,11,0,80,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29605,4,4,6,3,60,0,0,0,-1,0,135059,11,0,80,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29606,4,3,5,8,60,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29607,4,3,5,10,60,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29608,4,3,5,7,60,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29609,4,3,5,5,60,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29610,4,3,5,1,60,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29611,4,3,5,3,60,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29612,4,4,6,8,60,0,0,0,-1,0,132590,11,0,75,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29613,4,4,6,10,60,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29614,4,4,6,7,60,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29615,4,4,6,5,60,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29616,4,4,6,1,60,0,0,0,-1,0,133073,11,0,100,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29617,4,4,6,3,60,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29618,12,0,0,0,0,0,0,0,-1,0,133002,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29619,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29620,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29621,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29622,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29623,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29624,0,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29625,0,0,0,0,0,0,0,0,-1,0,134457,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29626,2,3,2,26,1,0,0,0,-1,0,135610,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +29627,2,3,2,26,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +29628,2,3,2,26,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +29629,2,3,2,26,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0 +29630,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29631,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29632,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29633,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29634,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29635,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29636,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29637,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29638,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29639,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29640,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29641,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29642,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29643,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29644,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29645,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29646,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29647,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29648,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29649,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29650,2,8,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29651,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29652,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29653,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29654,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29655,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29656,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29657,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29658,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29659,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29660,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29661,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29662,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29663,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29664,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29665,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +29666,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29667,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29668,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29669,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29670,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29671,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29672,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29673,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29674,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29675,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29676,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29677,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29678,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29679,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29680,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29681,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29682,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29683,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29684,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29685,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29686,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29687,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29688,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29689,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29690,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29691,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29692,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29693,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29694,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29695,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29696,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29697,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29698,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29699,0,0,0,0,0,0,0,0,-1,0,134465,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29700,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29701,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29702,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29703,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29704,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29705,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29706,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29707,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29708,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29709,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29710,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29711,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29712,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29713,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29714,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29715,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29716,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29717,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29718,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29719,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29720,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29721,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29722,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29723,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29724,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29725,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29726,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29727,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29728,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29729,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29730,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29731,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29732,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29733,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29734,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29735,0,0,0,0,0,0,0,0,-1,0,133853,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29736,0,0,0,0,0,0,0,0,-1,0,134418,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29737,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29738,12,0,0,0,68,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29739,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29740,12,0,0,0,0,0,0,0,-1,0,133832,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29741,12,0,0,0,0,0,0,0,-1,0,134946,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29742,13,0,0,0,0,0,0,0,-1,0,134890,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29743,15,5,0,0,30,0,0,0,-1,0,132256,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29744,15,5,0,0,30,0,0,0,-1,0,132255,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29745,15,5,0,0,60,0,0,0,-1,0,132258,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29746,15,5,0,0,60,0,0,0,-1,0,132259,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29747,15,5,0,0,60,0,0,0,-1,0,132260,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29748,2,10,2,17,70,2,0,0,-1,0,135179,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +29749,12,0,0,0,0,0,0,0,-1,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29750,13,0,0,0,0,0,0,0,-1,0,134891,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29751,12,0,0,0,0,0,0,0,-1,0,134413,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29753,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29754,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29755,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29756,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29757,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29758,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29759,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29760,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29761,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29762,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29763,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29764,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29765,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29766,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29767,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29768,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29769,12,0,0,0,0,0,0,0,-1,0,134945,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29770,12,0,0,0,0,0,0,0,-1,0,133018,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29771,4,1,7,6,0,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29772,4,2,8,6,0,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29773,4,3,5,1,0,0,0,0,-1,0,133135,7,0,60,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29774,4,4,6,7,0,0,0,0,-1,0,134582,11,0,85,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29775,4,0,3,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29776,4,0,3,12,0,0,0,0,-1,0,136006,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29777,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29778,0,0,0,0,68,0,0,0,-1,0,133018,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29779,2,19,2,26,0,0,0,0,-1,0,135474,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,186,0,0,0,0 +29780,4,1,7,20,0,0,0,0,-1,0,132690,7,0,80,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29781,4,2,8,5,0,0,0,0,-1,0,132723,7,0,100,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29782,4,3,5,1,0,0,0,0,-1,0,133071,10,0,70,0,0,0,0,0,0,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29783,4,4,6,7,0,0,0,0,-1,0,134584,11,0,100,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29784,4,2,8,10,0,0,0,0,-1,0,132942,7,0,30,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29785,4,3,5,9,0,0,0,0,-1,0,132609,10,0,35,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29786,4,4,6,8,0,0,0,0,-1,0,132592,11,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29787,2,4,2,13,0,3,0,0,-1,0,133047,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,202,0,0,0,0 +29788,4,3,5,7,0,0,0,0,-1,0,134582,10,0,75,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29789,4,4,6,5,0,0,0,0,-1,0,132741,11,0,115,0,0,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29790,12,0,0,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29791,4,4,6,1,0,0,0,0,-1,0,133127,11,0,70,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29792,4,1,7,16,0,0,0,0,-1,0,133774,7,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29793,4,0,3,11,0,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29794,4,0,3,2,0,0,0,0,-1,0,133302,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29795,12,0,0,0,0,0,0,0,-1,0,134423,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29796,0,0,0,0,0,0,0,0,-1,0,134465,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29797,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29798,12,0,0,0,0,0,0,0,-1,0,133018,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29799,15,0,3,0,0,0,0,0,-1,0,134324,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29800,15,0,3,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29801,12,0,0,0,0,0,0,0,-1,0,134346,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29802,12,0,0,0,0,0,0,0,-1,0,134320,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29803,12,0,0,0,0,0,0,0,-1,0,133859,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29804,4,2,8,8,0,0,0,0,-1,0,132541,7,0,45,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29805,0,0,0,0,0,0,0,0,-1,0,136150,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29806,4,3,5,10,0,0,0,0,-1,0,132959,10,0,35,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29807,4,4,6,6,0,0,0,0,-1,0,132490,11,0,40,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29808,4,1,7,8,0,0,0,0,-1,0,132541,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29809,2,0,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +29810,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29811,4,3,5,9,0,0,0,0,-1,0,132618,10,0,35,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29812,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29813,4,1,7,16,0,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29814,4,0,5,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29815,4,0,3,2,0,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29816,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29817,12,0,0,0,0,0,0,0,-1,0,133863,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29818,12,0,0,0,0,0,0,0,-1,0,133861,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29819,2,8,1,17,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29820,2,7,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29821,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29822,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29823,4,2,8,5,70,0,0,0,-1,0,132737,10,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29824,4,2,8,5,70,0,0,0,-1,0,132737,10,0,120,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29825,2,15,1,13,70,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +29826,2,15,1,13,70,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,130,0,0,0,0 +29827,2,15,1,13,70,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,165,0,0,0,0 +29828,2,15,1,13,70,3,0,0,-1,0,135672,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,228,0,0,0,0 +29829,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29830,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29831,2,7,0,13,70,1,0,0,-1,0,135384,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,293,0,0,0,0 +29832,2,7,0,13,70,1,0,0,-1,0,135384,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,370,0,0,0,0 +29833,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +29834,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0,593,0,0,0,0 +29835,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29836,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29837,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29838,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29839,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29840,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29841,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29842,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29843,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29844,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29845,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29846,0,8,0,0,0,0,0,0,-1,0,133434,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29847,0,8,0,0,0,0,0,0,-1,0,133434,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29848,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29849,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29850,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29851,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29852,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29853,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29854,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29855,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29856,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29857,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29858,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29859,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29860,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29861,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29862,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29863,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29864,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29865,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29866,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29867,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29868,0,0,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29869,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29870,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29871,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29872,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29873,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29874,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29875,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29876,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29877,4,0,4,12,70,0,0,0,-1,0,134711,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29878,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29879,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29880,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,391,0,0,0,0 +29881,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0,494,0,0,0,0 +29882,4,3,5,5,70,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29883,4,3,5,5,70,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29884,2,3,1,26,70,0,0,0,-1,0,135631,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,265,0,0,0,0 +29885,6,3,2,24,62,0,0,0,-1,0,133584,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,47,0,0,0,0 +29886,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29887,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29888,2,3,1,26,70,0,0,0,-1,0,135631,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,335,0,0,0,0 +29889,11,3,8,18,68,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29890,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29891,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29892,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29893,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29894,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29895,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29896,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29897,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29898,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29899,4,3,5,5,70,0,0,0,-1,0,132637,10,0,140,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29900,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +29901,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29902,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29903,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29904,15,2,0,0,0,0,0,0,-1,0,132833,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29905,0,0,0,0,0,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29906,0,0,0,0,0,0,0,0,-1,0,134722,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29907,6,2,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +29908,2,1,1,17,0,1,0,0,-1,0,132403,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,251,0,0,0,0 +29909,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,105,0,0,0,0 +29910,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,237,0,0,0,0 +29911,2,10,2,17,0,2,0,0,-1,0,135225,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,237,0,0,0,0 +29912,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29913,2,7,1,13,0,3,0,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,151,0,0,0,0 +29914,2,15,1,22,0,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +29915,2,19,2,26,0,0,0,0,-1,0,135475,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,154,0,0,0,0 +29916,2,18,2,26,0,0,0,0,-1,0,135489,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,98,0,0,0,0 +29917,4,6,1,14,0,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,2428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29918,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29919,4,6,1,14,0,4,0,0,-1,0,134952,9,0,85,0,0,0,0,0,0,2428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29920,4,0,3,11,70,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29921,4,3,5,5,70,0,0,0,-1,0,132738,11,0,140,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29922,4,0,3,11,70,0,0,0,-1,0,133403,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29923,4,0,3,23,70,0,0,0,-1,0,134541,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29924,2,0,1,13,70,3,0,0,-1,0,132449,24,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,327,0,0,0,0 +29925,4,1,7,16,70,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29926,4,1,7,5,0,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29927,4,1,7,1,0,0,0,0,-1,0,133152,7,0,45,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29928,4,1,7,7,0,0,0,0,-1,0,134606,7,0,55,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29929,4,2,7,5,0,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29930,4,2,7,7,0,0,0,0,-1,0,134630,7,0,65,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29931,4,2,7,1,0,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29932,4,3,7,5,0,0,0,0,-1,0,132624,10,0,100,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29933,4,3,7,7,0,0,0,0,-1,0,134667,11,0,75,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29934,4,3,7,1,0,0,0,0,-1,0,133074,10,0,60,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29935,4,4,7,5,0,0,0,0,-1,0,132737,11,0,115,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29936,4,4,7,7,0,0,0,0,-1,0,134679,11,0,85,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29937,4,4,7,1,0,0,0,0,-1,0,133090,11,0,70,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29938,4,2,7,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29939,4,2,7,7,0,0,0,0,-1,0,134633,7,0,65,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29940,4,2,7,1,0,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29941,4,3,7,5,0,0,0,0,-1,0,132639,10,0,100,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29942,4,3,7,7,0,0,0,0,-1,0,134653,10,0,75,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29943,4,3,7,1,0,0,0,0,-1,0,133111,10,0,60,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29944,4,4,7,5,0,0,0,0,-1,0,132747,11,0,115,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29945,4,4,7,7,0,0,0,0,-1,0,134693,11,0,85,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29946,4,4,7,1,0,0,0,0,-1,0,133071,11,0,70,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29947,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29948,2,13,1,22,70,7,0,0,-1,0,135603,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,189,0,0,0,0 +29949,2,3,1,26,70,0,0,0,-1,0,135626,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,329,0,0,0,0 +29950,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29951,4,3,5,8,70,0,0,0,-1,0,132547,11,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29952,12,0,0,0,0,0,0,0,-1,0,136065,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29953,15,2,0,0,0,0,0,0,-1,0,132188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29954,4,1,7,3,0,0,0,0,-1,0,135056,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29955,4,2,8,9,0,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29956,15,2,0,0,0,0,0,0,-1,0,132188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29957,15,2,0,0,0,0,0,0,-1,0,132188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29958,15,2,0,0,0,0,0,0,-1,0,132188,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29959,4,4,1,10,0,0,0,0,-1,0,132963,9,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29960,15,2,0,0,0,0,0,0,-1,0,132598,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29961,12,0,0,0,0,0,0,0,-1,0,135229,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29962,2,15,1,13,70,3,0,0,-1,0,135681,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,226,0,0,0,0 +29963,12,0,0,0,0,0,0,0,-1,0,135790,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29964,4,2,0,7,45,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29965,4,4,1,6,70,0,0,0,-1,0,132511,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29966,4,2,8,9,70,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29967,4,2,8,5,0,0,0,0,-1,0,132725,7,0,85,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29968,4,3,5,7,0,0,0,0,-1,0,134583,10,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29969,4,4,5,1,0,0,0,0,-1,0,133071,9,0,70,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29970,4,2,0,7,45,0,0,0,-1,0,134628,7,0,75,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29971,4,3,0,7,45,0,0,0,-1,0,134696,11,0,90,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29972,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29973,4,2,8,5,65,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29974,4,2,8,5,65,0,0,0,-1,0,132647,7,0,100,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29975,4,3,8,5,65,0,0,0,-1,0,132741,7,0,120,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29976,4,3,5,10,70,0,0,0,-1,0,132960,10,0,50,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29977,4,1,7,7,70,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29978,4,1,7,20,0,0,0,0,-1,0,132643,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29979,4,2,8,1,0,0,0,0,-1,0,133148,7,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29980,4,4,6,7,0,0,0,0,-1,0,134593,11,0,85,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29981,2,10,2,17,70,2,0,0,-1,0,135188,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,483,0,0,0,0 +29982,2,19,2,26,70,0,0,0,-1,0,135476,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,346,0,0,0,0 +29983,4,4,0,1,70,0,0,0,-1,0,133071,9,0,100,0,0,0,0,0,0,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29984,4,2,8,6,70,0,0,0,-1,0,132497,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29985,4,3,5,7,70,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29986,4,1,7,1,70,0,0,0,-1,0,133116,7,0,60,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29987,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29988,2,10,2,17,70,2,0,0,-1,0,135180,8,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,501,0,0,0,0 +29989,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29990,4,1,7,1,70,0,0,0,-1,0,133134,7,0,60,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29991,4,3,5,7,70,0,0,0,-1,0,134683,10,0,105,0,0,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29992,4,1,7,16,70,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29993,2,8,1,17,70,1,0,0,-1,0,135337,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0,564,0,0,0,0 +29994,4,1,7,16,70,0,0,0,-1,0,133767,7,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29995,4,2,8,7,70,0,0,0,-1,0,134628,7,0,90,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29996,2,4,1,13,70,3,0,0,-1,0,133528,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,352,0,0,0,0 +29997,4,0,3,11,70,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29998,4,4,6,10,70,0,0,0,-1,0,132963,9,0,55,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +29999,4,2,8,3,0,0,0,0,-1,0,135042,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30000,4,1,7,10,0,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30001,4,3,5,6,0,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30002,4,4,6,8,0,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30003,4,2,8,10,0,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30004,4,3,5,8,0,0,0,0,-1,0,132589,10,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30005,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30006,4,0,7,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30007,4,0,4,2,0,0,0,0,-1,0,133342,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30008,4,0,3,2,70,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30009,2,1,1,17,0,1,0,0,-1,0,132442,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0,378,0,0,0,0 +30010,2,10,2,17,0,2,0,0,-1,0,135187,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,252,0,0,0,0 +30011,2,10,2,17,0,2,0,0,-1,0,135223,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,252,0,0,0,0 +30012,2,10,2,17,0,2,0,0,-1,0,135224,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,252,0,0,0,0 +30013,2,15,1,13,0,3,0,0,-1,0,135313,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +30014,4,2,0,7,0,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30015,4,0,4,2,0,0,0,0,-1,0,133301,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30016,4,4,6,1,0,0,0,0,-1,0,133071,9,0,80,0,0,0,0,0,0,875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30017,4,0,3,2,0,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30018,4,0,4,2,0,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30019,4,3,5,7,0,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30020,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30021,2,10,2,17,70,2,0,0,-1,0,135186,13,0,120,0,0,0,0,0,0,500,0,0,0,0,0,0,301,0,0,0,0,452,0,0,0,0 +30022,4,0,4,2,70,0,0,0,-1,0,133339,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30023,4,9,2,28,70,0,0,0,-1,0,136022,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30024,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30025,2,16,1,25,70,0,0,0,-1,0,135430,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,146,0,0,0,0 +30026,4,3,5,9,70,0,0,0,-1,0,132616,11,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30027,4,4,1,8,70,0,0,0,-1,0,132551,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30028,4,0,3,11,70,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30029,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30030,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30031,4,4,1,8,70,0,0,0,-1,0,132547,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30032,4,4,1,6,70,0,0,0,-1,0,132502,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30033,4,4,1,8,70,0,0,0,-1,0,132584,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30034,4,4,1,6,70,0,0,0,-1,0,132517,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30035,4,1,7,8,70,0,0,0,-1,0,132571,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30036,4,1,7,6,70,0,0,0,-1,0,132494,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30037,4,1,7,8,70,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30038,4,1,7,6,70,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30039,4,2,8,8,70,0,0,0,-1,0,132539,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30040,4,2,5,6,70,0,0,0,-1,0,132518,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30041,4,2,8,8,70,0,0,0,-1,0,132561,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30042,4,2,5,6,70,0,0,0,-1,0,132514,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30043,4,3,5,8,70,0,0,0,-1,0,132549,10,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30044,4,3,5,6,70,0,0,0,-1,0,132504,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30045,4,3,5,8,70,0,0,0,-1,0,132550,10,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30046,4,3,5,6,70,0,0,0,-1,0,132492,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30047,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30048,4,4,0,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30049,4,0,3,23,70,0,0,0,-1,0,134079,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30050,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30051,4,8,2,28,70,0,0,0,-1,0,134903,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30052,4,0,3,11,70,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30053,4,4,1,3,70,0,0,0,-1,0,135051,11,0,100,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30054,4,3,5,5,70,0,0,0,-1,0,132744,11,0,140,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30055,4,2,8,3,70,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30056,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30057,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30058,2,4,1,21,70,3,0,0,-1,0,135677,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,214,0,0,0,0 +30059,4,0,3,2,70,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30060,4,2,8,8,70,0,0,0,-1,0,132587,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30061,4,0,3,11,70,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30062,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30063,4,7,2,28,70,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30064,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30065,4,4,1,5,70,0,0,0,-1,0,132740,9,0,165,0,0,0,0,0,0,1607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30066,4,3,5,8,70,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30067,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30068,4,3,5,6,70,0,0,0,-1,0,132508,11,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30069,4,4,0,7,47,0,0,0,-1,0,134693,9,0,100,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30070,4,3,0,7,47,0,0,0,-1,0,134662,11,0,90,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30071,2,7,1,21,47,3,0,0,-1,0,135411,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,108,0,0,0,0 +30072,2,0,1,21,47,3,0,0,-1,0,132454,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,113,0,0,0,0 +30073,2,4,1,21,47,3,0,0,-1,0,133058,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,117,0,0,0,0 +30074,4,4,8,5,65,0,0,0,-1,0,132741,9,0,135,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30075,4,2,8,5,70,0,0,0,-1,0,132725,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30076,4,3,8,5,65,0,0,0,-1,0,132639,9,0,120,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30077,2,7,1,13,65,3,0,0,-1,0,135340,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,134,0,0,0,0 +30078,2,4,2,13,1,3,0,0,-1,0,133040,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30079,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30080,2,19,2,26,70,0,0,0,-1,0,135476,21,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,346,0,0,0,0 +30081,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30082,2,7,1,13,70,3,0,0,-1,0,135360,8,0,105,0,0,0,0,0,0,168,0,0,0,0,0,0,182,0,0,0,0,339,0,0,0,0 +30083,4,0,3,11,70,0,0,0,-1,0,133373,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30084,4,4,1,3,70,0,0,0,-1,0,135045,11,0,100,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30085,4,3,5,3,70,0,0,0,-1,0,135058,10,0,85,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30086,2,8,1,17,65,1,0,0,-1,0,135347,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,311,0,0,0,0 +30087,2,0,1,21,65,3,0,0,-1,0,132432,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +30088,2,1,1,17,65,1,0,0,-1,0,132436,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,321,0,0,0,0 +30089,2,4,1,21,65,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,197,0,0,0,0 +30090,2,5,1,17,70,1,0,0,-1,0,133532,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0,558,0,0,0,0 +30091,4,3,5,9,70,0,0,0,-1,0,132614,11,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30092,4,2,8,8,70,0,0,0,-1,0,132573,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30093,2,5,1,17,65,1,0,0,-1,0,133046,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0,330,0,0,0,0 +30094,12,0,0,0,0,0,0,0,-1,0,135462,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30095,2,7,1,21,70,3,0,0,-1,0,135383,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,226,0,0,0,0 +30096,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30097,4,3,5,3,70,0,0,0,-1,0,135050,10,0,85,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30098,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30099,4,0,4,2,70,0,0,0,-1,0,134326,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30100,4,1,7,8,70,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30101,4,2,8,5,70,0,0,0,-1,0,132743,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30102,4,4,1,5,70,0,0,0,-1,0,132746,9,0,165,0,0,0,0,0,0,1728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30103,2,15,1,13,70,3,0,0,-1,0,135674,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,217,0,0,0,0 +30104,4,3,5,8,70,0,0,0,-1,0,132555,11,0,70,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30105,2,2,2,15,70,0,0,0,-1,0,135496,15,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,327,0,0,0,0 +30106,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30107,4,1,7,20,70,0,0,0,-1,0,132658,7,0,100,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30108,2,4,1,21,70,3,0,0,-1,0,135678,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,248,0,0,0,0 +30109,4,0,3,11,70,0,0,0,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30110,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30111,4,2,8,3,70,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30112,4,4,1,10,70,0,0,0,-1,0,132954,9,0,55,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30113,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30114,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30115,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30116,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30117,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30118,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30119,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30120,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30121,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30122,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30123,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30124,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30125,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30126,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30127,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30128,2,3,1,26,1,0,0,0,-1,0,135614,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0 +30129,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30130,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30131,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30132,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30133,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30134,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30135,4,4,1,10,70,0,0,0,-1,0,132959,9,0,55,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30136,4,4,1,1,70,0,0,0,-1,0,133117,9,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30137,4,4,1,7,70,0,0,0,-1,0,134667,9,0,120,0,0,0,0,0,0,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30138,4,4,1,3,70,0,0,0,-1,0,135045,9,0,100,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30139,4,3,5,5,70,0,0,0,-1,0,132637,11,0,140,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30140,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30141,4,3,5,1,70,0,0,0,-1,0,133117,11,0,85,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30142,4,3,5,7,70,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30143,4,3,5,3,70,0,0,0,-1,0,135045,11,0,85,0,0,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30144,4,2,8,5,70,0,0,0,-1,0,132737,7,0,120,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30145,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30146,4,2,8,1,70,0,0,0,-1,0,133160,7,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30147,2,7,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30148,4,2,8,7,70,0,0,0,-1,0,134681,7,0,90,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30149,4,2,8,3,70,0,0,0,-1,0,135060,7,0,70,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30150,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30151,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30152,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30153,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30154,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30155,0,5,0,0,55,0,0,0,-1,0,133983,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30156,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30157,12,0,0,0,0,0,0,0,-1,0,133452,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30158,12,0,0,0,0,0,0,0,-1,0,133823,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30159,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30160,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30161,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30162,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30163,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30164,4,3,5,5,70,0,0,0,-1,0,132743,10,0,140,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30165,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30166,4,3,5,1,70,0,0,0,-1,0,133156,10,0,85,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30167,4,3,5,7,70,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30168,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30169,4,3,5,5,70,0,0,0,-1,0,132743,10,0,140,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30170,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30171,4,3,5,1,70,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30172,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30173,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30174,12,0,2,0,0,0,0,0,-1,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30175,12,0,0,0,0,0,0,0,-1,0,134514,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30176,2,0,1,13,70,3,0,0,-1,0,135563,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,279,0,0,0,0 +30177,12,0,2,0,0,0,0,0,-1,0,136062,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30178,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30179,2,5,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30180,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30181,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30182,2,6,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30183,7,13,0,0,0,0,0,0,-1,0,132842,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30184,12,0,8,0,0,0,0,0,-1,0,134323,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30185,4,3,5,5,70,0,0,0,-1,0,132743,10,0,140,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30186,4,1,7,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30187,4,1,7,1,70,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30188,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30189,4,3,5,10,70,0,0,0,-1,0,132959,10,0,50,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30190,4,3,5,1,70,0,0,0,-1,0,133117,10,0,85,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30191,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30192,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30193,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30194,4,3,5,3,70,0,0,0,-1,0,135045,10,0,85,0,0,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30195,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30196,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30197,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30198,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30199,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30200,4,1,7,20,70,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30201,4,1,7,7,70,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30204,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30205,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30206,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30207,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30208,2,0,1,13,1,1,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30209,2,0,1,22,1,1,0,0,-1,0,135279,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +30210,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30211,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30212,4,1,7,1,70,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30213,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30214,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30215,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30216,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30217,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30218,4,2,8,3,0,0,0,0,-1,0,135048,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30219,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30220,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30221,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30222,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30223,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30224,4,3,5,10,0,0,0,0,-1,0,132937,10,0,35,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30225,4,4,6,9,0,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30226,2,2,2,15,0,0,0,0,-1,0,135491,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +30227,2,16,2,25,0,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,115,0,0,0,0 +30228,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30229,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30230,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30231,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30232,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30233,4,2,8,1,70,0,0,0,-1,0,133117,7,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30234,4,2,8,7,70,0,0,0,-1,0,134667,7,0,90,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30235,4,2,8,3,70,0,0,0,-1,0,135045,7,0,70,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30236,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30237,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30238,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30239,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30240,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30241,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30242,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30243,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30244,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30245,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30246,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30247,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30248,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30249,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30250,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30251,12,0,0,0,0,0,0,0,-1,0,133852,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30252,2,19,2,26,0,0,0,0,-1,0,135467,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,226,0,0,0,0 +30253,4,1,7,10,0,0,0,0,-1,0,132957,7,0,25,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30254,4,4,6,6,0,0,0,0,-1,0,132502,11,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30255,4,3,5,5,0,0,0,0,-1,0,132723,10,0,100,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30256,4,1,7,7,0,0,0,0,-1,0,134613,7,0,65,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30257,4,2,8,7,0,0,0,0,-1,0,134630,7,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30258,4,4,5,5,0,0,0,0,-1,0,132746,9,0,135,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30259,15,0,0,0,0,0,0,0,-1,0,134335,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30260,0,0,0,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30261,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30262,4,2,8,3,0,0,0,0,-1,0,135058,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30263,4,3,5,8,0,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30264,4,4,6,10,0,0,0,0,-1,0,132956,11,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30265,4,1,7,9,0,0,0,0,-1,0,132609,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30266,4,2,8,8,0,0,0,0,-1,0,132554,7,0,45,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30267,4,4,6,10,0,0,0,0,-1,0,132953,11,0,40,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30268,4,1,7,7,0,0,0,0,-1,0,134606,7,0,55,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30269,4,2,8,1,0,0,0,0,-1,0,133147,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30270,4,4,1,5,0,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30271,4,1,7,1,0,0,0,0,-1,0,133111,7,0,45,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30272,4,2,8,7,0,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30273,4,3,5,8,0,0,0,0,-1,0,132547,10,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30274,4,3,5,9,0,0,0,0,-1,0,132600,10,0,35,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30275,4,4,6,3,0,0,0,0,-1,0,135055,11,0,70,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30276,4,0,3,2,0,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30277,2,13,1,21,0,7,0,0,-1,0,132941,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,210,0,0,0,0 +30278,2,7,1,13,0,1,0,0,-1,0,135672,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,124,0,0,0,0 +30279,2,3,1,26,0,0,0,0,-1,0,135615,8,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,163,0,0,0,0 +30280,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30281,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30282,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30283,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30284,4,1,7,8,0,0,0,0,-1,0,132566,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30285,4,2,8,6,0,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30286,4,3,5,3,0,0,0,0,-1,0,135061,10,0,60,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30287,4,1,7,3,0,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30288,4,2,8,10,0,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30289,4,3,5,6,0,0,0,0,-1,0,132523,10,0,35,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30290,4,2,6,7,0,0,0,0,-1,0,134583,11,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30291,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30292,12,0,0,0,0,0,0,0,-1,0,135630,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30293,4,0,3,12,0,0,0,0,-1,0,136048,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30294,4,1,7,1,0,0,0,0,-1,0,133130,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30295,4,3,5,3,0,0,0,0,-1,0,135049,10,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30296,4,4,6,5,0,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30297,4,2,8,1,0,0,0,0,-1,0,132767,7,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30298,4,3,5,5,0,0,0,0,-1,0,132628,10,0,120,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30299,4,4,6,7,0,0,0,0,-1,0,134691,11,0,100,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30300,4,0,3,12,0,0,0,0,-1,0,132360,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30301,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30302,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30303,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30304,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30305,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30306,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30307,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30308,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30309,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30310,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30311,2,7,1,13,70,3,0,0,-1,0,135379,8,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0,461,0,0,0,0 +30312,2,15,1,13,70,3,0,0,-1,0,135682,8,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,318,0,0,0,0 +30313,2,10,1,17,70,2,0,0,-1,0,135188,13,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0,534,0,0,0,0 +30314,4,6,6,14,70,4,0,0,-1,0,134976,9,0,145,0,0,0,0,0,0,7313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30315,12,0,0,0,0,0,0,0,-1,0,134087,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30316,2,1,1,17,70,1,0,0,-1,0,132455,9,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,0,0,0,744,0,0,0,0 +30317,2,4,1,21,70,3,0,0,-1,0,133528,8,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0,445,0,0,0,0 +30318,2,2,2,15,70,2,0,0,-1,0,135507,12,0,110,2,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,385,0,0,0,0 +30319,6,2,2,24,70,0,0,0,-1,0,135753,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,64,0,0,0,0 +30320,15,0,0,0,70,0,0,0,-1,0,134290,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30321,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30322,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30323,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30324,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30325,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30326,12,0,0,0,0,0,0,0,-1,0,134514,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30327,12,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30328,4,2,8,5,0,0,0,0,-1,0,132746,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30329,4,3,5,1,0,0,0,0,-1,0,133137,10,0,60,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30330,4,4,6,6,0,0,0,0,-1,0,132493,11,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30331,4,1,7,6,0,0,0,0,-1,0,132493,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30332,4,2,8,9,0,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30333,4,3,5,3,0,0,0,0,-1,0,135049,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30334,4,4,6,8,0,0,0,0,-1,0,132548,8,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30335,4,2,8,8,0,0,0,0,-1,0,132551,7,0,45,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30336,4,3,5,10,0,0,0,0,-1,0,132959,10,0,35,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30337,4,4,6,1,0,0,0,0,-1,0,132767,11,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30338,4,1,7,16,0,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30339,4,0,1,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30340,4,0,3,12,0,0,0,0,-1,0,135733,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30341,4,2,8,10,0,0,0,0,-1,0,132957,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30342,4,3,5,6,0,0,0,0,-1,0,132511,10,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30343,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30344,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30345,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30346,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30347,0,8,1,0,1,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30348,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30349,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30350,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30351,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30352,4,4,6,9,0,0,0,0,-1,0,132611,11,0,40,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30353,12,0,0,0,0,0,0,0,-1,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30354,12,0,0,0,0,0,0,0,-1,0,135619,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30355,0,5,0,0,65,0,0,0,-1,0,134035,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30356,12,0,0,0,0,0,0,0,-1,0,134187,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30357,0,5,0,0,65,0,0,0,-1,0,134012,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30358,0,5,0,0,65,0,0,0,-1,0,134011,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30359,0,5,0,0,65,0,0,0,-1,0,134043,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30360,15,0,0,0,0,0,0,0,-1,0,132834,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30361,0,5,0,0,65,0,0,0,-1,0,133999,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30362,4,2,8,1,0,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30363,4,3,5,5,0,0,0,0,-1,0,132742,10,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30364,2,0,1,13,0,3,0,0,-1,0,132433,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +30365,4,0,1,11,0,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30366,4,0,1,11,0,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30367,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30368,4,1,7,8,0,0,0,0,-1,0,132549,7,0,40,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30369,4,2,8,3,0,0,0,0,-1,0,135042,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30370,4,3,5,10,0,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30371,4,4,5,6,0,0,0,0,-1,0,132497,8,0,45,0,0,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30372,4,2,8,6,0,0,0,0,-1,0,132514,7,0,35,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30373,4,2,8,3,0,0,0,0,-1,0,135054,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30374,4,3,8,8,0,0,0,0,-1,0,132549,7,0,60,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30375,4,4,6,10,0,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30376,2,4,2,21,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30377,4,0,1,2,0,0,0,0,-1,0,133298,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30378,4,0,1,2,0,0,0,0,-1,0,133308,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30379,4,2,8,5,0,0,0,0,-1,0,132642,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30380,4,4,5,6,0,0,0,0,-1,0,132493,10,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30381,4,4,6,3,0,0,0,0,-1,0,135059,11,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30382,4,1,7,9,0,0,0,0,-1,0,132608,7,0,25,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30383,4,1,8,6,0,0,0,0,-1,0,132492,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30384,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30385,4,4,6,9,0,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30386,4,4,6,8,0,0,0,0,-1,0,132549,11,0,55,0,0,0,0,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30387,2,4,1,21,1,3,0,0,-1,0,133528,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30388,2,1,1,17,1,1,0,0,-1,0,132455,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30389,2,15,1,13,1,3,0,0,-1,0,135682,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30390,2,2,2,15,1,0,0,0,-1,0,135507,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,9,0,0,0,0 +30391,4,6,6,14,1,4,0,0,-1,0,134976,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30392,2,10,1,17,1,2,0,0,-1,0,135188,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30393,2,7,1,13,1,3,0,0,-1,0,135379,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30394,2,8,1,17,0,1,0,0,-1,0,135315,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +30395,2,5,2,17,0,1,0,0,-1,0,133047,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,270,0,0,0,0 +30396,2,6,1,17,0,2,0,0,-1,0,135128,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,260,0,0,0,0 +30397,2,18,2,26,0,0,0,0,-1,0,135543,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,195,0,0,0,0 +30398,4,1,6,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30399,4,2,8,9,0,0,0,0,-1,0,132609,7,0,30,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30400,4,4,6,9,0,0,0,0,-1,0,132602,11,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30401,4,2,8,8,0,0,0,0,-1,0,132550,7,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30402,4,4,6,9,0,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30403,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30404,12,0,0,0,0,0,0,0,-1,0,134719,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30405,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30406,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30407,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30408,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30409,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30410,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30411,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30412,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30413,12,0,0,0,0,0,0,0,-1,0,135412,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30414,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30415,12,0,0,0,0,0,0,0,-1,0,134975,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30416,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30417,12,0,0,0,0,0,0,0,-1,0,133090,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30418,2,6,1,17,55,2,0,0,-1,0,135131,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,197,0,0,0,0 +30419,4,0,3,2,20,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30420,4,0,4,11,24,0,0,0,-1,0,133353,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30421,4,0,5,11,41,1,0,0,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30422,4,0,5,11,48,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30423,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30424,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30425,12,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30426,13,0,0,0,0,0,0,0,-1,0,134242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30427,15,0,0,0,68,0,0,0,-1,0,134269,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30428,12,0,0,0,0,0,0,0,-1,0,134944,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30429,12,0,0,0,0,0,0,0,-1,0,132597,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30430,12,0,0,0,0,0,0,0,-1,0,134744,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30431,12,0,0,0,65,0,0,0,-1,0,134448,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30432,12,0,0,0,0,0,0,0,-1,0,133845,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30433,12,0,0,0,0,0,0,0,-1,0,133579,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30434,12,0,0,0,0,0,0,0,-1,0,134465,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30435,12,0,0,0,0,0,0,0,-1,0,135591,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30436,15,0,0,0,0,0,0,0,-1,0,134080,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30437,15,0,0,0,0,0,0,0,-1,0,134083,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30438,13,0,0,0,1,0,0,0,-1,0,134102,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30439,2,6,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30440,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30441,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30442,12,0,0,0,0,0,0,0,-1,0,135790,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30443,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30444,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30445,2,4,2,21,1,3,0,0,-1,0,133042,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30446,4,0,4,12,70,0,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30447,4,0,4,12,70,0,0,0,-1,0,133739,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30448,4,0,4,12,70,0,0,0,-1,0,135827,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30449,4,0,4,12,70,0,0,0,-1,0,134101,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30450,4,0,4,12,70,0,0,0,-1,0,133016,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30451,12,0,0,0,0,0,0,0,-1,0,135504,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30452,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +30453,12,0,0,0,0,0,0,0,-1,0,134945,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30454,12,0,0,0,0,0,0,0,-1,0,132596,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30455,2,8,1,17,60,1,0,0,-1,0,135351,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,225,0,0,0,0 +30456,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +30457,0,5,3,0,65,0,0,0,-1,0,132831,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30458,0,5,0,0,55,0,0,0,-1,0,133947,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30459,4,1,7,20,70,0,0,0,-1,0,132643,7,0,80,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30460,4,1,6,6,70,0,0,0,-1,0,132519,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30461,4,1,6,8,70,0,0,0,-1,0,132541,7,0,40,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30462,12,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30463,4,1,6,6,70,0,0,0,-1,0,132513,7,0,30,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30464,4,1,7,9,69,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30465,4,1,8,7,67,0,0,0,-1,0,134597,7,0,65,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30466,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30467,15,0,0,0,0,0,0,0,-1,0,134306,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30468,12,0,0,0,0,0,0,0,-1,0,134374,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30469,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30470,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30471,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30472,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30473,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30474,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30475,15,0,0,0,0,0,0,0,-1,0,134184,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30476,15,0,0,0,0,0,0,0,-1,0,133941,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30477,15,0,3,0,0,0,0,0,-1,0,134258,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30478,15,0,3,0,0,0,0,0,-1,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30479,12,0,0,0,0,0,0,0,-1,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30480,15,5,0,0,70,0,0,0,-1,0,132238,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30481,12,0,0,0,0,0,0,0,-1,0,136196,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30482,2,8,1,13,1,1,0,0,-1,0,135280,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30483,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30484,2,7,1,13,1,3,0,0,-1,0,135380,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30485,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30486,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30487,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30488,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30489,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30490,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30491,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30497,4,3,5,7,60,0,0,0,-1,0,134583,11,0,105,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30498,4,4,6,7,60,0,0,0,-1,0,134691,9,0,120,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30499,0,0,3,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30500,12,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30501,12,0,0,0,0,0,0,0,-1,0,133651,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30502,2,1,0,13,0,0,0,0,-1,0,132433,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +30503,12,0,0,0,0,0,0,0,-1,0,134173,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30504,2,15,1,13,0,3,0,0,-1,0,135662,8,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,0,0,0,0 +30505,4,2,7,5,0,0,0,0,-1,0,135024,7,0,70,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30506,15,0,3,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30507,15,0,3,0,0,0,0,0,-1,0,135240,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30508,15,0,3,0,0,0,0,0,-1,0,134169,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30509,15,0,3,0,0,0,0,0,-1,0,134515,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30510,15,0,0,0,0,0,0,0,-1,0,136081,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30511,15,0,0,0,0,0,0,0,-1,0,136062,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30512,15,0,2,0,0,0,0,0,-1,0,134339,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30513,15,0,2,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30514,4,1,7,3,0,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30515,4,1,7,1,0,0,0,0,-1,0,133149,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30516,4,1,7,6,0,0,0,0,-1,0,133693,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30517,4,1,7,7,0,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30518,4,1,7,5,0,0,0,0,-1,0,135022,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30519,4,1,7,8,0,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30520,4,1,7,9,0,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30521,4,1,7,10,0,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30522,2,10,2,17,0,2,0,0,-1,0,135150,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,328,0,0,0,0 +30523,2,19,2,26,0,0,0,0,-1,0,135464,12,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,234,0,0,0,0 +30524,12,0,0,0,0,0,0,0,-1,0,134916,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30525,12,0,0,0,0,0,0,0,-1,0,134915,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30526,12,0,0,0,0,0,0,0,-1,0,134917,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30527,12,0,0,0,0,0,0,0,-1,0,134336,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30528,4,2,8,5,70,0,0,0,-1,0,132637,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30529,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30530,12,0,0,0,0,0,0,0,-1,0,132926,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30531,4,1,7,7,70,0,0,0,-1,0,134672,7,0,75,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30532,4,1,7,7,70,0,0,0,-1,0,134610,7,0,75,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30533,4,4,6,7,70,0,0,0,-1,0,134697,9,0,120,0,0,0,0,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30534,4,3,5,7,70,0,0,0,-1,0,134668,11,0,105,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30535,4,2,8,7,70,0,0,0,-1,0,134660,7,0,90,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30536,4,4,6,7,70,0,0,0,-1,0,134697,11,0,120,0,0,0,0,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30538,4,2,8,7,70,0,0,0,-1,0,134634,7,0,90,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30539,12,0,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30540,0,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30541,4,3,5,7,70,0,0,0,-1,0,134628,10,0,105,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30542,4,0,0,12,0,0,0,0,-1,0,133865,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30543,4,1,7,7,70,0,0,0,-1,0,134614,7,0,75,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30544,4,0,0,12,0,0,0,0,-1,0,133870,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30545,12,0,0,0,0,0,0,0,-1,0,133326,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30546,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30547,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30548,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30549,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30550,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30551,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30552,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30553,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30554,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30555,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30556,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30557,2,2,2,13,1,0,0,0,-1,0,135507,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30558,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30559,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30560,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30561,12,0,0,0,0,0,0,0,-1,0,134097,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30563,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30564,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30565,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30566,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30567,12,0,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30568,2,16,2,25,66,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +30569,2,7,1,13,64,3,0,0,-1,0,135274,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,47,0,0,0,0 +30570,2,8,1,17,66,1,0,0,-1,0,135416,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +30571,3,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30572,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30573,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30574,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30575,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30576,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30577,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30578,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +30579,12,0,0,0,67,0,0,0,-1,0,135241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30580,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +30581,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30582,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30583,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30584,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30585,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30586,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30587,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30588,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30589,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30590,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30591,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30592,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30593,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30594,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30595,12,0,0,0,0,0,0,0,-1,0,134459,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30596,12,0,0,0,1,0,0,0,-1,0,134424,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30597,2,8,1,17,66,1,0,0,-1,0,135416,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,347,0,0,0,0 +30598,3,0,0,0,0,0,0,0,-1,0,134128,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30599,2,16,2,25,66,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +30600,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30601,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30602,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30603,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30604,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30605,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30606,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30607,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30608,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30609,15,5,0,0,70,0,0,0,-1,0,132249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30610,0,5,0,0,55,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30611,6,2,2,24,66,0,0,0,-1,0,133578,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,34,0,0,0,0 +30612,6,3,2,24,66,0,0,0,-1,0,133584,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,34,0,0,0,0 +30613,12,0,0,0,0,0,0,0,-1,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30614,12,0,0,0,0,0,0,0,-1,0,133013,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30615,0,0,3,0,0,0,0,0,-1,0,132788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30616,12,0,0,0,0,0,0,0,-1,0,133651,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30617,12,0,0,0,0,0,0,0,-1,0,134939,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30618,12,0,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30619,4,0,4,12,70,0,0,0,-1,0,133872,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30620,4,0,4,12,70,0,0,0,-1,0,134441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30621,4,0,4,12,70,0,0,0,-1,0,134100,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30622,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30623,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30624,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30625,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30626,4,0,4,12,70,0,0,0,-1,0,133003,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30627,4,0,4,12,70,0,0,0,-1,0,136111,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30628,12,0,0,0,0,0,0,0,-1,0,133867,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30629,4,0,4,12,70,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30630,12,0,0,0,0,0,0,0,-1,0,133864,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30631,12,0,0,0,0,0,0,0,-1,0,134518,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30632,15,0,0,0,0,0,0,0,-1,0,133742,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30633,13,0,0,0,0,0,0,0,-1,0,134245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30634,13,0,0,0,0,0,0,0,-1,0,134243,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30635,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30636,2,8,1,17,1,1,0,0,-1,0,135133,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30637,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30638,12,0,0,0,0,0,0,0,-1,0,132763,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30639,15,0,0,0,0,0,0,0,-1,0,133564,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30640,12,0,0,0,0,0,0,0,-1,0,134517,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30641,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30642,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30643,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30644,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30645,12,0,0,0,0,0,0,0,-1,0,134946,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30646,12,0,0,0,0,0,0,0,-1,0,132595,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30647,2,7,0,13,0,1,0,0,-1,0,135273,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +30648,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30649,12,0,0,0,0,0,0,0,-1,0,133469,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30650,12,0,0,0,0,0,0,0,-1,0,134404,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30651,12,0,0,0,0,0,0,0,-1,0,135466,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30652,12,0,0,0,0,0,0,0,-1,0,135467,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30653,12,0,0,0,0,0,0,0,-1,0,135468,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30654,12,0,0,0,0,0,0,0,-1,0,135469,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30655,12,0,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30656,12,0,0,0,0,0,0,0,-1,0,132488,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30657,12,0,0,0,0,0,0,0,-1,0,134423,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30658,12,0,0,0,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30659,12,0,0,0,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30660,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +30661,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30662,4,6,1,14,1,4,0,0,-1,0,134950,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30663,4,0,4,12,70,0,0,0,-1,0,134398,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30664,4,0,4,12,70,0,0,0,-1,0,134218,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30665,4,0,4,12,70,0,0,0,-1,0,133349,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30666,4,0,3,2,70,0,0,0,-1,0,133321,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30667,4,0,3,11,70,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30668,4,1,7,10,70,0,0,0,-1,0,132951,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30669,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30670,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30671,2,4,2,13,1,3,0,0,-1,0,133491,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30672,12,0,0,0,0,0,0,0,-1,0,135470,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30673,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30674,4,2,8,8,70,0,0,0,-1,0,132587,7,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30675,4,1,7,6,70,0,0,61,-1,0,132492,7,0,35,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30676,4,2,5,6,70,0,0,63,-1,0,132514,7,0,40,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30677,4,3,7,6,70,0,0,64,-1,0,132492,11,0,50,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30678,4,4,1,6,70,0,0,65,-1,0,132511,9,0,55,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30679,12,0,0,0,0,0,0,0,-1,0,135643,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30680,4,1,7,8,70,0,0,61,-1,0,132539,7,0,50,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30681,4,2,8,8,70,0,0,63,-1,0,132539,7,0,60,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30682,4,3,5,8,70,0,0,64,-1,0,132548,10,0,70,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30683,4,4,6,8,70,0,0,65,-1,0,132585,11,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30684,4,1,7,9,70,0,0,61,-1,0,132609,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30685,4,2,7,9,70,0,0,63,-1,0,132606,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30686,4,3,5,9,70,0,0,64,-1,0,132601,11,0,50,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30687,4,4,0,9,70,0,0,65,-1,0,132606,8,0,55,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30688,12,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30689,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30690,0,0,4,0,0,0,0,0,-1,0,132489,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30691,12,0,0,0,0,0,0,0,-1,0,134889,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30692,12,0,0,0,0,0,0,0,-1,0,134888,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30693,12,0,0,0,0,0,0,0,-1,0,134890,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30694,12,0,0,0,0,0,0,0,-1,0,134891,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30695,12,0,0,0,0,0,0,0,-1,0,135481,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30696,4,0,0,12,0,0,0,0,-1,0,134423,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30697,2,6,1,17,1,1,0,94,-1,0,135646,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30698,2,6,1,13,1,1,0,94,-1,0,135646,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30699,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30700,15,0,2,0,0,0,0,0,-1,0,134119,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30701,12,0,0,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30702,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30703,0,5,3,0,60,0,0,0,-1,0,132830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30704,12,0,0,0,0,0,0,0,-1,0,134295,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30705,4,4,6,3,70,0,0,0,-1,0,135057,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30706,12,0,0,0,0,0,0,0,-1,0,134295,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30707,4,2,8,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30708,4,3,5,6,70,0,0,0,-1,0,132492,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30709,4,1,7,7,70,0,0,0,-1,0,134608,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30710,4,0,3,2,70,0,0,0,-1,0,133291,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30711,15,0,0,0,0,0,0,0,-1,0,134228,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30712,13,0,0,0,0,0,0,0,-1,0,134247,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30713,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30714,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +30715,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +30716,12,0,0,0,0,0,0,0,-1,0,134385,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30717,12,0,0,0,0,0,0,0,-1,0,134295,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30718,4,1,7,20,1,0,0,0,-1,0,132665,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30719,4,0,0,1,0,0,0,0,-1,0,133149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30720,4,0,4,12,70,0,0,0,-1,0,136070,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30721,4,0,0,1,0,0,0,0,-1,0,133149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30722,2,1,1,17,70,1,0,0,-1,0,132454,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0,519,0,0,0,0 +30723,2,15,1,21,70,3,0,0,-1,0,135688,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,210,0,0,0,0 +30724,2,3,1,26,70,0,0,0,-1,0,135630,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,275,0,0,0,0 +30725,4,1,7,10,70,0,0,0,-1,0,132964,7,0,35,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30726,4,0,4,2,70,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30727,4,1,7,7,70,0,0,0,-1,0,134609,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30728,4,3,5,1,70,0,0,0,-1,0,133171,10,0,85,0,0,0,0,0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30729,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30730,4,2,8,5,70,0,0,0,-1,0,132686,7,0,120,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30731,4,4,1,1,70,0,0,0,-1,0,133160,9,0,100,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30732,2,10,2,17,70,2,0,0,-1,0,135224,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0,449,0,0,0,0 +30733,2,7,1,13,70,1,0,0,-1,0,135384,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,304,0,0,0,0 +30734,4,1,7,7,70,0,0,0,-1,0,134636,7,0,75,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30735,4,1,7,16,70,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30736,4,0,3,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30737,4,2,8,8,70,0,0,0,-1,0,132565,7,0,60,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30738,4,0,3,11,70,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30739,4,3,5,7,70,0,0,0,-1,0,134663,11,0,105,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30740,4,4,1,3,70,0,0,0,-1,0,135067,9,0,100,0,0,0,0,0,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30741,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30742,12,0,0,0,0,0,0,0,-1,0,133869,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30743,12,0,2,0,0,0,0,0,-1,0,136202,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30744,1,0,8,18,0,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30745,1,4,8,18,0,0,0,0,-1,0,132595,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30746,1,6,8,18,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30747,1,5,8,18,0,0,0,0,-1,0,133627,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30748,1,3,8,18,0,0,0,0,-1,0,133630,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30749,2,7,1,13,60,3,0,0,-1,0,135411,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0 +30750,2,8,1,17,60,1,0,0,-1,0,135418,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,151,0,0,0,0 +30751,2,0,1,21,60,3,0,0,-1,0,132408,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +30752,2,1,1,17,60,1,0,0,-1,0,132414,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,110,0,0,0,0 +30753,2,6,2,17,60,2,0,0,-1,0,135128,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,156,0,0,0,0 +30754,2,4,2,13,60,3,0,0,-1,0,136205,12,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,93,0,0,0,0 +30755,2,13,8,21,60,7,0,0,-1,0,134297,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,92,0,0,0,0 +30756,12,0,0,0,67,0,0,0,-1,0,135241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30757,2,18,0,26,60,0,0,0,-1,0,135542,13,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +30758,2,3,0,26,60,0,0,0,3,0,135622,13,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,113,0,0,0,0 +30759,2,2,0,15,60,0,0,0,-1,0,135503,13,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +30760,4,1,0,20,60,0,0,0,-1,0,132665,7,0,70,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30761,4,1,7,7,70,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,170,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30762,4,1,7,20,70,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,194,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30763,4,1,7,8,70,0,0,0,-1,0,132536,7,0,50,0,0,0,0,0,0,134,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30764,4,1,7,10,70,0,0,0,-1,0,132960,7,0,35,0,0,0,0,0,0,121,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30765,4,4,6,5,60,0,0,0,-1,0,132747,9,0,115,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30766,4,4,6,7,70,0,0,0,-1,0,134584,11,0,120,0,0,0,0,0,0,1269,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30767,4,4,8,10,70,0,0,0,-1,0,132956,9,0,55,0,0,0,0,0,0,906,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30768,4,4,8,8,70,0,0,0,-1,0,132551,8,0,75,0,0,0,0,0,0,997,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30769,4,4,6,5,70,0,0,0,-1,0,132743,11,0,165,0,0,0,0,0,0,1450,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30770,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,558,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30771,4,4,0,9,70,0,0,0,-1,0,132615,8,0,40,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30772,4,3,5,7,70,0,0,0,-1,0,134666,10,0,105,0,0,0,0,0,0,710,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30773,4,3,5,5,70,0,0,0,-1,0,132743,11,0,140,0,0,0,0,0,0,812,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30774,4,3,7,10,70,0,0,0,-1,0,132944,10,0,50,0,0,0,0,0,0,507,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30775,4,6,2,14,70,4,0,0,-1,0,134967,13,0,85,0,0,0,0,0,0,2523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30776,4,2,8,5,70,0,0,0,-1,0,132722,7,0,120,0,0,0,0,0,0,364,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30777,4,4,0,6,70,0,0,0,-1,0,132516,8,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30778,4,2,8,7,70,0,0,0,-1,0,134643,7,0,90,0,0,0,0,0,0,319,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30779,4,2,8,8,70,0,0,0,-1,0,132541,7,0,60,0,0,0,0,0,0,250,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30780,4,2,8,10,70,0,0,0,-1,0,132960,7,0,40,0,0,0,0,0,0,228,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30781,4,3,0,5,70,0,0,0,-1,0,132634,11,0,100,0,0,0,0,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30782,12,0,2,0,0,0,0,0,-1,0,135894,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30783,12,0,2,0,0,0,0,0,-1,0,136213,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30784,4,3,0,10,70,0,0,0,-1,0,132946,10,0,35,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30785,12,0,0,0,0,0,0,0,-1,0,135682,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30786,12,0,0,0,0,0,0,0,-1,0,135675,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30787,2,15,1,21,0,3,0,0,-1,0,135387,24,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,149,0,0,0,0 +30788,2,7,1,13,0,3,0,0,-1,0,135388,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,252,0,0,0,0 +30789,2,8,1,17,0,1,0,0,-1,0,135392,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,414,0,0,0,0 +30790,2,6,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30791,12,0,0,0,0,0,0,0,-1,0,136113,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30792,12,0,0,0,0,0,0,0,-1,0,134214,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30793,0,1,0,0,70,0,0,0,-1,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30794,12,0,5,0,1,0,0,0,-1,0,134246,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30795,2,6,1,17,1,2,0,0,-1,0,135131,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30796,12,0,0,0,1,0,0,0,-1,0,134571,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30797,12,0,0,0,0,0,0,0,-1,0,132637,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30798,12,0,8,0,0,0,0,0,-1,0,133725,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30799,12,0,0,0,0,0,0,0,-1,0,133773,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30800,12,0,0,0,0,0,0,0,-1,0,135151,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30801,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +30802,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30803,12,0,0,0,0,0,0,0,-1,0,133942,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30804,4,0,0,11,18,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30805,12,0,0,0,0,0,0,0,-1,0,132952,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30806,1,0,0,0,0,0,0,0,-1,0,133624,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30807,12,0,0,0,0,0,0,0,-1,0,134371,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30808,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30809,12,0,0,0,0,0,0,0,-1,0,136149,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30810,12,0,0,0,0,0,0,0,-1,0,133378,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30811,0,0,0,0,0,0,0,0,-1,0,134937,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30812,15,0,0,0,0,0,0,0,-1,0,134303,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30813,15,0,0,0,0,0,0,0,-1,0,134298,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30814,15,0,3,0,0,0,0,0,-1,0,133724,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30815,15,0,3,0,0,0,0,0,-1,0,134315,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30816,0,5,0,0,1,0,0,0,-1,0,134051,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30817,7,11,0,0,0,0,0,0,-1,0,134058,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30818,12,0,0,0,0,0,0,0,-1,0,134430,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30819,12,0,0,0,0,0,0,0,-1,0,134046,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30820,15,0,0,0,0,0,0,0,-1,0,133708,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30821,15,0,0,0,0,0,0,0,-1,0,132195,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30822,12,0,0,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30823,12,0,0,0,0,0,0,0,-1,0,136158,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30824,12,0,0,0,0,0,0,0,-1,0,133018,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30825,4,0,5,11,70,0,0,0,-1,0,133410,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0 +30826,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30827,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30828,12,0,0,0,0,0,0,0,-1,0,134380,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30829,12,0,0,0,0,0,0,0,-1,0,134098,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30830,2,6,1,17,70,2,0,0,-1,0,135127,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,406,0,0,0,0 +30831,4,1,7,16,69,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,76,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0 +30832,2,4,1,21,70,3,0,0,-1,0,133045,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,285,0,0,0,0 +30833,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30834,4,0,3,11,70,0,0,0,-1,0,133383,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30835,4,3,0,5,70,0,0,0,-1,0,132743,11,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30836,4,1,7,7,70,0,0,0,-1,0,134603,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30837,4,1,5,9,69,0,0,0,-1,0,132610,7,0,30,0,0,0,0,0,0,67,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30838,4,1,6,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30839,4,1,7,5,70,0,0,0,-1,0,132648,7,0,80,0,0,0,0,0,0,156,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30840,12,0,2,0,0,0,0,0,-1,0,134047,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30841,4,0,1,12,70,0,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30842,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30843,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30844,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30845,12,0,0,0,70,0,0,0,-1,0,135948,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30846,12,0,0,0,70,0,0,0,-1,0,132299,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30847,4,1,5,1,0,0,0,0,-1,0,133151,9,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30848,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +30849,12,0,2,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30850,12,0,0,0,0,0,0,0,-1,0,136124,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30851,12,0,0,0,0,0,0,0,-1,0,134347,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30852,12,0,0,0,0,0,0,0,-1,0,135980,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30853,12,0,0,0,0,0,0,0,-1,0,135127,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30854,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30855,2,0,1,13,0,3,0,0,-1,0,134707,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,107,0,0,0,0 +30856,4,4,6,1,0,0,0,0,-1,0,133117,11,0,70,0,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30857,4,0,3,23,0,0,0,0,-1,0,134249,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30858,0,0,3,0,0,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30859,2,19,2,26,0,0,0,0,-1,0,135473,21,0,65,0,3,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +30860,4,0,4,11,0,0,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30861,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30862,4,4,1,9,70,0,0,0,-1,0,132618,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30863,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30864,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30865,2,15,1,13,70,3,0,0,-1,0,135694,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +30866,4,4,6,3,70,0,0,0,-1,0,135090,11,0,100,0,0,0,0,0,0,1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30867,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30868,4,2,8,9,70,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30869,4,3,5,9,70,0,0,0,-1,0,132602,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30870,4,1,7,9,70,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30871,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30872,4,0,3,23,70,0,0,0,-1,0,134544,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30873,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30874,2,7,1,13,70,1,0,0,-1,0,135396,9,0,105,0,0,0,0,0,0,308,0,0,0,0,0,0,112,0,0,0,0,209,0,0,0,0 +30875,12,0,0,0,0,0,0,0,-1,0,135388,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30876,12,0,0,0,0,0,0,0,-1,0,135388,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30877,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30878,4,4,1,3,70,0,0,0,-1,0,135090,9,0,100,0,0,0,0,0,0,1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30879,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30880,4,3,5,8,70,0,0,0,-1,0,132552,11,0,70,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30881,2,7,1,13,70,3,0,0,-1,0,135395,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,339,0,0,0,0 +30882,4,6,6,14,70,4,0,0,-1,0,134983,9,0,120,0,0,0,0,0,0,5930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30883,2,10,2,17,70,2,0,0,-1,0,135196,13,0,120,0,0,0,0,0,0,550,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +30884,4,1,7,3,70,0,0,0,-1,0,135093,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30885,4,1,7,8,70,0,0,0,-1,0,132571,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30886,4,2,8,8,70,0,0,0,-1,0,132592,7,0,60,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30887,4,3,5,5,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30888,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30889,4,6,6,14,70,4,0,0,-1,0,134984,9,0,120,0,0,0,0,0,0,5930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30890,12,0,2,0,0,0,0,0,-1,0,136163,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30891,4,2,8,8,70,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30892,4,3,5,3,70,0,0,0,-1,0,135084,11,0,85,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30893,4,3,5,7,70,0,0,0,-1,0,134669,10,0,105,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30894,4,1,7,8,70,0,0,0,-1,0,132558,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30895,4,1,7,6,70,0,0,0,-1,0,132497,7,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30896,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30897,4,4,1,6,70,0,0,0,-1,0,132517,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30898,4,2,8,7,70,0,0,0,-1,0,134650,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30899,4,2,7,5,70,0,0,0,-1,0,132716,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30900,4,3,5,7,70,0,0,0,-1,0,134667,11,0,105,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30901,2,15,1,13,70,3,0,0,-1,0,135694,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,217,0,0,0,0 +30902,2,8,1,17,70,1,0,0,-1,0,135378,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,580,0,0,0,0 +30903,4,4,1,7,70,0,0,0,-1,0,134697,11,0,120,0,0,0,0,0,0,1650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30904,4,4,1,5,70,0,0,0,-1,0,132737,11,0,165,0,0,0,0,0,0,1886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30905,4,2,8,5,70,0,0,0,-1,0,132737,7,0,120,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30906,2,2,2,15,70,0,0,0,-1,0,135510,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0,374,0,0,0,0 +30907,4,3,5,5,70,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,1055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30908,2,10,2,17,70,2,0,0,-1,0,135190,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0,530,0,0,0,0 +30909,4,6,6,14,70,4,0,0,-1,0,134985,9,0,120,0,0,0,0,0,0,6336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30910,2,7,1,21,70,3,0,0,-1,0,135400,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,248,0,0,0,0 +30911,4,0,3,23,70,0,0,0,-1,0,134542,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30912,4,1,7,7,70,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30913,4,1,7,20,70,0,0,0,-1,0,132690,7,0,100,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30914,4,2,8,6,70,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30915,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30916,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30917,4,2,8,3,70,0,0,0,-1,0,135092,7,0,70,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30918,2,4,1,21,70,3,0,0,4,0,133537,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,235,0,0,0,0 +30919,4,3,5,6,70,0,0,0,-1,0,132511,11,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30920,4,1,7,5,0,0,0,0,-1,0,132643,7,0,70,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30921,4,1,7,7,0,0,0,0,-1,0,134608,7,0,55,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30922,4,1,7,1,0,0,0,0,-1,0,133161,7,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30923,4,1,7,6,0,0,0,0,-1,0,132497,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30924,4,1,7,10,0,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30925,4,1,7,3,0,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30926,4,1,7,8,0,0,0,0,-1,0,132566,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30927,4,1,5,9,0,0,0,0,-1,0,132600,7,0,25,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30928,4,1,7,5,0,0,0,0,-1,0,132644,7,0,70,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30929,4,1,7,7,0,0,0,0,-1,0,134606,7,0,55,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30930,4,1,7,10,0,0,0,0,-1,0,132943,7,0,25,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30931,4,1,7,1,0,0,0,0,-1,0,133162,7,0,45,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30932,4,1,7,6,0,0,0,0,-1,0,132497,7,0,30,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30933,4,2,8,5,0,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30934,4,2,8,7,0,0,0,0,-1,0,134637,7,0,65,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30935,4,2,8,1,0,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30936,4,2,0,6,0,0,0,0,-1,0,132504,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30937,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30938,4,2,5,3,0,0,0,0,-1,0,135045,7,0,50,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30939,4,2,8,8,0,0,0,0,-1,0,132554,7,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30940,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30941,4,2,8,7,0,0,0,0,-1,0,134626,7,0,65,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30942,4,2,0,6,0,0,0,0,-1,0,132506,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30943,4,2,8,10,0,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30944,4,2,8,9,0,0,0,0,-1,0,132605,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30945,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30946,4,2,8,1,0,0,0,0,-1,0,133072,7,0,50,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30947,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30948,4,3,5,7,0,0,0,0,-1,0,134697,10,0,90,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30949,4,3,7,1,0,0,0,0,-1,0,133069,10,0,60,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30950,4,3,5,6,0,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30951,4,3,5,10,0,0,0,0,-1,0,132960,10,0,40,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30952,4,3,5,3,0,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30953,4,3,5,8,0,0,0,0,-1,0,132536,10,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30954,4,3,5,9,0,0,0,0,-1,0,132613,10,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30955,4,3,7,1,0,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30956,4,3,5,9,0,0,0,0,-1,0,132617,10,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30957,4,3,5,7,0,0,0,0,-1,0,134697,10,0,75,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30958,4,3,5,8,0,0,0,0,-1,0,132536,10,0,50,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30959,4,4,6,5,0,0,0,0,-1,0,132747,11,0,115,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30960,4,4,6,7,0,0,0,0,-1,0,134697,9,0,85,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30961,4,4,6,1,0,0,0,0,-1,0,133076,11,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30962,4,4,1,6,0,0,0,0,-1,0,132502,9,0,45,0,0,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30963,4,4,6,10,0,0,0,0,-1,0,132956,11,0,40,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30964,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30965,4,4,6,8,0,0,0,0,-1,0,132536,11,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30966,4,4,6,9,0,0,0,0,-1,0,132613,11,0,40,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30967,4,4,6,10,0,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30968,4,4,6,8,0,0,0,0,-1,0,132536,11,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30969,4,4,1,10,70,0,0,0,-1,0,132985,9,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30970,4,4,1,10,70,0,0,0,-1,0,132985,9,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30971,4,1,7,16,0,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30972,4,4,1,1,70,0,0,0,-1,0,133194,9,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30973,4,0,4,11,0,0,0,0,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30974,4,4,1,1,70,0,0,0,-1,0,133194,9,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30975,4,4,1,5,70,0,0,0,-1,0,132757,9,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30976,4,4,1,5,70,0,0,0,-1,0,132757,9,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30977,4,4,1,7,70,0,0,0,-1,0,134703,9,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30978,4,4,1,7,70,0,0,0,-1,0,134703,9,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30979,4,4,1,3,70,0,0,0,-1,0,135087,9,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30980,4,4,1,3,70,0,0,0,-1,0,135087,9,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30981,4,0,3,2,0,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30982,4,4,1,10,70,0,0,0,-1,0,132983,9,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30983,4,4,1,10,70,0,0,0,-1,0,132983,11,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30984,4,6,1,14,0,4,0,0,-1,0,134981,9,0,100,0,0,0,0,0,0,3615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30985,4,4,1,10,70,0,0,0,-1,0,132983,9,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30986,4,6,1,14,0,4,0,0,-1,0,134951,9,0,85,0,0,0,0,0,0,3278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30987,4,4,1,1,70,0,0,0,-1,0,133192,9,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30988,4,4,1,1,70,0,0,0,-1,0,133192,11,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30989,4,4,1,1,70,0,0,0,-1,0,133192,9,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30990,4,4,1,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30991,4,4,1,5,70,0,0,0,-1,0,132756,9,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30992,4,4,1,5,70,0,0,0,-1,0,132756,9,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30993,4,4,1,7,70,0,0,0,-1,0,134702,9,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30994,4,4,1,7,70,0,0,0,-1,0,134702,9,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30995,4,4,1,7,70,0,0,0,-1,0,134702,9,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30996,4,4,1,3,70,0,0,0,-1,0,135085,9,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30997,4,4,1,3,70,0,0,0,-1,0,135085,9,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30998,4,4,1,3,70,0,0,0,-1,0,135085,9,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30999,2,15,1,13,0,3,0,0,-1,0,135665,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +31000,2,3,1,26,0,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +31001,4,3,5,10,70,0,0,0,-1,0,132982,11,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31002,2,7,1,21,0,3,0,0,-1,0,135274,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,227,0,0,0,0 +31003,4,3,5,1,70,0,0,0,-1,0,133191,11,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31004,4,3,5,5,70,0,0,0,-1,0,132733,11,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31005,4,3,5,7,70,0,0,0,-1,0,134674,11,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31006,4,3,5,3,70,0,0,0,-1,0,135084,11,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31007,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31008,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31009,2,10,2,17,0,2,0,0,-1,0,135187,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0,294,0,0,0,0 +31010,2,1,1,17,0,1,0,0,-1,0,132400,8,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,336,0,0,0,0 +31011,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31012,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31013,2,15,1,21,0,3,0,0,-1,0,135661,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +31014,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31015,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31016,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31017,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31018,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31019,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31020,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31021,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31022,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31023,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31024,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31025,4,8,2,28,0,0,0,0,-1,0,134423,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31026,4,2,8,10,70,0,0,0,-1,0,132988,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31027,4,2,8,1,70,0,0,0,-1,0,133082,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31028,4,2,8,5,70,0,0,0,-1,0,132731,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31029,4,2,8,7,70,0,0,0,-1,0,134652,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31030,4,2,8,3,70,0,0,0,-1,0,135092,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31031,4,9,2,28,0,0,0,0,-1,0,136053,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31032,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31033,4,7,2,28,0,0,0,0,-1,0,133745,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31034,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31035,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31036,2,10,2,17,0,2,0,0,-1,0,135224,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0,363,0,0,0,0 +31037,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31038,2,10,2,17,0,2,0,0,-1,0,135222,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0,363,0,0,0,0 +31039,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31040,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31041,4,2,8,20,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31042,4,2,8,20,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31043,4,2,8,20,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31044,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31045,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31046,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31047,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31048,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31049,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31050,4,1,7,10,70,0,0,0,-1,0,132989,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31051,4,1,7,1,70,0,0,0,-1,0,133083,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31052,4,1,7,20,70,0,0,0,-1,0,132709,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31053,4,1,7,7,70,0,0,0,-1,0,134623,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31054,4,1,7,3,70,0,0,0,-1,0,135093,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31055,4,1,7,10,70,0,0,0,-1,0,132987,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31056,4,1,7,1,70,0,0,0,-1,0,133081,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31057,4,1,7,20,70,0,0,0,-1,0,132708,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31058,4,1,7,7,70,0,0,0,-1,0,134622,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31059,4,1,7,3,70,0,0,0,-1,0,135089,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31060,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31061,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31062,2,1,1,17,0,1,0,0,-1,0,132455,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0,346,0,0,0,0 +31063,4,1,7,1,70,0,0,0,-1,0,133195,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31064,4,1,7,1,70,0,0,0,-1,0,133195,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31065,4,1,7,20,70,0,0,0,-1,0,132707,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31066,4,1,7,20,70,0,0,0,-1,0,132707,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31067,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31068,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31069,4,1,7,3,70,0,0,0,-1,0,135088,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31070,4,1,7,3,70,0,0,0,-1,0,135088,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31071,2,0,1,13,0,3,0,0,-1,0,132405,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +31072,2,2,2,15,0,0,0,0,-1,0,135504,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,213,0,0,0,0 +31073,2,15,1,13,0,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,157,0,0,0,0 +31074,4,0,3,2,0,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31075,4,0,6,11,0,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31076,4,0,6,11,0,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31077,4,0,6,11,0,0,0,0,-1,0,133381,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31078,4,0,6,11,0,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31079,7,4,1,0,0,0,0,0,-1,0,135732,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31080,7,11,1,0,0,0,0,0,-1,0,134115,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31081,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +31082,2,5,1,17,70,1,0,0,-1,0,133532,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,216,0,0,0,0 +31083,2,2,2,15,1,0,0,0,-1,0,135507,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7,0,0,0,0 +31084,13,0,0,0,0,0,0,0,-1,0,132777,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31085,12,0,0,0,0,0,0,0,-1,0,134078,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31086,12,0,0,0,0,0,0,0,-1,0,134081,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31087,12,0,0,0,0,0,0,0,-1,0,132776,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31088,15,0,7,0,0,0,0,0,-1,0,136030,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31089,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31090,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31091,15,0,0,0,70,0,0,0,-1,0,132625,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31092,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31093,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31094,15,0,0,0,70,0,0,0,-1,0,132961,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31095,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31096,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31097,15,0,0,0,70,0,0,0,-1,0,133126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31098,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31099,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31100,15,0,0,0,70,0,0,0,-1,0,134693,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31101,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31102,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31103,15,0,0,0,70,0,0,0,-1,0,135053,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31104,4,1,7,1,0,0,0,0,-1,0,133172,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31105,4,4,1,1,0,0,0,0,-1,0,133078,11,0,80,0,0,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31106,4,3,5,1,0,0,0,0,-1,0,133069,10,0,70,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31107,4,3,5,1,0,0,0,0,-1,0,133101,10,0,70,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31108,12,0,0,0,0,0,0,0,-1,0,135619,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31109,4,2,8,1,0,0,0,0,-1,0,133175,7,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31110,4,2,8,1,0,0,0,0,-1,0,133072,7,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31111,4,1,7,10,0,0,0,0,-1,0,132961,7,0,25,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31112,4,2,8,8,0,0,0,0,-1,0,132554,7,0,45,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31113,4,0,0,12,0,0,0,0,-1,0,135933,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0 +31114,4,3,5,6,0,0,0,0,-1,0,132500,10,0,35,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31115,4,4,6,3,0,0,0,0,-1,0,135054,11,0,70,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31116,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31117,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31118,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31119,12,0,8,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31120,12,0,0,0,65,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31121,0,0,0,0,0,0,0,0,-1,0,132911,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31122,0,0,0,0,0,0,0,0,-1,0,132715,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31123,12,0,0,0,0,0,0,0,-1,0,132999,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31124,12,0,0,0,0,0,0,0,-1,0,132998,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31125,4,4,6,8,60,0,0,0,-1,0,132587,9,0,65,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31126,4,2,8,10,60,0,0,0,-1,0,132955,7,0,35,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31127,4,3,0,5,60,0,0,0,-1,0,132629,11,0,120,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31128,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31129,12,0,0,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31130,12,0,0,0,0,0,0,0,-1,0,134156,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31131,4,2,8,6,60,0,0,0,-1,0,132513,7,0,35,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31132,12,0,0,0,0,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31133,4,1,7,7,60,0,0,0,-1,0,134588,7,0,65,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31134,2,8,1,17,60,1,0,0,-1,0,135381,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,281,0,0,0,0 +31135,12,0,0,0,0,0,0,0,-1,0,134874,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31136,4,4,6,5,61,0,0,0,-1,0,132748,11,0,135,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31137,4,4,6,10,61,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31138,4,3,5,6,61,0,0,0,-1,0,132498,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31139,2,4,2,13,61,3,0,0,-1,0,133483,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +31140,4,1,7,16,61,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31141,12,0,0,0,0,0,0,0,-1,0,133841,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31142,2,15,1,21,61,3,0,0,-1,0,135642,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,106,0,0,0,0 +31143,4,1,7,16,62,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31144,12,0,0,0,0,0,0,0,-1,0,133942,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31145,4,2,8,1,62,0,0,0,-1,0,133119,7,0,60,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31146,12,0,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31147,4,0,0,2,62,0,0,0,-1,0,133293,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31148,4,2,8,3,61,0,0,0,-1,0,135038,7,0,60,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31149,4,1,7,10,62,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31150,4,1,7,10,62,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31151,4,4,6,6,63,0,0,0,-1,0,132512,8,0,45,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31152,4,4,6,5,63,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31153,2,0,1,13,63,3,0,0,-1,0,132409,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,177,0,0,0,0 +31154,4,0,3,2,21,0,0,0,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31155,4,4,6,5,68,0,0,65,-1,0,132749,11,0,135,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31156,4,3,5,5,68,0,0,64,-1,0,132739,10,0,120,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31157,4,2,8,5,68,0,0,63,-1,0,132718,7,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31158,4,1,7,5,68,0,0,61,-1,0,132689,7,0,80,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31159,4,4,6,3,68,0,0,65,-1,0,135059,11,0,80,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31160,4,3,5,3,68,0,0,64,-1,0,135054,10,0,70,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31161,4,2,8,3,68,0,0,63,-1,0,135061,7,0,60,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31162,4,1,7,3,68,0,0,61,-1,0,135061,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31163,4,4,6,10,66,0,0,65,-1,0,132956,11,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31164,4,3,5,10,66,0,0,64,-1,0,132951,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31165,4,2,8,10,66,0,0,63,-1,0,132949,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31166,4,1,8,10,66,0,0,61,-1,0,132949,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31167,0,8,0,0,0,0,0,0,-1,0,132775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31168,4,4,6,5,60,0,0,65,-1,0,132747,11,0,135,0,0,0,0,0,0,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31169,12,0,0,0,0,0,0,0,-1,0,136021,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31170,4,3,5,5,60,0,0,64,-1,0,132629,10,0,120,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31172,4,2,8,5,60,0,0,63,-1,0,132759,7,0,100,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31173,4,3,5,8,63,0,0,0,-1,0,132536,10,0,60,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31174,4,1,7,5,60,0,0,61,-1,0,132666,7,0,80,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31175,4,2,8,9,63,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31176,4,4,6,10,62,0,0,65,-1,0,132944,11,0,45,0,0,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31177,4,3,5,10,62,0,0,64,-1,0,132945,10,0,40,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31178,4,0,3,2,63,0,0,0,-1,0,133314,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31179,4,2,8,10,62,0,0,63,-1,0,132955,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31180,4,4,6,10,64,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31181,4,1,7,10,62,0,0,61,-1,0,132950,7,0,30,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31182,4,4,6,1,60,0,0,65,-1,0,133076,11,0,80,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31183,4,3,5,1,60,0,0,64,-1,0,133126,10,0,70,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31184,4,2,8,1,60,0,0,63,-1,0,133076,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31185,4,1,7,1,60,0,0,61,-1,0,132768,10,0,50,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31186,2,10,2,17,64,2,0,0,-1,0,135187,13,0,100,0,0,0,0,0,0,550,0,0,0,0,0,0,181,0,0,0,0,273,0,0,0,0 +31187,4,3,5,8,64,0,0,0,-1,0,132554,11,0,60,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31188,4,4,6,9,63,0,0,65,-1,0,132605,11,0,45,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31189,4,3,5,9,63,0,0,64,-1,0,132611,10,0,40,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31190,4,2,8,3,68,0,0,0,-1,0,135061,7,0,60,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31191,4,2,8,9,63,0,0,63,-1,0,132611,7,0,35,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31192,4,1,7,9,63,0,0,61,-1,0,132611,7,0,30,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31193,2,15,1,13,64,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,98,0,0,0,0 +31194,4,0,3,2,64,0,0,81,-1,0,133306,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31195,4,4,6,6,66,0,0,65,-1,0,132502,11,0,45,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31196,4,0,3,2,64,0,0,0,-1,0,133322,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31197,4,3,5,6,66,0,0,64,-1,0,132521,10,0,40,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31198,4,2,8,6,66,0,0,63,-1,0,132498,7,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31199,4,1,8,6,66,0,0,61,-1,0,132497,7,0,30,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31200,4,6,1,14,65,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,3329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31201,4,1,7,16,66,0,0,66,-1,0,133772,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31202,4,4,5,6,65,0,0,0,-1,0,132497,8,0,45,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31203,4,0,3,11,66,0,0,81,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31204,2,3,1,26,65,0,0,0,-1,0,135616,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,210,0,0,0,0 +31205,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31206,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31207,2,8,1,17,1,1,0,0,-1,0,135274,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31208,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31209,4,4,6,7,68,0,0,65,-1,0,134677,11,0,100,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31210,4,3,5,7,68,0,0,64,-1,0,134660,10,0,90,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31211,4,2,8,7,68,0,0,63,-1,0,134626,7,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31212,4,1,7,7,68,0,0,61,-1,0,134600,7,0,65,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31213,4,4,6,8,68,0,0,65,-1,0,132585,11,0,65,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31214,4,3,5,8,68,0,0,64,-1,0,132551,10,0,60,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31215,4,2,8,8,68,0,0,63,-1,0,132559,7,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31216,4,1,7,8,68,0,0,61,-1,0,132562,7,0,40,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31217,4,4,6,1,68,0,0,65,-1,0,133884,11,0,80,0,0,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31218,4,3,5,1,68,0,0,64,-1,0,133884,10,0,70,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31219,4,2,8,1,68,0,0,63,-1,0,133884,7,0,60,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31220,4,1,7,1,68,0,0,61,-1,0,133884,7,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31221,4,4,6,9,66,0,0,65,-1,0,132613,11,0,45,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31222,4,3,5,1,65,0,0,0,-1,0,133159,10,0,70,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31223,4,3,5,9,66,0,0,64,-1,0,132616,10,0,40,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31224,4,2,8,9,66,0,0,63,-1,0,132617,7,0,35,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31225,4,1,7,9,66,0,0,61,-1,0,132609,7,0,30,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31226,4,2,8,7,65,0,0,0,-1,0,134606,7,0,75,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31227,4,4,6,6,62,0,0,65,-1,0,132512,11,0,45,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31228,4,3,5,6,62,0,0,64,-1,0,132511,10,0,40,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31229,4,2,8,6,62,0,0,63,-1,0,132514,7,0,35,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31230,4,1,7,8,65,0,0,0,-1,0,132562,7,0,40,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31231,4,1,7,6,62,0,0,61,-1,0,132512,7,0,30,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31232,4,4,6,8,62,0,0,65,-1,0,132587,11,0,65,0,0,0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31233,4,3,5,8,62,0,0,64,-1,0,132548,10,0,60,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31234,2,7,1,13,66,3,0,0,-1,0,135389,24,0,90,0,0,0,0,0,0,195,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +31235,4,2,8,8,62,0,0,63,-1,0,132539,7,0,50,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31236,4,1,7,8,62,0,0,61,-1,0,132571,7,0,40,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31237,4,2,8,7,66,0,0,0,-1,0,134627,7,0,75,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31238,4,0,3,11,63,0,0,81,-1,0,133408,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31239,12,0,0,0,68,0,0,0,-1,0,134459,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31240,4,3,8,7,66,0,0,0,-1,0,134655,7,0,90,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31241,12,0,0,0,68,0,0,0,-1,0,134459,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31242,4,4,6,7,61,0,0,65,-1,0,134689,11,0,100,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31243,4,3,5,7,61,0,0,64,-1,0,134664,10,0,90,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31244,4,2,8,7,61,0,0,63,-1,0,134641,7,0,75,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31245,12,0,0,0,0,0,0,0,-1,0,134459,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31246,4,1,7,7,61,0,0,61,-1,0,134604,7,0,65,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31247,4,4,6,3,61,0,0,65,-1,0,135049,11,0,80,0,0,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31248,4,3,5,3,61,0,0,64,-1,0,135053,10,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31249,4,2,8,3,61,0,0,63,-1,0,135036,7,0,60,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31250,4,1,7,3,61,0,0,61,-1,0,135035,7,0,50,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31251,12,0,0,0,0,0,0,0,-1,0,134459,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31252,12,0,0,0,0,0,0,0,-1,0,134459,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31253,2,10,0,17,0,1,0,0,-1,0,135179,12,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31254,4,1,7,16,64,0,0,66,-1,0,133761,7,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31255,4,1,7,16,66,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31256,4,3,5,5,13,0,0,163,-1,0,132629,10,0,80,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31257,2,10,0,17,0,2,0,0,-1,0,135170,12,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31258,4,0,3,11,66,0,0,0,-1,0,133426,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31259,2,7,0,13,0,3,0,0,-1,0,135372,12,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +31260,12,0,0,0,0,0,0,0,-1,0,134944,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31261,12,0,0,0,0,0,0,0,-1,0,134945,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31262,12,0,0,0,0,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31263,4,2,8,5,13,0,0,162,-1,0,132723,7,0,65,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31264,4,1,7,20,13,0,0,161,-1,0,132666,7,0,55,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31265,4,6,0,14,0,4,0,0,-1,0,134971,12,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31266,2,6,0,17,0,2,0,0,-1,0,135579,12,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31267,2,8,0,17,0,1,0,0,-1,0,132376,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +31268,2,0,1,13,13,3,0,163,-1,0,132417,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,18,0,0,0,0 +31269,2,4,1,13,13,3,0,162,-1,0,133054,12,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,29,0,0,0,0 +31270,2,19,2,26,13,0,0,161,-1,0,135474,21,0,40,0,5,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,25,0,0,0,0 +31271,12,0,0,0,0,0,0,0,-1,0,134937,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31272,4,1,8,1,66,0,0,0,-1,0,134085,7,0,50,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31273,2,6,1,17,1,2,0,0,-1,0,135565,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +31274,2,6,1,17,1,1,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31275,4,0,5,2,67,0,0,0,-1,0,133306,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31276,4,4,6,8,67,0,0,0,-1,0,132547,9,0,65,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31277,4,0,3,11,67,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31278,12,0,0,0,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31279,4,0,0,19,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31280,4,3,5,10,67,0,0,0,-1,0,132944,10,0,40,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31281,4,2,8,1,67,0,0,0,-1,0,133144,7,0,60,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31282,4,1,7,20,67,0,0,0,-1,0,132672,7,0,80,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31283,4,1,7,6,67,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31284,4,4,6,9,68,0,0,0,-1,0,132609,8,0,45,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31285,4,2,8,5,68,0,0,0,-1,0,132721,7,0,100,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31286,4,3,0,5,68,0,0,0,-1,0,132745,11,0,120,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31287,4,6,6,14,68,4,0,0,-1,0,134952,9,0,100,0,0,0,0,0,0,3615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31288,4,2,8,8,68,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31289,2,10,2,17,68,2,0,0,-1,0,135183,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0,367,0,0,0,0 +31290,4,0,0,11,70,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31291,2,1,1,17,69,1,0,0,-1,0,132433,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,380,0,0,0,0 +31292,4,6,1,14,69,4,0,0,-1,0,134980,9,0,100,0,0,0,0,0,0,3711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31293,4,3,5,6,69,0,0,0,-1,0,132520,10,0,40,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31294,4,3,5,3,69,0,0,0,-1,0,135054,10,0,70,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31295,4,2,8,5,69,0,0,0,-1,0,132720,7,0,100,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31296,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31297,4,1,7,20,69,0,0,0,-1,0,132666,7,0,80,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31298,4,4,6,7,70,0,0,0,-1,0,134697,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31299,2,5,1,17,68,1,0,0,-1,0,133527,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,420,0,0,0,0 +31300,12,0,0,0,0,0,0,0,-1,0,134059,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31301,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31302,2,7,1,13,1,3,0,0,-1,0,135325,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31303,2,2,2,15,70,0,0,0,-1,0,135492,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,242,0,0,0,0 +31304,2,4,2,21,70,3,0,0,-1,0,133514,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +31305,2,15,1,13,70,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +31306,4,1,7,7,70,0,0,0,-1,0,134677,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31307,12,0,0,0,0,0,0,0,-1,0,132780,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31308,2,10,2,17,70,2,0,0,-1,0,135143,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +31309,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31310,12,0,0,0,0,0,0,0,-1,0,135619,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31311,2,7,1,13,1,1,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31312,4,1,7,8,0,0,0,0,-1,0,132547,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31313,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31314,4,3,5,3,0,0,0,0,-1,0,135041,10,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31315,4,4,6,6,0,0,0,0,-1,0,132500,11,0,40,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31316,12,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31317,12,0,0,0,0,0,0,0,-1,0,135148,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31318,2,1,1,17,70,1,0,0,-1,0,132459,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,444,0,0,0,0 +31319,4,0,4,11,70,0,0,0,-1,0,133423,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31320,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31321,4,0,4,2,70,0,0,0,-1,0,133324,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31322,2,5,1,17,70,1,0,0,-1,0,133065,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,457,0,0,0,0 +31323,2,3,2,26,70,0,0,0,-1,0,135629,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,259,0,0,0,0 +31324,12,0,0,0,0,0,0,0,-1,0,132919,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31325,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +31326,4,0,3,11,70,0,0,0,-1,0,133400,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31327,2,6,1,17,1,2,0,0,-1,0,135321,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31328,4,3,5,7,70,0,0,0,-1,0,134668,11,0,105,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31329,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31330,4,3,7,1,70,0,0,0,-1,0,133074,8,0,85,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31331,2,15,1,13,70,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,176,0,0,0,0 +31332,2,7,1,13,70,3,0,0,-1,0,135386,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,275,0,0,0,0 +31333,4,2,7,1,70,0,0,0,-1,0,133145,7,0,70,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31334,2,10,2,17,70,2,0,0,-1,0,135186,13,0,120,0,0,0,0,0,0,320,0,0,0,0,0,0,253,0,0,0,0,380,0,0,0,0 +31335,4,2,8,7,70,0,0,0,-1,0,134660,7,0,90,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31336,2,7,1,21,70,3,0,0,-1,0,135271,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +31337,0,0,0,0,0,0,0,0,-1,0,134334,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31338,4,0,3,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31339,4,0,3,11,70,0,0,0,-1,0,133398,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31340,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31341,4,1,7,16,67,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,67,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31342,2,4,1,21,70,3,0,0,-1,0,133533,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,222,0,0,0,0 +31343,4,1,7,7,70,0,0,0,-1,0,134614,7,0,75,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31344,12,0,0,0,0,0,0,0,-1,0,135437,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31345,12,0,0,0,68,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31346,12,0,0,0,0,0,0,0,-1,0,135432,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31347,12,0,0,0,0,0,0,0,-1,0,135434,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31348,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +31349,12,0,0,0,0,0,0,0,-1,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31350,12,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31351,12,0,2,0,0,0,0,0,-1,0,135789,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31352,2,18,1,26,1,0,0,0,-1,0,135540,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +31353,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31354,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31355,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31356,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31357,9,6,4,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31358,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31359,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31360,12,0,0,12,67,0,0,0,-1,0,135160,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31361,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31362,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31363,12,0,0,0,65,0,0,0,-1,0,134451,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31364,4,4,0,5,70,0,0,0,-1,0,132742,9,0,165,0,0,0,0,0,0,1450,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0 +31365,12,0,0,0,0,0,0,0,-1,0,135161,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31366,12,0,0,1,65,0,0,0,-1,0,133133,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31367,4,4,0,7,70,0,0,0,-1,0,134694,9,0,120,0,0,0,0,0,0,1269,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0 +31368,4,4,0,1,70,0,0,0,-1,0,133124,8,0,100,0,0,0,0,0,0,1178,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0 +31369,4,4,0,5,70,0,0,0,-1,0,132746,9,0,165,0,0,0,0,0,0,1450,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0 +31370,4,4,0,7,70,0,0,0,-1,0,134686,9,0,120,0,0,0,0,0,0,1110,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0 +31371,4,4,0,1,70,0,0,0,-1,0,133074,8,0,100,0,0,0,0,0,0,1030,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0 +31372,12,0,0,0,0,0,0,0,-1,0,134368,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31373,12,0,0,0,0,0,0,0,-1,0,134341,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31374,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31375,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31376,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31377,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31378,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31379,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31380,4,0,3,11,0,0,0,0,-1,0,133406,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31381,4,0,3,11,0,0,0,0,-1,0,133407,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31382,4,0,3,11,0,0,0,0,-1,0,133405,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31383,4,0,3,11,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31384,12,0,0,0,65,0,0,0,-1,0,133133,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31386,12,0,0,0,0,0,0,0,-1,0,135225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31387,12,0,0,0,65,0,0,0,-1,0,133133,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31389,12,0,0,0,0,0,0,0,-1,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31390,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31391,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31392,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31393,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31394,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31395,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31396,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31397,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31398,4,0,3,11,70,0,0,0,-1,0,133412,14,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0 +31399,4,0,3,11,70,0,0,0,-1,0,133411,14,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0 +31400,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31401,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31402,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31403,12,0,0,0,0,0,0,0,-1,0,132858,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31404,4,0,0,19,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31405,4,0,0,19,0,0,0,0,-1,0,135019,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31406,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31407,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31408,15,0,0,0,0,0,0,0,-1,0,132597,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31409,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31410,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31411,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31412,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31413,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31414,2,10,2,17,0,2,0,0,-1,0,135185,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +31415,4,6,1,14,0,4,0,0,-1,0,134949,13,0,85,0,0,0,0,0,0,3278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31416,2,2,2,15,0,0,0,0,-1,0,135496,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,159,0,0,0,0 +31417,2,10,2,17,0,2,0,0,-1,0,135170,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0,388,0,0,0,0 +31418,4,1,7,10,0,0,0,0,-1,0,132950,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31419,4,2,8,3,0,0,0,0,-1,0,135057,7,0,50,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31420,4,3,5,8,0,0,0,0,-1,0,132545,10,0,50,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31421,4,4,6,9,0,0,0,0,-1,0,132605,11,0,40,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31422,2,15,1,13,0,3,0,0,-1,0,135639,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,126,0,0,0,0 +31423,2,0,1,13,0,3,0,0,-1,0,132396,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +31424,2,19,2,26,0,0,0,0,-1,0,135464,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,199,0,0,0,0 +31425,4,1,7,6,0,0,0,0,-1,0,132499,7,0,25,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31426,4,2,8,9,0,0,0,0,-1,0,132606,7,0,30,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31427,4,3,5,3,0,0,0,0,-1,0,135055,10,0,60,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31428,4,4,6,10,0,0,0,0,-1,0,132949,11,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31429,4,1,7,3,0,0,0,0,-1,0,135054,7,0,45,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31430,4,2,8,10,0,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31431,4,3,5,9,0,0,0,0,-1,0,132602,10,0,35,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31432,4,4,6,8,0,0,0,0,-1,0,132546,11,0,55,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31433,4,1,7,5,0,0,0,0,-1,0,132645,7,0,70,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31434,4,2,8,7,0,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31435,4,3,5,1,0,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31436,4,4,6,3,0,0,0,0,-1,0,135062,9,0,70,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31437,0,8,7,0,0,0,0,0,-1,0,132801,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31438,4,1,7,3,0,0,0,0,-1,0,135040,7,0,45,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31439,4,2,8,10,0,0,0,0,-1,0,132951,7,0,30,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31440,4,3,5,6,0,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31441,4,4,1,8,0,0,0,0,-1,0,132583,9,0,55,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31442,4,1,7,7,0,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31443,4,2,8,5,0,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31444,4,3,5,1,0,0,0,0,-1,0,133120,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31445,4,4,6,6,0,0,0,0,-1,0,132500,11,0,40,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31446,2,15,1,13,0,3,0,0,-1,0,135660,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +31447,2,15,1,21,0,3,0,0,-1,0,135661,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +31448,2,7,1,21,0,3,0,0,-1,0,135665,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +31449,0,0,3,0,0,0,0,0,-1,0,134724,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31450,0,0,3,0,0,0,0,0,-1,0,134722,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31451,0,0,3,0,0,0,0,0,-1,0,134729,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31452,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31453,4,2,8,8,0,0,0,0,-1,0,132586,7,0,45,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31454,4,3,5,10,0,0,0,0,-1,0,132937,10,0,35,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31455,4,4,6,6,0,0,0,0,-1,0,132502,11,0,40,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31456,4,1,7,8,0,0,0,0,-1,0,132544,7,0,35,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31457,4,2,8,1,0,0,0,0,-1,0,133152,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31458,4,3,5,7,0,0,0,0,-1,0,134667,11,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31459,4,4,6,5,0,0,0,0,-1,0,132746,11,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31460,4,4,6,6,0,0,0,0,-1,0,132512,9,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31461,4,1,7,6,0,0,0,0,-1,0,132499,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31462,4,3,5,6,0,0,0,0,-1,0,132500,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31463,12,0,0,0,0,0,0,0,-1,0,134092,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31464,4,2,8,6,0,0,0,0,-1,0,132505,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31465,4,1,7,16,0,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31466,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31467,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31468,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31469,12,0,0,0,0,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31470,4,1,7,5,0,0,0,0,-1,0,132716,7,0,70,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31471,4,2,8,7,0,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31472,4,3,5,6,0,0,0,0,-1,0,132512,10,0,35,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31473,4,4,6,10,0,0,0,0,-1,0,132957,11,0,40,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31474,2,19,2,26,0,0,0,0,-1,0,135466,21,0,55,0,6,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,206,0,0,0,0 +31475,2,15,1,21,0,3,0,0,-1,0,135661,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,102,0,0,0,0 +31476,2,15,1,13,0,3,0,0,-1,0,135652,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,131,0,0,0,0 +31477,4,1,7,10,0,0,0,0,-1,0,132953,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31478,4,2,8,8,0,0,0,0,-1,0,132547,7,0,45,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31479,4,3,5,9,0,0,0,0,-1,0,132612,10,0,35,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31480,4,4,6,6,0,0,0,0,-1,0,132500,11,0,40,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31481,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31482,4,2,8,10,0,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31483,4,4,5,3,0,0,0,0,-1,0,135055,10,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31484,4,3,5,6,0,0,0,0,-1,0,132502,10,0,35,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31485,4,1,7,7,0,0,0,0,-1,0,134612,7,0,55,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31486,4,2,8,5,0,0,0,0,-1,0,132719,7,0,85,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31487,4,3,5,1,0,0,0,0,-1,0,133076,10,0,60,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31488,4,4,6,8,0,0,0,0,-1,0,132551,11,0,55,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31489,12,0,0,0,65,0,0,0,-1,0,136210,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31490,4,6,1,14,0,4,0,0,-1,0,134950,9,0,100,0,0,0,0,0,0,3615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31491,4,6,1,14,0,4,0,0,-1,0,134951,9,0,100,0,0,0,0,0,0,3615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31492,2,15,1,13,0,3,0,0,-1,0,135673,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,156,0,0,0,0 +31493,4,0,3,23,0,7,0,0,-1,0,134542,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31494,4,0,3,23,0,7,0,0,-1,0,134540,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31495,0,0,0,0,0,0,0,0,-1,0,136210,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31496,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31497,2,16,1,25,1,0,0,0,-1,0,135124,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31498,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31499,2,16,1,25,1,0,0,0,-1,0,135124,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31500,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31501,9,0,0,0,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31502,9,0,0,0,70,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31503,9,0,0,0,70,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31504,12,0,0,0,0,0,0,0,-1,0,134082,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31505,9,0,0,0,70,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31506,9,0,0,0,70,0,0,0,-1,0,133735,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31507,9,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31508,4,1,7,7,0,0,0,0,-1,0,134599,7,0,55,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31509,4,1,7,1,0,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31510,4,1,7,10,0,0,0,0,-1,0,132958,7,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31511,4,2,8,5,0,0,0,0,-1,0,132721,7,0,85,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31512,4,2,8,6,0,0,0,0,-1,0,132514,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31513,4,2,8,6,0,0,0,0,-1,0,132502,7,0,30,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31514,4,3,5,5,0,0,0,0,-1,0,132634,10,0,100,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31515,4,3,5,10,0,0,0,0,-1,0,132965,10,0,35,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31516,4,3,5,9,0,0,0,0,-1,0,132605,10,0,35,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31517,0,0,0,0,0,0,0,0,-1,0,132915,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31518,0,0,0,0,0,0,0,0,-1,0,132920,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31519,4,4,6,7,0,0,0,0,-1,0,134696,11,0,85,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31520,4,4,0,1,0,0,0,0,-1,0,133127,8,0,70,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31521,4,4,6,3,0,0,0,0,-1,0,135055,11,0,70,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31522,12,0,0,0,0,0,0,0,-1,0,133647,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31523,4,0,3,11,0,0,0,0,-1,0,133354,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31524,12,0,0,0,0,0,0,0,-1,0,132900,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31525,12,0,0,0,0,0,0,0,-1,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31526,4,0,3,11,0,0,0,0,-1,0,133411,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31527,4,0,3,11,0,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31528,4,0,3,11,0,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31529,12,0,8,0,0,0,0,0,-1,0,133148,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31530,12,0,0,0,0,0,0,0,-1,0,132897,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31531,4,1,7,9,0,0,0,0,-1,0,132612,7,0,25,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31532,4,2,8,8,0,0,0,0,-1,0,132564,7,0,45,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31533,4,3,5,3,0,0,0,0,-1,0,135054,10,0,60,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31534,4,4,6,10,0,0,0,0,-1,0,132963,11,0,40,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31535,0,0,3,0,0,0,0,0,-1,0,132273,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31536,13,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31537,4,1,7,8,0,0,0,0,-1,0,132536,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31538,4,2,8,3,0,0,0,0,-1,0,135049,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31539,4,3,5,6,0,0,0,0,-1,0,132492,10,0,35,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31540,4,4,6,9,0,0,0,0,-1,0,132618,11,0,40,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31541,2,7,1,13,0,3,0,0,-1,0,135343,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,120,0,0,0,0 +31542,2,1,1,17,0,1,0,0,-1,0,132434,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +31543,2,10,2,17,0,2,0,0,-1,0,135151,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,244,0,0,0,0 +31544,4,2,8,7,0,0,0,0,-1,0,134594,7,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31545,4,2,8,7,0,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31546,4,1,7,1,0,0,0,0,-1,0,134130,14,0,50,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31547,4,3,5,1,0,0,0,0,-1,0,133147,11,0,70,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31548,4,4,6,5,0,0,0,0,-1,0,132745,11,0,135,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31549,4,4,6,5,0,0,0,0,-1,0,132751,11,0,135,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31550,12,0,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31551,2,5,1,13,1,4,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31552,4,1,7,1,70,0,0,201,-1,0,133155,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31553,4,1,7,3,70,0,0,201,-1,0,135035,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31554,4,1,7,5,70,0,0,201,-1,0,132649,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31555,4,1,7,6,70,0,0,201,-1,0,132511,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31556,4,1,7,7,70,0,0,201,-1,0,134602,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31557,4,1,7,8,70,0,0,201,-1,0,132558,7,0,40,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31558,4,1,7,9,70,0,0,201,-1,0,132606,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31559,4,1,7,10,70,0,0,201,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31560,4,2,8,1,70,0,0,202,-1,0,133131,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31561,4,2,8,3,70,0,0,202,-1,0,135061,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31562,4,2,8,5,70,0,0,202,-1,0,132722,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31563,4,2,8,6,70,0,0,202,-1,0,132512,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31564,4,2,8,7,70,0,0,202,-1,0,134696,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31565,4,2,8,8,70,0,0,202,-1,0,132539,7,0,50,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31566,4,2,8,9,70,0,0,202,-1,0,132606,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31567,4,2,8,10,70,0,0,202,-1,0,132949,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31568,4,3,5,1,70,0,0,203,-1,0,133078,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31569,4,3,5,3,70,0,0,203,-1,0,135055,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31570,4,3,0,5,70,0,0,203,-1,0,132639,11,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31571,4,3,5,6,70,0,0,203,-1,0,132511,10,0,40,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31572,4,3,5,7,70,0,0,203,-1,0,134660,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31573,4,3,5,8,70,0,0,203,-1,0,132551,10,0,60,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31574,4,3,5,9,70,0,0,203,-1,0,132606,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31575,4,3,5,10,70,0,0,203,-1,0,132951,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31576,4,4,6,1,70,0,0,204,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31577,4,4,6,3,70,0,0,204,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31578,4,4,6,5,70,0,0,204,-1,0,132749,9,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31579,4,4,6,6,70,0,0,204,-1,0,132522,11,0,45,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31580,4,4,6,7,70,0,0,204,-1,0,134681,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31581,4,4,6,8,70,0,0,204,-1,0,132547,9,0,65,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31582,4,4,6,9,70,0,0,204,-1,0,132613,8,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31583,4,4,6,10,70,0,0,204,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31584,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31585,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31586,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31587,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31588,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31589,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31590,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31591,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31592,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31593,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31594,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31595,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31596,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31597,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31598,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31599,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31600,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +31601,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +31603,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +31604,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +31605,2,10,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +31606,12,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31607,12,0,0,0,0,0,0,0,-1,0,134946,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31608,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31609,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31610,12,0,0,0,0,0,0,0,-1,0,135463,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31611,2,7,1,13,1,3,0,0,-1,0,135379,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31612,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31613,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31614,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31615,4,0,3,12,0,0,0,0,-1,0,133446,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31616,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31617,4,0,3,12,0,0,0,0,-1,0,133447,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31618,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31619,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31620,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31621,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31622,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31623,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31624,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31625,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31626,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31627,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31628,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31629,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31630,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31631,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31632,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31633,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31634,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31635,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31636,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31637,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31638,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31639,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31640,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31641,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31642,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31643,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31644,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31646,4,3,5,5,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31647,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31648,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31649,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31650,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31651,12,0,2,0,0,0,0,0,-1,0,136232,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31652,12,0,0,0,0,0,0,0,-1,0,134081,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31653,12,0,0,0,0,0,0,0,-1,0,134722,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31654,2,4,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +31655,13,0,0,0,0,0,0,0,-1,0,134242,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31656,12,0,2,0,0,0,0,0,-1,0,132160,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31657,4,1,7,5,0,0,0,0,-1,0,132647,7,0,70,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31658,4,2,8,1,0,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31659,4,1,7,3,0,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31660,4,2,8,6,0,0,0,0,-1,0,132512,7,0,30,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31661,4,2,8,9,0,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31662,12,0,0,0,0,0,0,0,-1,0,133463,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31663,12,0,2,0,0,0,0,0,-1,0,136069,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31664,13,0,0,0,0,0,0,0,-1,0,134247,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31665,15,0,0,0,0,0,0,0,-1,0,133015,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31666,7,3,0,0,0,0,0,0,-1,0,133878,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31667,2,5,4,0,35,3,0,0,-1,0,133490,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,278,0,0,0 +31668,12,0,0,0,0,0,0,0,-1,0,136019,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31669,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31670,7,8,0,0,0,0,0,0,-1,0,133972,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31671,7,8,0,0,0,0,0,0,-1,0,134054,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31672,0,5,0,0,55,0,0,0,-1,0,134004,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31673,0,5,0,0,55,0,0,0,-1,0,134044,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31674,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31675,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31676,0,1,3,0,60,0,0,0,-1,0,134766,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31677,0,1,3,0,60,0,0,0,-1,0,134763,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31678,12,0,0,0,0,0,0,0,-1,0,135147,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31679,0,2,3,0,60,0,0,0,-1,0,134779,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31680,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31681,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31682,9,6,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31683,4,1,7,6,0,0,0,0,-1,0,132501,7,0,25,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31684,4,2,8,10,0,0,0,0,-1,0,132940,7,0,30,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31685,4,3,5,7,0,0,0,0,-1,0,134667,11,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31686,4,4,6,5,0,0,0,0,-1,0,132744,11,0,115,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31687,4,1,7,3,0,0,0,0,-1,0,135055,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31688,4,2,8,1,0,0,0,0,-1,0,132138,7,0,50,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31689,4,3,5,7,0,0,0,0,-1,0,134653,11,0,75,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31690,4,4,6,6,0,0,0,0,-1,0,132512,11,0,40,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31691,4,0,3,2,0,0,0,0,-1,0,133322,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31692,4,0,3,2,0,0,0,0,-1,0,133326,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31693,4,0,3,2,0,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31694,4,0,3,2,0,0,0,0,-1,0,133324,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31695,4,0,3,2,0,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31696,4,0,3,2,0,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31697,12,0,0,0,0,0,0,0,-1,0,134446,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31698,15,0,0,0,0,0,0,0,-1,0,133461,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31699,4,0,3,23,0,7,0,0,-1,0,134543,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31700,2,10,2,17,0,2,0,0,-1,0,135167,13,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,289,0,0,0,0 +31701,2,1,1,17,0,1,0,0,-1,0,132409,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,298,0,0,0,0 +31702,0,0,0,0,0,0,0,0,-1,0,132485,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31703,2,15,1,13,0,3,0,0,-1,0,135648,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,135,0,0,0,0 +31704,13,0,0,0,0,0,0,0,-1,0,132785,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31705,13,0,0,0,1,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31706,12,0,0,0,0,0,0,0,-1,0,134170,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31707,12,0,0,0,62,0,0,0,-1,0,134332,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31708,12,0,0,0,0,0,0,0,-1,0,134945,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31709,12,0,0,0,0,0,0,0,-1,0,134884,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31710,12,0,0,0,0,0,0,0,-1,0,133062,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31711,4,1,7,8,0,0,0,0,-1,0,132551,7,0,35,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31712,4,2,8,3,0,0,0,0,-1,0,135059,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31713,4,3,5,1,0,0,0,0,-1,0,133072,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31714,4,4,6,9,0,0,0,0,-1,0,132606,11,0,40,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31715,4,0,8,23,0,7,0,0,-1,0,134075,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31716,12,0,0,0,0,0,0,0,-1,0,132408,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31717,4,1,7,5,0,0,0,0,-1,0,132648,7,0,80,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31718,4,2,8,5,0,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31719,4,3,5,5,0,0,0,0,-1,0,132629,10,0,120,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31720,4,4,6,5,0,0,0,0,-1,0,132737,11,0,135,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31721,12,0,0,0,0,0,0,0,-1,0,134436,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31722,12,0,0,0,0,0,0,0,-1,0,134337,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31723,2,15,1,13,0,3,0,0,-1,0,135651,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,91,0,0,0,0 +31724,2,19,2,26,0,0,0,0,-1,0,135465,21,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +31725,4,1,7,6,0,0,0,0,-1,0,132504,7,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31726,4,0,3,2,0,0,0,0,-1,0,133306,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31727,4,0,3,2,0,0,0,0,-1,0,133307,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31728,4,0,3,11,0,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31729,4,0,3,11,0,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31730,4,0,3,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31731,4,0,0,23,0,7,0,0,-1,0,134334,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31732,4,0,0,23,0,7,0,0,-1,0,134333,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31733,2,15,1,13,0,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,128,0,0,0,0 +31734,4,6,1,14,0,4,0,0,-1,0,134975,9,0,85,0,0,0,0,0,0,2938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31735,6,3,2,24,70,0,0,0,-1,0,133582,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,53,0,0,0,0 +31736,12,0,0,0,0,0,0,0,-1,0,134072,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31737,6,2,2,24,70,0,0,0,-1,0,133579,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,53,0,0,0,0 +31739,12,0,0,0,0,0,0,0,-1,0,132622,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31740,12,0,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31741,12,0,0,0,0,0,0,0,-1,0,135739,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31742,12,0,0,0,0,0,0,0,-1,0,133859,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31743,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31744,12,0,0,0,0,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31745,2,15,1,13,0,3,0,0,-1,0,135388,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +31746,4,0,3,11,0,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31747,4,0,3,2,0,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31748,4,0,3,2,0,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31749,4,0,3,2,0,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31750,12,0,0,0,0,0,0,0,-1,0,134577,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31751,12,0,0,0,0,0,0,0,-1,0,135789,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31752,12,0,0,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31753,12,0,0,0,0,0,0,0,-1,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31754,12,0,0,0,0,0,0,0,-1,0,132352,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31755,12,0,0,0,0,0,0,0,-1,0,134245,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31756,2,15,1,13,0,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +31757,12,0,2,0,0,0,0,0,-1,0,136030,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31758,2,15,1,21,0,3,0,0,-1,0,135648,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,103,0,0,0,0 +31759,2,15,1,13,0,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +31760,15,0,0,0,0,0,0,0,-1,0,132598,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31761,2,19,2,26,0,0,0,0,-1,0,135466,12,0,55,0,3,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,193,0,0,0,0 +31762,2,2,2,15,0,0,0,0,-1,0,135493,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,173,0,0,0,0 +31763,12,0,0,0,0,0,0,0,-1,0,135815,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31764,4,3,5,7,0,0,0,0,-1,0,134661,10,0,75,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31765,4,4,6,5,0,0,0,0,-1,0,132745,11,0,115,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31766,4,1,7,1,0,0,0,0,-1,0,133167,7,0,45,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31767,12,0,0,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31768,4,1,7,16,0,0,0,0,-1,0,133753,7,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31769,12,0,0,0,0,0,0,0,-1,0,135432,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31770,4,1,7,9,0,0,0,0,-1,0,132605,7,0,25,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31772,12,0,0,0,0,0,0,0,-1,0,134423,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31773,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31774,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31775,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31776,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31777,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31778,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31779,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31780,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31781,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31782,4,3,5,5,0,0,0,0,-1,0,132630,10,0,100,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31783,4,1,7,7,0,0,0,0,-1,0,134596,7,0,55,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31784,4,2,8,1,0,0,0,0,-1,0,133133,7,0,50,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31785,2,1,1,17,0,1,0,0,-1,0,132408,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,284,0,0,0,0 +31786,4,3,5,3,0,0,0,0,-1,0,135056,10,0,60,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31787,4,4,6,6,0,0,0,0,-1,0,132496,11,0,40,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31788,4,2,8,10,0,0,0,0,-1,0,132960,7,0,30,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31789,4,1,7,8,0,0,0,0,-1,0,132542,7,0,35,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31790,4,0,3,2,0,0,0,0,-1,0,133288,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31791,4,0,3,11,0,0,0,0,-1,0,133400,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31792,4,1,7,16,0,0,0,0,-1,0,133769,7,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31793,4,2,8,9,0,0,0,0,-1,0,132611,7,0,30,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31794,4,4,6,7,0,0,0,0,-1,0,134692,11,0,85,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31795,0,0,0,0,0,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31796,4,3,5,10,0,0,0,0,-1,0,132948,11,0,35,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31797,4,2,8,3,0,0,0,0,-1,0,135056,7,0,50,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31798,4,1,7,5,0,0,0,0,-1,0,132658,7,0,70,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31799,12,0,0,0,0,0,0,0,-1,0,132165,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31800,15,0,1,0,0,0,0,0,-1,0,133641,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31801,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31802,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31803,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31804,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31805,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +31806,2,7,1,13,1,3,0,0,-1,0,135274,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31807,12,0,2,0,0,0,0,0,-1,0,136030,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31808,12,0,0,0,0,0,0,0,-1,0,133357,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31809,12,0,0,0,0,0,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31810,12,0,0,0,0,0,0,0,-1,0,133842,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31811,12,0,0,0,0,0,0,0,-1,0,134446,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31812,12,0,0,0,1,0,0,0,-1,0,133729,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31813,12,0,0,0,0,0,0,0,-1,0,134765,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31814,12,0,0,0,0,0,0,0,-1,0,133722,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31815,12,0,0,0,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31816,2,8,1,17,0,1,0,0,-1,0,135327,9,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +31817,4,3,5,3,0,0,0,0,-1,0,135035,10,0,60,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31818,4,0,3,2,0,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31819,4,4,5,3,0,0,0,0,-1,0,135051,8,0,70,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31820,4,0,0,11,0,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31821,2,7,1,21,0,3,0,0,-1,0,135369,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,133,0,0,0,0 +31823,4,0,0,23,0,7,0,0,-1,0,133736,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31824,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +31825,12,0,0,0,0,0,0,0,-1,0,133842,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31826,12,0,0,0,0,0,0,0,-1,0,134341,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31827,12,0,0,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31828,12,0,0,0,0,0,0,0,-1,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31829,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31830,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31831,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31832,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31833,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31834,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31835,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31836,15,5,0,0,60,0,0,0,-1,0,134060,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31837,9,0,0,0,70,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31838,0,0,0,0,61,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31839,0,0,0,0,61,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31840,0,0,3,0,61,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31841,0,0,3,0,61,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31842,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31843,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31844,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31845,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31846,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31847,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31848,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31849,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31850,4,0,3,11,1,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31851,4,0,3,11,1,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31852,0,0,0,0,61,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31853,0,0,0,0,61,0,0,0,-1,0,134820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31854,0,0,3,0,61,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31855,0,0,3,0,61,0,0,0,-1,0,134862,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31856,4,0,0,12,70,0,0,0,-1,0,134485,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31857,4,0,0,12,70,0,0,0,-1,0,134498,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31858,4,0,0,12,70,0,0,0,-1,0,134496,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31859,4,0,0,12,70,0,0,0,-1,0,134490,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31860,3,2,0,0,0,0,0,0,-1,0,134113,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31861,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31862,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31863,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31864,3,3,0,0,0,0,0,0,-1,0,134102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31865,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31866,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31867,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31868,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31869,3,5,0,0,0,0,0,0,-1,0,134110,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31870,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31871,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31872,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31873,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31874,9,10,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31875,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31876,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31877,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31878,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31879,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31880,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31881,15,0,0,0,0,0,0,0,-1,0,132161,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31882,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31883,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31884,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31885,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31886,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31887,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31888,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31889,12,0,0,0,0,0,0,0,-1,0,134483,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31890,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31891,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31892,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31893,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31894,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31895,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31896,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31898,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31899,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31900,12,0,0,0,0,0,0,0,-1,0,134494,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31901,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31902,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31903,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31904,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31905,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31906,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31907,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31908,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31909,12,0,0,0,0,0,0,0,-1,0,134487,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31910,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31911,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31912,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31913,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31914,12,0,0,0,0,0,0,0,-1,0,134493,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31915,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31916,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31917,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31918,12,0,0,0,0,0,0,0,-1,0,134489,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31919,4,0,3,11,70,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31920,4,0,3,11,70,0,0,0,-1,0,133393,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31921,4,0,3,11,70,0,0,0,-1,0,133390,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31922,4,0,3,11,70,0,0,0,-1,0,133391,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31923,4,0,3,11,70,0,0,0,-1,0,133394,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31924,4,0,3,11,70,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31925,4,0,0,11,70,0,0,181,-1,0,133367,14,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31926,4,0,0,11,70,0,0,181,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0 +31927,4,0,0,11,70,0,0,181,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0 +31928,4,0,0,11,70,0,0,181,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0 +31929,4,0,0,11,70,0,0,181,-1,0,133388,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0 +31930,4,0,3,2,70,0,0,181,-1,0,133316,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0 +31931,4,0,3,2,70,0,0,181,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31932,4,0,3,2,70,0,0,181,-1,0,133322,14,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0 +31933,4,0,3,2,70,0,0,181,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0 +31934,4,0,3,2,70,0,0,181,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0 +31935,4,1,7,16,70,0,0,181,-1,0,133768,7,0,0,0,0,0,0,0,0,74,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0 +31936,4,1,7,16,70,0,0,181,-1,0,133770,7,0,0,0,0,0,0,0,0,74,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31937,4,1,7,16,70,0,0,181,-1,0,133769,7,0,0,0,0,0,0,0,0,74,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0 +31938,4,1,7,16,70,0,0,181,-1,0,133757,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0 +31939,4,1,7,16,70,0,0,181,-1,0,133773,7,0,0,0,0,0,0,0,0,74,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0 +31940,4,0,3,2,70,0,0,205,-1,0,133319,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31941,12,0,0,0,0,0,0,0,-1,0,135440,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31942,4,1,7,16,70,0,0,205,-1,0,133771,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31943,4,0,0,11,70,0,0,205,-1,0,133401,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31944,15,0,8,0,0,0,0,0,-1,0,133865,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31945,15,0,3,0,0,0,0,0,-1,0,133016,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31946,12,0,0,0,0,0,0,0,-1,0,133132,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31947,12,0,0,0,0,0,0,0,-1,0,136039,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31948,12,0,0,0,0,0,0,0,0,0,134209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31949,6,2,2,24,68,0,0,0,-1,0,133577,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,37,0,0,0,0 +31950,12,0,0,0,0,0,0,0,0,0,134194,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31951,15,0,2,0,0,0,0,0,-1,0,134157,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31952,15,0,1,0,0,0,0,0,-1,0,134344,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31953,12,0,0,0,0,0,0,0,0,0,134778,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31954,0,0,0,0,0,0,0,0,-1,0,132539,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31955,15,0,0,0,0,0,0,0,-1,0,133644,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31956,13,0,0,0,0,0,0,0,-1,0,134889,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31957,15,0,0,0,0,0,0,0,0,0,134391,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31958,2,4,1,22,70,3,0,0,-1,0,133516,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +31959,2,5,1,17,70,1,0,0,-1,0,133532,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0,549,0,0,0,0 +31960,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31961,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31962,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31963,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31964,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31965,2,0,1,13,70,3,0,0,-1,0,132442,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,330,0,0,0,0 +31966,2,1,1,17,70,1,0,0,-1,0,132455,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0,549,0,0,0,0 +31967,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31968,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31969,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31971,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31972,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31973,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31974,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31975,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31976,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31977,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31978,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31979,4,1,7,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31980,4,1,7,1,70,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31981,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31982,4,1,7,20,70,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31983,4,1,7,7,70,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31984,2,8,1,17,70,1,0,0,-1,0,135380,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0,549,0,0,0,0 +31985,2,0,1,22,70,3,0,0,-1,0,132442,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +31986,2,18,2,26,70,0,0,0,-1,0,135539,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,318,0,0,0,0 +31987,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31988,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31989,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31990,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31991,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31992,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31993,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31994,13,0,0,0,0,0,0,0,-1,0,134891,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31995,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31996,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31997,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31998,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31999,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32000,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32001,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32002,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32003,2,13,1,22,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +32004,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32005,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32006,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32007,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32008,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32009,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32010,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32011,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32012,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32013,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32014,2,5,1,17,70,1,0,0,-1,0,133532,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +32015,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32016,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32017,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32018,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32019,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32020,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32021,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32022,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32023,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32024,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32025,2,6,1,17,70,1,0,0,-1,0,135565,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,335,0,0,0,0 +32026,2,4,1,13,70,3,0,0,-1,0,133516,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,330,0,0,0,0 +32027,2,7,1,22,70,3,0,0,-1,0,135381,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,191,0,0,0,0 +32028,2,13,1,21,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0,330,0,0,0,0 +32029,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32030,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32031,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32032,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32033,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32034,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32035,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32036,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32037,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32038,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32039,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32040,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32041,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32042,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32043,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32044,2,15,1,13,70,3,0,0,-1,0,135680,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,211,0,0,0,0 +32045,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,5727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32046,2,15,1,22,70,3,0,0,-1,0,135680,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,178,0,0,0,0 +32047,4,1,7,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32048,4,1,7,1,70,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32049,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32050,4,1,7,20,70,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32051,4,1,7,7,70,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32052,2,7,1,13,70,3,0,0,-1,0,135381,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +32053,2,15,1,21,70,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,203,0,0,0,0 +32054,2,16,1,25,70,0,0,0,-1,0,132394,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,137,0,0,0,0 +32055,2,10,2,17,70,2,0,0,-1,0,135189,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,305,0,0,0,0 +32056,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32057,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32058,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32059,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32060,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32061,12,0,0,0,0,0,0,0,0,0,133667,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32062,0,2,3,0,50,0,0,0,-1,0,134785,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32063,0,2,3,0,50,0,0,0,-1,0,134781,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32064,15,0,0,0,0,0,0,0,0,0,132595,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32065,2,0,1,13,1,1,0,0,-1,0,135131,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32066,2,0,1,22,1,1,0,0,-1,0,135279,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32067,0,2,3,0,50,0,0,0,-1,0,134782,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32068,0,2,3,0,55,0,0,0,-1,0,134786,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32069,13,0,0,0,0,0,0,0,-1,0,134890,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32070,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32071,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32072,4,4,1,10,70,0,0,0,-1,0,132962,9,0,55,0,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32073,4,4,1,3,70,0,0,0,-1,0,135047,9,0,100,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32074,12,0,0,0,0,0,0,0,0,0,132596,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32075,12,0,0,0,0,0,0,0,0,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32076,4,3,5,10,70,0,0,0,-1,0,132965,10,0,50,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32077,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32078,4,3,5,3,70,0,0,0,-1,0,135064,10,0,85,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32079,13,0,0,0,0,0,0,0,-1,0,134890,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32080,4,2,8,3,70,0,0,0,-1,0,135056,7,0,70,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32081,4,0,3,11,70,0,0,0,-1,0,133387,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32082,4,6,6,14,70,4,0,0,-1,0,134947,9,0,120,0,0,0,0,0,0,4668,0,22,0,0,22,0,0,0,0,0,0,0,0,0,0,0 +32083,4,4,1,1,70,0,0,0,-1,0,133069,9,0,100,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32084,4,4,6,1,70,0,0,0,-1,0,133118,9,0,100,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32085,4,3,5,1,70,0,0,0,-1,0,133174,11,0,85,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32086,4,3,5,1,70,0,0,0,-1,0,133171,10,0,85,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32087,4,2,8,1,70,0,0,0,-1,0,133175,7,0,70,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32088,4,2,7,1,70,0,0,0,-1,0,133140,7,0,70,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32089,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32090,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32091,2,4,0,13,60,0,0,0,-1,0,135168,13,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,181,0,0,0,0 +32092,13,0,0,0,0,0,0,0,-1,0,134885,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32093,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32094,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32095,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32096,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32097,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32098,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32099,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32100,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32101,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32102,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32103,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32104,4,1,7,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32105,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32106,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32107,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32108,4,1,7,3,70,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32109,4,1,7,1,70,0,0,0,-1,0,133076,7,0,60,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32110,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32111,4,1,7,20,70,0,0,0,-1,0,132716,7,0,100,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32112,4,1,7,7,70,0,0,0,-1,0,134587,7,0,75,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32113,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32114,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32115,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32116,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32117,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32118,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32119,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32120,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32121,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32122,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32123,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32124,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32125,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32126,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32127,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32128,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32129,4,2,8,1,70,0,0,0,-1,0,133132,7,0,70,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32130,4,2,8,7,70,0,0,0,-1,0,134599,7,0,90,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32131,4,2,8,3,70,0,0,0,-1,0,135043,7,0,70,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32132,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32133,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32134,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32135,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32136,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32137,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32138,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32139,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32140,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32141,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32142,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32143,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32144,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32145,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32146,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32147,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32148,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32149,4,3,5,10,70,0,0,0,-1,0,132945,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32150,4,3,5,1,70,0,0,0,-1,0,133077,10,0,85,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32151,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32152,4,3,5,3,70,0,0,0,-1,0,135060,10,0,85,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32153,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32154,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32155,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32156,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32157,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32158,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32159,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32160,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32161,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32162,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32163,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32164,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32165,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32166,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32167,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32168,4,4,6,5,70,0,0,0,-1,0,132740,11,0,165,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32169,4,4,6,10,70,0,0,0,-1,0,132963,11,0,55,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32170,4,4,6,1,70,0,0,0,-1,0,133124,11,0,100,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32171,4,4,6,7,70,0,0,0,-1,0,134693,11,0,120,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32172,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32173,2,4,1,13,70,3,0,0,-1,0,133483,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +32174,2,0,1,13,70,3,0,0,-1,0,132394,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,261,0,0,0,0 +32175,2,0,1,13,70,3,0,0,-1,0,132394,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +32176,2,4,1,13,70,3,0,0,-1,0,133483,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,261,0,0,0,0 +32177,2,7,1,13,70,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +32178,2,15,1,13,70,3,0,0,-1,0,135642,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +32179,2,15,1,13,70,3,0,0,-1,0,135642,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,140,0,0,0,0 +32180,2,7,1,13,70,3,0,0,-1,0,135275,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0,261,0,0,0,0 +32181,2,5,1,17,70,1,0,0,-1,0,133041,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +32182,2,1,1,17,70,1,0,0,-1,0,132400,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +32183,2,5,1,17,70,1,0,0,-1,0,133041,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +32184,2,6,1,17,70,1,0,0,-1,0,135574,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,287,0,0,0,0 +32185,2,10,2,17,70,2,0,0,-1,0,135144,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,391,0,0,0,0 +32186,2,8,1,17,70,1,0,0,-1,0,135349,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +32187,2,18,2,26,70,0,0,0,-1,0,135539,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0,290,0,0,0,0 +32188,2,13,1,22,70,7,0,0,-1,0,135593,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +32189,2,13,1,21,70,7,0,0,-1,0,135593,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,283,0,0,0,0 +32190,2,15,1,21,70,3,0,0,-1,0,135662,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,174,0,0,0,0 +32191,4,0,7,23,70,7,0,0,-1,0,133744,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32192,4,6,1,14,70,4,0,0,-1,0,134965,9,0,120,0,0,0,0,0,0,4465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32193,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32194,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32195,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32196,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32197,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32198,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32199,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32200,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32201,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32202,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32203,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32204,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32205,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32206,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32207,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32208,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32209,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32210,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32211,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32212,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32213,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32214,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32215,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32216,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32217,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32218,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32219,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32220,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32221,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32222,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32223,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32224,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32225,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32226,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32227,3,0,0,0,0,0,0,0,-1,0,133238,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32228,3,1,0,0,0,0,0,0,-1,0,133244,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32229,3,2,0,0,0,0,0,0,-1,0,133248,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32230,3,3,0,0,0,0,0,0,-1,0,133265,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32231,3,5,0,0,0,0,0,0,-1,0,133260,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32232,4,4,1,9,70,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32233,15,0,4,0,0,0,0,0,-1,0,132800,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32234,4,3,5,10,70,0,0,0,-1,0,132982,11,0,50,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32235,4,2,8,1,70,0,0,0,-1,0,133694,7,0,70,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32236,2,0,1,13,70,3,0,0,-1,0,132444,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,313,0,0,0,0 +32237,2,15,1,21,70,3,0,0,-1,0,135693,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,235,0,0,0,0 +32238,4,0,3,11,70,0,0,0,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32239,4,1,7,8,70,0,0,0,-1,0,132573,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32240,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32241,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32242,4,3,5,8,70,0,0,0,-1,0,132555,11,0,70,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32243,4,4,1,8,70,0,0,0,-1,0,132551,9,0,75,0,0,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32244,12,0,0,0,0,0,0,0,0,0,135250,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32245,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32246,2,4,2,13,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32247,4,0,3,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32248,2,6,1,17,70,1,0,0,-1,0,135583,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0,548,0,0,0,0 +32249,3,4,0,0,0,0,0,0,-1,0,133263,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32250,4,4,1,3,70,0,0,0,-1,0,135123,9,0,100,0,0,0,0,0,0,1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32251,4,3,5,9,70,0,0,0,-1,0,132605,11,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32252,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32253,2,18,2,26,70,0,0,0,-1,0,135549,8,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,342,0,0,0,0 +32254,2,0,1,13,70,3,0,0,-1,0,132446,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,193,0,0,0,0 +32255,4,6,6,14,70,4,0,0,-1,0,134983,9,0,120,0,0,0,0,0,0,5930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32256,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32257,4,8,2,28,70,0,0,0,-1,0,134896,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32258,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32259,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32260,4,0,3,2,70,0,0,0,-1,0,133326,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32261,4,0,3,11,70,0,0,0,-1,0,133412,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32262,2,4,1,13,70,3,0,0,-1,0,133524,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +32263,4,4,1,7,70,0,0,0,-1,0,134683,9,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32264,4,3,5,3,70,0,0,0,-1,0,135084,11,0,85,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32265,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32266,4,0,3,11,70,0,0,0,-1,0,133410,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32267,4,4,1,8,70,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32268,4,4,1,8,70,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32269,2,15,1,13,70,3,0,0,-1,0,135698,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,169,0,0,0,0 +32270,4,1,7,9,70,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32271,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32272,2,7,1,17,1,1,0,0,-1,0,135275,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32273,4,1,7,3,70,0,0,0,-1,0,135088,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32274,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32275,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32276,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32277,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32278,4,4,1,10,70,0,0,0,-1,0,132985,11,0,55,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32279,4,4,1,9,70,0,0,0,-1,0,132616,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32280,4,4,1,10,70,0,0,0,-1,0,132985,9,0,55,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32281,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32282,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32283,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32284,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32285,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32286,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32287,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32288,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32289,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32290,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32291,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32292,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32293,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32294,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32295,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32296,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32297,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32298,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32299,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32300,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32301,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32302,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32303,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32304,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32305,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32306,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32307,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32308,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32309,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32310,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32311,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32312,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32313,12,0,0,0,0,0,0,0,0,0,134465,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32314,15,5,0,0,70,0,0,0,-1,0,132191,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32315,12,0,0,0,0,0,0,0,0,0,133942,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32316,15,5,0,0,70,0,0,0,-1,0,132191,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32317,15,5,0,0,70,0,0,0,-1,0,132191,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32318,15,5,0,0,70,0,0,0,-1,0,132191,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32319,15,5,0,0,70,0,0,0,-1,0,132191,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32320,12,0,0,0,0,0,0,0,0,0,132188,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32321,12,0,0,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32322,4,0,2,13,1,0,0,0,-1,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +32323,4,1,7,16,70,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32324,4,2,8,9,70,0,0,0,-1,0,132603,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32325,2,3,1,26,70,0,0,0,-1,0,135629,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,224,0,0,0,0 +32326,2,16,1,25,70,0,0,0,-1,0,135428,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,152,0,0,0,0 +32327,4,1,7,20,70,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32328,4,2,8,10,70,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32329,4,1,7,1,70,0,0,0,-1,0,133134,7,0,60,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32330,4,9,2,28,70,0,0,0,-1,0,136037,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32331,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32332,2,5,1,17,70,1,0,0,-1,0,133529,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0,595,0,0,0,0 +32333,4,4,1,6,70,0,0,0,-1,0,132522,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32334,4,3,5,5,70,0,0,0,-1,0,132759,11,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32335,4,0,3,11,70,0,0,0,-1,0,133413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32336,2,2,1,15,70,0,0,0,-1,0,135511,8,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0,374,0,0,0,0 +32337,4,1,7,16,70,0,0,0,-1,0,133765,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32338,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32339,4,2,8,6,70,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32340,4,1,7,20,70,0,0,0,-1,0,132676,7,0,100,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32341,4,4,1,7,70,0,0,0,-1,0,134696,11,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32342,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32343,2,19,2,26,70,0,0,0,-1,0,135477,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0,360,0,0,0,0 +32344,2,10,2,17,70,2,0,0,-1,0,135197,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,501,0,0,0,0 +32345,4,4,6,8,70,0,0,0,-1,0,132583,11,0,75,0,0,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32346,4,3,5,6,70,0,0,0,-1,0,132503,11,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32347,4,2,8,10,70,0,0,0,-1,0,132988,7,0,40,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32348,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,579,0,0,0,0 +32349,4,0,3,2,70,0,0,0,-1,0,133320,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32350,4,0,3,23,70,0,0,0,-1,0,134102,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32351,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32352,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32353,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32354,4,4,0,1,70,0,0,0,-1,0,133192,10,0,100,0,0,0,0,0,0,1434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32355,12,0,0,0,0,0,0,0,0,0,132172,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32356,12,0,0,0,0,0,0,0,0,0,132192,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32357,12,0,0,0,0,0,0,0,0,0,132188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32358,12,0,8,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32359,12,0,0,0,0,0,0,0,0,0,133662,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32360,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32361,4,0,3,23,70,0,0,0,-1,0,134337,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32362,4,0,4,2,70,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32363,2,19,2,26,70,0,0,0,-1,0,135476,21,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0,360,0,0,0,0 +32364,12,0,0,0,0,0,0,0,0,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32365,4,4,1,5,70,0,0,0,-1,0,132743,9,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32366,4,2,8,8,70,0,0,0,-1,0,132559,7,0,60,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32367,4,1,7,7,70,0,0,0,-1,0,134609,7,0,75,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32368,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32369,2,7,1,13,70,3,0,0,7,0,135397,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,183,0,0,0,0 +32370,4,0,4,2,70,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32371,2,6,1,17,1,2,0,0,-1,0,135565,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +32372,12,0,0,0,0,0,0,0,0,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32373,4,4,0,1,70,0,0,0,-1,0,133194,9,0,100,0,0,0,0,0,0,1434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32374,2,10,2,17,70,2,0,0,-1,0,135195,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0,530,0,0,0,0 +32375,4,6,6,14,70,4,0,0,-1,0,134977,9,0,120,0,0,0,0,0,0,6336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32376,4,3,5,1,70,0,0,0,-1,0,133191,11,0,85,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32377,4,2,8,3,70,0,0,0,-1,0,135092,7,0,70,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32378,2,16,1,25,0,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,53,0,0,0,0 +32379,12,0,2,0,0,0,0,0,-1,0,133732,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32380,12,0,2,0,0,0,0,0,-1,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32381,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32382,12,0,2,0,0,0,0,0,-1,0,132484,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32383,12,0,2,0,0,0,0,0,-1,0,136152,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32384,2,7,4,13,60,3,0,0,-1,0,135361,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,164,0,0,0,0 +32385,15,0,0,0,70,0,0,0,0,0,134174,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32386,15,0,0,0,70,0,0,0,0,0,134174,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32387,4,8,2,28,0,0,0,0,-1,0,132372,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32388,12,0,0,0,0,0,0,0,-1,0,133849,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32389,4,1,7,7,70,0,0,0,-1,0,134603,7,0,75,0,0,0,0,0,0,191,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0 +32390,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,123,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32391,4,1,7,8,70,0,0,0,-1,0,132567,7,0,50,0,0,0,0,0,0,150,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32392,4,1,7,9,70,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,96,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32393,4,2,8,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,231,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32394,4,2,8,8,70,0,0,0,-1,0,132571,7,0,60,0,0,0,0,0,0,282,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32395,4,2,8,9,70,0,0,0,-1,0,132617,7,0,40,0,0,0,0,0,0,179,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32396,4,2,8,7,70,0,0,0,-1,0,134630,7,0,90,0,0,0,0,0,0,359,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0 +32397,4,3,5,6,70,0,0,0,-1,0,132515,10,0,50,0,0,0,0,0,0,514,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32398,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,628,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32399,4,3,5,9,70,0,0,0,-1,0,132616,10,0,50,0,0,0,0,0,0,400,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32400,4,3,5,7,70,0,0,0,-1,0,134688,10,0,105,0,0,0,0,0,0,799,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0 +32401,4,4,6,6,70,0,0,0,-1,0,132519,11,0,55,0,0,0,0,0,0,918,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32402,4,4,6,8,70,0,0,0,-1,0,132551,11,0,75,0,0,0,0,0,0,1122,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0 +32403,4,4,6,9,70,0,0,0,-1,0,132612,11,0,55,0,0,0,0,0,0,714,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32404,4,4,6,7,70,0,0,0,-1,0,134697,11,0,120,0,0,0,0,0,0,1428,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0 +32405,15,0,0,0,70,0,0,0,0,0,134125,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32406,0,0,0,0,0,0,0,0,-1,0,133715,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32407,2,11,1,21,70,3,0,0,-1,0,135672,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +32408,0,0,0,0,0,0,0,0,-1,0,135855,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32409,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32410,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32411,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32412,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32413,7,2,8,0,0,0,0,0,-1,0,135851,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32414,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32415,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32416,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32417,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32418,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32419,4,4,1,7,70,0,0,0,-1,0,134681,9,0,120,0,0,0,0,0,0,1587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32420,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,109,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32421,2,1,1,17,70,1,0,0,-1,0,132451,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,470,0,0,0,0 +32422,2,1,1,17,70,1,0,0,-1,0,132451,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,532,0,0,0,0 +32423,7,1,8,0,0,0,0,0,-1,0,133873,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32424,0,0,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32425,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32426,0,0,3,0,0,0,0,0,-1,0,134415,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32427,15,0,0,0,0,0,0,0,0,0,134090,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32428,7,11,0,0,0,0,0,0,-1,0,136150,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32429,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32430,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32431,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32432,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32433,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32434,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32435,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32436,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32437,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32438,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32439,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32440,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32441,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32442,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32443,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32444,9,4,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32445,4,0,7,19,70,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32446,12,0,0,0,0,0,0,0,-1,0,134711,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32447,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32448,2,6,1,17,1,2,0,0,-1,0,135575,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32449,12,0,0,0,0,0,0,0,0,0,134123,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32450,2,4,1,21,70,3,0,0,-1,0,133527,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +32451,2,4,1,21,70,3,0,0,-1,0,133527,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,190,0,0,0,0 +32452,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32453,0,5,3,0,65,0,0,0,-1,0,132820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32454,15,0,0,0,0,0,0,0,0,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32455,0,5,3,0,55,0,0,0,-1,0,132821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32456,12,0,0,0,0,0,0,0,-1,0,133712,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32457,12,0,0,0,0,0,0,0,0,0,135139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32458,15,5,0,0,70,0,0,0,-1,0,134468,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32459,12,0,0,0,0,0,0,0,-1,0,134799,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32460,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32461,4,4,7,1,62,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32462,15,0,0,0,0,0,0,0,0,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32463,2,4,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32464,12,0,1,0,0,0,0,0,-1,0,134568,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32465,15,0,0,0,0,0,0,0,-1,0,133858,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32466,2,7,1,13,0,3,0,0,-1,0,135388,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,211,0,0,0,0 +32467,12,0,8,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32468,12,0,7,0,0,0,0,0,-1,0,132857,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32469,12,0,0,0,0,0,0,0,-1,0,133473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32470,12,0,8,0,0,0,0,0,-1,0,134425,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32471,2,15,1,13,70,3,0,0,-1,0,135697,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,242,0,0,0,0 +32472,4,4,7,1,62,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32473,4,4,7,1,62,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32474,4,3,7,1,62,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32475,4,3,7,1,62,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32476,4,3,7,1,62,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32477,2,13,1,21,1,7,0,0,-1,0,134296,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32478,4,2,7,1,62,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32479,4,2,7,1,62,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32480,4,2,7,1,62,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32481,4,0,2,12,0,0,0,0,-1,0,136037,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32482,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,429,0,0,0,0 +32483,4,0,4,12,70,0,0,0,-1,0,133729,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32484,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32485,4,0,4,12,0,0,0,0,-1,0,133305,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32486,4,0,4,12,0,0,0,0,-1,0,134890,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32487,4,0,4,12,0,0,0,0,-1,0,133442,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32488,4,0,4,12,0,0,0,0,-1,0,133858,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32489,4,0,4,12,0,0,0,0,-1,0,134888,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32490,4,0,4,12,0,0,0,0,-1,0,133314,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32491,4,0,4,12,0,0,0,0,-1,0,133322,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32492,4,0,4,12,0,0,0,0,-1,0,133793,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32493,4,0,4,12,0,0,0,0,-1,0,134903,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32494,4,1,7,1,62,0,0,0,-1,0,133023,7,0,60,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32495,4,1,7,1,62,0,0,0,-1,0,133023,7,0,60,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32496,4,0,4,12,70,0,0,0,-1,0,135263,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32497,4,0,3,11,70,0,0,0,-1,0,133409,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32498,15,0,0,0,0,0,0,0,-1,0,133858,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32499,2,5,2,17,1,1,0,0,-1,0,133040,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32500,2,4,1,21,70,3,0,0,-1,0,133536,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,248,0,0,0,0 +32501,4,0,4,12,70,0,0,0,-1,0,133265,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32502,12,0,0,0,0,0,0,0,0,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32503,12,0,0,0,0,0,0,0,0,0,134016,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32504,2,13,1,22,1,7,0,0,-1,0,134296,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32505,4,0,4,12,70,0,0,0,-1,0,136129,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32506,15,0,0,0,0,0,0,0,0,0,134430,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32507,2,6,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32508,4,0,4,2,65,0,0,0,0,0,133290,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32509,12,0,0,0,0,0,0,0,0,0,132526,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32510,4,3,5,8,70,0,0,0,-1,0,132544,11,0,70,0,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32512,4,4,1,6,70,0,0,0,-1,0,132517,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32513,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32514,4,0,1,11,70,0,0,221,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32515,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32516,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32517,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32518,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32519,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32520,4,0,3,23,70,0,0,201,-1,0,134333,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32521,4,4,1,1,70,0,0,0,-1,0,133194,11,0,100,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32522,4,6,6,14,70,4,0,204,-1,0,134947,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32523,12,0,0,0,70,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32524,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32525,4,1,7,1,70,0,0,0,-1,0,133155,7,0,60,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32526,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32527,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32528,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32529,4,4,6,10,70,0,0,0,-1,0,132937,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32530,2,6,1,17,1,2,0,0,-1,0,135133,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32531,4,0,3,2,70,0,0,0,-1,0,133296,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32532,4,2,8,9,70,0,0,0,-1,0,132617,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32533,4,0,3,23,70,0,0,0,-1,0,134110,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32534,4,0,3,12,70,0,0,0,-1,0,133316,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32535,4,0,3,11,70,0,0,0,-1,0,133366,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32536,2,4,2,13,70,3,0,222,-1,0,133057,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,233,0,0,0,0 +32537,2,4,2,21,70,3,0,201,-1,0,133057,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +32538,4,1,7,16,70,0,0,0,-1,0,133757,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32539,4,1,7,16,70,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32540,4,1,7,16,70,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32541,4,1,7,16,70,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32542,0,0,0,0,0,0,0,0,-1,0,134807,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32543,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32544,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32545,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32546,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32547,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32548,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32549,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32550,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32551,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32552,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32553,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32554,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32555,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32556,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32557,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32558,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32559,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32560,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32561,15,0,0,0,0,0,0,0,-1,0,132594,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32562,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32563,0,0,0,0,1,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32564,12,0,0,0,0,0,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32565,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32566,15,0,0,0,0,0,0,0,-1,0,132594,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32567,12,0,0,0,0,0,0,0,0,0,133884,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32568,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32569,15,0,0,0,0,0,0,0,0,0,133595,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32570,4,4,1,3,70,0,0,0,-1,0,135060,9,0,100,0,0,0,0,0,0,1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32571,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32572,15,0,0,0,0,0,0,0,0,0,133594,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32573,4,4,1,3,70,0,0,0,-1,0,135091,9,0,100,0,0,0,0,0,0,1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32574,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32575,4,3,5,3,70,0,0,0,-1,0,135091,11,0,85,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32576,0,8,0,0,0,0,0,0,0,0,135229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32577,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32578,15,0,0,0,0,0,0,0,0,0,135230,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32579,4,3,5,3,70,0,0,0,-1,0,135091,11,0,85,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32580,4,2,8,9,70,0,0,0,-1,0,132614,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32581,4,2,8,3,70,0,0,0,-1,0,135054,7,0,70,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32582,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32583,4,2,8,3,70,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32584,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32585,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32586,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32587,4,1,7,3,70,0,0,0,-1,0,135033,7,0,60,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32588,15,0,0,0,0,0,0,0,-1,0,133980,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32589,4,0,3,2,70,0,0,0,-1,0,133304,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32590,4,1,7,16,70,0,0,0,-1,0,133762,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32591,4,0,3,2,70,0,0,0,-1,0,133325,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32592,4,3,5,5,70,0,0,0,-1,0,132633,11,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32593,4,2,8,8,70,0,0,0,-1,0,132592,7,0,60,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32594,4,2,8,5,70,0,0,63,-1,0,135008,7,0,85,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32595,15,0,2,0,0,0,0,0,-1,0,132858,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32596,0,3,3,0,65,0,0,0,-1,0,134857,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32597,0,3,3,0,65,0,0,0,-1,0,134864,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32598,0,3,3,0,65,0,0,0,-1,0,134815,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32599,0,3,3,0,65,0,0,0,-1,0,134871,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32600,0,3,3,0,65,0,0,0,-1,0,134850,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32601,0,3,3,0,65,0,0,0,-1,0,134822,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32602,0,0,3,0,0,0,0,0,-1,0,134423,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32603,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32604,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32605,2,10,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32606,4,4,1,6,70,0,0,0,-1,0,132517,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32607,2,10,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32608,4,4,1,10,70,0,0,0,-1,0,132985,9,0,55,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32609,4,1,7,8,70,0,0,0,-1,0,132565,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32610,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32611,2,4,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32612,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32613,2,2,1,15,1,1,0,0,-1,0,132395,9,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,8,0,0,0,0 +32614,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32615,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32616,15,0,0,0,0,0,0,0,-1,0,132834,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32617,15,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32618,12,0,3,0,0,0,0,0,-1,0,134423,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32619,12,0,0,0,0,0,0,0,0,0,132763,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32620,12,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32621,12,0,0,0,70,0,0,0,0,0,136146,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32622,15,0,0,0,0,0,0,0,-1,0,132505,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32623,12,0,0,0,0,0,0,0,0,0,132762,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32624,15,0,0,0,0,0,0,0,-1,0,134568,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32625,15,0,0,0,0,0,0,0,-1,0,134573,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32626,15,0,0,0,0,0,0,0,-1,0,134568,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32627,15,0,0,0,0,0,0,0,-1,0,134573,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32628,15,0,0,0,0,0,0,0,-1,0,134568,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32629,15,0,0,0,0,0,0,0,-1,0,134568,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32630,15,0,0,0,0,0,0,0,-1,0,134573,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32631,15,0,0,0,0,0,0,0,-1,0,134573,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32632,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32633,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32634,3,5,0,0,0,0,0,0,-1,0,133265,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32635,3,5,0,0,0,0,0,0,-1,0,134093,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32636,3,5,0,0,0,0,0,0,-1,0,134132,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32637,3,5,0,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32638,3,5,0,0,0,0,0,0,-1,0,133258,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32639,3,4,0,0,0,0,0,0,-1,0,133270,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32640,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32641,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32642,12,0,3,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32643,15,0,3,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32644,2,4,2,13,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32645,2,18,2,26,70,0,0,0,-1,0,135543,24,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,248,0,0,0,0 +32646,12,0,0,0,0,0,0,0,-1,0,133277,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32647,4,2,7,9,70,0,0,0,-1,0,132612,11,0,40,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32648,4,4,6,8,70,0,0,0,-1,0,132583,11,0,75,0,0,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32649,12,0,0,2,0,0,0,0,-1,0,133279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32650,2,19,2,26,70,0,0,0,-1,0,135475,24,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,252,0,0,0,0 +32651,4,0,3,23,70,0,0,0,-1,0,134336,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32652,4,6,6,14,70,4,0,0,-1,0,134975,9,0,100,0,0,0,0,0,0,3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32653,4,1,7,16,70,0,0,0,-1,0,133760,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32654,4,0,3,12,0,0,0,0,-1,0,132775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32655,4,1,7,9,70,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32656,4,3,5,10,70,0,0,0,-1,0,132943,10,0,50,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32657,12,0,0,0,0,0,0,0,0,0,132161,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32658,4,0,0,12,70,0,0,0,-1,0,133607,24,0,0,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32659,2,15,1,13,70,3,0,0,-1,0,135641,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,155,0,0,0,0 +32660,2,7,1,21,70,3,0,0,-1,0,135321,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +32661,2,4,2,13,70,3,0,0,-1,0,133514,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +32662,2,10,2,17,70,2,0,0,-1,0,135224,24,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,235,0,0,0,0 +32663,2,1,1,17,70,1,0,0,-1,0,132434,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,403,0,0,0,0 +32664,4,0,5,11,70,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32665,4,1,7,16,70,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32666,12,0,0,0,0,0,0,0,0,0,134262,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32667,0,5,3,0,65,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32668,0,5,3,0,65,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32670,15,0,1,0,70,1,0,0,-1,0,132434,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32671,15,0,2,0,70,3,0,0,-1,0,133514,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32672,15,0,0,0,70,0,0,0,-1,0,133607,24,0,0,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32673,15,0,1,0,70,3,0,0,-1,0,135641,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32674,15,0,1,0,70,3,0,0,-1,0,135321,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32675,15,0,5,0,70,0,0,0,-1,0,132943,10,0,0,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32676,15,0,7,0,70,0,0,0,-1,0,132608,11,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32677,15,0,7,0,70,0,0,0,-1,0,133754,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32678,15,0,5,0,70,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32679,15,0,2,0,70,2,0,0,-1,0,135224,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32680,12,0,0,0,0,0,0,0,0,0,132544,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32681,15,0,3,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32682,15,0,3,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32683,15,0,3,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32684,15,0,3,0,0,0,0,0,-1,0,134309,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32685,0,5,0,0,65,0,0,0,-1,0,133904,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32686,0,5,0,0,65,0,0,0,-1,0,134343,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32687,12,0,1,0,0,0,0,0,-1,0,133628,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32688,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32689,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32690,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32691,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32692,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32693,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32694,4,0,0,12,0,0,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32695,4,0,0,12,0,0,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32696,12,0,0,0,0,0,0,0,0,0,134079,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32697,12,0,2,0,0,0,0,0,-1,0,134448,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32698,12,0,0,0,0,0,0,0,0,0,134326,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32699,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32700,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32701,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32702,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32703,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32704,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32705,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32706,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32707,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32708,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32709,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32710,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32711,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32712,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32713,15,0,0,0,0,0,0,0,0,0,133678,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32714,15,0,0,0,0,0,0,0,-1,0,134298,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32715,12,0,0,0,0,0,0,0,0,0,136063,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32716,12,0,0,0,0,0,0,0,0,0,134294,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32717,12,0,0,0,0,0,0,0,0,0,132782,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32718,12,0,0,0,0,0,0,0,0,0,134315,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32720,12,0,0,0,0,0,0,0,0,0,134514,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32721,0,5,0,0,55,0,0,0,-1,0,134019,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32722,0,5,0,0,65,0,0,0,-1,0,132796,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32723,12,0,0,0,0,0,0,0,0,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32724,15,0,0,0,0,0,0,0,0,0,134570,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32725,15,0,1,0,0,0,0,0,0,0,134710,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32726,15,0,7,0,70,0,0,0,0,0,133459,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32727,15,0,1,0,0,0,0,0,0,0,134716,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32728,15,0,1,0,0,0,0,0,0,0,134385,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32729,2,6,1,17,1,2,0,0,-1,0,135565,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,0 +32730,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +32731,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32732,12,0,0,0,0,0,0,0,-1,0,133724,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32733,12,0,0,0,0,0,0,0,-1,0,133802,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32734,12,0,0,0,0,0,0,0,0,0,132951,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32735,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32736,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32737,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32738,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32739,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32740,2,16,1,26,1,3,0,0,-1,0,135638,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32741,12,0,0,0,0,0,0,0,0,0,133707,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32742,12,0,0,0,0,0,0,0,-1,0,133733,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32743,2,0,1,13,0,1,0,0,-1,0,132455,9,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,17,0,0,0,0 +32744,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32745,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32746,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32747,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32748,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32749,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32750,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32751,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32752,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32753,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32754,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32755,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32756,2,3,1,26,70,0,0,0,-1,0,135621,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,275,0,0,0,0 +32757,12,0,0,2,0,0,0,0,-1,0,133279,8,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0 +32758,12,0,0,0,0,0,0,0,0,0,132798,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32759,15,0,0,0,0,0,0,0,0,0,132489,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32760,6,2,2,24,70,0,0,0,-1,0,133579,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,53,0,0,0,0 +32761,6,3,2,24,70,0,0,0,-1,0,133584,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,53,0,0,0,0 +32762,0,1,3,0,55,0,0,0,-1,0,134796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32763,0,1,3,0,55,0,0,0,-1,0,134795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32764,0,3,3,0,65,0,0,0,-1,0,134742,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32765,0,3,3,0,65,0,0,0,-1,0,134740,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32766,0,3,3,0,65,0,0,0,-1,0,134741,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32767,0,3,3,0,50,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32768,15,5,0,0,70,0,0,0,-1,0,132372,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32769,4,2,8,6,70,0,0,0,-1,0,132508,7,0,35,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32770,4,0,4,12,70,0,0,0,-1,0,133439,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32771,4,0,4,12,70,0,0,0,-1,0,134411,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32772,4,0,5,11,64,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32773,13,0,0,0,0,0,0,0,-1,0,134888,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32774,4,0,5,11,65,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32775,0,8,0,0,50,0,0,0,-1,0,134121,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32776,4,1,7,1,70,0,0,0,-1,0,132767,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32777,15,0,8,0,0,0,0,0,-1,0,133649,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32778,4,4,6,8,70,0,0,0,-1,0,132587,9,0,65,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32779,4,0,5,11,70,0,0,0,-1,0,133405,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32780,2,3,1,26,70,0,0,0,-1,0,135630,8,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,173,0,0,0,0 +32781,2,15,1,13,70,3,0,0,-1,0,135652,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +32782,4,0,3,12,68,0,0,0,-1,0,134911,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32783,0,0,3,0,70,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32784,0,0,3,0,70,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32785,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32786,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32787,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32788,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32789,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32790,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32791,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32792,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32793,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32794,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32795,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32796,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32797,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32798,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32799,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32800,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32801,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32802,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32803,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32804,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32805,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32806,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32807,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32808,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32809,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32810,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32811,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32812,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32813,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32814,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32816,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32817,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32818,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32819,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32820,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32821,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32822,12,0,0,0,0,0,0,0,0,0,132783,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32823,15,0,0,0,0,0,0,0,-1,0,134938,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32824,2,8,1,17,70,1,0,0,-1,0,135358,9,0,145,0,0,1,0,0,0,0,0,0,0,0,0,0,381,30,0,0,0,466,50,0,0,0 +32825,12,0,0,0,0,0,0,0,0,0,133863,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32826,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +32827,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +32828,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32829,2,6,1,17,0,2,0,0,-1,0,135128,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,357,0,0,0,0 +32830,2,10,2,17,0,2,0,0,-1,0,135169,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,252,0,0,0,0 +32831,2,19,2,26,0,0,0,0,-1,0,135473,12,0,65,0,5,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,284,0,0,0,0 +32832,2,16,1,25,0,0,0,0,-1,0,135426,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,160,0,0,0,0 +32833,3,3,0,0,0,0,0,0,-1,0,134127,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32834,12,0,0,0,0,0,0,0,-1,0,132599,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32835,15,0,0,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32836,3,3,0,0,0,0,0,0,-1,0,134126,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32837,2,7,1,21,70,1,0,0,-1,0,135561,9,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,398,0,0,0,0 +32838,2,7,1,22,70,1,0,0,-1,0,135561,9,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,199,0,0,0,0 +32839,0,8,3,0,60,0,0,0,-1,0,133778,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32840,0,1,3,0,60,0,0,0,-1,0,134752,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32841,2,15,1,13,1,3,0,0,-1,0,135640,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +32842,12,0,0,0,0,0,0,0,0,0,135619,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32843,12,0,0,0,0,0,0,0,0,0,134465,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32844,0,1,3,0,60,0,0,0,-1,0,134751,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32845,0,1,3,0,60,0,0,0,-1,0,134747,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32846,0,1,3,0,60,0,0,0,-1,0,134748,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32847,0,1,3,0,60,0,0,0,-1,0,134750,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32848,0,0,0,0,0,0,0,0,-1,0,133715,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32849,0,8,3,0,60,0,0,0,-1,0,133779,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32850,0,8,3,0,60,0,0,0,-1,0,133780,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32851,0,8,3,0,60,0,0,0,-1,0,133781,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32852,0,8,3,0,60,0,0,0,-1,0,133782,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32853,12,0,0,0,0,0,0,0,0,0,134465,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32854,2,5,2,17,70,2,0,0,-1,0,133521,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,274,0,0,0,0 +32856,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +32857,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32858,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32859,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32860,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32861,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32862,15,5,0,0,70,0,0,0,-1,0,132250,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32863,4,0,4,12,0,0,0,0,-1,0,133802,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32864,4,0,0,12,0,0,0,0,-1,0,134131,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32865,4,2,8,10,0,0,0,0,-1,0,132937,7,0,30,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32866,4,4,6,8,0,0,0,0,-1,0,132536,11,0,55,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32867,4,1,7,6,0,0,0,0,-1,0,132496,7,0,25,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32868,4,3,5,3,0,0,0,0,-1,0,135042,10,0,60,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32869,4,2,8,5,0,0,0,0,-1,0,132629,7,0,85,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32870,4,3,5,7,0,0,0,0,-1,0,134653,10,0,75,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32871,4,4,6,1,0,0,0,0,-1,0,133076,11,0,70,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32872,2,19,2,26,0,0,0,0,-1,0,135474,21,0,55,0,5,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,199,0,0,0,0 +32874,2,7,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32875,2,1,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32876,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +32877,2,13,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32878,2,13,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32879,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32882,6,3,6,24,68,0,0,0,-1,0,133582,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,37,0,0,0,0 +32883,6,3,6,24,68,0,0,0,-1,0,133582,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,37,0,0,0,0 +32884,2,10,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32885,4,6,1,14,1,4,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32886,2,0,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32887,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32888,15,0,0,0,0,0,0,0,0,0,134331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32889,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32890,2,7,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32891,4,6,1,14,1,4,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32892,2,4,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32893,2,10,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +32894,2,15,1,13,1,3,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32895,15,0,0,0,70,0,0,0,0,0,134941,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32896,15,0,0,0,70,0,0,0,0,0,134940,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32897,15,4,0,0,0,0,0,0,0,0,136172,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32898,0,3,3,0,70,0,0,0,-1,0,134742,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32899,0,3,3,0,70,0,0,0,-1,0,134741,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32900,0,3,3,0,70,0,0,0,-1,0,134821,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32901,0,3,3,0,70,0,0,0,-1,0,134740,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32902,0,1,3,0,55,0,0,0,-1,0,134783,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32903,0,0,3,0,55,0,0,0,-1,0,134796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32904,0,0,3,0,55,0,0,0,-1,0,134795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32905,0,1,3,0,55,0,0,0,-1,0,134780,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32906,12,0,4,0,0,0,0,0,0,0,133246,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32907,12,0,0,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32908,12,0,0,0,0,0,0,0,-1,0,132147,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32909,0,0,3,0,70,0,0,0,-1,0,134853,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32910,0,0,3,0,70,0,0,0,-1,0,134832,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32912,2,14,2,21,1,7,0,0,-1,0,133696,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32913,0,0,3,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32914,2,15,0,13,0,0,0,0,-1,0,135302,9,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,146,0,0,0,0 +32915,2,14,2,21,1,7,0,0,-1,0,133697,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32916,12,0,0,0,0,0,0,0,0,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32917,2,14,2,21,1,7,0,0,-1,0,133697,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32918,2,14,2,21,1,7,0,0,-1,0,133697,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32919,2,14,2,21,1,7,0,0,-1,0,133697,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32920,2,14,2,21,1,7,0,0,-1,0,133697,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +32921,15,0,0,0,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32922,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32923,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32924,2,6,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32925,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32926,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32927,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32928,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32929,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32930,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32931,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32932,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32933,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32934,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32935,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32936,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32937,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32938,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32939,2,15,1,13,1,1,0,0,-1,0,132395,9,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +32940,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0 +32941,4,0,3,11,70,0,0,0,-1,0,133365,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32942,4,0,3,11,70,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32943,2,4,1,13,70,3,0,0,-1,0,133524,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,196,0,0,0,0 +32944,2,13,1,21,70,7,0,0,-1,0,135603,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,339,0,0,0,0 +32945,2,13,1,22,70,7,0,0,-1,0,135605,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,181,0,0,0,0 +32946,2,13,1,21,70,7,0,0,-1,0,135605,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0,325,0,0,0,0 +32947,0,1,3,0,55,0,0,0,-1,0,134756,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32948,0,1,3,0,55,0,0,0,-1,0,134762,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32949,2,7,6,13,0,0,0,0,7,0,135346,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0,431,0,0,0,0 +32950,2,4,6,13,0,0,0,0,4,0,133481,9,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,363,0,0,0,0 +32951,2,8,6,17,0,0,0,0,8,0,135346,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0,747,0,0,0,0 +32952,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32953,2,8,0,17,0,0,0,0,-1,0,135356,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +32954,4,4,6,8,70,0,0,0,-1,0,132585,0,0,75,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32955,4,4,6,8,70,0,0,0,-1,0,132585,0,0,75,0,0,0,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32956,4,4,6,8,70,0,0,0,-1,0,132585,0,0,75,0,0,0,0,0,0,1247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32957,4,4,6,9,70,0,0,0,-1,0,132618,0,0,55,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32958,4,4,6,9,70,0,0,0,-1,0,132618,0,0,55,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32959,4,4,6,9,70,0,0,0,-1,0,132618,0,0,55,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32960,12,0,0,0,0,0,0,0,-1,0,133868,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32961,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32962,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0,443,0,0,0,0 +32963,2,4,1,21,70,3,0,0,-1,0,133527,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,203,0,0,0,0 +32964,2,4,1,21,70,3,0,0,-1,0,133527,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,203,0,0,0,0 +32965,0,8,0,0,0,0,0,0,0,0,134537,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32966,0,8,0,0,0,0,0,0,0,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32967,0,8,0,0,0,0,0,0,0,0,135861,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32970,4,3,5,5,38,0,507,0,-1,0,132626,10,0,100,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32971,0,0,0,0,0,0,0,0,0,0,132806,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32972,4,0,0,1,0,0,0,0,-1,0,133023,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32973,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32974,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32975,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32976,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32977,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32978,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32979,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32980,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32981,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32982,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32983,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32984,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32985,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32986,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32987,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32988,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32989,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32990,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32991,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32992,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32993,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32994,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32995,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32996,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32997,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32998,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32999,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33001,12,0,0,0,0,0,0,0,0,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33002,2,10,2,17,0,1,0,0,-1,0,135225,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +33003,4,0,4,12,0,0,0,0,-1,0,135441,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33004,0,5,0,0,40,0,0,0,-1,0,134433,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33005,4,3,0,5,0,0,0,0,0,0,132391,0,0,100,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33006,2,18,2,26,70,0,0,0,-1,0,135548,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,336,0,0,0,0 +33007,12,0,0,0,1,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33008,12,0,0,0,0,0,0,0,0,0,132766,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33009,12,0,0,0,0,0,0,0,0,0,134028,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33010,12,0,0,0,0,0,0,0,-1,0,133472,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33012,4,0,0,23,0,0,0,0,-1,0,134204,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33013,12,0,0,0,0,0,0,0,-1,0,134269,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33014,4,0,0,23,0,0,0,0,-1,0,134412,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33015,12,0,0,0,0,0,0,0,0,0,134937,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33016,2,14,2,13,1,7,0,0,-1,0,133698,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33017,2,14,1,13,1,7,0,0,-1,0,133699,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33018,2,14,1,13,1,7,0,0,-1,0,133699,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33019,2,14,1,13,1,7,0,0,-1,0,133699,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33020,2,14,1,13,1,7,0,0,-1,0,133699,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33021,2,14,1,13,1,7,0,0,-1,0,133699,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33022,15,0,0,21,0,0,0,0,-1,0,132792,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +33023,0,0,0,0,35,0,0,0,-1,0,133197,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33024,0,0,0,0,45,0,0,0,-1,0,133198,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33025,0,0,0,0,55,0,0,0,-1,0,133199,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33026,0,0,0,0,65,0,0,0,-1,0,133200,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33027,1,0,1,18,1,0,0,103,-1,0,133485,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33028,0,0,3,0,5,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33029,0,0,3,0,15,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33030,0,0,3,0,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33031,0,0,3,0,25,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33032,0,0,3,0,35,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33033,0,0,3,0,45,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33034,0,0,3,0,55,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33035,0,0,3,0,65,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33036,0,0,3,0,65,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33037,12,0,0,0,0,0,0,0,0,0,133460,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33038,12,0,0,0,0,0,0,0,0,0,133151,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33039,12,0,0,0,0,0,0,0,0,0,134521,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33040,12,0,0,1,0,0,0,0,0,0,133151,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33041,12,0,0,0,0,0,0,0,0,0,132594,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33042,0,5,3,0,65,0,0,0,-1,0,132802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33043,0,0,0,0,1,0,0,0,-1,0,133196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33044,12,0,0,0,0,0,0,0,0,0,133019,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33045,12,0,0,0,0,0,0,0,0,0,133652,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33046,4,0,0,12,0,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33047,4,0,0,1,0,0,0,0,-1,0,133023,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33048,0,5,0,0,65,0,0,0,-1,0,134020,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33049,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33050,12,0,0,0,0,0,0,0,0,0,134328,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33051,12,0,0,0,0,0,0,0,0,0,134331,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33052,0,5,0,0,65,0,0,0,-1,0,134044,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33053,0,5,0,0,65,0,0,0,-1,0,134032,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33054,4,0,3,11,70,0,0,0,-1,0,133381,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33055,4,0,3,11,70,0,0,0,-1,0,133413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33056,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33057,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33058,4,0,3,11,70,0,0,0,-1,0,133385,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33060,3,8,0,0,0,0,0,0,-1,0,133254,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33061,13,0,0,0,0,0,0,0,0,0,134241,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33062,15,0,0,0,0,0,0,0,-1,0,132791,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33063,0,0,0,0,0,0,0,0,-1,0,133964,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33064,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33065,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33066,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33067,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33068,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33069,12,0,0,0,0,0,0,0,0,0,134326,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33070,12,0,0,0,0,0,0,0,0,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33071,12,0,0,0,0,0,0,0,0,0,132410,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33072,12,0,0,0,0,0,0,0,0,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33073,4,1,0,1,0,0,0,0,0,0,132767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33074,4,1,0,1,0,0,0,0,0,0,132767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33075,4,1,0,1,0,0,0,0,0,0,132767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33076,4,8,2,28,70,0,0,0,-1,0,136065,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33077,4,7,2,28,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33078,4,9,2,28,70,0,0,0,-1,0,135861,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33079,0,0,0,0,0,0,0,0,-1,0,134169,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33081,0,8,8,0,1,0,0,0,-1,0,133730,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33082,12,0,0,0,0,0,0,0,0,0,134182,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33083,0,8,0,0,0,0,0,0,-1,0,132798,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33085,12,0,0,0,0,0,0,0,0,0,132924,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33086,12,0,0,0,0,0,0,0,0,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33087,12,0,0,0,0,0,0,0,0,0,136158,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33088,12,0,0,0,0,0,0,0,0,0,136021,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33091,12,0,0,0,0,0,0,0,0,0,136021,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33092,0,8,3,0,55,0,0,0,-1,0,134795,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33093,0,8,3,0,55,0,0,0,-1,0,134796,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33094,2,0,1,13,1,0,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33095,12,0,0,0,0,0,0,0,0,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33096,15,0,0,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33097,4,0,1,11,66,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33101,12,0,0,0,0,0,0,0,0,0,136008,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33102,12,0,0,0,70,0,0,0,0,0,134800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33103,12,0,0,0,0,0,0,0,0,0,134790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33104,4,0,1,11,0,0,0,0,-1,0,133380,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33105,4,0,0,1,0,0,0,0,-1,0,134177,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33106,12,0,0,0,0,0,0,0,-1,0,133723,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33107,12,0,0,0,0,0,0,0,-1,0,134231,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33108,12,0,0,0,0,0,0,0,0,0,133000,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33110,12,0,0,0,0,0,0,0,0,0,135342,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33112,12,0,0,0,0,0,0,0,0,0,134181,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33113,12,0,0,0,0,0,0,0,0,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33114,12,0,0,0,30,0,0,0,0,0,133472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33115,12,0,0,0,30,0,0,0,0,0,133472,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33117,1,0,0,18,60,0,0,0,-1,0,133661,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33118,4,1,7,3,0,0,0,0,-1,0,135050,7,0,60,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33122,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33124,9,1,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33125,2,14,1,13,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33126,12,0,0,0,0,0,0,0,0,0,134769,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33127,12,0,0,0,0,0,0,0,0,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33131,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33132,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33133,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33134,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33135,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33137,3,1,0,0,0,0,0,0,-1,0,133245,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33138,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33139,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33140,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33141,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33142,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33143,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33144,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33148,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33149,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33150,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33151,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33152,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33153,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33154,15,0,0,0,0,0,0,0,-1,0,134015,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33155,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33156,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33157,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33158,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33159,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33160,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33161,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33162,4,0,2,23,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33163,12,0,0,0,0,0,0,0,0,0,132763,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33165,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33166,12,0,0,0,0,0,0,0,0,0,134019,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33173,4,4,0,3,70,0,0,0,-1,0,135047,9,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33174,9,4,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33175,12,0,0,0,0,0,0,0,0,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33176,15,5,2,0,70,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33182,15,5,2,0,70,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33183,15,5,2,0,40,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33184,15,5,2,0,60,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33185,0,6,8,0,0,0,0,0,-1,0,135834,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33186,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33189,15,0,2,0,1,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33191,4,4,1,8,70,0,0,0,-1,0,132591,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33192,2,19,2,26,70,0,0,0,-1,0,135486,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,343,0,0,0,0 +33193,4,0,1,11,61,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33194,4,0,1,11,66,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33195,4,0,1,11,66,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33196,4,0,1,11,66,0,0,0,-1,0,133395,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33197,4,0,1,2,66,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33198,4,0,1,2,66,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33199,4,0,1,2,66,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33200,4,0,1,2,66,0,0,0,-1,0,133297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33201,4,0,1,2,66,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33202,12,0,0,0,0,0,0,0,0,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33203,4,1,7,20,70,0,0,0,-1,0,132676,7,0,100,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33204,4,2,8,5,70,0,0,0,-1,0,132746,7,0,120,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33205,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33206,4,3,5,3,70,0,0,0,-1,0,135110,11,0,85,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33207,4,4,1,8,70,0,0,0,-1,0,132591,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33208,0,3,3,0,65,0,0,0,-1,0,134828,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33209,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33211,4,2,5,6,70,0,0,0,-1,0,132503,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33214,2,7,1,13,70,1,0,0,-1,0,135289,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +33215,4,4,1,5,70,0,0,0,-1,0,132756,9,0,165,0,0,0,0,0,0,1607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33216,4,4,1,5,70,0,0,0,-1,0,132758,9,0,165,0,0,0,0,0,0,1607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33217,0,0,0,0,0,0,0,0,0,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33218,0,0,0,0,1,0,0,0,0,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33219,0,0,0,0,0,0,0,0,0,0,132804,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33222,4,2,8,8,70,0,0,0,-1,0,132541,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33223,15,0,0,0,0,0,0,0,0,0,132930,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33224,15,5,0,0,30,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33225,15,5,0,0,60,0,0,0,-1,0,132267,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33226,0,0,0,0,0,0,0,0,0,0,133981,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33228,4,1,7,5,0,0,0,0,-1,0,132657,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33229,4,1,7,5,0,0,0,0,-1,0,132679,7,0,70,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33230,4,1,7,7,0,0,0,0,-1,0,134581,7,0,55,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33231,4,1,8,1,0,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33232,4,1,8,1,0,0,0,0,-1,0,133132,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33233,4,1,7,10,0,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33234,0,0,7,0,45,0,0,0,-1,0,132807,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33235,4,1,7,3,0,0,0,0,-1,0,135058,7,0,45,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33236,0,0,3,0,60,0,0,0,-1,0,132830,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33237,4,2,8,5,0,0,0,0,-1,0,132646,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33239,4,2,8,5,0,0,0,0,-1,0,132722,7,0,85,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33240,4,2,8,5,0,0,0,0,-1,0,132724,7,0,85,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33241,4,2,8,7,0,0,0,0,-1,0,134589,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33242,4,2,8,7,0,0,0,0,-1,0,134592,7,0,65,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33243,4,2,8,1,0,0,0,0,-1,0,133156,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33244,4,2,8,1,0,0,0,0,-1,0,133152,7,0,50,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33245,4,2,8,6,0,0,0,0,-1,0,132500,7,0,30,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33246,0,0,0,0,55,0,0,0,-1,0,134029,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33247,4,2,8,3,0,0,0,0,-1,0,135037,7,0,50,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33248,4,2,8,3,0,0,0,0,-1,0,135054,7,0,50,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33249,4,2,8,8,0,0,0,0,-1,0,132537,7,0,45,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33250,4,2,8,9,0,0,0,0,-1,0,132615,7,0,30,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33251,4,3,5,5,0,0,0,0,-1,0,132639,10,0,100,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33252,4,3,5,5,0,0,0,0,-1,0,132629,10,0,100,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33253,4,3,5,1,0,0,0,0,-1,0,133073,10,0,60,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33254,0,0,0,0,65,0,0,0,-1,0,133974,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33255,4,4,5,6,0,0,0,0,-1,0,132508,11,0,40,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33256,4,4,5,10,0,0,0,0,-1,0,132948,11,0,40,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33257,4,3,5,8,0,0,0,0,-1,0,132584,10,0,50,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33258,4,4,5,7,0,0,0,0,-1,0,134681,11,0,85,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33259,4,3,5,1,0,0,0,0,-1,0,133071,10,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33260,4,1,7,16,0,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33261,4,1,7,16,0,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33262,4,0,1,11,0,0,0,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33263,4,0,1,11,0,0,0,0,-1,0,133346,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33264,4,0,1,11,0,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33265,4,0,3,2,0,0,0,0,-1,0,133289,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33266,4,0,3,23,0,7,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33267,2,15,1,13,0,3,0,0,-1,0,135641,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,48,0,0,0,0 +33268,2,15,1,13,0,3,0,0,-1,0,135661,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,37,0,0,0,0 +33269,2,15,1,13,0,3,0,0,-1,0,135646,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,46,0,0,0,0 +33270,2,7,1,13,0,3,0,0,-1,0,135346,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,62,0,0,0,0 +33271,2,7,1,13,0,3,0,0,-1,0,135321,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,44,0,0,0,0 +33272,2,0,1,13,0,3,0,0,-1,0,132398,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,43,0,0,0,0 +33273,2,2,2,15,0,0,0,0,-1,0,135490,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,78,0,0,0,0 +33274,2,18,2,26,0,0,0,0,-1,0,135531,12,0,65,2,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,67,0,0,0,0 +33277,0,0,0,0,0,0,0,0,0,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33279,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33280,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33281,4,0,4,2,70,0,0,0,-1,0,133341,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33283,2,4,1,21,70,3,0,0,-1,0,133512,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,199,0,0,0,0 +33285,4,1,7,9,70,0,0,0,-1,0,132612,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33286,4,3,5,1,70,0,0,0,-1,0,133097,10,0,85,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33287,4,2,8,3,70,0,0,0,-1,0,135108,7,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33288,15,0,0,0,0,0,0,0,-1,0,132795,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33291,4,1,7,6,70,0,0,0,-1,0,132492,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33292,4,1,7,1,0,0,0,0,-1,0,133661,7,0,20,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33293,4,0,3,11,70,0,0,0,-1,0,133410,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33296,4,0,4,2,70,0,0,0,-1,0,133316,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33297,4,0,3,2,70,0,0,0,-1,0,133306,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33298,2,15,1,13,70,3,0,0,-1,0,135700,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,187,0,0,0,0 +33299,4,4,1,3,70,0,0,0,-1,0,135109,9,0,100,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33300,4,2,8,3,70,0,0,0,-1,0,135055,7,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33302,15,0,0,0,1,0,0,0,-1,0,134400,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33303,4,4,1,8,70,0,0,0,-1,0,132591,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33304,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33305,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33306,12,0,0,0,0,0,0,0,0,0,132494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33307,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33309,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,5727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33313,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,5727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33315,0,8,8,0,0,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33317,4,1,7,20,70,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33322,4,2,8,5,70,0,0,0,-1,0,132716,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33324,4,3,5,8,70,0,0,0,-1,0,132556,10,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33325,4,0,3,23,70,0,0,0,-1,0,134559,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33326,4,6,6,14,70,4,0,0,-1,0,134987,9,0,120,0,0,0,0,0,0,5400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33327,4,4,0,1,70,0,0,0,-1,0,133565,11,0,100,0,0,0,0,0,0,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33328,4,3,5,5,70,0,0,0,-1,0,132635,11,0,140,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33329,4,2,8,5,70,0,0,0,-1,0,132721,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33331,4,4,1,6,70,0,0,0,-1,0,132507,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33332,4,6,6,14,70,4,0,0,-1,0,134988,9,0,120,0,0,0,0,0,0,5400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33333,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33334,4,0,3,23,70,0,0,0,-1,0,134560,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33338,2,16,1,25,1,0,0,0,-1,0,135641,8,0,200,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +33354,2,15,1,21,70,3,0,0,-1,0,135699,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,224,0,0,0,0 +33356,4,2,8,1,70,0,0,0,-1,0,133093,7,0,70,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33357,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33386,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33388,2,7,1,13,70,3,0,0,-1,0,135288,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,323,0,0,0,0 +33389,2,15,1,13,70,3,0,0,-1,0,135695,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,207,0,0,0,0 +33421,4,4,0,1,70,0,0,0,-1,0,133092,10,0,100,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33432,4,3,5,1,70,0,0,0,-1,0,133094,11,0,85,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33442,12,0,1,0,0,0,0,0,3,0,135610,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33446,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33453,4,1,7,1,70,0,0,0,-1,0,133097,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33455,0,0,7,0,0,0,0,0,-1,0,134329,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33463,4,1,7,1,70,0,0,0,-1,0,133097,7,0,60,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33464,4,3,5,3,70,0,0,0,-1,0,135111,11,0,85,0,0,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33465,2,10,2,17,70,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0,448,0,0,0,0 +33466,4,0,3,2,70,0,0,0,-1,0,133291,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33467,2,7,1,21,70,3,0,0,-1,0,135290,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,231,0,0,0,0 +33468,2,4,1,21,70,3,0,0,-1,0,135199,11,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,244,0,0,0,0 +33469,4,3,5,5,70,0,0,0,-1,0,132735,10,0,140,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33471,4,1,7,8,70,0,0,0,-1,0,132579,7,0,50,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33473,4,4,1,5,70,0,0,0,-1,0,132756,9,0,165,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33474,2,2,2,15,70,0,0,0,-1,0,135512,15,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,337,0,0,0,0 +33476,2,0,1,13,70,3,0,0,-1,0,132470,11,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +33478,2,8,1,17,70,1,0,0,-1,0,135289,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,570,0,0,0,0 +33479,4,2,8,1,70,0,0,0,-1,0,133097,7,0,70,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33480,4,1,7,6,70,0,0,0,-1,0,132513,7,0,35,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33481,4,4,1,3,70,0,0,0,-1,0,135106,9,0,100,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33482,4,3,5,8,70,0,0,0,-1,0,132555,11,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33483,4,2,8,6,70,0,0,0,-1,0,132500,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33484,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33489,4,1,7,3,70,0,0,0,-1,0,135107,7,0,60,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33490,2,10,2,17,70,2,0,0,-1,0,135198,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,477,0,0,0,0 +33491,2,3,1,26,70,0,0,0,-1,0,135632,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,326,0,0,0,0 +33492,2,1,1,17,70,1,0,0,-1,0,132471,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0,537,0,0,0,0 +33493,2,15,1,13,70,3,0,0,-1,0,135701,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,207,0,0,0,0 +33494,2,10,2,17,70,2,0,0,-1,0,135145,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,477,0,0,0,0 +33495,2,13,1,21,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,323,0,0,0,0 +33496,4,0,3,11,70,0,0,0,-1,0,133386,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33497,4,0,3,11,70,0,0,0,-1,0,133392,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33498,4,0,3,11,70,0,0,0,-1,0,133379,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33499,4,0,3,11,70,0,0,0,-1,0,133409,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33500,4,0,3,11,70,0,0,0,-1,0,133403,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33501,4,4,1,7,70,0,0,0,-1,0,134704,11,0,120,0,0,0,0,0,0,1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33502,4,7,2,28,70,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33503,4,7,2,28,70,0,0,0,-1,0,134915,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33504,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33505,4,9,2,28,70,0,0,0,-1,0,135861,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33506,4,9,2,28,70,0,0,0,-1,0,136014,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33507,4,9,2,28,70,0,0,0,-1,0,136025,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33508,4,8,2,28,70,0,0,0,-1,0,136074,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33509,4,8,2,28,70,0,0,0,-1,0,132121,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33510,4,8,2,28,70,0,0,0,-1,0,136087,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33512,4,4,1,10,70,0,0,0,-1,0,132990,11,0,55,0,0,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33513,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33514,4,4,1,3,70,0,0,0,-1,0,135106,9,0,100,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33515,4,4,1,7,70,0,0,0,-1,0,134704,9,0,120,0,0,0,0,0,0,1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33516,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33517,4,4,1,10,70,0,0,0,-1,0,132990,9,0,55,0,0,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33518,4,4,1,7,70,0,0,0,-1,0,134704,9,0,120,0,0,0,0,0,0,1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33519,4,4,1,10,70,0,0,0,-1,0,132990,9,0,55,0,0,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33520,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33521,2,5,2,17,1,1,0,0,-1,0,133489,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +33522,4,4,1,5,70,0,0,0,-1,0,132758,9,0,165,0,0,0,0,0,0,1607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33523,4,4,1,8,70,0,0,0,-1,0,132591,9,0,75,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33524,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33527,4,3,5,7,70,0,0,0,-1,0,134648,11,0,105,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33528,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33529,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33530,4,3,5,7,70,0,0,0,-1,0,134676,10,0,105,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33531,4,3,5,10,70,0,0,0,-1,0,132991,10,0,50,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33532,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33533,4,3,5,7,70,0,0,0,-1,0,134676,10,0,105,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33534,4,3,5,10,70,0,0,0,-1,0,132991,10,0,50,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33535,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33536,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33537,4,3,5,8,70,0,0,0,-1,0,132548,10,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33538,4,2,8,7,70,0,0,0,-1,0,134634,7,0,90,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33539,4,2,8,10,70,0,0,0,-1,0,132973,7,0,40,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33540,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33542,2,0,1,13,0,3,0,0,-1,0,132453,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,312,0,0,0,0 +33543,2,15,1,13,0,3,0,0,-1,0,135675,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,199,0,0,0,0 +33552,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33557,4,2,8,9,70,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33559,4,2,8,6,70,0,0,0,-1,0,132497,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33566,4,2,8,5,70,0,0,0,-1,0,132647,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33570,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33572,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33573,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33574,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33577,4,2,8,8,70,0,0,0,-1,0,132573,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33578,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33579,4,2,8,5,70,0,0,0,-1,0,132723,7,0,120,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33580,4,2,8,9,70,0,0,0,-1,0,132611,7,0,40,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33582,4,2,8,8,70,0,0,0,-1,0,132592,7,0,60,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33583,4,2,8,6,70,0,0,0,-1,0,132511,7,0,40,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33584,4,1,7,7,70,0,0,0,-1,0,134615,7,0,75,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33585,4,1,7,7,70,0,0,0,-1,0,134685,7,0,75,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33586,4,1,7,10,70,0,0,0,-1,0,132948,7,0,35,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33587,4,1,7,10,70,0,0,0,-1,0,132940,7,0,35,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33588,4,1,7,9,70,0,0,0,-1,0,132608,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33589,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33590,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33591,4,1,7,16,70,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33592,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33593,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33600,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33601,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33602,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33603,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33622,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33623,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33624,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33625,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33626,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33633,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33640,2,13,1,22,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,323,0,0,0,0 +33661,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,6132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33662,2,4,1,22,70,3,0,0,-1,0,133521,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +33663,2,5,1,17,70,1,0,0,-1,0,133523,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,580,0,0,0,0 +33664,4,3,5,5,70,0,0,0,-1,0,132733,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33665,4,3,5,10,70,0,0,0,-1,0,132982,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33666,4,3,5,1,70,0,0,0,-1,0,133191,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33667,4,3,5,7,70,0,0,0,-1,0,134674,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33668,4,3,5,3,70,0,0,0,-1,0,135084,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33669,2,0,1,13,70,3,0,0,-1,0,132470,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,349,0,0,0,0 +33670,2,1,1,17,70,1,0,0,-1,0,132447,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,580,0,0,0,0 +33671,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33672,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33673,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33674,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33675,4,2,8,5,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33676,4,1,7,10,70,0,0,0,-1,0,132989,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33677,4,1,7,1,70,0,0,0,-1,0,133083,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33678,4,1,7,7,70,0,0,0,-1,0,134623,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33679,4,1,7,3,70,0,0,0,-1,0,135093,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33680,4,1,7,20,70,0,0,0,-1,0,132709,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33681,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33682,4,1,7,3,70,0,0,0,-1,0,135093,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33683,4,1,7,1,70,0,0,0,-1,0,133083,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33684,4,1,7,10,70,0,0,0,-1,0,132989,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33685,4,1,7,20,70,0,0,0,-1,0,132709,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33686,4,1,7,7,70,0,0,0,-1,0,134623,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33687,2,4,1,21,70,3,0,0,-1,0,133536,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +33688,2,8,1,17,70,1,0,0,-1,0,135289,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,580,0,0,0,0 +33689,2,0,1,22,70,3,0,0,-1,0,132470,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +33690,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33691,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33692,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33693,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33694,4,2,8,5,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33695,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33696,4,4,6,10,70,0,0,0,-1,0,132983,11,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33697,4,4,6,1,70,0,0,0,-1,0,133192,11,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33698,4,4,6,7,70,0,0,0,-1,0,134702,11,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33699,4,4,6,3,70,0,0,0,-1,0,135085,11,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33700,4,2,8,10,70,0,0,0,-1,0,132988,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33701,4,2,8,1,70,0,0,0,-1,0,133082,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33702,4,2,8,7,70,0,0,0,-1,0,134652,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33703,4,2,8,3,70,0,0,0,-1,0,135092,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33704,4,2,8,5,70,0,0,0,-1,0,132731,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33705,2,13,1,22,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +33706,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33707,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33708,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33709,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33710,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33711,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33712,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33713,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33714,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33715,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33716,2,10,1,17,70,2,0,0,-1,0,135196,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,322,0,0,0,0 +33717,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33718,4,1,7,1,70,0,0,0,-1,0,133195,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33719,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33720,4,1,7,3,70,0,0,0,-1,0,135088,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33721,4,1,7,20,70,0,0,0,-1,0,132707,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33722,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33723,4,4,6,10,70,0,0,0,-1,0,132983,11,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33724,4,4,6,1,70,0,0,0,-1,0,133192,11,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33725,4,4,6,7,70,0,0,0,-1,0,134702,11,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33726,4,4,6,3,70,0,0,0,-1,0,135085,11,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33727,2,6,1,17,70,1,0,0,-1,0,135565,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0,354,0,0,0,0 +33728,4,4,6,5,70,0,0,0,-1,0,132757,11,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33729,4,4,6,10,70,0,0,0,-1,0,132985,11,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33730,4,4,6,1,70,0,0,0,-1,0,133194,11,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33731,4,4,6,7,70,0,0,0,-1,0,134703,11,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33732,4,4,6,3,70,0,0,0,-1,0,135087,11,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33733,2,4,1,13,70,3,0,0,-1,0,133521,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,349,0,0,0,0 +33734,2,7,1,22,70,3,0,0,-1,0,135399,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +33735,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,6132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33736,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33737,2,13,1,21,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,349,0,0,0,0 +33738,4,3,5,20,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33739,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33740,4,3,5,1,70,0,0,0,-1,0,133193,10,0,85,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33741,4,3,5,7,70,0,0,0,-1,0,134675,10,0,105,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33742,4,3,5,3,70,0,0,0,-1,0,135086,10,0,85,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33743,2,4,1,21,70,3,0,0,-1,0,133536,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +33744,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33745,4,1,7,1,70,0,0,0,-1,0,133195,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33746,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33747,4,1,7,3,70,0,0,0,-1,0,135088,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33748,4,1,7,20,70,0,0,0,-1,0,132707,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33749,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33750,4,4,6,10,70,0,0,0,-1,0,132983,11,0,55,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33751,4,4,6,1,70,0,0,0,-1,0,133192,11,0,100,0,0,0,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33752,4,4,6,7,70,0,0,0,-1,0,134702,11,0,120,0,0,0,0,0,0,1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33753,4,4,6,3,70,0,0,0,-1,0,135085,11,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33754,2,15,1,13,70,3,0,0,-1,0,135697,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,223,0,0,0,0 +33755,4,6,1,14,70,4,0,0,-1,0,134976,9,0,120,0,0,0,0,0,0,6132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33756,2,15,1,22,70,3,0,0,-1,0,135697,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,188,0,0,0,0 +33757,4,1,7,3,70,0,0,0,-1,0,135089,7,0,60,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33758,4,1,7,1,70,0,0,0,-1,0,133081,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33759,4,1,7,10,70,0,0,0,-1,0,132987,7,0,35,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33760,4,1,7,20,70,0,0,0,-1,0,132708,7,0,100,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33761,4,1,7,7,70,0,0,0,-1,0,134622,7,0,75,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33762,2,7,1,13,70,3,0,0,-1,0,135399,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,322,0,0,0,0 +33763,2,15,1,21,70,3,0,0,-1,0,135686,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +33764,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,468,0,0,0,0 +33765,2,16,1,25,70,0,0,0,-1,0,132394,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,212,0,0,0,0 +33766,2,10,2,17,70,2,0,0,-1,0,135190,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,322,0,0,0,0 +33767,4,2,8,10,70,0,0,0,-1,0,132981,7,0,40,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33768,4,2,8,1,70,0,0,0,-1,0,133190,7,0,70,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33769,4,2,8,7,70,0,0,0,-1,0,134651,7,0,90,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33770,4,2,8,3,70,0,0,0,-1,0,135083,7,0,70,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33771,4,2,8,5,70,0,0,0,-1,0,132730,7,0,120,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33772,4,4,6,3,70,0,0,0,-1,0,135053,11,0,100,0,0,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33775,15,0,0,0,0,1,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33776,15,0,0,0,0,1,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33777,15,0,0,0,0,1,0,0,-1,0,134231,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33782,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33783,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33784,15,0,3,0,0,0,0,0,-1,0,134417,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33785,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33786,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33787,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33788,0,0,0,0,0,0,0,0,0,0,135723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33789,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33790,2,0,1,26,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33791,2,7,1,13,6,1,0,0,-1,0,135326,9,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0 +33792,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33793,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33795,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33797,0,0,0,0,0,0,0,0,0,0,132622,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33798,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33801,2,15,1,22,70,3,0,0,-1,0,135697,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,241,0,0,0,0 +33803,6,2,2,24,62,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,43,0,0,0,0 +33804,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33805,4,3,5,8,70,0,0,0,-1,0,132551,11,0,70,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33807,12,0,0,0,0,0,0,0,-1,0,134227,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33808,4,4,8,1,70,0,0,0,-1,0,133123,11,0,100,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33809,15,5,0,0,70,0,0,0,-1,0,132117,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33810,4,4,6,1,70,0,0,0,-1,0,133095,10,0,100,0,0,0,0,0,0,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33811,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33812,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33813,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33814,12,0,0,0,0,0,0,0,-1,0,135225,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33815,12,0,0,0,0,0,0,0,-1,0,135270,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33816,15,2,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33818,15,2,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33820,4,1,7,1,0,0,0,0,-1,0,133133,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33821,12,0,0,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33823,7,8,0,0,0,0,0,0,-1,0,133915,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33824,7,8,0,0,0,0,0,0,-1,0,133926,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33825,0,5,0,0,65,0,0,0,-1,0,134019,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33826,12,0,0,0,0,0,0,0,-1,0,134430,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33827,12,0,0,0,0,0,0,0,-1,0,133737,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33828,4,0,4,12,70,0,0,0,-1,0,134554,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33829,4,0,4,12,70,0,0,0,-1,0,134177,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33830,4,0,4,12,70,0,0,0,-1,0,135443,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33831,4,0,4,12,70,0,0,0,-1,0,135727,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33832,4,0,4,12,70,0,0,0,-1,0,132344,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33833,12,0,0,0,0,0,0,0,-1,0,133802,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33834,12,0,0,0,0,0,0,0,-1,0,132919,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33835,12,0,0,0,0,0,0,0,-1,0,133282,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33836,12,0,0,0,0,0,0,0,-1,0,134126,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33837,12,0,1,0,0,0,0,0,-1,0,133778,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33838,12,0,0,0,0,0,0,0,-1,0,134002,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33839,12,0,0,0,0,0,0,0,-1,0,134020,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33840,12,0,0,0,0,0,0,0,-1,0,132837,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33841,4,8,2,28,70,0,0,0,-1,0,136065,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33842,4,7,2,28,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33843,4,9,2,28,70,0,0,0,-1,0,135861,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33844,15,0,2,0,0,0,0,0,-1,0,132620,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33846,15,0,7,0,0,0,0,0,-1,0,134325,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33847,12,0,0,0,0,0,0,0,-1,0,134154,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33848,12,0,0,0,0,0,0,0,-1,0,134020,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33849,12,0,0,0,0,0,0,0,-1,0,134014,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33850,12,0,0,0,0,0,0,0,-1,0,134020,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33851,12,0,1,0,0,0,0,0,-1,0,133778,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33852,12,0,1,0,0,0,0,0,-1,0,133778,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33853,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33854,15,0,0,0,0,0,0,0,-1,0,133884,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33855,4,0,5,11,0,0,0,0,-1,0,133361,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33856,15,0,0,0,0,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33857,15,0,0,0,0,0,0,0,0,0,132765,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33858,12,0,0,0,0,0,0,0,-1,0,133018,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33859,12,0,0,0,0,0,0,0,-1,0,133749,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33860,12,0,0,0,0,0,0,0,-1,0,133866,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33861,12,0,0,0,0,0,0,0,-1,0,134471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33862,4,0,0,20,0,0,0,0,-1,0,132710,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33863,4,0,0,20,0,0,0,0,-1,0,132711,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33864,4,0,0,1,0,0,0,0,-1,0,133099,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33865,0,0,2,0,0,0,0,0,-1,0,135485,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33866,0,5,0,0,55,0,0,0,-1,0,134047,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33867,0,5,0,0,55,0,0,0,-1,0,133915,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33868,4,0,0,8,0,0,0,0,-1,0,132574,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33869,9,5,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33870,9,5,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33871,9,5,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33872,0,5,0,0,65,0,0,0,-1,0,134040,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33873,9,5,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33874,0,5,0,0,55,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33875,9,5,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33876,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33877,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33878,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33879,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33880,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33881,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33882,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33883,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33884,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33885,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33886,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33887,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33888,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33889,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33890,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33891,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33892,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33893,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33894,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33895,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33896,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33897,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33898,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33899,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33900,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33901,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33902,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33903,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33904,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33905,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33906,4,3,5,9,70,0,0,0,-1,0,132615,10,0,50,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33907,4,3,5,6,70,0,0,0,-1,0,132509,10,0,50,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33908,4,3,5,8,70,0,0,0,-1,0,132587,10,0,70,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33909,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33910,4,4,6,9,70,0,0,0,-1,0,132618,11,0,55,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33911,4,4,6,8,70,0,0,0,-1,0,132585,11,0,75,0,0,0,0,0,0,1255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33912,4,1,7,6,70,0,0,0,-1,0,132506,7,0,35,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33913,4,1,7,9,70,0,0,0,-1,0,132606,7,0,35,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33914,4,1,7,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33915,4,2,8,6,70,0,0,0,-1,0,132506,7,0,40,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33916,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33917,4,2,8,9,70,0,0,0,-1,0,132606,7,0,40,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33918,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33919,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33920,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33921,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33922,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33923,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33924,0,5,0,0,0,0,0,0,0,0,133783,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33925,9,5,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33926,0,0,8,0,0,0,0,0,-1,0,133018,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33927,0,0,4,0,0,0,0,0,0,0,132623,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33928,0,0,2,0,0,0,0,0,-1,0,133718,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33929,0,0,3,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33930,0,8,2,0,0,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33931,0,8,2,0,0,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33932,0,8,2,0,0,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33933,0,8,2,0,0,0,0,0,-1,0,134232,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33934,0,1,0,0,55,0,0,0,-1,0,134788,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33935,0,1,3,0,55,0,0,0,-1,0,134791,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33936,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33937,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33938,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33939,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33940,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33941,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33942,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33943,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33944,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33945,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33946,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33947,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33948,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33949,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33950,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33951,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33952,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33953,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33954,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33955,12,0,7,0,0,0,0,0,-1,0,134328,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33956,0,0,2,0,0,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33957,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33958,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33959,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33963,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +33964,4,3,5,1,70,0,0,0,-1,0,133097,10,0,85,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33965,4,3,5,5,70,0,0,0,-1,0,132735,10,0,140,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33966,4,0,0,8,0,0,0,0,-1,0,132575,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33967,4,0,0,1,0,0,0,0,-1,0,133098,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33968,4,0,0,1,0,0,0,0,-1,0,133102,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33969,4,0,0,1,0,0,0,0,-1,0,133100,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33970,4,3,5,3,70,0,0,0,-1,0,135111,11,0,85,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33971,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33972,4,2,8,1,70,0,0,0,-1,0,133093,7,0,70,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33973,4,2,8,3,70,0,0,0,-1,0,135108,7,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33974,4,2,8,10,70,0,0,0,-1,0,132973,7,0,40,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33975,2,13,0,13,0,0,0,0,13,0,135601,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0,293,0,0,0,0 +33976,15,5,0,0,30,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33977,15,5,0,0,60,0,0,0,-1,0,132248,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33978,12,0,0,0,40,0,0,0,-1,0,132248,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33979,2,5,0,17,0,3,0,0,5,0,133062,8,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,165,0,0,0,0 +33980,2,0,0,13,0,3,0,0,0,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33981,2,0,0,13,0,3,0,0,0,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33982,2,0,0,13,0,1,0,0,0,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33983,2,10,0,17,0,2,0,0,10,0,133062,8,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,165,0,0,0,0 +33984,2,7,0,13,0,3,0,0,7,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33985,12,0,0,0,0,0,0,0,-1,0,133750,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33986,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33987,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33988,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33989,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33990,2,7,0,13,0,3,0,0,7,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33991,2,2,0,26,0,1,0,0,2,0,133062,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,107,0,0,0,0 +33992,2,7,0,13,0,3,0,0,7,0,133062,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +33993,15,0,0,0,0,0,0,0,-1,0,134506,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33994,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33995,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33996,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33997,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33998,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33999,15,5,0,0,70,0,0,0,-1,0,132265,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34000,4,0,0,1,0,0,0,0,-1,0,133566,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34001,4,0,0,1,0,0,0,0,-1,0,133569,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34002,4,0,0,1,0,0,0,0,-1,0,133567,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34003,4,0,0,1,0,0,0,0,-1,0,133568,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34004,4,0,0,1,0,0,0,0,-1,0,133569,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34005,4,0,0,1,0,0,0,0,-1,0,133566,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34006,4,0,0,1,0,0,0,0,-1,0,133567,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34007,4,0,0,1,0,0,0,0,-1,0,133568,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34008,4,0,0,1,0,0,0,0,-1,0,133023,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34009,2,4,1,21,70,3,0,0,4,0,133537,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,235,0,0,0,0 +34010,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34011,4,6,6,14,70,4,0,0,-1,0,134947,9,0,120,0,0,0,0,0,0,5930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34012,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34014,2,1,1,17,70,1,0,0,-1,0,132448,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,483,0,0,0,0 +34015,2,0,1,22,70,3,0,0,-1,0,132470,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,349,0,0,0,0 +34016,2,13,1,22,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,349,0,0,0,0 +34017,0,0,3,0,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34018,0,0,3,0,5,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34019,0,0,3,0,15,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34020,0,0,3,0,25,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34021,0,0,3,0,35,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34022,0,0,3,0,45,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34028,12,0,0,0,40,0,0,0,-1,0,132248,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34029,4,0,0,12,70,0,0,0,-1,0,133067,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34033,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34036,4,0,3,11,1,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34037,4,0,3,11,1,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34038,4,0,3,11,1,0,0,0,-1,0,133434,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34039,2,2,2,15,70,0,0,0,-1,0,135496,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,518,0,0,0,0 +34044,0,0,0,0,0,0,0,0,0,0,132387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34045,2,15,0,13,0,3,0,0,15,0,135699,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,138,0,0,0,0 +34046,0,0,0,0,0,0,0,0,0,0,132963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34047,0,0,0,0,0,0,0,0,0,0,132558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34048,0,0,0,0,0,0,0,0,0,0,135039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34049,4,0,4,12,70,0,0,0,-1,0,136035,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34050,4,0,4,12,70,0,0,0,-1,0,135919,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34059,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,468,0,0,0,0 +34060,7,3,0,0,70,0,0,0,-1,0,132240,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34061,7,3,0,0,70,0,0,0,-1,0,132241,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34062,0,5,0,0,65,0,0,0,-1,0,133953,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34063,0,0,0,0,15,0,0,0,-1,0,134005,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34064,0,0,0,0,25,0,0,0,-1,0,134009,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34065,0,0,0,0,5,0,0,0,-1,0,134050,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34066,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,468,0,0,0,0 +34067,1,0,8,18,0,0,0,0,-1,0,133645,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34068,0,0,0,0,0,0,0,0,0,0,133661,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34071,0,0,0,0,0,0,0,0,0,0,133661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34073,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34074,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34075,4,0,3,11,70,0,0,0,-1,0,133661,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34077,0,0,0,0,0,0,0,0,0,0,134144,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34085,4,1,7,20,0,0,0,0,-1,0,132641,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34086,4,1,8,8,0,0,0,0,-1,0,132557,7,0,16,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34087,4,1,7,20,0,0,0,0,-1,0,132640,7,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34089,12,0,0,0,0,0,0,0,0,0,133471,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34092,15,5,0,0,70,0,0,0,-1,0,132249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34094,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34095,4,0,5,11,70,0,0,0,-1,0,133368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34098,2,3,1,26,1,0,0,0,-1,0,135612,8,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34099,11,3,8,18,60,0,0,0,-1,0,133634,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34100,11,2,8,18,60,0,0,0,-1,0,134406,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34105,11,2,8,18,70,0,0,0,-1,0,134405,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34106,11,3,8,18,70,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34107,4,1,8,3,15,0,0,0,-1,0,135036,7,0,40,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34109,9,0,0,0,0,0,0,0,-1,0,133741,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34113,7,3,8,0,0,0,0,0,-1,0,133859,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34114,9,3,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34129,15,5,0,0,60,0,0,0,-1,0,132228,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34130,0,2,3,0,8,0,0,0,-1,0,134797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34140,4,0,2,23,0,7,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34141,12,0,0,0,0,0,0,0,0,0,132621,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34150,15,0,0,0,0,0,0,0,-1,0,133749,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34151,0,0,0,0,0,0,0,0,0,0,134175,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34152,0,0,0,0,0,0,0,0,0,0,134170,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34153,0,0,0,0,0,0,0,0,0,0,134162,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34154,0,0,0,0,0,0,0,0,0,0,134179,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34155,0,0,0,0,0,0,0,0,0,0,134177,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34156,0,0,0,0,0,0,0,0,0,0,133662,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34157,12,0,0,0,0,0,0,0,-1,0,134179,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34158,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34159,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34160,12,0,0,0,0,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34161,12,0,0,0,0,0,0,0,-1,0,132484,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34162,4,0,4,12,70,0,0,0,-1,0,132305,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34163,4,0,4,12,70,0,0,0,-1,0,132345,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34164,2,7,1,13,70,1,0,0,-1,0,135297,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +34165,2,15,1,13,70,3,0,0,-1,0,135709,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +34166,4,0,3,11,70,0,0,0,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34167,4,4,1,7,70,0,0,0,-1,0,134698,9,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34168,4,3,5,7,70,0,0,0,-1,0,134668,11,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34169,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34170,4,1,7,7,70,0,0,0,-1,0,134601,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34171,15,3,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34172,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34173,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34174,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34175,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34176,2,4,1,21,70,3,0,0,-1,0,133553,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +34177,4,0,3,2,70,0,0,0,-1,0,133334,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34178,4,0,4,2,70,0,0,0,-1,0,133338,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34179,4,0,3,23,70,0,0,0,-1,0,134557,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34180,4,4,1,7,70,0,0,0,-1,0,134700,11,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34181,4,1,7,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34182,2,10,2,17,70,2,0,0,-1,0,135209,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,539,0,0,0,0 +34183,2,6,1,17,70,1,0,0,-1,0,135583,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0,590,0,0,0,0 +34184,4,0,4,2,70,0,0,0,-1,0,133335,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34185,4,6,6,14,70,4,0,0,-1,0,134998,9,0,120,0,0,0,0,0,0,6459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34186,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34188,4,2,8,7,70,0,0,0,-1,0,134652,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34189,4,0,3,11,70,0,0,0,-1,0,133378,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34190,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34191,15,3,0,0,0,0,0,0,-1,0,135849,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34192,4,4,1,3,70,0,0,0,-1,0,135114,9,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34193,4,4,1,3,70,0,0,0,-1,0,135114,9,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34194,4,3,5,3,70,0,0,0,-1,0,135115,10,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34195,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34196,2,2,1,15,70,0,0,0,-1,0,135518,8,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,380,0,0,0,0 +34197,2,15,1,13,70,3,0,0,-1,0,135710,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,253,0,0,0,0 +34198,2,10,2,17,70,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,505,0,0,0,0 +34199,2,4,1,21,70,3,0,0,4,0,133551,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,253,0,0,0,0 +34200,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34201,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34202,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34203,2,13,1,22,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +34204,4,0,3,2,70,0,0,0,-1,0,133331,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34205,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34206,4,0,3,23,70,0,0,0,-1,0,134556,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34207,0,6,8,0,60,0,0,0,-1,0,133603,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34208,4,3,5,3,70,0,0,0,-1,0,135115,11,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34209,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34210,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34211,4,2,8,5,70,0,0,0,-1,0,132729,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34212,4,2,7,5,70,0,0,0,-1,0,132727,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34213,4,0,3,11,70,0,0,0,-1,0,133414,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34214,2,7,1,13,70,3,0,0,-1,0,135296,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +34215,4,4,1,5,70,0,0,0,-1,0,132754,9,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34216,4,4,1,5,70,0,0,0,-1,0,132752,9,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34218,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34220,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34221,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34227,4,0,1,11,29,0,0,0,-1,0,133408,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34228,4,3,5,5,70,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34229,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34230,4,0,3,11,70,0,0,0,-1,0,133410,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34231,4,6,6,14,70,4,0,0,-1,0,134997,9,0,120,0,0,0,0,0,0,6459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34232,4,1,7,20,70,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34233,4,1,7,20,70,0,0,0,-1,0,132673,7,0,100,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34234,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34240,4,4,1,10,70,0,0,0,-1,0,132954,9,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34241,4,1,7,16,70,0,0,0,-1,0,133776,7,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34242,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34243,4,4,0,1,70,0,0,0,-1,0,133127,10,0,100,0,0,0,0,0,0,1660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34244,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34245,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34246,12,0,0,0,0,0,0,0,-1,0,133018,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34247,2,8,1,17,70,1,0,0,-1,0,135298,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0,607,0,0,0,0 +34248,12,0,0,0,0,0,0,0,-1,0,133874,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34249,4,0,0,2,0,0,0,0,-1,0,134511,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34250,0,0,0,0,0,0,0,0,0,0,132383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34251,0,0,0,0,0,0,0,0,0,0,132384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34252,0,0,0,0,0,0,0,0,0,0,132303,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34253,12,0,0,0,0,0,0,0,-1,0,132386,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34254,12,0,0,0,0,0,0,0,0,0,134196,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34255,12,0,7,0,0,0,0,0,-1,0,134339,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34256,3,1,0,0,0,0,0,0,-1,0,134126,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34257,12,0,0,0,0,0,0,0,-1,0,134890,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34258,0,8,0,0,0,0,0,0,-1,0,135448,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34259,12,0,0,0,0,0,0,0,-1,0,134802,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34261,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34262,9,1,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34263,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34264,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34265,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34266,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34267,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34268,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34269,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34270,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34271,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34272,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34273,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34274,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34275,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34276,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34277,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34278,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34279,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34280,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34281,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34282,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34283,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34284,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34285,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34286,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34287,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34288,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34289,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34290,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34291,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34292,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34293,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34294,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34295,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34296,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34297,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34298,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34299,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34300,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34301,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34302,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34303,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34304,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34305,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34306,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34307,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34308,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34309,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34310,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34311,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34312,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34313,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34314,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34315,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34316,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34317,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34318,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34319,9,2,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34320,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34321,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34322,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34323,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34324,2,7,1,13,1,3,0,0,-1,0,135412,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34325,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34326,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34327,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34328,2,18,1,26,1,0,0,0,-1,0,135531,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34329,2,15,1,13,70,3,0,0,-1,0,135710,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,247,0,0,0,0 +34330,0,6,8,0,60,0,0,0,-1,0,133619,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34331,2,13,1,21,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0,357,0,0,0,0 +34332,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34333,4,3,5,1,70,0,0,0,-1,0,133068,11,0,85,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34334,2,2,1,15,70,0,0,0,-1,0,135519,8,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0,363,0,0,0,0 +34335,2,4,1,21,70,3,0,0,-1,0,133552,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,268,0,0,0,0 +34336,2,15,1,21,70,3,0,0,-1,0,135708,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,268,0,0,0,0 +34337,2,10,2,17,70,2,0,0,-1,0,135208,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,571,0,0,0,0 +34338,12,0,0,0,0,0,0,0,0,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34339,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34340,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34341,4,4,1,10,70,0,0,0,-1,0,132988,9,0,55,0,0,0,0,0,0,1277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34342,4,1,7,10,70,0,0,0,-1,0,132950,7,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34343,4,3,5,10,70,0,0,0,-1,0,132974,11,0,50,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34344,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34345,4,4,0,1,70,0,0,0,-1,0,133188,9,0,100,0,0,0,0,0,0,1660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34346,2,13,1,22,70,7,0,0,-1,0,135604,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +34347,2,19,2,26,70,0,0,0,-1,0,135488,12,0,75,0,5,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,387,0,0,0,0 +34348,2,19,2,26,70,0,0,0,-1,0,135487,12,0,75,0,1,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,387,0,0,0,0 +34349,2,16,1,25,70,0,0,0,-1,0,135431,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +34350,4,3,5,10,70,0,0,0,-1,0,132968,10,0,50,0,0,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34351,4,2,8,10,70,0,0,0,-1,0,132971,7,0,40,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34352,4,4,1,10,70,0,0,0,-1,0,132991,9,0,55,0,0,0,0,0,0,1217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34353,4,2,7,1,70,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34354,4,4,7,1,70,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34355,4,3,7,1,70,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34356,4,3,7,1,70,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34357,4,4,7,1,70,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34358,4,0,3,2,70,0,0,0,-1,0,133326,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34359,4,0,3,2,70,0,0,0,-1,0,133320,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34360,4,0,3,2,70,0,0,0,-1,0,133320,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34361,4,0,3,11,70,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34362,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34363,4,0,3,11,70,0,0,0,-1,0,133377,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34364,4,1,7,20,70,0,0,0,-1,0,132643,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34365,4,1,7,20,70,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34366,4,1,7,10,70,0,0,0,-1,0,132972,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34367,4,1,7,10,70,0,0,0,-1,0,132986,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34368,12,0,0,0,0,0,0,0,0,0,134139,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34369,4,2,8,5,70,0,0,0,-1,0,132737,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34370,4,2,8,10,70,0,0,0,-1,0,132962,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34371,4,2,7,5,70,0,0,0,-1,0,132716,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34372,4,2,8,10,70,0,0,0,-1,0,132958,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34373,4,3,5,5,70,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34374,4,3,5,10,70,0,0,0,-1,0,132982,11,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34375,4,3,5,5,70,0,0,0,-1,0,132734,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34376,4,3,5,10,70,0,0,0,-1,0,132984,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34377,4,4,1,5,70,0,0,0,-1,0,132746,9,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34378,4,4,1,10,70,0,0,0,-1,0,132985,9,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34379,4,4,1,5,70,0,0,0,-1,0,132737,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34380,4,4,1,10,70,0,0,0,-1,0,132954,9,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34381,4,4,1,7,70,0,0,0,-1,0,134697,9,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34382,4,4,1,7,70,0,0,0,-1,0,134695,9,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34383,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34384,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34385,4,2,8,7,70,0,0,0,-1,0,134648,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34386,4,1,7,7,70,0,0,0,-1,0,134608,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34388,4,4,6,3,70,0,0,0,-1,0,135114,11,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34389,4,4,1,3,70,0,0,0,-1,0,135114,9,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34390,4,3,5,3,70,0,0,0,-1,0,135115,11,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34391,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34392,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34393,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34394,4,4,1,5,70,0,0,0,-1,0,132754,9,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34395,4,4,1,5,70,0,0,0,-1,0,132752,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34396,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34397,4,2,8,5,70,0,0,0,-1,0,132731,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34398,4,2,7,5,70,0,0,0,-1,0,132729,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34399,4,1,7,20,70,0,0,0,-1,0,132666,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34400,4,4,1,1,70,0,0,0,-1,0,133076,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34401,4,4,1,1,70,0,0,0,-1,0,133127,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34402,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34403,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34404,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34405,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34406,4,1,7,10,70,0,0,0,-1,0,132950,7,0,35,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34407,4,2,8,10,70,0,0,0,-1,0,132974,7,0,40,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34408,4,2,8,10,70,0,0,0,-1,0,132974,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34409,4,3,5,10,70,0,0,0,-1,0,132975,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34410,0,0,0,0,65,0,0,0,-1,0,134055,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34411,0,5,3,0,65,0,0,0,-1,0,132810,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34412,0,0,3,0,35,0,0,0,-1,0,132809,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34413,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34414,12,0,0,0,0,0,0,0,-1,0,132619,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34415,4,6,1,14,0,4,0,0,-1,0,134961,9,0,100,0,0,0,0,0,0,1739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34416,4,1,7,10,0,0,0,0,-1,0,132952,7,0,30,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34417,4,2,8,10,0,0,0,0,-1,0,132943,7,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34418,2,19,2,26,0,0,0,0,-1,0,135470,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,114,0,0,0,0 +34419,2,16,1,25,0,0,0,0,-1,0,135424,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,90,0,0,0,0 +34420,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34421,4,3,5,8,0,0,0,0,-1,0,132535,10,0,60,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34422,4,4,6,8,0,0,0,0,-1,0,132583,11,0,65,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34423,4,0,0,12,0,0,0,0,-1,0,133442,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34424,4,0,0,12,0,0,0,0,-1,0,133443,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34425,15,3,0,0,0,0,0,0,-1,0,133000,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34426,15,0,4,0,1,0,0,0,-1,0,133202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34427,4,0,4,12,70,0,0,0,-1,0,133449,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34428,4,0,4,12,70,0,0,0,-1,0,133451,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34429,4,0,4,12,70,0,0,0,-1,0,133448,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34430,4,0,4,12,70,0,0,0,-1,0,133450,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34431,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34432,4,4,1,9,70,0,0,0,-1,0,132601,9,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34433,4,4,1,9,70,0,0,0,-1,0,132613,9,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34434,4,1,7,9,70,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34435,4,1,7,9,70,0,0,0,-1,0,132609,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34436,4,1,7,9,70,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34437,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34438,4,3,5,9,70,0,0,0,-1,0,132601,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34439,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34440,0,1,3,0,60,0,0,0,-1,0,134808,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34441,4,4,1,9,70,0,0,0,-1,0,132614,9,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34442,4,4,1,9,70,0,0,0,-1,0,132616,9,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34443,4,3,5,9,70,0,0,0,-1,0,132601,11,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34444,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34445,4,2,8,9,70,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34446,4,2,8,9,70,0,0,0,-1,0,132607,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34447,4,1,7,9,70,0,0,0,-1,0,132611,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34448,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34449,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34450,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34451,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34452,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34453,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34454,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34455,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34456,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34457,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34458,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34459,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34460,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34461,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34462,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34463,2,15,1,13,1,3,0,0,-1,0,135641,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34465,7,9,7,0,0,0,0,0,-1,0,134200,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34466,1,4,8,18,0,0,0,0,-1,0,133876,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34467,7,1,8,0,0,0,0,0,-1,0,133008,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34469,12,0,1,0,55,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34470,4,0,4,12,70,0,0,0,-1,0,134115,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34471,4,0,4,12,70,0,0,0,-1,0,134728,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34472,4,0,4,12,70,0,0,0,-1,0,134417,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34473,4,0,4,12,70,0,0,0,-1,0,134234,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34474,12,0,1,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34475,0,0,0,0,70,0,0,0,-1,0,135753,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34476,12,0,1,0,0,0,0,0,-1,0,132995,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34477,13,0,0,0,0,0,0,0,-1,0,134241,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34478,15,2,0,0,0,0,0,0,-1,0,132197,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34479,12,0,0,0,0,0,0,0,0,0,134572,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34480,15,0,0,0,0,0,0,0,-1,0,133695,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34481,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34482,1,7,8,18,0,0,0,0,-1,0,133653,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34483,12,0,0,0,0,0,0,0,-1,0,136116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34484,15,0,0,23,0,0,0,0,-1,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34485,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34486,15,0,0,23,0,0,0,0,-1,0,133921,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34487,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34488,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34489,12,0,0,0,70,0,0,0,-1,0,135805,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34490,1,7,8,18,0,0,0,0,-1,0,133654,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34491,9,1,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34492,15,2,0,0,0,0,0,0,-1,0,133883,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34493,15,2,0,0,0,0,0,0,-1,0,133838,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34494,15,0,0,0,0,0,0,0,0,0,134512,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34496,15,0,0,0,0,0,0,0,0,0,133735,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34497,15,0,0,0,0,0,0,0,0,0,134513,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34498,15,0,0,0,0,0,0,0,0,0,134509,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34499,15,0,0,0,0,0,0,0,0,0,134510,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34500,12,0,0,0,0,0,0,0,-1,0,132406,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34501,12,0,0,0,0,0,0,0,-1,0,134574,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34502,12,0,0,0,0,0,0,0,0,0,133749,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34503,15,0,0,0,0,0,0,0,0,0,132594,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34504,0,8,2,0,0,0,0,0,-1,0,132764,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34505,2,7,1,13,1,3,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +34506,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34507,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34508,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34509,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34510,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34511,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34512,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34513,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34514,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34515,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34516,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34517,2,4,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34518,15,0,0,0,0,0,0,0,-1,0,133784,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34519,15,0,0,0,0,0,0,0,-1,0,133786,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34520,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34521,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34522,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34523,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34524,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34525,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34526,2,0,1,13,1,3,0,0,-1,0,132392,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34527,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34528,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34529,2,2,2,15,70,0,0,0,-1,0,135508,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,336,0,0,0,0 +34530,2,3,1,26,70,0,0,0,-1,0,135623,12,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,336,0,0,0,0 +34531,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34532,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34533,12,0,3,0,0,0,0,0,0,0,132779,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34534,6,3,2,24,1,0,0,0,-1,0,132382,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +34535,15,2,0,0,0,0,0,0,-1,0,134155,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34536,2,5,2,13,1,3,0,0,-1,0,133483,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34537,0,2,3,0,70,0,0,0,-1,0,134734,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34538,0,8,0,0,70,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34539,0,8,0,0,70,0,0,0,-1,0,134723,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34540,2,10,2,17,70,2,0,0,-1,0,135190,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,322,0,0,0,0 +34541,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34542,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34543,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34544,15,0,0,0,0,0,0,0,0,0,136171,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34545,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34546,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34547,4,4,1,6,70,0,0,0,-1,0,132522,9,0,55,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34548,15,0,0,0,0,0,0,0,0,0,132595,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34549,4,3,5,6,70,0,0,0,-1,0,132503,11,0,50,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34550,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34551,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34552,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34553,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34554,4,2,8,6,70,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34555,4,2,8,6,70,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34556,4,2,8,6,70,0,0,0,-1,0,132513,7,0,40,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34557,4,1,7,6,70,0,0,0,-1,0,132496,7,0,35,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34558,4,2,5,6,70,0,0,0,-1,0,132515,7,0,40,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34559,4,4,1,8,70,0,0,0,-1,0,132551,9,0,75,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34560,4,4,1,8,70,0,0,0,-1,0,132551,9,0,75,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34561,4,4,1,8,70,0,0,0,-1,0,132551,9,0,75,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34562,4,1,7,8,70,0,0,0,-1,0,132565,7,0,50,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34563,4,1,7,8,70,0,0,0,-1,0,132564,7,0,50,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34564,4,1,7,8,70,0,0,0,-1,0,132574,7,0,50,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34565,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34566,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34567,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34568,4,4,1,8,70,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34569,4,4,1,8,70,0,0,0,-1,0,132587,9,0,75,0,0,0,0,0,0,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34570,4,3,5,8,70,0,0,0,-1,0,132551,10,0,70,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34571,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34572,4,2,8,8,70,0,0,0,-1,0,132542,7,0,60,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34573,4,2,8,8,70,0,0,0,-1,0,132592,7,0,60,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34574,4,1,7,8,70,0,0,0,-1,0,132573,7,0,50,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34575,4,2,8,8,70,0,0,0,-1,0,132559,7,0,60,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34576,4,0,4,12,70,0,0,0,-1,0,132345,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34577,4,0,4,12,70,0,0,0,-1,0,132305,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34578,4,0,4,12,70,0,0,0,-1,0,132344,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34579,4,0,4,12,70,0,0,0,-1,0,136035,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34580,4,0,4,12,70,0,0,0,-1,0,135919,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34581,6,2,2,24,70,0,0,0,-1,0,133577,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,47,0,0,0,0 +34582,6,3,2,24,70,0,0,0,-1,0,133582,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,47,0,0,0,0 +34583,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34584,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34585,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34586,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34587,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34588,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34589,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34590,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34591,4,6,1,14,1,4,0,0,-1,0,134955,9,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34592,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34593,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34594,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34595,0,0,0,0,0,0,0,0,-1,0,134144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34596,2,7,1,21,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34599,0,0,4,0,0,0,0,0,0,0,135432,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34601,4,4,1,3,70,0,0,0,-1,0,135058,9,0,100,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34602,4,2,8,9,70,0,0,0,-1,0,132601,7,0,40,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34603,2,16,1,25,70,0,0,0,-1,0,135425,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,189,0,0,0,0 +34604,2,15,1,21,70,3,0,0,-1,0,135689,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,205,0,0,0,0 +34605,4,4,1,5,70,0,0,0,-1,0,132637,9,0,165,0,0,0,0,0,0,1450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34606,2,15,1,13,70,3,0,0,-1,0,133456,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,148,0,0,0,0 +34607,4,1,7,3,70,0,0,0,-1,0,135056,7,0,60,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34608,2,10,2,17,70,2,0,0,-1,0,135183,24,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,438,0,0,0,0 +34609,2,7,1,13,70,1,0,0,-1,0,135374,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,180,0,0,0,0 +34610,4,1,7,20,70,0,0,0,-1,0,132659,7,0,100,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34611,2,4,1,21,70,3,0,0,-1,0,133511,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,228,0,0,0,0 +34612,4,4,1,8,70,0,0,0,-1,0,132548,9,0,75,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34613,4,2,8,3,70,0,0,0,-1,0,135038,7,0,70,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34614,4,3,5,5,70,0,0,0,-1,0,132628,11,0,140,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34615,4,4,1,5,70,0,0,0,-1,0,132737,9,0,165,0,0,0,0,0,0,1571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34616,2,0,1,13,70,3,0,0,-1,0,132449,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,312,0,0,0,0 +34622,2,16,1,25,70,0,0,0,-1,0,135660,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,193,0,0,0,0 +34625,4,0,3,11,70,0,0,0,-1,0,133384,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34626,7,3,0,12,0,0,0,0,-1,0,133015,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34627,3,2,0,0,0,0,0,0,-1,0,135259,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34646,0,1,0,0,0,0,0,0,0,0,135264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34664,7,11,0,0,0,0,0,0,-1,0,136030,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34665,2,15,1,13,70,3,0,0,-1,0,135650,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,168,0,0,0,0 +34666,2,7,1,13,70,3,0,0,-1,0,135401,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +34667,2,7,1,21,70,3,0,0,-1,0,135369,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +34670,2,4,1,21,70,3,0,0,-1,0,133515,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +34671,2,4,1,21,70,3,0,0,-1,0,133514,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +34672,2,7,1,13,0,3,0,0,-1,0,135411,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,121,0,0,0,0 +34673,2,1,1,17,70,1,0,0,-1,0,132436,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,414,0,0,0,0 +34674,2,18,2,26,70,0,0,0,-1,0,135543,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,207,0,0,0,0 +34675,4,6,1,14,70,4,0,0,-1,0,134993,9,0,120,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34676,4,6,1,14,70,4,0,0,-1,0,134951,9,0,120,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34677,4,0,3,2,70,0,0,0,-1,0,133299,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34678,4,0,3,2,70,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34679,4,0,3,2,70,0,0,0,-1,0,133329,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34680,4,0,3,2,70,0,0,0,-1,0,133330,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34683,4,0,7,8,0,0,0,0,-1,0,132577,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34684,15,3,0,0,0,0,0,0,-1,0,133208,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34685,4,0,7,20,0,0,0,0,-1,0,132713,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34686,0,0,0,0,0,0,0,0,0,0,133886,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34689,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34697,4,1,7,9,70,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34698,4,3,5,9,70,0,0,0,-1,0,132615,10,0,40,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34699,2,0,1,13,70,3,0,0,-1,0,132393,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +34700,4,4,1,10,70,0,0,0,-1,0,132960,9,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34701,4,2,8,7,70,0,0,0,-1,0,134586,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34702,4,1,7,16,70,0,0,0,-1,0,133771,7,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34703,2,7,1,13,70,3,0,0,-1,0,135386,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,243,0,0,0,0 +34704,4,0,5,11,70,0,0,0,-1,0,133397,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34705,4,1,7,9,70,0,0,0,-1,0,132612,7,0,30,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34706,4,0,3,11,70,0,0,0,-1,0,133396,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34707,4,2,8,8,70,0,0,0,-1,0,132539,7,0,50,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34708,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34712,4,0,0,11,70,0,2156,0,-1,0,133347,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34776,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34780,0,5,2,0,65,0,0,0,-1,0,134051,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34783,2,16,1,25,70,0,0,0,-1,0,135650,8,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,171,0,0,0,0 +34788,4,1,7,3,70,0,0,0,-1,0,135055,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34789,4,4,6,9,70,0,0,0,-1,0,132614,8,0,45,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34790,2,4,1,21,70,3,0,0,-1,0,133514,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +34791,4,3,5,10,70,0,0,0,-1,0,132946,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34792,4,1,7,16,70,0,0,0,-1,0,133770,7,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34793,4,1,6,6,70,0,0,0,-1,0,132496,7,0,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34794,2,1,1,17,70,1,0,0,-1,0,132456,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0,426,0,0,0,0 +34795,4,4,6,1,70,0,0,0,-1,0,133071,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34796,4,2,8,20,70,0,0,0,-1,0,132648,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34797,2,10,2,17,70,2,0,0,-1,0,135176,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,269,0,0,0,0 +34798,4,0,5,11,70,0,0,0,-1,0,133358,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34799,4,3,5,5,70,0,0,0,-1,0,132639,11,0,140,0,0,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34805,4,0,5,11,70,0,0,0,-1,0,133368,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34807,4,4,6,8,70,0,0,0,-1,0,132582,11,0,75,0,0,0,0,0,0,955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34808,4,1,7,10,70,0,0,0,-1,0,132953,7,0,35,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34809,4,2,8,8,70,0,0,0,-1,0,132541,7,0,60,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34810,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34822,15,0,0,0,0,0,0,0,0,0,133794,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34823,15,0,0,0,0,0,0,0,0,0,133884,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34824,15,0,0,0,0,0,0,0,0,0,134906,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34825,15,0,0,0,0,0,0,0,0,0,135649,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34826,4,0,5,11,0,0,0,0,-1,0,133345,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34827,4,0,3,1,0,0,0,0,-1,0,133146,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34828,4,0,0,9,0,0,0,0,0,0,133409,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34829,4,0,0,23,0,7,0,0,-1,0,132790,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34831,3,1,4,0,0,0,0,0,-1,0,133267,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34832,0,5,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34833,12,0,0,0,0,0,0,0,0,0,135437,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34834,9,5,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34835,0,8,0,0,0,0,0,0,0,0,132783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34836,0,6,8,0,0,0,0,0,-1,0,134479,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34837,4,0,5,11,70,1,0,0,-1,0,133376,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34838,15,0,0,0,0,1,0,0,-1,0,133743,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34839,15,0,2,0,0,0,0,0,-1,0,133723,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34840,15,0,3,0,0,0,0,0,-1,0,134441,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34841,15,0,2,0,0,0,0,0,-1,0,134070,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34843,15,0,2,0,0,0,0,0,-1,0,133725,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34845,1,0,8,18,0,0,0,0,-1,0,133666,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34846,15,0,3,0,0,0,0,0,-1,0,133640,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34847,4,1,7,1,70,0,0,0,-1,0,133023,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34848,15,0,0,0,70,0,0,0,-1,0,132615,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34850,0,0,0,0,0,0,0,0,0,0,135266,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34851,15,0,0,0,70,0,0,0,-1,0,132616,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34852,15,0,0,0,70,0,0,0,-1,0,132614,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34853,15,0,0,0,70,0,0,0,-1,0,132520,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34854,15,0,0,0,70,0,0,0,-1,0,132522,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34855,15,0,0,0,70,0,0,0,-1,0,132516,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34856,15,0,0,0,70,0,0,0,-1,0,132587,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34857,15,0,0,0,70,0,0,0,-1,0,132585,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34858,15,0,0,0,70,0,0,0,-1,0,132588,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34859,2,15,1,13,70,3,0,0,-1,0,135650,8,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,102,0,0,0,0 +34860,15,0,1,0,0,0,0,0,-1,0,132997,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34861,0,8,0,0,0,0,0,0,-1,0,134226,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34862,12,0,1,0,0,0,0,0,3,0,135432,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34863,15,0,3,0,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34864,12,0,0,0,0,0,0,0,-1,0,132187,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34865,12,0,0,0,0,0,0,0,-1,0,133929,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34866,12,0,0,0,0,0,0,0,-1,0,133901,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34867,12,0,0,0,0,0,0,0,-1,0,133930,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34868,12,0,0,0,0,0,0,0,-1,0,133931,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34872,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34873,2,2,2,15,1,0,0,0,-1,0,135493,12,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0 +34874,2,6,1,17,1,1,0,94,-1,0,135646,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +34875,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +34876,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34877,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34878,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34879,2,7,1,13,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34880,2,7,1,13,1,1,0,0,-1,0,135271,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +34881,2,14,1,13,1,0,0,0,-1,0,135473,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34882,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34883,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34884,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34885,2,4,2,21,1,3,0,0,-1,0,133486,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +34886,2,7,1,13,1,1,0,0,-1,0,135271,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0 +34887,4,0,3,11,70,0,0,0,-1,0,133421,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34888,4,0,3,11,70,0,0,0,-1,0,133409,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34889,4,0,3,11,70,0,0,0,-1,0,133410,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34890,4,0,3,11,70,0,0,0,-1,0,133396,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34891,2,1,1,17,70,1,0,0,-1,0,132395,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0,563,0,0,0,0 +34892,2,18,2,26,70,0,0,0,-1,0,135555,8,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,339,0,0,0,0 +34893,2,13,1,21,70,7,0,0,-1,0,135607,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,335,0,0,0,0 +34894,2,15,1,13,70,3,0,0,-1,0,135713,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,241,0,0,0,0 +34895,2,15,1,21,70,3,0,0,-1,0,135713,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,241,0,0,0,0 +34896,2,4,1,21,70,3,0,0,-1,0,133562,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,215,0,0,0,0 +34898,2,10,2,17,70,2,0,0,-1,0,135149,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,483,0,0,0,0 +34900,4,2,8,5,70,0,0,0,-1,0,132647,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34901,4,2,8,7,70,0,0,0,-1,0,134642,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34902,4,2,8,10,70,0,0,0,-1,0,132941,7,0,40,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34903,4,2,8,5,70,0,0,0,-1,0,132648,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34904,4,2,8,10,70,0,0,0,-1,0,132973,7,0,40,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34905,4,2,8,7,70,0,0,0,-1,0,134641,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34906,4,2,8,5,70,0,0,0,-1,0,132646,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34907,15,0,2,0,0,0,0,0,-1,0,134138,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34910,4,2,8,7,70,0,0,0,-1,0,134585,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34911,4,2,8,10,70,0,0,0,-1,0,132942,7,0,40,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34912,4,3,5,5,70,0,0,0,-1,0,132639,10,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34914,4,3,5,7,70,0,0,0,-1,0,134657,11,0,105,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34916,4,3,5,10,70,0,0,0,-1,0,132959,11,0,50,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34917,4,1,7,20,70,0,0,0,-1,0,132692,7,0,100,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34918,4,1,7,7,70,0,0,0,-1,0,134611,7,0,75,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34919,4,1,7,8,70,0,0,0,-1,0,132562,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34921,4,4,1,5,70,0,0,0,-1,0,132738,11,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34922,4,4,1,7,70,0,0,0,-1,0,134695,9,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34923,4,4,1,6,70,0,0,0,-1,0,132517,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34924,4,1,7,20,70,0,0,0,-1,0,132651,7,0,100,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34925,4,1,7,7,70,0,0,0,-1,0,134609,7,0,75,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34926,4,1,7,8,70,0,0,0,-1,0,132560,7,0,50,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34927,4,2,8,5,70,0,0,0,-1,0,132737,7,0,120,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34928,4,2,8,7,70,0,0,0,-1,0,134628,7,0,90,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34929,4,2,5,6,70,0,0,0,-1,0,132492,7,0,40,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34930,4,3,5,5,70,0,0,0,-1,0,132633,10,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34931,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34932,4,3,5,6,70,0,0,0,-1,0,132511,10,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34933,4,3,5,5,70,0,0,0,-1,0,132633,11,0,140,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34934,4,3,5,7,70,0,0,0,-1,0,134667,10,0,105,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34935,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34936,4,1,7,20,70,0,0,0,-1,0,132684,7,0,100,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34937,4,1,7,7,70,0,0,0,-1,0,134609,7,0,75,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34938,4,1,7,10,70,0,0,0,-1,0,132949,7,0,35,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34939,4,4,1,5,70,0,0,0,-1,0,132748,9,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34940,4,4,1,7,70,0,0,0,-1,0,134697,9,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34941,4,4,1,6,70,0,0,0,-1,0,132516,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34942,4,4,1,5,70,0,0,0,-1,0,132741,9,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34943,4,4,1,7,70,0,0,0,-1,0,134697,11,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34944,4,4,1,6,70,0,0,0,-1,0,132502,9,0,55,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34945,4,4,1,5,70,0,0,0,-1,0,132751,9,0,165,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34946,4,4,1,7,70,0,0,0,-1,0,134695,9,0,120,0,0,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34947,4,4,1,8,70,0,0,0,-1,0,132585,9,0,75,0,0,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34949,2,15,1,22,70,3,0,0,-1,0,135713,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +34950,2,13,1,22,70,7,0,0,-1,0,135607,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,201,0,0,0,0 +34951,2,13,1,22,70,7,0,0,-1,0,135607,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,335,0,0,0,0 +34952,2,15,1,22,70,3,0,0,-1,0,135713,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,241,0,0,0,0 +34953,12,0,0,0,0,0,0,0,0,0,135866,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34955,15,0,0,0,0,0,0,0,-1,0,134575,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34985,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0,490,0,0,0,0 +34986,4,6,1,14,70,4,0,0,-1,0,134999,9,0,120,0,0,0,0,0,0,6662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34987,2,10,2,17,70,2,0,0,-1,0,135209,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +34988,2,4,1,22,70,3,0,0,-1,0,133554,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +34989,2,5,1,17,70,1,0,0,-1,0,133529,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0,606,0,0,0,0 +34990,4,3,5,5,70,0,0,0,-1,0,132629,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34991,4,3,5,10,70,0,0,0,-1,0,132988,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34992,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34993,4,3,5,7,70,0,0,0,-1,0,134672,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34994,4,3,5,3,70,0,0,0,-1,0,135115,10,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34995,2,0,1,22,70,3,0,0,-1,0,132412,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +34996,2,0,1,13,70,3,0,0,-1,0,132412,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +34997,2,1,1,17,70,1,0,0,-1,0,132460,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0,606,0,0,0,0 +34998,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34999,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35000,4,2,8,7,70,0,0,0,-1,0,134632,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35001,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35002,4,2,8,5,70,0,0,0,-1,0,132646,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35003,4,1,7,10,70,0,0,0,-1,0,132972,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35004,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35005,4,1,7,7,70,0,0,0,-1,0,134616,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35006,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35007,4,1,7,20,70,0,0,0,-1,0,132702,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35008,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35009,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35010,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35011,4,1,7,10,70,0,0,0,-1,0,132972,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35012,4,1,7,20,70,0,0,0,-1,0,132702,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35013,4,1,7,7,70,0,0,0,-1,0,134616,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35014,2,4,1,21,70,3,0,0,-1,0,133553,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +35015,2,8,1,17,70,1,0,0,-1,0,135298,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0,606,0,0,0,0 +35016,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35017,2,0,1,22,70,3,0,0,-1,0,132412,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +35018,2,18,2,26,70,0,0,0,-1,0,135555,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,351,0,0,0,0 +35019,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35020,4,8,2,28,70,0,0,0,-1,0,134913,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35021,4,8,2,28,70,0,0,0,-1,0,136065,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35022,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35023,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35024,4,2,8,7,70,0,0,0,-1,0,134632,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35025,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35026,4,2,8,5,70,0,0,0,-1,0,132646,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35027,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35028,4,4,6,10,70,0,0,0,-1,0,132975,11,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35029,4,4,6,1,70,0,0,0,-1,0,133109,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35030,4,4,6,7,70,0,0,0,-1,0,134705,11,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35031,4,4,6,3,70,0,0,0,-1,0,135114,11,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35032,4,2,8,10,70,0,0,0,-1,0,132951,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35033,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35034,4,2,8,7,70,0,0,0,-1,0,134637,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35035,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35036,4,2,8,5,70,0,0,0,-1,0,132718,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35037,2,13,1,22,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +35038,2,13,1,22,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +35039,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35040,4,7,2,28,70,0,0,0,-1,0,133739,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35041,4,7,2,28,70,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35042,4,3,5,20,70,0,0,0,-1,0,132638,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35043,4,3,5,10,70,0,0,0,-1,0,132988,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35044,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35045,4,3,5,7,70,0,0,0,-1,0,134672,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35046,4,3,5,3,70,0,0,0,-1,0,135115,10,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35047,2,2,2,15,70,0,0,0,-1,0,135511,12,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,351,0,0,0,0 +35048,4,3,5,20,70,0,0,0,-1,0,132638,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35049,4,3,5,10,70,0,0,0,-1,0,132988,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35050,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35051,4,3,5,7,70,0,0,0,-1,0,134672,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35052,4,3,5,3,70,0,0,0,-1,0,135115,10,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35053,4,1,7,10,70,0,0,0,-1,0,132987,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35054,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35055,4,1,7,7,70,0,0,0,-1,0,134622,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35056,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35057,4,1,7,20,70,0,0,0,-1,0,132701,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35058,2,15,1,22,70,3,0,0,-1,0,135710,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,253,0,0,0,0 +35059,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35060,4,4,6,10,70,0,0,0,-1,0,132975,11,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35061,4,4,6,1,70,0,0,0,-1,0,133109,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35062,4,4,6,7,70,0,0,0,-1,0,134705,11,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35063,4,4,6,3,70,0,0,0,-1,0,135114,11,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35064,2,6,1,17,70,1,0,0,-1,0,135583,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0,371,0,0,0,0 +35065,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0,490,0,0,0,0 +35066,4,4,6,5,70,0,0,0,-1,0,132757,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35067,4,4,6,10,70,0,0,0,-1,0,132985,11,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35068,4,4,6,1,70,0,0,0,-1,0,133109,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35069,4,4,6,7,70,0,0,0,-1,0,134703,11,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35070,4,4,6,3,70,0,0,0,-1,0,135114,11,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35071,2,4,1,13,70,3,0,0,-1,0,133554,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +35072,2,7,1,22,70,3,0,0,-1,0,135296,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,211,0,0,0,0 +35073,4,6,1,14,70,4,0,0,-1,0,134997,9,0,120,0,0,0,0,0,0,6662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35074,4,0,3,23,70,7,0,0,-1,0,133738,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35075,2,3,1,26,70,0,0,0,-1,0,135629,8,0,90,3,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,351,0,0,0,0 +35076,2,13,1,21,70,7,0,0,-1,0,135606,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +35077,4,3,5,20,70,0,0,0,-1,0,132638,10,0,140,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35078,4,3,5,10,70,0,0,0,-1,0,132988,10,0,50,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35079,4,3,5,1,70,0,0,0,-1,0,133068,10,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35080,4,3,5,7,70,0,0,0,-1,0,134672,10,0,105,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35081,4,3,5,3,70,0,0,0,-1,0,135115,10,0,85,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35082,2,4,1,21,70,3,0,0,-1,0,133551,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +35083,4,1,7,10,70,0,0,0,-1,0,132987,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35084,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35085,4,1,7,7,70,0,0,0,-1,0,134622,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35086,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35087,4,1,7,20,70,0,0,0,-1,0,132701,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35088,4,4,6,5,70,0,0,0,-1,0,132756,11,0,165,0,0,0,0,0,0,1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35089,4,4,6,10,70,0,0,0,-1,0,132975,11,0,55,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35090,4,4,6,1,70,0,0,0,-1,0,133109,11,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35091,4,4,6,7,70,0,0,0,-1,0,134705,11,0,120,0,0,0,0,0,0,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35092,4,4,6,3,70,0,0,0,-1,0,135114,11,0,100,0,0,0,0,0,0,1487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35093,2,15,1,13,70,3,0,0,-1,0,135710,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,233,0,0,0,0 +35094,4,6,1,14,70,4,0,0,-1,0,134998,9,0,120,0,0,0,0,0,0,6662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35095,2,15,1,22,70,3,0,0,-1,0,135710,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,197,0,0,0,0 +35096,4,1,7,3,70,0,0,0,-1,0,135121,7,0,60,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35097,4,1,7,1,70,0,0,0,-1,0,133114,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35098,4,1,7,10,70,0,0,0,-1,0,132970,7,0,35,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35099,4,1,7,20,70,0,0,0,-1,0,132703,7,0,100,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35100,4,1,7,7,70,0,0,0,-1,0,134621,7,0,75,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35101,2,7,1,13,70,3,0,0,-1,0,135296,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +35102,2,15,1,21,70,3,0,0,-1,0,135708,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +35103,2,10,1,17,70,2,0,0,-1,0,135196,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +35104,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35105,4,9,2,28,70,0,0,0,-1,0,136092,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35106,4,9,2,28,70,0,0,0,-1,0,135861,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35107,2,19,2,26,70,0,0,0,-1,0,135471,21,0,75,0,2,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0,490,0,0,0,0 +35108,2,16,1,25,70,0,0,0,-1,0,132394,8,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,222,0,0,0,0 +35109,2,10,2,17,70,2,0,0,-1,0,135209,13,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,337,0,0,0,0 +35110,2,0,1,21,70,1,0,0,-1,0,132412,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +35111,4,2,8,10,70,0,0,0,-1,0,132959,7,0,40,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35112,4,2,8,1,70,0,0,0,-1,0,133108,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35113,4,2,8,7,70,0,0,0,-1,0,134632,7,0,90,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35114,4,2,8,3,70,0,0,0,-1,0,135113,7,0,70,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35115,4,2,8,5,70,0,0,0,-1,0,132646,7,0,120,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35117,2,7,1,13,1,3,0,0,-1,0,135271,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35128,7,7,0,0,0,0,0,0,0,0,133235,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35129,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35130,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35131,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35132,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35133,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35134,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35135,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35136,4,3,5,8,70,0,0,0,-1,0,132590,10,0,70,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35137,4,2,8,8,70,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35138,4,1,7,8,70,0,0,0,-1,0,132569,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35139,4,2,8,8,70,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35140,4,4,6,8,70,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,1363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35141,4,2,8,8,70,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35142,4,3,5,8,70,0,0,0,-1,0,132590,10,0,70,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35143,4,3,5,8,70,0,0,0,-1,0,132590,10,0,70,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35144,4,1,7,8,70,0,0,0,-1,0,132569,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35145,4,4,6,8,70,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,1363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35146,4,4,6,8,70,0,0,0,-1,0,132582,11,0,75,0,0,0,0,0,0,1363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35147,4,3,5,8,70,0,0,0,-1,0,132590,10,0,70,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35148,4,4,6,8,70,0,0,0,-1,0,132589,11,0,75,0,0,0,0,0,0,1363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35149,4,1,7,8,70,0,0,0,-1,0,132569,7,0,50,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35150,4,2,8,8,70,0,0,0,-1,0,132562,7,0,60,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35151,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35152,4,2,8,6,70,0,0,0,-1,0,132501,7,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35153,4,1,7,6,70,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35154,4,2,8,6,70,0,0,0,-1,0,132501,7,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35155,4,4,6,6,70,0,0,0,-1,0,132501,11,0,55,0,0,0,0,0,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35156,4,2,8,6,70,0,0,0,-1,0,132501,7,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35157,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35158,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35159,4,1,7,6,70,0,0,0,-1,0,132502,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35160,4,4,6,6,70,0,0,0,-1,0,132501,11,0,55,0,0,0,0,0,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35161,4,4,6,6,70,0,0,0,-1,0,132503,11,0,55,0,0,0,0,0,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35162,4,3,5,6,70,0,0,0,-1,0,132502,10,0,50,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35163,4,4,6,6,70,0,0,0,-1,0,132501,11,0,55,0,0,0,0,0,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35164,4,1,7,6,70,0,0,0,-1,0,132501,7,0,35,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35165,4,2,8,6,70,0,0,0,-1,0,132501,7,0,40,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35166,4,3,5,9,70,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35167,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35168,4,1,7,9,70,0,0,0,-1,0,132601,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35169,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35170,4,4,6,9,70,0,0,0,-1,0,132616,11,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35171,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35172,4,3,5,9,70,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35173,4,3,5,9,70,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35174,4,1,7,9,70,0,0,0,-1,0,132601,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35175,4,4,6,9,70,0,0,0,-1,0,132616,11,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35176,4,4,6,9,70,0,0,0,-1,0,132616,11,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35177,4,3,5,9,70,0,0,0,-1,0,132617,10,0,50,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35178,4,4,6,9,70,0,0,0,-1,0,132616,11,0,55,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35179,4,1,7,9,70,0,0,0,-1,0,132613,7,0,35,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35180,4,2,8,9,70,0,0,0,-1,0,132608,7,0,40,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35181,4,1,7,1,70,0,0,0,-1,0,133023,7,0,60,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35182,4,2,7,1,70,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35183,4,2,7,1,70,0,0,0,-1,0,133023,7,0,70,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35184,4,3,7,1,70,0,0,0,-1,0,133023,7,0,85,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35185,4,4,7,1,70,0,0,0,-1,0,133023,7,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35186,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35187,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35189,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35190,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35191,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35192,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35193,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35194,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35195,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35196,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35197,9,3,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35198,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35199,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35200,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35201,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35202,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35203,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35204,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35205,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35206,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35207,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35208,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35209,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35210,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35211,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35212,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35213,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35214,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35215,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35216,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35217,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35218,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35219,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35220,2,10,2,17,1,2,0,0,-1,0,135209,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35221,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35223,0,0,0,0,0,0,0,0,0,0,134372,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35225,15,5,2,0,70,0,0,0,-1,0,132263,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35226,15,5,2,0,70,0,0,0,-1,0,132262,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35227,15,2,0,0,0,0,0,0,-1,0,134519,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35229,12,0,0,0,0,0,0,0,0,0,133850,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35230,12,0,0,0,0,0,0,0,-1,0,134938,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35231,12,0,0,0,0,0,0,0,0,0,134940,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35232,0,0,0,0,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35233,12,0,0,1,0,0,0,0,0,0,133023,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35236,2,8,1,17,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0 +35237,12,0,0,0,0,0,0,0,-1,0,134126,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35238,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35239,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35240,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35241,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35242,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35243,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35244,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35245,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35246,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35247,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35248,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35249,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35250,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35251,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35252,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35253,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35254,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35255,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35256,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35257,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35258,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35259,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35260,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35261,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35262,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35263,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35264,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35265,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35266,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35267,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35268,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35269,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35270,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35271,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35273,9,0,0,0,0,0,0,0,-1,0,133740,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35275,4,0,3,0,70,0,0,0,-1,0,134334,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35277,12,0,0,0,0,0,0,0,-1,0,133473,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35279,4,0,7,19,0,0,0,0,-1,0,134477,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35280,4,0,7,19,0,0,0,0,-1,0,134476,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35282,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35283,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35284,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35285,7,8,0,0,55,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35286,15,4,0,0,0,0,0,0,-1,0,133889,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35287,0,8,0,0,55,0,0,0,-1,0,133896,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35290,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35291,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35292,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35294,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35295,9,6,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35296,9,4,0,0,0,0,0,0,-1,0,134942,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35297,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35298,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35299,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35300,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35301,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35302,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35303,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35304,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35305,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35306,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35307,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35308,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35309,9,2,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35310,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35311,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35313,12,0,0,0,0,0,0,0,-1,0,133923,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35314,15,0,0,0,0,0,0,0,-1,0,134186,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35315,3,2,0,0,0,0,0,0,-1,0,133242,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35316,3,5,0,0,0,0,0,0,-1,0,133259,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35317,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35318,3,4,0,0,0,0,0,0,-1,0,133272,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35319,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35320,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35321,4,1,7,16,70,0,0,0,-1,0,133772,7,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35322,9,10,4,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35323,9,10,4,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35324,4,1,7,16,70,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35325,9,10,4,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35326,4,0,4,12,70,0,0,0,-1,0,135734,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35327,4,0,4,12,70,0,0,0,-1,0,135734,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35328,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35329,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35330,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35331,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35332,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35333,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35334,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35335,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35336,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35337,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35338,4,1,7,10,70,0,0,0,-1,0,132949,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35339,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35340,4,1,7,7,70,0,0,0,-1,0,134599,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35341,4,1,7,3,70,0,0,0,-1,0,135033,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35342,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35343,4,1,7,3,70,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35344,4,1,7,1,70,0,0,0,-1,0,133076,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35345,4,1,7,10,70,0,0,0,-1,0,132953,7,0,30,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35346,4,1,7,20,70,0,0,0,-1,0,132716,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35347,4,1,7,7,70,0,0,0,-1,0,134587,7,0,65,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35348,15,0,3,0,0,0,0,0,-1,0,133642,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35349,15,2,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35350,15,2,0,0,0,0,0,0,-1,0,132806,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35356,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35357,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35358,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35359,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35360,4,2,8,20,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35361,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35362,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35363,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35364,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35365,4,2,8,20,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35366,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35367,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35368,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35369,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35370,4,2,8,5,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35371,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35372,4,2,8,1,70,0,0,0,-1,0,133132,7,0,60,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35373,4,2,8,7,70,0,0,0,-1,0,134599,7,0,75,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35374,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35375,4,2,8,20,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35376,4,3,5,20,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35377,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35378,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35379,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35380,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35381,4,3,5,20,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35382,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35383,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35384,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35385,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35386,4,3,5,20,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35387,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35388,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35389,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35390,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35391,4,3,5,20,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35392,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35393,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35394,4,3,5,7,70,0,0,0,-1,0,134667,10,0,90,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35395,4,3,5,3,70,0,0,0,-1,0,135060,10,0,70,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35396,0,8,8,0,0,0,0,0,-1,0,135149,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35397,0,8,8,0,0,0,0,0,-1,0,132392,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35398,0,8,8,0,0,0,0,0,-1,0,132536,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35399,0,8,8,0,0,0,0,0,-1,0,132567,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35400,0,8,8,0,0,0,0,0,-1,0,132539,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35402,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35403,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35404,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35405,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35406,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35407,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35408,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35409,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35410,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35411,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35412,4,4,6,5,70,0,0,0,-1,0,132740,11,0,135,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35413,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35414,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35415,4,4,6,7,70,0,0,0,-1,0,134693,11,0,100,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35416,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35417,0,8,8,0,0,0,0,0,-1,0,132542,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35418,0,8,8,0,0,0,0,0,-1,0,132545,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35419,0,8,8,0,0,0,0,0,-1,0,132586,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35420,0,8,8,0,0,0,0,0,-1,0,132607,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35421,0,8,8,0,0,0,0,0,-1,0,132614,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35422,0,8,8,0,0,0,0,0,-1,0,132616,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35423,0,8,8,0,0,0,0,0,-1,0,132608,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35424,0,8,8,0,0,0,0,0,-1,0,132612,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35425,0,8,8,0,0,0,0,0,-1,0,132611,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35426,0,8,8,0,0,0,0,0,-1,0,132604,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35427,0,8,8,0,0,0,0,0,-1,0,132605,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35428,0,8,8,0,0,0,0,0,-1,0,132719,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35429,0,8,8,0,0,0,0,0,-1,0,132626,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35430,0,8,8,0,0,0,0,0,-1,0,132738,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35431,0,8,8,0,0,0,0,0,-1,0,132670,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35432,0,8,8,0,0,0,0,0,-1,0,133770,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35433,0,8,8,0,0,0,0,0,-1,0,133757,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35434,0,8,8,0,0,0,0,0,-1,0,133754,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35435,0,8,8,0,0,0,0,0,-1,0,133775,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35436,0,8,8,0,0,0,0,0,-1,0,133766,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35437,0,8,8,0,0,0,0,0,-1,0,133764,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35438,0,8,8,0,0,0,0,0,-1,0,132965,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35439,0,8,8,0,0,0,0,0,-1,0,132937,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35440,0,8,8,0,0,0,0,0,-1,0,132940,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35441,0,8,8,0,0,0,0,0,-1,0,132943,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35442,0,8,8,0,0,0,0,0,-1,0,132960,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35443,0,8,8,0,0,0,0,0,-1,0,132953,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35444,0,8,8,0,0,0,0,0,-1,0,133352,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35445,0,8,8,0,0,0,0,0,-1,0,133351,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35446,0,8,8,0,0,0,0,0,-1,0,133347,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35447,0,8,8,0,0,0,0,0,-1,0,133346,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35448,0,8,8,0,0,0,0,0,-1,0,134975,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35449,0,8,8,0,0,0,0,0,-1,0,134966,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35450,0,8,8,0,0,0,0,0,-1,0,134976,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35451,0,8,8,0,0,0,0,0,-1,0,134977,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35452,0,8,8,0,0,0,0,0,-1,0,135328,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35453,0,8,8,0,0,0,0,0,-1,0,135642,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35454,0,8,8,0,0,0,0,0,-1,0,135148,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35455,0,8,8,0,0,0,0,0,-1,0,135147,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35456,0,8,8,0,0,0,0,0,-1,0,135156,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35457,0,8,8,0,0,0,0,0,-1,0,133051,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35458,0,8,8,0,0,0,0,0,-1,0,135291,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35459,0,8,8,0,0,0,0,0,-1,0,133041,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35460,0,8,8,0,0,0,0,0,-1,0,135152,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35461,0,8,8,0,0,0,0,0,-1,0,135155,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35462,0,8,8,0,0,0,0,0,-1,0,135140,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35463,2,0,1,13,1,1,0,0,-1,0,132395,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35464,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35465,4,1,7,3,70,0,0,0,-1,0,135050,7,0,50,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35466,4,1,7,1,70,0,0,0,-1,0,133132,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35467,4,1,7,20,70,0,0,0,-1,0,132684,7,0,80,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35468,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35469,4,2,8,20,70,0,0,0,-1,0,132718,7,0,100,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35470,4,2,8,3,70,0,0,0,-1,0,135043,7,0,60,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35471,4,2,8,10,70,0,0,0,-1,0,132962,7,0,35,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35472,4,3,5,20,70,0,0,0,-1,0,132633,10,0,120,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35473,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35474,4,3,5,1,70,0,0,0,-1,0,133077,10,0,70,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35475,4,3,5,10,70,0,0,0,-1,0,132945,10,0,40,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35476,4,4,6,3,70,0,0,0,-1,0,135053,11,0,80,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35477,4,4,6,10,70,0,0,0,-1,0,132963,11,0,45,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35478,4,4,6,1,70,0,0,0,-1,0,133124,11,0,80,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35485,4,0,8,12,0,0,0,0,-1,0,133032,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35487,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35488,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35489,3,0,0,0,0,0,0,0,-1,0,133239,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35494,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35495,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35496,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35497,4,1,7,16,70,0,0,0,-1,0,133768,7,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35498,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35499,7,2,6,0,0,0,0,0,-1,0,133716,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35500,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35501,3,6,0,0,0,0,0,0,-1,0,134099,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35502,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35503,3,6,0,0,0,0,0,0,-1,0,134100,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35504,15,2,0,0,0,0,0,0,-1,0,134373,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35505,9,10,4,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35507,4,0,3,2,70,0,0,0,-1,0,133305,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35508,4,0,3,2,70,0,0,0,-1,0,133290,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35509,4,0,3,2,70,0,0,0,-1,0,133323,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35510,2,7,1,13,1,3,0,0,-1,0,134295,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35511,4,0,3,2,70,0,0,0,-1,0,133303,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35512,0,0,0,0,0,0,0,0,0,0,133850,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35513,15,5,0,0,60,0,0,0,-1,0,132235,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35514,2,10,2,17,70,2,0,0,8,0,135213,9,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0,427,0,0,0,0 +35516,1,0,8,18,0,0,0,0,-1,0,133646,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35517,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35518,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35519,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35520,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35521,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35522,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35523,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35524,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35525,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35526,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35527,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35528,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35529,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35530,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35531,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35532,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35533,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35534,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35535,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35536,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35537,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35538,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35539,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35540,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35541,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35542,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35544,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35545,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35546,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35548,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35549,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35550,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35551,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35552,9,2,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35553,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35554,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35555,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35556,9,4,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35557,15,3,0,0,0,0,0,0,-1,0,132387,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35562,7,8,0,0,0,0,0,0,-1,0,133969,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35563,0,5,0,0,45,0,0,0,-1,0,134024,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35564,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35565,0,5,0,0,45,0,0,0,-1,0,134021,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35566,9,5,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35568,12,0,0,0,50,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35569,12,0,0,0,50,0,0,0,-1,0,135805,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35581,4,1,7,8,0,0,0,0,-1,0,133029,7,0,40,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35582,9,3,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35674,2,5,4,17,70,1,0,0,-1,0,133047,9,0,120,0,0,0,0,0,0,500,0,0,0,0,0,0,270,0,0,0,0,406,0,0,0,0 +35684,2,15,1,13,1,3,0,0,-1,0,135638,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +35691,15,0,0,0,0,0,0,0,-1,0,134518,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35693,4,0,3,12,70,0,0,0,-1,0,132199,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35694,4,0,3,12,70,0,0,0,-1,0,133274,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35695,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35696,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35697,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35698,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35699,9,10,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35700,4,0,3,12,70,0,0,0,-1,0,133262,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35702,4,0,3,12,70,0,0,0,-1,0,133236,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35703,4,0,3,12,70,0,0,0,-1,0,134904,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35707,3,3,0,0,0,0,0,0,-1,0,133256,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35708,9,10,0,0,0,0,0,0,-1,0,134941,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35710,0,5,0,0,65,0,0,0,-1,0,134006,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35712,2,8,1,17,1,3,0,0,-1,0,135277,8,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35713,15,0,0,0,0,0,0,0,-1,0,134226,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35714,2,10,2,17,1,2,0,0,-1,0,135145,13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +35716,0,3,3,0,70,0,0,0,-1,0,134738,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35717,0,3,3,0,70,0,0,0,-1,0,134739,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35719,2,13,1,13,1,7,0,0,-1,0,134294,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +35720,0,5,0,0,0,0,0,0,-1,0,134776,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35721,15,0,0,0,0,0,0,0,0,0,134727,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35722,15,0,0,0,0,0,0,0,-1,0,133019,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35723,12,0,4,0,65,0,0,0,0,0,135855,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35725,12,0,0,0,0,0,0,0,-1,0,135437,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35728,12,0,0,0,70,0,0,0,-1,0,135986,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35729,12,0,0,0,70,0,0,0,-1,0,135885,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35730,12,0,0,0,70,0,0,0,-1,0,135939,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35731,12,0,0,0,70,0,0,0,-1,0,134335,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35732,4,4,8,1,70,0,0,0,0,0,132482,0,0,100,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35733,4,0,3,11,70,0,0,0,-1,0,133399,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35748,7,11,2,12,0,0,0,0,-1,0,136044,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35749,7,11,2,12,0,0,0,0,-1,0,136044,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35750,7,11,2,12,0,0,0,0,-1,0,136044,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35751,7,11,2,12,0,0,0,0,-1,0,136044,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35752,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35753,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35754,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35755,9,6,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35756,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35758,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35759,3,4,0,0,0,0,0,0,-1,0,133264,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35760,3,5,0,0,0,0,0,0,-1,0,133261,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35761,3,2,0,0,0,0,0,0,-1,0,133249,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35762,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35763,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35764,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35765,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35766,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35767,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35768,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35769,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35828,12,0,0,0,0,0,0,0,-1,0,136061,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35874,1,0,4,18,0,0,0,0,0,0,133881,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35906,15,5,0,0,60,0,0,0,-1,0,132259,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35945,0,0,0,0,0,0,0,0,0,0,134096,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36737,2,0,1,22,70,1,0,0,-1,0,132412,9,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,365,0,0,0,0 +36748,0,0,4,0,0,0,0,0,0,0,132790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36761,4,0,1,23,1,0,0,0,-1,0,132800,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36876,12,0,0,0,0,0,0,0,0,0,134232,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36877,0,0,0,0,0,0,0,0,0,0,134329,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36941,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37011,15,5,2,0,30,0,0,0,-1,0,135145,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37012,15,5,0,0,60,0,0,0,-1,0,132501,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37059,2,14,1,13,1,0,0,0,-1,0,132795,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +37127,4,0,4,12,70,0,0,0,-1,0,132795,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37128,4,0,4,12,70,0,0,0,-1,0,132791,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37148,15,0,0,0,0,0,0,0,-1,0,134332,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37297,15,0,0,0,0,0,0,0,-1,0,133278,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37298,15,0,0,0,0,0,0,0,-1,0,133443,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37311,4,0,0,0,0,0,0,0,-1,0,133802,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37312,15,0,4,0,0,0,0,0,-1,0,134010,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37313,4,0,4,0,69,0,0,0,-1,0,133803,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37460,15,2,7,0,0,0,0,0,-1,0,133685,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37488,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37489,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37490,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37491,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37492,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37493,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37494,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37495,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37496,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37497,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37498,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37499,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37503,3,3,0,0,0,0,0,0,-1,0,133266,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37504,9,10,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37567,7,3,4,0,0,0,0,0,0,0,132998,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37571,12,0,4,0,1,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37582,0,0,4,0,0,0,0,0,0,0,134337,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37583,0,0,4,0,0,0,0,0,0,0,134139,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37584,0,0,4,0,0,0,0,0,0,0,134125,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37585,0,0,4,0,0,0,0,0,0,0,134437,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37586,15,0,8,0,0,0,0,0,-1,0,132940,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37588,7,8,8,0,0,0,0,0,-1,0,133719,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37596,2,15,1,13,1,7,0,0,-1,0,132797,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 +37597,2,15,1,13,70,7,0,0,-1,0,132797,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,228,0,0,0,0 +37598,15,5,4,0,60,0,0,0,-1,0,132226,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37599,12,0,4,0,1,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37604,0,0,4,0,0,0,0,0,0,0,134709,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37605,15,0,4,0,0,0,0,0,0,0,133639,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37606,1,0,4,18,0,0,0,0,0,0,133639,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37676,15,5,0,0,70,0,0,0,-1,0,132249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37710,7,3,4,0,0,0,0,0,-1,0,132999,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37719,15,5,4,0,60,0,0,0,-1,0,132226,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37736,12,0,4,0,1,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37737,12,0,4,0,1,0,0,0,-1,0,134331,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37739,2,15,1,21,70,3,0,0,-1,0,135708,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +37740,2,4,1,21,70,3,0,0,-1,0,133551,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,225,0,0,0,0 +37750,0,0,4,0,30,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37816,15,3,4,0,30,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37827,15,5,0,0,30,0,0,0,-1,0,132245,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37828,15,5,0,0,60,0,0,0,-1,0,132246,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37829,0,0,4,0,0,0,0,0,-1,0,133784,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37863,0,0,4,0,0,0,0,0,0,0,133015,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37864,4,0,4,12,70,0,0,0,-1,0,133452,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37865,4,0,4,12,70,0,0,0,-1,0,133453,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37892,2,14,2,21,1,7,0,0,-1,0,133700,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37893,2,14,1,21,1,7,0,0,-1,0,133701,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37894,2,14,1,21,1,7,0,0,-1,0,133701,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37895,2,14,1,21,1,7,0,0,-1,0,133701,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37896,2,14,1,21,1,7,0,0,-1,0,133701,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37897,2,14,1,21,1,7,0,0,-1,0,133701,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,16,0,0,0,0 +37898,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37899,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37900,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37901,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37902,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37903,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37904,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37905,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37906,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37907,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37908,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37909,0,0,3,0,1,0,0,0,-1,0,132797,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37915,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37927,4,0,5,11,70,0,0,0,-1,0,133402,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37928,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37929,4,0,5,2,70,0,0,0,-1,0,133327,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +37934,4,0,5,11,0,0,0,0,-1,0,133414,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38050,15,2,4,0,0,0,0,0,-1,0,136039,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38082,1,0,8,18,0,0,0,0,-1,0,133660,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38089,4,1,7,1,0,0,0,0,-1,0,133149,7,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38090,4,0,5,11,0,0,0,0,-1,0,133364,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38091,4,0,5,11,0,0,0,0,-1,0,133413,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38160,4,0,4,20,0,0,0,0,-1,0,133671,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38161,4,0,4,10,0,0,0,0,-1,0,132951,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38162,4,0,4,8,0,0,0,0,-1,0,132551,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38163,4,0,4,1,0,0,0,0,-1,0,133687,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38175,2,7,1,21,70,3,0,0,-1,0,135277,8,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,308,0,0,0,0 +38186,0,0,4,0,0,0,0,0,0,0,136222,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38225,1,2,8,18,0,0,0,0,-1,0,133660,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38229,9,2,4,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38233,0,0,4,0,0,0,0,0,-1,0,135794,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38276,4,1,7,1,0,0,0,0,-1,0,133152,7,0,45,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38277,4,1,7,5,0,0,0,0,-1,0,135022,7,0,70,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38278,4,1,7,7,0,0,0,0,-1,0,134591,7,0,55,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38280,12,0,4,0,65,0,0,0,0,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38281,12,0,4,0,65,0,0,0,0,0,132621,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38285,4,0,4,6,0,0,0,0,-1,0,132492,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38286,4,0,4,3,0,0,0,0,-1,0,135055,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38287,4,0,4,12,70,0,0,0,-1,0,132790,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38288,4,0,4,12,70,0,0,0,-1,0,134188,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38289,4,0,4,12,70,0,0,0,-1,0,133858,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38290,4,0,4,12,70,0,0,0,-1,0,134374,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38291,0,0,4,0,0,0,0,0,0,0,134717,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38294,0,0,4,0,0,0,0,0,0,0,134721,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38300,0,0,4,0,0,0,0,0,0,0,134718,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38301,15,4,0,0,0,0,0,0,-1,0,133836,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38308,0,8,4,0,1,0,0,0,-1,0,134335,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38309,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38310,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38311,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38312,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38313,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38314,4,0,7,19,0,0,0,0,-1,0,135026,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38320,0,0,4,0,0,0,0,0,0,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38327,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38328,9,2,0,0,0,0,0,0,-1,0,134939,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38329,12,0,7,0,0,0,0,0,-1,0,133152,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38427,0,5,4,0,55,0,0,0,-1,0,132833,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38428,0,5,4,0,65,0,0,0,-1,0,133196,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38429,0,5,7,0,45,0,0,0,-1,0,132794,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38430,0,5,3,0,60,0,0,0,-1,0,132820,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38431,0,5,3,0,65,0,0,0,-1,0,132831,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38432,0,5,3,0,0,0,0,0,-1,0,132790,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38466,0,5,1,0,30,0,0,0,-1,0,135262,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38506,4,1,7,1,0,0,0,0,-1,0,133152,7,0,50,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38518,0,0,7,0,1,0,0,0,-1,0,133975,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38545,3,0,4,0,0,0,0,0,-1,0,134129,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38546,3,2,4,0,0,0,0,0,-1,0,134136,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38547,3,5,4,0,0,0,0,0,-1,0,134116,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38548,3,5,4,0,0,0,0,0,-1,0,134117,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38549,3,0,4,0,0,0,0,0,-1,0,134084,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38550,3,2,4,0,0,0,0,0,-1,0,134135,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38576,15,5,4,0,60,0,0,0,-1,0,132117,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38577,0,0,4,0,0,0,0,0,-1,0,133712,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38578,15,4,0,0,0,0,0,0,-1,0,132484,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38579,4,0,7,23,20,7,0,0,-1,0,133743,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38587,0,0,0,0,0,0,0,0,0,0,133696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38626,0,0,3,0,1,0,0,0,-1,0,132798,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38628,15,2,4,0,0,0,0,0,-1,0,132191,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39149,15,0,4,0,0,0,0,0,0,0,133917,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39476,0,0,4,0,30,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39477,0,0,4,0,30,0,0,0,-1,0,134188,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +39656,15,0,0,0,0,0,0,0,-1,0,135277,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +43516,15,5,0,0,70,0,0,0,-1,0,132249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122270,18,0,1,0,1,0,0,0,-1,0,1121394,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122284,18,0,1,0,1,0,0,0,-1,0,1120721,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +172070,15,0,0,0,1,0,0,0,-1,0,134142,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +180089,15,0,0,0,0,0,0,0,-1,0,132494,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184865,15,5,0,0,30,0,0,0,-1,0,3940790,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184871,15,0,8,0,0,0,0,0,-1,0,255348,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184937,0,0,0,0,0,0,0,0,-1,0,133879,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +184938,0,0,0,0,0,0,0,0,-1,0,133881,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185686,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185687,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185690,13,0,0,0,0,0,0,0,-1,0,134247,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185691,13,0,0,0,0,0,0,0,-1,0,134245,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185692,13,0,0,0,0,0,0,0,-1,0,134243,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185693,13,0,0,0,0,0,0,0,-1,0,134238,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185848,0,8,2,0,0,0,0,0,-1,0,133842,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185849,0,8,2,0,0,0,0,0,-1,0,133846,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185850,0,8,2,0,0,0,0,0,-1,0,133847,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185851,0,8,2,0,0,0,0,0,-1,0,133844,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185852,0,8,2,0,0,0,0,0,-1,0,133843,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185922,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185923,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185924,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185925,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185926,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185956,12,0,0,0,0,0,0,0,-1,0,134867,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185964,15,4,0,0,1,0,0,0,-1,0,133651,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185976,4,4,6,1,58,0,0,0,-1,0,133118,11,0,70,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185977,4,4,6,3,58,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185981,4,0,3,11,58,0,0,0,-1,0,133352,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185982,4,0,3,11,58,0,0,0,-1,0,133350,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185983,4,0,3,11,58,0,0,0,-1,0,133351,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185984,4,0,3,11,58,0,0,0,-1,0,133363,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185985,4,0,8,12,58,0,0,0,-1,0,134460,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185986,4,0,6,12,58,0,0,0,-1,0,135252,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185987,4,0,8,12,58,0,0,0,-1,0,134458,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185988,4,0,4,12,58,0,0,0,-1,0,134457,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185998,4,4,6,5,58,0,0,0,-1,0,132627,11,0,115,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +185999,4,4,6,9,58,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186001,4,4,6,10,58,0,0,0,-1,0,132960,11,0,40,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186002,4,4,6,6,58,0,0,0,-1,0,132507,11,0,40,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186015,4,4,6,7,58,0,0,0,-1,0,134581,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186016,4,4,6,8,58,0,0,0,-1,0,132587,11,0,55,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186018,4,1,7,1,58,0,0,0,-1,0,133131,7,0,45,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186019,4,1,7,3,58,0,0,0,-1,0,135033,7,0,45,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186020,4,1,7,5,58,0,0,0,-1,0,132670,7,0,70,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186021,4,1,7,6,58,0,0,0,-1,0,132496,7,0,25,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186022,4,1,7,7,58,0,0,0,-1,0,134588,7,0,55,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186023,4,1,7,8,58,0,0,0,-1,0,132539,7,0,35,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186024,4,1,7,9,58,0,0,0,-1,0,132606,7,0,25,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186025,4,1,7,10,58,0,0,0,-1,0,132951,7,0,25,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186026,4,2,8,1,58,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186027,4,2,8,3,58,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186028,4,2,8,5,58,0,0,0,-1,0,132715,7,0,85,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186029,4,2,8,6,58,0,0,0,-1,0,132493,7,0,30,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186030,4,2,8,7,58,0,0,0,-1,0,134706,7,0,65,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186031,4,2,8,8,58,0,0,0,-1,0,132592,7,0,45,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186032,4,2,8,9,58,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186033,4,2,8,10,58,0,0,0,-1,0,132939,7,0,30,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186034,4,3,5,1,58,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186035,4,3,5,3,58,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186036,4,3,5,5,58,0,0,0,-1,0,132635,10,0,100,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186037,4,3,5,6,58,0,0,0,-1,0,132498,10,0,35,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186038,4,3,5,7,58,0,0,0,-1,0,134589,10,0,75,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186039,4,3,5,8,58,0,0,0,-1,0,132541,10,0,50,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186040,4,3,5,9,58,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186041,4,3,5,10,58,0,0,0,-1,0,132959,10,0,35,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186044,4,1,7,16,58,0,0,0,-1,0,133758,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186045,4,1,7,16,58,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186046,4,1,7,16,58,0,0,0,-1,0,133756,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186047,4,1,7,16,58,0,0,0,-1,0,133763,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186048,2,15,1,13,58,3,0,0,-1,0,135651,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +186049,4,0,3,23,58,7,0,0,-1,0,133941,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186050,2,19,2,26,58,0,0,0,-1,0,135464,21,0,65,0,6,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,122,0,0,0,0 +186051,2,10,2,17,58,2,0,0,-1,0,135160,13,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,210,0,0,0,0 +186052,4,8,2,28,58,0,0,0,-1,0,134423,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186053,4,8,2,28,58,0,0,0,-1,0,136095,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186054,4,8,2,28,58,0,0,0,-1,0,136061,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186055,2,10,1,17,58,2,0,0,-1,0,135130,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,178,0,0,0,0 +186056,2,2,2,15,58,0,0,0,-1,0,135490,12,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,128,0,0,0,0 +186057,2,5,2,17,58,1,0,0,-1,0,133041,9,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,204,0,0,0,0 +186058,2,7,1,13,58,3,0,0,-1,0,135276,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +186060,2,7,1,13,58,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,97,0,0,0,0 +186061,2,7,1,13,58,3,0,0,-1,0,135357,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,140,0,0,0,0 +186062,2,4,2,13,58,3,0,0,-1,0,133054,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,83,0,0,0,0 +186063,4,6,1,14,58,4,0,0,-1,0,134956,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186064,4,6,1,14,58,4,0,0,-1,0,134955,9,0,85,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186065,4,7,2,28,58,0,0,0,-1,0,134916,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186066,4,7,2,28,58,0,0,0,-1,0,134917,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186067,4,7,2,28,58,0,0,0,-1,0,133745,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186068,2,15,1,13,58,3,0,0,-1,0,135639,8,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,81,0,0,0,0 +186069,2,16,2,25,58,0,0,0,-1,0,132330,8,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,95,0,0,0,0 +186070,2,13,1,21,58,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +186071,4,9,2,28,58,0,0,0,-1,0,135735,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186072,4,9,2,28,58,0,0,0,-1,0,134918,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186073,4,9,2,28,58,0,0,0,-1,0,136053,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186074,4,0,3,2,58,0,0,0,-1,0,133276,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186075,4,1,7,16,58,0,0,0,-1,0,133766,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186076,4,2,8,9,58,0,0,0,-1,0,132607,7,0,30,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186078,4,2,8,1,58,0,0,0,-1,0,133117,7,0,50,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186079,4,2,8,7,58,0,0,0,-1,0,134706,7,0,65,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186080,4,2,8,3,58,0,0,0,-1,0,135039,7,0,50,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186081,4,3,5,1,58,0,0,0,-1,0,132768,10,0,60,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186082,4,3,5,7,58,0,0,0,-1,0,134589,10,0,75,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186083,4,3,5,3,58,0,0,0,-1,0,135038,10,0,60,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186084,4,3,5,9,58,0,0,0,-1,0,132603,10,0,35,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186085,4,4,6,9,58,0,0,0,-1,0,132615,11,0,40,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186086,4,4,6,1,58,0,0,0,-1,0,133118,11,0,70,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186087,4,4,6,7,58,0,0,0,-1,0,134581,11,0,85,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186088,4,4,6,3,58,0,0,0,-1,0,135060,11,0,70,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +186163,2,7,1,13,58,3,0,0,-1,0,135350,8,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,146,0,0,0,0 +186682,2,13,1,22,58,7,0,0,-1,0,134296,8,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,94,0,0,0,0 +186683,9,8,0,0,0,0,0,0,-1,0,134327,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187048,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187049,9,1,0,0,0,0,0,0,-1,0,134940,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187129,0,0,0,0,1,0,0,0,-1,0,132485,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187130,0,0,0,0,1,0,0,0,-1,0,132486,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187435,12,0,0,0,0,0,0,0,-1,0,134105,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187643,12,0,4,1,1,0,0,0,-1,0,132311,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187714,15,0,1,0,1,0,0,0,-1,0,132763,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187737,0,8,8,0,0,0,0,0,-1,0,133806,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187738,0,8,8,0,0,0,0,0,-1,0,132320,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187739,0,8,8,0,0,0,0,0,-1,0,135879,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187740,0,8,8,0,0,0,0,0,-1,0,135898,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187783,0,8,8,0,0,0,0,0,-1,0,135874,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187794,15,0,0,0,0,0,0,0,-1,0,132833,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187799,15,0,1,0,1,0,0,0,-1,0,132763,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187800,0,8,8,0,0,0,0,0,-1,0,132299,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187801,0,8,8,0,0,0,0,0,-1,0,136080,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187807,0,8,8,0,0,0,0,0,-1,0,136030,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187814,0,8,8,0,0,0,0,0,-1,0,135850,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +187815,0,8,8,0,0,0,0,0,-1,0,135824,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/HermesProxy/CSV/ItemAppearance1.csv b/HermesProxy/CSV/ItemAppearance1.csv new file mode 100644 index 00000000..8e04a36c --- /dev/null +++ b/HermesProxy/CSV/ItemAppearance1.csv @@ -0,0 +1,6165 @@ +ID,DisplayType,ItemDisplayInfoID,DefaultIconFileDataID,UiOrder +57187,14,21328,134409,0 +57188,14,21712,134406,0 +57189,14,21321,134403,0 +57190,14,21332,134404,0 +57191,14,21318,134409,0 +57192,14,21330,134401,0 +57193,14,21322,134402,0 +57194,14,21331,134407,0 +57195,14,21329,134410,0 +63222,2,5661,132759,0 +63223,11,1542,135274,0 +63224,11,472,135145,0 +63225,11,5194,133478,0 +63226,11,8483,132402,0 +63227,2,6048,135009,0 +63228,5,6050,134582,0 +63229,6,6051,132540,0 +63230,6,6077,132535,0 +63231,5,1882,134582,0 +63232,2,3265,135005,0 +63233,6,9767,132539,0 +63234,5,5341,134582,0 +63235,2,9906,135009,0 +63236,6,7081,132538,0 +63237,5,5848,134582,0 +63238,2,8370,135005,0 +63239,3,10455,132664,0 +63240,3,10456,132665,0 +63241,6,3261,132535,0 +63242,3,15441,132724,0 +63243,5,5654,134706,0 +63244,5,7643,134589,0 +63245,6,7180,132543,0 +63246,3,10888,135011,0 +63247,5,10006,134582,0 +63248,6,10008,132539,0 +63249,2,9031,135011,0 +63250,6,5633,132540,0 +63251,5,8003,134582,0 +63252,6,9992,132538,0 +63253,13,2080,134951,0 +63254,5,5632,134582,0 +63255,2,5447,135005,0 +63256,5,8740,134582,0 +63257,2,8738,133766,0 +63258,11,5279,133476,0 +63259,3,7777,135022,0 +63260,5,9970,134592,0 +63261,6,10052,132539,0 +63262,3,2499,135006,0 +63263,5,2308,134592,0 +63264,6,10287,132539,0 +63265,8,3218,132955,0 +63266,5,7947,134706,0 +63267,6,10872,132540,0 +63268,3,10150,132725,0 +63269,5,4265,134586,0 +63270,6,14283,132537,0 +63271,8,9785,132955,0 +63272,3,6558,132631,0 +63273,5,3409,134583,0 +63274,6,4734,132535,0 +63275,11,20190,135317,0 +63276,7,8147,132610,0 +63277,8,10890,132961,0 +63278,8,12774,132952,0 +63279,8,2951,132938,0 +63280,8,11393,132940,0 +63281,8,2368,132939,0 +63282,11,26577,135274,0 +63283,10,3865,132483,0 +63284,11,20094,135346,0 +63285,11,20218,135312,0 +63286,11,1379,134708,0 +63287,7,17007,132607,0 +63288,11,19621,133482,0 +63289,11,20443,135145,0 +63290,11,1383,132392,0 +63291,11,2743,135638,0 +63292,11,1682,134708,0 +63293,11,19644,133046,0 +63294,11,4801,135323,0 +63295,11,19699,133045,0 +63296,11,19401,132405,0 +63297,11,20334,135139,0 +63298,6,10295,132579,0 +63299,8,2186,132952,0 +63300,5,2185,134591,0 +63301,3,3900,135014,0 +63302,6,2094,132543,0 +63303,8,2359,132952,0 +63304,5,2176,134589,0 +63305,3,2106,132760,0 +63306,11,20033,135329,0 +63307,11,19726,133048,0 +63308,11,19137,132398,0 +63309,11,15990,135166,0 +63310,11,2710,135637,0 +63311,11,6470,135637,0 +63312,3,1990,135011,0 +63313,11,19271,132392,0 +63314,11,2038,133476,0 +63315,4,3394,132492,0 +63316,3,5730,135010,0 +63317,5,5731,134594,0 +63318,8,7504,132952,0 +63319,6,10908,132539,0 +63320,6,3713,132592,0 +63321,8,2101,132939,0 +63322,5,5441,134706,0 +63323,3,14271,132760,0 +63324,3,1019,132624,0 +63325,5,697,134583,0 +63326,6,1020,132535,0 +63327,8,510,132938,0 +63328,11,2780,135346,0 +63329,11,5208,133490,0 +63330,11,22102,132402,0 +63331,11,2943,135154,0 +63332,2,9880,135006,0 +63333,6,3443,132539,0 +63334,11,19213,132399,0 +63335,11,26579,135328,0 +63336,11,5212,133478,0 +63337,11,20357,135145,0 +63338,8,3993,132940,0 +63339,11,19713,133488,0 +63340,11,5163,135326,0 +63341,11,33458,132393,0 +63342,11,19235,132408,0 +63343,11,19242,135419,0 +63344,11,20298,135150,0 +63345,13,1680,134955,0 +63346,11,20382,135162,0 +63347,11,8494,132405,0 +63348,11,20093,135327,0 +63349,8,3524,132947,0 +63350,11,20386,135141,0 +63351,8,7816,132938,0 +63352,7,6165,132604,0 +63353,11,6456,134298,0 +63354,1,1057,135039,0 +63355,1,1058,135039,0 +63356,1,2953,135033,0 +63357,1,1060,135033,0 +63358,1,1068,135033,0 +63359,11,28628,133476,0 +63360,11,20170,135311,0 +63361,3,2829,132624,0 +63362,11,19703,133486,0 +63363,11,22097,135280,0 +63364,11,20110,135324,0 +63365,11,22131,133044,0 +63366,11,2861,133476,0 +63367,11,22108,135423,0 +63368,11,22151,135157,0 +63369,11,19405,132405,0 +63370,11,8272,135327,0 +63371,11,5215,133729,0 +63372,11,20329,135150,0 +63373,3,16676,132667,0 +63374,11,20256,135166,0 +63375,11,20253,135144,0 +63376,11,859,135274,0 +63377,4,4878,133694,0 +63378,11,1550,135274,0 +63379,11,8583,133045,0 +63380,11,20440,135154,0 +63381,11,19273,132395,0 +63382,11,1121,135274,0 +63383,11,7453,133942,0 +63384,6,703,132592,0 +63385,15,7469,133729,0 +63386,11,20327,135143,0 +63387,11,19643,133476,0 +63388,11,1716,135145,0 +63389,11,679,135274,0 +63390,0,1166,134955,0 +63391,0,1170,134442,0 +63392,13,30993,134947,0 +63393,13,2456,136162,0 +63394,3,10627,132665,0 +63395,15,6520,135432,0 +63396,6,4487,132537,0 +63397,7,3311,132606,0 +63398,7,6224,132609,0 +63399,9,15120,133760,0 +63400,11,22093,135276,0 +63401,11,7495,134435,0 +63402,11,22114,132395,0 +63403,11,5226,133477,0 +63404,11,20112,135350,0 +63405,13,18663,134955,0 +63406,13,1705,134950,0 +63407,13,2329,134949,0 +63408,13,2594,134952,0 +63409,13,1644,134952,0 +63410,11,5199,133490,0 +63411,3,9536,132719,0 +63412,7,1028,132603,0 +63413,11,19625,133046,0 +63414,4,10988,132498,0 +63415,7,6193,132606,0 +63416,11,5527,133489,0 +63417,11,20122,135314,0 +63418,11,3367,132405,0 +63419,15,24061,134085,0 +63420,11,30392,132392,0 +63421,11,22215,135580,0 +63422,11,5530,133482,0 +63423,11,20156,135302,0 +63424,9,23106,133767,0 +63425,3,12723,132742,0 +63426,13,2210,134955,0 +63427,0,15298,133132,0 +63428,0,15282,133070,0 +63429,11,6447,134298,0 +63430,11,2767,132417,0 +63431,11,4770,133481,0 +63432,3,19035,132658,0 +63433,4,15767,132518,0 +63434,11,20391,135469,0 +63435,8,1796,132951,0 +63436,8,5444,132939,0 +63437,7,11387,132603,0 +63438,5,15673,134582,0 +63439,8,17057,132947,0 +63440,11,20377,135153,0 +63441,11,19290,135424,0 +63442,7,12741,132615,0 +63443,9,23014,134354,0 +63444,8,4583,132939,0 +63445,8,3085,132939,0 +63446,3,4589,135009,0 +63447,5,8409,134586,0 +63448,6,4463,132540,0 +63449,8,9374,132952,0 +63450,4,5728,132513,0 +63451,7,5578,132609,0 +63452,6,12850,132543,0 +63453,9,23090,133762,0 +63454,8,11051,132952,0 +63455,5,9187,134589,0 +63456,3,12426,132662,0 +63457,11,5197,133482,0 +63458,11,453,135421,0 +63459,11,1546,135274,0 +63460,11,19247,132392,0 +63461,11,20087,135277,0 +63462,11,18437,135159,0 +63463,11,1595,133046,0 +63464,11,5542,135473,0 +63465,11,1115,133485,0 +63466,5,2201,134581,0 +63467,11,5540,135143,0 +63468,11,5638,135129,0 +63469,11,20442,135139,0 +63470,11,20074,135276,0 +63471,11,1547,135274,0 +63472,11,19525,133046,0 +63473,11,19613,133052,0 +63474,11,8501,135424,0 +63475,4,4473,132513,0 +63476,6,4472,132540,0 +63477,7,4471,132604,0 +63478,9,23058,133766,0 +63479,8,4470,132952,0 +63480,5,4469,134586,0 +63481,3,5558,135009,0 +63482,6,6019,132543,0 +63483,8,9791,132952,0 +63484,5,8265,134591,0 +63485,3,5861,135010,0 +63486,5,16733,134585,0 +63487,13,25943,134949,0 +63488,11,8570,133048,0 +63489,1,8019,135038,0 +63490,6,2229,132535,0 +63491,8,2231,132938,0 +63492,11,8457,132415,0 +63493,11,22214,135562,0 +63494,11,19683,133476,0 +63495,11,3272,133053,0 +63496,11,19136,135421,0 +63497,11,20109,135356,0 +63498,11,19375,135424,0 +63499,11,6475,135651,0 +63500,11,20154,135325,0 +63501,11,20402,135145,0 +63502,8,16710,132940,0 +63503,11,9381,133057,0 +63504,11,25595,132404,0 +63505,11,20089,135311,0 +63506,11,9117,133045,0 +63507,11,9122,135466,0 +63508,11,7464,135127,0 +63509,3,8267,135006,0 +63510,3,3082,132624,0 +63511,3,4597,132723,0 +63512,11,5165,135325,0 +63513,6,16553,132539,0 +63514,9,23094,133754,0 +63515,8,2193,132952,0 +63516,5,14309,134591,0 +63517,3,14013,135020,0 +63518,4,16947,132515,0 +63519,6,14846,132539,0 +63520,7,17024,132606,0 +63521,9,23008,133760,0 +63522,8,17077,132952,0 +63523,5,16658,134588,0 +63524,3,14978,135009,0 +63525,11,19775,133052,0 +63526,11,20173,135274,0 +63527,11,19226,135423,0 +63528,11,20092,135276,0 +63529,11,19533,133053,0 +63530,11,20421,135146,0 +63531,11,8486,135419,0 +63532,11,19306,132409,0 +63533,11,22239,135128,0 +63534,11,5534,133489,0 +63535,11,20395,135154,0 +63536,13,21551,135940,0 +63537,13,18456,134955,0 +63538,6,16856,132579,0 +63539,3,10895,132654,0 +63540,11,20078,135326,0 +63541,11,2807,132397,0 +63542,11,20188,135323,0 +63543,11,20272,136163,0 +63544,11,19743,133729,0 +63545,11,28470,135140,0 +63546,0,15305,133071,0 +63547,11,26586,135356,0 +63548,11,3889,132395,0 +63549,11,3797,132409,0 +63550,8,1795,132938,0 +63551,11,18289,135165,0 +63552,3,2898,132628,0 +63553,6,11269,132535,0 +63554,11,2382,133476,0 +63555,11,19304,132408,0 +63556,3,16667,132658,0 +63557,5,3826,134586,0 +63558,11,21460,135162,0 +63559,11,8581,133046,0 +63560,11,15467,133041,0 +63561,11,5289,135125,0 +63562,11,5166,135327,0 +63563,11,19997,135323,0 +63564,4,3254,132495,0 +63565,6,233,132535,0 +63566,7,2219,132602,0 +63567,9,15272,133760,0 +63568,8,976,132938,0 +63569,5,687,134583,0 +63570,3,977,132624,0 +63571,9,15065,133765,0 +63572,1,6914,135038,0 +63573,9,15074,133764,0 +63574,9,15181,133768,0 +63575,6,7578,132543,0 +63576,9,23095,133767,0 +63577,8,2213,132952,0 +63578,5,1818,134589,0 +63579,1,16786,135040,0 +63580,3,1817,135025,0 +63581,6,3757,132539,0 +63582,9,23093,133768,0 +63583,8,2300,132952,0 +63584,5,2299,134591,0 +63585,1,9999,135040,0 +63586,3,5783,135023,0 +63587,6,15450,132579,0 +63588,9,23102,133766,0 +63589,8,3052,132952,0 +63590,5,2629,134582,0 +63591,1,5094,135040,0 +63592,3,5729,135031,0 +63593,4,2849,132512,0 +63594,6,2560,132592,0 +63595,7,2561,132607,0 +63596,9,23032,133762,0 +63597,8,972,132939,0 +63598,5,704,134706,0 +63599,3,14197,132760,0 +63600,4,3358,132513,0 +63601,6,3715,132540,0 +63602,7,17015,132601,0 +63603,8,17066,132952,0 +63604,5,5605,134589,0 +63605,1,12916,135039,0 +63606,3,2082,132724,0 +63607,4,4590,132513,0 +63608,6,945,132543,0 +63609,7,2118,132600,0 +63610,9,23006,133758,0 +63611,8,3992,132952,0 +63612,5,683,134589,0 +63613,1,14205,135039,0 +63614,3,13181,132725,0 +63615,11,20037,135276,0 +63616,11,19245,135423,0 +63617,11,20413,135145,0 +63618,11,19534,133053,0 +63619,11,1556,135274,0 +63620,11,20183,135276,0 +63621,11,19535,133052,0 +63622,11,1766,135274,0 +63623,11,20385,135145,0 +63624,11,6794,133485,0 +63625,11,19292,132409,0 +63626,11,19784,133046,0 +63627,11,8587,133046,0 +63628,11,19369,132414,0 +63629,11,15591,135325,0 +63630,11,4129,135276,0 +63631,11,20361,135145,0 +63632,5,16844,134586,0 +63633,4,7746,132493,0 +63634,7,10016,132603,0 +63635,4,3247,132515,0 +63636,7,2178,132601,0 +63637,4,3253,132512,0 +63638,7,3704,132607,0 +63639,7,13617,132606,0 +63640,4,14853,132495,0 +63641,7,11582,132603,0 +63642,7,2980,132606,0 +63643,11,1593,135274,0 +63644,11,7485,135325,0 +63645,11,1596,133040,0 +63646,11,1597,133040,0 +63647,11,2701,132392,0 +63648,11,1201,135145,0 +63649,11,3297,132392,0 +63650,11,7494,134520,0 +63651,11,1839,133476,0 +63652,11,2698,135651,0 +63653,11,2781,135340,0 +63654,11,5218,133481,0 +63655,11,19276,132402,0 +63656,11,20415,135155,0 +63657,5,8420,134582,0 +63658,9,23067,133763,0 +63659,11,20418,135150,0 +63660,5,4312,134582,0 +63661,11,20471,135660,0 +63662,11,20399,135641,0 +63663,11,5040,135325,0 +63664,11,8565,133052,0 +63665,8,14843,132938,0 +63666,8,4255,132955,0 +63667,11,8279,135325,0 +63668,6,3334,132535,0 +63669,13,1684,134955,0 +63670,11,1515,133718,0 +63671,13,1685,134955,0 +63672,8,3846,132939,0 +63673,7,16901,132606,0 +63674,11,20179,135326,0 +63675,11,8590,133053,0 +63676,8,12813,132938,0 +63677,13,3127,134948,0 +63678,3,2982,132741,0 +63679,11,20191,135272,0 +63680,11,1627,135274,0 +63681,13,1706,134950,0 +63682,11,20638,135313,0 +63683,8,15497,132956,0 +63684,11,5533,133481,0 +63685,15,21609,133731,0 +63686,11,19127,132407,0 +63687,3,16670,132663,0 +63688,11,20356,135155,0 +63689,11,20251,135278,0 +63690,11,20120,135325,0 +63691,11,20373,135163,0 +63692,11,5176,135313,0 +63693,11,19255,132408,0 +63694,3,1727,132624,0 +63695,7,1965,132602,0 +63696,11,20088,135317,0 +63697,13,18650,134321,0 +63698,11,1733,135130,0 +63699,11,22096,135353,0 +63700,11,22115,132394,0 +63701,11,8593,133046,0 +63702,11,22119,133052,0 +63703,11,19281,132417,0 +63704,11,22145,135147,0 +63705,7,11905,132609,0 +63706,6,8354,132542,0 +63707,3,10720,132645,0 +63708,11,5161,135321,0 +63709,8,17054,132939,0 +63710,6,11447,132535,0 +63711,13,18399,134962,0 +63712,3,1330,132722,0 +63713,11,20379,135147,0 +63714,11,19220,132397,0 +63715,11,1386,135419,0 +63716,11,1758,133057,0 +63717,13,1755,134955,0 +63718,13,1757,134955,0 +63719,11,8478,132410,0 +63720,11,20175,135274,0 +63721,11,19532,133053,0 +63722,9,22991,133756,0 +63723,11,19650,133052,0 +63724,11,20212,135357,0 +63725,11,19203,132402,0 +63726,11,20431,135152,0 +63727,3,16868,132760,0 +63728,11,20363,135141,0 +63729,11,19134,132395,0 +63730,11,20168,135324,0 +63731,11,28578,135468,0 +63732,11,20157,135321,0 +63733,11,19637,133048,0 +63734,11,19400,132402,0 +63735,11,20152,135311,0 +63736,3,2250,132760,0 +63737,11,6455,133723,0 +63738,11,20407,135637,0 +63739,11,2704,135641,0 +63740,12,28718,135617,0 +63741,12,28636,135618,0 +63742,12,8095,135615,0 +63743,2,10005,135018,0 +63744,3,1967,132760,0 +63745,3,8845,132663,0 +63746,3,13929,132725,0 +63747,3,8862,132674,0 +63748,6,16045,132543,0 +63749,8,11981,132952,0 +63750,5,8969,134582,0 +63751,3,16575,135029,0 +63752,4,4102,132515,0 +63753,6,5598,132540,0 +63754,7,11414,132611,0 +63755,8,8449,132952,0 +63756,5,7834,134590,0 +63757,3,8417,135010,0 +63758,13,18662,134955,0 +63759,11,22075,135274,0 +63760,11,20438,135139,0 +63761,11,19204,132410,0 +63762,11,2705,135637,0 +63763,11,2717,135641,0 +63764,11,22135,135650,0 +63765,11,2706,135637,0 +63766,3,989,132724,0 +63767,4,4592,132513,0 +63768,6,2355,132541,0 +63769,7,2992,132603,0 +63770,8,2358,132955,0 +63771,5,691,134589,0 +63772,11,4788,135325,0 +63773,4,2985,132493,0 +63774,6,2986,132535,0 +63775,7,2987,132602,0 +63776,8,2988,132938,0 +63777,5,2989,134583,0 +63778,6,5459,132543,0 +63779,8,2609,132957,0 +63780,5,2610,134587,0 +63781,3,2645,135006,0 +63782,11,20291,135302,0 +63783,11,20312,135311,0 +63784,5,685,134583,0 +63785,8,3990,132955,0 +63786,6,11470,132537,0 +63787,11,2707,135641,0 +63788,4,6055,132495,0 +63789,11,8534,135424,0 +63790,11,1926,135145,0 +63791,11,1927,135145,0 +63792,11,1928,135271,0 +63793,11,1929,135274,0 +63794,11,1930,135277,0 +63795,11,3092,135273,0 +63796,11,1022,133041,0 +63797,11,7427,132392,0 +63798,11,1938,135613,0 +63799,11,3940,133043,0 +63800,11,2738,135641,0 +63801,11,7462,133974,0 +63802,11,7443,133964,0 +63803,11,4843,134714,0 +63804,11,6535,134719,0 +63805,11,6532,134717,0 +63806,11,6534,134719,0 +63807,11,7463,133974,0 +63808,11,3375,132417,0 +63809,11,20038,135321,0 +63810,11,20153,135351,0 +63811,11,22137,135640,0 +63812,11,22142,135302,0 +63813,11,22139,135342,0 +63814,13,2552,134955,0 +63815,13,18656,134955,0 +63816,13,2553,134955,0 +63817,13,17884,134955,0 +63818,13,18670,134955,0 +63819,13,18486,134955,0 +63820,13,18665,134949,0 +63821,11,20451,135641,0 +63822,13,18485,134955,0 +63823,13,18729,134949,0 +63824,13,18484,134955,0 +63825,11,20470,135650,0 +63826,11,20372,135468,0 +63827,11,22219,135562,0 +63828,8,3985,132939,0 +63829,3,16671,132666,0 +63830,6,4272,132539,0 +63831,5,8152,134592,0 +63832,3,4270,135020,0 +63833,11,20598,135651,0 +63834,11,20345,135638,0 +63835,5,2628,134582,0 +63836,5,8953,134588,0 +63837,9,23021,133753,0 +63838,9,15042,133756,0 +63839,11,19729,133489,0 +63840,11,3447,135316,0 +63841,0,15506,133073,0 +63842,2,1184,132759,0 +63843,11,8687,133041,0 +63844,11,5221,133729,0 +63845,11,4995,135148,0 +63846,11,19623,133053,0 +63847,11,8470,132408,0 +63848,11,5170,135321,0 +63849,1,8807,135039,0 +63850,11,8472,132410,0 +63851,11,20341,135644,0 +63852,11,20213,135357,0 +63853,11,20346,135168,0 +63854,3,16114,132626,0 +63855,6,13318,132543,0 +63856,5,3173,134581,0 +63857,1,3169,135049,0 +63858,11,20370,135143,0 +63859,11,20211,135357,0 +63860,4,10616,132494,0 +63861,11,19305,132406,0 +63862,3,12217,132677,0 +63863,11,19389,132393,0 +63864,3,9502,132724,0 +63865,6,2083,132538,0 +63866,6,9512,132540,0 +63867,9,23028,133762,0 +63868,6,5853,132539,0 +63869,9,23010,133150,0 +63870,3,6026,132760,0 +63871,8,5406,132939,0 +63872,3,5655,132725,0 +63873,6,4956,132539,0 +63874,3,9521,132718,0 +63875,7,11760,132611,0 +63876,7,17023,132606,0 +63877,11,2776,133052,0 +63878,13,18730,134955,0 +63879,3,9171,135011,0 +63880,5,14159,134586,0 +63881,6,7949,132543,0 +63882,8,13503,132957,0 +63883,3,16871,132719,0 +63884,4,16187,132492,0 +63885,5,18452,134706,0 +63886,6,16387,132592,0 +63887,7,16371,132601,0 +63888,8,16388,132952,0 +63889,13,18672,134950,0 +63890,3,954,132624,0 +63891,6,3533,132535,0 +63892,7,2230,132604,0 +63893,3,1511,132624,0 +63894,8,2220,132938,0 +63895,3,2968,132747,0 +63896,5,2969,134583,0 +63897,4,2970,132492,0 +63898,6,4028,132535,0 +63899,7,2972,132606,0 +63900,8,3979,132938,0 +63901,3,2974,132748,0 +63902,4,2975,132492,0 +63903,5,2976,134583,0 +63904,6,2977,132535,0 +63905,7,2978,132602,0 +63906,8,3978,132938,0 +63907,3,2663,135018,0 +63908,5,1863,134590,0 +63909,6,1861,132539,0 +63910,8,3212,132952,0 +63911,3,16769,135021,0 +63912,5,7592,134588,0 +63913,6,8418,132539,0 +63914,8,10376,132952,0 +63915,13,18749,134949,0 +63916,13,18733,134952,0 +63917,13,18732,134949,0 +63918,13,18772,134952,0 +63919,3,70729,132725,0 +63920,4,8396,132492,0 +63921,5,8416,134586,0 +63922,6,8369,132542,0 +63923,7,10464,132601,0 +63924,8,11554,132959,0 +63925,3,8331,132646,0 +63926,4,7748,132505,0 +63927,5,5680,134589,0 +63928,6,14295,132542,0 +63929,7,13015,132602,0 +63930,8,1657,132939,0 +63931,11,8512,132402,0 +63932,11,19601,133481,0 +63933,11,22112,132401,0 +63934,11,12992,135434,0 +63935,11,22121,133053,0 +63936,11,22136,135641,0 +63937,11,1768,135145,0 +63938,12,8104,135493,0 +63939,12,20723,135490,0 +63940,12,20722,135499,0 +63941,12,20714,135489,0 +63942,12,2409,135610,0 +63943,12,1136,135611,0 +63944,12,20728,135613,0 +63945,14,2414,132382,0 +63946,14,2418,132384,0 +63947,11,12284,135275,0 +63948,11,22084,135327,0 +63949,11,7590,135419,0 +63950,11,22216,135576,0 +63951,11,6795,133486,0 +63952,11,22133,133040,0 +63953,11,22141,135651,0 +63954,11,22150,135469,0 +63955,11,22098,135313,0 +63956,11,22105,132392,0 +63957,11,22111,135424,0 +63958,11,22120,133487,0 +63959,11,22134,133054,0 +63960,11,22140,135341,0 +63961,11,20389,135151,0 +63962,5,2922,134583,0 +63963,4,3121,132498,0 +63964,11,15430,135162,0 +63965,12,10671,135531,0 +63966,11,2466,133041,0 +63967,11,7442,133041,0 +63968,11,2469,135145,0 +63969,15,6488,133941,0 +63970,8,4485,132941,0 +63971,15,6555,135124,0 +63972,3,16666,132643,0 +63973,11,20590,135651,0 +63974,3,10708,135009,0 +63975,6,15682,132543,0 +63976,6,2166,132543,0 +63977,3,10621,132659,0 +63978,2,10840,135029,0 +63979,2,10705,135030,0 +63980,2,10667,135023,0 +63981,3,7811,132715,0 +63982,2,10861,135024,0 +63983,9,23105,133759,0 +63984,3,10849,132680,0 +63985,6,5380,132543,0 +63986,9,23144,133762,0 +63987,3,10896,132654,0 +63988,3,22033,132664,0 +63989,2,10798,135025,0 +63990,3,10626,132674,0 +63991,3,8849,132665,0 +63992,3,16614,132679,0 +63993,3,10462,132679,0 +63994,3,8855,132645,0 +63995,3,10461,132681,0 +63996,3,3946,132673,0 +63997,0,15284,133756,0 +63998,0,15293,133132,0 +63999,0,11275,133072,0 +64000,0,15336,132767,0 +64001,0,15547,133072,0 +64002,11,20473,135637,0 +64003,9,15082,133768,0 +64004,9,15089,133754,0 +64005,11,20441,134298,0 +64006,4,13165,132495,0 +64007,5,24717,134583,0 +64008,11,18494,132795,0 +64009,11,24594,132791,0 +64010,11,24595,132800,0 +64011,11,7454,133941,0 +64012,11,7456,133938,0 +64013,11,6560,133941,0 +64014,11,6549,133941,0 +64015,11,6582,134249,0 +64016,11,6581,134249,0 +64017,11,6530,0,0 +64018,11,6529,0,0 +64019,11,7457,0,0 +64020,0,16826,133118,0 +64021,11,20117,135276,0 +64022,11,20383,135651,0 +64023,11,2708,135641,0 +64024,12,2786,135493,0 +64025,12,20654,135612,0 +64026,12,2787,135493,0 +64027,12,20712,135490,0 +64028,12,20738,135610,0 +64029,12,20671,135491,0 +64030,12,20717,135610,0 +64031,12,20668,135493,0 +64032,12,7531,135610,0 +64033,11,20534,135644,0 +64034,3,9897,132689,0 +64035,11,5188,135280,0 +64036,9,23084,133756,0 +64037,11,5122,132418,0 +64038,11,7479,136040,0 +64039,11,1160,133491,0 +64040,11,8465,132417,0 +64041,11,19669,133482,0 +64042,3,9727,135014,0 +64043,5,1963,134582,0 +64044,11,6443,135641,0 +64045,11,19633,133052,0 +64046,11,20091,135355,0 +64047,11,19236,132397,0 +64048,12,6235,135500,0 +64049,12,20552,135497,0 +64050,11,8463,132417,0 +64051,11,4805,135327,0 +64052,11,5198,133483,0 +64053,11,19929,132408,0 +64054,4,23529,132491,0 +64055,5,13095,134583,0 +64056,7,4331,132602,0 +64057,7,17518,132602,0 +64058,4,19499,132492,0 +64059,3,22458,132738,0 +64060,5,4333,134583,0 +64061,3,4407,132630,0 +64062,7,19677,132606,0 +64063,3,4412,132631,0 +64064,3,9695,132750,0 +64065,11,20151,135324,0 +64066,11,2428,132405,0 +64067,15,13109,135466,0 +64068,11,18575,133714,0 +64069,3,2967,132624,0 +64070,4,15837,132490,0 +64071,13,18481,134955,0 +64072,9,23099,133758,0 +64073,12,8107,135490,0 +64074,12,20732,135612,0 +64075,11,8513,135419,0 +64076,11,20605,135651,0 +64077,6,2928,132535,0 +64078,4,4297,132493,0 +64079,11,20320,135652,0 +64080,1,16828,135036,0 +64081,11,19664,133039,0 +64082,13,2934,134948,0 +64083,11,20359,135654,0 +64084,11,3007,132938,0 +64085,15,21596,134335,0 +64086,15,21597,134336,0 +64087,12,16752,135641,0 +64088,12,16754,135426,0 +64089,6,4314,132541,0 +64090,11,20378,135152,0 +64091,3,3040,132760,0 +64092,9,23077,133757,0 +64093,5,14615,134588,0 +64094,0,16545,133132,0 +64095,3,8960,132647,0 +64096,5,8263,134590,0 +64097,6,14525,132543,0 +64098,8,14299,132955,0 +64099,3,16875,135013,0 +64100,5,17160,134586,0 +64101,6,16980,132543,0 +64102,8,17053,132952,0 +64103,3,22677,132624,0 +64104,5,7193,134583,0 +64105,6,10559,132589,0 +64106,8,10790,132962,0 +64107,3,5866,132647,0 +64108,5,7950,134590,0 +64109,6,5868,132543,0 +64110,8,11035,132955,0 +64111,3,70730,132760,0 +64112,5,10450,134706,0 +64113,6,8086,132592,0 +64114,8,8087,132939,0 +64115,8,1407,132939,0 +64116,3,14549,132649,0 +64117,5,4765,134581,0 +64118,6,4614,132539,0 +64119,8,14119,132952,0 +64120,3,9739,132724,0 +64121,5,10220,134582,0 +64122,6,8443,132539,0 +64123,8,9587,132952,0 +64124,3,12295,132628,0 +64125,5,25768,134582,0 +64126,6,12087,132588,0 +64127,8,12296,132944,0 +64128,3,1995,132724,0 +64129,0,10998,133126,0 +64130,9,23027,134367,0 +64131,3,9446,132679,0 +64132,0,21292,133117,0 +64133,12,3187,135499,0 +64134,5,16534,134582,0 +64135,12,20727,135612,0 +64136,12,20726,135612,0 +64137,12,20725,135612,0 +64138,12,20675,135490,0 +64139,12,20670,135489,0 +64140,12,5392,135500,0 +64141,12,20653,135500,0 +64142,12,20672,135491,0 +64143,12,20740,135610,0 +64144,12,20729,135614,0 +64145,12,20734,135610,0 +64146,6,11521,132588,0 +64147,8,11522,132945,0 +64148,5,11525,134583,0 +64149,3,11520,132628,0 +64150,3,3293,132624,0 +64151,3,4596,132723,0 +64152,5,7647,134587,0 +64153,6,9081,132542,0 +64154,8,10303,132955,0 +64155,6,8268,132541,0 +64156,3,27554,132667,0 +64157,9,15149,133753,0 +64158,11,19209,132402,0 +64159,3,16694,132659,0 +64160,5,8079,134586,0 +64161,8,9170,132939,0 +64162,6,2204,132543,0 +64163,12,20669,135492,0 +64164,11,8588,133052,0 +64165,12,3155,132392,0 +64166,12,20779,135425,0 +64167,12,20773,135427,0 +64168,12,16751,132410,0 +64169,12,16760,135421,0 +64170,12,20782,135419,0 +64171,12,20783,135423,0 +64172,11,2699,133980,0 +64173,8,3299,132952,0 +64174,9,23128,133763,0 +64175,11,18340,132402,0 +64176,13,2324,134956,0 +64177,3,16696,132662,0 +64178,3,12965,132624,0 +64179,11,20396,135637,0 +64180,11,20362,135147,0 +64181,11,26576,135343,0 +64182,11,19557,135639,0 +64183,11,20072,135348,0 +64184,11,8525,132402,0 +64185,11,3243,132397,0 +64186,11,26590,135350,0 +64187,11,19545,133052,0 +64188,11,19622,133476,0 +64189,11,5509,132401,0 +64190,11,26585,135324,0 +64191,11,20184,135357,0 +64192,11,8585,133053,0 +64193,11,19372,135424,0 +64194,7,14867,132609,0 +64195,11,19283,132408,0 +64196,7,4275,132605,0 +64197,11,5228,133488,0 +64198,7,3379,132605,0 +64199,7,11371,132606,0 +64200,11,20186,135321,0 +64201,7,14535,132607,0 +64202,11,5232,133479,0 +64203,11,20250,135280,0 +64204,11,19275,132408,0 +64205,7,25766,132600,0 +64206,7,11527,132600,0 +64207,7,6057,132602,0 +64208,3,10468,132682,0 +64209,4,5372,132512,0 +64210,11,20607,135640,0 +64211,11,19624,133482,0 +64212,7,8186,132607,0 +64213,11,20381,135149,0 +64214,7,3406,132601,0 +64215,4,9917,132496,0 +64216,7,8210,132606,0 +64217,1,10166,135038,0 +64218,3,8846,132659,0 +64219,9,23103,133763,0 +64220,11,21052,133052,0 +64221,5,3432,134582,0 +64222,11,20176,135274,0 +64223,11,19772,133053,0 +64224,3,10996,135009,0 +64225,5,3442,134706,0 +64226,6,12132,132538,0 +64227,8,7571,132939,0 +64228,13,18490,134955,0 +64229,11,20444,135150,0 +64230,6,26927,132539,0 +64231,7,26928,132606,0 +64232,8,27175,132963,0 +64233,5,25273,134583,0 +64234,3,25272,132719,0 +64235,6,27993,132542,0 +64236,8,16067,132953,0 +64237,5,28591,134586,0 +64238,3,16874,132657,0 +64239,6,10938,132539,0 +64240,8,14509,132952,0 +64241,5,11008,134706,0 +64242,3,8182,135011,0 +64243,6,26944,132537,0 +64244,7,26945,132606,0 +64245,8,28997,132959,0 +64246,5,25239,134583,0 +64247,3,25238,132647,0 +64248,6,11060,132539,0 +64249,8,11061,132952,0 +64250,5,11059,134706,0 +64251,3,11021,135011,0 +64252,6,10089,132607,0 +64253,7,10090,132607,0 +64254,3,10018,132719,0 +64255,8,10598,132952,0 +64256,5,11014,134706,0 +64257,4,4506,133693,0 +64258,9,23015,133763,0 +64259,7,10940,132606,0 +64260,1,21457,135040,0 +64261,11,19252,132415,0 +64262,11,3502,133041,0 +64263,11,20434,135158,0 +64264,3,16655,132675,0 +64265,3,12971,132624,0 +64266,9,15165,133770,0 +64267,11,1661,135145,0 +64268,2,3552,135018,0 +64269,4,3553,133694,0 +64270,0,15912,133117,0 +64271,11,6584,133942,0 +64272,15,3573,133718,0 +64273,4,10061,132493,0 +64274,11,3213,135274,0 +64275,7,10939,132609,0 +64276,11,5949,135129,0 +64277,4,5838,132492,0 +64278,7,14086,132606,0 +64279,4,14963,132495,0 +64280,7,16555,132612,0 +64281,4,5859,132495,0 +64282,7,7082,132612,0 +64283,4,5858,132492,0 +64284,7,9647,132602,0 +64285,4,9094,132515,0 +64286,7,7758,132612,0 +64287,0,21302,133077,0 +64288,11,3746,133476,0 +64289,11,2809,135330,0 +64290,11,20339,135169,0 +64291,11,20174,135311,0 +64292,15,6483,133436,0 +64293,15,6479,133939,0 +64294,15,6489,133939,0 +64295,15,6487,133436,0 +64296,2,16610,135031,0 +64297,2,3686,135022,0 +64298,4,3696,132493,0 +64299,12,4427,135614,0 +64300,3,10123,132717,0 +64301,11,7437,135128,0 +64302,11,7480,135131,0 +64303,7,3302,132607,0 +64304,6,3709,132539,0 +64305,11,6806,133479,0 +64306,4,3576,133693,0 +64307,3,3719,135009,0 +64308,11,6441,135646,0 +64309,11,11919,135153,0 +64310,6,4030,132535,0 +64311,9,23115,133765,0 +64312,13,18659,134950,0 +64313,15,6541,134799,0 +64314,11,5120,135144,0 +64315,7,11145,132610,0 +64316,6,3755,132539,0 +64317,11,20015,135313,0 +64318,5,8956,134594,0 +64319,8,3071,132938,0 +64320,3,12213,132659,0 +64321,11,28607,135302,0 +64322,12,20772,132330,0 +64323,6,23528,132535,0 +64324,3,13090,132624,0 +64325,8,25850,132938,0 +64326,5,22459,134583,0 +64327,8,3518,132939,0 +64328,9,23421,133760,0 +64329,3,3760,132624,0 +64330,1,23531,135036,0 +64331,1,9038,135040,0 +64332,6,4343,132535,0 +64333,8,4413,132939,0 +64334,6,9412,132535,0 +64335,8,9414,132939,0 +64336,11,20196,135312,0 +64337,11,8516,135420,0 +64338,11,8474,135419,0 +64339,11,5205,133483,0 +64340,11,3780,133041,0 +64341,12,20664,135491,0 +64342,11,7430,134294,0 +64343,9,23020,133766,0 +64344,3,3816,132715,0 +64345,6,3827,132542,0 +64346,8,3828,132939,0 +64347,7,3829,132603,0 +64348,3,3831,132715,0 +64349,5,3833,134582,0 +64350,6,3835,132542,0 +64351,8,3839,132939,0 +64352,7,3841,132603,0 +64353,3,3843,132715,0 +64354,5,3844,134582,0 +64355,8,3845,132939,0 +64356,3,16615,132681,0 +64357,0,15924,133116,0 +64358,10,3864,132483,0 +64359,3,16528,132655,0 +64360,8,8614,132938,0 +64361,1,20715,135036,0 +64362,9,23101,133756,0 +64363,4,6162,132494,0 +64364,5,3179,134582,0 +64365,8,14127,132939,0 +64366,3,1797,132716,0 +64367,12,1137,135610,0 +64368,3,3876,132683,0 +64369,11,19546,133052,0 +64370,5,9049,134585,0 +64371,1,224,135040,0 +64372,11,20414,135637,0 +64373,9,23085,133753,0 +64374,4,3335,132495,0 +64375,3,3064,132723,0 +64376,11,19231,132402,0 +64377,4,8958,132497,0 +64378,7,6610,132612,0 +64379,4,3392,132514,0 +64380,7,10901,132605,0 +64381,4,9464,132495,0 +64382,7,2675,132610,0 +64383,4,4444,132515,0 +64384,7,2575,132606,0 +64385,4,6978,132513,0 +64386,7,10053,132606,0 +64387,4,8173,132495,0 +64388,7,2956,132610,0 +64389,4,7619,132495,0 +64390,7,7747,132602,0 +64391,4,6103,132495,0 +64392,7,14081,132602,0 +64393,4,10875,132513,0 +64394,7,14161,132609,0 +64395,7,10344,132602,0 +64396,7,8183,132607,0 +64397,7,12342,132605,0 +64398,7,16595,132607,0 +64399,7,9206,132606,0 +64400,7,12126,132601,0 +64401,13,18512,134955,0 +64402,13,18655,134955,0 +64403,13,2052,134955,0 +64404,13,18488,134955,0 +64405,13,1673,134955,0 +64406,13,18696,134949,0 +64407,13,18702,134949,0 +64408,11,5010,135158,0 +64409,11,6536,134718,0 +64410,11,6533,134787,0 +64411,9,23040,133759,0 +64412,0,15339,133136,0 +64413,3,4085,132624,0 +64414,11,20374,135466,0 +64415,6,17164,132542,0 +64416,12,20667,135490,0 +64417,4,9024,132499,0 +64418,1,10169,135036,0 +64419,9,23100,133765,0 +64420,3,8732,132724,0 +64421,5,3083,134583,0 +64422,3,8189,135011,0 +64423,4,7858,132506,0 +64424,8,3875,132955,0 +64425,11,19228,132416,0 +64426,8,12468,132940,0 +64427,13,18769,134947,0 +64428,13,4108,134956,0 +64429,6,3750,132539,0 +64430,1,4109,135034,0 +64431,11,26366,133711,0 +64432,12,20660,135490,0 +64433,11,19287,132402,0 +64434,11,20150,135324,0 +64435,11,20216,135325,0 +64436,11,3727,135147,0 +64437,11,3550,135637,0 +64438,11,19694,133486,0 +64439,4,8739,132493,0 +64440,6,6190,132543,0 +64441,7,6173,132601,0 +64442,8,11298,132957,0 +64443,5,6189,134586,0 +64444,1,8374,135040,0 +64445,3,6102,132681,0 +64446,4,4599,132515,0 +64447,6,5522,132539,0 +64448,7,14802,132606,0 +64449,9,23029,133150,0 +64450,8,17631,132952,0 +64451,5,5521,134586,0 +64452,1,11270,135039,0 +64453,3,3278,132724,0 +64454,9,15121,133754,0 +64455,13,4130,134950,0 +64456,11,20180,135272,0 +64457,9,23089,133763,0 +64458,5,6957,134587,0 +64459,7,9417,132605,0 +64460,0,25658,133071,0 +64461,0,15301,133138,0 +64462,1,9422,135040,0 +64463,1,9424,135040,0 +64464,5,9415,134585,0 +64465,5,4744,134584,0 +64466,3,70731,132624,0 +64467,3,9425,132628,0 +64468,6,16640,132535,0 +64469,6,4153,132535,0 +64470,11,4154,135640,0 +64471,11,5129,135321,0 +64472,11,20215,135346,0 +64473,11,2775,133044,0 +64474,11,15468,133041,0 +64475,11,5105,135326,0 +64476,11,20252,135275,0 +64477,11,782,135423,0 +64478,11,8502,132408,0 +64479,11,6474,133980,0 +64480,0,15908,133135,0 +64481,0,15907,133122,0 +64482,0,15318,133071,0 +64483,0,15914,133135,0 +64484,0,21308,133117,0 +64485,0,15299,133071,0 +64486,11,6262,132392,0 +64487,6,3749,132543,0 +64488,11,20412,135466,0 +64489,4,8943,132491,0 +64490,6,11900,132541,0 +64491,7,11204,132604,0 +64492,8,11405,132957,0 +64493,5,7710,134592,0 +64494,1,14095,135040,0 +64495,3,10113,135009,0 +64496,4,5865,132491,0 +64497,7,9894,132609,0 +64498,9,15106,133766,0 +64499,8,10357,132957,0 +64500,5,16701,134586,0 +64501,1,8554,135040,0 +64502,3,16699,135008,0 +64503,4,6121,132504,0 +64504,6,5451,132539,0 +64505,7,14319,132604,0 +64506,9,22994,133759,0 +64507,8,10508,132958,0 +64508,5,5297,134587,0 +64509,1,12962,135037,0 +64510,3,5295,135009,0 +64511,4,8133,132512,0 +64512,6,12541,132537,0 +64513,7,10075,132600,0 +64514,8,12572,132958,0 +64515,5,7011,134593,0 +64516,1,4968,135039,0 +64517,3,12755,135017,0 +64518,4,5827,132511,0 +64519,6,16994,132539,0 +64520,7,3381,132609,0 +64521,9,23065,133764,0 +64522,8,3081,132952,0 +64523,5,3078,134592,0 +64524,1,4486,135039,0 +64525,3,3077,132724,0 +64526,4,8137,132495,0 +64527,6,10663,132537,0 +64528,7,10976,132603,0 +64529,9,23068,133759,0 +64530,8,9366,132955,0 +64531,5,5947,134586,0 +64532,1,8198,135037,0 +64533,3,8136,132719,0 +64534,4,5725,133694,0 +64535,13,18814,134952,0 +64536,13,18774,134957,0 +64537,13,18813,134949,0 +64538,13,18469,134955,0 +64539,13,17885,134956,0 +64540,13,18474,134955,0 +64541,4,4335,132498,0 +64542,6,4336,132535,0 +64543,7,4337,132602,0 +64544,9,15068,133756,0 +64545,8,4338,132938,0 +64546,5,4339,134583,0 +64547,1,8035,135038,0 +64548,3,4340,132627,0 +64549,4,4329,132495,0 +64550,6,4330,132535,0 +64551,8,4332,132938,0 +64552,3,4334,132635,0 +64553,4,4342,132495,0 +64554,7,4344,132602,0 +64555,9,14794,133768,0 +64556,8,4345,132938,0 +64557,5,4346,134583,0 +64558,11,20195,135349,0 +64559,11,19374,135424,0 +64560,11,19526,133053,0 +64561,11,2711,135641,0 +64562,11,20309,135155,0 +64563,12,20550,135490,0 +64564,12,20721,135610,0 +64565,3,16643,132673,0 +64566,7,4302,132606,0 +64567,5,4304,134588,0 +64568,3,16878,132669,0 +64569,8,9399,132955,0 +64570,0,15287,133135,0 +64571,8,11632,132961,0 +64572,7,14652,132606,0 +64573,5,14655,134581,0 +64574,7,12046,132608,0 +64575,5,8974,134593,0 +64576,6,6063,132543,0 +64577,0,15904,133117,0 +64578,7,14594,132612,0 +64579,5,5782,134586,0 +64580,6,5594,132543,0 +64581,0,21304,133117,0 +64582,5,2365,134589,0 +64583,6,2366,132541,0 +64584,3,5497,132721,0 +64585,3,9131,132722,0 +64586,7,8410,132608,0 +64587,5,9132,134593,0 +64588,7,11655,132602,0 +64589,5,10724,134587,0 +64590,8,10728,132959,0 +64591,13,18454,134955,0 +64592,13,18699,134951,0 +64593,13,4403,134956,0 +64594,13,26325,134952,0 +64595,13,26085,134956,0 +64596,13,18771,134948,0 +64597,3,25801,132751,0 +64598,8,25802,132937,0 +64599,6,25804,132584,0 +64600,3,22005,132635,0 +64601,8,23968,132959,0 +64602,6,22505,132541,0 +64603,0,25825,132768,0 +64604,0,15288,133131,0 +64605,5,13175,134583,0 +64606,0,15290,133118,0 +64607,5,4418,134583,0 +64608,12,20736,135616,0 +64609,12,4426,135498,0 +64610,11,28520,135351,0 +64611,11,18495,132790,0 +64612,11,20380,135639,0 +64613,8,4438,132938,0 +64614,5,4439,134582,0 +64615,6,5480,132541,0 +64616,9,23119,133762,0 +64617,9,15110,133758,0 +64618,13,17888,134948,0 +64619,11,20223,135343,0 +64620,4,8977,133694,0 +64621,7,4464,133345,0 +64622,3,4451,132722,0 +64623,3,16695,132660,0 +64624,1,4455,135038,0 +64625,0,15307,133117,0 +64626,15,21605,134333,0 +64627,11,19217,132415,0 +64628,12,20662,135611,0 +64629,13,4458,134952,0 +64630,4,8344,132506,0 +64631,7,3897,132609,0 +64632,11,20294,135150,0 +64633,6,4835,132539,0 +64634,3,8638,132638,0 +64635,6,7029,132579,0 +64636,1,4869,135037,0 +64637,3,4492,132721,0 +64638,5,4497,134582,0 +64639,8,4919,132939,0 +64640,7,4494,132607,0 +64641,6,4493,132539,0 +64642,1,12980,135036,0 +64643,8,9503,132939,0 +64644,5,9505,134582,0 +64645,3,9511,132724,0 +64646,3,1975,132725,0 +64647,4,4099,132493,0 +64648,8,2362,132939,0 +64649,8,9526,132939,0 +64650,4,4591,132492,0 +64651,4,6049,132495,0 +64652,1,11274,135039,0 +64653,1,9528,135043,0 +64654,8,2361,132958,0 +64655,8,9543,132939,0 +64656,3,8359,132723,0 +64657,3,8414,132723,0 +64658,4,8350,132506,0 +64659,4,8606,132492,0 +64660,7,9546,132611,0 +64661,7,9550,132609,0 +64662,5,16794,134582,0 +64663,4,9715,132490,0 +64664,13,18668,134952,0 +64665,4,7766,132498,0 +64666,13,2916,134955,0 +64667,11,19615,133054,0 +64668,8,2202,132939,0 +64669,7,3041,132611,0 +64670,5,2656,134587,0 +64671,8,11036,132939,0 +64672,6,5840,132543,0 +64673,6,4615,132543,0 +64674,1,5494,135037,0 +64675,1,17135,135040,0 +64676,5,4617,134581,0 +64677,5,4619,134586,0 +64678,8,4620,132939,0 +64679,8,11226,132951,0 +64680,6,4301,132539,0 +64681,6,4466,132537,0 +64682,0,15024,133133,0 +64683,0,15319,133129,0 +64684,3,17128,132678,0 +64685,6,4631,132539,0 +64686,9,15076,133754,0 +64687,9,15063,133756,0 +64688,4,5764,132514,0 +64689,4,4634,132495,0 +64690,2,4635,135029,0 +64691,8,8876,132953,0 +64692,2,3685,135031,0 +64693,2,4637,135022,0 +64694,2,4638,135012,0 +64695,2,4639,135020,0 +64696,2,12969,135022,0 +64697,5,1883,134586,0 +64698,2,10837,135006,0 +64699,0,4651,133149,0 +64700,12,20743,135616,0 +64701,0,17597,133149,0 +64702,12,15835,135616,0 +64703,12,8256,135615,0 +64704,0,13374,133149,0 +64705,0,4661,133146,0 +64706,5,4365,134582,0 +64707,4,5772,132493,0 +64708,11,20390,135151,0 +64709,1,11327,135038,0 +64710,13,18694,134321,0 +64711,11,19398,132407,0 +64712,11,20369,135638,0 +64713,9,23019,133756,0 +64714,3,4723,134321,0 +64715,11,20439,134298,0 +64716,11,20592,135652,0 +64717,3,7708,132719,0 +64718,4,6182,132491,0 +64719,9,23098,133754,0 +64720,4,7894,132500,0 +64721,12,4441,135498,0 +64722,3,4741,132680,0 +64723,13,17887,134948,0 +64724,0,4759,133149,0 +64725,9,15066,133757,0 +64726,5,10992,134590,0 +64727,13,18653,134953,0 +64728,3,4767,132743,0 +64729,8,4768,132957,0 +64730,11,19783,133044,0 +64731,7,4778,132605,0 +64732,0,21313,133111,0 +64733,7,7794,132606,0 +64734,12,21016,135464,0 +64735,11,2440,133041,0 +64736,11,8529,135420,0 +64737,11,6813,133489,0 +64738,11,3925,135637,0 +64739,11,20420,135145,0 +64740,11,20111,135274,0 +64741,11,22478,132403,0 +64742,11,19778,133045,0 +64743,11,8586,133052,0 +64744,11,20430,135651,0 +64745,11,20401,135168,0 +64746,12,20674,135495,0 +64747,13,18789,134957,0 +64748,6,4846,132535,0 +64749,9,25945,133754,0 +64750,6,4921,132540,0 +64751,1,27551,135040,0 +64752,9,15061,133767,0 +64753,4,5845,132493,0 +64754,4,15458,132493,0 +64755,9,26979,133771,0 +64756,4,25140,132492,0 +64757,4,8149,132492,0 +64758,9,23071,133150,0 +64759,8,4855,132937,0 +64760,9,25950,133759,0 +64761,4,12036,132494,0 +64762,9,26981,133769,0 +64763,4,26947,132514,0 +64764,4,5867,132493,0 +64765,9,23137,133754,0 +64766,4,8188,132492,0 +64767,9,23012,133764,0 +64768,1,25770,135059,0 +64769,9,26048,133758,0 +64770,4,12086,132523,0 +64771,1,5115,135040,0 +64772,4,4989,132511,0 +64773,1,8888,135039,0 +64774,9,23044,133763,0 +64775,1,25783,135039,0 +64776,9,25979,133758,0 +64777,4,11523,132493,0 +64778,1,8098,135039,0 +64779,9,26047,133762,0 +64780,4,25803,132521,0 +64781,9,23140,133754,0 +64782,4,4300,132492,0 +64783,9,23024,133760,0 +64784,9,26016,133766,0 +64785,1,9311,135036,0 +64786,9,18131,132682,0 +64787,4,9398,132492,0 +64788,1,4491,135038,0 +64789,9,23045,133767,0 +64790,5,7182,134582,0 +64791,1,25897,135045,0 +64792,9,23747,133754,0 +64793,4,13378,132505,0 +64794,1,7004,135034,0 +64795,1,9440,135033,0 +64796,1,11769,135056,0 +64797,9,23031,132655,0 +64798,1,11638,135033,0 +64799,9,23125,133765,0 +64800,4,6062,132493,0 +64801,1,17191,135036,0 +64802,4,10269,132501,0 +64803,5,4912,134583,0 +64804,7,16925,132617,0 +64805,7,4916,132608,0 +64806,3,12718,132660,0 +64807,11,7313,135321,0 +64808,11,5154,135325,0 +64809,8,3528,132939,0 +64810,8,12550,132939,0 +64811,9,23075,133764,0 +64812,11,19538,133053,0 +64813,11,6808,133476,0 +64814,3,2577,135014,0 +64815,3,16811,132658,0 +64816,4,4954,132491,0 +64817,4,9211,132491,0 +64818,9,23131,133763,0 +64819,9,15247,133753,0 +64820,7,1980,132603,0 +64821,7,4601,132606,0 +64822,7,3382,132603,0 +64823,9,23087,133754,0 +64824,1,5496,135039,0 +64825,5,3541,134583,0 +64826,11,7319,135311,0 +64827,11,20155,135329,0 +64828,13,18511,134956,0 +64829,11,1390,132415,0 +64830,11,19224,132417,0 +64831,4,6071,132518,0 +64832,4,4881,132515,0 +64833,5,6183,134586,0 +64834,5,8140,134590,0 +64835,5,15766,134587,0 +64836,1,5000,135036,0 +64837,1,5005,135036,0 +64838,15,21601,133434,0 +64839,15,8043,133438,0 +64840,11,13908,135641,0 +64841,3,2104,132715,0 +64842,11,5290,135574,0 +64843,6,8308,132537,0 +64844,3,7826,132724,0 +64845,7,13351,132611,0 +64846,5,6202,134582,0 +64847,8,5313,132938,0 +64848,13,18522,134955,0 +64849,12,6109,135464,0 +64850,4,6559,132495,0 +64851,8,16319,132939,0 +64852,6,10080,132539,0 +64853,3,12544,135018,0 +64854,5,3441,134583,0 +64855,4,10078,132492,0 +64856,5,9671,134582,0 +64857,11,19634,133485,0 +64858,7,6204,132611,0 +64859,3,11498,132716,0 +64860,12,3186,135493,0 +64861,11,20013,135274,0 +64862,9,15211,133760,0 +64863,6,7815,132542,0 +64864,13,18510,134955,0 +64865,11,20423,135158,0 +64866,8,11066,132939,0 +64867,6,11229,132542,0 +64868,9,23104,133763,0 +64869,6,5409,132535,0 +64870,11,20388,135638,0 +64871,11,19214,132414,0 +64872,4,8151,132494,0 +64873,11,6566,135140,0 +64874,9,15244,133762,0 +64875,11,20426,135159,0 +64876,8,5418,132939,0 +64877,11,19544,133052,0 +64878,13,5422,134957,0 +64879,7,5425,132602,0 +64880,5,10871,134706,0 +64881,11,8572,133046,0 +64882,7,10971,132606,0 +64883,13,18491,134956,0 +64884,5,8163,134593,0 +64885,11,20009,135350,0 +64886,11,19741,133041,0 +64887,7,5434,132606,0 +64888,8,5435,132938,0 +64889,4,8431,132495,0 +64890,11,19596,133054,0 +64891,11,20083,135326,0 +64892,3,16673,132670,0 +64893,7,16934,132616,0 +64894,11,5175,135315,0 +64895,11,5569,134070,0 +64896,11,6798,133039,0 +64897,5,4293,134590,0 +64898,15,11958,135472,0 +64899,11,5536,135277,0 +64900,11,20321,135647,0 +64901,12,6097,135139,0 +64902,12,5291,135464,0 +64903,12,18356,135645,0 +64904,12,6101,135139,0 +64905,11,20392,135640,0 +64906,13,3931,134955,0 +64907,2,5345,135016,0 +64908,3,10110,135009,0 +64909,3,12089,132677,0 +64910,11,20491,135638,0 +64911,9,23142,133754,0 +64912,11,8000,135327,0 +64913,11,5144,135325,0 +64914,9,22998,133760,0 +64915,11,19296,135424,0 +64916,8,12133,132957,0 +64917,12,21011,135139,0 +64918,5,1978,134582,0 +64919,11,20340,135150,0 +64920,3,12803,135012,0 +64921,12,20903,135469,0 +64922,12,20829,135468,0 +64923,12,6099,135139,0 +64924,12,20787,135139,0 +64925,12,20776,135469,0 +64926,12,6081,135139,0 +64927,12,20793,135468,0 +64928,12,21020,135463,0 +64929,12,20815,135473,0 +64930,12,20790,135468,0 +64931,12,20786,135468,0 +64932,12,6093,135139,0 +64933,12,12601,135473,0 +64934,12,21024,135464,0 +64935,12,21019,135144,0 +64936,12,20828,135144,0 +64937,12,21023,135464,0 +64938,12,6138,135139,0 +64939,12,20825,135466,0 +64940,12,20801,135473,0 +64941,1,5849,135039,0 +64942,11,19673,133491,0 +64943,9,23000,133756,0 +64944,12,6232,135493,0 +64945,12,6234,135493,0 +64946,11,3363,135639,0 +64947,4,7545,132490,0 +64948,11,6469,135650,0 +64949,11,1845,135641,0 +64950,11,5224,133486,0 +64951,8,12761,132952,0 +64952,13,18451,134956,0 +64953,11,2840,135138,0 +64954,11,5098,135144,0 +64955,11,7526,135321,0 +64956,5,7533,134582,0 +64957,6,7537,132537,0 +64958,7,7812,132610,0 +64959,3,10991,135009,0 +64960,3,7552,135010,0 +64961,11,22225,135572,0 +64962,1,4971,135038,0 +64963,11,20014,135276,0 +64964,13,7559,134952,0 +64965,5,16958,134582,0 +64966,8,11119,132940,0 +64967,11,20417,135145,0 +64968,3,7551,135011,0 +64969,9,23088,133755,0 +64970,11,8594,133052,0 +64971,12,20719,135496,0 +64972,12,21022,135466,0 +64973,4,7662,132493,0 +64974,12,20834,135124,0 +64975,12,16753,135426,0 +64976,11,3405,135146,0 +64977,13,18671,134949,0 +64978,5,13048,134582,0 +64979,6,7835,132535,0 +64980,1,4594,135039,0 +64981,3,7898,135011,0 +64982,5,6300,134582,0 +64983,11,19221,132408,0 +64984,4,5964,132492,0 +64985,11,19396,132417,0 +64986,4,5904,132493,0 +64987,11,5014,132392,0 +64988,11,2733,135641,0 +64989,11,19801,133042,0 +64990,12,10673,135530,0 +64991,11,3794,135327,0 +64992,11,1628,135276,0 +64993,12,16762,135419,0 +64994,11,8127,133890,0 +64995,11,19777,133057,0 +64996,11,5072,135148,0 +64997,11,19648,133490,0 +64998,8,8292,132938,0 +64999,7,12549,132612,0 +65000,9,23055,133764,0 +65001,13,8296,134955,0 +65002,11,8298,133052,0 +65003,12,20720,135489,0 +65004,11,8376,135131,0 +65005,11,8377,135131,0 +65006,11,8378,135131,0 +65007,11,8379,134294,0 +65008,12,28159,135139,0 +65009,8,16501,132939,0 +65010,0,15278,133072,0 +65011,15,8436,134797,0 +65012,7,17010,132611,0 +65013,11,20384,135160,0 +65014,11,20182,135328,0 +65015,11,20121,135352,0 +65016,11,20376,135341,0 +65017,5,5339,134582,0 +65018,9,15032,133753,0 +65019,0,15905,132767,0 +65020,11,19246,132417,0 +65021,11,20354,135641,0 +65022,8,8131,132939,0 +65023,3,10883,132719,0 +65024,11,8745,135575,0 +65025,11,8746,135575,0 +65026,11,8747,135575,0 +65027,12,20713,135495,0 +65028,11,19291,132397,0 +65029,9,23078,133762,0 +65030,11,20596,135652,0 +65031,0,8753,133072,0 +65032,3,4151,132739,0 +65033,11,20591,135660,0 +65034,3,8864,132658,0 +65035,3,16611,132679,0 +65036,3,8865,132670,0 +65037,11,18630,135154,0 +65038,11,8899,135423,0 +65039,11,2397,135139,0 +65040,11,20084,135276,0 +65041,3,8908,132634,0 +65042,3,22393,132634,0 +65043,3,9053,132679,0 +65044,11,9055,135280,0 +65045,3,7857,132725,0 +65046,11,9057,133484,0 +65047,12,9060,135489,0 +65048,12,21026,135473,0 +65049,1,9077,135036,0 +65050,8,9082,132938,0 +65051,12,22671,135128,0 +65052,4,4852,132493,0 +65053,7,9378,132602,0 +65054,11,15804,133069,0 +65055,11,2434,132312,0 +65056,5,9018,134589,0 +65057,5,8426,134582,0 +65058,5,8160,134592,0 +65059,1,9544,135039,0 +65060,9,23033,133755,0 +65061,8,8608,132939,0 +65062,4,8984,132499,0 +65063,9,23059,133766,0 +65064,8,17689,132953,0 +65065,9,23026,133756,0 +65066,4,8551,132492,0 +65067,10,9627,135026,0 +65068,7,9634,132609,0 +65069,4,3251,132492,0 +65070,7,7550,132609,0 +65071,7,12743,132606,0 +65072,5,6059,134591,0 +65073,13,18664,134949,0 +65074,5,3058,134583,0 +65075,3,11368,132724,0 +65076,12,19805,135279,0 +65077,6,14842,132539,0 +65078,11,19646,133482,0 +65079,11,19390,135419,0 +65080,6,7307,132539,0 +65081,2,2163,135005,0 +65082,2,2470,135005,0 +65083,3,9943,132674,0 +65084,3,8288,132662,0 +65085,2,5857,135005,0 +65086,3,9978,132662,0 +65087,2,6239,135009,0 +65088,5,8129,134582,0 +65089,6,8130,132540,0 +65090,3,9986,132675,0 +65091,5,5236,134581,0 +65092,2,9182,132719,0 +65093,5,10002,134582,0 +65094,6,7896,132540,0 +65095,3,10028,0,0 +65096,3,10073,132657,0 +65097,2,9202,133765,0 +65098,5,9204,134582,0 +65099,2,9519,135018,0 +65100,5,10114,134582,0 +65101,6,10115,132539,0 +65102,3,10119,132654,0 +65103,3,10120,132663,0 +65104,2,9084,135009,0 +65105,3,9933,132654,0 +65106,4,4860,132493,0 +65107,6,15621,132539,0 +65108,6,16809,132539,0 +65109,11,13583,135273,0 +65110,13,2181,134950,0 +65111,7,3388,132602,0 +65112,9,15058,133754,0 +65113,11,20119,135356,0 +65114,13,18658,134951,0 +65115,6,3070,132535,0 +65116,1,8399,135036,0 +65117,6,4380,132539,0 +65118,11,19404,132408,0 +65119,3,12559,132624,0 +65120,3,2644,132760,0 +65121,7,10529,132600,0 +65122,4,8611,132498,0 +65123,6,5992,132539,0 +65124,8,6243,132939,0 +65125,13,18669,134955,0 +65126,0,10537,133119,0 +65127,11,10538,134708,0 +65128,11,10642,133055,0 +65129,11,20536,135661,0 +65130,11,10814,133888,0 +65131,3,10810,132665,0 +65132,11,10816,133888,0 +65133,11,10817,133888,0 +65134,12,21094,135463,0 +65135,11,10822,133941,0 +65136,11,10824,133941,0 +65137,3,10465,132662,0 +65138,3,10706,132681,0 +65139,3,10843,132678,0 +65140,3,17123,132645,0 +65141,3,8853,132664,0 +65142,3,10894,132663,0 +65143,13,10968,134950,0 +65144,11,20730,132932,0 +65145,3,11037,135017,0 +65146,3,12716,132665,0 +65147,3,5844,135009,0 +65148,5,8264,134586,0 +65149,3,16894,135010,0 +65150,5,10148,134585,0 +65151,5,10098,134581,0 +65152,9,23002,133762,0 +65153,11,20335,135164,0 +65154,4,7761,132492,0 +65155,13,18700,134949,0 +65156,11,11259,135145,0 +65157,11,19635,133477,0 +65158,3,11528,132672,0 +65159,11,5136,133484,0 +65160,11,19556,135651,0 +65161,6,7768,132537,0 +65162,3,3057,132624,0 +65163,11,20731,132932,0 +65164,9,23110,133757,0 +65165,9,27549,133762,0 +65166,4,4450,132492,0 +65167,13,18483,134955,0 +65168,2,11518,135023,0 +65169,2,5781,135024,0 +65170,5,25805,134586,0 +65171,7,25800,132618,0 +65172,1,25806,135051,0 +65173,4,11172,132499,0 +65174,8,4370,132961,0 +65175,6,4622,132539,0 +65176,1,13677,135036,0 +65177,3,6177,132723,0 +65178,8,10572,132958,0 +65179,4,3872,132500,0 +65180,1,13398,135039,0 +65181,13,2333,134951,0 +65182,5,17954,134589,0 +65183,7,18335,132603,0 +65184,1,25815,135038,0 +65185,5,8142,134588,0 +65186,6,7776,132539,0 +65187,7,14618,132606,0 +65188,8,13020,132955,0 +65189,4,2364,132498,0 +65190,7,2367,132603,0 +65191,3,13174,132743,0 +65192,6,13379,132539,0 +65193,7,17827,132617,0 +65194,3,11609,132673,0 +65195,6,14651,132539,0 +65196,4,9486,132495,0 +65197,8,10513,132948,0 +65198,6,5354,132542,0 +65199,4,10433,132504,0 +65200,0,16520,133111,0 +65201,9,22987,133772,0 +65202,7,26073,132606,0 +65203,3,11634,132644,0 +65204,8,10447,132957,0 +65205,0,15910,133090,0 +65206,3,16889,132722,0 +65207,6,4449,132535,0 +65208,9,23039,133770,0 +65209,0,17321,133118,0 +65210,13,18690,134950,0 +65211,13,20976,134967,0 +65212,11,20349,135646,0 +65213,9,23001,132656,0 +65214,6,11935,132535,0 +65215,4,11623,132492,0 +65216,1,11946,135036,0 +65217,3,11949,132677,0 +65218,8,11952,132939,0 +65219,4,9748,132498,0 +65220,12,20652,135498,0 +65221,3,11840,135020,0 +65222,4,10091,132491,0 +65223,6,11999,132539,0 +65224,5,9541,134582,0 +65225,8,12068,132939,0 +65226,6,9173,132539,0 +65227,3,12282,132626,0 +65228,3,12283,132642,0 +65229,11,20116,135314,0 +65230,11,12286,135141,0 +65231,9,25948,133763,0 +65232,4,5670,132511,0 +65233,8,3199,132945,0 +65234,3,16697,135012,0 +65235,3,8857,132663,0 +65236,4,8328,132491,0 +65237,4,5734,132514,0 +65238,6,8372,132542,0 +65239,7,8437,132611,0 +65240,8,5400,132939,0 +65241,3,6196,132716,0 +65242,3,10889,132716,0 +65243,3,9036,132716,0 +65244,3,12372,132719,0 +65245,3,8856,132663,0 +65246,3,19110,132655,0 +65247,3,8327,135024,0 +65248,6,8348,132537,0 +65249,3,16522,132656,0 +65250,4,8347,132494,0 +65251,5,7033,134590,0 +65252,8,12443,132957,0 +65253,9,15033,133769,0 +65254,7,10249,132611,0 +65255,3,12165,132638,0 +65256,5,2897,134590,0 +65257,8,12054,132946,0 +65258,4,12053,132514,0 +65259,9,25953,133769,0 +65260,7,3767,132611,0 +65261,3,14731,135015,0 +65262,5,14730,134586,0 +65263,8,14729,132949,0 +65264,7,14728,132604,0 +65265,6,18145,132539,0 +65266,4,14726,132492,0 +65267,13,25955,134956,0 +65268,3,5854,135006,0 +65269,6,16881,132539,0 +65270,7,4786,132611,0 +65271,9,23109,133767,0 +65272,8,16793,132950,0 +65273,1,16470,135044,0 +65274,3,6481,135012,0 +65275,5,6482,134581,0 +65276,3,16469,132683,0 +65277,4,4633,132514,0 +65278,13,18493,134948,0 +65279,13,18701,134952,0 +65280,6,12457,132582,0 +65281,7,12456,132613,0 +65282,9,25967,133757,0 +65283,4,12455,132511,0 +65284,8,25761,132945,0 +65285,5,12453,134583,0 +65286,3,12446,132626,0 +65287,6,4027,132539,0 +65288,7,3377,132606,0 +65289,3,2019,132725,0 +65290,8,13353,132961,0 +65291,5,2018,134582,0 +65292,1,10567,135058,0 +65293,6,25793,132589,0 +65294,7,25797,132609,0 +65295,3,25798,132629,0 +65296,4,25795,132500,0 +65297,8,25794,132960,0 +65298,5,23581,134586,0 +65299,1,25799,135038,0 +65300,13,18449,134956,0 +65301,13,26014,134951,0 +65302,4,6299,132514,0 +65303,6,9169,132537,0 +65304,7,11343,132611,0 +65305,3,6298,132716,0 +65306,8,11110,132958,0 +65307,5,11063,134587,0 +65308,3,2304,132722,0 +65309,3,5710,135012,0 +65310,4,4990,133693,0 +65311,6,19921,132539,0 +65312,7,4376,132610,0 +65313,9,23138,133768,0 +65314,8,16864,132950,0 +65315,5,4377,134581,0 +65316,1,4904,135033,0 +65317,11,21554,135349,0 +65318,3,12595,132743,0 +65319,8,16952,136076,0 +65320,11,20336,135162,0 +65321,11,20167,135315,0 +65322,11,18651,132797,0 +65323,5,5839,134586,0 +65324,11,13001,135643,0 +65325,1,12782,135036,0 +65326,7,12783,132606,0 +65327,6,12095,132535,0 +65328,6,6301,132537,0 +65329,3,8215,132716,0 +65330,7,12804,132605,0 +65331,13,12805,134955,0 +65332,12,21018,135467,0 +65333,11,12857,135131,0 +65334,3,12216,132661,0 +65335,1,11473,135040,0 +65336,0,15492,133077,0 +65337,11,22217,135562,0 +65338,0,7009,133119,0 +65339,11,20325,135138,0 +65340,5,9540,134594,0 +65341,11,12880,133723,0 +65342,11,25597,132409,0 +65343,12,20650,135500,0 +65344,1,5116,135036,0 +65345,3,11487,132724,0 +65346,5,10079,134587,0 +65347,4,11953,132504,0 +65348,0,15315,133119,0 +65349,4,4306,132504,0 +65350,8,11175,132958,0 +65351,12,20821,135473,0 +65352,3,10441,132740,0 +65353,8,8398,132949,0 +65354,8,12948,132939,0 +65355,5,8193,134586,0 +65356,11,19126,132403,0 +65357,4,11880,132499,0 +65358,11,20177,135311,0 +65359,4,12821,132524,0 +65360,8,9402,132937,0 +65361,9,23047,133765,0 +65362,13,18507,134956,0 +65363,1,12986,135034,0 +65364,6,16988,132537,0 +65365,15,13012,135465,0 +65366,4,11860,132513,0 +65367,8,7711,132938,0 +65368,3,13043,135016,0 +65369,3,13046,135016,0 +65370,4,9045,132500,0 +65371,9,23096,133764,0 +65372,6,17227,132536,0 +65373,1,11697,135060,0 +65374,2,4640,135030,0 +65375,2,12786,135029,0 +65376,12,21014,135465,0 +65377,12,13060,135613,0 +65378,3,13077,132680,0 +65379,11,20010,135317,0 +65380,11,19707,133042,0 +65381,12,9062,135466,0 +65382,13,18455,134956,0 +65383,11,18607,132395,0 +65384,11,20292,135311,0 +65385,9,23097,132656,0 +65386,2,11307,135012,0 +65387,3,11646,135022,0 +65388,5,11308,134581,0 +65389,6,11782,132539,0 +65390,8,30609,135736,0 +65391,3,13337,132666,0 +65392,7,10949,132607,0 +65393,5,7587,134582,0 +65394,11,20575,134298,0 +65395,11,13360,135576,0 +65396,3,6662,135010,0 +65397,4,9401,132513,0 +65398,11,20185,135352,0 +65399,5,7767,134594,0 +65400,4,16931,132514,0 +65401,11,13455,135612,0 +65402,11,13466,133042,0 +65403,11,19135,132395,0 +65404,11,20162,135274,0 +65405,11,19771,133057,0 +65406,11,20400,135641,0 +65407,13,21475,134951,0 +65408,3,22480,132629,0 +65409,5,22481,134583,0 +65410,8,22482,132938,0 +65411,11,22734,132403,0 +65412,11,25046,133045,0 +65413,11,22731,135313,0 +65414,11,19133,132408,0 +65415,11,19274,132392,0 +65416,11,20398,135651,0 +65417,11,19652,133487,0 +65418,11,19773,133045,0 +65419,11,20159,135274,0 +65420,11,20163,135274,0 +65421,6,12184,132539,0 +65422,12,20824,135466,0 +65423,7,13508,132605,0 +65424,4,5457,132494,0 +65425,6,10095,132539,0 +65426,5,12360,134588,0 +65427,8,12615,132956,0 +65428,0,15283,133131,0 +65429,8,11097,132950,0 +65430,0,15863,133693,0 +65431,3,2471,135008,0 +65432,4,7700,132511,0 +65433,9,23092,132655,0 +65434,3,17133,132643,0 +65435,4,5804,132493,0 +65436,9,15102,132657,0 +65437,1,5762,135049,0 +65438,3,13671,135008,0 +65439,1,9574,135054,0 +65440,1,16463,135058,0 +65441,4,4905,132513,0 +65442,5,4310,134586,0 +65443,3,5483,132666,0 +65444,8,11482,132939,0 +65445,3,13684,132647,0 +65446,3,13044,135016,0 +65447,6,16026,132539,0 +65448,8,9630,132954,0 +65449,4,13518,132495,0 +65450,13,18661,134955,0 +65451,13,18508,134955,0 +65452,3,4298,135022,0 +65453,3,8946,132646,0 +65454,3,7621,135005,0 +65455,3,7172,135021,0 +65456,11,20602,135651,0 +65457,11,19776,133049,0 +65458,11,20161,135274,0 +65459,13,22730,134960,0 +65460,8,13484,132938,0 +65461,11,13848,135650,0 +65462,11,13853,135273,0 +65463,11,13585,133069,0 +65464,6,16734,132539,0 +65465,6,14763,133029,0 +65466,11,19610,133046,0 +65467,7,5333,132607,0 +65468,5,15765,134582,0 +65469,7,14002,132603,0 +65470,5,3248,134582,0 +65471,8,4685,132939,0 +65472,15,3947,135142,0 +65473,11,20425,135662,0 +65474,0,22021,133116,0 +65475,11,19132,132392,0 +65476,11,19649,133487,0 +65477,11,20160,135274,0 +65478,13,26046,134953,0 +65479,3,5872,135007,0 +65480,3,16523,132651,0 +65481,3,10515,132721,0 +65482,3,14069,132624,0 +65483,7,16566,132611,0 +65484,6,5846,132543,0 +65485,1,4593,135037,0 +65486,3,8153,135020,0 +65487,6,10539,132539,0 +65488,7,16604,132612,0 +65489,0,15906,133117,0 +65490,8,2057,132939,0 +65491,8,10945,132957,0 +65492,8,16601,132951,0 +65493,1,16606,135057,0 +65494,5,8155,134588,0 +65495,3,13666,132658,0 +65496,4,8154,132504,0 +65497,5,8073,134587,0 +65498,3,8071,132718,0 +65499,9,23030,133756,0 +65500,7,12844,132605,0 +65501,4,8072,132495,0 +65502,6,8074,132541,0 +65503,6,9750,132542,0 +65504,0,21298,133117,0 +65505,1,14950,135039,0 +65506,7,26032,132613,0 +65507,6,26030,132535,0 +65508,3,26034,132736,0 +65509,9,26043,133767,0 +65510,0,30091,132767,0 +65511,8,26036,132945,0 +65512,4,26037,132494,0 +65513,5,26039,134584,0 +65514,1,26040,135057,0 +65515,3,11530,135017,0 +65516,3,14990,132666,0 +65517,5,11542,134588,0 +65518,0,15543,133131,0 +65519,8,11532,132955,0 +65520,6,14645,132539,0 +65521,1,11540,135033,0 +65522,9,15175,133765,0 +65523,7,12758,132608,0 +65524,4,12020,132499,0 +65525,3,9194,132719,0 +65526,5,9195,134706,0 +65527,0,21311,133117,0 +65528,8,9197,132939,0 +65529,6,9196,132592,0 +65530,1,5414,135039,0 +65531,9,23023,133758,0 +65532,7,10097,132607,0 +65533,4,9903,132493,0 +65534,3,25862,132739,0 +65535,5,25868,134584,0 +65536,0,30092,132767,0 +65537,8,25865,132962,0 +65538,6,25860,132535,0 +65539,1,25872,135058,0 +65540,9,26064,133768,0 +65541,7,25861,132606,0 +65542,4,25866,132515,0 +65543,13,26065,134952,0 +65544,3,15005,132677,0 +65545,5,5874,134593,0 +65546,0,15911,133090,0 +65547,8,11303,132966,0 +65548,6,5875,132539,0 +65549,1,9316,135033,0 +65550,9,15145,133754,0 +65551,7,15410,132608,0 +65552,4,5873,132497,0 +65553,3,8430,132723,0 +65554,5,6865,134594,0 +65555,8,12017,132959,0 +65556,6,8080,132542,0 +65557,1,8254,135049,0 +65558,9,23057,133753,0 +65559,7,13514,132608,0 +65560,4,9593,132506,0 +65561,3,22155,132742,0 +65562,5,23944,134590,0 +65563,0,25824,132767,0 +65564,8,24971,132938,0 +65565,6,21187,132590,0 +65566,1,25822,135049,0 +65567,9,26018,133753,0 +65568,7,22154,132611,0 +65569,4,10407,132514,0 +65570,13,18697,134951,0 +65571,15,22923,134333,0 +65572,3,22958,132677,0 +65573,3,15201,132659,0 +65574,3,15223,132645,0 +65575,3,15231,132661,0 +65576,12,25078,135471,0 +65577,12,25076,135467,0 +65578,15,25072,134335,0 +65579,3,70631,135007,0 +65580,3,15400,132645,0 +65581,5,7622,134592,0 +65582,0,15646,133111,0 +65583,8,8998,132966,0 +65584,6,7623,132543,0 +65585,1,15402,135033,0 +65586,7,11222,132608,0 +65587,4,5795,132496,0 +65588,3,12348,132720,0 +65589,5,8204,134706,0 +65590,8,15415,132956,0 +65591,6,15412,132535,0 +65592,1,12525,135032,0 +65593,9,23016,133770,0 +65594,7,15413,132615,0 +65595,4,11279,132501,0 +65596,13,18812,134949,0 +65597,13,18775,134953,0 +65598,0,15380,133070,0 +65599,9,26097,133763,0 +65600,15,15424,135139,0 +65601,15,15427,135464,0 +65602,15,15428,135466,0 +65603,8,15721,132938,0 +65604,12,20920,135139,0 +65605,15,5050,135144,0 +65606,15,2509,135140,0 +65607,11,15576,132395,0 +65608,11,15720,132945,0 +65609,1,10791,135036,0 +65610,15,15725,134334,0 +65611,11,15726,133056,0 +65612,3,14872,132750,0 +65613,11,20172,135302,0 +65614,8,7731,132966,0 +65615,0,15391,133130,0 +65616,11,15786,133488,0 +65617,11,15795,133476,0 +65618,5,5870,134587,0 +65619,11,20360,135155,0 +65620,3,4498,132666,0 +65621,1,4488,135036,0 +65622,11,20318,135643,0 +65623,1,15575,135032,0 +65624,0,15562,133127,0 +65625,0,16224,133101,0 +65626,11,19735,133039,0 +65627,11,21252,133488,0 +65628,8,15758,132953,0 +65629,13,18751,134951,0 +65630,3,19109,132666,0 +65631,11,15466,133041,0 +65632,8,9556,132952,0 +65633,13,18792,134948,0 +65634,15,15884,134335,0 +65635,1,12832,135054,0 +65636,11,19670,133054,0 +65637,11,19371,132401,0 +65638,6,9174,132539,0 +65639,1,5384,135044,0 +65640,8,3847,132941,0 +65641,11,20316,135469,0 +65642,11,22238,135131,0 +65643,3,15897,132633,0 +65644,5,11011,134586,0 +65645,11,19210,132397,0 +65646,11,15938,132405,0 +65647,3,11407,132636,0 +65648,0,16084,133127,0 +65649,6,11408,132582,0 +65650,8,11537,132965,0 +65651,1,6027,135053,0 +65652,8,3983,132961,0 +65653,5,5611,134583,0 +65654,5,16103,134584,0 +65655,8,16105,132965,0 +65656,1,10495,135040,0 +65657,5,14787,134583,0 +65658,1,16111,135043,0 +65659,6,5615,132582,0 +65660,0,16115,133078,0 +65661,3,14945,132745,0 +65662,6,16118,132535,0 +65663,0,16119,133078,0 +65664,8,13172,132963,0 +65665,3,23666,132739,0 +65666,11,16126,132405,0 +65667,11,5639,132394,0 +65668,11,16128,135280,0 +65669,11,4911,135340,0 +65670,11,15887,133054,0 +65671,11,16130,135650,0 +65672,4,16036,132511,0 +65673,5,15680,134592,0 +65674,3,16134,132718,0 +65675,8,16060,132949,0 +65676,6,16059,132542,0 +65677,0,16137,133143,0 +65678,11,20071,135322,0 +65679,11,16146,133055,0 +65680,11,16147,135321,0 +65681,11,19272,132415,0 +65682,11,22234,135130,0 +65683,11,25053,135350,0 +65684,3,5386,132740,0 +65685,0,15308,133694,0 +65686,11,20326,135661,0 +65687,3,28398,132739,0 +65688,6,3766,132589,0 +65689,8,9386,132962,0 +65690,5,4149,134584,0 +65691,1,10662,135044,0 +65692,4,3418,132504,0 +65693,6,5387,132589,0 +65694,7,4448,132613,0 +65695,8,9578,132963,0 +65696,5,3414,134584,0 +65697,3,3413,132739,0 +65698,3,9594,135010,0 +65699,6,16634,132543,0 +65700,7,16636,132605,0 +65701,8,16633,132957,0 +65702,1,9746,135049,0 +65703,5,11845,134594,0 +65704,3,19901,132642,0 +65705,4,21354,132514,0 +65706,0,15353,133134,0 +65707,4,4315,132501,0 +65708,6,11832,132535,0 +65709,7,8197,132602,0 +65710,3,14689,132717,0 +65711,9,23038,133770,0 +65712,8,11833,132949,0 +65713,0,15478,133127,0 +65714,5,7765,134586,0 +65715,1,11232,135054,0 +65716,7,26103,132602,0 +65717,3,21244,132628,0 +65718,9,26118,133766,0 +65719,8,18339,132938,0 +65720,4,18994,132495,0 +65721,6,19452,132535,0 +65722,0,22549,133078,0 +65723,5,24545,134592,0 +65724,1,26114,135057,0 +65725,13,26120,134948,0 +65726,7,27329,132613,0 +65727,3,10856,132749,0 +65728,8,10858,132962,0 +65729,4,10732,132503,0 +65730,6,11244,132539,0 +65731,5,10851,134583,0 +65732,1,10855,135060,0 +65733,7,27345,132606,0 +65734,3,13028,132746,0 +65735,8,27341,132951,0 +65736,6,13520,132583,0 +65737,0,27347,133159,0 +65738,5,13519,134583,0 +65739,0,15921,133117,0 +65740,3,8435,132718,0 +65741,0,15321,132513,0 +65742,11,18354,135355,0 +65743,11,26591,135355,0 +65744,12,18343,135493,0 +65745,12,18350,135491,0 +65746,12,20741,135613,0 +65747,12,18355,135492,0 +65748,12,18346,135473,0 +65749,5,12169,134582,0 +65750,8,16488,132939,0 +65751,12,20735,135617,0 +65752,3,11598,132634,0 +65753,11,20081,135280,0 +65754,1,8434,135038,0 +65755,5,5469,134591,0 +65756,11,19721,133043,0 +65757,6,5470,132539,0 +65758,7,16506,132605,0 +65759,11,18342,135327,0 +65760,0,18689,132482,0 +65761,5,11838,134582,0 +65762,1,9562,135049,0 +65763,3,9563,132647,0 +65764,5,4388,134594,0 +65765,6,4389,132541,0 +65766,9,24297,133754,0 +65767,11,20073,135353,0 +65768,11,22232,135662,0 +65769,11,20076,135340,0 +65770,11,16539,135316,0 +65771,3,10042,135007,0 +65772,6,8959,132536,0 +65773,7,7522,132612,0 +65774,9,17238,133770,0 +65775,8,7523,132953,0 +65776,1,8814,135054,0 +65777,5,7520,134586,0 +65778,3,17236,132666,0 +65779,4,7519,132518,0 +65780,0,18728,132767,0 +65781,6,12113,132535,0 +65782,7,8201,132602,0 +65783,3,13330,132717,0 +65784,9,23063,133769,0 +65785,8,12114,132949,0 +65786,5,11069,134586,0 +65787,1,12531,135054,0 +65788,7,22500,132602,0 +65789,3,17930,132639,0 +65790,9,26228,133757,0 +65791,8,16685,132949,0 +65792,4,17798,132515,0 +65793,6,21172,132539,0 +65794,5,17700,134583,0 +65795,1,26217,135058,0 +65796,7,18610,132615,0 +65797,3,11216,132646,0 +65798,8,27374,132963,0 +65799,4,8871,132508,0 +65800,6,27376,132589,0 +65801,0,22547,133124,0 +65802,5,11219,134592,0 +65803,1,18035,135059,0 +65804,13,18790,134948,0 +65805,3,2317,135017,0 +65806,6,9675,132539,0 +65807,7,12147,132608,0 +65808,9,13984,133768,0 +65809,8,6095,132940,0 +65810,1,17271,135033,0 +65811,5,2318,134593,0 +65812,3,17276,132670,0 +65813,4,10103,132493,0 +65814,0,17274,133090,0 +65815,4,12835,132501,0 +65816,6,17317,132535,0 +65817,7,17316,132602,0 +65818,3,9059,132720,0 +65819,9,23066,133770,0 +65820,8,17314,132949,0 +65821,0,17269,133076,0 +65822,5,3834,134586,0 +65823,1,4934,135054,0 +65824,7,26313,132616,0 +65825,3,15579,132749,0 +65826,9,26323,133754,0 +65827,8,19630,132943,0 +65828,4,19629,132519,0 +65829,6,15581,132589,0 +65830,0,26315,132767,0 +65831,5,15580,134583,0 +65832,1,26321,135054,0 +65833,7,9498,132615,0 +65834,3,7173,132627,0 +65835,13,25901,134953,0 +65836,8,17474,132960,0 +65837,4,7212,132507,0 +65838,6,21398,132587,0 +65839,0,22881,133118,0 +65840,5,7174,134581,0 +65841,1,9497,135060,0 +65842,13,27222,134950,0 +65843,0,28987,133072,0 +65844,0,17226,133076,0 +65845,15,17599,135468,0 +65846,15,17600,135469,0 +65847,15,17602,135467,0 +65848,11,17788,133061,0 +65849,0,17454,133130,0 +65850,0,15926,133117,0 +65851,0,27052,132767,0 +65852,0,18422,133135,0 +65853,7,8366,132616,0 +65854,3,8318,132749,0 +65855,8,8321,132938,0 +65856,4,7790,132492,0 +65857,6,13924,132535,0 +65858,5,8319,134583,0 +65859,1,22309,135040,0 +65860,8,18256,132963,0 +65861,11,20616,135350,0 +65862,0,15368,133120,0 +65863,11,18254,135353,0 +65864,11,20032,135355,0 +65865,12,21025,135154,0 +65866,11,18328,132405,0 +65867,11,18264,135654,0 +65868,11,20249,135351,0 +65869,11,18268,135432,0 +65870,6,14883,132587,0 +65871,7,18029,132615,0 +65872,1,5892,135056,0 +65873,8,12624,132951,0 +65874,11,18270,135327,0 +65875,0,21301,133127,0 +65876,8,13348,132958,0 +65877,5,18274,134590,0 +65878,9,22996,133770,0 +65879,6,12384,132536,0 +65880,12,20553,135499,0 +65881,5,21403,134592,0 +65882,13,18824,134953,0 +65883,13,18826,134948,0 +65884,4,11588,132516,0 +65885,3,12793,132723,0 +65886,5,12345,134581,0 +65887,11,20274,135165,0 +65888,7,18352,132618,0 +65889,8,24631,132946,0 +65890,12,18298,135616,0 +65891,11,19620,133049,0 +65892,5,11619,134586,0 +65893,3,11906,135009,0 +65894,11,22233,135131,0 +65895,11,20193,135357,0 +65896,11,18312,133054,0 +65897,0,18322,133117,0 +65898,12,20663,134536,0 +65899,11,18324,133044,0 +65900,11,18325,135352,0 +65901,11,21238,135578,0 +65902,12,20556,135489,0 +65903,11,18330,133718,0 +65904,7,18331,132605,0 +65905,0,15347,133117,0 +65906,1,18333,135049,0 +65907,0,18334,133130,0 +65908,7,11188,132611,0 +65909,3,5350,132718,0 +65910,8,16687,132951,0 +65911,11,19645,133489,0 +65912,11,20323,135152,0 +65913,11,20595,135638,0 +65914,6,4623,132539,0 +65915,7,6038,132608,0 +65916,12,18372,135611,0 +65917,11,18373,133483,0 +65918,13,18374,134956,0 +65919,11,19298,132394,0 +65920,11,20311,134298,0 +65921,3,11404,132720,0 +65922,5,12101,134585,0 +65923,11,21514,135225,0 +65924,11,24351,132398,0 +65925,0,18392,132266,0 +65926,11,22235,135128,0 +65927,11,19309,132394,0 +65928,11,20269,135168,0 +65929,5,22426,134588,0 +65930,11,18403,132405,0 +65931,11,19295,132415,0 +65932,12,3699,135615,0 +65933,11,18406,133045,0 +65934,12,15238,135467,0 +65935,11,18409,135347,0 +65936,0,15371,132995,0 +65937,3,18428,135018,0 +65938,6,18431,132535,0 +65939,11,19553,135350,0 +65940,9,22988,133757,0 +65941,11,5417,135158,0 +65942,11,20424,135147,0 +65943,3,9021,135011,0 +65944,3,18440,135015,0 +65945,11,20348,135151,0 +65946,8,17073,132959,0 +65947,6,15628,132540,0 +65948,11,20574,135654,0 +65949,11,19307,132397,0 +65950,11,20300,135473,0 +65951,1,18497,135054,0 +65952,0,18498,133135,0 +65953,7,28156,132601,0 +65954,1,18901,135033,0 +65955,5,6362,134589,0 +65956,6,7762,132539,0 +65957,11,20432,135159,0 +65958,11,18531,133479,0 +65959,13,18533,134952,0 +65960,8,18991,132961,0 +65961,3,14760,132659,0 +65962,11,19302,132400,0 +65963,6,4440,132541,0 +65964,8,16412,132956,0 +65965,9,14851,133763,0 +65966,6,11220,132588,0 +65967,7,28117,132605,0 +65968,11,18572,133486,0 +65969,8,17416,132960,0 +65970,13,18822,134948,0 +65971,6,12841,132535,0 +65972,6,23644,132588,0 +65973,9,28097,133757,0 +65974,3,26513,132658,0 +65975,3,12115,132751,0 +65976,11,18578,133038,0 +65977,5,5822,134593,0 +65978,0,11976,133149,0 +65979,12,28307,135469,0 +65980,6,19913,132536,0 +65981,9,28299,133760,0 +65982,13,20900,134959,0 +65983,6,14791,132582,0 +65984,0,8380,133121,0 +65985,8,11590,132952,0 +65986,4,27323,132515,0 +65987,11,22223,135562,0 +65988,11,20475,135654,0 +65989,11,20289,135162,0 +65990,11,19130,132403,0 +65991,11,19746,133060,0 +65992,9,28326,133754,0 +65993,9,28297,133774,0 +65994,8,10696,132957,0 +65995,13,20975,134961,0 +65996,11,13488,135280,0 +65997,6,11297,132543,0 +65998,9,25916,133774,0 +65999,4,9183,132514,0 +66000,6,13350,132579,0 +66001,9,23034,133769,0 +66002,8,11876,132939,0 +66003,3,17635,135010,0 +66004,4,13037,132506,0 +66005,6,13038,132582,0 +66006,7,13039,132611,0 +66007,9,25960,133753,0 +66008,8,22686,132946,0 +66009,13,18823,134955,0 +66010,3,12168,132627,0 +66011,6,10111,132537,0 +66012,7,11108,132611,0 +66013,15,28023,135153,0 +66014,5,8190,134590,0 +66015,3,25944,132656,0 +66016,7,16420,132604,0 +66017,7,14890,132612,0 +66018,9,25978,133770,0 +66019,4,13069,132500,0 +66020,3,27751,135010,0 +66021,9,27752,133767,0 +66022,8,27753,132961,0 +66023,5,27755,134594,0 +66024,4,28477,132514,0 +66025,15,27756,134333,0 +66026,1,24501,135039,0 +66027,3,17572,132725,0 +66028,9,25975,133766,0 +66029,4,13014,132493,0 +66030,13,26121,134953,0 +66031,1,5381,135038,0 +66032,9,26006,133762,0 +66033,3,27856,132661,0 +66034,6,8062,132537,0 +66035,9,27768,133759,0 +66036,8,8063,132958,0 +66037,1,27764,135039,0 +66038,3,27769,132739,0 +66039,7,27783,132602,0 +66040,8,27778,132945,0 +66041,4,27777,132495,0 +66042,5,27770,134583,0 +66043,1,27776,135046,0 +66044,13,26060,134955,0 +66045,3,28424,132647,0 +66046,6,28423,132539,0 +66047,7,28418,132612,0 +66048,9,15218,133769,0 +66049,8,28422,132956,0 +66050,5,25280,134587,0 +66051,3,28425,132663,0 +66052,4,25282,132504,0 +66053,7,12186,132611,0 +66054,0,26550,133117,0 +66055,8,11467,132956,0 +66056,5,9749,134587,0 +66057,6,25980,132539,0 +66058,7,25786,132606,0 +66059,3,25787,132634,0 +66060,9,26250,133757,0 +66061,8,25788,132962,0 +66062,4,25784,132515,0 +66063,0,25991,132768,0 +66064,5,26249,134583,0 +66065,1,25790,135040,0 +66066,3,28064,135017,0 +66067,4,25311,132499,0 +66068,6,28088,132539,0 +66069,9,28065,133765,0 +66070,0,28067,133153,0 +66071,7,28057,132608,0 +66072,8,28062,132955,0 +66073,1,28068,135033,0 +66074,15,21603,134333,0 +66075,5,25150,134588,0 +66076,3,28072,132664,0 +66077,6,3172,132541,0 +66078,0,13323,132514,0 +66079,8,2481,132949,0 +66080,5,3065,134594,0 +66081,6,25004,132589,0 +66082,7,26155,132616,0 +66083,3,25002,132631,0 +66084,9,27794,133759,0 +66085,8,16681,132946,0 +66086,4,25003,132516,0 +66087,5,19517,134583,0 +66088,1,27790,135057,0 +66089,3,8145,135017,0 +66090,9,15040,133754,0 +66091,5,5855,134593,0 +66092,1,28409,135033,0 +66093,3,3586,132644,0 +66094,0,28414,133693,0 +66095,13,25940,134949,0 +66096,9,23073,133753,0 +66097,8,8346,132959,0 +66098,1,5240,135049,0 +66099,7,7651,132608,0 +66100,6,14870,132589,0 +66101,7,25931,132612,0 +66102,3,25932,132750,0 +66103,9,25938,133770,0 +66104,8,25933,132960,0 +66105,4,14868,132500,0 +66106,5,25934,134584,0 +66107,1,25935,135054,0 +66108,13,18819,134951,0 +66109,0,27799,133131,0 +66110,1,26116,135033,0 +66111,3,27800,132664,0 +66112,15,27801,134125,0 +66113,4,8196,132501,0 +66114,6,12599,132535,0 +66115,7,17886,132615,0 +66116,3,11901,132720,0 +66117,9,23018,133770,0 +66118,8,11903,132956,0 +66119,5,12918,134592,0 +66120,1,12520,135032,0 +66121,7,26181,132600,0 +66122,3,26183,132759,0 +66123,13,18666,134948,0 +66124,9,13963,133772,0 +66125,4,6215,132497,0 +66126,6,9699,132589,0 +66127,0,26170,132767,0 +66128,5,11285,134586,0 +66129,1,9697,135036,0 +66130,3,19829,132722,0 +66131,8,23774,132957,0 +66132,4,11238,132500,0 +66133,0,22516,133127,0 +66134,5,11675,134586,0 +66135,1,18011,135054,0 +66136,7,27350,132602,0 +66137,6,11239,132588,0 +66138,0,19667,133151,0 +66139,3,24352,132718,0 +66140,5,20405,134589,0 +66141,3,4368,132654,0 +66142,5,8236,134591,0 +66143,8,8307,132939,0 +66144,3,24950,132679,0 +66145,3,18837,132648,0 +66146,3,19093,135013,0 +66147,0,18861,133763,0 +66148,8,19095,132953,0 +66149,8,9534,132952,0 +66150,3,8161,132649,0 +66151,3,9575,132683,0 +66152,8,11126,132943,0 +66153,0,18860,133693,0 +66154,0,19060,133129,0 +66155,6,21154,132539,0 +66156,1,4925,135056,0 +66157,1,12867,135056,0 +66158,1,17703,135054,0 +66159,0,18872,133131,0 +66160,6,9048,132539,0 +66161,0,18877,133132,0 +66162,0,16396,133694,0 +66163,3,13119,132645,0 +66164,0,19000,132767,0 +66165,3,14606,132666,0 +66166,5,20209,134591,0 +66167,6,18933,132539,0 +66168,5,10199,134591,0 +66169,5,10636,134582,0 +66170,2,18916,135027,0 +66171,3,18917,132662,0 +66172,2,11977,135028,0 +66173,2,18923,135029,0 +66174,2,18348,135027,0 +66175,3,9745,132724,0 +66176,6,2496,132543,0 +66177,7,28124,132606,0 +66178,0,28131,133134,0 +66179,8,29002,132957,0 +66180,1,10177,135049,0 +66181,5,5346,134589,0 +66182,3,28165,132687,0 +66183,4,7200,132492,0 +66184,4,9965,132505,0 +66185,6,5823,132535,0 +66186,7,12955,132613,0 +66187,3,6020,132632,0 +66188,8,19017,132946,0 +66189,1,12951,135044,0 +66190,7,15661,132613,0 +66191,3,15659,132750,0 +66192,13,20972,135964,0 +66193,9,26331,133754,0 +66194,8,19717,132963,0 +66195,4,19163,132524,0 +66196,6,19164,132587,0 +66197,0,26330,132767,0 +66198,5,15660,134584,0 +66199,1,26329,135061,0 +66200,3,7804,132722,0 +66201,8,11250,132955,0 +66202,4,5512,132502,0 +66203,6,5514,132542,0 +66204,5,5513,134589,0 +66205,1,5511,135039,0 +66206,7,2880,132607,0 +66207,6,25281,132543,0 +66208,7,27601,132611,0 +66209,0,27606,132767,0 +66210,9,27607,133769,0 +66211,8,27602,132955,0 +66212,1,27605,135037,0 +66213,5,27598,134590,0 +66214,3,27609,132680,0 +66215,4,27614,132514,0 +66216,3,27599,132651,0 +66217,3,25000,132725,0 +66218,6,3395,132541,0 +66219,7,27719,132604,0 +66220,9,27721,133762,0 +66221,4,1107,132500,0 +66222,8,2981,132958,0 +66223,5,4263,134586,0 +66224,1,27733,135039,0 +66225,3,13199,132632,0 +66226,6,15669,132586,0 +66227,9,26304,133758,0 +66228,8,13203,132944,0 +66229,4,13200,132496,0 +66230,0,26255,132768,0 +66231,5,13426,134584,0 +66232,1,15663,135033,0 +66233,7,15670,132613,0 +66234,7,27426,132615,0 +66235,3,27427,132746,0 +66236,8,27428,132965,0 +66237,4,27429,132519,0 +66238,6,27425,132583,0 +66239,0,19759,133071,0 +66240,5,27430,134583,0 +66241,3,25457,135021,0 +66242,7,25460,132604,0 +66243,6,25459,132542,0 +66244,9,24065,133768,0 +66245,0,9864,132768,0 +66246,8,27639,132940,0 +66247,5,27629,134593,0 +66248,1,27640,135033,0 +66249,3,27645,132653,0 +66250,4,25306,132493,0 +66251,4,8316,132501,0 +66252,6,18958,132541,0 +66253,7,7116,132617,0 +66254,9,27743,133762,0 +66255,8,27745,132957,0 +66256,3,13650,132646,0 +66257,5,8389,134586,0 +66258,1,8387,135055,0 +66259,4,17750,132500,0 +66260,6,17865,132536,0 +66261,7,21671,132617,0 +66262,3,17862,132629,0 +66263,13,26152,134951,0 +66264,0,25826,132767,0 +66265,8,16683,132960,0 +66266,5,17935,134586,0 +66267,1,23490,135054,0 +66268,3,25314,132751,0 +66269,8,25317,132963,0 +66270,4,27411,132521,0 +66271,6,27405,132584,0 +66272,0,27408,132767,0 +66273,5,25315,134586,0 +66274,1,22594,135061,0 +66275,7,27406,132613,0 +66276,1,9718,135052,0 +66277,9,22995,133754,0 +66278,0,28853,133163,0 +66279,8,28083,132957,0 +66280,3,28112,132658,0 +66281,3,9041,135021,0 +66282,9,23042,133770,0 +66283,8,19005,132937,0 +66284,0,27809,133148,0 +66285,1,4942,135054,0 +66286,4,5583,132502,0 +66287,9,26173,133766,0 +66288,13,26176,134956,0 +66289,0,22855,133127,0 +66290,1,26164,135059,0 +66291,6,27400,132535,0 +66292,7,27402,132602,0 +66293,3,27397,132739,0 +66294,4,9067,132495,0 +66295,0,27404,132767,0 +66296,5,9068,134581,0 +66297,1,27403,135044,0 +66298,1,27867,135041,0 +66299,9,15214,133758,0 +66300,3,28992,132671,0 +66301,5,25198,134586,0 +66302,3,23665,132649,0 +66303,3,9652,132717,0 +66304,4,7728,132501,0 +66305,6,9653,132535,0 +66306,7,18978,132615,0 +66307,9,23048,133754,0 +66308,0,18985,133076,0 +66309,5,11280,134586,0 +66310,1,18983,135042,0 +66311,7,17743,132602,0 +66312,3,23672,132751,0 +66313,9,26278,133770,0 +66314,8,17741,132937,0 +66315,4,17737,132500,0 +66316,6,23783,132589,0 +66317,5,17738,134586,0 +66318,1,9071,135054,0 +66319,6,27380,132535,0 +66320,7,17372,132602,0 +66321,3,9137,132723,0 +66322,0,16297,133123,0 +66323,8,27381,132938,0 +66324,5,27383,134583,0 +66325,1,16458,135049,0 +66326,3,9583,135008,0 +66327,9,26126,133772,0 +66328,0,15916,133153,0 +66329,3,28479,132670,0 +66330,7,4393,132612,0 +66331,6,25478,132541,0 +66332,8,15684,132959,0 +66333,0,15432,133694,0 +66334,5,4395,134586,0 +66335,1,23936,135046,0 +66336,3,4392,132722,0 +66337,7,24798,132602,0 +66338,3,13423,132751,0 +66339,9,26259,133766,0 +66340,8,26244,132938,0 +66341,4,13381,132500,0 +66342,6,25293,132584,0 +66343,0,27804,133345,0 +66344,5,13424,134586,0 +66345,1,27805,135054,0 +66346,3,13204,132647,0 +66347,6,13207,132535,0 +66348,8,23645,132938,0 +66349,4,13205,132493,0 +66350,5,13206,134583,0 +66351,1,27422,135033,0 +66352,7,27420,132602,0 +66353,0,18976,133693,0 +66354,0,27862,133117,0 +66355,3,19049,132629,0 +66356,4,8827,132495,0 +66357,8,7732,132953,0 +66358,6,6143,132536,0 +66359,7,5322,132602,0 +66360,6,14325,132541,0 +66361,13,18811,135940,0 +66362,13,18776,134949,0 +66363,13,20873,134950,0 +66364,13,20831,136185,0 +66365,13,20833,135940,0 +66366,3,22553,132744,0 +66367,8,26352,132940,0 +66368,4,17939,132501,0 +66369,6,18555,132586,0 +66370,0,25438,133074,0 +66371,5,17932,134588,0 +66372,1,26364,135033,0 +66373,7,18556,132606,0 +66374,6,17752,132589,0 +66375,7,26362,132612,0 +66376,3,26332,132741,0 +66377,8,17753,132966,0 +66378,4,16460,132502,0 +66379,5,17751,134583,0 +66380,1,26337,135032,0 +66381,3,18012,132751,0 +66382,6,18013,132589,0 +66383,8,23471,132937,0 +66384,4,17949,132517,0 +66385,0,16413,133101,0 +66386,5,19267,134584,0 +66387,1,23612,135054,0 +66388,7,18014,132616,0 +66389,3,6082,132723,0 +66390,5,3201,134592,0 +66391,6,4014,132539,0 +66392,0,28173,133681,0 +66393,0,27774,133138,0 +66394,6,27771,132535,0 +66395,6,11839,132538,0 +66396,4,11837,132519,0 +66397,8,11844,132952,0 +66398,7,17646,132606,0 +66399,4,7755,132515,0 +66400,0,17718,133149,0 +66401,0,11700,133149,0 +66402,0,17900,133149,0 +66403,0,19409,133149,0 +66404,0,22423,133149,0 +66405,0,16098,133146,0 +66406,0,23161,133151,0 +66407,12,20744,135616,0 +66408,9,23129,133763,0 +66409,0,17729,133127,0 +66410,11,19782,133053,0 +66411,0,18138,133149,0 +66412,5,18108,134593,0 +66413,8,12542,132936,0 +66414,3,10719,135009,0 +66415,5,19918,134587,0 +66416,12,20649,135489,0 +66417,11,28796,132395,0 +66418,12,28747,135463,0 +66419,11,20149,135351,0 +66420,0,15616,133756,0 +66421,6,7056,132535,0 +66422,3,7774,132723,0 +66423,3,9548,132723,0 +66424,8,28685,132945,0 +66425,0,23166,133151,0 +66426,11,19550,132392,0 +66427,11,19551,135274,0 +66428,11,19552,135325,0 +66429,11,19555,135637,0 +66430,11,6436,135641,0 +66431,11,18391,132398,0 +66432,11,19617,133043,0 +66433,11,20259,135165,0 +66434,11,20189,135341,0 +66435,6,7458,132539,0 +66436,0,22928,132767,0 +66437,8,28800,132945,0 +66438,7,28711,133345,0 +66439,5,19900,134584,0 +66440,5,23390,134583,0 +66441,8,11144,132940,0 +66442,9,28209,133770,0 +66443,11,19311,135575,0 +66444,8,11985,132955,0 +66445,5,7646,134592,0 +66446,1,19991,135040,0 +66447,6,28238,132541,0 +66448,13,20820,134948,0 +66449,11,22229,135662,0 +66450,11,20570,135341,0 +66451,11,20275,135150,0 +66452,6,18832,132536,0 +66453,6,28263,132588,0 +66454,6,22434,132592,0 +66455,11,20297,135322,0 +66456,12,28267,135463,0 +66457,7,16027,132611,0 +66458,6,13383,132582,0 +66459,15,19786,133729,0 +66460,6,4630,132536,0 +66461,0,28212,133090,0 +66462,5,7080,134585,0 +66463,0,5257,133119,0 +66464,1,8220,135049,0 +66465,7,28343,132616,0 +66466,4,8401,132500,0 +66467,0,15304,133124,0 +66468,0,19920,132767,0 +66469,11,19779,135355,0 +66470,11,2669,135344,0 +66471,3,19953,132658,0 +66472,3,28710,132747,0 +66473,8,28688,132943,0 +66474,12,21027,135465,0 +66475,13,20974,134963,0 +66476,4,28684,132500,0 +66477,4,13389,132513,0 +66478,1,28744,135059,0 +66479,3,13131,132743,0 +66480,8,7763,132966,0 +66481,0,17409,133140,0 +66482,3,17636,132627,0 +66483,6,19794,132535,0 +66484,8,17639,132617,0 +66485,4,13437,132504,0 +66486,11,20030,135279,0 +66487,4,19803,132504,0 +66488,7,19806,132607,0 +66489,6,13343,132541,0 +66490,11,20035,135348,0 +66491,11,19892,133048,0 +66492,3,9026,132679,0 +66493,5,9028,134591,0 +66494,8,12870,132951,0 +66495,4,9189,132498,0 +66496,9,28298,133762,0 +66497,11,19835,135277,0 +66498,11,20293,135164,0 +66499,3,22365,132720,0 +66500,11,20273,135652,0 +66501,0,19838,133127,0 +66502,12,20788,135466,0 +66503,11,19869,133486,0 +66504,5,11030,134594,0 +66505,11,20258,135169,0 +66506,3,17671,132743,0 +66507,11,20571,135348,0 +66508,8,20476,132940,0 +66509,11,20502,135325,0 +66510,11,20538,135325,0 +66511,11,20031,135353,0 +66512,11,28262,133047,0 +66513,5,8181,134588,0 +66514,0,28196,133123,0 +66515,3,28178,132663,0 +66516,3,21537,132629,0 +66517,13,20985,134954,0 +66518,13,20986,134954,0 +66519,13,20987,134954,0 +66520,15,27556,134333,0 +66521,12,25077,135469,0 +66522,11,28629,133053,0 +66523,12,21096,135139,0 +66524,12,21098,135139,0 +66525,12,21101,135469,0 +66526,12,21111,135495,0 +66527,12,21112,135489,0 +66528,12,21113,135495,0 +66529,9,28731,133760,0 +66530,11,21462,134294,0 +66531,11,21159,132395,0 +66532,11,21192,135274,0 +66533,11,21194,135274,0 +66534,11,21251,135145,0 +66535,3,8170,132666,0 +66536,11,21751,133476,0 +66537,9,28181,133770,0 +66538,1,28217,135055,0 +66539,11,21461,134294,0 +66540,11,21144,134294,0 +66541,6,5370,132579,0 +66542,15,21373,135467,0 +66543,11,21552,135145,0 +66544,11,23270,132369,0 +66545,3,20992,132743,0 +66546,1,21196,135040,0 +66547,3,16661,132638,0 +66548,1,17771,135056,0 +66549,6,28658,132535,0 +66550,12,20555,135492,0 +66551,13,21613,134948,0 +66552,1,28725,135057,0 +66553,3,21898,132737,0 +66554,11,28779,135646,0 +66555,4,28642,132518,0 +66556,9,27011,133771,0 +66557,3,21578,132743,0 +66558,7,28820,132612,0 +66559,1,28704,135044,0 +66560,11,28765,132403,0 +66561,0,28826,133069,0 +66562,8,17861,132938,0 +66563,6,17860,132535,0 +66564,11,21715,132945,0 +66565,8,21718,132956,0 +66566,0,15302,133125,0 +66567,3,21719,132648,0 +66568,12,28807,135150,0 +66569,7,12506,132601,0 +66570,7,28805,132617,0 +66571,7,21754,132617,0 +66572,1,21592,135033,0 +66573,4,23972,132522,0 +66574,11,21775,135357,0 +66575,6,28669,132582,0 +66576,11,21793,133046,0 +66577,11,28821,133046,0 +66578,4,5461,132500,0 +66579,0,22029,135805,0 +66580,11,22031,135124,0 +66581,9,22997,133770,0 +66582,8,11679,132938,0 +66583,11,22212,135576,0 +66584,11,21809,135326,0 +66585,5,1512,134589,0 +66586,6,28660,132539,0 +66587,5,25544,134593,0 +66588,11,22032,135131,0 +66589,0,3087,133146,0 +66590,2,21841,135022,0 +66591,1,28792,135046,0 +66592,9,28071,133753,0 +66593,5,10397,134583,0 +66594,11,28245,135356,0 +66595,11,28312,135311,0 +66596,9,23553,133760,0 +66597,12,28108,135470,0 +66598,11,25632,135128,0 +66599,8,28332,132960,0 +66600,15,28226,133731,0 +66601,6,26799,132582,0 +66602,9,28325,133757,0 +66603,1,28313,135061,0 +66604,3,13726,132722,0 +66605,8,28342,132959,0 +66606,1,28304,135059,0 +66607,11,22227,135349,0 +66608,11,28075,133060,0 +66609,11,28073,132401,0 +66610,0,4177,133158,0 +66611,13,18750,134953,0 +66612,1,28254,135056,0 +66613,7,28255,132606,0 +66614,8,11604,132951,0 +66615,6,16408,132589,0 +66616,11,28679,132404,0 +66617,11,25625,133045,0 +66618,11,25609,135651,0 +66619,11,21956,133044,0 +66620,0,28762,133143,0 +66621,3,22442,132629,0 +66622,5,7808,134584,0 +66623,11,28719,132416,0 +66624,1,28232,135056,0 +66625,11,28207,132393,0 +66626,0,28135,133069,0 +66627,6,17814,132582,0 +66628,3,28244,132638,0 +66629,8,11699,132938,0 +66630,11,28086,135327,0 +66631,0,22036,133131,0 +66632,1,4324,135047,0 +66633,4,8241,132500,0 +66634,3,28095,132717,0 +66635,3,16391,132723,0 +66636,5,28182,134586,0 +66637,3,23187,132638,0 +66638,9,28240,133768,0 +66639,8,7805,132960,0 +66640,7,23463,132616,0 +66641,9,28210,133760,0 +66642,8,11772,132951,0 +66643,11,22180,133476,0 +66644,0,35174,133168,0 +66645,5,18849,135725,0 +66646,11,3175,135640,0 +66647,11,22248,135651,0 +66648,11,22249,132408,0 +66649,11,28699,135144,0 +66650,9,28690,133770,0 +66651,4,28777,132523,0 +66652,11,22258,135641,0 +66653,11,22319,132392,0 +66654,11,22598,132395,0 +66655,12,28248,135139,0 +66656,11,22366,135325,0 +66657,11,22378,135325,0 +66658,11,22391,135225,0 +66659,11,22402,135274,0 +66660,11,22403,135640,0 +66661,11,22404,135131,0 +66662,3,21305,132743,0 +66663,1,22534,135054,0 +66664,7,19760,132612,0 +66665,0,21257,133125,0 +66666,5,22520,134584,0 +66667,5,22545,134584,0 +66668,3,21179,132751,0 +66669,4,21180,132500,0 +66670,8,23697,132960,0 +66671,6,21181,132584,0 +66672,5,25745,134583,0 +66673,3,24504,132745,0 +66674,4,5679,132490,0 +66675,7,24511,132618,0 +66676,6,24513,132582,0 +66677,0,14964,133124,0 +66678,1,24509,135033,0 +66679,5,24506,134584,0 +66680,15,22617,133622,0 +66681,13,22638,134955,0 +66682,11,22645,132395,0 +66683,3,22647,132683,0 +66684,11,20198,135317,0 +66685,8,28680,132953,0 +66686,9,22989,133757,0 +66687,11,22654,135272,0 +66688,6,17429,132603,0 +66689,11,22672,135131,0 +66690,11,22695,135279,0 +66691,8,12198,132939,0 +66692,11,21952,132404,0 +66693,11,28673,133044,0 +66694,11,22721,135639,0 +66695,11,22722,135469,0 +66696,11,22733,135351,0 +66697,3,26053,132681,0 +66698,7,25453,132604,0 +66699,8,28797,132957,0 +66700,7,28824,132616,0 +66701,9,24108,133773,0 +66702,9,23111,133770,0 +66703,8,28771,132966,0 +66704,6,27829,132587,0 +66705,6,22779,132592,0 +66706,1,28727,135056,0 +66707,11,28789,135648,0 +66708,11,31966,135291,0 +66709,0,2457,133148,0 +66710,1,22795,135042,0 +66711,4,8811,132500,0 +66712,11,25613,135661,0 +66713,11,22906,135330,0 +66714,11,22814,135325,0 +66715,13,23419,134966,0 +66716,3,4325,132741,0 +66717,0,22833,132768,0 +66718,12,24107,133729,0 +66719,4,12540,132499,0 +66720,9,26299,133770,0 +66721,3,22843,132658,0 +66722,6,23486,132582,0 +66723,3,13138,132746,0 +66724,5,23485,134584,0 +66725,3,22860,132738,0 +66726,6,9181,132582,0 +66727,1,5833,135046,0 +66728,3,13380,132745,0 +66729,5,22882,134584,0 +66730,11,22885,135581,0 +66731,3,4474,132634,0 +66732,1,25827,135051,0 +66733,8,19753,132937,0 +66734,8,22897,132964,0 +66735,0,22901,133111,0 +66736,4,22342,132502,0 +66737,0,15378,133126,0 +66738,8,10944,132960,0 +66739,8,22917,132964,0 +66740,3,16726,132629,0 +66741,12,22929,135533,0 +66742,12,28813,135496,0 +66743,11,22971,135342,0 +66744,11,23171,133741,0 +66745,11,23172,133639,0 +66746,11,23174,135471,0 +66747,11,23175,133741,0 +66748,11,23177,133741,0 +66749,0,23197,133161,0 +66750,11,23198,132395,0 +66751,5,12516,134585,0 +66752,3,23200,132635,0 +66753,11,5190,135323,0 +66754,11,25600,132418,0 +66755,11,23234,132403,0 +66756,11,23236,132396,0 +66757,11,23434,135581,0 +66758,11,23241,135340,0 +66759,11,24255,135277,0 +66760,11,20299,135315,0 +66761,11,23904,132400,0 +66762,11,23253,133476,0 +66763,11,23254,133476,0 +66764,11,23255,133476,0 +66765,11,24813,135349,0 +66766,11,23262,132797,0 +66767,3,5864,132716,0 +66768,11,23271,135663,0 +66769,11,25047,133046,0 +66770,11,23274,135291,0 +66771,11,28504,132403,0 +66772,11,23281,133942,0 +66773,11,23283,135131,0 +66774,11,23316,133639,0 +66775,11,23317,133639,0 +66776,11,23318,133639,0 +66777,11,23319,133639,0 +66778,11,23320,133639,0 +66779,11,23321,133741,0 +66780,11,23322,133741,0 +66781,11,23323,133741,0 +66782,11,23324,133741,0 +66783,11,23355,135274,0 +66784,11,23357,133476,0 +66785,11,23379,135274,0 +66786,11,23386,135280,0 +66787,3,28335,132744,0 +66788,11,23401,133489,0 +66789,11,23405,135274,0 +66790,5,23403,134583,0 +66791,0,23411,133133,0 +66792,1,4940,135041,0 +66793,13,4404,134950,0 +66794,5,25543,134584,0 +66795,7,22752,132616,0 +66796,11,25647,135350,0 +66797,11,25646,135353,0 +66798,12,23455,135463,0 +66799,11,23465,135146,0 +66800,11,23472,135277,0 +66801,11,23508,135280,0 +66802,0,23519,133125,0 +66803,11,23539,135145,0 +66804,0,23544,133126,0 +66805,13,2149,134949,0 +66806,5,14869,134586,0 +66807,5,23551,134586,0 +66808,9,23554,133770,0 +66809,11,23557,133054,0 +66810,11,23561,135271,0 +66811,11,28676,135311,0 +66812,11,28804,132394,0 +66813,4,5742,132504,0 +66814,9,28661,133760,0 +66815,11,28809,133046,0 +66816,5,28648,134586,0 +66817,3,10927,132725,0 +66818,11,28758,135128,0 +66819,11,25470,135578,0 +66820,13,20909,134948,0 +66821,11,23594,135160,0 +66822,12,28631,135473,0 +66823,11,28799,133054,0 +66824,9,27152,133770,0 +66825,5,2311,134586,0 +66826,3,25731,132721,0 +66827,5,28438,134583,0 +66828,4,7542,132511,0 +66829,7,11492,132601,0 +66830,1,28643,135045,0 +66831,11,25533,132415,0 +66832,11,28748,132399,0 +66833,11,28791,132401,0 +66834,11,25599,132418,0 +66835,12,28772,135499,0 +66836,12,25602,135499,0 +66837,12,28766,135499,0 +66838,12,25606,135499,0 +66839,11,28671,133041,0 +66840,11,28706,133053,0 +66841,11,28776,133041,0 +66842,11,28689,133057,0 +66843,11,28681,133056,0 +66844,15,24122,134336,0 +66845,15,28803,134333,0 +66846,11,25639,135327,0 +66847,11,28594,135313,0 +66848,11,28708,135340,0 +66849,11,25640,135343,0 +66850,11,25641,135352,0 +66851,12,25607,135533,0 +66852,12,25608,135533,0 +66853,11,28768,135326,0 +66854,11,28678,135351,0 +66855,11,28675,135277,0 +66856,11,28714,135273,0 +66857,11,25627,133488,0 +66858,11,28677,133041,0 +66859,11,25623,133041,0 +66860,11,28707,135356,0 +66861,11,28598,135345,0 +66862,11,28717,135271,0 +66863,11,28764,135125,0 +66864,11,18388,135129,0 +66865,11,12562,135130,0 +66866,11,25630,135125,0 +66867,11,28790,135125,0 +66868,11,25633,135130,0 +66869,11,28672,135131,0 +66870,12,28787,135471,0 +66871,12,28626,135471,0 +66872,1,28351,135055,0 +66873,3,16116,132741,0 +66874,6,28361,132590,0 +66875,6,28353,132586,0 +66876,8,13305,132944,0 +66877,8,28352,132937,0 +66878,0,28360,133127,0 +66879,5,28716,134584,0 +66880,7,19264,132616,0 +66881,4,28363,132521,0 +66882,11,23601,135145,0 +66883,3,23604,132643,0 +66884,13,25134,134961,0 +66885,13,25133,134951,0 +66886,3,23605,132638,0 +66887,6,22761,132539,0 +66888,6,28597,132539,0 +66889,1,28612,135049,0 +66890,4,28657,132500,0 +66891,7,22593,132618,0 +66892,7,15768,132612,0 +66893,9,28613,134348,0 +66894,3,8150,132719,0 +66895,6,28664,132579,0 +66896,0,28601,133121,0 +66897,0,28739,133072,0 +66898,1,28709,135049,0 +66899,4,28302,132504,0 +66900,4,28369,132514,0 +66901,3,28663,132628,0 +66902,6,28441,132535,0 +66903,8,28434,132944,0 +66904,0,28440,133126,0 +66905,0,15383,133120,0 +66906,5,28437,134583,0 +66907,5,28447,134583,0 +66908,1,28444,135049,0 +66909,1,28443,135042,0 +66910,1,28665,135054,0 +66911,4,24666,132512,0 +66912,7,28668,132616,0 +66913,12,21071,135617,0 +66914,12,28786,135617,0 +66915,12,24720,135617,0 +66916,4,23628,132522,0 +66917,4,5739,132496,0 +66918,4,28356,132516,0 +66919,12,28743,135617,0 +66920,12,23639,135493,0 +66921,11,25155,135128,0 +66922,11,23656,135274,0 +66923,8,19904,132963,0 +66924,11,23683,135316,0 +66925,11,23692,135325,0 +66926,1,23704,135054,0 +66927,11,25180,133041,0 +66928,3,11102,132748,0 +66929,5,25208,134593,0 +66930,12,23723,135424,0 +66931,12,25603,135498,0 +66932,7,23730,132608,0 +66933,8,23736,132947,0 +66934,1,8975,135033,0 +66935,11,23742,132945,0 +66936,7,28436,132618,0 +66937,11,25619,133490,0 +66938,13,23750,134960,0 +66939,7,11654,132606,0 +66940,7,22938,132606,0 +66941,11,23791,135652,0 +66942,15,23797,134754,0 +66943,11,23798,135277,0 +66944,8,23827,132963,0 +66945,13,23835,134964,0 +66946,11,23836,135275,0 +66947,11,23837,135150,0 +66948,8,17680,132948,0 +66949,8,23627,132964,0 +66950,12,23850,135611,0 +66951,1,19154,135038,0 +66952,6,9017,132589,0 +66953,6,23354,132535,0 +66954,15,23867,135471,0 +66955,11,23875,135358,0 +66956,6,23901,132535,0 +66957,11,23908,135581,0 +66958,11,23909,134710,0 +66959,12,23917,135463,0 +66960,12,23918,135463,0 +66961,12,23919,135463,0 +66962,12,23920,135463,0 +66963,1,23923,132394,0 +66964,11,23948,133491,0 +66965,3,24760,132653,0 +66966,15,23955,133738,0 +66967,11,23969,135274,0 +66968,11,24014,135225,0 +66969,11,24015,135225,0 +66970,11,21513,135225,0 +66971,11,24016,135225,0 +66972,9,24013,133772,0 +66973,3,24024,132649,0 +66974,1,8022,135055,0 +66975,0,21908,133071,0 +66976,11,25036,135302,0 +66977,11,25614,135648,0 +66978,6,22372,132539,0 +66979,1,11318,135033,0 +66980,13,23825,134965,0 +66981,3,24066,132679,0 +66982,6,17739,132590,0 +66983,5,8223,134594,0 +66984,4,24071,132519,0 +66985,9,24073,133771,0 +66986,4,24074,132510,0 +66987,3,25040,132725,0 +66988,5,25042,134586,0 +66989,0,5677,133685,0 +66990,6,25051,132536,0 +66991,11,25629,133476,0 +66992,3,21236,132637,0 +66993,8,15606,132961,0 +66994,12,24106,133729,0 +66995,7,24110,132616,0 +66996,6,33114,132535,0 +66997,4,10429,132491,0 +66998,1,24115,135056,0 +66999,11,23276,135575,0 +67000,7,11848,132612,0 +67001,9,24174,133772,0 +67002,5,24162,134584,0 +67003,4,24164,132512,0 +67004,11,24167,135316,0 +67005,8,21155,132949,0 +67006,6,24179,132590,0 +67007,7,24180,132615,0 +67008,6,24181,132539,0 +67009,8,24183,132965,0 +67010,1,24185,135049,0 +67011,12,24186,135654,0 +67012,3,24189,132688,0 +67013,7,15609,132606,0 +67014,1,24193,135044,0 +67015,8,9220,132963,0 +67016,15,24282,134718,0 +67017,15,24283,134718,0 +67018,11,24296,132796,0 +67019,11,24343,135145,0 +67020,11,24342,135274,0 +67021,11,24366,135325,0 +67022,11,24370,135131,0 +67023,11,24394,135145,0 +67024,11,24445,135145,0 +67025,11,24446,132395,0 +67026,11,24452,135325,0 +67027,11,24461,135274,0 +67028,11,24473,135145,0 +67029,11,24479,135325,0 +67030,11,24480,135225,0 +67031,11,24489,135145,0 +67032,11,24490,135138,0 +67033,11,5554,135145,0 +67034,11,24503,135145,0 +67035,11,24517,135145,0 +67036,13,22831,134950,0 +67037,11,19541,133053,0 +67038,4,25235,132504,0 +67039,3,25207,132645,0 +67040,3,21957,132645,0 +67041,9,25232,133762,0 +67042,8,25231,132959,0 +67043,6,25233,132539,0 +67044,0,25230,133694,0 +67045,1,17746,135052,0 +67046,3,24612,132644,0 +67047,3,24610,132649,0 +67048,3,24635,132670,0 +67049,3,24636,132664,0 +67050,3,24637,132691,0 +67051,3,24638,132671,0 +67052,3,24639,132665,0 +67053,3,24640,132663,0 +67054,11,24655,135321,0 +67055,12,24721,135612,0 +67056,12,24743,133732,0 +67057,4,22815,132498,0 +67058,7,24749,132617,0 +67059,11,28782,132394,0 +67060,11,24756,135351,0 +67061,6,28627,132542,0 +67062,1,19475,135056,0 +67063,4,7796,132501,0 +67064,8,3994,132943,0 +67065,4,19178,132502,0 +67066,1,24772,135055,0 +67067,11,6451,135661,0 +67068,6,28604,132585,0 +67069,7,24793,132615,0 +67070,11,24816,135579,0 +67071,11,26679,135657,0 +67072,0,26680,132767,0 +67073,3,15986,132648,0 +67074,9,23422,133770,0 +67075,5,15984,134586,0 +67076,11,24919,133489,0 +67077,11,24925,135128,0 +67078,6,25871,132543,0 +67079,8,17478,132952,0 +67080,3,25869,132663,0 +67081,11,24926,135145,0 +67082,4,9670,132491,0 +67083,3,9669,135009,0 +67084,3,6370,135009,0 +67085,3,15820,132667,0 +67086,9,24928,133763,0 +67087,5,12341,134589,0 +67088,3,24932,132650,0 +67089,3,25877,132662,0 +67090,4,7820,132494,0 +67091,6,7750,132592,0 +67092,7,8191,132607,0 +67093,5,7821,134706,0 +67094,3,16531,132657,0 +67095,3,8180,132716,0 +67096,1,5093,135040,0 +67097,3,17275,132687,0 +67098,6,12257,132537,0 +67099,0,24942,133165,0 +67100,3,9172,135009,0 +67101,3,10403,132649,0 +67102,1,24966,135033,0 +67103,4,10087,132505,0 +67104,11,24981,135648,0 +67105,7,23392,132606,0 +67106,7,11501,132612,0 +67107,3,18834,132692,0 +67108,3,25203,132672,0 +67109,6,11146,132539,0 +67110,5,7895,134582,0 +67111,7,4308,132611,0 +67112,9,28054,133770,0 +67113,8,28056,132950,0 +67114,1,7498,135037,0 +67115,1,28055,135044,0 +67116,3,28098,132659,0 +67117,3,4305,135012,0 +67118,6,9184,132539,0 +67119,0,26302,133134,0 +67120,3,12759,135014,0 +67121,8,18590,132954,0 +67122,3,8141,135011,0 +67123,3,26011,132661,0 +67124,0,12163,132514,0 +67125,4,26022,132510,0 +67126,9,26015,133767,0 +67127,3,26017,132647,0 +67128,3,11871,135010,0 +67129,3,9175,132646,0 +67130,0,26044,132512,0 +67131,0,21633,132521,0 +67132,3,10094,135008,0 +67133,1,11560,135033,0 +67134,5,8175,134592,0 +67135,4,10083,132500,0 +67136,1,26104,135033,0 +67137,0,26309,133090,0 +67138,0,8806,132511,0 +67139,4,8135,132496,0 +67140,7,22891,132608,0 +67141,9,26189,133760,0 +67142,5,7939,134592,0 +67143,3,70732,135008,0 +67144,6,10104,132541,0 +67145,8,14588,132949,0 +67146,3,26142,132670,0 +67147,1,13067,135056,0 +67148,0,25135,132505,0 +67149,3,26131,132687,0 +67150,3,18024,135021,0 +67151,4,25098,132499,0 +67152,1,26213,135049,0 +67153,3,26211,132676,0 +67154,6,26268,132541,0 +67155,9,26271,133754,0 +67156,7,22355,132616,0 +67157,4,9027,132519,0 +67158,3,11877,132658,0 +67159,0,26277,132768,0 +67160,3,26256,132633,0 +67161,4,26252,132518,0 +67162,6,26261,132539,0 +67163,7,26253,132616,0 +67164,8,26258,132954,0 +67165,5,26260,134593,0 +67166,1,26263,135056,0 +67167,3,26254,132669,0 +67168,3,26288,132659,0 +67169,6,26285,132542,0 +67170,7,26287,132608,0 +67171,0,25196,133069,0 +67172,8,26290,132937,0 +67173,5,26300,134592,0 +67174,1,19508,135054,0 +67175,4,26284,132502,0 +67176,3,25389,135021,0 +67177,6,26225,132541,0 +67178,7,26216,132615,0 +67179,0,5767,133074,0 +67180,8,25431,132940,0 +67181,5,25426,134593,0 +67182,3,26226,132670,0 +67183,4,26221,132499,0 +67184,3,25039,132687,0 +67185,9,25884,133768,0 +67186,8,10882,132952,0 +67187,1,25887,135040,0 +67188,3,10077,135017,0 +67189,3,25889,132655,0 +67190,3,9400,135013,0 +67191,6,9008,132540,0 +67192,7,21757,132601,0 +67193,9,25958,133770,0 +67194,1,25965,135040,0 +67195,3,13667,132650,0 +67196,1,27872,135037,0 +67197,3,8156,135013,0 +67198,6,7782,132539,0 +67199,8,11002,132955,0 +67200,5,7781,134586,0 +67201,4,8157,132492,0 +67202,3,8148,135012,0 +67203,6,18290,132539,0 +67204,0,26033,132515,0 +67205,1,6407,135034,0 +67206,3,14928,132646,0 +67207,3,11141,135007,0 +67208,6,13141,132542,0 +67209,9,26080,133756,0 +67210,0,26093,132500,0 +67211,1,26096,135033,0 +67212,4,7709,132495,0 +67213,3,10070,135007,0 +67214,6,9176,132542,0 +67215,7,14779,132606,0 +67216,9,26175,133765,0 +67217,5,10071,134592,0 +67218,0,26305,133134,0 +67219,3,26157,132677,0 +67220,3,7754,135007,0 +67221,3,26240,132642,0 +67222,7,26235,132608,0 +67223,6,26231,132542,0 +67224,9,26233,133761,0 +67225,0,21152,133123,0 +67226,8,26236,132944,0 +67227,5,26238,134590,0 +67228,1,17365,135033,0 +67229,3,27228,132680,0 +67230,4,26230,132506,0 +67231,11,25096,133050,0 +67232,1,25104,135056,0 +67233,11,25120,135274,0 +67234,8,22909,132963,0 +67235,11,25139,133041,0 +67236,13,25138,134948,0 +67237,11,25148,133050,0 +67238,6,25160,132590,0 +67239,1,28705,135033,0 +67240,0,25166,133116,0 +67241,11,25649,135273,0 +67242,8,28703,132949,0 +67243,5,23687,134591,0 +67244,1,11170,135042,0 +67245,6,28276,132586,0 +67246,8,28280,132964,0 +67247,1,28282,135051,0 +67248,5,21200,134584,0 +67249,6,15485,132539,0 +67250,3,9265,132724,0 +67251,9,27525,133763,0 +67252,8,27519,132952,0 +67253,1,27523,135039,0 +67254,9,27673,133761,0 +67255,11,25173,135313,0 +67256,3,10116,132716,0 +67257,9,27584,133762,0 +67258,9,27980,133755,0 +67259,9,27986,133774,0 +67260,0,15311,133111,0 +67261,3,10941,132720,0 +67262,4,22811,132512,0 +67263,8,25188,132960,0 +67264,6,14727,132535,0 +67265,2,13072,135029,0 +67266,11,25197,135145,0 +67267,6,21147,132535,0 +67268,8,23404,132962,0 +67269,5,21237,134584,0 +67270,3,25245,132684,0 +67271,6,5871,132539,0 +67272,1,16428,135033,0 +67273,3,7787,132718,0 +67274,12,25260,135612,0 +67275,3,12598,132722,0 +67276,5,27578,134587,0 +67277,1,27580,135036,0 +67278,7,18146,132602,0 +67279,3,11067,132717,0 +67280,9,27573,133769,0 +67281,8,13344,132949,0 +67282,5,27570,134586,0 +67283,1,27569,135049,0 +67284,9,27653,133762,0 +67285,9,22675,133754,0 +67286,9,22691,133759,0 +67287,6,26983,132540,0 +67288,7,22812,132605,0 +67289,9,26958,133770,0 +67290,4,22807,132514,0 +67291,8,22808,132946,0 +67292,1,26988,135038,0 +67293,3,22786,132624,0 +67294,6,27009,132541,0 +67295,4,22935,132511,0 +67296,8,23369,132939,0 +67297,5,22936,134583,0 +67298,1,27014,135038,0 +67299,7,27026,132610,0 +67300,3,24348,132629,0 +67301,9,26999,133760,0 +67302,0,27191,133161,0 +67303,8,27027,132938,0 +67304,6,27035,132535,0 +67305,5,27028,134583,0 +67306,1,27030,135054,0 +67307,7,27048,132606,0 +67308,3,25354,132637,0 +67309,4,27046,132518,0 +67310,6,24786,132539,0 +67311,9,27051,133754,0 +67312,8,25359,132943,0 +67313,5,25357,134583,0 +67314,1,27054,135052,0 +67315,3,11055,132629,0 +67316,6,27093,132579,0 +67317,7,22438,132601,0 +67318,4,12641,132498,0 +67319,0,28175,133121,0 +67320,5,10942,134586,0 +67321,1,27096,135054,0 +67322,8,27148,132953,0 +67323,4,4888,132500,0 +67324,6,27149,132535,0 +67325,0,27151,133101,0 +67326,5,4416,134586,0 +67327,1,11688,135054,0 +67328,7,17998,132602,0 +67329,3,17996,132723,0 +67330,13,18506,134948,0 +67331,8,13142,132938,0 +67332,4,13309,132492,0 +67333,6,13311,132543,0 +67334,5,13140,134583,0 +67335,1,27160,135060,0 +67336,3,13915,132629,0 +67337,6,22306,132535,0 +67338,9,27197,133770,0 +67339,8,14799,132953,0 +67340,4,14797,132502,0 +67341,0,24448,133076,0 +67342,5,17665,134583,0 +67343,3,21576,132627,0 +67344,9,27143,133753,0 +67345,8,10479,132938,0 +67346,5,27140,134583,0 +67347,1,27142,135033,0 +67348,11,25362,133040,0 +67349,3,17659,132746,0 +67350,11,25365,133040,0 +67351,11,25366,133040,0 +67352,11,25367,133040,0 +67353,8,17769,132949,0 +67354,4,17660,132520,0 +67355,6,26813,132539,0 +67356,5,24312,134593,0 +67357,1,26818,135042,0 +67358,0,27182,132768,0 +67359,7,17661,132606,0 +67360,8,29015,132953,0 +67361,7,16395,132612,0 +67362,3,26687,132743,0 +67363,11,25378,135145,0 +67364,4,17332,132513,0 +67365,6,16394,132587,0 +67366,5,13132,134586,0 +67367,1,26688,135054,0 +67368,13,26693,134963,0 +67369,0,26692,133101,0 +67370,3,22847,132751,0 +67371,11,25382,135138,0 +67372,8,27190,132938,0 +67373,4,17428,132508,0 +67374,6,22853,132541,0 +67375,5,24398,134582,0 +67376,1,26825,135051,0 +67377,3,26846,132744,0 +67378,4,26848,132511,0 +67379,6,26850,132586,0 +67380,0,15297,133121,0 +67381,5,26849,134583,0 +67382,1,27876,135058,0 +67383,3,26880,132744,0 +67384,8,26881,132962,0 +67385,4,26879,132511,0 +67386,6,26883,132539,0 +67387,0,27180,133121,0 +67388,5,26884,134583,0 +67389,1,26885,135033,0 +67390,7,26878,132606,0 +67391,11,25411,135325,0 +67392,11,25437,135145,0 +67393,11,25471,132392,0 +67394,11,25496,135321,0 +67395,11,25499,132392,0 +67396,11,25503,135131,0 +67397,11,25504,135131,0 +67398,11,25506,135643,0 +67399,11,25507,135643,0 +67400,11,25508,135643,0 +67401,11,25509,135643,0 +67402,11,25510,135643,0 +67403,11,4291,135643,0 +67404,11,25513,135643,0 +67405,11,25514,135643,0 +67406,11,25515,135643,0 +67407,6,26652,132589,0 +67408,8,27838,132956,0 +67409,4,26650,132502,0 +67410,0,26656,133122,0 +67411,5,26651,134587,0 +67412,1,26655,135036,0 +67413,3,27899,132626,0 +67414,8,27901,132962,0 +67415,4,27902,132513,0 +67416,1,27904,135042,0 +67417,7,26476,132612,0 +67418,6,27905,132587,0 +67419,7,26793,132611,0 +67420,3,26795,132742,0 +67421,8,26798,132964,0 +67422,4,26792,132506,0 +67423,0,24759,132514,0 +67424,5,26800,134585,0 +67425,1,26797,135047,0 +67426,7,17815,132613,0 +67427,3,17811,132760,0 +67428,8,17818,132963,0 +67429,4,17812,132521,0 +67430,5,17813,134584,0 +67431,1,26875,135059,0 +67432,3,25547,132632,0 +67433,8,27934,132965,0 +67434,4,26437,132501,0 +67435,5,25548,134584,0 +67436,1,25546,135047,0 +67437,7,26542,132613,0 +67438,6,26643,132590,0 +67439,7,12122,132618,0 +67440,8,11346,132961,0 +67441,4,12119,132503,0 +67442,0,27512,132517,0 +67443,5,13101,134584,0 +67444,1,26645,135053,0 +67445,3,16401,132629,0 +67446,8,17351,132953,0 +67447,4,17349,132502,0 +67448,6,17823,132536,0 +67449,5,17419,134586,0 +67450,1,26843,135054,0 +67451,7,17759,132608,0 +67452,6,21264,132539,0 +67453,3,17299,132636,0 +67454,8,17304,132940,0 +67455,4,17301,132518,0 +67456,0,27835,133125,0 +67457,5,17302,134588,0 +67458,1,26834,135036,0 +67459,7,21254,132612,0 +67460,3,26859,132738,0 +67461,8,27833,132944,0 +67462,4,26856,132500,0 +67463,0,1126,133073,0 +67464,5,26861,134582,0 +67465,1,26864,135051,0 +67466,6,26862,132584,0 +67467,7,26857,132618,0 +67468,3,25517,132745,0 +67469,8,26888,132938,0 +67470,4,25518,132513,0 +67471,6,25526,132592,0 +67472,0,26893,133078,0 +67473,5,25519,134592,0 +67474,1,26894,135044,0 +67475,7,25527,132608,0 +67476,8,6205,132939,0 +67477,13,28579,134955,0 +67478,3,12837,132628,0 +67479,5,12840,134585,0 +67480,3,25676,132626,0 +67481,1,25677,135049,0 +67482,3,26912,132741,0 +67483,1,25545,135032,0 +67484,5,26918,134583,0 +67485,3,13803,132722,0 +67486,5,5488,134586,0 +67487,1,23782,135044,0 +67488,3,4320,132723,0 +67489,3,25082,132742,0 +67490,5,8345,134585,0 +67491,1,11622,135049,0 +67492,3,25699,132721,0 +67493,1,13697,135037,0 +67494,5,5479,134582,0 +67495,3,5477,132722,0 +67496,0,28976,133122,0 +67497,1,25713,135038,0 +67498,8,2375,132965,0 +67499,7,2881,132606,0 +67500,3,1080,132741,0 +67501,8,25735,132965,0 +67502,4,4460,132512,0 +67503,0,25739,133681,0 +67504,6,14660,132541,0 +67505,11,28236,135149,0 +67506,11,28225,135146,0 +67507,6,1981,132537,0 +67508,9,25910,133762,0 +67509,3,18225,132725,0 +67510,4,5774,132495,0 +67511,6,1966,132537,0 +67512,0,27886,133117,0 +67513,7,7769,132609,0 +67514,13,18698,134955,0 +67515,9,28563,133760,0 +67516,1,22408,135042,0 +67517,9,27686,133758,0 +67518,4,6223,132493,0 +67519,1,8847,135053,0 +67520,3,9177,132720,0 +67521,6,6184,132536,0 +67522,7,8171,132615,0 +67523,3,6181,132720,0 +67524,8,12500,132956,0 +67525,0,28979,133694,0 +67526,1,22488,135054,0 +67527,9,27593,133758,0 +67528,0,27907,133111,0 +67529,1,27592,135044,0 +67530,9,24159,133770,0 +67531,0,27666,132500,0 +67532,1,5485,135054,0 +67533,9,23051,133754,0 +67534,0,28022,133074,0 +67535,5,24328,134586,0 +67536,3,23250,132720,0 +67537,10,25982,134472,0 +67538,10,25983,134473,0 +67539,10,25990,134474,0 +67540,10,25992,134475,0 +67541,5,23707,134588,0 +67542,12,28218,135469,0 +67543,13,26322,134957,0 +67544,11,28544,135274,0 +67545,11,28567,135321,0 +67546,11,28527,135356,0 +67547,11,28570,135346,0 +67548,11,28528,135314,0 +67549,11,28530,135351,0 +67550,11,28458,135351,0 +67551,11,28346,135349,0 +67552,11,28316,135346,0 +67553,11,28552,135276,0 +67554,11,28318,133045,0 +67555,11,28521,133045,0 +67556,11,6567,133053,0 +67557,11,28539,132415,0 +67558,11,28469,132405,0 +67559,11,28566,132407,0 +67560,11,28459,132407,0 +67561,11,28523,132401,0 +67562,11,28568,135637,0 +67563,11,20331,135637,0 +67564,11,28535,135324,0 +67565,11,20080,135324,0 +67566,11,28536,135321,0 +67567,11,28546,135352,0 +67568,11,28465,135355,0 +67569,11,28321,135330,0 +67570,11,28529,135278,0 +67571,11,28576,135327,0 +67572,11,26589,135280,0 +67573,11,28548,133053,0 +67574,11,28468,133054,0 +67575,11,28540,133056,0 +67576,11,28311,133053,0 +67577,11,28499,133047,0 +67578,11,28526,133045,0 +67579,11,28674,133047,0 +67580,11,28460,132400,0 +67581,11,28573,132415,0 +67582,11,8508,132408,0 +67583,11,28334,132403,0 +67584,11,28541,132408,0 +67585,11,28349,132409,0 +67586,11,28467,135140,0 +67587,11,28502,135140,0 +67588,12,28457,135468,0 +67589,12,28538,135147,0 +67590,12,28518,135468,0 +67591,12,28577,135143,0 +67592,12,28572,135489,0 +67593,12,28575,135498,0 +67594,12,28322,135495,0 +67595,12,28309,135494,0 +67596,12,28543,135496,0 +67597,12,28515,135495,0 +67598,12,28545,135500,0 +67599,13,2208,134956,0 +67600,3,10013,132716,0 +67601,6,9267,132539,0 +67602,8,28046,132939,0 +67603,3,9185,132719,0 +67604,5,9266,134586,0 +67605,1,9527,135039,0 +67606,12,28557,135610,0 +67607,12,28331,135610,0 +67608,12,26358,135424,0 +67609,12,26361,135427,0 +67610,9,28006,133753,0 +67611,11,28093,135321,0 +67612,3,13702,132656,0 +67613,0,27680,133117,0 +67614,6,27678,132539,0 +67615,8,27677,132958,0 +67616,6,23708,132539,0 +67617,7,27699,132612,0 +67618,13,28269,134967,0 +67619,0,29134,133117,0 +67620,3,7010,132649,0 +67621,7,27954,132606,0 +67622,9,27960,133768,0 +67623,13,28026,134962,0 +67624,9,27974,133774,0 +67625,3,8158,132742,0 +67626,0,15345,133142,0 +67627,9,27658,133769,0 +67628,4,8002,132495,0 +67629,7,19190,132602,0 +67630,8,28223,132938,0 +67631,8,9529,132939,0 +67632,3,22583,132744,0 +67633,11,27412,133044,0 +67634,9,26681,133759,0 +67635,7,28032,132601,0 +67636,4,22432,132501,0 +67637,8,22435,132949,0 +67638,0,28035,133689,0 +67639,5,22433,134586,0 +67640,1,28037,135039,0 +67641,3,28028,132717,0 +67642,4,12136,132501,0 +67643,6,6198,132589,0 +67644,7,27608,132614,0 +67645,8,11835,132960,0 +67646,0,28850,132767,0 +67647,5,11190,134586,0 +67648,11,28199,135641,0 +67649,11,28228,135225,0 +67650,6,13137,132537,0 +67651,7,23366,132601,0 +67652,12,26385,135612,0 +67653,8,28288,132943,0 +67654,11,28096,133053,0 +67655,12,28216,135469,0 +67656,9,28303,133757,0 +67657,5,28290,134583,0 +67658,4,26937,132511,0 +67659,6,26939,132541,0 +67660,7,26938,132608,0 +67661,9,26980,133766,0 +67662,3,22844,132638,0 +67663,4,25088,132502,0 +67664,6,26956,132536,0 +67665,8,26954,132953,0 +67666,3,25175,132629,0 +67667,3,27004,132629,0 +67668,6,27001,132537,0 +67669,8,27000,132949,0 +67670,5,25406,134586,0 +67671,7,27005,132609,0 +67672,1,27003,135054,0 +67673,4,13699,132518,0 +67674,6,25332,132539,0 +67675,7,26475,132612,0 +67676,3,26990,132626,0 +67677,9,26991,133765,0 +67678,8,25333,132951,0 +67679,5,24311,134583,0 +67680,13,26855,134956,0 +67681,1,25330,135058,0 +67682,6,22817,132542,0 +67683,7,22818,132608,0 +67684,9,26977,133766,0 +67685,8,25493,132953,0 +67686,4,22816,132504,0 +67687,5,24407,134583,0 +67688,1,4483,135037,0 +67689,3,26972,132624,0 +67690,4,24334,132505,0 +67691,6,26964,132579,0 +67692,3,26961,132639,0 +67693,9,26962,133772,0 +67694,8,26963,132956,0 +67695,5,26968,134583,0 +67696,1,26965,135050,0 +67697,3,10987,132719,0 +67698,6,27540,132589,0 +67699,9,27082,133763,0 +67700,8,27075,132956,0 +67701,4,11347,132516,0 +67702,5,25387,134706,0 +67703,7,18294,132615,0 +67704,6,23365,132541,0 +67705,8,27041,132949,0 +67706,4,23364,132515,0 +67707,0,27042,133077,0 +67708,5,24323,134583,0 +67709,6,27022,132539,0 +67710,7,27017,132605,0 +67711,3,27018,132647,0 +67712,9,26951,133769,0 +67713,8,27019,132945,0 +67714,4,24493,132510,0 +67715,5,27020,134584,0 +67716,13,27024,134953,0 +67717,1,7868,135049,0 +67718,4,7807,132513,0 +67719,6,11380,132592,0 +67720,7,7833,132606,0 +67721,3,18318,132634,0 +67722,0,27073,132768,0 +67723,9,27072,133757,0 +67724,8,27069,132945,0 +67725,5,11831,134583,0 +67726,1,27071,135046,0 +67727,13,20973,134953,0 +67728,6,6803,132535,0 +67729,7,27058,132615,0 +67730,3,8987,132739,0 +67731,9,27062,133759,0 +67732,8,8989,132958,0 +67733,4,8988,132515,0 +67734,5,27061,134589,0 +67735,4,16315,132516,0 +67736,6,27115,132584,0 +67737,7,16316,132609,0 +67738,3,27112,132751,0 +67739,8,27113,132945,0 +67740,5,27114,134589,0 +67741,1,27116,135041,0 +67742,6,11080,132535,0 +67743,7,12150,132612,0 +67744,3,11356,132626,0 +67745,13,27896,134957,0 +67746,0,27898,132767,0 +67747,9,27108,133754,0 +67748,8,27892,132938,0 +67749,5,11079,134588,0 +67750,1,27893,135052,0 +67751,4,11078,132519,0 +67752,6,17928,132585,0 +67753,7,27122,132614,0 +67754,3,27118,132632,0 +67755,0,27124,133090,0 +67756,4,13303,132499,0 +67757,5,13331,134584,0 +67758,1,27123,135040,0 +67759,3,27322,132627,0 +67760,7,27324,132615,0 +67761,8,27326,132963,0 +67762,6,27328,132590,0 +67763,3,18027,132741,0 +67764,0,15431,132767,0 +67765,8,27131,132944,0 +67766,6,13700,132542,0 +67767,5,18043,134586,0 +67768,7,11828,132606,0 +67769,6,11076,132587,0 +67770,3,11075,132632,0 +67771,9,27220,133754,0 +67772,8,27825,132963,0 +67773,4,27206,132524,0 +67774,5,17767,134584,0 +67775,1,27218,135061,0 +67776,7,17679,132608,0 +67777,3,17677,132743,0 +67778,4,16390,132492,0 +67779,6,17831,132536,0 +67780,8,16409,132956,0 +67781,0,15512,133076,0 +67782,5,27174,134583,0 +67783,1,27177,135055,0 +67784,7,27286,132609,0 +67785,3,10690,132722,0 +67786,8,10694,132938,0 +67787,4,10691,132496,0 +67788,5,10692,134586,0 +67789,6,12582,132589,0 +67790,7,27296,132614,0 +67791,3,12816,132736,0 +67792,8,12583,132963,0 +67793,4,22310,132507,0 +67794,5,12817,134581,0 +67795,1,5678,135044,0 +67796,13,18693,134949,0 +67797,7,22341,132609,0 +67798,3,22340,132629,0 +67799,0,27908,133101,0 +67800,8,16416,132953,0 +67801,4,22314,132500,0 +67802,6,22315,132536,0 +67803,5,16414,134586,0 +67804,1,27320,135054,0 +67805,6,27312,132584,0 +67806,7,27307,132602,0 +67807,3,27308,132751,0 +67808,8,27309,132938,0 +67809,4,27310,132500,0 +67810,5,27311,134586,0 +67811,12,26412,135469,0 +67812,1,28020,135055,0 +67813,6,10693,132589,0 +67814,1,26419,135045,0 +67815,9,26431,133763,0 +67816,11,26432,135349,0 +67817,11,26433,135651,0 +67818,4,13729,132497,0 +67819,8,26436,132959,0 +67820,11,26464,135650,0 +67821,3,26467,132638,0 +67822,9,26468,133768,0 +67823,1,26472,135049,0 +67824,5,7814,134706,0 +67825,8,26473,132964,0 +67826,11,26477,135327,0 +67827,11,26479,135326,0 +67828,11,26494,135344,0 +67829,1,26501,135033,0 +67830,4,26502,132511,0 +67831,1,26504,135055,0 +67832,8,26512,132963,0 +67833,3,15607,132741,0 +67834,3,26515,132626,0 +67835,11,26535,132399,0 +67836,11,26536,135144,0 +67837,15,26539,135148,0 +67838,8,26540,132950,0 +67839,4,26541,132512,0 +67840,6,18140,132541,0 +67841,11,26545,135576,0 +67842,7,3655,132606,0 +67843,13,26548,134956,0 +67844,13,27036,134961,0 +67845,13,28449,134955,0 +67846,11,26597,132941,0 +67847,15,28471,135467,0 +67848,15,28472,134336,0 +67849,15,28462,135157,0 +67850,15,27563,135468,0 +67851,15,27863,135139,0 +67852,15,28475,133749,0 +67853,15,27874,134333,0 +67854,15,28480,134334,0 +67855,15,27612,135466,0 +67856,15,28476,135473,0 +67857,15,27650,135467,0 +67858,15,28487,134121,0 +67859,15,28492,135145,0 +67860,15,28491,135157,0 +67861,15,28493,134334,0 +67862,15,28486,135464,0 +67863,15,28514,135467,0 +67864,15,28555,135474,0 +67865,15,28505,134337,0 +67866,15,28553,134122,0 +67867,15,28510,135150,0 +67868,15,28516,135466,0 +67869,15,27929,135144,0 +67870,13,27055,134951,0 +67871,0,12139,133149,0 +67872,12,26737,135617,0 +67873,0,11665,133149,0 +67874,0,27242,133121,0 +67875,3,26658,132737,0 +67876,5,26659,134584,0 +67877,8,26753,132963,0 +67878,6,26752,132590,0 +67879,1,26662,135051,0 +67880,7,26664,133344,0 +67881,9,26665,133773,0 +67882,0,26668,133075,0 +67883,3,26667,132649,0 +67884,5,26669,134589,0 +67885,1,26670,135054,0 +67886,1,23577,135040,0 +67887,1,10689,135059,0 +67888,8,19678,132957,0 +67889,9,27087,133773,0 +67890,9,27088,133759,0 +67891,11,31997,135291,0 +67892,4,27163,132511,0 +67893,6,27164,132539,0 +67894,7,27165,132608,0 +67895,8,27167,132951,0 +67896,6,31068,132539,0 +67897,6,31070,132541,0 +67898,7,27204,132601,0 +67899,8,30334,132949,0 +67900,8,27207,132960,0 +67901,4,27209,132512,0 +67902,4,27210,132517,0 +67903,6,31243,132541,0 +67904,7,27217,132616,0 +67905,8,31245,132944,0 +67906,6,30319,132584,0 +67907,8,30321,132963,0 +67908,4,27225,132516,0 +67909,3,27229,132670,0 +67910,5,27230,134588,0 +67911,1,27231,135033,0 +67912,0,27232,133126,0 +67913,3,30327,132722,0 +67914,0,30330,133144,0 +67915,5,30329,134591,0 +67916,1,30328,135056,0 +67917,3,27233,132725,0 +67918,5,27235,134586,0 +67919,1,27236,135054,0 +67920,0,27234,133143,0 +67921,3,31241,132628,0 +67922,5,31242,134590,0 +67923,1,31247,135049,0 +67924,0,31246,133123,0 +67925,0,28934,133073,0 +67926,3,27243,132751,0 +67927,3,30315,132738,0 +67928,0,30316,133073,0 +67929,5,30317,134586,0 +67930,1,30318,135059,0 +67931,6,32987,132560,0 +67932,7,30338,132608,0 +67933,4,30340,132511,0 +67934,8,32988,132948,0 +67935,0,32978,133126,0 +67936,3,32981,132653,0 +67937,1,33000,135054,0 +67938,7,30331,132601,0 +67939,6,30333,132542,0 +67940,4,30332,132512,0 +67941,7,30324,132616,0 +67942,6,32095,132588,0 +67943,8,32098,132944,0 +67944,4,30325,132517,0 +67945,0,32093,133073,0 +67946,3,32094,132625,0 +67947,5,32096,134669,0 +67948,1,32092,135041,0 +67949,7,30320,132617,0 +67950,4,30322,132516,0 +67951,6,31097,132539,0 +67952,7,27255,132606,0 +67953,8,31098,132940,0 +67954,4,27257,132502,0 +67955,0,31099,133074,0 +67956,3,31102,132669,0 +67957,1,31100,135033,0 +67958,7,27262,132602,0 +67959,6,27263,132542,0 +67960,4,27264,132495,0 +67961,8,27265,132959,0 +67962,7,30353,132606,0 +67963,6,30356,132539,0 +67964,8,30355,132949,0 +67965,1,28935,135038,0 +67966,5,27267,134586,0 +67967,0,28106,133077,0 +67968,3,27269,132722,0 +67969,3,30357,132720,0 +67970,0,30358,133077,0 +67971,1,30360,135045,0 +67972,5,30359,134588,0 +67973,6,27270,132590,0 +67974,8,27271,132960,0 +67975,3,27274,132751,0 +67976,0,30071,133077,0 +67977,5,27275,134586,0 +67978,1,31049,135042,0 +67979,7,27277,132615,0 +67980,6,29652,132541,0 +67981,8,27279,132945,0 +67982,0,30072,133077,0 +67983,3,27282,132638,0 +67984,5,27283,134589,0 +67985,1,28094,135035,0 +67986,3,30365,132626,0 +67987,0,31184,133071,0 +67988,5,30367,134583,0 +67989,1,30368,135032,0 +67990,4,27280,132503,0 +67991,8,30363,132951,0 +67992,6,30361,132539,0 +67993,0,32999,133076,0 +67994,3,33085,132716,0 +67995,1,33089,135050,0 +67996,4,30346,132502,0 +67997,7,30345,132606,0 +67998,6,32996,132539,0 +67999,8,32997,132953,0 +68000,3,30373,132751,0 +68001,0,30374,133077,0 +68002,5,30375,134584,0 +68003,1,30928,135042,0 +68004,6,30370,132585,0 +68005,7,30369,132618,0 +68006,4,30372,132498,0 +68007,8,30371,132944,0 +68008,3,32110,132638,0 +68009,0,32134,133077,0 +68010,1,32129,135038,0 +68011,5,32108,134586,0 +68012,6,32106,132542,0 +68013,8,32107,132959,0 +68014,4,30354,132495,0 +68015,6,32114,132542,0 +68016,8,32113,132959,0 +68017,0,32132,133077,0 +68018,1,32131,135038,0 +68019,3,32115,132638,0 +68020,5,32112,134586,0 +68021,3,32122,132633,0 +68022,0,32135,133077,0 +68023,5,32120,134668,0 +68024,1,32125,135060,0 +68025,6,32124,132587,0 +68026,7,30362,132615,0 +68027,8,32119,132945,0 +68028,4,30364,132503,0 +68029,6,32126,132587,0 +68030,8,32100,132945,0 +68031,3,32103,132633,0 +68032,0,32133,133077,0 +68033,5,32101,134667,0 +68034,1,32128,135060,0 +68035,12,27451,135463,0 +68036,3,27472,132677,0 +68037,3,27477,132645,0 +68038,3,27478,132660,0 +68039,13,27517,134962,0 +68040,9,27521,133767,0 +68041,3,31416,132633,0 +68042,0,31117,133072,0 +68043,5,31415,134583,0 +68044,1,30925,135060,0 +68045,6,31412,132592,0 +68046,7,31411,132601,0 +68047,8,31414,132945,0 +68048,4,31413,132505,0 +68049,3,31402,132625,0 +68050,6,31408,132588,0 +68051,8,31406,132944,0 +68052,0,31410,133126,0 +68053,5,31403,134583,0 +68054,1,31409,135041,0 +68055,4,31404,132517,0 +68056,7,31405,132616,0 +68057,6,29594,132536,0 +68058,7,29595,133365,0 +68059,8,29593,132951,0 +68060,4,29596,132497,0 +68061,0,31087,132768,0 +68062,3,29591,132666,0 +68063,1,30211,135054,0 +68064,3,30422,132652,0 +68065,6,30430,132539,0 +68066,8,30427,132948,0 +68067,0,31104,132767,0 +68068,5,30424,134588,0 +68069,1,31103,135033,0 +68070,4,30425,132499,0 +68071,7,30426,132520,0 +68072,0,31263,133131,0 +68073,5,29797,134588,0 +68074,3,29792,132690,0 +68075,1,29798,133732,0 +68076,4,29793,132501,0 +68077,7,29795,132612,0 +68078,6,29799,132539,0 +68079,8,29800,132966,0 +68080,3,29974,132741,0 +68081,0,16056,133143,0 +68082,1,24727,135038,0 +68083,5,9807,134582,0 +68084,6,28162,132542,0 +68085,8,19909,132958,0 +68086,7,29977,132608,0 +68087,6,29981,132542,0 +68088,4,29976,132504,0 +68089,8,29979,132951,0 +68090,1,30412,135032,0 +68091,5,29975,134588,0 +68092,0,31228,133129,0 +68093,7,29968,132613,0 +68094,4,29966,132500,0 +68095,8,29970,132953,0 +68096,6,29967,132584,0 +68097,3,29969,132738,0 +68098,0,31207,133076,0 +68099,5,29972,134584,0 +68100,1,29971,135041,0 +68101,3,29958,132738,0 +68102,0,31284,133070,0 +68103,5,29963,134584,0 +68104,1,29964,135061,0 +68105,6,29960,132584,0 +68106,7,29961,132617,0 +68107,4,29959,132523,0 +68108,8,29962,132960,0 +68109,1,27911,135038,0 +68110,12,28408,135145,0 +68111,1,28454,135047,0 +68112,7,23729,132606,0 +68113,0,31517,133155,0 +68114,5,30582,134588,0 +68115,1,30586,135033,0 +68116,3,30581,132644,0 +68117,7,30584,132518,0 +68118,6,30587,132541,0 +68119,8,30585,132948,0 +68120,4,30583,132519,0 +68121,6,31975,132562,0 +68122,7,31970,132606,0 +68123,8,31971,132953,0 +68124,4,31969,132502,0 +68125,1,31974,135054,0 +68126,0,31987,133076,0 +68127,3,31973,132650,0 +68128,5,31972,134608,0 +68129,6,31718,132541,0 +68130,8,30620,132948,0 +68131,0,31371,133136,0 +68132,3,31490,132644,0 +68133,1,30623,135033,0 +68134,4,30621,132511,0 +68135,4,34046,132511,0 +68136,7,30617,132608,0 +68137,3,31105,132648,0 +68138,0,31514,133143,0 +68139,5,31340,134586,0 +68140,1,31343,135056,0 +68141,6,31109,132542,0 +68142,7,31106,132601,0 +68143,8,31503,132955,0 +68144,4,31339,132512,0 +68145,4,31722,132495,0 +68146,6,31724,132542,0 +68147,7,31725,132602,0 +68148,8,31726,132941,0 +68149,1,32813,135054,0 +68150,3,31797,132647,0 +68151,0,32790,133077,0 +68152,5,31729,134586,0 +68153,1,32016,135038,0 +68154,6,31830,132587,0 +68155,4,31829,132503,0 +68156,8,31834,132945,0 +68157,7,31831,132615,0 +68158,3,31832,132633,0 +68159,0,31835,133077,0 +68160,5,31836,134583,0 +68161,1,31833,135060,0 +68162,3,32022,132625,0 +68163,0,32028,133073,0 +68164,5,32023,134655,0 +68165,1,32030,135041,0 +68166,6,32040,132556,0 +68167,7,32018,132616,0 +68168,4,32019,132517,0 +68169,8,32024,132944,0 +68170,3,31505,132738,0 +68171,0,31506,133073,0 +68172,5,31352,134584,0 +68173,1,31510,135051,0 +68174,7,31509,132617,0 +68175,4,31353,132516,0 +68176,6,31354,132590,0 +68177,8,31507,132963,0 +68178,7,31020,132618,0 +68179,6,31025,132585,0 +68180,8,31022,132944,0 +68181,4,31019,132498,0 +68182,3,31021,132751,0 +68183,0,31260,133077,0 +68184,5,31023,134584,0 +68185,1,31024,135046,0 +68186,8,28522,132959,0 +68187,11,28586,135343,0 +68188,15,28588,135474,0 +68189,11,28592,135157,0 +68190,11,28593,135343,0 +68191,11,28608,135324,0 +68192,11,28610,135469,0 +68193,3,30536,132638,0 +68194,6,30542,132542,0 +68195,8,34016,132959,0 +68196,0,33655,133077,0 +68197,5,30540,134586,0 +68198,1,30546,135038,0 +68199,4,30541,132495,0 +68200,7,30548,132602,0 +68201,3,33650,132648,0 +68202,6,31111,132542,0 +68203,8,32815,132955,0 +68204,0,33743,133143,0 +68205,5,31115,134586,0 +68206,4,31110,132512,0 +68207,7,31127,132601,0 +68208,6,34044,132541,0 +68209,8,34041,132948,0 +68210,0,34057,133172,0 +68211,5,34039,134588,0 +68212,3,34038,132644,0 +68213,1,34058,135063,0 +68214,7,34045,132608,0 +68215,6,34055,132541,0 +68216,8,34051,132948,0 +68217,0,34233,133126,0 +68218,5,34049,134588,0 +68219,3,34047,132644,0 +68220,1,34048,135033,0 +68221,4,34053,132511,0 +68222,7,34052,132608,0 +68223,6,34015,132539,0 +68224,8,34013,132953,0 +68225,0,34369,133076,0 +68226,3,34014,132716,0 +68227,1,34022,135050,0 +68228,4,34011,132502,0 +68229,7,34012,132606,0 +68230,7,33666,132616,0 +68231,4,33665,132517,0 +68232,1,34091,135041,0 +68233,5,33672,134583,0 +68234,0,34367,133073,0 +68235,8,33668,132944,0 +68236,6,34269,132588,0 +68237,3,33667,132625,0 +68238,7,34079,132615,0 +68239,4,34078,132503,0 +68240,1,34067,135064,0 +68241,5,34084,134583,0 +68242,0,34217,133171,0 +68243,8,34082,132945,0 +68244,6,34083,132587,0 +68245,3,34081,132633,0 +68246,7,33634,132617,0 +68247,4,33633,132516,0 +68248,1,33680,135068,0 +68249,5,33637,134584,0 +68250,0,34216,133176,0 +68251,8,33636,132963,0 +68252,6,33639,132590,0 +68253,3,33635,132738,0 +68254,7,33982,132618,0 +68255,4,33990,132498,0 +68256,1,34253,135065,0 +68257,5,33986,134584,0 +68258,0,34215,133173,0 +68259,8,33984,132944,0 +68260,6,33989,132585,0 +68261,3,33983,132751,0 +68262,8,28754,132960,0 +68263,1,28756,135054,0 +68264,6,5489,132541,0 +68265,0,28856,133076,0 +68266,6,28760,132590,0 +68267,4,13135,132502,0 +68268,9,28775,133754,0 +68269,12,28827,135492,0 +68270,12,28828,135467,0 +68271,13,28829,134952,0 +68272,11,28834,135575,0 +68273,11,28835,133731,0 +68274,11,28836,135147,0 +68275,8,28838,132949,0 +68276,5,28843,134584,0 +68277,11,28869,133728,0 +68278,11,28866,133476,0 +68279,11,28867,133476,0 +68280,11,28873,132417,0 +68281,3,28990,132645,0 +68282,11,16490,135351,0 +68283,9,28891,133772,0 +68284,13,34110,134956,0 +68285,15,29717,133739,0 +68286,11,29161,132400,0 +68287,12,30927,135496,0 +68288,11,29706,135642,0 +68289,11,34111,135654,0 +68290,11,32162,133041,0 +68291,11,29176,135131,0 +68292,11,32197,135316,0 +68293,11,32199,135302,0 +68294,12,29195,135150,0 +68295,11,29677,135349,0 +68296,11,32200,132400,0 +68297,11,34109,133042,0 +68298,13,29702,134954,0 +68299,9,29827,133760,0 +68300,11,29171,133042,0 +68301,11,29703,135225,0 +68302,11,29097,135271,0 +68303,11,29698,133066,0 +68304,13,18480,134955,0 +68305,13,18509,134955,0 +68306,13,27782,134949,0 +68307,13,18468,134956,0 +68308,11,29699,133066,0 +68309,11,29191,135131,0 +68310,11,29276,135638,0 +68311,11,29397,135131,0 +68312,11,29495,132392,0 +68313,9,29630,133770,0 +68314,6,30337,132536,0 +68315,8,31060,132953,0 +68316,0,30341,133126,0 +68317,5,29457,134586,0 +68318,3,30335,132666,0 +68319,1,30336,135054,0 +68320,3,27260,132716,0 +68321,1,27261,135032,0 +68322,6,27250,132539,0 +68323,8,27256,132953,0 +68324,0,32979,133126,0 +68325,1,33002,135033,0 +68326,3,32986,132650,0 +68327,6,32994,132541,0 +68328,8,32995,132948,0 +68329,6,33076,132539,0 +68330,8,33077,132953,0 +68331,1,33088,135050,0 +68332,0,33071,133076,0 +68333,3,33079,132716,0 +68334,6,31061,132541,0 +68335,8,31062,132964,0 +68336,0,31065,133126,0 +68337,3,31058,132652,0 +68338,1,31067,135033,0 +68339,0,32980,133126,0 +68340,1,33005,135033,0 +68341,3,32984,132643,0 +68342,6,32992,132541,0 +68343,8,32990,132948,0 +68344,0,31030,133119,0 +68345,3,30351,132716,0 +68346,1,30350,135032,0 +68347,6,31027,132539,0 +68348,8,30347,132951,0 +68349,6,33080,132539,0 +68350,8,33081,132961,0 +68351,1,33083,135050,0 +68352,0,33082,133076,0 +68353,3,33084,132716,0 +68354,6,29022,132582,0 +68355,1,12713,135040,0 +68356,11,29759,132397,0 +68357,11,29769,135346,0 +68358,11,29872,135650,0 +68359,0,17364,132767,0 +68360,11,29897,135312,0 +68361,8,3515,132955,0 +68362,2,18123,135024,0 +68363,11,29907,132395,0 +68364,1,16048,135036,0 +68365,15,29914,134333,0 +68366,9,29916,133769,0 +68367,3,6034,132723,0 +68368,12,29924,135466,0 +68369,7,22409,132605,0 +68370,6,29927,132539,0 +68371,1,29928,135037,0 +68372,4,11117,132514,0 +68373,12,29932,135491,0 +68374,5,4475,134706,0 +68375,11,29939,133047,0 +68376,0,29942,133119,0 +68377,8,30957,132964,0 +68378,3,29950,132690,0 +68379,0,15313,133137,0 +68380,3,24402,132629,0 +68381,1,29955,135054,0 +68382,11,29957,135279,0 +68383,11,30294,132395,0 +68384,14,30433,132382,0 +68385,6,2373,132542,0 +68386,11,30455,133041,0 +68387,8,30474,132943,0 +68388,11,30516,135145,0 +68389,11,30517,135225,0 +68390,13,30559,134950,0 +68391,11,30594,134297,0 +68392,11,30595,134297,0 +68393,9,30577,133759,0 +68394,2,12028,135016,0 +68395,12,31210,135614,0 +68396,11,30638,135131,0 +68397,6,9788,132540,0 +68398,12,30660,135468,0 +68399,3,30663,132742,0 +68400,5,13136,134584,0 +68401,0,30670,133153,0 +68402,3,30674,132746,0 +68403,0,30677,133121,0 +68404,6,4091,132542,0 +68405,7,30693,132608,0 +68406,9,30703,133773,0 +68407,11,30994,135271,0 +68408,7,30704,132617,0 +68409,8,14884,132943,0 +68410,8,30720,132943,0 +68411,5,22985,134584,0 +68412,1,24505,135048,0 +68413,4,5468,132515,0 +68414,4,12094,132523,0 +68415,4,5788,132520,0 +68416,8,25045,132951,0 +68417,11,30778,135329,0 +68418,6,2342,132540,0 +68419,9,30783,133758,0 +68420,0,15915,133121,0 +68421,7,27273,132618,0 +68422,7,31248,132605,0 +68423,4,5478,132505,0 +68424,11,30813,132947,0 +68425,6,30817,132541,0 +68426,3,30823,132645,0 +68427,1,30829,135057,0 +68428,9,30832,133754,0 +68429,7,29156,132612,0 +68430,3,14800,132636,0 +68431,6,9080,132542,0 +68432,7,11603,132604,0 +68433,9,29720,133753,0 +68434,9,30851,133772,0 +68435,11,30853,135291,0 +68436,5,30856,134583,0 +68437,8,30862,132944,0 +68438,4,25338,132507,0 +68439,3,30868,132670,0 +68440,7,23832,132613,0 +68441,11,30881,132401,0 +68442,11,30886,135351,0 +68443,8,29749,132956,0 +68444,0,2617,133120,0 +68445,4,17931,132520,0 +68446,11,30936,135748,0 +68447,11,30934,135277,0 +68448,11,30935,135277,0 +68449,11,31347,135167,0 +68450,11,31346,135149,0 +68451,11,31016,135145,0 +68452,11,31119,133483,0 +68453,12,30926,135496,0 +68454,6,20994,132589,0 +68455,8,9019,132950,0 +68456,6,31140,132579,0 +68457,0,21914,133143,0 +68458,1,31142,135058,0 +68459,4,21199,132517,0 +68460,7,31151,132609,0 +68461,12,31338,135489,0 +68462,11,31163,135158,0 +68463,6,9089,132542,0 +68464,8,17934,132947,0 +68465,11,31174,135130,0 +68466,7,4397,132610,0 +68467,0,31177,133153,0 +68468,6,8995,132537,0 +68469,5,31191,134584,0 +68470,4,5716,132502,0 +68471,7,29847,132616,0 +68472,9,15163,133770,0 +68473,12,31237,135612,0 +68474,13,31216,134963,0 +68475,11,31219,132409,0 +68476,12,31677,135474,0 +68477,12,31224,135616,0 +68478,12,31225,135616,0 +68479,12,31226,135616,0 +68480,11,31258,135225,0 +68481,11,31250,135167,0 +68482,11,31265,132996,0 +68483,11,33626,135647,0 +68484,6,22592,132590,0 +68485,0,31268,133126,0 +68486,8,12578,132937,0 +68487,1,16526,135049,0 +68488,7,6210,132601,0 +68489,11,33615,135358,0 +68490,11,34112,135329,0 +68491,6,31292,132589,0 +68492,13,31733,134951,0 +68493,13,31746,134965,0 +68494,11,31956,132418,0 +68495,11,31957,132393,0 +68496,1,31468,135035,0 +68497,11,31302,132401,0 +68498,11,31958,132415,0 +68499,12,31759,135500,0 +68500,12,31748,135496,0 +68501,12,31757,135533,0 +68502,12,31749,135539,0 +68503,11,31379,135662,0 +68504,11,31381,135649,0 +68505,11,34114,135150,0 +68506,11,32033,135643,0 +68507,11,31754,134296,0 +68508,11,32032,132302,0 +68509,11,31752,134297,0 +68510,12,31758,135617,0 +68511,12,31747,135615,0 +68512,5,31320,134584,0 +68513,11,31955,133488,0 +68514,11,31751,133057,0 +68515,11,31954,133040,0 +68516,11,31750,133047,0 +68517,11,31761,135131,0 +68518,0,5239,133120,0 +68519,11,31766,135124,0 +68520,11,31764,135151,0 +68521,11,31765,133729,0 +68522,11,31996,135349,0 +68523,11,31998,135358,0 +68524,11,31337,135643,0 +68525,11,29170,135302,0 +68526,7,11617,132614,0 +68527,11,31400,135276,0 +68528,11,31419,135277,0 +68529,11,31424,135325,0 +68530,11,30606,135349,0 +68531,3,15966,132645,0 +68532,10,31527,135026,0 +68533,10,31528,135026,0 +68534,0,15919,133153,0 +68535,11,31526,135346,0 +68536,3,11213,132722,0 +68537,3,8200,132723,0 +68538,4,24404,132505,0 +68539,6,31536,132553,0 +68540,8,31541,132960,0 +68541,1,36269,135050,0 +68542,6,31552,132565,0 +68543,6,31557,132560,0 +68544,8,31563,132963,0 +68545,1,31566,135057,0 +68546,1,31828,135044,0 +68547,14,23211,132382,0 +68548,9,31592,133768,0 +68549,4,21345,132524,0 +68550,11,31605,135642,0 +68551,11,31606,135651,0 +68552,11,31608,135167,0 +68553,11,31610,135157,0 +68554,11,31611,132416,0 +68555,0,23410,133163,0 +68556,11,31613,135127,0 +68557,11,31617,135357,0 +68558,7,25487,132617,0 +68559,12,31622,135496,0 +68560,12,31628,135474,0 +68561,9,31632,133769,0 +68562,5,14875,134584,0 +68563,3,11233,132718,0 +68564,3,31641,132635,0 +68565,12,31645,135463,0 +68566,4,4907,132505,0 +68567,4,15571,132518,0 +68568,8,29848,132960,0 +68569,6,31472,132548,0 +68570,3,31663,132659,0 +68571,0,31671,133124,0 +68572,4,31672,132521,0 +68573,3,16668,132659,0 +68574,8,31680,132956,0 +68575,10,31676,135026,0 +68576,4,31681,132513,0 +68577,4,31682,132502,0 +68578,8,31683,132956,0 +68579,5,31685,134586,0 +68580,11,31720,135131,0 +68581,11,31692,135349,0 +68582,11,31735,132403,0 +68583,11,31822,133056,0 +68584,11,31777,133974,0 +68585,15,31809,133749,0 +68586,14,31814,135855,0 +68587,13,31815,135835,0 +68588,11,31817,133050,0 +68589,11,31820,135330,0 +68590,11,31999,135360,0 +68591,11,31861,133481,0 +68592,11,31864,135665,0 +68593,11,31865,135664,0 +68594,13,31851,134966,0 +68595,13,31852,134963,0 +68596,12,32080,135497,0 +68597,11,31866,135359,0 +68598,11,31867,135361,0 +68599,11,31857,132401,0 +68600,11,31858,132415,0 +68601,11,31964,135150,0 +68602,11,31960,135143,0 +68603,11,31878,133480,0 +68604,11,31877,133480,0 +68605,11,31863,133481,0 +68606,12,32763,135538,0 +68607,11,31869,132406,0 +68608,11,31870,132403,0 +68609,11,32000,135360,0 +68610,11,31880,135663,0 +68611,15,31953,134335,0 +68612,12,32774,135473,0 +68613,0,32493,133078,0 +68614,0,15546,133154,0 +68615,4,30054,132507,0 +68616,6,31914,132585,0 +68617,1,32082,135039,0 +68618,8,23513,132953,0 +68619,6,21467,132558,0 +68620,4,31924,132500,0 +68621,4,9072,132510,0 +68622,1,22864,135054,0 +68623,4,19419,132505,0 +68624,3,31930,132691,0 +68625,5,5965,134692,0 +68626,3,29752,132723,0 +68627,8,18858,132961,0 +68628,5,31365,134669,0 +68629,12,31977,135468,0 +68630,9,31978,133763,0 +68631,6,31985,132573,0 +68632,10,32031,135026,0 +68633,10,32026,135026,0 +68634,9,32066,133770,0 +68635,9,32069,133770,0 +68636,9,32067,133765,0 +68637,11,32076,135341,0 +68638,7,32088,132605,0 +68639,7,29218,132602,0 +68640,7,8408,132612,0 +68641,11,32140,133040,0 +68642,3,11481,132648,0 +68643,6,32156,132559,0 +68644,8,32159,132965,0 +68645,1,23670,135054,0 +68646,3,30518,132636,0 +68647,3,30786,132743,0 +68648,5,25550,134697,0 +68649,1,30785,135032,0 +68650,5,32192,134592,0 +68651,11,32216,132392,0 +68652,3,32415,132742,0 +68653,7,32417,132613,0 +68654,3,22980,132742,0 +68655,4,22587,132521,0 +68656,7,22981,132613,0 +68657,1,32270,135053,0 +68658,4,8869,132497,0 +68659,7,8413,132606,0 +68660,11,34718,132428,0 +68661,12,32577,135619,0 +68662,11,32603,135365,0 +68663,5,32296,134697,0 +68664,11,32575,135666,0 +68665,12,32595,135471,0 +68666,13,32561,134958,0 +68667,11,32314,135316,0 +68668,11,32722,135365,0 +68669,11,32581,135364,0 +68670,9,32320,133770,0 +68671,11,32604,135582,0 +68672,5,4398,134666,0 +68673,11,32613,135170,0 +68674,0,32734,133565,0 +68675,9,32339,133773,0 +68676,11,32588,133492,0 +68677,15,32344,133640,0 +68678,6,30843,132556,0 +68679,8,17937,132948,0 +68680,5,8250,134608,0 +68681,11,32776,135592,0 +68682,5,10181,134608,0 +68683,11,34507,132427,0 +68684,11,32356,135345,0 +68685,11,32576,135667,0 +68686,9,32371,133762,0 +68687,11,32600,133483,0 +68688,11,32612,135172,0 +68689,11,32615,135592,0 +68690,6,17936,132587,0 +68691,13,32560,134968,0 +68692,11,32782,133494,0 +68693,15,32784,133728,0 +68694,11,32397,134298,0 +68695,12,32582,135468,0 +68696,1,4941,135040,0 +68697,8,32410,132950,0 +68698,11,32450,132932,0 +68699,11,32430,135127,0 +68700,11,32780,133479,0 +68701,11,36762,132418,0 +68702,11,32446,135126,0 +68703,11,32438,135347,0 +68704,11,32439,135347,0 +68705,12,32584,135467,0 +68706,11,32443,135271,0 +68707,6,32449,132543,0 +68708,11,32490,135280,0 +68709,12,32507,135463,0 +68710,0,15396,133132,0 +68711,4,32509,132524,0 +68712,11,32514,133040,0 +68713,15,32515,133743,0 +68714,12,32571,135462,0 +68715,0,17725,133146,0 +68716,11,32538,134295,0 +68717,11,32539,134295,0 +68718,3,32564,132653,0 +68719,11,32592,135642,0 +68720,12,32570,135461,0 +68721,6,32599,132551,0 +68722,6,32641,132562,0 +68723,1,32741,135032,0 +68724,1,11272,135050,0 +68725,1,32739,135032,0 +68726,1,32740,135055,0 +68727,11,32677,135466,0 +68728,11,32648,135311,0 +68729,12,32685,135471,0 +68730,11,32717,135125,0 +68731,12,32693,135427,0 +68732,10,32524,135026,0 +68733,10,32525,135026,0 +68734,8,32700,132964,0 +68735,0,32735,133159,0 +68736,4,32718,132502,0 +68737,4,25530,132501,0 +68738,9,32726,133765,0 +68739,9,32727,133766,0 +68740,6,2990,132562,0 +68741,11,32587,135171,0 +68742,8,22983,132944,0 +68743,6,32758,132584,0 +68744,8,32762,132946,0 +68745,11,32768,135724,0 +68746,8,32890,132964,0 +68747,0,32823,135724,0 +68748,0,32956,134164,0 +68749,0,32957,134165,0 +68750,1,33129,135036,0 +68751,3,32841,132658,0 +68752,0,33073,133129,0 +68753,11,32837,135321,0 +68754,3,32872,132742,0 +68755,11,33033,135349,0 +68756,1,32052,135047,0 +68757,0,32908,133069,0 +68758,11,32909,135157,0 +68759,3,32916,135021,0 +68760,3,32948,132651,0 +68761,11,33087,135358,0 +68762,4,30555,132503,0 +68763,8,32944,132961,0 +68764,3,32943,132741,0 +68765,0,32958,134159,0 +68766,0,32959,134160,0 +68767,0,32961,134162,0 +68768,0,32963,132089,0 +68769,0,32964,134167,0 +68770,0,32965,134173,0 +68771,0,32966,134178,0 +68772,0,32967,134177,0 +68773,0,32968,134171,0 +68774,0,32969,132366,0 +68775,0,32971,134175,0 +68776,0,32970,134174,0 +68777,0,32972,134179,0 +68778,0,32973,134180,0 +68779,11,33097,135354,0 +68780,11,33095,135658,0 +68781,9,33096,133769,0 +68782,11,33017,133497,0 +68783,11,33015,135173,0 +68784,12,33020,135540,0 +68785,7,33027,132614,0 +68786,6,24468,132585,0 +68787,6,21468,132554,0 +68788,0,33161,133119,0 +68789,0,15289,133145,0 +68790,6,6043,132551,0 +68791,8,13384,132963,0 +68792,6,11841,132562,0 +68793,1,33051,135060,0 +68794,6,2984,132542,0 +68795,3,11635,132680,0 +68796,1,25335,135042,0 +68797,5,29394,134667,0 +68798,5,13382,134681,0 +68799,0,15343,133117,0 +68800,8,21413,132962,0 +68801,8,23865,132966,0 +68802,6,10574,132541,0 +68803,11,33113,135129,0 +68804,8,5897,132939,0 +68805,5,5894,134630,0 +68806,4,5893,132519,0 +68807,12,33125,135474,0 +68808,11,33128,132404,0 +68809,7,5896,132609,0 +68810,7,33141,132611,0 +68811,11,33143,133047,0 +68812,11,33145,135323,0 +68813,6,24782,132583,0 +68814,8,4422,132945,0 +68815,8,11842,132951,0 +68816,11,33163,135145,0 +68817,11,33170,135145,0 +68818,11,33172,135144,0 +68819,11,33181,132395,0 +68820,12,33261,135434,0 +68821,3,33402,132665,0 +68822,11,33422,135150,0 +68823,11,33421,135152,0 +68824,11,33424,133941,0 +68825,11,33426,133939,0 +68826,12,33428,135474,0 +68827,11,33429,135138,0 +68828,11,34512,135669,0 +68829,11,33431,133501,0 +68830,11,33434,132392,0 +68831,11,33435,132418,0 +68832,3,33459,132697,0 +68833,3,33464,132698,0 +68834,3,3832,132647,0 +68835,15,33529,134125,0 +68836,9,33531,133759,0 +68837,11,33533,133060,0 +68838,11,34178,132420,0 +68839,11,34142,135671,0 +68840,11,33830,133501,0 +68841,13,34137,134969,0 +68842,12,34139,135620,0 +68843,11,34135,135157,0 +68844,0,33598,133078,0 +68845,0,34486,133174,0 +68846,1,34256,135066,0 +68847,3,33709,132747,0 +68848,5,33713,134679,0 +68849,6,33714,132586,0 +68850,3,34061,132653,0 +68851,1,34018,135034,0 +68852,5,33617,134596,0 +68853,0,34351,133074,0 +68854,6,33625,132559,0 +68855,8,33624,132955,0 +68856,3,37266,132652,0 +68857,6,33641,132560,0 +68858,1,34020,135034,0 +68859,5,33643,134602,0 +68860,0,34370,133074,0 +68861,0,34348,133074,0 +68862,6,33647,132564,0 +68863,1,34021,135034,0 +68864,3,34063,132651,0 +68865,5,33652,134601,0 +68866,0,34609,133074,0 +68867,1,34037,135034,0 +68868,6,33661,132564,0 +68869,5,33662,134626,0 +68870,3,34086,132723,0 +68871,6,33673,132542,0 +68872,0,34608,133072,0 +68873,1,34077,135034,0 +68874,5,33678,134632,0 +68875,3,34087,132723,0 +68876,6,33690,132551,0 +68877,0,34221,133175,0 +68878,1,34904,135067,0 +68879,5,33692,134663,0 +68880,3,33691,132626,0 +68881,0,34222,133175,0 +68882,6,33696,132550,0 +68883,3,33697,132635,0 +68884,5,33698,134662,0 +68885,1,34056,135034,0 +68886,0,34487,133174,0 +68887,6,33708,132550,0 +68888,3,33705,132738,0 +68889,5,33706,134678,0 +68890,1,34257,135066,0 +68891,11,33727,132406,0 +68892,11,33839,135367,0 +68893,9,33730,133766,0 +68894,11,33731,133474,0 +68895,9,33733,133767,0 +68896,11,33734,135663,0 +68897,5,33779,135725,0 +68898,3,33766,135725,0 +68899,3,33767,135725,0 +68900,3,33768,135725,0 +68901,5,33770,135725,0 +68902,4,33771,135725,0 +68903,0,33772,135725,0 +68904,6,33775,135725,0 +68905,8,33776,135725,0 +68906,4,33780,135725,0 +68907,3,33781,135725,0 +68908,6,33782,135725,0 +68909,7,33783,135725,0 +68910,7,33616,135725,0 +68911,0,33785,135725,0 +68912,8,33788,135725,0 +68913,0,33791,135725,0 +68914,5,33792,135725,0 +68915,4,33793,135725,0 +68916,6,33794,135725,0 +68917,1,33796,135725,0 +68918,8,33799,135725,0 +68919,0,33802,135725,0 +68920,5,33803,135725,0 +68921,6,33804,135725,0 +68922,8,33806,135725,0 +68923,4,33807,135725,0 +68924,1,29835,135049,0 +68925,0,33880,133069,0 +68926,9,33814,133758,0 +68927,7,33817,132618,0 +68928,8,25455,132958,0 +68929,12,33828,135535,0 +68930,11,33835,132395,0 +68931,11,33838,2245030,0 +68932,3,11890,132722,0 +68933,15,33845,133498,0 +68934,0,33848,133164,0 +68935,1,18995,135060,0 +68936,5,29878,134677,0 +68937,5,33854,134667,0 +68938,12,33857,135501,0 +68939,8,15574,132965,0 +68940,8,29833,132944,0 +68941,6,22757,132586,0 +68942,0,33901,133117,0 +68943,13,33867,134968,0 +68944,8,29877,132964,0 +68945,8,33870,132946,0 +68946,6,33872,132562,0 +68947,6,33876,132585,0 +68948,11,33882,135366,0 +68949,5,33888,134691,0 +68950,6,29830,132554,0 +68951,11,33894,135648,0 +68952,3,33895,132658,0 +68953,7,32269,132618,0 +68954,11,33994,135361,0 +68955,11,33992,135661,0 +68956,11,33991,135665,0 +68957,0,33998,133169,0 +68958,0,33999,133170,0 +68959,3,34060,132699,0 +68960,3,34065,132700,0 +68961,3,34073,132694,0 +68962,3,34074,132696,0 +68963,3,34075,132695,0 +68964,3,34076,132693,0 +68965,12,34115,135493,0 +68966,11,34133,132395,0 +68967,8,34165,132965,0 +68968,4,34176,132520,0 +68969,9,34179,133754,0 +68970,7,34181,132617,0 +68971,8,34183,132951,0 +68972,4,34184,132515,0 +68973,7,34185,132618,0 +68974,7,34186,132613,0 +68975,7,34187,132610,0 +68976,15,34190,135472,0 +68977,4,34191,132520,0 +68978,8,34193,132962,0 +68979,6,34195,132562,0 +68980,7,34197,132612,0 +68981,12,34198,135468,0 +68982,7,34199,132612,0 +68983,8,34260,132953,0 +68984,4,34202,132523,0 +68985,4,34203,132521,0 +68986,4,34205,132500,0 +68987,13,34206,134970,0 +68988,7,34207,132612,0 +68989,6,34208,132551,0 +68990,6,34210,132538,0 +68991,0,34606,133077,0 +68992,12,34223,135502,0 +68993,8,34226,132951,0 +68994,7,34227,132601,0 +68995,8,34229,132951,0 +68996,9,34231,133753,0 +68997,11,34232,135368,0 +68998,8,34235,132960,0 +68999,8,34236,132960,0 +69000,5,34238,134663,0 +69001,9,34239,133772,0 +69002,11,34250,135591,0 +69003,1,34252,135060,0 +69004,6,34259,132538,0 +69005,11,34264,135369,0 +69006,5,8326,134662,0 +69007,3,34268,132744,0 +69008,3,29242,132664,0 +69009,1,34278,135061,0 +69010,15,34288,134911,0 +69011,5,17950,134687,0 +69012,3,29784,132667,0 +69013,8,34295,132951,0 +69014,11,34296,134296,0 +69015,11,34304,135366,0 +69016,3,23686,132686,0 +69017,1,15754,135060,0 +69018,1,34312,135059,0 +69019,1,34314,135033,0 +69020,6,21201,132582,0 +69021,8,24469,132945,0 +69022,0,34607,133074,0 +69023,1,34323,135036,0 +69024,9,18948,133770,0 +69025,1,22849,135045,0 +69026,11,34331,133498,0 +69027,6,34332,132589,0 +69028,6,29791,132549,0 +69029,6,17933,132587,0 +69030,7,3842,132611,0 +69031,9,34337,133762,0 +69032,11,34402,135366,0 +69033,11,34405,0,0 +69034,12,34484,135619,0 +69035,11,34478,135342,0 +69036,0,36715,133126,0 +69037,1,17833,135057,0 +69038,11,34474,133041,0 +69039,6,15619,132562,0 +69040,3,34421,132737,0 +69041,11,34485,133474,0 +69042,8,29736,132948,0 +69043,8,34463,132953,0 +69044,8,34464,132945,0 +69045,4,34610,132523,0 +69046,6,34611,132584,0 +69047,7,34612,132617,0 +69048,3,34617,132738,0 +69049,8,34613,132960,0 +69050,0,34614,133070,0 +69051,5,34615,134584,0 +69052,1,34616,135061,0 +69053,4,34699,132492,0 +69054,6,34684,132542,0 +69055,7,34685,132606,0 +69056,0,34700,133143,0 +69057,8,34686,132958,0 +69058,5,34687,134582,0 +69059,1,34688,135038,0 +69060,3,34689,132722,0 +69061,4,34646,132517,0 +69062,7,34647,132616,0 +69063,0,34649,133126,0 +69064,8,34650,132944,0 +69065,1,34651,135041,0 +69066,5,34652,134583,0 +69067,3,34645,132625,0 +69068,6,34648,132588,0 +69069,4,34599,132497,0 +69070,7,34601,133365,0 +69071,6,34782,132536,0 +69072,0,34602,132768,0 +69073,8,34600,132951,0 +69074,5,34598,134586,0 +69075,1,34597,135054,0 +69076,3,34596,132666,0 +69077,4,34620,132501,0 +69078,7,34621,132612,0 +69079,5,34622,134588,0 +69080,1,34623,133732,0 +69081,0,34624,133131,0 +69082,3,34625,132690,0 +69083,6,34626,132539,0 +69084,8,34627,132966,0 +69085,4,34628,132499,0 +69086,7,34629,132520,0 +69087,0,34630,132767,0 +69088,8,34631,132948,0 +69089,1,34632,135033,0 +69090,3,34633,132652,0 +69091,6,34634,132539,0 +69092,5,34635,134588,0 +69093,4,34520,132500,0 +69094,6,34521,132584,0 +69095,7,34522,132613,0 +69096,3,34519,132738,0 +69097,8,34523,132953,0 +69098,0,34524,133076,0 +69099,5,34525,134584,0 +69100,1,34526,135041,0 +69101,7,34691,132601,0 +69102,6,34692,132592,0 +69103,0,34693,133072,0 +69104,4,34694,132505,0 +69105,8,34695,132945,0 +69106,5,34696,134583,0 +69107,1,34697,135060,0 +69108,3,34698,132633,0 +69109,4,34637,132504,0 +69110,6,34638,132542,0 +69111,7,34641,132608,0 +69112,0,34639,133129,0 +69113,8,34640,132951,0 +69114,5,34642,134588,0 +69115,1,34643,135032,0 +69116,3,34644,132741,0 +69117,3,29253,132639,0 +69118,13,34533,134968,0 +69119,11,34556,133047,0 +69120,0,34564,133122,0 +69121,0,15370,133129,0 +69122,6,25308,132559,0 +69123,6,30557,132547,0 +69124,1,34590,135038,0 +69125,4,12983,132507,0 +69126,6,34595,132562,0 +69127,6,34605,132560,0 +69128,12,34636,135464,0 +69129,0,34715,133132,0 +69130,3,34722,132665,0 +69131,3,34724,135029,0 +69132,3,34725,132664,0 +69133,3,34727,132691,0 +69134,3,34728,132658,0 +69135,3,34730,135023,0 +69136,3,34731,135028,0 +69137,0,34781,133132,0 +69138,5,34788,134588,0 +69139,8,34789,132961,0 +69140,1,34791,135036,0 +69141,4,34790,132492,0 +69142,6,34792,132562,0 +69143,11,34794,135129,0 +69144,12,34800,135500,0 +69145,15,34802,133739,0 +69146,15,34807,135469,0 +69147,9,16608,133768,0 +69148,11,34810,135326,0 +69149,11,34891,135144,0 +69150,11,34850,135348,0 +69151,11,34860,133042,0 +69152,11,36970,135361,0 +69153,11,36969,133045,0 +69154,5,34890,134584,0 +69155,11,34894,135166,0 +69156,0,34898,133143,0 +69157,12,34899,135469,0 +69158,3,34900,132723,0 +69159,8,34901,132945,0 +69160,3,35049,132737,0 +69161,5,35051,134681,0 +69162,0,35447,133160,0 +69163,1,35177,135060,0 +69164,6,35067,132587,0 +69165,8,35050,132962,0 +69166,4,35058,132516,0 +69167,7,35044,132614,0 +69168,7,35619,132601,0 +69169,3,35618,132637,0 +69170,8,35615,132959,0 +69171,5,35616,134667,0 +69172,0,36972,133117,0 +69173,1,35617,135045,0 +69174,6,35613,132548,0 +69175,4,35614,132511,0 +69176,3,35415,132637,0 +69177,5,35413,134667,0 +69178,0,35601,133117,0 +69179,1,35611,135045,0 +69180,6,35409,132548,0 +69181,8,35411,132959,0 +69182,4,35410,132511,0 +69183,7,35416,132601,0 +69184,3,35752,132637,0 +69185,5,35754,134667,0 +69186,0,37056,133117,0 +69187,1,35751,135045,0 +69188,6,35746,132548,0 +69189,8,35748,132959,0 +69190,4,35747,132511,0 +69191,7,35753,132601,0 +69192,3,35054,132737,0 +69193,5,35065,134681,0 +69194,0,35132,133160,0 +69195,1,35064,135060,0 +69196,6,36351,132587,0 +69197,8,35055,132962,0 +69198,4,36349,132516,0 +69199,7,35053,132614,0 +69200,3,35159,132637,0 +69201,5,35161,134667,0 +69202,0,35162,133117,0 +69203,1,35160,135045,0 +69204,6,35173,132548,0 +69205,8,35167,132959,0 +69206,4,35164,132511,0 +69207,7,35158,132601,0 +69208,3,35523,132684,0 +69209,5,35522,134599,0 +69210,0,36440,132767,0 +69211,1,35326,135056,0 +69212,6,35525,132579,0 +69213,8,35521,132951,0 +69214,4,35519,132492,0 +69215,7,35677,132612,0 +69216,3,35185,132684,0 +69217,5,35184,134599,0 +69218,0,35182,132767,0 +69219,1,35187,135056,0 +69220,6,35186,132579,0 +69221,8,35183,132951,0 +69222,4,35179,132492,0 +69223,7,35180,132612,0 +69224,3,36354,132684,0 +69225,5,35154,134599,0 +69226,0,35155,132767,0 +69227,1,35149,135056,0 +69228,6,35148,132579,0 +69229,8,35145,132951,0 +69230,4,35143,132497,0 +69231,7,35144,132612,0 +69232,11,35632,135226,0 +69233,11,35631,135226,0 +69234,11,35634,135226,0 +69235,11,35633,135226,0 +69236,3,35302,132649,0 +69237,8,35286,132940,0 +69238,7,35283,132606,0 +69239,3,35290,132649,0 +69240,8,35303,132940,0 +69241,7,35287,132606,0 +69242,3,35293,132744,0 +69243,7,35292,132606,0 +69244,8,35294,132962,0 +69245,3,35276,132633,0 +69246,8,35277,132962,0 +69247,7,35275,132606,0 +69248,0,35095,133111,0 +69249,11,35097,135331,0 +69250,5,35278,134584,0 +69251,5,35282,134586,0 +69252,5,35289,134646,0 +69253,5,35295,134667,0 +69254,9,35115,133768,0 +69255,11,35116,135461,0 +69256,8,25176,132944,0 +69257,4,25041,132490,0 +69258,11,35129,133040,0 +69259,9,35139,133770,0 +69260,11,35151,135371,0 +69261,3,5919,135012,0 +69262,5,23663,134691,0 +69263,3,8388,132742,0 +69264,0,35206,132767,0 +69265,1,35209,135049,0 +69266,0,35211,133160,0 +69267,6,35214,132561,0 +69268,4,35213,132506,0 +69269,8,35217,132963,0 +69270,4,35218,132510,0 +69271,11,35239,133502,0 +69272,11,35240,135152,0 +69273,11,35241,135150,0 +69274,11,35242,135168,0 +69275,11,35819,135672,0 +69276,11,35244,133455,0 +69277,11,35709,133454,0 +69278,11,35247,135370,0 +69279,11,36371,135291,0 +69280,11,35250,133495,0 +69281,11,36518,133503,0 +69282,12,35370,135620,0 +69283,12,35870,135501,0 +69284,12,35253,135541,0 +69285,11,35255,135356,0 +69286,11,35256,135345,0 +69287,11,35371,132416,0 +69288,11,35258,132399,0 +69289,11,35259,135574,0 +69290,13,35577,134972,0 +69291,13,35573,134973,0 +69292,12,35262,135481,0 +69293,12,35263,135482,0 +69294,7,35310,132616,0 +69295,15,35817,134548,0 +69296,9,35312,133776,0 +69297,1,35324,135047,0 +69298,1,35325,135038,0 +69299,11,35642,133506,0 +69300,9,35365,133776,0 +69301,1,35369,135045,0 +69302,1,35136,135036,0 +69303,11,35710,133496,0 +69304,15,35383,134555,0 +69305,10,13909,135026,0 +69306,3,23402,132637,0 +69307,11,36376,135277,0 +69308,9,35408,133775,0 +69309,0,35419,133074,0 +69310,0,35421,133072,0 +69311,7,35422,132606,0 +69312,15,35813,134547,0 +69313,9,35430,133775,0 +69314,0,35432,133155,0 +69315,0,36433,133122,0 +69316,1,35434,135060,0 +69317,0,36432,133152,0 +69318,13,35576,134971,0 +69319,11,35246,133456,0 +69320,9,35444,133777,0 +69321,15,35816,134545,0 +69322,15,35792,134546,0 +69323,9,35446,133777,0 +69324,11,36378,135371,0 +69325,11,35574,133504,0 +69326,5,35508,134696,0 +69327,3,36370,132687,0 +69328,5,35514,134588,0 +69329,5,35515,134634,0 +69330,8,36279,132956,0 +69331,13,35654,132389,0 +69332,8,35550,132963,0 +69333,8,35553,132940,0 +69334,8,35542,132945,0 +69335,8,35545,132950,0 +69336,3,35544,132645,0 +69337,3,36077,132745,0 +69338,3,35554,132630,0 +69339,3,36439,132721,0 +69340,7,35555,132613,0 +69341,7,35556,132611,0 +69342,7,35557,132615,0 +69343,7,35558,132607,0 +69344,11,35563,135144,0 +69345,4,10501,132502,0 +69346,11,35589,135643,0 +69347,12,35593,135474,0 +69348,11,35643,133505,0 +69349,13,35719,132390,0 +69350,11,35818,135594,0 +69351,0,35801,133123,0 +69352,0,35806,133077,0 +69353,0,35810,133077,0 +69354,0,36782,133076,0 +69355,1,35935,135054,0 +69356,11,35839,135273,0 +69357,11,35899,135638,0 +69358,11,36045,135662,0 +69359,15,36265,133744,0 +69360,15,36266,133745,0 +69361,11,36064,133039,0 +69362,11,36065,133060,0 +69363,11,36066,135275,0 +69364,11,36078,133039,0 +69365,11,36079,133484,0 +69366,11,36080,135662,0 +69367,11,36081,135275,0 +69368,15,36267,133747,0 +69369,15,36268,133746,0 +69370,11,36377,135372,0 +69371,1,36425,135032,0 +69372,5,36426,134666,0 +69373,1,13512,135053,0 +69374,10,37060,135026,0 +69375,10,37061,135026,0 +69376,10,31738,135026,0 diff --git a/HermesProxy/CSV/ItemAppearance2.csv b/HermesProxy/CSV/ItemAppearance2.csv new file mode 100644 index 00000000..5b17d8b5 --- /dev/null +++ b/HermesProxy/CSV/ItemAppearance2.csv @@ -0,0 +1,9405 @@ +ID,DisplayType,ItemDisplayInfoID,DefaultIconFileDataID,UiOrder +44731,0,190696,133118,4473100 +44735,1,190700,135060,4473500 +44736,3,190701,132627,4473600 +44737,7,190702,132615,4473700 +44738,8,190703,132960,4473800 +44739,4,190704,132507,4473900 +44740,5,190705,134581,4474000 +44741,6,190706,132587,4474100 +44742,0,190707,133135,4474200 +44743,1,190708,135033,4474300 +44744,3,190709,135005,4474400 +44745,4,190710,132495,4474500 +44746,5,190711,134581,4474600 +44747,6,190712,132539,4474700 +44748,7,190713,132606,4474800 +44749,8,190714,132961,4474900 +44750,0,190715,133117,4475000 +44751,1,190716,135039,4475100 +44752,3,190717,132736,4475200 +44753,4,190718,132493,4475300 +44754,5,190719,134706,4475400 +44755,6,190720,132592,4475500 +44756,7,190721,132607,4475600 +44757,8,190722,132939,4475700 +44758,0,190723,132768,4475800 +44759,1,190724,135038,4475900 +44760,3,190725,132635,4476000 +44761,4,190726,132498,4476100 +44762,5,190727,134589,4476200 +44763,6,190728,132541,4476300 +44764,7,190729,132603,4476400 +44765,8,190730,132959,4476500 +44766,9,190731,133758,4476600 +44767,9,190732,133766,4476700 +44768,9,190733,133756,4476800 +44769,9,190734,133763,4476900 +45701,2,5661,132759,0 +45702,11,1542,135274,0 +45703,11,472,135145,0 +45704,11,5194,133478,0 +45705,11,8483,132402,0 +45706,2,6048,135009,0 +45707,5,6050,134582,0 +45708,6,6051,132540,0 +45709,6,6060,132535,0 +45710,5,1882,134582,0 +45711,2,3265,135005,0 +45712,6,9767,132539,0 +45713,5,5341,134582,0 +45714,2,9906,135009,0 +45715,6,7081,132538,0 +45716,5,5848,134582,0 +45717,2,8370,135005,0 +45718,6,6077,132543,0 +45719,3,10455,132664,0 +45720,3,10456,132665,0 +45721,6,3261,132535,0 +45722,3,15441,132724,0 +45723,5,5654,134706,0 +45724,5,7643,134589,0 +45725,6,7180,132543,0 +45726,3,10888,135011,0 +45728,5,10006,134582,0 +45729,6,10008,132539,0 +45730,2,9031,135011,0 +45731,6,5633,132540,0 +45732,5,8003,134582,0 +45733,6,9992,132538,0 +45734,13,2080,134951,0 +45735,5,5632,134582,0 +45736,2,5447,135005,0 +45737,5,8740,134582,0 +45738,2,8738,133766,0 +45739,11,5279,133476,0 +45740,3,7777,135022,0 +45741,5,9970,134592,0 +45742,6,10052,132539,0 +45743,3,2499,135006,0 +45744,5,2308,134592,0 +45745,6,10287,132539,0 +45746,8,3218,132955,0 +45747,5,7947,134706,0 +45748,6,10872,132540,0 +45749,3,10150,132725,0 +45750,5,4265,134586,0 +45751,6,14283,132537,0 +45752,8,9785,132955,0 +45753,3,6558,132631,0 +45754,5,3409,134583,0 +45755,6,4734,132535,0 +45756,11,20190,135317,0 +45757,7,8147,132610,0 +45758,8,10890,132961,0 +45759,8,12774,132952,0 +45760,8,2951,132938,0 +45761,8,11393,132940,0 +45762,8,2368,132939,0 +45763,11,26577,135274,0 +45764,10,3865,132483,0 +45765,11,20094,135346,0 +45766,11,20218,135312,0 +45767,11,1379,134708,0 +45768,7,17007,132607,0 +45769,11,19621,133482,0 +45770,11,20443,135145,0 +45771,11,1383,132392,0 +45772,11,2743,135638,0 +45773,11,1682,134708,0 +45774,11,19644,133046,0 +45775,11,4801,135323,0 +45776,11,19699,133045,0 +45777,11,19401,132405,0 +45778,11,20334,135139,0 +45779,6,10295,132579,0 +45780,8,2186,132952,0 +45781,5,2185,134591,0 +45782,3,3900,135014,0 +45783,6,2094,132543,0 +45784,8,2359,132952,0 +45785,5,2176,134589,0 +45786,3,2106,132760,0 +45787,11,20033,135329,0 +45788,11,19726,133048,0 +45789,11,19137,132398,0 +45790,11,15990,135166,0 +45791,11,2710,135637,0 +45792,11,6470,135637,0 +45793,3,1990,135011,0 +45794,11,19271,132392,0 +45795,11,2038,133476,0 +45796,4,3394,132492,0 +45797,3,5730,135010,0 +45798,5,5731,134594,0 +45799,8,7504,132952,0 +45800,6,10908,132539,0 +45801,6,3713,132592,0 +45802,8,2101,132939,0 +45803,5,5441,134706,0 +45804,3,14271,132760,0 +45805,3,1019,132624,0 +45806,5,697,134583,0 +45807,6,1020,132535,0 +45808,8,510,132938,0 +45809,11,2780,135346,0 +45810,11,5208,133490,0 +45811,11,22102,132402,0 +45812,11,2943,135154,0 +45813,2,9880,135006,0 +45814,6,3443,132539,0 +45815,11,19213,132399,0 +45816,11,26579,135328,0 +45817,11,5212,133478,0 +45818,11,20357,135145,0 +45819,8,3993,132940,0 +45820,11,19713,133488,0 +45821,11,5163,135326,0 +45822,11,33458,132393,0 +45823,11,19235,132408,0 +45824,11,19242,135419,0 +45825,11,20298,135150,0 +45826,13,1680,134955,0 +45827,11,20382,135162,0 +45828,11,8494,132405,0 +45829,11,20093,135327,0 +45830,8,3524,132947,0 +45831,11,20386,135141,0 +45832,8,7816,132938,0 +45833,7,6165,132604,0 +45834,11,6456,134298,0 +45835,1,1057,135039,0 +45836,1,1058,135039,0 +45837,1,2953,135033,0 +45838,1,1060,135033,0 +45839,1,1068,135033,0 +45840,11,28628,133476,0 +45841,11,20170,135311,0 +45842,3,1727,132624,0 +45843,11,19703,133486,0 +45844,11,22097,135280,0 +45845,11,20110,135324,0 +45846,11,22131,133044,0 +45847,11,2861,133476,0 +45848,11,22108,135423,0 +45849,11,22151,135157,0 +45850,11,19405,132405,0 +45851,11,8272,135327,0 +45852,11,5215,133729,0 +45853,11,20329,135150,0 +45854,3,16676,132667,0 +45855,11,20256,135166,0 +45856,11,20253,135144,0 +45857,11,859,135274,0 +45858,4,4878,133694,0 +45859,11,1550,135274,0 +45860,11,8583,133045,0 +45861,11,20440,135154,0 +45862,11,19273,132395,0 +45863,11,1121,135274,0 +45864,11,7453,133942,0 +45865,6,703,132592,0 +45866,15,7469,133729,0 +45867,11,20327,135143,0 +45868,11,19643,133476,0 +45869,11,1716,135145,0 +45870,11,679,135274,0 +45871,0,1166,134955,0 +45872,0,1170,134442,0 +45873,13,30993,134947,0 +45874,13,2456,136162,0 +45875,3,10627,132665,0 +45876,15,6520,135432,0 +45877,6,4487,132537,0 +45878,7,3311,132606,0 +45879,7,6224,132609,0 +45880,9,15120,133760,0 +45881,11,22093,135276,0 +45882,11,7495,134435,0 +45883,11,22114,132395,0 +45884,11,5226,133477,0 +45885,11,20112,135350,0 +45886,13,18663,134955,0 +45887,13,1705,134950,0 +45888,13,2329,134949,0 +45889,13,2594,134952,0 +45890,13,1644,134952,0 +45891,11,5199,133490,0 +45892,3,9536,132719,0 +45893,7,1028,132603,0 +45894,11,19625,133046,0 +45895,4,10988,132498,0 +45896,7,6193,132606,0 +45897,11,5527,133489,0 +45898,11,20122,135314,0 +45899,11,3367,132405,0 +45901,11,30392,132392,0 +45902,11,22215,135580,0 +45903,11,5530,133482,0 +45904,11,20156,135302,0 +45905,9,23106,133767,0 +45906,3,12723,132742,0 +45907,13,2210,134955,0 +45908,0,15298,133132,0 +45909,0,15282,133070,0 +45910,11,6447,134298,0 +45911,11,2767,132417,0 +45912,11,4770,133481,0 +45913,3,19035,132658,0 +45914,4,15767,132518,0 +45915,11,20391,135469,0 +45916,8,1796,132951,0 +45917,8,5444,132939,0 +45918,7,11387,132603,0 +45919,5,15673,134582,0 +45920,8,17057,132947,0 +45921,11,20377,135153,0 +45922,11,19290,135424,0 +45923,7,12741,132615,0 +45924,9,23014,134354,0 +45925,8,4583,132939,0 +45926,8,3085,132939,0 +45927,3,4589,135009,0 +45928,5,8409,134586,0 +45929,6,4463,132540,0 +45930,8,9374,132952,0 +45931,4,5728,132513,0 +45932,7,5578,132609,0 +45933,6,12850,132543,0 +45934,9,23090,133762,0 +45935,8,11051,132952,0 +45936,5,9187,134589,0 +45937,3,12426,132662,0 +45938,11,5197,133482,0 +45939,11,453,135421,0 +45940,11,1546,135274,0 +45941,11,19247,132392,0 +45942,11,20087,135277,0 +45943,11,18437,135159,0 +45944,11,1595,133046,0 +45945,11,5542,135473,0 +45946,11,1115,133485,0 +45947,5,2201,134581,0 +45948,11,5540,135143,0 +45949,11,5638,135129,0 +45950,11,20442,135139,0 +45951,11,20074,135276,0 +45952,11,1547,135274,0 +45953,11,19525,133046,0 +45954,11,19613,133052,0 +45955,11,8501,135424,0 +45956,4,4473,132513,0 +45957,6,4472,132540,0 +45958,7,4471,132604,0 +45959,9,23058,133766,0 +45960,8,4470,132952,0 +45961,5,4469,134586,0 +45962,3,5558,135009,0 +45963,6,6019,132543,0 +45964,8,9791,132952,0 +45965,5,8265,134591,0 +45966,3,5861,135010,0 +45967,5,16733,134585,0 +45968,13,25943,134949,0 +45969,11,8570,133048,0 +45970,1,8019,135038,0 +45971,6,2229,132535,0 +45972,8,2231,132938,0 +45973,11,8457,132415,0 +45974,11,22214,135562,0 +45975,11,19683,133476,0 +45976,11,3272,133053,0 +45977,11,19136,135421,0 +45978,11,20109,135356,0 +45979,11,19375,135424,0 +45980,11,6475,135651,0 +45981,11,20154,135325,0 +45982,11,20402,135145,0 +45983,8,16710,132940,0 +45984,11,9381,133057,0 +45985,11,25595,132404,0 +45986,11,20089,135311,0 +45987,11,9117,133045,0 +45988,11,9122,135466,0 +45989,11,7464,135127,0 +45990,3,8267,135006,0 +45991,3,3082,132624,0 +45992,3,4597,132723,0 +45993,11,5165,135325,0 +45994,6,16553,132539,0 +45995,9,23094,133754,0 +45996,8,2193,132952,0 +45997,5,14309,134591,0 +45998,3,14013,135020,0 +45999,4,16947,132515,0 +46000,6,14846,132539,0 +46001,7,17024,132606,0 +46002,9,23008,133760,0 +46003,8,17077,132952,0 +46004,5,16658,134588,0 +46005,3,14978,135009,0 +46006,11,19775,133052,0 +46007,11,20173,135274,0 +46008,11,19226,135423,0 +46009,11,20092,135276,0 +46010,11,19533,133053,0 +46011,11,20421,135146,0 +46012,11,8486,135419,0 +46013,11,19306,132409,0 +46014,11,22239,135128,0 +46015,11,5534,133489,0 +46016,11,20395,135154,0 +46017,13,21551,135940,0 +46018,13,18456,134955,0 +46019,6,16856,132579,0 +46020,3,10895,132654,0 +46021,11,20078,135326,0 +46022,11,2807,132397,0 +46023,11,20188,135323,0 +46024,11,20272,136163,0 +46025,11,19743,133729,0 +46026,11,28470,135140,0 +46027,0,15305,133071,0 +46028,11,26586,135356,0 +46029,11,3889,132395,0 +46030,11,3797,132409,0 +46031,8,1795,132938,0 +46032,11,18289,135165,0 +46033,3,2898,132628,0 +46034,6,11269,132535,0 +46035,11,2382,133476,0 +46036,11,19304,132408,0 +46037,3,16667,132658,0 +46038,5,3826,134586,0 +46039,11,21460,135162,0 +46040,11,8581,133046,0 +46041,11,15467,133041,0 +46042,11,5289,135125,0 +46043,11,5166,135327,0 +46044,11,19997,135323,0 +46045,4,3254,132495,0 +46046,6,233,132535,0 +46047,7,2219,132602,0 +46048,9,15272,133760,0 +46049,8,976,132938,0 +46050,5,687,134583,0 +46051,3,977,132624,0 +46052,9,15065,133765,0 +46053,1,6914,135038,0 +46054,9,15074,133764,0 +46055,9,15181,133768,0 +46056,6,7578,132543,0 +46057,9,23095,133767,0 +46058,8,2213,132952,0 +46059,5,1818,134589,0 +46060,1,16786,135040,0 +46061,3,1817,135025,0 +46062,6,3757,132539,0 +46063,9,23093,133768,0 +46064,8,2300,132952,0 +46065,5,2299,134591,0 +46066,1,9999,135040,0 +46067,3,5783,135023,0 +46068,6,15450,132579,0 +46069,9,23102,133766,0 +46070,8,3052,132952,0 +46071,5,2629,134582,0 +46072,1,5094,135040,0 +46073,3,5729,135031,0 +46074,4,2849,132512,0 +46075,6,2560,132592,0 +46076,7,2561,132607,0 +46077,9,23032,133762,0 +46078,8,972,132939,0 +46079,5,704,134706,0 +46080,3,14197,132760,0 +46081,4,3358,132513,0 +46082,6,3715,132540,0 +46083,7,17015,132601,0 +46084,8,17066,132952,0 +46085,5,5605,134589,0 +46086,1,12916,135039,0 +46087,3,2082,132724,0 +46088,4,4590,132513,0 +46089,6,945,132543,0 +46090,7,2118,132600,0 +46091,9,23006,133758,0 +46092,8,3992,132952,0 +46093,5,683,134589,0 +46094,1,14205,135039,0 +46095,3,13181,132725,0 +46096,11,20037,135276,0 +46097,11,19245,135423,0 +46098,11,20413,135145,0 +46099,11,19534,133053,0 +46100,11,1556,135274,0 +46101,11,20183,135276,0 +46102,11,19535,133052,0 +46103,11,1766,135274,0 +46104,11,20385,135145,0 +46105,11,6794,133485,0 +46106,11,19292,132409,0 +46107,11,19784,133046,0 +46108,11,8587,133046,0 +46109,11,19369,132414,0 +46110,11,15591,135325,0 +46111,11,4129,135276,0 +46112,11,20361,135145,0 +46113,5,16844,134586,0 +46114,4,7746,132493,0 +46115,7,10016,132603,0 +46116,4,3247,132515,0 +46117,7,2178,132601,0 +46118,4,3253,132512,0 +46119,7,3704,132607,0 +46120,7,13617,132606,0 +46121,4,14853,132495,0 +46122,7,11582,132603,0 +46123,7,2980,132606,0 +46124,11,1593,135274,0 +46125,11,7485,135325,0 +46126,11,1596,133040,0 +46127,11,1597,133040,0 +46128,11,2701,132392,0 +46129,11,1201,135145,0 +46130,11,3297,132392,0 +46131,11,7494,134520,0 +46132,11,1839,133476,0 +46133,11,2698,135651,0 +46134,11,2781,135340,0 +46135,11,5218,133481,0 +46136,11,19276,132402,0 +46137,11,20415,135155,0 +46138,5,8420,134582,0 +46139,9,23067,133763,0 +46140,11,20418,135150,0 +46141,5,4312,134582,0 +46142,11,20471,135660,0 +46143,11,20399,135641,0 +46144,11,5040,135325,0 +46145,11,8565,133052,0 +46146,8,14843,132938,0 +46147,8,4255,132955,0 +46148,11,8279,135325,0 +46149,6,3334,132535,0 +46150,13,1684,134955,0 +46151,11,1515,133718,0 +46152,13,1685,134955,0 +46153,8,3846,132939,0 +46154,7,16901,132606,0 +46155,11,20179,135326,0 +46156,11,8590,133053,0 +46157,8,12813,132938,0 +46158,13,3127,134948,0 +46159,3,2982,132741,0 +46160,11,20191,135272,0 +46161,11,1627,135274,0 +46162,13,1706,134950,0 +46163,11,20638,135313,0 +46164,8,15497,132956,0 +46165,11,5533,133481,0 +46166,15,21609,133731,0 +46167,11,19127,132407,0 +46168,3,16670,132663,0 +46169,11,20356,135155,0 +46170,11,20251,135278,0 +46171,11,20120,135325,0 +46172,11,20373,135163,0 +46173,11,5176,135313,0 +46174,11,19255,132408,0 +46175,7,1965,132602,0 +46176,11,20088,135317,0 +46177,13,18650,134321,0 +46178,11,1733,135130,0 +46179,11,22096,135353,0 +46180,11,22115,132394,0 +46181,11,8593,133046,0 +46182,11,22119,133052,0 +46183,11,19281,132417,0 +46184,11,22145,135147,0 +46185,7,11905,132609,0 +46186,6,8354,132542,0 +46187,3,10720,132645,0 +46188,11,5161,135321,0 +46189,8,17054,132939,0 +46190,6,11447,132535,0 +46191,13,18399,134962,0 +46192,3,1330,132722,0 +46193,11,20379,135147,0 +46194,11,19220,132397,0 +46195,11,1386,135419,0 +46196,11,1758,133057,0 +46197,13,1755,134955,0 +46198,13,1757,134955,0 +46199,11,8478,132410,0 +46200,11,20175,135274,0 +46201,11,19532,133053,0 +46202,9,22991,133756,0 +46203,11,19650,133052,0 +46204,11,20212,135357,0 +46205,11,19203,132402,0 +46206,11,20431,135152,0 +46207,3,16868,132760,0 +46208,11,20363,135141,0 +46209,11,19134,132395,0 +46210,11,20168,135324,0 +46211,11,28578,135468,0 +46212,11,20157,135321,0 +46213,11,19637,133048,0 +46214,11,19400,132402,0 +46215,11,20152,135311,0 +46216,3,2250,132760,0 +46217,11,6455,133723,0 +46218,11,20407,135637,0 +46219,11,2704,135641,0 +46220,12,28718,135617,0 +46221,12,28636,135618,0 +46222,12,8095,135615,0 +46224,2,10005,135018,0 +46225,3,1967,132760,0 +46226,3,8845,132663,0 +46227,3,13929,132725,0 +46228,3,8862,132674,0 +46229,6,16045,132543,0 +46230,8,11981,132952,0 +46231,5,8969,134582,0 +46232,3,16575,135029,0 +46233,4,4102,132515,0 +46234,6,5598,132540,0 +46235,7,11414,132611,0 +46236,8,8449,132952,0 +46237,5,7834,134590,0 +46238,3,8417,135010,0 +46239,13,18662,134955,0 +46240,11,22075,135274,0 +46241,11,20438,135139,0 +46242,11,19204,132410,0 +46243,11,2705,135637,0 +46244,11,2717,135641,0 +46245,11,22135,135650,0 +46246,11,2706,135637,0 +46247,3,989,132724,0 +46248,4,4592,132513,0 +46249,6,2355,132541,0 +46250,7,2992,132603,0 +46251,8,2358,132955,0 +46252,5,691,134589,0 +46253,11,4788,135325,0 +46254,4,2985,132493,0 +46255,6,2986,132535,0 +46256,7,2987,132602,0 +46257,8,2988,132938,0 +46258,5,2989,134583,0 +46259,6,5459,132543,0 +46260,8,2609,132957,0 +46261,5,2610,134587,0 +46262,3,2645,135006,0 +46263,11,20291,135302,0 +46264,11,20312,135311,0 +46265,5,685,134583,0 +46266,8,3990,132955,0 +46267,6,11470,132537,0 +46268,11,2707,135641,0 +46269,4,6055,132495,0 +46270,11,8534,135424,0 +46271,11,1926,135145,0 +46272,11,1927,135145,0 +46273,11,1928,135271,0 +46274,11,1929,135274,0 +46275,11,1930,135277,0 +46276,11,3092,135273,0 +46277,11,1022,133041,0 +46278,11,7427,132392,0 +46279,11,1938,135613,0 +46280,11,3940,133043,0 +46281,11,2738,135641,0 +46282,11,7462,133974,0 +46283,11,7443,133964,0 +46284,11,4843,134714,0 +46285,11,6535,134719,0 +46286,11,6532,134717,0 +46287,11,6534,134719,0 +46288,11,7463,133974,0 +46289,11,3375,132417,0 +46290,11,20038,135321,0 +46291,11,20153,135351,0 +46292,11,22137,135640,0 +46293,11,22142,135302,0 +46294,11,22139,135342,0 +46295,13,2552,134955,0 +46296,13,18656,134955,0 +46297,13,2553,134955,0 +46298,13,17884,134955,0 +46299,13,18670,134955,0 +46300,13,18486,134955,0 +46301,13,18665,134949,0 +46302,11,20451,135641,0 +46303,13,18485,134955,0 +46304,13,18729,134949,0 +46305,13,18484,134955,0 +46306,11,20470,135650,0 +46307,11,20372,135468,0 +46308,11,22219,135562,0 +46309,8,3985,132939,0 +46310,3,16671,132666,0 +46311,6,4272,132539,0 +46312,5,8152,134592,0 +46313,3,4270,135020,0 +46314,11,20598,135651,0 +46315,11,20345,135638,0 +46316,5,2628,134582,0 +46317,5,8953,134588,0 +46318,9,23021,133753,0 +46319,9,15042,133756,0 +46320,11,19729,133489,0 +46321,11,3447,135316,0 +46322,0,15506,133073,0 +46323,2,1184,132759,0 +46324,11,8687,133041,0 +46325,11,5221,133729,0 +46326,11,4995,135148,0 +46327,11,19623,133053,0 +46328,11,8470,132408,0 +46329,11,5170,135321,0 +46330,1,8807,135039,0 +46331,11,8472,132410,0 +46332,11,20341,135644,0 +46333,11,20213,135357,0 +46334,11,20346,135168,0 +46335,3,16114,132626,0 +46336,6,13318,132543,0 +46337,5,3173,134581,0 +46338,1,3169,135049,0 +46339,11,20370,135143,0 +46340,11,20211,135357,0 +46341,4,10616,132494,0 +46342,11,19305,132406,0 +46343,3,12217,132677,0 +46344,11,19389,132393,0 +46345,3,9502,132724,0 +46346,6,2083,132538,0 +46347,6,9512,132540,0 +46348,9,23028,133762,0 +46349,6,5853,132539,0 +46350,9,23010,133150,0 +46351,3,6026,132760,0 +46352,8,5406,132939,0 +46353,3,5655,132725,0 +46354,6,4956,132539,0 +46355,3,9521,132718,0 +46356,7,11760,132611,0 +46357,7,17023,132606,0 +46358,11,2776,133052,0 +46359,13,18730,134955,0 +46360,3,9171,135011,0 +46361,5,14159,134586,0 +46362,6,7949,132543,0 +46363,8,13503,132957,0 +46364,3,16871,132719,0 +46365,4,16187,132492,0 +46366,5,18452,134706,0 +46367,6,16387,132592,0 +46368,7,16371,132601,0 +46369,8,16388,132952,0 +46370,13,18672,134950,0 +46371,3,954,132624,0 +46372,6,3533,132535,0 +46373,7,2230,132604,0 +46374,3,1511,132624,0 +46375,8,2220,132938,0 +46376,3,2968,132747,0 +46377,5,2969,134583,0 +46378,4,2970,132492,0 +46379,6,4028,132535,0 +46380,7,2972,132606,0 +46381,8,3979,132938,0 +46382,3,2974,132748,0 +46383,4,2975,132492,0 +46384,5,2976,134583,0 +46385,6,2977,132535,0 +46386,7,2978,132602,0 +46387,8,3978,132938,0 +46388,3,2663,135018,0 +46389,5,1863,134590,0 +46390,6,1861,132539,0 +46391,8,3212,132952,0 +46392,3,16769,135021,0 +46393,5,7592,134588,0 +46394,6,8418,132539,0 +46395,8,10376,132952,0 +46396,13,18749,134949,0 +46397,13,18733,134952,0 +46398,13,18732,134949,0 +46399,13,18772,134952,0 +46400,3,70729,132725,0 +46401,4,8396,132492,0 +46402,5,8416,134586,0 +46403,6,8369,132542,0 +46404,7,10464,132601,0 +46405,8,11554,132959,0 +46406,3,8331,132646,0 +46407,4,7748,132505,0 +46408,5,5680,134589,0 +46409,6,14295,132542,0 +46410,7,13015,132602,0 +46411,8,1657,132939,0 +46412,11,8512,132402,0 +46413,11,19601,133481,0 +46414,11,22112,132401,0 +46415,11,12992,135434,0 +46416,11,22121,133053,0 +46417,11,22136,135641,0 +46418,11,1768,135145,0 +46419,12,8104,135493,0 +46420,12,20723,135490,0 +46421,12,20722,135499,0 +46422,12,20714,135489,0 +46423,12,2409,135610,0 +46424,12,1136,135611,0 +46425,12,20728,135613,0 +46426,14,2414,132382,0 +46427,14,2418,132384,0 +46428,11,12284,135275,0 +46429,11,22084,135327,0 +46430,11,7590,135419,0 +46431,11,22216,135576,0 +46432,11,6795,133486,0 +46433,11,22133,133040,0 +46434,11,22141,135651,0 +46435,11,22150,135469,0 +46436,11,22098,135313,0 +46437,11,22105,132392,0 +46438,11,22111,135424,0 +46439,11,22120,133487,0 +46440,11,22134,133054,0 +46441,11,22140,135341,0 +46442,11,20389,135151,0 +46443,5,2922,134583,0 +46444,4,3121,132498,0 +46445,11,15430,135162,0 +46446,12,10671,135531,0 +46447,11,2466,133041,0 +46448,11,7442,133041,0 +46449,11,2469,135145,0 +46450,15,6488,133941,0 +46451,8,4485,132941,0 +46452,15,6555,135124,0 +46453,3,16666,132643,0 +46454,11,20590,135651,0 +46455,3,10708,135009,0 +46456,6,15682,132543,0 +46457,6,2166,132543,0 +46458,3,10621,132659,0 +46459,2,10840,135029,0 +46460,2,10705,135030,0 +46461,2,10667,135023,0 +46462,3,7811,132715,0 +46463,2,10861,135024,0 +46464,9,23105,133759,0 +46465,3,10849,132680,0 +46466,6,5380,132543,0 +46467,9,23144,133762,0 +46468,3,10896,132654,0 +46469,3,22033,132664,0 +46470,2,10798,135025,0 +46471,3,10626,132674,0 +46472,3,8849,132665,0 +46473,3,16614,132679,0 +46474,3,10462,132679,0 +46475,3,8855,132645,0 +46476,3,10461,132681,0 +46477,3,3946,132673,0 +46478,0,15284,133756,0 +46479,0,15293,133132,0 +46480,0,11275,133072,0 +46481,0,15336,132767,0 +46482,0,15547,133072,0 +46483,11,20473,135637,0 +46484,9,15082,133768,0 +46485,9,15089,133754,0 +46487,11,20441,134298,0 +46488,4,13165,132495,0 +46489,5,24717,134583,0 +46490,11,18494,132795,0 +46491,11,24594,132791,0 +46492,11,24595,132800,0 +46493,11,7454,133941,0 +46494,11,7456,133938,0 +46495,11,6560,133941,0 +46496,11,6549,133941,0 +46497,11,6582,134249,0 +46498,11,6581,134249,0 +46499,11,6530,0,0 +46500,11,6529,0,0 +46501,11,7457,0,0 +46502,0,16826,133118,0 +46503,11,20117,135276,0 +46504,11,20383,135651,0 +46505,11,2708,135641,0 +46506,12,2786,135493,0 +46507,12,20654,135612,0 +46508,12,2787,135493,0 +46509,12,20712,135490,0 +46510,12,20738,135610,0 +46511,12,20671,135491,0 +46512,12,20717,135610,0 +46513,12,20668,135493,0 +46514,12,7531,135610,0 +46515,11,20534,135644,0 +46516,3,9897,132689,0 +46517,11,5188,135280,0 +46518,9,23084,133756,0 +46519,11,5122,132418,0 +46520,11,7479,136040,0 +46521,11,1160,133491,0 +46522,11,8465,132417,0 +46523,11,19669,133482,0 +46524,3,9727,135014,0 +46525,5,1963,134582,0 +46526,11,6443,135641,0 +46527,11,19633,133052,0 +46528,11,20091,135355,0 +46529,11,19236,132397,0 +46530,12,6235,135500,0 +46531,12,20552,135497,0 +46532,11,8463,132417,0 +46533,11,4805,135327,0 +46534,11,5198,133483,0 +46535,11,19929,132408,0 +46536,4,23529,132491,0 +46537,5,13095,134583,0 +46538,7,4331,132602,0 +46539,7,17518,132602,0 +46540,4,19499,132492,0 +46541,3,22458,132738,0 +46542,5,4333,134583,0 +46543,3,4407,132630,0 +46544,7,19677,132606,0 +46545,3,4412,132631,0 +46546,3,9695,132750,0 +46547,11,20151,135324,0 +46548,11,2428,132405,0 +46549,15,13109,135466,0 +46550,11,18575,133714,0 +46551,3,2967,132624,0 +46552,4,15837,132490,0 +46553,13,18481,134955,0 +46554,9,23099,133758,0 +46555,12,8107,135490,0 +46556,12,20732,135612,0 +46557,11,8513,135419,0 +46558,11,20605,135651,0 +46559,6,2928,132535,0 +46560,4,4297,132493,0 +46561,11,20320,135652,0 +46562,1,16828,135036,0 +46563,11,19664,133039,0 +46564,13,2934,134948,0 +46565,11,20359,135654,0 +46566,11,3007,132938,0 +46567,15,21596,134335,0 +46568,15,21597,134336,0 +46571,6,4314,132541,0 +46572,11,20378,135152,0 +46573,3,3040,132760,0 +46574,9,23077,133757,0 +46575,5,14615,134588,0 +46576,0,16545,133132,0 +46577,3,8960,132647,0 +46578,5,8263,134590,0 +46579,6,14525,132543,0 +46580,8,14299,132955,0 +46581,3,16875,135013,0 +46582,5,17160,134586,0 +46583,6,16980,132543,0 +46584,8,17053,132952,0 +46585,3,22677,132624,0 +46586,5,7193,134583,0 +46587,6,10559,132589,0 +46588,8,10790,132962,0 +46589,3,5866,132647,0 +46590,5,7950,134590,0 +46591,6,5868,132543,0 +46592,8,11035,132955,0 +46593,3,70730,132760,0 +46594,5,10450,134706,0 +46595,6,8086,132592,0 +46596,8,8087,132939,0 +46597,8,1407,132939,0 +46598,3,14549,132649,0 +46599,5,4765,134581,0 +46600,6,4614,132539,0 +46601,8,14119,132952,0 +46602,3,9739,132724,0 +46603,5,10220,134582,0 +46604,6,8443,132539,0 +46605,8,9587,132952,0 +46606,3,12295,132628,0 +46607,5,25768,134582,0 +46608,6,12087,132588,0 +46609,8,12296,132944,0 +46610,3,1995,132724,0 +46611,0,10998,133126,0 +46612,9,23027,134367,0 +46613,3,9446,132679,0 +46614,0,21292,133117,0 +46615,12,3187,135499,0 +46616,5,16534,134582,0 +46617,12,20727,135612,0 +46618,12,20726,135612,0 +46619,12,20725,135612,0 +46620,12,20675,135490,0 +46621,12,20670,135489,0 +46622,12,5392,135500,0 +46623,12,20653,135500,0 +46624,12,20672,135491,0 +46625,12,20740,135610,0 +46626,12,20729,135614,0 +46627,12,20734,135610,0 +46628,6,11521,132588,0 +46629,8,11522,132945,0 +46630,5,11525,134583,0 +46631,3,11520,132628,0 +46632,3,3293,132624,0 +46633,3,4596,132723,0 +46634,5,7647,134587,0 +46635,6,9081,132542,0 +46636,8,10303,132955,0 +46637,6,8268,132541,0 +46638,3,27554,132667,0 +46639,9,15149,133753,0 +46640,11,19209,132402,0 +46641,3,16694,132659,0 +46642,5,8079,134586,0 +46643,8,9170,132939,0 +46644,6,2204,132543,0 +46645,12,20669,135492,0 +46646,11,8588,133052,0 +46654,11,2699,133980,0 +46655,8,3299,132952,0 +46656,9,23128,133763,0 +46657,11,18340,132402,0 +46658,13,2324,134956,0 +46659,3,16696,132662,0 +46660,3,12965,132624,0 +46661,11,20396,135637,0 +46662,11,20362,135147,0 +46663,11,26576,135343,0 +46664,11,19557,135639,0 +46665,11,20072,135348,0 +46666,11,8525,132402,0 +46667,11,3243,132397,0 +46668,11,26590,135350,0 +46669,11,19545,133052,0 +46670,11,19622,133476,0 +46671,11,5509,132401,0 +46672,11,26585,135324,0 +46673,11,20184,135357,0 +46674,11,8585,133053,0 +46675,11,19372,135424,0 +46676,7,14867,132609,0 +46677,11,19283,132408,0 +46678,7,4275,132605,0 +46679,11,5228,133488,0 +46680,7,3379,132605,0 +46681,7,11371,132606,0 +46682,11,20186,135321,0 +46683,7,14535,132607,0 +46684,11,5232,133479,0 +46685,11,20250,135280,0 +46686,11,19275,132408,0 +46687,7,25766,132600,0 +46688,7,11527,132600,0 +46689,7,6057,132602,0 +46690,3,10468,132682,0 +46691,4,5372,132512,0 +46692,11,20607,135640,0 +46693,11,19624,133482,0 +46694,7,8186,132607,0 +46695,11,20381,135149,0 +46696,7,3406,132601,0 +46697,4,9917,132496,0 +46698,7,8210,132606,0 +46699,1,10166,135038,0 +46700,3,8846,132659,0 +46701,9,23103,133763,0 +46702,11,21052,133052,0 +46703,5,3432,134582,0 +46704,11,20176,135274,0 +46705,11,19772,133053,0 +46706,3,10996,135009,0 +46707,5,3442,134706,0 +46708,6,12132,132538,0 +46709,8,7571,132939,0 +46710,13,18490,134955,0 +46711,11,20444,135150,0 +46712,6,26927,132539,0 +46713,7,26928,132606,0 +46714,8,27175,132963,0 +46715,5,25273,134583,0 +46716,3,25272,132719,0 +46717,6,27993,132542,0 +46718,8,16067,132953,0 +46719,5,28591,134586,0 +46720,3,16874,132657,0 +46721,6,10938,132539,0 +46722,8,14509,132952,0 +46723,5,11008,134706,0 +46724,3,8182,135011,0 +46725,6,26944,132537,0 +46726,7,26945,132606,0 +46727,8,28997,132959,0 +46728,5,25239,134583,0 +46729,3,25238,132647,0 +46730,6,11060,132539,0 +46731,8,11061,132952,0 +46732,5,11059,134706,0 +46733,3,11021,135011,0 +46734,6,10089,132607,0 +46735,7,10090,132607,0 +46736,3,10018,132719,0 +46737,8,10598,132952,0 +46738,5,11014,134706,0 +46739,4,4506,133693,0 +46740,9,23015,133763,0 +46741,7,10940,132606,0 +46742,1,21457,135040,0 +46743,11,19252,132415,0 +46744,11,3502,133041,0 +46745,11,20434,135158,0 +46746,3,16655,132675,0 +46747,3,12971,132624,0 +46748,9,15165,133770,0 +46749,11,1661,135145,0 +46750,2,3552,135018,0 +46751,4,3553,133694,0 +46752,0,15912,133117,0 +46753,11,6584,133942,0 +46754,15,3573,133718,0 +46755,4,10061,132493,0 +46756,11,3213,135274,0 +46757,7,10939,132609,0 +46758,11,5949,135129,0 +46759,4,5838,132492,0 +46760,7,14086,132606,0 +46761,4,14963,132495,0 +46762,7,16555,132612,0 +46763,4,5859,132495,0 +46764,7,7082,132612,0 +46765,4,5858,132492,0 +46766,7,9647,132602,0 +46767,4,9094,132515,0 +46768,7,7758,132612,0 +46769,0,21302,133077,0 +46770,11,3746,133476,0 +46771,11,2809,135330,0 +46772,11,20339,135169,0 +46773,11,20174,135311,0 +46774,15,6483,133436,0 +46775,15,6479,133939,0 +46776,15,6489,133939,0 +46777,15,6487,133436,0 +46778,2,16610,135031,0 +46779,2,3686,135022,0 +46780,4,3696,132493,0 +46781,12,4427,135614,0 +46782,3,10123,132717,0 +46783,11,7437,135128,0 +46784,11,7480,135131,0 +46785,7,3302,132607,0 +46786,6,3709,132539,0 +46787,11,6806,133479,0 +46788,4,3576,133693,0 +46789,3,3719,135009,0 +46790,11,6441,135646,0 +46791,11,11919,135153,0 +46792,6,4030,132535,0 +46793,9,23115,133765,0 +46794,13,18659,134950,0 +46795,15,6541,134799,0 +46796,11,5120,135144,0 +46797,7,11145,132610,0 +46798,6,3755,132539,0 +46799,11,20015,135313,0 +46800,5,8956,134594,0 +46801,8,3071,132938,0 +46802,3,12213,132659,0 +46803,11,28607,135302,0 +46805,6,23528,132535,0 +46806,3,13090,132624,0 +46807,8,25850,132938,0 +46808,5,22459,134583,0 +46809,8,3518,132939,0 +46810,9,23421,133760,0 +46811,3,3760,132624,0 +46812,1,23531,135036,0 +46813,1,9038,135040,0 +46814,6,4343,132535,0 +46815,8,4413,132939,0 +46816,6,9412,132535,0 +46817,8,9414,132939,0 +46818,11,20196,135312,0 +46819,11,8516,135420,0 +46820,11,8474,135419,0 +46821,11,5205,133483,0 +46822,11,3780,133041,0 +46823,12,20664,135491,0 +46824,11,7430,134294,0 +46825,9,23020,133766,0 +46826,3,3816,132715,0 +46827,6,3827,132542,0 +46828,8,3828,132939,0 +46829,7,3829,132603,0 +46830,3,3831,132715,0 +46831,5,3833,134582,0 +46832,6,3835,132542,0 +46833,8,3839,132939,0 +46834,7,3841,132603,0 +46835,3,3843,132715,0 +46836,5,3844,134582,0 +46837,8,3845,132939,0 +46838,3,16615,132681,0 +46839,0,15924,133116,0 +46840,10,932,132483,0 +46841,3,16528,132655,0 +46842,8,8614,132938,0 +46843,1,20715,135036,0 +46844,9,23101,133756,0 +46845,4,6162,132494,0 +46846,5,3179,134582,0 +46847,8,14127,132939,0 +46848,3,1797,132716,0 +46849,12,1137,135610,0 +46850,3,3876,132683,0 +46851,11,19546,133052,0 +46853,5,9049,134585,0 +46854,11,20414,135637,0 +46855,9,23085,133753,0 +46856,4,3335,132495,0 +46857,3,3064,132723,0 +46858,11,19231,132402,0 +46859,4,8958,132497,0 +46860,7,6610,132612,0 +46861,4,3392,132514,0 +46862,7,10901,132605,0 +46863,4,9464,132495,0 +46864,7,2675,132610,0 +46865,4,4444,132515,0 +46866,7,2575,132606,0 +46867,4,6978,132513,0 +46868,7,10053,132606,0 +46869,4,8173,132495,0 +46870,7,2956,132610,0 +46871,4,7619,132495,0 +46872,7,7747,132602,0 +46873,4,6103,132495,0 +46874,7,14081,132602,0 +46876,4,10875,132513,0 +46877,7,14161,132609,0 +46878,7,10344,132602,0 +46879,7,8183,132607,0 +46880,7,12342,132605,0 +46881,7,16595,132607,0 +46882,7,9206,132606,0 +46883,7,12126,132601,0 +46884,13,18512,134955,0 +46885,13,18655,134955,0 +46886,13,2052,134955,0 +46887,13,18488,134955,0 +46888,13,1673,134955,0 +46889,13,18696,134949,0 +46890,13,18702,134949,0 +46891,11,5010,135158,0 +46892,11,6536,134718,0 +46893,11,6533,134787,0 +46894,9,23040,133759,0 +46895,0,15339,133136,0 +46896,3,4085,132624,0 +46897,11,20374,135466,0 +46898,6,17164,132542,0 +46899,12,20667,135490,0 +46900,4,9024,132499,0 +46901,1,10169,135036,0 +46902,9,23100,133765,0 +46903,3,8732,132724,0 +46904,5,3083,134583,0 +46905,3,8189,135011,0 +46906,4,7858,132506,0 +46907,8,3875,132955,0 +46908,11,19228,132416,0 +46909,8,12468,132940,0 +46910,13,18769,134947,0 +46911,13,4108,134956,0 +46912,6,3750,132539,0 +46913,1,4109,135034,0 +46914,11,26366,133711,0 +46915,12,20660,135490,0 +46916,11,19287,132402,0 +46917,11,20150,135324,0 +46918,11,20216,135325,0 +46919,11,3727,135147,0 +46920,11,3550,135637,0 +46921,11,19694,133486,0 +46922,4,8739,132493,0 +46923,6,6190,132543,0 +46924,7,6173,132601,0 +46925,8,11298,132957,0 +46926,5,6189,134586,0 +46927,1,8374,135040,0 +46928,3,6102,132681,0 +46929,4,4599,132515,0 +46930,6,5522,132539,0 +46931,7,14802,132606,0 +46932,9,23029,133150,0 +46933,8,17631,132952,0 +46934,5,5521,134586,0 +46935,1,11270,135039,0 +46936,3,3278,132724,0 +46937,9,15121,133754,0 +46938,13,4130,134950,0 +46939,11,20180,135272,0 +46940,9,23089,133763,0 +46941,5,6957,134587,0 +46942,7,9417,132605,0 +46943,0,25658,133071,0 +46944,0,15301,133138,0 +46945,1,9422,135040,0 +46946,1,9424,135040,0 +46947,5,9415,134585,0 +46948,5,4744,134584,0 +46949,3,70731,132624,0 +46950,3,9425,132628,0 +46951,6,16640,132535,0 +46952,6,4153,132535,0 +46953,11,4154,135640,0 +46954,11,5129,135321,0 +46955,11,20215,135346,0 +46956,11,2775,133044,0 +46957,11,15468,133041,0 +46958,11,5105,135326,0 +46959,11,20252,135275,0 +46960,11,782,135423,0 +46961,11,8502,132408,0 +46962,11,6474,133980,0 +46963,0,15908,133135,0 +46964,0,15907,133122,0 +46965,0,15318,133071,0 +46966,0,15914,133135,0 +46967,0,21308,133117,0 +46968,0,15299,133071,0 +46969,11,6262,132392,0 +46970,6,3749,132543,0 +46971,11,20412,135466,0 +46972,4,8943,132491,0 +46973,6,11900,132541,0 +46974,7,11204,132604,0 +46975,8,11405,132957,0 +46976,5,7710,134592,0 +46977,1,14095,135040,0 +46978,3,10113,135009,0 +46979,4,5865,132491,0 +46980,7,9894,132609,0 +46981,9,15106,133766,0 +46982,8,10357,132957,0 +46983,5,16701,134586,0 +46984,1,8554,135040,0 +46985,3,16699,135008,0 +46986,4,6121,132504,0 +46987,6,5451,132539,0 +46988,7,14319,132604,0 +46989,9,22994,133759,0 +46990,8,10508,132958,0 +46991,5,5297,134587,0 +46992,1,12962,135037,0 +46993,3,5295,135009,0 +46994,4,8133,132512,0 +46995,6,12541,132537,0 +46996,7,10075,132600,0 +46997,8,12572,132958,0 +46998,5,7011,134593,0 +46999,1,4968,135039,0 +47000,3,12755,135017,0 +47001,4,5827,132511,0 +47002,6,16994,132539,0 +47003,7,3381,132609,0 +47004,9,23065,133764,0 +47005,8,3081,132952,0 +47006,5,3078,134592,0 +47007,1,4486,135039,0 +47008,3,3077,132724,0 +47009,4,8137,132495,0 +47010,6,10663,132537,0 +47011,7,10976,132603,0 +47012,9,23068,133759,0 +47013,8,9366,132955,0 +47014,5,5947,134586,0 +47015,1,8198,135037,0 +47016,3,8136,132719,0 +47017,4,5725,133694,0 +47018,13,18814,134952,0 +47019,13,18774,134957,0 +47020,13,18813,134949,0 +47021,13,18469,134955,0 +47022,13,17885,134956,0 +47023,13,18474,134955,0 +47024,4,4335,132498,0 +47025,6,4336,132535,0 +47026,7,4337,132602,0 +47027,9,15068,133756,0 +47028,8,4338,132938,0 +47029,5,4339,134583,0 +47030,1,8035,135038,0 +47031,3,4340,132627,0 +47032,4,4329,132495,0 +47033,6,4330,132535,0 +47034,8,4332,132938,0 +47035,3,4334,132635,0 +47036,4,4342,132495,0 +47037,7,4344,132602,0 +47038,9,14794,133768,0 +47039,8,4345,132938,0 +47040,5,4346,134583,0 +47041,11,20195,135349,0 +47042,11,19374,135424,0 +47043,11,19526,133053,0 +47044,11,2711,135641,0 +47045,11,20309,135155,0 +47046,12,20550,135490,0 +47047,12,20721,135610,0 +47048,3,16643,132673,0 +47049,7,4302,132606,0 +47050,5,4304,134588,0 +47051,3,16878,132669,0 +47052,8,9399,132955,0 +47053,0,15287,133135,0 +47054,8,11632,132961,0 +47055,7,14652,132606,0 +47056,5,14655,134581,0 +47057,7,12046,132608,0 +47058,5,8974,134593,0 +47059,6,6063,132543,0 +47060,0,15904,133117,0 +47061,7,14594,132612,0 +47062,5,5782,134586,0 +47063,6,5594,132543,0 +47064,0,21304,133117,0 +47065,5,2365,134589,0 +47066,6,2366,132541,0 +47067,3,5497,132721,0 +47068,3,9131,132722,0 +47069,7,8410,132608,0 +47070,5,9132,134593,0 +47071,7,11655,132602,0 +47072,5,10724,134587,0 +47073,8,10728,132959,0 +47074,13,18454,134955,0 +47075,13,18699,134951,0 +47076,13,4403,134956,0 +47077,13,26325,134952,0 +47078,13,26085,134956,0 +47079,13,18771,134948,0 +47080,3,25801,132751,0 +47081,8,25802,132937,0 +47082,6,25804,132584,0 +47083,3,22005,132635,0 +47084,8,23968,132959,0 +47085,6,22505,132541,0 +47086,0,25825,132768,0 +47087,0,15288,133131,0 +47088,5,13175,134583,0 +47089,0,15290,133118,0 +47090,5,4418,134583,0 +47091,12,20736,135616,0 +47092,12,4426,135498,0 +47093,11,28520,135351,0 +47094,11,18495,132790,0 +47095,11,20380,135639,0 +47096,8,4438,132938,0 +47097,5,4439,134582,0 +47098,6,5480,132541,0 +47099,9,23119,133762,0 +47100,9,15110,133758,0 +47101,13,17888,134948,0 +47102,11,20223,135343,0 +47103,4,8977,133694,0 +47104,7,4464,133345,0 +47105,3,4451,132722,0 +47106,3,16695,132660,0 +47107,1,4455,135038,0 +47108,0,15307,133117,0 +47109,15,21605,134333,0 +47110,11,19217,132415,0 +47111,12,20662,135611,0 +47112,13,4458,134952,0 +47113,4,8344,132506,0 +47114,7,3897,132609,0 +47115,11,20294,135150,0 +47116,6,4835,132539,0 +47117,3,8638,132638,0 +47118,6,7029,132579,0 +47119,1,4869,135037,0 +47120,3,4492,132721,0 +47121,5,4497,134582,0 +47122,8,4919,132939,0 +47123,7,4494,132607,0 +47124,6,4493,132539,0 +47125,1,12980,135036,0 +47126,8,9503,132939,0 +47127,5,9505,134582,0 +47128,3,9511,132724,0 +47129,3,1975,132725,0 +47130,4,4099,132493,0 +47131,8,2362,132939,0 +47132,8,9526,132939,0 +47133,4,4591,132492,0 +47134,4,6049,132495,0 +47135,1,11274,135039,0 +47136,1,9528,135043,0 +47137,8,2361,132958,0 +47138,8,9543,132939,0 +47139,3,8359,132723,0 +47140,3,8414,132723,0 +47141,4,8350,132506,0 +47142,4,8606,132492,0 +47143,7,9546,132611,0 +47144,7,9550,132609,0 +47145,5,16794,134582,0 +47146,4,9715,132490,0 +47147,13,18668,134952,0 +47148,4,7766,132498,0 +47149,13,2916,134955,0 +47150,11,19615,133054,0 +47151,8,2202,132939,0 +47152,7,3041,132611,0 +47153,5,2656,134587,0 +47154,8,11036,132939,0 +47155,6,5840,132543,0 +47156,6,4615,132543,0 +47157,1,5494,135037,0 +47158,1,17135,135040,0 +47159,5,4617,134581,0 +47160,5,4619,134586,0 +47161,8,4620,132939,0 +47162,8,11226,132951,0 +47163,6,4301,132539,0 +47164,6,4466,132537,0 +47165,0,15024,133133,0 +47166,0,15319,133129,0 +47167,3,17128,132678,0 +47168,6,4631,132539,0 +47169,9,15076,133754,0 +47170,9,15063,133756,0 +47171,4,5764,132514,0 +47172,4,4634,132495,0 +47173,2,4635,135029,0 +47174,8,8876,132953,0 +47175,2,3685,135031,0 +47176,2,4637,135022,0 +47177,2,4638,135012,0 +47178,2,4639,135020,0 +47179,2,12969,135022,0 +47180,5,1883,134586,0 +47181,2,10837,135006,0 +47182,0,4651,133149,0 +47183,12,20743,135616,0 +47184,0,17597,133149,0 +47185,12,15835,135616,0 +47186,12,8256,135615,0 +47187,0,13374,133149,0 +47188,0,4661,133146,0 +47189,5,4365,134582,0 +47190,4,5772,132493,0 +47191,11,20390,135151,0 +47192,1,11327,135038,0 +47193,13,18694,134321,0 +47194,11,19398,132407,0 +47195,11,20369,135638,0 +47196,9,23019,133756,0 +47197,3,4723,134321,0 +47198,11,20439,134298,0 +47199,11,20592,135652,0 +47200,3,7708,132719,0 +47201,4,6182,132491,0 +47202,9,23098,133754,0 +47203,4,7894,132500,0 +47204,12,4441,135498,0 +47205,3,4741,132680,0 +47206,13,17887,134948,0 +47207,0,4759,133149,0 +47208,9,15066,133757,0 +47209,5,10992,134590,0 +47210,13,18653,134953,0 +47211,3,4767,132743,0 +47212,8,4768,132957,0 +47213,11,19783,133044,0 +47214,7,4778,132605,0 +47215,0,21313,133111,0 +47216,7,7794,132606,0 +47217,12,21016,135464,0 +47218,11,2440,133041,0 +47219,11,8529,135420,0 +47220,11,6813,133489,0 +47221,11,3925,135637,0 +47222,11,20420,135145,0 +47223,11,20111,135274,0 +47224,11,22478,132403,0 +47225,11,19778,133045,0 +47226,11,8586,133052,0 +47227,11,20430,135651,0 +47228,11,20401,135168,0 +47229,12,20674,135495,0 +47230,13,18789,134957,0 +47231,6,4846,132535,0 +47232,9,25945,133754,0 +47233,6,4921,132540,0 +47234,1,27551,135040,0 +47235,9,15061,133767,0 +47236,4,5845,132493,0 +47237,4,15458,132493,0 +47238,9,26979,133771,0 +47239,4,25140,132492,0 +47240,4,8149,132492,0 +47241,9,23071,133150,0 +47242,8,4855,132937,0 +47243,9,25950,133759,0 +47244,4,12036,132494,0 +47245,9,26981,133769,0 +47246,4,26947,132514,0 +47247,4,5867,132493,0 +47248,9,23137,133754,0 +47249,4,8188,132492,0 +47250,9,23012,133764,0 +47251,1,25770,135059,0 +47252,9,26048,133758,0 +47253,4,12086,132523,0 +47254,1,5115,135040,0 +47255,4,4989,132511,0 +47256,1,8888,135039,0 +47257,9,23044,133763,0 +47258,1,25783,135039,0 +47259,9,25979,133758,0 +47260,4,11523,132493,0 +47261,1,8098,135039,0 +47262,9,26047,133762,0 +47263,4,25803,132521,0 +47264,9,23140,133754,0 +47265,4,4300,132492,0 +47266,9,23024,133760,0 +47267,9,26016,133766,0 +47268,1,9311,135036,0 +47269,9,18131,132682,0 +47270,4,9398,132492,0 +47271,1,4491,135038,0 +47272,9,23045,133767,0 +47273,5,7182,134582,0 +47274,1,25897,135045,0 +47275,9,23747,133754,0 +47276,4,13378,132505,0 +47277,1,7004,135034,0 +47278,1,9440,135033,0 +47279,1,11769,135056,0 +47280,9,23031,132655,0 +47281,1,11638,135033,0 +47282,9,23125,133765,0 +47283,4,6062,132493,0 +47284,1,17191,135036,0 +47285,4,10269,132501,0 +47286,5,4912,134583,0 +47287,7,16925,132617,0 +47288,7,4916,132608,0 +47289,3,12718,132660,0 +47290,11,7313,135321,0 +47291,11,5154,135325,0 +47292,8,3528,132939,0 +47293,8,12550,132939,0 +47294,9,23075,133764,0 +47295,11,19538,133053,0 +47296,11,6808,133476,0 +47297,3,2577,135014,0 +47298,3,16811,132658,0 +47299,4,4954,132491,0 +47300,4,9211,132491,0 +47301,9,23131,133763,0 +47302,9,15247,133753,0 +47303,7,1980,132603,0 +47304,7,4601,132606,0 +47305,7,3382,132603,0 +47306,9,23087,133754,0 +47307,1,5496,135039,0 +47308,5,3541,134583,0 +47309,11,7319,135311,0 +47310,11,20155,135329,0 +47311,13,18511,134956,0 +47312,11,1390,132415,0 +47313,11,19224,132417,0 +47314,4,6071,132518,0 +47315,4,4881,132515,0 +47316,5,6183,134586,0 +47317,5,8140,134590,0 +47318,5,15766,134587,0 +47319,1,5000,135036,0 +47320,1,5005,135036,0 +47321,15,21601,133434,0 +47322,15,8043,133438,0 +47323,11,13908,135641,0 +47324,3,2104,132715,0 +47325,11,5290,135574,0 +47326,6,8308,132537,0 +47327,3,7826,132724,0 +47328,7,13351,132611,0 +47329,5,6202,134582,0 +47330,8,5313,132938,0 +47331,13,18522,134955,0 +47332,12,6109,135464,0 +47333,4,6559,132495,0 +47334,8,16319,132939,0 +47335,6,10080,132539,0 +47336,3,12544,135018,0 +47337,5,3441,134583,0 +47338,4,10078,132492,0 +47339,5,9671,134582,0 +47340,11,19634,133485,0 +47341,7,6204,132611,0 +47342,3,11498,132716,0 +47343,12,3186,135493,0 +47344,11,20013,135274,0 +47345,9,15211,133760,0 +47346,6,7815,132542,0 +47347,13,18510,134955,0 +47348,11,20423,135158,0 +47349,8,11066,132939,0 +47350,6,11229,132542,0 +47351,9,23104,133763,0 +47352,6,5409,132535,0 +47353,11,20388,135638,0 +47354,11,19214,132414,0 +47355,4,8151,132494,0 +47356,11,6566,135140,0 +47357,9,15244,133762,0 +47358,11,20426,135159,0 +47359,8,5418,132939,0 +47360,11,19544,133052,0 +47361,13,5422,134957,0 +47362,7,5425,132602,0 +47363,5,10871,134706,0 +47364,11,8572,133046,0 +47365,7,10971,132606,0 +47366,13,18491,134956,0 +47367,5,8163,134593,0 +47368,11,20009,135350,0 +47369,11,19741,133041,0 +47370,7,5434,132606,0 +47371,8,5435,132938,0 +47372,4,8431,132495,0 +47373,11,19596,133054,0 +47374,11,20083,135326,0 +47375,3,16673,132670,0 +47376,7,16934,132616,0 +47377,11,5175,135315,0 +47378,11,5569,134070,0 +47379,11,6798,133039,0 +47380,5,4293,134590,0 +47381,15,11958,135472,0 +47382,11,5536,135277,0 +47383,11,20321,135647,0 +47384,12,6097,135139,0 +47385,12,5291,135464,0 +47386,12,18356,135645,0 +47387,12,6101,135139,0 +47388,11,20392,135640,0 +47389,13,3931,134955,0 +47390,2,5345,135016,0 +47391,3,10110,135009,0 +47392,3,12089,132677,0 +47393,11,20491,135638,0 +47394,9,23142,133754,0 +47395,11,8000,135327,0 +47396,11,5144,135325,0 +47397,9,22998,133760,0 +47398,11,19296,135424,0 +47399,8,12133,132957,0 +47400,12,21011,135139,0 +47401,5,1978,134582,0 +47402,11,20340,135150,0 +47403,3,12803,135012,0 +47404,12,20903,135469,0 +47405,12,20829,135468,0 +47406,12,6099,135139,0 +47407,12,20787,135139,0 +47408,12,20776,135469,0 +47409,12,6081,135139,0 +47410,12,20793,135468,0 +47411,12,21020,135463,0 +47412,12,20815,135473,0 +47413,12,20790,135468,0 +47414,12,20786,135468,0 +47415,12,6093,135139,0 +47416,12,12601,135473,0 +47417,12,21024,135464,0 +47418,12,21019,135144,0 +47419,12,20828,135144,0 +47420,12,21023,135464,0 +47421,12,6138,135139,0 +47422,12,20825,135466,0 +47423,12,20801,135473,0 +47424,1,5849,135039,0 +47425,11,19673,133491,0 +47426,9,23000,133756,0 +47427,12,6232,135493,0 +47428,12,6234,135493,0 +47429,11,3363,135639,0 +47430,4,7545,132490,0 +47431,11,6469,135650,0 +47432,11,1845,135641,0 +47433,11,5224,133486,0 +47434,8,12761,132952,0 +47435,13,18451,134956,0 +47436,11,2840,135138,0 +47437,11,5098,135144,0 +47438,11,7526,135321,0 +47439,5,7533,134582,0 +47440,6,7537,132537,0 +47441,7,7812,132610,0 +47442,3,10991,135009,0 +47443,3,7552,135010,0 +47444,11,22225,135572,0 +47445,1,4971,135038,0 +47446,11,20014,135276,0 +47447,13,7559,134952,0 +47448,5,16958,134582,0 +47449,8,11119,132940,0 +47450,11,20417,135145,0 +47451,3,7551,135011,0 +47452,9,23088,133755,0 +47453,11,8594,133052,0 +47454,12,20719,135496,0 +47455,12,21022,135466,0 +47456,4,7662,132493,0 +47457,12,20834,135124,0 +47459,11,3405,135146,0 +47460,13,18671,134949,0 +47461,5,13048,134582,0 +47462,6,7835,132535,0 +47463,1,4594,135039,0 +47464,3,7898,135011,0 +47465,5,6300,134582,0 +47466,11,19221,132408,0 +47467,4,5964,132492,0 +47468,11,19396,132417,0 +47470,4,5904,132493,0 +47471,11,5014,132392,0 +47472,11,2733,135641,0 +47473,11,19801,133042,0 +47474,12,10673,135530,0 +47475,11,35968,133481,0 +47476,11,1628,135276,0 +47478,11,8127,133890,0 +47479,11,19777,133057,0 +47480,11,5072,135148,0 +47481,11,19648,133490,0 +47482,8,8292,132938,0 +47483,7,12549,132612,0 +47484,9,23055,133764,0 +47485,13,8296,134955,0 +47486,11,8298,133052,0 +47487,12,20720,135489,0 +47488,11,8376,135131,0 +47489,11,8377,135131,0 +47490,11,8378,135131,0 +47491,11,8379,134294,0 +47492,12,28159,135139,0 +47493,8,16501,132939,0 +47494,0,15278,133072,0 +47495,15,8436,134797,0 +47496,7,17010,132611,0 +47497,11,20384,135160,0 +47498,11,20182,135328,0 +47499,11,20121,135352,0 +47500,11,20376,135341,0 +47501,5,5339,134582,0 +47502,9,15032,133753,0 +47503,0,15905,132767,0 +47504,11,19246,132417,0 +47505,11,20354,135641,0 +47506,8,8131,132939,0 +47507,3,10883,132719,0 +47508,11,8745,135575,0 +47509,11,8746,135575,0 +47510,11,8747,135575,0 +47511,12,20713,135495,0 +47512,11,19291,132397,0 +47513,9,23078,133762,0 +47514,11,20596,135652,0 +47515,0,8753,133072,0 +47516,3,4151,132739,0 +47517,11,20591,135660,0 +47518,3,8864,132658,0 +47519,3,16611,132679,0 +47520,3,8865,132670,0 +47521,11,18630,135154,0 +47522,11,8899,135423,0 +47523,11,2397,135139,0 +47524,11,20084,135276,0 +47525,3,8908,132634,0 +47526,3,22393,132634,0 +47527,3,9053,132679,0 +47528,11,9055,135280,0 +47529,3,7857,132725,0 +47530,11,9057,133484,0 +47531,12,9060,135489,0 +47532,12,21026,135473,0 +47533,1,9077,135036,0 +47534,8,9082,132938,0 +47535,12,22671,135128,0 +47536,4,4852,132493,0 +47537,7,9378,132602,0 +47538,11,15804,133069,0 +47539,11,2434,132312,0 +47540,5,9018,134589,0 +47541,5,8426,134582,0 +47542,5,8160,134592,0 +47543,1,9544,135039,0 +47544,9,23033,133755,0 +47545,8,8608,132939,0 +47546,4,8984,132499,0 +47547,9,23059,133766,0 +47548,8,17689,132953,0 +47549,9,23026,133756,0 +47550,4,8551,132492,0 +47551,10,9627,135026,0 +47552,7,9634,132609,0 +47553,4,3251,132492,0 +47554,7,7550,132609,0 +47555,7,12743,132606,0 +47556,5,6059,134591,0 +47557,13,18664,134949,0 +47558,5,3058,134583,0 +47559,3,11368,132724,0 +47560,12,19805,135279,0 +47561,6,14842,132539,0 +47562,11,19646,133482,0 +47563,11,19390,135419,0 +47564,6,7307,132539,0 +47565,2,2163,135005,0 +47566,2,2470,135005,0 +47567,3,9943,132674,0 +47568,3,8288,132662,0 +47569,2,5857,135005,0 +47570,3,9978,132662,0 +47571,2,6239,135009,0 +47572,5,8129,134582,0 +47573,6,8130,132540,0 +47574,3,9986,132675,0 +47575,5,5236,134581,0 +47576,2,9182,132719,0 +47577,5,10002,134582,0 +47578,6,7896,132540,0 +47579,3,10028,0,0 +47580,3,10073,132657,0 +47581,2,9202,133765,0 +47582,5,9204,134582,0 +47583,2,9519,135018,0 +47584,5,10114,134582,0 +47585,6,10115,132539,0 +47586,3,10119,132654,0 +47587,3,10120,132663,0 +47588,2,9084,135009,0 +47589,3,9933,132654,0 +47590,4,4860,132493,0 +47591,6,15621,132539,0 +47592,6,16809,132539,0 +47593,11,13583,135273,0 +47594,13,2181,134950,0 +47595,7,3388,132602,0 +47596,9,15058,133754,0 +47597,11,20119,135356,0 +47598,13,18658,134951,0 +47599,6,3070,132535,0 +47600,1,8399,135036,0 +47601,6,4380,132539,0 +47602,11,19404,132408,0 +47603,3,12559,132624,0 +47604,3,2644,132760,0 +47605,7,10529,132600,0 +47606,4,8611,132498,0 +47607,6,5992,132539,0 +47608,8,6243,132939,0 +47609,13,18669,134955,0 +47610,0,10537,133119,0 +47611,11,10538,134708,0 +47612,11,10642,133055,0 +47613,11,20536,135661,0 +47614,11,10814,133888,0 +47615,3,10810,132665,0 +47616,11,10816,133888,0 +47617,11,10817,133888,0 +47618,12,21094,135463,0 +47619,11,10822,133941,0 +47620,11,10824,133941,0 +47621,3,10465,132662,0 +47622,3,10706,132681,0 +47623,3,10843,132678,0 +47624,3,17123,132645,0 +47625,3,8853,132664,0 +47626,3,10894,132663,0 +47627,13,10968,134950,0 +47628,11,20730,132932,0 +47629,3,11037,135017,0 +47630,3,12716,132665,0 +47631,3,5844,135009,0 +47632,5,8264,134586,0 +47633,3,16894,135010,0 +47634,5,10148,134585,0 +47635,5,10098,134581,0 +47636,9,23002,133762,0 +47637,11,20335,135164,0 +47638,4,7761,132492,0 +47639,13,18700,134949,0 +47640,11,11259,135145,0 +47641,11,19635,133477,0 +47642,3,11528,132672,0 +47643,11,5136,133484,0 +47644,11,19556,135651,0 +47645,6,7768,132537,0 +47646,3,3057,132624,0 +47647,11,20731,132932,0 +47648,9,23110,133757,0 +47649,9,27549,133762,0 +47650,4,4450,132492,0 +47651,13,18483,134955,0 +47652,2,11518,135023,0 +47653,2,5781,135024,0 +47654,5,25805,134586,0 +47655,7,25800,132618,0 +47656,1,25806,135051,0 +47657,4,11172,132499,0 +47658,8,4370,132961,0 +47659,6,4622,132539,0 +47660,1,13677,135036,0 +47661,3,6177,132723,0 +47662,8,10572,132958,0 +47663,4,3872,132500,0 +47664,1,13398,135039,0 +47665,13,2333,134951,0 +47666,5,17954,134589,0 +47667,7,18335,132603,0 +47668,1,25815,135038,0 +47669,5,8142,134588,0 +47670,6,7776,132539,0 +47671,7,14618,132606,0 +47672,8,13020,132955,0 +47673,4,2364,132498,0 +47674,7,2367,132603,0 +47675,3,13174,132743,0 +47676,6,13379,132539,0 +47677,7,17827,132617,0 +47678,3,11609,132673,0 +47679,6,14651,132539,0 +47680,4,9486,132495,0 +47681,8,10513,132948,0 +47682,6,5354,132542,0 +47683,4,10433,132504,0 +47684,0,16520,133111,0 +47685,9,22987,133772,0 +47686,7,26073,132606,0 +47687,3,11634,132644,0 +47688,8,10447,132957,0 +47689,0,15910,133090,0 +47690,3,16889,132722,0 +47691,6,4449,132535,0 +47692,9,23039,133770,0 +47693,0,17321,133118,0 +47694,13,18690,134950,0 +47695,13,20976,134967,0 +47696,11,20349,135646,0 +47697,9,23001,132656,0 +47698,6,11935,132535,0 +47699,4,11623,132492,0 +47700,1,11946,135036,0 +47701,3,11949,132677,0 +47702,8,11952,132939,0 +47703,4,9748,132498,0 +47704,12,20652,135498,0 +47705,3,11840,135020,0 +47706,4,10091,132491,0 +47707,6,11999,132539,0 +47708,5,9541,134582,0 +47709,8,12068,132939,0 +47710,6,9173,132539,0 +47711,3,12282,132626,0 +47712,3,12283,132642,0 +47713,11,20116,135314,0 +47714,11,12286,135141,0 +47715,9,25948,133763,0 +47716,4,5670,132511,0 +47717,8,3199,132945,0 +47718,3,16697,135012,0 +47719,3,8857,132663,0 +47720,4,8328,132491,0 +47721,4,5734,132514,0 +47722,6,8372,132542,0 +47723,7,8437,132611,0 +47724,8,5400,132939,0 +47725,3,6196,132716,0 +47726,3,10889,132716,0 +47727,3,9036,132716,0 +47728,3,12372,132719,0 +47729,3,8856,132663,0 +47730,3,19110,132655,0 +47731,3,8327,135024,0 +47732,6,8348,132537,0 +47733,3,16522,132656,0 +47734,4,8347,132494,0 +47735,5,7033,134590,0 +47736,8,12443,132957,0 +47737,9,15033,133769,0 +47738,7,10249,132611,0 +47739,3,12165,132638,0 +47740,5,2897,134590,0 +47741,8,12054,132946,0 +47742,4,12053,132514,0 +47743,9,25953,133769,0 +47744,7,3767,132611,0 +47745,3,14731,135015,0 +47746,5,14730,134586,0 +47747,8,14729,132949,0 +47748,7,14728,132604,0 +47749,6,18145,132539,0 +47750,4,14726,132492,0 +47751,13,25955,134956,0 +47752,3,5854,135006,0 +47753,6,16881,132539,0 +47754,7,4786,132611,0 +47755,9,23109,133767,0 +47756,8,16793,132950,0 +47757,1,16470,135044,0 +47758,3,6481,135012,0 +47759,5,6482,134581,0 +47760,3,16469,132683,0 +47761,4,4633,132514,0 +47762,13,18493,134948,0 +47763,13,18701,134952,0 +47764,6,12457,132582,0 +47765,7,12456,132613,0 +47766,9,25967,133757,0 +47767,4,12455,132511,0 +47768,8,25761,132945,0 +47769,5,12453,134583,0 +47770,3,12446,132626,0 +47771,6,4027,132539,0 +47772,7,3377,132606,0 +47773,3,2019,132725,0 +47774,8,13353,132961,0 +47775,5,2018,134582,0 +47776,1,10567,135058,0 +47777,6,25793,132589,0 +47778,7,25797,132609,0 +47779,3,25798,132629,0 +47780,4,25795,132500,0 +47781,8,25794,132960,0 +47782,5,23581,134586,0 +47783,1,25799,135038,0 +47784,13,18449,134956,0 +47785,13,26014,134951,0 +47786,4,6299,132514,0 +47787,6,9169,132537,0 +47788,7,11343,132611,0 +47789,3,6298,132716,0 +47790,8,11110,132958,0 +47791,5,11063,134587,0 +47792,3,2304,132722,0 +47793,3,5710,135012,0 +47794,4,4990,133693,0 +47795,6,19921,132539,0 +47796,7,4376,132610,0 +47797,9,23138,133768,0 +47798,8,16864,132950,0 +47799,5,4377,134581,0 +47800,1,4904,135033,0 +47801,11,21554,135349,0 +47802,3,12595,132743,0 +47803,8,16952,136076,0 +47804,11,20336,135162,0 +47805,11,20167,135315,0 +47806,11,18651,132797,0 +47807,5,5839,134586,0 +47808,11,13001,135643,0 +47809,1,12782,135036,0 +47810,7,12783,132606,0 +47811,6,12095,132535,0 +47812,6,6301,132537,0 +47813,3,8215,132716,0 +47814,7,12804,132605,0 +47815,13,12805,134955,0 +47816,12,21018,135467,0 +47817,11,12857,135131,0 +47818,3,12216,132661,0 +47819,1,11473,135040,0 +47820,0,15492,133077,0 +47821,11,22217,135562,0 +47822,0,7009,133119,0 +47823,11,20325,135138,0 +47824,5,9540,134594,0 +47825,11,12880,133723,0 +47826,11,25597,132409,0 +47827,12,20650,135500,0 +47828,1,5116,135036,0 +47829,3,11487,132724,0 +47830,5,10079,134587,0 +47831,4,11953,132504,0 +47832,0,15315,133119,0 +47833,4,4306,132504,0 +47834,8,11175,132958,0 +47835,12,20821,135473,0 +47836,3,10441,132740,0 +47837,8,8398,132949,0 +47838,8,12948,132939,0 +47839,5,8193,134586,0 +47840,11,19126,132403,0 +47841,4,11880,132499,0 +47842,11,20177,135311,0 +47843,4,12821,132524,0 +47844,8,9402,132937,0 +47845,9,23047,133765,0 +47846,13,18507,134956,0 +47847,1,12986,135034,0 +47848,6,16988,132537,0 +47849,15,13012,135465,0 +47850,4,11860,132513,0 +47851,8,7711,132938,0 +47852,3,13043,135016,0 +47853,3,13046,135016,0 +47854,4,9045,132500,0 +47855,9,23096,133764,0 +47856,6,17227,132536,0 +47857,1,11697,135060,0 +47858,2,4640,135030,0 +47859,2,12786,135029,0 +47860,12,21014,135465,0 +47861,12,13060,135613,0 +47862,3,13077,132680,0 +47863,11,20010,135317,0 +47864,11,19707,133042,0 +47865,12,9062,135466,0 +47866,13,18455,134956,0 +47867,11,18607,132395,0 +47868,11,20292,135311,0 +47869,9,23097,132656,0 +47870,2,11307,135012,0 +47871,3,11646,135022,0 +47872,5,11308,134581,0 +47873,6,11782,132539,0 +47874,8,30609,135736,0 +47875,3,13337,132666,0 +47876,7,10949,132607,0 +47877,5,7587,134582,0 +47878,11,20575,134298,0 +47879,11,13360,135576,0 +47880,3,6662,135010,0 +47881,4,9401,132513,0 +47882,11,20185,135352,0 +47883,5,7767,134594,0 +47884,4,16931,132514,0 +47885,11,13455,135612,0 +47886,11,13466,133042,0 +47887,11,19135,132395,0 +47888,11,20162,135274,0 +47889,11,19771,133057,0 +47890,11,20400,135641,0 +47891,13,21475,134951,0 +47892,3,22480,132629,0 +47893,5,22481,134583,0 +47894,8,22482,132938,0 +47895,11,22734,132403,0 +47896,11,25046,133045,0 +47897,11,22731,135313,0 +47898,11,19133,132408,0 +47899,11,19274,132392,0 +47900,11,20398,135651,0 +47901,11,19652,133487,0 +47902,11,19773,133045,0 +47903,11,20159,135274,0 +47904,11,20163,135274,0 +47905,6,12184,132539,0 +47906,12,20824,135466,0 +47907,7,13508,132605,0 +47908,4,5457,132494,0 +47909,6,10095,132539,0 +47910,5,12360,134588,0 +47911,8,12615,132956,0 +47912,0,15283,133131,0 +47913,8,11097,132950,0 +47914,0,15863,133693,0 +47915,3,2471,135008,0 +47916,4,7700,132511,0 +47917,9,23092,132655,0 +47918,3,17133,132643,0 +47919,4,5804,132493,0 +47920,9,15102,132657,0 +47921,1,5762,135049,0 +47922,3,13671,135008,0 +47923,1,9574,135054,0 +47924,1,16463,135058,0 +47925,4,4905,132513,0 +47926,5,4310,134586,0 +47927,3,5483,132666,0 +47928,8,11482,132939,0 +47929,3,13684,132647,0 +47930,3,13044,135016,0 +47931,6,16026,132539,0 +47932,8,9630,132954,0 +47933,4,13518,132495,0 +47934,13,18661,134955,0 +47935,13,18508,134955,0 +47936,3,4298,135022,0 +47937,3,8946,132646,0 +47938,3,7621,135005,0 +47939,3,7172,135021,0 +47940,11,20602,135651,0 +47941,11,19776,133049,0 +47942,11,20161,135274,0 +47943,13,22730,134960,0 +47944,8,13484,132938,0 +47945,11,13848,135650,0 +47946,11,13853,135273,0 +47947,11,13585,133069,0 +47948,6,16734,132539,0 +47949,6,14763,133029,0 +47950,11,19610,133046,0 +47951,7,5333,132607,0 +47953,5,15765,134582,0 +47954,7,14002,132603,0 +47955,5,3248,134582,0 +47956,8,4685,132939,0 +47957,15,3947,135142,0 +47958,11,20425,135662,0 +47959,0,22021,133116,0 +47960,11,19132,132392,0 +47961,11,19649,133487,0 +47962,11,20160,135274,0 +47963,13,26046,134953,0 +47964,3,5872,135007,0 +47965,3,16523,132651,0 +47966,3,10515,132721,0 +47967,3,14069,132624,0 +47968,7,16566,132611,0 +47969,6,5846,132543,0 +47970,1,4593,135037,0 +47971,3,8153,135020,0 +47972,6,10539,132539,0 +47973,7,16604,132612,0 +47974,0,15906,133117,0 +47975,8,2057,132939,0 +47976,8,10945,132957,0 +47977,8,16601,132951,0 +47978,1,16606,135057,0 +47979,5,8155,134588,0 +47980,3,13666,132658,0 +47981,4,8154,132504,0 +47983,5,8073,134587,0 +47984,3,8071,132718,0 +47985,9,23030,133756,0 +47986,7,12844,132605,0 +47987,4,8072,132495,0 +47988,6,8074,132541,0 +47989,6,9750,132542,0 +47990,0,21298,133117,0 +47991,1,14950,135039,0 +47992,7,26032,132613,0 +47993,6,26030,132535,0 +47994,3,26034,132736,0 +47995,9,26043,133767,0 +47996,0,30091,132767,0 +47997,8,26036,132945,0 +47998,4,26037,132494,0 +47999,5,26039,134584,0 +48000,1,26040,135057,0 +48001,3,11530,135017,0 +48002,3,14990,132666,0 +48003,5,11542,134588,0 +48004,0,15543,133131,0 +48005,8,11532,132955,0 +48006,6,14645,132539,0 +48007,1,11540,135033,0 +48008,9,15175,133765,0 +48009,7,12758,132608,0 +48010,4,12020,132499,0 +48011,3,9194,132719,0 +48012,5,9195,134706,0 +48013,0,21311,133117,0 +48014,8,9197,132939,0 +48015,6,9196,132592,0 +48016,1,5414,135039,0 +48017,9,23023,133758,0 +48018,7,10097,132607,0 +48019,4,9903,132493,0 +48020,3,25862,132739,0 +48021,5,25868,134584,0 +48022,0,30092,132767,0 +48023,8,25865,132962,0 +48024,6,25860,132535,0 +48025,1,25872,135058,0 +48026,9,26064,133768,0 +48027,7,25861,132606,0 +48028,4,25866,132515,0 +48029,13,26065,134952,0 +48030,3,15005,132677,0 +48031,5,5874,134593,0 +48032,0,15911,133090,0 +48033,8,11303,132966,0 +48034,6,5875,132539,0 +48035,1,9316,135033,0 +48036,9,15145,133754,0 +48037,7,15410,132608,0 +48038,4,5873,132497,0 +48039,3,8430,132723,0 +48040,5,6865,134594,0 +48041,8,12017,132959,0 +48042,6,8080,132542,0 +48043,1,8254,135049,0 +48044,9,23057,133753,0 +48045,7,13514,132608,0 +48046,4,9593,132506,0 +48047,3,22155,132742,0 +48048,5,23944,134590,0 +48049,0,25824,132767,0 +48050,8,24971,132938,0 +48051,6,21187,132590,0 +48052,1,25822,135049,0 +48053,9,26018,133753,0 +48054,7,22154,132611,0 +48055,4,10407,132514,0 +48056,13,18697,134951,0 +48058,15,22923,134333,0 +48059,3,22958,132677,0 +48060,3,15201,132659,0 +48061,3,15223,132645,0 +48062,3,15231,132661,0 +48063,12,25078,135471,0 +48064,12,25076,135467,0 +48065,15,25072,134335,0 +48066,3,70631,135007,0 +48067,3,15400,132645,0 +48068,5,7622,134592,0 +48069,0,15646,133111,0 +48070,8,8998,132966,0 +48071,6,7623,132543,0 +48072,1,15402,135033,0 +48073,7,11222,132608,0 +48074,4,5795,132496,0 +48075,3,12348,132720,0 +48076,5,8204,134706,0 +48077,8,15415,132956,0 +48078,6,15412,132535,0 +48079,1,12525,135032,0 +48080,9,23016,133770,0 +48081,7,15413,132615,0 +48082,4,11279,132501,0 +48083,13,18812,134949,0 +48084,13,18775,134953,0 +48085,0,15380,133070,0 +48086,9,191780,133763,0 +48087,15,15424,135139,0 +48088,15,15427,135464,0 +48089,15,15428,135466,0 +48090,8,15721,132938,0 +48091,12,20920,135139,0 +48092,15,5050,135144,0 +48093,15,2509,135140,0 +48094,11,15576,132395,0 +48095,11,15720,132945,0 +48096,1,10791,135036,0 +48097,15,15725,134334,0 +48098,11,15726,133056,0 +48099,3,14872,132750,0 +48100,11,20172,135302,0 +48101,8,7731,132966,0 +48102,0,15391,133130,0 +48103,11,15786,133488,0 +48104,11,15795,133476,0 +48105,5,5870,134587,0 +48106,11,20360,135155,0 +48107,3,4498,132666,0 +48108,1,4488,135036,0 +48109,11,20318,135643,0 +48110,1,15575,135032,0 +48111,0,15562,133127,0 +48112,0,16224,133101,0 +48113,11,19735,133039,0 +48114,11,21252,133488,0 +48115,8,15758,132953,0 +48116,13,18751,134951,0 +48117,3,19109,132666,0 +48118,11,15466,133041,0 +48119,8,9556,132952,0 +48120,13,18792,134948,0 +48121,15,15884,134335,0 +48122,1,12832,135054,0 +48123,11,19670,133054,0 +48124,11,19371,132401,0 +48125,6,9174,132539,0 +48126,1,5384,135044,0 +48127,8,3847,132941,0 +48128,11,20316,135469,0 +48129,11,22238,135131,0 +48130,3,15897,132633,0 +48131,5,11011,134586,0 +48132,11,19210,132397,0 +48133,11,15938,132405,0 +48134,3,11407,132636,0 +48135,0,16084,133127,0 +48136,6,11408,132582,0 +48137,8,11537,132965,0 +48138,1,6027,135053,0 +48139,8,3983,132961,0 +48140,5,5611,134583,0 +48141,5,16103,134584,0 +48142,8,16105,132965,0 +48143,1,10495,135040,0 +48144,5,14787,134583,0 +48145,1,16111,135043,0 +48146,6,5615,132582,0 +48147,0,16115,133078,0 +48148,3,14945,132745,0 +48149,6,16118,132535,0 +48150,0,16119,133078,0 +48151,8,13172,132963,0 +48152,3,23666,132739,0 +48153,11,16126,132405,0 +48154,11,5639,132394,0 +48155,11,16128,135280,0 +48156,11,4911,135340,0 +48157,11,15887,133054,0 +48158,11,16130,135650,0 +48159,4,16036,132511,0 +48160,5,15680,134592,0 +48161,3,16134,132718,0 +48162,8,16060,132949,0 +48163,6,16059,132542,0 +48164,0,16137,133143,0 +48165,11,20071,135322,0 +48166,11,16146,133055,0 +48167,11,16147,135321,0 +48168,11,19272,132415,0 +48169,11,22234,135130,0 +48170,11,25053,135350,0 +48171,3,5386,132740,0 +48172,0,41844,133694,0 +48173,11,20326,135661,0 +48174,3,28398,132739,0 +48175,6,3766,132589,0 +48176,8,9386,132962,0 +48177,5,4149,134584,0 +48178,1,10662,135044,0 +48179,4,3418,132504,0 +48180,6,5387,132589,0 +48181,7,4448,132613,0 +48182,8,9578,132963,0 +48183,5,3414,134584,0 +48184,3,3413,132739,0 +48185,3,9594,135010,0 +48186,6,16634,132543,0 +48187,7,16636,132605,0 +48188,8,16633,132957,0 +48189,1,9746,135049,0 +48190,5,11845,134594,0 +48191,3,19901,132642,0 +48192,4,21354,132514,0 +48193,0,15353,133134,0 +48194,4,4315,132501,0 +48195,6,11832,132535,0 +48196,7,8197,132602,0 +48197,3,14689,132717,0 +48198,9,23038,133770,0 +48199,8,11833,132949,0 +48200,0,15478,133127,0 +48201,5,7765,134586,0 +48202,1,11232,135054,0 +48203,7,26103,132602,0 +48204,3,21244,132628,0 +48205,9,26118,133766,0 +48206,8,18339,132938,0 +48207,4,18994,132495,0 +48208,6,19452,132535,0 +48209,0,22549,133078,0 +48210,5,24545,134592,0 +48211,1,26114,135057,0 +48212,13,26120,134948,0 +48213,7,27329,132613,0 +48214,3,10856,132749,0 +48215,8,10858,132962,0 +48216,4,10732,132503,0 +48217,6,11244,132539,0 +48218,5,10851,134583,0 +48219,1,10855,135060,0 +48220,7,27345,132606,0 +48221,3,13028,132746,0 +48222,8,27341,132951,0 +48223,6,13520,132583,0 +48224,0,27347,133159,0 +48225,5,13519,134583,0 +48226,0,15921,133117,0 +48227,3,8435,132718,0 +48228,0,15321,132513,0 +48229,11,18354,135355,0 +48230,11,26591,135355,0 +48231,12,18343,135493,0 +48232,12,18350,135491,0 +48233,12,20741,135613,0 +48234,12,18355,135492,0 +48235,12,18346,135473,0 +48236,5,12169,134582,0 +48237,8,16488,132939,0 +48238,12,20735,135617,0 +48239,3,11598,132634,0 +48240,11,20081,135280,0 +48241,1,8434,135038,0 +48242,5,5469,134591,0 +48243,11,19721,133043,0 +48244,6,5470,132539,0 +48245,7,16506,132605,0 +48246,11,18342,135327,0 +48247,0,18689,132482,0 +48248,5,11838,134582,0 +48249,1,9562,135049,0 +48250,3,9563,132647,0 +48251,5,4388,134594,0 +48252,6,4389,132541,0 +48253,9,24297,133754,0 +48255,11,20073,135353,0 +48256,11,22232,135662,0 +48257,11,20076,135340,0 +48258,11,16539,135316,0 +48259,3,9782,135007,0 +48260,6,8959,132536,0 +48261,7,7522,132612,0 +48262,9,17238,133770,0 +48263,8,7523,132953,0 +48264,1,8814,135054,0 +48265,5,7520,134586,0 +48266,3,17236,132666,0 +48267,4,7519,132518,0 +48268,0,18728,132767,0 +48269,6,12113,132535,0 +48270,7,8201,132602,0 +48271,3,13330,132717,0 +48272,9,23063,133769,0 +48273,8,12114,132949,0 +48274,5,11069,134586,0 +48275,1,12531,135054,0 +48276,7,22500,132602,0 +48277,3,17930,132639,0 +48278,9,26228,133757,0 +48279,8,16685,132949,0 +48280,4,17798,132515,0 +48281,6,21172,132539,0 +48282,5,17700,134583,0 +48283,1,26217,135058,0 +48284,7,18610,132615,0 +48285,3,11216,132646,0 +48286,8,27374,132963,0 +48287,4,8871,132508,0 +48288,6,27376,132589,0 +48289,0,22547,133124,0 +48290,5,11219,134592,0 +48291,1,18035,135059,0 +48292,13,18790,134948,0 +48293,3,2317,135017,0 +48294,6,9675,132539,0 +48295,7,12147,132608,0 +48296,9,13984,133768,0 +48297,8,6095,132940,0 +48298,1,17271,135033,0 +48299,5,2318,134593,0 +48300,3,17276,132670,0 +48301,4,10103,132493,0 +48302,0,17274,133090,0 +48303,4,12835,132501,0 +48304,6,17317,132535,0 +48305,7,17316,132602,0 +48306,3,9059,132720,0 +48307,9,23066,133770,0 +48308,8,17314,132949,0 +48309,0,17269,133076,0 +48310,5,3834,134586,0 +48311,1,4934,135054,0 +48312,7,26313,132616,0 +48313,3,15579,132749,0 +48314,9,26323,133754,0 +48315,8,19630,132943,0 +48316,4,19629,132519,0 +48317,6,15581,132589,0 +48318,0,26315,132767,0 +48319,5,15580,134583,0 +48320,1,26321,135054,0 +48321,7,9498,132615,0 +48322,3,7173,132627,0 +48323,13,25901,134953,0 +48324,8,17474,132960,0 +48325,4,7212,132507,0 +48326,6,21398,132587,0 +48327,0,22881,133118,0 +48328,5,7174,134581,0 +48329,1,9497,135060,0 +48330,13,27222,134950,0 +48331,0,18392,133072,0 +48332,0,17226,133076,0 +48333,15,17599,135468,0 +48334,15,17600,135469,0 +48335,15,17602,135467,0 +48336,11,17788,133061,0 +48337,0,17454,133130,0 +48338,0,15926,133117,0 +48339,0,27052,132767,0 +48340,0,18422,133135,0 +48341,7,8366,132616,0 +48342,3,8318,132749,0 +48343,8,8321,132938,0 +48344,4,7790,132492,0 +48345,6,13924,132535,0 +48346,5,8319,134583,0 +48347,1,22309,135040,0 +48348,8,18256,132963,0 +48349,11,45946,135350,0 +48350,0,15368,133120,0 +48351,11,18254,135353,0 +48352,11,20032,135355,0 +48353,12,21025,135154,0 +48354,11,18328,132405,0 +48355,11,18264,135654,0 +48356,11,20249,135351,0 +48357,11,18268,135432,0 +48358,6,14883,132587,0 +48359,7,18029,132615,0 +48360,1,5892,135056,0 +48361,8,12624,132951,0 +48362,11,18270,135327,0 +48363,0,21301,133127,0 +48364,8,13348,132958,0 +48365,5,18274,134590,0 +48366,9,22996,133770,0 +48367,6,12384,132536,0 +48368,12,20553,135499,0 +48369,5,21403,134592,0 +48370,13,18824,134953,0 +48371,13,18826,134948,0 +48372,4,11588,132516,0 +48373,3,12793,132723,0 +48374,5,12345,134581,0 +48375,11,20274,135165,0 +48376,7,18352,132618,0 +48377,8,24631,132946,0 +48378,12,18298,135616,0 +48379,11,19620,133049,0 +48380,5,11619,134586,0 +48381,3,11906,135009,0 +48382,11,22233,135131,0 +48383,11,20193,135357,0 +48384,11,18312,133054,0 +48385,0,18322,133117,0 +48386,12,20663,134536,0 +48387,11,18324,133044,0 +48388,11,18325,135352,0 +48389,11,21238,135578,0 +48390,12,20556,135489,0 +48391,11,18330,133718,0 +48392,7,18331,132605,0 +48393,0,15347,133117,0 +48394,1,18333,135049,0 +48395,0,18334,133130,0 +48396,7,11188,132611,0 +48397,3,5350,132718,0 +48398,8,16687,132951,0 +48399,11,19645,133489,0 +48400,11,20323,135152,0 +48401,11,20595,135638,0 +48402,6,4623,132539,0 +48403,7,6038,132608,0 +48404,12,18372,135611,0 +48405,11,18373,133483,0 +48406,13,18374,134956,0 +48407,11,19298,132394,0 +48408,11,20311,134298,0 +48409,3,11404,132720,0 +48410,5,12101,134585,0 +48411,11,21514,135225,0 +48412,11,24351,132398,0 +48413,11,22235,135128,0 +48414,11,19309,132394,0 +48415,11,20269,135168,0 +48416,5,22426,134588,0 +48417,11,18403,132405,0 +48418,11,19295,132415,0 +48419,12,3699,135615,0 +48420,11,18406,133045,0 +48421,12,15238,135467,0 +48422,11,18409,135347,0 +48423,0,15371,132995,0 +48424,3,18428,135018,0 +48425,6,18431,132535,0 +48426,11,19553,135350,0 +48427,9,22988,133757,0 +48428,11,5417,135158,0 +48429,11,20424,135147,0 +48430,3,9021,135011,0 +48431,3,18440,135015,0 +48432,11,20348,135151,0 +48433,8,17073,132959,0 +48434,6,15628,132540,0 +48435,11,20574,135654,0 +48436,11,19307,132397,0 +48437,11,20300,135473,0 +48438,1,18497,135054,0 +48439,0,18498,133135,0 +48440,7,28156,132601,0 +48441,1,18901,135033,0 +48442,5,6362,134589,0 +48443,6,7762,132539,0 +48444,11,20432,135159,0 +48445,11,18531,133479,0 +48446,13,18533,134952,0 +48447,8,18991,132961,0 +48448,3,14760,132659,0 +48449,11,19302,132400,0 +48450,6,4440,132541,0 +48451,8,16412,132956,0 +48452,9,14851,133763,0 +48453,6,11220,132588,0 +48454,7,28117,132605,0 +48455,11,18572,133486,0 +48456,8,17416,132960,0 +48457,13,18822,134948,0 +48458,6,12841,132535,0 +48459,6,23644,132588,0 +48460,9,28097,133757,0 +48461,3,26513,132658,0 +48462,3,12115,132751,0 +48463,11,18578,133038,0 +48464,5,5822,134593,0 +48465,0,11976,133149,0 +48466,12,28307,135469,0 +48467,6,19913,132536,0 +48468,9,28299,133760,0 +48469,13,20900,134959,0 +48470,6,14791,132582,0 +48471,0,8380,133121,0 +48472,8,11590,132952,0 +48473,4,27323,132515,0 +48474,11,22223,135562,0 +48475,11,20475,135654,0 +48476,11,20289,135162,0 +48477,11,19130,132403,0 +48478,11,19746,133060,0 +48479,9,28326,133754,0 +48480,9,28297,133774,0 +48481,8,10696,132957,0 +48482,13,20975,134961,0 +48483,11,13488,135280,0 +48484,6,11297,132543,0 +48485,9,25916,133774,0 +48486,4,9183,132514,0 +48487,6,13350,132579,0 +48488,9,23034,133769,0 +48489,8,11876,132939,0 +48490,3,17635,135010,0 +48491,4,13037,132506,0 +48492,6,13038,132582,0 +48493,7,13039,132611,0 +48494,9,25960,133753,0 +48495,8,22686,132946,0 +48496,13,18823,134955,0 +48497,3,12168,132627,0 +48498,6,10111,132537,0 +48499,7,11108,132611,0 +48500,15,28023,135153,0 +48501,5,8190,134590,0 +48502,3,25944,132656,0 +48503,7,16420,132604,0 +48504,7,14890,132612,0 +48505,9,25978,133770,0 +48506,4,13069,132500,0 +48507,3,27751,135010,0 +48508,9,27752,133767,0 +48509,8,27753,132961,0 +48510,5,27755,134594,0 +48511,4,28477,132514,0 +48512,15,27756,134333,0 +48513,1,24501,135039,0 +48514,3,17572,132725,0 +48515,9,25975,133766,0 +48516,4,13014,132493,0 +48517,13,26121,134953,0 +48518,1,5381,135038,0 +48519,9,26006,133762,0 +48520,3,27856,132661,0 +48521,6,8062,132537,0 +48522,9,27768,133759,0 +48523,8,8063,132958,0 +48524,1,27764,135039,0 +48525,3,27769,132739,0 +48526,7,27783,132602,0 +48527,8,27778,132945,0 +48528,4,27777,132495,0 +48529,5,27770,134583,0 +48530,1,27776,135046,0 +48531,13,26060,134955,0 +48532,3,28424,132647,0 +48533,6,28423,132539,0 +48534,7,28418,132612,0 +48535,9,15218,133769,0 +48536,8,28422,132956,0 +48537,5,25280,134587,0 +48538,3,28425,132663,0 +48539,4,25282,132504,0 +48540,7,12186,132611,0 +48541,0,26550,133117,0 +48542,8,11467,132956,0 +48543,5,9749,134587,0 +48544,6,25980,132539,0 +48545,7,25786,132606,0 +48546,3,25787,132634,0 +48547,9,26250,133757,0 +48548,8,25788,132962,0 +48549,4,25784,132515,0 +48550,0,25991,132768,0 +48551,5,26249,134583,0 +48552,1,25790,135040,0 +48553,3,28064,135017,0 +48554,4,25311,132499,0 +48555,6,28088,132539,0 +48556,9,28065,133765,0 +48557,0,28067,133153,0 +48558,7,28057,132608,0 +48559,8,28062,132955,0 +48560,1,28068,135033,0 +48561,15,21603,134333,0 +48562,5,25150,134588,0 +48563,3,28072,132664,0 +48564,6,3172,132541,0 +48565,0,13323,132514,0 +48566,8,2481,132949,0 +48567,5,3065,134594,0 +48568,6,25004,132589,0 +48569,7,26155,132616,0 +48570,3,25002,132631,0 +48571,9,27794,133759,0 +48572,8,16681,132946,0 +48573,4,25003,132516,0 +48574,5,19517,134583,0 +48575,1,27790,135057,0 +48576,3,8145,135017,0 +48577,9,15040,133754,0 +48578,5,5855,134593,0 +48579,1,28409,135033,0 +48580,3,3586,132644,0 +48581,0,28414,133693,0 +48582,13,25940,134949,0 +48583,9,23073,133753,0 +48584,8,8346,132959,0 +48585,1,5240,135049,0 +48586,7,7651,132608,0 +48587,6,14870,132589,0 +48588,7,25931,132612,0 +48589,3,25932,132750,0 +48590,9,25938,133770,0 +48591,8,25933,132960,0 +48592,4,14868,132500,0 +48593,5,25934,134584,0 +48594,1,25935,135054,0 +48595,13,18819,134951,0 +48596,0,27799,133131,0 +48597,1,26116,135033,0 +48598,3,27800,132664,0 +48599,15,27801,134125,0 +48600,4,8196,132501,0 +48601,6,12599,132535,0 +48602,7,17886,132615,0 +48603,3,11901,132720,0 +48604,9,23018,133770,0 +48605,8,11903,132956,0 +48606,5,12918,134592,0 +48607,1,12520,135032,0 +48608,7,26181,132600,0 +48609,3,26183,132759,0 +48610,13,18666,134948,0 +48611,9,13963,133772,0 +48612,4,6215,132497,0 +48613,6,9699,132589,0 +48614,0,26170,132767,0 +48615,5,11285,134586,0 +48616,1,9697,135036,0 +48617,3,19829,132722,0 +48618,8,23774,132957,0 +48619,4,11238,132500,0 +48620,0,22516,133127,0 +48621,5,11675,134586,0 +48622,1,18011,135054,0 +48623,7,27350,132602,0 +48624,6,11239,132588,0 +48625,0,19667,133151,0 +48626,3,24352,132718,0 +48627,5,20405,134589,0 +48628,3,4368,132654,0 +48629,5,8236,134591,0 +48630,8,8307,132939,0 +48631,3,24950,132679,0 +48632,3,18837,132648,0 +48633,3,19093,135013,0 +48634,0,41463,133763,0 +48635,8,19095,132953,0 +48636,8,9534,132952,0 +48637,3,8161,132649,0 +48638,3,9575,132683,0 +48639,8,11126,132943,0 +48640,0,18860,133693,0 +48641,0,41842,133129,0 +48642,6,21154,132539,0 +48643,1,4925,135056,0 +48644,1,12867,135056,0 +48645,1,17703,135054,0 +48646,0,18872,133131,0 +48647,6,9048,132539,0 +48648,0,18877,133132,0 +48649,0,16396,133694,0 +48650,0,18861,133763,0 +48651,3,13119,132645,0 +48652,0,19000,132767,0 +48653,3,14606,132666,0 +48654,5,20209,134591,0 +48655,6,18933,132539,0 +48656,5,10199,134591,0 +48657,5,10636,134582,0 +48658,2,18916,135027,0 +48659,3,18917,132662,0 +48660,2,11977,135028,0 +48661,2,18923,135029,0 +48662,2,18348,135027,0 +48663,3,9745,132724,0 +48664,6,2496,132543,0 +48665,7,28124,132606,0 +48666,0,44716,133134,0 +48667,8,29002,132957,0 +48668,1,10177,135049,0 +48669,5,5346,134589,0 +48670,3,28165,132687,0 +48671,4,7200,132492,0 +48672,4,9965,132505,0 +48673,6,5823,132535,0 +48674,7,12955,132613,0 +48675,3,6020,132632,0 +48676,8,19017,132946,0 +48677,1,12951,135044,0 +48678,7,15661,132613,0 +48679,3,15659,132750,0 +48680,13,20972,135964,0 +48681,9,26331,133754,0 +48682,8,19717,132963,0 +48683,4,19163,132524,0 +48684,6,19164,132587,0 +48685,0,26330,132767,0 +48686,5,15660,134584,0 +48687,1,26329,135061,0 +48688,3,7804,132722,0 +48689,8,11250,132955,0 +48690,4,5512,132502,0 +48691,6,5514,132542,0 +48692,5,5513,134589,0 +48693,1,5511,135039,0 +48694,7,2880,132607,0 +48695,6,25281,132543,0 +48696,7,27601,132611,0 +48697,0,27606,132767,0 +48698,9,27607,133769,0 +48699,8,27602,132955,0 +48700,1,27605,135037,0 +48701,5,27598,134590,0 +48702,3,27609,132680,0 +48703,4,27614,132514,0 +48704,3,27599,132651,0 +48705,3,25000,132725,0 +48706,6,3395,132541,0 +48707,7,27719,132604,0 +48708,9,27721,133762,0 +48709,4,1107,132500,0 +48710,8,2981,132958,0 +48711,5,4263,134586,0 +48712,1,27733,135039,0 +48713,3,13199,132632,0 +48714,6,15669,132586,0 +48715,9,26304,133758,0 +48716,8,13203,132944,0 +48717,4,13200,132496,0 +48718,0,26255,132768,0 +48719,5,13426,134584,0 +48720,1,15663,135033,0 +48721,7,15670,132613,0 +48722,7,27426,132615,0 +48723,3,27427,132746,0 +48724,8,27428,132965,0 +48725,4,27429,132519,0 +48726,6,27425,132583,0 +48727,0,19759,133071,0 +48728,5,27430,134583,0 +48729,3,25457,135021,0 +48730,7,25460,132604,0 +48731,6,25459,132542,0 +48732,9,24065,133768,0 +48733,0,9864,132768,0 +48734,8,27639,132940,0 +48735,5,27629,134593,0 +48736,1,27640,135033,0 +48737,3,27645,132653,0 +48738,4,25306,132493,0 +48739,4,8316,132501,0 +48740,6,18958,132541,0 +48741,7,7116,132617,0 +48742,9,27743,133762,0 +48743,8,27745,132957,0 +48744,3,13650,132646,0 +48745,5,8389,134586,0 +48746,1,8387,135055,0 +48747,4,17750,132500,0 +48748,6,17865,132536,0 +48749,7,21671,132617,0 +48750,3,17862,132629,0 +48751,13,26152,134951,0 +48752,0,25826,132767,0 +48753,8,16683,132960,0 +48754,5,17935,134586,0 +48755,1,23490,135054,0 +48756,3,25314,132751,0 +48757,8,25317,132963,0 +48758,4,27411,132521,0 +48759,6,27405,132584,0 +48760,0,27408,132767,0 +48761,5,25315,134586,0 +48762,1,22594,135061,0 +48763,7,27406,132613,0 +48764,1,9718,135052,0 +48765,9,22995,133754,0 +48766,0,44717,133163,0 +48767,8,28083,132957,0 +48768,3,28112,132658,0 +48769,3,9041,135021,0 +48770,9,23042,133770,0 +48771,8,19005,132937,0 +48772,0,27809,133148,0 +48773,1,4942,135054,0 +48774,4,5583,132502,0 +48775,9,26173,133766,0 +48776,13,26176,134956,0 +48777,0,22855,133127,0 +48778,1,26164,135059,0 +48779,6,27400,132535,0 +48780,7,27402,132602,0 +48781,3,27397,132739,0 +48782,4,9067,132495,0 +48783,0,27404,132767,0 +48784,5,9068,134581,0 +48785,1,27403,135044,0 +48786,1,27867,135041,0 +48787,9,15214,133758,0 +48788,3,28992,132671,0 +48789,5,25198,134586,0 +48790,3,23665,132649,0 +48791,3,9652,132717,0 +48792,4,7728,132501,0 +48793,6,9653,132535,0 +48794,7,18978,132615,0 +48795,9,23048,133754,0 +48796,0,18985,133076,0 +48797,5,11280,134586,0 +48798,1,18983,135042,0 +48799,7,17743,132602,0 +48800,3,23672,132751,0 +48801,9,26278,133770,0 +48802,8,17741,132937,0 +48803,4,17737,132500,0 +48804,6,23783,132589,0 +48805,5,17738,134586,0 +48806,1,9071,135054,0 +48807,6,27380,132535,0 +48808,7,17372,132602,0 +48809,3,9137,132723,0 +48810,0,16297,133123,0 +48811,8,27381,132938,0 +48812,5,27383,134583,0 +48813,1,16458,135049,0 +48814,3,9583,135008,0 +48815,9,26126,133772,0 +48816,0,15916,133153,0 +48817,3,28479,132670,0 +48818,7,4393,132612,0 +48819,6,25478,132541,0 +48820,8,15684,132959,0 +48821,0,15432,133694,0 +48822,5,4395,134586,0 +48823,1,23936,135046,0 +48824,3,4392,132722,0 +48825,7,24798,132602,0 +48826,3,13423,132751,0 +48827,9,26259,133766,0 +48828,8,26244,132938,0 +48829,4,13381,132500,0 +48830,6,25293,132584,0 +48831,0,27804,133345,0 +48832,5,13424,134586,0 +48833,1,27805,135054,0 +48834,3,13204,132647,0 +48835,6,13207,132535,0 +48836,8,23645,132938,0 +48837,4,13205,132493,0 +48838,5,13206,134583,0 +48839,1,27422,135033,0 +48840,7,27420,132602,0 +48841,0,18976,133693,0 +48842,0,27862,133117,0 +48843,3,19049,132629,0 +48844,4,8827,132495,0 +48845,8,7732,132953,0 +48846,6,6143,132536,0 +48847,7,5322,132602,0 +48848,6,14325,132541,0 +48849,13,18811,135940,0 +48850,13,18776,134949,0 +48851,13,20873,134950,0 +48852,13,20831,136185,0 +48853,13,20833,135940,0 +48854,3,22553,132744,0 +48855,8,26352,132940,0 +48856,4,17939,132501,0 +48857,6,18555,132586,0 +48858,0,25438,133074,0 +48859,5,17932,134588,0 +48860,1,26364,135033,0 +48861,7,18556,132606,0 +48862,6,17752,132589,0 +48863,7,26362,132612,0 +48864,3,26332,132741,0 +48865,8,17753,132966,0 +48866,4,16460,132502,0 +48867,5,17751,134583,0 +48868,1,26337,135032,0 +48869,3,18012,132751,0 +48870,6,18013,132589,0 +48871,8,23471,132937,0 +48872,4,17949,132517,0 +48873,0,16413,133101,0 +48874,5,19267,134584,0 +48875,1,23612,135054,0 +48876,7,18014,132616,0 +48877,3,6082,132723,0 +48878,5,3201,134592,0 +48879,6,4014,132539,0 +48880,0,28173,133681,0 +48881,0,27774,133138,0 +48882,6,27771,132535,0 +48883,6,11839,132538,0 +48884,4,11837,132519,0 +48885,8,11844,132952,0 +48886,7,17646,132606,0 +48887,4,7755,132515,0 +48888,0,17718,133149,0 +48889,0,11700,133149,0 +48890,0,17900,133149,0 +48891,0,19409,133149,0 +48892,0,22423,133149,0 +48893,0,16098,133146,0 +48894,0,23161,133151,0 +48895,12,20744,135616,0 +48896,9,23129,133763,0 +48897,0,17729,133127,0 +48898,11,19782,133053,0 +48899,0,18138,133149,0 +48900,5,18108,134593,0 +48901,8,12542,132936,0 +48902,3,10719,135009,0 +48903,5,19918,134587,0 +48904,12,20649,135489,0 +48905,11,28796,132395,0 +48906,12,28747,135463,0 +48907,11,20149,135351,0 +48908,0,15616,133756,0 +48909,6,7056,132535,0 +48910,3,7774,132723,0 +48911,3,9548,132723,0 +48912,8,28685,132945,0 +48913,0,23166,133151,0 +48914,11,19550,132392,0 +48915,11,19551,135274,0 +48916,11,19552,135325,0 +48917,11,19555,135637,0 +48918,11,6436,135641,0 +48919,11,18391,132398,0 +48920,11,19617,133043,0 +48921,11,20259,135165,0 +48922,11,20189,135341,0 +48923,6,7458,132539,0 +48924,0,22928,132767,0 +48925,8,28800,132945,0 +48926,7,28711,133345,0 +48927,5,19900,134584,0 +48928,5,23390,134583,0 +48929,8,11144,132940,0 +48930,9,28209,133770,0 +48931,11,19311,135575,0 +48932,8,11985,132955,0 +48933,5,7646,134592,0 +48934,1,19991,135040,0 +48935,6,28238,132541,0 +48936,13,20820,134948,0 +48937,11,22229,135662,0 +48938,11,20570,135341,0 +48939,11,20275,135150,0 +48940,6,18832,132536,0 +48941,6,28263,132588,0 +48942,6,22434,132592,0 +48943,11,20297,135322,0 +48944,12,28267,135463,0 +48945,7,16027,132611,0 +48946,6,13383,132582,0 +48947,15,19786,133729,0 +48948,6,4630,132536,0 +48949,5,7080,134585,0 +48950,0,5257,133119,0 +48951,1,8220,135049,0 +48952,7,28343,132616,0 +48953,4,8401,132500,0 +48954,0,15304,133124,0 +48955,0,19920,132767,0 +48956,11,19779,135355,0 +48957,11,2669,135344,0 +48958,3,19953,132658,0 +48959,3,28710,132747,0 +48960,8,28688,132943,0 +48961,12,21027,135465,0 +48962,13,20974,134963,0 +48963,4,28684,132500,0 +48964,4,13389,132513,0 +48965,1,28744,135059,0 +48966,3,13131,132743,0 +48967,8,7763,132966,0 +48968,0,17409,133140,0 +48969,3,17636,132627,0 +48970,6,19794,132535,0 +48971,8,17639,132617,0 +48972,4,13437,132504,0 +48973,11,20030,135279,0 +48974,4,19803,132504,0 +48975,7,19806,132607,0 +48976,6,13343,132541,0 +48977,11,20035,135348,0 +48978,11,19892,133048,0 +48979,3,9026,132679,0 +48980,5,9028,134591,0 +48981,8,12870,132951,0 +48982,4,9189,132498,0 +48983,9,28298,133762,0 +48984,11,19835,135277,0 +48985,11,20293,135164,0 +48986,3,22365,132720,0 +48987,11,20273,135652,0 +48988,0,19838,133127,0 +48989,12,20788,135466,0 +48990,11,19869,133486,0 +48991,5,11030,134594,0 +48992,11,20258,135169,0 +48993,3,17671,132743,0 +48994,11,20571,135348,0 +48995,8,20476,132940,0 +48996,11,20502,135325,0 +48997,11,20538,135325,0 +48998,11,20031,135353,0 +48999,11,28262,133047,0 +49000,5,8181,134588,0 +49001,0,28196,133123,0 +49002,3,28178,132663,0 +49003,3,21537,132629,0 +49004,13,20985,134954,0 +49005,13,20986,134954,0 +49006,13,20987,134954,0 +49007,15,27556,134333,0 +49008,12,25077,135469,0 +49009,11,28629,133053,0 +49010,12,21096,135139,0 +49011,12,21098,135139,0 +49012,12,21101,135469,0 +49013,12,21111,135495,0 +49014,12,21112,135489,0 +49015,12,21113,135495,0 +49016,9,28731,133760,0 +49017,11,21462,134294,0 +49018,11,21159,132395,0 +49019,11,21192,135274,0 +49020,11,21194,135274,0 +49021,11,21251,135145,0 +49022,3,8170,132666,0 +49024,11,21751,133476,0 +49025,9,28181,133770,0 +49026,1,28217,135055,0 +49027,11,21461,134294,0 +49028,11,21144,134294,0 +49029,6,5370,132579,0 +49030,15,21373,135467,0 +49031,11,21552,135145,0 +49032,11,23270,132369,0 +49033,3,20992,132743,0 +49034,1,21196,135040,0 +49035,3,16661,132638,0 +49036,1,17771,135056,0 +49037,6,28658,132535,0 +49038,12,20555,135492,0 +49039,13,21613,134948,0 +49040,1,28725,135057,0 +49041,3,21898,132737,0 +49042,11,28779,135646,0 +49043,4,28642,132518,0 +49044,9,27011,133771,0 +49045,3,21578,132743,0 +49046,7,28820,132612,0 +49047,1,28704,135044,0 +49048,11,28765,132403,0 +49049,0,28826,133069,0 +49050,8,17861,132938,0 +49051,6,17860,132535,0 +49052,11,21715,132945,0 +49053,8,21718,132956,0 +49054,0,15302,133125,0 +49055,3,21719,132648,0 +49056,12,28807,135150,0 +49057,7,12506,132601,0 +49058,7,28805,132617,0 +49059,7,21754,132617,0 +49060,1,21592,135033,0 +49061,4,23972,132522,0 +49062,11,21775,135357,0 +49063,6,28669,132582,0 +49064,11,21793,133046,0 +49065,11,28821,133046,0 +49066,4,5461,132500,0 +49067,0,22029,135805,0 +49068,11,22031,135124,0 +49069,9,22997,133770,0 +49070,8,11679,132938,0 +49071,11,22212,135576,0 +49072,11,21809,135326,0 +49073,5,1512,134589,0 +49074,6,28660,132539,0 +49075,5,25544,134593,0 +49076,11,22032,135131,0 +49077,0,3087,133146,0 +49078,2,21841,135022,0 +49079,1,28792,135046,0 +49080,9,28071,133753,0 +49081,5,10397,134583,0 +49082,11,28245,135356,0 +49083,11,28312,135311,0 +49084,9,23553,133760,0 +49085,12,28108,135470,0 +49086,11,25632,135128,0 +49087,8,28332,132960,0 +49088,15,28226,133731,0 +49089,6,26799,132582,0 +49090,9,28325,133757,0 +49091,1,28313,135061,0 +49092,3,13726,132722,0 +49093,8,28342,132959,0 +49094,1,28304,135059,0 +49095,11,22227,135349,0 +49097,11,28075,133060,0 +49098,11,28073,132401,0 +49099,0,4177,133158,0 +49100,13,18750,134953,0 +49101,1,28254,135056,0 +49102,7,28255,132606,0 +49103,8,11604,132951,0 +49104,6,16408,132589,0 +49105,11,28679,132404,0 +49106,11,25625,133045,0 +49107,11,25609,135651,0 +49108,11,21956,133044,0 +49109,0,28762,133143,0 +49110,3,22442,132629,0 +49111,5,7808,134584,0 +49112,11,28719,132416,0 +49113,1,28232,135056,0 +49114,11,28207,132393,0 +49115,0,28135,133069,0 +49116,6,17814,132582,0 +49117,3,28244,132638,0 +49118,8,11699,132938,0 +49119,11,28086,135327,0 +49120,0,22036,133131,0 +49121,1,4324,135047,0 +49122,4,8241,132500,0 +49123,3,28095,132717,0 +49124,3,16391,132723,0 +49125,5,28182,134586,0 +49126,3,23187,132638,0 +49127,9,28240,133768,0 +49128,8,7805,132960,0 +49129,7,23463,132616,0 +49130,9,28210,133760,0 +49131,8,11772,132951,0 +49132,11,22180,133476,0 +49133,0,35174,133168,0 +49134,5,18849,135725,0 +49135,11,3175,135640,0 +49136,11,22248,135651,0 +49137,11,22249,132408,0 +49138,11,28699,135144,0 +49139,9,28690,133770,0 +49140,4,28777,132523,0 +49141,11,22258,135641,0 +49142,11,22319,132392,0 +49143,11,22598,132395,0 +49144,12,28248,135139,0 +49145,11,22366,135325,0 +49146,11,22378,135325,0 +49147,11,22391,135225,0 +49148,11,22402,135274,0 +49149,11,22403,135640,0 +49150,11,22404,135131,0 +49151,3,21305,132743,0 +49152,1,22534,135054,0 +49153,7,19760,132612,0 +49154,0,21257,133125,0 +49155,5,22520,134584,0 +49156,5,22545,134584,0 +49157,3,21179,132751,0 +49158,4,21180,132500,0 +49159,8,23697,132960,0 +49160,6,21181,132584,0 +49161,5,25745,134583,0 +49162,3,24504,132745,0 +49163,4,5679,132490,0 +49164,7,24511,132618,0 +49165,6,24513,132582,0 +49166,0,14964,133124,0 +49167,1,24509,135033,0 +49168,5,24506,134584,0 +49169,15,22617,133622,0 +49170,13,22638,134955,0 +49171,11,22645,132395,0 +49172,3,22647,132683,0 +49173,11,20198,135317,0 +49174,8,28680,132953,0 +49175,9,22989,133757,0 +49176,11,22654,135272,0 +49177,6,17429,132603,0 +49178,11,22672,135131,0 +49179,11,22695,135279,0 +49180,8,12198,132939,0 +49181,11,21952,132404,0 +49182,11,28673,133044,0 +49183,11,22721,135639,0 +49184,11,22722,135469,0 +49185,11,22733,135351,0 +49186,3,26053,132681,0 +49187,7,25453,132604,0 +49188,8,28797,132957,0 +49189,7,28824,132616,0 +49190,9,24108,133773,0 +49191,9,23111,133770,0 +49192,8,28771,132966,0 +49193,6,27829,132587,0 +49194,6,22779,132592,0 +49195,1,28727,135056,0 +49197,11,28789,135648,0 +49198,11,31966,135291,0 +49199,0,2457,133148,0 +49200,1,22795,135042,0 +49201,4,8811,132500,0 +49202,11,25613,135661,0 +49203,11,22906,135330,0 +49204,11,22814,135325,0 +49205,13,23419,134966,0 +49206,3,4325,132741,0 +49207,0,22833,132768,0 +49208,12,24107,133729,0 +49209,4,12540,132499,0 +49210,9,26299,133770,0 +49211,3,22843,132658,0 +49212,6,23486,132582,0 +49213,3,13138,132746,0 +49214,5,23485,134584,0 +49215,3,22860,132738,0 +49216,6,9181,132582,0 +49217,1,5833,135046,0 +49218,3,13380,132745,0 +49219,5,22882,134584,0 +49220,11,22885,135581,0 +49221,3,4474,132634,0 +49222,1,25827,135051,0 +49223,8,19753,132937,0 +49224,8,22897,132964,0 +49225,0,22901,133111,0 +49226,4,22342,132502,0 +49227,0,15378,133126,0 +49228,8,10944,132960,0 +49229,8,22917,132964,0 +49230,3,16726,132629,0 +49231,12,22929,135533,0 +49232,12,28813,135496,0 +49233,11,22971,135342,0 +49234,11,23171,133741,0 +49235,11,23172,133639,0 +49236,11,23174,135471,0 +49237,11,23175,133741,0 +49238,11,23177,133741,0 +49239,0,23197,133161,0 +49240,11,23198,132395,0 +49241,5,12516,134585,0 +49242,3,23200,132635,0 +49243,11,5190,135323,0 +49244,11,25600,132418,0 +49245,11,23234,132403,0 +49246,11,23236,132396,0 +49247,11,23434,135581,0 +49248,11,23241,135340,0 +49249,11,24255,135277,0 +49250,11,20299,135315,0 +49251,11,23904,132400,0 +49252,11,23253,133476,0 +49253,11,23254,133476,0 +49254,11,23255,133476,0 +49255,11,24813,135349,0 +49256,11,23262,132797,0 +49257,3,5864,132716,0 +49258,11,23271,135663,0 +49259,11,25047,133046,0 +49260,11,23274,135291,0 +49261,11,28504,132403,0 +49262,11,23281,133942,0 +49263,11,23283,135131,0 +49264,11,23316,133639,0 +49265,11,23317,133639,0 +49266,11,23318,133639,0 +49267,11,23319,133639,0 +49268,11,23320,133639,0 +49269,11,23321,133741,0 +49270,11,23322,133741,0 +49271,11,23323,133741,0 +49272,11,23324,133741,0 +49273,11,23355,135274,0 +49274,11,23357,133476,0 +49275,11,23379,135274,0 +49276,11,23386,135280,0 +49277,3,28335,132744,0 +49278,11,23401,133489,0 +49279,11,23405,135274,0 +49280,5,23403,134583,0 +49281,0,23411,133133,0 +49282,1,4940,135041,0 +49283,13,4404,134950,0 +49284,5,25543,134584,0 +49285,7,22752,132616,0 +49286,11,25647,135350,0 +49287,11,25646,135353,0 +49288,12,23455,135463,0 +49289,11,23465,135146,0 +49290,11,23472,135277,0 +49291,11,23508,135280,0 +49292,0,23519,133125,0 +49293,11,23539,135145,0 +49294,0,23544,133126,0 +49295,13,2149,134949,0 +49296,5,14869,134586,0 +49297,5,23551,134586,0 +49298,9,23554,133770,0 +49299,11,23557,133054,0 +49300,11,23561,135271,0 +49301,11,28676,135311,0 +49302,11,28804,132394,0 +49303,4,5742,132504,0 +49304,9,28661,133760,0 +49305,11,28809,133046,0 +49306,5,28648,134586,0 +49307,3,10927,132725,0 +49308,11,28758,135128,0 +49309,11,25470,135578,0 +49310,13,20909,134948,0 +49311,11,23594,135160,0 +49312,12,28631,135473,0 +49313,11,28799,133054,0 +49314,9,27152,133770,0 +49315,5,2311,134586,0 +49316,3,25731,132721,0 +49317,5,28438,134583,0 +49318,4,7542,132511,0 +49319,7,11492,132601,0 +49320,1,28643,135045,0 +49321,11,25533,132415,0 +49322,11,28748,132399,0 +49323,11,28791,132401,0 +49324,11,25599,132418,0 +49325,12,28772,135499,0 +49326,12,25602,135499,0 +49327,12,28766,135499,0 +49328,12,25606,135499,0 +49329,11,28671,133041,0 +49330,11,28706,133053,0 +49331,11,28776,133041,0 +49332,11,28689,133057,0 +49333,11,28681,133056,0 +49334,15,24122,134336,0 +49335,15,28803,134333,0 +49336,11,25639,135327,0 +49337,11,28594,135313,0 +49338,11,28708,135340,0 +49339,11,25640,135343,0 +49340,11,25641,135352,0 +49341,12,25607,135533,0 +49342,12,25608,135533,0 +49343,11,28768,135326,0 +49344,11,28678,135351,0 +49345,11,28675,135277,0 +49346,11,28714,135273,0 +49347,11,25627,133488,0 +49348,11,28677,133041,0 +49349,11,25623,133041,0 +49350,11,28707,135356,0 +49351,11,28598,135345,0 +49352,11,28717,135271,0 +49353,11,28764,135125,0 +49354,11,18388,135129,0 +49355,11,12562,135130,0 +49356,11,25630,135125,0 +49357,11,28790,135125,0 +49358,11,25633,135130,0 +49359,11,28672,135131,0 +49360,12,28787,135471,0 +49361,12,28626,135471,0 +49362,1,28351,135055,0 +49363,3,16116,132741,0 +49364,6,28361,132590,0 +49365,6,28353,132586,0 +49366,8,13305,132944,0 +49367,8,28352,132937,0 +49368,0,28360,133127,0 +49369,5,28716,134584,0 +49370,7,19264,132616,0 +49371,4,28363,132521,0 +49372,11,23601,135145,0 +49373,3,23604,132643,0 +49374,13,25134,134961,0 +49375,13,25133,134951,0 +49376,3,23605,132638,0 +49377,6,22761,132539,0 +49378,6,28597,132539,0 +49379,1,28612,135049,0 +49380,4,28657,132500,0 +49381,7,22593,132618,0 +49382,7,15768,132612,0 +49383,9,28613,134348,0 +49384,3,8150,132719,0 +49385,6,28664,132579,0 +49386,0,28601,133121,0 +49387,0,28739,133072,0 +49388,1,28709,135049,0 +49389,4,28302,132504,0 +49390,4,28369,132514,0 +49391,3,28663,132628,0 +49392,6,28441,132535,0 +49393,8,28434,132944,0 +49394,0,28440,133126,0 +49395,0,15383,133120,0 +49396,5,28437,134583,0 +49397,5,28447,134583,0 +49398,1,28444,135049,0 +49399,1,28443,135042,0 +49400,1,28665,135054,0 +49401,4,24666,132512,0 +49402,7,28668,132616,0 +49403,12,21071,135617,0 +49404,12,28786,135617,0 +49405,12,24720,135617,0 +49406,4,23628,132522,0 +49407,4,5739,132496,0 +49408,4,28356,132516,0 +49409,12,28743,135617,0 +49410,12,23639,135493,0 +49411,11,25155,135128,0 +49412,11,23656,135274,0 +49413,8,19904,132963,0 +49414,11,23683,135316,0 +49415,11,23692,135325,0 +49416,1,23704,135054,0 +49417,11,25180,133041,0 +49418,3,11102,132748,0 +49419,5,25208,134593,0 +49421,12,25603,135498,0 +49422,7,23730,132608,0 +49423,8,23736,132947,0 +49424,1,8975,135033,0 +49425,11,23742,132945,0 +49426,7,28436,132618,0 +49427,11,25619,133490,0 +49428,13,23750,134960,0 +49429,7,11654,132606,0 +49430,7,22938,132606,0 +49431,11,23791,135652,0 +49432,15,23797,134754,0 +49433,11,23798,135277,0 +49434,8,23827,132963,0 +49435,13,23835,134964,0 +49436,11,23836,135275,0 +49437,11,23837,135150,0 +49438,8,17680,132948,0 +49439,8,23627,132964,0 +49440,12,23850,135611,0 +49441,1,19154,135038,0 +49442,6,9017,132589,0 +49443,6,23354,132535,0 +49444,15,23867,135471,0 +49445,11,23875,135358,0 +49446,6,23901,132535,0 +49447,11,23908,135581,0 +49448,11,23909,134710,0 +49449,12,23917,135463,0 +49450,12,23918,135463,0 +49451,12,23919,135463,0 +49452,12,23920,135463,0 +49453,1,23923,132394,0 +49454,11,23948,133491,0 +49455,3,24760,132653,0 +49456,15,23955,133738,0 +49457,11,23969,135274,0 +49458,11,24014,135225,0 +49459,11,24015,135225,0 +49460,11,21513,135225,0 +49461,11,24016,135225,0 +49462,9,24013,133772,0 +49463,3,24024,132649,0 +49464,1,8022,135055,0 +49465,0,21908,133071,0 +49466,11,25036,135302,0 +49467,11,25614,135648,0 +49468,6,22372,132539,0 +49469,1,11318,135033,0 +49470,13,23825,134965,0 +49471,3,24066,132679,0 +49472,6,17739,132590,0 +49473,5,8223,134594,0 +49474,4,24071,132519,0 +49475,9,24073,133771,0 +49476,4,24074,132510,0 +49477,3,25040,132725,0 +49478,5,25042,134586,0 +49479,0,5677,133685,0 +49480,6,25051,132536,0 +49481,11,25629,133476,0 +49482,3,21236,132637,0 +49483,8,15606,132961,0 +49484,12,24106,133729,0 +49485,7,24110,132616,0 +49486,6,33114,132535,0 +49487,4,10429,132491,0 +49488,1,24115,135056,0 +49489,11,23276,135575,0 +49490,7,11848,132612,0 +49491,9,24174,133772,0 +49492,5,24162,134584,0 +49493,4,24164,132512,0 +49494,11,24167,135316,0 +49495,8,21155,132949,0 +49496,6,24179,132590,0 +49497,7,24180,132615,0 +49498,6,24181,132539,0 +49499,8,24183,132965,0 +49500,1,24185,135049,0 +49501,12,24186,135654,0 +49502,3,24189,132688,0 +49503,7,15609,132606,0 +49504,1,24193,135044,0 +49505,8,9220,132963,0 +49507,15,24282,134718,0 +49508,15,24283,134718,0 +49509,11,24296,132796,0 +49510,11,24343,135145,0 +49511,11,24342,135274,0 +49512,11,24366,135325,0 +49513,11,24370,135131,0 +49514,11,24394,135145,0 +49515,11,24445,135145,0 +49516,11,24446,132395,0 +49517,11,24452,135325,0 +49518,11,24461,135274,0 +49519,11,24473,135145,0 +49520,11,24479,135325,0 +49521,11,24480,135225,0 +49522,11,24489,135145,0 +49523,11,24490,135138,0 +49524,11,5554,135145,0 +49525,11,24503,135145,0 +49526,11,24517,135145,0 +49527,13,22831,134950,0 +49528,11,19541,133053,0 +49529,4,25235,132504,0 +49530,3,25207,132645,0 +49531,3,21957,132645,0 +49532,9,25232,133762,0 +49533,8,25231,132959,0 +49534,6,25233,132539,0 +49535,0,25230,133694,0 +49536,1,17746,135052,0 +49537,3,24612,132644,0 +49538,3,24610,132649,0 +49540,3,24635,132670,0 +49541,3,24636,132664,0 +49542,3,24637,132691,0 +49543,3,24638,132671,0 +49544,3,24639,132665,0 +49545,3,24640,132663,0 +49546,11,24655,135321,0 +49547,12,24721,135612,0 +49548,11,45947,133445,0 +49549,12,24743,133732,0 +49550,4,22815,132498,0 +49551,7,24749,132617,0 +49552,11,28782,132394,0 +49553,11,24756,135351,0 +49554,6,28627,132542,0 +49555,1,19475,135056,0 +49556,4,7796,132501,0 +49557,8,3994,132943,0 +49558,4,19178,132502,0 +49559,1,24772,135055,0 +49560,11,6451,135661,0 +49561,6,28604,132585,0 +49562,7,24793,132615,0 +49563,11,24816,135579,0 +49564,11,26679,135657,0 +49565,0,26680,132767,0 +49566,3,15986,132648,0 +49567,9,23422,133770,0 +49568,5,15984,134586,0 +49569,11,24919,133489,0 +49570,11,24925,135128,0 +49571,6,25871,132543,0 +49572,8,17478,132952,0 +49573,3,25869,132663,0 +49574,11,24926,135145,0 +49575,4,9670,132491,0 +49576,3,9669,135009,0 +49577,3,6370,135009,0 +49578,3,15820,132667,0 +49579,9,24928,133763,0 +49580,5,12341,134589,0 +49581,3,24932,132650,0 +49582,3,25877,132662,0 +49583,4,7820,132494,0 +49584,6,7750,132592,0 +49585,7,8191,132607,0 +49586,5,7821,134706,0 +49587,3,16531,132657,0 +49588,3,8180,132716,0 +49589,1,5093,135040,0 +49590,3,17275,132687,0 +49591,6,12257,132537,0 +49592,0,24942,133165,0 +49593,3,9172,135009,0 +49594,3,10403,132649,0 +49595,1,24966,135033,0 +49596,4,10087,132505,0 +49597,11,24981,135648,0 +49598,7,23392,132606,0 +49599,7,11501,132612,0 +49600,3,18834,132692,0 +49601,3,25203,132672,0 +49602,6,11146,132539,0 +49603,5,7895,134582,0 +49604,7,4308,132611,0 +49605,9,28054,133770,0 +49606,8,28056,132950,0 +49607,1,7498,135037,0 +49608,1,28055,135044,0 +49609,3,28098,132659,0 +49610,3,4305,135012,0 +49611,6,9184,132539,0 +49612,0,26302,133134,0 +49613,3,12759,135014,0 +49614,8,18590,132954,0 +49615,3,8141,135011,0 +49616,3,26011,132661,0 +49617,0,12163,132514,0 +49618,4,26022,132510,0 +49619,9,26015,133767,0 +49620,3,26017,132647,0 +49621,3,11871,135010,0 +49622,3,9175,132646,0 +49623,0,26044,132512,0 +49624,0,21633,132521,0 +49625,3,10094,135008,0 +49626,1,11560,135033,0 +49627,5,8175,134592,0 +49628,4,10083,132500,0 +49629,1,26104,135033,0 +49630,0,26309,133090,0 +49631,0,8806,132511,0 +49632,4,8135,132496,0 +49633,7,22891,132608,0 +49634,9,26189,133760,0 +49635,5,7939,134592,0 +49636,3,70732,135008,0 +49637,6,10104,132541,0 +49638,8,14588,132949,0 +49639,3,26142,132670,0 +49640,1,13067,135056,0 +49641,0,25135,132505,0 +49642,3,26131,132687,0 +49643,3,18024,135021,0 +49644,4,25098,132499,0 +49645,1,26213,135049,0 +49646,3,26211,132676,0 +49647,6,26268,132541,0 +49648,9,26271,133754,0 +49649,7,22355,132616,0 +49650,4,9027,132519,0 +49651,3,11877,132658,0 +49652,0,26277,132768,0 +49653,3,26256,132633,0 +49654,4,26252,132518,0 +49655,6,26261,132539,0 +49656,7,26253,132616,0 +49657,8,26258,132954,0 +49658,5,26260,134593,0 +49659,1,26263,135056,0 +49660,3,26254,132669,0 +49661,3,26288,132659,0 +49662,6,26285,132542,0 +49663,7,26287,132608,0 +49664,0,25196,133069,0 +49665,8,26290,132937,0 +49666,5,26300,134592,0 +49667,1,19508,135054,0 +49668,4,26284,132502,0 +49669,3,25389,135021,0 +49670,6,26225,132541,0 +49671,7,26216,132615,0 +49672,0,5767,133074,0 +49673,8,25431,132940,0 +49674,5,25426,134593,0 +49675,3,26226,132670,0 +49676,4,26221,132499,0 +49677,3,25039,132687,0 +49678,9,25884,133768,0 +49679,8,10882,132952,0 +49680,1,25887,135040,0 +49681,3,10077,135017,0 +49682,3,25889,132655,0 +49683,3,9400,135013,0 +49684,6,9008,132540,0 +49685,7,21757,132601,0 +49686,9,25958,133770,0 +49687,1,25965,135040,0 +49688,3,13667,132650,0 +49689,1,27872,135037,0 +49690,3,8156,135013,0 +49691,6,7782,132539,0 +49692,8,11002,132955,0 +49693,5,7781,134586,0 +49694,4,8157,132492,0 +49695,3,8148,135012,0 +49696,6,18290,132539,0 +49697,0,26033,132515,0 +49698,1,6407,135034,0 +49699,3,14928,132646,0 +49700,3,11141,135007,0 +49701,6,13141,132542,0 +49702,9,26080,133756,0 +49703,0,26093,132500,0 +49704,1,26096,135033,0 +49705,4,7709,132495,0 +49706,3,10070,135007,0 +49707,6,9176,132542,0 +49708,7,14779,132606,0 +49709,9,26175,133765,0 +49710,5,10071,134592,0 +49711,0,41845,133134,0 +49712,3,26157,132677,0 +49713,3,7754,135007,0 +49714,3,26240,132642,0 +49715,7,26235,132608,0 +49716,6,26231,132542,0 +49717,9,26233,133761,0 +49718,0,21152,133123,0 +49719,8,26236,132944,0 +49720,5,26238,134590,0 +49721,1,17365,135033,0 +49722,3,27228,132680,0 +49723,4,26230,132506,0 +49724,11,25096,133050,0 +49725,1,25104,135056,0 +49726,11,25120,135274,0 +49727,8,22909,132963,0 +49728,11,25139,133041,0 +49729,13,25138,134948,0 +49730,11,25148,133050,0 +49731,6,25160,132590,0 +49732,1,28705,135033,0 +49733,0,25166,133116,0 +49734,11,25649,135273,0 +49735,8,28703,132949,0 +49736,5,23687,134591,0 +49737,1,11170,135042,0 +49738,6,28276,132586,0 +49739,8,28280,132964,0 +49740,1,28282,135051,0 +49741,5,21200,134584,0 +49742,6,15485,132539,0 +49743,3,9265,132724,0 +49744,9,27525,133763,0 +49745,8,27519,132952,0 +49746,1,27523,135039,0 +49747,9,27673,133761,0 +49748,11,25173,135313,0 +49749,3,10116,132716,0 +49750,9,27584,133762,0 +49751,9,27980,133755,0 +49752,9,27986,133774,0 +49753,0,15311,133111,0 +49754,3,10941,132720,0 +49755,4,22811,132512,0 +49756,8,25188,132960,0 +49757,6,14727,132535,0 +49758,2,13072,135029,0 +49759,11,25197,135145,0 +49760,6,21147,132535,0 +49761,8,23404,132962,0 +49762,5,21237,134584,0 +49763,3,25245,132684,0 +49764,6,5871,132539,0 +49765,1,16428,135033,0 +49766,3,7787,132718,0 +49767,12,25260,135612,0 +49768,3,12598,132722,0 +49769,5,27578,134587,0 +49770,1,27580,135036,0 +49771,7,18146,132602,0 +49772,3,11067,132717,0 +49773,9,27573,133769,0 +49774,8,13344,132949,0 +49775,5,27570,134586,0 +49776,1,27569,135049,0 +49777,9,27653,133762,0 +49778,9,22675,133754,0 +49779,9,22691,133759,0 +49780,6,26983,132540,0 +49781,7,22812,132605,0 +49782,9,26958,133770,0 +49783,4,22807,132514,0 +49784,8,22808,132946,0 +49785,1,26988,135038,0 +49786,3,22786,132624,0 +49787,6,27009,132541,0 +49788,4,22935,132511,0 +49789,8,23369,132939,0 +49790,5,22936,134583,0 +49791,1,27014,135038,0 +49792,7,27026,132610,0 +49793,3,24348,132629,0 +49794,9,26999,133760,0 +49795,0,27191,133161,0 +49796,8,27027,132938,0 +49797,6,27035,132535,0 +49798,5,27028,134583,0 +49799,1,27030,135054,0 +49800,7,27048,132606,0 +49801,3,25354,132637,0 +49802,4,27046,132518,0 +49803,6,24786,132539,0 +49804,9,27051,133754,0 +49805,8,25359,132943,0 +49806,5,25357,134583,0 +49807,1,27054,135052,0 +49808,3,11055,132629,0 +49809,6,27093,132579,0 +49810,7,22438,132601,0 +49811,4,12641,132498,0 +49812,0,28175,133121,0 +49813,5,10942,134586,0 +49814,1,27096,135054,0 +49815,8,27148,132953,0 +49816,4,4888,132500,0 +49817,6,27149,132535,0 +49818,0,27151,133101,0 +49819,5,4416,134586,0 +49820,1,11688,135054,0 +49821,7,17998,132602,0 +49822,3,17996,132723,0 +49823,13,18506,134948,0 +49824,8,13142,132938,0 +49825,4,13309,132492,0 +49826,6,13311,132543,0 +49827,5,13140,134583,0 +49828,1,27160,135060,0 +49829,3,13915,132629,0 +49830,6,22306,132535,0 +49831,9,27197,133770,0 +49832,8,14799,132953,0 +49833,4,14797,132502,0 +49834,5,17665,134583,0 +49835,3,21576,132627,0 +49836,9,27143,133753,0 +49837,8,10479,132938,0 +49838,5,27140,134583,0 +49839,1,27142,135033,0 +49840,11,25362,133040,0 +49841,3,17659,132746,0 +49842,11,25365,133040,0 +49843,11,25366,133040,0 +49844,11,25367,133040,0 +49845,8,17769,132949,0 +49846,4,17660,132520,0 +49847,6,26813,132539,0 +49848,5,24312,134593,0 +49849,1,26818,135042,0 +49850,0,27182,132768,0 +49851,7,17661,132606,0 +49852,8,29015,132953,0 +49853,7,16395,132612,0 +49854,3,26687,132743,0 +49855,11,25378,135145,0 +49856,4,17332,132513,0 +49857,6,16394,132587,0 +49858,5,13132,134586,0 +49859,1,26688,135054,0 +49860,13,26693,134963,0 +49861,0,26692,133101,0 +49862,3,22847,132751,0 +49863,11,25382,135138,0 +49864,8,27190,132938,0 +49865,4,17428,132508,0 +49866,6,22853,132541,0 +49867,5,24398,134582,0 +49868,1,26825,135051,0 +49869,3,26846,132744,0 +49870,4,26848,132511,0 +49871,6,26850,132586,0 +49872,0,15297,133121,0 +49873,5,26849,134583,0 +49874,1,27876,135058,0 +49875,3,26880,132744,0 +49876,8,26881,132962,0 +49877,4,26879,132511,0 +49878,6,26883,132539,0 +49879,0,27180,133121,0 +49880,5,26884,134583,0 +49881,1,26885,135033,0 +49882,7,26878,132606,0 +49883,11,25411,135325,0 +49884,11,25437,135145,0 +49885,11,25471,132392,0 +49886,11,25496,135321,0 +49887,11,25499,132392,0 +49888,11,25503,135131,0 +49889,11,25504,135131,0 +49890,11,25506,135643,0 +49891,11,25507,135643,0 +49892,11,25508,135643,0 +49893,11,25509,135643,0 +49894,11,25510,135643,0 +49895,11,4291,135643,0 +49896,11,25513,135643,0 +49897,11,25514,135643,0 +49898,11,25515,135643,0 +49899,6,26652,132589,0 +49900,8,27838,132956,0 +49901,4,26650,132502,0 +49902,0,26656,133122,0 +49903,5,26651,134587,0 +49904,1,26655,135036,0 +49905,3,27899,132626,0 +49906,8,27901,132962,0 +49907,4,27902,132513,0 +49908,1,27904,135042,0 +49909,7,26476,132612,0 +49910,6,27905,132587,0 +49911,7,26793,132611,0 +49912,3,26795,132742,0 +49913,8,26798,132964,0 +49914,4,26792,132506,0 +49915,0,24759,132514,0 +49916,5,26800,134585,0 +49917,1,26797,135047,0 +49918,7,17815,132613,0 +49919,3,17811,132760,0 +49920,8,17818,132963,0 +49921,4,17812,132521,0 +49922,5,17813,134584,0 +49923,1,26875,135059,0 +49924,3,25547,132632,0 +49925,8,27934,132965,0 +49926,4,26437,132501,0 +49927,5,25548,134584,0 +49928,1,25546,135047,0 +49929,7,26542,132613,0 +49930,6,26643,132590,0 +49931,7,12122,132618,0 +49932,8,11346,132961,0 +49933,4,12119,132503,0 +49934,0,27512,132517,0 +49935,5,13101,134584,0 +49936,1,26645,135053,0 +49937,3,16401,132629,0 +49938,8,17351,132953,0 +49939,4,17349,132502,0 +49940,6,17823,132536,0 +49941,5,17419,134586,0 +49942,1,26843,135054,0 +49943,7,17759,132608,0 +49944,6,21264,132539,0 +49945,3,17299,132636,0 +49946,8,17304,132940,0 +49947,4,17301,132518,0 +49948,0,27835,133125,0 +49949,5,17302,134588,0 +49950,1,26834,135036,0 +49951,7,21254,132612,0 +49952,3,26859,132738,0 +49953,8,27833,132944,0 +49954,4,26856,132500,0 +49955,0,1126,133073,0 +49956,5,26861,134582,0 +49957,1,26864,135051,0 +49958,6,26862,132584,0 +49959,7,26857,132618,0 +49960,3,25517,132745,0 +49961,8,26888,132938,0 +49962,4,25518,132513,0 +49963,6,25526,132592,0 +49964,0,26893,133078,0 +49965,5,25519,134592,0 +49966,1,26894,135044,0 +49967,7,25527,132608,0 +49968,8,6205,132939,0 +49969,13,28579,134955,0 +49970,3,12837,132628,0 +49971,5,12840,134585,0 +49972,3,25676,132626,0 +49973,1,25677,135049,0 +49974,3,26912,132741,0 +49975,1,25545,135032,0 +49976,5,26918,134583,0 +49977,3,13803,132722,0 +49978,5,5488,134586,0 +49979,1,23782,135044,0 +49980,3,4320,132723,0 +49981,3,25082,132742,0 +49982,5,8345,134585,0 +49983,1,11622,135049,0 +49984,3,25699,132721,0 +49985,1,13697,135037,0 +49986,5,5479,134582,0 +49987,3,5477,132722,0 +49988,0,28976,133122,0 +49989,1,25713,135038,0 +49990,8,2375,132965,0 +49991,7,2881,132606,0 +49992,3,1080,132741,0 +49993,8,25735,132965,0 +49994,4,4460,132512,0 +49995,0,25739,133681,0 +49996,6,14660,132541,0 +49997,11,28236,135149,0 +49998,11,28225,135146,0 +49999,6,1981,132537,0 +50000,9,25910,133762,0 +50001,3,18225,132725,0 +50002,4,5774,132495,0 +50003,6,1966,132537,0 +50004,0,27886,133117,0 +50005,7,7769,132609,0 +50006,13,18698,134955,0 +50007,9,28563,133760,0 +50008,1,22408,135042,0 +50009,9,27686,133758,0 +50010,4,6223,132493,0 +50011,1,8847,135053,0 +50012,3,9177,132720,0 +50013,6,6184,132536,0 +50014,7,8171,132615,0 +50015,3,6181,132720,0 +50016,8,12500,132956,0 +50017,0,28979,133694,0 +50018,1,22488,135054,0 +50019,9,27593,133758,0 +50020,0,27907,133111,0 +50021,1,27592,135044,0 +50022,9,24159,133770,0 +50023,0,27666,132500,0 +50024,1,5485,135054,0 +50025,9,23051,133754,0 +50026,0,28022,133074,0 +50027,5,24328,134586,0 +50028,3,23250,132720,0 +50029,10,25982,134472,0 +50030,10,25983,134473,0 +50031,10,25990,134474,0 +50032,10,25992,134475,0 +50033,5,23707,134588,0 +50034,12,28218,135469,0 +50035,11,28544,135274,0 +50036,11,28567,135321,0 +50037,11,28527,135356,0 +50038,11,28570,135346,0 +50039,11,28528,135314,0 +50040,11,28530,135351,0 +50041,11,28458,135351,0 +50042,11,28346,135349,0 +50043,11,28316,135346,0 +50044,11,28552,135276,0 +50045,11,28318,133045,0 +50046,11,28521,133045,0 +50047,11,6567,133053,0 +50048,11,28539,132415,0 +50049,11,28469,132405,0 +50050,11,28566,132407,0 +50051,11,28459,132407,0 +50052,11,28523,132401,0 +50053,11,28568,135637,0 +50054,11,20331,135637,0 +50055,11,28535,135324,0 +50056,11,20080,135324,0 +50057,11,28536,135321,0 +50058,11,28546,135352,0 +50059,11,28465,135355,0 +50060,11,28321,135330,0 +50061,11,28529,135278,0 +50062,11,28576,135327,0 +50063,11,26589,135280,0 +50064,11,28548,133053,0 +50065,11,28468,133054,0 +50066,11,28540,133056,0 +50067,11,28311,133053,0 +50068,11,28499,133047,0 +50069,11,28526,133045,0 +50070,11,28674,133047,0 +50071,11,28460,132400,0 +50072,11,28573,132415,0 +50073,11,8508,132408,0 +50074,11,28334,132403,0 +50075,11,28541,132408,0 +50076,11,28349,132409,0 +50077,11,28467,135140,0 +50078,11,28502,135140,0 +50079,12,28457,135468,0 +50080,12,28538,135147,0 +50081,12,28518,135468,0 +50082,12,28577,135143,0 +50083,12,28572,135489,0 +50084,12,28575,135498,0 +50085,12,28322,135495,0 +50086,12,28309,135494,0 +50087,12,28543,135496,0 +50088,12,28515,135495,0 +50089,12,28545,135500,0 +50090,13,2208,134956,0 +50091,3,10013,132716,0 +50092,6,9267,132539,0 +50093,8,28046,132939,0 +50094,3,9185,132719,0 +50095,5,9266,134586,0 +50096,1,9527,135039,0 +50097,12,28557,135610,0 +50098,12,28331,135610,0 +50101,9,28006,133753,0 +50102,11,28093,135321,0 +50103,3,13702,132656,0 +50104,0,27680,133117,0 +50105,6,27678,132539,0 +50106,8,27677,132958,0 +50107,6,23708,132539,0 +50108,7,27699,132612,0 +50109,13,28269,134967,0 +50110,0,29134,133117,0 +50111,3,7010,132649,0 +50112,7,27954,132606,0 +50113,9,27960,133768,0 +50114,13,28026,134962,0 +50115,9,27974,133774,0 +50116,3,8158,132742,0 +50117,0,15345,133142,0 +50118,9,27658,133769,0 +50119,4,8002,132495,0 +50120,7,19190,132602,0 +50121,8,28223,132938,0 +50122,8,9529,132939,0 +50123,3,22583,132744,0 +50124,11,27412,133044,0 +50125,9,26681,133759,0 +50126,7,28032,132601,0 +50127,4,22432,132501,0 +50128,8,22435,132949,0 +50129,0,28035,133689,0 +50130,5,22433,134586,0 +50131,1,28037,135039,0 +50132,3,28028,132717,0 +50133,4,12136,132501,0 +50134,6,6198,132589,0 +50135,7,27608,132614,0 +50136,8,11835,132960,0 +50137,0,28850,132767,0 +50138,5,11190,134586,0 +50139,11,28199,135641,0 +50140,11,28228,135225,0 +50141,6,13137,132537,0 +50142,7,23366,132601,0 +50143,12,26385,135612,0 +50144,8,28288,132943,0 +50145,11,28096,133053,0 +50146,12,28216,135469,0 +50147,9,28303,133757,0 +50148,5,28290,134583,0 +50149,4,26937,132511,0 +50150,6,26939,132541,0 +50151,7,26938,132608,0 +50152,9,26980,133766,0 +50153,3,22844,132638,0 +50154,4,25088,132502,0 +50155,6,26956,132536,0 +50156,8,26954,132953,0 +50157,3,25175,132629,0 +50158,3,27004,132629,0 +50159,6,27001,132537,0 +50160,8,27000,132949,0 +50161,5,25406,134586,0 +50162,7,27005,132609,0 +50163,1,27003,135054,0 +50164,4,13699,132518,0 +50165,6,25332,132539,0 +50166,7,26475,132612,0 +50167,3,26990,132626,0 +50168,9,26991,133765,0 +50169,8,25333,132951,0 +50170,5,24311,134583,0 +50171,13,26855,134956,0 +50172,1,25330,135058,0 +50173,6,22817,132542,0 +50174,7,22818,132608,0 +50175,9,26977,133766,0 +50176,8,25493,132953,0 +50177,4,22816,132504,0 +50178,5,24407,134583,0 +50179,1,4483,135037,0 +50180,3,26972,132624,0 +50181,4,24334,132505,0 +50182,6,26964,132579,0 +50183,3,26961,132639,0 +50184,9,26962,133772,0 +50185,8,26963,132956,0 +50186,5,26968,134583,0 +50187,1,26965,135050,0 +50188,3,10987,132719,0 +50189,6,27540,132589,0 +50190,9,27082,133763,0 +50191,8,27075,132956,0 +50192,4,11347,132516,0 +50193,5,25387,134706,0 +50194,7,18294,132615,0 +50195,6,23365,132541,0 +50196,8,27041,132949,0 +50197,4,23364,132515,0 +50198,0,27042,133077,0 +50199,5,24323,134583,0 +50200,6,27022,132539,0 +50201,7,27017,132605,0 +50202,3,27018,132647,0 +50203,9,26951,133769,0 +50204,8,27019,132945,0 +50205,4,24493,132510,0 +50206,5,27020,134584,0 +50207,13,27024,134953,0 +50208,1,7868,135049,0 +50209,4,7807,132513,0 +50210,6,11380,132592,0 +50211,7,7833,132606,0 +50212,3,18318,132634,0 +50213,0,27073,132768,0 +50214,9,27072,133757,0 +50215,8,27069,132945,0 +50216,5,11831,134583,0 +50217,1,27071,135046,0 +50218,13,20973,134953,0 +50219,6,6803,132535,0 +50220,7,27058,132615,0 +50221,3,8987,132739,0 +50222,9,27062,133759,0 +50223,8,8989,132958,0 +50224,4,8988,132515,0 +50225,5,27061,134589,0 +50226,4,16315,132516,0 +50227,6,27115,132584,0 +50228,7,16316,132609,0 +50229,3,27112,132751,0 +50230,8,27113,132945,0 +50231,5,27114,134589,0 +50232,1,27116,135041,0 +50233,6,11080,132535,0 +50234,7,12150,132612,0 +50235,3,11356,132626,0 +50236,13,27896,134957,0 +50237,0,27898,132767,0 +50238,9,27108,133754,0 +50239,8,27892,132938,0 +50240,5,11079,134588,0 +50241,1,27893,135052,0 +50242,4,11078,132519,0 +50243,6,17928,132585,0 +50244,7,27122,132614,0 +50245,3,27118,132632,0 +50246,0,27124,133090,0 +50247,4,13303,132499,0 +50248,5,13331,134584,0 +50249,1,27123,135040,0 +50250,3,27322,132627,0 +50251,7,27324,132615,0 +50252,8,27326,132963,0 +50253,6,27328,132590,0 +50254,3,18027,132741,0 +50255,0,15431,132767,0 +50256,8,27131,132944,0 +50257,6,13700,132542,0 +50258,5,18043,134586,0 +50259,7,11828,132606,0 +50260,6,11076,132587,0 +50261,3,11075,132632,0 +50262,9,27220,133754,0 +50263,8,27825,132963,0 +50264,4,27206,132524,0 +50265,5,17767,134584,0 +50266,1,27218,135061,0 +50267,7,17679,132608,0 +50268,3,17677,132743,0 +50269,4,16390,132492,0 +50270,6,17831,132536,0 +50271,8,16409,132956,0 +50272,0,15512,133076,0 +50273,5,27174,134583,0 +50274,1,27177,135055,0 +50275,7,27286,132609,0 +50276,3,10690,132722,0 +50277,8,10694,132938,0 +50278,4,10691,132496,0 +50279,5,10692,134586,0 +50280,6,12582,132589,0 +50281,7,27296,132614,0 +50282,3,12816,132736,0 +50283,8,12583,132963,0 +50284,4,22310,132507,0 +50285,5,12817,134581,0 +50286,1,5678,135044,0 +50287,13,18693,134949,0 +50288,7,22341,132609,0 +50289,3,22340,132629,0 +50290,8,16416,132953,0 +50291,4,22314,132500,0 +50292,6,22315,132536,0 +50293,5,16414,134586,0 +50294,1,27320,135054,0 +50295,6,27312,132584,0 +50296,7,27307,132602,0 +50297,3,27308,132751,0 +50298,8,27309,132938,0 +50299,4,27310,132500,0 +50300,5,27311,134586,0 +50301,12,26412,135469,0 +50302,1,28020,135055,0 +50303,6,10693,132589,0 +50304,1,26419,135045,0 +50305,9,26431,133763,0 +50306,11,26432,135349,0 +50307,11,26433,135651,0 +50308,4,13729,132497,0 +50309,8,26436,132959,0 +50310,11,26464,135650,0 +50311,3,26467,132638,0 +50312,9,26468,133768,0 +50313,1,26472,135049,0 +50314,5,7814,134706,0 +50315,8,26473,132964,0 +50316,11,26477,135327,0 +50317,11,26479,135326,0 +50318,11,26494,135344,0 +50319,1,26501,135033,0 +50320,4,26502,132511,0 +50321,1,26504,135055,0 +50322,8,26512,132963,0 +50323,3,15607,132741,0 +50324,3,26515,132626,0 +50325,11,26535,132399,0 +50326,11,26536,135144,0 +50327,15,26539,135148,0 +50328,8,26540,132950,0 +50329,4,26541,132512,0 +50330,6,18140,132541,0 +50331,11,26545,135576,0 +50332,7,3655,132606,0 +50333,13,26548,134956,0 +50334,13,27036,134961,0 +50335,13,28449,134955,0 +50336,11,26597,132941,0 +50337,15,28471,135467,0 +50338,15,28472,134336,0 +50339,15,28462,135157,0 +50340,15,27563,135468,0 +50341,15,27863,135139,0 +50342,15,28475,133749,0 +50343,15,27874,134333,0 +50344,15,28480,134334,0 +50345,15,27612,135466,0 +50346,15,28476,135473,0 +50347,15,27650,135467,0 +50348,15,28487,134121,0 +50349,15,28492,135145,0 +50350,15,28491,135157,0 +50351,15,28493,134334,0 +50352,15,28486,135464,0 +50353,15,28514,135467,0 +50354,15,28555,135474,0 +50355,15,28505,134337,0 +50356,15,28553,134122,0 +50357,15,28510,135150,0 +50358,15,28516,135466,0 +50359,15,27929,135144,0 +50360,13,27055,134951,0 +50361,0,12139,133149,0 +50362,12,26737,135617,0 +50363,0,11665,133149,0 +50364,0,27242,133121,0 +50365,3,26658,132737,0 +50366,5,26659,134584,0 +50367,8,26753,132963,0 +50368,6,26752,132590,0 +50369,1,26662,135051,0 +50370,7,26664,133344,0 +50371,9,26665,133773,0 +50372,0,26668,133075,0 +50373,3,26667,132649,0 +50374,5,26669,134589,0 +50375,1,26670,135054,0 +50376,1,23577,135040,0 +50377,1,10689,135059,0 +50378,8,19678,132957,0 +50379,9,27087,133773,0 +50380,9,27088,133759,0 +50381,11,31997,135291,0 +50382,4,27163,132511,0 +50383,6,27164,132539,0 +50384,7,27165,132608,0 +50385,8,27167,132951,0 +50386,6,31068,132539,0 +50387,6,31070,132541,0 +50388,7,27204,132601,0 +50389,8,30334,132949,0 +50390,8,27207,132960,0 +50391,4,27209,132512,0 +50392,4,27210,132517,0 +50393,6,31243,132541,0 +50394,7,27217,132616,0 +50395,8,31245,132944,0 +50396,6,30319,132584,0 +50397,8,30321,132963,0 +50398,4,27225,132516,0 +50399,3,27229,132670,0 +50400,5,27230,134588,0 +50401,1,27231,135033,0 +50402,0,27232,133126,0 +50403,3,30327,132722,0 +50404,0,30330,133144,0 +50405,5,30329,134591,0 +50406,1,30328,135056,0 +50407,3,27233,132725,0 +50408,5,27235,134586,0 +50409,1,27236,135054,0 +50410,0,27234,133143,0 +50411,3,31241,132628,0 +50412,5,31242,134590,0 +50413,1,31247,135049,0 +50414,0,31246,133123,0 +50415,0,28934,133073,0 +50416,3,27243,132751,0 +50417,3,30315,132738,0 +50418,0,30316,133073,0 +50419,5,30317,134586,0 +50420,1,30318,135059,0 +50421,6,32987,132560,0 +50422,7,30338,132608,0 +50423,4,30340,132511,0 +50424,8,32988,132948,0 +50425,0,32978,133126,0 +50426,3,32981,132653,0 +50427,1,33000,135054,0 +50428,7,30331,132601,0 +50429,6,30333,132542,0 +50430,4,30332,132512,0 +50431,7,30324,132616,0 +50432,6,32095,132588,0 +50433,8,32098,132944,0 +50434,4,30325,132517,0 +50435,0,32093,133073,0 +50436,3,32094,132625,0 +50437,5,32096,134669,0 +50438,1,32092,135041,0 +50439,7,30320,132617,0 +50440,4,30322,132516,0 +50441,0,38343,133073,0 +50442,6,31097,132539,0 +50443,7,27255,132606,0 +50444,8,31098,132940,0 +50445,4,27257,132502,0 +50446,0,31099,133074,0 +50447,3,31102,132669,0 +50448,1,31100,135033,0 +50449,7,27262,132602,0 +50450,6,27263,132542,0 +50451,4,27264,132495,0 +50452,8,27265,132959,0 +50453,7,30353,132606,0 +50454,6,30356,132539,0 +50455,8,30355,132949,0 +50456,1,28935,135038,0 +50457,5,27267,134586,0 +50458,0,28106,133077,0 +50459,3,27269,132722,0 +50460,3,30357,132720,0 +50461,0,30358,133077,0 +50462,1,30360,135045,0 +50463,5,30359,134588,0 +50464,6,27270,132590,0 +50465,8,27271,132960,0 +50466,3,27274,132751,0 +50467,0,30071,133077,0 +50468,5,27275,134586,0 +50469,1,31049,135042,0 +50470,7,27277,132615,0 +50471,6,29652,132541,0 +50472,8,27279,132945,0 +50473,0,30072,133077,0 +50474,3,27282,132638,0 +50475,5,27283,134589,0 +50476,1,28094,135035,0 +50477,3,30365,132626,0 +50478,0,31184,133071,0 +50479,5,30367,134583,0 +50480,1,30368,135032,0 +50481,4,27280,132503,0 +50482,8,30363,132951,0 +50483,6,30361,132539,0 +50484,0,32999,133076,0 +50485,3,33085,132716,0 +50486,1,33089,135050,0 +50487,4,30346,132502,0 +50488,7,30345,132606,0 +50489,6,32996,132539,0 +50490,8,32997,132953,0 +50491,3,30373,132751,0 +50492,0,30374,133077,0 +50493,5,30375,134584,0 +50494,1,30928,135042,0 +50495,6,30370,132585,0 +50496,7,30369,132618,0 +50497,4,30372,132498,0 +50498,8,30371,132944,0 +50499,3,32110,132638,0 +50500,0,32134,133077,0 +50501,1,32129,135038,0 +50502,5,32108,134586,0 +50503,6,32106,132542,0 +50504,8,32107,132959,0 +50505,4,30354,132495,0 +50506,6,32114,132542,0 +50507,8,32113,132959,0 +50508,0,32132,133077,0 +50509,1,32131,135038,0 +50510,3,32115,132638,0 +50511,5,32112,134586,0 +50512,3,32122,132633,0 +50513,0,32135,133077,0 +50514,5,32120,134668,0 +50515,1,32125,135060,0 +50516,6,32124,132587,0 +50517,7,30362,132615,0 +50518,8,32119,132945,0 +50519,4,30364,132503,0 +50520,6,32126,132587,0 +50521,8,32100,132945,0 +50522,3,32103,132633,0 +50523,0,32133,133077,0 +50524,5,32101,134667,0 +50525,1,32128,135060,0 +50526,12,27451,135463,0 +50527,3,27472,132677,0 +50528,3,27477,132645,0 +50529,3,27478,132660,0 +50530,13,27517,134962,0 +50531,9,27521,133767,0 +50532,3,31416,132633,0 +50533,0,45174,133072,0 +50534,5,31415,134583,0 +50535,1,30925,135060,0 +50536,6,31412,132592,0 +50537,7,31411,132601,0 +50538,8,31414,132945,0 +50539,4,31413,132505,0 +50540,3,31402,132625,0 +50541,6,31408,132588,0 +50542,8,31406,132944,0 +50543,0,31410,133126,0 +50544,5,31403,134583,0 +50545,1,31409,135041,0 +50546,4,31404,132517,0 +50547,7,31405,132616,0 +50548,6,29594,132536,0 +50549,7,29595,133365,0 +50550,8,29593,132951,0 +50551,4,29596,132497,0 +50552,0,31087,132768,0 +50553,3,29591,132666,0 +50554,1,30211,135054,0 +50555,3,30422,132652,0 +50556,6,30430,132539,0 +50557,8,30427,132948,0 +50558,0,31104,132767,0 +50559,5,30424,134588,0 +50560,1,31103,135033,0 +50561,4,30425,132499,0 +50562,7,30426,132520,0 +50563,0,31263,133131,0 +50564,5,29797,134588,0 +50565,3,29792,132690,0 +50566,1,29798,133732,0 +50567,4,29793,132501,0 +50568,7,29795,132612,0 +50569,6,29799,132539,0 +50570,8,29800,132966,0 +50571,3,29974,132741,0 +50572,0,16056,133143,0 +50573,1,24727,135038,0 +50574,5,9807,134582,0 +50575,6,28162,132542,0 +50576,8,19909,132958,0 +50577,7,29977,132608,0 +50578,6,29981,132542,0 +50579,4,29976,132504,0 +50580,8,29979,132951,0 +50581,1,30412,135032,0 +50582,5,29975,134588,0 +50583,0,31228,133129,0 +50584,7,29968,132613,0 +50585,4,29966,132500,0 +50586,8,29970,132953,0 +50587,6,29967,132584,0 +50588,3,29969,132738,0 +50589,0,31207,133076,0 +50590,5,29972,134584,0 +50591,1,29971,135041,0 +50592,3,29958,132738,0 +50593,0,42241,133070,0 +50594,5,29963,134584,0 +50595,1,29964,135061,0 +50596,6,29960,132584,0 +50597,7,29961,132617,0 +50598,4,29959,132523,0 +50599,8,29962,132960,0 +50600,1,27911,135038,0 +50601,12,28408,135145,0 +50602,1,28454,135047,0 +50603,7,23729,132606,0 +50604,0,31517,133155,0 +50605,5,30582,134588,0 +50606,1,30586,135033,0 +50607,3,30581,132644,0 +50608,7,30584,132518,0 +50609,6,30587,132541,0 +50610,8,30585,132948,0 +50611,4,30583,132519,0 +50612,6,31975,132562,0 +50613,7,31970,132606,0 +50614,8,31971,132953,0 +50615,4,31969,132502,0 +50616,1,31974,135054,0 +50617,0,31987,133076,0 +50618,3,31973,132650,0 +50619,5,31972,134608,0 +50620,6,31718,132541,0 +50621,8,30620,132948,0 +50622,0,31371,133136,0 +50623,3,31490,132644,0 +50624,1,30623,135033,0 +50625,4,30621,132511,0 +50626,4,34046,132511,0 +50627,7,30617,132608,0 +50628,3,31105,132648,0 +50629,0,31514,133143,0 +50630,5,31340,134586,0 +50631,1,31343,135056,0 +50632,6,31109,132542,0 +50633,7,31106,132601,0 +50634,8,31503,132955,0 +50635,4,31339,132512,0 +50636,4,31722,132495,0 +50637,6,31724,132542,0 +50638,7,31725,132602,0 +50639,8,31726,132941,0 +50640,1,32813,135054,0 +50641,3,31797,132647,0 +50642,0,32790,133077,0 +50643,5,31729,134586,0 +50644,1,32016,135038,0 +50645,6,31830,132587,0 +50646,4,31829,132503,0 +50647,8,31834,132945,0 +50648,7,31831,132615,0 +50649,3,31832,132633,0 +50650,0,31835,133077,0 +50651,5,31836,134583,0 +50652,1,31833,135060,0 +50653,3,32022,132625,0 +50654,0,32028,133073,0 +50655,5,32023,134655,0 +50656,1,32030,135041,0 +50657,6,32040,132556,0 +50658,7,32018,132616,0 +50659,4,32019,132517,0 +50660,8,32024,132944,0 +50661,3,31505,132738,0 +50662,0,31506,133073,0 +50663,5,31352,134584,0 +50664,1,31510,135051,0 +50665,7,31509,132617,0 +50666,4,31353,132516,0 +50667,6,31354,132590,0 +50668,8,31507,132963,0 +50669,7,31020,132618,0 +50670,6,31025,132585,0 +50671,8,31022,132944,0 +50672,4,31019,132498,0 +50673,3,31021,132751,0 +50674,0,41847,133077,0 +50675,5,31023,134584,0 +50676,1,31024,135046,0 +50677,8,28522,132959,0 +50678,11,28586,135343,0 +50679,15,28588,135474,0 +50680,11,28592,135157,0 +50681,11,28593,135343,0 +50682,11,28608,135324,0 +50683,11,28610,135469,0 +50684,3,30536,132638,0 +50685,6,30542,132542,0 +50686,8,34016,132959,0 +50687,0,33655,133077,0 +50688,5,30540,134586,0 +50689,1,30546,135038,0 +50690,4,30541,132495,0 +50691,7,30548,132602,0 +50692,3,33650,132648,0 +50693,6,31111,132542,0 +50694,8,32815,132955,0 +50695,0,33743,133143,0 +50696,5,31115,134586,0 +50697,4,31110,132512,0 +50698,7,31127,132601,0 +50699,6,34044,132541,0 +50700,8,34041,132948,0 +50701,0,34057,133172,0 +50702,5,34039,134588,0 +50703,3,34038,132644,0 +50704,1,34058,135063,0 +50705,7,34045,132608,0 +50706,6,34055,132541,0 +50707,8,34051,132948,0 +50708,0,34233,133126,0 +50709,5,34049,134588,0 +50710,3,34047,132644,0 +50711,1,34048,135033,0 +50712,4,34053,132511,0 +50713,7,34052,132608,0 +50714,6,34015,132539,0 +50715,8,34013,132953,0 +50716,0,34369,133076,0 +50717,3,34014,132716,0 +50718,1,34022,135050,0 +50719,4,34011,132502,0 +50720,7,34012,132606,0 +50721,7,33666,132616,0 +50722,4,33665,132517,0 +50723,1,34091,135041,0 +50724,5,33672,134583,0 +50725,0,34367,133073,0 +50726,8,33668,132944,0 +50727,6,34269,132588,0 +50728,3,33667,132625,0 +50729,7,34079,132615,0 +50730,4,34078,132503,0 +50731,1,34067,135064,0 +50732,5,34084,134583,0 +50733,0,34217,133171,0 +50734,8,34082,132945,0 +50735,6,34083,132587,0 +50736,3,34081,132633,0 +50737,7,33634,132617,0 +50738,4,33633,132516,0 +50739,1,33680,135068,0 +50740,5,33637,134584,0 +50741,0,45888,133176,0 +50742,8,33636,132963,0 +50743,6,33639,132590,0 +50744,3,33635,132738,0 +50745,7,33982,132618,0 +50746,4,33990,132498,0 +50747,1,34253,135065,0 +50748,5,33986,134584,0 +50749,0,34215,133173,0 +50750,8,33984,132944,0 +50751,6,33989,132585,0 +50752,3,33983,132751,0 +50753,8,28754,132960,0 +50754,1,28756,135054,0 +50755,6,5489,132541,0 +50756,0,28856,133076,0 +50757,6,28760,132590,0 +50758,4,13135,132502,0 +50759,9,28775,133754,0 +50760,12,28827,135492,0 +50761,12,28828,135467,0 +50762,13,28829,134952,0 +50763,11,28834,135575,0 +50764,11,28835,133731,0 +50765,11,28836,135147,0 +50766,8,28838,132949,0 +50767,5,28843,134584,0 +50768,11,28869,133728,0 +50769,11,28866,133476,0 +50770,11,28867,133476,0 +50771,11,28873,132417,0 +50772,3,28990,132645,0 +50773,11,16490,135351,0 +50774,9,28891,133772,0 +50775,13,34110,134956,0 +50776,15,29717,133739,0 +50777,11,29161,132400,0 +50778,12,30927,135496,0 +50779,11,29706,135642,0 +50780,11,34111,135654,0 +50781,11,32162,133041,0 +50782,11,29176,135131,0 +50783,11,32197,135316,0 +50784,11,32199,135302,0 +50785,12,29195,135150,0 +50786,11,29677,135349,0 +50787,11,32200,132400,0 +50788,11,34109,133042,0 +50789,13,29702,134954,0 +50790,9,29827,133760,0 +50791,11,29171,133042,0 +50792,11,29703,135225,0 +50793,11,29097,135271,0 +50794,11,29698,133066,0 +50795,13,18480,134955,0 +50796,13,18509,134955,0 +50797,13,27782,134949,0 +50798,13,18468,134956,0 +50799,11,29699,133066,0 +50800,11,29191,135131,0 +50801,11,29276,135638,0 +50802,11,29397,135131,0 +50803,11,29495,132392,0 +50804,9,29630,133770,0 +50805,6,30337,132536,0 +50806,8,31060,132953,0 +50807,0,30341,133126,0 +50808,5,29457,134586,0 +50809,3,30335,132666,0 +50810,1,30336,135054,0 +50811,3,27260,132716,0 +50812,1,27261,135032,0 +50813,6,27250,132539,0 +50814,8,27256,132953,0 +50815,0,32979,133126,0 +50816,1,33002,135033,0 +50817,3,32986,132650,0 +50818,6,32994,132541,0 +50819,8,32995,132948,0 +50820,6,33076,132539,0 +50821,8,33077,132953,0 +50822,1,33088,135050,0 +50823,0,33071,133076,0 +50824,3,33079,132716,0 +50825,6,31061,132541,0 +50826,8,31062,132964,0 +50827,0,31065,133126,0 +50828,3,31058,132652,0 +50829,1,31067,135033,0 +50830,0,32980,133126,0 +50831,1,33005,135033,0 +50832,3,32984,132643,0 +50833,6,32992,132541,0 +50834,8,32990,132948,0 +50835,0,31030,133119,0 +50836,3,30351,132716,0 +50837,1,30350,135032,0 +50838,6,31027,132539,0 +50839,8,30347,132951,0 +50840,6,33080,132539,0 +50841,8,33081,132961,0 +50842,1,33083,135050,0 +50843,0,33082,133076,0 +50844,3,33084,132716,0 +50845,6,29022,132582,0 +50846,1,12713,135040,0 +50847,11,29759,132397,0 +50848,11,29769,135346,0 +50849,11,29872,135650,0 +50850,0,17364,132767,0 +50851,11,29897,135312,0 +50852,8,3515,132955,0 +50853,2,18123,135024,0 +50854,11,29907,132395,0 +50855,1,16048,135036,0 +50856,15,29914,134333,0 +50857,9,29916,133769,0 +50858,3,6034,132723,0 +50859,12,29924,135466,0 +50860,7,22409,132605,0 +50861,6,29927,132539,0 +50862,1,29928,135037,0 +50863,4,11117,132514,0 +50864,12,29932,135491,0 +50865,5,4475,134706,0 +50866,11,29939,133047,0 +50867,0,29942,133119,0 +50868,8,30957,132964,0 +50869,3,29950,132690,0 +50870,0,15313,133137,0 +50871,3,24402,132629,0 +50872,1,29955,135054,0 +50873,11,29957,135279,0 +50874,11,30294,132395,0 +50875,14,30433,132382,0 +50876,6,2373,132542,0 +50877,11,30455,133041,0 +50878,8,30474,132943,0 +50879,11,30516,135145,0 +50880,11,30517,135225,0 +50881,13,30559,134950,0 +50882,11,30594,134297,0 +50883,11,30595,134297,0 +50884,9,30577,133759,0 +50885,2,12028,135016,0 +50886,12,31210,135614,0 +50887,11,30638,135131,0 +50888,6,9788,132540,0 +50889,12,30660,135468,0 +50890,3,30663,132742,0 +50891,5,13136,134584,0 +50892,0,30670,133153,0 +50893,3,30674,132746,0 +50894,6,4091,132542,0 +50895,7,30693,132608,0 +50896,9,30703,133773,0 +50897,11,30994,135271,0 +50898,7,30704,132617,0 +50899,8,14884,132943,0 +50900,8,30720,132943,0 +50901,5,22985,134584,0 +50902,1,24505,135048,0 +50903,4,5468,132515,0 +50904,4,12094,132523,0 +50905,4,5788,132520,0 +50906,8,25045,132951,0 +50907,11,30778,135329,0 +50908,6,2342,132540,0 +50909,9,30783,133758,0 +50910,0,27817,133121,0 +50911,7,27273,132618,0 +50912,7,31248,132605,0 +50913,4,5478,132505,0 +50914,11,30813,132947,0 +50915,6,30817,132541,0 +50916,3,30823,132645,0 +50917,1,30829,135057,0 +50918,9,30832,133754,0 +50919,7,29156,132612,0 +50920,3,14800,132636,0 +50921,6,9080,132542,0 +50922,7,11603,132604,0 +50923,9,29720,133753,0 +50924,9,30851,133772,0 +50925,11,30853,135291,0 +50926,5,30856,134583,0 +50927,8,30862,132944,0 +50928,4,25338,132507,0 +50929,3,30868,132670,0 +50930,7,23832,132613,0 +50931,11,30881,132401,0 +50932,11,30886,135351,0 +50933,8,29749,132956,0 +50934,0,2617,133120,0 +50935,4,17931,132520,0 +50936,11,30936,135748,0 +50937,11,30934,135277,0 +50938,11,30935,135277,0 +50939,11,31347,135167,0 +50940,11,31346,135149,0 +50941,11,31016,135145,0 +50942,11,31119,133483,0 +50943,12,30926,135496,0 +50944,6,20994,132589,0 +50945,8,9019,132950,0 +50946,6,31139,132579,0 +50947,0,21914,133143,0 +50948,1,31142,135058,0 +50949,4,21199,132517,0 +50950,7,31151,132609,0 +50951,12,31338,135489,0 +50952,11,31163,135158,0 +50953,6,9089,132542,0 +50954,8,17934,132947,0 +50955,11,31174,135130,0 +50956,7,4397,132610,0 +50957,0,31177,133153,0 +50958,6,8995,132537,0 +50959,5,31191,134584,0 +50960,4,5716,132502,0 +50961,7,29847,132616,0 +50962,9,15163,133770,0 +50963,12,31237,135612,0 +50964,13,31216,134963,0 +50965,11,31219,132409,0 +50966,12,31677,135474,0 +50967,12,31224,135616,0 +50968,12,31225,135616,0 +50969,12,31226,135616,0 +50970,11,31258,135225,0 +50971,11,31250,135167,0 +50972,11,31265,132996,0 +50973,11,33626,135647,0 +50974,6,22592,132590,0 +50975,8,12578,132937,0 +50976,1,16526,135049,0 +50977,7,6210,132601,0 +50978,11,33615,135358,0 +50979,11,34112,135329,0 +50980,6,31292,132589,0 +50981,13,31733,134951,0 +50982,13,31746,134965,0 +50983,11,31956,132418,0 +50984,11,31957,132393,0 +50985,1,31468,135035,0 +50986,11,31302,132401,0 +50987,11,31958,132415,0 +50988,12,31759,135500,0 +50989,12,31748,135496,0 +50990,12,31757,135533,0 +50991,12,31749,135539,0 +50992,11,31379,135662,0 +50993,11,31381,135649,0 +50994,11,34114,135150,0 +50995,11,32033,135643,0 +50996,11,31754,134296,0 +50997,11,32032,132302,0 +50998,11,31752,134297,0 +50999,12,31758,135617,0 +51000,12,31747,135615,0 +51001,5,31320,134584,0 +51002,11,31955,133488,0 +51003,11,31751,133057,0 +51004,11,31954,133040,0 +51005,11,31750,133047,0 +51006,11,31761,135131,0 +51007,0,5239,133120,0 +51008,11,31766,135124,0 +51009,11,31764,135151,0 +51010,11,31765,133729,0 +51011,11,31996,135349,0 +51012,11,31998,135358,0 +51013,11,31337,135643,0 +51014,11,29170,135302,0 +51015,7,11617,132614,0 +51016,11,31400,135276,0 +51017,11,31419,135277,0 +51018,11,31424,135325,0 +51019,11,30606,135349,0 +51020,3,15966,132645,0 +51021,10,31527,135026,0 +51022,10,31528,135026,0 +51023,0,15919,133153,0 +51024,11,31526,135346,0 +51025,3,11213,132722,0 +51026,3,8200,132723,0 +51027,4,24404,132505,0 +51028,6,31536,132553,0 +51029,8,31541,132960,0 +51030,1,36269,135050,0 +51031,6,31552,132565,0 +51032,6,31557,132560,0 +51033,8,31563,132963,0 +51034,1,31566,135057,0 +51035,1,31828,135044,0 +51036,14,23211,132382,0 +51037,9,31592,133768,0 +51038,4,21345,132524,0 +51039,11,31605,135642,0 +51040,11,31606,135651,0 +51041,11,31608,135167,0 +51042,11,31610,135157,0 +51043,11,31611,132416,0 +51044,0,23410,133163,0 +51045,11,31613,135127,0 +51046,11,31617,135357,0 +51047,7,25487,132617,0 +51048,12,31622,135496,0 +51049,12,31628,135474,0 +51050,9,31632,133769,0 +51051,5,14875,134584,0 +51052,3,11233,132718,0 +51053,3,31641,132635,0 +51054,12,31645,135463,0 +51055,4,4907,132505,0 +51056,4,15571,132518,0 +51057,8,29848,132960,0 +51058,6,31472,132548,0 +51059,3,31663,132659,0 +51060,0,31671,133124,0 +51061,4,31672,132521,0 +51062,3,16668,132659,0 +51063,8,31680,132956,0 +51064,10,31676,135026,0 +51065,4,31681,132513,0 +51066,4,31682,132502,0 +51067,8,31683,132956,0 +51068,5,31685,134586,0 +51069,11,31720,135131,0 +51070,11,31692,135349,0 +51071,11,31735,132403,0 +51072,11,31822,133056,0 +51073,11,31777,133974,0 +51074,15,31809,133749,0 +51075,14,31814,135855,0 +51076,13,31815,135835,0 +51077,11,31817,133050,0 +51078,11,31820,135330,0 +51079,11,31999,135360,0 +51080,11,31861,133481,0 +51081,11,31864,135665,0 +51082,11,31865,135664,0 +51083,13,31851,134966,0 +51084,13,31852,134963,0 +51085,12,32080,135497,0 +51086,11,31866,135359,0 +51087,11,31867,135361,0 +51088,11,31857,132401,0 +51089,11,31858,132415,0 +51090,11,31964,135150,0 +51091,11,31960,135143,0 +51092,11,31878,133480,0 +51093,11,31877,133480,0 +51094,11,31863,133481,0 +51095,12,32763,135538,0 +51096,11,31869,132406,0 +51097,11,31870,132403,0 +51098,11,32000,135360,0 +51099,11,31880,135663,0 +51100,15,31953,134335,0 +51101,12,32774,135473,0 +51102,0,32493,133078,0 +51103,0,15546,133154,0 +51104,4,30054,132507,0 +51105,6,31914,132585,0 +51106,1,32082,135039,0 +51107,8,23513,132953,0 +51108,6,21467,132558,0 +51109,4,31924,132500,0 +51110,4,9072,132510,0 +51111,1,22864,135054,0 +51112,4,19419,132505,0 +51113,3,31930,132691,0 +51114,5,5965,134692,0 +51115,3,29752,132723,0 +51116,8,18858,132961,0 +51117,5,31365,134669,0 +51118,12,31977,135468,0 +51119,9,31978,133763,0 +51120,6,31985,132573,0 +51121,10,32031,135026,0 +51122,10,32026,135026,0 +51123,9,32066,133770,0 +51124,9,32069,133770,0 +51125,9,32067,133765,0 +51126,11,32076,135341,0 +51127,7,32088,132605,0 +51128,7,29218,132602,0 +51129,7,8408,132612,0 +51130,11,32140,133040,0 +51131,3,11481,132648,0 +51132,6,32156,132559,0 +51133,8,32159,132965,0 +51134,1,23670,135054,0 +51135,3,30518,132636,0 +51136,3,30786,132743,0 +51137,5,25550,134697,0 +51138,1,30785,135032,0 +51139,5,32192,134592,0 +51140,11,32216,132392,0 +51141,3,32415,132742,0 +51142,7,32417,132613,0 +51143,3,22980,132742,0 +51144,4,22587,132521,0 +51145,7,22981,132613,0 +51146,1,32270,135053,0 +51147,4,8869,132497,0 +51148,7,8413,132606,0 +51149,11,34718,132428,0 +51150,12,32577,135619,0 +51151,11,32603,135365,0 +51152,5,32296,134697,0 +51153,11,32575,135666,0 +51154,12,32595,135471,0 +51155,13,32561,134958,0 +51156,11,32314,135316,0 +51157,11,32722,135365,0 +51158,11,32581,135364,0 +51159,9,32320,133770,0 +51160,11,32604,135582,0 +51161,5,4398,134666,0 +51162,11,32613,135170,0 +51163,0,32734,133565,0 +51164,9,32339,133773,0 +51165,11,32588,133492,0 +51166,15,32344,133640,0 +51167,6,30843,132556,0 +51168,8,17937,132948,0 +51169,5,8250,134608,0 +51170,11,32776,135592,0 +51171,5,10181,134608,0 +51172,11,34507,132427,0 +51173,11,32356,135345,0 +51174,11,32576,135667,0 +51175,9,32371,133762,0 +51176,11,32600,133483,0 +51177,11,32612,135172,0 +51178,11,32615,135592,0 +51179,6,17936,132587,0 +51180,13,32560,134968,0 +51181,11,32782,133494,0 +51182,15,32784,133728,0 +51183,11,32397,134298,0 +51184,12,32582,135468,0 +51185,1,4941,135040,0 +51186,8,32410,132950,0 +51187,11,32450,132932,0 +51188,11,32430,135127,0 +51189,11,32780,133479,0 +51190,11,36762,132418,0 +51191,11,32446,135126,0 +51192,11,32438,135347,0 +51193,11,32439,135347,0 +51194,12,32584,135467,0 +51195,11,32443,135271,0 +51196,6,32449,132543,0 +51197,11,32490,135280,0 +51198,12,32507,135463,0 +51199,0,41848,133132,0 +51200,4,32509,132524,0 +51201,11,32514,133040,0 +51202,15,32515,133743,0 +51203,12,32571,135462,0 +51204,0,17725,133146,0 +51205,11,32538,134295,0 +51206,11,32539,134295,0 +51207,3,32564,132653,0 +51208,11,32592,135642,0 +51209,12,32570,135461,0 +51210,6,32599,132551,0 +51211,6,32641,132562,0 +51212,1,32741,135032,0 +51213,1,11272,135050,0 +51214,1,32739,135032,0 +51215,1,32740,135055,0 +51216,11,32677,135466,0 +51217,11,32648,135311,0 +51218,12,32685,135471,0 +51219,11,32717,135125,0 +51221,10,32524,135026,0 +51222,10,32525,135026,0 +51223,8,32700,132964,0 +51224,0,32735,133159,0 +51225,4,32718,132502,0 +51226,4,25530,132501,0 +51227,9,32726,133765,0 +51228,9,32727,133766,0 +51229,6,2990,132562,0 +51230,11,32587,135171,0 +51231,8,22983,132944,0 +51232,6,32758,132584,0 +51233,8,32762,132946,0 +51234,11,32768,135724,0 +51235,8,32890,132964,0 +51236,0,32823,135724,0 +51237,0,32956,134164,0 +51238,0,32957,134165,0 +51240,1,33129,135036,0 +51241,3,32841,132658,0 +51242,0,33073,133129,0 +51243,11,32837,135321,0 +51244,3,32872,132742,0 +51245,11,33033,135349,0 +51246,1,32052,135047,0 +51247,11,32909,135157,0 +51248,3,32916,135021,0 +51249,3,32948,132651,0 +51250,11,33087,135358,0 +51251,4,30555,132503,0 +51252,8,32944,132961,0 +51253,3,32943,132741,0 +51254,0,32958,134159,0 +51255,0,32959,134160,0 +51256,0,32961,134162,0 +51257,0,32963,132089,0 +51258,0,32964,134167,0 +51259,0,32965,134173,0 +51260,0,32966,134178,0 +51261,0,32967,134177,0 +51262,0,32968,134171,0 +51263,0,32969,132366,0 +51264,0,32971,134175,0 +51265,0,32970,134174,0 +51266,0,32972,134179,0 +51267,0,32973,134180,0 +51268,11,33097,135354,0 +51269,11,33095,135658,0 +51270,9,33096,133769,0 +51271,11,33017,133497,0 +51272,11,33015,135173,0 +51273,12,33020,135540,0 +51274,7,33027,132614,0 +51275,6,24468,132585,0 +51276,6,21468,132554,0 +51277,0,33161,133119,0 +51278,0,15289,133145,0 +51279,6,6043,132551,0 +51280,8,13384,132963,0 +51281,6,11841,132562,0 +51282,1,33051,135060,0 +51283,6,2984,132542,0 +51284,3,11635,132680,0 +51285,1,25335,135042,0 +51286,5,29394,134667,0 +51287,5,13382,134681,0 +51288,0,15343,133117,0 +51289,8,21413,132962,0 +51290,8,23865,132966,0 +51291,6,10574,132541,0 +51292,11,33113,135129,0 +51293,8,5897,132939,0 +51294,5,5894,134630,0 +51295,4,5893,132519,0 +51296,12,33125,135474,0 +51297,11,33128,132404,0 +51298,7,5896,132609,0 +51299,7,33141,132611,0 +51300,11,33143,133047,0 +51301,11,33145,135323,0 +51302,6,24782,132583,0 +51303,8,4422,132945,0 +51304,8,11842,132951,0 +51305,11,33163,135145,0 +51306,11,33170,135145,0 +51307,11,33172,135144,0 +51308,11,33181,132395,0 +51309,0,31117,133072,0 +51310,11,33220,135274,0 +51311,11,33236,135274,0 +51312,11,33237,135650,0 +51313,11,33235,132392,0 +51314,13,33291,134961,0 +51315,11,33255,132410,0 +51316,11,33308,133485,0 +51317,11,33253,135648,0 +51318,11,33254,135139,0 +51319,3,33256,132674,0 +51320,3,33257,132657,0 +51321,3,33258,132679,0 +51322,6,17513,132543,0 +51323,5,33342,134582,0 +51324,2,33343,132724,0 +51325,6,33272,132539,0 +51326,5,33351,134582,0 +51327,6,33350,132540,0 +51328,2,33352,132722,0 +51329,5,33263,134655,0 +51330,6,33270,132547,0 +51331,3,33268,132635,0 +51332,12,33261,135434,0 +51333,13,33309,134955,0 +51334,4,33264,132495,0 +51335,7,33266,132602,0 +51336,8,33269,132938,0 +51337,4,33271,132493,0 +51338,7,33275,132610,0 +51339,8,33276,132952,0 +51340,5,33273,134590,0 +51341,3,33274,135010,0 +51342,11,33304,135271,0 +51343,11,33299,135145,0 +51344,11,33300,132402,0 +51345,13,33305,134951,0 +51346,3,33322,132624,0 +51347,4,33324,132494,0 +51348,6,33325,132535,0 +51349,8,33327,132938,0 +51350,7,33328,132609,0 +51351,8,33333,132952,0 +51352,3,3520,132624,0 +51353,8,3980,132938,0 +51354,7,3517,132602,0 +51355,6,3309,132535,0 +51357,3,33402,132665,0 +51358,11,33422,135150,0 +51359,11,33421,135152,0 +51360,11,33424,133941,0 +51361,11,33426,133939,0 +51362,12,33428,135474,0 +51363,11,33429,135138,0 +51364,11,34512,135669,0 +51365,11,33431,133501,0 +51366,11,33434,132392,0 +51367,11,33435,132418,0 +51368,3,33459,132697,0 +51369,3,33464,132698,0 +51370,3,3832,132647,0 +51371,15,33529,134125,0 +51372,9,33531,133759,0 +51373,11,33533,133060,0 +51374,11,34178,132420,0 +51375,11,34142,135671,0 +51376,11,33830,133501,0 +51377,13,34137,134969,0 +51378,12,34139,135620,0 +51379,11,34135,135157,0 +51380,0,42880,133078,0 +51381,0,34486,133174,0 +51382,1,34256,135066,0 +51383,3,33709,132747,0 +51384,5,33713,134679,0 +51385,6,33714,132586,0 +51386,3,34061,132653,0 +51387,1,34018,135034,0 +51388,5,33617,134596,0 +51389,0,34351,133074,0 +51390,6,33625,132559,0 +51391,8,33622,132955,0 +51392,3,37266,132652,0 +51393,6,33641,132560,0 +51394,1,34020,135034,0 +51395,5,33643,134602,0 +51396,0,34370,133074,0 +51397,0,34348,133074,0 +51398,6,33647,132564,0 +51399,1,34021,135034,0 +51400,3,34063,132651,0 +51401,5,33652,134601,0 +51402,0,34609,133074,0 +51403,1,34037,135034,0 +51404,6,33661,132564,0 +51405,5,33662,134626,0 +51406,3,34086,132723,0 +51407,6,33673,132542,0 +51408,0,34608,133072,0 +51409,1,34077,135034,0 +51410,5,33678,134632,0 +51411,3,34087,132723,0 +51412,6,33690,132551,0 +51413,0,34221,133175,0 +51414,1,34904,135067,0 +51415,5,33692,134663,0 +51416,3,33691,132626,0 +51417,0,34222,133175,0 +51418,6,33696,132550,0 +51419,3,33697,132635,0 +51420,5,33698,134662,0 +51421,1,34056,135034,0 +51422,0,34487,133174,0 +51423,6,33708,132550,0 +51424,3,33705,132738,0 +51425,5,33706,134678,0 +51426,1,34257,135066,0 +51427,11,33727,132406,0 +51428,11,33839,135367,0 +51429,9,33730,133766,0 +51430,11,33731,133474,0 +51431,9,33733,133767,0 +51432,11,33734,135663,0 +51433,5,33779,135725,0 +51434,3,33766,135725,0 +51435,3,33767,135725,0 +51436,3,33768,135725,0 +51437,5,33770,135725,0 +51438,4,33771,135725,0 +51439,0,33772,135725,0 +51440,6,33775,135725,0 +51441,8,33776,135725,0 +51442,4,33780,135725,0 +51443,3,47348,135725,0 +51444,6,33782,135725,0 +51445,7,33783,135725,0 +51446,7,33616,135725,0 +51447,0,33785,135725,0 +51448,8,33788,135725,0 +51449,0,33791,135725,0 +51450,5,33792,135725,0 +51451,4,33793,135725,0 +51452,6,33794,135725,0 +51453,1,33796,135725,0 +51454,8,33799,135725,0 +51455,0,33802,135725,0 +51456,5,33803,135725,0 +51457,6,33804,135725,0 +51458,8,33806,135725,0 +51459,4,33807,135725,0 +51460,1,29835,135049,0 +51461,0,33880,133069,0 +51462,9,33814,133758,0 +51463,7,33817,132618,0 +51464,8,25455,132958,0 +51465,12,33828,135535,0 +51466,11,33835,132395,0 +51467,11,33838,2245030,0 +51468,3,11890,132722,0 +51469,15,33845,133498,0 +51470,0,33848,133164,0 +51471,1,18995,135060,0 +51472,5,29878,134677,0 +51473,5,33854,134667,0 +51474,12,33857,135501,0 +51475,8,15574,132965,0 +51476,8,29833,132944,0 +51477,6,22757,132586,0 +51478,0,33901,133117,0 +51479,13,33867,134968,0 +51480,8,29877,132964,0 +51481,8,33870,132946,0 +51482,6,33872,132562,0 +51483,6,33876,132585,0 +51484,11,33882,135366,0 +51485,5,33888,134691,0 +51486,6,29830,132554,0 +51487,11,33894,135648,0 +51488,3,33895,132658,0 +51489,7,32269,132618,0 +51490,11,33994,135361,0 +51491,11,33992,135661,0 +51492,11,33991,135665,0 +51493,0,33998,133169,0 +51494,0,33999,133170,0 +51495,3,34060,132699,0 +51496,3,34065,132700,0 +51497,3,34073,132694,0 +51498,3,34074,132696,0 +51499,3,34075,132695,0 +51500,3,34076,132693,0 +51501,12,34115,135493,0 +51502,11,34133,132395,0 +51503,8,34165,132965,0 +51504,4,34176,132520,0 +51505,9,34179,133754,0 +51506,7,34181,132617,0 +51507,8,34183,132951,0 +51508,4,34184,132515,0 +51509,7,34185,132618,0 +51510,7,34186,132613,0 +51511,7,34187,132610,0 +51512,15,34190,135472,0 +51513,4,34191,132520,0 +51514,8,34193,132962,0 +51515,6,34195,132562,0 +51516,7,34197,132612,0 +51517,12,34198,135468,0 +51518,7,34199,132612,0 +51519,8,34260,132953,0 +51520,4,34202,132523,0 +51521,4,34203,132521,0 +51522,4,34205,132500,0 +51523,13,34206,134970,0 +51524,7,34207,132612,0 +51525,6,34208,132551,0 +51526,6,34210,132538,0 +51527,0,34606,133077,0 +51528,12,34223,135502,0 +51529,8,34226,132951,0 +51530,7,34227,132601,0 +51531,8,34229,132951,0 +51532,9,34231,133753,0 +51533,11,34232,135368,0 +51534,8,34235,132960,0 +51535,8,34236,132960,0 +51536,5,34238,134663,0 +51537,9,34239,133772,0 +51538,11,34250,135591,0 +51539,1,34252,135060,0 +51540,6,34259,132538,0 +51541,11,34264,135369,0 +51542,5,8326,134662,0 +51543,3,34268,132744,0 +51544,3,29242,132664,0 +51545,1,34278,135061,0 +51546,15,34288,134911,0 +51547,5,17950,134687,0 +51548,3,29784,132667,0 +51549,8,34295,132951,0 +51550,11,34296,134296,0 +51551,11,34304,135366,0 +51552,3,23686,132686,0 +51553,1,15754,135060,0 +51554,1,34312,135059,0 +51555,1,34314,135033,0 +51556,6,21201,132582,0 +51557,8,24469,132945,0 +51558,0,34607,133074,0 +51559,1,34323,135036,0 +51560,9,18948,133770,0 +51561,1,22849,135045,0 +51562,11,34331,133498,0 +51563,6,34332,132589,0 +51564,6,29791,132549,0 +51565,6,17933,132587,0 +51566,7,3842,132611,0 +51567,9,34337,133762,0 +51569,11,34402,135366,0 +51570,11,34405,0,0 +51571,12,34484,135619,0 +51572,11,34478,135342,0 +51573,0,36715,133126,0 +51574,1,17833,135057,0 +51575,11,34474,133041,0 +51576,6,15619,132562,0 +51577,3,34421,132737,0 +51578,11,34485,133474,0 +51579,4,43295,132493,0 +51580,8,43296,132953,0 +51581,3,44953,132643,0 +51582,5,36641,134634,0 +51583,3,38920,132653,0 +51584,3,37779,132686,0 +51585,8,42158,132951,0 +51586,1,16443,135033,0 +51587,3,40868,132653,0 +51588,3,38925,132642,0 +51589,1,42683,135056,0 +51590,6,43298,132560,0 +51591,3,44952,132649,0 +51592,4,43300,132520,0 +51593,1,43319,135033,0 +51594,3,43301,132645,0 +51595,8,29736,132948,0 +51596,8,34463,132953,0 +51597,8,34464,132945,0 +51598,4,34610,132523,0 +51599,6,34611,132584,0 +51600,7,34612,132617,0 +51601,3,34617,132738,0 +51602,8,34613,132960,0 +51603,0,42240,133070,0 +51604,5,34615,134584,0 +51605,1,34616,135061,0 +51606,4,34699,132492,0 +51607,6,34684,132542,0 +51608,7,34685,132606,0 +51609,0,34700,133143,0 +51610,8,34686,132958,0 +51611,5,34687,134582,0 +51612,1,34688,135038,0 +51613,3,34689,132722,0 +51614,4,34646,132517,0 +51615,7,34647,132616,0 +51616,0,34649,133126,0 +51617,8,34650,132944,0 +51618,1,34651,135041,0 +51619,5,34652,134583,0 +51620,3,34645,132625,0 +51621,6,34648,132588,0 +51622,4,34599,132497,0 +51623,7,34601,133365,0 +51624,6,34782,132536,0 +51625,0,34602,132768,0 +51626,8,34600,132951,0 +51627,5,34598,134586,0 +51628,1,34597,135054,0 +51629,3,34596,132666,0 +51630,4,34620,132501,0 +51631,7,34621,132612,0 +51632,5,34622,134588,0 +51633,1,34623,133732,0 +51634,0,34624,133131,0 +51635,3,34625,132690,0 +51636,6,34626,132539,0 +51637,8,34627,132966,0 +51638,4,34628,132499,0 +51639,7,34629,132520,0 +51640,0,34630,132767,0 +51641,8,34631,132948,0 +51642,1,34632,135033,0 +51643,3,34633,132652,0 +51644,6,34634,132539,0 +51645,5,34635,134588,0 +51646,4,34520,132500,0 +51647,6,34521,132584,0 +51648,7,34522,132613,0 +51649,3,34519,132738,0 +51650,8,34523,132953,0 +51651,0,34524,133076,0 +51652,5,34525,134584,0 +51653,1,34526,135041,0 +51654,7,34691,132601,0 +51655,6,34692,132592,0 +51656,0,34693,133072,0 +51657,4,34694,132505,0 +51658,8,34695,132945,0 +51659,5,34696,134583,0 +51660,1,34697,135060,0 +51661,3,34698,132633,0 +51662,4,34637,132504,0 +51663,6,34638,132542,0 +51664,7,34641,132608,0 +51665,0,34639,133129,0 +51666,8,34640,132951,0 +51667,5,34642,134588,0 +51668,1,34643,135032,0 +51669,3,34644,132741,0 +51670,3,29253,132639,0 +51671,13,34533,134968,0 +51672,11,34556,133047,0 +51673,0,34564,133122,0 +51674,0,15370,133129,0 +51675,6,25308,132559,0 +51676,6,30557,132547,0 +51677,1,34590,135038,0 +51678,4,12983,132507,0 +51679,6,34595,132562,0 +51680,6,34605,132560,0 +51681,12,34636,135464,0 +51682,0,34715,133132,0 +51683,3,34722,132665,0 +51684,3,34724,135029,0 +51685,3,34725,132664,0 +51686,3,34727,132691,0 +51687,3,34728,132658,0 +51688,3,34730,135023,0 +51689,3,34731,135028,0 +51690,0,34781,133132,0 +51691,5,34788,134588,0 +51692,8,34789,132961,0 +51693,1,34791,135036,0 +51694,4,34790,132492,0 +51695,6,34792,132562,0 +51696,11,34794,135129,0 +51697,12,34800,135500,0 +51698,15,34802,133739,0 +51699,15,34807,135469,0 +51700,9,16608,133768,0 +51701,11,34810,135326,0 +51702,11,34891,135144,0 +51703,11,34850,135348,0 +51704,11,34860,133042,0 +51705,11,36970,135361,0 +51706,11,36969,133045,0 +51707,5,34890,134584,0 +51708,11,34894,135166,0 +51709,12,34899,135469,0 +51710,3,34900,132723,0 +51711,8,34901,132945,0 +51712,3,35049,132737,0 +51713,5,35051,134681,0 +51714,0,36730,133160,0 +51715,1,35177,135060,0 +51716,6,35067,132587,0 +51717,8,35050,132962,0 +51718,4,35058,132516,0 +51719,7,35044,132614,0 +51720,7,35619,132601,0 +51721,3,35606,132637,0 +51722,8,35615,132959,0 +51723,5,35616,134667,0 +51724,0,36972,133117,0 +51725,1,35617,135045,0 +51726,6,35613,132548,0 +51727,4,35614,132511,0 +51728,3,35415,132637,0 +51729,5,35413,134667,0 +51730,0,35601,133117,0 +51731,1,35611,135045,0 +51732,6,35409,132548,0 +51733,8,35411,132959,0 +51734,4,35410,132511,0 +51735,7,35416,132601,0 +51736,3,35752,132637,0 +51737,5,35754,134667,0 +51738,0,42115,133117,0 +51739,1,35751,135045,0 +51740,6,35746,132548,0 +51741,8,35748,132959,0 +51742,4,35747,132511,0 +51743,7,35753,132601,0 +51744,3,35054,132737,0 +51745,5,35065,134681,0 +51746,0,41849,133160,0 +51747,1,35064,135060,0 +51748,6,36351,132587,0 +51749,8,35055,132962,0 +51750,4,36349,132516,0 +51751,7,35053,132614,0 +51752,3,35159,132637,0 +51753,5,35161,134667,0 +51754,0,35162,133117,0 +51755,1,35160,135045,0 +51756,6,35173,132548,0 +51757,8,35167,132959,0 +51758,4,35164,132511,0 +51759,7,35158,132601,0 +51760,3,35523,132684,0 +51761,5,35522,134599,0 +51762,0,36440,132767,0 +51763,1,35326,135056,0 +51764,6,35525,132579,0 +51765,8,35518,132951,0 +51766,4,35519,132492,0 +51767,7,35677,132612,0 +51768,3,35185,132684,0 +51769,5,35184,134599,0 +51770,0,35182,132767,0 +51771,1,35187,135056,0 +51772,6,35186,132579,0 +51773,8,35183,132951,0 +51774,4,35179,132492,0 +51775,7,35180,132612,0 +51776,3,36353,132684,0 +51777,5,35154,134599,0 +51778,0,35155,132767,0 +51779,1,35149,135056,0 +51780,6,35148,132579,0 +51781,8,35145,132951,0 +51782,4,35143,132497,0 +51783,7,35144,132612,0 +51784,11,35632,135226,0 +51785,11,35631,135226,0 +51786,11,35634,135226,0 +51787,11,35633,135226,0 +51788,3,35302,132649,0 +51789,8,35286,132940,0 +51790,7,35283,132606,0 +51791,3,35290,132649,0 +51792,8,35303,132940,0 +51793,7,35287,132606,0 +51794,3,35293,132744,0 +51795,7,35292,132606,0 +51796,8,35294,132962,0 +51797,3,35276,132633,0 +51798,8,35277,132962,0 +51799,7,35275,132606,0 +51800,0,35095,133111,0 +51801,11,35097,135331,0 +51802,5,35278,134584,0 +51803,5,35282,134586,0 +51804,5,35289,134646,0 +51805,5,35295,134667,0 +51806,9,35115,133768,0 +51807,11,35116,135461,0 +51808,8,25176,132944,0 +51809,4,25041,132490,0 +51810,11,35129,133040,0 +51811,9,35139,133770,0 +51812,11,35151,135371,0 +51813,3,5919,135012,0 +51814,5,23663,134691,0 +51815,3,8388,132742,0 +51816,0,35206,132767,0 +51817,1,35209,135049,0 +51818,0,42883,133160,0 +51819,6,35214,132561,0 +51820,4,35213,132506,0 +51821,8,35217,132963,0 +51822,4,35218,132510,0 +51823,11,35239,133502,0 +51824,11,35240,135152,0 +51825,11,35241,135150,0 +51826,11,35242,135168,0 +51827,11,35819,135672,0 +51828,11,35244,133455,0 +51829,11,35709,133454,0 +51830,11,35247,135370,0 +51831,11,36371,135291,0 +51832,11,35250,133495,0 +51833,11,36483,133503,0 +51834,12,35370,135620,0 +51835,12,35870,135501,0 +51836,12,35253,135541,0 +51837,11,35255,135356,0 +51838,11,35256,135345,0 +51839,11,35371,132416,0 +51840,11,35258,132399,0 +51841,11,35259,135574,0 +51842,13,35577,134972,0 +51843,13,35573,134973,0 +51844,12,35262,135481,0 +51845,12,35263,135482,0 +51846,7,35310,132616,0 +51847,15,35817,134548,0 +51848,9,35312,133776,0 +51849,1,35324,135047,0 +51850,1,35325,135038,0 +51851,11,35642,133506,0 +51852,11,36924,133487,0 +51853,11,35363,135175,0 +51854,9,35365,133776,0 +51855,1,35369,135045,0 +51856,1,35136,135036,0 +51857,11,35390,135651,0 +51858,11,35710,133496,0 +51859,6,35379,132562,0 +51860,6,35386,132535,0 +51861,15,35383,134555,0 +51862,11,35392,135369,0 +51863,5,33381,134631,0 +51864,10,13909,135026,0 +51865,3,23402,132637,0 +51866,11,36376,135277,0 +51867,9,35408,133775,0 +51868,0,35419,133074,0 +51869,0,35421,133072,0 +51870,7,35422,132606,0 +51871,15,35813,134547,0 +51872,9,35430,133775,0 +51873,0,35432,133155,0 +51874,0,36433,133122,0 +51875,1,35434,135060,0 +51876,0,42767,133152,0 +51877,13,35576,134971,0 +51878,11,35246,133456,0 +51879,9,35444,133777,0 +51880,15,35816,134545,0 +51881,15,35792,134546,0 +51882,9,35446,133777,0 +51883,11,36378,135371,0 +51884,11,35574,133504,0 +51885,5,35508,134696,0 +51886,3,36370,132687,0 +51887,5,35514,134588,0 +51888,5,35515,134634,0 +51889,8,36279,132956,0 +51890,13,35654,132389,0 +51891,8,35550,132963,0 +51892,8,35553,132940,0 +51893,8,35542,132945,0 +51894,8,35545,132950,0 +51895,3,35544,132645,0 +51896,3,36077,132745,0 +51897,3,35554,132630,0 +51898,3,36439,132721,0 +51899,7,35555,132613,0 +51900,7,35556,132611,0 +51901,7,35557,132615,0 +51902,7,35558,132607,0 +51903,11,35563,135144,0 +51904,4,10501,132502,0 +51905,11,35589,135643,0 +51906,12,35593,135474,0 +51907,2,35675,135005,0 +51908,11,35643,133505,0 +51909,13,35719,132390,0 +51910,11,35818,135594,0 +51911,3,33372,135009,0 +51912,0,35801,133123,0 +51913,0,35810,133077,0 +51914,3,36138,132662,0 +51915,0,41462,133076,0 +51916,1,35935,135054,0 +51917,11,35839,135273,0 +51918,5,36116,134582,0 +51919,2,36103,135018,0 +51920,6,36101,132539,0 +51921,11,35992,133058,0 +51922,3,35888,132751,0 +51923,11,35899,135638,0 +51924,11,35898,135325,0 +51925,11,37415,135276,0 +51926,11,36958,135274,0 +51927,10,35929,135026,0 +51928,11,36960,135275,0 +51929,11,35945,135138,0 +51930,11,35959,132416,0 +51931,11,35962,135324,0 +51932,3,35973,132642,0 +51933,11,36045,135662,0 +51934,15,36265,133744,0 +51935,15,36266,133745,0 +51936,11,36064,133039,0 +51937,11,36065,133060,0 +51938,11,36066,135275,0 +51939,11,36067,133480,0 +51940,11,36068,135662,0 +51941,11,36069,133489,0 +51942,11,36073,135275,0 +51943,15,36267,133747,0 +51944,15,36268,133746,0 +51945,5,36104,134582,0 +51946,2,36109,135009,0 +51947,5,36117,134582,0 +51948,6,36111,132540,0 +51949,2,36133,135020,0 +51950,5,36134,134581,0 +51951,3,36140,132664,0 +51952,11,36154,135638,0 +51953,8,38318,132937,0 +51954,6,38320,132554,0 +51955,5,38316,134694,0 +51956,3,38321,132742,0 +51957,3,29092,132636,0 +51958,8,38328,132945,0 +51959,0,44656,133137,0 +51960,7,29095,132612,0 +51961,11,39450,132402,0 +51962,11,39376,133043,0 +51963,11,39449,135327,0 +51964,11,38681,133489,0 +51965,11,38682,132400,0 +51966,11,38683,135302,0 +51967,3,36212,132745,0 +51968,4,36210,132518,0 +51969,6,36211,132551,0 +51970,5,36213,134688,0 +51971,3,36221,132751,0 +51972,8,36222,132945,0 +51973,7,42877,132618,0 +51974,0,42876,133124,0 +51975,5,36379,134682,0 +51976,0,38697,133124,0 +51977,8,36227,132960,0 +51978,0,38699,133124,0 +51979,3,36226,132638,0 +51980,4,36232,132500,0 +51981,6,36231,132544,0 +51982,8,36234,132951,0 +51983,3,44089,132745,0 +51984,8,36238,132963,0 +51985,0,36416,133131,0 +51986,0,44880,133076,0 +51987,0,44877,133140,0 +51988,7,36247,132606,0 +51989,7,36249,132605,0 +51990,7,36250,132602,0 +51991,11,36253,135369,0 +51992,11,36255,135278,0 +51993,11,41709,132406,0 +51994,11,36259,132393,0 +51995,11,36261,133046,0 +51996,11,36263,133054,0 +51997,11,36283,135641,0 +51998,11,36285,135641,0 +51999,11,45615,133491,0 +52000,3,41375,132639,0 +52001,3,41374,132639,0 +52002,3,41376,132639,0 +52003,11,35575,135372,0 +52004,0,39941,133152,0 +52005,1,36425,135032,0 +52006,5,36426,134666,0 +52007,1,13512,135053,0 +52008,11,36442,135275,0 +52009,15,36454,135160,0 +52010,10,37058,135026,0 +52011,11,36467,133038,0 +52012,10,37059,135026,0 +52013,10,31738,135026,0 +52014,6,36135,132535,0 +52015,12,43685,135613,0 +52016,12,43687,135613,0 +52017,12,43688,135613,0 +52018,12,43690,135612,0 +52019,0,43889,133023,0 +52020,0,31494,133023,0 +52021,0,43885,133023,0 +52022,0,43891,133023,0 +52023,4,6035,132516,0 +52024,0,43887,133149,0 +52025,0,43886,133023,0 +52026,15,36575,134249,0 +52027,11,36599,133040,0 +52028,11,36631,133483,0 +52029,13,36637,134955,0 +52030,11,36638,135641,0 +52031,0,42478,133133,0 +52032,11,36650,135311,0 +52033,11,40065,132395,0 +52034,10,35934,135026,0 +52035,10,35933,135026,0 +52036,11,36706,133483,0 +52037,11,36707,133483,0 +52038,11,36708,133483,0 +52039,11,36709,133483,0 +52040,11,36710,133483,0 +52041,11,36711,133483,0 +52042,11,36712,133483,0 +52043,11,36713,133483,0 +52044,11,36714,133483,0 +52045,11,39374,135373,0 +52046,3,43142,132738,0 +52047,5,43149,134640,0 +52048,7,43166,132606,0 +52049,1,43187,135032,0 +52050,11,36725,132395,0 +52051,11,36729,135563,0 +52052,5,43160,134686,0 +52053,4,41987,132518,0 +52054,6,43135,132585,0 +52055,11,39050,135182,0 +52056,5,43182,134677,0 +52057,8,43151,132944,0 +52058,4,43136,132516,0 +52059,11,38823,133042,0 +52060,11,33302,135654,0 +52061,6,2111,132540,0 +52062,3,36770,132630,0 +52063,3,36775,132624,0 +52064,3,36547,135011,0 +52065,3,40712,132665,0 +52066,8,36786,132938,0 +52067,8,36787,132940,0 +52068,8,36788,132955,0 +52069,5,33361,134660,0 +52070,6,36012,132544,0 +52071,9,38813,133769,0 +52072,11,40357,135187,0 +52073,4,33370,132495,0 +52074,4,33360,132506,0 +52075,12,36925,135493,0 +52076,7,37721,132609,0 +52077,7,38921,132606,0 +52078,9,38973,133762,0 +52079,4,37233,132502,0 +52080,4,33388,132515,0 +52081,9,38976,133770,0 +52082,9,38977,133768,0 +52083,5,43303,134601,0 +52084,5,38957,134608,0 +52085,5,43421,134606,0 +52086,0,43883,133155,0 +52087,0,38956,133129,0 +52088,0,43884,133172,0 +52089,12,37000,135493,0 +52090,11,37017,135639,0 +52091,11,37018,135280,0 +52092,12,37019,135493,0 +52093,11,37020,132395,0 +52094,3,47456,132675,0 +52095,13,37030,134955,0 +52096,11,37031,133483,0 +52097,11,37034,133483,0 +52098,10,37080,135016,0 +52099,3,37046,132662,0 +52100,3,37047,132722,0 +52101,3,37048,132638,0 +52102,11,37050,135416,0 +52103,12,37057,135542,0 +52104,11,37054,135222,0 +52105,11,43194,135669,0 +52106,3,43161,132647,0 +52107,5,42315,134610,0 +52108,4,43153,132500,0 +52109,3,43140,132748,0 +52110,5,42326,134667,0 +52111,8,43170,132956,0 +52112,1,41587,135034,0 +52113,11,43195,133520,0 +52114,12,39057,135466,0 +52115,11,38827,133509,0 +52116,8,43134,132937,0 +52117,4,43159,132520,0 +52118,12,41427,135625,0 +52119,5,42324,134628,0 +52120,7,43188,133377,0 +52121,11,40900,132448,0 +52122,4,43189,132499,0 +52123,3,43168,132718,0 +52124,3,43183,132672,0 +52125,1,43169,135043,0 +52126,11,37135,132395,0 +52127,5,37183,134583,0 +52128,5,37185,134582,0 +52129,5,37186,134591,0 +52130,11,37191,135417,0 +52131,11,37192,133514,0 +52132,11,37193,133513,0 +52133,11,37195,135222,0 +52134,6,37196,132535,0 +52135,7,36692,132607,0 +52136,3,37199,132662,0 +52137,5,37200,134583,0 +52138,12,37201,135543,0 +52139,4,37025,132492,0 +52140,7,37205,132602,0 +52141,4,36808,132513,0 +52142,6,37207,132535,0 +52143,11,37209,135411,0 +52144,8,43190,132948,0 +52145,7,43152,133423,0 +52146,8,43176,132955,0 +52147,9,39075,133765,0 +52148,3,43177,132741,0 +52149,5,43137,134671,0 +52150,1,43199,135052,0 +52151,4,43143,132490,0 +52152,11,43200,133498,0 +52153,1,43139,135046,0 +52154,3,43154,132625,0 +52155,5,43171,134673,0 +52156,3,43191,132653,0 +52157,11,43311,135410,0 +52158,11,37257,132395,0 +52159,3,39539,132740,0 +52160,0,47246,133075,0 +52161,1,39543,135053,0 +52162,5,45883,134693,0 +52163,8,39540,132963,0 +52164,11,41561,135380,0 +52165,3,41717,132684,0 +52166,0,45148,133132,0 +52167,1,41706,135033,0 +52168,5,41713,134599,0 +52169,8,41714,132949,0 +52170,11,41557,135189,0 +52171,4,5361,132491,0 +52172,0,25252,133153,0 +52173,6,9802,132541,0 +52174,6,35502,132542,0 +52175,8,38066,132953,0 +52176,0,19990,132767,0 +52177,4,4858,132520,0 +52178,6,38737,132551,0 +52179,3,38740,132660,0 +52180,0,44718,133163,0 +52181,5,5365,134588,0 +52182,1,14138,135032,0 +52183,6,6648,132541,0 +52184,0,42386,133161,0 +52185,1,39011,135049,0 +52186,6,15603,132543,0 +52187,3,11892,135010,0 +52188,5,39336,134600,0 +52189,4,36113,132505,0 +52190,6,39396,132560,0 +52191,3,39976,132673,0 +52192,8,39398,132954,0 +52193,0,39405,132767,0 +52194,5,36114,134685,0 +52195,7,36447,132606,0 +52196,3,16139,135012,0 +52197,5,35467,134598,0 +52198,0,15352,133134,0 +52199,3,39977,135008,0 +52200,4,33364,132491,0 +52201,6,33366,132540,0 +52202,3,33363,132722,0 +52203,8,33367,132939,0 +52204,0,41852,133072,0 +52205,5,33365,134638,0 +52206,1,37931,135054,0 +52207,7,35993,132609,0 +52208,4,16451,132514,0 +52209,6,21335,132539,0 +52210,3,35656,132647,0 +52211,8,22018,132952,0 +52212,1,22016,135049,0 +52213,0,39671,133077,0 +52214,1,38355,135039,0 +52215,3,8367,135008,0 +52216,0,44657,133135,0 +52217,1,38861,135037,0 +52218,0,15306,133152,0 +52219,7,14223,132609,0 +52220,4,9088,132515,0 +52221,3,39318,132724,0 +52222,5,39321,134598,0 +52223,1,39322,135040,0 +52224,6,8351,132541,0 +52225,8,9138,132955,0 +52226,5,8353,134640,0 +52227,1,12485,135037,0 +52228,6,21455,132549,0 +52229,8,15443,132951,0 +52230,0,45166,133145,0 +52231,5,39492,134605,0 +52232,6,15838,132560,0 +52233,8,15839,132954,0 +52234,0,4256,132919,0 +52235,1,39900,135037,0 +52236,0,37982,132767,0 +52237,1,40736,135049,0 +52238,7,37986,132605,0 +52239,8,12299,132943,0 +52240,5,3069,134663,0 +52241,1,38043,135052,0 +52242,4,38334,132511,0 +52243,3,38333,132634,0 +52244,8,12096,132951,0 +52245,5,38339,134664,0 +52246,1,42109,135045,0 +52247,7,38335,132612,0 +52248,4,13030,132492,0 +52249,1,38630,135040,0 +52250,6,35231,132550,0 +52251,3,16725,132629,0 +52252,7,38843,132603,0 +52253,6,18153,132554,0 +52254,8,38867,132946,0 +52255,0,41377,132506,0 +52256,5,11744,134660,0 +52257,0,40255,132768,0 +52258,0,14957,133073,0 +52259,5,39307,134672,0 +52260,1,23579,135054,0 +52261,4,11493,132511,0 +52262,6,39442,132550,0 +52263,3,11107,132628,0 +52264,8,11494,132946,0 +52265,5,11495,134665,0 +52266,4,23758,132510,0 +52267,6,39517,132554,0 +52268,3,7055,132742,0 +52269,5,39518,134626,0 +52270,1,39520,135049,0 +52271,4,13441,132513,0 +52272,5,39792,134596,0 +52273,4,39983,132520,0 +52274,6,39980,132549,0 +52275,3,39979,132631,0 +52276,8,39981,132964,0 +52277,0,39986,133111,0 +52278,5,39982,134667,0 +52279,7,39988,132617,0 +52280,6,40183,132547,0 +52281,6,37940,132549,0 +52282,0,39386,133127,0 +52283,1,9493,135057,0 +52284,6,35635,132590,0 +52285,8,35636,132962,0 +52286,4,38357,132502,0 +52287,6,25924,132547,0 +52288,3,23442,132629,0 +52289,8,25927,132953,0 +52290,0,45182,133071,0 +52291,1,17995,135054,0 +52292,7,25925,132609,0 +52293,6,11774,132551,0 +52294,3,10497,132637,0 +52295,8,38640,132962,0 +52296,5,13385,134696,0 +52297,7,11792,132613,0 +52298,4,29389,132523,0 +52299,6,33443,132584,0 +52300,3,38876,132751,0 +52301,8,32953,132957,0 +52302,0,40537,133076,0 +52303,5,25290,134691,0 +52304,4,25351,132506,0 +52305,6,25328,132548,0 +52306,3,25325,132759,0 +52307,8,25329,132964,0 +52308,0,42215,133123,0 +52309,5,25327,134626,0 +52310,1,39802,135060,0 +52311,6,39383,132535,0 +52312,3,5852,132739,0 +52313,8,39381,132963,0 +52314,1,39620,135055,0 +52315,4,13473,132497,0 +52316,6,13462,132590,0 +52317,3,13461,132741,0 +52318,5,19680,134687,0 +52319,4,19151,132500,0 +52320,6,39869,132584,0 +52321,3,39865,132738,0 +52322,8,39866,132960,0 +52323,0,39873,133076,0 +52324,5,39870,134695,0 +52325,7,39871,132618,0 +52326,6,25291,132584,0 +52327,3,25289,132740,0 +52328,8,33444,132963,0 +52329,1,44335,135041,0 +52330,9,38031,133770,0 +52331,9,36453,133772,0 +52332,9,39391,133768,0 +52333,13,40782,134948,0 +52334,13,39044,134956,0 +52335,15,38729,135464,0 +52336,11,40787,135311,0 +52337,11,40788,135313,0 +52338,11,40789,135643,0 +52339,11,38457,135638,0 +52340,11,38633,135639,0 +52341,11,38853,135669,0 +52342,11,38854,133510,0 +52343,11,39427,133515,0 +52344,11,39488,133483,0 +52345,11,40823,133038,0 +52346,11,44768,133487,0 +52347,11,38423,133479,0 +52348,11,39001,133488,0 +52349,11,39311,133479,0 +52350,11,39408,133052,0 +52351,11,39633,133510,0 +52352,11,39861,133047,0 +52353,11,41952,133045,0 +52354,11,40794,135415,0 +52355,11,40795,135413,0 +52356,11,38635,135412,0 +52357,11,39025,135412,0 +52358,11,39310,135411,0 +52359,11,39752,135334,0 +52360,11,39890,135411,0 +52361,11,41311,135418,0 +52362,11,37628,135416,0 +52363,11,38606,135359,0 +52364,11,38735,135374,0 +52365,11,39039,135368,0 +52366,11,39428,135417,0 +52367,11,192212,135335,0 +52368,11,40691,135418,0 +52369,11,38347,135222,0 +52370,11,38713,135223,0 +52371,11,38995,135224,0 +52372,11,39105,135223,0 +52373,11,39748,135148,0 +52374,11,40802,132965,0 +52375,11,40804,132394,0 +52376,11,40805,132408,0 +52377,11,38723,132433,0 +52378,11,38997,132405,0 +52379,11,39406,132425,0 +52380,11,39632,132433,0 +52381,11,39862,133485,0 +52382,11,40295,132435,0 +52383,11,40294,132434,0 +52384,11,40296,132411,0 +52385,11,40299,132400,0 +52386,11,39351,132435,0 +52387,11,40300,132434,0 +52388,11,40298,132403,0 +52389,11,39421,132436,0 +52390,11,39603,132435,0 +52391,11,40302,132402,0 +52392,11,40938,132434,0 +52393,11,40807,135576,0 +52394,11,39258,135128,0 +52395,11,39287,135646,0 +52396,11,39425,135652,0 +52397,11,39531,135314,0 +52398,11,39894,135127,0 +52399,12,44659,135493,0 +52400,12,44682,135503,0 +52401,12,38632,135503,0 +52402,12,39007,135493,0 +52403,12,39431,135504,0 +52404,12,39775,135503,0 +52405,12,42343,135542,0 +52406,12,38419,135542,0 +52407,12,39002,135543,0 +52408,12,39333,135543,0 +52409,12,37557,135615,0 +52410,12,41603,135616,0 +52411,12,36494,135615,0 +52412,12,44664,135615,0 +52413,12,40816,135469,0 +52414,12,40144,135468,0 +52415,12,40146,133749,0 +52416,12,40139,135475,0 +52417,12,40133,135476,0 +52418,12,40155,135470,0 +52419,12,40145,135469,0 +52420,12,40143,134123,0 +52421,12,40142,135469,0 +52422,12,40136,135475,0 +52423,12,40156,135468,0 +52424,12,44333,135477,0 +52425,11,40214,135410,0 +52426,11,38601,135667,0 +52427,11,38724,135667,0 +52428,11,39006,135333,0 +52429,11,39101,135661,0 +52430,11,39282,135642,0 +52431,11,39419,135640,0 +52432,11,39978,135641,0 +52433,11,39389,133514,0 +52434,11,39774,133482,0 +52435,11,38345,135154,0 +52436,11,38666,135145,0 +52437,11,39104,135464,0 +52438,11,39392,135176,0 +52439,11,39429,135148,0 +52440,11,44331,135185,0 +52441,5,37333,134586,0 +52442,1,37334,135040,0 +52443,3,5715,135008,0 +52444,6,32859,132539,0 +52445,0,37339,133101,0 +52446,1,16096,135039,0 +52447,1,37344,135038,0 +52448,4,25843,132505,0 +52449,6,37349,132589,0 +52450,7,25841,132602,0 +52451,3,25846,132739,0 +52452,8,37351,132962,0 +52453,5,25844,134584,0 +52454,11,37410,135133,0 +52455,8,33090,132965,0 +52456,6,37438,132549,0 +52457,4,9490,132499,0 +52459,7,37433,132608,0 +52460,9,37429,133757,0 +52461,8,37446,132939,0 +52462,4,33373,132501,0 +52463,5,37449,134586,0 +52464,3,37098,132722,0 +52465,3,37451,132680,0 +52466,6,36858,132541,0 +52467,11,37469,135321,0 +52468,8,37040,132946,0 +52469,0,44327,133078,0 +52470,4,36844,132505,0 +52471,11,40169,132945,0 +52472,10,37419,135026,0 +52473,5,37076,134657,0 +52474,3,37490,132628,0 +52475,1,37491,135054,0 +52476,3,37452,132722,0 +52477,1,37494,135038,0 +52478,1,37496,135046,0 +52479,8,37498,132963,0 +52480,4,37038,132505,0 +52481,5,37039,134667,0 +52482,0,39364,133076,0 +52483,8,37505,132951,0 +52484,0,41069,133119,0 +52485,8,36845,132960,0 +52486,4,33377,132512,0 +52487,4,39363,132512,0 +52488,11,37524,133942,0 +52489,11,37525,133038,0 +52490,8,33378,132958,0 +52491,7,37535,132617,0 +52492,7,37543,132605,0 +52493,7,35947,132608,0 +52494,6,37548,132588,0 +52495,8,38982,132938,0 +52496,6,31569,132551,0 +52497,6,40164,132544,0 +52498,8,38988,132938,0 +52499,5,24031,134659,0 +52500,11,37589,133041,0 +52501,6,37607,132544,0 +52502,8,37606,132938,0 +52503,5,37605,134632,0 +52504,3,37604,132722,0 +52505,0,37616,133152,0 +52506,0,37619,133153,0 +52507,0,37617,133152,0 +52508,0,37618,133152,0 +52509,8,37008,132956,0 +52510,6,37007,132562,0 +52511,5,37006,134628,0 +52512,3,37633,132721,0 +52513,5,37631,134592,0 +52514,6,37634,132541,0 +52515,5,38324,134688,0 +52516,6,44094,132549,0 +52517,4,44095,132504,0 +52518,4,37648,132502,0 +52519,3,36498,132635,0 +52520,7,37647,132613,0 +52521,11,37660,135225,0 +52522,11,44606,133050,0 +52523,11,39296,135171,0 +52524,11,41636,132437,0 +52525,11,48502,135641,0 +52526,11,39359,135321,0 +52527,11,39357,135657,0 +52528,9,39685,133770,0 +52529,0,38932,133131,0 +52530,8,31637,132946,0 +52531,11,36257,132401,0 +52532,12,44596,135467,0 +52533,12,37803,135467,0 +52534,11,37828,135274,0 +52535,3,38136,132629,0 +52536,3,39286,132659,0 +52537,0,44876,133132,0 +52538,3,41143,132718,0 +52539,1,41142,135043,0 +52540,5,41140,134599,0 +52541,8,41138,132962,0 +52542,1,40622,135050,0 +52543,0,41234,133076,0 +52544,3,40056,132716,0 +52545,8,40059,132953,0 +52546,5,39952,134587,0 +52547,12,37935,135429,0 +52548,12,39740,135425,0 +52549,11,37989,135273,0 +52550,11,38099,135412,0 +52551,1,27106,135052,0 +52552,6,42227,132538,0 +52553,1,13375,135040,0 +52554,12,39208,135468,0 +52555,6,43158,132546,0 +52556,8,43146,132964,0 +52557,11,47478,135392,0 +52558,6,43173,132549,0 +52559,1,43162,135048,0 +52560,11,39226,135150,0 +52561,11,39228,135279,0 +52562,12,43202,135508,0 +52563,0,45175,133159,0 +52564,7,43141,132604,0 +52565,6,43192,132559,0 +52566,11,41428,135388,0 +52567,9,44372,133765,0 +52568,3,41144,132633,0 +52569,0,44009,133077,0 +52570,1,41149,135060,0 +52571,8,41145,132945,0 +52572,5,41148,134667,0 +52573,11,38142,135280,0 +52574,3,37072,135011,0 +52575,3,37073,135010,0 +52576,11,38265,135412,0 +52577,3,10552,135008,0 +52578,1,43784,135040,0 +52579,11,43775,135342,0 +52580,13,38258,134955,0 +52581,12,38260,135533,0 +52582,11,38181,135277,0 +52583,13,38182,134955,0 +52584,11,38183,133483,0 +52585,0,44873,133118,0 +52586,0,43180,133123,0 +52587,0,43184,133074,0 +52588,6,43185,132571,0 +52589,11,43210,135169,0 +52590,0,44407,133121,0 +52591,0,45101,133144,0 +52592,1,43181,135048,0 +52593,5,43193,134637,0 +52594,6,43147,132583,0 +52595,9,38794,133770,0 +52596,11,38797,132406,0 +52597,11,43204,133535,0 +52598,3,43205,132634,0 +52599,8,43164,132960,0 +52600,5,43206,134697,0 +52601,11,43207,135669,0 +52602,1,43186,135057,0 +52603,1,43209,135066,0 +52604,7,42865,132617,0 +52605,6,43008,132546,0 +52606,6,43084,132562,0 +52607,7,42996,132612,0 +52608,1,42910,135054,0 +52609,0,44408,133101,0 +52610,3,42953,132648,0 +52611,8,42696,132943,0 +52612,5,42733,134605,0 +52613,7,42832,132605,0 +52614,3,43015,132723,0 +52615,7,42896,132612,0 +52616,11,41881,135667,0 +52617,8,42442,132949,0 +52618,0,49090,133172,0 +52619,6,43017,132563,0 +52620,8,42452,132947,0 +52621,8,42581,132944,0 +52622,8,40830,132962,0 +52623,11,41769,133524,0 +52624,15,41655,135161,0 +52625,4,43045,132498,0 +52626,7,42965,132607,0 +52627,0,38197,133073,0 +52628,5,42839,134678,0 +52629,0,44409,133136,0 +52630,7,42850,132612,0 +52631,11,39964,132452,0 +52632,5,42966,134606,0 +52633,8,42903,132953,0 +52634,7,42885,132615,0 +52635,8,43035,132963,0 +52636,0,42866,133101,0 +52637,3,42997,132679,0 +52638,12,41423,135544,0 +52639,8,42371,132951,0 +52640,8,42410,132935,0 +52641,8,42020,132944,0 +52642,11,41418,135271,0 +52643,5,42945,134637,0 +52644,7,42975,132612,0 +52645,0,42829,133173,0 +52646,4,42911,132498,0 +52647,7,42908,132608,0 +52648,11,44954,133516,0 +52649,6,43087,132569,0 +52650,12,40908,135505,0 +52651,5,42830,134677,0 +52652,8,43052,132944,0 +52653,8,43064,132959,0 +52654,15,41654,134115,0 +52655,8,42355,132963,0 +52656,8,42576,132961,0 +52657,8,42446,132950,0 +52658,11,44612,133060,0 +52659,1,42691,135068,0 +52660,12,43088,135479,0 +52661,4,42887,132514,0 +52662,4,42999,132519,0 +52663,11,42825,135672,0 +52664,5,43018,134657,0 +52665,4,42685,132504,0 +52666,4,42693,132512,0 +52667,6,42931,132551,0 +52668,12,38370,135430,0 +52669,4,38137,132503,0 +52670,12,38263,135543,0 +52671,11,38264,135224,0 +52672,5,38134,134691,0 +52673,4,42833,132515,0 +52674,11,43090,135328,0 +52675,3,41133,132740,0 +52676,8,41134,132963,0 +52677,0,41135,133124,0 +52678,5,41136,134693,0 +52679,1,41137,135053,0 +52680,8,41154,132949,0 +52681,0,41794,133132,0 +52682,5,41155,134599,0 +52683,1,42171,135033,0 +52684,3,41157,132684,0 +52685,1,43044,135051,0 +52686,15,43091,134552,0 +52687,0,42217,133071,0 +52688,1,42454,135055,0 +52689,1,42372,135033,0 +52690,1,42351,135041,0 +52691,4,43026,132502,0 +52692,8,42886,132945,0 +52693,7,43025,132618,0 +52694,11,42408,135602,0 +52695,5,42856,132700,0 +52696,4,42868,132518,0 +52697,11,40358,135192,0 +52698,0,44410,133121,0 +52699,4,43065,132513,0 +52700,0,44411,133119,0 +52701,8,42985,132953,0 +52702,7,42948,132606,0 +52703,11,41772,132443,0 +52704,4,42977,132490,0 +52705,11,41773,135381,0 +52706,1,42041,135057,0 +52707,13,42409,134979,0 +52708,5,43010,134631,0 +52709,1,42577,135053,0 +52710,1,42414,135055,0 +52711,1,42447,135049,0 +52712,0,45147,133174,0 +52713,4,42967,132497,0 +52714,3,42946,132746,0 +52715,6,42841,132547,0 +52716,0,42860,133176,0 +52717,11,40836,135184,0 +52718,8,42912,132937,0 +52719,12,41431,135627,0 +52720,4,42897,132502,0 +52721,1,42443,135053,0 +52722,1,43066,135046,0 +52723,8,42869,132953,0 +52724,3,42898,132659,0 +52725,5,42955,134594,0 +52726,1,42497,135054,0 +52727,1,42521,135062,0 +52728,1,42360,135057,0 +52729,8,42932,132944,0 +52730,6,42835,132554,0 +52731,11,41884,135666,0 +52732,1,43027,135054,0 +52733,12,39230,135494,0 +52734,3,42969,132649,0 +52735,6,42901,132569,0 +52736,3,42890,132635,0 +52737,3,42978,132679,0 +52738,8,43020,132949,0 +52739,1,42730,135064,0 +52740,7,42956,132605,0 +52741,11,41776,132457,0 +52742,1,42949,135048,0 +52743,4,42732,132492,0 +52744,11,38387,133041,0 +52745,5,43067,134656,0 +52746,5,42368,134614,0 +52747,5,42354,134584,0 +52748,11,41777,133531,0 +52749,11,40359,135181,0 +52750,4,43078,132499,0 +52751,1,42872,135066,0 +52752,6,42915,132556,0 +52753,11,42172,135598,0 +52754,1,42836,135065,0 +52755,6,43024,132563,0 +52756,11,38411,132395,0 +52757,11,38413,133040,0 +52758,0,44412,133154,0 +52759,6,42950,132549,0 +52760,11,42561,135687,0 +52761,5,42005,134688,0 +52762,11,39965,132449,0 +52763,5,42453,134594,0 +52764,5,42582,134583,0 +52765,5,42578,134612,0 +52766,11,41778,133483,0 +52767,11,40371,135179,0 +52768,9,39504,133773,0 +52769,6,42870,132547,0 +52770,12,41671,135467,0 +52771,13,43238,134980,0 +52772,0,42889,133123,0 +52773,12,43449,135480,0 +52774,5,42871,134697,0 +52775,3,42692,132746,0 +52776,12,41432,135628,0 +52777,11,41787,135414,0 +52778,11,41780,133515,0 +52779,6,42981,132566,0 +52780,11,40367,135131,0 +52781,11,41781,135339,0 +52782,3,42845,132743,0 +52783,5,42444,134611,0 +52784,5,42319,134628,0 +52785,5,42018,134658,0 +52786,13,42285,134981,0 +52787,4,43021,132508,0 +52788,3,42943,132720,0 +52789,11,43097,135686,0 +52790,6,42972,132571,0 +52791,6,42893,132548,0 +52792,7,42847,132609,0 +52793,6,43003,132559,0 +52794,5,43055,134614,0 +52795,11,39833,133514,0 +52796,0,44904,133175,0 +52797,12,44558,135473,0 +52798,9,43099,133768,0 +52799,5,42448,134588,0 +52800,5,42363,134682,0 +52801,11,41871,133056,0 +52802,4,43042,132512,0 +52803,11,39958,132456,0 +52804,12,41791,135507,0 +52805,0,44874,133119,0 +52806,1,42900,135067,0 +52807,1,43019,135039,0 +52808,12,38576,132392,0 +52809,9,44599,133768,0 +52810,9,39279,133757,0 +52811,11,40838,135182,0 +52812,14,40524,133582,0 +52813,12,40715,135537,0 +52814,6,22982,132584,0 +52815,4,42947,132504,0 +52816,11,38930,135273,0 +52817,8,41443,132962,0 +52818,0,47172,133132,0 +52819,5,41445,134599,0 +52820,1,41758,135043,0 +52821,3,41446,132718,0 +52822,11,42187,135274,0 +52823,12,39107,135624,0 +52824,0,41972,133076,0 +52825,5,36500,134661,0 +52826,6,31140,132579,0 +52827,11,41782,135374,0 +52828,5,42980,134630,0 +52829,3,43011,132719,0 +52830,15,43102,134551,0 +52831,11,37290,135177,0 +52832,11,41417,135386,0 +52833,3,42441,132683,0 +52834,0,43057,133120,0 +52835,0,43759,133398,0 +52836,7,42939,132611,0 +52837,11,39146,135145,0 +52838,11,39147,135145,0 +52839,11,39148,135145,0 +52840,11,39149,135145,0 +52841,11,39150,135145,0 +52842,11,39151,135145,0 +52843,11,39154,135145,0 +52844,3,42456,132648,0 +52845,3,42352,132637,0 +52846,3,42411,132639,0 +52847,3,42359,132637,0 +52848,0,44609,133131,0 +52849,1,42846,135032,0 +52850,11,39159,135145,0 +52851,11,42212,133524,0 +52852,5,43028,134608,0 +52853,15,42566,133742,0 +52854,8,42970,132941,0 +52855,0,43013,133174,0 +52856,11,41783,133048,0 +52857,5,43002,134612,0 +52858,5,42892,134668,0 +52859,0,42973,133126,0 +52860,6,42864,132551,0 +52861,11,41784,132458,0 +52862,0,47897,133117,0 +52863,0,43040,133122,0 +52864,11,42560,135686,0 +52865,3,42579,132625,0 +52866,3,42367,132666,0 +52867,3,42574,132680,0 +52868,3,42021,132625,0 +52869,3,42449,132670,0 +52870,1,43004,135066,0 +52871,6,42961,132539,0 +52872,3,43029,132666,0 +52873,11,41554,135565,0 +52874,1,42974,135050,0 +52875,11,41785,133488,0 +52876,12,43111,133793,0 +52877,15,42564,133737,0 +52878,3,42838,132742,0 +52879,11,41786,132450,0 +52880,3,43069,132639,0 +52881,5,42919,134678,0 +52882,11,40855,135387,0 +52883,8,42963,132955,0 +52884,9,41396,133757,0 +52885,0,48247,133121,0 +52886,0,42370,133136,0 +52887,0,42353,133127,0 +52888,12,41433,135630,0 +52889,11,42069,135358,0 +52890,12,42385,135539,0 +52891,11,42379,135381,0 +52892,11,41366,135662,0 +52893,11,41560,132455,0 +52894,11,41558,133532,0 +52895,11,41562,135565,0 +52896,11,39278,133516,0 +52897,8,43005,132950,0 +52898,1,43014,135042,0 +52899,11,41559,132442,0 +52900,11,42286,135680,0 +52901,11,40856,135389,0 +52902,11,42759,135604,0 +52903,11,42760,135604,0 +52904,11,42173,135599,0 +52905,13,43239,134980,0 +52906,8,42984,132953,0 +52907,6,42006,132587,0 +52908,12,46606,135471,0 +52909,11,43112,135687,0 +52910,8,42849,132960,0 +52911,11,40355,135185,0 +52912,9,43113,133761,0 +52913,0,42882,133077,0 +52914,5,40626,134667,0 +52915,1,40628,135060,0 +52916,3,40623,132633,0 +52917,8,40624,132945,0 +52918,3,42873,132743,0 +52919,5,42904,134608,0 +52920,6,43071,132539,0 +52921,1,42964,135049,0 +52922,11,41788,135183,0 +52923,1,42895,135049,0 +52924,11,43917,135692,0 +52925,15,39505,133738,0 +52926,5,43114,134673,0 +52927,0,44610,133117,0 +52928,0,42571,133121,0 +52929,0,42362,133122,0 +52930,13,42376,134976,0 +52931,11,39393,135128,0 +52932,11,41789,135368,0 +52933,9,43115,133754,0 +52934,1,42983,135063,0 +52935,4,42848,132512,0 +52936,6,39546,132585,0 +52937,6,43059,132552,0 +52938,4,39544,132503,0 +52939,12,44799,135478,0 +52940,8,42837,132964,0 +52941,3,42918,132760,0 +52942,11,42174,135599,0 +52943,11,39847,133522,0 +52944,8,42952,132956,0 +52945,12,41424,135546,0 +52946,4,42962,132515,0 +52947,11,41790,135361,0 +52948,3,43054,132625,0 +52949,6,41164,132539,0 +52950,3,42663,132637,0 +52951,4,41475,132506,0 +52952,7,41255,132606,0 +52953,6,43082,132561,0 +52954,4,40090,132506,0 +52955,6,47914,132539,0 +52956,7,41265,132606,0 +52957,15,43118,134553,0 +52958,0,42764,133404,0 +52959,0,42722,133117,0 +52960,0,44903,133132,0 +52961,11,43246,135671,0 +52962,6,41480,132542,0 +52963,4,41476,132506,0 +52964,11,41118,135318,0 +52965,11,41390,135319,0 +52966,11,41389,135320,0 +52967,11,39570,135332,0 +52968,11,39572,135333,0 +52969,11,39571,135334,0 +52970,11,41628,132411,0 +52971,11,41629,132412,0 +52972,11,41630,132413,0 +52973,11,39576,132438,0 +52974,11,39577,132439,0 +52975,11,39578,132440,0 +52976,11,39579,133517,0 +52977,11,45769,133518,0 +52978,11,39581,133519,0 +52979,11,39582,133507,0 +52980,11,39583,133508,0 +52981,11,39584,133509,0 +52982,4,41474,132506,0 +52983,6,41478,132542,0 +52984,7,41253,132606,0 +52985,6,41482,132542,0 +52986,6,40631,132587,0 +52987,4,40630,132509,0 +52988,7,41250,132615,0 +52989,7,40492,132601,0 +52990,7,40494,132601,0 +52991,7,40489,132612,0 +52992,3,39655,132749,0 +52993,3,39657,132750,0 +52994,3,39658,132751,0 +52995,11,39673,135145,0 +52996,11,39678,135412,0 +52997,11,39679,135145,0 +52998,6,21183,132549,0 +52999,6,39222,132573,0 +53000,6,39699,132583,0 +53001,4,39700,132504,0 +53002,4,39701,132499,0 +53003,4,39702,132515,0 +53004,4,39703,132508,0 +53005,7,40496,132618,0 +53006,7,40495,132601,0 +53007,12,41421,135547,0 +53008,8,45870,132959,0 +53009,8,43427,132962,0 +53010,8,43428,132951,0 +53011,8,43429,132951,0 +53012,7,40490,132612,0 +53013,7,40497,132601,0 +53014,7,40493,132614,0 +53015,7,40491,132612,0 +53016,6,40502,132562,0 +53017,8,44386,132965,0 +53018,8,45627,132959,0 +53019,8,45877,132959,0 +53020,8,43441,132959,0 +53021,11,45798,133063,0 +53022,11,37063,135673,0 +53023,15,41657,133402,0 +53024,12,39991,132330,0 +53025,12,39992,132330,0 +53026,12,41459,135646,0 +53027,12,39997,132330,0 +53028,12,39998,132410,0 +53029,12,39999,132330,0 +53030,12,44586,135646,0 +53031,12,40002,132330,0 +53032,12,40003,135654,0 +53033,12,16758,132402,0 +53034,12,40005,132330,0 +53035,6,43442,132587,0 +53036,3,39824,135015,0 +53037,0,37894,133132,0 +53038,4,40507,132497,0 +53039,4,40515,132516,0 +53040,4,40513,132511,0 +53041,6,42332,132548,0 +53042,11,39957,135379,0 +53043,3,43448,132684,0 +53044,12,41430,135631,0 +53045,6,39899,132566,0 +53046,12,43491,135477,0 +53047,1,45856,135067,0 +53048,5,43451,134667,0 +53049,0,45858,133071,0 +53050,5,43453,134599,0 +53051,3,44388,132737,0 +53052,3,45881,132629,0 +53053,3,42737,132722,0 +53054,15,42562,134549,0 +53055,11,40899,135193,0 +53056,7,41259,132615,0 +53057,13,40865,134974,0 +53058,6,42803,132585,0 +53059,6,45876,132547,0 +53060,13,42406,134982,0 +53061,1,45873,135056,0 +53062,3,30311,132633,0 +53063,8,30326,132945,0 +53064,0,41200,133077,0 +53065,5,30313,134667,0 +53066,1,30314,135060,0 +53067,5,45867,134681,0 +53068,8,41203,132949,0 +53069,0,42194,133132,0 +53070,5,41205,134599,0 +53071,1,40069,135033,0 +53072,3,41207,132684,0 +53073,4,41477,132509,0 +53074,6,41481,132587,0 +53075,1,45882,135045,0 +53076,11,40370,135567,0 +53077,4,41165,132503,0 +53078,6,41167,132585,0 +53079,7,41257,132618,0 +53080,7,41262,132618,0 +53081,1,43476,135032,0 +53082,4,40509,132497,0 +53083,4,40508,132492,0 +53084,4,40512,132511,0 +53085,4,40514,132511,0 +53086,11,44823,135679,0 +53087,11,40369,135191,0 +53088,12,45738,135671,0 +53089,3,45868,132738,0 +53090,6,40500,132579,0 +53091,1,45865,135066,0 +53092,6,42328,132587,0 +53093,6,40501,132539,0 +53094,0,43842,133073,0 +53095,9,38547,133762,0 +53096,12,43916,135484,0 +53097,11,39974,135637,0 +53098,8,32423,132962,0 +53099,8,41218,132949,0 +53100,0,42195,133132,0 +53101,5,41220,134599,0 +53102,1,32477,135033,0 +53103,3,41222,132684,0 +53104,8,41189,132953,0 +53105,3,41190,132716,0 +53106,5,41191,134587,0 +53107,1,45872,135056,0 +53108,15,41454,134132,0 +53109,11,41414,135384,0 +53110,0,44608,133160,0 +53111,4,40516,132511,0 +53112,15,41453,134102,0 +53113,3,45875,132743,0 +53114,5,45880,134678,0 +53115,5,43497,134638,0 +53116,5,43500,134607,0 +53117,1,45863,135060,0 +53118,0,45874,133155,0 +53119,6,42331,132548,0 +53120,6,42329,132587,0 +53121,5,45862,134694,0 +53122,11,41416,135384,0 +53123,4,40511,132515,0 +53124,5,45879,134667,0 +53125,6,47479,132548,0 +53126,13,40867,134976,0 +53127,1,43511,135060,0 +53128,0,45871,132767,0 +53130,11,40937,135675,0 +53132,11,43098,135676,0 +53134,11,40923,133526,0 +53136,12,40859,135506,0 +53138,11,40922,132447,0 +53140,11,40366,135566,0 +53141,0,44840,133160,0 +53142,8,43523,132953,0 +53143,4,43524,132509,0 +53144,4,43522,132511,0 +53145,8,43527,132949,0 +53146,15,40783,134542,0 +53147,11,41555,135189,0 +53148,12,43915,135483,0 +53149,11,45804,132451,0 +53150,7,43529,132614,0 +53152,4,42649,132492,0 +53153,11,43531,133065,0 +53154,0,44884,133125,0 +53155,11,43036,135375,0 +53156,0,44896,133117,0 +53157,0,44566,133129,0 +53158,6,42334,132548,0 +53159,5,41223,134599,0 +53160,8,43435,132965,0 +53161,13,40862,134975,0 +53162,12,43543,133572,0 +53163,8,43436,132959,0 +53164,4,42738,132515,0 +53165,3,41247,132740,0 +53166,8,40576,132963,0 +53167,0,38233,133124,0 +53168,5,40265,134693,0 +53169,1,38177,135053,0 +53170,1,37898,135043,0 +53171,3,38163,132740,0 +53172,8,38165,132963,0 +53173,0,41933,133124,0 +53174,5,38116,134693,0 +53175,1,41232,135053,0 +53176,5,41182,134587,0 +53177,11,40874,134294,0 +53178,11,40875,134294,0 +53179,11,41066,135369,0 +53180,11,42068,133041,0 +53181,11,42070,132393,0 +53182,11,42072,135593,0 +53183,11,42073,135574,0 +53184,11,42067,133483,0 +53185,11,42074,135271,0 +53186,11,42075,135593,0 +53187,11,42076,135665,0 +53188,11,42077,135662,0 +53189,12,42071,135539,0 +53190,11,42078,133729,0 +53191,15,42079,133738,0 +53192,15,42092,133744,0 +53193,11,42081,133041,0 +53194,11,42082,132394,0 +53195,11,42083,132400,0 +53196,11,42085,135593,0 +53197,11,42086,135574,0 +53198,11,42080,133483,0 +53199,11,42087,135275,0 +53200,11,42088,135593,0 +53201,11,42090,135642,0 +53202,11,42091,135144,0 +53203,12,42084,135539,0 +53204,0,40480,132767,0 +53205,3,40482,132684,0 +53206,11,40127,135575,0 +53207,5,40481,134599,0 +53208,1,40684,135056,0 +53209,8,40479,132951,0 +53210,7,41272,132606,0 +53211,7,41288,132606,0 +53212,6,41483,132539,0 +53213,12,40191,132392,0 +53214,12,40193,135651,0 +53215,0,47568,133160,0 +53216,3,40484,132737,0 +53217,5,40487,134681,0 +53218,1,40488,135060,0 +53219,8,40485,132962,0 +53220,0,44008,133117,0 +53221,3,40445,132637,0 +53222,5,40447,134667,0 +53223,1,40641,135045,0 +53224,8,41381,132959,0 +53225,0,45810,133160,0 +53226,3,40465,132737,0 +53227,5,40467,134681,0 +53228,1,45811,135060,0 +53229,8,41382,132962,0 +53230,0,45819,132767,0 +53231,3,40455,132684,0 +53232,5,42288,134599,0 +53233,1,40459,135056,0 +53234,8,40456,132951,0 +53235,8,42287,132951,0 +53236,0,40646,133117,0 +53237,3,40474,132637,0 +53238,5,40478,134667,0 +53239,1,40651,135045,0 +53240,8,40473,132959,0 +53241,0,41063,132767,0 +53242,3,40468,132684,0 +53243,5,41384,134599,0 +53244,1,40645,135056,0 +53245,8,41385,132951,0 +53246,0,40451,133117,0 +53247,3,40448,132637,0 +53248,5,40454,134667,0 +53249,1,40453,135045,0 +53250,8,40831,132959,0 +53251,0,46214,133117,0 +53252,3,40460,132637,0 +53253,5,40833,134667,0 +53254,1,40642,135045,0 +53255,8,41383,132959,0 +53256,11,40276,135145,0 +53257,11,40311,135145,0 +53258,12,41948,135616,0 +53259,3,21174,132649,0 +53260,11,42061,135667,0 +53261,11,42065,135411,0 +53262,11,42060,135665,0 +53263,3,41408,132737,0 +53264,3,40870,132660,0 +53265,11,40322,135151,0 +53266,8,44413,132960,0 +53267,0,40327,133119,0 +53268,0,40329,133072,0 +53269,11,40904,133525,0 +53270,5,3837,134639,0 +53271,5,37283,134639,0 +53274,1,37768,135056,0 +53275,11,40920,135644,0 +53276,12,41915,135611,0 +53277,11,42544,135271,0 +53278,11,41929,135291,0 +53279,11,40914,132401,0 +53280,11,42057,135582,0 +53281,11,42064,135126,0 +53282,15,41914,134333,0 +53283,11,41913,133047,0 +53284,0,42481,133136,0 +53285,11,42289,133041,0 +53286,13,40901,134975,0 +53287,4,31364,132497,0 +53288,11,40947,135662,0 +53289,7,40390,132609,0 +53290,11,40392,135291,0 +53291,12,40409,135128,0 +53292,12,40411,135662,0 +53293,12,40412,135662,0 +53294,7,42366,132606,0 +53295,4,42606,132516,0 +53296,6,42607,132582,0 +53297,7,42591,132611,0 +53298,4,42590,132492,0 +53299,6,42592,132568,0 +53300,7,42595,132601,0 +53301,4,42593,132511,0 +53302,6,42594,132549,0 +53303,7,42418,132614,0 +53304,4,44571,132515,0 +53305,6,42417,132562,0 +53306,7,42589,132612,0 +53307,4,42587,132504,0 +53308,6,42588,132560,0 +53309,7,42605,132601,0 +53310,4,42603,132500,0 +53311,6,42604,132548,0 +53312,7,42602,132612,0 +53313,4,42600,132492,0 +53314,6,42601,132563,0 +53315,7,42586,132601,0 +53316,4,42584,132519,0 +53317,6,42585,132548,0 +53318,7,42598,132601,0 +53319,4,42596,132511,0 +53320,6,42597,132548,0 +53321,13,42622,134978,0 +53322,13,42621,134978,0 +53323,13,42620,134982,0 +53324,15,42630,133718,0 +53325,15,42624,135824,0 +53326,15,42563,134550,0 +53327,15,42626,134336,0 +53328,15,42628,134855,0 +53329,11,42617,133456,0 +53330,11,40520,135225,0 +53331,6,30438,132536,0 +53332,1,36932,135032,0 +53333,8,38841,132966,0 +53334,6,35978,132585,0 +53335,1,39065,135034,0 +53336,8,39064,132956,0 +53337,4,36908,132499,0 +53338,11,40563,135131,0 +53339,15,40565,133739,0 +53340,3,40585,132745,0 +53341,3,36236,132745,0 +53342,5,38786,134637,0 +53343,11,42225,135348,0 +53344,11,42348,135601,0 +53345,12,42220,135545,0 +53346,11,42218,133534,0 +53347,11,42203,135569,0 +53348,11,42219,135391,0 +53349,8,43107,132956,0 +53350,13,41648,134977,0 +53351,11,43116,135192,0 +53352,11,42224,135669,0 +53353,11,36716,135373,0 +53354,9,39191,133768,0 +53355,11,40607,135592,0 +53356,11,40608,135592,0 +53357,11,40616,135129,0 +53358,12,40612,135467,0 +53359,9,38179,133770,0 +53360,11,44593,135643,0 +53361,11,40654,135271,0 +53362,11,40655,135271,0 +53363,11,40656,135271,0 +53364,11,40657,133489,0 +53365,11,40662,133489,0 +53366,11,40661,133489,0 +53367,11,40660,133489,0 +53368,11,40663,135131,0 +53369,11,40664,135131,0 +53370,11,40665,135131,0 +53371,11,40666,135131,0 +53372,11,40678,135131,0 +53373,11,40668,135131,0 +53374,11,40669,135131,0 +53375,11,40671,135131,0 +53376,11,40673,135131,0 +53377,11,40677,135131,0 +53378,11,40675,135131,0 +53379,11,40676,135131,0 +53380,11,40716,135131,0 +53381,11,40750,135145,0 +53382,11,40751,135145,0 +53383,11,40752,135131,0 +53384,11,40754,135637,0 +53385,11,40755,135131,0 +53386,11,40760,135131,0 +53387,11,40778,135131,0 +53388,11,40780,135131,0 +53389,11,40784,135131,0 +53390,11,40800,135131,0 +53391,11,40821,135145,0 +53392,11,40828,135131,0 +53393,11,40863,135277,0 +53394,13,45817,134978,0 +53395,11,40889,135131,0 +53396,7,43425,132601,0 +53397,11,39841,135814,0 +53402,5,40988,134667,0 +53404,8,40989,132949,0 +53406,6,40990,132549,0 +53407,5,39313,134655,0 +53408,6,42843,132550,0 +53409,4,42844,132504,0 +53410,8,40998,132951,0 +53411,6,40997,132560,0 +53412,6,42857,132562,0 +53413,4,42858,132495,0 +53414,0,45844,133140,0 +53415,8,41014,132949,0 +53416,0,45802,133131,0 +53417,0,45801,133134,0 +53418,8,41021,132959,0 +53419,8,41024,132959,0 +53420,0,44092,133111,0 +53421,8,41038,132944,0 +53422,0,41037,133074,0 +53423,8,41036,132939,0 +53424,6,41033,132545,0 +53425,3,44595,132743,0 +53426,3,43455,132743,0 +53427,4,43414,132518,0 +53428,7,43413,132618,0 +53429,3,45937,132742,0 +53430,4,44103,132492,0 +53431,7,44102,132611,0 +53432,3,44104,132716,0 +53433,7,41045,132606,0 +53434,4,41044,132492,0 +53435,3,41047,132686,0 +53436,4,41048,132492,0 +53437,7,41049,132606,0 +53438,11,41057,135145,0 +53439,11,41070,135131,0 +53440,11,41071,132392,0 +53441,11,41072,135325,0 +53442,11,41073,135145,0 +53443,11,41074,135145,0 +53444,8,38139,132963,0 +53445,6,38194,132584,0 +53446,6,40568,132590,0 +53447,8,40569,132963,0 +53448,5,38124,134584,0 +53449,3,38228,132738,0 +53450,11,41279,133483,0 +53451,11,41280,132395,0 +53452,11,41282,132395,0 +53453,12,44573,135610,0 +53454,12,41291,135493,0 +53455,12,41292,135493,0 +53456,12,41293,135493,0 +53457,11,41296,133483,0 +53458,11,41298,133483,0 +53459,13,41300,134955,0 +53460,13,41301,134955,0 +53461,13,41303,134955,0 +53462,13,40895,134955,0 +53463,13,41306,134955,0 +53464,11,41307,135412,0 +53465,11,41309,135412,0 +53466,11,41312,135412,0 +53467,11,41313,135412,0 +53468,11,41314,135412,0 +53469,11,41317,132395,0 +53470,11,41320,132395,0 +53471,11,41321,132395,0 +53472,11,41322,132395,0 +53473,11,41323,132395,0 +53474,11,41324,132395,0 +53475,11,41325,132395,0 +53476,11,41326,132395,0 +53477,11,41327,132395,0 +53478,11,41328,132395,0 +53479,11,41331,135412,0 +53480,11,41336,135145,0 +53481,11,41338,135145,0 +53482,11,41339,135145,0 +53483,11,41342,135145,0 +53484,11,41343,135145,0 +53485,11,41344,135145,0 +53486,11,41345,135145,0 +53487,11,41347,135145,0 +53488,11,41349,135145,0 +53489,11,41351,132392,0 +53490,11,41352,132392,0 +53491,11,41353,132392,0 +53492,11,41354,132392,0 +53493,11,41355,132392,0 +53494,11,41356,132392,0 +53495,11,41357,132392,0 +53496,11,41358,132392,0 +53497,11,41359,135145,0 +53498,11,41464,135131,0 +53499,14,41489,132382,0 +53500,12,39876,135475,0 +53501,7,42645,132612,0 +53502,3,46088,132738,0 +53503,15,42176,134541,0 +53504,11,42177,132449,0 +53505,9,36740,133760,0 +53506,3,43935,132644,0 +53507,5,43927,134630,0 +53508,0,42398,133072,0 +53509,5,41404,134679,0 +53510,3,42396,132722,0 +53511,5,43921,134633,0 +53512,3,41525,132639,0 +53513,0,44607,133111,0 +53514,3,41410,132747,0 +53515,5,41399,134693,0 +53516,8,43549,132962,0 +53517,11,42823,135603,0 +53518,12,42178,135626,0 +53519,5,46074,134681,0 +53520,6,45845,132547,0 +53521,7,8393,132611,0 +53522,8,41550,132963,0 +53523,11,42179,135681,0 +53524,4,42699,132511,0 +53525,7,42638,132614,0 +53526,3,8433,132725,0 +53527,5,35496,134628,0 +53528,5,46127,134599,0 +53529,3,41580,132648,0 +53530,3,44156,132647,0 +53531,8,46094,132960,0 +53532,5,46128,134601,0 +53533,3,41828,132643,0 +53534,11,42180,135188,0 +53535,12,41668,135476,0 +53536,0,46577,133071,0 +53537,4,46105,132497,0 +53538,5,46093,134667,0 +53539,0,46216,133116,0 +53540,8,46119,132951,0 +53541,11,47435,135180,0 +53542,9,45886,133758,0 +53543,0,46506,133134,0 +53544,5,46092,134683,0 +53545,9,45885,133762,0 +53546,11,42183,135337,0 +53547,9,45339,133767,0 +53548,5,46106,134628,0 +53549,11,41873,133528,0 +53550,8,46076,132963,0 +53551,1,12521,135042,0 +53552,4,6170,132492,0 +53553,6,23582,132589,0 +53554,11,43952,132442,0 +53555,11,41598,135187,0 +53556,11,44767,135313,0 +53557,5,8842,134601,0 +53558,0,42994,133071,0 +53559,4,46114,132492,0 +53560,11,42184,135186,0 +53561,1,46120,135056,0 +53562,7,46085,132616,0 +53563,6,44966,132551,0 +53564,8,46103,132959,0 +53565,4,46089,132511,0 +53566,6,45918,132547,0 +53567,4,42651,132502,0 +53568,6,45910,132571,0 +53569,4,46115,132494,0 +53570,6,46116,132562,0 +53571,4,46112,132502,0 +53572,6,42637,132539,0 +53573,4,46102,132518,0 +53574,6,45914,132561,0 +53575,4,46101,132514,0 +53576,6,44951,132549,0 +53577,4,46090,132504,0 +53578,6,46091,132550,0 +53579,4,46087,132492,0 +53580,7,46095,132601,0 +53581,0,46078,133124,0 +53582,15,42185,134079,0 +53583,6,42701,132539,0 +53584,1,46348,135051,0 +53585,3,46099,132744,0 +53586,1,46353,135054,0 +53587,3,46130,132684,0 +53588,7,42650,132618,0 +53589,11,42193,135677,0 +53590,7,43584,132601,0 +53591,4,42702,132492,0 +53592,3,46080,132740,0 +53593,6,45911,132539,0 +53594,4,46097,132508,0 +53595,5,30788,134693,0 +53596,5,41607,134662,0 +53597,11,41615,135411,0 +53598,3,41616,132741,0 +53599,3,39676,132639,0 +53600,11,41620,135340,0 +53601,11,41619,133040,0 +53602,1,46131,135056,0 +53603,6,41994,132585,0 +53604,1,46349,135045,0 +53605,1,46355,135058,0 +53606,11,44893,135347,0 +53607,11,42713,132432,0 +53608,11,41635,133054,0 +53609,7,46100,132614,0 +53610,6,45909,132573,0 +53611,11,42188,135383,0 +53612,1,46096,135050,0 +53613,3,46082,132746,0 +53614,11,42189,135674,0 +53615,12,43834,135496,0 +53616,4,42636,132515,0 +53617,3,46133,132658,0 +53618,11,47438,135678,0 +53619,1,46110,135038,0 +53620,8,46079,132954,0 +53621,3,42143,132737,0 +53622,8,42299,132962,0 +53623,0,47594,133160,0 +53624,5,42298,134681,0 +53625,1,42300,135060,0 +53626,3,42306,132637,0 +53627,8,42307,132959,0 +53628,0,44050,133117,0 +53629,5,42309,134667,0 +53630,1,42310,135045,0 +53631,3,42698,132637,0 +53632,8,43749,132959,0 +53633,0,43750,133117,0 +53634,5,43751,134667,0 +53635,1,43752,135045,0 +53636,3,42631,132737,0 +53637,8,42632,132962,0 +53638,0,45018,133160,0 +53639,11,41653,132395,0 +53640,5,42634,134681,0 +53641,1,45020,135060,0 +53642,3,42290,132684,0 +53643,8,42291,132951,0 +53644,0,42879,132767,0 +53645,5,42295,134599,0 +53646,1,42294,135056,0 +53647,0,45797,132767,0 +53648,3,42639,132743,0 +53649,8,43698,132959,0 +53650,0,44515,133156,0 +53651,5,43618,134667,0 +53652,1,43617,135045,0 +53653,11,41663,135563,0 +53654,11,41691,132395,0 +53655,11,41693,132395,0 +53656,0,43616,133117,0 +53657,3,42640,132684,0 +53658,11,41740,135274,0 +53659,8,42641,132951,0 +53660,0,44020,132767,0 +53661,5,42643,134599,0 +53662,1,42644,135056,0 +53663,8,42302,132951,0 +53664,0,42305,132767,0 +53665,5,42303,134599,0 +53666,3,42313,132684,0 +53667,1,42304,135056,0 +53668,3,43620,132637,0 +53669,8,43621,132959,0 +53670,0,46215,133117,0 +53671,5,43623,134667,0 +53672,1,43624,135045,0 +53673,0,46759,133117,0 +53674,5,29744,134613,0 +53675,11,41801,133483,0 +53676,1,29726,135058,0 +53677,6,41803,132584,0 +53678,8,22554,132956,0 +53679,7,41805,132609,0 +53680,6,41806,132554,0 +53681,8,17423,132953,0 +53682,0,34565,133147,0 +53683,0,41811,133111,0 +53684,7,41814,132600,0 +53685,6,41817,132566,0 +53686,1,8323,135061,0 +53687,8,8848,132952,0 +53688,1,41835,135054,0 +53689,0,17593,0,0 +53690,3,41861,132744,0 +53691,0,39275,132767,0 +53692,11,41866,135145,0 +53693,11,41867,135379,0 +53694,3,41917,132746,0 +53695,0,41918,133137,0 +53696,1,41919,135049,0 +53697,6,16112,132548,0 +53698,6,12137,132551,0 +53699,8,41926,132959,0 +53701,0,15550,133076,0 +53702,11,41974,132433,0 +53703,11,41957,135280,0 +53704,6,41959,132549,0 +53705,8,12454,132944,0 +53706,4,41962,132497,0 +53707,11,41965,133486,0 +53708,3,41967,132642,0 +53709,6,42519,132539,0 +53710,6,23222,132550,0 +53711,11,41973,135274,0 +53712,11,41975,135412,0 +53713,11,41976,135412,0 +53714,11,41978,135412,0 +53715,11,41980,135412,0 +53716,11,41981,135412,0 +53717,11,41983,135412,0 +53718,11,41999,135131,0 +53719,11,42000,135145,0 +53720,11,42001,135145,0 +53721,11,42042,132395,0 +53722,11,42044,135131,0 +53723,11,42049,135145,0 +53724,12,43384,135493,0 +53725,12,34102,135493,0 +53726,3,42100,132643,0 +53727,7,4063,132610,0 +53728,5,3977,134597,0 +53729,11,42125,135280,0 +53730,11,42162,135271,0 +53731,3,45972,132740,0 +53732,8,45973,132963,0 +53733,0,47593,133124,0 +53734,5,45971,134693,0 +53735,1,45970,135053,0 +53736,0,42279,133149,0 +53737,5,42316,134672,0 +53738,5,42325,134668,0 +53739,5,41538,134660,0 +53740,5,42317,134697,0 +53741,5,43424,134614,0 +53742,11,41874,135507,0 +53743,11,42336,135416,0 +53744,11,42337,135640,0 +53745,11,42340,132395,0 +53746,11,42341,135638,0 +53747,11,42420,135325,0 +53748,11,42421,132395,0 +53749,6,40499,132585,0 +53750,8,42492,132962,0 +53751,11,42504,135273,0 +53752,11,42514,135274,0 +53753,11,43350,135638,0 +53754,11,42551,132395,0 +53755,11,40075,135145,0 +53756,11,42555,133491,0 +53757,11,42556,133491,0 +53758,4,41041,132492,0 +53759,6,41896,132539,0 +53760,11,42655,135646,0 +53761,11,42660,135646,0 +53762,11,43903,132392,0 +53763,11,42704,132395,0 +53764,11,42705,132395,0 +53765,0,17722,133149,0 +53766,11,43263,132454,0 +53767,11,43267,135688,0 +53768,8,43269,132964,0 +53769,5,43284,134609,0 +53770,0,44683,133171,0 +53771,3,43286,132686,0 +53772,0,44879,133160,0 +53773,11,43259,135384,0 +53774,5,43249,134636,0 +53775,6,43251,132565,0 +53776,5,43254,134663,0 +53777,1,43258,135067,0 +53778,8,43261,132962,0 +53779,11,42748,132414,0 +53780,11,42754,135128,0 +53781,12,44885,135542,0 +53782,12,44723,135622,0 +53783,12,44724,135503,0 +53784,3,42771,132665,0 +53785,6,41901,132536,0 +53786,3,11897,132747,0 +53787,7,12117,132615,0 +53788,8,42778,132944,0 +53789,13,44270,134967,0 +53790,4,42251,132516,0 +53791,6,42784,132541,0 +53792,8,42787,132960,0 +53793,3,25386,132634,0 +53794,8,35980,132946,0 +53795,11,24472,135145,0 +53796,11,42793,135131,0 +53797,11,42807,135274,0 +53798,11,42820,133489,0 +53799,9,42907,133768,0 +53800,11,42909,133045,0 +53801,3,42916,132743,0 +53802,0,39602,133151,0 +53803,11,42979,132395,0 +53804,0,43000,133117,0 +53805,12,43007,135473,0 +53806,7,45748,132614,0 +53807,7,45741,132618,0 +53808,7,45746,132608,0 +53809,7,45744,132601,0 +53810,11,45233,135694,0 +53811,1,45759,135090,0 +53812,7,45753,132607,0 +53813,7,45750,132602,0 +53814,7,45745,132611,0 +53815,7,45743,132612,0 +53816,15,45211,134544,0 +53817,6,45240,132551,0 +53818,11,45232,135396,0 +53819,1,45212,135090,0 +53820,4,45245,132515,0 +53821,6,45239,132552,0 +53822,11,45799,135395,0 +53823,13,44863,134983,0 +53824,11,45224,135196,0 +53825,1,45749,135093,0 +53826,6,45737,132571,0 +53827,6,45238,132592,0 +53828,3,45766,132734,0 +53829,4,45241,132492,0 +53830,13,44865,134984,0 +53831,6,45740,132562,0 +53832,1,45735,135084,0 +53833,5,45228,134669,0 +53834,6,45742,132558,0 +53835,4,45242,132497,0 +53836,3,45222,132737,0 +53837,4,48291,132517,0 +53838,5,45227,134650,0 +53839,3,45755,132716,0 +53840,5,47778,134667,0 +53841,11,45209,135694,0 +53842,11,45776,135378,0 +53843,5,45220,134697,0 +53844,3,45226,132737,0 +53845,3,45223,132737,0 +53846,12,45265,135510,0 +53847,3,45221,132639,0 +53848,11,45095,135190,0 +53849,13,45204,134985,0 +53850,11,45360,135400,0 +53851,15,39420,134542,0 +53852,5,45218,134608,0 +53853,3,45335,132690,0 +53854,4,45244,132511,0 +53855,4,45243,132516,0 +53856,5,45219,134621,0 +53857,1,45752,135092,0 +53858,11,45346,133537,0 +53859,4,45247,132511,0 +53860,3,9091,132643,0 +53861,5,9092,134608,0 +53862,0,43213,133161,0 +53863,8,18853,132953,0 +53864,1,43346,135054,0 +53865,7,35236,132600,0 +53866,3,43218,132644,0 +53867,5,9685,134606,0 +53868,8,31883,132943,0 +53869,0,43221,133162,0 +53870,3,35080,132720,0 +53871,0,43230,133132,0 +53872,8,43343,132949,0 +53873,1,43227,135045,0 +53874,6,43347,132554,0 +53875,4,44550,132506,0 +53876,8,43235,132955,0 +53877,3,22574,132722,0 +53878,0,43237,133072,0 +53879,8,43331,132960,0 +53880,1,43250,135054,0 +53881,6,35880,132536,0 +53882,7,43255,132613,0 +53883,6,43262,132536,0 +53884,3,21145,132747,0 +53885,5,21197,134697,0 +53886,4,43345,132502,0 +53887,8,35982,132956,0 +53888,1,36933,135054,0 +53889,6,43288,132536,0 +53890,7,43283,132613,0 +53891,8,43349,132963,0 +53892,8,44847,132985,0 +53893,0,49684,133194,0 +53894,3,44846,132757,0 +53895,5,44848,134703,0 +53896,1,45661,135087,0 +53897,8,44805,132983,0 +53898,0,45684,133192,0 +53899,3,44800,132756,0 +53900,5,44810,134702,0 +53901,1,45884,135085,0 +53902,12,43312,135616,0 +53903,8,45026,132982,0 +53904,0,45680,133191,0 +53905,3,45025,132733,0 +53906,5,45027,134674,0 +53907,1,45682,135084,0 +53908,8,45014,132984,0 +53909,11,43313,135187,0 +53910,0,45669,133193,0 +53911,11,43315,135661,0 +53912,3,45046,132734,0 +53913,5,45021,134675,0 +53914,1,45672,135086,0 +53915,8,45426,132988,0 +53916,0,45434,133082,0 +53917,3,45424,132731,0 +53918,5,45428,134652,0 +53919,1,45436,135092,0 +53920,8,45128,132981,0 +53921,0,45663,133190,0 +53922,3,45123,132730,0 +53923,5,45129,134651,0 +53924,5,45130,134651,0 +53925,1,45667,135083,0 +53926,8,45124,132989,0 +53927,0,45674,133083,0 +53928,3,45511,132709,0 +53929,5,45125,134623,0 +53930,1,45676,135093,0 +53931,8,45121,132987,0 +53932,0,45449,133081,0 +53933,3,45119,132708,0 +53934,5,45122,134622,0 +53935,1,45126,135089,0 +53936,8,44975,132986,0 +53937,11,43355,132455,0 +53938,0,45770,133195,0 +53939,3,44979,132707,0 +53940,5,44968,134621,0 +53941,1,44978,135088,0 +53942,11,43645,135650,0 +53943,12,43386,135507,0 +53944,0,43514,133172,0 +53945,0,45168,133078,0 +53946,0,43517,133069,0 +53947,0,43516,133101,0 +53948,0,44680,133175,0 +53949,0,45165,133072,0 +53950,6,43478,132554,0 +53951,1,22321,135054,0 +53952,3,43626,132629,0 +53953,11,43638,135381,0 +53954,8,38410,132963,0 +53955,11,43644,133483,0 +53956,11,43649,135642,0 +53957,0,43653,133119,0 +53958,8,43654,132940,0 +53959,11,43655,132409,0 +53960,3,27930,132749,0 +53961,3,43660,132689,0 +53962,8,43672,132956,0 +53963,8,43671,132951,0 +53964,8,43673,132949,0 +53965,8,43675,132949,0 +53966,3,35443,132747,0 +53967,3,43681,132759,0 +53968,3,8249,132666,0 +53969,8,3416,132944,0 +53970,8,43686,132945,0 +53971,8,43689,132955,0 +53972,8,2578,132950,0 +53973,0,25898,133126,0 +53974,0,24448,133076,0 +53975,7,29238,132605,0 +53976,7,43700,132611,0 +53977,4,43704,132498,0 +53978,9,40425,133772,0 +53979,12,43708,135616,0 +53980,11,43711,135274,0 +53981,11,43712,133489,0 +53982,6,43172,132559,0 +53983,0,43719,133884,0 +53984,0,43721,133884,0 +53985,0,43723,133884,0 +53986,0,43724,133884,0 +53987,7,43725,132613,0 +53988,7,43726,132616,0 +53989,4,43728,132512,0 +53990,4,43729,132511,0 +53991,4,43731,132514,0 +53992,4,43732,132512,0 +53993,11,43736,135389,0 +53994,6,30011,132571,0 +53995,5,3882,134641,0 +53996,1,40211,135049,0 +53997,3,44431,132629,0 +53998,11,43754,135170,0 +53999,3,44432,132723,0 +54000,3,44430,132666,0 +54001,12,43774,135474,0 +54002,0,23591,134085,0 +54003,11,43785,135321,0 +54004,10,43390,135019,0 +54005,13,43800,134980,0 +54006,1,43801,135054,0 +54007,11,43830,133527,0 +54008,11,43810,135145,0 +54009,11,43811,135325,0 +54010,11,43812,133514,0 +54011,11,43813,135639,0 +54012,5,43814,134677,0 +54013,11,43820,135412,0 +54014,1,43823,135041,0 +54015,4,38115,132500,0 +54016,11,43828,132459,0 +54017,11,43831,133065,0 +54018,12,43836,135629,0 +54019,11,43838,135321,0 +54020,0,43843,133074,0 +54021,11,43846,135662,0 +54022,0,45167,133145,0 +54023,11,43858,135186,0 +54024,11,43859,135271,0 +54025,3,43861,132684,0 +54026,9,43867,133772,0 +54027,11,43866,133533,0 +54028,12,43880,135493,0 +54029,3,43902,132742,0 +54030,0,43908,133133,0 +54031,5,43907,134694,0 +54032,0,43906,133124,0 +54033,3,43938,132746,0 +54034,5,43940,134686,0 +54035,0,43939,133074,0 +54037,11,43948,135124,0 +54038,11,43949,135124,0 +54039,0,41147,133077,0 +54040,10,43391,135019,0 +54041,11,43951,135185,0 +54042,1,25009,135057,0 +54043,11,43994,135639,0 +54044,12,43993,135464,0 +54045,1,17285,135054,0 +54046,5,44002,134587,0 +54047,0,43987,133076,0 +54048,6,43988,132583,0 +54049,0,43974,133120,0 +54050,4,5327,132500,0 +54051,7,24707,132612,0 +54052,6,42513,132586,0 +54053,8,16682,132937,0 +54054,4,35765,132502,0 +54055,6,28644,132544,0 +54056,0,44021,133152,0 +54057,5,44022,134667,0 +54058,4,44028,132500,0 +54059,4,37709,132505,0 +54060,13,44023,134955,0 +54061,13,44024,134955,0 +54062,13,44026,134955,0 +54063,5,31575,134592,0 +54064,12,44118,135466,0 +54065,11,44116,135661,0 +54066,11,44117,135652,0 +54067,4,30787,132500,0 +54068,1,29091,135055,0 +54069,11,44292,135673,0 +54070,15,44041,134542,0 +54071,15,44042,134540,0 +54072,12,44046,135124,0 +54073,12,44047,135124,0 +54074,3,44129,132721,0 +54075,0,44131,133127,0 +54076,6,32864,132564,0 +54077,1,44068,135054,0 +54078,1,44070,135049,0 +54079,5,44074,134594,0 +54080,3,34540,132751,0 +54081,11,44085,135131,0 +54082,0,30588,133155,0 +54083,1,44163,135035,0 +54084,4,44166,132511,0 +54085,8,44164,132949,0 +54086,0,44881,133131,0 +54087,1,44183,135061,0 +54088,3,44178,132722,0 +54089,4,44192,132512,0 +54090,6,44187,132539,0 +54091,7,44186,132606,0 +54092,8,44185,132949,0 +54093,1,44206,135055,0 +54094,3,44199,132639,0 +54095,4,44208,132511,0 +54096,5,37772,134660,0 +54097,6,44200,132551,0 +54098,7,38306,132606,0 +54099,8,44201,132951,0 +54100,4,44224,132522,0 +54101,6,44219,132547,0 +54102,11,44148,132395,0 +54103,11,44150,132395,0 +54104,11,44152,132395,0 +54105,11,44153,132395,0 +54106,11,44155,132395,0 +54107,11,44213,135145,0 +54108,11,44233,135638,0 +54109,11,44236,135277,0 +54110,11,44250,132395,0 +54111,3,10032,132647,0 +54112,0,42818,133132,0 +54114,11,44289,135638,0 +54115,4,44304,132501,0 +54116,8,12757,132940,0 +54117,1,44307,135055,0 +54118,0,45180,132138,0 +54119,5,44312,134653,0 +54120,15,44308,134543,0 +54121,7,27931,132606,0 +54122,3,44557,132648,0 +54123,3,44319,132718,0 +54124,3,44556,132629,0 +54125,3,26517,132737,0 +54126,11,44370,133483,0 +54127,11,44375,135388,0 +54128,12,44420,135493,0 +54129,3,44424,132745,0 +54130,10,44433,135026,0 +54131,10,44434,135026,0 +54132,10,44435,135026,0 +54133,10,44436,135026,0 +54134,10,43126,135026,0 +54135,10,44438,135026,0 +54136,10,43121,135026,0 +54137,10,43123,135026,0 +54138,10,44038,135026,0 +54139,3,35034,132630,0 +54140,0,45164,133133,0 +54141,11,44470,132408,0 +54142,1,44484,135056,0 +54143,8,44478,132960,0 +54144,5,44479,134692,0 +54145,1,44482,135056,0 +54146,11,44490,134294,0 +54147,11,44491,134294,0 +54148,10,43127,135026,0 +54149,11,44497,135638,0 +54150,11,44498,135274,0 +54151,1,30062,135035,0 +54152,1,30589,135051,0 +54153,11,44546,135369,0 +54154,11,44548,135145,0 +54155,3,45963,132633,0 +54156,8,45964,132945,0 +54157,0,45965,133077,0 +54158,5,45966,134667,0 +54159,1,45967,135060,0 +54160,8,45993,132962,0 +54161,0,45998,133132,0 +54162,5,47129,134599,0 +54163,1,45996,135043,0 +54164,3,45997,132718,0 +54165,8,45974,132949,0 +54166,0,45975,133132,0 +54167,5,46107,134599,0 +54168,1,45976,135033,0 +54169,3,45978,132684,0 +54170,3,46009,132740,0 +54171,8,46010,132963,0 +54172,5,46008,134693,0 +54173,1,46012,135053,0 +54174,0,46224,133124,0 +54175,8,45958,132962,0 +54176,0,45959,133132,0 +54177,5,45960,134599,0 +54178,1,45961,135043,0 +54179,3,45962,132718,0 +54180,3,46017,132633,0 +54181,8,46109,132945,0 +54182,0,46507,133077,0 +54183,5,46022,134667,0 +54184,1,46023,135060,0 +54185,8,46029,132949,0 +54186,0,46188,133132,0 +54187,5,46032,134599,0 +54188,1,46033,135033,0 +54189,3,46035,132684,0 +54190,1,45953,135050,0 +54191,0,45954,133076,0 +54192,8,45955,132953,0 +54193,3,45956,132716,0 +54194,5,45957,134587,0 +54195,11,44690,135131,0 +54196,11,44691,135279,0 +54197,8,44697,132962,0 +54198,1,44698,135047,0 +54199,8,42547,132945,0 +54200,1,44699,135064,0 +54201,1,44700,135056,0 +54202,13,44710,134947,0 +54203,0,44711,133069,0 +54204,0,45803,133118,0 +54205,7,45289,132613,0 +54206,8,45711,132982,0 +54207,0,45489,133694,0 +54208,11,44959,132444,0 +54209,11,45294,135693,0 +54210,6,45732,132573,0 +54211,0,45721,133190,0 +54212,0,45764,133193,0 +54213,6,45278,132555,0 +54214,6,45332,132551,0 +54215,6,45349,132585,0 +54216,11,45318,135583,0 +54217,1,45760,135123,0 +54218,7,45358,132605,0 +54219,3,45327,132718,0 +54220,12,45491,135549,0 +54221,11,44960,132446,0 +54222,13,44869,134983,0 +54223,4,45356,132492,0 +54224,4,45765,132511,0 +54225,7,45762,132601,0 +54226,11,45345,133524,0 +54227,1,45731,135084,0 +54228,4,45590,132515,0 +54229,6,45324,132587,0 +54230,11,47605,135698,0 +54231,7,45292,132609,0 +54232,5,45724,134648,0 +54233,1,45704,135088,0 +54234,4,45325,132502,0 +54235,8,45727,132985,0 +54236,7,45347,132616,0 +54237,8,45715,132985,0 +54238,11,44765,134718,0 +54239,7,45723,132603,0 +54240,12,44962,135629,0 +54241,8,45707,132958,0 +54242,0,47433,133134,0 +54243,11,45350,133529,0 +54244,3,45355,132759,0 +54245,12,45485,135511,0 +54246,1,45705,135033,0 +54247,3,45714,132676,0 +54248,5,46488,134696,0 +54249,4,44866,132516,0 +54250,12,45357,135477,0 +54251,11,45595,135197,0 +54252,6,45287,132583,0 +54253,8,45717,132988,0 +54254,11,45492,132447,0 +54255,7,45288,132608,0 +54256,6,45326,132542,0 +54257,8,45716,132986,0 +54258,0,45843,133192,0 +54259,3,45311,132743,0 +54260,6,45729,132559,0 +54261,11,47226,135397,0 +54262,11,44787,135565,0 +54263,0,45722,133194,0 +54264,11,45161,135195,0 +54265,13,45653,134977,0 +54266,0,45713,133191,0 +54267,1,45816,135092,0 +54268,6,44830,132571,0 +54269,4,38080,132515,0 +54270,7,38326,132616,0 +54271,11,44842,135672,0 +54272,11,43539,132451,0 +54273,11,44850,132395,0 +54274,10,44852,135026,0 +54275,11,44855,135575,0 +54276,11,44858,133527,0 +54277,11,44892,132395,0 +54278,0,45779,133023,0 +54279,11,44932,135271,0 +54280,11,45487,135697,0 +54281,0,45783,133023,0 +54282,0,45780,133023,0 +54283,0,45778,133023,0 +54284,0,45782,133023,0 +54285,12,41367,135471,0 +54286,11,44955,135271,0 +54287,0,10954,133023,0 +54288,11,45630,133040,0 +54289,11,45365,133536,0 +54290,11,44971,134296,0 +54291,11,45509,133489,0 +54292,7,45359,132612,0 +54293,1,45757,135086,0 +54294,1,45758,135083,0 +54295,4,45263,132496,0 +54296,0,46205,133194,0 +54297,0,45702,133155,0 +54298,8,45008,132937,0 +54299,11,45011,135133,0 +54300,7,44244,132617,0 +54301,15,45030,134110,0 +54302,9,45042,133757,0 +54303,9,45043,133760,0 +54304,9,45048,133760,0 +54305,9,45050,133754,0 +54306,11,45059,135640,0 +54307,11,45060,132395,0 +54308,7,45404,132614,0 +54309,1,45407,135060,0 +54310,7,45402,132601,0 +54311,7,45399,132601,0 +54312,1,45408,135091,0 +54313,7,45403,132601,0 +54314,7,45405,132614,0 +54315,1,45773,135054,0 +54316,7,45401,132601,0 +54317,7,45400,132612,0 +54318,1,45412,135056,0 +54319,1,45409,135033,0 +54320,3,45283,132633,0 +54321,11,45069,132395,0 +54322,11,45073,132395,0 +54323,11,45087,132395,0 +54324,6,45706,132565,0 +54325,11,45096,135145,0 +54326,12,45111,132395,0 +54327,11,45118,132395,0 +54328,11,45117,132395,0 +54329,11,45150,132395,0 +54330,11,45146,132395,0 +54331,7,45155,132612,0 +54332,6,41406,132583,0 +54333,12,45159,135475,0 +54334,15,45160,134336,0 +54335,7,45184,132608,0 +54336,8,45185,132943,0 +54337,11,45187,135641,0 +54338,11,45188,133514,0 +54339,11,45189,135224,0 +54340,9,45191,133754,0 +54342,11,45308,132395,0 +54343,12,45393,135493,0 +54344,12,45416,135638,0 +54345,12,45445,135621,0 +54346,14,45435,133584,0 +54347,6,46053,132587,0 +54348,6,46059,132542,0 +54349,6,46064,132539,0 +54350,6,46044,132585,0 +54351,6,46056,132542,0 +54352,6,46049,132587,0 +54353,6,46041,132585,0 +54354,6,46067,132539,0 +54355,4,46052,132509,0 +54356,4,46058,132506,0 +54357,4,46062,132506,0 +54358,4,46042,132503,0 +54359,4,46054,132506,0 +54360,4,46048,132509,0 +54361,4,46039,132503,0 +54362,4,46065,132506,0 +54363,7,46051,132615,0 +54364,7,46060,132606,0 +54365,7,46063,132606,0 +54366,7,46043,132618,0 +54367,7,46057,132606,0 +54368,7,46047,132615,0 +54369,7,46040,132618,0 +54370,7,46066,132606,0 +54371,12,43383,135493,0 +54372,12,45469,135493,0 +54373,10,45495,135026,0 +54374,12,47595,135473,0 +54375,12,45474,135426,0 +54376,11,45496,133521,0 +54377,11,45497,135638,0 +54378,1,25551,135042,0 +54379,3,37695,132629,0 +54380,5,24075,134653,0 +54381,12,45508,135474,0 +54382,11,45518,132395,0 +54383,11,45526,132395,0 +54384,11,45585,132395,0 +54385,11,45549,132395,0 +54386,11,45544,132395,0 +54387,14,45547,133582,0 +54388,13,45559,132395,0 +54389,11,45560,132395,0 +54390,11,45564,132395,0 +54391,11,45568,132395,0 +54392,11,45569,132395,0 +54393,11,45579,132395,0 +54394,11,45594,132395,0 +54395,11,47311,133696,0 +54396,11,45632,132395,0 +54397,11,45633,132395,0 +54398,11,45634,132395,0 +54399,11,45635,132395,0 +54400,11,45636,132395,0 +54401,11,45637,132395,0 +54402,11,45638,132395,0 +54403,11,45639,132395,0 +54404,11,45640,132395,0 +54405,11,45641,132395,0 +54406,11,45642,132395,0 +54407,11,45643,132395,0 +54408,11,45644,132395,0 +54409,11,45645,132395,0 +54410,11,45646,132395,0 +54411,11,45647,132395,0 +54412,11,45648,132395,0 +54413,11,45649,132395,0 +54414,11,45650,132395,0 +54415,11,45689,135603,0 +54416,11,45890,135605,0 +54417,11,45889,135605,0 +54418,3,45827,132626,0 +54419,4,46068,132506,0 +54420,7,46069,132606,0 +54421,6,46071,132539,0 +54422,11,45887,135225,0 +54423,3,45896,132391,0 +54424,12,46964,135548,0 +54425,11,47158,133698,0 +54426,11,45945,132392,0 +54427,0,46034,132767,0 +54428,0,46037,132767,0 +54429,0,46038,132767,0 +54431,11,46247,132800,0 +54432,11,46260,132795,0 +54433,1,46324,135047,0 +54435,6,46781,132591,0 +54436,12,48216,135486,0 +54437,3,47159,132676,0 +54438,1,47032,135110,0 +54439,6,46784,132591,0 +54440,11,46789,135289,0 +54441,3,47020,132756,0 +54442,3,47028,132758,0 +54443,6,46792,132541,0 +54444,3,12469,132657,0 +54445,3,13907,132679,0 +54446,5,46432,134581,0 +54447,8,29083,132951,0 +54448,1,46436,135058,0 +54449,3,10956,132646,0 +54450,3,8422,132722,0 +54451,3,4588,132724,0 +54452,5,6163,134589,0 +54453,5,6127,134592,0 +54454,0,46442,133152,0 +54455,4,6153,132500,0 +54456,1,18233,135037,0 +54457,6,46445,132537,0 +54458,7,16244,132615,0 +54459,3,30579,132629,0 +54460,4,11712,132508,0 +54461,8,9654,132948,0 +54462,6,40222,132584,0 +54463,5,11713,134681,0 +54464,9,46455,133771,0 +54465,15,46456,133741,0 +54466,11,20214,135346,0 +54467,4,46793,132511,0 +54468,11,46801,133512,0 +54469,0,47037,133097,0 +54470,1,46803,135108,0 +54471,4,46804,132492,0 +54472,0,46514,133661,0 +54473,11,47127,135700,0 +54474,1,46807,135109,0 +54475,1,46809,135055,0 +54476,6,46810,132591,0 +54477,9,36738,133772,0 +54478,3,48222,132659,0 +54479,3,46813,132716,0 +54480,6,48225,132556,0 +54481,15,46817,134559,0 +54482,13,48211,134987,0 +54483,0,47898,133565,0 +54484,3,46978,132635,0 +54485,3,46979,132721,0 +54486,4,47021,132507,0 +54487,13,48212,134988,0 +54488,15,46981,134560,0 +54489,12,46602,135641,0 +54490,11,46982,135699,0 +54491,0,46983,133093,0 +54492,4,45291,132511,0 +54493,11,46985,135288,0 +54494,11,46986,135695,0 +54495,0,46987,133092,0 +54496,0,47173,133094,0 +54498,4,46989,132516,0 +54499,0,48434,133097,0 +54500,0,48436,133097,0 +54501,1,46990,135111,0 +54502,11,46991,135149,0 +54503,11,46992,135290,0 +54504,11,46994,135199,0 +54505,3,46995,132735,0 +54506,6,46996,132579,0 +54507,3,46998,132756,0 +54508,12,48215,135512,0 +54509,11,46999,132470,0 +54510,11,47042,135289,0 +54511,0,47001,133097,0 +54512,4,47002,132513,0 +54513,1,47003,135106,0 +54514,4,47005,132500,0 +54515,9,36918,133772,0 +54516,1,48223,135107,0 +54517,11,47008,135198,0 +54518,12,47010,135632,0 +54519,11,47011,132471,0 +54520,11,47012,135701,0 +54521,11,46916,135145,0 +54522,11,47176,135606,0 +54523,5,47015,134704,0 +54524,8,47016,132990,0 +54525,7,47017,132614,0 +54526,1,47018,135106,0 +54527,5,47022,134704,0 +54528,7,47023,132618,0 +54529,8,47024,132990,0 +54530,5,47025,134704,0 +54531,8,47026,132990,0 +54532,7,47027,132601,0 +54533,5,47029,134648,0 +54534,8,47030,132959,0 +54535,7,47031,132601,0 +54536,5,47177,134676,0 +54537,8,47034,132991,0 +54538,7,47035,132601,0 +54539,5,47160,134676,0 +54540,6,47038,132548,0 +54541,5,47045,134634,0 +54542,8,47044,132973,0 +54543,5,47049,134648,0 +54544,6,47054,132573,0 +54545,7,47055,132601,0 +54546,6,49057,132592,0 +54547,4,47060,132511,0 +54548,5,48224,134685,0 +54549,8,48227,132948,0 +54550,8,48226,132940,0 +54551,7,47062,132608,0 +54552,7,47065,132606,0 +54553,11,47175,135606,0 +54554,11,47606,133521,0 +54555,11,47742,133523,0 +54556,3,45104,132733,0 +54557,8,46883,132982,0 +54558,0,47951,133191,0 +54559,5,45106,134674,0 +54560,1,45103,135084,0 +54561,11,46962,132470,0 +54562,11,47732,132447,0 +54563,8,46941,132981,0 +54564,0,48262,133190,0 +54565,5,46946,134651,0 +54566,1,45439,135083,0 +54567,3,44980,132730,0 +54568,8,48285,132989,0 +54569,0,46871,133083,0 +54570,5,46872,134623,0 +54571,3,46873,132709,0 +54572,11,47740,133536,0 +54573,11,46900,135289,0 +54574,0,48261,133190,0 +54575,3,44802,132756,0 +54576,8,45253,132983,0 +54577,0,47759,133192,0 +54578,5,45251,134702,0 +54579,1,46952,135085,0 +54580,8,45593,132988,0 +54581,0,47825,133082,0 +54582,5,45591,134652,0 +54583,1,45588,135092,0 +54584,3,45589,132731,0 +54585,11,46967,135604,0 +54586,3,46891,132734,0 +54587,8,46892,132984,0 +54588,0,46894,133193,0 +54589,5,46895,134675,0 +54590,1,46890,135086,0 +54591,11,47744,135196,0 +54592,8,46932,132986,0 +54593,0,48113,133195,0 +54594,5,46925,134621,0 +54595,1,45272,135088,0 +54596,3,46927,132707,0 +54597,11,40368,135565,0 +54598,3,46867,132757,0 +54599,8,46868,132985,0 +54600,0,49686,133194,0 +54601,5,44734,134703,0 +54602,1,44733,135087,0 +54603,11,46970,135399,0 +54604,11,46966,135604,0 +54605,11,47733,135697,0 +54606,1,46928,135089,0 +54607,0,47799,133081,0 +54608,8,46930,132987,0 +54609,3,46931,132708,0 +54610,5,46933,134622,0 +54611,11,46973,135686,0 +54612,11,47743,135190,0 +54613,12,46832,132392,0 +54614,11,46840,133483,0 +54615,11,46863,135145,0 +54616,6,47004,132551,0 +54617,0,51920,133123,0 +54618,0,47019,133095,0 +54619,4,47047,132503,0 +54620,6,44735,132585,0 +54621,7,44736,132618,0 +54623,3,47120,132710,0 +54624,3,47161,132711,0 +54625,0,47255,133099,0 +54626,6,51758,132574,0 +54627,7,47405,132615,0 +54628,4,45105,132509,0 +54629,6,47408,132587,0 +54630,4,47409,132506,0 +54631,6,47428,132542,0 +54632,7,45442,132606,0 +54633,4,45267,132506,0 +54634,7,47413,132606,0 +54635,6,47414,132539,0 +54636,4,45250,132503,0 +54637,7,47416,132618,0 +54638,6,45252,132585,0 +54639,6,47403,132542,0 +54640,7,47418,132615,0 +54641,4,47419,132509,0 +54642,6,47420,132587,0 +54643,4,45090,132506,0 +54644,7,47422,132606,0 +54645,6,47423,132539,0 +54646,4,47425,132506,0 +54647,7,47426,132606,0 +54648,6,47427,132539,0 +54649,6,47162,132575,0 +54650,0,47170,133098,0 +54651,0,47254,133102,0 +54652,0,47256,133100,0 +54653,8,46855,132973,0 +54654,11,47174,135601,0 +54655,11,47188,133062,0 +54656,11,47198,133062,0 +54657,11,47207,133062,0 +54658,11,47212,133062,0 +54659,11,47225,133062,0 +54660,11,47230,133062,0 +54661,12,47228,133062,0 +54662,11,47229,133062,0 +54663,0,47235,133566,0 +54664,0,47236,133569,0 +54665,0,47238,133567,0 +54666,0,47237,133568,0 +54667,11,47248,133537,0 +54668,11,47285,135699,0 +54669,3,48130,132641,0 +54670,6,47374,132557,0 +54671,3,48131,132640,0 +54672,11,48078,135297,0 +54673,11,49970,135709,0 +54674,5,47986,134698,0 +54675,5,47990,134668,0 +54676,5,47975,134648,0 +54677,5,48295,134601,0 +54678,11,47992,133553,0 +54679,15,48894,134557,0 +54680,5,47991,134700,0 +54681,5,48296,134599,0 +54682,11,48399,135209,0 +54683,11,47996,135583,0 +54684,13,48907,134998,0 +54685,5,47993,134667,0 +54686,5,47995,134652,0 +54687,9,48869,133770,0 +54688,1,50016,135114,0 +54689,1,50017,135114,0 +54690,1,47998,135115,0 +54691,1,47999,135113,0 +54692,12,48294,135518,0 +54693,11,49971,135710,0 +54694,11,48290,135149,0 +54695,11,48908,133551,0 +54696,1,50013,135121,0 +54697,11,48002,135606,0 +54698,9,48870,133758,0 +54699,15,48895,134556,0 +54700,1,48004,135115,0 +54701,1,48005,135113,0 +54702,1,50012,135121,0 +54703,3,48011,132729,0 +54704,3,48012,132727,0 +54705,11,48079,135296,0 +54706,3,48015,132754,0 +54707,3,48016,132752,0 +54708,3,48014,132639,0 +54709,3,48013,132633,0 +54710,13,48906,134997,0 +54711,3,48299,132692,0 +54712,3,48300,132673,0 +54713,8,48018,132962,0 +54714,8,48017,132954,0 +54715,9,48868,133776,0 +54716,9,48871,133772,0 +54717,0,48022,133127,0 +54718,0,48020,133108,0 +54719,0,48019,133108,0 +54720,11,48023,135298,0 +54721,12,47630,135493,0 +54722,12,47631,135493,0 +54723,12,47632,135493,0 +54724,12,47633,135493,0 +54725,12,47634,135493,0 +54726,12,47636,135493,0 +54727,12,47637,135493,0 +54728,12,47640,135493,0 +54729,12,47641,135493,0 +54730,12,47642,135493,0 +54731,12,47643,135493,0 +54732,12,47645,135493,0 +54733,11,47648,135277,0 +54734,11,47649,135277,0 +54735,11,47650,135277,0 +54736,11,47653,135277,0 +54737,11,47655,135277,0 +54738,11,47657,135277,0 +54739,11,47658,135277,0 +54740,11,47659,135277,0 +54741,11,47660,135277,0 +54742,11,47663,135277,0 +54743,11,47664,135277,0 +54744,11,47665,135277,0 +54745,11,47667,135277,0 +54746,11,47668,135277,0 +54747,11,47669,135277,0 +54748,11,47670,135277,0 +54749,11,47672,135277,0 +54750,11,47673,135277,0 +54751,11,47674,135277,0 +54752,11,47675,135277,0 +54753,11,47676,135277,0 +54754,12,47680,135531,0 +54755,12,47681,135531,0 +54756,12,47683,135531,0 +54757,11,47687,135412,0 +54758,12,47688,135531,0 +54759,11,48026,135710,0 +54760,11,48028,135606,0 +54761,0,48025,133068,0 +54762,0,48024,133068,0 +54763,12,48902,135519,0 +54764,11,48029,133552,0 +54765,11,48031,135708,0 +54766,11,48030,135208,0 +54767,0,50018,133114,0 +54768,0,50019,133114,0 +54769,8,48032,132988,0 +54770,8,48305,132950,0 +54771,8,48034,132974,0 +54772,8,48306,132949,0 +54773,0,48033,133188,0 +54774,11,48038,135604,0 +54775,12,48040,135488,0 +54776,12,48042,135487,0 +54777,12,48035,135431,0 +54778,8,48037,132968,0 +54779,8,48039,132971,0 +54780,3,48384,132643,0 +54781,8,48922,132972,0 +54782,8,48920,132986,0 +54783,3,48054,132737,0 +54784,3,48913,132639,0 +54785,8,48914,132982,0 +54786,5,48045,134695,0 +54787,5,48050,134667,0 +54788,5,48307,134608,0 +54789,1,48308,135114,0 +54790,1,48052,135113,0 +54791,1,50014,135121,0 +54792,3,48055,132729,0 +54793,0,50020,133114,0 +54794,8,48387,132950,0 +54795,12,47699,135470,0 +54796,7,48312,132614,0 +54797,7,48321,132609,0 +54798,7,48349,132611,0 +54799,7,48325,132601,0 +54800,7,48326,132601,0 +54801,7,48347,132614,0 +54802,7,48315,132601,0 +54803,7,48311,132608,0 +54804,7,48322,132607,0 +54805,7,48316,132611,0 +54806,7,48324,132608,0 +54807,11,47711,135641,0 +54808,11,47712,135641,0 +54809,11,47714,135641,0 +54810,11,47715,135641,0 +54811,11,47716,135641,0 +54812,11,47719,135641,0 +54813,11,47720,135641,0 +54814,11,47721,135641,0 +54815,11,47723,135641,0 +54816,11,47724,135641,0 +54817,4,48355,132516,0 +54818,11,47802,132395,0 +54819,11,47804,132395,0 +54820,11,47806,132395,0 +54821,11,47807,132395,0 +54822,11,47808,132395,0 +54823,11,47812,132395,0 +54824,11,47818,132392,0 +54825,11,47819,132392,0 +54826,11,47820,132392,0 +54827,11,47821,132392,0 +54828,11,47822,132392,0 +54829,11,47823,132392,0 +54830,11,47824,132392,0 +54831,4,48356,132496,0 +54832,12,43083,135508,0 +54833,12,48183,135623,0 +54834,13,47908,134955,0 +54835,11,47894,133483,0 +54836,4,48359,132496,0 +54837,4,48358,132502,0 +54838,4,48360,132516,0 +54839,4,48353,132503,0 +54840,11,47909,135277,0 +54841,13,47911,134955,0 +54842,4,48352,132513,0 +54843,4,48354,132496,0 +54844,4,47828,132515,0 +54845,6,48366,132551,0 +54846,6,48367,132565,0 +54847,6,48371,132574,0 +54848,6,48370,132551,0 +54849,6,48372,132587,0 +54850,6,48364,132551,0 +54851,6,48362,132542,0 +54852,6,48365,132573,0 +54853,6,48369,132559,0 +54854,13,47920,134955,0 +54855,13,47907,134955,0 +54856,13,47921,134955,0 +54857,11,47923,135271,0 +54858,1,48174,135058,0 +54859,7,48164,132601,0 +54860,11,48166,135689,0 +54861,11,48161,133456,0 +54862,1,48165,135056,0 +54863,3,48171,132659,0 +54864,11,48159,133511,0 +54865,1,42230,135038,0 +54866,3,39346,132737,0 +54867,11,48156,132449,0 +54868,12,47933,135660,0 +54869,12,48067,135543,0 +54870,6,48964,132577,0 +54871,3,48963,132713,0 +54872,11,31300,132393,0 +54873,8,48201,132960,0 +54874,7,48253,132614,0 +54875,8,48255,132946,0 +54876,4,44466,132496,0 +54877,0,48257,133071,0 +54878,3,48258,132648,0 +54879,8,48287,132953,0 +54880,6,48985,132541,0 +54882,12,48395,135493,0 +54883,11,48396,135646,0 +54884,11,48397,135638,0 +54885,11,48398,135277,0 +54886,11,48400,135145,0 +54887,11,48401,135277,0 +54888,11,48404,135145,0 +54889,11,48406,135145,0 +54890,11,48899,132395,0 +54891,12,49114,135555,0 +54892,11,49113,135607,0 +54893,11,48888,135713,0 +54894,11,48887,135713,0 +54895,11,49111,133562,0 +54896,11,48935,135149,0 +54897,3,48446,132647,0 +54898,5,48448,134642,0 +54899,3,47203,132639,0 +54900,5,48468,134657,0 +54901,8,48467,132959,0 +54902,3,48469,132692,0 +54903,5,47064,134611,0 +54904,5,45320,134695,0 +54905,3,48481,132651,0 +54906,5,48482,134609,0 +54907,6,48479,132560,0 +54908,3,48484,132737,0 +54909,4,48483,132492,0 +54910,3,48487,132633,0 +54911,8,48495,132949,0 +54912,4,48477,132502,0 +54913,5,48474,134695,0 +54914,6,48472,132585,0 +54915,11,49112,135607,0 +54916,13,49154,134999,0 +54917,11,47994,135209,0 +54918,11,49136,133554,0 +54919,11,49993,133529,0 +54920,3,48604,132629,0 +54921,8,48605,132988,0 +54922,0,48606,133068,0 +54923,5,48607,134672,0 +54924,1,48609,135115,0 +54925,11,49150,132412,0 +54926,11,49149,132460,0 +54927,8,48587,132959,0 +54928,0,48601,133108,0 +54929,5,48589,134632,0 +54930,1,48591,135113,0 +54931,3,48593,132646,0 +54932,8,48618,132972,0 +54933,0,48738,133114,0 +54934,5,48627,134616,0 +54935,1,48623,135121,0 +54936,3,48624,132702,0 +54937,5,48626,134616,0 +54938,11,49135,133553,0 +54939,12,49138,135555,0 +54940,0,48602,133108,0 +54941,3,48639,132756,0 +54942,8,48640,132975,0 +54943,0,48740,133109,0 +54944,5,48642,134705,0 +54945,1,48643,135114,0 +54946,8,48594,132951,0 +54947,0,48739,133108,0 +54948,5,47841,134637,0 +54949,1,47838,135113,0 +54950,3,47839,132718,0 +54951,11,49139,135606,0 +54952,3,48610,132638,0 +54953,8,48611,132988,0 +54954,0,48613,133068,0 +54955,5,48615,134672,0 +54956,1,48616,135115,0 +54957,12,49140,135511,0 +54958,8,48628,132987,0 +54959,0,48737,133114,0 +54960,5,48630,134622,0 +54961,1,50010,135121,0 +54962,3,49293,132701,0 +54963,11,49141,135710,0 +54964,11,49142,135583,0 +54965,3,48647,132757,0 +54966,8,48649,132985,0 +54967,0,49685,133109,0 +54968,5,48651,134703,0 +54969,1,48652,135114,0 +54970,11,49143,135296,0 +54971,13,49153,134997,0 +54972,12,49393,135629,0 +54973,11,49145,135606,0 +54974,0,48614,133068,0 +54975,11,49146,133551,0 +54976,13,49155,134998,0 +54977,1,48635,135121,0 +54978,0,50008,133114,0 +54979,3,49294,132703,0 +54980,5,48638,134621,0 +54981,11,49147,135708,0 +54982,11,48521,135271,0 +54983,6,48672,132590,0 +54984,6,48678,132562,0 +54985,6,48685,132569,0 +54986,6,48663,132589,0 +54987,6,48679,132562,0 +54988,6,48675,132590,0 +54989,6,48688,132569,0 +54990,6,48668,132582,0 +54991,6,48691,132569,0 +54992,4,48671,132502,0 +54993,4,48676,132501,0 +54994,4,48683,132502,0 +54995,4,48659,132501,0 +54996,4,47840,132501,0 +54997,4,48674,132502,0 +54998,4,48686,132502,0 +54999,4,48661,132503,0 +55000,4,48689,132501,0 +55001,7,48670,132617,0 +55002,7,48681,132608,0 +55003,7,48684,132601,0 +55004,7,48662,132616,0 +55005,7,48682,132608,0 +55006,7,48673,132617,0 +55007,7,48687,132601,0 +55008,7,48664,132616,0 +55009,7,48690,132613,0 +55010,10,47815,135026,0 +55012,0,48645,133023,0 +55013,11,48680,132395,0 +55014,10,48709,134477,0 +55015,10,48710,134476,0 +55016,8,48112,132949,0 +55017,0,48116,133132,0 +55018,5,45793,134599,0 +55019,1,48108,135033,0 +55020,3,48723,132684,0 +55021,0,46912,133132,0 +55022,5,48727,134599,0 +55023,8,48728,132949,0 +55024,1,44464,135033,0 +55025,3,48730,132684,0 +55026,1,42269,135050,0 +55027,0,48734,133076,0 +55028,8,42384,132953,0 +55029,3,48736,132716,0 +55030,8,48745,132962,0 +55031,0,48746,133132,0 +55032,5,48747,134599,0 +55033,1,48748,135043,0 +55034,3,48750,132718,0 +55035,8,42235,132962,0 +55036,0,48752,133132,0 +55037,5,42233,134599,0 +55038,3,42231,132718,0 +55039,3,45478,132633,0 +55040,8,43389,132945,0 +55041,3,48756,132633,0 +55042,8,48254,132945,0 +55043,0,48758,133077,0 +55044,5,48764,134667,0 +55045,1,42769,135060,0 +55046,3,48792,132740,0 +55047,8,42427,132963,0 +55048,0,48794,133124,0 +55049,5,42425,134693,0 +55050,1,42422,135053,0 +55051,0,48799,133124,0 +55052,5,42802,134693,0 +55053,1,44384,135053,0 +55054,11,48878,135213,0 +55055,11,48965,135638,0 +55056,11,48983,135277,0 +55057,11,48996,134294,0 +55058,0,49062,132482,0 +55059,10,49624,135026,0 +55060,11,49873,132797,0 +55061,11,50189,133700,0 +55062,3,50486,133671,0 +55063,8,50575,132951,0 +55064,6,50574,132551,0 +55065,0,50489,133687,0 +55066,0,50564,133152,0 +55067,0,50565,133152,0 +55068,3,50175,135022,0 +55069,5,50173,134591,0 +55070,6,50174,132539,0 +55071,4,50576,132492,0 +55072,1,50581,135055,0 +55073,10,50689,135026,0 +55074,10,50690,135026,0 +55075,10,50692,135026,0 +55076,10,50686,135026,0 +55077,10,50687,135026,0 +55078,10,50691,135026,0 +55080,11,191782,133041,5508000 +55081,8,191783,132951,5508100 +55082,0,191784,133131,5508200 +55083,3,191785,132670,5508300 +55084,0,191786,133135,5508400 +55085,1,191787,135033,5508500 +55086,4,191788,132496,5508600 +55087,6,191789,132539,5508700 +55088,9,191790,133759,5508800 +55089,5,191791,134588,5508900 +55090,7,191792,132606,5509000 +55091,5,191794,134589,5509100 +55092,13,191796,134955,5509200 +55093,11,191797,134297,5509300 +55095,0,191807,133111,5509500 +55096,1,191808,135034,5509600 +55097,3,191809,132760,5509700 +55098,4,191810,132493,5509800 +55099,5,191811,134706,5509900 +55100,6,191812,132539,5510000 +55101,7,191813,132607,5510100 +55102,8,191814,132939,5510200 +55103,9,191815,133758,5510300 +55117,11,191865,134297,5511700 +55320,1,222,135040,0 +55321,12,16751,132392,0 +55322,12,16752,135641,0 +55323,15,24061,134337,0 +55324,12,20779,135425,0 +55325,12,20783,135423,0 +55326,12,26358,135424,0 +55327,12,26361,135427,0 +55328,12,20773,135427,0 +55329,12,20782,132394,0 +55330,12,20772,132330,0 +55331,12,23723,135424,0 +55332,12,16754,135656,0 +55333,12,16760,132414,0 +55334,12,16753,135650,0 +55335,12,32693,135427,0 +55474,14,21328,134409,0 +55475,14,21712,134406,0 +55476,14,21321,134403,0 +55477,14,21332,134404,0 +55478,14,21318,134409,0 +55479,14,21330,134401,0 +55480,14,21322,134402,0 +55481,14,21331,134407,0 +55482,14,21329,134410,0 +55483,14,40337,134408,0 +55484,14,40338,134406,0 diff --git a/HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv b/HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv new file mode 100644 index 00000000..d88bc625 --- /dev/null +++ b/HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv @@ -0,0 +1,21608 @@ +DisplayID,FileDataID +222,132535 +224,133345 +229,132490 +230,132535 +233,132535 +241,132490 +242,132535 +244,132490 +245,132535 +248,132490 +249,132535 +252,132490 +253,132535 +256,132490 +257,132535 +261,132535 +267,132535 +275,132490 +276,132535 +281,132490 +282,132535 +292,134719 +293,132490 +295,132536 +297,132490 +301,132490 +302,132535 +308,133943 +310,132490 +311,132535 +314,132490 +317,132490 +318,132535 +326,132490 +329,132490 +332,132490 +336,132490 +337,132535 +362,133622 +365,134582 +368,134582 +369,135005 +370,134582 +371,135005 +372,134582 +373,135005 +374,134582 +376,134582 +378,134582 +380,134582 +381,135005 +383,135005 +384,134582 +385,135005 +386,134582 +387,135005 +388,134582 +389,135005 +390,134582 +391,135005 +392,134582 +393,135005 +394,134582 +395,135005 +396,134582 +397,135005 +398,134582 +412,134582 +453,132392 +472,135145 +510,132938 +555,134304 +557,133748 +563,135278 +568,134305 +609,133280 +624,134321 +634,134940 +679,135274 +683,134582 +684,132760 +685,134583 +687,134583 +691,134582 +697,134583 +703,132592 +704,134706 +729,135278 +782,132395 +811,134939 +825,132537 +845,132543 +859,135274 +860,133476 +861,133476 +862,135274 +869,135129 +878,135139 +883,135143 +896,133343 +898,133435 +918,133741 +920,133884 +924,134939 +925,133622 +926,134712 +928,133749 +929,135437 +932,132483 +940,134297 +941,134412 +942,133436 +944,134301 +945,132543 +946,134414 +954,132624 +956,134229 +959,134298 +961,134336 +963,133345 +964,133437 +972,132939 +976,132938 +977,132624 +981,133623 +983,134720 +989,132760 +992,134937 +993,133948 +994,133949 +1006,133344 +1007,134325 +1011,132939 +1012,133277 +1013,134938 +1017,132939 +1019,132624 +1020,132535 +1022,133041 +1025,133626 +1026,134720 +1028,133344 +1032,135275 +1037,134944 +1040,134232 +1041,133952 +1045,135279 +1046,133343 +1054,133565 +1057,135039 +1058,135039 +1060,135033 +1063,132938 +1068,135033 +1069,134937 +1083,133040 +1087,133947 +1090,135141 +1092,135144 +1093,134943 +1095,132381 +1096,134940 +1097,134941 +1098,135005 +1102,134939 +1103,133739 +1107,132490 +1115,133476 +1116,133972 +1117,133970 +1118,133972 +1119,133750 +1120,133750 +1121,135274 +1123,133072 +1124,133072 +1126,133071 +1127,133071 +1128,133071 +1129,133071 +1130,133071 +1131,133071 +1132,133070 +1134,133742 +1136,134537 +1137,134537 +1139,133437 +1141,134321 +1143,133741 +1144,133950 +1145,133968 +1148,133279 +1150,134719 +1151,134298 +1155,133740 +1159,133476 +1160,133476 +1161,133476 +1165,135145 +1166,134955 +1168,133639 +1170,134442 +1183,133639 +1184,132759 +1185,135006 +1190,135144 +1193,135139 +1196,134185 +1197,134229 +1198,133345 +1199,132624 +1200,133070 +1201,135145 +1203,135276 +1206,133040 +1207,135276 +1208,133888 +1209,134336 +1215,134787 +1216,134133 +1217,134106 +1218,134118 +1219,134304 +1220,133476 +1221,134063 +1225,133721 +1227,133725 +1229,134583 +1231,134076 +1232,132490 +1235,134068 +1236,134068 +1238,132490 +1240,134400 +1241,133476 +1243,133038 +1244,133628 +1245,134298 +1246,133738 +1248,134065 +1249,134776 +1251,135279 +1257,134514 +1260,133622 +1262,134134 +1263,134085 +1264,134188 +1270,134377 +1272,133694 +1273,133728 +1274,133731 +1275,134743 +1277,133637 +1280,133631 +1281,133635 +1282,133640 +1283,133629 +1285,133644 +1286,134367 +1288,134799 +1290,134341 +1291,134776 +1294,133707 +1295,133848 +1297,134058 +1301,134939 +1302,133628 +1307,133938 +1310,134170 +1312,135435 +1313,134185 +1317,133743 +1319,133728 +1322,134269 +1323,134939 +1324,134939 +1325,134939 +1328,134754 +1329,133693 +1330,135006 +1342,133040 +1345,135139 +1347,133950 +1353,134585 +1356,134581 +1357,134582 +1361,133888 +1364,135230 +1371,135139 +1373,135143 +1374,135139 +1376,135144 +1378,134707 +1379,134708 +1382,132392 +1383,132392 +1384,132395 +1386,132392 +1387,132392 +1389,132392 +1390,132392 +1391,132392 +1392,132392 +1393,132394 +1395,134431 +1399,133280 +1401,134231 +1402,133040 +1404,133276 +1405,135231 +1407,132943 +1409,132392 +1415,132393 +1416,133724 +1421,134366 +1423,134339 +1424,134321 +1428,135277 +1432,132715 +1436,133040 +1437,135146 +1438,134343 +1439,132393 +1440,135129 +1441,133476 +1442,134185 +1443,134059 +1445,134173 +1451,133750 +1455,132394 +1458,132392 +1461,133041 +1464,134187 +1465,132394 +1466,135278 +1467,135141 +1469,135143 +1471,133633 +1474,133752 +1475,133476 +1477,133040 +1478,133040 +1480,134708 +1481,134710 +1482,134798 +1483,133951 +1485,133218 +1487,133942 +1489,135144 +1490,135574 +1491,134170 +1494,133072 +1495,134353 +1496,134296 +1498,134295 +1499,134294 +1500,134413 +1501,134415 +1503,133720 +1504,133884 +1507,134437 +1511,132624 +1512,134582 +1513,132392 +1515,133718 +1516,133718 +1517,133041 +1542,135274 +1544,135274 +1546,135274 +1547,135274 +1550,135274 +1552,135640 +1553,135276 +1556,135274 +1560,132393 +1563,132395 +1566,135275 +1588,133741 +1590,135274 +1591,135274 +1592,135274 +1593,135274 +1594,135637 +1595,133040 +1596,133040 +1597,133040 +1598,132395 +1599,135145 +1600,135145 +1601,132395 +1602,134709 +1605,135637 +1606,135637 +1607,135274 +1609,135276 +1610,133040 +1611,134374 +1612,133476 +1613,133038 +1621,135276 +1625,133641 +1627,135274 +1628,135276 +1632,135276 +1638,135278 +1639,135277 +1642,135275 +1643,135145 +1644,134952 +1645,134297 +1646,134184 +1648,135144 +1649,135006 +1652,132392 +1653,133476 +1655,134058 +1656,134776 +1657,132938 +1658,132543 +1659,134132 +1661,133040 +1663,133217 +1664,135637 +1673,134955 +1680,134955 +1682,134707 +1684,134955 +1685,134955 +1695,134336 +1699,133345 +1701,132938 +1704,135274 +1705,134950 +1706,134950 +1708,132943 +1709,134514 +1710,135581 +1712,134708 +1714,132392 +1716,135145 +1722,135276 +1724,133718 +1725,135272 +1726,133040 +1727,132624 +1728,132939 +1730,134321 +1733,135128 +1754,133215 +1755,134955 +1757,134955 +1758,133039 +1759,133718 +1760,133476 +1762,133969 +1766,135274 +1767,132395 +1768,135145 +1769,134297 +1771,135139 +1772,132395 +1773,135276 +1774,133476 +1776,135126 +1779,133476 +1780,133476 +1782,133040 +1783,133476 +1784,133476 +1787,132760 +1795,132938 +1796,132938 +1797,132760 +1805,134712 +1813,135614 +1815,133628 +1816,133581 +1817,135005 +1818,134581 +1819,135006 +1822,132624 +1839,133476 +1841,135145 +1845,135641 +1853,135274 +1859,132624 +1861,132539 +1863,134581 +1865,132381 +1882,134581 +1883,134581 +1911,132539 +1926,135145 +1927,135145 +1928,135274 +1929,135274 +1930,135274 +1931,135274 +1932,132395 +1936,135640 +1938,135613 +1942,133476 +1943,133476 +1946,134719 +1947,134797 +1948,134797 +1949,134719 +1950,133476 +1953,135610 +1954,132395 +1955,133041 +1956,135275 +1963,134582 +1965,133345 +1966,132537 +1967,135006 +1975,135006 +1978,134582 +1980,133345 +1981,132537 +1990,132760 +1995,132760 +1997,134431 +2006,135610 +2010,135139 +2011,132394 +2012,135464 +2015,132941 +2018,134582 +2019,132715 +2022,133974 +2024,135006 +2025,134181 +2027,133588 +2038,133476 +2047,133476 +2048,135271 +2050,133343 +2052,134955 +2053,134070 +2054,133581 +2056,133040 +2057,132939 +2058,135145 +2059,135274 +2060,133476 +2061,132392 +2065,133476 +2073,135276 +2074,132490 +2075,133216 +2080,134951 +2082,132760 +2083,132538 +2094,132539 +2100,132760 +2101,132939 +2104,132760 +2105,132541 +2106,132760 +2107,134354 +2109,132538 +2110,132538 +2111,132539 +2118,133344 +2149,134949 +2157,133040 +2158,134955 +2159,134955 +2161,134950 +2162,135464 +2163,135005 +2164,132940 +2166,132543 +2176,134706 +2177,132539 +2178,133345 +2181,134950 +2183,135005 +2185,134581 +2186,132940 +2188,132539 +2191,135005 +2193,132940 +2195,132539 +2198,132543 +2201,134581 +2202,132940 +2204,132543 +2208,134955 +2209,134955 +2210,134955 +2211,134955 +2212,133718 +2213,132940 +2215,132624 +2217,134583 +2218,132535 +2219,133344 +2220,132938 +2221,134787 +2222,132624 +2228,134583 +2229,132535 +2230,133344 +2231,132938 +2247,134939 +2249,134325 +2250,135006 +2257,132624 +2265,132624 +2267,133344 +2268,132535 +2269,132624 +2270,134583 +2272,133344 +2274,133344 +2279,132490 +2299,134581 +2300,132940 +2301,132543 +2304,135005 +2305,132543 +2307,132940 +2308,134581 +2311,134581 +2312,132539 +2314,132940 +2317,135005 +2318,134581 +2319,132539 +2322,134956 +2324,134956 +2325,134956 +2326,134956 +2329,134949 +2331,134949 +2333,134950 +2334,133940 +2335,134949 +2337,134952 +2338,134184 +2339,133939 +2341,133345 +2342,132541 +2345,134713 +2348,134715 +2350,134712 +2351,134732 +2354,134798 +2355,132541 +2357,134754 +2358,132939 +2359,132939 +2360,132939 +2361,132939 +2362,132939 +2363,132760 +2364,132490 +2365,134582 +2366,132542 +2367,133345 +2368,132939 +2370,132760 +2371,132490 +2372,134582 +2373,132542 +2374,133345 +2375,132939 +2376,133969 +2378,133281 +2380,135276 +2381,132395 +2382,133476 +2383,135274 +2385,132395 +2387,133476 +2388,135145 +2389,135274 +2392,135276 +2393,132395 +2394,133476 +2395,133040 +2397,135139 +2398,135274 +2399,135276 +2400,132392 +2401,133040 +2402,133040 +2404,135139 +2405,133040 +2406,135276 +2407,132395 +2409,135610 +2410,135616 +2412,135611 +2413,135612 +2414,132382 +2415,135274 +2416,135276 +2418,132384 +2420,135145 +2421,135275 +2422,132394 +2423,133041 +2424,135144 +2427,135278 +2428,132394 +2429,132395 +2430,133041 +2431,133041 +2433,135144 +2434,135275 +2436,135278 +2437,132394 +2438,132395 +2439,133476 +2440,133041 +2442,135144 +2451,133344 +2452,135144 +2453,135271 +2456,134948 +2457,133693 +2460,133725 +2461,135493 +2462,135530 +2463,135612 +2464,134941 +2466,133041 +2467,133040 +2469,135145 +2470,135005 +2471,135005 +2472,135005 +2473,133972 +2474,133974 +2475,133639 +2480,133849 +2481,132941 +2482,135138 +2485,135005 +2486,132543 +2489,132940 +2490,135005 +2492,135005 +2493,135006 +2494,135005 +2496,132539 +2498,133693 +2499,135005 +2500,132543 +2503,135005 +2504,133694 +2505,133693 +2506,134325 +2507,133693 +2509,135140 +2510,134743 +2511,134713 +2514,134732 +2515,134799 +2516,134095 +2517,134437 +2526,133072 +2528,132767 +2529,134231 +2530,134238 +2533,134743 +2535,134184 +2539,135037 +2551,134230 +2552,134955 +2553,134955 +2554,134955 +2555,134955 +2556,134955 +2557,134957 +2558,134957 +2559,134957 +2560,132537 +2561,133345 +2563,135039 +2564,132760 +2565,133345 +2567,133345 +2569,135038 +2571,134939 +2575,133345 +2577,135005 +2578,132939 +2580,133345 +2582,135038 +2583,133345 +2584,133636 +2585,133634 +2586,133638 +2588,133641 +2589,133636 +2591,133630 +2592,133632 +2593,133645 +2594,134952 +2595,135641 +2596,133849 +2598,133723 +2599,133970 +2600,133725 +2603,133970 +2604,134184 +2605,134059 +2608,132938 +2609,132940 +2610,134581 +2612,133282 +2615,133435 +2616,134937 +2617,133074 +2618,133942 +2621,134400 +2622,134231 +2623,133343 +2624,133278 +2626,134944 +2627,133708 +2628,134582 +2629,134581 +2632,134955 +2633,134955 +2634,134939 +2635,135274 +2637,134437 +2638,133849 +2641,133944 +2644,132760 +2645,135006 +2651,133040 +2652,132395 +2656,134582 +2657,134412 +2658,132490 +2659,133343 +2660,133938 +2661,133888 +2663,135005 +2665,133072 +2666,133344 +2667,133438 +2669,135641 +2670,135037 +2671,134955 +2672,134951 +2673,132715 +2675,133345 +2676,133476 +2677,133748 +2680,132940 +2682,132543 +2683,135276 +2684,134708 +2686,132939 +2687,133040 +2688,133218 +2689,135493 +2690,135491 +2691,135495 +2692,135490 +2693,135638 +2694,135641 +2696,134298 +2698,135637 +2699,135641 +2701,132392 +2702,135274 +2703,135641 +2704,135641 +2705,135637 +2706,135637 +2707,135641 +2708,135641 +2709,135639 +2710,135637 +2711,135641 +2712,134298 +2713,135641 +2714,134298 +2715,135641 +2717,135641 +2719,133723 +2720,135641 +2724,133941 +2725,133941 +2726,133941 +2727,135640 +2728,133941 +2730,135641 +2731,133941 +2732,135274 +2733,135128 +2735,135641 +2736,135637 +2737,135640 +2738,135641 +2740,135641 +2742,135641 +2743,135638 +2744,134174 +2746,134249 +2747,134249 +2753,135641 +2755,134943 +2757,133740 +2758,135276 +2760,132381 +2761,132392 +2762,135637 +2763,135641 +2764,135637 +2765,135641 +2767,132392 +2768,132395 +2769,132395 +2770,132395 +2771,132395 +2772,132395 +2773,132395 +2774,135641 +2775,133040 +2776,133040 +2777,133040 +2778,135139 +2779,135146 +2780,135274 +2781,135274 +2782,135276 +2783,135276 +2786,135493 +2787,135493 +2788,133939 +2789,135491 +2790,135491 +2791,135610 +2792,135612 +2793,134187 +2794,135490 +2796,134065 +2797,134721 +2798,134298 +2800,135277 +2805,132392 +2806,135275 +2807,132394 +2809,135639 +2810,133041 +2814,132394 +2815,133040 +2818,134582 +2819,135641 +2820,134376 +2821,133476 +2822,133040 +2823,132392 +2824,135494 +2825,135615 +2826,135492 +2827,133040 +2829,132624 +2830,133071 +2831,132535 +2832,133476 +2833,135275 +2834,135278 +2836,133718 +2837,132395 +2839,133038 +2840,135138 +2841,135145 +2842,133344 +2843,135143 +2844,133438 +2845,135639 +2846,133277 +2848,133476 +2849,132490 +2851,132760 +2852,134437 +2853,133730 +2854,133345 +2857,133751 +2859,132940 +2860,133849 +2861,133476 +2862,132395 +2864,135276 +2865,133476 +2866,132395 +2867,135276 +2868,135128 +2873,134719 +2874,134304 +2880,133344 +2881,133344 +2882,132624 +2885,134437 +2890,134355 +2891,135277 +2892,135617 +2893,132393 +2894,135639 +2895,133588 +2897,134583 +2898,132624 +2900,134366 +2902,134939 +2903,133972 +2904,133972 +2916,134955 +2917,134708 +2919,135490 +2920,135610 +2922,134583 +2923,133041 +2924,135639 +2925,133694 +2928,132535 +2930,135639 +2934,134948 +2935,134335 +2936,133070 +2943,135145 +2945,134166 +2947,134799 +2948,134183 +2949,134583 +2950,132535 +2951,132938 +2952,132937 +2953,135033 +2955,132940 +2956,133719 +2958,133849 +2960,135039 +2961,133848 +2962,132624 +2963,134743 +2964,135005 +2965,134186 +2966,132624 +2967,132624 +2968,132736 +2969,134583 +2970,132490 +2971,132535 +2972,133344 +2973,132938 +2974,132736 +2975,132490 +2976,134583 +2977,132535 +2978,133344 +2979,132938 +2980,133344 +2981,132939 +2982,132624 +2984,132535 +2985,132490 +2986,132535 +2987,133344 +2988,132938 +2989,134583 +2990,132541 +2991,132937 +2992,133345 +2993,132535 +2995,133074 +2998,133942 +3004,133884 +3005,134354 +3006,135641 +3007,132938 +3009,133438 +3011,133282 +3012,134335 +3013,134059 +3014,134336 +3018,133461 +3019,133459 +3020,133471 +3021,133471 +3022,133471 +3023,133468 +3024,133464 +3026,133439 +3027,133460 +3028,133459 +3029,133469 +3030,133462 +3031,133461 +3032,133460 +3033,133466 +3034,133460 +3035,133461 +3036,132541 +3037,135637 +3039,135006 +3040,132760 +3041,133344 +3042,132760 +3043,134583 +3044,133070 +3046,134581 +3047,133693 +3048,133458 +3049,135005 +3050,134582 +3051,132543 +3052,132939 +3053,135005 +3054,134582 +3055,132543 +3056,132939 +3057,132624 +3058,134583 +3059,132535 +3060,132939 +3062,134582 +3063,132939 +3064,135005 +3065,134582 +3066,132543 +3067,132939 +3068,132624 +3069,134583 +3070,132535 +3071,132939 +3074,134582 +3075,132939 +3077,132760 +3078,134582 +3080,132537 +3081,132939 +3082,132624 +3083,134583 +3084,132535 +3085,132939 +3086,133071 +3087,134442 +3090,135271 +3091,132484 +3092,135273 +3093,133471 +3097,135581 +3098,133040 +3099,133040 +3100,132760 +3101,132395 +3102,134085 +3107,133750 +3108,134229 +3109,134333 +3110,133434 +3113,134378 +3114,133734 +3116,134514 +3117,135278 +3118,134238 +3119,135036 +3120,135006 +3121,132490 +3124,134304 +3126,134321 +3127,134321 +3128,133076 +3129,132392 +3130,133476 +3131,135228 +3135,133072 +3136,133434 +3137,135036 +3138,132490 +3140,134941 +3141,134941 +3142,132393 +3143,132939 +3144,135129 +3145,132392 +3146,134294 +3147,135275 +3148,135279 +3149,134437 +3151,133041 +3152,134717 +3153,133344 +3154,133733 +3155,132392 +3160,135464 +3161,134712 +3162,133436 +3163,134412 +3164,134367 +3167,133072 +3168,133476 +3169,135039 +3170,132392 +3171,133072 +3172,132543 +3173,134581 +3174,135495 +3175,135637 +3177,133884 +3178,135279 +3179,134582 +3180,133041 +3181,135139 +3184,135489 +3185,135500 +3186,135500 +3187,135491 +3188,135614 +3189,135613 +3190,135610 +3191,133476 +3192,132624 +3193,134583 +3194,132535 +3195,132939 +3196,133071 +3197,132624 +3198,132535 +3199,132939 +3200,132760 +3201,134582 +3202,132939 +3203,132537 +3204,132715 +3205,134582 +3206,132939 +3208,132542 +3210,134582 +3212,132939 +3213,135274 +3214,133072 +3215,134442 +3217,134582 +3218,132939 +3222,132767 +3224,135490 +3225,133981 +3226,133941 +3227,132394 +3228,135275 +3229,134948 +3231,134334 +3232,132393 +3233,133719 +3234,135275 +3237,133627 +3243,132395 +3244,132490 +3245,132490 +3246,132490 +3247,132490 +3248,134582 +3249,133345 +3250,132539 +3251,132490 +3252,132490 +3253,133345 +3254,132490 +3255,132490 +3256,132490 +3257,134064 +3258,134063 +3260,134581 +3261,132535 +3262,132490 +3264,132490 +3265,135005 +3267,135005 +3268,134582 +3269,132535 +3271,135005 +3272,133040 +3273,134087 +3274,135641 +3275,135641 +3276,135641 +3277,135005 +3278,135005 +3279,132539 +3280,132939 +3281,132392 +3282,132392 +3283,132395 +3284,132392 +3285,132394 +3288,133980 +3289,135005 +3290,135005 +3291,135005 +3292,134581 +3293,132624 +3297,132392 +3299,132939 +3302,133345 +3304,134956 +3306,135277 +3307,134294 +3308,134339 +3309,132535 +3311,133344 +3312,132939 +3315,132624 +3316,135040 +3317,134321 +3318,133970 +3320,134338 +3323,134065 +3325,134437 +3326,133725 +3327,134135 +3329,133974 +3331,134938 +3332,133345 +3334,132535 +3335,132490 +3337,133628 +3341,134342 +3342,134333 +3343,135036 +3344,134089 +3346,134132 +3347,134303 +3352,133970 +3355,134325 +3356,133072 +3357,134297 +3358,132490 +3360,135637 +3361,135138 +3362,135637 +3363,135639 +3364,135276 +3365,132395 +3366,133476 +3367,132395 +3369,133040 +3370,133040 +3371,132395 +3372,135276 +3373,135276 +3374,133040 +3375,132395 +3376,133344 +3377,133344 +3378,133476 +3379,133344 +3380,135276 +3381,133344 +3382,133344 +3383,133041 +3384,135276 +3385,132395 +3386,133345 +3387,133345 +3388,133345 +3389,133345 +3390,132715 +3392,132490 +3393,132539 +3394,132490 +3395,132535 +3396,135040 +3397,133973 +3398,132392 +3400,133476 +3401,133345 +3403,135637 +3404,135038 +3405,135145 +3406,133343 +3407,132490 +3408,133343 +3409,134583 +3410,133622 +3411,133458 +3413,132736 +3414,134584 +3415,132535 +3416,132938 +3417,135033 +3418,132490 +3421,133215 +3422,134338 +3423,132490 +3424,135006 +3425,135006 +3426,133735 +3427,134186 +3428,134431 +3429,133722 +3431,133718 +3432,134582 +3433,133694 +3434,135274 +3436,132381 +3437,135641 +3438,132381 +3439,133476 +3441,134583 +3442,134706 +3443,132539 +3444,132940 +3445,134955 +3446,135139 +3447,135274 +3448,132381 +3450,132624 +3451,134583 +3452,132939 +3453,133345 +3454,132535 +3455,132543 +3456,132939 +3457,132939 +3458,132939 +3459,135006 +3460,135005 +3461,134582 +3462,132939 +3463,132392 +3464,133476 +3465,134298 +3466,132535 +3467,132535 +3468,133345 +3469,132939 +3470,134583 +3471,132624 +3472,132939 +3473,132535 +3474,132939 +3475,135005 +3476,134582 +3477,132939 +3478,132543 +3479,135006 +3480,134582 +3481,132939 +3482,133344 +3483,132543 +3484,132939 +3485,132939 +3486,134173 +3487,133640 +3488,134075 +3489,134076 +3490,134074 +3491,134105 +3492,134106 +3493,134105 +3494,134086 +3495,135274 +3496,132490 +3497,132539 +3498,133476 +3499,133476 +3500,132940 +3501,135040 +3502,133041 +3503,135146 +3505,132624 +3506,132535 +3507,132535 +3508,134583 +3509,135145 +3510,132624 +3511,132535 +3512,135638 +3513,135638 +3514,135641 +3515,132939 +3516,132535 +3517,133345 +3518,132939 +3519,134583 +3520,132624 +3521,135006 +3522,135006 +3523,132939 +3524,132939 +3525,132543 +3526,135005 +3527,134582 +3528,132939 +3529,132624 +3530,134583 +3531,132939 +3532,133345 +3533,132535 +3534,135006 +3535,135006 +3536,134582 +3537,132939 +3538,133344 +3539,132543 +3540,132624 +3541,134583 +3542,132535 +3543,135231 +3544,134336 +3545,132938 +3546,132938 +3549,132539 +3550,135637 +3552,135005 +3553,132490 +3555,132539 +3560,133072 +3561,133942 +3562,135005 +3563,134305 +3564,132535 +3565,133624 +3566,133718 +3567,133942 +3568,133642 +3569,134412 +3570,134181 +3571,134183 +3572,134173 +3573,133718 +3574,133476 +3575,133942 +3576,132490 +3577,135274 +3578,133345 +3579,135274 +3580,133942 +3581,133942 +3582,132490 +3584,133345 +3585,132490 +3587,134581 +3588,134585 +3589,133072 +3590,135278 +3591,134359 +3592,134360 +3593,134359 +3594,134363 +3595,134369 +3596,134295 +3597,132603 +3598,132601 +3600,132600 +3601,132600 +3602,132603 +3603,132600 +3604,132603 +3605,132601 +3606,132605 +3607,132603 +3609,132600 +3610,132605 +3611,132603 +3612,132600 +3613,132603 +3614,132601 +3615,132605 +3616,132601 +3617,132603 +3618,132603 +3619,132600 +3620,132606 +3621,132602 +3622,132606 +3623,132606 +3624,132602 +3626,132606 +3627,132602 +3628,132604 +3629,132602 +3630,132604 +3631,132604 +3632,132604 +3633,132604 +3634,132606 +3635,132602 +3636,132604 +3637,132606 +3638,132602 +3639,133072 +3640,132610 +3641,132609 +3642,132611 +3643,132610 +3644,132610 +3645,132610 +3646,132609 +3647,132609 +3648,132611 +3649,132611 +3651,132612 +3652,132607 +3653,132607 +3654,132607 +3655,132601 +3656,132604 +3657,132606 +3658,132606 +3659,132607 +3660,132606 +3661,132606 +3663,134718 +3664,134721 +3665,134716 +3666,133343 +3667,134334 +3668,134303 +3669,134414 +3670,133725 +3671,133723 +3672,133722 +3673,134325 +3674,135639 +3676,133476 +3677,135145 +3678,135277 +3679,133436 +3680,133436 +3681,133939 +3682,133939 +3683,133939 +3684,133436 +3685,135005 +3686,135005 +3688,133072 +3689,135005 +3690,132602 +3692,133476 +3693,132606 +3695,133751 +3696,132490 +3697,133039 +3698,135615 +3699,135614 +3700,132760 +3701,133638 +3702,132395 +3703,132395 +3704,132607 +3705,132490 +3706,135274 +3707,135274 +3708,132607 +3709,132539 +3710,132539 +3711,132539 +3712,132537 +3713,132541 +3714,132539 +3715,132538 +3716,132490 +3718,132392 +3719,132760 +3720,135641 +3721,135139 +3722,135139 +3723,132535 +3724,132604 +3725,134950 +3726,134799 +3727,135138 +3728,132539 +3729,135274 +3730,133075 +3731,134581 +3732,132938 +3733,132938 +3735,135274 +3736,135464 +3737,135463 +3738,132537 +3739,132606 +3740,132606 +3741,135275 +3742,135138 +3744,133587 +3745,134237 +3746,133476 +3747,135040 +3748,132939 +3749,132543 +3750,132539 +3751,132939 +3752,132539 +3753,132539 +3754,132543 +3755,132539 +3757,132539 +3758,135277 +3759,134342 +3760,132624 +3761,133071 +3762,133071 +3763,133476 +3764,135279 +3765,135638 +3766,132535 +3767,132606 +3768,133039 +3771,132939 +3772,132535 +3773,132939 +3775,135274 +3777,132395 +3778,132395 +3779,133476 +3780,133041 +3781,135274 +3782,133437 +3784,135489 +3785,133072 +3787,135274 +3788,134799 +3791,132392 +3792,132392 +3793,135274 +3794,135274 +3795,135139 +3796,132392 +3797,132395 +3798,134064 +3800,134412 +3801,133849 +3802,134717 +3803,134940 +3804,134940 +3805,135144 +3806,132939 +3807,135139 +3808,133438 +3809,135229 +3810,132381 +3811,132381 +3812,132381 +3814,132381 +3815,135229 +3816,135229 +3817,132381 +3818,133072 +3819,132715 +3820,132715 +3821,132715 +3822,132603 +3823,132542 +3824,132939 +3825,134582 +3826,134582 +3827,132542 +3828,132939 +3829,132603 +3830,133072 +3831,132715 +3832,132715 +3833,134582 +3834,134582 +3835,132542 +3836,132542 +3837,134582 +3838,132715 +3839,132939 +3840,132939 +3841,132603 +3842,132603 +3843,132715 +3844,134582 +3845,132939 +3846,132939 +3847,132939 +3848,132939 +3850,132941 +3851,132939 +3852,132537 +3853,132768 +3854,135138 +3855,135274 +3856,133750 +3857,134414 +3860,135274 +3862,133072 +3863,135144 +3864,132483 +3865,132483 +3867,133070 +3868,132767 +3869,133074 +3871,135036 +3872,132490 +3873,135274 +3874,133218 +3875,132939 +3877,133072 +3878,133476 +3879,133040 +3881,135126 +3882,134582 +3884,135126 +3885,134235 +3886,135638 +3887,135006 +3888,135006 +3889,132395 +3890,132490 +3891,132612 +3892,132612 +3893,132612 +3894,132490 +3895,132610 +3896,132612 +3897,132612 +3898,132610 +3899,132609 +3900,135005 +3901,133472 +3903,135006 +3904,135005 +3905,135006 +3906,135006 +3907,135005 +3908,135005 +3909,132395 +3910,135574 +3911,135641 +3912,135279 +3913,132943 +3914,134170 +3915,133721 +3916,134296 +3917,133730 +3918,134166 +3920,134159 +3921,134412 +3922,133038 +3923,133281 +3924,134299 +3925,135637 +3926,134400 +3927,133731 +3928,132393 +3929,132609 +3930,134170 +3931,134955 +3932,134955 +3933,134949 +3934,134949 +3935,135142 +3936,135142 +3937,134338 +3939,134431 +3940,133040 +3942,135641 +3943,133040 +3944,133040 +3947,135142 +3948,133041 +3949,135145 +3950,134708 +3951,133277 +3952,135229 +3953,135279 +3954,132392 +3955,134707 +3957,135276 +3958,132939 +3959,135124 +3960,133072 +3961,133072 +3962,133071 +3963,133071 +3964,132395 +3965,132938 +3966,133748 +3968,133952 +3969,135276 +3970,133730 +3971,132381 +3972,132535 +3973,132767 +3976,132381 +3978,132938 +3979,132938 +3980,132939 +3981,132943 +3982,132939 +3983,132939 +3984,132939 +3985,132939 +3986,132943 +3987,132938 +3988,135271 +3989,132939 +3990,132939 +3991,132939 +3992,132939 +3993,132937 +3994,132939 +3995,132939 +3996,132941 +3997,132939 +3998,132939 +3999,132940 +4000,132940 +4001,132939 +4002,132939 +4003,132939 +4004,134085 +4005,134084 +4006,134128 +4007,132535 +4008,132535 +4009,132543 +4010,132543 +4011,132537 +4012,132541 +4013,132541 +4014,132537 +4016,132539 +4017,132543 +4018,132537 +4019,132541 +4020,132542 +4021,132537 +4022,132542 +4023,132543 +4024,132539 +4025,132543 +4026,132537 +4027,132541 +4028,132535 +4029,132535 +4030,132535 +4031,132535 +4032,132535 +4033,132535 +4034,132535 +4036,135126 +4037,135276 +4038,134718 +4039,134718 +4040,134718 +4041,134718 +4042,134718 +4043,134718 +4044,133472 +4045,134339 +4047,135463 +4048,134087 +4049,133736 +4050,134414 +4051,132612 +4052,134086 +4053,133639 +4054,132484 +4055,134366 +4056,133643 +4057,133722 +4058,133969 +4063,132610 +4065,132610 +4068,132610 +4076,132609 +4078,132939 +4080,132939 +4081,133974 +4082,133748 +4083,132609 +4084,133072 +4085,132624 +4089,135143 +4090,135279 +4091,132542 +4092,135489 +4093,134955 +4094,132609 +4095,132609 +4096,134937 +4097,133434 +4098,132537 +4099,132490 +4100,132715 +4101,135005 +4102,132490 +4103,132939 +4104,132394 +4105,134754 +4106,134743 +4107,134948 +4108,134956 +4109,135034 +4110,134944 +4111,134720 +4112,133971 +4113,133969 +4115,133970 +4116,135274 +4117,135146 +4118,133476 +4119,135641 +4120,135490 +4121,135276 +4122,133040 +4123,132395 +4125,132542 +4126,135274 +4127,134416 +4128,134937 +4129,135276 +4130,134950 +4132,135276 +4133,134743 +4134,134765 +4135,134717 +4136,134714 +4137,134712 +4138,134776 +4139,132939 +4140,135463 +4141,135464 +4143,132543 +4144,132606 +4145,133071 +4146,135040 +4147,135040 +4148,134585 +4149,134583 +4150,132624 +4151,132624 +4152,132535 +4153,132535 +4154,135640 +4155,135274 +4156,135276 +4157,135276 +4158,133041 +4159,133041 +4160,135276 +4161,135276 +4162,135276 +4163,135276 +4164,132394 +4165,132394 +4166,134059 +4167,133720 +4168,132940 +4169,134117 +4171,134095 +4172,133072 +4173,133071 +4174,133072 +4175,133071 +4176,133072 +4177,133071 +4178,133071 +4179,133072 +4180,133071 +4181,132392 +4184,132392 +4185,135126 +4187,135638 +4188,135640 +4189,135638 +4196,135641 +4203,134298 +4205,135638 +4206,135638 +4209,135641 +4212,135128 +4213,135641 +4215,135637 +4216,135637 +4218,135637 +4219,135637 +4220,135641 +4221,135637 +4224,135637 +4225,135637 +4226,135641 +4228,135641 +4230,135638 +4231,135641 +4232,134298 +4233,132383 +4234,132940 +4235,134374 +4236,135639 +4237,135641 +4238,135641 +4239,133040 +4240,133723 +4241,135641 +4242,132940 +4243,135637 +4244,135641 +4245,135639 +4246,135639 +4247,135641 +4248,135637 +4249,133980 +4250,132535 +4251,135040 +4252,135040 +4253,133736 +4254,134732 +4255,132939 +4256,133072 +4257,134582 +4258,133723 +4259,132606 +4260,135274 +4261,135139 +4262,133730 +4263,134582 +4264,132939 +4265,134582 +4266,132938 +4267,132535 +4268,132539 +4269,133075 +4270,135005 +4271,132602 +4272,132539 +4273,134132 +4274,134138 +4275,132604 +4277,134132 +4278,134341 +4279,134269 +4280,133789 +4281,132608 +4282,133476 +4283,134441 +4284,133344 +4285,133945 +4286,134138 +4287,134237 +4288,133888 +4289,135131 +4290,135574 +4291,135574 +4292,135005 +4293,134581 +4294,132939 +4295,132612 +4296,132539 +4297,132490 +4298,135005 +4299,135005 +4300,132490 +4301,132539 +4302,132612 +4303,132939 +4304,134581 +4305,135005 +4306,132490 +4307,132539 +4308,132612 +4309,132939 +4310,134581 +4311,132760 +4312,134706 +4313,132607 +4314,132537 +4315,132490 +4316,132537 +4317,132607 +4318,132939 +4319,134706 +4320,132760 +4321,132537 +4322,132607 +4323,134706 +4324,135039 +4325,132760 +4326,134950 +4327,134955 +4328,134955 +4329,132490 +4330,132535 +4331,132602 +4332,132938 +4333,134583 +4334,132624 +4335,132490 +4336,132535 +4337,132602 +4338,132938 +4339,134583 +4340,132624 +4341,132624 +4342,132490 +4343,132535 +4344,132602 +4345,132938 +4346,134583 +4347,135274 +4348,135276 +4349,132392 +4350,132395 +4351,133476 +4352,133040 +4353,135146 +4354,135490 +4355,135274 +4356,135637 +4357,134116 +4358,134229 +4359,133438 +4360,133435 +4361,134249 +4362,134432 +4363,133039 +4365,134582 +4366,132606 +4367,134582 +4369,133072 +4370,132939 +4371,132939 +4372,133072 +4373,133072 +4374,132939 +4375,132939 +4376,132606 +4377,134582 +4378,132608 +4379,134582 +4380,132543 +4381,133071 +4382,132602 +4383,132602 +4384,132606 +4385,132541 +4386,133071 +4387,132537 +4388,134582 +4389,132541 +4390,132760 +4391,132759 +4392,132760 +4393,132601 +4394,132760 +4395,134582 +4396,134582 +4397,132604 +4398,134582 +4399,132939 +4400,134955 +4401,134950 +4402,134951 +4403,134956 +4404,134951 +4405,134948 +4406,134948 +4407,132624 +4408,132938 +4409,132939 +4410,132535 +4411,132535 +4412,132624 +4413,132939 +4414,132535 +4415,133071 +4416,134583 +4417,133071 +4418,134583 +4419,134583 +4420,133071 +4421,132624 +4422,132938 +4423,133476 +4424,135637 +4425,135277 +4426,135498 +4427,135614 +4428,132393 +4429,132395 +4430,133476 +4431,135639 +4432,135141 +4433,134303 +4434,134415 +4435,133469 +4436,134360 +4437,134237 +4438,132938 +4439,134582 +4440,132541 +4441,135494 +4442,135614 +4443,135637 +4444,132490 +4445,132490 +4446,133694 +4447,132490 +4448,132606 +4449,132541 +4450,132490 +4451,132760 +4454,133476 +4455,135038 +4456,133072 +4457,134333 +4458,134952 +4459,134377 +4460,132490 +4461,132608 +4462,132609 +4463,132537 +4464,133345 +4465,132624 +4466,132539 +4467,132624 +4468,133071 +4469,134706 +4470,132939 +4471,132604 +4472,132537 +4473,132490 +4474,132760 +4475,134582 +4476,132939 +4477,133072 +4478,132607 +4479,132539 +4481,134582 +4482,135006 +4483,135036 +4484,132541 +4485,132941 +4486,135039 +4487,132543 +4488,135036 +4489,135006 +4490,134582 +4491,135039 +4492,132760 +4493,132539 +4494,132607 +4495,132939 +4496,133072 +4497,134582 +4499,132492 +4500,133693 +4501,132492 +4502,132492 +4503,132495 +4504,132493 +4505,132494 +4506,133693 +4507,132491 +4508,132492 +4509,133694 +4510,133693 +4511,133694 +4512,132492 +4513,132492 +4514,132492 +4515,132492 +4516,132495 +4517,132493 +4518,132495 +4519,132494 +4520,132493 +4521,132500 +4522,132494 +4523,132494 +4524,132493 +4525,132493 +4526,132494 +4527,132498 +4528,132495 +4529,132494 +4530,133693 +4531,132493 +4532,132493 +4533,132492 +4534,132493 +4535,132493 +4536,133693 +4537,132498 +4538,132493 +4539,133693 +4540,132493 +4541,132493 +4542,133693 +4543,132494 +4544,132493 +4545,132495 +4546,132495 +4547,132495 +4548,132491 +4549,132491 +4550,132498 +4551,132493 +4552,132494 +4553,132494 +4554,132498 +4555,132495 +4556,132498 +4557,132492 +4558,132493 +4559,132494 +4560,132494 +4561,132492 +4562,132494 +4563,132495 +4564,132492 +4565,132495 +4566,132494 +4567,132496 +4568,132498 +4569,132493 +4570,132494 +4571,132494 +4572,132494 +4573,132495 +4574,132494 +4575,135145 +4576,134952 +4577,135612 +4578,135617 +4579,135611 +4580,135531 +4581,132493 +4582,133752 +4583,132939 +4584,133639 +4585,133624 +4586,132538 +4587,132484 +4588,135006 +4589,135006 +4590,132493 +4591,132493 +4592,132495 +4593,135039 +4594,135039 +4595,132939 +4596,135006 +4597,135006 +4598,132493 +4599,132492 +4600,132611 +4601,132606 +4602,132493 +4603,134582 +4604,134957 +4605,132495 +4606,132495 +4607,132606 +4608,135641 +4609,133476 +4610,132939 +4611,132611 +4612,134581 +4614,132543 +4615,132543 +4616,135037 +4617,134581 +4618,134581 +4619,134581 +4620,132939 +4621,132939 +4622,132543 +4623,132543 +4624,132543 +4625,132592 +4626,133071 +4627,133071 +4628,133071 +4629,133071 +4630,132539 +4631,132539 +4633,132496 +4634,132495 +4635,135005 +4636,135005 +4637,135005 +4638,135005 +4639,135005 +4640,135005 +4642,132493 +4644,134064 +4647,134441 +4648,134377 +4649,134376 +4650,134070 +4651,134442 +4652,135612 +4653,134440 +4654,133587 +4657,135614 +4658,135128 +4659,134067 +4660,134069 +4661,134442 +4662,134954 +4663,133486 +4664,133944 +4665,134535 +4666,133218 +4672,134535 +4673,134251 +4674,134252 +4675,134254 +4676,134250 +4677,134256 +4678,135426 +4681,134566 +4683,134231 +4684,133276 +4685,132939 +4686,135641 +4687,132938 +4688,133072 +4689,134572 +4690,134579 +4691,134575 +4692,133234 +4693,133233 +4694,133227 +4695,133232 +4696,132493 +4697,135144 +4698,132602 +4701,135421 +4702,133486 +4705,134321 +4706,132394 +4707,135641 +4708,135641 +4709,134361 +4710,134362 +4711,132538 +4712,132541 +4713,132538 +4714,135232 +4715,135235 +4716,135238 +4717,135233 +4718,135234 +4719,135236 +4720,135237 +4721,135240 +4722,135239 +4723,134321 +4724,134298 +4725,135138 +4726,134415 +4727,134416 +4728,134295 +4729,135006 +4730,132495 +4731,132491 +4732,134118 +4733,132500 +4734,132535 +4735,132943 +4736,135272 +4737,135463 +4738,135436 +4739,132612 +4740,135489 +4742,133742 +4743,134948 +4744,134583 +4745,132889 +4746,132911 +4747,132905 +4748,132890 +4749,132912 +4750,132906 +4751,132892 +4752,132891 +4753,133470 +4754,133470 +4755,134235 +4756,134237 +4757,134236 +4758,133741 +4759,134442 +4760,134117 +4761,134118 +4762,133466 +4763,134116 +4764,132939 +4765,134581 +4766,134953 +4767,132624 +4768,132938 +4769,134335 +4770,133481 +4771,133460 +4772,135234 +4773,135641 +4774,135233 +4775,134094 +4776,133280 +4777,134129 +4778,132605 +4779,133975 +4780,133980 +4781,133978 +4782,133977 +4783,133072 +4784,133964 +4785,133072 +4786,132606 +4787,132935 +4788,135325 +4789,132395 +4790,132395 +4791,133476 +4792,135145 +4793,135139 +4794,135276 +4795,132395 +4796,133040 +4797,135637 +4798,135500 +4799,135038 +4800,135325 +4801,135323 +4802,135316 +4803,135325 +4804,135321 +4805,135327 +4806,134353 +4807,133732 +4808,133708 +4809,133892 +4810,133891 +4811,133887 +4812,133887 +4813,133889 +4815,132907 +4816,132894 +4817,135324 +4818,135324 +4819,135325 +4820,135326 +4822,133981 +4823,133890 +4824,134187 +4825,134186 +4826,134338 +4827,133279 +4828,133279 +4829,132608 +4830,134709 +4831,134708 +4832,133040 +4833,135641 +4834,132608 +4835,132539 +4836,134797 +4837,132603 +4838,132601 +4839,134765 +4841,133278 +4842,134139 +4843,134116 +4844,133738 +4845,134416 +4846,132535 +4847,132492 +4849,132496 +4850,132491 +4851,132495 +4852,132495 +4853,132492 +4854,132494 +4855,132937 +4856,132492 +4857,132492 +4858,133693 +4859,132493 +4860,132492 +4864,132496 +4865,132759 +4866,134707 +4867,134070 +4868,134707 +4869,135037 +4870,134582 +4871,132939 +4872,134582 +4873,132543 +4874,132624 +4875,133693 +4876,135039 +4878,133694 +4879,135038 +4880,132498 +4881,132499 +4882,132499 +4883,134582 +4884,135038 +4885,135039 +4886,135039 +4887,135034 +4888,132492 +4890,135034 +4891,135034 +4892,135034 +4893,135034 +4894,135140 +4895,135144 +4896,133485 +4897,133486 +4898,133486 +4899,135034 +4900,135034 +4901,135327 +4902,135034 +4903,135038 +4904,135033 +4905,132499 +4906,135039 +4907,132495 +4908,135323 +4909,135276 +4910,132394 +4911,135274 +4912,134583 +4913,134353 +4914,134075 +4915,132606 +4916,132608 +4918,132939 +4919,132939 +4920,132939 +4921,132540 +4922,135225 +4923,135033 +4924,135033 +4925,135036 +4926,135039 +4927,135039 +4928,134358 +4929,132759 +4930,132759 +4932,134296 +4933,135039 +4934,132381 +4935,135321 +4936,135325 +4937,134400 +4938,132759 +4939,132494 +4940,135039 +4941,135039 +4942,135039 +4943,135036 +4944,132602 +4945,132602 +4946,133707 +4947,133040 +4948,133480 +4949,135240 +4950,135232 +4951,135005 +4953,133942 +4954,132491 +4955,132491 +4956,132539 +4957,132537 +4958,134797 +4961,132603 +4962,132603 +4963,132603 +4964,134364 +4965,133718 +4966,134341 +4967,133944 +4968,135039 +4969,133749 +4970,135039 +4971,135039 +4972,135039 +4973,135039 +4974,135039 +4975,135039 +4976,135040 +4977,135040 +4978,134583 +4979,135321 +4980,135321 +4981,135321 +4982,134956 +4983,134955 +4984,134712 +4985,132394 +4986,132395 +4987,132395 +4988,132491 +4989,132491 +4990,132491 +4991,132493 +4992,132493 +4993,132392 +4994,135145 +4995,135145 +4996,134582 +4997,132392 +4998,134585 +4999,135145 +5000,135036 +5001,135321 +5002,133470 +5003,135036 +5004,135036 +5005,135036 +5007,135325 +5008,135274 +5009,133476 +5010,135146 +5011,135139 +5012,132392 +5013,135637 +5014,132392 +5015,132395 +5016,133476 +5017,132395 +5018,132395 +5019,133723 +5020,135637 +5021,135144 +5022,134116 +5023,133723 +5024,134298 +5025,134298 +5026,132381 +5027,132392 +5028,132392 +5029,132381 +5030,133040 +5031,133040 +5032,133040 +5033,133476 +5034,133476 +5035,133476 +5036,135581 +5037,132392 +5038,135325 +5039,132395 +5040,135325 +5041,132392 +5042,132392 +5043,135271 +5044,135271 +5045,135144 +5046,133040 +5047,133040 +5048,134094 +5049,135275 +5050,135144 +5051,132395 +5052,133476 +5053,135144 +5054,132392 +5055,135271 +5056,132392 +5057,135273 +5058,135273 +5059,133476 +5060,133476 +5061,134298 +5062,135144 +5063,135274 +5064,133041 +5065,132392 +5066,132392 +5067,135274 +5068,135274 +5069,135637 +5070,135144 +5071,135138 +5072,135144 +5073,135143 +5074,135145 +5075,135275 +5076,135637 +5077,134371 +5078,132381 +5080,133345 +5081,133345 +5083,133345 +5084,132381 +5085,132936 +5086,134366 +5087,132393 +5088,132394 +5089,133476 +5090,133476 +5091,132394 +5092,132395 +5093,135036 +5094,135036 +5095,135279 +5096,132394 +5097,132392 +5098,135144 +5099,135143 +5100,133476 +5101,135141 +5102,132395 +5103,135143 +5104,135291 +5105,135326 +5106,135278 +5107,134298 +5108,135146 +5109,135139 +5110,135144 +5111,135146 +5112,135274 +5113,135275 +5114,132381 +5115,135036 +5116,135036 +5117,134295 +5118,132393 +5119,132393 +5120,135144 +5121,135271 +5122,132392 +5123,135275 +5124,132393 +5125,135278 +5126,132394 +5127,135278 +5128,132395 +5129,135274 +5130,135141 +5131,133040 +5132,135144 +5133,135141 +5134,135140 +5135,135143 +5136,133484 +5137,133476 +5138,132624 +5139,135314 +5140,135327 +5141,135321 +5142,135327 +5143,135273 +5144,135325 +5145,135321 +5146,135325 +5147,135321 +5148,135327 +5149,135324 +5150,135274 +5151,135274 +5152,135273 +5153,135321 +5154,135325 +5155,135321 +5156,135314 +5157,135324 +5158,135317 +5159,135324 +5160,132381 +5161,135321 +5162,135326 +5163,135326 +5164,135327 +5165,135325 +5166,135327 +5167,135302 +5168,135325 +5169,135327 +5170,135321 +5171,135325 +5172,135278 +5173,135278 +5174,135278 +5175,135315 +5176,135313 +5177,135277 +5178,135311 +5179,135311 +5180,135272 +5181,135280 +5182,135277 +5183,135273 +5184,135276 +5185,135326 +5186,135324 +5187,135327 +5188,135280 +5189,135278 +5190,135326 +5191,135322 +5192,135277 +5193,135280 +5194,133478 +5195,133481 +5196,133485 +5197,133481 +5198,133483 +5199,133490 +5200,133485 +5201,133039 +5202,133483 +5203,133485 +5204,133485 +5205,133482 +5206,133478 +5207,133482 +5208,133487 +5209,133487 +5210,133490 +5211,133483 +5212,133478 +5213,133481 +5214,133478 +5215,133729 +5216,133487 +5217,133478 +5218,133481 +5219,133485 +5220,133942 +5221,133729 +5222,133476 +5223,133490 +5224,133486 +5225,133481 +5226,133477 +5227,133477 +5228,133488 +5229,133477 +5230,133479 +5231,133479 +5232,133479 +5233,133480 +5235,135033 +5236,134584 +5237,132535 +5238,132938 +5240,135033 +5241,133345 +5242,132736 +5243,132715 +5245,135033 +5246,133345 +5247,132938 +5252,134070 +5253,134368 +5254,132905 +5255,133719 +5256,132538 +5263,133345 +5264,135493 +5269,134368 +5278,133476 +5279,133476 +5280,133476 +5281,135034 +5282,135035 +5283,134339 +5284,134343 +5286,134354 +5287,134341 +5288,135530 +5289,135124 +5290,135574 +5291,135464 +5292,134085 +5293,135530 +5303,132540 +5309,132760 +5310,132760 +5311,132606 +5312,134582 +5313,132938 +5314,134955 +5328,133345 +5329,132495 +5330,133345 +5333,132611 +5335,135006 +5336,135006 +5337,134583 +5338,132492 +5339,134582 +5356,132392 +5357,133485 +5390,132611 +5391,132760 +5392,135500 +5393,135274 +5394,135040 +5395,133752 +5396,134754 +5397,132495 +5398,132492 +5399,132939 +5400,132939 +5401,132539 +5402,132539 +5403,134955 +5404,135139 +5405,135324 +5406,132939 +5407,132542 +5408,133040 +5409,132535 +5410,133476 +5411,134957 +5412,132493 +5413,132493 +5414,135039 +5415,135140 +5416,135421 +5417,135146 +5418,132939 +5419,135140 +5420,132537 +5421,132392 +5422,134957 +5423,133707 +5424,132760 +5425,132602 +5426,134706 +5427,133040 +5428,132606 +5429,135274 +5430,134582 +5431,135327 +5432,134709 +5433,133038 +5434,132606 +5435,132938 +5437,132495 +5438,133041 +5442,133729 +5451,133345 +5452,132539 +5453,133345 +5454,133345 +5455,133345 +5456,133345 +5457,133345 +5458,133345 +5459,133345 +5465,135315 +5466,135327 +5484,132612 +5494,135037 +5495,135039 +5499,134708 +5500,132395 +5501,132395 +5502,132395 +5503,132395 +5504,132395 +5505,132395 +5509,132395 +5510,132392 +5517,132395 +5518,132393 +5519,133479 +5520,133489 +5525,133480 +5526,133476 +5527,133489 +5528,133488 +5529,133345 +5530,133482 +5531,133481 +5532,133476 +5533,133481 +5534,133489 +5535,135324 +5536,135277 +5537,135326 +5538,135311 +5539,135144 +5540,135143 +5541,135144 +5542,135144 +5543,135144 +5546,135143 +5547,135139 +5548,135138 +5549,135141 +5550,135141 +5551,135143 +5552,135139 +5553,135138 +5554,135144 +5555,135141 +5556,135142 +5560,134401 +5561,134402 +5562,134458 +5563,134459 +5564,133718 +5565,133729 +5566,134333 +5567,133473 +5568,133730 +5569,134070 +5577,134581 +5581,135005 +5586,133039 +5629,132609 +5630,132381 +5633,132543 +5635,135127 +5636,135129 +5637,135129 +5638,135129 +5639,132394 +5640,132394 +5641,135639 +5642,133848 +5643,134188 +5644,134581 +5645,132907 +5646,133463 +5647,135464 +5648,135437 +5649,133587 +5650,134301 +5656,134582 +5657,134075 +5658,134404 +5663,132759 +5664,134142 +5665,134147 +5666,134140 +5667,134146 +5668,134143 +5669,134141 +5682,134359 +5683,134361 +5686,135805 +5687,135857 +5688,135464 +5689,134176 +5690,135464 +5692,134708 +5693,134065 +5694,133722 +5695,132938 +5696,136063 +5697,133344 +5698,136063 +5699,134577 +5700,135005 +5702,135005 +5703,134184 +5709,136220 +5710,135005 +5711,132543 +5712,135144 +5713,135144 +5717,134582 +5718,132540 +5720,135144 +5721,135144 +5725,132490 +5726,134582 +5730,135005 +5731,134581 +5738,135005 +5739,132490 +5741,135005 +5747,133732 +5748,134128 +5749,132606 +5750,135323 +5751,134143 +5752,134442 +5753,133277 +5754,132607 +5755,134255 +5766,133721 +5778,132368 +5780,133735 +5800,132496 +5802,135005 +5805,135005 +5806,135139 +5807,135640 +5808,134955 +5816,132543 +5820,132318 +5825,132274 +5826,135005 +5827,132492 +5828,135315 +5829,135315 +5830,135315 +5832,132490 +5876,135809 +5877,135006 +5878,133694 +5879,135005 +5880,135006 +5881,135006 +5883,135638 +5885,132889 +5886,134302 +5887,133587 +5888,134719 +5891,136113 +5898,134188 +5899,136065 +5900,132535 +5901,132535 +5902,132535 +5903,135492 +5908,134117 +5909,135492 +5911,132543 +5914,133940 +5915,135144 +5916,135144 +5917,136210 +5918,133473 +5920,136232 +5921,135139 +5922,135464 +5923,135464 +5924,133288 +5925,135574 +5926,134336 +5927,134336 +5928,132089 +5929,134797 +5931,134754 +5932,134754 +5933,133040 +5934,133977 +5935,133977 +5936,134184 +5937,135325 +5938,135325 +5939,135574 +5940,133564 +5941,133215 +5942,132939 +5943,132394 +5944,135032 +5945,133942 +5946,135139 +5947,134582 +5948,134582 +5949,135130 +5950,135144 +5951,135005 +5952,135005 +5957,134184 +5958,132496 +5959,134187 +5960,135139 +5968,135139 +5969,135139 +5970,135139 +5971,135139 +5972,135139 +5973,135139 +5974,135144 +5975,135463 +5976,135463 +5977,135464 +5978,135464 +5979,134413 +5980,133723 +5981,134161 +5991,132539 +5992,132539 +5995,135005 +5996,132382 +5997,132381 +5998,132384 +5999,132384 +6000,132089 +6001,134134 +6002,133725 +6006,134084 +6007,135230 +6008,135230 +6009,134336 +6010,132939 +6011,133343 +6012,133344 +6013,133344 +6014,134335 +6015,134415 +6016,134434 +6017,134458 +6023,134582 +6024,132541 +6081,135139 +6093,135139 +6097,135139 +6098,135464 +6099,135139 +6100,135139 +6101,135139 +6105,135139 +6106,135464 +6107,135464 +6108,135463 +6109,135464 +6110,135464 +6111,135463 +6125,135464 +6128,135144 +6135,133071 +6138,135139 +6139,135464 +6140,135139 +6146,133071 +6148,135144 +6149,135144 +6150,133748 +6158,134712 +6168,135144 +6170,132490 +6171,134582 +6172,132541 +6175,132539 +6180,135039 +6189,134581 +6190,132543 +6192,134584 +6197,134582 +6198,132541 +6199,133344 +6207,133491 +6209,132541 +6210,133344 +6215,132490 +6216,133072 +6220,132539 +6231,135493 +6232,135493 +6233,135493 +6234,135493 +6235,135493 +6236,133942 +6238,132911 +6244,133788 +6247,132490 +6249,135638 +6251,132490 +6256,132394 +6257,132395 +6258,132393 +6259,134708 +6260,132395 +6261,134707 +6262,132392 +6263,132395 +6264,134708 +6265,132395 +6266,132394 +6267,134707 +6268,132392 +6269,132394 +6270,134941 +6271,134948 +6272,134956 +6273,134948 +6274,134956 +6275,134955 +6276,134955 +6277,132491 +6278,132940 +6279,133072 +6281,132499 +6282,135005 +6284,135037 +6285,132493 +6286,132940 +6287,133072 +6288,132939 +6289,133071 +6290,133072 +6291,132939 +6292,132611 +6293,135005 +6294,134581 +6295,132939 +6296,135006 +6297,134581 +6303,135005 +6304,132493 +6305,132606 +6306,132491 +6307,135006 +6308,134581 +6309,132609 +6310,133694 +6311,134582 +6313,132496 +6315,132495 +6316,135006 +6318,132537 +6319,135006 +6320,135005 +6321,135005 +6322,132540 +6323,135005 +6324,132491 +6325,132493 +6326,134720 +6327,133974 +6328,133969 +6329,134142 +6330,134147 +6331,134187 +6333,135230 +6334,135230 +6335,133888 +6336,132383 +6337,133434 +6338,134229 +6340,134754 +6342,133952 +6343,133968 +6344,133950 +6345,133950 +6346,133438 +6347,133748 +6348,133970 +6349,133720 +6350,133970 +6352,133949 +6353,133948 +6354,136210 +6355,134186 +6356,134065 +6357,134415 +6358,134231 +6359,134514 +6360,134296 +6367,133622 +6368,134232 +6369,135463 +6371,133849 +6372,133947 +6373,134743 +6374,134797 +6375,133728 +6376,134188 +6377,134184 +6378,133581 +6379,133587 +6380,134187 +6381,134712 +6383,133752 +6385,133952 +6387,134181 +6388,134059 +6389,134713 +6390,133978 +6391,133977 +6393,134514 +6394,134141 +6395,133751 +6396,133849 +6397,134336 +6399,133964 +6400,134743 +6401,134712 +6402,133981 +6403,134187 +6404,134140 +6405,134146 +6406,133748 +6409,134941 +6410,133975 +6411,134143 +6412,133588 +6413,133951 +6414,133748 +6415,133075 +6416,134184 +6417,133944 +6418,134414 +6419,133970 +6420,133980 +6421,132381 +6422,133943 +6423,134944 +6424,133435 +6425,133945 +6426,134336 +6427,134341 +6428,133748 +6429,132907 +6430,133633 +6431,135530 +6432,135641 +6433,135637 +6434,135640 +6435,135638 +6436,135641 +6437,135637 +6438,135641 +6439,135641 +6440,135637 +6441,135637 +6442,135641 +6443,135641 +6444,135637 +6445,135641 +6446,135641 +6447,134298 +6448,135639 +6449,135641 +6450,135639 +6451,135639 +6452,135638 +6453,135637 +6454,135641 +6455,133723 +6456,134298 +6457,135641 +6458,135128 +6459,134298 +6460,135641 +6464,135640 +6465,135638 +6466,135638 +6467,135639 +6468,135637 +6469,135637 +6470,135637 +6471,135641 +6472,135637 +6473,134295 +6474,133980 +6475,135637 +6476,135638 +6477,135126 +6478,134412 +6479,133939 +6480,135033 +6483,133436 +6484,133434 +6485,134414 +6486,133722 +6487,133436 +6488,133941 +6489,133939 +6490,133280 +6491,132767 +6492,133884 +6493,134442 +6494,133279 +6495,134336 +6496,134116 +6497,133282 +6498,133750 +6499,134414 +6501,134412 +6502,133438 +6503,134325 +6504,135231 +6505,133038 +6506,134334 +6507,133436 +6508,134431 +6509,134374 +6510,133281 +6511,135279 +6512,134442 +6513,135229 +6514,133435 +6515,133439 +6516,134442 +6517,133277 +6518,134442 +6519,134442 +6520,135126 +6521,134095 +6522,133276 +6524,133938 +6525,134301 +6526,133438 +6527,133277 +6529,134754 +6530,134743 +6531,134718 +6532,134718 +6533,134718 +6534,134718 +6535,134718 +6536,134718 +6537,135126 +6538,133343 +6539,133288 +6540,134376 +6541,134799 +6543,133279 +6545,135033 +6546,134132 +6547,134336 +6548,133039 +6549,133436 +6550,133434 +6551,134514 +6552,134249 +6553,133435 +6554,134335 +6555,135124 +6556,133750 +6557,135033 +6560,133939 +6561,133728 +6562,134377 +6563,134087 +6564,134333 +6565,133438 +6566,135140 +6567,133486 +6568,134708 +6569,133718 +6572,133941 +6573,133941 +6574,133942 +6575,133942 +6576,133941 +6577,133941 +6578,133941 +6580,133942 +6581,134249 +6582,134249 +6583,133942 +6584,133942 +6585,133942 +6589,134709 +6590,135614 +6591,135610 +6592,135612 +6593,135612 +6594,135616 +6595,134537 +6596,134537 +6597,135617 +6598,135614 +6599,135610 +6600,135612 +6601,135610 +6602,135614 +6603,135611 +6604,135531 +6605,135614 +6606,135610 +6607,135611 +6609,134583 +6610,133343 +6611,135615 +6612,135614 +6613,134118 +6614,134133 +6615,132538 +6616,132381 +6617,135493 +6618,134063 +6619,134321 +6620,135464 +6623,133752 +6624,134187 +6625,133707 +6626,134304 +6627,134294 +6628,134304 +6629,134304 +6630,133725 +6631,133719 +6632,133215 +6633,133707 +6635,134183 +6636,133708 +6637,132535 +6638,132535 +6639,133472 +6640,133472 +6641,134413 +6642,134297 +6643,134064 +6644,134366 +6645,133742 +6646,134305 +6647,135229 +6651,133723 +6652,135240 +6655,134367 +6656,133722 +6657,135233 +6658,134303 +6659,134566 +6660,134355 +6661,134188 +6663,134106 +6664,135232 +6665,134413 +6666,134298 +6667,133435 +6668,133718 +6669,134297 +6670,133345 +6671,134297 +6672,133736 +6673,134089 +6674,133730 +6675,134361 +6676,132889 +6677,133750 +6678,133970 +6679,134353 +6680,133970 +6681,133732 +6682,132936 +6683,134359 +6684,134363 +6685,134358 +6686,134368 +6687,134369 +6688,134076 +6689,134075 +6690,134437 +6691,134360 +6692,134339 +6693,134339 +6694,134343 +6695,135229 +6697,134304 +6698,134353 +6699,134321 +6700,134368 +6701,132381 +6702,132889 +6703,134437 +6704,134360 +6705,134361 +6706,134238 +6707,134065 +6708,134237 +6709,134235 +6710,134238 +6711,134236 +6712,134237 +6713,134235 +6714,134237 +6715,132539 +6716,135039 +6717,132939 +6718,134582 +6719,132603 +6720,132542 +6721,132603 +6722,132715 +6723,132939 +6724,134582 +6725,132939 +6726,132493 +6727,133072 +6728,135006 +6729,135039 +6730,132542 +6731,134706 +6732,135039 +6733,132493 +6734,133072 +6735,132939 +6736,135039 +6737,132495 +6738,132602 +6739,132611 +6740,135006 +6741,132542 +6742,132603 +6743,132715 +6744,132939 +6745,134582 +6746,132538 +6747,132493 +6748,132484 +6749,132939 +6750,134582 +6751,132939 +6752,132939 +6753,132495 +6754,134585 +6755,132492 +6756,132606 +6757,135006 +6758,132603 +6759,134706 +6760,132491 +6761,135006 +6762,132542 +6763,132603 +6764,132715 +6765,132939 +6766,134582 +6767,132493 +6768,135006 +6769,133072 +6770,134706 +6771,134706 +6772,134582 +6773,134582 +6774,134582 +6775,135039 +6776,132495 +6777,132537 +6778,134582 +6779,132542 +6780,134582 +6781,135039 +6782,135006 +6783,132381 +6784,132715 +6785,132939 +6786,134582 +6787,132603 +6788,132939 +6789,134582 +6790,133040 +6791,133040 +6792,133040 +6793,133039 +6794,133485 +6795,133485 +6796,133483 +6797,133476 +6798,133039 +6799,133477 +6802,134583 +6803,132542 +6804,133343 +6806,133479 +6807,133041 +6808,133476 +6809,133040 +6810,133040 +6811,133041 +6812,133041 +6813,133489 +6814,133041 +6815,135229 +6816,135005 +6819,132492 +6820,132535 +6821,132606 +6822,132938 +6823,133071 +6824,135229 +6825,133345 +6827,132535 +6828,132602 +6830,132492 +6831,132939 +6832,135038 +6833,132493 +6834,132542 +6835,132603 +6836,132939 +6837,133072 +6838,132938 +6839,133071 +6840,135038 +6841,132535 +6842,132938 +6843,132602 +6844,132943 +6845,132535 +6846,132939 +6847,132492 +6849,134583 +6850,134104 +6851,134104 +6852,132606 +6853,132492 +6854,132535 +6855,132602 +6856,132938 +6857,133071 +6858,133071 +6859,132939 +6860,132535 +6861,132606 +6862,132492 +6863,132939 +6864,132492 +6865,134582 +6866,132543 +6869,132535 +6870,132606 +6871,132938 +6872,132492 +6873,133071 +6874,135034 +6875,132492 +6876,132535 +6877,133070 +6878,132602 +6879,135040 +6880,132535 +6882,134583 +6883,132937 +6884,132608 +6885,132535 +6886,133072 +6887,132535 +6888,132606 +6889,133071 +6890,133070 +6891,132535 +6892,133071 +6893,132939 +6894,132604 +6895,133070 +6896,132943 +6897,133071 +6898,132535 +6899,132602 +6900,133071 +6901,132939 +6902,132495 +6903,132535 +6904,132602 +6905,132938 +6906,135038 +6907,132535 +6909,132543 +6911,132495 +6912,135036 +6913,132604 +6914,135038 +6915,132602 +6916,135006 +6919,135038 +6920,132938 +6921,132939 +6922,132938 +6923,132498 +6924,132604 +6925,134938 +6926,132493 +6927,134938 +6928,135040 +6929,135036 +6930,132939 +6931,132535 +6932,134583 +6933,134585 +6934,132602 +6935,135040 +6936,132535 +6937,132939 +6938,132535 +6939,133074 +6940,132939 +6941,135040 +6942,132535 +6943,132939 +6944,132535 +6945,133343 +6946,132498 +6947,132535 +6948,132602 +6949,132938 +6951,134583 +6952,132535 +6953,132604 +6954,132938 +6955,132938 +6956,132535 +6958,132495 +6959,132535 +6960,132939 +6961,132490 +6962,132938 +6963,132495 +6964,132495 +6965,132535 +6966,132602 +6967,132938 +6968,132495 +6969,132938 +6970,132606 +6971,135034 +6972,132535 +6973,132602 +6974,133071 +6975,132938 +6976,133345 +6977,132602 +6979,133071 +6980,132606 +6981,132498 +6982,132938 +6983,132493 +6984,132535 +6985,132606 +6986,132938 +6987,132535 +6988,133076 +6989,132624 +6990,133071 +6991,132937 +6992,133070 +6993,132535 +6994,132535 +6995,132624 +6996,132605 +6997,132535 +6998,132602 +6999,132938 +7000,132939 +7001,132492 +7002,132535 +7003,132535 +7004,135034 +7005,132608 +7006,132492 +7007,132492 +7008,133276 +7012,134229 +7013,133728 +7014,134937 +7015,134938 +7016,132759 +7017,132535 +7018,132938 +7019,135033 +7020,135574 +7021,135574 +7022,135128 +7023,133720 +7024,135234 +7025,132608 +7026,134075 +7029,132543 +7030,135144 +7031,135229 +7032,135005 +7035,132381 +7036,133730 +7037,135233 +7038,134166 +7039,133944 +7040,132392 +7041,134335 +7042,133721 +7043,134303 +7044,133730 +7045,134128 +7046,132496 +7047,134269 +7048,133723 +7049,134334 +7050,134085 +7051,134086 +7052,134084 +7053,134128 +7054,133724 +7055,135005 +7056,133345 +7059,132612 +7060,132601 +7061,132494 +7062,135032 +7063,135032 +7064,134070 +7065,135437 +7066,133750 +7067,132905 +7068,134058 +7069,135637 +7070,132607 +7071,134368 +7072,134063 +7073,133735 +7074,134400 +7075,133435 +7076,133218 +7077,132768 +7078,134184 +7080,134583 +7081,132542 +7082,133343 +7083,132606 +7084,135005 +7085,134940 +7086,134371 +7087,134058 +7088,133565 +7089,133723 +7090,133280 +7092,132381 +7093,133278 +7094,135231 +7095,134170 +7096,134707 +7097,133622 +7098,135641 +7099,133728 +7100,133730 +7101,133732 +7102,133730 +7103,133731 +7104,133730 +7105,134437 +7106,134094 +7107,134359 +7108,132938 +7110,133884 +7111,132484 +7112,134354 +7113,133950 +7116,133343 +7117,132612 +7118,132612 +7119,134117 +7120,134118 +7121,134754 +7122,134085 +7123,133437 +7124,134797 +7125,134754 +7126,133718 +7127,133848 +7128,134944 +7129,134298 +7130,133977 +7131,133438 +7132,132604 +7133,133277 +7134,133723 +7135,134299 +7136,134442 +7137,133848 +7138,133741 +7139,133733 +7140,134400 +7141,134170 +7142,134338 +7143,135463 +7144,132318 +7145,133722 +7146,134070 +7147,135276 +7148,134577 +7149,134413 +7150,133731 +7151,134441 +7152,133741 +7153,134514 +7154,133722 +7155,134514 +7156,135035 +7157,135234 +7158,133218 +7159,132608 +7161,133476 +7162,134138 +7163,133707 +7164,134161 +7165,134231 +7166,133622 +7167,134070 +7168,134341 +7169,134353 +7170,134360 +7171,133849 +7174,134583 +7175,134717 +7176,134301 +7177,134431 +7179,134584 +7180,132543 +7182,134583 +7184,134416 +7185,134076 +7186,133725 +7187,133473 +7188,134174 +7189,134116 +7193,134583 +7195,132274 +7196,133974 +7197,133281 +7198,132767 +7199,135005 +7202,136063 +7203,136040 +7204,132935 +7205,134132 +7206,134732 +7207,134294 +7208,132602 +7209,133721 +7210,134334 +7213,134582 +7214,132543 +7215,134064 +7216,135463 +7217,134414 +7218,133434 +7219,133639 +7220,134064 +7221,134116 +7229,132274 +7230,132179 +7231,132179 +7232,134572 +7233,133466 +7234,133470 +7235,136220 +7236,133437 +7237,132760 +7238,132543 +7239,135272 +7240,134184 +7241,134184 +7242,134143 +7243,133218 +7244,133435 +7245,134335 +7246,134414 +7247,134416 +7248,134415 +7249,133434 +7251,133718 +7252,135034 +7253,135233 +7254,134514 +7256,133587 +7257,134336 +7259,134068 +7260,133787 +7261,134333 +7262,134719 +7263,133472 +7264,134415 +7266,136063 +7267,134075 +7268,134442 +7269,134338 +7270,134937 +7271,133277 +7273,134188 +7274,136065 +7275,134400 +7276,133942 +7277,133280 +7278,135464 +7279,134132 +7280,134400 +7281,132939 +7282,132943 +7283,134184 +7284,132608 +7285,134325 +7286,133751 +7287,133944 +7288,136063 +7289,133633 +7290,135437 +7291,134414 +7292,135463 +7293,133738 +7294,134366 +7295,132368 +7296,132368 +7297,135436 +7298,135138 +7299,136232 +7300,135809 +7301,135805 +7302,134325 +7303,135143 +7304,135139 +7305,135143 +7308,135138 +7309,135144 +7310,135145 +7311,135325 +7312,135131 +7313,135321 +7314,135325 +7315,135274 +7316,135326 +7317,135325 +7318,135278 +7319,135311 +7320,135311 +7321,135321 +7322,135280 +7323,135278 +7324,135326 +7325,135311 +7326,134441 +7328,133940 +7329,133218 +7330,134342 +7331,132890 +7332,132894 +7333,132907 +7334,132912 +7335,133227 +7336,134065 +7337,134181 +7338,134304 +7339,134117 +7340,134579 +7341,133436 +7342,134069 +7343,133216 +7344,134376 +7345,134321 +7346,134183 +7347,134362 +7348,134354 +7349,134732 +7350,133724 +7352,133217 +7353,134106 +7354,134353 +7355,133215 +7356,133218 +7357,134339 +7358,134441 +7359,134070 +7361,136071 +7363,132912 +7364,133940 +7365,134440 +7366,133276 +7367,134954 +7368,134321 +7369,134341 +7370,133622 +7371,134377 +7372,133587 +7373,134361 +7374,134250 +7375,133486 +7376,133232 +7377,135128 +7378,134185 +7380,134087 +7381,134413 +7382,134252 +7383,132889 +7384,132892 +7385,134183 +7387,133944 +7388,134254 +7389,133233 +7390,133227 +7391,133216 +7392,133234 +7393,134105 +7394,133884 +7395,134185 +7396,133939 +7397,134535 +7399,134303 +7400,134360 +7401,134074 +7402,134070 +7403,132906 +7404,133218 +7406,134412 +7407,133972 +7408,133587 +7409,134085 +7410,134256 +7411,134065 +7412,134255 +7413,134118 +7414,133848 +7415,134186 +7416,133974 +7417,133588 +7418,132911 +7419,135325 +7420,135274 +7421,132715 +7422,134582 +7423,133071 +7424,132715 +7425,133276 +7426,132392 +7427,132392 +7428,132392 +7429,132392 +7430,134294 +7431,132392 +7432,133486 +7433,135638 +7434,135641 +7437,135128 +7438,133041 +7439,133040 +7440,133040 +7441,133040 +7442,133041 +7443,133964 +7447,133941 +7448,133941 +7449,133942 +7450,133611 +7451,133609 +7452,133610 +7453,133942 +7454,133941 +7455,133941 +7456,133938 +7459,135129 +7460,134249 +7461,134249 +7462,133974 +7463,133974 +7464,135127 +7465,134714 +7466,134717 +7467,134787 +7468,133942 +7469,133729 +7473,134719 +7474,134719 +7475,134718 +7476,133476 +7477,133490 +7478,133491 +7479,136040 +7480,135131 +7481,135130 +7482,135271 +7483,135274 +7484,135274 +7485,135325 +7486,135277 +7487,135274 +7488,135274 +7489,135273 +7490,135274 +7491,135280 +7492,135274 +7493,134707 +7494,134520 +7495,134435 +7496,134435 +7497,134428 +7498,135040 +7499,132602 +7500,133950 +7501,134183 +7502,132542 +7503,133343 +7508,132392 +7517,132604 +7524,135225 +7525,135321 +7526,135321 +7528,133072 +7529,133072 +7530,132939 +7531,135613 +7532,135610 +7533,134582 +7537,132542 +7540,132938 +7544,134413 +7545,132490 +7547,133762 +7550,132610 +7551,135006 +7552,135006 +7553,135038 +7554,132535 +7555,135321 +7556,133041 +7557,134249 +7558,133040 +7559,134952 +7560,134582 +7563,132492 +7565,134230 +7566,133748 +7568,134732 +7569,133288 +7570,133288 +7571,132940 +7572,134457 +7573,134183 +7574,132490 +7578,132543 +7583,132535 +7585,133758 +7587,134582 +7588,133688 +7589,133688 +7590,132392 +7593,134251 +7594,134257 +7595,134252 +7596,133677 +7597,133040 +7598,133687 +7600,135493 +7601,133680 +7602,134520 +7603,135493 +7604,135500 +7607,134582 +7612,133854 +7613,133344 +7624,133709 +7625,133710 +7626,133713 +7627,133712 +7629,134332 +7630,133471 +7636,133743 +7637,133743 +7638,134706 +7649,133469 +7653,132539 +7662,132493 +7670,133072 +7678,132490 +7694,134331 +7695,134331 +7696,134459 +7697,134459 +7705,136147 +7706,132089 +7712,133276 +7713,135240 +7714,134431 +7715,134435 +7716,134435 +7717,132905 +7718,133611 +7719,134377 +7721,132089 +7722,135426 +7723,133854 +7724,133072 +7725,135005 +7726,133460 +7728,132490 +7729,134582 +7730,132542 +7733,133461 +7734,133279 +7735,133279 +7736,133462 +7737,134236 +7738,134412 +7739,133763 +7740,134366 +7741,133731 +7742,136232 +7743,134328 +7744,134328 +7746,132490 +7747,133345 +7749,135005 +7750,132539 +7767,134583 +7771,134583 +7774,135006 +7776,132535 +7781,134582 +7786,135039 +7789,132541 +7791,133849 +7798,134327 +7801,133344 +7803,135530 +7817,135145 +7823,132939 +7824,134955 +7825,135006 +7826,135006 +7827,134235 +7828,133587 +7829,132089 +7831,135006 +7834,134582 +7835,132535 +7836,135039 +7837,135010 +7838,135013 +7839,132997 +7840,132996 +7841,132995 +7842,132997 +7843,135018 +7844,135020 +7845,135009 +7846,135021 +7847,135007 +7848,135011 +7849,135012 +7850,135013 +7851,133762 +7852,133763 +7853,135005 +7854,132491 +7855,134583 +7856,133976 +7857,135005 +7858,132491 +7859,135006 +7860,135005 +7865,132089 +7866,135139 +7867,133486 +7879,132539 +7880,132539 +7881,132492 +7882,135018 +7885,133884 +7886,134298 +7887,135139 +7888,133712 +7889,133710 +7890,132606 +7891,133072 +7892,133756 +7897,135006 +7898,135006 +7899,133434 +7900,134582 +7901,132392 +7902,135031 +7903,135012 +7904,135020 +7905,135022 +7906,135029 +7907,135011 +7908,135016 +7909,135030 +7911,135009 +7912,135009 +7913,132762 +7914,132761 +7916,132761 +7918,132766 +7921,132621 +7922,132620 +7923,132621 +7924,132761 +7925,132761 +7926,132765 +7927,132762 +7928,134230 +7929,132607 +7930,132607 +7931,135638 +7932,132492 +7933,132393 +7934,135229 +7936,134185 +7937,133072 +7944,132490 +7945,134583 +7947,134583 +7948,134583 +7950,134583 +7951,134166 +7952,133754 +7953,132606 +7954,132606 +7955,134938 +7956,134943 +7957,134938 +7964,132493 +7965,132392 +7968,132715 +7969,132543 +7972,132543 +7973,132543 +7975,134721 +7976,134721 +7977,135574 +7978,135130 +7979,133768 +7980,132274 +7982,135463 +7983,134132 +7984,134132 +7985,133718 +7986,136155 +7987,136067 +7988,133890 +7989,133721 +7990,134370 +7991,133849 +7992,133952 +7993,133040 +7994,133952 +7995,133749 +7996,133891 +7997,133973 +7998,133969 +7999,133721 +8000,135327 +8001,132395 +8007,133723 +8008,134300 +8009,134300 +8011,133038 +8013,134333 +8014,133849 +8016,135315 +8017,133884 +8024,134333 +8025,134333 +8026,135230 +8027,134134 +8028,133723 +8029,134238 +8030,134238 +8031,134237 +8032,134334 +8033,135138 +8038,133072 +8039,135238 +8040,133741 +8042,134236 +8043,134333 +8044,134131 +8047,134433 +8048,134432 +8049,134712 +8050,134431 +8051,136224 +8052,133587 +8054,132543 +8055,134584 +8060,135229 +8061,135005 +8062,132541 +8067,135229 +8068,133071 +8077,132539 +8078,135271 +8079,134581 +8080,133345 +8082,134583 +8088,133973 +8089,132611 +8090,135316 +8092,133737 +8093,133737 +8094,133742 +8095,135614 +8096,133345 +8097,133460 +8098,135039 +8099,135489 +8100,133481 +8101,133763 +8102,135489 +8103,135490 +8104,135495 +8105,135491 +8106,135493 +8107,135490 +8108,134582 +8109,134582 +8110,134582 +8111,132624 +8112,132624 +8114,134374 +8115,134436 +8116,133436 +8117,133735 +8118,134378 +8119,133749 +8120,134335 +8121,134566 +8122,135139 +8123,135530 +8124,135419 +8127,133890 +8132,134334 +8141,132604 +8146,132543 +8181,134582 +8185,134582 +8197,132604 +8201,132604 +8232,134413 +8233,136245 +8256,135614 +8257,135615 +8258,135615 +8263,134582 +8264,134582 +8265,134582 +8266,133694 +8269,133627 +8270,133625 +8271,133634 +8272,135327 +8273,135324 +8274,135327 +8275,135321 +8276,135327 +8277,135321 +8278,135326 +8279,135325 +8280,135302 +8281,133058 +8282,135145 +8283,134437 +8284,134303 +8285,133053 +8286,134176 +8287,133490 +8289,134176 +8290,135994 +8291,134712 +8292,132938 +8293,132543 +8294,132611 +8295,132499 +8296,134955 +8297,132089 +8298,133052 +8299,135491 +8308,132537 +8311,135229 +8312,132381 +8324,132624 +8325,132490 +8326,134583 +8327,132624 +8328,132490 +8329,134583 +8330,132541 +8331,132624 +8333,132624 +8334,132541 +8335,132624 +8336,132624 +8338,132541 +8339,132624 +8340,132541 +8341,132624 +8342,134583 +8343,132541 +8354,132541 +8359,132624 +8367,132624 +8369,132541 +8371,132624 +8372,132541 +8373,132543 +8374,135037 +8375,132496 +8376,135131 +8377,135131 +8378,135131 +8379,134294 +8381,132622 +8382,132623 +8383,132620 +8384,133641 +8385,135142 +8386,135142 +8391,132541 +8393,133343 +8396,132490 +8399,135038 +8405,132624 +8406,134583 +8411,132624 +8412,134583 +8415,133072 +8417,132624 +8419,132492 +8423,132611 +8427,132624 +8429,133764 +8436,134797 +8437,132611 +8438,135138 +8439,135276 +8440,134582 +8441,133753 +8442,133642 +8444,135005 +8445,132767 +8446,133693 +8447,132417 +8448,135641 +8449,132939 +8450,132939 +8451,132939 +8452,134732 +8453,134715 +8454,132410 +8455,132405 +8456,132405 +8457,132415 +8458,132397 +8459,132405 +8460,132408 +8461,132415 +8462,132405 +8463,132417 +8464,132415 +8465,132417 +8466,132417 +8467,132417 +8468,132415 +8469,132405 +8470,132408 +8471,132620 +8472,135421 +8473,135419 +8474,135419 +8475,135419 +8476,132418 +8477,132408 +8478,135421 +8479,135421 +8480,132417 +8481,132417 +8482,132417 +8483,132402 +8484,132402 +8485,135419 +8486,135419 +8487,132417 +8488,135421 +8489,132397 +8490,132402 +8491,132402 +8492,132402 +8493,132405 +8494,132405 +8495,135421 +8496,135419 +8497,135421 +8498,135419 +8499,132401 +8500,135424 +8501,135424 +8502,132408 +8503,132409 +8504,132408 +8505,132416 +8506,132417 +8507,132408 +8508,132408 +8509,132392 +8510,135423 +8511,135424 +8512,132402 +8513,132402 +8514,132408 +8515,135420 +8516,135420 +8517,132409 +8518,134721 +8519,132408 +8520,132417 +8521,132409 +8522,132397 +8523,134721 +8524,135420 +8525,132402 +8526,132409 +8527,135423 +8528,135423 +8529,135420 +8530,135423 +8531,135420 +8532,135420 +8533,132408 +8534,135424 +8535,135423 +8536,135424 +8537,135424 +8538,135424 +8539,135424 +8540,132402 +8543,134765 +8544,134765 +8545,134776 +8546,134798 +8547,134798 +8555,135638 +8556,135145 +8557,134955 +8560,135231 +8561,133849 +8562,134070 +8563,134304 +8564,134304 +8565,133052 +8566,133052 +8567,133043 +8568,133057 +8569,133060 +8570,133048 +8571,133045 +8572,133046 +8573,133048 +8574,133042 +8575,133046 +8576,133057 +8577,133041 +8578,133045 +8579,133052 +8580,133046 +8581,133046 +8582,133045 +8583,133045 +8584,133053 +8585,133053 +8586,133052 +8587,133046 +8588,133052 +8589,133046 +8590,133053 +8592,133042 +8593,133046 +8594,133052 +8595,133061 +8596,133041 +8597,133052 +8598,133046 +8599,133052 +8600,133046 +8601,133053 +8602,133052 +8603,133671 +8604,133278 +8609,134161 +8616,132089 +8617,134414 +8618,134296 +8619,135864 +8620,135864 +8621,132276 +8622,132995 +8623,133465 +8624,134939 +8625,133713 +8626,134938 +8627,134721 +8628,134330 +8629,132154 +8630,133471 +8631,133635 +8633,135007 +8634,132747 +8635,135011 +8636,135009 +8637,132747 +8638,132638 +8639,132743 +8640,132721 +8641,132634 +8642,132748 +8643,135018 +8644,132631 +8645,132630 +8646,132724 +8647,132725 +8648,132724 +8649,132723 +8650,132724 +8651,132634 +8652,132627 +8653,135012 +8654,132725 +8655,132724 +8656,132626 +8657,132725 +8658,135010 +8659,135007 +8660,132721 +8661,132715 +8662,132760 +8663,132628 +8664,132722 +8665,132723 +8666,135011 +8667,132724 +8668,132741 +8669,132722 +8670,135010 +8671,135014 +8672,132627 +8673,135009 +8674,135017 +8675,132637 +8676,132723 +8677,135020 +8678,132628 +8679,132724 +8680,135007 +8681,135010 +8682,132723 +8683,132631 +8684,132724 +8685,135009 +8686,133053 +8687,133052 +8688,133052 +8689,133052 +8690,133052 +8691,133052 +8692,133041 +8693,133059 +8694,133053 +8695,132719 +8696,132719 +8697,135013 +8698,135009 +8699,135018 +8700,135018 +8701,132724 +8702,135014 +8703,132722 +8704,132722 +8705,135006 +8706,135022 +8707,135014 +8708,135009 +8709,132721 +8710,132724 +8711,134257 +8712,132724 +8713,132721 +8714,132725 +8715,135009 +8716,132736 +8717,135011 +8718,132723 +8719,132739 +8720,135022 +8721,135008 +8722,135008 +8723,132724 +8724,132723 +8725,132741 +8726,132724 +8727,135007 +8728,132741 +8729,133736 +8731,132761 +8732,132724 +8733,135808 +8734,134235 +8735,134235 +8736,134237 +8737,134237 +8738,135006 +8740,134581 +8742,132724 +8743,133708 +8744,132089 +8745,135575 +8746,135575 +8747,135575 +8748,132397 +8749,132492 +8750,133762 +8751,134295 +8752,134715 +8753,133072 +8754,132739 +8755,135637 +8756,133755 +8757,133764 +8758,133754 +8759,133767 +8760,133759 +8761,133770 +8762,133759 +8763,133757 +8764,133769 +8765,133753 +8766,133756 +8767,133760 +8768,133753 +8769,133756 +8770,133770 +8771,133766 +8772,133764 +8773,133767 +8774,133754 +8775,133762 +8776,133765 +8777,133765 +8778,133766 +8779,133766 +8780,133763 +8781,133760 +8782,133761 +8783,133770 +8784,133764 +8785,133757 +8786,133753 +8787,133763 +8788,133758 +8789,133757 +8790,133761 +8791,133760 +8792,133760 +8793,133756 +8794,134357 +8795,133756 +8796,133758 +8797,133754 +8798,133755 +8799,133755 +8800,133754 +8801,133766 +8802,135997 +8803,133486 +8816,133345 +8818,134581 +8822,134581 +8823,132543 +8842,134581 +8859,133643 +8860,133631 +8861,133629 +8864,133754 +8865,133757 +8866,133854 +8867,134063 +8869,132496 +8870,135040 +8871,132496 +8878,133071 +8879,133071 +8896,135139 +8899,135423 +8902,134240 +8903,134240 +8904,135139 +8905,132491 +8907,132634 +8908,132634 +8910,132634 +8911,132611 +8912,132604 +8913,134304 +8914,134305 +8915,133741 +8916,133434 +8917,134338 +8918,133434 +8919,133469 +8921,134797 +8922,134797 +8923,134305 +8924,134304 +8925,132997 +8926,132997 +8927,134329 +8928,132763 +8929,134431 +8930,132996 +8931,132996 +8932,133849 +8933,133469 +8934,134343 +8935,132623 +8936,133471 +8937,134412 +8938,134412 +8939,134339 +8940,134339 +8941,134360 +8942,134368 +8944,135005 +8951,134239 +8952,134356 +8969,134582 +8970,135005 +8971,135005 +9009,135005 +9011,135005 +9031,135005 +9036,132719 +9037,135280 +9038,135038 +9040,132719 +9051,132539 +9055,135280 +9056,132725 +9057,133484 +9058,134754 +9060,135489 +9061,135492 +9062,135473 +9063,135473 +9070,133071 +9077,135036 +9080,132542 +9081,132541 +9082,132938 +9086,133276 +9090,136218 +9103,133288 +9105,134581 +9106,134414 +9109,134327 +9110,134456 +9111,132715 +9112,132715 +9113,132759 +9114,132759 +9116,134575 +9117,133045 +9118,132418 +9119,135423 +9120,133055 +9121,135280 +9122,135466 +9123,132723 +9124,132622 +9126,132762 +9127,132762 +9128,133733 +9129,133733 +9134,133719 +9135,134327 +9139,134342 +9140,134342 +9141,134343 +9143,132630 +9144,134252 +9145,134295 +9147,135239 +9148,133458 +9150,134302 +9151,132765 +9152,133468 +9153,134241 +9154,134241 +9155,134330 +9156,135035 +9157,134295 +9158,135035 +9160,132541 +9161,134143 +9162,134142 +9163,132385 +9164,133741 +9165,133740 +9166,132385 +9167,132995 +9169,132541 +9173,132537 +9174,132537 +9175,135005 +9176,132539 +9177,135005 +9178,135005 +9179,132491 +9180,135005 +9181,132539 +9182,133345 +9183,132491 +9184,132539 +9185,133345 +9186,132495 +9187,133345 +9188,133345 +9189,133345 +9190,133345 +9191,133345 +9199,133473 +9200,134321 +9201,132495 +9207,134754 +9208,134776 +9209,132368 +9215,135128 +9221,134335 +9222,134336 +9241,135038 +9242,134584 +9243,133071 +9245,134176 +9264,135016 +9284,135034 +9285,133281 +9288,132765 +9289,134170 +9290,132763 +9291,134343 +9292,133884 +9305,133288 +9306,135005 +9307,135005 +9310,133439 +9313,135005 +9315,133072 +9317,135005 +9318,133345 +9319,133735 +9320,133072 +9321,135005 +9322,132939 +9323,135005 +9324,132939 +9325,132939 +9326,132539 +9344,135641 +9345,134075 +9346,132719 +9347,135007 +9348,134582 +9349,132721 +9353,132535 +9354,134950 +9365,132493 +9367,132624 +9368,132535 +9369,132491 +9370,135280 +9373,132939 +9374,132939 +9375,134955 +9376,132624 +9377,133278 +9378,132602 +9380,134585 +9381,133057 +9385,132943 +9386,132943 +9387,132738 +9388,132602 +9389,132492 +9390,132939 +9391,134583 +9392,135036 +9393,135036 +9394,133740 +9395,132604 +9396,134298 +9397,133466 +9403,132631 +9404,132535 +9405,132939 +9406,132939 +9407,135040 +9408,132628 +9409,132535 +9410,132535 +9411,132535 +9412,132535 +9413,132939 +9414,132939 +9415,134585 +9416,132624 +9417,132605 +9418,133071 +9419,133071 +9420,133071 +9421,133071 +9422,135040 +9423,133071 +9424,135040 +9425,132628 +9426,132535 +9427,132535 +9428,132535 +9429,134951 +9430,133677 +9431,135005 +9443,134400 +9444,135325 +9445,132893 +9453,134583 +9460,133345 +9465,132312 +9466,135998 +9467,133467 +9484,133057 +9492,133057 +9499,132760 +9500,134706 +9501,132493 +9502,132724 +9503,132939 +9504,132538 +9505,134582 +9506,132939 +9507,132939 +9508,132493 +9509,132724 +9510,132539 +9511,132724 +9512,132539 +9513,132493 +9514,134582 +9515,134344 +9518,132386 +9519,135009 +9520,132539 +9521,132724 +9522,133762 +9523,134582 +9524,132725 +9525,132495 +9526,132939 +9527,135039 +9528,135039 +9529,132939 +9530,132539 +9531,132725 +9532,132723 +9533,132493 +9534,132939 +9535,134582 +9536,132719 +9537,132491 +9538,132492 +9539,134582 +9540,134582 +9541,134582 +9542,134582 +9543,132939 +9544,135039 +9545,132723 +9546,132611 +9547,133755 +9548,132719 +9549,132939 +9550,132609 +9551,132495 +9552,132499 +9553,132537 +9554,132537 +9555,132940 +9556,132940 +9557,133729 +9558,133762 +9559,132606 +9565,132760 +9584,132492 +9585,134169 +9586,132939 +9587,132939 +9588,132939 +9589,132624 +9590,132624 +9591,133345 +9625,132762 +9626,132762 +9627,132624 +9632,134344 +9633,132386 +9634,132609 +9635,135834 +9636,133596 +9637,133596 +9638,134798 +9639,134787 +9640,134706 +9641,132494 +9642,133694 +9643,132721 +9644,132606 +9647,132606 +9649,133786 +9651,133345 +9653,132542 +9656,132624 +9657,133298 +9658,133292 +9659,136065 +9660,134248 +9663,133461 +9665,132624 +9666,134151 +9668,133855 +9669,135005 +9670,132490 +9671,134582 +9672,132535 +9675,132543 +9678,135036 +9686,134583 +9688,133768 +9689,132624 +9693,135139 +9696,132606 +9702,134129 +9711,134374 +9717,134328 +9724,134581 +9725,133461 +9726,132724 +9727,132724 +9728,134232 +9729,134949 +9730,134231 +9731,134711 +9732,134338 +9733,134186 +9734,134577 +9736,134133 +9737,134133 +9738,134583 +9739,132724 +9741,134717 +9742,134583 +9744,135029 +9771,132535 +9772,135005 +9773,132537 +9775,134583 +9786,135005 +9787,134582 +9788,132535 +9790,132624 +9796,135005 +9815,134294 +9822,132766 +9823,133355 +9824,133801 +9825,133800 +9826,136217 +9832,133352 +9833,133354 +9834,133346 +9835,133349 +9836,133356 +9837,133347 +9838,133355 +9839,133351 +9840,133357 +9841,133347 +9842,133353 +9843,133356 +9845,133347 +9846,133357 +9847,133350 +9849,133348 +9850,133349 +9851,133354 +9852,133291 +9853,133290 +9854,133289 +9857,133295 +9858,133297 +9859,133294 +9860,133296 +9865,133352 +9866,132539 +9867,133043 +9872,132418 +9879,132539 +9880,135006 +9881,132938 +9882,132938 +9884,132537 +9885,132498 +9886,132498 +9888,132493 +9889,135006 +9891,135009 +9892,134582 +9893,132609 +9894,132609 +9895,132495 +9896,132494 +9898,132493 +9900,135005 +9902,132540 +9903,132496 +9904,132495 +9905,132494 +9906,135009 +9907,132493 +9908,132493 +9909,132494 +9910,132494 +9911,132493 +9912,132493 +9913,134582 +9914,132500 +9915,132539 +9916,132500 +9917,132496 +9919,132606 +9920,132495 +9921,132493 +9923,135005 +9924,134581 +9925,132719 +9926,135005 +9927,135009 +9928,132543 +9929,132543 +9930,132721 +9931,132493 +9932,132495 +9934,135010 +9935,135030 +9936,135009 +9937,134582 +9938,132535 +9943,133756 +9944,135005 +9945,134582 +9946,132538 +9947,133072 +9949,135005 +9959,132601 +9960,134582 +9961,132601 +9964,132624 +9967,132938 +9970,134582 +9971,133759 +9972,135005 +9973,134582 +9974,134582 +9975,134582 +9976,135005 +9977,132540 +9978,133753 +9983,135009 +9984,134582 +9985,132540 +9986,133753 +9987,134581 +9988,134582 +9989,135005 +9990,132539 +9992,132538 +9993,134582 +9994,135005 +9995,132719 +9996,135011 +9997,135037 +9998,135040 +9999,135040 +10001,135005 +10002,134582 +10003,132540 +10004,132535 +10005,135018 +10006,134582 +10007,132535 +10008,132539 +10009,132535 +10014,134582 +10017,132541 +10018,135005 +10029,134305 +10031,135005 +10033,132535 +10035,132535 +10036,132535 +10041,134305 +10043,134305 +10044,132913 +10047,135229 +10050,134582 +10052,132535 +10057,133766 +10058,133766 +10061,132490 +10062,132535 +10063,133345 +10066,132490 +10070,135005 +10071,134581 +10072,132535 +10076,132716 +10077,135005 +10078,132490 +10079,134582 +10081,134582 +10083,132490 +10086,135005 +10087,132490 +10091,132490 +10092,132535 +10094,135005 +10095,132535 +10099,132535 +10103,132490 +10104,132535 +10107,132535 +10108,133765 +10109,134582 +10110,135005 +10112,135018 +10113,135005 +10114,134582 +10115,132539 +10116,135005 +10119,133755 +10120,133753 +10121,132535 +10122,133345 +10124,135005 +10125,135009 +10126,135009 +10127,135005 +10128,133756 +10141,132540 +10143,134581 +10147,132543 +10149,132540 +10150,135006 +10151,134581 +10157,135005 +10158,135005 +10161,134583 +10165,133288 +10166,135038 +10167,135038 +10168,135037 +10169,135036 +10170,135038 +10171,135038 +10172,135037 +10173,135037 +10174,135039 +10175,135039 +10176,135037 +10177,135036 +10178,135037 +10179,135039 +10183,135139 +10185,133693 +10188,134581 +10190,135437 +10191,135005 +10195,135005 +10196,135005 +10200,134584 +10209,134584 +10210,132537 +10214,132539 +10215,132606 +10216,132605 +10217,134582 +10234,132535 +10243,135022 +10244,134582 +10247,132634 +10250,132543 +10251,133693 +10252,132494 +10253,132495 +10254,134581 +10272,132535 +10273,136246 +10274,135467 +10275,135471 +10300,132624 +10301,133676 +10306,132624 +10307,132535 +10314,135006 +10345,133726 +10349,132631 +10353,133640 +10354,132539 +10356,135327 +10358,132626 +10359,132626 +10362,132539 +10365,134232 +10366,134950 +10370,132541 +10373,132763 +10374,133764 +10377,134172 +10379,133345 +10380,132634 +10381,135006 +10385,133730 +10389,135005 +10391,132940 +10396,135005 +10398,135005 +10399,134294 +10400,134583 +10401,135834 +10402,132601 +10409,132490 +10410,132493 +10411,132495 +10412,132607 +10417,134354 +10425,134354 +10426,135274 +10434,132535 +10439,134583 +10441,132736 +10442,132490 +10443,134581 +10448,135036 +10449,134128 +10450,134584 +10451,132537 +10452,132939 +10453,133485 +10454,132539 +10459,135005 +10463,135005 +10475,135005 +10476,135005 +10480,135005 +10481,133644 +10482,135005 +10483,135005 +10484,135005 +10485,135005 +10486,135005 +10490,135005 +10494,134581 +10501,133693 +10502,132723 +10504,132742 +10505,135005 +10508,132939 +10509,132939 +10514,132415 +10523,134583 +10527,132624 +10528,132760 +10529,132600 +10530,134321 +10532,132498 +10534,133345 +10535,132939 +10536,134955 +10537,133119 +10538,134708 +10546,134177 +10557,132939 +10562,132541 +10563,135005 +10565,132940 +10582,132940 +10583,132624 +10587,132940 +10590,132940 +10596,132537 +10597,135040 +10600,132939 +10614,134582 +10615,132541 +10622,132543 +10631,132760 +10632,132537 +10642,133055 +10654,135145 +10656,135225 +10657,134520 +10661,135005 +10665,135531 +10666,135530 +10669,135005 +10671,135531 +10672,135530 +10673,135530 +10680,132535 +10695,133345 +10700,134068 +10711,132542 +10713,135005 +10714,132540 +10715,132939 +10716,135640 +10717,135640 +10721,134951 +10729,132938 +10732,132492 +10734,132535 +10737,132492 +10739,132535 +10748,132492 +10750,132535 +10758,132492 +10760,132535 +10764,132537 +10766,132491 +10767,132491 +10768,134581 +10774,134706 +10775,132540 +10776,132939 +10778,132492 +10780,132492 +10782,132492 +10784,132535 +10789,132535 +10802,135005 +10806,135273 +10808,132417 +10814,133888 +10815,133888 +10816,133888 +10817,133888 +10818,135463 +10819,135463 +10820,133941 +10821,133941 +10822,133941 +10823,133941 +10824,133941 +10825,133941 +10828,132535 +10830,132535 +10833,135030 +10834,135030 +10837,135009 +10840,135029 +10841,133759 +10842,135009 +10843,135009 +10845,135023 +10846,133756 +10847,135010 +10848,135010 +10849,135010 +10852,132543 +10853,132543 +10854,132543 +10860,135009 +10861,135024 +10868,132938 +10871,134582 +10876,134582 +10891,132715 +10892,135025 +10893,135018 +10896,133756 +10912,132939 +10913,132089 +10918,134294 +10919,134298 +10920,134294 +10921,133722 +10922,134250 +10923,134340 +10924,132762 +10928,135005 +10935,132537 +10936,132493 +10950,135005 +10959,135005 +10967,135324 +10968,134950 +10983,135129 +10996,135005 +11009,132535 +11012,133707 +11013,134339 +11026,135129 +11031,133345 +11033,132939 +11034,132939 +11035,132939 +11036,132939 +11037,133756 +11039,133756 +11040,132940 +11041,132940 +11042,132940 +11045,134581 +11047,133072 +11060,132539 +11063,134582 +11069,134582 +11083,134582 +11115,134583 +11119,132938 +11123,132539 +11129,135009 +11130,135011 +11131,132492 +11132,132537 +11133,132723 +11134,132939 +11135,135030 +11138,132724 +11139,132724 +11142,135009 +11143,135009 +11144,132939 +11145,132609 +11146,132538 +11147,132402 +11160,133463 +11161,134941 +11164,134370 +11165,132397 +11166,134581 +11167,132499 +11168,135005 +11169,132938 +11172,132490 +11173,132938 +11180,134416 +11181,133733 +11182,135017 +11183,134572 +11184,134458 +11185,134458 +11193,133942 +11196,132414 +11197,132939 +11198,133887 +11199,136168 +11200,133892 +11201,133892 +11205,135992 +11206,135992 +11207,135992 +11208,135992 +11209,133731 +11210,134302 +11211,133728 +11230,132939 +11247,135530 +11251,135146 +11252,132495 +11253,132492 +11255,132535 +11257,134951 +11259,135145 +11262,136040 +11267,134712 +11268,134712 +11269,132535 +11270,135039 +11271,133484 +11274,135039 +11275,133126 +11276,135639 +11282,135641 +11289,133483 +11320,134343 +11327,135038 +11328,135040 +11329,132537 +11330,132537 +11335,132635 +11336,134583 +11347,132490 +11348,132537 +11350,134441 +11351,134441 +11352,135138 +11353,135138 +11358,135143 +11363,132628 +11365,132492 +11368,132724 +11369,134582 +11370,132939 +11371,132604 +11372,132543 +11373,132539 +11374,132492 +11376,132543 +11377,132543 +11378,132579 +11382,132719 +11383,134582 +11384,132939 +11387,132603 +11388,132543 +11389,135010 +11390,135010 +11391,132539 +11392,132605 +11393,132939 +11394,134585 +11395,132494 +11396,132492 +11397,132579 +11398,132606 +11399,132606 +11400,135010 +11401,135010 +11402,134367 +11410,134249 +11411,134585 +11412,132939 +11413,132493 +11414,132605 +11416,132540 +11418,132492 +11419,135011 +11420,134582 +11421,134706 +11422,134706 +11423,132939 +11424,132609 +11425,132492 +11426,132543 +11427,132724 +11428,134582 +11429,132600 +11430,132492 +11431,134327 +11443,132606 +11446,132535 +11447,132535 +11448,132764 +11449,132761 +11450,134300 +11451,134299 +11452,133890 +11453,133890 +11460,134765 +11461,134765 +11462,134721 +11468,133770 +11472,135037 +11473,135040 +11474,132496 +11475,132493 +11483,134301 +11486,132604 +11489,134360 +11490,132628 +11491,132535 +11492,132604 +11493,132493 +11494,132939 +11495,134583 +11496,135038 +11497,132628 +11501,132604 +11503,135005 +11506,134582 +11507,132939 +11508,132606 +11509,132939 +11510,132499 +11511,132539 +11513,135040 +11514,132493 +11518,135023 +11519,135024 +11520,132638 +11521,132535 +11522,132938 +11523,132498 +11524,133118 +11525,134583 +11526,135038 +11527,132602 +11533,132499 +11539,134582 +11540,135040 +11544,133072 +11545,132539 +11546,132939 +11547,132939 +11548,132539 +11549,132606 +11551,132722 +11552,134582 +11553,133117 +11554,132939 +11555,132602 +11556,132541 +11557,132493 +11558,132492 +11559,134951 +11561,132747 +11562,132637 +11563,132634 +11565,132635 +11569,132606 +11571,132539 +11572,132723 +11573,132541 +11574,132606 +11575,132938 +11576,133071 +11577,133120 +11578,135039 +11579,132723 +11580,132725 +11581,132537 +11582,132603 +11583,132939 +11584,134582 +11585,135039 +11586,132492 +11591,134442 +11598,132634 +11599,132635 +11600,132722 +11601,132743 +11602,132535 +11603,132608 +11604,132938 +11605,132492 +11606,133118 +11607,134583 +11608,135034 +11610,133756 +11611,132539 +11612,132499 +11613,135033 +11614,132723 +11615,132495 +11616,132541 +11617,132601 +11618,133116 +11619,134582 +11620,132938 +11621,135039 +11624,132627 +11625,132602 +11626,132938 +11627,132492 +11628,132493 +11629,132535 +11630,133120 +11631,134583 +11637,132940 +11638,135033 +11639,132499 +11640,132499 +11641,133090 +11642,133090 +11643,132608 +11648,132543 +11650,133344 +11651,132723 +11652,132495 +11653,132537 +11654,132604 +11655,132604 +11656,132939 +11658,133120 +11659,133120 +11660,133344 +11661,134582 +11662,135033 +11663,134442 +11664,134442 +11665,134442 +11666,134442 +11667,134442 +11668,132624 +11693,135325 +11699,132939 +11701,132541 +11702,132938 +11704,132541 +11705,132938 +11712,132492 +11713,134583 +11724,134950 +11725,134950 +11729,134950 +11766,134117 +11778,132540 +11780,134257 +11787,132543 +11791,132609 +11796,132539 +11809,133345 +11814,133345 +11825,134361 +11832,132535 +11840,135229 +11841,132592 +11843,135229 +11847,132592 +11863,134305 +11873,133345 +11878,133345 +11880,133693 +11886,132535 +11889,136040 +11894,132490 +11899,133345 +11900,132535 +11906,135005 +11907,133685 +11908,133688 +11909,133684 +11910,133687 +11911,135005 +11919,135139 +11920,132760 +11921,132760 +11923,133345 +11925,134948 +11926,133672 +11927,134437 +11928,134955 +11929,134437 +11930,134064 +11932,134300 +11935,132535 +11945,132492 +11946,135036 +11947,133723 +11948,134370 +11950,134303 +11951,132939 +11952,132939 +11953,132492 +11954,135489 +11955,132492 +11956,132492 +11957,134304 +11958,136040 +11959,134305 +11960,132498 +11961,135011 +11980,136016 +11982,135005 +11983,135005 +11984,135006 +11990,133346 +11992,132491 +11994,134059 +11997,132491 +11998,134059 +11999,132539 +12001,134582 +12002,132541 +12014,132537 +12018,133294 +12045,132539 +12049,135005 +12050,132541 +12065,134582 +12068,132939 +12069,132539 +12070,132539 +12091,133762 +12105,132906 +12116,132542 +12161,132537 +12169,134581 +12178,134582 +12189,133072 +12190,133072 +12197,132541 +12206,133857 +12207,133434 +12208,133438 +12209,133434 +12210,135126 +12211,135126 +12220,133072 +12221,134455 +12222,134257 +12229,135005 +12230,135005 +12231,132939 +12232,135005 +12236,135805 +12241,132715 +12250,132715 +12251,135005 +12253,132715 +12258,133766 +12262,132541 +12267,132715 +12268,132490 +12271,132715 +12272,132490 +12274,135274 +12276,132490 +12281,132715 +12282,132626 +12284,135321 +12286,135141 +12289,133149 +12293,132539 +12297,132635 +12298,132511 +12299,132945 +12306,135008 +12309,134122 +12310,134121 +12311,135434 +12312,135432 +12313,135432 +12314,132662 +12315,132496 +12316,132609 +12317,132675 +12318,132496 +12319,132543 +12324,132955 +12325,132955 +12328,134937 +12331,132594 +12332,132596 +12333,132594 +12334,132596 +12335,132513 +12338,132540 +12339,132610 +12345,134581 +12353,135005 +12354,132543 +12355,135005 +12356,132543 +12368,132719 +12369,132716 +12370,132716 +12371,132716 +12372,132719 +12377,132662 +12378,132515 +12379,135018 +12381,132655 +12382,132655 +12386,132664 +12387,132678 +12388,134586 +12389,132662 +12390,132958 +12391,133131 +12392,132665 +12393,132663 +12394,132680 +12395,134587 +12396,132644 +12397,132658 +12398,132953 +12399,134586 +12400,132681 +12401,133129 +12402,134589 +12403,135043 +12404,133148 +12405,133149 +12406,133149 +12407,133149 +12408,133146 +12409,134335 +12410,134335 +12411,132543 +12412,135011 +12413,134706 +12414,132939 +12415,132939 +12416,132939 +12417,132609 +12418,132543 +12419,132543 +12420,132939 +12422,132654 +12423,134139 +12424,132493 +12425,133982 +12426,132662 +12427,132513 +12433,132492 +12434,133233 +12435,134458 +12437,135010 +12438,132537 +12439,132537 +12441,132506 +12442,134594 +12443,132939 +12444,132605 +12445,132624 +12446,132627 +12448,132634 +12449,132492 +12450,132939 +12451,132939 +12452,132492 +12453,134583 +12454,132939 +12455,132492 +12456,132613 +12457,132535 +12458,135007 +12459,134589 +12460,132939 +12461,133765 +12462,132606 +12463,132539 +12464,132492 +12465,135008 +12466,132543 +12467,132608 +12468,132939 +12469,135015 +12470,134582 +12471,132673 +12472,132511 +12473,135040 +12474,132535 +12475,132606 +12476,132492 +12477,132939 +12478,132624 +12479,132493 +12480,132537 +12481,132605 +12482,132721 +12483,132939 +12484,134582 +12485,135039 +12486,132613 +12487,132939 +12488,132492 +12489,135038 +12490,132624 +12491,132615 +12492,132606 +12493,132493 +12494,134583 +12495,135038 +12496,132493 +12497,132537 +12498,132603 +12499,132716 +12500,132939 +12501,135039 +12502,134582 +12503,135039 +12507,135029 +12508,135022 +12509,132647 +12510,132492 +12511,132539 +12512,132606 +12513,132939 +12514,134582 +12515,135040 +12545,132490 +12546,132537 +12547,133734 +12555,135006 +12556,133735 +12561,135324 +12562,135130 +12565,134716 +12566,133290 +12567,133290 +12568,133491 +12576,133766 +12582,132535 +12589,132624 +12594,133071 +12595,132743 +12596,132940 +12597,133769 +12600,135146 +12601,135473 +12606,135005 +12610,135314 +12611,133131 +12621,134732 +12622,133075 +12625,132368 +12629,134583 +12631,134583 +12632,132627 +12634,134582 +12637,132490 +12640,132490 +12642,132594 +12643,132519 +12644,132595 +12645,132665 +12646,132657 +12647,132664 +12648,132662 +12649,132663 +12650,132680 +12651,132673 +12652,132665 +12653,132673 +12654,132681 +12655,132679 +12656,132677 +12659,132653 +12660,132660 +12661,132665 +12662,132662 +12663,132675 +12664,132650 +12665,132665 +12666,132644 +12669,132654 +12670,132642 +12671,132654 +12672,132659 +12673,132666 +12674,132663 +12675,132666 +12676,132644 +12677,132661 +12678,132645 +12679,132674 +12680,132654 +12681,132662 +12682,132679 +12683,132675 +12684,132654 +12685,132654 +12686,132674 +12687,132659 +12688,132679 +12689,132651 +12690,132644 +12691,132660 +12692,132642 +12693,132677 +12694,132679 +12695,132670 +12696,132672 +12697,132667 +12698,132659 +12699,132645 +12700,132674 +12701,132645 +12702,132673 +12703,132659 +12704,132674 +12705,132675 +12706,132679 +12707,132665 +12715,132675 +12716,132665 +12717,132660 +12718,132660 +12721,132628 +12722,132628 +12723,132742 +12728,132541 +12729,132607 +12731,135036 +12732,133644 +12733,135434 +12734,135432 +12735,133644 +12736,134335 +12737,135434 +12738,135432 +12745,132535 +12746,134096 +12750,132715 +12771,135005 +12772,135006 +12773,134583 +12776,134582 +12777,134586 +12778,135641 +12779,135641 +12780,134302 +12781,135036 +12782,135036 +12783,132606 +12784,132535 +12788,132537 +12789,135005 +12790,135005 +12793,132719 +12794,132716 +12795,134583 +12801,132535 +12802,135006 +12803,135012 +12804,132605 +12805,134955 +12810,132541 +12812,135473 +12813,132938 +12827,135327 +12828,135312 +12829,135138 +12830,135039 +12831,132624 +12845,132491 +12846,132624 +12849,135005 +12855,135005 +12857,135131 +12858,132661 +12863,133290 +12864,135024 +12865,132939 +12866,135474 +12871,133482 +12872,133071 +12874,133119 +12875,133072 +12876,133126 +12877,135138 +12878,134582 +12880,133723 +12881,132401 +12882,135489 +12883,135498 +12903,135276 +12904,134151 +12905,133072 +12906,133072 +12907,133072 +12908,133070 +12909,133072 +12910,133072 +12911,133072 +12912,133072 +12913,133072 +12914,133072 +12915,133070 +12922,132724 +12923,132724 +12924,132724 +12925,132594 +12926,136016 +12927,132620 +12928,134587 +12929,132995 +12930,134591 +12931,135896 +12932,132493 +12933,133119 +12934,132720 +12935,132602 +12936,133294 +12937,132504 +12938,132958 +12939,133942 +12940,135473 +12941,132738 +12942,132949 +12943,132949 +12944,132624 +12945,132740 +12946,132939 +12947,132939 +12948,132939 +12949,132939 +12954,132541 +12955,132939 +12960,132624 +12961,132626 +12964,134581 +12965,132624 +12966,132736 +12967,134583 +12969,135005 +12970,135005 +12971,132624 +12973,134586 +12974,132415 +12975,135499 +12976,132601 +12977,132499 +12978,135317 +12979,135312 +12980,135036 +12981,132524 +12984,133350 +12985,132940 +12986,135034 +12987,133348 +12988,132537 +12989,135225 +12990,132648 +12991,134344 +12992,135434 +12994,135434 +12995,133723 +12996,134358 +12997,133942 +12998,133623 +13000,134583 +13001,135643 +13002,134253 +13005,133739 +13006,133743 +13011,132629 +13012,135465 +13014,132495 +13019,132760 +13020,132939 +13023,132513 +13024,133277 +13025,134235 +13026,132938 +13034,135030 +13041,135016 +13042,135016 +13043,135016 +13044,132665 +13046,135016 +13048,134584 +13049,132513 +13051,132539 +13052,135060 +13053,132613 +13054,132938 +13055,135022 +13056,135030 +13057,135029 +13058,134955 +13059,135465 +13060,135613 +13061,134177 +13062,134577 +13063,134577 +13064,135640 +13065,135640 +13070,135005 +13075,132612 +13076,132651 +13077,132680 +13078,135324 +13079,135139 +13080,133042 +13081,134227 +13082,134227 +13083,135466 +13084,135466 +13085,133292 +13086,134440 +13087,132628 +13088,132624 +13089,132624 +13090,132624 +13091,132738 +13092,132624 +13093,132535 +13094,132491 +13095,134583 +13096,132943 +13097,132943 +13098,132943 +13099,132602 +13100,132594 +13102,133071 +13103,134564 +13105,133479 +13106,133145 +13107,133145 +13108,132261 +13109,135466 +13110,132762 +13111,135321 +13112,135278 +13113,132395 +13114,135641 +13115,135012 +13116,135022 +13117,134581 +13118,132539 +13119,132645 +13120,134564 +13121,134227 +13122,134228 +13123,133849 +13124,135227 +13125,133472 +13126,134575 +13128,134361 +13129,134074 +13130,135005 +13144,133439 +13145,133071 +13146,133071 +13147,133071 +13171,132541 +13195,132953 +13196,133129 +13197,135005 +13198,133072 +13201,134583 +13206,134583 +13213,135005 +13215,133146 +13216,134442 +13217,134442 +13218,134442 +13219,134955 +13220,133072 +13221,133072 +13222,133756 +13223,133148 +13224,132767 +13225,133072 +13226,133074 +13227,133072 +13228,133072 +13229,132767 +13230,133072 +13231,133072 +13232,133072 +13233,133072 +13234,133072 +13235,133131 +13236,133149 +13237,133072 +13238,133149 +13239,133072 +13240,133072 +13241,133090 +13242,133149 +13243,133129 +13244,133072 +13246,133072 +13247,133693 +13248,133072 +13249,133072 +13250,133071 +13251,133072 +13252,133071 +13253,133694 +13254,133072 +13255,133072 +13256,133072 +13257,133117 +13258,133072 +13259,133126 +13260,133116 +13261,133119 +13262,133072 +13263,133120 +13264,133072 +13265,133072 +13266,133119 +13267,133119 +13268,133072 +13269,133071 +13270,133120 +13271,133071 +13272,133118 +13273,133071 +13274,133070 +13275,133070 +13276,133071 +13277,133070 +13278,133071 +13279,133076 +13280,133071 +13281,133071 +13282,133072 +13283,133071 +13284,133118 +13285,133071 +13286,133071 +13287,133074 +13288,133070 +13289,133071 +13290,134240 +13291,134131 +13292,133046 +13295,133072 +13296,133072 +13300,133072 +13319,132961 +13324,132406 +13326,134334 +13327,134564 +13328,134335 +13337,132666 +13343,132542 +13352,135492 +13353,132949 +13354,134305 +13355,132607 +13356,135146 +13357,134582 +13358,135641 +13359,133491 +13360,132408 +13361,132944 +13362,135010 +13363,132513 +13364,135327 +13365,134594 +13366,132514 +13370,136065 +13386,133072 +13391,133345 +13392,132939 +13393,132939 +13396,132539 +13398,135039 +13401,135005 +13402,135005 +13430,133457 +13433,133854 +13434,135227 +13435,135469 +13445,132537 +13455,135612 +13458,136065 +13459,132490 +13462,132543 +13464,134583 +13466,133042 +13469,135005 +13470,132543 +13483,133070 +13484,132938 +13485,134583 +13486,133476 +13487,135321 +13488,135280 +13489,133941 +13490,135230 +13491,134572 +13492,134572 +13493,132766 +13494,132761 +13495,135435 +13496,134088 +13497,133457 +13499,132537 +13500,132539 +13501,132493 +13502,132540 +13504,135467 +13508,132605 +13511,133276 +13515,134436 +13522,132543 +13523,132543 +13524,132543 +13527,132624 +13528,132537 +13529,135006 +13530,133041 +13531,134340 +13534,133072 +13535,133756 +13536,133072 +13537,133074 +13538,133072 +13539,133072 +13540,133072 +13541,133072 +13542,133072 +13543,133072 +13544,133072 +13545,133131 +13546,133072 +13547,133072 +13548,133072 +13549,133129 +13550,133072 +13551,133072 +13552,133072 +13553,133071 +13554,133071 +13563,133090 +13564,133072 +13583,135273 +13584,132893 +13585,133069 +13603,132494 +13607,133072 +13610,133071 +13611,135229 +13616,133072 +13617,132606 +13620,135005 +13623,133072 +13644,132592 +13645,132592 +13646,132592 +13647,134582 +13648,134582 +13649,134588 +13653,132958 +13654,133131 +13655,132950 +13656,132950 +13657,132669 +13658,132669 +13659,132669 +13660,133128 +13661,133128 +13662,133128 +13664,132511 +13665,132653 +13666,132653 +13667,132653 +13668,132643 +13669,132493 +13670,135049 +13671,135008 +13672,135054 +13673,135054 +13674,135054 +13675,135058 +13676,135057 +13677,135036 +13678,132513 +13679,134586 +13680,132939 +13681,132939 +13682,132669 +13683,132647 +13684,132647 +13685,135016 +13686,134572 +13687,136018 +13688,135805 +13689,136007 +13690,133694 +13691,133694 +13692,133607 +13703,134129 +13706,132542 +13707,132290 +13708,132274 +13709,136066 +13710,132273 +13711,135146 +13712,132539 +13713,133708 +13714,133884 +13715,134437 +13723,135466 +13724,135468 +13754,132939 +13756,132939 +13757,132940 +13758,132495 +13759,135005 +13760,135005 +13761,135005 +13762,135005 +13763,134321 +13783,134579 +13785,132368 +13796,132937 +13799,133718 +13804,132937 +13805,133132 +13806,133724 +13807,132767 +13808,132767 +13809,134582 +13824,134248 +13825,135225 +13826,133942 +13827,133942 +13828,135225 +13829,134070 +13847,132941 +13848,135650 +13849,135725 +13850,135273 +13851,135273 +13852,135273 +13853,135273 +13863,134950 +13864,132539 +13865,132386 +13869,132939 +13884,133626 +13885,134242 +13903,132995 +13904,133940 +13905,133940 +13906,133987 +13907,135005 +13908,135641 +13911,132537 +13912,132939 +13913,132416 +13918,134128 +13927,132543 +13928,135005 +13931,132624 +13932,132541 +13942,132542 +13943,134138 +13983,133754 +13984,133768 +13985,133754 +13986,133756 +13987,134402 +13988,134231 +13990,134333 +13991,134402 +13992,134162 +13996,132543 +13998,133721 +13999,135465 +14000,135465 +14001,132607 +14002,132603 +14003,133763 +14004,132939 +14005,132595 +14006,132595 +14007,134138 +14008,133737 +14019,135434 +14020,132939 +14021,135142 +14022,133101 +14023,134179 +14024,136040 +14025,133712 +14026,133072 +14027,135012 +14028,135421 +14029,132402 +14030,132402 +14031,132402 +14032,132392 +14033,132392 +14034,132395 +14035,132417 +14036,132405 +14037,132392 +14038,134707 +14039,134708 +14040,134708 +14041,135423 +14042,135421 +14043,132513 +14044,134589 +14045,132952 +14046,132543 +14047,132543 +14048,132543 +14049,132543 +14050,132543 +14051,132662 +14052,132662 +14053,132493 +14063,135006 +14064,134589 +14065,132952 +14066,132513 +14067,132651 +14068,132723 +14069,132624 +14070,135006 +14071,134589 +14072,132952 +14073,132609 +14074,132513 +14075,135018 +14076,132939 +14077,132952 +14078,132952 +14079,132939 +14080,132939 +14081,132610 +14082,132609 +14083,132939 +14084,132939 +14085,132939 +14086,132610 +14087,133693 +14088,132939 +14089,132939 +14090,132610 +14091,135040 +14092,135040 +14093,133694 +14094,135018 +14095,135037 +14096,132940 +14097,132940 +14098,132940 +14099,132940 +14100,132610 +14101,132539 +14102,133694 +14103,135018 +14104,132939 +14105,132939 +14106,132939 +14107,132612 +14108,135018 +14109,134581 +14110,132939 +14111,132612 +14112,132539 +14113,135037 +14114,135010 +14115,134581 +14116,132939 +14117,132612 +14118,132539 +14119,132939 +14120,132491 +14121,135040 +14122,135037 +14123,135022 +14124,132492 +14125,132539 +14126,132612 +14127,132939 +14128,134581 +14129,135005 +14130,132494 +14131,132539 +14132,132612 +14133,132939 +14134,134581 +14135,135037 +14136,135037 +14137,135037 +14138,135037 +14139,135022 +14140,132494 +14141,132940 +14142,132609 +14143,132513 +14144,133693 +14145,133694 +14146,133694 +14147,135009 +14148,135009 +14149,132537 +14150,134581 +14151,134581 +14152,132940 +14153,132493 +14154,135014 +14155,132940 +14156,132609 +14157,132494 +14158,135013 +14159,134581 +14160,132940 +14161,132609 +14162,132543 +14163,132493 +14164,135006 +14165,132493 +14166,132543 +14167,132940 +14168,132940 +14169,132940 +14170,135014 +14171,134591 +14172,132940 +14173,132940 +14174,132494 +14175,135007 +14176,135008 +14177,132940 +14178,133693 +14179,135007 +14180,132539 +14181,132612 +14182,132940 +14183,132760 +14184,134706 +14185,132939 +14186,132607 +14187,132537 +14188,132492 +14189,132537 +14190,135009 +14191,132760 +14192,134706 +14193,132939 +14194,132607 +14195,132537 +14196,132492 +14197,132760 +14198,132760 +14199,134706 +14200,132939 +14201,132607 +14202,132492 +14203,135039 +14204,132760 +14205,135039 +14206,134706 +14207,132939 +14208,132607 +14209,132537 +14210,132492 +14211,132760 +14212,135039 +14213,134706 +14214,132939 +14215,132607 +14216,132537 +14217,132537 +14218,132723 +14219,135039 +14220,134582 +14221,132939 +14222,132939 +14223,132607 +14224,132537 +14225,132493 +14226,132723 +14227,132498 +14228,132537 +14229,132607 +14230,132939 +14231,134706 +14232,135039 +14233,132939 +14234,132741 +14235,132495 +14236,132537 +14237,132607 +14238,134706 +14239,135039 +14240,132725 +14241,132600 +14242,132537 +14243,132492 +14244,132725 +14245,132725 +14246,132725 +14247,134582 +14248,132939 +14249,132603 +14250,132537 +14251,132492 +14252,132724 +14253,134582 +14254,132939 +14255,132605 +14256,132537 +14257,132492 +14258,132760 +14259,132716 +14260,132719 +14261,132719 +14262,132939 +14263,132607 +14264,132539 +14265,132492 +14266,132939 +14267,134706 +14268,132539 +14269,132724 +14270,134582 +14271,132724 +14272,132760 +14273,134582 +14274,132939 +14275,132606 +14276,132539 +14277,132494 +14278,132725 +14279,132725 +14280,134582 +14281,132939 +14282,132603 +14283,132541 +14284,132492 +14285,132721 +14286,132721 +14287,132495 +14288,132542 +14289,132601 +14290,133072 +14291,132741 +14292,134582 +14293,133072 +14294,132606 +14295,132542 +14296,132495 +14297,135010 +14298,134582 +14299,132939 +14300,135010 +14301,132496 +14305,134428 +14306,133057 +14307,132997 +14310,132949 +14311,132939 +14312,132939 +14314,132940 +14315,135037 +14316,135037 +14317,135010 +14318,132539 +14319,132609 +14320,133072 +14321,132939 +14322,132940 +14323,132940 +14324,134335 +14325,132539 +14326,132995 +14327,132539 +14328,132539 +14329,132539 +14330,132939 +14331,135057 +14332,134582 +14333,132654 +14334,132495 +14335,132513 +14336,132609 +14337,132955 +14338,134586 +14339,135009 +14340,135010 +14341,132495 +14342,132605 +14343,134590 +14344,132513 +14345,132952 +14346,134586 +14347,132602 +14348,132952 +14349,134591 +14350,135017 +14351,132515 +14352,132540 +14353,132540 +14354,132540 +14355,132606 +14356,132952 +14357,134586 +14358,135009 +14359,135010 +14360,132512 +14361,135037 +14362,132513 +14363,132540 +14364,132601 +14365,132952 +14366,134589 +14367,132724 +14368,132495 +14369,132602 +14370,132952 +14371,135040 +14372,135014 +14373,132952 +14374,134582 +14375,132540 +14376,135031 +14377,135023 +14378,135025 +14379,132724 +14380,132513 +14381,132543 +14382,132600 +14383,132952 +14384,134589 +14385,132601 +14386,132957 +14387,134587 +14388,132724 +14389,132515 +14390,132952 +14391,134591 +14392,132724 +14393,132543 +14394,132957 +14395,134591 +14396,135040 +14397,135014 +14398,132512 +14399,132600 +14400,132952 +14401,132724 +14402,132491 +14403,132543 +14404,132957 +14405,134591 +14406,132724 +14407,132724 +14408,132511 +14409,132539 +14410,132606 +14411,132952 +14412,134592 +14413,135020 +14414,132504 +14415,132951 +14416,135036 +14417,134587 +14418,132725 +14419,132955 +14420,134586 +14421,135037 +14422,135029 +14423,132602 +14424,132952 +14425,132515 +14426,132540 +14427,132611 +14428,132957 +14429,134590 +14430,135010 +14431,132513 +14432,132522 +14433,132518 +14434,132521 +14435,132519 +14436,132524 +14437,132520 +14438,132516 +14439,132517 +14440,132601 +14441,132957 +14442,134592 +14443,132493 +14444,132540 +14445,132952 +14446,134592 +14447,134587 +14448,132495 +14449,132952 +14450,134591 +14451,132514 +14452,132543 +14453,132952 +14454,134590 +14455,132723 +14456,132513 +14457,132957 +14458,134586 +14459,135011 +14460,132498 +14461,132542 +14462,132601 +14463,132952 +14464,132719 +14465,134587 +14466,135010 +14467,132952 +14468,134594 +14469,132512 +14470,132592 +14471,132607 +14472,132760 +14473,132952 +14474,132537 +14475,132955 +14476,134586 +14477,135006 +14478,132957 +14479,134587 +14480,132955 +14481,134589 +14482,132952 +14483,134590 +14484,135018 +14485,132492 +14486,132725 +14487,132959 +14488,134586 +14489,135006 +14490,132952 +14491,134589 +14492,132505 +14493,132602 +14494,133117 +14495,134589 +14496,132646 +14497,132955 +14498,134590 +14499,132647 +14500,132655 +14501,132492 +14502,132493 +14503,132609 +14504,132957 +14505,134586 +14506,132724 +14507,132539 +14508,132605 +14509,132952 +14510,132607 +14511,134706 +14512,132513 +14513,135011 +14514,132539 +14515,132492 +14516,132662 +14517,132654 +14518,132505 +14519,132542 +14520,132601 +14521,132952 +14522,134586 +14523,132645 +14524,132647 +14525,132543 +14526,132543 +14527,132605 +14528,132955 +14529,134590 +14530,132493 +14531,132543 +14532,132955 +14533,132510 +14534,132592 +14535,132607 +14536,132939 +14537,134706 +14538,132760 +14539,132760 +14540,132654 +14541,132607 +14542,132952 +14543,132492 +14544,132607 +14545,132607 +14546,132952 +14547,134706 +14548,132719 +14549,132649 +14550,135040 +14551,135006 +14552,132539 +14553,132952 +14554,134581 +14555,132511 +14556,132952 +14557,132492 +14558,132539 +14559,132606 +14560,132725 +14561,132955 +14562,134586 +14563,132722 +14564,132498 +14565,132541 +14566,132601 +14567,132957 +14568,132500 +14569,132515 +14570,132724 +14571,132955 +14572,134582 +14573,135039 +14574,132955 +14575,132952 +14576,134582 +14577,132492 +14578,132542 +14579,132605 +14580,132957 +14581,135039 +14582,134587 +14583,132955 +14584,132649 +14585,132539 +14586,132606 +14587,133132 +14588,132961 +14589,135033 +14590,134588 +14591,132492 +14592,132492 +14593,132538 +14594,132602 +14595,132722 +14596,132939 +14597,133072 +14598,134582 +14599,135039 +14600,132498 +14601,132612 +14602,132723 +14603,132958 +14604,134592 +14605,132666 +14606,132666 +14607,135036 +14608,132649 +14609,135023 +14610,132539 +14611,133131 +14612,132961 +14613,134588 +14614,132539 +14615,134588 +14616,135005 +14617,132539 +14618,132606 +14619,132939 +14620,134581 +14621,132499 +14622,132646 +14623,132955 +14624,132492 +14625,134588 +14626,132723 +14627,132541 +14628,132606 +14629,132938 +14630,133117 +14631,132510 +14632,132537 +14633,132603 +14634,132955 +14635,134587 +14636,135023 +14637,135023 +14638,135023 +14639,132539 +14640,132606 +14641,132961 +14642,134588 +14643,132495 +14644,134588 +14645,132539 +14646,135017 +14647,132608 +14648,132499 +14649,135033 +14650,135005 +14651,132539 +14652,132606 +14653,133135 +14654,132939 +14655,134582 +14656,132495 +14657,135005 +14658,134581 +14659,134581 +14660,132539 +14661,132961 +14662,132495 +14663,132541 +14664,132601 +14665,132723 +14666,133111 +14667,134582 +14668,132938 +14669,135039 +14670,134582 +14671,132504 +14672,132542 +14673,132608 +14674,132722 +14675,134593 +14676,132948 +14677,135056 +14678,135021 +14679,132543 +14680,132608 +14681,132940 +14682,134582 +14683,132499 +14684,132957 +14685,134593 +14686,132493 +14687,132495 +14688,132537 +14689,132723 +14690,132939 +14691,133120 +14692,134582 +14693,132537 +14694,132939 +14695,132939 +14696,135054 +14697,134586 +14698,132949 +14699,132720 +14700,132602 +14701,132535 +14702,132501 +14703,135012 +14704,132496 +14705,132609 +14706,132955 +14707,134582 +14708,132543 +14709,135009 +14710,132491 +14711,134586 +14712,135013 +14713,135011 +14714,132540 +14715,132610 +14716,132939 +14717,134582 +14718,132513 +14719,132939 +14720,132540 +14721,132498 +14722,132542 +14723,132604 +14724,132949 +14725,135015 +14726,132498 +14727,132542 +14728,132604 +14729,132949 +14730,134586 +14731,135015 +14732,132656 +14733,132506 +14734,132656 +14735,132494 +14736,132611 +14737,132957 +14738,134590 +14739,135024 +14740,132673 +14741,135015 +14742,132543 +14743,132608 +14744,132939 +14745,135033 +14746,134581 +14747,132511 +14748,135012 +14749,132539 +14750,132611 +14751,132954 +14752,132514 +14753,132495 +14754,132539 +14755,132961 +14756,135039 +14757,134582 +14758,132725 +14759,132539 +14760,132648 +14761,135012 +14762,133694 +14763,132539 +14764,132610 +14765,132950 +14766,132950 +14767,134581 +14768,132493 +14769,132537 +14770,132603 +14771,132939 +14772,134582 +14773,132716 +14774,132514 +14775,132958 +14776,134587 +14777,134587 +14780,132723 +14781,132718 +14782,132631 +14793,133768 +14794,133768 +14802,132604 +14803,132606 +14831,132605 +14832,132495 +14835,132624 +14845,132760 +14846,132539 +14850,132539 +14851,134305 +14860,132535 +14864,132535 +14866,133345 +14870,132535 +14871,132939 +14887,132939 +14893,132542 +14894,132542 +14895,132542 +14896,132624 +14903,133072 +14904,133072 +14905,133072 +14912,132539 +14921,132537 +14924,133072 +14925,132539 +14926,133072 +14927,132539 +14928,132654 +14933,134583 +14934,132537 +14935,132724 +14936,132498 +14937,132498 +14938,132492 +14939,132539 +14940,132606 +14941,132956 +14942,133117 +14943,134587 +14946,133131 +14949,132543 +14950,135039 +14954,132760 +14955,133343 +14956,133072 +14957,133071 +14958,133071 +14959,133072 +14964,133276 +14965,133276 +14967,134582 +14970,135005 +14971,135005 +14975,134583 +14982,132492 +14984,134357 +14985,133072 +14986,132646 +14988,132955 +14989,134588 +14990,132666 +14993,134459 +14995,132719 +14996,132592 +14997,132607 +14998,133117 +14999,132493 +15000,132939 +15001,134706 +15002,135039 +15003,135007 +15004,132677 +15005,132677 +15006,133101 +15007,132606 +15008,132966 +15009,132966 +15010,134593 +15011,132495 +15012,132497 +15013,135033 +15014,135033 +15015,134593 +15016,132506 +15017,132542 +15018,132959 +15019,133111 +15020,134594 +15021,135058 +15022,132724 +15023,132608 +15024,133131 +15026,133601 +15027,134564 +15028,135464 +15029,133753 +15030,133753 +15031,133753 +15032,133753 +15033,133753 +15034,133763 +15035,133762 +15036,133756 +15037,133756 +15038,133770 +15039,133765 +15040,133768 +15041,133754 +15042,133770 +15043,133765 +15044,133755 +15045,133754 +15046,133763 +15047,133763 +15048,133753 +15049,133753 +15050,133759 +15051,133759 +15052,133767 +15053,133754 +15054,133763 +15055,133763 +15056,133763 +15057,134354 +15058,134305 +15059,133757 +15060,133762 +15061,133767 +15062,133756 +15063,133756 +15064,133759 +15065,133765 +15066,133769 +15067,133769 +15068,133756 +15069,134354 +15070,133766 +15071,133754 +15072,133764 +15073,133763 +15074,133764 +15075,133764 +15076,133754 +15077,133767 +15078,133759 +15079,133754 +15080,133754 +15081,133764 +15082,133768 +15083,133767 +15084,133759 +15085,133754 +15086,133758 +15087,133762 +15088,133762 +15089,133763 +15090,133765 +15092,133770 +15093,133770 +15094,133756 +15095,133763 +15096,133754 +15097,133758 +15098,133765 +15099,133758 +15100,133763 +15101,133766 +15102,133770 +15103,133762 +15104,133765 +15105,133766 +15106,133759 +15107,133756 +15108,133756 +15109,133762 +15110,133754 +15112,133757 +15113,133757 +15114,134358 +15115,133759 +15116,133756 +15117,134305 +15118,133763 +15119,133770 +15120,133760 +15121,133754 +15122,133763 +15123,134236 +15124,133756 +15125,133757 +15126,133759 +15127,133765 +15128,133765 +15143,133760 +15144,133759 +15145,133754 +15147,133762 +15148,133765 +15149,133753 +15150,134376 +15151,133762 +15152,133756 +15153,133763 +15154,134367 +15155,133763 +15156,133754 +15157,133762 +15158,133766 +15159,133767 +15160,133755 +15161,133760 +15162,133770 +15163,133770 +15164,133754 +15165,133770 +15166,133754 +15167,133762 +15168,133764 +15169,133761 +15170,133753 +15171,133762 +15172,133762 +15173,134121 +15175,133765 +15176,133759 +15177,134333 +15178,133754 +15179,133766 +15180,133758 +15181,133768 +15183,133757 +15184,133759 +15185,133756 +15186,133753 +15187,132656 +15188,133762 +15189,134305 +15190,134305 +15191,133760 +15192,133760 +15193,133754 +15194,132655 +15195,133760 +15196,133770 +15197,133755 +15198,133764 +15199,133763 +15200,132659 +15201,132659 +15202,133754 +15206,133754 +15207,133766 +15208,133757 +15209,134367 +15210,133760 +15211,133760 +15212,133757 +15213,133764 +15214,133758 +15215,133764 +15216,133756 +15217,133770 +15218,133767 +15219,132645 +15220,132655 +15221,132673 +15222,133770 +15223,132645 +15224,133768 +15225,133753 +15226,133764 +15227,133768 +15228,133760 +15229,133768 +15230,132652 +15231,132652 +15232,132661 +15233,133763 +15234,133763 +15235,132656 +15236,133769 +15237,135463 +15238,135463 +15239,133768 +15240,133763 +15241,133760 +15242,133759 +15243,132657 +15244,133762 +15245,133765 +15246,133758 +15247,133753 +15248,133756 +15249,133762 +15251,133755 +15252,133756 +15253,133763 +15254,133758 +15255,133762 +15257,133759 +15258,133754 +15259,133754 +15260,133754 +15261,133764 +15262,133760 +15263,133763 +15264,133763 +15265,133762 +15266,133756 +15267,133769 +15268,133763 +15269,133762 +15270,133762 +15271,133766 +15272,133760 +15273,133756 +15274,134942 +15275,133071 +15276,133071 +15277,133756 +15278,133072 +15279,133131 +15280,133756 +15281,133131 +15282,133071 +15283,133131 +15284,133756 +15285,133120 +15286,133071 +15287,133135 +15288,133070 +15289,133072 +15290,133118 +15291,133118 +15292,132767 +15293,133133 +15294,133071 +15295,133132 +15296,133071 +15297,133071 +15298,133132 +15299,133071 +15300,133090 +15301,133118 +15302,133071 +15303,133072 +15304,133071 +15305,133071 +15306,133072 +15307,133111 +15308,133694 +15309,133101 +15310,133072 +15311,133117 +15312,133072 +15313,133072 +15314,133133 +15315,133072 +15316,133117 +15317,133117 +15318,133071 +15319,133129 +15320,133071 +15321,133128 +15322,133146 +15323,133072 +15324,133070 +15325,133072 +15326,132381 +15327,133141 +15328,132381 +15329,133132 +15330,132381 +15331,133131 +15332,133111 +15333,133138 +15334,133071 +15335,133073 +15336,132767 +15337,133131 +15338,133072 +15339,133136 +15340,133071 +15341,133122 +15342,133120 +15343,133072 +15344,133117 +15345,133117 +15346,133139 +15349,133072 +15356,133071 +15365,133072 +15370,133072 +15371,133071 +15374,134329 +15382,135005 +15384,133072 +15392,133071 +15393,133071 +15398,135007 +15399,132496 +15400,132645 +15401,134592 +15402,135033 +15403,133101 +15404,132957 +15405,132966 +15406,133766 +15407,132608 +15408,132543 +15409,132543 +15410,132608 +15411,132501 +15412,132535 +15413,132615 +15414,132717 +15415,132956 +15416,134706 +15417,135032 +15418,133770 +15419,134951 +15420,133293 +15421,133294 +15422,133353 +15423,135139 +15424,135139 +15425,135464 +15426,134336 +15427,135464 +15428,135466 +15429,135139 +15430,135138 +15431,133072 +15432,133345 +15440,132624 +15442,132541 +15445,132541 +15456,135029 +15457,134581 +15459,135029 +15466,133041 +15467,133041 +15468,133041 +15469,133041 +15470,135271 +15471,132392 +15472,135425 +15473,133476 +15474,135139 +15477,133072 +15484,135009 +15492,133077 +15499,135005 +15501,133078 +15502,133118 +15503,133120 +15504,133124 +15505,133118 +15506,133073 +15507,133027 +15508,133118 +15509,135005 +15510,134940 +15511,133071 +15512,133078 +15513,133139 +15514,135005 +15515,135005 +15517,133141 +15518,133071 +15519,133071 +15520,133071 +15521,133071 +15523,133072 +15524,135005 +15525,134321 +15543,133133 +15544,133072 +15545,133072 +15546,133116 +15547,133072 +15548,133111 +15549,133120 +15550,133076 +15551,133128 +15555,134249 +15556,135144 +15557,134121 +15561,135140 +15562,133071 +15564,135144 +15565,134121 +15574,132943 +15576,132395 +15578,132540 +15583,134366 +15589,132596 +15590,132596 +15591,135325 +15592,133676 +15593,133676 +15596,133622 +15647,133298 +15648,135005 +15650,135005 +15654,135005 +15658,133298 +15676,133276 +15684,132938 +15685,133289 +15686,134128 +15687,134132 +15688,134135 +15692,132594 +15704,135313 +15705,133731 +15706,134167 +15707,134298 +15708,134305 +15709,134563 +15710,134829 +15711,134830 +15712,134831 +15713,134832 +15714,134833 +15715,134850 +15716,134851 +15717,134852 +15718,134853 +15719,135124 +15720,132945 +15721,132938 +15722,132938 +15725,134334 +15726,133056 +15727,132624 +15729,132624 +15730,135231 +15731,132750 +15732,134843 +15733,134836 +15734,134857 +15736,134815 +15737,134822 +15738,134871 +15739,135280 +15740,135302 +15741,134804 +15742,134875 +15744,132952 +15745,134717 +15747,134720 +15748,134754 +15750,134743 +15751,132966 +15752,132966 +15753,132966 +15760,133131 +15763,132952 +15769,132952 +15770,134858 +15771,134818 +15773,134844 +15774,134824 +15783,135005 +15786,133488 +15787,134872 +15788,134813 +15789,134837 +15790,134823 +15791,134801 +15792,134822 +15793,134859 +15794,134800 +15795,133476 +15796,135466 +15797,134581 +15798,132161 +15799,135145 +15800,135036 +15801,135138 +15802,135473 +15803,133069 +15804,133069 +15805,135241 +15806,135466 +15807,132407 +15808,132406 +15809,135032 +15810,133071 +15811,133127 +15812,133078 +15813,133042 +15814,133488 +15815,132944 +15816,132953 +15817,133770 +15818,134951 +15819,135039 +15820,132667 +15821,135615 +15822,133041 +15823,134581 +15824,134587 +15825,134066 +15826,132312 +15827,132312 +15828,135138 +15829,133069 +15830,133069 +15831,135005 +15833,133069 +15834,133766 +15835,135616 +15837,132499 +15843,133101 +15844,133116 +15845,133941 +15846,133117 +15847,133135 +15851,134533 +15852,134534 +15853,134532 +15854,134529 +15855,134524 +15856,134527 +15857,134523 +15858,135022 +15859,133111 +15860,133133 +15861,133135 +15862,133090 +15863,133693 +15864,133117 +15865,132952 +15866,133769 +15867,135225 +15883,134949 +15884,134335 +15885,135036 +15886,132537 +15887,133054 +15888,132396 +15889,132539 +15890,135044 +15891,132941 +15892,132941 +15893,132941 +15894,132941 +15895,135143 +15896,135127 +15897,132633 +15898,134590 +15899,132397 +15904,133072 +15905,132767 +15906,133117 +15907,133072 +15908,133135 +15909,133111 +15910,133090 +15911,133090 +15912,133117 +15914,133072 +15915,133072 +15921,133072 +15924,133072 +15925,133072 +15930,135325 +15938,132405 +15939,135010 +15963,133982 +15964,133983 +15965,133985 +15966,132645 +15983,132535 +15986,132535 +15990,135145 +16005,134455 +16023,134867 +16024,134832 +16028,132597 +16037,134941 +16043,133694 +16044,135040 +16052,133645 +16062,134416 +16065,134328 +16067,132939 +16068,132939 +16078,132624 +16079,135054 +16080,132636 +16081,135054 +16082,133071 +16083,133127 +16084,133127 +16085,132535 +16086,132582 +16087,132965 +16088,135040 +16089,135053 +16090,132965 +16091,132961 +16092,134583 +16093,133071 +16099,132624 +16100,134245 +16101,132631 +16102,132965 +16103,134584 +16104,132965 +16105,132965 +16106,135040 +16107,134583 +16108,134583 +16109,132745 +16110,133137 +16111,135043 +16112,132582 +16113,132582 +16114,132626 +16115,133078 +16116,132745 +16117,132745 +16118,132535 +16119,133078 +16120,133078 +16121,133078 +16122,133078 +16123,132963 +16124,132963 +16125,132745 +16126,132405 +16127,135321 +16128,135280 +16129,135275 +16130,135650 +16131,132511 +16132,132501 +16133,134592 +16134,132718 +16135,132966 +16136,132542 +16137,133143 +16138,133046 +16144,135276 +16145,135280 +16146,133055 +16147,135321 +16148,132415 +16149,135125 +16150,135125 +16151,135278 +16152,135325 +16155,135274 +16156,135325 +16157,132624 +16158,132624 +16161,133473 +16164,133072 +16167,133118 +16168,135040 +16169,135040 +16183,132745 +16184,132740 +16189,133597 +16190,134344 +16203,133487 +16204,135274 +16205,132307 +16206,134059 +16207,132266 +16208,132224 +16209,134120 +16210,134437 +16211,134433 +16212,134432 +16213,133071 +16214,133071 +16215,133133 +16216,133046 +16217,133046 +16218,133046 +16223,132953 +16224,133101 +16243,135639 +16245,134581 +16246,135141 +16247,133758 +16248,133758 +16249,133758 +16250,133758 +16263,132482 +16265,134375 +16283,134228 +16284,133636 +16285,133625 +16286,134401 +16287,133634 +16288,134402 +16289,134402 +16290,134401 +16291,134404 +16292,134404 +16293,134402 +16294,134401 +16295,134401 +16296,134530 +16297,133071 +16298,133288 +16299,134536 +16300,134430 +16303,134374 +16309,132624 +16313,135009 +16316,132604 +16321,134846 +16322,134166 +16323,132634 +16325,134807 +16343,134583 +16363,134321 +16364,133892 +16366,132386 +16367,134065 +16368,132539 +16391,132719 +16398,132719 +16407,133345 +16413,133078 +16414,133345 +16417,132543 +16423,135005 +16452,136168 +16453,134246 +16454,134239 +16456,132502 +16464,135652 +16468,132665 +16470,135044 +16471,132718 +16474,134251 +16479,133072 +16480,133072 +16481,132718 +16482,132718 +16483,132513 +16487,134582 +16488,132939 +16489,132634 +16490,135280 +16491,133142 +16492,133142 +16497,135038 +16498,133043 +16499,134582 +16501,132939 +16502,133755 +16503,133755 +16504,133755 +16505,132539 +16506,132605 +16507,132666 +16508,132666 +16509,133565 +16510,134582 +16511,132645 +16512,132663 +16513,132717 +16514,132656 +16515,132958 +16516,132608 +16517,134592 +16518,135035 +16519,135035 +16520,133122 +16521,132539 +16522,132656 +16523,132651 +16524,132718 +16525,132647 +16526,135049 +16527,134594 +16528,132655 +16529,132541 +16530,133078 +16531,132657 +16532,133755 +16533,133755 +16534,134582 +16535,135348 +16536,132761 +16537,135355 +16538,135340 +16539,135316 +16541,135419 +16542,135279 +16543,132665 +16544,133116 +16545,133132 +16547,133983 +16548,133133 +16549,134564 +16550,135017 +16551,135020 +16552,134591 +16553,132539 +16554,132495 +16555,132612 +16556,133754 +16557,135016 +16558,135013 +16559,134586 +16560,135009 +16561,134586 +16562,132955 +16563,132543 +16564,132491 +16565,132491 +16566,132611 +16567,132663 +16568,132681 +16569,132957 +16570,132493 +16571,132601 +16572,135040 +16573,135057 +16574,133763 +16575,135029 +16576,132543 +16577,132495 +16578,132760 +16579,135022 +16580,134592 +16581,132961 +16582,132539 +16583,132513 +16584,132606 +16585,135009 +16586,132939 +16587,132538 +16588,132609 +16589,135009 +16590,135011 +16591,134706 +16592,132952 +16593,132543 +16594,132492 +16595,132607 +16596,132657 +16597,133754 +16598,132392 +16599,135020 +16600,134588 +16601,132951 +16602,132539 +16603,132504 +16604,132612 +16605,132539 +16606,135057 +16607,132658 +16608,133754 +16609,135018 +16610,135031 +16611,132679 +16612,132659 +16613,132679 +16614,132679 +16615,132681 +16631,135010 +16632,134594 +16633,132957 +16634,132543 +16635,132514 +16636,132605 +16637,135049 +16638,133134 +16641,132642 +16642,132961 +16643,132673 +16651,132955 +16652,135036 +16653,132674 +16654,132674 +16655,132675 +16656,134589 +16657,132952 +16658,134581 +16659,132543 +16663,132493 +16664,132609 +16665,132662 +16666,132643 +16667,132658 +16668,132666 +16669,132677 +16670,132663 +16671,132666 +16672,133127 +16673,132670 +16674,132667 +16675,133072 +16676,132667 +16677,132966 +16678,132964 +16680,132944 +16681,132944 +16682,132944 +16683,132944 +16684,132944 +16685,132944 +16686,132944 +16687,132944 +16688,132944 +16689,132944 +16690,132944 +16691,133117 +16692,133101 +16693,133101 +16694,132659 +16695,132660 +16696,132662 +16697,132655 +16698,135012 +16699,135022 +16700,135008 +16701,134586 +16702,132957 +16703,132543 +16704,132491 +16705,132612 +16706,135040 +16707,133766 +16708,135009 +16709,134587 +16710,132940 +16711,132958 +16712,132539 +16713,132537 +16714,132604 +16715,135037 +16716,132504 +16717,132518 +16718,135009 +16719,134592 +16720,132957 +16721,132541 +16722,132491 +16723,132513 +16724,132604 +16725,132629 +16726,132629 +16727,132944 +16728,132944 +16729,132629 +16730,132944 +16731,132944 +16751,132392 +16752,135641 +16753,135641 +16754,135426 +16755,132392 +16756,132392 +16757,132395 +16758,132392 +16759,132394 +16760,135421 +16761,135426 +16762,135419 +16763,135008 +16764,134586 +16765,132952 +16766,132536 +16767,132495 +16768,132610 +16769,135021 +16770,134588 +16771,132952 +16772,132539 +16773,132497 +16774,132612 +16775,133135 +16776,133708 +16777,135006 +16778,134592 +16779,132955 +16780,132539 +16781,132495 +16782,132495 +16783,132602 +16784,132515 +16785,132601 +16786,135040 +16787,132512 +16788,132514 +16789,132952 +16790,132606 +16791,134590 +16792,132515 +16793,132950 +16794,134582 +16795,135010 +16796,134591 +16797,132952 +16798,132543 +16799,132492 +16800,135018 +16801,135241 +16802,132539 +16803,133849 +16804,132606 +16805,132606 +16806,132602 +16807,132492 +16808,132537 +16809,132539 +16810,132539 +16812,132658 +16813,132663 +16814,132940 +16815,132952 +16816,132605 +16817,132939 +16818,132939 +16819,132495 +16820,132579 +16821,132539 +16822,132579 +16823,133130 +16824,133132 +16825,133131 +16826,133118 +16827,135040 +16828,135036 +16829,133694 +16830,133694 +16831,132494 +16832,132495 +16833,132491 +16834,132495 +16835,132515 +16836,134812 +16837,133986 +16838,132496 +16839,134587 +16840,134581 +16841,134588 +16842,134588 +16843,134591 +16844,134582 +16845,134586 +16846,134586 +16847,134589 +16848,134582 +16849,134590 +16850,134594 +16851,134588 +16852,134586 +16853,132539 +16854,132543 +16855,132579 +16856,132579 +16857,132543 +16858,132543 +16860,134356 +16861,134374 +16862,135012 +16863,134581 +16864,132950 +16865,132518 +16866,133693 +16867,132715 +16868,132760 +16869,132610 +16870,135009 +16871,132719 +16872,132721 +16873,132724 +16874,132724 +16875,132724 +16876,132723 +16877,132719 +16878,132660 +16879,133768 +16880,132542 +16881,132539 +16882,132725 +16883,135011 +16884,132725 +16885,132634 +16886,132724 +16887,132609 +16888,132724 +16889,132720 +16890,132721 +16891,132724 +16892,132606 +16893,132723 +16894,135015 +16895,132724 +16896,132723 +16897,132615 +16898,132721 +16899,132725 +16900,132725 +16901,132606 +16902,132724 +16903,135010 +16904,132724 +16905,132611 +16906,132606 +16907,132610 +16908,132498 +16909,132495 +16910,132494 +16911,132493 +16912,132601 +16913,132612 +16914,132495 +16915,132606 +16916,132492 +16917,132515 +16918,132612 +16919,132493 +16920,132501 +16921,132501 +16922,132515 +16923,132510 +16924,132513 +16925,132617 +16926,132607 +16927,132609 +16928,132514 +16929,132602 +16930,132602 +16931,132514 +16932,132494 +16933,132498 +16934,132616 +16935,132513 +16936,132610 +16937,132514 +16938,132493 +16939,132492 +16940,132495 +16941,132495 +16942,132498 +16943,132512 +16944,132940 +16945,132513 +16946,132939 +16947,132515 +16948,132495 +16949,132490 +16950,132938 +16951,134582 +16952,136076 +16953,134706 +16954,134587 +16955,132937 +16956,132937 +16957,134582 +16958,134582 +16959,132954 +16960,134591 +16961,134586 +16962,134587 +16963,134582 +16964,134585 +16965,134582 +16966,132957 +16967,134589 +16968,134706 +16969,132952 +16970,132940 +16971,134582 +16972,134592 +16973,134582 +16974,134582 +16975,134586 +16976,134582 +16977,134589 +16978,134586 +16979,132542 +16980,132543 +16981,132539 +16982,132541 +16983,132541 +16984,132542 +16985,132539 +16986,132535 +16987,132537 +16988,132537 +16989,132541 +16990,132592 +16991,132542 +16992,132540 +16993,132537 +16994,132539 +16995,132537 +16996,132543 +16997,132542 +16998,132543 +16999,132539 +17000,132540 +17001,132607 +17002,132601 +17003,132607 +17004,132609 +17005,132611 +17006,132611 +17007,132607 +17008,132602 +17009,132603 +17010,132611 +17011,132604 +17012,132606 +17013,132604 +17014,132606 +17015,132601 +17016,132605 +17017,132611 +17018,132606 +17019,132603 +17020,132601 +17021,132600 +17022,132600 +17023,132603 +17024,132606 +17025,132606 +17026,132542 +17027,132959 +17031,134586 +17051,132952 +17052,132957 +17053,132957 +17054,132939 +17055,132955 +17057,132939 +17058,132952 +17059,132949 +17060,132955 +17061,132955 +17062,132938 +17063,132949 +17064,132949 +17065,132949 +17066,132952 +17067,132958 +17068,132952 +17069,132952 +17070,132955 +17071,132952 +17072,132952 +17073,132939 +17074,132939 +17075,132939 +17076,132952 +17077,132952 +17091,135020 +17092,132717 +17093,135013 +17094,132720 +17095,132760 +17096,132718 +17097,132716 +17098,135010 +17099,132723 +17100,132722 +17101,132716 +17102,135011 +17103,135014 +17104,132725 +17105,135017 +17111,132498 +17112,132493 +17113,132492 +17114,132492 +17115,132506 +17116,132505 +17117,132513 +17118,132500 +17119,132494 +17120,132543 +17121,132498 +17122,132500 +17123,132645 +17124,132514 +17125,135009 +17126,132515 +17127,132505 +17128,132678 +17129,132506 +17130,132951 +17131,132513 +17132,135058 +17133,132643 +17134,132504 +17135,135040 +17136,132514 +17137,134586 +17138,132537 +17139,132536 +17140,134706 +17141,134586 +17142,134594 +17143,132950 +17144,134585 +17145,134590 +17146,132956 +17147,134587 +17148,132539 +17149,134589 +17150,134593 +17151,134591 +17152,134585 +17153,134586 +17154,134590 +17155,134593 +17156,134588 +17157,132539 +17158,132592 +17159,132537 +17160,134586 +17161,132543 +17162,134514 +17163,132540 +17164,132542 +17165,132542 +17166,132606 +17167,132611 +17168,132601 +17169,132611 +17170,132601 +17171,132609 +17172,132606 +17173,132604 +17174,132951 +17175,132952 +17176,132952 +17177,132952 +17178,132955 +17179,132947 +17180,132940 +17181,132959 +17182,132947 +17183,132949 +17184,132952 +17185,132957 +17186,132955 +17187,132960 +17188,132958 +17189,132955 +17190,135049 +17191,135054 +17192,135036 +17193,135038 +17194,135049 +17195,135058 +17196,135039 +17197,135054 +17198,133117 +17199,133117 +17200,133127 +17201,133118 +17202,133117 +17203,133077 +17204,133122 +17205,133111 +17206,133078 +17211,135007 +17212,134592 +17213,133117 +17214,132718 +17215,132541 +17216,132953 +17217,132538 +17218,132490 +17219,132536 +17220,132536 +17221,132536 +17222,132536 +17223,132952 +17224,132506 +17225,132957 +17226,133076 +17227,132536 +17228,132518 +17229,132612 +17230,132952 +17231,132491 +17232,134582 +17233,132760 +17234,135054 +17235,133090 +17236,132666 +17237,132495 +17238,133770 +17239,135009 +17251,135017 +17252,134593 +17253,132957 +17254,132957 +17255,132940 +17256,132539 +17257,132720 +17258,132535 +17259,132602 +17260,133769 +17261,132493 +17262,132608 +17263,132949 +17264,133076 +17265,134586 +17266,135054 +17267,135054 +17268,133076 +17269,133076 +17270,133076 +17271,135033 +17272,132764 +17273,133127 +17274,133090 +17275,132644 +17276,132670 +17277,133119 +17284,132762 +17288,132620 +17289,135039 +17292,136036 +17293,135039 +17312,132720 +17313,134586 +17314,132949 +17315,133770 +17316,132602 +17317,132535 +17318,132501 +17319,135054 +17320,136087 +17321,133076 +17329,132597 +17343,132248 +17369,133632 +17370,134459 +17391,134527 +17397,134798 +17402,135725 +17403,134863 +17457,133689 +17458,133690 +17459,134531 +17460,134303 +17461,135470 +17462,132716 +17469,134803 +17476,132995 +17491,134867 +17492,134853 +17493,134365 +17494,132253 +17514,134228 +17553,135015 +17572,135006 +17598,134430 +17599,135468 +17600,135469 +17601,135469 +17602,135467 +17606,132225 +17607,132242 +17608,132267 +17635,135006 +17653,135036 +17655,133598 +17656,135036 +17665,134582 +17682,132622 +17685,133278 +17695,134583 +17703,135036 +17719,135005 +17720,134582 +17721,132539 +17724,133603 +17726,135005 +17727,135005 +17728,133070 +17731,133072 +17732,135005 +17733,135005 +17754,133127 +17763,135005 +17773,135005 +17774,135005 +17776,133603 +17785,132247 +17786,132264 +17787,133490 +17788,133061 +17802,135005 +17809,134459 +17867,133072 +17871,134529 +17880,134526 +17881,133979 +17882,134873 +17883,134845 +17884,134955 +17885,134956 +17887,134948 +17888,134948 +17889,134808 +17893,134814 +17896,134810 +17898,134805 +17899,132488 +17902,134874 +17904,134841 +17911,133706 +17912,133461 +17914,133042 +17915,133056 +17916,133056 +17917,132488 +17918,134338 +17919,136098 +17920,133457 +17921,133296 +17922,132488 +17923,132489 +17943,134966 +17944,134948 +17947,135015 +17949,133694 +17950,134581 +17951,132539 +17953,135015 +17957,134133 +17960,132939 +17962,135469 +17969,134581 +17971,134581 +17972,135008 +17973,135008 +17974,134849 +17978,132488 +18005,132760 +18008,134581 +18010,134331 +18021,135228 +18022,134577 +18026,135157 +18039,132937 +18044,133025 +18046,132832 +18047,132833 +18048,132833 +18049,132832 +18050,132834 +18051,132834 +18052,132834 +18053,132835 +18054,132835 +18055,132835 +18056,132836 +18057,132788 +18058,132788 +18059,132788 +18060,132789 +18061,132819 +18062,133714 +18063,133711 +18066,135989 +18067,136006 +18068,135815 +18069,135934 +18070,135920 +18071,133727 +18072,133727 +18074,133727 +18075,133727 +18076,132793 +18077,132793 +18078,132796 +18079,132797 +18080,132798 +18081,132793 +18082,132794 +18083,132794 +18084,132794 +18085,132816 +18086,133219 +18087,134189 +18088,134190 +18089,134191 +18090,132815 +18091,132819 +18092,134322 +18093,134322 +18094,135992 +18095,134323 +18096,134324 +18097,134324 +18098,134324 +18099,132791 +18100,132791 +18101,132790 +18102,132795 +18103,135235 +18104,135236 +18105,135237 +18106,135238 +18107,135242 +18109,135242 +18113,132799 +18114,132799 +18115,132792 +18116,132623 +18117,132800 +18119,132790 +18120,132683 +18121,132682 +18122,132683 +18125,135124 +18127,133150 +18128,133150 +18129,132682 +18130,133150 +18131,132682 +18132,133150 +18133,133150 +18134,133150 +18135,134178 +18136,134178 +18150,132760 +18154,134442 +18155,134442 +18156,135348 +18158,134300 +18161,135005 +18164,133734 +18165,136104 +18168,134182 +18169,134193 +18170,133678 +18172,132507 +18173,132835 +18174,133025 +18192,133479 +18193,133694 +18195,133479 +18199,132939 +18203,134457 +18204,134457 +18208,132963 +18210,132963 +18211,132963 +18215,132995 +18221,135464 +18222,135473 +18223,135005 +18224,134706 +18226,133117 +18227,133120 +18231,133120 +18232,135345 +18253,135345 +18254,135353 +18255,135355 +18256,132963 +18257,134708 +18258,135355 +18260,135353 +18261,135154 +18262,135424 +18263,135638 +18264,135654 +18265,135353 +18266,135280 +18267,135351 +18268,135432 +18269,134436 +18270,135327 +18271,132958 +18272,133127 +18274,134590 +18275,132381 +18276,135325 +18277,134588 +18278,134953 +18279,134948 +18281,134581 +18282,134948 +18283,132516 +18284,132723 +18287,132539 +18288,135006 +18289,135165 +18291,132618 +18292,132946 +18298,135616 +18299,133041 +18303,132724 +18305,135009 +18306,135131 +18308,134459 +18309,135357 +18310,133490 +18311,133480 +18312,133054 +18314,132939 +18322,133117 +18323,134536 +18324,133044 +18325,135352 +18326,132401 +18327,132405 +18328,132405 +18329,135500 +18330,133718 +18331,132605 +18332,133117 +18333,135049 +18334,133130 +18335,132602 +18336,132613 +18337,132611 +18338,132718 +18339,132945 +18340,132402 +18341,135496 +18342,135327 +18343,135493 +18344,135468 +18345,135616 +18346,135473 +18347,135009 +18349,133127 +18350,135491 +18351,135613 +18352,132618 +18353,135613 +18354,135355 +18355,135492 +18356,135645 +18357,135357 +18358,133472 +18359,133472 +18360,135351 +18361,132536 +18362,136128 +18363,134370 +18364,132951 +18365,134066 +18366,133679 +18367,132537 +18368,135148 +18369,135658 +18370,132539 +18371,132608 +18372,135611 +18373,133483 +18374,134956 +18375,132405 +18376,133117 +18377,134707 +18378,132613 +18379,134435 +18380,135638 +18381,134298 +18382,132628 +18383,132482 +18384,132482 +18385,132723 +18386,132720 +18387,134585 +18388,135129 +18389,135032 +18390,133488 +18391,132398 +18392,132266 +18393,135131 +18394,132401 +18395,135167 +18396,135167 +18397,132523 +18398,135652 +18399,134962 +18400,134588 +18403,132405 +18404,132415 +18405,135615 +18406,133045 +18407,135467 +18408,135467 +18409,135347 +18413,133111 +18414,133117 +18415,132995 +18416,133130 +18417,133076 +18418,133101 +18419,132537 +18420,133090 +18421,133135 +18422,133135 +18423,132951 +18426,132764 +18427,132615 +18428,135018 +18429,134588 +18430,132587 +18431,132535 +18433,135056 +18434,134586 +18435,133757 +18436,133757 +18437,135158 +18438,135158 +18439,135011 +18440,135015 +18441,135467 +18442,135467 +18443,132959 +18444,132540 +18445,135656 +18446,132397 +18447,134956 +18448,135230 +18449,134956 +18450,134955 +18451,134956 +18452,134587 +18453,133763 +18454,134948 +18455,134948 +18456,134955 +18457,134948 +18458,132725 +18466,135009 +18467,135467 +18468,134956 +18469,134956 +18470,132717 +18471,132722 +18472,134955 +18473,134131 +18474,134955 +18475,134955 +18476,134956 +18477,134956 +18478,134706 +18479,134955 +18480,134955 +18481,134955 +18482,134948 +18483,134955 +18484,134955 +18485,134955 +18486,134955 +18487,134955 +18488,134955 +18489,134592 +18490,134955 +18491,134956 +18492,134955 +18493,134948 +18494,132791 +18495,132790 +18496,132790 +18497,135054 +18498,133135 +18499,134140 +18500,134455 +18506,134955 +18507,134956 +18508,134955 +18509,134955 +18510,134955 +18511,134956 +18512,134955 +18513,134956 +18514,134139 +18515,135437 +18516,134956 +18517,134257 +18518,135241 +18519,135241 +18522,134955 +18523,134948 +18524,136074 +18525,135865 +18526,136011 +18527,136018 +18528,134955 +18529,134589 +18530,135158 +18531,133479 +18532,133841 +18533,134952 +18535,133894 +18536,133893 +18537,133899 +18538,133901 +18558,135345 +18559,135353 +18560,135355 +18561,135353 +18562,135355 +18567,132397 +18568,134150 +18572,133486 +18573,132960 +18574,132764 +18575,133711 +18576,132535 +18577,135056 +18578,133038 +18579,133149 +18580,132963 +18581,132535 +18582,132582 +18583,133476 +18584,133121 +18585,133276 +18586,132952 +18591,133480 +18593,134582 +18595,132392 +18596,135660 +18597,136113 +18605,135153 +18606,132403 +18607,132395 +18630,135153 +18632,132836 +18633,133942 +18634,133942 +18635,133942 +18649,136006 +18650,134321 +18651,132797 +18652,132797 +18653,134953 +18654,134948 +18655,134955 +18656,134955 +18657,134955 +18658,134951 +18659,134950 +18660,134956 +18661,134955 +18662,134955 +18663,134955 +18664,134949 +18665,134949 +18666,134948 +18667,134955 +18668,134952 +18669,134955 +18670,134955 +18671,134949 +18672,134950 +18673,134955 +18689,132482 +18690,134950 +18691,132535 +18692,132535 +18693,134949 +18694,134321 +18695,134949 +18696,134949 +18697,134951 +18698,134953 +18699,134951 +18700,134949 +18701,134952 +18702,134949 +18703,133857 +18704,134564 +18705,133888 +18706,134955 +18707,134135 +18708,135153 +18709,134336 +18710,134121 +18711,133483 +18712,136128 +18713,134333 +18714,133483 +18715,134336 +18716,132386 +18717,134867 +18718,132790 +18719,134530 +18720,136098 +18721,132595 +18722,132482 +18723,134365 +18724,133025 +18725,133439 +18726,133151 +18727,133151 +18728,132767 +18729,134949 +18730,134955 +18731,134948 +18732,134949 +18733,134952 +18749,134949 +18750,134953 +18751,134951 +18769,134947 +18770,134947 +18771,134948 +18772,134952 +18773,134949 +18774,134957 +18775,134953 +18776,134949 +18789,134957 +18790,134948 +18791,134950 +18792,134948 +18793,134948 +18809,134951 +18810,135893 +18811,136051 +18812,134949 +18813,134949 +18814,134952 +18815,135971 +18816,136162 +18817,134955 +18818,134951 +18819,134951 +18820,134955 +18821,134954 +18822,134948 +18823,134955 +18824,134953 +18825,134948 +18826,134948 +18827,135008 +18828,132718 +18829,134589 +18830,132661 +18831,134589 +18832,132536 +18833,132679 +18834,132679 +18835,132939 +18836,132939 +18837,132648 +18838,132718 +18839,132650 +18840,133763 +18849,134589 +18850,134593 +18851,132939 +18852,132951 +18853,132939 +18854,132961 +18855,132649 +18856,132649 +18857,132647 +18858,132961 +18859,132961 +18860,133693 +18861,133763 +18862,133132 +18863,132539 +18864,135056 +18865,135056 +18866,135056 +18867,134589 +18868,132961 +18869,133132 +18870,133131 +18871,133131 +18872,133131 +18873,133132 +18874,133132 +18875,133132 +18876,133132 +18877,133132 +18878,133132 +18879,133694 +18880,133132 +18881,133132 +18882,135056 +18883,132659 +18884,132649 +18885,132649 +18886,132649 +18887,134593 +18888,132951 +18889,132951 +18890,133134 +18891,133134 +18892,133134 +18893,132647 +18894,133134 +18895,132647 +18896,132647 +18897,132719 +18898,134706 +18899,132666 +18900,132722 +18901,135033 +18902,135326 +18903,132722 +18904,132541 +18905,132539 +18906,132535 +18907,132543 +18908,134582 +18909,134582 +18910,133761 +18911,134589 +18912,132949 +18913,134594 +18914,134582 +18915,133763 +18916,135027 +18917,135016 +18918,133117 +18919,134587 +18920,133117 +18921,132514 +18922,135029 +18923,135029 +18924,135028 +18925,135027 +18929,132956 +18930,132611 +18931,133117 +18932,133755 +18933,132539 +18934,132723 +18935,134594 +18936,132959 +18937,132542 +18938,132608 +18939,135049 +18940,133119 +18943,132720 +18944,132535 +18945,132615 +18946,132956 +18947,134592 +18948,133770 +18949,132683 +18950,133126 +18951,135032 +18952,132954 +18953,134188 +18954,133134 +18955,133134 +18956,132741 +18957,132501 +18958,132589 +18959,132614 +18960,132960 +18961,133076 +18962,134586 +18963,135054 +18964,132720 +18965,132602 +18966,132617 +18967,132541 +18968,133754 +18969,134586 +18970,132965 +18971,135055 +18972,133074 +18973,133758 +18974,132501 +18975,133693 +18976,133693 +18977,132717 +18978,132615 +18979,132535 +18980,132501 +18981,132949 +18982,134586 +18983,135042 +18984,133076 +18985,133076 +18986,132625 +18987,132588 +18988,132613 +18989,133769 +18990,132963 +18991,132961 +18992,132511 +18993,134586 +18994,132500 +18995,135033 +18996,132940 +18997,132952 +18998,132956 +18999,132952 +19000,132767 +19001,132502 +19002,132717 +19003,134806 +19004,134805 +19005,132937 +19006,133127 +19007,133149 +19008,135054 +19009,134591 +19010,133119 +19011,132677 +19012,132632 +19013,132535 +19014,132613 +19015,133694 +19016,133758 +19017,132946 +19018,134591 +19019,132505 +19020,135044 +19029,135010 +19030,134585 +19031,133769 +19032,132939 +19033,132579 +19034,132514 +19035,132658 +19036,132716 +19037,132677 +19038,132682 +19039,133150 +19040,132724 +19041,134586 +19042,132515 +19043,132539 +19044,132952 +19049,132629 +19050,132498 +19051,132539 +19052,134581 +19053,132938 +19054,132535 +19055,132943 +19056,132951 +19057,132609 +19058,132498 +19059,134581 +19060,133129 +19061,134591 +19089,136040 +19090,132156 +19091,132150 +19092,136128 +19109,132666 +19110,132655 +19111,132953 +19112,134589 +19113,135054 +19114,135013 +19115,135996 +19116,135020 +19117,134586 +19118,132938 +19119,132498 +19120,134582 +19121,132940 +19122,132542 +19123,132542 +19124,132505 +19125,132952 +19126,132403 +19127,132403 +19128,132953 +19129,132407 +19130,132403 +19131,132592 +19132,132392 +19133,132408 +19134,132395 +19135,132395 +19136,135421 +19137,132398 +19138,132402 +19139,132718 +19140,133754 +19141,132654 +19142,132662 +19149,133435 +19183,132408 +19184,132539 +19191,133729 +19193,134586 +19194,134586 +19195,134586 +19196,134586 +19197,134586 +19201,134584 +19202,132392 +19203,132402 +19204,132408 +19209,132402 +19210,132397 +19211,132405 +19212,132392 +19213,132399 +19214,132414 +19215,132415 +19216,132415 +19217,132415 +19218,132415 +19219,135424 +19220,132397 +19221,132408 +19222,132791 +19223,135229 +19224,132417 +19225,134537 +19226,135423 +19227,135419 +19228,132416 +19229,132395 +19230,135419 +19231,132402 +19232,132405 +19233,132417 +19234,134709 +19235,132408 +19236,132397 +19237,135419 +19238,132400 +19239,134120 +19240,134159 +19241,132417 +19242,135419 +19243,135420 +19244,135423 +19245,135423 +19246,132417 +19247,132392 +19248,135423 +19249,134323 +19250,132624 +19251,135992 +19252,132415 +19253,135420 +19254,132489 +19255,132408 +19256,132405 +19257,132409 +19258,132401 +19259,134134 +19260,132409 +19261,132405 +19262,132405 +19268,132406 +19269,132417 +19271,132392 +19272,132415 +19273,132395 +19274,132392 +19275,132408 +19276,132402 +19277,132409 +19278,132393 +19279,132403 +19280,132392 +19281,132417 +19282,132409 +19283,132408 +19284,134434 +19285,132392 +19286,132402 +19287,132402 +19288,135423 +19289,135423 +19290,135424 +19291,132397 +19292,132409 +19293,135424 +19294,132402 +19295,132415 +19296,135424 +19297,132410 +19298,132394 +19299,132410 +19300,132400 +19301,132414 +19302,132400 +19303,132393 +19304,132408 +19305,132406 +19306,132409 +19307,132397 +19308,135424 +19309,132394 +19310,132392 +19311,132409 +19312,136124 +19313,132515 +19314,132606 +19315,135163 +19316,134430 +19317,134582 +19318,135005 +19319,135005 +19329,132404 +19330,135725 +19349,132514 +19350,132514 +19351,132514 +19369,132414 +19370,135423 +19371,132401 +19372,135424 +19374,135424 +19375,135424 +19389,132393 +19390,135419 +19391,132405 +19392,134429 +19393,134429 +19394,134429 +19395,133149 +19396,132417 +19397,133149 +19398,132407 +19399,133149 +19400,132402 +19401,132405 +19402,133149 +19403,132415 +19404,132408 +19405,132405 +19409,133149 +19411,133149 +19412,133149 +19413,133149 +19414,133149 +19415,133149 +19416,133149 +19417,133151 +19420,135616 +19421,134120 +19422,132383 +19426,135466 +19427,132668 +19430,133762 +19450,134583 +19455,133127 +19456,133127 +19457,133487 +19458,133149 +19459,135650 +19461,135466 +19462,133437 +19469,132938 +19475,135040 +19477,132489 +19478,134440 +19479,132488 +19480,132939 +19481,133027 +19482,133024 +19486,135053 +19487,134535 +19488,134531 +19492,134199 +19493,134198 +19494,134197 +19495,134200 +19496,134195 +19497,134196 +19498,134194 +19500,133041 +19501,133727 +19502,134430 +19503,132836 +19504,132594 +19505,132723 +19506,132723 +19507,135899 +19511,135826 +19512,133151 +19513,133151 +19519,133040 +19520,134816 +19523,132937 +19524,133053 +19525,133046 +19526,133053 +19527,132836 +19528,132926 +19529,132927 +19530,132921 +19531,132915 +19532,133476 +19533,133053 +19534,133053 +19535,133052 +19536,133052 +19537,133052 +19538,133053 +19539,133479 +19540,134162 +19541,133053 +19542,133041 +19543,133052 +19544,133052 +19545,133052 +19546,133052 +19547,134821 +19549,132392 +19550,132392 +19551,135274 +19552,135325 +19553,135325 +19555,135637 +19556,135640 +19557,135638 +19559,135005 +19562,132484 +19563,133146 +19564,135470 +19565,135826 +19566,134530 +19567,132914 +19568,132923 +19569,132921 +19570,132925 +19571,132916 +19572,132918 +19573,132929 +19574,134328 +19575,134583 +19576,136148 +19594,133058 +19595,133652 +19596,133054 +19597,132369 +19598,133041 +19599,133040 +19600,133480 +19601,133481 +19602,133479 +19603,133043 +19604,133055 +19605,133059 +19606,132369 +19607,133054 +19610,133046 +19611,133053 +19612,133041 +19613,133052 +19614,133052 +19615,133054 +19616,133059 +19617,133043 +19618,133041 +19619,133043 +19620,133049 +19621,133482 +19622,133476 +19623,133053 +19624,133482 +19625,133046 +19626,133057 +19627,133046 +19633,133052 +19634,133485 +19635,133476 +19636,133482 +19637,133048 +19638,132582 +19639,132592 +19640,135139 +19641,134335 +19643,133476 +19644,133046 +19645,133489 +19646,133482 +19647,133044 +19648,133490 +19649,133487 +19650,133052 +19651,133047 +19652,133487 +19653,135472 +19655,132939 +19657,135469 +19658,134376 +19660,133059 +19661,132366 +19662,134325 +19663,135996 +19664,133039 +19665,132536 +19666,135996 +19667,133151 +19668,135812 +19669,133482 +19670,133054 +19673,133491 +19674,132750 +19675,132535 +19676,132588 +19677,132602 +19678,132957 +19679,132523 +19680,134584 +19681,135059 +19682,133122 +19683,133476 +19684,132747 +19685,132956 +19686,132493 +19687,134583 +19688,132602 +19689,133490 +19690,133071 +19691,135054 +19692,132749 +19693,134584 +19694,133486 +19695,132627 +19696,132962 +19697,132501 +19698,134584 +19699,133045 +19700,132613 +19701,132585 +19702,135052 +19703,133486 +19704,132737 +19705,132963 +19706,132588 +19707,133042 +19708,134584 +19709,135059 +19710,134585 +19711,133078 +19712,133124 +19713,133488 +19714,133111 +19715,132751 +19716,133476 +19717,132962 +19718,132524 +19719,132584 +19720,134584 +19721,133043 +19722,132618 +19723,133124 +19724,135060 +19725,132613 +19726,133048 +19727,135059 +19728,133124 +19729,133489 +19730,132746 +19731,132583 +19732,132615 +19733,132964 +19734,132522 +19735,133039 +19736,134584 +19737,133124 +19738,135054 +19739,132767 +19740,135060 +19741,133041 +19742,132582 +19743,133729 +19744,133490 +19745,132596 +19746,133060 +19747,132582 +19748,133055 +19749,134584 +19750,132584 +19751,132602 +19752,132613 +19753,132963 +19754,132521 +19755,132960 +19756,133942 +19757,135327 +19758,132523 +19759,133071 +19760,132615 +19761,135058 +19762,133277 +19763,133279 +19764,133282 +19766,133038 +19767,133276 +19768,135351 +19769,133071 +19770,133057 +19771,133057 +19772,133053 +19773,133045 +19774,135465 +19775,133052 +19776,133049 +19777,133057 +19778,133045 +19779,135355 +19780,133038 +19781,134948 +19782,133053 +19783,133044 +19784,133046 +19785,134335 +19786,133729 +19787,132743 +19788,133763 +19789,134336 +19790,133135 +19791,133135 +19792,135039 +19793,132627 +19794,132535 +19795,132957 +19796,132617 +19797,132504 +19798,132914 +19799,132914 +19800,135227 +19801,133042 +19802,133345 +19803,133345 +19804,135131 +19805,135279 +19806,132607 +19810,132679 +19812,134591 +19813,132951 +19830,134458 +19831,134455 +19832,134456 +19835,135277 +19836,135652 +19837,133127 +19838,133127 +19839,134950 +19840,134950 +19841,132398 +19842,133078 +19843,134584 +19844,132751 +19849,132624 +19850,134582 +19851,135054 +19869,133486 +19870,132508 +19871,132615 +19872,134585 +19873,132802 +19874,134585 +19889,133757 +19890,135157 +19891,135166 +19892,133048 +19893,132743 +19894,132535 +19896,135345 +19897,135345 +19898,132535 +19899,132940 +19900,134584 +19901,132642 +19902,135466 +19903,133756 +19904,132947 +19905,135348 +19909,132957 +19910,132513 +19911,135039 +19912,132541 +19913,132536 +19914,135039 +19915,132611 +19916,134593 +19917,132541 +19918,134587 +19919,135009 +19920,132767 +19921,132539 +19929,132408 +19930,133140 +19931,132417 +19932,132498 +19949,132955 +19950,132539 +19951,134593 +19952,133763 +19953,132658 +19969,134594 +19970,133769 +19989,135035 +19990,132767 +19991,135040 +19992,132500 +19993,132535 +19994,132936 +19995,135049 +19996,132504 +19997,135323 +20009,135350 +20010,135317 +20011,135330 +20012,135314 +20013,135274 +20014,135276 +20015,135313 +20016,135274 +20017,135274 +20018,135274 +20029,135350 +20030,135279 +20031,135353 +20032,135355 +20033,135329 +20034,135345 +20035,135348 +20036,135325 +20037,135276 +20038,135321 +20049,135329 +20069,135276 +20070,135280 +20071,135322 +20072,135348 +20073,135353 +20074,135276 +20075,135328 +20076,135340 +20077,135327 +20078,135326 +20079,135324 +20080,135324 +20081,135280 +20082,135278 +20083,135326 +20084,135276 +20085,135280 +20086,135345 +20087,135277 +20088,135317 +20089,135311 +20090,135355 +20091,135355 +20092,135276 +20093,135327 +20094,135346 +20095,135325 +20109,135356 +20110,135321 +20111,135274 +20112,135344 +20113,135276 +20114,135340 +20115,135316 +20116,135314 +20117,135276 +20118,135325 +20119,135356 +20120,135325 +20121,135352 +20122,135314 +20129,135280 +20130,135278 +20149,135351 +20150,135324 +20151,135324 +20152,135311 +20153,135351 +20154,135325 +20155,135329 +20156,135302 +20157,135321 +20158,135329 +20159,135274 +20160,135274 +20161,135274 +20162,135274 +20163,135274 +20164,135274 +20165,135275 +20166,135348 +20167,135315 +20168,135324 +20169,135274 +20170,135311 +20171,135274 +20172,135302 +20173,135274 +20174,135311 +20175,135274 +20176,135274 +20177,135311 +20178,135324 +20179,135326 +20180,135272 +20182,135328 +20183,135276 +20184,135357 +20185,135352 +20186,135321 +20187,135280 +20188,135323 +20189,135341 +20190,135317 +20191,135272 +20192,135280 +20193,135357 +20194,135271 +20195,135349 +20196,135312 +20197,135275 +20198,135317 +20209,134591 +20210,134592 +20211,135357 +20212,135357 +20213,135357 +20214,135346 +20215,135346 +20216,135325 +20217,135280 +20218,135312 +20219,134420 +20220,134421 +20221,135340 +20222,135344 +20223,135343 +20224,135350 +20225,135328 +20228,135920 +20229,136006 +20249,135351 +20250,135280 +20251,135278 +20252,135275 +20253,135144 +20254,135150 +20255,133124 +20256,135166 +20257,135166 +20258,135169 +20259,135165 +20260,135167 +20269,135168 +20270,135312 +20271,135141 +20272,136163 +20273,135652 +20274,135165 +20275,135150 +20276,135302 +20289,135162 +20290,135312 +20291,135302 +20292,135311 +20293,135164 +20294,135150 +20295,135641 +20296,135641 +20297,135322 +20298,135150 +20299,135639 +20300,135473 +20309,135155 +20310,135469 +20311,134298 +20312,135311 +20313,135138 +20314,135341 +20315,135351 +20316,135469 +20317,135650 +20318,135643 +20319,135639 +20320,135652 +20321,135647 +20322,135157 +20323,135152 +20324,135641 +20325,135138 +20326,135661 +20327,135143 +20328,135341 +20329,135150 +20330,135162 +20331,135651 +20332,135647 +20333,135651 +20334,135139 +20335,135164 +20336,135162 +20337,135638 +20338,135641 +20339,135169 +20340,135150 +20341,135646 +20342,133646 +20345,135638 +20346,135168 +20347,135641 +20348,135151 +20349,135646 +20350,135147 +20351,134295 +20352,135156 +20353,135157 +20354,135641 +20355,135641 +20356,135155 +20357,135145 +20358,135641 +20359,135654 +20360,135155 +20361,135145 +20362,135147 +20363,135141 +20369,135638 +20370,135143 +20371,135647 +20372,135468 +20373,135163 +20374,135466 +20375,135469 +20376,135341 +20377,135153 +20378,135152 +20379,135147 +20380,135639 +20381,135149 +20382,135162 +20383,135651 +20384,135160 +20385,135145 +20386,135141 +20387,135640 +20388,135646 +20389,135151 +20390,135151 +20391,135469 +20392,135640 +20393,135144 +20394,134137 +20395,135154 +20396,135637 +20397,135650 +20398,135641 +20399,135641 +20400,135641 +20401,135168 +20402,135145 +20403,134583 +20404,132654 +20405,132654 +20406,132654 +20407,135637 +20408,135650 +20409,135147 +20410,135473 +20411,135650 +20412,135466 +20413,135145 +20414,135637 +20415,135155 +20416,135147 +20417,135145 +20418,135150 +20419,135153 +20420,135145 +20421,135146 +20422,135650 +20423,135158 +20424,135147 +20425,135662 +20426,135159 +20427,135644 +20428,135148 +20429,135148 +20430,135651 +20431,135152 +20432,135159 +20433,133060 +20434,135158 +20435,135651 +20436,135139 +20437,133723 +20438,135139 +20439,134298 +20440,135154 +20441,134298 +20442,135139 +20443,135145 +20444,135150 +20445,135145 +20446,135148 +20447,135641 +20448,135151 +20449,135154 +20450,135159 +20451,135641 +20452,135641 +20469,132940 +20470,135650 +20471,135660 +20472,135638 +20473,135637 +20474,132940 +20475,135654 +20476,132940 +20489,135648 +20490,135648 +20491,135638 +20492,135652 +20502,135325 +20503,133651 +20504,135612 +20505,136074 +20507,135274 +20534,135644 +20535,135826 +20536,135661 +20537,134950 +20538,135325 +20539,135812 +20549,135499 +20550,135490 +20551,135497 +20552,135497 +20553,135499 +20554,135500 +20555,135499 +20556,135489 +20557,135496 +20558,133356 +20569,135322 +20570,135341 +20571,135348 +20572,135344 +20573,135639 +20574,135654 +20575,134298 +20589,135330 +20590,135651 +20591,135660 +20592,135652 +20593,135646 +20594,135651 +20595,135638 +20596,135652 +20597,136133 +20598,135651 +20599,135646 +20601,135651 +20602,135651 +20603,135638 +20604,135646 +20605,135651 +20606,135651 +20607,135640 +20608,132867 +20609,132866 +20610,132863 +20611,132858 +20612,132877 +20613,132862 +20614,132857 +20615,132876 +20616,135350 +20617,134535 +20618,132932 +20619,132931 +20620,133021 +20621,135026 +20622,133029 +20623,133030 +20624,133006 +20625,133003 +20626,133002 +20627,133000 +20628,132999 +20629,132599 +20638,135313 +20639,135316 +20640,135280 +20649,135489 +20650,135500 +20651,135499 +20652,135498 +20653,135500 +20654,135612 +20655,134153 +20656,133222 +20657,134580 +20658,134578 +20659,133220 +20660,135490 +20661,134576 +20662,135611 +20663,134536 +20664,135491 +20665,135612 +20666,135496 +20667,135490 +20668,135493 +20669,135492 +20670,135489 +20671,135491 +20672,135491 +20673,135499 +20674,135495 +20675,135490 +20691,132833 +20692,132833 +20709,133653 +20710,134269 +20711,134238 +20712,135490 +20713,135495 +20714,135489 +20715,135036 +20716,135496 +20717,135610 +20718,135610 +20719,135496 +20720,135489 +20721,135610 +20722,135499 +20723,135490 +20724,135610 +20725,135612 +20726,135612 +20727,135612 +20728,135613 +20729,135614 +20730,132932 +20731,132932 +20732,135612 +20733,133000 +20734,135610 +20735,135617 +20736,135616 +20737,135617 +20738,135610 +20739,135124 +20740,135610 +20741,135613 +20742,135127 +20743,135616 +20744,135616 +20745,135125 +20746,135128 +20747,135465 +20748,135124 +20749,135125 +20750,135130 +20769,135241 +20770,133996 +20771,132330 +20772,132330 +20773,135427 +20774,134417 +20775,132766 +20776,133718 +20777,132410 +20778,135469 +20779,135425 +20780,135473 +20781,135426 +20782,135419 +20783,135423 +20784,132878 +20785,135147 +20786,135432 +20787,135139 +20788,135466 +20789,134822 +20790,135468 +20791,134864 +20793,135473 +20794,132869 +20795,132868 +20796,135324 +20797,135357 +20798,132859 +20799,132879 +20800,132878 +20801,135473 +20802,134244 +20803,134006 +20811,134588 +20812,135463 +20813,133127 +20814,133162 +20815,135473 +20816,135465 +20817,136162 +20818,134063 +20819,135148 +20820,134948 +20821,135473 +20822,135463 +20823,136162 +20824,135466 +20825,135466 +20826,134955 +20827,135466 +20828,135144 +20829,135468 +20830,135144 +20831,136185 +20832,135463 +20833,134951 +20834,135124 +20851,135468 +20852,135469 +20853,134953 +20871,135464 +20872,135349 +20873,136085 +20874,135805 +20875,136018 +20876,136007 +20891,136162 +20892,135155 +20893,134319 +20894,135241 +20895,132871 +20896,132870 +20897,132117 +20898,132121 +20899,132855 +20900,134959 +20901,132884 +20902,132883 +20903,135469 +20904,135467 +20905,134951 +20906,132394 +20907,135468 +20908,136051 +20909,134153 +20910,135940 +20911,134961 +20912,134961 +20913,134711 +20914,134309 +20915,134306 +20916,135468 +20917,135473 +20918,135139 +20919,134576 +20920,135139 +20921,134001 +20931,136140 +20951,134251 +20952,134317 +20953,132906 +20971,135940 +20972,135964 +20973,134953 +20974,134963 +20975,134961 +20976,136240 +20977,134130 +20978,134136 +20979,135610 +20980,135611 +20981,135139 +20982,134245 +20983,134245 +20984,134419 +20985,134954 +20986,134954 +20987,134954 +20995,135824 +21011,135139 +21012,135469 +21013,135464 +21014,135465 +21015,135464 +21016,135464 +21017,135473 +21018,135467 +21019,135144 +21020,135463 +21021,135154 +21022,135466 +21023,135464 +21024,135464 +21025,135154 +21026,135473 +21027,135465 +21031,134193 +21032,133742 +21051,133477 +21052,133052 +21071,135617 +21072,135228 +21091,135661 +21092,132507 +21093,135160 +21094,135463 +21095,135463 +21096,135139 +21097,135144 +21098,135139 +21099,135469 +21100,135469 +21101,135469 +21102,135435 +21111,135495 +21112,135489 +21113,135495 +21114,132689 +21115,134010 +21116,134014 +21140,132089 +21141,133488 +21142,132089 +21143,134329 +21144,134294 +21148,133116 +21149,134001 +21153,133116 +21154,132539 +21158,132409 +21159,132395 +21160,135027 +21161,135027 +21164,134134 +21175,133000 +21176,133116 +21179,135005 +21180,132490 +21181,132542 +21183,132539 +21189,133001 +21192,135274 +21193,135274 +21194,135274 +21202,133650 +21203,133989 +21204,135147 +21205,133942 +21206,135147 +21207,135225 +21208,135138 +21209,135148 +21212,132938 +21214,135005 +21215,132624 +21216,132535 +21219,135005 +21231,135033 +21234,135033 +21238,132395 +21251,135145 +21252,133488 +21256,132666 +21259,134592 +21260,134592 +21261,134592 +21262,134592 +21263,132543 +21267,134592 +21268,134592 +21291,133118 +21292,133120 +21293,133117 +21294,133117 +21295,133120 +21296,133151 +21297,133111 +21298,133117 +21299,133076 +21300,133127 +21301,133127 +21302,133122 +21303,133127 +21304,133117 +21306,133135 +21307,133074 +21308,133117 +21309,133111 +21310,133077 +21311,133117 +21312,133090 +21313,133111 +21314,133111 +21315,133078 +21316,133078 +21317,132767 +21318,134409 +21319,133636 +21320,134402 +21321,134403 +21322,134402 +21323,134404 +21324,134323 +21325,134410 +21326,134409 +21327,134004 +21328,134409 +21329,134410 +21330,134401 +21331,134407 +21332,134404 +21333,135026 +21337,135026 +21338,135026 +21341,135145 +21342,133476 +21362,133483 +21363,134313 +21364,134308 +21365,133856 +21366,134347 +21367,134580 +21368,133726 +21369,133996 +21370,132920 +21372,135160 +21373,135467 +21374,134143 +21375,134144 +21376,135138 +21401,135005 +21402,133942 +21403,134592 +21404,134586 +21405,134593 +21406,133436 +21407,132767 +21411,135660 +21414,133001 +21415,133723 +21416,134365 +21431,133740 +21457,135040 +21458,134085 +21459,132514 +21460,135162 +21461,134294 +21462,134294 +21463,134364 +21464,132677 +21465,132677 +21466,132664 +21467,132579 +21469,134249 +21470,134346 +21471,136007 +21472,132884 +21473,132804 +21474,134956 +21475,134951 +21491,135467 +21511,133488 +21512,133488 +21513,135225 +21514,135225 +21531,134877 +21537,132760 +21538,132542 +21539,134955 +21540,134955 +21541,134955 +21551,135940 +21552,135145 +21553,134950 +21554,135349 +21555,135280 +21556,132997 +21571,132369 +21572,132743 +21573,132743 +21574,135040 +21575,132638 +21576,132638 +21577,132638 +21578,132743 +21579,132743 +21580,132743 +21581,132397 +21582,132397 +21583,135819 +21584,134430 +21585,133647 +21586,133647 +21591,133132 +21594,134334 +21595,134335 +21596,134121 +21597,134335 +21598,134336 +21599,134336 +21600,134335 +21601,133434 +21602,134335 +21603,134333 +21604,135142 +21605,134333 +21606,134564 +21607,134336 +21608,135467 +21609,133729 +21610,134131 +21611,133438 +21612,133731 +21613,134948 +21614,132737 +21615,132737 +21616,132953 +21617,132953 +21618,132953 +21619,132953 +21620,135652 +21632,134153 +21651,133565 +21652,133076 +21671,132612 +21672,134856 +21673,134870 +21674,133060 +21691,135039 +21692,135272 +21693,132876 +21694,134583 +21695,133069 +21696,132938 +21697,132535 +21698,132938 +21699,132493 +21700,133148 +21701,133148 +21702,133069 +21711,134406 +21712,134406 +21713,132945 +21714,132945 +21715,132945 +21716,132960 +21717,133125 +21718,132960 +21719,132648 +21720,135466 +21721,135466 +21722,135150 +21723,135155 +21724,135819 +21725,133684 +21726,133060 +21731,132542 +21751,133476 +21752,132392 +21753,132601 +21754,132617 +21755,132604 +21756,132602 +21757,132609 +21771,135033 +21772,132495 +21773,135324 +21774,135317 +21775,135357 +21791,133476 +21792,133476 +21793,133046 +21794,132805 +21795,133043 +21796,132500 +21797,133148 +21798,133148 +21799,133148 +21800,133148 +21801,132768 +21802,135130 +21803,135130 +21804,134084 +21805,132938 +21806,135324 +21807,134246 +21808,135324 +21809,135326 +21810,132409 +21811,134593 +21812,134593 +21831,134593 +21832,134593 +21833,133712 +21834,134318 +21835,134314 +21836,134809 +21837,135131 +21839,133146 +21840,135030 +21841,135030 +21842,135022 +21843,134588 +21844,135033 +21845,132801 +21846,132609 +21847,132609 +21848,133763 +21849,132537 +21850,135356 +21851,134335 +21852,134335 +21853,134104 +21854,135469 +21855,132369 +21856,135128 +21874,134581 +21882,135344 +21894,134582 +21898,132737 +21899,134584 +21900,132718 +21901,134587 +21902,132956 +21903,132539 +21904,133995 +21905,133994 +21906,133993 +21911,132607 +21913,133282 +21918,132717 +21931,135349 +21935,135463 +21936,134564 +21937,135349 +21951,134413 +21952,132404 +21953,133043 +21954,133041 +21955,135651 +21956,133044 +21957,132689 +21958,133143 +21959,133143 +21960,133143 +21961,134584 +21962,133488 +21963,134588 +21964,134586 +21965,133772 +21966,132397 +21967,132416 +21968,135167 +21969,132540 +21970,132540 +21971,134815 +21972,134857 +21973,134014 +21974,134011 +21975,134001 +21976,134836 +21977,133622 +22009,133483 +22018,132939 +22020,133650 +22021,133116 +22022,132768 +22023,133276 +22024,134008 +22025,132606 +22027,134577 +22028,135349 +22029,134577 +22030,135349 +22031,135124 +22032,135131 +22033,132664 +22034,132579 +22035,133131 +22036,133131 +22037,133435 +22051,133718 +22071,134245 +22072,134585 +22073,134585 +22074,134583 +22075,135274 +22076,135274 +22077,135346 +22078,135321 +22079,135343 +22080,135324 +22081,135344 +22082,135327 +22083,135278 +22084,135327 +22085,135275 +22086,135278 +22087,135275 +22088,135348 +22089,135348 +22090,135324 +22091,135327 +22092,135278 +22093,135276 +22094,135312 +22095,135350 +22096,135353 +22097,135280 +22098,135313 +22099,132410 +22100,132402 +22101,132410 +22102,132402 +22103,132415 +22104,132395 +22105,132392 +22106,132415 +22107,135423 +22108,135423 +22109,132408 +22110,135423 +22111,135424 +22112,132401 +22113,132408 +22114,132395 +22115,132394 +22116,132397 +22117,133942 +22118,133485 +22119,133052 +22120,133487 +22121,133053 +22122,133041 +22123,133053 +22124,133041 +22125,133053 +22126,133041 +22127,133041 +22128,133041 +22129,133041 +22130,133053 +22131,133044 +22132,133041 +22133,133040 +22134,133054 +22135,135650 +22136,135641 +22137,135640 +22138,135341 +22139,135342 +22140,135341 +22141,135651 +22142,135302 +22143,135144 +22144,135163 +22145,135148 +22146,135147 +22147,135154 +22148,135153 +22149,135139 +22150,135469 +22151,135157 +22178,135145 +22179,133476 +22180,133476 +22184,133136 +22185,134243 +22191,134828 +22192,132596 +22193,134007 +22194,134003 +22195,134006 +22196,134004 +22197,134005 +22198,132806 +22199,133948 +22200,134002 +22201,134718 +22202,134817 +22203,134815 +22204,134859 +22205,134857 +22206,133893 +22207,133719 +22208,135131 +22209,135124 +22210,135124 +22211,135124 +22212,135576 +22213,135575 +22214,135562 +22215,135580 +22216,135576 +22217,135562 +22218,135572 +22219,135562 +22220,135578 +22221,135575 +22222,135576 +22223,135562 +22224,135578 +22225,135572 +22226,135662 +22227,135349 +22228,135348 +22229,135662 +22230,135355 +22231,135355 +22232,135662 +22233,135131 +22234,135130 +22235,135128 +22236,135129 +22237,135128 +22238,135131 +22239,135128 +22240,135127 +22241,135128 +22242,135129 +22243,135725 +22244,135725 +22245,135725 +22246,135651 +22247,135640 +22248,135651 +22249,132408 +22250,132408 +22251,135158 +22252,135158 +22253,133770 +22254,133756 +22255,132523 +22256,132492 +22257,135641 +22258,135641 +22271,132599 +22274,135005 +22291,132400 +22293,133001 +22299,133003 +22303,133014 +22304,133724 +22306,132535 +22315,132535 +22319,132392 +22352,134582 +22353,132535 +22357,132395 +22358,133129 +22363,132535 +22366,135325 +22367,135640 +22369,135036 +22370,135005 +22377,134239 +22378,135325 +22391,135225 +22393,132634 +22394,135146 +22395,135145 +22402,135274 +22403,135640 +22404,135131 +22411,135321 +22414,134013 +22415,133343 +22416,133748 +22417,134712 +22418,133101 +22419,133149 +22420,133149 +22421,133149 +22422,133149 +22423,133149 +22425,134588 +22426,134588 +22427,134594 +22428,134587 +22429,134865 +22436,132833 +22443,134419 +22444,133221 +22445,133229 +22447,135006 +22464,135657 +22477,134247 +22478,132403 +22480,132629 +22481,134583 +22482,132938 +22483,133296 +22484,134417 +22485,135736 +22492,135321 +22502,134582 +22503,132938 +22507,132737 +22508,132737 +22509,132737 +22510,132742 +22514,135054 +22515,132523 +22516,133124 +22517,133124 +22518,133124 +22519,134584 +22520,134584 +22523,132582 +22524,135005 +22527,135054 +22528,135054 +22529,135054 +22530,135054 +22531,135054 +22532,132742 +22533,133124 +22534,135054 +22535,135054 +22536,132742 +22537,132742 +22538,133124 +22539,135054 +22541,132582 +22542,132760 +22544,132582 +22545,132742 +22546,132618 +22547,133124 +22548,133124 +22549,133124 +22550,132519 +22551,132582 +22556,132742 +22557,134583 +22558,133138 +22559,132742 +22560,134583 +22562,134581 +22563,135145 +22564,132944 +22565,133138 +22566,133138 +22567,132582 +22568,132582 +22569,132582 +22570,132582 +22571,132500 +22572,132500 +22573,132500 +22575,132541 +22580,132742 +22581,132742 +22582,132742 +22583,132742 +22584,132736 +22585,132736 +22586,134584 +22587,132519 +22588,132519 +22589,132519 +22590,132519 +22591,132490 +22592,132582 +22593,132618 +22594,135033 +22595,132618 +22596,132618 +22597,132618 +22598,132395 +22611,133640 +22612,133642 +22613,133622 +22614,133625 +22615,135432 +22616,133622 +22617,133622 +22618,133625 +22631,133345 +22632,133345 +22634,134319 +22635,134955 +22636,134313 +22637,134955 +22638,134955 +22639,134317 +22640,134955 +22641,134311 +22642,134315 +22643,134309 +22645,132395 +22646,132670 +22647,132647 +22648,132964 +22649,134442 +22650,132624 +22651,134073 +22652,134071 +22653,135272 +22654,135272 +22655,132541 +22656,132603 +22671,135128 +22672,135131 +22673,132589 +22674,132602 +22675,133754 +22676,132962 +22677,132624 +22678,132511 +22679,132613 +22680,132582 +22681,133772 +22682,132945 +22683,132506 +22684,132582 +22685,132611 +22686,132946 +22687,134590 +22688,132627 +22689,132631 +22690,132543 +22691,133759 +22692,132494 +22693,134589 +22694,135131 +22695,135279 +22713,132490 +22716,132925 +22717,132598 +22718,133044 +22719,135652 +22720,135639 +22721,135639 +22722,135469 +22723,133345 +22725,133345 +22726,134581 +22730,134960 +22731,135313 +22732,135351 +22733,135351 +22734,132403 +22751,132650 +22752,132616 +22753,135646 +22754,132536 +22755,132948 +22756,132579 +22757,132586 +22758,135005 +22759,135054 +22761,132579 +22763,132579 +22765,133298 +22771,133473 +22772,135005 +22779,132592 +22780,132948 +22781,132948 +22782,132954 +22783,132536 +22784,135056 +22785,134802 +22787,134582 +22791,135651 +22792,135574 +22793,134339 +22794,133148 +22795,135042 +22796,135661 +22802,135145 +22803,135662 +22804,135344 +22805,134967 +22814,135325 +22831,134951 +22832,133146 +22833,132768 +22834,135150 +22835,135150 +22836,133729 +22837,132499 +22838,134319 +22839,134594 +22840,134593 +22841,132741 +22842,132658 +22843,132658 +22847,132736 +22848,134584 +22849,135033 +22850,135033 +22851,135033 +22852,135033 +22853,132582 +22854,133124 +22855,133124 +22856,133124 +22857,135061 +22858,133101 +22859,132738 +22860,132738 +22861,132582 +22862,135061 +22863,135061 +22864,135061 +22865,135061 +22866,135061 +22867,135061 +22868,135061 +22869,135046 +22870,132742 +22871,133101 +22872,134584 +22873,132742 +22874,132742 +22875,133101 +22876,133101 +22877,133101 +22878,133101 +22879,133101 +22880,133101 +22881,133101 +22882,134584 +22883,133101 +22884,133101 +22885,135581 +22886,133070 +22887,135648 +22888,132637 +22889,135033 +22890,135051 +22891,132612 +22892,132741 +22893,132392 +22894,132944 +22895,132944 +22896,132944 +22897,132944 +22898,132944 +22899,132944 +22900,132964 +22901,133111 +22902,132495 +22903,135648 +22904,135648 +22905,135648 +22906,135330 +22907,132502 +22908,133126 +22909,132960 +22910,132960 +22911,134377 +22912,132944 +22913,132944 +22914,132944 +22915,132944 +22916,132944 +22917,132944 +22918,132944 +22919,132949 +22920,133138 +22921,132639 +22922,134121 +22923,134333 +22924,133614 +22925,134961 +22926,134961 +22927,132386 +22928,132767 +22929,135533 +22930,135496 +22931,132169 +22951,134584 +22952,134417 +22953,135645 +22958,132677 +22971,135342 +22972,134589 +22973,132543 +22976,135343 +22977,135343 +22978,134580 +22979,133998 +22980,132751 +22981,132613 +22982,132584 +22983,132963 +22984,132521 +22985,134584 +22986,135033 +22987,133757 +22988,133757 +22989,133757 +22990,133756 +22991,133756 +22992,133757 +22993,133757 +22994,133769 +22995,133757 +22996,133770 +22997,133770 +22998,133760 +22999,133756 +23000,133756 +23001,132656 +23002,134305 +23003,133769 +23004,133755 +23005,133770 +23006,133770 +23007,133763 +23008,134354 +23009,133755 +23010,134305 +23011,133770 +23012,133762 +23013,133770 +23014,134354 +23015,133763 +23016,133770 +23017,133759 +23018,133770 +23019,133756 +23020,133766 +23021,133762 +23022,133759 +23023,133761 +23024,133760 +23025,133150 +23026,133756 +23027,134367 +23028,133762 +23029,133761 +23030,133756 +23031,132655 +23032,133763 +23033,133755 +23034,133769 +23035,133150 +23036,133150 +23037,133760 +23038,133770 +23039,133770 +23040,133759 +23041,133764 +23042,133770 +23043,133754 +23044,133763 +23045,133767 +23046,133762 +23047,133759 +23048,133754 +23049,133755 +23050,133762 +23051,133754 +23052,133755 +23053,133754 +23054,133762 +23055,133764 +23056,133770 +23057,133753 +23058,133759 +23059,133766 +23060,133758 +23061,133753 +23062,133758 +23063,133769 +23064,133763 +23065,133764 +23066,133770 +23067,133763 +23068,133759 +23069,133765 +23070,133762 +23071,133755 +23072,133758 +23073,133753 +23074,133150 +23075,133764 +23076,133760 +23077,133757 +23078,133762 +23079,133756 +23080,133756 +23081,133755 +23082,133762 +23083,133766 +23084,133756 +23085,133753 +23086,133754 +23087,133754 +23088,133755 +23089,133763 +23090,133762 +23091,133756 +23092,132655 +23093,133768 +23094,133754 +23095,133767 +23096,133764 +23097,132656 +23098,133754 +23099,133758 +23100,133754 +23101,133762 +23102,133766 +23103,134358 +23104,133762 +23105,133763 +23106,133769 +23107,133767 +23108,133762 +23109,133767 +23110,133765 +23111,133770 +23112,133770 +23113,133767 +23114,133766 +23115,133763 +23116,133763 +23117,133766 +23118,133765 +23119,133766 +23120,133763 +23121,133768 +23122,133766 +23123,133762 +23124,133759 +23125,133765 +23126,133763 +23127,133765 +23128,133763 +23129,133763 +23130,133763 +23131,133763 +23132,133762 +23133,133759 +23134,133758 +23135,133756 +23136,133754 +23137,133754 +23138,133768 +23139,133757 +23140,133754 +23141,133769 +23142,133754 +23143,133763 +23144,133762 +23145,132509 +23146,134144 +23147,134743 +23148,134461 +23149,134460 +23150,134317 +23151,133078 +23152,133118 +23153,133124 +23154,133139 +23155,133078 +23156,133118 +23157,133120 +23158,133124 +23159,133126 +23160,133124 +23161,133151 +23162,133120 +23163,133118 +23164,133139 +23165,133118 +23166,133151 +23171,133741 +23172,133639 +23173,135473 +23174,135471 +23175,133741 +23177,133741 +23189,132938 +23191,134584 +23192,132543 +23197,133161 +23198,132395 +23199,134585 +23200,132635 +23201,134943 +23211,132382 +23214,132381 +23215,132382 +23217,134001 +23218,132953 +23221,133998 +23223,135323 +23224,135323 +23225,135650 +23226,132394 +23227,132394 +23228,132418 +23229,134269 +23230,133046 +23231,132403 +23232,132403 +23233,132403 +23234,132403 +23235,132396 +23236,132396 +23237,135575 +23238,135581 +23239,133043 +23240,133042 +23241,135340 +23242,132408 +23243,132408 +23244,133477 +23245,135357 +23246,135277 +23247,135639 +23248,135315 +23249,132418 +23250,135009 +23251,132542 +23253,133476 +23254,133476 +23255,133476 +23256,134228 +23259,135317 +23260,135317 +23261,135317 +23262,132797 +23263,135317 +23264,135317 +23265,133054 +23266,132716 +23267,133043 +23268,133477 +23269,132945 +23270,132369 +23271,135663 +23272,135340 +23273,135340 +23274,135291 +23275,132403 +23276,132403 +23277,132403 +23278,132403 +23279,132403 +23280,132403 +23281,133942 +23282,135130 +23283,135131 +23284,136022 +23285,136006 +23286,136011 +23287,135830 +23288,132624 +23289,132739 +23291,136195 +23292,134418 +23293,134122 +23294,132963 +23295,135432 +23311,133599 +23312,133597 +23313,133608 +23314,134966 +23315,135129 +23316,133639 +23317,133639 +23318,133639 +23319,133639 +23320,133639 +23321,133741 +23322,133741 +23323,133741 +23324,133741 +23327,133133 +23332,134967 +23355,135274 +23357,133476 +23358,134060 +23370,134164 +23371,134230 +23379,135274 +23383,134708 +23385,135280 +23386,135280 +23387,134950 +23394,132744 +23395,132744 +23398,135152 +23399,135038 +23401,133489 +23403,134581 +23405,135274 +23406,134583 +23407,133133 +23408,133133 +23409,133133 +23410,133133 +23411,133133 +23412,133133 +23413,133133 +23414,133133 +23415,133133 +23416,133133 +23419,134966 +23420,133760 +23421,133760 +23422,133770 +23423,132629 +23424,132628 +23431,132788 +23432,134312 +23433,135581 +23434,135581 +23435,135926 +23436,134318 +23440,133003 +23445,134950 +23446,134950 +23447,134950 +23448,133040 +23450,134584 +23451,135350 +23454,135353 +23455,135463 +23458,134241 +23465,135146 +23468,133071 +23472,135277 +23473,134583 +23474,132744 +23475,133002 +23476,134583 +23477,132584 +23478,132500 +23479,132944 +23480,132738 +23481,132746 +23482,134584 +23483,132582 +23484,132746 +23485,134584 +23486,132582 +23487,133159 +23488,135061 +23489,135061 +23490,135054 +23491,133071 +23496,133006 +23497,134754 +23498,135317 +23500,135015 +23508,135280 +23509,133489 +23510,134584 +23513,132949 +23517,133071 +23519,133125 +23520,132483 +23521,134951 +23523,136076 +23526,135357 +23527,133729 +23528,132535 +23529,132491 +23530,132630 +23531,135036 +23532,132604 +23533,132606 +23537,132535 +23538,134583 +23539,135145 +23540,132750 +23543,133126 +23544,133126 +23545,134949 +23546,132946 +23547,134586 +23548,134584 +23549,134591 +23550,134586 +23551,134586 +23552,132606 +23553,133757 +23554,133770 +23555,133041 +23556,133054 +23557,133054 +23558,132743 +23559,132748 +23561,135271 +23562,132383 +23563,135038 +23568,134950 +23569,134950 +23573,135641 +23574,135277 +23575,134950 +23586,135145 +23590,135145 +23594,135145 +23601,135145 +23602,132643 +23603,132643 +23604,132643 +23605,132638 +23606,132252 +23607,132646 +23608,133360 +23617,132392 +23618,135847 +23628,132522 +23629,133359 +23637,133345 +23639,135493 +23642,132490 +23646,135128 +23647,135128 +23651,135005 +23656,135274 +23658,136207 +23659,133728 +23669,135274 +23673,135166 +23674,133345 +23675,132963 +23682,135357 +23683,135316 +23692,135325 +23703,135056 +23704,135054 +23705,133041 +23709,132745 +23710,134589 +23711,134590 +23712,135825 +23713,133442 +23714,133443 +23715,133444 +23716,133440 +23717,133441 +23718,133445 +23719,133446 +23720,133446 +23721,133445 +23722,133447 +23723,135424 +23724,135498 +23725,134358 +23726,134420 +23727,134337 +23728,133364 +23729,132606 +23730,132608 +23731,134855 +23732,132949 +23733,135350 +23734,135346 +23735,136040 +23736,132947 +23737,135033 +23738,134821 +23739,134802 +23740,134245 +23741,134247 +23742,132945 +23747,133771 +23749,133490 +23750,134960 +23752,136107 +23753,134586 +23754,136102 +23755,136107 +23760,132606 +23763,133612 +23765,132592 +23766,132503 +23767,133072 +23769,132606 +23770,133072 +23775,132535 +23776,133074 +23777,133074 +23779,132609 +23780,133372 +23785,132535 +23786,132535 +23791,135652 +23792,133964 +23796,134754 +23797,134754 +23798,135277 +23819,132939 +23824,132592 +23825,134965 +23826,132963 +23827,132963 +23835,134964 +23836,135275 +23837,135150 +23842,136183 +23843,136129 +23844,132499 +23845,132948 +23846,132948 +23847,134958 +23848,135611 +23849,132964 +23850,135611 +23851,135038 +23852,135038 +23853,132956 +23856,132589 +23858,134442 +23861,132535 +23866,135036 +23867,135471 +23875,135358 +23891,135005 +23892,132624 +23893,132624 +23894,135008 +23897,133374 +23898,132624 +23900,132535 +23901,132535 +23903,132418 +23904,132400 +23905,134582 +23908,135581 +23909,134710 +23914,135614 +23917,135463 +23918,135463 +23919,135463 +23920,135463 +23922,135358 +23923,132394 +23935,135358 +23942,133760 +23948,133491 +23949,135943 +23950,132624 +23951,132483 +23954,132483 +23955,133738 +23969,135274 +23976,134955 +23977,134955 +23982,136006 +23986,134581 +23989,135130 +23990,135579 +23991,134012 +24011,132264 +24012,133772 +24013,133772 +24014,135225 +24015,135225 +24016,135225 +24017,132599 +24018,132161 +24019,135240 +24020,133889 +24021,132965 +24022,133358 +24023,132643 +24024,132643 +24025,132649 +24026,134334 +24027,135302 +24028,135302 +24029,133044 +24030,133061 +24033,133482 +24036,135019 +24037,134462 +24039,133738 +24044,136152 +24045,133071 +24046,135651 +24047,135353 +24048,135312 +24049,135312 +24050,135271 +24051,134946 +24052,132998 +24053,134140 +24054,132539 +24055,133724 +24056,132386 +24057,136134 +24058,136188 +24059,135143 +24060,135825 +24061,134337 +24062,135166 +24063,135145 +24064,135033 +24065,133766 +24066,132679 +24067,132590 +24068,132590 +24069,134584 +24070,134594 +24071,132519 +24072,133737 +24073,133771 +24074,132510 +24076,132632 +24077,134593 +24078,133694 +24079,133684 +24085,132536 +24087,133365 +24095,132939 +24097,132624 +24099,135581 +24101,132745 +24102,132637 +24103,132961 +24104,133729 +24105,133729 +24106,133729 +24107,133729 +24108,133771 +24109,132945 +24110,132616 +24111,133729 +24112,132535 +24113,132491 +24114,133693 +24115,135056 +24116,133974 +24117,133974 +24118,132404 +24119,135575 +24120,132612 +24121,135139 +24122,134336 +24131,133897 +24132,134848 +24151,134854 +24152,134834 +24153,134332 +24154,134327 +24155,134442 +24156,134811 +24157,135651 +24158,135648 +24159,133770 +24160,133772 +24161,133049 +24162,134584 +24163,134584 +24164,132512 +24165,134334 +24166,135315 +24167,135316 +24168,135005 +24169,136183 +24170,133693 +24173,132537 +24174,133772 +24175,133774 +24176,133730 +24177,132949 +24178,132498 +24179,132590 +24180,132615 +24181,132539 +24182,134589 +24183,132965 +24184,135049 +24185,135049 +24186,135654 +24187,134229 +24188,134229 +24189,132688 +24190,132606 +24191,135042 +24192,135042 +24193,135044 +24194,132963 +24211,134809 +24212,134820 +24213,134842 +24214,134840 +24215,134847 +24216,134826 +24217,134827 +24220,134337 +24221,133900 +24231,133639 +24251,132494 +24252,136217 +24254,135317 +24255,135277 +24256,132403 +24281,134718 +24282,134718 +24283,134718 +24284,133942 +24285,133942 +24286,132632 +24287,134593 +24288,132632 +24289,132536 +24290,132725 +24291,132536 +24292,133685 +24293,134718 +24294,134718 +24295,134718 +24296,132796 +24297,133754 +24320,135145 +24321,135145 +24331,135040 +24335,135274 +24336,135274 +24337,135274 +24339,135274 +24340,135274 +24341,135274 +24342,135274 +24343,135145 +24345,134582 +24347,135039 +24348,135009 +24351,132392 +24352,132718 +24353,132718 +24354,134589 +24355,132539 +24356,132539 +24357,132539 +24358,132939 +24366,135325 +24367,134955 +24368,134955 +24369,134955 +24370,135131 +24375,135036 +24380,134085 +24381,135036 +24384,132745 +24385,132745 +24386,132745 +24387,132745 +24388,132745 +24389,132745 +24390,132745 +24391,132745 +24392,132745 +24393,132739 +24394,135145 +24395,135145 +24402,135009 +24405,135039 +24406,135009 +24415,133726 +24431,135039 +24445,135145 +24446,132395 +24448,133071 +24452,135325 +24461,135274 +24472,135145 +24473,135145 +24478,135325 +24479,135325 +24480,135225 +24481,135225 +24482,135225 +24483,135138 +24484,135138 +24485,135138 +24486,135138 +24487,135138 +24488,135145 +24489,135145 +24490,135138 +24496,133648 +24497,132950 +24498,132535 +24499,135145 +24503,135145 +24504,132736 +24505,135033 +24506,134584 +24507,135033 +24508,135033 +24509,135033 +24510,133124 +24511,132618 +24512,132582 +24513,132582 +24514,132490 +24517,135145 +24521,133896 +24522,133898 +24528,135005 +24542,135036 +24546,132645 +24547,132722 +24548,132628 +24550,132751 +24551,134581 +24552,134585 +24553,134583 +24554,134584 +24555,133116 +24556,133117 +24557,133137 +24558,133126 +24559,132616 +24560,132613 +24561,132603 +24562,132606 +24563,132957 +24564,132944 +24565,132579 +24566,132541 +24567,132585 +24568,133997 +24569,133375 +24570,132803 +24571,134950 +24572,134418 +24591,132384 +24592,132384 +24593,133466 +24594,132791 +24595,132800 +24596,132795 +24597,132795 +24598,132645 +24599,132645 +24600,132645 +24601,132645 +24602,135358 +24603,133763 +24604,132495 +24605,134581 +24606,135057 +24607,133693 +24608,132939 +24609,132939 +24610,132649 +24611,132644 +24612,132644 +24613,134581 +24614,134581 +24615,134588 +24616,132939 +24622,132493 +24623,132522 +24624,132499 +24625,133892 +24629,133900 +24633,134334 +24634,133476 +24635,132664 +24636,132665 +24637,132665 +24638,132662 +24639,132665 +24640,132665 +24641,132691 +24642,132663 +24643,132664 +24644,132670 +24645,132671 +24646,133373 +24648,133888 +24649,135615 +24650,135610 +24651,135614 +24652,135616 +24653,135616 +24655,135321 +24656,135321 +24658,135323 +24659,135302 +24672,132513 +24673,135248 +24674,135249 +24675,135250 +24676,135251 +24677,135252 +24678,135243 +24679,135244 +24680,135245 +24681,135246 +24682,135247 +24683,135255 +24684,135256 +24685,135257 +24686,135258 +24687,135259 +24688,134202 +24689,134204 +24690,134221 +24691,134212 +24692,134215 +24693,134219 +24694,133917 +24695,134950 +24696,133914 +24697,133910 +24698,133912 +24699,133917 +24700,133918 +24701,133919 +24702,133918 +24704,133913 +24709,133911 +24710,133916 +24711,133915 +24712,133916 +24713,133909 +24715,134300 +24716,133905 +24718,133908 +24719,133906 +24720,135612 +24721,135612 +24729,133489 +24730,134123 +24733,132804 +24736,133076 +24737,133729 +24738,133729 +24739,133732 +24740,135472 +24741,135472 +24742,135472 +24743,133732 +24746,132944 +24747,132741 +24748,132498 +24749,132617 +24750,135575 +24751,132400 +24752,132400 +24753,135576 +24754,135033 +24755,135326 +24756,135351 +24757,132542 +24758,132542 +24760,132653 +24761,135056 +24762,132501 +24763,132961 +24764,132961 +24765,132961 +24766,132961 +24767,132603 +24768,132943 +24769,132502 +24770,133445 +24771,133445 +24772,135055 +24773,132504 +24774,132949 +24775,135661 +24776,133604 +24777,135056 +24778,133442 +24782,132539 +24784,133441 +24786,132535 +24787,132585 +24790,132539 +24792,135280 +24793,132615 +24795,135005 +24797,132539 +24811,135352 +24812,135349 +24813,135349 +24814,135658 +24815,135581 +24816,135579 +24817,132768 +24818,133163 +24819,133163 +24820,133163 +24821,134961 +24831,133706 +24851,135356 +24891,132392 +24892,132648 +24893,132648 +24894,134581 +24895,134586 +24896,132939 +24897,132903 +24898,132904 +24912,135039 +24917,133072 +24919,133489 +24923,135151 +24924,133038 +24925,135128 +24926,135145 +24927,134589 +24928,133763 +24929,135493 +24930,135493 +24931,135493 +24932,132650 +24933,133136 +24934,135054 +24935,132539 +24936,132670 +24937,132670 +24938,133136 +24939,133136 +24940,133136 +24941,133136 +24942,133165 +24943,134589 +24944,132681 +24945,132687 +24946,133770 +24947,132683 +24948,132683 +24949,132683 +24950,132683 +24951,132679 +24957,132645 +24958,134581 +24959,134586 +24960,135057 +24961,135057 +24962,135057 +24963,135057 +24964,135057 +24965,135057 +24966,135033 +24967,133693 +24974,132654 +24975,135012 +24976,132939 +24977,132939 +24978,132505 +24981,135648 +24982,132606 +24983,132612 +24984,132940 +24985,133770 +24986,132940 +24988,132665 +24990,135661 +24992,132679 +24993,132679 +24994,132679 +24995,132679 +24996,132679 +24997,132679 +24998,132679 +25006,132692 +25007,132692 +25008,132692 +25012,132679 +25013,132690 +25014,132690 +25015,132690 +25016,132672 +25028,132888 +25036,135302 +25037,134800 +25038,134865 +25039,132687 +25041,132515 +25042,134582 +25046,133046 +25047,133046 +25048,136120 +25049,132725 +25050,134586 +25051,132536 +25052,132895 +25053,135350 +25054,132874 +25055,132873 +25072,134335 +25073,134335 +25074,134335 +25075,135463 +25076,135467 +25077,135469 +25078,135471 +25079,133045 +25080,133679 +25081,135036 +25096,133050 +25098,132499 +25101,134706 +25102,135055 +25104,135056 +25111,134584 +25116,132963 +25118,136248 +25119,135321 +25120,135274 +25132,132261 +25133,134951 +25134,134961 +25138,134948 +25139,133041 +25145,133476 +25146,133681 +25147,133682 +25148,133050 +25149,133050 +25152,133489 +25153,133491 +25154,132392 +25155,135130 +25157,132636 +25158,132963 +25159,132963 +25160,132590 +25161,132612 +25162,135033 +25163,133126 +25164,133126 +25165,133126 +25166,133116 +25167,135280 +25168,132952 +25169,134591 +25170,134417 +25171,132937 +25172,135042 +25173,135313 +25177,133490 +25178,133040 +25179,134586 +25180,133041 +25181,134586 +25184,136162 +25185,132720 +25186,134586 +25187,132512 +25188,132960 +25191,132535 +25192,135005 +25193,135029 +25197,135145 +25198,134586 +25199,132645 +25200,132645 +25201,132692 +25202,132672 +25203,132672 +25204,132679 +25205,132679 +25206,132690 +25207,132645 +25208,134589 +25209,132645 +25210,132645 +25211,132645 +25212,132645 +25213,132501 +25214,132535 +25215,132645 +25216,132962 +25217,134584 +25218,132645 +25219,132512 +25220,132535 +25221,132960 +25222,132720 +25223,134586 +25224,132962 +25225,132501 +25226,134584 +25227,132535 +25228,132649 +25229,133693 +25230,133694 +25231,132959 +25232,133762 +25233,132539 +25234,132504 +25235,132504 +25236,135052 +25245,132684 +25246,136092 +25247,135033 +25248,132505 +25249,132718 +25250,134587 +25251,132535 +25253,132949 +25254,134588 +25255,134588 +25259,135005 +25260,135612 +25271,134942 +25272,135009 +25278,135146 +25285,132608 +25326,132490 +25327,134582 +25328,132541 +25329,132939 +25343,134584 +25351,132490 +25352,133078 +25360,133078 +25361,133078 +25362,133040 +25363,133040 +25364,133040 +25365,133040 +25366,133040 +25367,133040 +25376,133072 +25377,135145 +25378,135145 +25380,135009 +25382,135138 +25383,133090 +25384,133693 +25401,133076 +25403,133132 +25410,132395 +25411,135325 +25432,133117 +25433,133117 +25434,133117 +25437,135145 +25441,132392 +25456,132488 +25466,134027 +25467,134025 +25468,134021 +25469,134005 +25470,132392 +25471,132392 +25472,134026 +25473,134024 +25474,132392 +25475,134028 +25480,134023 +25481,134016 +25482,133716 +25483,133717 +25484,133715 +25485,135005 +25488,133122 +25489,135005 +25496,135321 +25499,132392 +25503,135131 +25504,135131 +25506,135643 +25507,135643 +25508,135643 +25509,135643 +25510,135643 +25511,135643 +25513,135643 +25514,135643 +25515,135643 +25516,135643 +25533,132392 +25542,134182 +25571,135012 +25591,135128 +25592,135125 +25593,135128 +25594,132415 +25595,132404 +25596,132415 +25597,132409 +25598,132398 +25599,132418 +25600,132418 +25601,132403 +25602,135499 +25603,135498 +25604,135496 +25605,135499 +25606,135499 +25607,135533 +25608,135533 +25609,135651 +25610,135311 +25611,135322 +25612,135344 +25613,135661 +25614,135648 +25615,133490 +25616,133040 +25617,133060 +25618,133041 +25619,133490 +25620,133040 +25621,133041 +25622,133041 +25623,133041 +25624,133041 +25625,133045 +25626,133488 +25627,133488 +25628,133488 +25629,133476 +25630,135125 +25631,135128 +25632,135128 +25633,135130 +25634,135125 +25635,135349 +25636,135340 +25637,135340 +25638,135311 +25639,135327 +25640,135343 +25641,135352 +25642,135340 +25643,135340 +25644,135340 +25645,135353 +25646,135350 +25647,135350 +25648,135353 +25649,135273 +25650,135351 +25651,135357 +25652,135351 +25653,135351 +25654,135351 +25655,135351 +25656,135326 +25657,133762 +25658,133071 +25659,133132 +25660,133076 +25661,134743 +25662,134321 +25671,132628 +25672,134582 +25673,134585 +25674,132631 +25675,132628 +25676,132626 +25677,135049 +25678,132626 +25679,132741 +25680,134583 +25681,135040 +25682,132722 +25683,134586 +25684,135040 +25685,135044 +25686,134589 +25687,135036 +25688,132742 +25689,132647 +25690,135049 +25691,135049 +25692,133078 +25693,133078 +25694,134585 +25695,135049 +25696,134706 +25697,132960 +25698,132960 +25699,132721 +25700,135037 +25701,134581 +25702,132950 +25703,132539 +25704,132722 +25705,134582 +25706,132957 +25707,132950 +25708,132541 +25709,132541 +25710,132637 +25711,132482 +25712,135035 +25713,135038 +25714,134592 +25715,133122 +25716,133122 +25717,133122 +25718,132958 +25719,132492 +25720,132608 +25721,132741 +25722,134592 +25723,132958 +25724,132965 +25725,133683 +25726,132606 +25727,132492 +25728,132492 +25729,133683 +25730,132722 +25731,132722 +25732,134582 +25733,133683 +25734,135046 +25735,132965 +25736,132610 +25737,132512 +25738,133681 +25739,133681 +25740,132500 +25741,132584 +25742,132751 +25743,132767 +25744,132960 +25745,134583 +25746,132745 +25747,132937 +25748,132629 +25749,132745 +25750,132964 +25751,132743 +25752,132589 +25753,132612 +25754,132634 +25755,132638 +25756,132946 +25757,132514 +25758,132611 +25759,134590 +25760,132582 +25761,132945 +25762,132511 +25763,132626 +25764,135058 +25765,132588 +25766,132600 +25767,132523 +25768,134582 +25769,132628 +25770,135059 +25771,132493 +25772,132602 +25773,132955 +25774,135038 +25775,132500 +25776,132612 +25777,135054 +25778,132588 +25779,132600 +25780,132628 +25781,132493 +25782,132945 +25783,135039 +25784,132515 +25785,132539 +25786,132606 +25787,132634 +25788,132962 +25789,134583 +25790,135040 +25791,133137 +25792,132629 +25793,132589 +25794,132960 +25795,132500 +25796,134586 +25797,132609 +25798,132629 +25799,135038 +25800,132618 +25801,132751 +25802,132937 +25803,132521 +25804,132584 +25805,134586 +25806,135051 +25807,132620 +25808,132603 +25809,132635 +25810,132541 +25811,132959 +25812,134589 +25813,132498 +25814,135038 +25815,135038 +25816,132768 +25817,132590 +25818,132611 +25819,132938 +25820,134590 +25821,132514 +25822,135049 +25823,132767 +25824,132767 +25825,132768 +25826,132767 +25827,135051 +25828,132535 +25829,132613 +25830,132736 +25831,132957 +25832,132495 +25833,134584 +25834,132690 +25835,132964 +25836,133124 +25837,135057 +25838,133124 +25839,133124 +25840,132539 +25841,132606 +25842,132949 +25843,132515 +25844,134583 +25845,132739 +25846,132739 +25847,135040 +25848,132738 +25849,134583 +25850,132938 +25851,132602 +25852,132492 +25853,132611 +25854,133077 +25855,133770 +25856,133125 +25857,132592 +25858,132494 +25859,135037 +25860,132535 +25861,132606 +25862,132739 +25863,132491 +25864,132611 +25865,132962 +25866,132515 +25867,132952 +25868,134584 +25869,132663 +25870,132543 +25871,132543 +25872,135058 +25873,135009 +25874,132607 +25875,133762 +25876,134582 +25877,132662 +25878,132767 +25879,132543 +25880,135009 +25881,132515 +25882,132743 +25883,132539 +25884,133768 +25885,132952 +25886,132617 +25887,135040 +25888,135017 +25889,132655 +25890,134582 +25891,132661 +25892,132956 +25893,132539 +25894,132661 +25895,132505 +25896,134583 +25897,135045 +25898,133142 +25899,133131 +25900,133754 +25901,134953 +25902,132516 +25903,132589 +25904,133131 +25905,132616 +25906,132959 +25907,134589 +25908,132751 +25909,135057 +25910,133759 +25911,134951 +25912,132583 +25913,132616 +25914,132745 +25915,132494 +25916,133766 +25917,132943 +25918,132943 +25919,132519 +25920,134583 +25921,133757 +25922,132741 +25923,132741 +25924,132583 +25925,132612 +25926,132750 +25927,132960 +25928,132500 +25929,132537 +25930,132589 +25931,132612 +25932,132750 +25933,132960 +25934,134584 +25935,135054 +25936,133090 +25937,133090 +25938,133770 +25939,132611 +25940,134949 +25941,132952 +25942,134590 +25943,134949 +25944,132656 +25945,133754 +25946,132537 +25947,132494 +25948,133763 +25949,132656 +25950,133759 +25951,135009 +25952,135009 +25953,133769 +25954,135013 +25955,134956 +25956,132650 +25957,132492 +25958,133770 +25959,132601 +25960,133753 +25961,132955 +25962,132741 +25963,134583 +25964,132382 +25965,135040 +25966,132540 +25967,133757 +25968,134582 +25969,132510 +25970,132605 +25971,132939 +25972,133758 +25973,135010 +25974,134581 +25975,133766 +25976,132663 +25977,133768 +25978,133770 +25979,133758 +25980,132539 +25981,133693 +25982,135026 +25983,135026 +25984,135014 +25985,133772 +25986,135036 +25987,132954 +25988,134953 +25989,132660 +25990,135026 +25991,132768 +25992,135026 +25993,133770 +25994,132600 +25995,132539 +25996,133136 +25997,133766 +25998,132492 +25999,132955 +26000,135036 +26001,133361 +26002,132681 +26003,135013 +26004,132612 +26005,132512 +26006,133754 +26007,132940 +26008,132538 +26009,135011 +26011,132661 +26012,135036 +26013,133133 +26014,134951 +26015,133767 +26016,133766 +26017,132647 +26018,133753 +26019,132514 +26020,132957 +26021,134587 +26022,132510 +26023,135010 +26024,132492 +26025,132606 +26026,132539 +26027,133763 +26028,135012 +26029,132955 +26030,132535 +26031,132515 +26032,132613 +26033,132515 +26034,132736 +26035,135034 +26036,132945 +26037,132494 +26038,132646 +26039,134584 +26040,135057 +26041,132767 +26042,132601 +26043,133767 +26044,132512 +26045,133759 +26046,134953 +26047,133762 +26048,133758 +26049,135011 +26050,132955 +26051,132646 +26052,134589 +26053,132681 +26054,135033 +26055,132608 +26056,133754 +26057,133760 +26058,132500 +26059,132521 +26060,134955 +26061,134592 +26062,132955 +26063,135008 +26064,133768 +26065,134952 +26066,132542 +26067,132666 +26068,135033 +26069,134706 +26070,134706 +26071,134706 +26072,132960 +26073,132606 +26074,132634 +26075,132966 +26076,132515 +26077,132539 +26078,135040 +26079,132601 +26080,133756 +26081,132961 +26082,133772 +26083,134589 +26084,135007 +26085,134956 +26086,132542 +26087,132627 +26088,132615 +26089,132963 +26090,132590 +26091,135053 +26092,132650 +26093,132500 +26094,133121 +26095,133121 +26096,135033 +26097,133763 +26098,133070 +26099,134949 +26100,132541 +26101,133756 +26102,132966 +26103,132602 +26104,135033 +26105,132628 +26106,132677 +26107,132938 +26108,132495 +26109,132535 +26110,134592 +26111,132497 +26112,133754 +26113,132954 +26114,135057 +26115,133078 +26116,135043 +26117,132541 +26118,133766 +26119,132678 +26120,134948 +26121,134953 +26122,132617 +26123,132629 +26124,134592 +26125,132960 +26126,133772 +26127,132500 +26128,132505 +26129,132536 +26130,134586 +26131,132687 +26132,132957 +26133,135056 +26134,132541 +26135,132686 +26136,132510 +26137,133772 +26138,132499 +26139,132767 +26140,132520 +26141,133770 +26142,132670 +26143,132949 +26144,134591 +26145,132541 +26146,132649 +26147,135048 +26148,134948 +26149,132512 +26150,133111 +26151,132606 +26152,134951 +26153,132542 +26154,132957 +26155,132613 +26156,132628 +26157,132677 +26158,132493 +26159,134592 +26160,132588 +26161,135007 +26162,132957 +26163,134583 +26164,135059 +26165,135033 +26166,133078 +26167,133765 +26168,132612 +26169,132519 +26170,132767 +26171,132541 +26172,133127 +26173,133766 +26174,132670 +26175,133765 +26176,134956 +26177,134588 +26178,135007 +26179,133117 +26180,132497 +26181,132600 +26182,135055 +26183,132759 +26184,132655 +26185,132960 +26186,132542 +26187,132608 +26188,132589 +26189,133760 +26190,132496 +26191,134586 +26192,135008 +26193,132953 +26194,135036 +26195,135033 +26196,134592 +26197,133694 +26198,132643 +26199,133134 +26200,132767 +26201,133761 +26202,133772 +26203,135021 +26204,132639 +26205,132606 +26206,132539 +26207,132539 +26208,132949 +26209,132949 +26210,132515 +26211,132676 +26212,134594 +26213,135049 +26214,132767 +26215,132656 +26216,132615 +26217,135058 +26218,132677 +26219,135021 +26220,133074 +26221,132499 +26222,132940 +26223,134593 +26224,133074 +26225,132541 +26226,132670 +26227,133756 +26228,133757 +26229,135045 +26230,132506 +26231,132542 +26232,134950 +26233,133761 +26234,134948 +26235,132608 +26236,132944 +26237,132584 +26238,134590 +26239,132602 +26240,132642 +26241,132751 +26242,132938 +26243,133123 +26244,132938 +26245,132500 +26246,132680 +26247,135033 +26248,134586 +26249,134583 +26250,133772 +26251,133757 +26252,132518 +26253,132616 +26254,132669 +26255,132767 +26256,132633 +26257,133101 +26258,132954 +26259,133766 +26260,134593 +26261,132539 +26262,133757 +26263,135056 +26264,132589 +26265,132602 +26266,132616 +26267,132751 +26268,132541 +26269,132937 +26270,132500 +26271,133754 +26272,134586 +26273,135054 +26274,133076 +26275,132943 +26276,134593 +26277,132768 +26278,133770 +26279,132658 +26280,132519 +26281,135045 +26282,134593 +26283,134949 +26284,132502 +26285,132542 +26286,132515 +26287,132608 +26288,132659 +26289,132613 +26290,132937 +26291,132632 +26292,133069 +26293,132944 +26294,132666 +26295,132496 +26296,134592 +26297,132586 +26298,135054 +26299,133760 +26300,134592 +26301,135033 +26302,133134 +26303,132768 +26304,133758 +26305,133134 +26306,135467 +26307,132520 +26308,132514 +26309,133090 +26310,132589 +26311,132649 +26312,132519 +26313,132616 +26314,132749 +26315,132767 +26316,132943 +26317,134583 +26318,133146 +26319,133146 +26320,135470 +26321,135054 +26322,134957 +26323,133754 +26324,134953 +26325,134952 +26326,132587 +26327,132750 +26328,132963 +26329,135061 +26330,132767 +26331,133754 +26332,132741 +26333,132589 +26334,132966 +26335,132502 +26336,134583 +26337,135032 +26338,133069 +26339,132937 +26340,132517 +26341,132589 +26342,135054 +26351,132744 +26352,132940 +26353,132501 +26354,132586 +26355,134588 +26356,135423 +26357,135424 +26358,135424 +26359,132612 +26360,132616 +26361,135427 +26362,132612 +26363,132606 +26364,135033 +26365,133074 +26366,133711 +26367,133714 +26371,134345 +26372,133440 +26373,132744 +26374,134317 +26375,134311 +26376,133044 +26377,133759 +26378,134350 +26379,132395 +26380,132395 +26381,132597 +26382,134350 +26383,133748 +26385,135612 +26386,135124 +26387,132745 +26388,133604 +26389,133602 +26390,132962 +26391,133369 +26411,135613 +26412,135469 +26413,134953 +26414,132536 +26415,132543 +26416,135038 +26417,135038 +26418,135038 +26419,135045 +26420,134144 +26431,133763 +26432,135349 +26433,135651 +26434,132493 +26435,132497 +26436,132959 +26437,132522 +26438,133767 +26439,133693 +26451,135358 +26452,135358 +26453,132602 +26454,132618 +26455,132964 +26456,132964 +26457,132964 +26458,132964 +26459,133715 +26460,135161 +26461,132189 +26462,135349 +26463,135343 +26464,135650 +26465,135033 +26466,132721 +26467,132638 +26468,133768 +26469,133739 +26470,132499 +26471,135054 +26472,135049 +26473,132964 +26474,133726 +26475,132616 +26476,132617 +26477,135327 +26478,135327 +26479,135326 +26491,133941 +26492,135275 +26493,135275 +26494,135344 +26495,135531 +26496,135532 +26497,132382 +26498,132381 +26499,132381 +26500,135128 +26501,135033 +26502,132511 +26503,135344 +26504,135055 +26511,132938 +26512,132963 +26513,132648 +26514,132741 +26515,132626 +26516,132801 +26517,132745 +26531,134743 +26532,133000 +26533,134349 +26534,134522 +26535,132399 +26536,135144 +26537,133368 +26538,135148 +26539,135148 +26540,132950 +26541,132512 +26542,132616 +26543,132541 +26544,132403 +26545,135576 +26546,134061 +26547,134953 +26548,134956 +26549,133639 +26550,133117 +26551,134139 +26552,134433 +26571,134125 +26572,135346 +26573,135351 +26574,135346 +26575,135346 +26576,135343 +26577,135274 +26578,135280 +26579,135328 +26580,135468 +26581,135468 +26582,133442 +26583,133443 +26584,133444 +26585,135324 +26586,135356 +26587,135280 +26588,135327 +26589,135280 +26590,135350 +26591,135355 +26592,132938 +26593,132941 +26594,132941 +26595,132164 +26596,132941 +26597,132941 +26598,135575 +26599,135346 +26600,133053 +26601,132403 +26602,135641 +26603,135302 +26604,135130 +26611,132998 +26612,134301 +26613,132385 +26614,133149 +26615,133599 +26616,135616 +26617,135617 +26618,133001 +26619,133149 +26620,133149 +26621,133149 +26622,133706 +26631,132762 +26632,132765 +26633,132766 +26634,132503 +26635,132725 +26636,132725 +26637,133122 +26638,133122 +26639,132517 +26640,132961 +26641,134584 +26642,132590 +26643,132590 +26644,135053 +26645,135053 +26646,132603 +26647,133123 +26648,133123 +26649,132956 +26650,132502 +26651,134587 +26652,132589 +26653,135277 +26654,132743 +26655,135036 +26656,133122 +26657,133121 +26658,132737 +26659,134584 +26660,132963 +26661,132590 +26662,135051 +26663,135051 +26664,133344 +26665,133773 +26666,133075 +26667,132649 +26668,133075 +26669,134589 +26670,135054 +26671,135356 +26672,135351 +26673,135351 +26674,135351 +26675,135356 +26676,135349 +26677,135658 +26678,135657 +26679,135657 +26680,132767 +26681,133759 +26682,134337 +26683,135027 +26684,135030 +26685,132612 +26686,132513 +26687,132743 +26688,135054 +26689,132953 +26690,132587 +26691,134586 +26692,133101 +26693,134963 +26711,133044 +26731,134020 +26732,133984 +26733,134019 +26734,134007 +26735,133998 +26736,133991 +26737,135617 +26751,132590 +26752,132590 +26753,132963 +26754,134961 +26771,132865 +26772,132864 +26773,132856 +26774,133944 +26775,135471 +26776,135156 +26791,134584 +26792,132506 +26793,132605 +26794,132611 +26795,132742 +26796,132514 +26797,135047 +26798,132964 +26799,132586 +26800,134585 +26801,132612 +26802,132518 +26803,134588 +26804,132626 +26805,132943 +26806,132539 +26807,135052 +26808,133144 +26809,134959 +26810,132520 +26811,132746 +26812,132949 +26813,132539 +26814,134593 +26815,132606 +26816,134958 +26817,132768 +26818,135042 +26819,132508 +26820,132751 +26821,132608 +26822,132541 +26823,132938 +26824,134582 +26825,135051 +26826,133124 +26827,132636 +26828,132518 +26829,132612 +26830,132940 +26831,134588 +26832,132539 +26833,132539 +26834,135036 +26835,133125 +26836,132502 +26837,132608 +26838,132629 +26839,132953 +26840,134586 +26841,132536 +26842,132536 +26843,135054 +26844,134951 +26845,132627 +26846,132744 +26847,132951 +26848,132511 +26849,134583 +26850,132586 +26851,132951 +26852,135058 +26853,133071 +26854,133121 +26855,134956 +26856,132500 +26857,132618 +26858,134835 +26859,132738 +26860,132944 +26861,134582 +26862,132584 +26863,135033 +26864,135051 +26865,134806 +26866,133073 +26867,133073 +26868,134961 +26869,132613 +26870,132521 +26871,132760 +26872,132963 +26873,134584 +26874,132592 +26875,135059 +26876,133078 +26877,133078 +26878,132606 +26879,132511 +26880,132744 +26881,132962 +26882,132539 +26883,132539 +26884,134583 +26885,135033 +26886,133121 +26887,132608 +26888,132938 +26889,132513 +26890,132745 +26891,134592 +26892,132592 +26893,133078 +26894,135044 +26911,134948 +26912,132627 +26913,132602 +26914,132613 +26915,132965 +26916,132501 +26917,132587 +26918,134583 +26919,135047 +26920,133122 +26921,134950 +26922,133125 +26923,133121 +26924,132941 +26925,132225 +26926,134520 +26927,132539 +26928,132606 +26929,133764 +26930,132492 +26931,132963 +26932,134583 +26933,132719 +26934,133771 +26935,133771 +26936,132638 +26937,132511 +26938,132608 +26939,132541 +26940,132952 +26941,134592 +26942,133763 +26943,133766 +26944,132537 +26945,132606 +26946,132959 +26947,132514 +26948,134583 +26949,132647 +26950,133444 +26951,133769 +26952,132607 +26953,132502 +26954,132953 +26955,134586 +26956,132536 +26957,132629 +26958,133770 +26959,134954 +26960,132505 +26961,132639 +26962,133772 +26963,132956 +26964,132579 +26965,135050 +26966,134587 +26967,134583 +26968,134583 +26969,132504 +26970,132542 +26971,132608 +26972,132624 +26973,132953 +26974,134583 +26975,135037 +26976,134709 +26977,133766 +26978,134957 +26979,133771 +26980,133766 +26981,133769 +26982,132605 +26983,132540 +26984,132624 +26985,132946 +26986,134585 +26987,132514 +26988,135038 +26989,133754 +26990,132626 +26991,133765 +26992,132518 +26993,132612 +26994,132951 +26995,134583 +26996,132539 +26997,135058 +26998,134586 +26999,133774 +27000,132949 +27001,132537 +27002,132502 +27003,135054 +27004,132629 +27005,132609 +27006,133774 +27007,132608 +27008,132511 +27009,132541 +27010,132637 +27011,133772 +27012,132939 +27013,134583 +27014,135038 +27015,133044 +27016,132510 +27017,132605 +27018,132647 +27019,132945 +27020,134584 +27021,132539 +27022,132539 +27023,135049 +27024,134953 +27025,133757 +27026,132610 +27027,132938 +27028,134583 +27029,132502 +27030,135054 +27031,133161 +27032,133760 +27033,133760 +27034,132629 +27035,132535 +27036,134961 +27037,132541 +27038,132606 +27039,132739 +27040,133754 +27041,132949 +27042,133077 +27043,134583 +27044,135040 +27045,132515 +27046,132518 +27047,132539 +27048,132606 +27049,132637 +27050,134583 +27051,133754 +27052,132768 +27053,132943 +27054,135052 +27055,134951 +27056,132597 +27057,132515 +27058,132615 +27059,132535 +27060,132958 +27061,134589 +27062,133759 +27063,132739 +27064,134952 +27065,132592 +27066,132606 +27067,132634 +27068,132513 +27069,132945 +27070,134583 +27071,135046 +27072,133757 +27073,132768 +27074,132615 +27075,132956 +27076,134706 +27077,132589 +27078,132589 +27079,132516 +27080,135040 +27081,132719 +27082,133763 +27083,132767 +27084,134955 +27085,134707 +27086,134707 +27087,133773 +27088,133759 +27089,135291 +27090,135291 +27091,132601 +27092,132629 +27093,132579 +27094,132498 +27095,132938 +27096,135054 +27097,134586 +27098,133117 +27099,134948 +27100,132540 +27101,132626 +27102,132938 +27103,132612 +27104,134588 +27105,132519 +27106,135052 +27107,132767 +27108,133754 +27109,134957 +27110,132516 +27111,132609 +27112,132751 +27113,132945 +27114,134589 +27115,132584 +27116,135041 +27117,132499 +27118,132632 +27119,132950 +27120,132585 +27121,134584 +27122,132614 +27123,135040 +27124,133090 +27125,133770 +27126,134949 +27127,132518 +27128,132612 +27129,132741 +27130,132767 +27131,132607 +27132,132542 +27133,134586 +27134,135032 +27135,134948 +27136,132603 +27137,132505 +27138,132627 +27139,132938 +27140,134583 +27141,132541 +27142,135033 +27143,133753 +27144,133078 +27145,134966 +27146,132500 +27147,132643 +27148,132953 +27149,132535 +27150,134586 +27151,133101 +27152,133760 +27153,134948 +27154,132602 +27155,132723 +27156,132938 +27157,134583 +27158,132543 +27159,132492 +27160,135060 +27161,133757 +27162,134948 +27163,132511 +27164,132542 +27165,132608 +27166,132944 +27167,132944 +27168,132948 +27169,132492 +27170,132608 +27171,132743 +27172,132956 +27173,132536 +27174,134583 +27175,132963 +27176,133774 +27177,135055 +27178,133076 +27179,134965 +27180,133121 +27181,133121 +27182,132768 +27183,132502 +27184,132535 +27185,132502 +27186,133124 +27187,133124 +27188,133124 +27189,133124 +27190,132938 +27191,133161 +27192,132535 +27193,132602 +27194,132629 +27195,134583 +27196,132953 +27197,133770 +27198,133076 +27199,133076 +27200,133076 +27201,132542 +27202,134955 +27203,132542 +27204,132601 +27205,132541 +27206,132524 +27207,132955 +27208,132606 +27209,132512 +27210,132517 +27211,132517 +27212,132632 +27213,132963 +27214,134584 +27215,132587 +27216,132588 +27217,132616 +27218,135061 +27219,132944 +27220,133754 +27221,135964 +27222,134950 +27223,132617 +27224,132590 +27225,132516 +27226,132516 +27227,136222 +27228,132680 +27229,132644 +27230,134588 +27231,135033 +27232,133126 +27233,132648 +27234,133143 +27235,134586 +27236,135054 +27237,132625 +27238,134583 +27239,135051 +27240,133126 +27241,133126 +27242,133073 +27243,132738 +27244,132738 +27245,134584 +27246,135051 +27247,135051 +27248,135041 +27249,132541 +27250,132541 +27251,132541 +27252,132541 +27253,132539 +27254,132541 +27255,132606 +27256,132953 +27257,132502 +27258,133076 +27259,134587 +27260,132716 +27261,135050 +27262,132602 +27263,132542 +27264,132495 +27265,132959 +27266,135054 +27267,134586 +27268,133143 +27269,132638 +27270,132585 +27271,132944 +27272,132498 +27273,132618 +27274,132751 +27275,134584 +27276,135046 +27277,132615 +27278,132587 +27279,132945 +27280,132503 +27281,133139 +27282,132633 +27283,134583 +27284,135060 +27285,132496 +27286,132609 +27287,132938 +27288,132589 +27289,134586 +27290,132722 +27291,135054 +27292,133760 +27293,132768 +27294,134948 +27295,132507 +27296,132614 +27297,132736 +27298,132963 +27299,132963 +27300,134581 +27301,132589 +27302,135044 +27303,133770 +27304,133763 +27305,134949 +27306,133111 +27307,132602 +27308,132751 +27309,132938 +27310,132500 +27311,134586 +27312,132584 +27313,132500 +27314,132609 +27315,132629 +27316,132960 +27317,132953 +27318,132536 +27319,134586 +27320,135054 +27321,133101 +27322,132627 +27323,132524 +27324,132615 +27325,133763 +27326,132963 +27327,134581 +27328,132590 +27329,132613 +27330,132749 +27331,132962 +27332,132503 +27333,132539 +27334,132539 +27335,134583 +27336,135060 +27337,133124 +27338,133124 +27339,134950 +27340,132746 +27341,132951 +27342,132511 +27343,132583 +27344,134583 +27345,132606 +27346,135043 +27347,133159 +27348,132722 +27349,132588 +27350,132602 +27351,132957 +27352,132500 +27353,133127 +27354,134586 +27355,135054 +27356,132749 +27357,132535 +27358,132938 +27359,132492 +27360,134583 +27361,135040 +27362,132616 +27363,132722 +27364,132955 +27365,132502 +27366,133078 +27367,134589 +27368,132607 +27369,132585 +27370,132542 +27371,135039 +27372,132646 +27373,132615 +27374,132963 +27375,132508 +27376,132589 +27377,134592 +27378,135059 +27379,133124 +27380,132535 +27381,132938 +27382,132499 +27383,134583 +27384,132723 +27385,132602 +27386,135049 +27387,133123 +27388,134955 +27389,132627 +27390,132960 +27391,132507 +27392,132587 +27393,134581 +27394,132615 +27395,133118 +27396,135060 +27397,132739 +27398,132938 +27399,132495 +27400,132535 +27401,134581 +27402,132602 +27403,135044 +27404,132767 +27405,132584 +27406,132613 +27407,132751 +27408,132767 +27409,132963 +27410,133044 +27411,132521 +27412,133044 +27413,134586 +27414,135061 +27415,134951 +27416,132647 +27417,132938 +27418,132493 +27419,132535 +27420,132602 +27421,135033 +27422,135033 +27423,133078 +27424,132583 +27425,132583 +27426,132615 +27427,132746 +27428,132965 +27429,132519 +27430,134583 +27431,135045 +27432,134952 +27451,135463 +27452,134337 +27453,136173 +27454,134337 +27471,133447 +27472,132677 +27473,132645 +27474,132645 +27475,132645 +27476,132645 +27477,132645 +27478,132645 +27479,132660 +27491,135499 +27492,135494 +27511,133127 +27512,132517 +27513,133762 +27514,133762 +27515,132511 +27516,132539 +27517,134962 +27518,132724 +27519,132952 +27520,132515 +27521,133767 +27522,134582 +27523,135039 +27524,132539 +27525,133763 +27526,134955 +27527,134955 +27528,135039 +27529,135009 +27530,132955 +27531,132659 +27532,132543 +27533,133774 +27534,132611 +27535,132540 +27536,132938 +27537,132541 +27538,133117 +27539,132589 +27540,132589 +27541,132539 +27542,132722 +27543,132500 +27544,132500 +27545,132500 +27546,132541 +27547,132541 +27548,132501 +27549,133762 +27550,132957 +27551,135040 +27552,133126 +27553,135032 +27554,132667 +27555,134592 +27556,134123 +27557,132669 +27558,134336 +27559,132588 +27560,132500 +27561,132588 +27562,132588 +27563,135468 +27564,132717 +27565,132602 +27566,132501 +27567,132949 +27568,132535 +27569,135049 +27570,134586 +27571,134950 +27572,133127 +27573,133769 +27574,132791 +27575,135140 +27576,132722 +27577,132959 +27578,134587 +27579,132501 +27580,135036 +27581,133118 +27582,132602 +27583,133762 +27584,133762 +27585,134948 +27586,132635 +27587,134948 +27588,134956 +27589,132613 +27590,132505 +27591,132946 +27592,135044 +27593,133758 +27594,132650 +27595,132650 +27596,132650 +27597,134586 +27598,134590 +27599,132651 +27600,132543 +27601,132611 +27602,132955 +27603,135054 +27604,135037 +27605,135037 +27606,132767 +27607,133769 +27608,132614 +27609,132680 +27610,132741 +27611,132515 +27612,135466 +27613,132960 +27614,132514 +27615,134586 +27616,132501 +27617,132589 +27618,135052 +27619,133076 +27620,132767 +27621,134586 +27622,134586 +27623,134706 +27624,135032 +27625,132720 +27626,133120 +27627,133772 +27628,135021 +27629,134593 +27630,132604 +27631,133768 +27632,132617 +27633,132542 +27634,132541 +27635,132965 +27636,134583 +27637,132768 +27638,135055 +27639,132940 +27640,135033 +27641,132615 +27642,133076 +27643,133076 +27644,135042 +27645,132653 +27646,132535 +27647,132493 +27648,132949 +27649,132717 +27650,135467 +27651,134586 +27652,135054 +27653,133762 +27654,132510 +27655,132605 +27656,132742 +27657,132945 +27658,133769 +27659,133142 +27660,133142 +27661,132963 +27662,134586 +27663,132629 +27664,135054 +27665,132500 +27666,132500 +27667,135037 +27668,132492 +27669,132723 +27670,134587 +27671,132955 +27672,132955 +27673,133761 +27674,132514 +27675,132611 +27676,132539 +27677,132958 +27678,132539 +27679,133753 +27680,133117 +27681,134587 +27682,135039 +27683,132656 +27684,132493 +27685,132592 +27686,133758 +27687,133117 +27688,135039 +27689,132736 +27690,134956 +27691,132537 +27692,132646 +27693,133755 +27694,132611 +27695,132495 +27696,134587 +27697,132958 +27698,132958 +27699,132612 +27700,133755 +27701,132956 +27702,132539 +27703,135039 +27704,134587 +27705,133117 +27706,132609 +27707,132609 +27708,132500 +27709,132539 +27710,132539 +27711,133117 +27712,134587 +27713,135042 +27714,132956 +27715,132956 +27716,132725 +27717,132500 +27718,132541 +27719,132604 +27720,134955 +27721,133762 +27722,132959 +27723,134583 +27724,132504 +27725,132542 +27726,132958 +27727,132608 +27728,132720 +27729,133111 +27730,133152 +27731,134586 +27732,135053 +27733,135039 +27734,133111 +27735,132632 +27736,132392 +27737,132392 +27738,132617 +27739,132646 +27740,132617 +27741,132541 +27742,133762 +27743,133762 +27744,132957 +27745,132957 +27746,133156 +27747,135055 +27748,135055 +27749,133069 +27750,135010 +27751,135010 +27752,133767 +27753,132961 +27754,135044 +27755,134594 +27756,134333 +27757,132725 +27758,132725 +27759,135039 +27760,132601 +27761,132537 +27762,135012 +27763,133681 +27764,135039 +27765,133681 +27766,132958 +27767,133759 +27768,133759 +27769,132739 +27770,134583 +27771,132535 +27772,133077 +27773,133077 +27774,133138 +27775,135040 +27776,135046 +27777,132495 +27778,132945 +27779,133758 +27780,134955 +27781,134949 +27782,134949 +27783,132602 +27784,132631 +27785,132589 +27786,132589 +27787,132589 +27788,132616 +27789,133139 +27790,135057 +27791,132946 +27792,132516 +27793,133759 +27794,133759 +27795,135021 +27796,135033 +27797,133111 +27798,133131 +27799,133131 +27800,132664 +27801,134125 +27802,134153 +27803,134950 +27804,133345 +27805,135054 +27806,134948 +27807,134594 +27808,133148 +27809,133148 +27810,132633 +27811,132587 +27812,132945 +27813,132503 +27814,132615 +27815,133139 +27816,133074 +27817,133074 +27818,133074 +27819,133074 +27820,135008 +27821,135008 +27822,134589 +27823,135040 +27824,133153 +27825,132963 +27826,133772 +27827,132541 +27828,133122 +27829,132587 +27830,132493 +27831,135047 +27832,132592 +27833,132944 +27834,132649 +27835,133125 +27836,133078 +27837,132539 +27838,132956 +27839,132514 +27840,132655 +27841,132655 +27842,132518 +27843,134586 +27844,132541 +27845,132959 +27846,132495 +27847,132612 +27848,133694 +27849,135046 +27850,133760 +27851,135139 +27852,132659 +27853,134589 +27854,132492 +27855,135037 +27856,132661 +27857,132610 +27858,133762 +27859,133117 +27860,132646 +27861,132537 +27862,133117 +27863,135139 +27864,132671 +27865,132649 +27866,132649 +27867,135041 +27868,132939 +27869,132767 +27870,132612 +27871,135036 +27872,135037 +27873,132681 +27874,134125 +27875,135058 +27876,135058 +27877,132725 +27878,132958 +27879,132600 +27880,132494 +27881,132958 +27882,132646 +27883,135039 +27884,134587 +27885,133117 +27886,133117 +27887,132495 +27888,132611 +27889,132626 +27890,134588 +27891,132535 +27892,132938 +27893,135052 +27894,132519 +27895,132612 +27896,134957 +27897,132767 +27898,132767 +27899,132626 +27900,134584 +27901,132962 +27902,132513 +27903,132612 +27904,135042 +27905,132587 +27906,133127 +27907,133111 +27908,133101 +27909,133122 +27910,132949 +27911,135038 +27912,132952 +27913,132946 +27914,132720 +27915,133694 +27916,132536 +27917,132720 +27918,135032 +27919,135032 +27920,135054 +27921,132956 +27922,132615 +27923,132650 +27924,132650 +27925,132653 +27926,132646 +27927,132684 +27928,135056 +27929,135144 +27930,132627 +27931,132613 +27932,132632 +27933,132613 +27934,132965 +27935,132501 +27936,134583 +27937,134583 +27938,134584 +27939,135047 +27940,135047 +27941,133122 +27942,133122 +27943,132741 +27944,134583 +27945,135032 +27946,132952 +27947,134592 +27948,132500 +27949,132538 +27950,134593 +27951,132495 +27952,132604 +27953,132407 +27954,132606 +27955,132949 +27956,132649 +27957,132541 +27958,132498 +27959,133121 +27960,133768 +27961,134962 +27962,132716 +27963,132500 +27964,132612 +27965,132543 +27966,132958 +27967,134586 +27968,133117 +27969,132542 +27970,132959 +27971,132722 +27972,132608 +27973,133119 +27974,133774 +27975,134589 +27976,132498 +27977,132955 +27978,135038 +27979,132721 +27980,133755 +27981,134956 +27982,132542 +27983,132504 +27984,134586 +27985,132608 +27986,133774 +27987,133111 +27988,135056 +27989,132604 +27990,132949 +27991,134586 +27992,132539 +27993,132542 +27994,132601 +27995,132953 +27996,132657 +27997,133150 +27998,132505 +27999,132539 +28000,133753 +28001,132605 +28002,135049 +28003,134582 +28004,132961 +28005,132961 +28006,133753 +28007,132512 +28008,134585 +28009,132939 +28010,132543 +28011,133755 +28012,132498 +28013,132601 +28014,134589 +28015,133078 +28016,132579 +28017,134956 +28018,132720 +28019,134586 +28020,135055 +28021,133074 +28022,133074 +28023,135153 +28024,133073 +28025,134333 +28026,134962 +28027,132717 +28028,132717 +28029,134586 +28030,132501 +28031,132542 +28032,132615 +28033,132601 +28034,132949 +28035,133689 +28036,135039 +28037,135039 +28038,135015 +28039,132539 +28040,132939 +28041,132492 +28042,133770 +28043,132611 +28044,132604 +28045,132604 +28046,132939 +28047,132719 +28048,132505 +28049,133759 +28050,132611 +28051,132511 +28052,135012 +28053,132659 +28054,133770 +28055,135044 +28056,132950 +28057,132608 +28058,132539 +28059,132539 +28060,135616 +28061,134588 +28062,132955 +28063,132539 +28064,135017 +28065,133765 +28066,133153 +28067,133153 +28068,135033 +28069,132624 +28070,132638 +28071,133753 +28072,132666 +28073,132401 +28074,132664 +28075,133060 +28076,134584 +28077,132939 +28078,135021 +28079,132491 +28080,132543 +28081,135349 +28082,132609 +28083,132957 +28084,134586 +28085,135327 +28086,135327 +28087,132612 +28088,132539 +28089,132723 +28090,132938 +28091,135321 +28092,135041 +28093,135321 +28094,135060 +28095,132717 +28096,133053 +28097,133757 +28098,132659 +28099,133143 +28100,133074 +28101,133139 +28102,133139 +28103,133126 +28104,133077 +28105,133077 +28106,133077 +28107,133077 +28108,135470 +28109,135052 +28110,133139 +28111,133073 +28112,132658 +28113,133139 +28114,133077 +28115,133077 +28116,133077 +28117,133345 +28118,132605 +28119,133163 +28120,133121 +28121,133073 +28122,133074 +28123,135049 +28124,132606 +28125,133772 +28126,132716 +28127,132951 +28128,132519 +28129,132606 +28130,132602 +28131,133134 +28132,133158 +28133,133069 +28134,133069 +28135,133069 +28136,132589 +28137,132957 +28138,132535 +28139,132616 +28140,134589 +28141,132638 +28142,132539 +28143,133119 +28144,135049 +28145,132742 +28146,134587 +28147,134587 +28148,132949 +28149,132495 +28150,132605 +28151,132543 +28152,132542 +28153,132492 +28154,132506 +28155,132492 +28156,132603 +28157,133127 +28158,132724 +28159,135139 +28160,132722 +28161,134582 +28162,132542 +28163,132958 +28164,132582 +28165,132687 +28166,132958 +28167,132537 +28168,132607 +28169,132601 +28170,132492 +28171,132516 +28172,132588 +28173,133681 +28174,133117 +28175,133121 +28176,135047 +28177,132492 +28178,132663 +28179,135038 +28180,133143 +28181,133770 +28182,134586 +28183,132939 +28184,132638 +28185,132638 +28186,132951 +28187,133644 +28188,132939 +28189,134588 +28190,132500 +28191,133060 +28192,132537 +28193,133060 +28194,133486 +28195,134588 +28196,133123 +28197,135466 +28198,134588 +28199,135641 +28200,132610 +28201,132495 +28202,132960 +28203,133483 +28204,134586 +28205,132720 +28206,135616 +28207,132393 +28208,133762 +28209,133770 +28210,133760 +28211,135124 +28212,133090 +28213,135124 +28214,135124 +28215,135056 +28216,135469 +28217,135055 +28218,135469 +28219,132500 +28220,132939 +28221,132939 +28222,132951 +28223,132938 +28224,132523 +28225,135146 +28226,133731 +28227,132493 +28228,135225 +28229,135613 +28230,134583 +28231,135151 +28232,135056 +28233,132722 +28234,134583 +28235,135490 +28236,135149 +28237,132629 +28238,132541 +28239,133770 +28240,133768 +28241,132537 +28242,132512 +28243,132609 +28244,132638 +28245,135356 +28246,132537 +28247,132606 +28248,135139 +28249,132718 +28250,134583 +28251,133754 +28252,132588 +28253,135046 +28254,135056 +28255,132606 +28256,133725 +28257,134306 +28258,135813 +28259,133758 +28260,133760 +28261,133608 +28262,133047 +28263,132588 +28264,132495 +28265,132510 +28266,132716 +28267,135463 +28268,135805 +28269,134967 +28270,132498 +28271,132629 +28272,132683 +28273,132592 +28274,132608 +28275,132601 +28276,132586 +28277,132638 +28278,132638 +28279,132751 +28280,132964 +28281,132539 +28282,135051 +28283,132957 +28284,132494 +28285,132605 +28286,132606 +28287,134593 +28288,132943 +28289,132949 +28290,134583 +28291,134337 +28292,132523 +28293,132670 +28294,132658 +28295,132582 +28296,132957 +28297,133774 +28298,133762 +28299,133760 +28300,132515 +28301,132510 +28302,132499 +28303,133757 +28304,135059 +28305,132612 +28306,132495 +28307,135469 +28308,135491 +28309,135494 +28310,134584 +28311,133053 +28312,135311 +28313,135061 +28314,133045 +28315,132638 +28316,135346 +28317,134583 +28318,133045 +28319,132744 +28320,132671 +28321,135330 +28322,135495 +28323,132673 +28324,133770 +28325,133757 +28326,133754 +28327,135639 +28328,132506 +28329,133047 +28330,135049 +28331,135610 +28332,132960 +28333,132495 +28334,132403 +28335,132744 +28336,132522 +28337,134333 +28338,132407 +28339,132957 +28340,132952 +28341,132407 +28342,132959 +28343,132616 +28344,135490 +28345,135148 +28346,135349 +28347,135327 +28348,135637 +28349,132409 +28350,135051 +28351,135055 +28352,132937 +28353,132586 +28354,132944 +28355,132741 +28356,132516 +28357,132616 +28358,133124 +28359,133124 +28360,133127 +28361,132586 +28362,132590 +28363,133345 +28364,132521 +28365,133117 +28366,133117 +28367,133117 +28368,132719 +28369,132514 +28370,132608 +28371,132490 +28372,132511 +28373,132606 +28374,135020 +28375,132725 +28376,133077 +28377,133074 +28378,133077 +28379,133077 +28380,132541 +28381,133771 +28382,132602 +28383,132536 +28384,132519 +28385,134591 +28386,132498 +28387,133071 +28388,133141 +28389,133141 +28390,133078 +28391,132767 +28392,135046 +28393,133141 +28394,132739 +28395,132504 +28396,132589 +28397,132963 +28398,132739 +28399,132505 +28400,132589 +28401,132962 +28402,134584 +28403,135044 +28404,132589 +28405,132589 +28406,134953 +28407,134956 +28408,135145 +28409,135033 +28410,132608 +28411,135017 +28412,133754 +28413,132951 +28414,133693 +28415,132499 +28416,134593 +28417,132644 +28418,132612 +28419,134587 +28420,133134 +28421,132504 +28422,132956 +28423,132539 +28424,132647 +28425,132663 +28426,132506 +28427,132604 +28428,132949 +28429,134593 +28430,135015 +28431,134586 +28432,132541 +28433,133771 +28434,132944 +28435,132512 +28436,132618 +28437,134583 +28438,134583 +28439,132535 +28440,133126 +28441,132535 +28442,135042 +28443,135042 +28444,135049 +28445,135049 +28446,135045 +28447,134583 +28448,132504 +28449,134955 +28450,135047 +28451,132602 +28452,132535 +28453,134121 +28454,135047 +28455,134333 +28456,132618 +28457,135468 +28458,135351 +28459,132407 +28460,132400 +28461,132791 +28462,135157 +28463,132791 +28464,134333 +28465,135355 +28466,135469 +28467,135140 +28468,133054 +28469,132405 +28470,135140 +28471,135467 +28472,134336 +28473,132790 +28474,132661 +28475,133749 +28476,135473 +28477,132514 +28478,135144 +28479,132670 +28480,134334 +28481,135154 +28482,132602 +28483,134335 +28484,134337 +28485,132791 +28486,135464 +28487,134121 +28488,135153 +28489,135160 +28490,135140 +28491,135157 +28492,135145 +28493,134334 +28494,133073 +28495,135024 +28496,134153 +28497,134153 +28498,135144 +28499,133047 +28500,135465 +28501,134333 +28502,135140 +28503,134337 +28504,132407 +28505,134337 +28506,133490 +28507,135144 +28508,133490 +28509,135144 +28510,135150 +28511,135151 +28512,133729 +28513,135169 +28514,135467 +28515,135495 +28516,135466 +28517,135327 +28518,135468 +28519,135639 +28520,135351 +28521,133045 +28522,132959 +28523,132401 +28524,133053 +28525,132399 +28526,133045 +28527,135356 +28528,135314 +28529,135278 +28530,135351 +28531,133053 +28532,132408 +28533,132408 +28534,133048 +28535,135324 +28536,135321 +28537,132415 +28538,135147 +28539,132415 +28540,133056 +28541,132408 +28542,135649 +28543,135496 +28544,135274 +28545,135500 +28546,135352 +28547,135498 +28548,133053 +28549,135144 +28550,135144 +28551,135464 +28552,135276 +28553,134122 +28554,135465 +28555,135474 +28556,133077 +28557,135610 +28558,135144 +28559,133077 +28560,133077 +28561,135321 +28562,132795 +28563,133760 +28564,133772 +28565,133771 +28566,132407 +28567,135321 +28568,135637 +28569,135469 +28570,135346 +28571,133045 +28572,135489 +28573,132415 +28574,135491 +28575,135498 +28576,135327 +28577,135143 +28578,135468 +28579,134955 +28580,135151 +28581,134956 +28582,134956 +28583,134967 +28584,132613 +28585,135325 +28586,135343 +28587,132767 +28588,135474 +28589,133152 +28590,133152 +28591,134586 +28592,135157 +28593,135343 +28594,135313 +28595,132966 +28596,132601 +28597,132539 +28598,135345 +28599,133117 +28600,133117 +28601,133121 +28602,133756 +28603,132585 +28604,132585 +28605,132657 +28606,133756 +28607,135302 +28608,135324 +28609,133772 +28610,135469 +28611,135036 +28612,135049 +28613,133762 +28614,134348 +28615,133770 +28616,133770 +28617,132539 +28618,132611 +28619,132612 +28620,135054 +28621,135038 +28622,133907 +28623,134589 +28624,135356 +28625,134584 +28626,135471 +28627,132542 +28628,133476 +28629,133053 +28630,135041 +28631,135473 +28632,132639 +28633,135139 +28634,135617 +28635,135616 +28636,135618 +28637,132604 +28638,133364 +28639,132523 +28640,132504 +28641,135036 +28642,132518 +28643,135045 +28644,132539 +28645,132537 +28646,134586 +28647,133727 +28648,134586 +28649,132496 +28650,135036 +28651,135044 +28652,133773 +28653,133345 +28654,132542 +28655,132618 +28656,132618 +28657,132500 +28658,132535 +28659,133760 +28660,132539 +28661,133760 +28662,133120 +28663,132628 +28664,132579 +28665,135054 +28666,132535 +28667,132539 +28668,132616 +28669,132582 +28670,132536 +28671,133041 +28672,135131 +28673,133044 +28674,133047 +28675,135277 +28676,135311 +28677,133041 +28678,135351 +28679,132404 +28680,132953 +28681,133056 +28682,133367 +28683,132957 +28684,132500 +28685,132945 +28686,132505 +28687,132943 +28688,132943 +28689,133057 +28690,133770 +28691,133053 +28692,133770 +28693,133770 +28694,132743 +28695,133773 +28696,132522 +28697,135139 +28698,135151 +28699,135144 +28700,132721 +28701,135160 +28702,132952 +28703,132949 +28704,135044 +28705,135033 +28706,133053 +28707,135356 +28708,135340 +28709,135049 +28710,132747 +28711,133345 +28712,132629 +28713,134593 +28714,135273 +28715,134588 +28716,134584 +28717,135271 +28718,135617 +28719,132416 +28720,134589 +28721,135061 +28722,134583 +28723,132938 +28724,132637 +28725,135057 +28726,132949 +28727,135056 +28728,134593 +28729,135049 +28730,133693 +28731,133760 +28732,134868 +28733,133366 +28734,132542 +28735,132608 +28736,134591 +28737,132717 +28738,135464 +28739,133072 +28740,132956 +28741,132946 +28742,134956 +28743,135617 +28744,135059 +28745,135050 +28746,132491 +28747,135463 +28748,132399 +28749,132539 +28750,132949 +28751,132940 +28752,132940 +28753,135351 +28754,132960 +28755,135033 +28756,135054 +28757,132499 +28758,135128 +28759,132590 +28760,132590 +28761,133076 +28762,133143 +28763,132501 +28764,135125 +28765,132403 +28766,135499 +28767,132494 +28768,135326 +28769,135617 +28770,132541 +28771,132966 +28772,135499 +28773,135054 +28774,132502 +28775,133754 +28776,133041 +28777,132523 +28778,135652 +28779,135646 +28780,135492 +28781,135616 +28782,132394 +28783,133111 +28784,134131 +28785,132609 +28786,135617 +28787,135471 +28788,135056 +28789,135648 +28790,135125 +28791,132401 +28792,135046 +28793,133070 +28794,135572 +28795,134337 +28796,132395 +28797,132957 +28798,133693 +28799,133054 +28800,132945 +28801,135496 +28802,132504 +28803,134333 +28804,132394 +28805,132602 +28806,132617 +28807,135150 +28808,132723 +28809,133046 +28810,135578 +28811,134948 +28812,133370 +28813,135496 +28814,132657 +28815,135465 +28816,135465 +28817,135042 +28818,135465 +28819,132739 +28820,132612 +28821,133046 +28822,132936 +28823,135050 +28824,132616 +28825,132500 +28826,133069 +28827,135492 +28828,135467 +28829,134952 +28830,133372 +28831,133371 +28832,132398 +28833,132398 +28834,135575 +28835,133731 +28836,135147 +28837,135017 +28838,132949 +28839,133078 +28840,135812 +28841,136025 +28842,132386 +28843,134584 +28844,132606 +28845,135291 +28846,135358 +28847,133071 +28848,135358 +28849,132403 +28850,132767 +28851,132767 +28852,132768 +28853,133163 +28854,133848 +28855,133749 +28856,133076 +28857,134413 +28858,134412 +28859,133750 +28860,133752 +28861,133751 +28862,134421 +28863,135259 +28864,133042 +28865,133042 +28866,133476 +28867,133476 +28868,133042 +28869,133728 +28870,135610 +28871,132647 +28872,133944 +28873,132417 +28874,135040 +28875,132645 +28876,135351 +28877,132917 +28878,134310 +28891,133772 +28892,135358 +28911,135532 +28912,135531 +28931,133077 +28932,133077 +28933,133073 +28934,133073 +28935,135038 +28951,133768 +28952,132183 +28971,135021 +28972,135021 +28973,132671 +28974,133345 +28976,133122 +28977,132767 +28978,133118 +28979,133694 +28981,135009 +28984,133119 +28985,133121 +28986,133078 +28987,133072 +28990,132645 +28991,132677 +28992,132671 +28993,132666 +28996,132953 +28997,132959 +28998,132952 +28999,132761 +29000,132946 +29001,132965 +29002,132957 +29003,132938 +29004,132938 +29005,132938 +29006,132956 +29007,132938 +29008,132961 +29009,132961 +29013,132960 +29014,132963 +29015,132953 +29016,132949 +29019,132939 +29025,132618 +29036,134024 +29044,133090 +29046,134581 +29049,132724 +29050,132483 +29051,133694 +29055,135042 +29066,135277 +29079,132648 +29080,135036 +29085,134582 +29087,134347 +29096,135644 +29097,135271 +29098,135358 +29111,132643 +29112,132500 +29113,132959 +29114,132541 +29131,132387 +29132,135316 +29133,133127 +29134,133117 +29135,133117 +29136,133117 +29137,133117 +29154,132624 +29157,135141 +29160,132398 +29161,132400 +29162,135496 +29163,135618 +29164,133644 +29165,133749 +29166,134018 +29167,135654 +29168,133041 +29169,132387 +29170,135302 +29171,133042 +29172,132791 +29173,132792 +29174,135824 +29175,134124 +29176,135131 +29191,135131 +29192,132643 +29193,134022 +29194,132400 +29195,135150 +29211,132625 +29212,135041 +29213,132944 +29214,132588 +29215,132517 +29216,133126 +29217,133126 +29218,132616 +29219,132644 +29220,132511 +29221,132608 +29222,132644 +29223,133126 +29224,132948 +29231,134588 +29232,132541 +29233,132738 +29234,134584 +29235,132590 +29236,132963 +29237,132516 +29238,132617 +29239,135051 +29240,133073 +29241,135051 +29242,132643 +29243,132608 +29244,133126 +29245,135033 +29246,132633 +29247,132945 +29248,132587 +29249,132615 +29250,132503 +29251,132587 +29252,135060 +29253,132751 +29254,134584 +29255,132585 +29256,132498 +29257,132618 +29258,132585 +29259,132944 +29260,132944 +29261,135046 +29262,133074 +29263,135041 +29264,133126 +29265,135051 +29266,135033 +29267,133126 +29268,133139 +29269,132767 +29270,132497 +29271,132768 +29272,132957 +29273,134586 +29276,135638 +29291,134145 +29311,132606 +29312,135148 +29314,132937 +29315,132960 +29316,132953 +29317,135817 +29331,134017 +29351,134967 +29352,134819 +29353,134860 +29354,134861 +29355,136206 +29375,132740 +29377,132740 +29381,132616 +29384,133074 +29385,133126 +29386,133073 +29389,132490 +29395,133127 +29396,135042 +29397,135131 +29399,132490 +29400,134584 +29401,135039 +29408,132395 +29409,132740 +29434,132821 +29435,132820 +29436,132829 +29437,132828 +29438,132825 +29439,132824 +29440,133205 +29441,133202 +29442,133207 +29443,133206 +29444,133204 +29445,133203 +29446,133066 +29447,132245 +29448,132243 +29449,132244 +29450,135841 +29451,134064 +29454,132938 +29455,132938 +29463,132938 +29464,132943 +29465,133117 +29467,132629 +29468,135050 +29470,135042 +29479,135042 +29495,132392 +29496,132395 +29511,132626 +29512,132949 +29517,132760 +29518,132739 +29520,132740 +29535,132760 +29537,132736 +29543,133072 +29545,135047 +29547,132943 +29549,132501 +29550,134950 +29551,135047 +29552,132741 +29553,132943 +29571,133445 +29591,132666 +29592,135054 +29593,132951 +29594,132536 +29595,132612 +29596,132497 +29597,133365 +29598,132768 +29614,135036 +29616,135436 +29624,135038 +29628,135038 +29629,135038 +29630,133770 +29631,133117 +29632,132505 +29633,133073 +29651,132948 +29652,132587 +29653,133565 +29671,134354 +29672,135349 +29673,133066 +29674,133066 +29675,133066 +29676,135349 +29677,135349 +29678,135166 +29681,133071 +29684,133072 +29685,133131 +29686,133131 +29687,133131 +29691,133441 +29692,133203 +29693,132582 +29694,133077 +29695,133077 +29697,133363 +29698,133066 +29699,133066 +29701,134956 +29702,134954 +29703,135225 +29704,135642 +29705,135642 +29706,135642 +29708,132740 +29709,132535 +29710,133489 +29711,136040 +29712,133443 +29713,133042 +29714,133042 +29715,133738 +29716,133739 +29717,133739 +29718,133760 +29719,133768 +29720,133769 +29721,134309 +29722,134337 +29723,135040 +29724,134804 +29729,135153 +29730,135153 +29731,133440 +29734,132511 +29735,133126 +29736,132948 +29737,132644 +29738,132541 +29739,132644 +29740,132511 +29741,132948 +29742,132541 +29743,135033 +29744,134588 +29745,132608 +29746,132648 +29747,132512 +29748,132542 +29749,132955 +29750,133143 +29751,132648 +29752,132638 +29753,132495 +29754,132602 +29755,132959 +29756,133077 +29757,134586 +29758,135038 +29759,132397 +29760,135351 +29761,132648 +29762,132512 +29763,132601 +29764,132608 +29765,133143 +29766,132955 +29767,132541 +29768,135054 +29769,135346 +29770,132638 +29771,132948 +29772,132542 +29773,132948 +29774,132602 +29775,133077 +29776,132959 +29777,134586 +29778,135038 +29779,132608 +29780,133126 +29781,132948 +29782,134588 +29783,132511 +29784,132644 +29785,132633 +29786,132503 +29787,132615 +29788,132539 +29789,132945 +29790,132953 +29791,132587 +29792,132690 +29793,132501 +29794,133077 +29795,132612 +29796,135033 +29797,134588 +29798,133732 +29799,132539 +29800,132966 +29801,132541 +29802,135060 +29803,132948 +29804,133131 +29805,133126 +29806,132511 +29807,132625 +29808,133131 +29809,132517 +29810,132616 +29811,132944 +29812,132608 +29813,132588 +29814,134583 +29815,135041 +29816,132644 +29817,133073 +29818,132633 +29819,132503 +29820,132587 +29821,132615 +29822,132945 +29823,134583 +29824,133769 +29825,133077 +29826,135060 +29827,133760 +29828,132625 +29829,132517 +29830,132588 +29831,132616 +29832,132716 +29833,132944 +29834,132502 +29835,135041 +29836,132606 +29837,133073 +29838,132953 +29839,132539 +29840,132539 +29841,135050 +29842,135227 +29843,133076 +29844,132751 +29845,134587 +29846,132498 +29847,132618 +29848,132944 +29849,134584 +29850,132585 +29851,133077 +29852,133077 +29853,132539 +29854,132606 +29855,135046 +29856,132953 +29857,134587 +29858,132751 +29859,132618 +29860,132944 +29861,132716 +29862,133076 +29863,132585 +29864,132498 +29865,133077 +29866,135050 +29867,135046 +29868,132511 +29869,132644 +29870,132511 +29871,132608 +29872,135650 +29873,133126 +29874,132738 +29875,132516 +29876,132617 +29877,132963 +29878,134584 +29879,132590 +29880,134584 +29881,133073 +29882,135051 +29883,132738 +29884,132516 +29885,135816 +29886,132590 +29887,132617 +29888,132963 +29889,133073 +29890,132613 +29891,135051 +29892,133077 +29893,133073 +29894,132767 +29895,135863 +29896,134956 +29897,135312 +29898,132955 +29899,135022 +29900,135022 +29901,135024 +29902,133202 +29903,135850 +29904,132539 +29905,136108 +29906,136108 +29907,132395 +29908,135036 +29909,133486 +29910,133054 +29911,133122 +29912,132962 +29913,134335 +29914,134333 +29915,132369 +29916,133769 +29917,133119 +29918,132656 +29919,132723 +29920,135169 +29921,135225 +29922,134125 +29923,135466 +29924,135466 +29925,132605 +29926,132539 +29927,132539 +29928,135037 +29929,132514 +29930,134585 +29931,135645 +29932,135491 +29933,134706 +29934,134706 +29935,133279 +29936,133077 +29937,133143 +29938,133076 +29939,133047 +29940,133119 +29941,133101 +29942,133119 +29943,133077 +29944,135049 +29945,132964 +29946,133235 +29947,133441 +29948,135156 +29949,132670 +29950,132670 +29951,132690 +29952,133137 +29953,132629 +29954,132514 +29955,135054 +29956,135279 +29957,135279 +29958,132738 +29959,132523 +29960,132584 +29961,132617 +29962,132960 +29963,134584 +29964,135061 +29965,133070 +29966,132500 +29967,132584 +29968,132613 +29969,132738 +29970,132953 +29971,135041 +29972,134584 +29973,133076 +29974,132741 +29975,134588 +29976,132504 +29977,132608 +29978,132949 +29979,132951 +29980,132542 +29981,132542 +29982,135032 +29983,135032 +29991,135349 +29992,135349 +30014,133149 +30025,135036 +30027,135009 +30031,133345 +30032,135009 +30052,132541 +30053,132939 +30056,135042 +30071,133077 +30072,133077 +30091,132767 +30092,132767 +30111,132193 +30132,133345 +30152,133345 +30171,132715 +30172,132539 +30192,132542 +30211,135054 +30231,132518 +30255,133477 +30271,133655 +30272,135006 +30273,135006 +30294,132395 +30299,135005 +30311,132625 +30312,133073 +30313,134583 +30314,135041 +30315,132738 +30316,133073 +30317,134584 +30318,135051 +30319,132590 +30320,132617 +30321,132963 +30322,132516 +30323,132588 +30324,132616 +30325,132517 +30326,132944 +30327,132648 +30328,135054 +30329,134586 +30330,133143 +30331,132601 +30332,132512 +30333,132542 +30334,132955 +30335,132644 +30336,135033 +30337,132541 +30338,132608 +30339,132948 +30340,132511 +30341,133126 +30342,134588 +30343,132643 +30344,132539 +30345,132606 +30346,132502 +30347,132961 +30348,133076 +30349,134587 +30350,135050 +30351,132716 +30352,133076 +30353,132602 +30354,132495 +30355,132959 +30356,132542 +30357,132638 +30358,133077 +30359,134586 +30360,135038 +30361,132587 +30362,132615 +30363,132945 +30364,132503 +30365,132633 +30366,133077 +30367,134583 +30368,135060 +30369,132618 +30370,132585 +30371,132944 +30372,132498 +30373,132751 +30374,133077 +30375,134584 +30376,135046 +30377,135046 +30378,135046 +30379,132953 +30380,134587 +30381,135032 +30382,135035 +30383,135042 +30384,135042 +30385,134586 +30391,132504 +30392,132392 +30393,132392 +30412,135032 +30413,132633 +30414,134583 +30415,132601 +30416,132592 +30417,132505 +30418,132945 +30419,135060 +30420,133139 +30421,133072 +30422,132652 +30423,134588 +30424,134588 +30425,132499 +30426,132520 +30427,132948 +30428,135033 +30429,132539 +30430,132539 +30431,132382 +30432,132382 +30433,132382 +30434,132542 +30435,132542 +30436,132791 +30437,134003 +30438,132536 +30439,132536 +30440,133043 +30455,133041 +30457,135038 +30472,135147 +30473,132951 +30474,132943 +30492,132492 +30493,133856 +30494,133854 +30516,135145 +30517,135225 +30532,134323 +30533,134862 +30534,133367 +30535,132502 +30536,132638 +30537,132647 +30538,134586 +30539,134586 +30540,134586 +30541,132495 +30542,132542 +30543,132602 +30544,132647 +30545,132941 +30546,135038 +30548,132602 +30549,132542 +30550,132647 +30551,132647 +30553,132738 +30559,134950 +30560,135316 +30561,135741 +30562,135813 +30563,135849 +30564,135987 +30565,136074 +30566,136185 +30567,134139 +30572,132942 +30573,132942 +30574,134296 +30575,134297 +30576,134297 +30577,133759 +30581,132644 +30582,134588 +30583,132519 +30584,132518 +30585,132948 +30586,135033 +30587,132541 +30588,133155 +30593,133725 +30594,134297 +30595,134297 +30600,134196 +30601,134184 +30602,132536 +30603,134946 +30604,135016 +30605,135016 +30606,135349 +30608,132251 +30609,132961 +30610,135736 +30611,132636 +30612,132644 +30613,132644 +30614,132644 +30615,132948 +30616,132644 +30617,132608 +30618,132948 +30619,132948 +30620,132948 +30621,132511 +30622,132541 +30623,135033 +30626,132539 +30634,134096 +30635,134096 +30636,135614 +30638,135131 +30639,132540 +30642,132605 +30643,132605 +30644,132740 +30645,132939 +30647,133600 +30650,132877 +30654,134591 +30658,135724 +30659,135468 +30660,135468 +30661,133362 +30662,134956 +30663,132742 +30664,134584 +30665,132956 +30666,132539 +30667,132539 +30668,132956 +30669,132956 +30670,133153 +30671,134584 +30672,132954 +30673,135316 +30674,132750 +30675,132746 +30676,133124 +30677,133121 +30678,134336 +30679,132535 +30680,133140 +30681,135054 +30682,135153 +30683,135491 +30684,132408 +30685,133133 +30686,132965 +30688,132506 +30689,133769 +30690,134072 +30691,132956 +30693,132608 +30694,135464 +30695,133773 +30696,133447 +30697,132521 +30698,134589 +30699,132402 +30700,135271 +30701,135271 +30702,132946 +30703,133773 +30704,132617 +30705,135271 +30706,134964 +30707,134964 +30708,134964 +30709,134964 +30710,134957 +30711,135145 +30712,135271 +30713,132943 +30714,132943 +30715,132943 +30716,132935 +30717,132940 +30718,132943 +30719,132935 +30720,132943 +30721,132943 +30722,134458 +30723,132489 +30724,135654 +30725,135055 +30726,132606 +30727,132606 +30728,133482 +30729,132955 +30730,134583 +30731,132587 +30732,132587 +30733,132587 +30734,132587 +30735,132587 +30736,132587 +30737,134584 +30738,133884 +30739,133766 +30740,132943 +30741,135048 +30742,135048 +30743,135048 +30744,132692 +30745,135537 +30746,135537 +30747,135537 +30748,134592 +30749,132515 +30750,135658 +30751,132523 +30752,132614 +30753,132604 +30754,135658 +30756,132520 +30757,132520 +30758,132520 +30761,132520 +30762,132520 +30763,132520 +30764,136168 +30767,132950 +30768,132953 +30769,135006 +30770,132939 +30771,132953 +30772,132953 +30773,132953 +30774,132951 +30776,135006 +30777,132939 +30778,135329 +30779,132540 +30780,134116 +30781,133773 +30782,133773 +30783,133758 +30791,132395 +30792,133477 +30793,133121 +30794,134153 +30795,132539 +30796,132792 +30797,134317 +30798,133754 +30799,134311 +30800,133076 +30801,132606 +30802,132665 +30803,132505 +30804,132606 +30805,132602 +30806,132606 +30807,132618 +30808,135616 +30809,135616 +30813,132947 +30814,135274 +30816,132607 +30817,132541 +30818,132721 +30819,132721 +30820,133090 +30821,133125 +30822,135640 +30823,132649 +30824,132645 +30825,133143 +30826,135657 +30827,135657 +30828,135329 +30829,135057 +30830,135046 +30831,133773 +30832,133754 +30833,132612 +30834,132402 +30835,134956 +30836,135579 +30837,132636 +30838,132491 +30839,132515 +30840,132542 +30841,132542 +30842,132542 +30843,132542 +30844,132542 +30845,132542 +30846,132542 +30847,132604 +30848,132604 +30849,133754 +30850,133753 +30851,133772 +30852,134802 +30853,135291 +30854,132582 +30855,134333 +30856,134583 +30857,134583 +30858,135271 +30859,132611 +30860,132767 +30861,134583 +30862,132944 +30863,135057 +30864,135057 +30865,132507 +30866,132634 +30867,133059 +30868,132670 +30869,132613 +30870,135169 +30871,134959 +30872,134958 +30873,133736 +30874,133738 +30875,133738 +30876,132415 +30877,132415 +30878,132415 +30879,132415 +30880,132401 +30881,132401 +30882,133758 +30883,135355 +30884,135351 +30885,135351 +30886,135351 +30887,132760 +30888,134586 +30889,133120 +30890,132507 +30891,132956 +30892,132956 +30893,132956 +30894,132520 +30895,133073 +30912,135988 +30913,135826 +30914,133488 +30915,133488 +30916,135839 +30917,132542 +30918,132542 +30919,132542 +30920,133077 +30921,132647 +30922,132647 +30923,135038 +30924,132941 +30925,135060 +30926,135496 +30927,135496 +30928,135042 +30932,135748 +30933,135277 +30934,135277 +30935,135277 +30936,135748 +30952,132595 +30953,134941 +30956,132392 +30957,132964 +30958,135726 +30959,132161 +30961,135009 +30962,132939 +30965,135006 +30966,134582 +30968,134075 +30969,132483 +30970,135169 +30971,135149 +30972,135142 +30973,135149 +30992,134947 +30993,134947 +30994,135271 +30995,135155 +30996,133982 +30997,133983 +30998,135271 +30999,136152 +31000,132512 +31001,132542 +31002,132542 +31003,132601 +31004,132648 +31007,132955 +31008,134586 +31016,135145 +31018,132955 +31019,132498 +31020,132618 +31021,132751 +31022,132944 +31023,134584 +31024,135046 +31025,132585 +31026,132539 +31027,132539 +31028,132951 +31029,135933 +31030,133119 +31031,135032 +31032,134586 +31033,134591 +31034,135152 +31035,132539 +31036,132949 +31037,132722 +31038,135045 +31039,132720 +31040,134588 +31041,132589 +31042,132628 +31043,134592 +31044,135061 +31045,133125 +31046,135035 +31047,135032 +31048,132626 +31049,135042 +31050,132590 +31051,132960 +31052,134586 +31053,132666 +31054,134591 +31055,132652 +31056,134591 +31057,132670 +31058,132652 +31059,132536 +31060,132953 +31061,132541 +31062,132964 +31063,132539 +31064,132951 +31065,133126 +31066,135054 +31067,135033 +31068,132539 +31069,132951 +31070,132541 +31071,132960 +31072,132722 +31073,134591 +31074,132725 +31075,132949 +31076,135056 +31077,133144 +31078,132957 +31079,132638 +31080,134586 +31081,135051 +31082,132584 +31083,132751 +31084,134586 +31085,135059 +31086,132957 +31087,132768 +31088,132767 +31089,133076 +31095,133740 +31096,136224 +31097,132539 +31098,132940 +31099,133074 +31100,135033 +31101,135724 +31102,132669 +31103,135033 +31104,132767 +31105,132648 +31106,132601 +31107,132955 +31108,134586 +31109,132542 +31110,132512 +31111,132542 +31112,132601 +31113,132648 +31114,132955 +31115,134586 +31116,132955 +31117,133072 +31118,133483 +31119,133483 +31120,134337 +31121,134949 +31122,132520 +31123,135496 +31124,135036 +31126,133050 +31127,132601 +31128,135034 +31129,135034 +31130,135034 +31131,133772 +31132,134584 +31133,132589 +31134,132961 +31135,132961 +31136,132950 +31137,132535 +31138,133738 +31139,132579 +31140,132579 +31141,133143 +31142,135058 +31143,132517 +31144,136085 +31145,133674 +31146,135894 +31147,133608 +31148,135159 +31149,133133 +31150,136064 +31151,132609 +31154,135489 +31158,135489 +31159,132607 +31160,132602 +31161,132618 +31162,134403 +31163,135158 +31166,132542 +31167,133078 +31168,133061 +31169,135054 +31170,134536 +31171,132507 +31172,132947 +31173,132947 +31174,135130 +31175,132610 +31176,133153 +31177,133153 +31178,135500 +31179,132950 +31180,132950 +31181,132539 +31182,132951 +31183,132541 +31184,133071 +31185,132638 +31186,134589 +31187,133763 +31188,132537 +31189,132402 +31190,135533 +31191,134584 +31192,132502 +31193,132616 +31194,135045 +31195,132952 +31196,132952 +31197,134480 +31198,133862 +31199,133860 +31200,133874 +31201,133868 +31202,133871 +31203,133869 +31204,133867 +31205,133866 +31206,133136 +31207,133076 +31208,133866 +31210,135614 +31211,135923 +31212,135061 +31213,132614 +31214,135612 +31215,134963 +31216,134963 +31217,135056 +31218,132409 +31219,132409 +31220,135474 +31221,132384 +31222,132384 +31223,134430 +31224,135616 +31225,135616 +31226,135616 +31227,133155 +31228,133129 +31229,132955 +31230,132512 +31237,135612 +31238,134329 +31239,135533 +31240,135500 +31241,132628 +31242,134590 +31243,132582 +31244,132541 +31245,132944 +31246,133123 +31247,135049 +31248,132605 +31249,135166 +31250,135167 +31251,134474 +31252,134475 +31253,134474 +31254,134472 +31255,134473 +31256,132486 +31257,132485 +31258,135225 +31259,133077 +31260,133077 +31261,133131 +31262,133131 +31263,133131 +31264,135489 +31265,132996 +31266,135647 +31267,132590 +31268,133126 +31269,132590 +31270,132590 +31271,132590 +31272,132937 +31273,132937 +31274,132937 +31275,132937 +31276,132937 +31277,132496 +31278,132501 +31279,135049 +31280,132601 +31281,135819 +31282,135805 +31283,135358 +31284,133070 +31285,132768 +31286,132768 +31287,134465 +31288,135329 +31289,132957 +31290,132957 +31291,132583 +31292,132583 +31293,134951 +31294,132583 +31295,132589 +31296,134965 +31297,132418 +31298,135035 +31299,132418 +31300,132393 +31301,132401 +31302,132401 +31303,132415 +31304,135313 +31305,135500 +31306,133453 +31307,135500 +31308,135313 +31309,135313 +31310,135539 +31311,135662 +31312,135649 +31313,135159 +31314,132965 +31315,134296 +31316,132961 +31317,134297 +31318,133452 +31319,135615 +31320,134584 +31321,133057 +31322,133040 +31323,133047 +31324,134380 +31325,133853 +31326,133160 +31327,133120 +31328,135124 +31329,134593 +31330,135151 +31331,134588 +31332,133729 +31333,134592 +31334,135358 +31335,135643 +31336,135643 +31337,135643 +31338,135489 +31339,132512 +31340,134586 +31341,135054 +31342,133143 +31343,135054 +31344,132542 +31345,132955 +31346,135149 +31347,135167 +31350,135062 +31351,133763 +31352,134584 +31353,132516 +31354,132590 +31356,132742 +31359,132541 +31366,132541 +31371,133136 +31376,132863 +31379,135662 +31380,135649 +31381,135649 +31382,132944 +31383,132614 +31384,132614 +31385,132614 +31386,133601 +31387,133612 +31388,136221 +31391,132857 +31400,135276 +31401,134538 +31402,132625 +31403,134583 +31404,132517 +31405,132616 +31406,132944 +31407,132588 +31408,132588 +31409,135041 +31410,133126 +31411,132601 +31412,132592 +31413,132505 +31414,132945 +31415,134583 +31416,132633 +31419,135277 +31423,133865 +31424,135325 +31425,133870 +31434,134154 +31468,135035 +31471,132492 +31473,132607 +31475,133283 +31476,133284 +31477,133285 +31478,133286 +31479,133287 +31480,133429 +31481,133430 +31482,133431 +31483,133432 +31484,133433 +31490,132644 +31494,133072 +31498,133382 +31499,133599 +31500,132926 +31501,133143 +31502,132955 +31503,132955 +31504,135056 +31505,132738 +31506,133073 +31507,132963 +31508,132963 +31509,132617 +31510,135051 +31511,134227 +31512,133155 +31513,133143 +31514,133143 +31515,134521 +31516,134016 +31517,133155 +31518,135005 +31521,135125 +31522,135057 +31523,135057 +31524,133153 +31525,135350 +31526,135346 +31527,135026 +31528,135026 +31529,132722 +31530,132723 +31531,132723 +31532,132505 +31533,132498 +31534,132498 +31535,132505 +31536,132505 +31537,132505 +31538,132553 +31539,132960 +31540,132960 +31541,132960 +31542,132498 +31543,132498 +31544,132498 +31545,132500 +31547,134582 +31549,132565 +31550,132565 +31551,132565 +31552,132565 +31553,135473 +31554,132560 +31555,132560 +31556,132560 +31557,132560 +31558,132560 +31559,132560 +31560,132560 +31561,132560 +31562,132560 +31563,132560 +31564,132963 +31565,132500 +31566,135057 +31572,132539 +31576,133379 +31577,134514 +31592,133768 +31593,133768 +31594,132515 +31595,132515 +31596,132515 +31597,132524 +31598,132524 +31599,132507 +31600,132507 +31601,132515 +31602,132493 +31603,133303 +31604,133302 +31605,135642 +31606,135651 +31607,135152 +31608,135167 +31609,135157 +31610,135157 +31611,132416 +31612,133058 +31613,135127 +31614,135494 +31615,135494 +31616,133377 +31617,135357 +31618,135043 +31619,132617 +31620,132607 +31621,135536 +31622,135496 +31623,134799 +31624,132950 +31625,132950 +31626,134585 +31627,135465 +31628,135474 +31629,132942 +31630,132942 +31631,134420 +31632,133769 +31633,134196 +31634,132953 +31635,134584 +31636,132956 +31637,132956 +31638,132956 +31639,132718 +31640,132635 +31641,132635 +31642,132657 +31643,132657 +31644,132657 +31645,135463 +31646,132571 +31647,132571 +31648,132571 +31649,132571 +31650,132767 +31651,134586 +31652,132505 +31653,132500 +31654,132518 +31655,133378 +31656,135054 +31657,133381 +31658,133741 +31659,132960 +31660,132960 +31661,132550 +31662,132548 +31663,132659 +31664,133380 +31666,132541 +31668,134584 +31669,133124 +31670,133124 +31671,133124 +31672,132521 +31673,132659 +31674,132956 +31675,133153 +31676,135026 +31677,135474 +31679,132956 +31680,132956 +31681,132513 +31682,132502 +31683,132956 +31684,134586 +31685,134586 +31686,135648 +31687,135648 +31688,135131 +31689,135131 +31690,135131 +31691,135574 +31692,135349 +31693,132403 +31694,132403 +31695,135349 +31696,135349 +31697,135349 +31712,135490 +31713,134953 +31714,134953 +31715,134953 +31716,135612 +31717,135612 +31718,132541 +31719,135131 +31720,135131 +31721,132392 +31722,132495 +31723,132542 +31724,132542 +31725,132602 +31726,132941 +31727,133077 +31728,133077 +31729,134586 +31730,135038 +31731,132647 +31732,132540 +31733,134951 +31734,132403 +31735,132403 +31740,135138 +31742,134022 +31743,135038 +31744,134482 +31745,134481 +31746,134965 +31747,135615 +31748,135496 +31749,135539 +31750,133047 +31751,133057 +31752,134297 +31753,134493 +31754,134296 +31755,134493 +31756,134482 +31757,135533 +31758,135617 +31759,135500 +31760,134497 +31761,135131 +31762,134486 +31763,135151 +31764,135151 +31765,133729 +31766,135124 +31767,134492 +31768,134488 +31769,134484 +31770,134491 +31771,134495 +31777,133974 +31778,133436 +31779,134200 +31783,133654 +31797,132647 +31798,135536 +31800,133376 +31801,134256 +31802,134061 +31803,134256 +31804,133919 +31805,133733 +31806,133743 +31807,133941 +31808,135637 +31809,133749 +31810,135846 +31811,135844 +31812,135855 +31813,135844 +31814,135855 +31815,135835 +31816,133050 +31817,133050 +31818,135330 +31819,133377 +31820,135330 +31821,135360 +31822,133056 +31823,135050 +31824,135044 +31825,135044 +31826,135044 +31827,135044 +31828,135044 +31829,132503 +31830,132587 +31831,132615 +31832,132633 +31833,135060 +31834,132945 +31835,133077 +31836,134583 +31837,133481 +31838,136116 +31839,136224 +31840,136115 +31841,134419 +31842,132290 +31843,134124 +31844,135880 +31845,134073 +31846,134232 +31847,134944 +31848,133738 +31849,135665 +31850,135664 +31851,134966 +31852,134963 +31853,135497 +31854,135497 +31855,135359 +31856,135361 +31857,132401 +31858,132415 +31859,135143 +31860,133480 +31861,133482 +31862,133481 +31863,133481 +31864,135665 +31865,135664 +31866,135359 +31867,135361 +31868,135538 +31869,132406 +31870,132403 +31871,135360 +31872,135663 +31873,134335 +31874,135473 +31875,135611 +31876,135611 +31877,133480 +31878,133480 +31879,135663 +31880,135663 +31881,133480 +31882,132940 +31883,132940 +31884,132940 +31885,132940 +31886,132940 +31887,132940 +31888,132940 +31889,133299 +31890,133078 +31891,133078 +31892,132606 +31893,133074 +31894,133074 +31895,133074 +31896,133074 +31897,133074 +31898,133154 +31899,133304 +31900,134154 +31901,135241 +31902,132507 +31903,132562 +31904,132562 +31905,133385 +31906,133384 +31907,133305 +31908,133383 +31909,135538 +31910,134613 +31911,134613 +31912,133753 +31913,132585 +31914,132585 +31915,132502 +31916,132552 +31917,132552 +31918,132953 +31919,132953 +31920,132558 +31921,132558 +31922,132586 +31923,132586 +31924,132500 +31925,132510 +31926,135054 +31927,132505 +31928,132665 +31929,132691 +31930,132691 +31931,132499 +31932,134671 +31933,134692 +31934,132723 +31935,133476 +31936,133723 +31937,135473 +31952,134335 +31953,134335 +31954,133040 +31955,133488 +31956,132418 +31957,132393 +31958,132415 +31959,135143 +31960,135143 +31961,133672 +31962,135143 +31963,135150 +31964,135150 +31965,133303 +31966,135291 +31967,133605 +31968,134669 +31969,132502 +31970,132606 +31971,132953 +31972,134608 +31973,132650 +31974,135054 +31975,132562 +31976,135468 +31977,135468 +31978,133763 +31979,132560 +31980,132560 +31981,132560 +31982,132560 +31983,132573 +31984,132573 +31985,132573 +31986,132718 +31987,133076 +31988,133076 +31989,133627 +31995,134353 +31996,135349 +31997,135291 +31998,135358 +31999,135360 +32000,135360 +32005,135005 +32008,133301 +32012,132965 +32013,132961 +32014,132961 +32015,132965 +32016,135038 +32017,133073 +32018,132616 +32019,132517 +32020,132588 +32021,132616 +32022,132625 +32023,134583 +32024,132944 +32026,135026 +32027,132556 +32028,133073 +32029,134655 +32030,135041 +32031,135026 +32032,132302 +32033,135643 +32034,135058 +32035,132612 +32036,132610 +32037,132544 +32038,132545 +32040,132556 +32043,135033 +32044,135009 +32047,132381 +32048,135033 +32051,132958 +32058,134583 +32060,132613 +32066,133770 +32067,133765 +32068,133765 +32069,133770 +32070,133770 +32071,133765 +32072,133765 +32073,133300 +32074,135651 +32075,135650 +32076,135341 +32077,135328 +32078,135494 +32079,135494 +32080,135497 +32081,135490 +32082,135039 +32087,133291 +32088,132605 +32089,132602 +32090,132611 +32091,132612 +32092,135041 +32093,133073 +32094,132625 +32095,132588 +32096,134583 +32097,134669 +32098,132944 +32099,132587 +32100,132945 +32101,134583 +32102,134668 +32103,132633 +32104,133077 +32105,135060 +32106,132542 +32107,132959 +32108,134586 +32109,135038 +32110,132638 +32111,133077 +32112,134586 +32113,132959 +32114,132542 +32115,132638 +32116,133077 +32117,135038 +32118,132587 +32119,132945 +32120,134668 +32121,135060 +32122,132633 +32123,133077 +32124,132587 +32125,135060 +32126,132587 +32127,134667 +32128,135060 +32129,135038 +32130,133077 +32131,135038 +32132,133077 +32133,133077 +32134,133077 +32135,133077 +32140,133040 +32145,132628 +32146,135536 +32152,135011 +32153,135011 +32154,132648 +32155,134608 +32156,132559 +32157,132718 +32158,132606 +32159,132965 +32160,135054 +32162,133041 +32163,132636 +32164,132965 +32165,135046 +32166,132743 +32167,134697 +32168,135032 +32169,132938 +32171,134229 +32172,134464 +32173,133305 +32174,132482 +32182,135005 +32188,135574 +32189,135665 +32192,134592 +32193,133132 +32194,135654 +32195,135150 +32196,135150 +32197,135316 +32198,135316 +32199,135302 +32200,132400 +32201,135005 +32216,132392 +32217,134950 +32226,132381 +32230,134348 +32231,133649 +32233,135971 +32234,135942 +32235,136191 +32236,132928 +32237,136075 +32238,136153 +32239,136164 +32240,135923 +32241,136080 +32242,136036 +32252,132604 +32253,132617 +32254,132613 +32255,132501 +32256,135050 +32257,132482 +32258,135011 +32259,132634 +32260,134085 +32261,133895 +32262,133913 +32263,132742 +32264,132521 +32265,132613 +32267,132715 +32268,132508 +32269,132614 +32270,135053 +32271,132508 +32272,132508 +32273,132725 +32274,135060 +32275,132613 +32276,133790 +32277,133794 +32278,133792 +32279,133793 +32280,133798 +32281,133795 +32282,133796 +32283,133797 +32284,133791 +32285,132721 +32286,132490 +32287,132607 +32288,135032 +32289,132497 +32290,132606 +32291,132653 +32292,135048 +32293,132396 +32294,135616 +32295,135277 +32296,134697 +32297,133309 +32298,133774 +32299,135342 +32300,133791 +32301,133606 +32302,135824 +32303,135474 +32304,134967 +32305,133389 +32306,135316 +32307,134967 +32308,134967 +32310,133135 +32311,135642 +32312,135642 +32313,135643 +32314,135316 +32315,135346 +32316,135534 +32317,135534 +32318,132960 +32320,133770 +32321,133308 +32322,135277 +32323,133381 +32324,135580 +32325,135346 +32326,133306 +32327,134666 +32328,135032 +32329,135032 +32330,135032 +32331,135032 +32332,135168 +32333,133306 +32334,135225 +32335,133387 +32336,133565 +32337,134661 +32338,133773 +32339,133773 +32340,132960 +32341,134634 +32342,133141 +32343,133485 +32344,133640 +32345,132556 +32346,132556 +32347,133388 +32348,132948 +32349,135032 +32350,134608 +32351,134296 +32352,132566 +32353,133386 +32354,134608 +32355,132406 +32356,135345 +32357,135651 +32358,132743 +32359,132743 +32360,132743 +32361,133732 +32362,135009 +32364,132501 +32370,132547 +32371,133762 +32372,133483 +32373,133483 +32374,135146 +32375,134296 +32376,134187 +32377,135009 +32378,132587 +32379,132587 +32380,135036 +32382,135474 +32386,133047 +32387,133047 +32388,132547 +32389,132547 +32390,132760 +32391,132490 +32394,134712 +32395,133290 +32397,134298 +32398,132666 +32399,132666 +32400,132666 +32401,134608 +32402,135468 +32403,135474 +32404,135040 +32405,134666 +32406,132556 +32407,134608 +32408,135032 +32409,135032 +32410,132950 +32411,135642 +32412,135643 +32413,133141 +32414,133624 +32415,132742 +32416,132521 +32417,132613 +32424,134711 +32425,134298 +32426,133686 +32427,136101 +32428,132932 +32429,133148 +32430,135127 +32431,133300 +32432,134136 +32433,132414 +32434,132414 +32435,132418 +32436,135126 +32437,135347 +32438,135347 +32439,135347 +32440,135496 +32441,135467 +32442,135271 +32443,135271 +32444,135126 +32445,135126 +32446,135126 +32447,132543 +32448,132543 +32449,132543 +32450,132932 +32451,132893 +32452,132893 +32455,135736 +32461,135225 +32462,135225 +32463,135580 +32464,135724 +32470,132966 +32489,135280 +32490,135280 +32492,132939 +32493,133078 +32497,135496 +32498,135534 +32499,135497 +32501,133772 +32503,133772 +32507,135463 +32508,133693 +32509,132524 +32511,135638 +32514,133040 +32515,133743 +32516,135225 +32517,135146 +32518,135146 +32519,135496 +32520,133904 +32521,133905 +32526,132791 +32527,135346 +32528,135346 +32529,135642 +32530,135643 +32531,135342 +32532,133146 +32533,133485 +32534,134296 +32535,134296 +32536,133146 +32537,134295 +32538,134295 +32539,134295 +32540,133374 +32541,135342 +32542,135651 +32543,134825 +32544,132653 +32545,132915 +32546,132924 +32547,132526 +32548,132527 +32549,132528 +32550,132529 +32551,132530 +32552,132531 +32553,132532 +32554,132533 +32555,132534 +32556,135228 +32557,135231 +32558,134967 +32559,134959 +32560,134968 +32561,134958 +32562,132566 +32563,132566 +32564,132653 +32565,132653 +32566,135048 +32567,135032 +32568,134296 +32569,134296 +32570,135461 +32571,135462 +32572,135342 +32574,135616 +32575,135666 +32576,135667 +32577,135619 +32578,135474 +32579,135471 +32580,135362 +32581,135364 +32582,135468 +32583,135471 +32584,135467 +32585,135582 +32586,135172 +32587,135171 +32588,133492 +32589,135365 +32590,135642 +32591,135642 +32592,135642 +32593,134296 +32594,133565 +32595,135471 +32596,133565 +32597,133483 +32598,135362 +32599,132551 +32600,133483 +32601,132547 +32602,135365 +32603,135365 +32604,135582 +32605,132503 +32606,132509 +32607,132506 +32608,132587 +32609,135172 +32610,135171 +32611,135171 +32612,135172 +32613,135170 +32614,135592 +32615,135592 +32616,132545 +32617,132561 +32618,135171 +32619,132564 +32620,132587 +32621,132587 +32622,132587 +32623,132545 +32624,132564 +32625,132561 +32626,132587 +32627,132548 +32628,132585 +32629,132545 +32630,132561 +32631,132405 +32632,132506 +32633,132509 +32634,132545 +32635,132545 +32636,132545 +32637,132509 +32638,132545 +32639,132564 +32640,132561 +32641,132561 +32642,132585 +32643,132585 +32644,132503 +32645,132562 +32646,132545 +32647,132585 +32648,135311 +32649,135466 +32650,134020 +32655,135229 +32656,133603 +32657,133388 +32658,135940 +32675,135005 +32677,135466 +32678,133374 +32679,132545 +32680,132545 +32681,132545 +32682,132545 +32683,135050 +32684,135032 +32685,135471 +32686,135127 +32687,135125 +32688,135125 +32689,134137 +32690,135428 +32691,134314 +32692,135428 +32693,135427 +32694,135026 +32695,135026 +32696,132945 +32697,132964 +32698,132964 +32699,132964 +32700,132964 +32701,133126 +32702,133126 +32703,133126 +32704,133126 +32705,133126 +32706,133126 +32707,133126 +32708,133126 +32709,133126 +32710,133126 +32711,133159 +32712,133159 +32713,133310 +32714,133311 +32715,133312 +32716,133313 +32717,135125 +32718,132502 +32719,132501 +32720,132503 +32721,132501 +32722,135365 +32723,135361 +32724,132502 +32725,133767 +32726,133765 +32727,133766 +32728,134154 +32729,132539 +32730,132539 +32731,133132 +32732,132562 +32733,132482 +32734,133565 +32735,133159 +32736,132405 +32737,132405 +32738,132420 +32739,135032 +32740,135055 +32741,135032 +32742,135055 +32743,132919 +32744,132919 +32745,135723 +32746,134411 +32747,132715 +32748,132715 +32749,132614 +32750,132508 +32751,132964 +32752,132959 +32753,134658 +32754,133127 +32755,132554 +32756,134680 +32757,132944 +32758,132584 +32759,134667 +32760,134667 +32761,132946 +32762,132946 +32763,135538 +32764,135538 +32765,133494 +32766,135496 +32767,134165 +32768,135724 +32769,132419 +32770,132559 +32771,133728 +32772,134634 +32773,132547 +32774,135473 +32776,135592 +32777,132482 +32778,132414 +32779,133479 +32780,133479 +32781,132595 +32782,133494 +32783,132943 +32784,133728 +32790,133077 +32791,134169 +32792,132834 +32804,134582 +32805,135005 +32811,132939 +32813,135046 +32815,132944 +32816,134586 +32817,134419 +32818,132743 +32819,134387 +32820,134315 +32821,132585 +32822,132585 +32823,135724 +32824,134164 +32825,134165 +32826,133632 +32827,135474 +32829,133075 +32830,134015 +32831,132093 +32834,132395 +32835,135321 +32836,135321 +32837,135321 +32838,133644 +32839,134007 +32840,134164 +32841,132658 +32842,133129 +32843,135056 +32844,133129 +32845,134945 +32846,133464 +32847,133463 +32849,134015 +32850,136192 +32851,136098 +32858,135473 +32859,132537 +32860,135009 +32865,132535 +32871,132611 +32872,132742 +32873,132965 +32874,132945 +32875,132604 +32876,132717 +32877,132945 +32879,135824 +32880,132767 +32883,132584 +32884,134123 +32885,134315 +32886,134316 +32887,134307 +32888,134957 +32889,132963 +32890,132964 +32891,133483 +32893,135328 +32894,135150 +32895,133378 +32896,135047 +32897,135032 +32898,133722 +32899,133132 +32900,133127 +32901,135047 +32902,135047 +32903,135047 +32905,136192 +32906,133069 +32907,133069 +32908,133069 +32909,135157 +32910,134599 +32911,135813 +32912,136069 +32913,135990 +32914,135841 +32915,135021 +32916,135021 +32917,132684 +32918,132650 +32919,135150 +32920,134462 +32921,134458 +32922,134465 +32923,134457 +32924,134599 +32925,132506 +32926,134599 +32927,134599 +32928,132503 +32929,132650 +32930,135168 +32931,135473 +32932,135473 +32933,134458 +32934,133078 +32935,133078 +32936,133078 +32937,133078 +32938,133078 +32939,133078 +32940,133078 +32941,133078 +32942,133078 +32943,132743 +32944,132963 +32945,132741 +32946,132961 +32947,135168 +32948,132650 +32951,135005 +32954,135168 +32955,134015 +32956,134164 +32957,134165 +32958,134159 +32959,134160 +32960,134159 +32961,134162 +32962,132089 +32963,132089 +32964,134167 +32965,134173 +32966,134178 +32967,134177 +32968,134171 +32969,132366 +32970,134174 +32971,134175 +32972,134179 +32973,134180 +32974,132686 +32975,135005 +32978,133126 +32979,133126 +32980,133126 +32981,132653 +32982,135033 +32983,135033 +32984,132643 +32985,135054 +32986,132643 +32987,132541 +32988,132948 +32989,134603 +32990,132948 +32991,134586 +32992,132541 +32993,132541 +32994,132559 +32995,132948 +32996,132539 +32997,132953 +32998,134587 +32999,133076 +33000,135033 +33001,132650 +33002,135033 +33003,135054 +33004,135054 +33005,135033 +33006,132541 +33007,134603 +33008,132559 +33009,132560 +33010,135354 +33011,133479 +33012,133769 +33013,133491 +33014,135658 +33015,135173 +33016,133491 +33017,133497 +33018,134333 +33019,135540 +33020,135540 +33021,133860 +33022,133308 +33023,133282 +33025,135225 +33026,135257 +33027,132608 +33028,132614 +33029,134660 +33030,132951 +33031,132951 +33032,132585 +33033,135349 +33034,132585 +33035,132554 +33036,132554 +33037,132767 +33038,132767 +33039,133119 +33040,132504 +33041,134628 +33042,134636 +33043,133145 +33044,132551 +33045,132551 +33046,132963 +33047,132963 +33048,132562 +33049,132562 +33050,135060 +33051,135060 +33052,132542 +33053,135010 +33054,132680 +33055,135042 +33056,135042 +33057,134667 +33058,134692 +33059,134681 +33060,133122 +33061,132539 +33062,132688 +33063,133117 +33064,136163 +33067,135491 +33068,135491 +33069,135656 +33070,133168 +33071,133076 +33072,133059 +33073,133129 +33074,135056 +33075,135168 +33076,132539 +33077,132953 +33078,135050 +33079,132716 +33080,132539 +33081,132961 +33082,133076 +33083,135050 +33084,132716 +33085,132716 +33086,135168 +33087,135358 +33088,135050 +33089,135050 +33090,132962 +33091,132962 +33092,132962 +33093,135354 +33094,135366 +33095,135658 +33096,133769 +33097,135354 +33098,132567 +33099,132963 +33100,132963 +33101,132966 +33102,132552 +33103,132552 +33104,132552 +33105,132552 +33106,135663 +33107,135663 +33108,132541 +33109,132541 +33110,132966 +33111,132541 +33112,132541 +33113,135129 +33114,132535 +33115,132939 +33116,132586 +33117,132586 +33118,135498 +33119,134630 +33120,133051 +33121,132519 +33122,134668 +33123,135345 +33124,134688 +33125,135474 +33126,132515 +33127,134598 +33128,132404 +33129,135036 +33130,132609 +33131,132609 +33132,132939 +33133,135053 +33134,132606 +33135,133308 +33136,135056 +33137,132618 +33138,134961 +33139,135039 +33140,132611 +33141,132611 +33142,133754 +33143,133047 +33144,133771 +33145,135323 +33146,134694 +33147,134660 +33148,134626 +33149,134600 +33150,132651 +33151,132583 +33152,132583 +33153,132945 +33154,132945 +33155,132542 +33156,132951 +33160,132951 +33161,133119 +33162,133145 +33163,135145 +33167,132495 +33170,135145 +33171,134709 +33172,135144 +33173,134125 +33177,134337 +33178,136168 +33181,132395 +33182,132535 +33183,132718 +33184,132718 +33185,134586 +33187,133309 +33188,133280 +33191,135816 +33194,134711 +33195,133078 +33198,134659 +33200,132363 +33201,133642 +33202,132107 +33203,132108 +33204,133645 +33207,133303 +33208,133277 +33209,133439 +33211,133460 +33212,134939 +33215,135033 +33261,135434 +33282,132939 +33283,135861 +33285,133472 +33286,133149 +33292,133143 +33293,133143 +33395,132804 +33399,132319 +33400,133165 +33401,133165 +33402,132665 +33409,133132 +33410,133345 +33415,135033 +33419,133793 +33420,135144 +33421,135152 +33422,135150 +33423,134457 +33424,133941 +33425,135638 +33426,133939 +33427,135474 +33428,135474 +33429,135138 +33430,135650 +33431,133501 +33433,134582 +33434,132392 +33435,132418 +33436,133001 +33447,134581 +33448,132880 +33449,134724 +33450,134725 +33451,134726 +33452,134727 +33453,134878 +33454,134879 +33455,134722 +33456,136120 +33457,136160 +33458,132393 +33459,132643 +33460,133474 +33461,133122 +33462,133163 +33463,132643 +33464,132642 +33466,132537 +33467,132806 +33468,132791 +33469,132792 +33470,132791 +33472,134582 +33518,133062 +33519,132952 +33520,136006 +33521,132924 +33522,134182 +33523,132648 +33524,132648 +33525,132648 +33526,132648 +33527,132647 +33528,132606 +33529,134125 +33530,132611 +33531,133759 +33532,133041 +33533,133060 +33534,133386 +33535,133202 +33536,132395 +33537,133382 +33538,132858 +33539,133992 +33540,132192 +33541,136152 +33542,135035 +33543,134456 +33544,133601 +33545,134308 +33546,134464 +33547,134232 +33548,135311 +33549,135161 +33550,134964 +33551,134006 +33552,133022 +33553,133906 +33554,135353 +33555,134018 +33556,132396 +33557,132396 +33558,135670 +33559,133474 +33560,134969 +33561,134969 +33562,134969 +33563,134969 +33564,134969 +33565,135620 +33566,135157 +33567,135157 +33568,132189 +33569,132939 +33570,132939 +33571,133912 +33572,135157 +33578,132395 +33585,134465 +33588,133204 +33589,133706 +33590,132646 +33591,132498 +33592,134584 +33593,134672 +33594,134662 +33595,133090 +33596,133078 +33597,132958 +33598,133078 +33599,132955 +33600,132638 +33601,132638 +33602,132751 +33603,132751 +33604,134662 +33605,132183 +33606,133101 +33607,135042 +33608,135042 +33609,132747 +33610,134687 +33611,132584 +33612,132653 +33613,132653 +33614,132653 +33615,135358 +33616,135034 +33617,135034 +33618,134596 +33619,133074 +33620,134596 +33621,132559 +33622,132559 +33623,132955 +33624,132955 +33625,132559 +33626,135647 +33627,132618 +33628,132751 +33629,132944 +33630,134584 +33631,132585 +33632,132498 +33633,132516 +33634,132617 +33635,132738 +33636,132963 +33637,134584 +33638,132590 +33639,132590 +33640,132652 +33641,132560 +33642,135034 +33643,134602 +33644,133076 +33645,133074 +33646,133074 +33647,132564 +33648,135034 +33649,132651 +33650,132648 +33651,132955 +33652,134601 +33653,135054 +33654,132542 +33655,133077 +33656,132959 +33657,133074 +33658,132959 +33659,135034 +33660,132564 +33661,132564 +33662,134626 +33663,132651 +33664,132723 +33665,132517 +33666,132616 +33667,132625 +33668,132944 +33669,132588 +33670,133073 +33671,133073 +33672,134583 +33673,132542 +33674,135041 +33675,133072 +33676,135034 +33677,133077 +33678,134632 +33679,135046 +33680,135051 +33681,132934 +33682,133073 +33683,132551 +33684,132551 +33685,133140 +33686,135034 +33687,134663 +33688,132626 +33689,132626 +33690,132551 +33691,132626 +33692,134663 +33693,133073 +33694,132585 +33695,134939 +33696,132550 +33697,132635 +33698,134662 +33699,135034 +33700,134663 +33701,134662 +33702,134227 +33703,133076 +33704,132550 +33705,132738 +33706,134678 +33707,135034 +33708,132550 +33709,132747 +33710,133101 +33711,132584 +33712,135042 +33713,134679 +33714,132586 +33715,133076 +33716,133101 +33717,133140 +33718,133140 +33719,133140 +33720,133072 +33721,132723 +33722,135034 +33723,132723 +33724,132723 +33725,135034 +33726,133074 +33727,132406 +33728,133389 +33729,135367 +33730,133766 +33731,133474 +33732,133768 +33733,133767 +33734,135663 +33735,133771 +33736,133767 +33737,133768 +33738,135650 +33739,133474 +33740,133474 +33741,133077 +33742,134944 +33743,133143 +33744,133143 +33745,134328 +33746,134327 +33747,133143 +33748,133143 +33749,135725 +33750,135725 +33751,135725 +33752,135725 +33753,135725 +33754,135725 +33755,135725 +33756,135725 +33757,135725 +33758,135725 +33759,135725 +33760,135725 +33761,135725 +33762,135725 +33763,133143 +33764,135725 +33765,135725 +33766,135725 +33767,135725 +33768,135725 +33769,135725 +33770,135725 +33771,135725 +33772,135725 +33773,135725 +33774,135725 +33775,135725 +33776,135725 +33777,135725 +33778,135725 +33779,135725 +33780,135725 +33781,135725 +33782,135725 +33783,135725 +33784,135725 +33785,135725 +33786,132486 +33787,135725 +33788,135725 +33789,132485 +33790,135725 +33791,135725 +33792,135725 +33793,135725 +33794,135725 +33795,135725 +33796,135725 +33797,135725 +33798,135725 +33799,135725 +33800,135725 +33801,135725 +33802,135725 +33803,135725 +33804,135725 +33805,135725 +33806,135725 +33807,135725 +33808,133423 +33809,135149 +33810,135059 +33811,135049 +33812,135049 +33813,133069 +33814,133758 +33815,132611 +33816,133069 +33817,132611 +33818,132618 +33819,132958 +33820,135535 +33821,135535 +33822,133077 +33823,134600 +33824,132507 +33825,132606 +33826,135620 +33827,135620 +33828,135535 +33829,133474 +33830,133501 +33831,135046 +33832,132498 +33834,132395 +33835,132395 +33838,2245030 +33839,135367 +33840,132722 +33841,135056 +33842,132939 +33843,132939 +33844,132939 +33845,133498 +33846,133153 +33847,133164 +33848,133164 +33849,133571 +33851,133573 +33852,135060 +33853,134677 +33854,134667 +33855,133426 +33856,133425 +33857,135501 +33858,132965 +33859,132944 +33860,132586 +33861,132586 +33862,132545 +33863,132545 +33864,133427 +33865,133117 +33866,133117 +33867,134968 +33868,132964 +33869,132946 +33870,132946 +33871,133570 +33872,132560 +33873,132562 +33874,132585 +33875,132585 +33876,132585 +33877,132585 +33878,132602 +33879,132602 +33880,133069 +33881,135366 +33882,135366 +33883,132542 +33884,132542 +33885,132514 +33887,134696 +33888,134691 +33889,132612 +33890,132554 +33891,132554 +33892,132554 +33893,132554 +33894,135648 +33895,132658 +33896,132958 +33897,132958 +33898,132958 +33899,132958 +33900,133117 +33901,133117 +33902,132618 +33903,132965 +33904,132502 +33905,132502 +33906,133341 +33907,133299 +33908,132664 +33911,133301 +33915,132653 +33920,132653 +33933,134582 +33938,133165 +33940,133670 +33941,133667 +33942,133664 +33955,135323 +33957,135323 +33958,135323 +33959,135323 +33960,135323 +33961,135661 +33963,135661 +33967,134399 +33968,135661 +33969,134398 +33970,134397 +33971,134396 +33972,134395 +33973,133884 +33978,132594 +33979,132594 +33980,132672 +33981,133077 +33982,132618 +33983,132751 +33984,132944 +33985,135665 +33986,134584 +33987,135665 +33988,135046 +33989,132585 +33990,132498 +33991,135665 +33992,135661 +33993,135323 +33994,135361 +33995,135361 +33996,135361 +33997,135359 +33998,133169 +33999,133170 +34000,135034 +34001,135034 +34002,135034 +34003,133074 +34004,133074 +34008,132542 +34010,132539 +34011,132502 +34012,132606 +34013,132953 +34014,132716 +34015,132539 +34016,132959 +34017,133074 +34018,135034 +34019,133074 +34020,135034 +34021,135034 +34022,135050 +34023,135034 +34024,135034 +34025,135034 +34029,133151 +34030,134656 +34031,134656 +34034,133309 +34035,134311 +34036,134314 +34037,135034 +34038,132644 +34039,134588 +34040,135033 +34041,132948 +34042,133126 +34043,132541 +34044,132541 +34045,132608 +34046,132511 +34047,132644 +34048,135033 +34049,134588 +34050,132189 +34051,132948 +34052,132608 +34053,132511 +34054,133126 +34055,132541 +34056,135034 +34057,133126 +34058,135033 +34059,134056 +34060,132642 +34061,132653 +34062,132652 +34063,132651 +34064,132652 +34065,132643 +34066,133077 +34067,135060 +34072,132642 +34073,132642 +34074,132642 +34075,132642 +34076,132642 +34077,135034 +34078,132503 +34079,132615 +34080,132633 +34081,132633 +34082,132945 +34083,132587 +34084,134583 +34085,133073 +34086,132723 +34087,132723 +34090,133140 +34091,135041 +34092,133077 +34093,132698 +34094,132699 +34095,132700 +34096,132697 +34097,132694 +34098,132693 +34099,132696 +34100,132695 +34101,134950 +34102,135493 +34104,133858 +34105,135638 +34106,135280 +34107,135612 +34108,132385 +34109,133042 +34110,134956 +34111,135654 +34112,135329 +34113,135150 +34114,135150 +34115,135493 +34116,135612 +34117,135493 +34121,133861 +34127,134955 +34128,132392 +34132,133574 +34133,132395 +34134,135157 +34135,135157 +34136,134897 +34137,134969 +34138,134896 +34139,135620 +34140,134898 +34141,135670 +34142,135671 +34143,134899 +34144,134902 +34145,134903 +34146,134906 +34147,134908 +34148,134907 +34149,134911 +34150,134909 +34151,134900 +34152,134904 +34153,134905 +34154,134910 +34155,134929 +34156,134930 +34157,134931 +34158,134932 +34159,134933 +34160,2241756 +34161,134935 +34162,134936 +34163,132965 +34164,134880 +34165,132965 +34166,134881 +34167,134893 +34168,134894 +34169,134883 +34170,134886 +34171,134885 +34172,134892 +34173,134895 +34174,134882 +34175,134887 +34176,132520 +34177,134471 +34178,132420 +34179,133754 +34180,132617 +34181,132617 +34182,132951 +34183,132951 +34184,132515 +34185,132618 +34186,132613 +34187,132610 +34188,134418 +34189,133428 +34190,135472 +34191,132520 +34192,132962 +34193,132962 +34194,132562 +34195,132562 +34196,132612 +34197,132612 +34198,135468 +34199,132612 +34200,132953 +34201,132953 +34202,132523 +34203,132521 +34204,133339 +34205,132500 +34206,134970 +34207,132612 +34208,132551 +34209,132538 +34210,132538 +34211,133077 +34212,133077 +34213,134106 +34214,133153 +34215,133173 +34216,133176 +34217,133171 +34218,133172 +34219,133174 +34220,133174 +34221,133175 +34222,133175 +34223,135502 +34224,132951 +34225,132951 +34226,132951 +34227,132601 +34228,134901 +34229,132951 +34230,132951 +34231,133753 +34232,135368 +34233,133126 +34234,132960 +34235,132960 +34236,132960 +34237,133575 +34238,134663 +34239,133772 +34240,132564 +34241,132509 +34242,132545 +34243,135032 +34244,132506 +34245,135032 +34246,132562 +34247,132562 +34248,132561 +34249,135050 +34250,135591 +34251,135060 +34252,135060 +34253,135065 +34254,135063 +34255,135064 +34256,135066 +34257,135066 +34258,135068 +34259,132538 +34260,132953 +34261,133572 +34262,132558 +34263,132564 +34264,135369 +34266,134662 +34267,132744 +34268,132744 +34269,132588 +34270,132664 +34271,134288 +34272,134289 +34273,134290 +34274,133340 +34275,134291 +34276,134292 +34277,134293 +34278,135061 +34279,134282 +34280,134283 +34281,134285 +34282,134284 +34283,134286 +34284,134287 +34285,134270 +34286,134271 +34287,134272 +34288,134911 +34289,134273 +34290,134274 +34291,134275 +34292,134687 +34293,133069 +34294,132667 +34295,132951 +34296,134296 +34297,132965 +34298,132965 +34299,132504 +34300,134591 +34301,134596 +34302,134596 +34303,133342 +34304,135366 +34305,132686 +34306,132955 +34307,133172 +34308,135060 +34309,135060 +34310,135060 +34311,135059 +34312,135059 +34313,135033 +34314,135033 +34315,132582 +34316,132957 +34317,132957 +34318,133307 +34319,132945 +34320,132507 +34321,133074 +34322,135036 +34323,135036 +34324,135038 +34325,132663 +34326,134636 +34327,135045 +34328,135067 +34329,133754 +34330,133498 +34331,133498 +34332,132589 +34333,132549 +34334,132587 +34335,132611 +34336,133424 +34337,133762 +34338,134536 +34339,133501 +34340,135005 +34342,134941 +34344,134276 +34345,134279 +34346,134277 +34347,133077 +34348,133074 +34349,133074 +34350,133074 +34351,133074 +34352,133165 +34353,133165 +34354,134276 +34355,134268 +34356,134277 +34357,134278 +34358,134279 +34359,134280 +34360,134281 +34361,134268 +34362,132392 +34363,133713 +34364,132787 +34365,134536 +34366,133073 +34367,133073 +34368,132418 +34369,133076 +34370,133074 +34378,134242 +34391,135145 +34392,132509 +34393,132545 +34394,132503 +34395,132585 +34396,133072 +34397,133072 +34398,135473 +34399,135473 +34400,132740 +34401,135366 +34402,135366 +34403,135366 +34404,135363 +34405,135363 +34406,135619 +34407,135619 +34408,135466 +34409,135342 +34410,133071 +34411,133126 +34412,135057 +34413,135057 +34414,133041 +34415,133301 +34416,132562 +34417,132562 +34418,133041 +34419,135045 +34420,132743 +34421,132737 +34422,132532 +34423,134017 +34424,132490 +34425,132485 +34426,132416 +34427,132483 +34428,132483 +34429,132483 +34430,132483 +34431,134838 +34433,133376 +34434,133069 +34435,133501 +34436,132689 +34437,132689 +34438,133474 +34439,133048 +34440,135575 +34441,135575 +34443,132401 +34450,132400 +34461,132948 +34462,132953 +34463,132953 +34464,132945 +34465,133573 +34466,132953 +34467,132945 +34468,133048 +34469,132689 +34470,132400 +34471,133573 +34472,135466 +34473,133126 +34474,133041 +34475,133071 +34476,135057 +34477,135619 +34478,135342 +34479,132562 +34480,132400 +34481,132400 +34482,135057 +34483,132737 +34484,135619 +34485,133474 +34486,133174 +34487,133174 +34488,132598 +34489,132598 +34490,132597 +34492,134878 +34493,134870 +34494,133859 +34495,133122 +34496,133748 +34499,134846 +34500,133748 +34501,132565 +34502,132565 +34503,132565 +34504,132565 +34505,132960 +34506,132498 +34507,132427 +34508,135453 +34509,132614 +34510,133308 +34512,135669 +34513,135669 +34514,132629 +34515,132639 +34516,132965 +34517,132505 +34518,132639 +34519,132738 +34520,132500 +34521,132584 +34522,132613 +34523,132953 +34524,133076 +34525,134584 +34526,135041 +34527,134968 +34528,134968 +34529,134968 +34530,134968 +34531,134968 +34532,134968 +34533,134968 +34534,132395 +34535,132382 +34536,135446 +34537,135447 +34538,135450 +34539,135450 +34541,135449 +34542,135449 +34543,134455 +34549,132609 +34550,132613 +34553,134927 +34555,132517 +34556,133047 +34557,134294 +34558,135047 +34559,133483 +34560,135638 +34561,133851 +34562,135005 +34563,134711 +34564,133122 +34571,133129 +34572,136244 +34573,135271 +34574,135902 +34575,133755 +34576,133753 +34577,132507 +34578,133850 +34579,135040 +34581,135457 +34582,135458 +34583,135459 +34584,135460 +34585,132547 +34588,135038 +34590,135038 +34593,132559 +34594,132507 +34595,132562 +34596,132666 +34597,135054 +34598,134586 +34599,132497 +34600,132951 +34601,133365 +34602,132768 +34603,132951 +34604,132560 +34605,132560 +34606,133077 +34607,133074 +34608,133072 +34609,133074 +34610,132523 +34611,132584 +34612,132617 +34613,132960 +34614,133070 +34615,134584 +34616,135061 +34617,132738 +34618,132951 +34619,134586 +34620,132501 +34621,132612 +34622,134588 +34623,133732 +34624,133131 +34625,132690 +34626,132539 +34627,132966 +34628,132499 +34629,132520 +34630,132767 +34631,132948 +34632,135033 +34633,132652 +34634,132539 +34635,134588 +34636,135464 +34637,132504 +34638,132542 +34639,133129 +34640,132951 +34641,132608 +34642,134588 +34643,135032 +34644,132741 +34645,132625 +34646,132517 +34647,132616 +34648,132588 +34649,133126 +34650,132944 +34651,135041 +34652,134583 +34653,133345 +34654,135451 +34655,135452 +34656,135454 +34667,135005 +34674,135449 +34675,135450 +34676,134141 +34677,134140 +34678,134140 +34679,134142 +34680,134144 +34681,134144 +34682,134143 +34683,135660 +34684,132542 +34685,132606 +34686,132958 +34687,134582 +34688,135038 +34689,132722 +34690,133164 +34691,132601 +34692,132592 +34693,133072 +34694,132505 +34695,132945 +34696,134583 +34697,135060 +34698,132633 +34699,132492 +34700,133143 +34708,132583 +34709,132583 +34710,134646 +34711,133069 +34712,132723 +34713,132723 +34714,132723 +34715,133132 +34716,132723 +34717,132723 +34718,132428 +34719,132542 +34720,132698 +34721,132698 +34722,132698 +34723,132698 +34724,132698 +34725,132664 +34726,132665 +34727,132691 +34728,132658 +34729,132650 +34730,132652 +34731,132653 +34732,135023 +34733,135028 +34734,135029 +34735,135454 +34736,135454 +34737,133459 +34738,133457 +34739,133458 +34740,133462 +34741,133465 +34742,133460 +34743,133973 +34744,132761 +34745,133467 +34746,133461 +34747,133468 +34748,134939 +34749,133472 +34750,133473 +34751,134331 +34752,134332 +34753,134329 +34754,134330 +34755,134327 +34756,134331 +34770,135039 +34771,132744 +34775,133133 +34776,132673 +34777,133132 +34778,133662 +34779,133663 +34780,133665 +34781,133132 +34782,132536 +34783,134588 +34784,132961 +34785,132961 +34786,132961 +34787,132961 +34788,134588 +34789,132961 +34790,132492 +34791,135036 +34792,132562 +34793,132612 +34794,135129 +34795,135464 +34796,133666 +34797,133668 +34798,133669 +34799,132689 +34800,135500 +34801,133739 +34802,133739 +34803,133479 +34804,135469 +34805,135469 +34806,135469 +34807,135469 +34808,133768 +34809,135326 +34810,135326 +34811,135144 +34812,133771 +34814,135005 +34818,135449 +34819,133483 +34820,133483 +34821,133040 +34822,133040 +34823,132737 +34824,132400 +34825,132637 +34826,132684 +34827,134681 +34828,133160 +34829,135060 +34830,132400 +34831,132516 +34832,132962 +34833,132587 +34834,134667 +34835,133117 +34836,132601 +34837,132511 +34838,132959 +34839,132548 +34840,134599 +34841,135056 +34842,132612 +34843,132492 +34844,132951 +34845,133022 +34846,132896 +34847,132896 +34848,135315 +34849,135315 +34850,135348 +34858,135342 +34859,135322 +34860,133042 +34861,135327 +34862,135327 +34863,134192 +34864,133881 +34865,133881 +34866,133880 +34867,133879 +34868,133320 +34869,133314 +34870,133318 +34871,133316 +34872,133882 +34873,133878 +34874,132619 +34875,135361 +34883,135361 +34884,135361 +34885,135361 +34886,135361 +34887,135361 +34888,135361 +34889,133045 +34890,134584 +34891,135144 +34892,134480 +34893,132483 +34894,135166 +34895,133739 +34896,135652 +34897,135033 +34898,133143 +34899,135469 +34900,132723 +34901,132945 +34902,133069 +34904,135067 +34905,132737 +34906,134681 +34907,133160 +34908,133160 +34909,135060 +34910,132587 +34911,132962 +34912,132516 +34913,132614 +34914,132601 +34915,132637 +34916,132959 +34917,134667 +34918,133117 +34919,135060 +34920,135045 +34921,132548 +34922,132511 +34923,135125 +34924,132106 +34925,136067 +34926,132637 +34927,134667 +34928,133117 +34929,135045 +34930,132548 +34931,132959 +34932,132511 +34933,132601 +34934,132548 +34935,132959 +34936,134528 +34937,135148 +34938,135148 +34939,135168 +34940,135168 +34941,135168 +34942,132637 +34943,134667 +34944,134667 +34945,133117 +34946,135045 +34947,132548 +34948,132548 +34949,132959 +34950,132511 +34951,132959 +34952,132601 +34953,134913 +34954,134914 +34955,134912 +34956,134918 +34957,134919 +34958,134920 +34959,134915 +34960,134916 +34961,134917 +34964,132737 +34965,134681 +34966,133160 +34967,135060 +34968,132587 +34969,132962 +34970,132516 +34971,132614 +34972,132637 +34973,134667 +34974,133117 +34975,135045 +34976,132548 +34977,132959 +34978,132511 +34979,132601 +34980,135045 +34981,132548 +34982,132684 +34983,134599 +34984,132684 +34985,132767 +34986,135056 +34987,132579 +34988,132951 +34989,132492 +34990,132612 +34991,132684 +34992,134599 +34993,132767 +34994,135056 +34995,135056 +34996,132579 +34997,132951 +34998,132492 +34999,132612 +35000,132951 +35001,132684 +35002,134599 +35003,132767 +35004,135056 +35005,132579 +35006,132951 +35007,132492 +35008,132612 +35009,135327 +35010,133047 +35013,132483 +35014,133571 +35015,136074 +35016,134137 +35017,135466 +35023,133850 +35024,133850 +35025,134328 +35031,135356 +35032,132737 +35041,133126 +35042,133126 +35044,132614 +35045,136094 +35046,135849 +35047,136192 +35048,136121 +35049,132737 +35050,132962 +35051,134681 +35052,132587 +35053,132614 +35054,132737 +35055,132962 +35058,132516 +35059,135060 +35060,133160 +35061,133160 +35062,132587 +35063,132587 +35064,135060 +35065,134681 +35066,135060 +35067,132587 +35069,134696 +35070,132744 +35071,135615 +35072,132649 +35074,132953 +35075,132940 +35076,133768 +35077,133769 +35078,132649 +35079,132940 +35080,132633 +35081,132633 +35082,132633 +35083,132962 +35084,132606 +35085,132633 +35086,132962 +35087,132606 +35088,132633 +35090,132611 +35091,132603 +35092,135865 +35093,134583 +35094,135639 +35095,133111 +35096,134583 +35097,135331 +35099,134584 +35100,132962 +35101,132633 +35102,134646 +35103,134646 +35104,134667 +35112,135273 +35114,133768 +35115,133768 +35116,135461 +35117,132948 +35118,132965 +35119,132944 +35120,132490 +35124,133143 +35125,133163 +35129,133040 +35130,134888 +35131,133160 +35132,133160 +35133,133878 +35138,132501 +35139,133770 +35140,133573 +35141,134909 +35142,132684 +35143,132497 +35144,132612 +35145,132951 +35146,134599 +35147,132684 +35148,132579 +35149,135056 +35150,135371 +35151,132395 +35152,135371 +35153,134599 +35154,134599 +35155,132767 +35156,132684 +35157,134637 +35158,132601 +35159,132637 +35160,135045 +35161,134667 +35162,133117 +35163,132959 +35164,132511 +35165,132548 +35166,132548 +35167,132959 +35168,135012 +35169,135012 +35170,133694 +35171,132539 +35172,134596 +35173,132548 +35174,133168 +35175,134691 +35176,135060 +35177,135060 +35179,132492 +35180,132612 +35181,132767 +35182,132767 +35183,132951 +35184,134599 +35185,132684 +35186,132579 +35187,135056 +35188,133160 +35195,133160 +35196,132742 +35197,132742 +35198,132742 +35199,132742 +35200,132742 +35201,132742 +35202,132742 +35203,132742 +35204,132742 +35205,132767 +35206,132767 +35207,132742 +35208,135049 +35209,135049 +35210,133160 +35211,133160 +35212,132561 +35213,132506 +35214,132561 +35215,132742 +35216,132742 +35217,132963 +35218,132510 +35219,132510 +35222,133071 +35223,133126 +35224,132498 +35239,133502 +35240,135152 +35241,135150 +35242,135168 +35243,135669 +35244,133455 +35245,133454 +35246,133456 +35247,135370 +35248,135371 +35249,135361 +35250,133495 +35251,133503 +35252,135618 +35253,135541 +35254,135501 +35255,135356 +35256,135345 +35257,132428 +35258,132399 +35259,135574 +35260,134948 +35261,134947 +35262,135481 +35263,135482 +35264,134411 +35269,133988 +35273,134503 +35274,134499 +35275,132606 +35276,132633 +35277,132962 +35278,134584 +35279,132940 +35280,134586 +35281,132649 +35282,134586 +35283,132606 +35284,132940 +35285,132940 +35286,132940 +35287,132606 +35288,132940 +35289,134646 +35290,132649 +35291,132940 +35292,132606 +35293,132633 +35294,132962 +35295,134667 +35296,132626 +35297,132744 +35298,134515 +35299,134516 +35300,134517 +35301,134518 +35302,132649 +35303,132940 +35307,133831 +35310,132616 +35311,135472 +35312,133776 +35313,133392 +35316,132535 +35322,132535 +35323,132962 +35324,135047 +35325,135038 +35326,135056 +35327,132579 +35328,132684 +35329,134599 +35330,132951 +35331,132767 +35332,132612 +35333,132492 +35334,133830 +35335,133832 +35336,133833 +35337,133834 +35338,133835 +35339,133829 +35340,133828 +35341,133821 +35342,133820 +35343,133824 +35344,133825 +35345,133826 +35346,133827 +35347,133823 +35348,133822 +35349,133804 +35350,133806 +35351,133809 +35352,133808 +35353,133810 +35354,133807 +35355,133805 +35356,133811 +35357,133495 +35358,133319 +35359,133317 +35361,135442 +35364,135291 +35365,133775 +35366,133776 +35367,133391 +35369,135045 +35370,135620 +35371,132416 +35372,133160 +35373,133315 +35374,135036 +35383,134555 +35396,135026 +35398,132637 +35400,135440 +35401,133944 +35405,132514 +35406,132763 +35407,132599 +35408,133775 +35409,132548 +35410,132511 +35411,132959 +35412,133117 +35413,134667 +35414,135045 +35415,132637 +35416,132601 +35417,132390 +35418,132389 +35419,133074 +35420,132649 +35421,133072 +35422,132606 +35423,133390 +35429,135439 +35430,133775 +35431,133395 +35432,133155 +35433,133122 +35434,135060 +35435,132767 +35436,133152 +35437,133321 +35438,133394 +35439,135443 +35442,135441 +35444,133777 +35445,135444 +35446,133777 +35447,133160 +35449,132541 +35460,135501 +35461,135501 +35462,135541 +35464,134938 +35465,134422 +35472,133393 +35508,134696 +35509,132687 +35514,134588 +35515,134634 +35517,132956 +35519,132492 +35520,132612 +35521,132951 +35522,134599 +35523,132684 +35524,132579 +35525,132579 +35526,132548 +35527,132511 +35528,132959 +35529,133117 +35530,134667 +35531,135045 +35532,132637 +35533,132601 +35534,132542 +35535,135021 +35540,132963 +35541,132940 +35542,132945 +35543,132950 +35544,132645 +35545,132950 +35546,132934 +35547,132745 +35548,132745 +35549,132745 +35550,132963 +35551,132630 +35552,132721 +35553,132940 +35554,132630 +35555,132613 +35556,132611 +35557,132615 +35558,132607 +35560,132543 +35562,134806 +35563,135144 +35564,132502 +35565,133754 +35567,134583 +35568,132541 +35569,132950 +35570,135275 +35571,135275 +35573,134973 +35574,133504 +35575,135372 +35576,134971 +35577,134972 +35578,135501 +35582,135468 +35583,135468 +35584,132828 +35589,135643 +35590,135036 +35592,132489 +35593,135474 +35595,135824 +35596,135819 +35600,133117 +35601,133117 +35611,135045 +35612,133117 +35613,132548 +35614,132511 +35615,132959 +35616,134667 +35617,135045 +35618,132637 +35619,132601 +35620,134500 +35621,134501 +35629,133117 +35630,135150 +35631,135226 +35632,135226 +35633,135226 +35634,135226 +35639,134029 +35642,133506 +35643,133505 +35649,134500 +35654,132389 +35657,135267 +35661,132392 +35676,132612 +35677,132612 +35705,132687 +35709,133454 +35710,133496 +35712,133454 +35713,132717 +35719,132390 +35730,135501 +35734,135663 +35738,135264 +35739,135040 +35744,135262 +35745,135263 +35746,132548 +35747,132511 +35748,132959 +35749,133117 +35750,134667 +35751,135045 +35752,132637 +35753,132601 +35754,134667 +35757,133797 +35778,132718 +35779,134584 +35780,132539 +35786,134584 +35790,132537 +35791,132939 +35792,134546 +35794,132718 +35797,132539 +35798,132951 +35799,132626 +35800,134583 +35801,133123 +35802,135047 +35803,132959 +35804,132542 +35805,132722 +35806,133077 +35807,135038 +35808,132960 +35809,134586 +35810,133077 +35811,135042 +35812,132949 +35813,134547 +35814,135472 +35815,134545 +35816,134545 +35817,134548 +35818,135594 +35819,135672 +35821,133076 +35822,133076 +35825,135054 +35830,134144 +35831,134009 +35839,135273 +35863,135501 +35864,133076 +35865,135054 +35870,135501 +35878,134955 +35899,135638 +35922,133129 +35923,133076 +35935,135054 +35960,133076 +35976,133076 +36003,132959 +36004,132542 +36006,132539 +36007,132539 +36008,132539 +36010,132951 +36013,132940 +36014,134588 +36015,132720 +36016,134586 +36017,132716 +36018,134591 +36020,132716 +36021,132716 +36022,134591 +36023,132669 +36024,132669 +36027,135032 +36028,133076 +36037,133074 +36038,135032 +36039,133119 +36040,133076 +36041,133074 +36042,133119 +36043,133077 +36044,135045 +36045,135662 +36046,133744 +36062,133745 +36063,133488 +36064,133039 +36065,133060 +36066,135275 +36077,132745 +36078,133039 +36079,133484 +36080,135662 +36081,135275 +36082,133747 +36083,133746 +36085,133076 +36086,133076 +36265,133744 +36266,133745 +36267,133747 +36268,133746 +36269,135050 +36274,136121 +36275,136146 +36276,136141 +36277,136143 +36279,132956 +36280,132721 +36290,134969 +36338,133877 +36349,132516 +36350,132587 +36351,132587 +36352,132684 +36354,132684 +36358,132740 +36362,132740 +36366,132740 +36368,132687 +36369,132687 +36370,132687 +36371,135291 +36372,135277 +36373,135277 +36374,135277 +36376,135277 +36377,135372 +36378,135371 +36381,132395 +36382,132392 +36405,133982 +36422,135372 +36423,135331 +36424,135036 +36425,135032 +36426,134666 +36427,135053 +36428,134584 +36429,135053 +36430,132516 +36432,133152 +36433,133122 +36434,135045 +36435,132606 +36436,132744 +36437,132962 +36438,134667 +36439,132721 +36440,132767 +36448,133797 +36460,135265 +36468,135026 +36469,135026 +36470,134176 +36471,134230 +36472,133503 +36473,133503 +36474,132199 +36475,133986 +36478,134634 +36479,132940 +36480,132721 +36481,132607 +36518,133503 +36534,132584 +36630,133143 +36669,133077 +36684,133434 +36715,133126 +36730,133160 +36741,135302 +36762,132418 +36765,133746 +36778,133076 +36779,133076 +36782,133076 +36967,132505 +36968,132505 +36969,133045 +36970,135361 +36971,134596 +36972,133117 +37056,133117 +37060,135026 +37061,135026 +37266,132652 +38283,134473 +38284,134472 diff --git a/HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv b/HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv new file mode 100644 index 00000000..696f7ca4 --- /dev/null +++ b/HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv @@ -0,0 +1,31105 @@ +DisplayID,FileDataID +222,132535 +224,133345 +229,132490 +230,132535 +233,132535 +241,132490 +242,132535 +244,132490 +245,132535 +248,132490 +249,132535 +252,132490 +253,132535 +256,132490 +257,132535 +261,132535 +267,132535 +275,132490 +276,132535 +281,132490 +282,132535 +292,134719 +293,132490 +295,132536 +297,132490 +301,132490 +302,132535 +308,133943 +310,132490 +311,132535 +314,132490 +317,132490 +318,132535 +326,132490 +329,132490 +332,132490 +336,132490 +337,132535 +362,133622 +365,134582 +368,134582 +369,135005 +370,134582 +371,135005 +372,134582 +373,135005 +374,134582 +376,134582 +378,134582 +380,134582 +381,135005 +383,135005 +384,134582 +385,135005 +386,134582 +387,135005 +388,134582 +389,135005 +390,134582 +391,135005 +392,134582 +393,135005 +394,134582 +395,135005 +396,134582 +397,135005 +398,134582 +412,134582 +453,132392 +472,135145 +510,132938 +555,134304 +557,133748 +563,135278 +568,134305 +609,133280 +624,134321 +634,134940 +679,135274 +683,134582 +684,132760 +685,134583 +687,134583 +691,134582 +697,134583 +703,132592 +704,134706 +729,135278 +782,132395 +811,134939 +825,132537 +845,132543 +859,135274 +860,133476 +861,133476 +862,135274 +869,135129 +878,135139 +883,135143 +896,133343 +898,133435 +918,133741 +920,133884 +924,134939 +925,133622 +926,134712 +928,133749 +929,135437 +932,132483 +940,134297 +941,134412 +942,133436 +944,134301 +945,132543 +946,134414 +954,132624 +956,134229 +959,134298 +961,134336 +963,133345 +964,133437 +972,132939 +976,132938 +977,132624 +981,133623 +983,134720 +989,132760 +992,134937 +993,133948 +994,133949 +1006,133344 +1007,134325 +1011,132939 +1012,133277 +1013,134938 +1017,132939 +1019,132624 +1020,132535 +1022,133041 +1025,133626 +1026,134720 +1028,133344 +1032,135275 +1037,134944 +1040,134232 +1041,133952 +1045,135279 +1046,133343 +1054,133565 +1057,135039 +1058,135039 +1060,135033 +1063,132938 +1068,135033 +1069,134937 +1083,133040 +1087,133947 +1090,135141 +1092,135144 +1093,134943 +1095,132381 +1096,134940 +1097,134941 +1098,135005 +1102,134939 +1103,133739 +1107,132490 +1115,133476 +1116,133972 +1117,133970 +1118,133972 +1119,133750 +1120,133750 +1121,135274 +1123,133072 +1124,133072 +1126,133071 +1127,133071 +1128,133071 +1129,133071 +1130,133071 +1131,133071 +1132,133070 +1134,133742 +1136,134537 +1137,134537 +1139,133437 +1141,134321 +1143,133741 +1144,133950 +1145,133968 +1148,133279 +1150,134719 +1151,134298 +1155,133740 +1159,133476 +1160,133476 +1161,133476 +1165,135145 +1166,134955 +1168,133639 +1170,134442 +1183,133639 +1184,132759 +1185,135006 +1190,135144 +1193,135139 +1196,134185 +1197,134229 +1198,133345 +1199,132624 +1200,133070 +1201,135145 +1203,135276 +1206,133040 +1207,135276 +1208,133888 +1209,134336 +1215,134787 +1216,134133 +1217,134106 +1218,134118 +1219,134304 +1220,133476 +1221,134063 +1225,133721 +1227,133725 +1229,134583 +1231,134076 +1232,132490 +1235,134068 +1236,134068 +1238,132490 +1240,134400 +1241,133476 +1243,133038 +1244,133628 +1245,134298 +1246,133738 +1248,134065 +1249,134776 +1251,135279 +1257,134514 +1260,133622 +1262,134134 +1263,134085 +1264,134188 +1270,134377 +1272,133694 +1273,133728 +1274,133731 +1275,134743 +1277,133637 +1280,133631 +1281,133635 +1282,133640 +1283,133629 +1285,133644 +1286,134367 +1288,134799 +1290,134341 +1291,134776 +1294,133707 +1295,133848 +1297,134058 +1301,134939 +1302,133628 +1307,133938 +1310,134170 +1312,135435 +1313,134185 +1317,133743 +1319,133728 +1322,134269 +1323,134939 +1324,134939 +1325,134939 +1328,134754 +1329,133693 +1330,135006 +1342,133040 +1345,135139 +1347,133950 +1353,134585 +1356,134581 +1357,134582 +1361,133888 +1364,135230 +1371,135139 +1373,135143 +1374,135139 +1376,135144 +1378,134707 +1379,134708 +1382,132392 +1383,132392 +1384,132395 +1386,132392 +1387,132392 +1389,132392 +1390,132392 +1391,132392 +1392,132392 +1393,132394 +1395,134431 +1399,133280 +1401,134231 +1402,133040 +1404,133276 +1405,135231 +1407,132943 +1409,132392 +1415,132393 +1416,133724 +1421,134366 +1423,134339 +1424,134321 +1428,135277 +1432,132715 +1436,133040 +1437,135146 +1438,134343 +1439,132393 +1440,135129 +1441,133476 +1442,134185 +1443,134059 +1445,134173 +1451,133750 +1455,132394 +1458,132392 +1461,133041 +1464,134187 +1465,132394 +1466,135278 +1467,135141 +1469,135143 +1471,133633 +1474,133752 +1475,133476 +1477,133040 +1478,133040 +1480,134708 +1481,134710 +1482,134798 +1483,133951 +1485,133218 +1487,133942 +1489,135144 +1490,135574 +1491,134170 +1494,133072 +1495,134353 +1496,134296 +1498,134295 +1499,134294 +1500,134413 +1501,134415 +1503,133720 +1504,133884 +1507,134437 +1511,132624 +1512,134582 +1513,132392 +1515,133718 +1516,133718 +1517,133041 +1542,135274 +1544,135274 +1546,135274 +1547,135274 +1550,135274 +1552,135640 +1553,135276 +1556,135274 +1560,132393 +1563,132395 +1566,135275 +1588,133741 +1590,135274 +1591,135274 +1592,135274 +1593,135274 +1594,135637 +1595,133040 +1596,133040 +1597,133040 +1598,132395 +1599,135145 +1600,135145 +1601,132395 +1602,134709 +1605,135637 +1606,135637 +1607,135274 +1609,135276 +1610,133040 +1611,134374 +1612,133476 +1613,133038 +1621,135276 +1625,133641 +1627,135274 +1628,135276 +1632,135276 +1638,135278 +1639,135277 +1642,135275 +1643,135145 +1644,134952 +1645,134297 +1646,134184 +1648,135144 +1649,135006 +1652,132392 +1653,133476 +1655,134058 +1656,134776 +1657,132938 +1658,132543 +1659,134132 +1661,133040 +1663,133217 +1664,135637 +1673,134955 +1680,134955 +1682,134707 +1684,134955 +1685,134955 +1695,134336 +1699,133345 +1701,132938 +1704,135274 +1705,134950 +1706,134950 +1708,132943 +1709,134514 +1710,135581 +1712,134708 +1714,132392 +1716,135145 +1722,135276 +1724,133718 +1725,135272 +1726,133040 +1727,132624 +1728,132939 +1730,134321 +1733,135128 +1754,133215 +1755,134955 +1757,134955 +1758,133039 +1759,133718 +1760,133476 +1762,133969 +1766,135274 +1767,132395 +1768,135145 +1769,134297 +1771,135139 +1772,132395 +1773,135276 +1774,133476 +1776,135126 +1779,133476 +1780,133476 +1782,133040 +1783,133476 +1784,133476 +1787,132760 +1795,132938 +1796,132938 +1797,132760 +1805,134712 +1813,135614 +1815,133628 +1816,133581 +1817,135005 +1818,134581 +1819,135006 +1822,132624 +1839,133476 +1841,135145 +1845,135641 +1853,135274 +1859,132624 +1861,132539 +1863,134581 +1865,132381 +1882,134581 +1883,134581 +1911,132539 +1926,135145 +1927,135145 +1928,135274 +1929,135274 +1930,135274 +1931,135274 +1932,132395 +1936,135640 +1938,135613 +1942,133476 +1943,133476 +1946,134719 +1947,134797 +1948,134797 +1949,134719 +1950,133476 +1953,135610 +1954,132395 +1955,133041 +1956,135275 +1963,134582 +1965,133345 +1966,132537 +1967,135006 +1975,135006 +1978,134582 +1980,133345 +1981,132537 +1990,132760 +1995,132760 +1997,134431 +2006,135610 +2010,135139 +2011,132394 +2012,135464 +2015,132941 +2018,134582 +2019,132715 +2022,133974 +2024,135006 +2025,134181 +2027,133588 +2038,133476 +2047,133476 +2048,135271 +2050,133343 +2052,134955 +2053,134070 +2054,133581 +2056,133040 +2057,132939 +2058,135145 +2059,135274 +2060,133476 +2061,132392 +2065,133476 +2073,135276 +2074,132490 +2075,133216 +2080,134951 +2082,132760 +2083,132538 +2094,132539 +2100,132760 +2101,132939 +2104,132760 +2105,132541 +2106,132760 +2107,134354 +2109,132538 +2110,132538 +2111,132539 +2118,133344 +2149,134949 +2157,133040 +2158,134955 +2159,134955 +2161,134950 +2162,135464 +2163,135005 +2164,132940 +2166,132543 +2176,134706 +2177,132539 +2178,133345 +2181,134950 +2183,135005 +2185,134581 +2186,132940 +2188,132539 +2191,135005 +2193,132940 +2195,132539 +2198,132543 +2201,134581 +2202,132940 +2204,132543 +2208,134955 +2209,134955 +2210,134955 +2211,134955 +2212,133718 +2213,132940 +2215,132624 +2217,134583 +2218,132535 +2219,133344 +2220,132938 +2221,134787 +2222,132624 +2228,134583 +2229,132535 +2230,133344 +2231,132938 +2247,134939 +2249,134325 +2250,135006 +2257,132624 +2265,132624 +2267,133344 +2268,132535 +2269,132624 +2270,134583 +2272,133344 +2274,133344 +2279,132490 +2299,134581 +2300,132940 +2301,132543 +2304,135005 +2305,132543 +2307,132940 +2308,134581 +2311,134581 +2312,132539 +2314,132940 +2317,135005 +2318,134581 +2319,132539 +2322,134956 +2324,134956 +2325,134956 +2326,134956 +2329,134949 +2331,134949 +2333,134950 +2334,133940 +2335,134949 +2337,134952 +2338,134184 +2339,133939 +2341,133345 +2342,132541 +2345,134713 +2348,134715 +2350,134712 +2351,134732 +2354,134798 +2355,132541 +2357,134754 +2358,132939 +2359,132939 +2360,132939 +2361,132939 +2362,132939 +2363,132760 +2364,132490 +2365,134582 +2366,132542 +2367,133345 +2368,132939 +2370,132760 +2371,132490 +2372,134582 +2373,132542 +2374,133345 +2375,132939 +2376,133969 +2378,133281 +2380,135276 +2381,132395 +2382,133476 +2383,135274 +2385,132395 +2387,133476 +2388,135145 +2389,135274 +2392,135276 +2393,132395 +2394,133476 +2395,133040 +2397,135139 +2398,135274 +2399,135276 +2400,132392 +2401,133040 +2402,133040 +2404,135139 +2405,133040 +2406,135276 +2407,132395 +2409,135610 +2410,135616 +2412,135611 +2413,135612 +2414,132382 +2415,135274 +2416,135276 +2418,132384 +2420,135145 +2421,135275 +2422,132394 +2423,133041 +2424,135144 +2427,135278 +2428,132394 +2429,132395 +2430,133041 +2431,133041 +2433,135144 +2434,135275 +2436,135278 +2437,132394 +2438,132395 +2439,133476 +2440,133041 +2442,135144 +2451,133344 +2452,135144 +2453,135271 +2456,134948 +2457,133693 +2460,133725 +2461,135493 +2462,135530 +2463,135612 +2464,134941 +2466,133041 +2467,133040 +2469,135145 +2470,135005 +2471,135005 +2472,135005 +2473,133972 +2474,133974 +2475,133639 +2480,133849 +2481,132941 +2482,135138 +2485,135005 +2486,132543 +2489,132940 +2490,135005 +2492,135005 +2493,135006 +2494,135005 +2496,132539 +2498,133693 +2499,135005 +2500,132543 +2503,135005 +2504,133694 +2505,133693 +2506,134325 +2507,133693 +2509,135140 +2510,134743 +2511,134713 +2514,134732 +2515,134799 +2516,134095 +2517,134437 +2526,133072 +2528,132767 +2529,134231 +2530,134238 +2533,134743 +2535,134184 +2539,135037 +2551,134230 +2552,134955 +2553,134955 +2554,134955 +2555,134955 +2556,134955 +2557,134957 +2558,134957 +2559,134957 +2560,132537 +2561,133345 +2563,135039 +2564,132760 +2565,133345 +2567,133345 +2569,135038 +2571,134939 +2575,133345 +2577,135005 +2578,132939 +2580,133345 +2582,135038 +2583,133345 +2584,133636 +2585,133634 +2586,133638 +2588,133641 +2589,133636 +2591,133630 +2592,133632 +2593,133645 +2594,134952 +2595,135641 +2596,133849 +2598,133723 +2599,133970 +2600,133725 +2603,133970 +2604,134184 +2605,134059 +2608,132938 +2609,132940 +2610,134581 +2612,133282 +2615,133435 +2616,134937 +2617,133074 +2618,133942 +2621,134400 +2622,134231 +2623,133343 +2624,133278 +2626,134944 +2627,133708 +2628,134582 +2629,134581 +2632,134955 +2633,134955 +2634,134939 +2635,135274 +2637,134437 +2638,133849 +2641,133944 +2644,132760 +2645,135006 +2651,133040 +2652,132395 +2656,134582 +2657,134412 +2658,132490 +2659,133343 +2660,133938 +2661,133888 +2663,135005 +2665,133072 +2666,133344 +2667,133438 +2669,135641 +2670,135037 +2671,134955 +2672,134951 +2673,132715 +2675,133345 +2676,133476 +2677,133748 +2680,132940 +2682,132543 +2683,135276 +2684,134708 +2686,132939 +2687,133040 +2688,133218 +2689,135493 +2690,135491 +2691,135495 +2692,135490 +2693,135638 +2694,135641 +2696,134298 +2698,135637 +2699,135641 +2701,132392 +2702,135274 +2703,135641 +2704,135641 +2705,135637 +2706,135637 +2707,135641 +2708,135641 +2709,135639 +2710,135637 +2711,135641 +2712,134298 +2713,135641 +2714,134298 +2715,135641 +2717,135641 +2719,133723 +2720,135641 +2724,133941 +2725,133941 +2726,133941 +2727,135640 +2728,133941 +2730,135641 +2731,133941 +2732,135274 +2733,135128 +2735,135641 +2736,135637 +2737,135640 +2738,135641 +2740,135641 +2742,135641 +2743,135638 +2744,134174 +2746,134249 +2747,134249 +2753,135641 +2755,134943 +2757,133740 +2758,135276 +2760,132381 +2761,132392 +2762,135637 +2763,135641 +2764,135637 +2765,135641 +2767,132392 +2768,132395 +2769,132395 +2770,132395 +2771,132395 +2772,132395 +2773,132395 +2774,135641 +2775,133040 +2776,133040 +2777,133040 +2778,135139 +2779,135146 +2780,135274 +2781,135274 +2782,135276 +2783,135276 +2786,135493 +2787,135493 +2788,133939 +2789,135491 +2790,135491 +2791,135610 +2792,135612 +2793,134187 +2794,135490 +2796,134065 +2797,134721 +2798,134298 +2800,135277 +2805,132392 +2806,135275 +2807,132394 +2809,135639 +2810,133041 +2814,132394 +2815,133040 +2818,134582 +2819,135641 +2820,134376 +2821,133476 +2822,133040 +2823,132392 +2824,135494 +2825,135615 +2826,135492 +2827,133040 +2829,132624 +2830,133071 +2831,132535 +2832,133476 +2833,135275 +2834,135278 +2836,133718 +2837,132395 +2839,133038 +2840,135138 +2841,135145 +2842,133344 +2843,135143 +2844,133438 +2845,135639 +2846,133277 +2848,133476 +2849,132490 +2851,132760 +2852,134437 +2853,133730 +2854,133345 +2857,133751 +2859,132940 +2860,133849 +2861,133476 +2862,132395 +2864,135276 +2865,133476 +2866,132395 +2867,135276 +2868,135128 +2873,134719 +2874,134304 +2880,133344 +2881,133344 +2882,132624 +2885,134437 +2890,134355 +2891,135277 +2892,135617 +2893,132393 +2894,135639 +2895,133588 +2897,134583 +2898,132624 +2900,134366 +2902,134939 +2903,133972 +2904,133972 +2916,134955 +2917,134708 +2919,135490 +2920,135610 +2922,134583 +2923,133041 +2924,135639 +2925,133694 +2928,132535 +2930,135639 +2934,134948 +2935,134335 +2936,133070 +2943,135145 +2945,134166 +2947,134799 +2948,134183 +2949,134583 +2950,132535 +2951,132938 +2952,132937 +2953,135033 +2955,132940 +2956,133719 +2958,133849 +2960,135039 +2961,133848 +2962,132624 +2963,134743 +2964,135005 +2965,134186 +2966,132624 +2967,132624 +2968,132736 +2969,134583 +2970,132490 +2971,132535 +2972,133344 +2973,132938 +2974,132736 +2975,132490 +2976,134583 +2977,132535 +2978,133344 +2979,132938 +2980,133344 +2981,132939 +2982,132624 +2984,132535 +2985,132490 +2986,132535 +2987,133344 +2988,132938 +2989,134583 +2990,132541 +2991,132937 +2992,133345 +2993,132535 +2995,133074 +2998,133942 +3004,133884 +3005,134354 +3006,135641 +3007,132938 +3009,133438 +3011,133282 +3012,134335 +3013,134059 +3014,134336 +3018,133461 +3019,133459 +3020,133471 +3021,133471 +3022,133471 +3023,133468 +3024,133464 +3026,133439 +3027,133460 +3028,133459 +3029,133469 +3030,133462 +3031,133461 +3032,133460 +3033,133466 +3034,133460 +3035,133461 +3036,132541 +3037,135637 +3039,135006 +3040,132760 +3041,133344 +3042,132760 +3043,134583 +3044,133070 +3046,134581 +3047,133693 +3048,133458 +3049,135005 +3050,134582 +3051,132543 +3052,132939 +3053,135005 +3054,134582 +3055,132543 +3056,132939 +3057,132624 +3058,134583 +3059,132535 +3060,132939 +3062,134582 +3063,132939 +3064,135005 +3065,134582 +3066,132543 +3067,132939 +3068,132624 +3069,134583 +3070,132535 +3071,132939 +3074,134582 +3075,132939 +3077,132760 +3078,134582 +3080,132537 +3081,132939 +3082,132624 +3083,134583 +3084,132535 +3085,132939 +3086,133071 +3087,134442 +3090,135271 +3091,132484 +3092,135273 +3093,133471 +3097,135581 +3098,133040 +3099,133040 +3100,132760 +3101,132395 +3102,134085 +3107,133750 +3108,134229 +3109,134333 +3110,133434 +3113,134378 +3114,133734 +3116,134514 +3117,135278 +3118,134238 +3119,135036 +3120,135006 +3121,132490 +3124,134304 +3126,134321 +3127,134321 +3128,133076 +3129,132392 +3130,133476 +3131,135228 +3135,133072 +3136,133434 +3137,135036 +3138,132490 +3140,134941 +3141,134941 +3142,132393 +3143,132939 +3144,135129 +3145,132392 +3146,134294 +3147,135275 +3148,135279 +3149,134437 +3151,133041 +3152,134717 +3153,133344 +3154,133733 +3155,132392 +3160,135464 +3161,134712 +3162,133436 +3163,134412 +3164,134367 +3167,133072 +3168,133476 +3169,135039 +3170,132392 +3171,133072 +3172,132543 +3173,134581 +3174,135495 +3175,135637 +3177,133884 +3178,135279 +3179,134582 +3180,133041 +3181,135139 +3184,135489 +3185,135500 +3186,135500 +3187,135491 +3188,135614 +3189,135613 +3190,135610 +3191,133476 +3192,132624 +3193,134583 +3194,132535 +3195,132939 +3196,133071 +3197,132624 +3198,132535 +3199,132939 +3200,132760 +3201,134582 +3202,132939 +3203,132537 +3204,132715 +3205,134582 +3206,132939 +3208,132542 +3210,134582 +3212,132939 +3213,135274 +3214,133072 +3215,134442 +3217,134582 +3218,132939 +3222,132767 +3224,135490 +3225,133981 +3226,133941 +3227,132394 +3228,135275 +3229,134948 +3231,134334 +3232,132393 +3233,133719 +3234,135275 +3237,133627 +3243,132395 +3244,132490 +3245,132490 +3246,132490 +3247,132490 +3248,134582 +3249,133345 +3250,132539 +3251,132490 +3252,132490 +3253,133345 +3254,132490 +3255,132490 +3256,132490 +3257,134064 +3258,134063 +3260,134581 +3261,132535 +3262,132490 +3264,132490 +3265,135005 +3267,135005 +3268,134582 +3269,132535 +3271,135005 +3272,133040 +3273,134087 +3274,135641 +3275,135641 +3276,135641 +3277,135005 +3278,135005 +3279,132539 +3280,132939 +3281,132392 +3282,132392 +3283,132395 +3284,132392 +3285,132394 +3288,133980 +3289,135005 +3290,135005 +3291,135005 +3292,134581 +3293,132624 +3297,132392 +3299,132939 +3302,133345 +3304,134956 +3306,135277 +3307,134294 +3308,134339 +3309,132535 +3311,133344 +3312,132939 +3315,132624 +3316,135040 +3317,134321 +3318,133970 +3320,134338 +3323,134065 +3325,134437 +3326,133725 +3327,134135 +3329,133974 +3331,134938 +3332,133345 +3334,132535 +3335,132490 +3337,133628 +3341,134342 +3342,134333 +3343,135036 +3344,134089 +3346,134132 +3347,134303 +3352,133970 +3355,134325 +3356,133072 +3357,134297 +3358,132490 +3360,135637 +3361,135138 +3362,135637 +3363,135639 +3364,135276 +3365,132395 +3366,133476 +3367,132395 +3369,133040 +3370,133040 +3371,132395 +3372,135276 +3373,135276 +3374,133040 +3375,132395 +3376,133344 +3377,133344 +3378,133476 +3379,133344 +3380,135276 +3381,133344 +3382,133344 +3383,133041 +3384,135276 +3385,132395 +3386,133345 +3387,133345 +3388,133345 +3389,133345 +3390,132715 +3392,132490 +3393,132539 +3394,132490 +3395,132535 +3396,135040 +3397,133973 +3398,132392 +3400,133476 +3401,133345 +3403,135637 +3404,135038 +3405,135145 +3406,133343 +3407,132490 +3408,133343 +3409,134583 +3410,133622 +3411,133458 +3413,132736 +3414,134584 +3415,132535 +3416,132938 +3417,135033 +3418,132490 +3421,133215 +3422,134338 +3423,132490 +3424,135006 +3425,135006 +3426,133735 +3427,134186 +3428,134431 +3429,133722 +3431,133718 +3432,134582 +3433,133694 +3434,135274 +3436,132381 +3437,135641 +3438,132381 +3439,133476 +3441,134583 +3442,134706 +3443,132539 +3444,132940 +3445,134955 +3446,135139 +3447,135274 +3448,132381 +3450,132624 +3451,134583 +3452,132939 +3453,133345 +3454,132535 +3455,132543 +3456,132939 +3457,132939 +3458,132939 +3459,135006 +3460,135005 +3461,134582 +3462,132939 +3463,132392 +3464,133476 +3465,134298 +3466,132535 +3467,132535 +3468,133345 +3469,132939 +3470,134583 +3471,132624 +3472,132939 +3473,132535 +3474,132939 +3475,135005 +3476,134582 +3477,132939 +3478,132543 +3479,135006 +3480,134582 +3481,132939 +3482,133344 +3483,132543 +3484,132939 +3485,132939 +3486,134173 +3487,133640 +3488,134075 +3489,134076 +3490,134074 +3491,134105 +3492,134106 +3493,134105 +3494,134086 +3495,135274 +3496,132490 +3497,132539 +3498,133476 +3499,133476 +3500,132940 +3501,135040 +3502,133041 +3503,135146 +3505,132624 +3506,132535 +3507,132535 +3508,134583 +3509,135145 +3510,132624 +3511,132535 +3512,135638 +3513,135638 +3514,135641 +3515,132939 +3516,132535 +3517,133345 +3518,132939 +3519,134583 +3520,132624 +3521,135006 +3522,135006 +3523,132939 +3524,132939 +3525,132543 +3526,135005 +3527,134582 +3528,132939 +3529,132624 +3530,134583 +3531,132939 +3532,133345 +3533,132535 +3534,135006 +3535,135006 +3536,134582 +3537,132939 +3538,133344 +3539,132543 +3540,132624 +3541,134583 +3542,132535 +3543,135231 +3544,134336 +3545,132938 +3546,132938 +3549,132539 +3550,135637 +3552,135005 +3553,132490 +3555,132539 +3560,133072 +3561,133942 +3562,135005 +3563,134305 +3564,132535 +3565,133624 +3566,133718 +3567,133942 +3568,133642 +3569,134412 +3570,134181 +3571,134183 +3572,134173 +3573,133718 +3574,133476 +3575,133942 +3576,132490 +3577,135274 +3578,133345 +3579,135274 +3580,133942 +3581,133942 +3582,132490 +3584,133345 +3585,132490 +3587,134581 +3588,134585 +3589,133072 +3590,135278 +3591,134359 +3592,134360 +3593,134359 +3594,134363 +3595,134369 +3596,134295 +3597,132603 +3598,132601 +3600,132600 +3601,132600 +3602,132603 +3603,132600 +3604,132603 +3605,132601 +3606,132605 +3607,132603 +3609,132600 +3610,132605 +3611,132603 +3612,132600 +3613,132603 +3614,132601 +3615,132605 +3616,132601 +3617,132603 +3618,132603 +3619,132600 +3620,132606 +3621,132602 +3622,132606 +3623,132606 +3624,132602 +3626,132606 +3627,132602 +3628,132604 +3629,132602 +3630,132604 +3631,132604 +3632,132604 +3633,132604 +3634,132606 +3635,132602 +3636,132604 +3637,132606 +3638,132602 +3639,133072 +3640,132610 +3641,132609 +3642,132611 +3643,132610 +3644,132610 +3645,132610 +3646,132609 +3647,132609 +3648,132611 +3649,132611 +3651,132612 +3652,132607 +3653,132607 +3654,132607 +3655,132601 +3656,132604 +3657,132606 +3658,132606 +3659,132607 +3660,132606 +3661,132606 +3663,134718 +3664,134721 +3665,134716 +3666,133343 +3667,134334 +3668,134303 +3669,134414 +3670,133725 +3671,133723 +3672,133722 +3673,134325 +3674,135639 +3676,133476 +3677,135145 +3678,135277 +3679,133436 +3680,133436 +3681,133939 +3682,133939 +3683,133939 +3684,133436 +3685,135005 +3686,135005 +3688,133072 +3689,135005 +3690,132602 +3692,133476 +3693,132606 +3695,133751 +3696,132490 +3697,133039 +3698,135615 +3699,135614 +3700,132760 +3701,133638 +3702,132395 +3703,132395 +3704,132607 +3705,132490 +3706,135274 +3707,135274 +3708,132607 +3709,132539 +3710,132539 +3711,132539 +3712,132537 +3713,132541 +3714,132539 +3715,132538 +3716,132490 +3718,132392 +3719,132760 +3720,135641 +3721,135139 +3722,135139 +3723,132535 +3724,132604 +3725,134950 +3726,134799 +3727,135138 +3728,132539 +3729,135274 +3730,133075 +3731,134581 +3732,132938 +3733,132938 +3735,135274 +3736,135464 +3737,135463 +3738,132537 +3739,132606 +3740,132606 +3741,135275 +3742,135138 +3744,133587 +3745,134237 +3746,133476 +3747,135040 +3748,132939 +3749,132543 +3750,132539 +3751,132939 +3752,132539 +3753,132539 +3754,132543 +3755,132539 +3757,132539 +3758,135277 +3759,134342 +3760,132624 +3761,133071 +3762,133071 +3763,133476 +3764,135279 +3765,135638 +3766,132535 +3767,132606 +3768,133039 +3771,132939 +3772,132535 +3773,132939 +3775,135274 +3777,132395 +3778,132395 +3779,133476 +3780,133041 +3781,135274 +3782,133437 +3784,135489 +3785,133072 +3787,135274 +3788,134799 +3791,132392 +3792,132392 +3793,135274 +3794,135274 +3795,135139 +3796,132392 +3797,132395 +3798,134064 +3800,134412 +3801,133849 +3802,134717 +3803,134940 +3804,134940 +3805,135144 +3806,132939 +3807,135139 +3808,133438 +3809,135229 +3810,132381 +3811,132381 +3812,132381 +3814,132381 +3815,135229 +3816,135229 +3817,132381 +3818,133072 +3819,132715 +3820,132715 +3821,132715 +3822,132603 +3823,132542 +3824,132939 +3825,134582 +3826,134582 +3827,132542 +3828,132939 +3829,132603 +3830,133072 +3831,132715 +3832,132715 +3833,134582 +3834,134582 +3835,132542 +3836,132542 +3837,134582 +3838,132715 +3839,132939 +3840,132939 +3841,132603 +3842,132603 +3843,132715 +3844,134582 +3845,132939 +3846,132939 +3847,132939 +3848,132939 +3850,132941 +3851,132939 +3852,132537 +3853,132768 +3854,135138 +3855,135274 +3856,133750 +3857,134414 +3860,135274 +3862,133072 +3863,135144 +3864,132483 +3865,132483 +3867,133070 +3868,132767 +3869,133074 +3871,135036 +3872,132490 +3873,135274 +3874,133218 +3875,132939 +3877,133072 +3878,133476 +3879,133040 +3881,135126 +3882,134582 +3884,135126 +3885,134235 +3886,135638 +3887,135006 +3888,135006 +3889,132395 +3890,132490 +3891,132612 +3892,132612 +3893,132612 +3894,132490 +3895,132610 +3896,132612 +3897,132612 +3898,132610 +3899,132609 +3900,135005 +3901,133472 +3903,135006 +3904,135005 +3905,135006 +3906,135006 +3907,135005 +3908,135005 +3909,132395 +3910,135574 +3911,135641 +3912,135279 +3913,132943 +3914,134170 +3915,133721 +3916,134296 +3917,133730 +3918,134166 +3920,134159 +3921,134412 +3922,133038 +3923,133281 +3924,134299 +3925,135637 +3926,134400 +3927,133731 +3928,132393 +3929,132609 +3930,134170 +3931,134955 +3932,134955 +3933,134949 +3934,134949 +3935,135142 +3936,135142 +3937,134338 +3939,134431 +3940,133040 +3942,135641 +3943,133040 +3944,133040 +3947,135142 +3948,133041 +3949,135145 +3950,134708 +3951,133277 +3952,135229 +3953,135279 +3954,132392 +3955,134707 +3957,135276 +3958,132939 +3959,135124 +3960,133072 +3961,133072 +3962,133071 +3963,133071 +3964,132395 +3965,132938 +3966,133748 +3968,133952 +3969,135276 +3970,133730 +3971,132381 +3972,132535 +3973,132767 +3976,132381 +3978,132938 +3979,132938 +3980,132939 +3981,132943 +3982,132939 +3983,132939 +3984,132939 +3985,132939 +3986,132943 +3987,132938 +3988,135271 +3989,132939 +3990,132939 +3991,132939 +3992,132939 +3993,132937 +3994,132939 +3995,132939 +3996,132941 +3997,132939 +3998,132939 +3999,132940 +4000,132940 +4001,132939 +4002,132939 +4003,132939 +4004,134085 +4005,134084 +4006,134128 +4007,132535 +4008,132535 +4009,132543 +4010,132543 +4011,132537 +4012,132541 +4013,132541 +4014,132537 +4016,132539 +4017,132543 +4018,132537 +4019,132541 +4020,132542 +4021,132537 +4022,132542 +4023,132543 +4024,132539 +4025,132543 +4026,132537 +4027,132541 +4028,132535 +4029,132535 +4030,132535 +4031,132535 +4032,132535 +4033,132535 +4034,132535 +4036,135126 +4037,135276 +4038,134718 +4039,134718 +4040,134718 +4041,134718 +4042,134718 +4043,134718 +4044,133472 +4045,134339 +4047,135463 +4048,134087 +4049,133736 +4050,134414 +4051,132612 +4052,134086 +4053,133639 +4054,132484 +4055,134366 +4056,133643 +4057,133722 +4058,133969 +4063,132610 +4065,132610 +4068,132610 +4076,132609 +4078,132939 +4080,132939 +4081,133974 +4082,133748 +4083,132609 +4084,133072 +4085,132624 +4089,135143 +4090,135279 +4091,132542 +4092,135489 +4093,134955 +4094,132609 +4095,132609 +4096,134937 +4097,133434 +4098,132537 +4099,132490 +4100,132715 +4101,135005 +4102,132490 +4103,132939 +4104,132394 +4105,134754 +4106,134743 +4107,134948 +4108,134956 +4109,135034 +4110,134944 +4111,134720 +4112,133971 +4113,133969 +4115,133970 +4116,135274 +4117,135146 +4118,133476 +4119,135641 +4120,135490 +4121,135276 +4122,133040 +4123,132395 +4125,132542 +4126,135274 +4127,134416 +4128,134937 +4129,135276 +4130,134950 +4132,135276 +4133,134743 +4134,134765 +4135,134717 +4136,134714 +4137,134712 +4138,134776 +4139,132939 +4140,135463 +4141,135464 +4143,132543 +4144,132606 +4145,133071 +4146,135040 +4147,135040 +4148,134585 +4149,134583 +4150,132624 +4151,132624 +4152,132535 +4153,132535 +4154,135640 +4155,135274 +4156,135276 +4157,135276 +4158,133041 +4159,133041 +4160,135276 +4161,135276 +4162,135276 +4163,135276 +4164,132394 +4165,132394 +4166,134059 +4167,133720 +4168,132940 +4169,134117 +4171,134095 +4172,133072 +4173,133071 +4174,133072 +4175,133071 +4176,133072 +4177,133071 +4178,133071 +4179,133072 +4180,133071 +4181,132392 +4184,132392 +4185,135126 +4187,135638 +4188,135640 +4189,135638 +4196,135641 +4203,134298 +4205,135638 +4206,135638 +4209,135641 +4212,135128 +4213,135641 +4215,135637 +4216,135637 +4218,135637 +4219,135637 +4220,135641 +4221,135637 +4224,135637 +4225,135637 +4226,135641 +4228,135641 +4230,135638 +4231,135641 +4232,134298 +4233,132383 +4234,132940 +4235,134374 +4236,135639 +4237,135641 +4238,135641 +4239,133040 +4240,133723 +4241,135641 +4242,132940 +4243,135637 +4244,135641 +4245,135639 +4246,135639 +4247,135641 +4248,135637 +4249,133980 +4250,132535 +4251,135040 +4252,135040 +4253,133736 +4254,134732 +4255,132939 +4256,133072 +4257,134582 +4258,133723 +4259,132606 +4260,135274 +4261,135139 +4262,133730 +4263,134582 +4264,132939 +4265,134582 +4266,132938 +4267,132535 +4268,132539 +4269,133075 +4270,135005 +4271,132602 +4272,132539 +4273,134132 +4274,134138 +4275,132604 +4277,134132 +4278,134341 +4279,134269 +4280,133789 +4281,132608 +4282,133476 +4283,134441 +4284,133344 +4285,133945 +4286,134138 +4287,134237 +4288,133888 +4289,135131 +4290,135574 +4291,135574 +4292,135005 +4293,134581 +4294,132939 +4295,132612 +4296,132539 +4297,132490 +4298,135005 +4299,135005 +4300,132490 +4301,132539 +4302,132612 +4303,132939 +4304,134581 +4305,135005 +4306,132490 +4307,132539 +4308,132612 +4309,132939 +4310,134581 +4311,132760 +4312,134706 +4313,132607 +4314,132537 +4315,132490 +4316,132537 +4317,132607 +4318,132939 +4319,134706 +4320,132760 +4321,132537 +4322,132607 +4323,134706 +4324,135039 +4325,132760 +4326,134950 +4327,134955 +4328,134955 +4329,132490 +4330,132535 +4331,132602 +4332,132938 +4333,134583 +4334,132624 +4335,132490 +4336,132535 +4337,132602 +4338,132938 +4339,134583 +4340,132624 +4341,132624 +4342,132490 +4343,132535 +4344,132602 +4345,132938 +4346,134583 +4347,135274 +4348,135276 +4349,132392 +4350,132395 +4351,133476 +4352,133040 +4353,135146 +4354,135490 +4355,135274 +4356,135637 +4357,134116 +4358,134229 +4359,133438 +4360,133435 +4361,134249 +4362,134432 +4363,133039 +4365,134582 +4366,132606 +4367,134582 +4369,133072 +4370,132939 +4371,132939 +4372,133072 +4373,133072 +4374,132939 +4375,132939 +4376,132606 +4377,134582 +4378,132608 +4379,134582 +4380,132543 +4381,133071 +4382,132602 +4383,132602 +4384,132606 +4385,132541 +4386,133071 +4387,132537 +4388,134582 +4389,132541 +4390,132760 +4391,132759 +4392,132760 +4393,132601 +4394,132760 +4395,134582 +4396,134582 +4397,132604 +4398,134582 +4399,132939 +4400,134955 +4401,134950 +4402,134951 +4403,134956 +4404,134951 +4405,134948 +4406,134948 +4407,132624 +4408,132938 +4409,132939 +4410,132535 +4411,132535 +4412,132624 +4413,132939 +4414,132535 +4415,133071 +4416,134583 +4417,133071 +4418,134583 +4419,134583 +4420,133071 +4421,132624 +4422,132938 +4423,133476 +4424,135637 +4425,135277 +4426,135498 +4427,135614 +4428,132393 +4429,132395 +4430,133476 +4431,135639 +4432,135141 +4433,134303 +4434,134415 +4435,133469 +4436,134360 +4437,134237 +4438,132938 +4439,134582 +4440,132541 +4441,135494 +4442,135614 +4443,135637 +4444,132490 +4445,132490 +4446,133694 +4447,132490 +4448,132606 +4449,132541 +4450,132490 +4451,132760 +4454,133476 +4455,135038 +4456,133072 +4457,134333 +4458,134952 +4459,134377 +4460,132490 +4461,132608 +4462,132609 +4463,132537 +4464,133345 +4465,132624 +4466,132539 +4467,132624 +4468,133071 +4469,134706 +4470,132939 +4471,132604 +4472,132537 +4473,132490 +4474,132760 +4475,134582 +4476,132939 +4477,133072 +4478,132607 +4479,132539 +4481,134582 +4482,135006 +4483,135036 +4484,132541 +4485,132941 +4486,135039 +4487,132543 +4488,135036 +4489,135006 +4490,134582 +4491,135039 +4492,132760 +4493,132539 +4494,132607 +4495,132939 +4496,133072 +4497,134582 +4499,132492 +4500,133693 +4501,132492 +4502,132492 +4503,132495 +4504,132493 +4505,132494 +4506,133693 +4507,132491 +4508,132492 +4509,133694 +4510,133693 +4511,133694 +4512,132492 +4513,132492 +4514,132492 +4515,132492 +4516,132495 +4517,132493 +4518,132495 +4519,132494 +4520,132493 +4521,132500 +4522,132494 +4523,132494 +4524,132493 +4525,132493 +4526,132494 +4527,132498 +4528,132495 +4529,132494 +4530,133693 +4531,132493 +4532,132493 +4533,132492 +4534,132493 +4535,132493 +4536,133693 +4537,132498 +4538,132493 +4539,133693 +4540,132493 +4541,132493 +4542,133693 +4543,132494 +4544,132493 +4545,132495 +4546,132495 +4547,132495 +4548,132491 +4549,132491 +4550,132498 +4551,132493 +4552,132494 +4553,132494 +4554,132498 +4555,132495 +4556,132498 +4557,132492 +4558,132493 +4559,132494 +4560,132494 +4561,132492 +4562,132494 +4563,132495 +4564,132492 +4565,132495 +4566,132494 +4567,132496 +4568,132498 +4569,132493 +4570,132494 +4571,132494 +4572,132494 +4573,132495 +4574,132494 +4575,135145 +4576,134952 +4577,135612 +4578,135617 +4579,135611 +4580,135531 +4581,132493 +4582,133752 +4583,132939 +4584,133639 +4585,133624 +4586,132538 +4587,132484 +4588,135006 +4589,135006 +4590,132493 +4591,132493 +4592,132495 +4593,135039 +4594,135039 +4595,132939 +4596,135006 +4597,135006 +4598,132493 +4599,132492 +4600,132611 +4601,132606 +4602,132493 +4603,134582 +4604,134957 +4605,132495 +4606,132495 +4607,132606 +4608,135641 +4609,133476 +4610,132939 +4611,132611 +4612,134581 +4614,132543 +4615,132543 +4616,135037 +4617,134581 +4618,134581 +4619,134581 +4620,132939 +4621,132939 +4622,132543 +4623,132543 +4624,132543 +4625,132592 +4626,133071 +4627,133071 +4628,133071 +4629,133071 +4630,132539 +4631,132539 +4633,132496 +4634,132495 +4635,135005 +4636,135005 +4637,135005 +4638,135005 +4639,135005 +4640,135005 +4642,132493 +4644,134064 +4647,134441 +4648,134377 +4649,134376 +4650,134070 +4651,134442 +4652,135612 +4653,134440 +4654,133587 +4657,135614 +4658,135128 +4659,134067 +4660,134069 +4661,134442 +4662,134954 +4663,133486 +4664,133944 +4665,134535 +4666,133218 +4672,134535 +4673,134251 +4674,134252 +4675,134254 +4676,134250 +4677,134256 +4678,135426 +4681,134566 +4683,134231 +4684,133276 +4685,132939 +4686,135641 +4687,132938 +4688,133072 +4689,134572 +4690,134579 +4691,134575 +4692,133234 +4693,133233 +4694,133227 +4695,133232 +4696,132493 +4697,135144 +4698,132602 +4701,135421 +4702,133486 +4705,134321 +4706,132394 +4707,135641 +4708,135641 +4709,134361 +4710,134362 +4711,132538 +4712,132541 +4713,132538 +4714,135232 +4715,135235 +4716,135238 +4717,135233 +4718,135234 +4719,135236 +4720,135237 +4721,135240 +4722,135239 +4723,134321 +4724,134298 +4725,135138 +4726,134415 +4727,134416 +4728,134295 +4729,135006 +4730,132495 +4731,132491 +4732,134118 +4733,132500 +4734,132535 +4735,132943 +4736,135272 +4737,135463 +4738,135436 +4739,132612 +4740,135489 +4742,133742 +4743,134948 +4744,134583 +4745,132889 +4746,132911 +4747,132905 +4748,132890 +4749,132912 +4750,132906 +4751,132892 +4752,132891 +4753,133470 +4754,133470 +4755,134235 +4756,134237 +4757,134236 +4758,133741 +4759,134442 +4760,134117 +4761,134118 +4762,133466 +4763,134116 +4764,132939 +4765,134581 +4766,134953 +4767,132624 +4768,132938 +4769,134335 +4770,133481 +4771,133460 +4772,135234 +4773,135641 +4774,135233 +4775,134094 +4776,133280 +4777,134129 +4778,132605 +4779,133975 +4780,133980 +4781,133978 +4782,133977 +4783,133072 +4784,133964 +4785,133072 +4786,132606 +4787,132935 +4788,135325 +4789,132395 +4790,132395 +4791,133476 +4792,135145 +4793,135139 +4794,135276 +4795,132395 +4796,133040 +4797,135637 +4798,135500 +4799,135038 +4800,135325 +4801,135323 +4802,135316 +4803,135325 +4804,135321 +4805,135327 +4806,134353 +4807,133732 +4808,133708 +4809,133892 +4810,133891 +4811,133887 +4812,133887 +4813,133889 +4815,132907 +4816,132894 +4817,135324 +4818,135324 +4819,135325 +4820,135326 +4822,133981 +4823,133890 +4824,134187 +4825,134186 +4826,134338 +4827,133279 +4828,133279 +4829,132608 +4830,134709 +4831,134708 +4832,133040 +4833,135641 +4834,132608 +4835,132539 +4836,134797 +4837,132603 +4838,132601 +4839,134765 +4841,133278 +4842,134139 +4843,134116 +4844,133738 +4845,134416 +4846,132535 +4847,132492 +4849,132496 +4850,132491 +4851,132495 +4852,132495 +4853,132492 +4854,132494 +4855,132937 +4856,132492 +4857,132492 +4858,133693 +4859,132493 +4860,132492 +4864,132496 +4865,132759 +4866,134707 +4867,134070 +4868,134707 +4869,135037 +4870,134582 +4871,132939 +4872,134582 +4873,132543 +4874,132624 +4875,133693 +4876,135039 +4878,133694 +4879,135038 +4880,132498 +4881,132499 +4882,132499 +4883,134582 +4884,135038 +4885,135039 +4886,135039 +4887,135034 +4888,132492 +4890,135034 +4891,135034 +4892,135034 +4893,135034 +4894,135140 +4895,135144 +4896,133485 +4897,133486 +4898,133486 +4899,135034 +4900,135034 +4901,135327 +4902,135034 +4903,135038 +4904,135033 +4905,132499 +4906,135039 +4907,132495 +4908,135323 +4909,135276 +4910,132394 +4911,135274 +4912,134583 +4913,134353 +4914,134075 +4915,132606 +4916,132608 +4918,132939 +4919,132939 +4920,132939 +4921,132540 +4922,135225 +4923,135033 +4924,135033 +4925,135036 +4926,135039 +4927,135039 +4928,134358 +4929,132759 +4930,132759 +4932,134296 +4933,135039 +4934,132381 +4935,135321 +4936,135325 +4937,134400 +4938,132759 +4939,132494 +4940,135039 +4941,135039 +4942,135039 +4943,135036 +4944,132602 +4945,132602 +4946,133707 +4947,133040 +4948,133480 +4949,135240 +4950,135232 +4951,135005 +4953,133942 +4954,132491 +4955,132491 +4956,132539 +4957,132537 +4958,134797 +4961,132603 +4962,132603 +4963,132603 +4964,134364 +4965,133718 +4966,134341 +4967,133944 +4968,135039 +4969,133749 +4970,135039 +4971,135039 +4972,135039 +4973,135039 +4974,135039 +4975,135039 +4976,135040 +4977,135040 +4978,134583 +4979,135321 +4980,135321 +4981,135321 +4982,134956 +4983,134955 +4984,134712 +4985,132394 +4986,132395 +4987,132395 +4988,132491 +4989,132491 +4990,132491 +4991,132493 +4992,132493 +4993,132392 +4994,135145 +4995,135145 +4996,134582 +4997,132392 +4998,134585 +4999,135145 +5000,135036 +5001,135321 +5002,133470 +5003,135036 +5004,135036 +5005,135036 +5007,135325 +5008,135274 +5009,133476 +5010,135146 +5011,135139 +5012,132392 +5013,135637 +5014,132392 +5015,132395 +5016,133476 +5017,132395 +5018,132395 +5019,133723 +5020,135637 +5021,135144 +5022,134116 +5023,133723 +5024,134298 +5025,134298 +5026,132381 +5027,132392 +5028,132392 +5029,132381 +5030,133040 +5031,133040 +5032,133040 +5033,133476 +5034,133476 +5035,133476 +5036,135581 +5037,132392 +5038,135325 +5039,132395 +5040,135325 +5041,132392 +5042,132392 +5043,135271 +5044,135271 +5045,135144 +5046,133040 +5047,133040 +5048,134094 +5049,135275 +5050,135144 +5051,132395 +5052,133476 +5053,135144 +5054,132392 +5055,135271 +5056,132392 +5057,135273 +5058,135273 +5059,133476 +5060,133476 +5061,134298 +5062,135144 +5063,135274 +5064,133041 +5065,132392 +5066,132392 +5067,135274 +5068,135274 +5069,135637 +5070,135144 +5071,135138 +5072,135144 +5073,135143 +5074,135145 +5075,135275 +5076,135637 +5077,134371 +5078,132381 +5080,133345 +5081,133345 +5083,133345 +5084,132381 +5085,132936 +5086,134366 +5087,132393 +5088,132394 +5089,133476 +5090,133476 +5091,132394 +5092,132395 +5093,135036 +5094,135036 +5095,135279 +5096,132394 +5097,132392 +5098,135144 +5099,135143 +5100,133476 +5101,135141 +5102,132395 +5103,135143 +5104,135291 +5105,135326 +5106,135278 +5107,134298 +5108,135146 +5109,135139 +5110,135144 +5111,135146 +5112,135274 +5113,135275 +5114,132381 +5115,135036 +5116,135036 +5117,134295 +5118,132393 +5119,132393 +5120,135144 +5121,135271 +5122,132392 +5123,135275 +5124,132393 +5125,135278 +5126,132394 +5127,135278 +5128,132395 +5129,135274 +5130,135141 +5131,133040 +5132,135144 +5133,135141 +5134,135140 +5135,135143 +5136,133484 +5137,133476 +5138,132624 +5139,135314 +5140,135327 +5141,135321 +5142,135327 +5143,135273 +5144,135325 +5145,135321 +5146,135325 +5147,135321 +5148,135327 +5149,135324 +5150,135274 +5151,135274 +5152,135273 +5153,135321 +5154,135325 +5155,135321 +5156,135314 +5157,135324 +5158,135317 +5159,135324 +5160,132381 +5161,135321 +5162,135326 +5163,135326 +5164,135327 +5165,135325 +5166,135327 +5167,135302 +5168,135325 +5169,135327 +5170,135321 +5171,135325 +5172,135278 +5173,135278 +5174,135278 +5175,135315 +5176,135313 +5177,135277 +5178,135311 +5179,135311 +5180,135272 +5181,135280 +5182,135277 +5183,135273 +5184,135276 +5185,135326 +5186,135324 +5187,135327 +5188,135280 +5189,135278 +5190,135326 +5191,135322 +5192,135277 +5193,135280 +5194,133478 +5195,133481 +5196,133485 +5197,133481 +5198,133483 +5199,133490 +5200,133485 +5201,133039 +5202,133483 +5203,133485 +5204,133485 +5205,133482 +5206,133478 +5207,133482 +5208,133487 +5209,133487 +5210,133490 +5211,133483 +5212,133478 +5213,133481 +5214,133478 +5215,133729 +5216,133487 +5217,133478 +5218,133481 +5219,133485 +5220,133942 +5221,133729 +5222,133476 +5223,133490 +5224,133486 +5225,133481 +5226,133477 +5227,133477 +5228,133488 +5229,133477 +5230,133479 +5231,133479 +5232,133479 +5233,133480 +5235,135033 +5236,134584 +5237,132535 +5238,132938 +5240,135033 +5241,133345 +5242,132736 +5243,132715 +5245,135033 +5246,133345 +5247,132938 +5252,134070 +5253,134368 +5254,132905 +5255,133719 +5256,132538 +5263,133345 +5264,135493 +5269,134368 +5278,133476 +5279,133476 +5280,133476 +5281,135034 +5282,135035 +5283,134339 +5284,134343 +5286,134354 +5287,134341 +5288,135530 +5289,135124 +5290,135574 +5291,135464 +5292,134085 +5293,135530 +5303,132540 +5309,132760 +5310,132760 +5311,132606 +5312,134582 +5313,132938 +5314,134955 +5328,133345 +5329,132495 +5330,133345 +5333,132611 +5335,135006 +5336,135006 +5337,134583 +5338,132492 +5339,134582 +5356,132392 +5357,133485 +5390,132611 +5391,132760 +5392,135500 +5393,135274 +5394,135040 +5395,133752 +5396,134754 +5397,132495 +5398,132492 +5399,132939 +5400,132939 +5401,132539 +5402,132539 +5403,134955 +5404,135139 +5405,135324 +5406,132939 +5407,132542 +5408,133040 +5409,132535 +5410,133476 +5411,134957 +5412,132493 +5413,132493 +5414,135039 +5415,135140 +5416,135421 +5417,135146 +5418,132939 +5419,135140 +5420,132537 +5421,132392 +5422,134957 +5423,133707 +5424,132760 +5425,132602 +5426,134706 +5427,133040 +5428,132606 +5429,135274 +5430,134582 +5431,135327 +5432,134709 +5433,133038 +5434,132606 +5435,132938 +5437,132495 +5438,133041 +5442,133729 +5451,133345 +5452,132539 +5453,133345 +5454,133345 +5455,133345 +5456,133345 +5457,133345 +5458,133345 +5459,133345 +5465,135315 +5466,135327 +5484,132612 +5494,135037 +5495,135039 +5499,134708 +5500,132395 +5501,132395 +5502,132395 +5503,132395 +5504,132395 +5505,132395 +5509,132395 +5510,132392 +5517,132395 +5518,132393 +5519,133479 +5520,133489 +5525,133480 +5526,133476 +5527,133489 +5528,133488 +5529,133345 +5530,133482 +5531,133481 +5532,133476 +5533,133481 +5534,133489 +5535,135324 +5536,135277 +5537,135326 +5538,135311 +5539,135144 +5540,135143 +5541,135144 +5542,135144 +5543,135144 +5546,135143 +5547,135139 +5548,135138 +5549,135141 +5550,135141 +5551,135143 +5552,135139 +5553,135138 +5554,135144 +5555,135141 +5556,135142 +5560,134401 +5561,134402 +5562,134458 +5563,134459 +5564,133718 +5565,133729 +5566,134333 +5567,133473 +5568,133730 +5569,134070 +5577,134581 +5581,135005 +5586,133039 +5629,132609 +5630,132381 +5633,132543 +5635,135127 +5636,135129 +5637,135129 +5638,135129 +5639,132394 +5640,132394 +5641,135639 +5642,133848 +5643,134188 +5644,134581 +5645,132907 +5646,133463 +5647,135464 +5648,135437 +5649,133587 +5650,134301 +5656,134582 +5657,134075 +5658,134404 +5663,132759 +5664,134142 +5665,134147 +5666,134140 +5667,134146 +5668,134143 +5669,134141 +5682,134359 +5683,134361 +5686,135805 +5687,135857 +5688,135464 +5689,134176 +5690,135464 +5692,134708 +5693,134065 +5694,133722 +5695,132938 +5696,136063 +5697,133344 +5698,136063 +5699,134577 +5700,135005 +5702,135005 +5703,134184 +5709,136220 +5710,135005 +5711,132543 +5712,135144 +5713,135144 +5717,134582 +5718,132540 +5720,135144 +5721,135144 +5725,132490 +5726,134582 +5730,135005 +5731,134581 +5738,135005 +5739,132490 +5741,135005 +5747,133732 +5748,134128 +5749,132606 +5750,135323 +5751,134143 +5752,134442 +5753,133277 +5754,132607 +5755,134255 +5766,133721 +5778,132368 +5780,133735 +5800,132496 +5802,135005 +5805,135005 +5806,135139 +5807,135640 +5808,134955 +5816,132543 +5820,132318 +5825,132274 +5826,135005 +5827,132492 +5828,135315 +5829,135315 +5830,135315 +5832,132490 +5876,135809 +5877,135006 +5878,133694 +5879,135005 +5880,135006 +5881,135006 +5883,135638 +5885,132889 +5886,134302 +5887,133587 +5888,134719 +5891,136113 +5898,134188 +5899,136065 +5900,132535 +5901,132535 +5902,132535 +5903,135492 +5908,134117 +5909,135492 +5911,132543 +5914,133940 +5915,135144 +5916,135144 +5917,136210 +5918,133473 +5920,136232 +5921,135139 +5922,135464 +5923,135464 +5924,133288 +5925,135574 +5926,134336 +5927,134336 +5928,132089 +5929,134797 +5931,134754 +5932,134754 +5933,133040 +5934,133977 +5935,133977 +5936,134184 +5937,135325 +5938,135325 +5939,135574 +5940,133564 +5941,133215 +5942,132939 +5943,132394 +5944,135032 +5945,133942 +5946,135139 +5947,134582 +5948,134582 +5949,135130 +5950,135144 +5951,135005 +5952,135005 +5957,134184 +5958,132496 +5959,134187 +5960,135139 +5968,135139 +5969,135139 +5970,135139 +5971,135139 +5972,135139 +5973,135139 +5974,135144 +5975,135463 +5976,135463 +5977,135464 +5978,135464 +5979,134413 +5980,133723 +5981,134161 +5991,132539 +5992,132539 +5995,135005 +5996,132382 +5997,132381 +5998,132384 +5999,132384 +6000,132089 +6001,134134 +6002,133725 +6006,134084 +6007,135230 +6008,135230 +6009,134336 +6010,132939 +6011,133343 +6012,133344 +6013,133344 +6014,134335 +6015,134415 +6016,134434 +6017,134458 +6023,134582 +6024,132541 +6081,135139 +6093,135139 +6097,135139 +6098,135464 +6099,135139 +6100,135139 +6101,135139 +6105,135139 +6106,135464 +6107,135464 +6108,135463 +6109,135464 +6110,135464 +6111,135463 +6125,135464 +6128,135144 +6135,133071 +6138,135139 +6139,135464 +6140,135139 +6146,133071 +6148,135144 +6149,135144 +6150,133748 +6158,134712 +6168,135144 +6170,132490 +6171,134582 +6172,132541 +6175,132539 +6180,135039 +6189,134581 +6190,132543 +6192,134584 +6197,134582 +6198,132541 +6199,133344 +6207,133491 +6209,132541 +6210,133344 +6215,132490 +6216,133072 +6220,132539 +6231,135493 +6232,135493 +6233,135493 +6234,135493 +6235,135493 +6236,133942 +6238,132911 +6244,133788 +6247,132490 +6249,135638 +6251,132490 +6256,132394 +6257,132395 +6258,132393 +6259,134708 +6260,132395 +6261,134707 +6262,132392 +6263,132395 +6264,134708 +6265,132395 +6266,132394 +6267,134707 +6268,132392 +6269,132394 +6270,134941 +6271,134948 +6272,134956 +6273,134948 +6274,134956 +6275,134955 +6276,134955 +6277,132491 +6278,132940 +6279,133072 +6281,132499 +6282,135005 +6284,135037 +6285,132493 +6286,132940 +6287,133072 +6288,132939 +6289,133071 +6290,133072 +6291,132939 +6292,132611 +6293,135005 +6294,134581 +6295,132939 +6296,135006 +6297,134581 +6303,135005 +6304,132493 +6305,132606 +6306,132491 +6307,135006 +6308,134581 +6309,132609 +6310,133694 +6311,134582 +6313,132496 +6315,132495 +6316,135006 +6318,132537 +6319,135006 +6320,135005 +6321,135005 +6322,132540 +6323,135005 +6324,132491 +6325,132493 +6326,134720 +6327,133974 +6328,133969 +6329,134142 +6330,134147 +6331,134187 +6333,135230 +6334,135230 +6335,133888 +6336,132383 +6337,133434 +6338,134229 +6340,134754 +6342,133952 +6343,133968 +6344,133950 +6345,133950 +6346,133438 +6347,133748 +6348,133970 +6349,133720 +6350,133970 +6352,133949 +6353,133948 +6354,136210 +6355,134186 +6356,134065 +6357,134415 +6358,134231 +6359,134514 +6360,134296 +6367,133622 +6368,134232 +6369,135463 +6371,133849 +6372,133947 +6373,134743 +6374,134797 +6375,133728 +6376,134188 +6377,134184 +6378,133581 +6379,133587 +6380,134187 +6381,134712 +6383,133752 +6385,133952 +6387,134181 +6388,134059 +6389,134713 +6390,133978 +6391,133977 +6393,134514 +6394,134141 +6395,133751 +6396,133849 +6397,134336 +6399,133964 +6400,134743 +6401,134712 +6402,133981 +6403,134187 +6404,134140 +6405,134146 +6406,133748 +6409,134941 +6410,133975 +6411,134143 +6412,133588 +6413,133951 +6414,133748 +6415,133075 +6416,134184 +6417,133944 +6418,134414 +6419,133970 +6420,133980 +6421,132381 +6422,133943 +6423,134944 +6424,133435 +6425,133945 +6426,134336 +6427,134341 +6428,133748 +6429,132907 +6430,133633 +6431,135530 +6432,135641 +6433,135637 +6434,135640 +6435,135638 +6436,135641 +6437,135637 +6438,135641 +6439,135641 +6440,135637 +6441,135637 +6442,135641 +6443,135641 +6444,135637 +6445,135641 +6446,135641 +6447,134298 +6448,135639 +6449,135641 +6450,135639 +6451,135639 +6452,135638 +6453,135637 +6454,135641 +6455,133723 +6456,134298 +6457,135641 +6458,135128 +6459,134298 +6460,135641 +6464,135640 +6465,135638 +6466,135638 +6467,135639 +6468,135637 +6469,135637 +6470,135637 +6471,135641 +6472,135637 +6473,134295 +6474,133980 +6475,135637 +6476,135638 +6477,135126 +6478,134412 +6479,133939 +6480,135033 +6483,133436 +6484,133434 +6485,134414 +6486,133722 +6487,133436 +6488,133941 +6489,133939 +6490,133280 +6491,132767 +6492,133884 +6493,134442 +6494,133279 +6495,134336 +6496,134116 +6497,133282 +6498,133750 +6499,134414 +6501,134412 +6502,133438 +6503,134325 +6504,135231 +6505,133038 +6506,134334 +6507,133436 +6508,134431 +6509,134374 +6510,133281 +6511,135279 +6512,134442 +6513,135229 +6514,133435 +6515,133439 +6516,134442 +6517,133277 +6518,134442 +6519,134442 +6520,135126 +6521,134095 +6522,133276 +6524,133938 +6525,134301 +6526,133438 +6527,133277 +6529,134754 +6530,134743 +6531,134718 +6532,134718 +6533,134718 +6534,134718 +6535,134718 +6536,134718 +6537,135126 +6538,133343 +6539,133288 +6540,134376 +6541,134799 +6543,133279 +6545,135033 +6546,134132 +6547,134336 +6548,133039 +6549,133436 +6550,133434 +6551,134514 +6552,134249 +6553,133435 +6554,134335 +6555,135124 +6556,133750 +6557,135033 +6560,133939 +6561,133728 +6562,134377 +6563,134087 +6564,134333 +6565,133438 +6566,135140 +6567,133486 +6568,134708 +6569,133718 +6572,133941 +6573,133941 +6574,133942 +6575,133942 +6576,133941 +6577,133941 +6578,133941 +6580,133942 +6581,134249 +6582,134249 +6583,133942 +6584,133942 +6585,133942 +6589,134709 +6590,135614 +6591,135610 +6592,135612 +6593,135612 +6594,135616 +6595,134537 +6596,134537 +6597,135617 +6598,135614 +6599,135610 +6600,135612 +6601,135610 +6602,135614 +6603,135611 +6604,135531 +6605,135614 +6606,135610 +6607,135611 +6609,134583 +6610,133343 +6611,135615 +6612,135614 +6613,134118 +6614,134133 +6615,132538 +6616,132381 +6617,135493 +6618,134063 +6619,134321 +6620,135464 +6623,133752 +6624,134187 +6625,133707 +6626,134304 +6627,134294 +6628,134304 +6629,134304 +6630,133725 +6631,133719 +6632,133215 +6633,133707 +6635,134183 +6636,133708 +6637,132535 +6638,132535 +6639,133472 +6640,133472 +6641,134413 +6642,134297 +6643,134064 +6644,134366 +6645,133742 +6646,134305 +6647,135229 +6651,133723 +6652,135240 +6655,134367 +6656,133722 +6657,135233 +6658,134303 +6659,134566 +6660,134355 +6661,134188 +6663,134106 +6664,135232 +6665,134413 +6666,134298 +6667,133435 +6668,133718 +6669,134297 +6670,133345 +6671,134297 +6672,133736 +6673,134089 +6674,133730 +6675,134361 +6676,132889 +6677,133750 +6678,133970 +6679,134353 +6680,133970 +6681,133732 +6682,132936 +6683,134359 +6684,134363 +6685,134358 +6686,134368 +6687,134369 +6688,134076 +6689,134075 +6690,134437 +6691,134360 +6692,134339 +6693,134339 +6694,134343 +6695,135229 +6697,134304 +6698,134353 +6699,134321 +6700,134368 +6701,132381 +6702,132889 +6703,134437 +6704,134360 +6705,134361 +6706,134238 +6707,134065 +6708,134237 +6709,134235 +6710,134238 +6711,134236 +6712,134237 +6713,134235 +6714,134237 +6715,132539 +6716,135039 +6717,132939 +6718,134582 +6719,132603 +6720,132542 +6721,132603 +6722,132715 +6723,132939 +6724,134582 +6725,132939 +6726,132493 +6727,133072 +6728,135006 +6729,135039 +6730,132542 +6731,134706 +6732,135039 +6733,132493 +6734,133072 +6735,132939 +6736,135039 +6737,132495 +6738,132602 +6739,132611 +6740,135006 +6741,132542 +6742,132603 +6743,132715 +6744,132939 +6745,134582 +6746,132538 +6747,132493 +6748,132484 +6749,132939 +6750,134582 +6751,132939 +6752,132939 +6753,132495 +6754,134585 +6755,132492 +6756,132606 +6757,135006 +6758,132603 +6759,134706 +6760,132491 +6761,135006 +6762,132542 +6763,132603 +6764,132715 +6765,132939 +6766,134582 +6767,132493 +6768,135006 +6769,133072 +6770,134706 +6771,134706 +6772,134582 +6773,134582 +6774,134582 +6775,135039 +6776,132495 +6777,132537 +6778,134582 +6779,132542 +6780,134582 +6781,135039 +6782,135006 +6783,132381 +6784,132715 +6785,132939 +6786,134582 +6787,132603 +6788,132939 +6789,134582 +6790,133040 +6791,133040 +6792,133040 +6793,133039 +6794,133485 +6795,133485 +6796,133483 +6797,133476 +6798,133039 +6799,133477 +6802,134583 +6803,132542 +6804,133343 +6806,133479 +6807,133041 +6808,133476 +6809,133040 +6810,133040 +6811,133041 +6812,133041 +6813,133489 +6814,133041 +6815,135229 +6816,135005 +6819,132492 +6820,132535 +6821,132606 +6822,132938 +6823,133071 +6824,135229 +6825,133345 +6827,132535 +6828,132602 +6830,132492 +6831,132939 +6832,135038 +6833,132493 +6834,132542 +6835,132603 +6836,132939 +6837,133072 +6838,132938 +6839,133071 +6840,135038 +6841,132535 +6842,132938 +6843,132602 +6844,132943 +6845,132535 +6846,132939 +6847,132492 +6849,134583 +6850,134104 +6851,134104 +6852,132606 +6853,132492 +6854,132535 +6855,132602 +6856,132938 +6857,133071 +6858,133071 +6859,132939 +6860,132535 +6861,132606 +6862,132492 +6863,132939 +6864,132492 +6865,134582 +6866,132543 +6869,132535 +6870,132606 +6871,132938 +6872,132492 +6873,133071 +6874,135034 +6875,132492 +6876,132535 +6877,133070 +6878,132602 +6879,135040 +6880,132535 +6882,134583 +6883,132937 +6884,132608 +6885,132535 +6886,133072 +6887,132535 +6888,132606 +6889,133071 +6890,133070 +6891,132535 +6892,133071 +6893,132939 +6894,132604 +6895,133070 +6896,132943 +6897,133071 +6898,132535 +6899,132602 +6900,133071 +6901,132939 +6902,132495 +6903,132535 +6904,132602 +6905,132938 +6906,135038 +6907,132535 +6909,132543 +6911,132495 +6912,135036 +6913,132604 +6914,135038 +6915,132602 +6916,135006 +6919,135038 +6920,132938 +6921,132939 +6922,132938 +6923,132498 +6924,132604 +6925,134938 +6926,132493 +6927,134938 +6928,135040 +6929,135036 +6930,132939 +6931,132535 +6932,134583 +6933,134585 +6934,132602 +6935,135040 +6936,132535 +6937,132939 +6938,132535 +6939,133074 +6940,132939 +6941,135040 +6942,132535 +6943,132939 +6944,132535 +6945,133343 +6946,132498 +6947,132535 +6948,132602 +6949,132938 +6951,134583 +6952,132535 +6953,132604 +6954,132938 +6955,132938 +6956,132535 +6958,132495 +6959,132535 +6960,132939 +6961,132490 +6962,132938 +6963,132495 +6964,132495 +6965,132535 +6966,132602 +6967,132938 +6968,132495 +6969,132938 +6970,132606 +6971,135034 +6972,132535 +6973,132602 +6974,133071 +6975,132938 +6976,133345 +6977,132602 +6979,133071 +6980,132606 +6981,132498 +6982,132938 +6983,132493 +6984,132535 +6985,132606 +6986,132938 +6987,132535 +6988,133076 +6989,132624 +6990,133071 +6991,132937 +6992,133070 +6993,132535 +6994,132535 +6995,132624 +6996,132605 +6997,132535 +6998,132602 +6999,132938 +7000,132939 +7001,132492 +7002,132535 +7003,132535 +7004,135034 +7005,132608 +7006,132492 +7007,132492 +7008,133276 +7012,134229 +7013,133728 +7014,134937 +7015,134938 +7016,132759 +7017,132535 +7018,132938 +7019,135033 +7020,135574 +7021,135574 +7022,135128 +7023,133720 +7024,135234 +7025,132608 +7026,134075 +7029,132543 +7030,135144 +7031,135229 +7032,135005 +7035,132381 +7036,133730 +7037,135233 +7038,134166 +7039,133944 +7040,132392 +7041,134335 +7042,133721 +7043,134303 +7044,133730 +7045,134128 +7046,132496 +7047,134269 +7048,133723 +7049,134334 +7050,134085 +7051,134086 +7052,134084 +7053,134128 +7054,133724 +7055,135005 +7056,133345 +7059,132612 +7060,132601 +7061,132494 +7062,135032 +7063,135032 +7064,134070 +7065,135437 +7066,133750 +7067,132905 +7068,134058 +7069,135637 +7070,132607 +7071,134368 +7072,134063 +7073,133735 +7074,134400 +7075,133435 +7076,133218 +7077,132768 +7078,134184 +7080,134583 +7081,132542 +7082,133343 +7083,132606 +7084,135005 +7085,134940 +7086,134371 +7087,134058 +7088,133565 +7089,133723 +7090,133280 +7092,132381 +7093,133278 +7094,135231 +7095,134170 +7096,134707 +7097,133622 +7098,135641 +7099,133728 +7100,133730 +7101,133732 +7102,133730 +7103,133731 +7104,133730 +7105,134437 +7106,134094 +7107,134359 +7108,132938 +7110,133884 +7111,132484 +7112,134354 +7113,133950 +7116,133343 +7117,132612 +7118,132612 +7119,134117 +7120,134118 +7121,134754 +7122,134085 +7123,133437 +7124,134797 +7125,134754 +7126,133718 +7127,133848 +7128,134944 +7129,134298 +7130,133977 +7131,133438 +7132,132604 +7133,133277 +7134,133723 +7135,134299 +7136,134442 +7137,133848 +7138,133741 +7139,133733 +7140,134400 +7141,134170 +7142,134338 +7143,135463 +7144,132318 +7145,133722 +7146,134070 +7147,135276 +7148,134577 +7149,134413 +7150,133731 +7151,134441 +7152,133741 +7153,134514 +7154,133722 +7155,134514 +7156,135035 +7157,135234 +7158,133218 +7159,132608 +7161,133476 +7162,134138 +7163,133707 +7164,134161 +7165,134231 +7166,133622 +7167,134070 +7168,134341 +7169,134353 +7170,134360 +7171,133849 +7174,134583 +7175,134717 +7176,134301 +7177,134431 +7179,134584 +7180,132543 +7182,134583 +7184,134416 +7185,134076 +7186,133725 +7187,133473 +7188,134174 +7189,134116 +7193,134583 +7195,132274 +7196,133974 +7197,133281 +7198,132767 +7199,135005 +7202,136063 +7203,136040 +7204,132935 +7205,134132 +7206,134732 +7207,134294 +7208,132602 +7209,133721 +7210,134334 +7213,134582 +7214,132543 +7215,134064 +7216,135463 +7217,134414 +7218,133434 +7219,133639 +7220,134064 +7221,134116 +7229,132274 +7230,132179 +7231,132179 +7232,134572 +7233,133466 +7234,133470 +7235,136220 +7236,133437 +7237,132760 +7238,132543 +7239,135272 +7240,134184 +7241,134184 +7242,134143 +7243,133218 +7244,133435 +7245,134335 +7246,134414 +7247,134416 +7248,134415 +7249,133434 +7251,133718 +7252,135034 +7253,135233 +7254,134514 +7256,133587 +7257,134336 +7259,134068 +7260,133787 +7261,134333 +7262,134719 +7263,133472 +7264,134415 +7266,136063 +7267,134075 +7268,134442 +7269,134338 +7270,134937 +7271,133277 +7273,134188 +7274,136065 +7275,134400 +7276,133942 +7277,133280 +7278,135464 +7279,134132 +7280,134400 +7281,132939 +7282,132943 +7283,134184 +7284,132608 +7285,134325 +7286,133751 +7287,133944 +7288,136063 +7289,133633 +7290,135437 +7291,134414 +7292,135463 +7293,133738 +7294,134366 +7295,132368 +7296,132368 +7297,135436 +7298,135138 +7299,136232 +7300,135809 +7301,135805 +7302,134325 +7303,135143 +7304,135139 +7305,135143 +7308,135138 +7309,135144 +7310,135145 +7311,135325 +7312,135131 +7313,135321 +7314,135325 +7315,135274 +7316,135326 +7317,135325 +7318,135278 +7319,135311 +7320,135311 +7321,135321 +7322,135280 +7323,135278 +7324,135326 +7325,135311 +7326,134441 +7328,133940 +7329,133218 +7330,134342 +7331,132890 +7332,132894 +7333,132907 +7334,132912 +7335,133227 +7336,134065 +7337,134181 +7338,134304 +7339,134117 +7340,134579 +7341,133436 +7342,134069 +7343,133216 +7344,134376 +7345,134321 +7346,134183 +7347,134362 +7348,134354 +7349,134732 +7350,133724 +7352,133217 +7353,134106 +7354,134353 +7355,133215 +7356,133218 +7357,134339 +7358,134441 +7359,134070 +7361,136071 +7363,132912 +7364,133940 +7365,134440 +7366,133276 +7367,134954 +7368,134321 +7369,134341 +7370,133622 +7371,134377 +7372,133587 +7373,134361 +7374,134250 +7375,133486 +7376,133232 +7377,135128 +7378,134185 +7380,134087 +7381,134413 +7382,134252 +7383,132889 +7384,132892 +7385,134183 +7387,133944 +7388,134254 +7389,133233 +7390,133227 +7391,133216 +7392,133234 +7393,134105 +7394,133884 +7395,134185 +7396,133939 +7397,134535 +7399,134303 +7400,134360 +7401,134074 +7402,134070 +7403,132906 +7404,133218 +7406,134412 +7407,133972 +7408,133587 +7409,134085 +7410,134256 +7411,134065 +7412,134255 +7413,134118 +7414,133848 +7415,134186 +7416,133974 +7417,133588 +7418,132911 +7419,135325 +7420,135274 +7421,132715 +7422,134582 +7423,133071 +7424,132715 +7425,133276 +7426,132392 +7427,132392 +7428,132392 +7429,132392 +7430,134294 +7431,132392 +7432,133486 +7433,135638 +7434,135641 +7437,135128 +7438,133041 +7439,133040 +7440,133040 +7441,133040 +7442,133041 +7443,133964 +7447,133941 +7448,133941 +7449,133942 +7450,133611 +7451,133609 +7452,133610 +7453,133942 +7454,133941 +7455,133941 +7456,133938 +7459,135129 +7460,134249 +7461,134249 +7462,133974 +7463,133974 +7464,135127 +7465,134714 +7466,134717 +7467,134787 +7468,133942 +7469,133729 +7473,134719 +7474,134719 +7475,134718 +7476,133476 +7477,133490 +7478,133491 +7479,136040 +7480,135131 +7481,135130 +7482,135271 +7483,135274 +7484,135274 +7485,135325 +7486,135277 +7487,135274 +7488,135274 +7489,135273 +7490,135274 +7491,135280 +7492,135274 +7493,134707 +7494,134520 +7495,134435 +7496,134435 +7497,134428 +7498,135040 +7499,132602 +7500,133950 +7501,134183 +7502,132542 +7503,133343 +7508,132392 +7517,132604 +7524,135225 +7525,135321 +7526,135321 +7528,133072 +7529,133072 +7530,132939 +7531,135613 +7532,135610 +7533,134582 +7537,132542 +7540,132938 +7544,134413 +7545,132490 +7547,133762 +7550,132610 +7551,135006 +7552,135006 +7553,135038 +7554,132535 +7555,135321 +7556,133041 +7557,134249 +7558,133040 +7559,134952 +7560,134582 +7563,132492 +7565,134230 +7566,133748 +7568,134732 +7569,133288 +7570,133288 +7571,132940 +7572,134457 +7573,134183 +7574,132490 +7578,132543 +7583,132535 +7585,133758 +7587,134582 +7588,133688 +7589,133688 +7590,132392 +7593,134251 +7594,134257 +7595,134252 +7596,133677 +7597,133040 +7598,133687 +7600,135493 +7601,133680 +7602,134520 +7603,135493 +7604,135500 +7607,134582 +7612,133854 +7613,133344 +7624,133709 +7625,133710 +7626,133713 +7627,133712 +7629,134332 +7630,133471 +7636,133743 +7637,133743 +7638,134706 +7649,133469 +7653,132539 +7662,132493 +7670,133072 +7678,132490 +7694,134331 +7695,134331 +7696,134459 +7697,134459 +7705,136147 +7706,132089 +7712,133276 +7713,135240 +7714,134431 +7715,134435 +7716,134435 +7717,132905 +7718,133611 +7719,134377 +7721,132089 +7722,135426 +7723,133854 +7724,133072 +7725,135005 +7726,133460 +7728,132490 +7729,134582 +7730,132542 +7733,133461 +7734,133279 +7735,133279 +7736,133462 +7737,134236 +7738,134412 +7739,133763 +7740,134366 +7741,133731 +7742,136232 +7743,134328 +7744,134328 +7746,132490 +7747,133345 +7749,135005 +7750,132539 +7767,134583 +7771,134583 +7774,135006 +7776,132535 +7781,134582 +7786,135039 +7789,132541 +7791,133849 +7798,134327 +7801,133344 +7803,135530 +7817,135145 +7823,132939 +7824,134955 +7825,135006 +7826,135006 +7827,134235 +7828,133587 +7829,132089 +7831,135006 +7834,134582 +7835,132535 +7836,135039 +7837,135010 +7838,135013 +7839,132997 +7840,132996 +7841,132995 +7842,132997 +7843,135018 +7844,135020 +7845,135009 +7846,135021 +7847,135007 +7848,135011 +7849,135012 +7850,135013 +7851,133762 +7852,133763 +7853,135005 +7854,132491 +7855,134583 +7856,133976 +7857,135005 +7858,132491 +7859,135006 +7860,135005 +7865,132089 +7866,135139 +7867,133486 +7879,132539 +7880,132539 +7881,132492 +7882,135018 +7885,133884 +7886,134298 +7887,135139 +7888,133712 +7889,133710 +7890,132606 +7891,133072 +7892,133756 +7897,135006 +7898,135006 +7899,133434 +7900,134582 +7901,132392 +7902,135031 +7903,135012 +7904,135020 +7905,135022 +7906,135029 +7907,135011 +7908,135016 +7909,135030 +7911,135009 +7912,135009 +7913,132762 +7914,132761 +7916,132761 +7918,132766 +7921,132621 +7922,132620 +7923,132621 +7924,132761 +7925,132761 +7926,132765 +7927,132762 +7928,134230 +7929,132607 +7930,132607 +7931,135638 +7932,132492 +7933,132393 +7934,135229 +7936,134185 +7937,133072 +7944,132490 +7945,134583 +7947,134583 +7948,134583 +7950,134583 +7951,134166 +7952,133754 +7953,132606 +7954,132606 +7955,134938 +7956,134943 +7957,134938 +7964,132493 +7965,132392 +7968,132715 +7969,132543 +7972,132543 +7973,132543 +7975,134721 +7976,134721 +7977,135574 +7978,135130 +7979,133768 +7980,132274 +7982,135463 +7983,134132 +7984,134132 +7985,133718 +7986,136155 +7987,136067 +7988,133890 +7989,133721 +7990,134370 +7991,133849 +7992,133952 +7993,133040 +7994,133952 +7995,133749 +7996,133891 +7997,133973 +7998,133969 +7999,133721 +8000,135327 +8001,132395 +8007,133723 +8008,134300 +8009,134300 +8011,133038 +8013,134333 +8014,133849 +8016,135315 +8017,133884 +8024,134333 +8025,134333 +8026,135230 +8027,134134 +8028,133723 +8029,134238 +8030,134238 +8031,134237 +8032,134334 +8033,135138 +8038,133072 +8039,135238 +8040,133741 +8042,134236 +8043,134333 +8044,134131 +8047,134433 +8048,134432 +8049,134712 +8050,134431 +8051,136224 +8052,133587 +8054,132543 +8055,134584 +8060,135229 +8061,135005 +8062,132541 +8067,135229 +8068,133071 +8077,132539 +8078,135271 +8079,134581 +8080,133345 +8082,134583 +8088,133973 +8089,132611 +8090,135316 +8092,133737 +8093,133737 +8094,133742 +8095,135614 +8096,133345 +8097,133460 +8098,135039 +8099,135489 +8100,133481 +8101,133763 +8102,135489 +8103,135490 +8104,135495 +8105,135491 +8106,135493 +8107,135490 +8108,134582 +8109,134582 +8110,134582 +8111,132624 +8112,132624 +8114,134374 +8115,134436 +8116,133436 +8117,133735 +8118,134378 +8119,133749 +8120,134335 +8121,134566 +8122,135139 +8123,135530 +8124,135419 +8127,133890 +8132,134334 +8141,132604 +8146,132543 +8181,134582 +8185,134582 +8197,132604 +8201,132604 +8232,134413 +8233,136245 +8256,135614 +8257,135615 +8258,135615 +8263,134582 +8264,134582 +8265,134582 +8266,133694 +8269,133627 +8270,133625 +8271,133634 +8272,135327 +8273,135324 +8274,135327 +8275,135321 +8276,135327 +8277,135321 +8278,135326 +8279,135325 +8280,135302 +8281,133058 +8282,135145 +8283,134437 +8284,134303 +8285,133053 +8286,134176 +8287,133490 +8289,134176 +8290,135994 +8291,134712 +8292,132938 +8293,132543 +8294,132611 +8295,132499 +8296,134955 +8297,132089 +8298,133052 +8299,135491 +8308,132537 +8311,135229 +8312,132381 +8324,132624 +8325,132490 +8326,134583 +8327,132624 +8328,132490 +8329,134583 +8330,132541 +8331,132624 +8333,132624 +8334,132541 +8335,132624 +8336,132624 +8338,132541 +8339,132624 +8340,132541 +8341,132624 +8342,134583 +8343,132541 +8354,132541 +8359,132624 +8367,132624 +8369,132541 +8371,132624 +8372,132541 +8373,132543 +8374,135037 +8375,132496 +8376,135131 +8377,135131 +8378,135131 +8379,134294 +8381,132622 +8382,132623 +8383,132620 +8384,133641 +8385,135142 +8386,135142 +8391,132541 +8393,133343 +8396,132490 +8399,135038 +8405,132624 +8406,134583 +8411,132624 +8412,134583 +8415,133072 +8417,132624 +8419,132492 +8423,132611 +8427,132624 +8429,133764 +8436,134797 +8437,132611 +8438,135138 +8439,135276 +8440,134582 +8441,133753 +8442,133642 +8444,135005 +8445,132767 +8446,133693 +8447,132417 +8448,135641 +8449,132939 +8450,132939 +8451,132939 +8452,134732 +8453,134715 +8454,132410 +8455,132405 +8456,132405 +8457,132415 +8458,132397 +8459,132405 +8460,132408 +8461,132415 +8462,132405 +8463,132417 +8464,132415 +8465,132417 +8466,132417 +8467,132417 +8468,132415 +8469,132405 +8470,132408 +8471,132620 +8472,135421 +8473,135419 +8474,135419 +8475,135419 +8476,132418 +8477,132408 +8478,135421 +8479,135421 +8480,132417 +8481,132417 +8482,132417 +8483,132402 +8484,132402 +8485,135419 +8486,135419 +8487,132417 +8488,135421 +8489,132397 +8490,132402 +8491,132402 +8492,132402 +8493,132405 +8494,132405 +8495,135421 +8496,135419 +8497,135421 +8498,135419 +8499,132401 +8500,135424 +8501,135424 +8502,132408 +8503,132409 +8504,132408 +8505,132416 +8506,132417 +8507,132408 +8508,132408 +8509,132392 +8510,135423 +8511,135424 +8512,132402 +8513,132402 +8514,132408 +8515,135420 +8516,135420 +8517,132409 +8518,134721 +8519,132408 +8520,132417 +8521,132409 +8522,132397 +8523,134721 +8524,135420 +8525,132402 +8526,132409 +8527,135423 +8528,135423 +8529,135420 +8530,135423 +8531,135420 +8532,135420 +8533,132408 +8534,135424 +8535,135423 +8536,135424 +8537,135424 +8538,135424 +8539,135424 +8540,132402 +8543,134765 +8544,134765 +8545,134776 +8546,134798 +8547,134798 +8555,135638 +8556,135145 +8557,134955 +8560,135231 +8561,133849 +8562,134070 +8563,134304 +8564,134304 +8565,133052 +8566,133052 +8567,133043 +8568,133057 +8569,133060 +8570,133048 +8571,133045 +8572,133046 +8573,133048 +8574,133042 +8575,133046 +8576,133057 +8577,133041 +8578,133045 +8579,133052 +8580,133046 +8581,133046 +8582,133045 +8583,133045 +8584,133053 +8585,133053 +8586,133052 +8587,133046 +8588,133052 +8589,133046 +8590,133053 +8592,133042 +8593,133046 +8594,133052 +8595,133061 +8596,133041 +8597,133052 +8598,133046 +8599,133052 +8600,133046 +8601,133053 +8602,133052 +8603,133671 +8604,133278 +8609,134161 +8616,132089 +8617,134414 +8618,134296 +8619,135864 +8620,135864 +8621,132276 +8622,132995 +8623,133465 +8624,134939 +8625,133713 +8626,134938 +8627,134721 +8628,134330 +8629,132154 +8630,133471 +8631,133635 +8633,135007 +8634,132747 +8635,135011 +8636,135009 +8637,132747 +8638,132638 +8639,132743 +8640,132721 +8641,132634 +8642,132748 +8643,135018 +8644,132631 +8645,132630 +8646,132724 +8647,132725 +8648,132724 +8649,132723 +8650,132724 +8651,132634 +8652,132627 +8653,135012 +8654,132725 +8655,132724 +8656,132626 +8657,132725 +8658,135010 +8659,135007 +8660,132721 +8661,132715 +8662,132760 +8663,132628 +8664,132722 +8665,132723 +8666,135011 +8667,132724 +8668,132741 +8669,132722 +8670,135010 +8671,135014 +8672,132627 +8673,135009 +8674,135017 +8675,132637 +8676,132723 +8677,135020 +8678,132628 +8679,132724 +8680,135007 +8681,135010 +8682,132723 +8683,132631 +8684,132724 +8685,135009 +8686,133053 +8687,133052 +8688,133052 +8689,133052 +8690,133052 +8691,133052 +8692,133041 +8693,133059 +8694,133053 +8695,132719 +8696,132719 +8697,135013 +8698,135009 +8699,135018 +8700,135018 +8701,132724 +8702,135014 +8703,132722 +8704,132722 +8705,135006 +8706,135022 +8707,135014 +8708,135009 +8709,132721 +8710,132724 +8711,134257 +8712,132724 +8713,132721 +8714,132725 +8715,135009 +8716,132736 +8717,135011 +8718,132723 +8719,132739 +8720,135022 +8721,135008 +8722,135008 +8723,132724 +8724,132723 +8725,132741 +8726,132724 +8727,135007 +8728,132741 +8729,133736 +8731,132761 +8732,132724 +8733,135808 +8734,134235 +8735,134235 +8736,134237 +8737,134237 +8738,135006 +8740,134581 +8742,132724 +8743,133708 +8744,132089 +8745,135575 +8746,135575 +8747,135575 +8748,132397 +8749,132492 +8750,133762 +8751,134295 +8752,134715 +8753,133072 +8754,132739 +8755,135637 +8756,133755 +8757,133764 +8758,133754 +8759,133767 +8760,133759 +8761,133770 +8762,133759 +8763,133757 +8764,133769 +8765,133753 +8766,133756 +8767,133760 +8768,133753 +8769,133756 +8770,133770 +8771,133766 +8772,133764 +8773,133767 +8774,133754 +8775,133762 +8776,133765 +8777,133765 +8778,133766 +8779,133766 +8780,133763 +8781,133760 +8782,133761 +8783,133770 +8784,133764 +8785,133757 +8786,133753 +8787,133763 +8788,133758 +8789,133757 +8790,133761 +8791,133760 +8792,133760 +8793,133756 +8794,134357 +8795,133756 +8796,133758 +8797,133754 +8798,133755 +8799,133755 +8800,133754 +8801,133766 +8802,135997 +8803,133486 +8816,133345 +8818,134581 +8822,134581 +8823,132543 +8842,134581 +8859,133643 +8860,133631 +8861,133629 +8864,133754 +8865,133757 +8866,133854 +8867,134063 +8869,132496 +8870,135040 +8871,132496 +8878,133071 +8879,133071 +8896,135139 +8899,135423 +8902,134240 +8903,134240 +8904,135139 +8905,132491 +8907,132634 +8908,132634 +8910,132634 +8911,132611 +8912,132604 +8913,134304 +8914,134305 +8915,133741 +8916,133434 +8917,134338 +8918,133434 +8919,133469 +8921,134797 +8922,134797 +8923,134305 +8924,134304 +8925,132997 +8926,132997 +8927,134329 +8928,132763 +8929,134431 +8930,132996 +8931,132996 +8932,133849 +8933,133469 +8934,134343 +8935,132623 +8936,133471 +8937,134412 +8938,134412 +8939,134339 +8940,134339 +8941,134360 +8942,134368 +8944,135005 +8951,134239 +8952,134356 +8969,134582 +8970,135005 +8971,135005 +9009,135005 +9011,135005 +9031,135005 +9036,132719 +9037,135280 +9038,135038 +9040,132719 +9051,132539 +9055,135280 +9056,132725 +9057,133484 +9058,134754 +9060,135489 +9061,135492 +9062,135473 +9063,135473 +9070,133071 +9077,135036 +9080,132542 +9081,132541 +9082,132938 +9086,133276 +9090,136218 +9103,133288 +9105,134581 +9106,134414 +9109,134327 +9110,134456 +9111,132715 +9112,132715 +9113,132759 +9114,132759 +9116,134575 +9117,133045 +9118,132418 +9119,135423 +9120,133055 +9121,135280 +9122,135466 +9123,132723 +9124,132622 +9126,132762 +9127,132762 +9128,133733 +9129,133733 +9134,133719 +9135,134327 +9139,134342 +9140,134342 +9141,134343 +9143,132630 +9144,134252 +9145,134295 +9147,135239 +9148,133458 +9150,134302 +9151,132765 +9152,133468 +9153,134241 +9154,134241 +9155,134330 +9156,135035 +9157,134295 +9158,135035 +9160,132541 +9161,134143 +9162,134142 +9163,132385 +9164,133741 +9165,133740 +9166,132385 +9167,132995 +9169,132541 +9173,132537 +9174,132537 +9175,135005 +9176,132539 +9177,135005 +9178,135005 +9179,132491 +9180,135005 +9181,132539 +9182,133345 +9183,132491 +9184,132539 +9185,133345 +9186,132495 +9187,133345 +9188,133345 +9189,133345 +9190,133345 +9191,133345 +9199,133473 +9200,134321 +9201,132495 +9207,134754 +9208,134776 +9209,132368 +9215,135128 +9221,134335 +9222,134336 +9241,135038 +9242,134584 +9243,133071 +9245,134176 +9264,135016 +9284,135034 +9285,133281 +9288,132765 +9289,134170 +9290,132763 +9291,134343 +9292,133884 +9305,133288 +9306,135005 +9307,135005 +9310,133439 +9313,135005 +9315,133072 +9317,135005 +9318,133345 +9319,133735 +9320,133072 +9321,135005 +9322,132939 +9323,135005 +9324,132939 +9325,132939 +9326,132539 +9344,135641 +9345,134075 +9346,132719 +9347,135007 +9348,134582 +9349,132721 +9353,132535 +9354,134950 +9365,132493 +9367,132624 +9368,132535 +9369,132491 +9370,135280 +9373,132939 +9374,132939 +9375,134955 +9376,132624 +9377,133278 +9378,132602 +9380,134585 +9381,133057 +9385,132943 +9386,132943 +9387,132738 +9388,132602 +9389,132492 +9390,132939 +9391,134583 +9392,135036 +9393,135036 +9394,133740 +9395,132604 +9396,134298 +9397,133466 +9403,132631 +9404,132535 +9405,132939 +9406,132939 +9407,135040 +9408,132628 +9409,132535 +9410,132535 +9411,132535 +9412,132535 +9413,132939 +9414,132939 +9415,134585 +9416,132624 +9417,132605 +9418,133071 +9419,133071 +9420,133071 +9421,133071 +9422,135040 +9423,133071 +9424,135040 +9425,132628 +9426,132535 +9427,132535 +9428,132535 +9429,134951 +9430,133677 +9431,135005 +9443,134400 +9444,135325 +9445,132893 +9453,134583 +9460,133345 +9465,132312 +9466,135998 +9467,133467 +9484,133057 +9492,133057 +9499,132760 +9500,134706 +9501,132493 +9502,132724 +9503,132939 +9504,132538 +9505,134582 +9506,132939 +9507,132939 +9508,132493 +9509,132724 +9510,132539 +9511,132724 +9512,132539 +9513,132493 +9514,134582 +9515,134344 +9518,132386 +9519,135009 +9520,132539 +9521,132724 +9522,133762 +9523,134582 +9524,132725 +9525,132495 +9526,132939 +9527,135039 +9528,135039 +9529,132939 +9530,132539 +9531,132725 +9532,132723 +9533,132493 +9534,132939 +9535,134582 +9536,132719 +9537,132491 +9538,132492 +9539,134582 +9540,134582 +9541,134582 +9542,134582 +9543,132939 +9544,135039 +9545,132723 +9546,132611 +9547,133755 +9548,132719 +9549,132939 +9550,132609 +9551,132495 +9552,132499 +9553,132537 +9554,132537 +9555,132940 +9556,132940 +9557,133729 +9558,133762 +9559,132606 +9565,132760 +9584,132492 +9585,134169 +9586,132939 +9587,132939 +9588,132939 +9589,132624 +9590,132624 +9591,133345 +9625,132762 +9626,132762 +9627,132624 +9632,134344 +9633,132386 +9634,132609 +9635,135834 +9636,133596 +9637,133596 +9638,134798 +9639,134787 +9640,134706 +9641,132494 +9642,133694 +9643,132721 +9644,132606 +9647,132606 +9649,133786 +9651,133345 +9653,132542 +9656,132624 +9657,133298 +9658,133292 +9659,136065 +9660,134248 +9663,133461 +9665,132624 +9666,134151 +9668,133855 +9669,135005 +9670,132490 +9671,134582 +9672,132535 +9675,132543 +9678,135036 +9686,134583 +9688,133768 +9689,132624 +9693,135139 +9696,132606 +9702,134129 +9711,134374 +9717,134328 +9724,134581 +9725,133461 +9726,132724 +9727,132724 +9728,134232 +9729,134949 +9730,134231 +9731,134711 +9732,134338 +9733,134186 +9734,134577 +9736,134133 +9737,134133 +9738,134583 +9739,132724 +9741,134717 +9742,134583 +9744,135029 +9771,132535 +9772,135005 +9773,132537 +9775,134583 +9786,135005 +9787,134582 +9788,132535 +9790,132624 +9796,135005 +9815,134294 +9822,132766 +9823,133355 +9824,133801 +9825,133800 +9826,136217 +9832,133352 +9833,133354 +9834,133346 +9835,133349 +9836,133356 +9837,133347 +9838,133355 +9839,133351 +9840,133357 +9841,133347 +9842,133353 +9843,133356 +9845,133347 +9846,133357 +9847,133350 +9849,133348 +9850,133349 +9851,133354 +9852,133291 +9853,133290 +9854,133289 +9857,133295 +9858,133297 +9859,133294 +9860,133296 +9865,133352 +9866,132539 +9867,133043 +9872,132418 +9879,132539 +9880,135006 +9881,132938 +9882,132938 +9884,132537 +9885,132498 +9886,132498 +9888,132493 +9889,135006 +9891,135009 +9892,134582 +9893,132609 +9894,132609 +9895,132495 +9896,132494 +9898,132493 +9900,135005 +9902,132540 +9903,132496 +9904,132495 +9905,132494 +9906,135009 +9907,132493 +9908,132493 +9909,132494 +9910,132494 +9911,132493 +9912,132493 +9913,134582 +9914,132500 +9915,132539 +9916,132500 +9917,132496 +9919,132606 +9920,132495 +9921,132493 +9923,135005 +9924,134581 +9925,132719 +9926,135005 +9927,135009 +9928,132543 +9929,132543 +9930,132721 +9931,132493 +9932,132495 +9934,135010 +9935,135030 +9936,135009 +9937,134582 +9938,132535 +9943,133756 +9944,135005 +9945,134582 +9946,132538 +9947,133072 +9949,135005 +9959,132601 +9960,134582 +9961,132601 +9964,132624 +9967,132938 +9970,134582 +9971,133759 +9972,135005 +9973,134582 +9974,134582 +9975,134582 +9976,135005 +9977,132540 +9978,133753 +9983,135009 +9984,134582 +9985,132540 +9986,133753 +9987,134581 +9988,134582 +9989,135005 +9990,132539 +9992,132538 +9993,134582 +9994,135005 +9995,132719 +9996,135011 +9997,135037 +9998,135040 +9999,135040 +10001,135005 +10002,134582 +10003,132540 +10004,132535 +10005,135018 +10006,134582 +10007,132535 +10008,132539 +10009,132535 +10014,134582 +10017,132541 +10018,135005 +10029,134305 +10031,135005 +10033,132535 +10035,132535 +10036,132535 +10041,134305 +10043,134305 +10044,132913 +10047,135229 +10050,134582 +10052,132535 +10057,133766 +10058,133766 +10061,132490 +10062,132535 +10063,133345 +10066,132490 +10070,135005 +10071,134581 +10072,132535 +10076,132716 +10077,135005 +10078,132490 +10079,134582 +10081,134582 +10083,132490 +10086,135005 +10087,132490 +10091,132490 +10092,132535 +10094,135005 +10095,132535 +10099,132535 +10103,132490 +10104,132535 +10107,132535 +10108,133765 +10109,134582 +10110,135005 +10112,135018 +10113,135005 +10114,134582 +10115,132539 +10116,135005 +10119,133755 +10120,133753 +10121,132535 +10122,133345 +10124,135005 +10125,135009 +10126,135009 +10127,135005 +10128,133756 +10141,132540 +10143,134581 +10147,132543 +10149,132540 +10150,135006 +10151,134581 +10157,135005 +10158,135005 +10161,134583 +10165,133288 +10166,135038 +10167,135038 +10168,135037 +10169,135036 +10170,135038 +10171,135038 +10172,135037 +10173,135037 +10174,135039 +10175,135039 +10176,135037 +10177,135036 +10178,135037 +10179,135039 +10183,135139 +10185,133693 +10188,134581 +10190,135437 +10191,135005 +10195,135005 +10196,135005 +10200,134584 +10209,134584 +10210,132537 +10214,132539 +10215,132606 +10216,132605 +10217,134582 +10234,132535 +10243,135022 +10244,134582 +10247,132634 +10250,132543 +10251,133693 +10252,132494 +10253,132495 +10254,134581 +10272,132535 +10273,136246 +10274,135467 +10275,135471 +10300,132624 +10301,133676 +10306,132624 +10307,132535 +10314,135006 +10345,133726 +10349,132631 +10353,133640 +10354,132539 +10356,135327 +10358,132626 +10359,132626 +10362,132539 +10365,134232 +10366,134950 +10370,132541 +10373,132763 +10374,133764 +10377,134172 +10379,133345 +10380,132634 +10381,135006 +10385,133730 +10389,135005 +10391,132940 +10396,135005 +10398,135005 +10399,134294 +10400,134583 +10401,135834 +10402,132601 +10409,132490 +10410,132493 +10411,132495 +10412,132607 +10417,134354 +10425,134354 +10426,135274 +10434,132535 +10439,134583 +10441,132736 +10442,132490 +10443,134581 +10448,135036 +10449,134128 +10450,134584 +10451,132537 +10452,132939 +10453,133485 +10454,132539 +10459,135005 +10463,135005 +10475,135005 +10476,135005 +10480,135005 +10481,133644 +10482,135005 +10483,135005 +10484,135005 +10485,135005 +10486,135005 +10490,135005 +10494,134581 +10501,133693 +10502,132723 +10504,132742 +10505,135005 +10508,132939 +10509,132939 +10514,132415 +10523,134583 +10527,132624 +10528,132760 +10529,132600 +10530,134321 +10532,132498 +10534,133345 +10535,132939 +10536,134955 +10537,133119 +10538,134708 +10546,134177 +10557,132939 +10562,132541 +10563,135005 +10565,132940 +10582,132940 +10583,132624 +10587,132940 +10590,132940 +10596,132537 +10597,135040 +10600,132939 +10614,134582 +10615,132541 +10622,132543 +10631,132760 +10632,132537 +10642,133055 +10654,135145 +10656,135225 +10657,134520 +10661,135005 +10665,135531 +10666,135530 +10669,135005 +10671,135531 +10672,135530 +10673,135530 +10680,132535 +10695,133345 +10700,134068 +10711,132542 +10713,135005 +10714,132540 +10715,132939 +10716,135640 +10717,135640 +10721,134951 +10729,132938 +10732,132492 +10734,132535 +10737,132492 +10739,132535 +10748,132492 +10750,132535 +10758,132492 +10760,132535 +10764,132537 +10766,132491 +10767,132491 +10768,134581 +10774,134706 +10775,132540 +10776,132939 +10778,132492 +10780,132492 +10782,132492 +10784,132535 +10789,132535 +10802,135005 +10806,135273 +10808,132417 +10814,133888 +10815,133888 +10816,133888 +10817,133888 +10818,135463 +10819,135463 +10820,133941 +10821,133941 +10822,133941 +10823,133941 +10824,133941 +10825,133941 +10828,132535 +10830,132535 +10833,135030 +10834,135030 +10837,135009 +10840,135029 +10841,133759 +10842,135009 +10843,135009 +10845,135023 +10846,133756 +10847,135010 +10848,135010 +10849,135010 +10852,132543 +10853,132543 +10854,132543 +10860,135009 +10861,135024 +10868,132938 +10871,134582 +10876,134582 +10891,132715 +10892,135025 +10893,135018 +10896,133756 +10912,132939 +10913,132089 +10918,134294 +10919,134298 +10920,134294 +10921,133722 +10922,134250 +10923,134340 +10924,132762 +10928,135005 +10935,132537 +10936,132493 +10950,135005 +10959,135005 +10967,135324 +10968,134950 +10983,135129 +10996,135005 +11009,132535 +11012,133707 +11013,134339 +11026,135129 +11031,133345 +11033,132939 +11034,132939 +11035,132939 +11036,132939 +11037,133756 +11039,133756 +11040,132940 +11041,132940 +11042,132940 +11045,134581 +11047,133072 +11060,132539 +11063,134582 +11069,134582 +11083,134582 +11115,134583 +11119,132938 +11123,132539 +11129,135009 +11130,135011 +11131,132492 +11132,132537 +11133,132723 +11134,132939 +11135,135030 +11138,132724 +11139,132724 +11142,135009 +11143,135009 +11144,132939 +11145,132609 +11146,132538 +11147,132402 +11160,133463 +11161,134941 +11164,134370 +11165,132397 +11166,134581 +11167,132499 +11168,135005 +11169,132938 +11172,132490 +11173,132938 +11180,134416 +11181,133733 +11182,135017 +11183,134572 +11184,134458 +11185,134458 +11193,133942 +11196,132414 +11197,132939 +11198,133887 +11199,136168 +11200,133892 +11201,133892 +11205,135992 +11206,135992 +11207,135992 +11208,135992 +11209,133731 +11210,134302 +11211,133728 +11230,132939 +11247,135530 +11251,135146 +11252,132495 +11253,132492 +11255,132535 +11257,134951 +11259,135145 +11262,136040 +11267,134712 +11268,134712 +11269,132535 +11270,135039 +11271,133484 +11274,135039 +11275,133126 +11276,135639 +11282,135641 +11289,133483 +11320,134343 +11327,135038 +11328,135040 +11329,132537 +11330,132537 +11335,132635 +11336,134583 +11347,132490 +11348,132537 +11350,134441 +11351,134441 +11352,135138 +11353,135138 +11358,135143 +11363,132628 +11365,132492 +11368,132724 +11369,134582 +11370,132939 +11371,132604 +11372,132543 +11373,132539 +11374,132492 +11376,132543 +11377,132543 +11378,132579 +11382,132719 +11383,134582 +11384,132939 +11387,132603 +11388,132543 +11389,135010 +11390,135010 +11391,132539 +11392,132605 +11393,132939 +11394,134585 +11395,132494 +11396,132492 +11397,132579 +11398,132606 +11399,132606 +11400,135010 +11401,135010 +11402,134367 +11410,134249 +11411,134585 +11412,132939 +11413,132493 +11414,132605 +11416,132540 +11418,132492 +11419,135011 +11420,134582 +11421,134706 +11422,134706 +11423,132939 +11424,132609 +11425,132492 +11426,132543 +11427,132724 +11428,134582 +11429,132600 +11430,132492 +11431,134327 +11443,132606 +11446,132535 +11447,132535 +11448,132764 +11449,132761 +11450,134300 +11451,134299 +11452,133890 +11453,133890 +11460,134765 +11461,134765 +11462,134721 +11468,133770 +11472,135037 +11473,135040 +11474,132496 +11475,132493 +11483,134301 +11486,132604 +11489,134360 +11490,132628 +11491,132535 +11492,132604 +11493,132493 +11494,132939 +11495,134583 +11496,135038 +11497,132628 +11501,132604 +11503,135005 +11506,134582 +11507,132939 +11508,132606 +11509,132939 +11510,132499 +11511,132539 +11513,135040 +11514,132493 +11518,135023 +11519,135024 +11520,132638 +11521,132535 +11522,132938 +11523,132498 +11524,133118 +11525,134583 +11526,135038 +11527,132602 +11533,132499 +11539,134582 +11540,135040 +11544,133072 +11545,132539 +11546,132939 +11547,132939 +11548,132539 +11549,132606 +11551,132722 +11552,134582 +11553,133117 +11554,132939 +11555,132602 +11556,132541 +11557,132493 +11558,132492 +11559,134951 +11561,132747 +11562,132637 +11563,132634 +11565,132635 +11569,132606 +11571,132539 +11572,132723 +11573,132541 +11574,132606 +11575,132938 +11576,133071 +11577,133120 +11578,135039 +11579,132723 +11580,132725 +11581,132537 +11582,132603 +11583,132939 +11584,134582 +11585,135039 +11586,132492 +11591,134442 +11598,132634 +11599,132635 +11600,132722 +11601,132743 +11602,132535 +11603,132608 +11604,132938 +11605,132492 +11606,133118 +11607,134583 +11608,135034 +11610,133756 +11611,132539 +11612,132499 +11613,135033 +11614,132723 +11615,132495 +11616,132541 +11617,132601 +11618,133116 +11619,134582 +11620,132938 +11621,135039 +11624,132627 +11625,132602 +11626,132938 +11627,132492 +11628,132493 +11629,132535 +11630,133120 +11631,134583 +11637,132940 +11638,135033 +11639,132499 +11640,132499 +11641,133090 +11642,133090 +11643,132608 +11648,132543 +11650,133344 +11651,132723 +11652,132495 +11653,132537 +11654,132604 +11655,132604 +11656,132939 +11658,133120 +11659,133120 +11660,133344 +11661,134582 +11662,135033 +11663,134442 +11664,134442 +11665,134442 +11666,134442 +11667,134442 +11668,132624 +11693,135325 +11699,132939 +11701,132541 +11702,132938 +11704,132541 +11705,132938 +11712,132492 +11713,134583 +11724,134950 +11725,134950 +11729,134950 +11766,134117 +11778,132540 +11780,134257 +11787,132543 +11791,132609 +11796,132539 +11809,133345 +11814,133345 +11825,134361 +11832,132535 +11840,135229 +11841,132592 +11843,135229 +11847,132592 +11863,134305 +11873,133345 +11878,133345 +11880,133693 +11886,132535 +11889,136040 +11894,132490 +11899,133345 +11900,132535 +11906,135005 +11907,133685 +11908,133688 +11909,133684 +11910,133687 +11911,135005 +11919,135139 +11920,132760 +11921,132760 +11923,133345 +11925,134948 +11926,133672 +11927,134437 +11928,134955 +11929,134437 +11930,134064 +11932,134300 +11935,132535 +11945,132492 +11946,135036 +11947,133723 +11948,134370 +11950,134303 +11951,132939 +11952,132939 +11953,132492 +11954,135489 +11955,132492 +11956,132492 +11957,134304 +11958,136040 +11959,134305 +11960,132498 +11961,135011 +11980,136016 +11982,135005 +11983,135005 +11984,135006 +11990,133346 +11992,132491 +11994,134059 +11997,132491 +11998,134059 +11999,132539 +12001,134582 +12002,132541 +12014,132537 +12018,133294 +12045,132539 +12049,135005 +12050,132541 +12065,134582 +12068,132939 +12069,132539 +12070,132539 +12091,133762 +12105,132906 +12116,132542 +12161,132537 +12169,134581 +12178,134582 +12189,133072 +12190,133072 +12197,132541 +12206,133857 +12207,133434 +12208,133438 +12209,133434 +12210,135126 +12211,135126 +12220,133072 +12221,134455 +12222,134257 +12229,135005 +12230,135005 +12231,132939 +12232,135005 +12236,135805 +12241,132715 +12250,132715 +12251,135005 +12253,132715 +12258,133766 +12262,132541 +12267,132715 +12268,132490 +12271,132715 +12272,132490 +12274,135274 +12276,132490 +12281,132715 +12282,132626 +12284,135321 +12286,135141 +12289,133149 +12293,132539 +12297,132635 +12298,132511 +12299,132945 +12306,135008 +12309,134122 +12310,134121 +12311,135434 +12312,135432 +12313,135432 +12314,132662 +12315,132496 +12316,132609 +12317,132675 +12318,132496 +12319,132543 +12324,132955 +12325,132955 +12328,134937 +12331,132594 +12332,132596 +12333,132594 +12334,132596 +12335,132513 +12338,132540 +12339,132610 +12345,134581 +12353,135005 +12354,132543 +12355,135005 +12356,132543 +12368,132719 +12369,132716 +12370,132716 +12371,132716 +12372,132719 +12377,132662 +12378,132515 +12379,135018 +12381,132655 +12382,132655 +12386,132664 +12387,132678 +12388,134586 +12389,132662 +12390,132958 +12391,133131 +12392,132665 +12393,132663 +12394,132680 +12395,134587 +12396,132644 +12397,132658 +12398,132953 +12399,134586 +12400,132681 +12401,133129 +12402,134589 +12403,135043 +12404,133148 +12405,133149 +12406,133149 +12407,133149 +12408,133146 +12409,134335 +12410,134335 +12411,132543 +12412,135011 +12413,134706 +12414,132939 +12415,132939 +12416,132939 +12417,132609 +12418,132543 +12419,132543 +12420,132939 +12422,132654 +12423,134139 +12424,132493 +12425,133982 +12426,132662 +12427,132513 +12433,132492 +12434,133233 +12435,134458 +12437,135010 +12438,132537 +12439,132537 +12441,132506 +12442,134594 +12443,132939 +12444,132605 +12445,132624 +12446,132627 +12448,132634 +12449,132492 +12450,132939 +12451,132939 +12452,132492 +12453,134583 +12454,132939 +12455,132492 +12456,132613 +12457,132535 +12458,135007 +12459,134589 +12460,132939 +12461,133765 +12462,132606 +12463,132539 +12464,132492 +12465,135008 +12466,132543 +12467,132608 +12468,132939 +12469,135015 +12470,134582 +12471,132673 +12472,132511 +12473,135040 +12474,132535 +12475,132606 +12476,132492 +12477,132939 +12478,132624 +12479,132493 +12480,132537 +12481,132605 +12482,132721 +12483,132939 +12484,134582 +12485,135039 +12486,132613 +12487,132939 +12488,132492 +12489,135038 +12490,132624 +12491,132615 +12492,132606 +12493,132493 +12494,134583 +12495,135038 +12496,132493 +12497,132537 +12498,132603 +12499,132716 +12500,132939 +12501,135039 +12502,134582 +12503,135039 +12507,135029 +12508,135022 +12509,132647 +12510,132492 +12511,132539 +12512,132606 +12513,132939 +12514,134582 +12515,135040 +12545,132490 +12546,132537 +12547,133734 +12555,135006 +12556,133735 +12561,135324 +12562,135130 +12565,134716 +12566,133290 +12567,133290 +12568,133491 +12576,133766 +12582,132535 +12589,132624 +12594,133071 +12595,132743 +12596,132940 +12597,133769 +12600,135146 +12601,135473 +12606,135005 +12610,135314 +12611,133131 +12621,134732 +12622,133075 +12625,132368 +12629,134583 +12631,134583 +12632,132627 +12634,134582 +12637,132490 +12640,132490 +12642,132594 +12643,132519 +12644,132595 +12645,132665 +12646,132657 +12647,132664 +12648,132662 +12649,132663 +12650,132680 +12651,132673 +12652,132665 +12653,132673 +12654,132681 +12655,132679 +12656,132677 +12659,132653 +12660,132660 +12661,132665 +12662,132662 +12663,132675 +12664,132650 +12665,132665 +12666,132644 +12669,132654 +12670,132642 +12671,132654 +12672,132659 +12673,132666 +12674,132663 +12675,132666 +12676,132644 +12677,132661 +12678,132645 +12679,132674 +12680,132654 +12681,132662 +12682,132679 +12683,132675 +12684,132654 +12685,132654 +12686,132674 +12687,132659 +12688,132679 +12689,132651 +12690,132644 +12691,132660 +12692,132642 +12693,132677 +12694,132679 +12695,132670 +12696,132672 +12697,132667 +12698,132659 +12699,132645 +12700,132674 +12701,132645 +12702,132673 +12703,132659 +12704,132674 +12705,132675 +12706,132679 +12707,132665 +12715,132675 +12716,132665 +12717,132660 +12718,132660 +12721,132628 +12722,132628 +12723,132742 +12728,132541 +12729,132607 +12731,135036 +12732,133644 +12733,135434 +12734,135432 +12735,133644 +12736,134335 +12737,135434 +12738,135432 +12745,132535 +12746,134096 +12750,132715 +12771,135005 +12772,135006 +12773,134583 +12776,134582 +12777,134586 +12778,135641 +12779,135641 +12780,134302 +12781,135036 +12782,135036 +12783,132606 +12784,132535 +12788,132537 +12789,135005 +12790,135005 +12793,132719 +12794,132716 +12795,134583 +12801,132535 +12802,135006 +12803,135012 +12804,132605 +12805,134955 +12810,132541 +12812,135473 +12813,132938 +12827,135327 +12828,135312 +12829,135138 +12830,135039 +12831,132624 +12845,132491 +12846,132624 +12849,135005 +12855,135005 +12857,135131 +12858,132661 +12863,133290 +12864,135024 +12865,132939 +12866,135474 +12871,133482 +12872,133071 +12874,133119 +12875,133072 +12876,133126 +12877,135138 +12878,134582 +12880,133723 +12881,132401 +12882,135489 +12883,135498 +12903,135276 +12904,134151 +12905,133072 +12906,133072 +12907,133072 +12908,133070 +12909,133072 +12910,133072 +12911,133072 +12912,133072 +12913,133072 +12914,133072 +12915,133070 +12922,132724 +12923,132724 +12924,132724 +12925,132594 +12926,136016 +12927,132620 +12928,134587 +12929,132995 +12930,134591 +12931,135896 +12932,132493 +12933,133119 +12934,132720 +12935,132602 +12936,133294 +12937,132504 +12938,132958 +12939,133942 +12940,135473 +12941,132738 +12942,132949 +12943,132949 +12944,132624 +12945,132740 +12946,132939 +12947,132939 +12948,132939 +12949,132939 +12954,132541 +12955,132939 +12960,132624 +12961,132626 +12964,134581 +12965,132624 +12966,132736 +12967,134583 +12969,135005 +12970,135005 +12971,132624 +12973,134586 +12974,132415 +12975,135499 +12976,132601 +12977,132499 +12978,135317 +12979,135312 +12980,135036 +12981,132524 +12984,133350 +12985,132940 +12986,135034 +12987,133348 +12988,132537 +12989,135225 +12990,132648 +12991,134344 +12992,135434 +12994,135434 +12995,133723 +12996,134358 +12997,133942 +12998,133623 +13000,134583 +13001,135643 +13002,134253 +13005,133739 +13006,133743 +13011,132629 +13012,135465 +13014,132495 +13019,132760 +13020,132939 +13023,132513 +13024,133277 +13025,134235 +13026,132938 +13034,135030 +13041,135016 +13042,135016 +13043,135016 +13044,132665 +13046,135016 +13048,134584 +13049,132513 +13051,132539 +13052,135060 +13053,132613 +13054,132938 +13055,135022 +13056,135030 +13057,135029 +13058,134955 +13059,135465 +13060,135613 +13061,134177 +13062,134577 +13063,134577 +13064,135640 +13065,135640 +13070,135005 +13075,132612 +13076,132651 +13077,132680 +13078,135324 +13079,135139 +13080,133042 +13081,134227 +13082,134227 +13083,135466 +13084,135466 +13085,133292 +13086,134440 +13087,132628 +13088,132624 +13089,132624 +13090,132624 +13091,132738 +13092,132624 +13093,132535 +13094,132491 +13095,134583 +13096,132943 +13097,132943 +13098,132943 +13099,132602 +13100,132594 +13102,133071 +13103,134564 +13105,133479 +13106,133145 +13107,133145 +13108,132261 +13109,135466 +13110,132762 +13111,135321 +13112,135278 +13113,132395 +13114,135641 +13115,135012 +13116,135022 +13117,134581 +13118,132539 +13119,132645 +13120,134564 +13121,134227 +13122,134228 +13123,133849 +13124,135227 +13125,133472 +13126,134575 +13128,134361 +13129,134074 +13130,135005 +13144,133439 +13145,133071 +13146,133071 +13147,133071 +13171,132541 +13195,132953 +13196,133129 +13197,135005 +13198,133072 +13201,134583 +13206,134583 +13213,135005 +13215,133146 +13216,134442 +13217,134442 +13218,134442 +13219,134955 +13220,133072 +13221,133072 +13222,133756 +13223,133148 +13224,132767 +13225,133072 +13226,133074 +13227,133072 +13228,133072 +13229,132767 +13230,133072 +13231,133072 +13232,133072 +13233,133072 +13234,133072 +13235,133131 +13236,133149 +13237,133072 +13238,133149 +13239,133072 +13240,133072 +13241,133090 +13242,133149 +13243,133129 +13244,133072 +13246,133072 +13247,133693 +13248,133072 +13249,133072 +13250,133071 +13251,133072 +13252,133071 +13253,133694 +13254,133072 +13255,133072 +13256,133072 +13257,133117 +13258,133072 +13259,133126 +13260,133116 +13261,133119 +13262,133072 +13263,133120 +13264,133072 +13265,133072 +13266,133119 +13267,133119 +13268,133072 +13269,133071 +13270,133120 +13271,133071 +13272,133118 +13273,133071 +13274,133070 +13275,133070 +13276,133071 +13277,133070 +13278,133071 +13279,133076 +13280,133071 +13281,133071 +13282,133072 +13283,133071 +13284,133118 +13285,133071 +13286,133071 +13287,133074 +13288,133070 +13289,133071 +13290,134240 +13291,134131 +13292,133046 +13295,133072 +13296,133072 +13300,133072 +13319,132961 +13324,132406 +13326,134334 +13327,134564 +13328,134335 +13337,132666 +13343,132542 +13352,135492 +13353,132949 +13354,134305 +13355,132607 +13356,135146 +13357,134582 +13358,135641 +13359,133491 +13360,132408 +13361,132944 +13362,135010 +13363,132513 +13364,135327 +13365,134594 +13366,132514 +13370,136065 +13386,133072 +13391,133345 +13392,132939 +13393,132939 +13396,132539 +13398,135039 +13401,135005 +13402,135005 +13430,133457 +13433,133854 +13434,135227 +13435,135469 +13445,132537 +13455,135612 +13458,136065 +13459,132490 +13462,132543 +13464,134583 +13466,133042 +13469,135005 +13470,132543 +13483,133070 +13484,132938 +13485,134583 +13486,133476 +13487,135321 +13488,135280 +13489,133941 +13490,135230 +13491,134572 +13492,134572 +13493,132766 +13494,132761 +13495,135435 +13496,134088 +13497,133457 +13499,132537 +13500,132539 +13501,132493 +13502,132540 +13504,135467 +13508,132605 +13511,133276 +13515,134436 +13522,132543 +13523,132543 +13524,132543 +13527,132624 +13528,132537 +13529,135006 +13530,133041 +13531,134340 +13534,133072 +13535,133756 +13536,133072 +13537,133074 +13538,133072 +13539,133072 +13540,133072 +13541,133072 +13542,133072 +13543,133072 +13544,133072 +13545,133131 +13546,133072 +13547,133072 +13548,133072 +13549,133129 +13550,133072 +13551,133072 +13552,133072 +13553,133071 +13554,133071 +13563,133090 +13564,133072 +13583,135273 +13584,132893 +13585,133069 +13603,132494 +13607,133072 +13610,133071 +13611,135229 +13616,133072 +13617,132606 +13620,135005 +13623,133072 +13644,132592 +13645,132592 +13646,132592 +13647,134582 +13648,134582 +13649,134588 +13653,132958 +13654,133131 +13655,132950 +13656,132950 +13657,132669 +13658,132669 +13659,132669 +13660,133128 +13661,133128 +13662,133128 +13664,132511 +13665,132653 +13666,132653 +13667,132653 +13668,132643 +13669,132493 +13670,135049 +13671,135008 +13672,135054 +13673,135054 +13674,135054 +13675,135058 +13676,135057 +13677,135036 +13678,132513 +13679,134586 +13680,132939 +13681,132939 +13682,132669 +13683,132647 +13684,132647 +13685,135016 +13686,134572 +13687,136018 +13688,135805 +13689,136007 +13690,133694 +13691,133694 +13692,133607 +13703,134129 +13706,132542 +13707,132290 +13708,132274 +13709,136066 +13710,132273 +13711,135146 +13712,132539 +13713,133708 +13714,133884 +13715,134437 +13723,135466 +13724,135468 +13754,132939 +13756,132939 +13757,132940 +13758,132495 +13759,135005 +13760,135005 +13761,135005 +13762,135005 +13763,134321 +13783,134579 +13785,132368 +13796,132937 +13799,133718 +13804,132937 +13805,133132 +13806,133724 +13807,132767 +13808,132767 +13809,134582 +13824,134248 +13825,135225 +13826,133942 +13827,133942 +13828,135225 +13829,134070 +13847,132941 +13848,135650 +13849,135725 +13850,135273 +13851,135273 +13852,135273 +13853,135273 +13863,134950 +13864,132539 +13865,132386 +13869,132939 +13884,133626 +13885,134242 +13903,132995 +13904,133940 +13905,133940 +13906,133987 +13907,135005 +13908,135641 +13911,132537 +13912,132939 +13913,132416 +13918,134128 +13927,132543 +13928,135005 +13931,132624 +13932,132541 +13942,132542 +13943,134138 +13983,133754 +13984,133768 +13985,133754 +13986,133756 +13987,134402 +13988,134231 +13990,134333 +13991,134402 +13992,134162 +13996,132543 +13998,133721 +13999,135465 +14000,135465 +14001,132607 +14002,132603 +14003,133763 +14004,132939 +14005,132595 +14006,132595 +14007,134138 +14008,133737 +14019,135434 +14020,132939 +14021,135142 +14022,133101 +14023,134179 +14024,136040 +14025,133712 +14026,133072 +14027,135012 +14028,135421 +14029,132402 +14030,132402 +14031,132402 +14032,132392 +14033,132392 +14034,132395 +14035,132417 +14036,132405 +14037,132392 +14038,134707 +14039,134708 +14040,134708 +14041,135423 +14042,135421 +14043,132513 +14044,134589 +14045,132952 +14046,132543 +14047,132543 +14048,132543 +14049,132543 +14050,132543 +14051,132662 +14052,132662 +14053,132493 +14063,135006 +14064,134589 +14065,132952 +14066,132513 +14067,132651 +14068,132723 +14069,132624 +14070,135006 +14071,134589 +14072,132952 +14073,132609 +14074,132513 +14075,135018 +14076,132939 +14077,132952 +14078,132952 +14079,132939 +14080,132939 +14081,132610 +14082,132609 +14083,132939 +14084,132939 +14085,132939 +14086,132610 +14087,133693 +14088,132939 +14089,132939 +14090,132610 +14091,135040 +14092,135040 +14093,133694 +14094,135018 +14095,135037 +14096,132940 +14097,132940 +14098,132940 +14099,132940 +14100,132610 +14101,132539 +14102,133694 +14103,135018 +14104,132939 +14105,132939 +14106,132939 +14107,132612 +14108,135018 +14109,134581 +14110,132939 +14111,132612 +14112,132539 +14113,135037 +14114,135010 +14115,134581 +14116,132939 +14117,132612 +14118,132539 +14119,132939 +14120,132491 +14121,135040 +14122,135037 +14123,135022 +14124,132492 +14125,132539 +14126,132612 +14127,132939 +14128,134581 +14129,135005 +14130,132494 +14131,132539 +14132,132612 +14133,132939 +14134,134581 +14135,135037 +14136,135037 +14137,135037 +14138,135037 +14139,135022 +14140,132494 +14141,132940 +14142,132609 +14143,132513 +14144,133693 +14145,133694 +14146,133694 +14147,135009 +14148,135009 +14149,132537 +14150,134581 +14151,134581 +14152,132940 +14153,132493 +14154,135014 +14155,132940 +14156,132609 +14157,132494 +14158,135013 +14159,134581 +14160,132940 +14161,132609 +14162,132543 +14163,132493 +14164,135006 +14165,132493 +14166,132543 +14167,132940 +14168,132940 +14169,132940 +14170,135014 +14171,134591 +14172,132940 +14173,132940 +14174,132494 +14175,135007 +14176,135008 +14177,132940 +14178,133693 +14179,135007 +14180,132539 +14181,132612 +14182,132940 +14183,132760 +14184,134706 +14185,132939 +14186,132607 +14187,132537 +14188,132492 +14189,132537 +14190,135009 +14191,132760 +14192,134706 +14193,132939 +14194,132607 +14195,132537 +14196,132492 +14197,132760 +14198,132760 +14199,134706 +14200,132939 +14201,132607 +14202,132492 +14203,135039 +14204,132760 +14205,135039 +14206,134706 +14207,132939 +14208,132607 +14209,132537 +14210,132492 +14211,132760 +14212,135039 +14213,134706 +14214,132939 +14215,132607 +14216,132537 +14217,132537 +14218,132723 +14219,135039 +14220,134582 +14221,132939 +14222,132939 +14223,132607 +14224,132537 +14225,132493 +14226,132723 +14227,132498 +14228,132537 +14229,132607 +14230,132939 +14231,134706 +14232,135039 +14233,132939 +14234,132741 +14235,132495 +14236,132537 +14237,132607 +14238,134706 +14239,135039 +14240,132725 +14241,132600 +14242,132537 +14243,132492 +14244,132725 +14245,132725 +14246,132725 +14247,134582 +14248,132939 +14249,132603 +14250,132537 +14251,132492 +14252,132724 +14253,134582 +14254,132939 +14255,132605 +14256,132537 +14257,132492 +14258,132760 +14259,132716 +14260,132719 +14261,132719 +14262,132939 +14263,132607 +14264,132539 +14265,132492 +14266,132939 +14267,134706 +14268,132539 +14269,132724 +14270,134582 +14271,132724 +14272,132760 +14273,134582 +14274,132939 +14275,132606 +14276,132539 +14277,132494 +14278,132725 +14279,132725 +14280,134582 +14281,132939 +14282,132603 +14283,132541 +14284,132492 +14285,132721 +14286,132721 +14287,132495 +14288,132542 +14289,132601 +14290,133072 +14291,132741 +14292,134582 +14293,133072 +14294,132606 +14295,132542 +14296,132495 +14297,135010 +14298,134582 +14299,132939 +14300,135010 +14301,132496 +14305,134428 +14306,133057 +14307,132997 +14310,132949 +14311,132939 +14312,132939 +14314,132940 +14315,135037 +14316,135037 +14317,135010 +14318,132539 +14319,132609 +14320,133072 +14321,132939 +14322,132940 +14323,132940 +14324,134335 +14325,132539 +14326,132995 +14327,132539 +14328,132539 +14329,132539 +14330,132939 +14331,135057 +14332,134582 +14333,132654 +14334,132495 +14335,132513 +14336,132609 +14337,132955 +14338,134586 +14339,135009 +14340,135010 +14341,132495 +14342,132605 +14343,134590 +14344,132513 +14345,132952 +14346,134586 +14347,132602 +14348,132952 +14349,134591 +14350,135017 +14351,132515 +14352,132540 +14353,132540 +14354,132540 +14355,132606 +14356,132952 +14357,134586 +14358,135009 +14359,135010 +14360,132512 +14361,135037 +14362,132513 +14363,132540 +14364,132601 +14365,132952 +14366,134589 +14367,132724 +14368,132495 +14369,132602 +14370,132952 +14371,135040 +14372,135014 +14373,132952 +14374,134582 +14375,132540 +14376,135031 +14377,135023 +14378,135025 +14379,132724 +14380,132513 +14381,132543 +14382,132600 +14383,132952 +14384,134589 +14385,132601 +14386,132957 +14387,134587 +14388,132724 +14389,132515 +14390,132952 +14391,134591 +14392,132724 +14393,132543 +14394,132957 +14395,134591 +14396,135040 +14397,135014 +14398,132512 +14399,132600 +14400,132952 +14401,132724 +14402,132491 +14403,132543 +14404,132957 +14405,134591 +14406,132724 +14407,132724 +14408,132511 +14409,132539 +14410,132606 +14411,132952 +14412,134592 +14413,135020 +14414,132504 +14415,132951 +14416,135036 +14417,134587 +14418,132725 +14419,132955 +14420,134586 +14421,135037 +14422,135029 +14423,132602 +14424,132952 +14425,132515 +14426,132540 +14427,132611 +14428,132957 +14429,134590 +14430,135010 +14431,132513 +14432,132522 +14433,132518 +14434,132521 +14435,132519 +14436,132524 +14437,132520 +14438,132516 +14439,132517 +14440,132601 +14441,132957 +14442,134592 +14443,132493 +14444,132540 +14445,132952 +14446,134592 +14447,134587 +14448,132495 +14449,132952 +14450,134591 +14451,132514 +14452,132543 +14453,132952 +14454,134590 +14455,132723 +14456,132513 +14457,132957 +14458,134586 +14459,135011 +14460,132498 +14461,132542 +14462,132601 +14463,132952 +14464,132719 +14465,134587 +14466,135010 +14467,132952 +14468,134594 +14469,132512 +14470,132592 +14471,132607 +14472,132760 +14473,132952 +14474,132537 +14475,132955 +14476,134586 +14477,135006 +14478,132957 +14479,134587 +14480,132955 +14481,134589 +14482,132952 +14483,134590 +14484,135018 +14485,132492 +14486,132725 +14487,132959 +14488,134586 +14489,135006 +14490,132952 +14491,134589 +14492,132505 +14493,132602 +14494,133117 +14495,134589 +14496,132646 +14497,132955 +14498,134590 +14499,132647 +14500,132655 +14501,132492 +14502,132493 +14503,132609 +14504,132957 +14505,134586 +14506,132724 +14507,132539 +14508,132605 +14509,132952 +14510,132607 +14511,134706 +14512,132513 +14513,135011 +14514,132539 +14515,132492 +14516,132662 +14517,132654 +14518,132505 +14519,132542 +14520,132601 +14521,132952 +14522,134586 +14523,132645 +14524,132647 +14525,132543 +14526,132543 +14527,132605 +14528,132955 +14529,134590 +14530,132493 +14531,132543 +14532,132955 +14533,132510 +14534,132592 +14535,132607 +14536,132939 +14537,134706 +14538,132760 +14539,132760 +14540,132654 +14541,132607 +14542,132952 +14543,132492 +14544,132607 +14545,132607 +14546,132952 +14547,134706 +14548,132719 +14549,132649 +14550,135040 +14551,135006 +14552,132539 +14553,132952 +14554,134581 +14555,132511 +14556,132952 +14557,132492 +14558,132539 +14559,132606 +14560,132725 +14561,132955 +14562,134586 +14563,132722 +14564,132498 +14565,132541 +14566,132601 +14567,132957 +14568,132500 +14569,132515 +14570,132724 +14571,132955 +14572,134582 +14573,135039 +14574,132955 +14575,132952 +14576,134582 +14577,132492 +14578,132542 +14579,132605 +14580,132957 +14581,135039 +14582,134587 +14583,132955 +14584,132649 +14585,132539 +14586,132606 +14587,133132 +14588,132961 +14589,135033 +14590,134588 +14591,132492 +14592,132492 +14593,132538 +14594,132602 +14595,132722 +14596,132939 +14597,133072 +14598,134582 +14599,135039 +14600,132498 +14601,132612 +14602,132723 +14603,132958 +14604,134592 +14605,132666 +14606,132666 +14607,135036 +14608,132649 +14609,135023 +14610,132539 +14611,133131 +14612,132961 +14613,134588 +14614,132539 +14615,134588 +14616,135005 +14617,132539 +14618,132606 +14619,132939 +14620,134581 +14621,132499 +14622,132646 +14623,132955 +14624,132492 +14625,134588 +14626,132723 +14627,132541 +14628,132606 +14629,132938 +14630,133117 +14631,132510 +14632,132537 +14633,132603 +14634,132955 +14635,134587 +14636,135023 +14637,135023 +14638,135023 +14639,132539 +14640,132606 +14641,132961 +14642,134588 +14643,132495 +14644,134588 +14645,132539 +14646,135017 +14647,132608 +14648,132499 +14649,135033 +14650,135005 +14651,132539 +14652,132606 +14653,133135 +14654,132939 +14655,134582 +14656,132495 +14657,135005 +14658,134581 +14659,134581 +14660,132539 +14661,132961 +14662,132495 +14663,132541 +14664,132601 +14665,132723 +14666,133111 +14667,134582 +14668,132938 +14669,135039 +14670,134582 +14671,132504 +14672,132542 +14673,132608 +14674,132722 +14675,134593 +14676,132948 +14677,135056 +14678,135021 +14679,132543 +14680,132608 +14681,132940 +14682,134582 +14683,132499 +14684,132957 +14685,134593 +14686,132493 +14687,132495 +14688,132537 +14689,132723 +14690,132939 +14691,133120 +14692,134582 +14693,132537 +14694,132939 +14695,132939 +14696,135054 +14697,134586 +14698,132949 +14699,132720 +14700,132602 +14701,132535 +14702,132501 +14703,135012 +14704,132496 +14705,132609 +14706,132955 +14707,134582 +14708,132543 +14709,135009 +14710,132491 +14711,134586 +14712,135013 +14713,135011 +14714,132540 +14715,132610 +14716,132939 +14717,134582 +14718,132513 +14719,132939 +14720,132540 +14721,132498 +14722,132542 +14723,132604 +14724,132949 +14725,135015 +14726,132498 +14727,132542 +14728,132604 +14729,132949 +14730,134586 +14731,135015 +14732,132656 +14733,132506 +14734,132656 +14735,132494 +14736,132611 +14737,132957 +14738,134590 +14739,135024 +14740,132673 +14741,135015 +14742,132543 +14743,132608 +14744,132939 +14745,135033 +14746,134581 +14747,132511 +14748,135012 +14749,132539 +14750,132611 +14751,132954 +14752,132514 +14753,132495 +14754,132539 +14755,132961 +14756,135039 +14757,134582 +14758,132725 +14759,132539 +14760,132648 +14761,135012 +14762,133694 +14763,132539 +14764,132610 +14765,132950 +14766,132950 +14767,134581 +14768,132493 +14769,132537 +14770,132603 +14771,132939 +14772,134582 +14773,132716 +14774,132514 +14775,132958 +14776,134587 +14777,134587 +14780,132723 +14781,132718 +14782,132631 +14793,133768 +14794,133768 +14802,132604 +14803,132606 +14831,132605 +14832,132495 +14835,132624 +14845,132760 +14846,132539 +14850,132539 +14851,134305 +14860,132535 +14864,132535 +14866,133345 +14870,132535 +14871,132939 +14887,132939 +14893,132542 +14894,132542 +14895,132542 +14896,132624 +14903,133072 +14904,133072 +14905,133072 +14912,132539 +14921,132537 +14924,133072 +14925,132539 +14926,133072 +14927,132539 +14928,132654 +14933,134583 +14934,132537 +14935,132724 +14936,132498 +14937,132498 +14938,132492 +14939,132539 +14940,132606 +14941,132956 +14942,133117 +14943,134587 +14946,133131 +14949,132543 +14950,135039 +14954,132760 +14955,133343 +14956,133072 +14957,133071 +14958,133071 +14959,133072 +14964,133276 +14965,133276 +14967,134582 +14970,135005 +14971,135005 +14975,134583 +14982,132492 +14984,134357 +14985,133072 +14986,132646 +14988,132955 +14989,134588 +14990,132666 +14993,134459 +14995,132719 +14996,132592 +14997,132607 +14998,133117 +14999,132493 +15000,132939 +15001,134706 +15002,135039 +15003,135007 +15004,132677 +15005,132677 +15006,133101 +15007,132606 +15008,132966 +15009,132966 +15010,134593 +15011,132495 +15012,132497 +15013,135033 +15014,135033 +15015,134593 +15016,132506 +15017,132542 +15018,132959 +15019,133111 +15020,134594 +15021,135058 +15022,132724 +15023,132608 +15024,133131 +15026,133601 +15027,134564 +15028,135464 +15029,133753 +15030,133753 +15031,133753 +15032,133753 +15033,133753 +15034,133763 +15035,133762 +15036,133756 +15037,133756 +15038,133770 +15039,133765 +15040,133768 +15041,133754 +15042,133770 +15043,133765 +15044,133755 +15045,133754 +15046,133763 +15047,133763 +15048,133753 +15049,133753 +15050,133759 +15051,133759 +15052,133767 +15053,133754 +15054,133763 +15055,133763 +15056,133763 +15057,134354 +15058,134305 +15059,133757 +15060,133762 +15061,133767 +15062,133756 +15063,133756 +15064,133759 +15065,133765 +15066,133769 +15067,133769 +15068,133756 +15069,134354 +15070,133766 +15071,133754 +15072,133764 +15073,133763 +15074,133764 +15075,133764 +15076,133754 +15077,133767 +15078,133759 +15079,133754 +15080,133754 +15081,133764 +15082,133768 +15083,133767 +15084,133759 +15085,133754 +15086,133758 +15087,133762 +15088,133762 +15089,133763 +15090,133765 +15092,133770 +15093,133770 +15094,133756 +15095,133763 +15096,133754 +15097,133758 +15098,133765 +15099,133758 +15100,133763 +15101,133766 +15102,133770 +15103,133762 +15104,133765 +15105,133766 +15106,133759 +15107,133756 +15108,133756 +15109,133762 +15110,133754 +15112,133757 +15113,133757 +15114,134358 +15115,133759 +15116,133756 +15117,134305 +15118,133763 +15119,133770 +15120,133760 +15121,133754 +15122,133763 +15123,134236 +15124,133756 +15125,133757 +15126,133759 +15127,133765 +15128,133765 +15143,133760 +15144,133759 +15145,133754 +15147,133762 +15148,133765 +15149,133753 +15150,134376 +15151,133762 +15152,133756 +15153,133763 +15154,134367 +15155,133763 +15156,133754 +15157,133762 +15158,133766 +15159,133767 +15160,133755 +15161,133760 +15162,133770 +15163,133770 +15164,133754 +15165,133770 +15166,133754 +15167,133762 +15168,133764 +15169,133761 +15170,133753 +15171,133762 +15172,133762 +15173,134121 +15175,133765 +15176,133759 +15177,134333 +15178,133754 +15179,133766 +15180,133758 +15181,133768 +15183,133757 +15184,133759 +15185,133756 +15186,133753 +15187,132656 +15188,133762 +15189,134305 +15190,134305 +15191,133760 +15192,133760 +15193,133754 +15194,132655 +15195,133760 +15196,133770 +15197,133755 +15198,133764 +15199,133763 +15200,132659 +15201,132659 +15202,133754 +15206,133754 +15207,133766 +15208,133757 +15209,134367 +15210,133760 +15211,133760 +15212,133757 +15213,133764 +15214,133758 +15215,133764 +15216,133756 +15217,133770 +15218,133767 +15219,132645 +15220,132655 +15221,132673 +15222,133770 +15223,132645 +15224,133768 +15225,133753 +15226,133764 +15227,133768 +15228,133760 +15229,133768 +15230,132652 +15231,132652 +15232,132661 +15233,133763 +15234,133763 +15235,132656 +15236,133769 +15237,135463 +15238,135463 +15239,133768 +15240,133763 +15241,133760 +15242,133759 +15243,132657 +15244,133762 +15245,133765 +15246,133758 +15247,133753 +15248,133756 +15249,133762 +15251,133755 +15252,133756 +15253,133763 +15254,133758 +15255,133762 +15257,133759 +15258,133754 +15259,133754 +15260,133754 +15261,133764 +15262,133760 +15263,133763 +15264,133763 +15265,133762 +15266,133756 +15267,133769 +15268,133763 +15269,133762 +15270,133762 +15271,133766 +15272,133760 +15273,133756 +15274,134942 +15275,133071 +15276,133071 +15277,133756 +15278,133072 +15279,133131 +15280,133756 +15281,133131 +15282,133071 +15283,133131 +15284,133756 +15285,133120 +15286,133071 +15287,133135 +15288,133070 +15289,133072 +15290,133118 +15291,133118 +15292,132767 +15293,133133 +15294,133071 +15295,133132 +15296,133071 +15297,133071 +15298,133132 +15299,133071 +15300,133090 +15301,133118 +15302,133071 +15303,133072 +15304,133071 +15305,133071 +15306,133072 +15307,133111 +15308,133694 +15309,133101 +15310,133072 +15311,133117 +15312,133072 +15313,133072 +15314,133133 +15315,133072 +15316,133117 +15317,133117 +15318,133071 +15319,133129 +15320,133071 +15321,133128 +15322,133146 +15323,133072 +15324,133070 +15325,133072 +15326,132381 +15327,133141 +15328,132381 +15329,133132 +15330,132381 +15331,133131 +15332,133111 +15333,133138 +15334,133071 +15335,133073 +15336,132767 +15337,133131 +15338,133072 +15339,133136 +15340,133071 +15341,133122 +15342,133120 +15343,133072 +15344,133117 +15345,133117 +15346,133139 +15349,133072 +15356,133071 +15365,133072 +15370,133072 +15371,133071 +15374,134329 +15382,135005 +15384,133072 +15392,133071 +15393,133071 +15398,135007 +15399,132496 +15400,132645 +15401,134592 +15402,135033 +15403,133101 +15404,132957 +15405,132966 +15406,133766 +15407,132608 +15408,132543 +15409,132543 +15410,132608 +15411,132501 +15412,132535 +15413,132615 +15414,132717 +15415,132956 +15416,134706 +15417,135032 +15418,133770 +15419,134951 +15420,133293 +15421,133294 +15422,133353 +15423,135139 +15424,135139 +15425,135464 +15426,134336 +15427,135464 +15428,135466 +15429,135139 +15430,135138 +15431,133072 +15432,133345 +15440,132624 +15442,132541 +15445,132541 +15456,135029 +15457,134581 +15459,135029 +15466,133041 +15467,133041 +15468,133041 +15469,133041 +15470,135271 +15471,132392 +15472,135425 +15473,133476 +15474,135139 +15477,133072 +15484,135009 +15492,133077 +15499,135005 +15501,133078 +15502,133118 +15503,133120 +15504,133124 +15505,133118 +15506,133073 +15507,133027 +15508,133118 +15509,135005 +15510,134940 +15511,133071 +15512,133078 +15513,133139 +15514,135005 +15515,135005 +15517,133141 +15518,133071 +15519,133071 +15520,133071 +15521,133071 +15523,133072 +15524,135005 +15525,134321 +15543,133133 +15544,133072 +15545,133072 +15546,133116 +15547,133072 +15548,133111 +15549,133120 +15550,133076 +15551,133128 +15555,134249 +15556,135144 +15557,134121 +15561,135140 +15562,133071 +15564,135144 +15565,134121 +15574,132943 +15576,132395 +15578,132540 +15583,134366 +15589,132596 +15590,132596 +15591,135325 +15592,133676 +15593,133676 +15596,133622 +15647,133298 +15648,135005 +15650,135005 +15654,135005 +15658,133298 +15676,133276 +15684,132938 +15685,133289 +15686,134128 +15687,134132 +15688,134135 +15692,132594 +15704,135313 +15705,133731 +15706,134167 +15707,134298 +15708,134305 +15709,134563 +15710,134829 +15711,134830 +15712,134831 +15713,134832 +15714,134833 +15715,134850 +15716,134851 +15717,134852 +15718,134853 +15719,135124 +15720,132945 +15721,132938 +15722,132938 +15725,134334 +15726,133056 +15727,132624 +15729,132624 +15730,135231 +15731,132750 +15732,134843 +15733,134836 +15734,134857 +15736,134815 +15737,134822 +15738,134871 +15739,135280 +15740,135302 +15741,134804 +15742,134875 +15744,132952 +15745,134717 +15747,134720 +15748,134754 +15750,134743 +15751,132966 +15752,132966 +15753,132966 +15760,133131 +15763,132952 +15769,132952 +15770,134858 +15771,134818 +15773,134844 +15774,134824 +15783,135005 +15786,133488 +15787,134872 +15788,134813 +15789,134837 +15790,134823 +15791,134801 +15792,134822 +15793,134859 +15794,134800 +15795,133476 +15796,135466 +15797,134581 +15798,132161 +15799,135145 +15800,135036 +15801,135138 +15802,135473 +15803,133069 +15804,133069 +15805,135241 +15806,135466 +15807,132407 +15808,132406 +15809,135032 +15810,133071 +15811,133127 +15812,133078 +15813,133042 +15814,133488 +15815,132944 +15816,132953 +15817,133770 +15818,134951 +15819,135039 +15820,132667 +15821,135615 +15822,133041 +15823,134581 +15824,134587 +15825,134066 +15826,132312 +15827,132312 +15828,135138 +15829,133069 +15830,133069 +15831,135005 +15833,133069 +15834,133766 +15835,135616 +15837,132499 +15843,133101 +15844,133116 +15845,133941 +15846,133117 +15847,133135 +15851,134533 +15852,134534 +15853,134532 +15854,134529 +15855,134524 +15856,134527 +15857,134523 +15858,135022 +15859,133111 +15860,133133 +15861,133135 +15862,133090 +15863,133693 +15864,133117 +15865,132952 +15866,133769 +15867,135225 +15883,134949 +15884,134335 +15885,135036 +15886,132537 +15887,133054 +15888,132396 +15889,132539 +15890,135044 +15891,132941 +15892,132941 +15893,132941 +15894,132941 +15895,135143 +15896,135127 +15897,132633 +15898,134590 +15899,132397 +15904,133072 +15905,132767 +15906,133117 +15907,133072 +15908,133135 +15909,133111 +15910,133090 +15911,133090 +15912,133117 +15914,133072 +15915,133072 +15921,133072 +15924,133072 +15925,133072 +15930,135325 +15938,132405 +15939,135010 +15963,133982 +15964,133983 +15965,133985 +15966,132645 +15983,132535 +15986,132535 +15990,135145 +16005,134455 +16023,134867 +16024,134832 +16028,132597 +16037,134941 +16043,133694 +16044,135040 +16052,133645 +16062,134416 +16065,134328 +16067,132939 +16068,132939 +16078,132624 +16079,135054 +16080,132636 +16081,135054 +16082,133071 +16083,133127 +16084,133127 +16085,132535 +16086,132582 +16087,132965 +16088,135040 +16089,135053 +16090,132965 +16091,132961 +16092,134583 +16093,133071 +16099,132624 +16100,134245 +16101,132631 +16102,132965 +16103,134584 +16104,132965 +16105,132965 +16106,135040 +16107,134583 +16108,134583 +16109,132745 +16110,133137 +16111,135043 +16112,132582 +16113,132582 +16114,132626 +16115,133078 +16116,132745 +16117,132745 +16118,132535 +16119,133078 +16120,133078 +16121,133078 +16122,133078 +16123,132963 +16124,132963 +16125,132745 +16126,132405 +16127,135321 +16128,135280 +16129,135275 +16130,135650 +16131,132511 +16132,132501 +16133,134592 +16134,132718 +16135,132966 +16136,132542 +16137,133143 +16138,133046 +16144,135276 +16145,135280 +16146,133055 +16147,135321 +16148,132415 +16149,135125 +16150,135125 +16151,135278 +16152,135325 +16155,135274 +16156,135325 +16157,132624 +16158,132624 +16161,133473 +16164,133072 +16167,133118 +16168,135040 +16169,135040 +16183,132745 +16184,132740 +16189,133597 +16190,134344 +16203,133487 +16204,135274 +16205,132307 +16206,134059 +16207,132266 +16208,132224 +16209,134120 +16210,134437 +16211,134433 +16212,134432 +16213,133071 +16214,133071 +16215,133133 +16216,133046 +16217,133046 +16218,133046 +16223,132953 +16224,133101 +16243,135639 +16245,134581 +16246,135141 +16247,133758 +16248,133758 +16249,133758 +16250,133758 +16263,132482 +16265,134375 +16283,134228 +16284,133636 +16285,133625 +16286,134401 +16287,133634 +16288,134402 +16289,134402 +16290,134401 +16291,134404 +16292,134404 +16293,134402 +16294,134401 +16295,134401 +16296,134530 +16297,133071 +16298,133288 +16299,134536 +16300,134430 +16303,134374 +16309,132624 +16313,135009 +16316,132604 +16321,134846 +16322,134166 +16323,132634 +16325,134807 +16343,134583 +16363,134321 +16364,133892 +16366,132386 +16367,134065 +16368,132539 +16391,132719 +16398,132719 +16407,133345 +16413,133078 +16414,133345 +16417,132543 +16423,135005 +16452,136168 +16453,134246 +16454,134239 +16456,132502 +16464,135652 +16468,132665 +16470,135044 +16471,132718 +16474,134251 +16479,133072 +16480,133072 +16481,132718 +16482,132718 +16483,132513 +16487,134582 +16488,132939 +16489,132634 +16490,135280 +16491,133142 +16492,133142 +16497,135038 +16498,133043 +16499,134582 +16501,132939 +16502,133755 +16503,133755 +16504,133755 +16505,132539 +16506,132605 +16507,132666 +16508,132666 +16509,133565 +16510,134582 +16511,132645 +16512,132663 +16513,132717 +16514,132656 +16515,132958 +16516,132608 +16517,134592 +16518,135035 +16519,135035 +16520,133122 +16521,132539 +16522,132656 +16523,132651 +16524,132718 +16525,132647 +16526,135049 +16527,134594 +16528,132655 +16529,132541 +16530,133078 +16531,132657 +16532,133755 +16533,133755 +16534,134582 +16535,135348 +16536,132761 +16537,135355 +16538,135340 +16539,135316 +16541,135419 +16542,135279 +16543,132665 +16544,133116 +16545,133132 +16547,133983 +16548,133133 +16549,134564 +16550,135017 +16551,135020 +16552,134591 +16553,132539 +16554,132495 +16555,132612 +16556,133754 +16557,135016 +16558,135013 +16559,134586 +16560,135009 +16561,134586 +16562,132955 +16563,132543 +16564,132491 +16565,132491 +16566,132611 +16567,132663 +16568,132681 +16569,132957 +16570,132493 +16571,132601 +16572,135040 +16573,135057 +16574,133763 +16575,135029 +16576,132543 +16577,132495 +16578,132760 +16579,135022 +16580,134592 +16581,132961 +16582,132539 +16583,132513 +16584,132606 +16585,135009 +16586,132939 +16587,132538 +16588,132609 +16589,135009 +16590,135011 +16591,134706 +16592,132952 +16593,132543 +16594,132492 +16595,132607 +16596,132657 +16597,133754 +16598,132392 +16599,135020 +16600,134588 +16601,132951 +16602,132539 +16603,132504 +16604,132612 +16605,132539 +16606,135057 +16607,132658 +16608,133754 +16609,135018 +16610,135031 +16611,132679 +16612,132659 +16613,132679 +16614,132679 +16615,132681 +16631,135010 +16632,134594 +16633,132957 +16634,132543 +16635,132514 +16636,132605 +16637,135049 +16638,133134 +16641,132642 +16642,132961 +16643,132673 +16651,132955 +16652,135036 +16653,132674 +16654,132674 +16655,132675 +16656,134589 +16657,132952 +16658,134581 +16659,132543 +16663,132493 +16664,132609 +16665,132662 +16666,132643 +16667,132658 +16668,132666 +16669,132677 +16670,132663 +16671,132666 +16672,133127 +16673,132670 +16674,132667 +16675,133072 +16676,132667 +16677,132966 +16678,132964 +16680,132944 +16681,132944 +16682,132944 +16683,132944 +16684,132944 +16685,132944 +16686,132944 +16687,132944 +16688,132944 +16689,132944 +16690,132944 +16691,133117 +16692,133101 +16693,133101 +16694,132659 +16695,132660 +16696,132662 +16697,132655 +16698,135012 +16699,135022 +16700,135008 +16701,134586 +16702,132957 +16703,132543 +16704,132491 +16705,132612 +16706,135040 +16707,133766 +16708,135009 +16709,134587 +16710,132940 +16711,132958 +16712,132539 +16713,132537 +16714,132604 +16715,135037 +16716,132504 +16717,132518 +16718,135009 +16719,134592 +16720,132957 +16721,132541 +16722,132491 +16723,132513 +16724,132604 +16725,132629 +16726,132629 +16727,132944 +16728,132944 +16729,132629 +16730,132944 +16731,132944 +16751,132392 +16752,135641 +16753,135641 +16754,135426 +16755,132392 +16756,132392 +16757,132395 +16758,132392 +16759,132394 +16760,135421 +16761,135426 +16762,135419 +16763,135008 +16764,134586 +16765,132952 +16766,132536 +16767,132495 +16768,132610 +16769,135021 +16770,134588 +16771,132952 +16772,132539 +16773,132497 +16774,132612 +16775,133135 +16776,133708 +16777,135006 +16778,134592 +16779,132955 +16780,132539 +16781,132495 +16782,132495 +16783,132602 +16784,132515 +16785,132601 +16786,135040 +16787,132512 +16788,132514 +16789,132952 +16790,132606 +16791,134590 +16792,132515 +16793,132950 +16794,134582 +16795,135010 +16796,134591 +16797,132952 +16798,132543 +16799,132492 +16800,135018 +16801,135241 +16802,132539 +16803,133849 +16804,132606 +16805,132606 +16806,132602 +16807,132492 +16808,132537 +16809,132539 +16810,132539 +16812,132658 +16813,132663 +16814,132940 +16815,132952 +16816,132605 +16817,132939 +16818,132939 +16819,132495 +16820,132579 +16821,132539 +16822,132579 +16823,133130 +16824,133132 +16825,133131 +16826,133118 +16827,135040 +16828,135036 +16829,133694 +16830,133694 +16831,132494 +16832,132495 +16833,132491 +16834,132495 +16835,132515 +16836,134812 +16837,133986 +16838,132496 +16839,134587 +16840,134581 +16841,134588 +16842,134588 +16843,134591 +16844,134582 +16845,134586 +16846,134586 +16847,134589 +16848,134582 +16849,134590 +16850,134594 +16851,134588 +16852,134586 +16853,132539 +16854,132543 +16855,132579 +16856,132579 +16857,132543 +16858,132543 +16860,134356 +16861,134374 +16862,135012 +16863,134581 +16864,132950 +16865,132518 +16866,133693 +16867,132715 +16868,132760 +16869,132610 +16870,135009 +16871,132719 +16872,132721 +16873,132724 +16874,132724 +16875,132724 +16876,132723 +16877,132719 +16878,132660 +16879,133768 +16880,132542 +16881,132539 +16882,132725 +16883,135011 +16884,132725 +16885,132634 +16886,132724 +16887,132609 +16888,132724 +16889,132720 +16890,132721 +16891,132724 +16892,132606 +16893,132723 +16894,135015 +16895,132724 +16896,132723 +16897,132615 +16898,132721 +16899,132725 +16900,132725 +16901,132606 +16902,132724 +16903,135010 +16904,132724 +16905,132611 +16906,132606 +16907,132610 +16908,132498 +16909,132495 +16910,132494 +16911,132493 +16912,132601 +16913,132612 +16914,132495 +16915,132606 +16916,132492 +16917,132515 +16918,132612 +16919,132493 +16920,132501 +16921,132501 +16922,132515 +16923,132510 +16924,132513 +16925,132617 +16926,132607 +16927,132609 +16928,132514 +16929,132602 +16930,132602 +16931,132514 +16932,132494 +16933,132498 +16934,132616 +16935,132513 +16936,132610 +16937,132514 +16938,132493 +16939,132492 +16940,132495 +16941,132495 +16942,132498 +16943,132512 +16944,132940 +16945,132513 +16946,132939 +16947,132515 +16948,132495 +16949,132490 +16950,132938 +16951,134582 +16952,136076 +16953,134706 +16954,134587 +16955,132937 +16956,132937 +16957,134582 +16958,134582 +16959,132954 +16960,134591 +16961,134586 +16962,134587 +16963,134582 +16964,134585 +16965,134582 +16966,132957 +16967,134589 +16968,134706 +16969,132952 +16970,132940 +16971,134582 +16972,134592 +16973,134582 +16974,134582 +16975,134586 +16976,134582 +16977,134589 +16978,134586 +16979,132542 +16980,132543 +16981,132539 +16982,132541 +16983,132541 +16984,132542 +16985,132539 +16986,132535 +16987,132537 +16988,132537 +16989,132541 +16990,132592 +16991,132542 +16992,132540 +16993,132537 +16994,132539 +16995,132537 +16996,132543 +16997,132542 +16998,132543 +16999,132539 +17000,132540 +17001,132607 +17002,132601 +17003,132607 +17004,132609 +17005,132611 +17006,132611 +17007,132607 +17008,132602 +17009,132603 +17010,132611 +17011,132604 +17012,132606 +17013,132604 +17014,132606 +17015,132601 +17016,132605 +17017,132611 +17018,132606 +17019,132603 +17020,132601 +17021,132600 +17022,132600 +17023,132603 +17024,132606 +17025,132606 +17026,132542 +17027,132959 +17031,134586 +17051,132952 +17052,132957 +17053,132957 +17054,132939 +17055,132955 +17057,132939 +17058,132952 +17059,132949 +17060,132955 +17061,132955 +17062,132938 +17063,132949 +17064,132949 +17065,132949 +17066,132952 +17067,132958 +17068,132952 +17069,132952 +17070,132955 +17071,132952 +17072,132952 +17073,132939 +17074,132939 +17075,132939 +17076,132952 +17077,132952 +17091,135020 +17092,132717 +17093,135013 +17094,132720 +17095,132760 +17096,132718 +17097,132716 +17098,135010 +17099,132723 +17100,132722 +17101,132716 +17102,135011 +17103,135014 +17104,132725 +17105,135017 +17111,132498 +17112,132493 +17113,132492 +17114,132492 +17115,132506 +17116,132505 +17117,132513 +17118,132500 +17119,132494 +17120,132543 +17121,132498 +17122,132500 +17123,132645 +17124,132514 +17125,135009 +17126,132515 +17127,132505 +17128,132678 +17129,132506 +17130,132951 +17131,132513 +17132,135058 +17133,132643 +17134,132504 +17135,135040 +17136,132514 +17137,134586 +17138,132537 +17139,132536 +17140,134706 +17141,134586 +17142,134594 +17143,132950 +17144,134585 +17145,134590 +17146,132956 +17147,134587 +17148,132539 +17149,134589 +17150,134593 +17151,134591 +17152,134585 +17153,134586 +17154,134590 +17155,134593 +17156,134588 +17157,132539 +17158,132592 +17159,132537 +17160,134586 +17161,132543 +17162,134514 +17163,132540 +17164,132542 +17165,132542 +17166,132606 +17167,132611 +17168,132601 +17169,132611 +17170,132601 +17171,132609 +17172,132606 +17173,132604 +17174,132951 +17175,132952 +17176,132952 +17177,132952 +17178,132955 +17179,132947 +17180,132940 +17181,132959 +17182,132947 +17183,132949 +17184,132952 +17185,132957 +17186,132955 +17187,132960 +17188,132958 +17189,132955 +17190,135049 +17191,135054 +17192,135036 +17193,135038 +17194,135049 +17195,135058 +17196,135039 +17197,135054 +17198,133117 +17199,133117 +17200,133127 +17201,133118 +17202,133117 +17203,133077 +17204,133122 +17205,133111 +17206,133078 +17211,135007 +17212,134592 +17213,133117 +17214,132718 +17215,132541 +17216,132953 +17217,132538 +17218,132490 +17219,132536 +17220,132536 +17221,132536 +17222,132536 +17223,132952 +17224,132506 +17225,132957 +17226,133076 +17227,132536 +17228,132518 +17229,132612 +17230,132952 +17231,132491 +17232,134582 +17233,132760 +17234,135054 +17235,133090 +17236,132666 +17237,132495 +17238,133770 +17239,135009 +17251,135017 +17252,134593 +17253,132957 +17254,132957 +17255,132940 +17256,132539 +17257,132720 +17258,132535 +17259,132602 +17260,133769 +17261,132493 +17262,132608 +17263,132949 +17264,133076 +17265,134586 +17266,135054 +17267,135054 +17268,133076 +17269,133076 +17270,133076 +17271,135033 +17272,132764 +17273,133127 +17274,133090 +17275,132644 +17276,132670 +17277,133119 +17284,132762 +17288,132620 +17289,135039 +17292,136036 +17293,135039 +17312,132720 +17313,134586 +17314,132949 +17315,133770 +17316,132602 +17317,132535 +17318,132501 +17319,135054 +17320,136087 +17321,133076 +17329,132597 +17343,132248 +17369,133632 +17370,134459 +17391,134527 +17397,134798 +17402,135725 +17403,134863 +17457,133689 +17458,133690 +17459,134531 +17460,134303 +17461,135470 +17462,132716 +17469,134803 +17476,132995 +17491,134867 +17492,134853 +17493,134365 +17494,132253 +17514,134228 +17553,135015 +17572,135006 +17598,134430 +17599,135468 +17600,135469 +17601,135469 +17602,135467 +17606,132225 +17607,132242 +17608,132267 +17635,135006 +17653,135036 +17655,133598 +17656,135036 +17665,134582 +17682,132622 +17685,133278 +17695,134583 +17703,135036 +17719,135005 +17720,134582 +17721,132539 +17724,133603 +17726,135005 +17727,135005 +17728,133070 +17731,133072 +17732,135005 +17733,135005 +17754,133127 +17763,135005 +17773,135005 +17774,135005 +17776,133603 +17785,132247 +17786,132264 +17787,133490 +17788,133061 +17802,135005 +17809,134459 +17867,133072 +17871,134529 +17880,134526 +17881,133979 +17882,134873 +17883,134845 +17884,134955 +17885,134956 +17887,134948 +17888,134948 +17889,134808 +17893,134814 +17896,134810 +17898,134805 +17899,132488 +17902,134874 +17904,134841 +17911,133706 +17912,133461 +17914,133042 +17915,133056 +17916,133056 +17917,132488 +17918,134338 +17919,136098 +17920,133457 +17921,133296 +17922,132488 +17923,132489 +17943,134966 +17944,134948 +17947,135015 +17949,133694 +17950,134581 +17951,132539 +17953,135015 +17957,134133 +17960,132939 +17962,135469 +17969,134581 +17971,134581 +17972,135008 +17973,135008 +17974,134849 +17978,132488 +18005,132760 +18008,134581 +18010,134331 +18021,135228 +18022,134577 +18026,135157 +18039,132937 +18044,133025 +18046,132832 +18047,132833 +18048,132833 +18049,132832 +18050,132834 +18051,132834 +18052,132834 +18053,132835 +18054,132835 +18055,132835 +18056,132836 +18057,132788 +18058,132788 +18059,132788 +18060,132789 +18061,132819 +18062,133714 +18063,133711 +18066,135989 +18067,136006 +18068,135815 +18069,135934 +18070,135920 +18071,133727 +18072,133727 +18074,133727 +18075,133727 +18076,132793 +18077,132793 +18078,132796 +18079,132797 +18080,132798 +18081,132793 +18082,132794 +18083,132794 +18084,132794 +18085,132816 +18086,133219 +18087,134189 +18088,134190 +18089,134191 +18090,132815 +18091,132819 +18092,134322 +18093,134322 +18094,135992 +18095,134323 +18096,134324 +18097,134324 +18098,134324 +18099,132791 +18100,132791 +18101,132790 +18102,132795 +18103,135235 +18104,135236 +18105,135237 +18106,135238 +18107,135242 +18109,135242 +18113,132799 +18114,132799 +18115,132792 +18116,132623 +18117,132800 +18119,132790 +18120,132683 +18121,132682 +18122,132683 +18125,135124 +18127,133150 +18128,133150 +18129,132682 +18130,133150 +18131,132682 +18132,133150 +18133,133150 +18134,133150 +18135,134178 +18136,134178 +18150,132760 +18154,134442 +18155,134442 +18156,135348 +18158,134300 +18161,135005 +18164,133734 +18165,136104 +18168,134182 +18169,134193 +18170,133678 +18172,132507 +18173,132835 +18174,133025 +18192,133479 +18193,133694 +18195,133479 +18199,132939 +18203,134457 +18204,134457 +18208,132963 +18210,132963 +18211,132963 +18215,132995 +18221,135464 +18222,135473 +18223,135005 +18224,134706 +18226,133117 +18227,133120 +18231,133120 +18232,135345 +18253,135345 +18254,135353 +18255,135355 +18256,132963 +18257,134708 +18258,135355 +18260,135353 +18261,135154 +18262,135424 +18263,135638 +18264,135654 +18265,135353 +18266,135280 +18267,135351 +18268,135432 +18269,134436 +18270,135327 +18271,132958 +18272,133127 +18274,134590 +18275,132381 +18276,135325 +18277,134588 +18278,134953 +18279,134948 +18281,134581 +18282,134948 +18283,132516 +18284,132723 +18287,132539 +18288,135006 +18289,135165 +18291,132618 +18292,132946 +18298,135616 +18299,133041 +18303,132724 +18305,135009 +18306,135131 +18308,134459 +18309,135357 +18310,133490 +18311,133480 +18312,133054 +18314,132939 +18322,133117 +18323,134536 +18324,133044 +18325,135352 +18326,132401 +18327,132405 +18328,132405 +18329,135500 +18330,133718 +18331,132605 +18332,133117 +18333,135049 +18334,133130 +18335,132602 +18336,132613 +18337,132611 +18338,132718 +18339,132945 +18340,132402 +18341,135496 +18342,135327 +18343,135493 +18344,135468 +18345,135616 +18346,135473 +18347,135009 +18349,133127 +18350,135491 +18351,135613 +18352,132618 +18353,135613 +18354,135355 +18355,135492 +18356,135645 +18357,135357 +18358,133472 +18359,133472 +18360,135351 +18361,132536 +18362,136128 +18363,134370 +18364,132951 +18365,134066 +18366,133679 +18367,132537 +18368,135148 +18369,135658 +18370,132539 +18371,132608 +18372,135611 +18373,133483 +18374,134956 +18375,132405 +18376,133117 +18377,134707 +18378,132613 +18379,134435 +18380,135638 +18381,134298 +18382,132628 +18383,132482 +18384,132482 +18385,132723 +18386,132720 +18387,134585 +18388,135129 +18389,135032 +18390,133488 +18391,132398 +18392,132266 +18393,135131 +18394,132401 +18395,135167 +18396,135167 +18397,132523 +18398,135652 +18399,134962 +18400,134588 +18403,132405 +18404,132415 +18405,135615 +18406,133045 +18407,135467 +18408,135467 +18409,135347 +18413,133111 +18414,133117 +18415,132995 +18416,133130 +18417,133076 +18418,133101 +18419,132537 +18420,133090 +18421,133135 +18422,133135 +18423,132951 +18426,132764 +18427,132615 +18428,135018 +18429,134588 +18430,132587 +18431,132535 +18433,135056 +18434,134586 +18435,133757 +18436,133757 +18437,135158 +18438,135158 +18439,135011 +18440,135015 +18441,135467 +18442,135467 +18443,132959 +18444,132540 +18445,135656 +18446,132397 +18447,134956 +18448,135230 +18449,134956 +18450,134955 +18451,134956 +18452,134587 +18453,133763 +18454,134948 +18455,134948 +18456,134955 +18457,134948 +18458,132725 +18466,135009 +18467,135467 +18468,134956 +18469,134956 +18470,132717 +18471,132722 +18472,134955 +18473,134131 +18474,134955 +18475,134955 +18476,134956 +18477,134956 +18478,134706 +18479,134955 +18480,134955 +18481,134955 +18482,134948 +18483,134955 +18484,134955 +18485,134955 +18486,134955 +18487,134955 +18488,134955 +18489,134592 +18490,134955 +18491,134956 +18492,134955 +18493,134948 +18494,132791 +18495,132790 +18496,132790 +18497,135054 +18498,133135 +18499,134140 +18500,134455 +18506,134955 +18507,134956 +18508,134955 +18509,134955 +18510,134955 +18511,134956 +18512,134955 +18513,134956 +18514,134139 +18515,135437 +18516,134956 +18517,134257 +18518,135241 +18519,135241 +18522,134955 +18523,134948 +18524,136074 +18525,135865 +18526,136011 +18527,136018 +18528,134955 +18529,134589 +18530,135158 +18531,133479 +18532,133841 +18533,134952 +18535,133894 +18536,133893 +18537,133899 +18538,133901 +18558,135345 +18559,135353 +18560,135355 +18561,135353 +18562,135355 +18567,132397 +18568,134150 +18572,133486 +18573,132960 +18574,132764 +18575,133711 +18576,132535 +18577,135056 +18578,133038 +18579,133149 +18580,132963 +18581,132535 +18582,132582 +18583,133476 +18584,133121 +18585,133276 +18586,132952 +18591,133480 +18593,134582 +18595,132392 +18596,135660 +18597,136113 +18605,135153 +18606,132403 +18607,132395 +18630,135153 +18632,132836 +18633,133942 +18634,133942 +18635,133942 +18649,136006 +18650,134321 +18651,132797 +18652,132797 +18653,134953 +18654,134948 +18655,134955 +18656,134955 +18657,134955 +18658,134951 +18659,134950 +18660,134956 +18661,134955 +18662,134955 +18663,134955 +18664,134949 +18665,134949 +18666,134948 +18667,134955 +18668,134952 +18669,134955 +18670,134955 +18671,134949 +18672,134950 +18673,134955 +18689,132482 +18690,134950 +18691,132535 +18692,132535 +18693,134949 +18694,134321 +18695,134949 +18696,134949 +18697,134951 +18698,134953 +18699,134951 +18700,134949 +18701,134952 +18702,134949 +18703,133857 +18704,134564 +18705,133888 +18706,134955 +18707,134135 +18708,135153 +18709,134336 +18710,134121 +18711,133483 +18712,136128 +18713,134333 +18714,133483 +18715,134336 +18716,132386 +18717,134867 +18718,132790 +18719,134530 +18720,136098 +18721,132595 +18722,132482 +18723,134365 +18724,133025 +18725,133439 +18726,133151 +18727,133151 +18728,132767 +18729,134949 +18730,134955 +18731,134948 +18732,134949 +18733,134952 +18749,134949 +18750,134953 +18751,134951 +18769,134947 +18770,134947 +18771,134948 +18772,134952 +18773,134949 +18774,134957 +18775,134953 +18776,134949 +18789,134957 +18790,134948 +18791,134950 +18792,134948 +18793,134948 +18809,134951 +18810,135893 +18811,136051 +18812,134949 +18813,134949 +18814,134952 +18815,135971 +18816,136162 +18817,134955 +18818,134951 +18819,134951 +18820,134955 +18821,134954 +18822,134948 +18823,134955 +18824,134953 +18825,134948 +18826,134948 +18827,135008 +18828,132718 +18829,134589 +18830,132661 +18831,134589 +18832,132536 +18833,132679 +18834,132679 +18835,132939 +18836,132939 +18837,132648 +18838,132718 +18839,132650 +18840,133763 +18849,134589 +18850,134593 +18851,132939 +18852,132951 +18853,132939 +18854,132961 +18855,132649 +18856,132649 +18857,132647 +18858,132961 +18859,132961 +18860,133693 +18861,133763 +18862,133132 +18863,132539 +18864,135056 +18865,135056 +18866,135056 +18867,134589 +18868,132961 +18869,133132 +18870,133131 +18871,133131 +18872,133131 +18873,133132 +18874,133132 +18875,133132 +18876,133132 +18877,133132 +18878,133132 +18879,133694 +18880,133132 +18881,133132 +18882,135056 +18883,132659 +18884,132649 +18885,132649 +18886,132649 +18887,134593 +18888,132951 +18889,132951 +18890,133134 +18891,133134 +18892,133134 +18893,132647 +18894,133134 +18895,132647 +18896,132647 +18897,132719 +18898,134706 +18899,132666 +18900,132722 +18901,135033 +18902,135326 +18903,132722 +18904,132541 +18905,132539 +18906,132535 +18907,132543 +18908,134582 +18909,134582 +18910,133761 +18911,134589 +18912,132949 +18913,134594 +18914,134582 +18915,133763 +18916,135027 +18917,135016 +18918,133117 +18919,134587 +18920,133117 +18921,132514 +18922,135029 +18923,135029 +18924,135028 +18925,135027 +18929,132956 +18930,132611 +18931,133117 +18932,133755 +18933,132539 +18934,132723 +18935,134594 +18936,132959 +18937,132542 +18938,132608 +18939,135049 +18940,133119 +18943,132720 +18944,132535 +18945,132615 +18946,132956 +18947,134592 +18948,133770 +18949,132683 +18950,133126 +18951,135032 +18952,132954 +18953,134188 +18954,133134 +18955,133134 +18956,132741 +18957,132501 +18958,132589 +18959,132614 +18960,132960 +18961,133076 +18962,134586 +18963,135054 +18964,132720 +18965,132602 +18966,132617 +18967,132541 +18968,133754 +18969,134586 +18970,132965 +18971,135055 +18972,133074 +18973,133758 +18974,132501 +18975,133693 +18976,133693 +18977,132717 +18978,132615 +18979,132535 +18980,132501 +18981,132949 +18982,134586 +18983,135042 +18984,133076 +18985,133076 +18986,132625 +18987,132588 +18988,132613 +18989,133769 +18990,132963 +18991,132961 +18992,132511 +18993,134586 +18994,132500 +18995,135033 +18996,132940 +18997,132952 +18998,132956 +18999,132952 +19000,132767 +19001,132502 +19002,132717 +19003,134806 +19004,134805 +19005,132937 +19006,133127 +19007,133149 +19008,135054 +19009,134591 +19010,133119 +19011,132677 +19012,132632 +19013,132535 +19014,132613 +19015,133694 +19016,133758 +19017,132946 +19018,134591 +19019,132505 +19020,135044 +19029,135010 +19030,134585 +19031,133769 +19032,132939 +19033,132579 +19034,132514 +19035,132658 +19036,132716 +19037,132677 +19038,132682 +19039,133150 +19040,132724 +19041,134586 +19042,132515 +19043,132539 +19044,132952 +19049,132629 +19050,132498 +19051,132539 +19052,134581 +19053,132938 +19054,132535 +19055,132943 +19056,132951 +19057,132609 +19058,132498 +19059,134581 +19060,133129 +19061,134591 +19089,136040 +19090,132156 +19091,132150 +19092,136128 +19109,132666 +19110,132655 +19111,132953 +19112,134589 +19113,135054 +19114,135013 +19115,135996 +19116,135020 +19117,134586 +19118,132938 +19119,132498 +19120,134582 +19121,132940 +19122,132542 +19123,132542 +19124,132505 +19125,132952 +19126,132403 +19127,132403 +19128,132953 +19129,132407 +19130,132403 +19131,132592 +19132,132392 +19133,132408 +19134,132395 +19135,132395 +19136,135421 +19137,132398 +19138,132402 +19139,132718 +19140,133754 +19141,132654 +19142,132662 +19149,133435 +19183,132408 +19184,132539 +19191,133729 +19193,134586 +19194,134586 +19195,134586 +19196,134586 +19197,134586 +19201,134584 +19202,132392 +19203,132402 +19204,132408 +19209,132402 +19210,132397 +19211,132405 +19212,132392 +19213,132399 +19214,132414 +19215,132415 +19216,132415 +19217,132415 +19218,132415 +19219,135424 +19220,132397 +19221,132408 +19222,132791 +19223,135229 +19224,132417 +19225,134537 +19226,135423 +19227,135419 +19228,132416 +19229,132395 +19230,135419 +19231,132402 +19232,132405 +19233,132417 +19234,134709 +19235,132408 +19236,132397 +19237,135419 +19238,132400 +19239,134120 +19240,134159 +19241,132417 +19242,135419 +19243,135420 +19244,135423 +19245,135423 +19246,132417 +19247,132392 +19248,135423 +19249,134323 +19250,132624 +19251,135992 +19252,132415 +19253,135420 +19254,132489 +19255,132408 +19256,132405 +19257,132409 +19258,132401 +19259,134134 +19260,132409 +19261,132405 +19262,132405 +19268,132406 +19269,132417 +19271,132392 +19272,132415 +19273,132395 +19274,132392 +19275,132408 +19276,132402 +19277,132409 +19278,132393 +19279,132403 +19280,132392 +19281,132417 +19282,132409 +19283,132408 +19284,134434 +19285,132392 +19286,132402 +19287,132402 +19288,135423 +19289,135423 +19290,135424 +19291,132397 +19292,132409 +19293,135424 +19294,132402 +19295,132415 +19296,135424 +19297,132410 +19298,132394 +19299,132410 +19300,132400 +19301,132414 +19302,132400 +19303,132393 +19304,132408 +19305,132406 +19306,132409 +19307,132397 +19308,135424 +19309,132394 +19310,132392 +19311,132409 +19312,136124 +19313,132515 +19314,132606 +19315,135163 +19316,134430 +19317,134582 +19318,135005 +19319,135005 +19329,132404 +19330,135725 +19349,132514 +19350,132514 +19351,132514 +19369,132414 +19370,135423 +19371,132401 +19372,135424 +19374,135424 +19375,135424 +19389,132393 +19390,135419 +19391,132405 +19392,134429 +19393,134429 +19394,134429 +19395,133149 +19396,132417 +19397,133149 +19398,132407 +19399,133149 +19400,132402 +19401,132405 +19402,133149 +19403,132415 +19404,132408 +19405,132405 +19409,133149 +19411,133149 +19412,133149 +19413,133149 +19414,133149 +19415,133149 +19416,133149 +19417,133151 +19420,135616 +19421,134120 +19422,132383 +19426,135466 +19427,132668 +19430,133762 +19450,134583 +19455,133127 +19456,133127 +19457,133487 +19458,133149 +19459,135650 +19461,135466 +19462,133437 +19469,132938 +19475,135040 +19477,132489 +19478,134440 +19479,132488 +19480,132939 +19481,133027 +19482,133024 +19486,135053 +19487,134535 +19488,134531 +19492,134199 +19493,134198 +19494,134197 +19495,134200 +19496,134195 +19497,134196 +19498,134194 +19500,133041 +19501,133727 +19502,134430 +19503,132836 +19504,132594 +19505,132723 +19506,132723 +19507,135899 +19511,135826 +19512,133151 +19513,133151 +19519,133040 +19520,134816 +19523,132937 +19524,133053 +19525,133046 +19526,133053 +19527,132836 +19528,132926 +19529,132927 +19530,132921 +19531,132915 +19532,133476 +19533,133053 +19534,133053 +19535,133052 +19536,133052 +19537,133052 +19538,133053 +19539,133479 +19540,134162 +19541,133053 +19542,133041 +19543,133052 +19544,133052 +19545,133052 +19546,133052 +19547,134821 +19549,132392 +19550,132392 +19551,135274 +19552,135325 +19553,135325 +19555,135637 +19556,135640 +19557,135638 +19559,135005 +19562,132484 +19563,133146 +19564,135470 +19565,135826 +19566,134530 +19567,132914 +19568,132923 +19569,132921 +19570,132925 +19571,132916 +19572,132918 +19573,132929 +19574,134328 +19575,134583 +19576,136148 +19594,133058 +19595,133652 +19596,133054 +19597,132369 +19598,133041 +19599,133040 +19600,133480 +19601,133481 +19602,133479 +19603,133043 +19604,133055 +19605,133059 +19606,132369 +19607,133054 +19610,133046 +19611,133053 +19612,133041 +19613,133052 +19614,133052 +19615,133054 +19616,133059 +19617,133043 +19618,133041 +19619,133043 +19620,133049 +19621,133482 +19622,133476 +19623,133053 +19624,133482 +19625,133046 +19626,133057 +19627,133046 +19633,133052 +19634,133485 +19635,133476 +19636,133482 +19637,133048 +19638,132582 +19639,132592 +19640,135139 +19641,134335 +19643,133476 +19644,133046 +19645,133489 +19646,133482 +19647,133044 +19648,133490 +19649,133487 +19650,133052 +19651,133047 +19652,133487 +19653,135472 +19655,132939 +19657,135469 +19658,134376 +19660,133059 +19661,132366 +19662,134325 +19663,135996 +19664,133039 +19665,132536 +19666,135996 +19667,133151 +19668,135812 +19669,133482 +19670,133054 +19673,133491 +19674,132750 +19675,132535 +19676,132588 +19677,132602 +19678,132957 +19679,132523 +19680,134584 +19681,135059 +19682,133122 +19683,133476 +19684,132747 +19685,132956 +19686,132493 +19687,134583 +19688,132602 +19689,133490 +19690,133071 +19691,135054 +19692,132749 +19693,134584 +19694,133486 +19695,132627 +19696,132962 +19697,132501 +19698,134584 +19699,133045 +19700,132613 +19701,132585 +19702,135052 +19703,133486 +19704,132737 +19705,132963 +19706,132588 +19707,133042 +19708,134584 +19709,135059 +19710,134585 +19711,133078 +19712,133124 +19713,133488 +19714,133111 +19715,132751 +19716,133476 +19717,132962 +19718,132524 +19719,132584 +19720,134584 +19721,133043 +19722,132618 +19723,133124 +19724,135060 +19725,132613 +19726,133048 +19727,135059 +19728,133124 +19729,133489 +19730,132746 +19731,132583 +19732,132615 +19733,132964 +19734,132522 +19735,133039 +19736,134584 +19737,133124 +19738,135054 +19739,132767 +19740,135060 +19741,133041 +19742,132582 +19743,133729 +19744,133490 +19745,132596 +19746,133060 +19747,132582 +19748,133055 +19749,134584 +19750,132584 +19751,132602 +19752,132613 +19753,132963 +19754,132521 +19755,132960 +19756,133942 +19757,135327 +19758,132523 +19759,133071 +19760,132615 +19761,135058 +19762,133277 +19763,133279 +19764,133282 +19766,133038 +19767,133276 +19768,135351 +19769,133071 +19770,133057 +19771,133057 +19772,133053 +19773,133045 +19774,135465 +19775,133052 +19776,133049 +19777,133057 +19778,133045 +19779,135355 +19780,133038 +19781,134948 +19782,133053 +19783,133044 +19784,133046 +19785,134335 +19786,133729 +19787,132743 +19788,133763 +19789,134336 +19790,133135 +19791,133135 +19792,135039 +19793,132627 +19794,132535 +19795,132957 +19796,132617 +19797,132504 +19798,132914 +19799,132914 +19800,135227 +19801,133042 +19802,133345 +19803,133345 +19804,135131 +19805,135279 +19806,132607 +19810,132679 +19812,134591 +19813,132951 +19830,134458 +19831,134455 +19832,134456 +19835,135277 +19836,135652 +19837,133127 +19838,133127 +19839,134950 +19840,134950 +19841,132398 +19842,133078 +19843,134584 +19844,132751 +19849,132624 +19850,134582 +19851,135054 +19869,133486 +19870,132508 +19871,132615 +19872,134585 +19873,132802 +19874,134585 +19889,133757 +19890,135157 +19891,135166 +19892,133048 +19893,132743 +19894,132535 +19896,135345 +19897,135345 +19898,132535 +19899,132940 +19900,134584 +19901,132642 +19902,135466 +19903,133756 +19904,132947 +19905,135348 +19909,132957 +19910,132513 +19911,135039 +19912,132541 +19913,132536 +19914,135039 +19915,132611 +19916,134593 +19917,132541 +19918,134587 +19919,135009 +19920,132767 +19921,132539 +19929,132408 +19930,133140 +19931,132417 +19932,132498 +19949,132955 +19950,132539 +19951,134593 +19952,133763 +19953,132658 +19969,134594 +19970,133769 +19989,135035 +19990,132767 +19991,135040 +19992,132500 +19993,132535 +19994,132936 +19995,135049 +19996,132504 +19997,135323 +20009,135350 +20010,135317 +20011,135330 +20012,135314 +20013,135274 +20014,135276 +20015,135313 +20016,135274 +20017,135274 +20018,135274 +20029,135350 +20030,135279 +20031,135353 +20032,135355 +20033,135329 +20034,135345 +20035,135348 +20036,135325 +20037,135276 +20038,135321 +20049,135329 +20069,135276 +20070,135280 +20071,135322 +20072,135348 +20073,135353 +20074,135276 +20075,135328 +20076,135340 +20077,135327 +20078,135326 +20079,135324 +20080,135324 +20081,135280 +20082,135278 +20083,135326 +20084,135276 +20085,135280 +20086,135345 +20087,135277 +20088,135317 +20089,135311 +20090,135355 +20091,135355 +20092,135276 +20093,135327 +20094,135346 +20095,135325 +20109,135356 +20110,135321 +20111,135274 +20112,135344 +20113,135276 +20114,135340 +20115,135316 +20116,135314 +20117,135276 +20118,135325 +20119,135356 +20120,135325 +20121,135352 +20122,135314 +20129,135280 +20130,135278 +20149,135351 +20150,135324 +20151,135324 +20152,135311 +20153,135351 +20154,135325 +20155,135329 +20156,135302 +20157,135321 +20158,135329 +20159,135274 +20160,135274 +20161,135274 +20162,135274 +20163,135274 +20164,135274 +20165,135275 +20166,135348 +20167,135315 +20168,135324 +20169,135274 +20170,135311 +20171,135274 +20172,135302 +20173,135274 +20174,135311 +20175,135274 +20176,135274 +20177,135311 +20178,135324 +20179,135326 +20180,135272 +20182,135328 +20183,135276 +20184,135357 +20185,135352 +20186,135321 +20187,135280 +20188,135323 +20189,135341 +20190,135317 +20191,135272 +20192,135280 +20193,135357 +20194,135271 +20195,135349 +20196,135312 +20197,135275 +20198,135317 +20209,134591 +20210,134592 +20211,135357 +20212,135357 +20213,135357 +20214,135346 +20215,135346 +20216,135325 +20217,135280 +20218,135312 +20219,134420 +20220,134421 +20221,135340 +20222,135344 +20223,135343 +20224,135350 +20225,135328 +20228,135920 +20229,136006 +20249,135351 +20250,135280 +20251,135278 +20252,135275 +20253,135144 +20254,135150 +20255,133124 +20256,135166 +20257,135166 +20258,135169 +20259,135165 +20260,135167 +20269,135168 +20270,135312 +20271,135141 +20272,136163 +20273,135652 +20274,135165 +20275,135150 +20276,135302 +20289,135162 +20290,135312 +20291,135302 +20292,135311 +20293,135164 +20294,135150 +20295,135641 +20296,135641 +20297,135322 +20298,135150 +20299,135639 +20300,135473 +20309,135155 +20310,135469 +20311,134298 +20312,135311 +20313,135138 +20314,135341 +20315,135351 +20316,135469 +20317,135650 +20318,135643 +20319,135639 +20320,135652 +20321,135647 +20322,135157 +20323,135152 +20324,135641 +20325,135138 +20326,135661 +20327,135143 +20328,135341 +20329,135150 +20330,135162 +20331,135651 +20332,135647 +20333,135651 +20334,135139 +20335,135164 +20336,135162 +20337,135638 +20338,135641 +20339,135169 +20340,135150 +20341,135646 +20342,133646 +20345,135638 +20346,135168 +20347,135641 +20348,135151 +20349,135646 +20350,135147 +20351,134295 +20352,135156 +20353,135157 +20354,135641 +20355,135641 +20356,135155 +20357,135145 +20358,135641 +20359,135654 +20360,135155 +20361,135145 +20362,135147 +20363,135141 +20369,135638 +20370,135143 +20371,135647 +20372,135468 +20373,135163 +20374,135466 +20375,135469 +20376,135341 +20377,135153 +20378,135152 +20379,135147 +20380,135639 +20381,135149 +20382,135162 +20383,135651 +20384,135160 +20385,135145 +20386,135141 +20387,135640 +20388,135646 +20389,135151 +20390,135151 +20391,135469 +20392,135640 +20393,135144 +20394,134137 +20395,135154 +20396,135637 +20397,135650 +20398,135641 +20399,135641 +20400,135641 +20401,135168 +20402,135145 +20403,134583 +20404,132654 +20405,132654 +20406,132654 +20407,135637 +20408,135650 +20409,135147 +20410,135473 +20411,135650 +20412,135466 +20413,135145 +20414,135637 +20415,135155 +20416,135147 +20417,135145 +20418,135150 +20419,135153 +20420,135145 +20421,135146 +20422,135650 +20423,135158 +20424,135147 +20425,135662 +20426,135159 +20427,135644 +20428,135148 +20429,135148 +20430,135651 +20431,135152 +20432,135159 +20433,133060 +20434,135158 +20435,135651 +20436,135139 +20437,133723 +20438,135139 +20439,134298 +20440,135154 +20441,134298 +20442,135139 +20443,135145 +20444,135150 +20445,135145 +20446,135148 +20447,135641 +20448,135151 +20449,135154 +20450,135159 +20451,135641 +20452,135641 +20469,132940 +20470,135650 +20471,135660 +20472,135638 +20473,135637 +20474,132940 +20475,135654 +20476,132940 +20489,135648 +20490,135648 +20491,135638 +20492,135652 +20502,135325 +20503,133651 +20504,135612 +20505,136074 +20507,135274 +20534,135644 +20535,135826 +20536,135661 +20537,134950 +20538,135325 +20539,135812 +20549,135499 +20550,135490 +20551,135497 +20552,135497 +20553,135499 +20554,135500 +20555,135499 +20556,135489 +20557,135496 +20558,133356 +20569,135322 +20570,135341 +20571,135348 +20572,135344 +20573,135639 +20574,135654 +20575,134298 +20589,135330 +20590,135651 +20591,135660 +20592,135652 +20593,135646 +20594,135651 +20595,135638 +20596,135652 +20597,136133 +20598,135651 +20599,135646 +20601,135651 +20602,135651 +20603,135638 +20604,135646 +20605,135651 +20606,135651 +20607,135640 +20608,132867 +20609,132866 +20610,132863 +20611,132858 +20612,132877 +20613,132862 +20614,132857 +20615,132876 +20616,135350 +20617,134535 +20618,132932 +20619,132931 +20620,133021 +20621,135026 +20622,133029 +20623,133030 +20624,133006 +20625,133003 +20626,133002 +20627,133000 +20628,132999 +20629,132599 +20638,135313 +20639,135316 +20640,135280 +20649,135489 +20650,135500 +20651,135499 +20652,135498 +20653,135500 +20654,135612 +20655,134153 +20656,133222 +20657,134580 +20658,134578 +20659,133220 +20660,135490 +20661,134576 +20662,135611 +20663,134536 +20664,135491 +20665,135612 +20666,135496 +20667,135490 +20668,135493 +20669,135492 +20670,135489 +20671,135491 +20672,135491 +20673,135499 +20674,135495 +20675,135490 +20691,132833 +20692,132833 +20709,133653 +20710,134269 +20711,134238 +20712,135490 +20713,135495 +20714,135489 +20715,135036 +20716,135496 +20717,135610 +20718,135610 +20719,135496 +20720,135489 +20721,135610 +20722,135499 +20723,135490 +20724,135610 +20725,135612 +20726,135612 +20727,135612 +20728,135613 +20729,135614 +20730,132932 +20731,132932 +20732,135612 +20733,133000 +20734,135610 +20735,135617 +20736,135616 +20737,135617 +20738,135610 +20739,135124 +20740,135610 +20741,135613 +20742,135127 +20743,135616 +20744,135616 +20745,135125 +20746,135128 +20747,135465 +20748,135124 +20749,135125 +20750,135130 +20769,135241 +20770,133996 +20771,132330 +20772,132330 +20773,135427 +20774,134417 +20775,132766 +20776,133718 +20777,132410 +20778,135469 +20779,135425 +20780,135473 +20781,135426 +20782,135419 +20783,135423 +20784,132878 +20785,135147 +20786,135432 +20787,135139 +20788,135466 +20789,134822 +20790,135468 +20791,134864 +20793,135473 +20794,132869 +20795,132868 +20796,135324 +20797,135357 +20798,132859 +20799,132879 +20800,132878 +20801,135473 +20802,134244 +20803,134006 +20811,134588 +20812,135463 +20813,133127 +20814,133162 +20815,135473 +20816,135465 +20817,136162 +20818,134063 +20819,135148 +20820,134948 +20821,135473 +20822,135463 +20823,136162 +20824,135466 +20825,135466 +20826,134955 +20827,135466 +20828,135144 +20829,135468 +20830,135144 +20831,136185 +20832,135463 +20833,134951 +20834,135124 +20851,135468 +20852,135469 +20853,134953 +20871,135464 +20872,135349 +20873,136085 +20874,135805 +20875,136018 +20876,136007 +20891,136162 +20892,135155 +20893,134319 +20894,135241 +20895,132871 +20896,132870 +20897,132117 +20898,132121 +20899,132855 +20900,134959 +20901,132884 +20902,132883 +20903,135469 +20904,135467 +20905,134951 +20906,132394 +20907,135468 +20908,136051 +20909,134153 +20910,135940 +20911,134961 +20912,134961 +20913,134711 +20914,134309 +20915,134306 +20916,135468 +20917,135473 +20918,135139 +20919,134576 +20920,135139 +20921,134001 +20931,136140 +20951,134251 +20952,134317 +20953,132906 +20971,135940 +20972,135964 +20973,134953 +20974,134963 +20975,134961 +20976,136240 +20977,134130 +20978,134136 +20979,135610 +20980,135611 +20981,135139 +20982,134245 +20983,134245 +20984,134419 +20985,134954 +20986,134954 +20987,134954 +20995,135824 +21011,135139 +21012,135469 +21013,135464 +21014,135465 +21015,135464 +21016,135464 +21017,135473 +21018,135467 +21019,135144 +21020,135463 +21021,135154 +21022,135466 +21023,135464 +21024,135464 +21025,135154 +21026,135473 +21027,135465 +21031,134193 +21032,133742 +21051,133477 +21052,133052 +21071,135617 +21072,135228 +21091,135661 +21092,132507 +21093,135160 +21094,135463 +21095,135463 +21096,135139 +21097,135144 +21098,135139 +21099,135469 +21100,135469 +21101,135469 +21102,135435 +21111,135495 +21112,135489 +21113,135495 +21114,132689 +21115,134010 +21116,134014 +21140,132089 +21141,133488 +21142,132089 +21143,134329 +21144,134294 +21148,133116 +21149,134001 +21153,133116 +21154,132539 +21158,132409 +21159,132395 +21160,135027 +21161,135027 +21164,134134 +21175,133000 +21176,133116 +21179,135005 +21180,132490 +21181,132542 +21183,132539 +21189,133001 +21192,135274 +21193,135274 +21194,135274 +21202,133650 +21203,133989 +21204,135147 +21205,133942 +21206,135147 +21207,135225 +21208,135138 +21209,135148 +21212,132938 +21214,135005 +21215,132624 +21216,132535 +21219,135005 +21231,135033 +21234,135033 +21238,132395 +21251,135145 +21252,133488 +21256,132666 +21259,134592 +21260,134592 +21261,134592 +21262,134592 +21263,132543 +21267,134592 +21268,134592 +21291,133118 +21292,133120 +21293,133117 +21294,133117 +21295,133120 +21296,133151 +21297,133111 +21298,133117 +21299,133076 +21300,133127 +21301,133127 +21302,133122 +21303,133127 +21304,133117 +21306,133135 +21307,133074 +21308,133117 +21309,133111 +21310,133077 +21311,133117 +21312,133090 +21313,133111 +21314,133111 +21315,133078 +21316,133078 +21317,132767 +21318,134409 +21319,133636 +21320,134402 +21321,134403 +21322,134402 +21323,134404 +21324,134323 +21325,134410 +21326,134409 +21327,134004 +21328,134409 +21329,134410 +21330,134401 +21331,134407 +21332,134404 +21333,135026 +21337,135026 +21338,135026 +21341,135145 +21342,133476 +21362,133483 +21363,134313 +21364,134308 +21365,133856 +21366,134347 +21367,134580 +21368,133726 +21369,133996 +21370,132920 +21372,135160 +21373,135467 +21374,134143 +21375,134144 +21376,135138 +21401,135005 +21402,133942 +21403,134592 +21404,134586 +21405,134593 +21406,133436 +21407,132767 +21411,135660 +21414,133001 +21415,133723 +21416,134365 +21431,133740 +21457,135040 +21458,134085 +21459,132514 +21460,135162 +21461,134294 +21462,134294 +21463,134364 +21464,132677 +21465,132677 +21466,132664 +21467,132579 +21469,134249 +21470,134346 +21471,136007 +21472,132884 +21473,132804 +21474,134956 +21475,134951 +21491,135467 +21511,133488 +21512,133488 +21513,135225 +21514,135225 +21531,134877 +21537,132760 +21538,132542 +21539,134955 +21540,134955 +21541,134955 +21551,135940 +21552,135145 +21553,134950 +21554,135349 +21555,135280 +21556,132997 +21571,132369 +21572,132743 +21573,132743 +21574,135040 +21575,132638 +21576,132638 +21577,132638 +21578,132743 +21579,132743 +21580,132743 +21581,132397 +21582,132397 +21583,135819 +21584,134430 +21585,133647 +21586,133647 +21591,133132 +21594,134334 +21595,134335 +21596,134121 +21597,134335 +21598,134336 +21599,134336 +21600,134335 +21601,133434 +21602,134335 +21603,134333 +21604,135142 +21605,134333 +21606,134564 +21607,134336 +21608,135467 +21609,133729 +21610,134131 +21611,133438 +21612,133731 +21613,134948 +21614,132737 +21615,132737 +21616,132953 +21617,132953 +21618,132953 +21619,132953 +21620,135652 +21632,134153 +21651,133565 +21652,133076 +21671,132612 +21672,134856 +21673,134870 +21674,133060 +21691,135039 +21692,135272 +21693,132876 +21694,134583 +21695,133069 +21696,132938 +21697,132535 +21698,132938 +21699,132493 +21700,133148 +21701,133148 +21702,133069 +21711,134406 +21712,134406 +21713,132945 +21714,132945 +21715,132945 +21716,132960 +21717,133125 +21718,132960 +21719,132648 +21720,135466 +21721,135466 +21722,135150 +21723,135155 +21724,135819 +21725,133684 +21726,133060 +21731,132542 +21751,133476 +21752,132392 +21753,132601 +21754,132617 +21755,132604 +21756,132602 +21757,132609 +21771,135033 +21772,132495 +21773,135324 +21774,135317 +21775,135357 +21791,133476 +21792,133476 +21793,133046 +21794,132805 +21795,133043 +21796,132500 +21797,133148 +21798,133148 +21799,133148 +21800,133148 +21801,132768 +21802,135130 +21803,135130 +21804,134084 +21805,132938 +21806,135324 +21807,134246 +21808,135324 +21809,135326 +21810,132409 +21811,134593 +21812,134593 +21831,134593 +21832,134593 +21833,133712 +21834,134318 +21835,134314 +21836,134809 +21837,135131 +21839,133146 +21840,135030 +21841,135030 +21842,135022 +21843,134588 +21844,135033 +21845,132801 +21846,132609 +21847,132609 +21848,133763 +21849,132537 +21850,135356 +21851,134335 +21852,134335 +21853,134104 +21854,135469 +21855,132369 +21856,135128 +21874,134581 +21882,135344 +21894,134582 +21898,132737 +21899,134584 +21900,132718 +21901,134587 +21902,132956 +21903,132539 +21904,133995 +21905,133994 +21906,133993 +21911,132607 +21913,133282 +21918,132717 +21931,135349 +21935,135463 +21936,134564 +21937,135349 +21951,134413 +21952,132404 +21953,133043 +21954,133041 +21955,135651 +21956,133044 +21957,132689 +21958,133143 +21959,133143 +21960,133143 +21961,134584 +21962,133488 +21963,134588 +21964,134586 +21965,133772 +21966,132397 +21967,132416 +21968,135167 +21969,132540 +21970,132540 +21971,134815 +21972,134857 +21973,134014 +21974,134011 +21975,134001 +21976,134836 +21977,133622 +22009,133483 +22018,132939 +22020,133650 +22021,133116 +22022,132768 +22023,133276 +22024,134008 +22025,132606 +22027,134577 +22028,135349 +22029,134577 +22030,135349 +22031,135124 +22032,135131 +22033,132664 +22034,132579 +22035,133131 +22036,133131 +22037,133435 +22051,133718 +22071,134245 +22072,134585 +22073,134585 +22074,134583 +22075,135274 +22076,135274 +22077,135346 +22078,135321 +22079,135343 +22080,135324 +22081,135344 +22082,135327 +22083,135278 +22084,135327 +22085,135275 +22086,135278 +22087,135275 +22088,135348 +22089,135348 +22090,135324 +22091,135327 +22092,135278 +22093,135276 +22094,135312 +22095,135350 +22096,135353 +22097,135280 +22098,135313 +22099,132410 +22100,132402 +22101,132410 +22102,132402 +22103,132415 +22104,132395 +22105,132392 +22106,132415 +22107,135423 +22108,135423 +22109,132408 +22110,135423 +22111,135424 +22112,132401 +22113,132408 +22114,132395 +22115,132394 +22116,132397 +22117,133942 +22118,133485 +22119,133052 +22120,133487 +22121,133053 +22122,133041 +22123,133053 +22124,133041 +22125,133053 +22126,133041 +22127,133041 +22128,133041 +22129,133041 +22130,133053 +22131,133044 +22132,133041 +22133,133040 +22134,133054 +22135,135650 +22136,135641 +22137,135640 +22138,135341 +22139,135342 +22140,135341 +22141,135651 +22142,135302 +22143,135144 +22144,135163 +22145,135148 +22146,135147 +22147,135154 +22148,135153 +22149,135139 +22150,135469 +22151,135157 +22178,135145 +22179,133476 +22180,133476 +22184,133136 +22185,134243 +22191,134828 +22192,132596 +22193,134007 +22194,134003 +22195,134006 +22196,134004 +22197,134005 +22198,132806 +22199,133948 +22200,134002 +22201,134718 +22202,134817 +22203,134815 +22204,134859 +22205,134857 +22206,133893 +22207,133719 +22208,135131 +22209,135124 +22210,135124 +22211,135124 +22212,135576 +22213,135575 +22214,135562 +22215,135580 +22216,135576 +22217,135562 +22218,135572 +22219,135562 +22220,135578 +22221,135575 +22222,135576 +22223,135562 +22224,135578 +22225,135572 +22226,135662 +22227,135349 +22228,135348 +22229,135662 +22230,135355 +22231,135355 +22232,135662 +22233,135131 +22234,135130 +22235,135128 +22236,135129 +22237,135128 +22238,135131 +22239,135128 +22240,135127 +22241,135128 +22242,135129 +22243,135725 +22244,135725 +22245,135725 +22246,135651 +22247,135640 +22248,135651 +22249,132408 +22250,132408 +22251,135158 +22252,135158 +22253,133770 +22254,133756 +22255,132523 +22256,132492 +22257,135641 +22258,135641 +22271,132599 +22274,135005 +22291,132400 +22293,133001 +22299,133003 +22303,133014 +22304,133724 +22306,132535 +22315,132535 +22319,132392 +22352,134582 +22353,132535 +22357,132395 +22358,133129 +22363,132535 +22366,135325 +22367,135640 +22369,135036 +22370,135005 +22377,134239 +22378,135325 +22391,135225 +22393,132634 +22394,135146 +22395,135145 +22402,135274 +22403,135640 +22404,135131 +22411,135321 +22414,134013 +22415,133343 +22416,133748 +22417,134712 +22418,133101 +22419,133149 +22420,133149 +22421,133149 +22422,133149 +22423,133149 +22425,134588 +22426,134588 +22427,134594 +22428,134587 +22429,134865 +22436,132833 +22443,134419 +22444,133221 +22445,133229 +22447,135006 +22464,135657 +22477,134247 +22478,132403 +22480,132629 +22481,134583 +22482,132938 +22483,133296 +22484,134417 +22485,135736 +22492,135321 +22502,134582 +22503,132938 +22507,132737 +22508,132737 +22509,132737 +22510,132742 +22514,135054 +22515,132523 +22516,133124 +22517,133124 +22518,133124 +22519,134584 +22520,134584 +22523,132582 +22524,135005 +22527,135054 +22528,135054 +22529,135054 +22530,135054 +22531,135054 +22532,132742 +22533,133124 +22534,135054 +22535,135054 +22536,132742 +22537,132742 +22538,133124 +22539,135054 +22541,132582 +22542,132760 +22544,132582 +22545,132742 +22546,132618 +22547,133124 +22548,133124 +22549,133124 +22550,132519 +22551,132582 +22556,132742 +22557,134583 +22558,133138 +22559,132742 +22560,134583 +22562,134581 +22563,135145 +22564,132944 +22565,133138 +22566,133138 +22567,132582 +22568,132582 +22569,132582 +22570,132582 +22571,132500 +22572,132500 +22573,132500 +22575,132541 +22580,132742 +22581,132742 +22582,132742 +22583,132742 +22584,132736 +22585,132736 +22586,134584 +22587,132519 +22588,132519 +22589,132519 +22590,132519 +22591,132490 +22592,132582 +22593,132618 +22594,135033 +22595,132618 +22596,132618 +22597,132618 +22598,132395 +22611,133640 +22612,133642 +22613,133622 +22614,133625 +22615,135432 +22616,133622 +22617,133622 +22618,133625 +22631,133345 +22632,133345 +22634,134319 +22635,134955 +22636,134313 +22637,134955 +22638,134955 +22639,134317 +22640,134955 +22641,134311 +22642,134315 +22643,134309 +22645,132395 +22646,132670 +22647,132647 +22648,132964 +22649,134442 +22650,132624 +22651,134073 +22652,134071 +22653,135272 +22654,135272 +22655,132541 +22656,132603 +22671,135128 +22672,135131 +22673,132589 +22674,132602 +22675,133754 +22676,132962 +22677,132624 +22678,132511 +22679,132613 +22680,132582 +22681,133772 +22682,132945 +22683,132506 +22684,132582 +22685,132611 +22686,132946 +22687,134590 +22688,132627 +22689,132631 +22690,132543 +22691,133759 +22692,132494 +22693,134589 +22694,135131 +22695,135279 +22713,132490 +22716,132925 +22717,132598 +22718,133044 +22719,135652 +22720,135639 +22721,135639 +22722,135469 +22723,133345 +22725,133345 +22726,134581 +22730,134960 +22731,135313 +22732,135351 +22733,135351 +22734,132403 +22751,132650 +22752,132616 +22753,135646 +22754,132536 +22755,132948 +22756,132579 +22757,132586 +22758,135005 +22759,135054 +22761,132579 +22763,132579 +22765,133298 +22771,133473 +22772,135005 +22779,132592 +22780,132948 +22781,132948 +22782,132954 +22783,132536 +22784,135056 +22785,134802 +22787,134582 +22791,135651 +22792,135574 +22793,134339 +22794,133148 +22795,135042 +22796,135661 +22802,135145 +22803,135662 +22804,135344 +22805,134967 +22814,135325 +22831,134951 +22832,133146 +22833,132768 +22834,135150 +22835,135150 +22836,133729 +22837,132499 +22838,134319 +22839,134594 +22840,134593 +22841,132741 +22842,132658 +22843,132658 +22847,132736 +22848,134584 +22849,135033 +22850,135033 +22851,135033 +22852,135033 +22853,132582 +22854,133124 +22855,133124 +22856,133124 +22857,135061 +22858,133101 +22859,132738 +22860,132738 +22861,132582 +22862,135061 +22863,135061 +22864,135061 +22865,135061 +22866,135061 +22867,135061 +22868,135061 +22869,135046 +22870,132742 +22871,133101 +22872,134584 +22873,132742 +22874,132742 +22875,133101 +22876,133101 +22877,133101 +22878,133101 +22879,133101 +22880,133101 +22881,133101 +22882,134584 +22883,133101 +22884,133101 +22885,135581 +22886,133070 +22887,135648 +22888,132637 +22889,135033 +22890,135051 +22891,132612 +22892,132741 +22893,132392 +22894,132944 +22895,132944 +22896,132944 +22897,132944 +22898,132944 +22899,132944 +22900,132964 +22901,133111 +22902,132495 +22903,135648 +22904,135648 +22905,135648 +22906,135330 +22907,132502 +22908,133126 +22909,132960 +22910,132960 +22911,134377 +22912,132944 +22913,132944 +22914,132944 +22915,132944 +22916,132944 +22917,132944 +22918,132944 +22919,132949 +22920,133138 +22921,132639 +22922,134121 +22923,134333 +22924,133614 +22925,134961 +22926,134961 +22927,132386 +22928,132767 +22929,135533 +22930,135496 +22931,132169 +22951,134584 +22952,134417 +22953,135645 +22958,132677 +22971,135342 +22972,134589 +22973,132543 +22976,135343 +22977,135343 +22978,134580 +22979,133998 +22980,132751 +22981,132613 +22982,132584 +22983,132963 +22984,132521 +22985,134584 +22986,135033 +22987,133757 +22988,133757 +22989,133757 +22990,133756 +22991,133756 +22992,133757 +22993,133757 +22994,133769 +22995,133757 +22996,133770 +22997,133770 +22998,133760 +22999,133756 +23000,133756 +23001,132656 +23002,134305 +23003,133769 +23004,133755 +23005,133770 +23006,133770 +23007,133763 +23008,134354 +23009,133755 +23010,134305 +23011,133770 +23012,133762 +23013,133770 +23014,134354 +23015,133763 +23016,133770 +23017,133759 +23018,133770 +23019,133756 +23020,133766 +23021,133762 +23022,133759 +23023,133761 +23024,133760 +23025,133150 +23026,133756 +23027,134367 +23028,133762 +23029,133761 +23030,133756 +23031,132655 +23032,133763 +23033,133755 +23034,133769 +23035,133150 +23036,133150 +23037,133760 +23038,133770 +23039,133770 +23040,133759 +23041,133764 +23042,133770 +23043,133754 +23044,133763 +23045,133767 +23046,133762 +23047,133759 +23048,133754 +23049,133755 +23050,133762 +23051,133754 +23052,133755 +23053,133754 +23054,133762 +23055,133764 +23056,133770 +23057,133753 +23058,133759 +23059,133766 +23060,133758 +23061,133753 +23062,133758 +23063,133769 +23064,133763 +23065,133764 +23066,133770 +23067,133763 +23068,133759 +23069,133765 +23070,133762 +23071,133755 +23072,133758 +23073,133753 +23074,133150 +23075,133764 +23076,133760 +23077,133757 +23078,133762 +23079,133756 +23080,133756 +23081,133755 +23082,133762 +23083,133766 +23084,133756 +23085,133753 +23086,133754 +23087,133754 +23088,133755 +23089,133763 +23090,133762 +23091,133756 +23092,132655 +23093,133768 +23094,133754 +23095,133767 +23096,133764 +23097,132656 +23098,133754 +23099,133758 +23100,133754 +23101,133762 +23102,133766 +23103,134358 +23104,133762 +23105,133763 +23106,133769 +23107,133767 +23108,133762 +23109,133767 +23110,133765 +23111,133770 +23112,133770 +23113,133767 +23114,133766 +23115,133763 +23116,133763 +23117,133766 +23118,133765 +23119,133766 +23120,133763 +23121,133768 +23122,133766 +23123,133762 +23124,133759 +23125,133765 +23126,133763 +23127,133765 +23128,133763 +23129,133763 +23130,133763 +23131,133763 +23132,133762 +23133,133759 +23134,133758 +23135,133756 +23136,133754 +23137,133754 +23138,133768 +23139,133757 +23140,133754 +23141,133769 +23142,133754 +23143,133763 +23144,133762 +23145,132509 +23146,134144 +23147,134743 +23148,134461 +23149,134460 +23150,134317 +23151,133078 +23152,133118 +23153,133124 +23154,133139 +23155,133078 +23156,133118 +23157,133120 +23158,133124 +23159,133126 +23160,133124 +23161,133151 +23162,133120 +23163,133118 +23164,133139 +23165,133118 +23166,133151 +23171,133741 +23172,133639 +23173,135473 +23174,135471 +23175,133741 +23177,133741 +23189,132938 +23191,134584 +23192,132543 +23197,133161 +23198,132395 +23199,134585 +23200,132635 +23201,134943 +23211,132382 +23214,132381 +23215,132382 +23217,134001 +23218,132953 +23221,133998 +23223,135323 +23224,135323 +23225,135650 +23226,132394 +23227,132394 +23228,132418 +23229,134269 +23230,133046 +23231,132403 +23232,132403 +23233,132403 +23234,132403 +23235,132396 +23236,132396 +23237,135575 +23238,135581 +23239,133043 +23240,133042 +23241,135340 +23242,132408 +23243,132408 +23244,133477 +23245,135357 +23246,135277 +23247,135639 +23248,135315 +23249,132418 +23250,135009 +23251,132542 +23253,133476 +23254,133476 +23255,133476 +23256,134228 +23259,135317 +23260,135317 +23261,135317 +23262,132797 +23263,135317 +23264,135317 +23265,133054 +23266,132716 +23267,133043 +23268,133477 +23269,132945 +23270,132369 +23271,135663 +23272,135340 +23273,135340 +23274,135291 +23275,132403 +23276,132403 +23277,132403 +23278,132403 +23279,132403 +23280,132403 +23281,133942 +23282,135130 +23283,135131 +23284,136022 +23285,136006 +23286,136011 +23287,135830 +23288,132624 +23289,132739 +23291,136195 +23292,134418 +23293,134122 +23294,132963 +23295,135432 +23311,133599 +23312,133597 +23313,133608 +23314,134966 +23315,135129 +23316,133639 +23317,133639 +23318,133639 +23319,133639 +23320,133639 +23321,133741 +23322,133741 +23323,133741 +23324,133741 +23327,133133 +23332,134967 +23355,135274 +23357,133476 +23358,134060 +23370,134164 +23371,134230 +23379,135274 +23383,134708 +23385,135280 +23386,135280 +23387,134950 +23394,132744 +23395,132744 +23398,135152 +23399,135038 +23401,133489 +23403,134581 +23405,135274 +23406,134583 +23407,133133 +23408,133133 +23409,133133 +23410,133133 +23411,133133 +23412,133133 +23413,133133 +23414,133133 +23415,133133 +23416,133133 +23419,134966 +23420,133760 +23421,133760 +23422,133770 +23423,132629 +23424,132628 +23431,132788 +23432,134312 +23433,135581 +23434,135581 +23435,135926 +23436,134318 +23440,133003 +23445,134950 +23446,134950 +23447,134950 +23448,133040 +23450,134584 +23451,135350 +23454,135353 +23455,135463 +23458,134241 +23465,135146 +23468,133071 +23472,135277 +23473,134583 +23474,132744 +23475,133002 +23476,134583 +23477,132584 +23478,132500 +23479,132944 +23480,132738 +23481,132746 +23482,134584 +23483,132582 +23484,132746 +23485,134584 +23486,132582 +23487,133159 +23488,135061 +23489,135061 +23490,135054 +23491,133071 +23496,133006 +23497,134754 +23498,135317 +23500,135015 +23508,135280 +23509,133489 +23510,134584 +23513,132949 +23517,133071 +23519,133125 +23520,132483 +23521,134951 +23523,136076 +23526,135357 +23527,133729 +23528,132535 +23529,132491 +23530,132630 +23531,135036 +23532,132604 +23533,132606 +23537,132535 +23538,134583 +23539,135145 +23540,132750 +23543,133126 +23544,133126 +23545,134949 +23546,132946 +23547,134586 +23548,134584 +23549,134591 +23550,134586 +23551,134586 +23552,132606 +23553,133757 +23554,133770 +23555,133041 +23556,133054 +23557,133054 +23558,132743 +23559,132748 +23561,135271 +23562,132383 +23563,135038 +23568,134950 +23569,134950 +23573,135641 +23574,135277 +23575,134950 +23586,135145 +23590,135145 +23594,135145 +23601,135145 +23602,132643 +23603,132643 +23604,132643 +23605,132638 +23606,132252 +23607,132646 +23608,133360 +23617,132392 +23618,135847 +23628,132522 +23629,133359 +23637,133345 +23639,135493 +23642,132490 +23646,135128 +23647,135128 +23651,135005 +23656,135274 +23658,136207 +23659,133728 +23669,135274 +23673,135166 +23674,133345 +23675,132963 +23682,135357 +23683,135316 +23692,135325 +23703,135056 +23704,135054 +23705,133041 +23709,132745 +23710,134589 +23711,134590 +23712,135825 +23713,133442 +23714,133443 +23715,133444 +23716,133440 +23717,133441 +23718,133445 +23719,133446 +23720,133446 +23721,133445 +23722,133447 +23723,135424 +23724,135498 +23725,134358 +23726,134420 +23727,134337 +23728,133364 +23729,132606 +23730,132608 +23731,134855 +23732,132949 +23733,135350 +23734,135346 +23735,136040 +23736,132947 +23737,135033 +23738,134821 +23739,134802 +23740,134245 +23741,134247 +23742,132945 +23747,133771 +23749,133490 +23750,134960 +23752,136107 +23753,134586 +23754,136102 +23755,136107 +23760,132606 +23763,133612 +23765,132592 +23766,132503 +23767,133072 +23769,132606 +23770,133072 +23775,132535 +23776,133074 +23777,133074 +23779,132609 +23780,133372 +23785,132535 +23786,132535 +23791,135652 +23792,133964 +23796,134754 +23797,134754 +23798,135277 +23819,132939 +23824,132592 +23825,134965 +23826,132963 +23827,132963 +23835,134964 +23836,135275 +23837,135150 +23842,136183 +23843,136129 +23844,132499 +23845,132948 +23846,132948 +23847,134958 +23848,135611 +23849,132964 +23850,135611 +23851,135038 +23852,135038 +23853,132956 +23856,132589 +23858,134442 +23861,132535 +23866,135036 +23867,135471 +23875,135358 +23891,135005 +23892,132624 +23893,132624 +23894,135008 +23897,133374 +23898,132624 +23900,132535 +23901,132535 +23903,132418 +23904,132400 +23905,134582 +23908,135581 +23909,134710 +23914,135614 +23917,135463 +23918,135463 +23919,135463 +23920,135463 +23922,135358 +23923,132394 +23935,135358 +23942,133760 +23948,133491 +23949,135943 +23950,132624 +23951,132483 +23954,132483 +23955,133738 +23969,135274 +23976,134955 +23977,134955 +23982,136006 +23986,134581 +23989,135130 +23990,135579 +23991,134012 +24011,132264 +24012,133772 +24013,133772 +24014,135225 +24015,135225 +24016,135225 +24017,132599 +24018,132161 +24019,135240 +24020,133889 +24021,132965 +24022,133358 +24023,132643 +24024,132643 +24025,132649 +24026,134334 +24027,135302 +24028,135302 +24029,133044 +24030,133061 +24033,133482 +24036,135019 +24037,134462 +24039,133738 +24044,136152 +24045,133071 +24046,135651 +24047,135353 +24048,135312 +24049,135312 +24050,135271 +24051,134946 +24052,132998 +24053,134140 +24054,132539 +24055,133724 +24056,132386 +24057,136134 +24058,136188 +24059,135143 +24060,135825 +24061,134337 +24062,135166 +24063,135145 +24064,135033 +24065,133766 +24066,132679 +24067,132590 +24068,132590 +24069,134584 +24070,134594 +24071,132519 +24072,133737 +24073,133771 +24074,132510 +24076,132632 +24077,134593 +24078,133694 +24079,133684 +24085,132536 +24087,133365 +24095,132939 +24097,132624 +24099,135581 +24101,132745 +24102,132637 +24103,132961 +24104,133729 +24105,133729 +24106,133729 +24107,133729 +24108,133771 +24109,132945 +24110,132616 +24111,133729 +24112,132535 +24113,132491 +24114,133693 +24115,135056 +24116,133974 +24117,133974 +24118,132404 +24119,135575 +24120,132612 +24121,135139 +24122,134336 +24131,133897 +24132,134848 +24151,134854 +24152,134834 +24153,134332 +24154,134327 +24155,134442 +24156,134811 +24157,135651 +24158,135648 +24159,133770 +24160,133772 +24161,133049 +24162,134584 +24163,134584 +24164,132512 +24165,134334 +24166,135315 +24167,135316 +24168,135005 +24169,136183 +24170,133693 +24173,132537 +24174,133772 +24175,133774 +24176,133730 +24177,132949 +24178,132498 +24179,132590 +24180,132615 +24181,132539 +24182,134589 +24183,132965 +24184,135049 +24185,135049 +24186,135654 +24187,134229 +24188,134229 +24189,132688 +24190,132606 +24191,135042 +24192,135042 +24193,135044 +24194,132963 +24211,134809 +24212,134820 +24213,134842 +24214,134840 +24215,134847 +24216,134826 +24217,134827 +24220,134337 +24221,133900 +24231,133639 +24251,132494 +24252,136217 +24254,135317 +24255,135277 +24256,132403 +24281,134718 +24282,134718 +24283,134718 +24284,133942 +24285,133942 +24286,132632 +24287,134593 +24288,132632 +24289,132536 +24290,132725 +24291,132536 +24292,133685 +24293,134718 +24294,134718 +24295,134718 +24296,132796 +24297,133754 +24320,135145 +24321,135145 +24331,135040 +24335,135274 +24336,135274 +24337,135274 +24339,135274 +24340,135274 +24341,135274 +24342,135274 +24343,135145 +24345,134582 +24347,135039 +24348,135009 +24351,132392 +24352,132718 +24353,132718 +24354,134589 +24355,132539 +24356,132539 +24357,132539 +24358,132939 +24366,135325 +24367,134955 +24368,134955 +24369,134955 +24370,135131 +24375,135036 +24380,134085 +24381,135036 +24384,132745 +24385,132745 +24386,132745 +24387,132745 +24388,132745 +24389,132745 +24390,132745 +24391,132745 +24392,132745 +24393,132739 +24394,135145 +24395,135145 +24402,135009 +24405,135039 +24406,135009 +24415,133726 +24431,135039 +24445,135145 +24446,132395 +24448,133071 +24452,135325 +24461,135274 +24472,135145 +24473,135145 +24478,135325 +24479,135325 +24480,135225 +24481,135225 +24482,135225 +24483,135138 +24484,135138 +24485,135138 +24486,135138 +24487,135138 +24488,135145 +24489,135145 +24490,135138 +24496,133648 +24497,132950 +24498,132535 +24499,135145 +24503,135145 +24504,132736 +24505,135033 +24506,134584 +24507,135033 +24508,135033 +24509,135033 +24510,133124 +24511,132618 +24512,132582 +24513,132582 +24514,132490 +24517,135145 +24521,133896 +24522,133898 +24528,135005 +24542,135036 +24546,132645 +24547,132722 +24548,132628 +24550,132751 +24551,134581 +24552,134585 +24553,134583 +24554,134584 +24555,133116 +24556,133117 +24557,133137 +24558,133126 +24559,132616 +24560,132613 +24561,132603 +24562,132606 +24563,132957 +24564,132944 +24565,132579 +24566,132541 +24567,132585 +24568,133997 +24569,133375 +24570,132803 +24571,134950 +24572,134418 +24591,132384 +24592,132384 +24593,133466 +24594,132791 +24595,132800 +24596,132795 +24597,132795 +24598,132645 +24599,132645 +24600,132645 +24601,132645 +24602,135358 +24603,133763 +24604,132495 +24605,134581 +24606,135057 +24607,133693 +24608,132939 +24609,132939 +24610,132649 +24611,132644 +24612,132644 +24613,134581 +24614,134581 +24615,134588 +24616,132939 +24622,132493 +24623,132522 +24624,132499 +24625,133892 +24629,133900 +24633,134334 +24634,133476 +24635,132664 +24636,132665 +24637,132665 +24638,132662 +24639,132665 +24640,132665 +24641,132691 +24642,132663 +24643,132664 +24644,132670 +24645,132671 +24646,133373 +24648,133888 +24649,135615 +24650,135610 +24651,135614 +24652,135616 +24653,135616 +24655,135321 +24656,135321 +24658,135323 +24659,135302 +24672,132513 +24673,135248 +24674,135249 +24675,135250 +24676,135251 +24677,135252 +24678,135243 +24679,135244 +24680,135245 +24681,135246 +24682,135247 +24683,135255 +24684,135256 +24685,135257 +24686,135258 +24687,135259 +24688,134202 +24689,134204 +24690,134221 +24691,134212 +24692,134215 +24693,134219 +24694,133917 +24695,134950 +24696,133914 +24697,133910 +24698,133912 +24699,133917 +24700,133918 +24701,133919 +24702,133918 +24704,133913 +24709,133911 +24710,133916 +24711,133915 +24712,133916 +24713,133909 +24715,134300 +24716,133905 +24718,133908 +24719,133906 +24720,135612 +24721,135612 +24729,133489 +24730,134123 +24733,132804 +24736,133076 +24737,133729 +24738,133729 +24739,133732 +24740,135472 +24741,135472 +24742,135472 +24743,133732 +24746,132944 +24747,132741 +24748,132498 +24749,132617 +24750,135575 +24751,132400 +24752,132400 +24753,135576 +24754,135033 +24755,135326 +24756,135351 +24757,132542 +24758,132542 +24760,132653 +24761,135056 +24762,132501 +24763,132961 +24764,132961 +24765,132961 +24766,132961 +24767,132603 +24768,132943 +24769,132502 +24770,133445 +24771,133445 +24772,135055 +24773,132504 +24774,132949 +24775,135661 +24776,133604 +24777,135056 +24778,133442 +24782,132539 +24784,133441 +24786,132535 +24787,132585 +24790,132539 +24792,135280 +24793,132615 +24795,135005 +24797,132539 +24811,135352 +24812,135349 +24813,135349 +24814,135658 +24815,135581 +24816,135579 +24817,132768 +24818,133163 +24819,133163 +24820,133163 +24821,134961 +24831,133706 +24851,135356 +24891,132392 +24892,132648 +24893,132648 +24894,134581 +24895,134586 +24896,132939 +24897,132903 +24898,132904 +24912,135039 +24917,133072 +24919,133489 +24923,135151 +24924,133038 +24925,135128 +24926,135145 +24927,134589 +24928,133763 +24929,135493 +24930,135493 +24931,135493 +24932,132650 +24933,133136 +24934,135054 +24935,132539 +24936,132670 +24937,132670 +24938,133136 +24939,133136 +24940,133136 +24941,133136 +24942,133165 +24943,134589 +24944,132681 +24945,132687 +24946,133770 +24947,132683 +24948,132683 +24949,132683 +24950,132683 +24951,132679 +24957,132645 +24958,134581 +24959,134586 +24960,135057 +24961,135057 +24962,135057 +24963,135057 +24964,135057 +24965,135057 +24966,135033 +24967,133693 +24974,132654 +24975,135012 +24976,132939 +24977,132939 +24978,132505 +24981,135648 +24982,132606 +24983,132612 +24984,132940 +24985,133770 +24986,132940 +24988,132665 +24990,135661 +24992,132679 +24993,132679 +24994,132679 +24995,132679 +24996,132679 +24997,132679 +24998,132679 +25006,132692 +25007,132692 +25008,132692 +25012,132679 +25013,132690 +25014,132690 +25015,132690 +25016,132672 +25028,132888 +25036,135302 +25037,134800 +25038,134865 +25039,132687 +25041,132515 +25042,134582 +25046,133046 +25047,133046 +25048,136120 +25049,132725 +25050,134586 +25051,132536 +25052,132895 +25053,135350 +25054,132874 +25055,132873 +25072,134335 +25073,134335 +25074,134335 +25075,135463 +25076,135467 +25077,135469 +25078,135471 +25079,133045 +25080,133679 +25081,135036 +25096,133050 +25098,132499 +25101,134706 +25102,135055 +25104,135056 +25111,134584 +25116,132963 +25118,136248 +25119,135321 +25120,135274 +25132,132261 +25133,134951 +25134,134961 +25138,134948 +25139,133041 +25145,133476 +25146,133681 +25147,133682 +25148,133050 +25149,133050 +25152,133489 +25153,133491 +25154,132392 +25155,135130 +25157,132636 +25158,132963 +25159,132963 +25160,132590 +25161,132612 +25162,135033 +25163,133126 +25164,133126 +25165,133126 +25166,133116 +25167,135280 +25168,132952 +25169,134591 +25170,134417 +25171,132937 +25172,135042 +25173,135313 +25177,133490 +25178,133040 +25179,134586 +25180,133041 +25181,134586 +25184,136162 +25185,132720 +25186,134586 +25187,132512 +25188,132960 +25191,132535 +25192,135005 +25193,135029 +25197,135145 +25198,134586 +25199,132645 +25200,132645 +25201,132692 +25202,132672 +25203,132672 +25204,132679 +25205,132679 +25206,132690 +25207,132645 +25208,134589 +25209,132645 +25210,132645 +25211,132645 +25212,132645 +25213,132501 +25214,132535 +25215,132645 +25216,132962 +25217,134584 +25218,132645 +25219,132512 +25220,132535 +25221,132960 +25222,132720 +25223,134586 +25224,132962 +25225,132501 +25226,134584 +25227,132535 +25228,132649 +25229,133693 +25230,133694 +25231,132959 +25232,133762 +25233,132539 +25234,132504 +25235,132504 +25236,135052 +25245,132684 +25246,136092 +25247,135033 +25248,132505 +25249,132718 +25250,134587 +25251,132535 +25253,132949 +25254,134588 +25255,134588 +25259,135005 +25260,135612 +25271,134942 +25272,135009 +25278,135146 +25285,132608 +25326,132490 +25327,134582 +25328,132541 +25329,132939 +25343,134584 +25351,132490 +25352,133078 +25360,133078 +25361,133078 +25362,133040 +25363,133040 +25364,133040 +25365,133040 +25366,133040 +25367,133040 +25376,133072 +25377,135145 +25378,135145 +25380,135009 +25382,135138 +25383,133090 +25384,133693 +25401,133076 +25403,133132 +25410,132395 +25411,135325 +25432,133117 +25433,133117 +25434,133117 +25437,135145 +25441,132392 +25456,132488 +25466,134027 +25467,134025 +25468,134021 +25469,134005 +25470,132392 +25471,132392 +25472,134026 +25473,134024 +25474,132392 +25475,134028 +25480,134023 +25481,134016 +25482,133716 +25483,133717 +25484,133715 +25485,135005 +25488,133122 +25489,135005 +25496,135321 +25499,132392 +25503,135131 +25504,135131 +25506,135643 +25507,135643 +25508,135643 +25509,135643 +25510,135643 +25511,135643 +25513,135643 +25514,135643 +25515,135643 +25516,135643 +25533,132392 +25542,134182 +25571,135012 +25591,135128 +25592,135125 +25593,135128 +25594,132415 +25595,132404 +25596,132415 +25597,132409 +25598,132398 +25599,132418 +25600,132418 +25601,132403 +25602,135499 +25603,135498 +25604,135496 +25605,135499 +25606,135499 +25607,135533 +25608,135533 +25609,135651 +25610,135311 +25611,135322 +25612,135344 +25613,135661 +25614,135648 +25615,133490 +25616,133040 +25617,133060 +25618,133041 +25619,133490 +25620,133040 +25621,133041 +25622,133041 +25623,133041 +25624,133041 +25625,133045 +25626,133488 +25627,133488 +25628,133488 +25629,133476 +25630,135125 +25631,135128 +25632,135128 +25633,135130 +25634,135125 +25635,135349 +25636,135340 +25637,135340 +25638,135311 +25639,135327 +25640,135343 +25641,135352 +25642,135340 +25643,135340 +25644,135340 +25645,135353 +25646,135350 +25647,135350 +25648,135353 +25649,135273 +25650,135351 +25651,135357 +25652,135351 +25653,135351 +25654,135351 +25655,135351 +25656,135326 +25657,133762 +25658,133071 +25659,133132 +25660,133076 +25661,134743 +25662,134321 +25671,132628 +25672,134582 +25673,134585 +25674,132631 +25675,132628 +25676,132626 +25677,135049 +25678,132626 +25679,132741 +25680,134583 +25681,135040 +25682,132722 +25683,134586 +25684,135040 +25685,135044 +25686,134589 +25687,135036 +25688,132742 +25689,132647 +25690,135049 +25691,135049 +25692,133078 +25693,133078 +25694,134585 +25695,135049 +25696,134706 +25697,132960 +25698,132960 +25699,132721 +25700,135037 +25701,134581 +25702,132950 +25703,132539 +25704,132722 +25705,134582 +25706,132957 +25707,132950 +25708,132541 +25709,132541 +25710,132637 +25711,132482 +25712,135035 +25713,135038 +25714,134592 +25715,133122 +25716,133122 +25717,133122 +25718,132958 +25719,132492 +25720,132608 +25721,132741 +25722,134592 +25723,132958 +25724,132965 +25725,133683 +25726,132606 +25727,132492 +25728,132492 +25729,133683 +25730,132722 +25731,132722 +25732,134582 +25733,133683 +25734,135046 +25735,132965 +25736,132610 +25737,132512 +25738,133681 +25739,133681 +25740,132500 +25741,132584 +25742,132751 +25743,132767 +25744,132960 +25745,134583 +25746,132745 +25747,132937 +25748,132629 +25749,132745 +25750,132964 +25751,132743 +25752,132589 +25753,132612 +25754,132634 +25755,132638 +25756,132946 +25757,132514 +25758,132611 +25759,134590 +25760,132582 +25761,132945 +25762,132511 +25763,132626 +25764,135058 +25765,132588 +25766,132600 +25767,132523 +25768,134582 +25769,132628 +25770,135059 +25771,132493 +25772,132602 +25773,132955 +25774,135038 +25775,132500 +25776,132612 +25777,135054 +25778,132588 +25779,132600 +25780,132628 +25781,132493 +25782,132945 +25783,135039 +25784,132515 +25785,132539 +25786,132606 +25787,132634 +25788,132962 +25789,134583 +25790,135040 +25791,133137 +25792,132629 +25793,132589 +25794,132960 +25795,132500 +25796,134586 +25797,132609 +25798,132629 +25799,135038 +25800,132618 +25801,132751 +25802,132937 +25803,132521 +25804,132584 +25805,134586 +25806,135051 +25807,132620 +25808,132603 +25809,132635 +25810,132541 +25811,132959 +25812,134589 +25813,132498 +25814,135038 +25815,135038 +25816,132768 +25817,132590 +25818,132611 +25819,132938 +25820,134590 +25821,132514 +25822,135049 +25823,132767 +25824,132767 +25825,132768 +25826,132767 +25827,135051 +25828,132535 +25829,132613 +25830,132736 +25831,132957 +25832,132495 +25833,134584 +25834,132690 +25835,132964 +25836,133124 +25837,135057 +25838,133124 +25839,133124 +25840,132539 +25841,132606 +25842,132949 +25843,132515 +25844,134583 +25845,132739 +25846,132739 +25847,135040 +25848,132738 +25849,134583 +25850,132938 +25851,132602 +25852,132492 +25853,132611 +25854,133077 +25855,133770 +25856,133125 +25857,132592 +25858,132494 +25859,135037 +25860,132535 +25861,132606 +25862,132739 +25863,132491 +25864,132611 +25865,132962 +25866,132515 +25867,132952 +25868,134584 +25869,132663 +25870,132543 +25871,132543 +25872,135058 +25873,135009 +25874,132607 +25875,133762 +25876,134582 +25877,132662 +25878,132767 +25879,132543 +25880,135009 +25881,132515 +25882,132743 +25883,132539 +25884,133768 +25885,132952 +25886,132617 +25887,135040 +25888,135017 +25889,132655 +25890,134582 +25891,132661 +25892,132956 +25893,132539 +25894,132661 +25895,132505 +25896,134583 +25897,135045 +25898,133142 +25899,133131 +25900,133754 +25901,134953 +25902,132516 +25903,132589 +25904,133131 +25905,132616 +25906,132959 +25907,134589 +25908,132751 +25909,135057 +25910,133759 +25911,134951 +25912,132583 +25913,132616 +25914,132745 +25915,132494 +25916,133766 +25917,132943 +25918,132943 +25919,132519 +25920,134583 +25921,133757 +25922,132741 +25923,132741 +25924,132583 +25925,132612 +25926,132750 +25927,132960 +25928,132500 +25929,132537 +25930,132589 +25931,132612 +25932,132750 +25933,132960 +25934,134584 +25935,135054 +25936,133090 +25937,133090 +25938,133770 +25939,132611 +25940,134949 +25941,132952 +25942,134590 +25943,134949 +25944,132656 +25945,133754 +25946,132537 +25947,132494 +25948,133763 +25949,132656 +25950,133759 +25951,135009 +25952,135009 +25953,133769 +25954,135013 +25955,134956 +25956,132650 +25957,132492 +25958,133770 +25959,132601 +25960,133753 +25961,132955 +25962,132741 +25963,134583 +25964,132382 +25965,135040 +25966,132540 +25967,133757 +25968,134582 +25969,132510 +25970,132605 +25971,132939 +25972,133758 +25973,135010 +25974,134581 +25975,133766 +25976,132663 +25977,133768 +25978,133770 +25979,133758 +25980,132539 +25981,133693 +25982,135026 +25983,135026 +25984,135014 +25985,133772 +25986,135036 +25987,132954 +25988,134953 +25989,132660 +25990,135026 +25991,132768 +25992,135026 +25993,133770 +25994,132600 +25995,132539 +25996,133136 +25997,133766 +25998,132492 +25999,132955 +26000,135036 +26001,133361 +26002,132681 +26003,135013 +26004,132612 +26005,132512 +26006,133754 +26007,132940 +26008,132538 +26009,135011 +26011,132661 +26012,135036 +26013,133133 +26014,134951 +26015,133767 +26016,133766 +26017,132647 +26018,133753 +26019,132514 +26020,132957 +26021,134587 +26022,132510 +26023,135010 +26024,132492 +26025,132606 +26026,132539 +26027,133763 +26028,135012 +26029,132955 +26030,132535 +26031,132515 +26032,132613 +26033,132515 +26034,132736 +26035,135034 +26036,132945 +26037,132494 +26038,132646 +26039,134584 +26040,135057 +26041,132767 +26042,132601 +26043,133767 +26044,132512 +26045,133759 +26046,134953 +26047,133762 +26048,133758 +26049,135011 +26050,132955 +26051,132646 +26052,134589 +26053,132681 +26054,135033 +26055,132608 +26056,133754 +26057,133760 +26058,132500 +26059,132521 +26060,134955 +26061,134592 +26062,132955 +26063,135008 +26064,133768 +26065,134952 +26066,132542 +26067,132666 +26068,135033 +26069,134706 +26070,134706 +26071,134706 +26072,132960 +26073,132606 +26074,132634 +26075,132966 +26076,132515 +26077,132539 +26078,135040 +26079,132601 +26080,133756 +26081,132961 +26082,133772 +26083,134589 +26084,135007 +26085,134956 +26086,132542 +26087,132627 +26088,132615 +26089,132963 +26090,132590 +26091,135053 +26092,132650 +26093,132500 +26094,133121 +26095,133121 +26096,135033 +26097,133763 +26098,133070 +26099,134949 +26100,132541 +26101,133756 +26102,132966 +26103,132602 +26104,135033 +26105,132628 +26106,132677 +26107,132938 +26108,132495 +26109,132535 +26110,134592 +26111,132497 +26112,133754 +26113,132954 +26114,135057 +26115,133078 +26116,135043 +26117,132541 +26118,133766 +26119,132678 +26120,134948 +26121,134953 +26122,132617 +26123,132629 +26124,134592 +26125,132960 +26126,133772 +26127,132500 +26128,132505 +26129,132536 +26130,134586 +26131,132687 +26132,132957 +26133,135056 +26134,132541 +26135,132686 +26136,132510 +26137,133772 +26138,132499 +26139,132767 +26140,132520 +26141,133770 +26142,132670 +26143,132949 +26144,134591 +26145,132541 +26146,132649 +26147,135048 +26148,134948 +26149,132512 +26150,133111 +26151,132606 +26152,134951 +26153,132542 +26154,132957 +26155,132613 +26156,132628 +26157,132677 +26158,132493 +26159,134592 +26160,132588 +26161,135007 +26162,132957 +26163,134583 +26164,135059 +26165,135033 +26166,133078 +26167,133765 +26168,132612 +26169,132519 +26170,132767 +26171,132541 +26172,133127 +26173,133766 +26174,132670 +26175,133765 +26176,134956 +26177,134588 +26178,135007 +26179,133117 +26180,132497 +26181,132600 +26182,135055 +26183,132759 +26184,132655 +26185,132960 +26186,132542 +26187,132608 +26188,132589 +26189,133760 +26190,132496 +26191,134586 +26192,135008 +26193,132953 +26194,135036 +26195,135033 +26196,134592 +26197,133694 +26198,132643 +26199,133134 +26200,132767 +26201,133761 +26202,133772 +26203,135021 +26204,132639 +26205,132606 +26206,132539 +26207,132539 +26208,132949 +26209,132949 +26210,132515 +26211,132676 +26212,134594 +26213,135049 +26214,132767 +26215,132656 +26216,132615 +26217,135058 +26218,132677 +26219,135021 +26220,133074 +26221,132499 +26222,132940 +26223,134593 +26224,133074 +26225,132541 +26226,132670 +26227,133756 +26228,133757 +26229,135045 +26230,132506 +26231,132542 +26232,134950 +26233,133761 +26234,134948 +26235,132608 +26236,132944 +26237,132584 +26238,134590 +26239,132602 +26240,132642 +26241,132751 +26242,132938 +26243,133123 +26244,132938 +26245,132500 +26246,132680 +26247,135033 +26248,134586 +26249,134583 +26250,133772 +26251,133757 +26252,132518 +26253,132616 +26254,132669 +26255,132767 +26256,132633 +26257,133101 +26258,132954 +26259,133766 +26260,134593 +26261,132539 +26262,133757 +26263,135056 +26264,132589 +26265,132602 +26266,132616 +26267,132751 +26268,132541 +26269,132937 +26270,132500 +26271,133754 +26272,134586 +26273,135054 +26274,133076 +26275,132943 +26276,134593 +26277,132768 +26278,133770 +26279,132658 +26280,132519 +26281,135045 +26282,134593 +26283,134949 +26284,132502 +26285,132542 +26286,132515 +26287,132608 +26288,132659 +26289,132613 +26290,132937 +26291,132632 +26292,133069 +26293,132944 +26294,132666 +26295,132496 +26296,134592 +26297,132586 +26298,135054 +26299,133760 +26300,134592 +26301,135033 +26302,133134 +26303,132768 +26304,133758 +26305,133134 +26306,135467 +26307,132520 +26308,132514 +26309,133090 +26310,132589 +26311,132649 +26312,132519 +26313,132616 +26314,132749 +26315,132767 +26316,132943 +26317,134583 +26318,133146 +26319,133146 +26320,135470 +26321,135054 +26322,134957 +26323,133754 +26324,134953 +26325,134952 +26326,132587 +26327,132750 +26328,132963 +26329,135061 +26330,132767 +26331,133754 +26332,132741 +26333,132589 +26334,132966 +26335,132502 +26336,134583 +26337,135032 +26338,133069 +26339,132937 +26340,132517 +26341,132589 +26342,135054 +26351,132744 +26352,132940 +26353,132501 +26354,132586 +26355,134588 +26356,135423 +26357,135424 +26358,135424 +26359,132612 +26360,132616 +26361,135427 +26362,132612 +26363,132606 +26364,135033 +26365,133074 +26366,133711 +26367,133714 +26371,134345 +26372,133440 +26373,132744 +26374,134317 +26375,134311 +26376,133044 +26377,133759 +26378,134350 +26379,132395 +26380,132395 +26381,132597 +26382,134350 +26383,133748 +26385,135612 +26386,135124 +26387,132745 +26388,133604 +26389,133602 +26390,132962 +26391,133369 +26411,135613 +26412,135469 +26413,134953 +26414,132536 +26415,132543 +26416,135038 +26417,135038 +26418,135038 +26419,135045 +26420,134144 +26431,133763 +26432,135349 +26433,135651 +26434,132493 +26435,132497 +26436,132959 +26437,132522 +26438,133767 +26439,133693 +26451,135358 +26452,135358 +26453,132602 +26454,132618 +26455,132964 +26456,132964 +26457,132964 +26458,132964 +26459,133715 +26460,135161 +26461,132189 +26462,135349 +26463,135343 +26464,135650 +26465,135033 +26466,132721 +26467,132638 +26468,133768 +26469,133739 +26470,132499 +26471,135054 +26472,135049 +26473,132964 +26474,133726 +26475,132616 +26476,132617 +26477,135327 +26478,135327 +26479,135326 +26491,133941 +26492,135275 +26493,135275 +26494,135344 +26495,135531 +26496,135532 +26497,132382 +26498,132381 +26499,132381 +26500,135128 +26501,135033 +26502,132511 +26503,135344 +26504,135055 +26511,132938 +26512,132963 +26513,132648 +26514,132741 +26515,132626 +26516,132801 +26517,132745 +26531,134743 +26532,133000 +26533,134349 +26534,134522 +26535,132399 +26536,135144 +26537,133368 +26538,135148 +26539,135148 +26540,132950 +26541,132512 +26542,132616 +26543,132541 +26544,132403 +26545,135576 +26546,134061 +26547,134953 +26548,134956 +26549,133639 +26550,133117 +26551,134139 +26552,134433 +26571,134125 +26572,135346 +26573,135351 +26574,135346 +26575,135346 +26576,135343 +26577,135274 +26578,135280 +26579,135328 +26580,135468 +26581,135468 +26582,133442 +26583,133443 +26584,133444 +26585,135324 +26586,135356 +26587,135280 +26588,135327 +26589,135280 +26590,135350 +26591,135355 +26592,132938 +26593,132941 +26594,132941 +26595,132164 +26596,132941 +26597,132941 +26598,135575 +26599,135346 +26600,133053 +26601,132403 +26602,135641 +26603,135302 +26604,135130 +26611,132998 +26612,134301 +26613,132385 +26614,133149 +26615,133599 +26616,135616 +26617,135617 +26618,133001 +26619,133149 +26620,133149 +26621,133149 +26622,133706 +26631,132762 +26632,132765 +26633,132766 +26634,132503 +26635,132725 +26636,132725 +26637,133122 +26638,133122 +26639,132517 +26640,132961 +26641,134584 +26642,132590 +26643,132590 +26644,135053 +26645,135053 +26646,132603 +26647,133123 +26648,133123 +26649,132956 +26650,132502 +26651,134587 +26652,132589 +26653,135277 +26654,132743 +26655,135036 +26656,133122 +26657,133121 +26658,132737 +26659,134584 +26660,132963 +26661,132590 +26662,135051 +26663,135051 +26664,133344 +26665,133773 +26666,133075 +26667,132649 +26668,133075 +26669,134589 +26670,135054 +26671,135356 +26672,135351 +26673,135351 +26674,135351 +26675,135356 +26676,135349 +26677,135658 +26678,135657 +26679,135657 +26680,132767 +26681,133759 +26682,134337 +26683,135027 +26684,135030 +26685,132612 +26686,132513 +26687,132743 +26688,135054 +26689,132953 +26690,132587 +26691,134586 +26692,133101 +26693,134963 +26711,133044 +26731,134020 +26732,133984 +26733,134019 +26734,134007 +26735,133998 +26736,133991 +26737,135617 +26751,132590 +26752,132590 +26753,132963 +26754,134961 +26771,132865 +26772,132864 +26773,132856 +26774,133944 +26775,135471 +26776,135156 +26791,134584 +26792,132506 +26793,132605 +26794,132611 +26795,132742 +26796,132514 +26797,135047 +26798,132964 +26799,132586 +26800,134585 +26801,132612 +26802,132518 +26803,134588 +26804,132626 +26805,132943 +26806,132539 +26807,135052 +26808,133144 +26809,134959 +26810,132520 +26811,132746 +26812,132949 +26813,132539 +26814,134593 +26815,132606 +26816,134958 +26817,132768 +26818,135042 +26819,132508 +26820,132751 +26821,132608 +26822,132541 +26823,132938 +26824,134582 +26825,135051 +26826,133124 +26827,132636 +26828,132518 +26829,132612 +26830,132940 +26831,134588 +26832,132539 +26833,132539 +26834,135036 +26835,133125 +26836,132502 +26837,132608 +26838,132629 +26839,132953 +26840,134586 +26841,132536 +26842,132536 +26843,135054 +26844,134951 +26845,132627 +26846,132744 +26847,132951 +26848,132511 +26849,134583 +26850,132586 +26851,132951 +26852,135058 +26853,133071 +26854,133121 +26855,134956 +26856,132500 +26857,132618 +26858,134835 +26859,132738 +26860,132944 +26861,134582 +26862,132584 +26863,135033 +26864,135051 +26865,134806 +26866,133073 +26867,133073 +26868,134961 +26869,132613 +26870,132521 +26871,132760 +26872,132963 +26873,134584 +26874,132592 +26875,135059 +26876,133078 +26877,133078 +26878,132606 +26879,132511 +26880,132744 +26881,132962 +26882,132539 +26883,132539 +26884,134583 +26885,135033 +26886,133121 +26887,132608 +26888,132938 +26889,132513 +26890,132745 +26891,134592 +26892,132592 +26893,133078 +26894,135044 +26911,134948 +26912,132627 +26913,132602 +26914,132613 +26915,132965 +26916,132501 +26917,132587 +26918,134583 +26919,135047 +26920,133122 +26921,134950 +26922,133125 +26923,133121 +26924,132941 +26925,132225 +26926,134520 +26927,132539 +26928,132606 +26929,133764 +26930,132492 +26931,132963 +26932,134583 +26933,132719 +26934,133771 +26935,133771 +26936,132638 +26937,132511 +26938,132608 +26939,132541 +26940,132952 +26941,134592 +26942,133763 +26943,133766 +26944,132537 +26945,132606 +26946,132959 +26947,132514 +26948,134583 +26949,132647 +26950,133444 +26951,133769 +26952,132607 +26953,132502 +26954,132953 +26955,134586 +26956,132536 +26957,132629 +26958,133770 +26959,134954 +26960,132505 +26961,132639 +26962,133772 +26963,132956 +26964,132579 +26965,135050 +26966,134587 +26967,134583 +26968,134583 +26969,132504 +26970,132542 +26971,132608 +26972,132624 +26973,132953 +26974,134583 +26975,135037 +26976,134709 +26977,133766 +26978,134957 +26979,133771 +26980,133766 +26981,133769 +26982,132605 +26983,132540 +26984,132624 +26985,132946 +26986,134585 +26987,132514 +26988,135038 +26989,133754 +26990,132626 +26991,133765 +26992,132518 +26993,132612 +26994,132951 +26995,134583 +26996,132539 +26997,135058 +26998,134586 +26999,133774 +27000,132949 +27001,132537 +27002,132502 +27003,135054 +27004,132629 +27005,132609 +27006,133774 +27007,132608 +27008,132511 +27009,132541 +27010,132637 +27011,133772 +27012,132939 +27013,134583 +27014,135038 +27015,133044 +27016,132510 +27017,132605 +27018,132647 +27019,132945 +27020,134584 +27021,132539 +27022,132539 +27023,135049 +27024,134953 +27025,133757 +27026,132610 +27027,132938 +27028,134583 +27029,132502 +27030,135054 +27031,133161 +27032,133760 +27033,133760 +27034,132629 +27035,132535 +27036,134961 +27037,132541 +27038,132606 +27039,132739 +27040,133754 +27041,132949 +27042,133077 +27043,134583 +27044,135040 +27045,132515 +27046,132518 +27047,132539 +27048,132606 +27049,132637 +27050,134583 +27051,133754 +27052,132768 +27053,132943 +27054,135052 +27055,134951 +27056,132597 +27057,132515 +27058,132615 +27059,132535 +27060,132958 +27061,134589 +27062,133759 +27063,132739 +27064,134952 +27065,132592 +27066,132606 +27067,132634 +27068,132513 +27069,132945 +27070,134583 +27071,135046 +27072,133757 +27073,132768 +27074,132615 +27075,132956 +27076,134706 +27077,132589 +27078,132589 +27079,132516 +27080,135040 +27081,132719 +27082,133763 +27083,132767 +27084,134955 +27085,134707 +27086,134707 +27087,133773 +27088,133759 +27089,135291 +27090,135291 +27091,132601 +27092,132629 +27093,132579 +27094,132498 +27095,132938 +27096,135054 +27097,134586 +27098,133117 +27099,134948 +27100,132540 +27101,132626 +27102,132938 +27103,132612 +27104,134588 +27105,132519 +27106,135052 +27107,132767 +27108,133754 +27109,134957 +27110,132516 +27111,132609 +27112,132751 +27113,132945 +27114,134589 +27115,132584 +27116,135041 +27117,132499 +27118,132632 +27119,132950 +27120,132585 +27121,134584 +27122,132614 +27123,135040 +27124,133090 +27125,133770 +27126,134949 +27127,132518 +27128,132612 +27129,132741 +27130,132767 +27131,132607 +27132,132542 +27133,134586 +27134,135032 +27135,134948 +27136,132603 +27137,132505 +27138,132627 +27139,132938 +27140,134583 +27141,132541 +27142,135033 +27143,133753 +27144,133078 +27145,134966 +27146,132500 +27147,132643 +27148,132953 +27149,132535 +27150,134586 +27151,133101 +27152,133760 +27153,134948 +27154,132602 +27155,132723 +27156,132938 +27157,134583 +27158,132543 +27159,132492 +27160,135060 +27161,133757 +27162,134948 +27163,132511 +27164,132542 +27165,132608 +27166,132944 +27167,132944 +27168,132948 +27169,132492 +27170,132608 +27171,132743 +27172,132956 +27173,132536 +27174,134583 +27175,132963 +27176,133774 +27177,135055 +27178,133076 +27179,134965 +27180,133121 +27181,133121 +27182,132768 +27183,132502 +27184,132535 +27185,132502 +27186,133124 +27187,133124 +27188,133124 +27189,133124 +27190,132938 +27191,133161 +27192,132535 +27193,132602 +27194,132629 +27195,134583 +27196,132953 +27197,133770 +27198,133076 +27199,133076 +27200,133076 +27201,132542 +27202,134955 +27203,132542 +27204,132601 +27205,132541 +27206,132524 +27207,132955 +27208,132606 +27209,132512 +27210,132517 +27211,132517 +27212,132632 +27213,132963 +27214,134584 +27215,132587 +27216,132588 +27217,132616 +27218,135061 +27219,132944 +27220,133754 +27221,135964 +27222,134950 +27223,132617 +27224,132590 +27225,132516 +27226,132516 +27227,136222 +27228,132680 +27229,132644 +27230,134588 +27231,135033 +27232,133126 +27233,132648 +27234,133143 +27235,134586 +27236,135054 +27237,132625 +27238,134583 +27239,135051 +27240,133126 +27241,133126 +27242,133073 +27243,132738 +27244,132738 +27245,134584 +27246,135051 +27247,135051 +27248,135041 +27249,132541 +27250,132541 +27251,132541 +27252,132541 +27253,132539 +27254,132541 +27255,132606 +27256,132953 +27257,132502 +27258,133076 +27259,134587 +27260,132716 +27261,135050 +27262,132602 +27263,132542 +27264,132495 +27265,132959 +27266,135054 +27267,134586 +27268,133143 +27269,132638 +27270,132585 +27271,132944 +27272,132498 +27273,132618 +27274,132751 +27275,134584 +27276,135046 +27277,132615 +27278,132587 +27279,132945 +27280,132503 +27281,133139 +27282,132633 +27283,134583 +27284,135060 +27285,132496 +27286,132609 +27287,132938 +27288,132589 +27289,134586 +27290,132722 +27291,135054 +27292,133760 +27293,132768 +27294,134948 +27295,132507 +27296,132614 +27297,132736 +27298,132963 +27299,132963 +27300,134581 +27301,132589 +27302,135044 +27303,133770 +27304,133763 +27305,134949 +27306,133111 +27307,132602 +27308,132751 +27309,132938 +27310,132500 +27311,134586 +27312,132584 +27313,132500 +27314,132609 +27315,132629 +27316,132960 +27317,132953 +27318,132536 +27319,134586 +27320,135054 +27321,133101 +27322,132627 +27323,132524 +27324,132615 +27325,133763 +27326,132963 +27327,134581 +27328,132590 +27329,132613 +27330,132749 +27331,132962 +27332,132503 +27333,132539 +27334,132539 +27335,134583 +27336,135060 +27337,133124 +27338,133124 +27339,134950 +27340,132746 +27341,132951 +27342,132511 +27343,132583 +27344,134583 +27345,132606 +27346,135043 +27347,133159 +27348,132722 +27349,132588 +27350,132602 +27351,132957 +27352,132500 +27353,133127 +27354,134586 +27355,135054 +27356,132749 +27357,132535 +27358,132938 +27359,132492 +27360,134583 +27361,135040 +27362,132616 +27363,132722 +27364,132955 +27365,132502 +27366,133078 +27367,134589 +27368,132607 +27369,132585 +27370,132542 +27371,135039 +27372,132646 +27373,132615 +27374,132963 +27375,132508 +27376,132589 +27377,134592 +27378,135059 +27379,133124 +27380,132535 +27381,132938 +27382,132499 +27383,134583 +27384,132723 +27385,132602 +27386,135049 +27387,133123 +27388,134955 +27389,132627 +27390,132960 +27391,132507 +27392,132587 +27393,134581 +27394,132615 +27395,133118 +27396,135060 +27397,132739 +27398,132938 +27399,132495 +27400,132535 +27401,134581 +27402,132602 +27403,135044 +27404,132767 +27405,132584 +27406,132613 +27407,132751 +27408,132767 +27409,132963 +27410,133044 +27411,132521 +27412,133044 +27413,134586 +27414,135061 +27415,134951 +27416,132647 +27417,132938 +27418,132493 +27419,132535 +27420,132602 +27421,135033 +27422,135033 +27423,133078 +27424,132583 +27425,132583 +27426,132615 +27427,132746 +27428,132965 +27429,132519 +27430,134583 +27431,135045 +27432,134952 +27451,135463 +27452,134337 +27453,136173 +27454,134337 +27471,133447 +27472,132677 +27473,132645 +27474,132645 +27475,132645 +27476,132645 +27477,132645 +27478,132645 +27479,132660 +27491,135499 +27492,135494 +27511,133127 +27512,132517 +27513,133762 +27514,133762 +27515,132511 +27516,132539 +27517,134962 +27518,132724 +27519,132952 +27520,132515 +27521,133767 +27522,134582 +27523,135039 +27524,132539 +27525,133763 +27526,134955 +27527,134955 +27528,135039 +27529,135009 +27530,132955 +27531,132659 +27532,132543 +27533,133774 +27534,132611 +27535,132540 +27536,132938 +27537,132541 +27538,133117 +27539,132589 +27540,132589 +27541,132539 +27542,132722 +27543,132500 +27544,132500 +27545,132500 +27546,132541 +27547,132541 +27548,132501 +27549,133762 +27550,132957 +27551,135040 +27552,133126 +27553,135032 +27554,132667 +27555,134592 +27556,134123 +27557,132669 +27558,134336 +27559,132588 +27560,132500 +27561,132588 +27562,132588 +27563,135468 +27564,132717 +27565,132602 +27566,132501 +27567,132949 +27568,132535 +27569,135049 +27570,134586 +27571,134950 +27572,133127 +27573,133769 +27574,132791 +27575,135140 +27576,132722 +27577,132959 +27578,134587 +27579,132501 +27580,135036 +27581,133118 +27582,132602 +27583,133762 +27584,133762 +27585,134948 +27586,132635 +27587,134948 +27588,134956 +27589,132613 +27590,132505 +27591,132946 +27592,135044 +27593,133758 +27594,132650 +27595,132650 +27596,132650 +27597,134586 +27598,134590 +27599,132651 +27600,132543 +27601,132611 +27602,132955 +27603,135054 +27604,135037 +27605,135037 +27606,132767 +27607,133769 +27608,132614 +27609,132680 +27610,132741 +27611,132515 +27612,135466 +27613,132960 +27614,132514 +27615,134586 +27616,132501 +27617,132589 +27618,135052 +27619,133076 +27620,132767 +27621,134586 +27622,134586 +27623,134706 +27624,135032 +27625,132720 +27626,133120 +27627,133772 +27628,135021 +27629,134593 +27630,132604 +27631,133768 +27632,132617 +27633,132542 +27634,132541 +27635,132965 +27636,134583 +27637,132768 +27638,135055 +27639,132940 +27640,135033 +27641,132615 +27642,133076 +27643,133076 +27644,135042 +27645,132653 +27646,132535 +27647,132493 +27648,132949 +27649,132717 +27650,135467 +27651,134586 +27652,135054 +27653,133762 +27654,132510 +27655,132605 +27656,132742 +27657,132945 +27658,133769 +27659,133142 +27660,133142 +27661,132963 +27662,134586 +27663,132629 +27664,135054 +27665,132500 +27666,132500 +27667,135037 +27668,132492 +27669,132723 +27670,134587 +27671,132955 +27672,132955 +27673,133761 +27674,132514 +27675,132611 +27676,132539 +27677,132958 +27678,132539 +27679,133753 +27680,133117 +27681,134587 +27682,135039 +27683,132656 +27684,132493 +27685,132592 +27686,133758 +27687,133117 +27688,135039 +27689,132736 +27690,134956 +27691,132537 +27692,132646 +27693,133755 +27694,132611 +27695,132495 +27696,134587 +27697,132958 +27698,132958 +27699,132612 +27700,133755 +27701,132956 +27702,132539 +27703,135039 +27704,134587 +27705,133117 +27706,132609 +27707,132609 +27708,132500 +27709,132539 +27710,132539 +27711,133117 +27712,134587 +27713,135042 +27714,132956 +27715,132956 +27716,132725 +27717,132500 +27718,132541 +27719,132604 +27720,134955 +27721,133762 +27722,132959 +27723,134583 +27724,132504 +27725,132542 +27726,132958 +27727,132608 +27728,132720 +27729,133111 +27730,133152 +27731,134586 +27732,135053 +27733,135039 +27734,133111 +27735,132632 +27736,132392 +27737,132392 +27738,132617 +27739,132646 +27740,132617 +27741,132541 +27742,133762 +27743,133762 +27744,132957 +27745,132957 +27746,133156 +27747,135055 +27748,135055 +27749,133069 +27750,135010 +27751,135010 +27752,133767 +27753,132961 +27754,135044 +27755,134594 +27756,134333 +27757,132725 +27758,132725 +27759,135039 +27760,132601 +27761,132537 +27762,135012 +27763,133681 +27764,135039 +27765,133681 +27766,132958 +27767,133759 +27768,133759 +27769,132739 +27770,134583 +27771,132535 +27772,133077 +27773,133077 +27774,133138 +27775,135040 +27776,135046 +27777,132495 +27778,132945 +27779,133758 +27780,134955 +27781,134949 +27782,134949 +27783,132602 +27784,132631 +27785,132589 +27786,132589 +27787,132589 +27788,132616 +27789,133139 +27790,135057 +27791,132946 +27792,132516 +27793,133759 +27794,133759 +27795,135021 +27796,135033 +27797,133111 +27798,133131 +27799,133131 +27800,132664 +27801,134125 +27802,134153 +27803,134950 +27804,133345 +27805,135054 +27806,134948 +27807,134594 +27808,133148 +27809,133148 +27810,132633 +27811,132587 +27812,132945 +27813,132503 +27814,132615 +27815,133139 +27816,133074 +27817,133074 +27818,133074 +27819,133074 +27820,135008 +27821,135008 +27822,134589 +27823,135040 +27824,133153 +27825,132963 +27826,133772 +27827,132541 +27828,133122 +27829,132587 +27830,132493 +27831,135047 +27832,132592 +27833,132944 +27834,132649 +27835,133125 +27836,133078 +27837,132539 +27838,132956 +27839,132514 +27840,132655 +27841,132655 +27842,132518 +27843,134586 +27844,132541 +27845,132959 +27846,132495 +27847,132612 +27848,133694 +27849,135046 +27850,133760 +27851,135139 +27852,132659 +27853,134589 +27854,132492 +27855,135037 +27856,132661 +27857,132610 +27858,133762 +27859,133117 +27860,132646 +27861,132537 +27862,133117 +27863,135139 +27864,132671 +27865,132649 +27866,132649 +27867,135041 +27868,132939 +27869,132767 +27870,132612 +27871,135036 +27872,135037 +27873,132681 +27874,134125 +27875,135058 +27876,135058 +27877,132725 +27878,132958 +27879,132600 +27880,132494 +27881,132958 +27882,132646 +27883,135039 +27884,134587 +27885,133117 +27886,133117 +27887,132495 +27888,132611 +27889,132626 +27890,134588 +27891,132535 +27892,132938 +27893,135052 +27894,132519 +27895,132612 +27896,134957 +27897,132767 +27898,132767 +27899,132626 +27900,134584 +27901,132962 +27902,132513 +27903,132612 +27904,135042 +27905,132587 +27906,133127 +27907,133111 +27908,133101 +27909,133122 +27910,132949 +27911,135038 +27912,132952 +27913,132946 +27914,132720 +27915,133694 +27916,132536 +27917,132720 +27918,135032 +27919,135032 +27920,135054 +27921,132956 +27922,132615 +27923,132650 +27924,132650 +27925,132653 +27926,132646 +27927,132684 +27928,135056 +27929,135144 +27930,132627 +27931,132613 +27932,132632 +27933,132613 +27934,132965 +27935,132501 +27936,134583 +27937,134583 +27938,134584 +27939,135047 +27940,135047 +27941,133122 +27942,133122 +27943,132741 +27944,134583 +27945,135032 +27946,132952 +27947,134592 +27948,132500 +27949,132538 +27950,134593 +27951,132495 +27952,132604 +27953,132407 +27954,132606 +27955,132949 +27956,132649 +27957,132541 +27958,132498 +27959,133121 +27960,133768 +27961,134962 +27962,132716 +27963,132500 +27964,132612 +27965,132543 +27966,132958 +27967,134586 +27968,133117 +27969,132542 +27970,132959 +27971,132722 +27972,132608 +27973,133119 +27974,133774 +27975,134589 +27976,132498 +27977,132955 +27978,135038 +27979,132721 +27980,133755 +27981,134956 +27982,132542 +27983,132504 +27984,134586 +27985,132608 +27986,133774 +27987,133111 +27988,135056 +27989,132604 +27990,132949 +27991,134586 +27992,132539 +27993,132542 +27994,132601 +27995,132953 +27996,132657 +27997,133150 +27998,132505 +27999,132539 +28000,133753 +28001,132605 +28002,135049 +28003,134582 +28004,132961 +28005,132961 +28006,133753 +28007,132512 +28008,134585 +28009,132939 +28010,132543 +28011,133755 +28012,132498 +28013,132601 +28014,134589 +28015,133078 +28016,132579 +28017,134956 +28018,132720 +28019,134586 +28020,135055 +28021,133074 +28022,133074 +28023,135153 +28024,133073 +28025,134333 +28026,134962 +28027,132717 +28028,132717 +28029,134586 +28030,132501 +28031,132542 +28032,132615 +28033,132601 +28034,132949 +28035,133689 +28036,135039 +28037,135039 +28038,135015 +28039,132539 +28040,132939 +28041,132492 +28042,133770 +28043,132611 +28044,132604 +28045,132604 +28046,132939 +28047,132719 +28048,132505 +28049,133759 +28050,132611 +28051,132511 +28052,135012 +28053,132659 +28054,133770 +28055,135044 +28056,132950 +28057,132608 +28058,132539 +28059,132539 +28060,135616 +28061,134588 +28062,132955 +28063,132539 +28064,135017 +28065,133765 +28066,133153 +28067,133153 +28068,135033 +28069,132624 +28070,132638 +28071,133753 +28072,132666 +28073,132401 +28074,132664 +28075,133060 +28076,134584 +28077,132939 +28078,135021 +28079,132491 +28080,132543 +28081,135349 +28082,132609 +28083,132957 +28084,134586 +28085,135327 +28086,135327 +28087,132612 +28088,132539 +28089,132723 +28090,132938 +28091,135321 +28092,135041 +28093,135321 +28094,135060 +28095,132717 +28096,133053 +28097,133757 +28098,132659 +28099,133143 +28100,133074 +28101,133139 +28102,133139 +28103,133126 +28104,133077 +28105,133077 +28106,133077 +28107,133077 +28108,135470 +28109,135052 +28110,133139 +28111,133073 +28112,132658 +28113,133139 +28114,133077 +28115,133077 +28116,133077 +28117,133345 +28118,132605 +28119,133163 +28120,133121 +28121,133073 +28122,133074 +28123,135049 +28124,132606 +28125,133772 +28126,132716 +28127,132951 +28128,132519 +28129,132606 +28130,132602 +28131,133134 +28132,133158 +28133,133069 +28134,133069 +28135,133069 +28136,132589 +28137,132957 +28138,132535 +28139,132616 +28140,134589 +28141,132638 +28142,132539 +28143,133119 +28144,135049 +28145,132742 +28146,134587 +28147,134587 +28148,132949 +28149,132495 +28150,132605 +28151,132543 +28152,132542 +28153,132492 +28154,132506 +28155,132492 +28156,132603 +28157,133127 +28158,132724 +28159,135139 +28160,132722 +28161,134582 +28162,132542 +28163,132958 +28164,132582 +28165,132687 +28166,132958 +28167,132537 +28168,132607 +28169,132601 +28170,132492 +28171,132516 +28172,132588 +28173,133681 +28174,133117 +28175,133121 +28176,135047 +28177,132492 +28178,132663 +28179,135038 +28180,133143 +28181,133770 +28182,134586 +28183,132939 +28184,132638 +28185,132638 +28186,132951 +28187,133644 +28188,132939 +28189,134588 +28190,132500 +28191,133060 +28192,132537 +28193,133060 +28194,133486 +28195,134588 +28196,133123 +28197,135466 +28198,134588 +28199,135641 +28200,132610 +28201,132495 +28202,132960 +28203,133483 +28204,134586 +28205,132720 +28206,135616 +28207,132393 +28208,133762 +28209,133770 +28210,133760 +28211,135124 +28212,133090 +28213,135124 +28214,135124 +28215,135056 +28216,135469 +28217,135055 +28218,135469 +28219,132500 +28220,132939 +28221,132939 +28222,132951 +28223,132938 +28224,132523 +28225,135146 +28226,133731 +28227,132493 +28228,135225 +28229,135613 +28230,134583 +28231,135151 +28232,135056 +28233,132722 +28234,134583 +28235,135490 +28236,135149 +28237,132629 +28238,132541 +28239,133770 +28240,133768 +28241,132537 +28242,132512 +28243,132609 +28244,132638 +28245,135356 +28246,132537 +28247,132606 +28248,135139 +28249,132718 +28250,134583 +28251,133754 +28252,132588 +28253,135046 +28254,135056 +28255,132606 +28256,133725 +28257,134306 +28258,135813 +28259,133758 +28260,133760 +28261,133608 +28262,133047 +28263,132588 +28264,132495 +28265,132510 +28266,132716 +28267,135463 +28268,135805 +28269,134967 +28270,132498 +28271,132629 +28272,132683 +28273,132592 +28274,132608 +28275,132601 +28276,132586 +28277,132638 +28278,132638 +28279,132751 +28280,132964 +28281,132539 +28282,135051 +28283,132957 +28284,132494 +28285,132605 +28286,132606 +28287,134593 +28288,132943 +28289,132949 +28290,134583 +28291,134337 +28292,132523 +28293,132670 +28294,132658 +28295,132582 +28296,132957 +28297,133774 +28298,133762 +28299,133760 +28300,132515 +28301,132510 +28302,132499 +28303,133757 +28304,135059 +28305,132612 +28306,132495 +28307,135469 +28308,135491 +28309,135494 +28310,134584 +28311,133053 +28312,135311 +28313,135061 +28314,133045 +28315,132638 +28316,135346 +28317,134583 +28318,133045 +28319,132744 +28320,132671 +28321,135330 +28322,135495 +28323,132673 +28324,133770 +28325,133757 +28326,133754 +28327,135639 +28328,132506 +28329,133047 +28330,135049 +28331,135610 +28332,132960 +28333,132495 +28334,132403 +28335,132744 +28336,132522 +28337,134333 +28338,132407 +28339,132957 +28340,132952 +28341,132407 +28342,132959 +28343,132616 +28344,135490 +28345,135148 +28346,135349 +28347,135327 +28348,135637 +28349,132409 +28350,135051 +28351,135055 +28352,132937 +28353,132586 +28354,132944 +28355,132741 +28356,132516 +28357,132616 +28358,133124 +28359,133124 +28360,133127 +28361,132586 +28362,132590 +28363,133345 +28364,132521 +28365,133117 +28366,133117 +28367,133117 +28368,132719 +28369,132514 +28370,132608 +28371,132490 +28372,132511 +28373,132606 +28374,135020 +28375,132725 +28376,133077 +28377,133074 +28378,133077 +28379,133077 +28380,132541 +28381,133771 +28382,132602 +28383,132536 +28384,132519 +28385,134591 +28386,132498 +28387,133071 +28388,133141 +28389,133141 +28390,133078 +28391,132767 +28392,135046 +28393,133141 +28394,132739 +28395,132504 +28396,132589 +28397,132963 +28398,132739 +28399,132505 +28400,132589 +28401,132962 +28402,134584 +28403,135044 +28404,132589 +28405,132589 +28406,134953 +28407,134956 +28408,135145 +28409,135033 +28410,132608 +28411,135017 +28412,133754 +28413,132951 +28414,133693 +28415,132499 +28416,134593 +28417,132644 +28418,132612 +28419,134587 +28420,133134 +28421,132504 +28422,132956 +28423,132539 +28424,132647 +28425,132663 +28426,132506 +28427,132604 +28428,132949 +28429,134593 +28430,135015 +28431,134586 +28432,132541 +28433,133771 +28434,132944 +28435,132512 +28436,132618 +28437,134583 +28438,134583 +28439,132535 +28440,133126 +28441,132535 +28442,135042 +28443,135042 +28444,135049 +28445,135049 +28446,135045 +28447,134583 +28448,132504 +28449,134955 +28450,135047 +28451,132602 +28452,132535 +28453,134121 +28454,135047 +28455,134333 +28456,132618 +28457,135468 +28458,135351 +28459,132407 +28460,132400 +28461,132791 +28462,135157 +28463,132791 +28464,134333 +28465,135355 +28466,135469 +28467,135140 +28468,133054 +28469,132405 +28470,135140 +28471,135467 +28472,134336 +28473,132790 +28474,132661 +28475,133749 +28476,135473 +28477,132514 +28478,135144 +28479,132670 +28480,134334 +28481,135154 +28482,132602 +28483,134335 +28484,134337 +28485,132791 +28486,135464 +28487,134121 +28488,135153 +28489,135160 +28490,135140 +28491,135157 +28492,135145 +28493,134334 +28494,133073 +28495,135024 +28496,134153 +28497,134153 +28498,135144 +28499,133047 +28500,135465 +28501,134333 +28502,135140 +28503,134337 +28504,132407 +28505,134337 +28506,133490 +28507,135144 +28508,133490 +28509,135144 +28510,135150 +28511,135151 +28512,133729 +28513,135169 +28514,135467 +28515,135495 +28516,135466 +28517,135327 +28518,135468 +28519,135639 +28520,135351 +28521,133045 +28522,132959 +28523,132401 +28524,133053 +28525,132399 +28526,133045 +28527,135356 +28528,135314 +28529,135278 +28530,135351 +28531,133053 +28532,132408 +28533,132408 +28534,133048 +28535,135324 +28536,135321 +28537,132415 +28538,135147 +28539,132415 +28540,133056 +28541,132408 +28542,135649 +28543,135496 +28544,135274 +28545,135500 +28546,135352 +28547,135498 +28548,133053 +28549,135144 +28550,135144 +28551,135464 +28552,135276 +28553,134122 +28554,135465 +28555,135474 +28556,133077 +28557,135610 +28558,135144 +28559,133077 +28560,133077 +28561,135321 +28562,132795 +28563,133760 +28564,133772 +28565,133771 +28566,132407 +28567,135321 +28568,135637 +28569,135469 +28570,135346 +28571,133045 +28572,135489 +28573,132415 +28574,135491 +28575,135498 +28576,135327 +28577,135143 +28578,135468 +28579,134955 +28580,135151 +28581,134956 +28582,134956 +28583,134967 +28584,132613 +28585,135325 +28586,135343 +28587,132767 +28588,135474 +28589,133152 +28590,133152 +28591,134586 +28592,135157 +28593,135343 +28594,135313 +28595,132966 +28596,132601 +28597,132539 +28598,135345 +28599,133117 +28600,133117 +28601,133121 +28602,133756 +28603,132585 +28604,132585 +28605,132657 +28606,133756 +28607,135302 +28608,135324 +28609,133772 +28610,135469 +28611,135036 +28612,135049 +28613,133762 +28614,134348 +28615,133770 +28616,133770 +28617,132539 +28618,132611 +28619,132612 +28620,135054 +28621,135038 +28622,133907 +28623,134589 +28624,135356 +28625,134584 +28626,135471 +28627,132542 +28628,133476 +28629,133053 +28630,135041 +28631,135473 +28632,132639 +28633,135139 +28634,135617 +28635,135616 +28636,135618 +28637,132604 +28638,133364 +28639,132523 +28640,132504 +28641,135036 +28642,132518 +28643,135045 +28644,132539 +28645,132537 +28646,134586 +28647,133727 +28648,134586 +28649,132496 +28650,135036 +28651,135044 +28652,133773 +28653,133345 +28654,132542 +28655,132618 +28656,132618 +28657,132500 +28658,132535 +28659,133760 +28660,132539 +28661,133760 +28662,133120 +28663,132628 +28664,132579 +28665,135054 +28666,132535 +28667,132539 +28668,132616 +28669,132582 +28670,132536 +28671,133041 +28672,135131 +28673,133044 +28674,133047 +28675,135277 +28676,135311 +28677,133041 +28678,135351 +28679,132404 +28680,132953 +28681,133056 +28682,133367 +28683,132957 +28684,132500 +28685,132945 +28686,132505 +28687,132943 +28688,132943 +28689,133057 +28690,133770 +28691,133053 +28692,133770 +28693,133770 +28694,132743 +28695,133773 +28696,132522 +28697,135139 +28698,135151 +28699,135144 +28700,132721 +28701,135160 +28702,132952 +28703,132949 +28704,135044 +28705,135033 +28706,133053 +28707,135356 +28708,135340 +28709,135049 +28710,132747 +28711,133345 +28712,132629 +28713,134593 +28714,135273 +28715,134588 +28716,134584 +28717,135271 +28718,135617 +28719,132416 +28720,134589 +28721,135061 +28722,134583 +28723,132938 +28724,132637 +28725,135057 +28726,132949 +28727,135056 +28728,134593 +28729,135049 +28730,133693 +28731,133760 +28732,134868 +28733,133366 +28734,132542 +28735,132608 +28736,134591 +28737,132717 +28738,135464 +28739,133072 +28740,132956 +28741,132946 +28742,134956 +28743,135617 +28744,135059 +28745,135050 +28746,132491 +28747,135463 +28748,132399 +28749,132539 +28750,132949 +28751,132940 +28752,132940 +28753,135351 +28754,132960 +28755,135033 +28756,135054 +28757,132499 +28758,135128 +28759,132590 +28760,132590 +28761,133076 +28762,133143 +28763,132501 +28764,135125 +28765,132403 +28766,135499 +28767,132494 +28768,135326 +28769,135617 +28770,132541 +28771,132966 +28772,135499 +28773,135054 +28774,132502 +28775,133754 +28776,133041 +28777,132523 +28778,135652 +28779,135646 +28780,135492 +28781,135616 +28782,132394 +28783,133111 +28784,134131 +28785,132609 +28786,135617 +28787,135471 +28788,135056 +28789,135648 +28790,135125 +28791,132401 +28792,135046 +28793,133070 +28794,135572 +28795,134337 +28796,132395 +28797,132957 +28798,133693 +28799,133054 +28800,132945 +28801,135496 +28802,132504 +28803,134333 +28804,132394 +28805,132602 +28806,132617 +28807,135150 +28808,132723 +28809,133046 +28810,135578 +28811,134948 +28812,133370 +28813,135496 +28814,132657 +28815,135465 +28816,135465 +28817,135042 +28818,135465 +28819,132739 +28820,132612 +28821,133046 +28822,132936 +28823,135050 +28824,132616 +28825,132500 +28826,133069 +28827,135492 +28828,135467 +28829,134952 +28830,133372 +28831,133371 +28832,132398 +28833,132398 +28834,135575 +28835,133731 +28836,135147 +28837,135017 +28838,132949 +28839,133078 +28840,135812 +28841,136025 +28842,132386 +28843,134584 +28844,132606 +28845,135291 +28846,135358 +28847,133071 +28848,135358 +28849,132403 +28850,132767 +28851,132767 +28852,132768 +28853,133163 +28854,133848 +28855,133749 +28856,133076 +28857,134413 +28858,134412 +28859,133750 +28860,133752 +28861,133751 +28862,134421 +28863,135259 +28864,133042 +28865,133042 +28866,133476 +28867,133476 +28868,133042 +28869,133728 +28870,135610 +28871,132647 +28872,133944 +28873,132417 +28874,135040 +28875,132645 +28876,135351 +28877,132917 +28878,134310 +28891,133772 +28892,135358 +28911,135532 +28912,135531 +28931,133077 +28932,133077 +28933,133073 +28934,133073 +28935,135038 +28951,133768 +28952,132183 +28971,135021 +28972,135021 +28973,132671 +28974,133345 +28976,133122 +28977,132767 +28978,133118 +28979,133694 +28981,135009 +28984,133119 +28985,133121 +28986,133078 +28987,133072 +28990,132645 +28991,132677 +28992,132671 +28993,132666 +28996,132953 +28997,132959 +28998,132952 +28999,132761 +29000,132946 +29001,132965 +29002,132957 +29003,132938 +29004,132938 +29005,132938 +29006,132956 +29007,132938 +29008,132961 +29009,132961 +29013,132960 +29014,132963 +29015,132953 +29016,132949 +29019,132939 +29025,132618 +29036,134024 +29044,133090 +29046,134581 +29049,132724 +29050,132483 +29051,133694 +29055,135042 +29066,135277 +29079,132648 +29080,135036 +29085,134582 +29087,134347 +29096,135644 +29097,135271 +29098,135358 +29111,132643 +29112,132500 +29113,132959 +29114,132541 +29131,132387 +29132,135316 +29133,133127 +29134,133117 +29135,133117 +29136,133117 +29137,133117 +29154,132624 +29157,135141 +29160,132398 +29161,132400 +29162,135496 +29163,135618 +29164,133644 +29165,133749 +29166,134018 +29167,135654 +29168,133041 +29169,132387 +29170,135302 +29171,133042 +29172,132791 +29173,132792 +29174,135824 +29175,134124 +29176,135131 +29191,135131 +29192,132643 +29193,134022 +29194,132400 +29195,135150 +29211,132625 +29212,135041 +29213,132944 +29214,132588 +29215,132517 +29216,133126 +29217,133126 +29218,132616 +29219,132644 +29220,132511 +29221,132608 +29222,132644 +29223,133126 +29224,132948 +29231,134588 +29232,132541 +29233,132738 +29234,134584 +29235,132590 +29236,132963 +29237,132516 +29238,132617 +29239,135051 +29240,133073 +29241,135051 +29242,132643 +29243,132608 +29244,133126 +29245,135033 +29246,132633 +29247,132945 +29248,132587 +29249,132615 +29250,132503 +29251,132587 +29252,135060 +29253,132751 +29254,134584 +29255,132585 +29256,132498 +29257,132618 +29258,132585 +29259,132944 +29260,132944 +29261,135046 +29262,133074 +29263,135041 +29264,133126 +29265,135051 +29266,135033 +29267,133126 +29268,133139 +29269,132767 +29270,132497 +29271,132768 +29272,132957 +29273,134586 +29276,135638 +29291,134145 +29311,132606 +29312,135148 +29314,132937 +29315,132960 +29316,132953 +29317,135817 +29331,134017 +29351,134967 +29352,134819 +29353,134860 +29354,134861 +29355,136206 +29375,132740 +29377,132740 +29381,132616 +29384,133074 +29385,133126 +29386,133073 +29389,132490 +29395,133127 +29396,135042 +29397,135131 +29399,132490 +29400,134584 +29401,135039 +29408,132395 +29409,132740 +29434,132821 +29435,132820 +29436,132829 +29437,132828 +29438,132825 +29439,132824 +29440,133205 +29441,133202 +29442,133207 +29443,133206 +29444,133204 +29445,133203 +29446,133066 +29447,132245 +29448,132243 +29449,132244 +29450,135841 +29451,134064 +29454,132938 +29455,132938 +29463,132938 +29464,132943 +29465,133117 +29467,132629 +29468,135050 +29470,135042 +29479,135042 +29495,132392 +29496,132395 +29511,132626 +29512,132949 +29517,132760 +29518,132739 +29520,132740 +29535,132760 +29537,132736 +29543,133072 +29545,135047 +29547,132943 +29549,132501 +29550,134950 +29551,135047 +29552,132741 +29553,132943 +29571,133445 +29591,132666 +29592,135054 +29593,132951 +29594,132536 +29595,132612 +29596,132497 +29597,133365 +29598,132768 +29614,135036 +29616,135436 +29624,135038 +29628,135038 +29629,135038 +29630,133770 +29631,133117 +29632,132505 +29633,133073 +29651,132948 +29652,132587 +29653,133565 +29671,134354 +29672,135349 +29673,133066 +29674,133066 +29675,133066 +29676,135349 +29677,135349 +29678,135166 +29681,133071 +29684,133072 +29685,133131 +29686,133131 +29687,133131 +29691,133441 +29692,133203 +29693,132582 +29694,133077 +29695,133077 +29697,133363 +29698,133066 +29699,133066 +29701,134956 +29702,134954 +29703,135225 +29704,135642 +29705,135642 +29706,135642 +29708,132740 +29709,132535 +29710,133489 +29711,136040 +29712,133443 +29713,133042 +29714,133042 +29715,133738 +29716,133739 +29717,133739 +29718,133760 +29719,133768 +29720,133769 +29721,134309 +29722,134337 +29723,135040 +29724,134804 +29729,135153 +29730,135153 +29731,133440 +29734,132511 +29735,133126 +29736,132948 +29737,132644 +29738,132541 +29739,132644 +29740,132511 +29741,132948 +29742,132541 +29743,135033 +29744,134588 +29745,132608 +29746,132648 +29747,132512 +29748,132542 +29749,132955 +29750,133143 +29751,132648 +29752,132638 +29753,132495 +29754,132602 +29755,132959 +29756,133077 +29757,134586 +29758,135038 +29759,132397 +29760,135351 +29761,132648 +29762,132512 +29763,132601 +29764,132608 +29765,133143 +29766,132955 +29767,132541 +29768,135054 +29769,135346 +29770,132638 +29771,132948 +29772,132542 +29773,132948 +29774,132602 +29775,133077 +29776,132959 +29777,134586 +29778,135038 +29779,132608 +29780,133126 +29781,132948 +29782,134588 +29783,132511 +29784,132644 +29785,132633 +29786,132503 +29787,132615 +29788,132539 +29789,132945 +29790,132953 +29791,132587 +29792,132690 +29793,132501 +29794,133077 +29795,132612 +29796,135033 +29797,134588 +29798,133732 +29799,132539 +29800,132966 +29801,132541 +29802,135060 +29803,132948 +29804,133131 +29805,133126 +29806,132511 +29807,132625 +29808,133131 +29809,132517 +29810,132616 +29811,132944 +29812,132608 +29813,132588 +29814,134583 +29815,135041 +29816,132644 +29817,133073 +29818,132633 +29819,132503 +29820,132587 +29821,132615 +29822,132945 +29823,134583 +29824,133769 +29825,133077 +29826,135060 +29827,133760 +29828,132625 +29829,132517 +29830,132588 +29831,132616 +29832,132716 +29833,132944 +29834,132502 +29835,135041 +29836,132606 +29837,133073 +29838,132953 +29839,132539 +29840,132539 +29841,135050 +29842,135227 +29843,133076 +29844,132751 +29845,134587 +29846,132498 +29847,132618 +29848,132944 +29849,134584 +29850,132585 +29851,133077 +29852,133077 +29853,132539 +29854,132606 +29855,135046 +29856,132953 +29857,134587 +29858,132751 +29859,132618 +29860,132944 +29861,132716 +29862,133076 +29863,132585 +29864,132498 +29865,133077 +29866,135050 +29867,135046 +29868,132511 +29869,132644 +29870,132511 +29871,132608 +29872,135650 +29873,133126 +29874,132738 +29875,132516 +29876,132617 +29877,132963 +29878,134584 +29879,132590 +29880,134584 +29881,133073 +29882,135051 +29883,132738 +29884,132516 +29885,135816 +29886,132590 +29887,132617 +29888,132963 +29889,133073 +29890,132613 +29891,135051 +29892,133077 +29893,133073 +29894,132767 +29895,135863 +29896,134956 +29897,135312 +29898,132955 +29899,135022 +29900,135022 +29901,135024 +29902,133202 +29903,135850 +29904,132539 +29905,136108 +29906,136108 +29907,132395 +29908,135036 +29909,133486 +29910,133054 +29911,133122 +29912,132962 +29913,134335 +29914,134333 +29915,132369 +29916,133769 +29917,133119 +29918,132656 +29919,132723 +29920,135169 +29921,135225 +29922,134125 +29923,135466 +29924,135466 +29925,132605 +29926,132539 +29927,132539 +29928,135037 +29929,132514 +29930,134585 +29931,135645 +29932,135491 +29933,134706 +29934,134706 +29935,133279 +29936,133077 +29937,133143 +29938,133076 +29939,133047 +29940,133119 +29941,133101 +29942,133119 +29943,133077 +29944,135049 +29945,132964 +29946,133235 +29947,133441 +29948,135156 +29949,132670 +29950,132670 +29951,132690 +29952,133137 +29953,132629 +29954,132514 +29955,135054 +29956,135279 +29957,135279 +29958,132738 +29959,132523 +29960,132584 +29961,132617 +29962,132960 +29963,134584 +29964,135061 +29965,133070 +29966,132500 +29967,132584 +29968,132613 +29969,132738 +29970,132953 +29971,135041 +29972,134584 +29973,133076 +29974,132741 +29975,134588 +29976,132504 +29977,132608 +29978,132949 +29979,132951 +29980,132542 +29981,132542 +29982,135032 +29983,135032 +29991,135349 +29992,135349 +30014,133149 +30025,135036 +30027,135009 +30031,133345 +30032,135009 +30052,132541 +30053,132939 +30056,135042 +30071,133077 +30072,133077 +30091,132767 +30092,132767 +30111,132193 +30132,133345 +30152,133345 +30171,132715 +30172,132539 +30192,132542 +30211,135054 +30231,132518 +30255,133477 +30271,133655 +30272,135006 +30273,135006 +30294,132395 +30299,135005 +30311,132625 +30312,133073 +30313,134583 +30314,135041 +30315,132738 +30316,133073 +30317,134584 +30318,135051 +30319,132590 +30320,132617 +30321,132963 +30322,132516 +30323,132588 +30324,132616 +30325,132517 +30326,132944 +30327,132648 +30328,135054 +30329,134586 +30330,133143 +30331,132601 +30332,132512 +30333,132542 +30334,132955 +30335,132644 +30336,135033 +30337,132541 +30338,132608 +30339,132948 +30340,132511 +30341,133126 +30342,134588 +30343,132643 +30344,132539 +30345,132606 +30346,132502 +30347,132961 +30348,133076 +30349,134587 +30350,135050 +30351,132716 +30352,133076 +30353,132602 +30354,132495 +30355,132959 +30356,132542 +30357,132638 +30358,133077 +30359,134586 +30360,135038 +30361,132587 +30362,132615 +30363,132945 +30364,132503 +30365,132633 +30366,133077 +30367,134583 +30368,135060 +30369,132618 +30370,132585 +30371,132944 +30372,132498 +30373,132751 +30374,133077 +30375,134584 +30376,135046 +30377,135046 +30378,135046 +30379,132953 +30380,134587 +30381,135032 +30382,135035 +30383,135042 +30384,135042 +30385,134586 +30391,132504 +30392,132392 +30393,132392 +30412,135032 +30413,132633 +30414,134583 +30415,132601 +30416,132592 +30417,132505 +30418,132945 +30419,135060 +30420,133139 +30421,133072 +30422,132652 +30423,134588 +30424,134588 +30425,132499 +30426,132520 +30427,132948 +30428,135033 +30429,132539 +30430,132539 +30431,132382 +30432,132382 +30433,132382 +30434,132542 +30435,132542 +30436,132791 +30437,134003 +30438,132536 +30439,132536 +30440,133043 +30455,133041 +30457,135038 +30472,135147 +30473,132951 +30474,132943 +30492,132492 +30493,133856 +30494,133854 +30516,135145 +30517,135225 +30532,134323 +30533,134862 +30534,133367 +30535,132502 +30536,132638 +30537,132647 +30538,134586 +30539,134586 +30540,134586 +30541,132495 +30542,132542 +30543,132602 +30544,132647 +30545,132941 +30546,135038 +30548,132602 +30549,132542 +30550,132647 +30551,132647 +30553,132738 +30559,134950 +30560,135316 +30561,135741 +30562,135813 +30563,135849 +30564,135987 +30565,136074 +30566,136185 +30567,134139 +30572,132942 +30573,132942 +30574,134296 +30575,134297 +30576,134297 +30577,133759 +30581,132644 +30582,134588 +30583,132519 +30584,132518 +30585,132948 +30586,135033 +30587,132541 +30588,133155 +30593,133725 +30594,134297 +30595,134297 +30600,134196 +30601,134184 +30602,132536 +30603,134946 +30604,135016 +30605,135016 +30606,135349 +30608,132251 +30609,132961 +30610,135736 +30611,132636 +30612,132644 +30613,132644 +30614,132644 +30615,132948 +30616,132644 +30617,132608 +30618,132948 +30619,132948 +30620,132948 +30621,132511 +30622,132541 +30623,135033 +30626,132539 +30634,134096 +30635,134096 +30636,135614 +30638,135131 +30639,132540 +30642,132605 +30643,132605 +30644,132740 +30645,132939 +30647,133600 +30650,132877 +30654,134591 +30658,135724 +30659,135468 +30660,135468 +30661,133362 +30662,134956 +30663,132742 +30664,134584 +30665,132956 +30666,132539 +30667,132539 +30668,132956 +30669,132956 +30670,133153 +30671,134584 +30672,132954 +30673,135316 +30674,132750 +30675,132746 +30676,133124 +30677,133121 +30678,134336 +30679,132535 +30680,133140 +30681,135054 +30682,135153 +30683,135491 +30684,132408 +30685,133133 +30686,132965 +30688,132506 +30689,133769 +30690,134072 +30691,132956 +30693,132608 +30694,135464 +30695,133773 +30696,133447 +30697,132521 +30698,134589 +30699,132402 +30700,135271 +30701,135271 +30702,132946 +30703,133773 +30704,132617 +30705,135271 +30706,134964 +30707,134964 +30708,134964 +30709,134964 +30710,134957 +30711,135145 +30712,135271 +30713,132943 +30714,132943 +30715,132943 +30716,132935 +30717,132940 +30718,132943 +30719,132935 +30720,132943 +30721,132943 +30722,134458 +30723,132489 +30724,135654 +30725,135055 +30726,132606 +30727,132606 +30728,133482 +30729,132955 +30730,134583 +30731,132587 +30732,132587 +30733,132587 +30734,132587 +30735,132587 +30736,132587 +30737,134584 +30738,133884 +30739,133766 +30740,132943 +30741,135048 +30742,135048 +30743,135048 +30744,132692 +30745,135537 +30746,135537 +30747,135537 +30748,134592 +30749,132515 +30750,135658 +30751,132523 +30752,132614 +30753,132604 +30754,135658 +30756,132520 +30757,132520 +30758,132520 +30761,132520 +30762,132520 +30763,132520 +30764,136168 +30767,132950 +30768,132953 +30769,135006 +30770,132939 +30771,132953 +30772,132953 +30773,132953 +30774,132951 +30776,135006 +30777,132939 +30778,135329 +30779,132540 +30780,134116 +30781,133773 +30782,133773 +30783,133758 +30791,132395 +30792,133477 +30793,133121 +30794,134153 +30795,132539 +30796,132792 +30797,134317 +30798,133754 +30799,134311 +30800,133076 +30801,132606 +30802,132665 +30803,132505 +30804,132606 +30805,132602 +30806,132606 +30807,132618 +30808,135616 +30809,135616 +30813,132947 +30814,135274 +30816,132607 +30817,132541 +30818,132721 +30819,132721 +30820,133090 +30821,133125 +30822,135640 +30823,132649 +30824,132645 +30825,133143 +30826,135657 +30827,135657 +30828,135329 +30829,135057 +30830,135046 +30831,133773 +30832,133754 +30833,132612 +30834,132402 +30835,134956 +30836,135579 +30837,132636 +30838,132491 +30839,132515 +30840,132542 +30841,132542 +30842,132542 +30843,132542 +30844,132542 +30845,132542 +30846,132542 +30847,132604 +30848,132604 +30849,133754 +30850,133753 +30851,133772 +30852,134802 +30853,135291 +30854,132582 +30855,134333 +30856,134583 +30857,134583 +30858,135271 +30859,132611 +30860,132767 +30861,134583 +30862,132944 +30863,135057 +30864,135057 +30865,132507 +30866,132634 +30867,133059 +30868,132670 +30869,132613 +30870,135169 +30871,134959 +30872,134958 +30873,133736 +30874,133738 +30875,133738 +30876,132415 +30877,132415 +30878,132415 +30879,132415 +30880,132401 +30881,132401 +30882,133758 +30883,135355 +30884,135351 +30885,135351 +30886,135351 +30887,132760 +30888,134586 +30889,133120 +30890,132507 +30891,132956 +30892,132956 +30893,132956 +30894,132520 +30895,133073 +30912,135988 +30913,135826 +30914,133488 +30915,133488 +30916,135839 +30917,132542 +30918,132542 +30919,132542 +30920,133077 +30921,132647 +30922,132647 +30923,135038 +30924,132941 +30925,135060 +30926,135496 +30927,135496 +30928,135042 +30932,135748 +30933,135277 +30934,135277 +30935,135277 +30936,135748 +30952,132595 +30953,134941 +30956,132392 +30957,132964 +30958,135726 +30959,132161 +30961,135009 +30962,132939 +30965,135006 +30966,134582 +30968,134075 +30969,132483 +30970,135169 +30971,135149 +30972,135142 +30973,135149 +30992,134947 +30993,134947 +30994,135271 +30995,135155 +30996,133982 +30997,133983 +30998,135271 +30999,136152 +31000,132512 +31001,132542 +31002,132542 +31003,132601 +31004,132648 +31007,132955 +31008,134586 +31016,135145 +31018,132955 +31019,132498 +31020,132618 +31021,132751 +31022,132944 +31023,134584 +31024,135046 +31025,132585 +31026,132539 +31027,132539 +31028,132951 +31029,135933 +31030,133119 +31031,135032 +31032,134586 +31033,134591 +31034,135152 +31035,132539 +31036,132949 +31037,132722 +31038,135045 +31039,132720 +31040,134588 +31041,132589 +31042,132628 +31043,134592 +31044,135061 +31045,133125 +31046,135035 +31047,135032 +31048,132626 +31049,135042 +31050,132590 +31051,132960 +31052,134586 +31053,132666 +31054,134591 +31055,132652 +31056,134591 +31057,132670 +31058,132652 +31059,132536 +31060,132953 +31061,132541 +31062,132964 +31063,132539 +31064,132951 +31065,133126 +31066,135054 +31067,135033 +31068,132539 +31069,132951 +31070,132541 +31071,132960 +31072,132722 +31073,134591 +31074,132725 +31075,132949 +31076,135056 +31077,133144 +31078,132957 +31079,132638 +31080,134586 +31081,135051 +31082,132584 +31083,132751 +31084,134586 +31085,135059 +31086,132957 +31087,132768 +31088,132767 +31089,133076 +31095,133740 +31096,136224 +31097,132539 +31098,132940 +31099,133074 +31100,135033 +31101,135724 +31102,132669 +31103,135033 +31104,132767 +31105,132648 +31106,132601 +31107,132955 +31108,134586 +31109,132542 +31110,132512 +31111,132542 +31112,132601 +31113,132648 +31114,132955 +31115,134586 +31116,132955 +31117,133072 +31118,133483 +31119,133483 +31120,134337 +31121,134949 +31122,132520 +31123,135496 +31124,135036 +31126,133050 +31127,132601 +31128,135034 +31129,135034 +31130,135034 +31131,133772 +31132,134584 +31133,132589 +31134,132961 +31135,132961 +31136,132950 +31137,132535 +31138,133738 +31139,132579 +31140,132579 +31141,133143 +31142,135058 +31143,132517 +31144,136085 +31145,133674 +31146,135894 +31147,133608 +31148,135159 +31149,133133 +31150,136064 +31151,132609 +31154,135489 +31158,135489 +31159,132607 +31160,132602 +31161,132618 +31162,134403 +31163,135158 +31166,132542 +31167,133078 +31168,133061 +31169,135054 +31170,134536 +31171,132507 +31172,132947 +31173,132947 +31174,135130 +31175,132610 +31176,133153 +31177,133153 +31178,135500 +31179,132950 +31180,132950 +31181,132539 +31182,132951 +31183,132541 +31184,133071 +31185,132638 +31186,134589 +31187,133763 +31188,132537 +31189,132402 +31190,135533 +31191,134584 +31192,132502 +31193,132616 +31194,135045 +31195,132952 +31196,132952 +31197,134480 +31198,133862 +31199,133860 +31200,133874 +31201,133868 +31202,133871 +31203,133869 +31204,133867 +31205,133866 +31206,133136 +31207,133076 +31208,133866 +31210,135614 +31211,135923 +31212,135061 +31213,132614 +31214,135612 +31215,134963 +31216,134963 +31217,135056 +31218,132409 +31219,132409 +31220,135474 +31221,132384 +31222,132384 +31223,134430 +31224,135616 +31225,135616 +31226,135616 +31227,133155 +31228,133129 +31229,132955 +31230,132512 +31237,135612 +31238,134329 +31239,135533 +31240,135500 +31241,132628 +31242,134590 +31243,132582 +31244,132541 +31245,132944 +31246,133123 +31247,135049 +31248,132605 +31249,135166 +31250,135167 +31251,134474 +31252,134475 +31253,134474 +31254,134472 +31255,134473 +31256,132486 +31257,132485 +31258,135225 +31259,133077 +31260,133077 +31261,133131 +31262,133131 +31263,133131 +31264,135489 +31265,132996 +31266,135647 +31267,132590 +31268,133126 +31269,132590 +31270,132590 +31271,132590 +31272,132937 +31273,132937 +31274,132937 +31275,132937 +31276,132937 +31277,132496 +31278,132501 +31279,135049 +31280,132601 +31281,135819 +31282,135805 +31283,135358 +31284,133070 +31285,132768 +31286,132768 +31287,134465 +31288,135329 +31289,132957 +31290,132957 +31291,132583 +31292,132583 +31293,134951 +31294,132583 +31295,132589 +31296,134965 +31297,132418 +31298,135035 +31299,132418 +31300,132393 +31301,132401 +31302,132401 +31303,132415 +31304,135313 +31305,135500 +31306,133453 +31307,135500 +31308,135313 +31309,135313 +31310,135539 +31311,135662 +31312,135649 +31313,135159 +31314,132965 +31315,134296 +31316,132961 +31317,134297 +31318,133452 +31319,135615 +31320,134584 +31321,133057 +31322,133040 +31323,133047 +31324,134380 +31325,133853 +31326,133160 +31327,133120 +31328,135124 +31329,134593 +31330,135151 +31331,134588 +31332,133729 +31333,134592 +31334,135358 +31335,135643 +31336,135643 +31337,135643 +31338,135489 +31339,132512 +31340,134586 +31341,135054 +31342,133143 +31343,135054 +31344,132542 +31345,132955 +31346,135149 +31347,135167 +31350,135062 +31351,133763 +31352,134584 +31353,132516 +31354,132590 +31356,132742 +31359,132541 +31366,132541 +31371,133136 +31376,132863 +31379,135662 +31380,135649 +31381,135649 +31382,132944 +31383,132614 +31384,132614 +31385,132614 +31386,133601 +31387,133612 +31388,136221 +31391,132857 +31400,135276 +31401,134538 +31402,132625 +31403,134583 +31404,132517 +31405,132616 +31406,132944 +31407,132588 +31408,132588 +31409,135041 +31410,133126 +31411,132601 +31412,132592 +31413,132505 +31414,132945 +31415,134583 +31416,132633 +31419,135277 +31423,133865 +31424,135325 +31425,133870 +31434,134154 +31468,135035 +31471,132492 +31473,132607 +31475,133283 +31476,133284 +31477,133285 +31478,133286 +31479,133287 +31480,133429 +31481,133430 +31482,133431 +31483,133432 +31484,133433 +31490,132644 +31494,133072 +31498,133382 +31499,133599 +31500,132926 +31501,133143 +31502,132955 +31503,132955 +31504,135056 +31505,132738 +31506,133073 +31507,132963 +31508,132963 +31509,132617 +31510,135051 +31511,134227 +31512,133155 +31513,133143 +31514,133143 +31515,134521 +31516,134016 +31517,133155 +31518,135005 +31521,135125 +31522,135057 +31523,135057 +31524,133153 +31525,135350 +31526,135346 +31527,135026 +31528,135026 +31529,132722 +31530,132723 +31531,132723 +31532,132505 +31533,132498 +31534,132498 +31535,132505 +31536,132505 +31537,132505 +31538,132553 +31539,132960 +31540,132960 +31541,132960 +31542,132498 +31543,132498 +31544,132498 +31545,132500 +31547,134582 +31549,132565 +31550,132565 +31551,132565 +31552,132565 +31553,135473 +31554,132560 +31555,132560 +31556,132560 +31557,132560 +31558,132560 +31559,132560 +31560,132560 +31561,132560 +31562,132560 +31563,132560 +31564,132963 +31565,132500 +31566,135057 +31572,132539 +31576,133379 +31577,134514 +31592,133768 +31593,133768 +31594,132515 +31595,132515 +31596,132515 +31597,132524 +31598,132524 +31599,132507 +31600,132507 +31601,132515 +31602,132493 +31603,133303 +31604,133302 +31605,135642 +31606,135651 +31607,135152 +31608,135167 +31609,135157 +31610,135157 +31611,132416 +31612,133058 +31613,135127 +31614,135494 +31615,135494 +31616,133377 +31617,135357 +31618,135043 +31619,132617 +31620,132607 +31621,135536 +31622,135496 +31623,134799 +31624,132950 +31625,132950 +31626,134585 +31627,135465 +31628,135474 +31629,132942 +31630,132942 +31631,134420 +31632,133769 +31633,134196 +31634,132953 +31635,134584 +31636,132956 +31637,132956 +31638,132956 +31639,132718 +31640,132635 +31641,132635 +31642,132657 +31643,132657 +31644,132657 +31645,135463 +31646,132571 +31647,132571 +31648,132571 +31649,132571 +31650,132767 +31651,134586 +31652,132505 +31653,132500 +31654,132518 +31655,133378 +31656,135054 +31657,133381 +31658,133741 +31659,132960 +31660,132960 +31661,132550 +31662,132548 +31663,132659 +31664,133380 +31666,132541 +31668,134584 +31669,133124 +31670,133124 +31671,133124 +31672,132521 +31673,132659 +31674,132956 +31675,133153 +31676,135026 +31677,135474 +31679,132956 +31680,132956 +31681,132513 +31682,132502 +31683,132956 +31684,134586 +31685,134586 +31686,135648 +31687,135648 +31688,135131 +31689,135131 +31690,135131 +31691,135574 +31692,135349 +31693,132403 +31694,132403 +31695,135349 +31696,135349 +31697,135349 +31712,135490 +31713,134953 +31714,134953 +31715,134953 +31716,135612 +31717,135612 +31718,132541 +31719,135131 +31720,135131 +31721,132392 +31722,132495 +31723,132542 +31724,132542 +31725,132602 +31726,132941 +31727,133077 +31728,133077 +31729,134586 +31730,135038 +31731,132647 +31732,132540 +31733,134951 +31734,132403 +31735,132403 +31740,135138 +31742,134022 +31743,135038 +31744,134482 +31745,134481 +31746,134965 +31747,135615 +31748,135496 +31749,135539 +31750,133047 +31751,133057 +31752,134297 +31753,134493 +31754,134296 +31755,134493 +31756,134482 +31757,135533 +31758,135617 +31759,135500 +31760,134497 +31761,135131 +31762,134486 +31763,135151 +31764,135151 +31765,133729 +31766,135124 +31767,134492 +31768,134488 +31769,134484 +31770,134491 +31771,134495 +31777,133974 +31778,133436 +31779,134200 +31783,133654 +31797,132647 +31798,135536 +31800,133376 +31801,134256 +31802,134061 +31803,134256 +31804,133919 +31805,133733 +31806,133743 +31807,133941 +31808,135637 +31809,133749 +31810,135846 +31811,135844 +31812,135855 +31813,135844 +31814,135855 +31815,135835 +31816,133050 +31817,133050 +31818,135330 +31819,133377 +31820,135330 +31821,135360 +31822,133056 +31823,135050 +31824,135044 +31825,135044 +31826,135044 +31827,135044 +31828,135044 +31829,132503 +31830,132587 +31831,132615 +31832,132633 +31833,135060 +31834,132945 +31835,133077 +31836,134583 +31837,133481 +31838,136116 +31839,136224 +31840,136115 +31841,134419 +31842,132290 +31843,134124 +31844,135880 +31845,134073 +31846,134232 +31847,134944 +31848,133738 +31849,135665 +31850,135664 +31851,134966 +31852,134963 +31853,135497 +31854,135497 +31855,135359 +31856,135361 +31857,132401 +31858,132415 +31859,135143 +31860,133480 +31861,133482 +31862,133481 +31863,133481 +31864,135665 +31865,135664 +31866,135359 +31867,135361 +31868,135538 +31869,132406 +31870,132403 +31871,135360 +31872,135663 +31873,134335 +31874,135473 +31875,135611 +31876,135611 +31877,133480 +31878,133480 +31879,135663 +31880,135663 +31881,133480 +31882,132940 +31883,132940 +31884,132940 +31885,132940 +31886,132940 +31887,132940 +31888,132940 +31889,133299 +31890,133078 +31891,133078 +31892,132606 +31893,133074 +31894,133074 +31895,133074 +31896,133074 +31897,133074 +31898,133154 +31899,133304 +31900,134154 +31901,135241 +31902,132507 +31903,132562 +31904,132562 +31905,133385 +31906,133384 +31907,133305 +31908,133383 +31909,135538 +31910,134613 +31911,134613 +31912,133753 +31913,132585 +31914,132585 +31915,132502 +31916,132552 +31917,132552 +31918,132953 +31919,132953 +31920,132558 +31921,132558 +31922,132586 +31923,132586 +31924,132500 +31925,132510 +31926,135054 +31927,132505 +31928,132665 +31929,132691 +31930,132691 +31931,132499 +31932,134671 +31933,134692 +31934,132723 +31935,133476 +31936,133723 +31937,135473 +31952,134335 +31953,134335 +31954,133040 +31955,133488 +31956,132418 +31957,132393 +31958,132415 +31959,135143 +31960,135143 +31961,133672 +31962,135143 +31963,135150 +31964,135150 +31965,133303 +31966,135291 +31967,133605 +31968,134669 +31969,132502 +31970,132606 +31971,132953 +31972,134608 +31973,132650 +31974,135054 +31975,132562 +31976,135468 +31977,135468 +31978,133763 +31979,132560 +31980,132560 +31981,132560 +31982,132560 +31983,132573 +31984,132573 +31985,132573 +31986,132718 +31987,133076 +31988,133076 +31989,133627 +31995,134353 +31996,135349 +31997,135291 +31998,135358 +31999,135360 +32000,135360 +32005,135005 +32008,133301 +32012,132965 +32013,132961 +32014,132961 +32015,132965 +32016,135038 +32017,133073 +32018,132616 +32019,132517 +32020,132588 +32021,132616 +32022,132625 +32023,134583 +32024,132944 +32026,135026 +32027,132556 +32028,133073 +32029,134655 +32030,135041 +32031,135026 +32032,132302 +32033,135643 +32034,135058 +32035,132612 +32036,132610 +32037,132544 +32038,132545 +32040,132556 +32043,135033 +32044,135009 +32047,132381 +32048,135033 +32051,132958 +32058,134583 +32060,132613 +32066,133770 +32067,133765 +32068,133765 +32069,133770 +32070,133770 +32071,133765 +32072,133765 +32073,133300 +32074,135651 +32075,135650 +32076,135341 +32077,135328 +32078,135494 +32079,135494 +32080,135497 +32081,135490 +32082,135039 +32087,133291 +32088,132605 +32089,132602 +32090,132611 +32091,132612 +32092,135041 +32093,133073 +32094,132625 +32095,132588 +32096,134583 +32097,134669 +32098,132944 +32099,132587 +32100,132945 +32101,134583 +32102,134668 +32103,132633 +32104,133077 +32105,135060 +32106,132542 +32107,132959 +32108,134586 +32109,135038 +32110,132638 +32111,133077 +32112,134586 +32113,132959 +32114,132542 +32115,132638 +32116,133077 +32117,135038 +32118,132587 +32119,132945 +32120,134668 +32121,135060 +32122,132633 +32123,133077 +32124,132587 +32125,135060 +32126,132587 +32127,134667 +32128,135060 +32129,135038 +32130,133077 +32131,135038 +32132,133077 +32133,133077 +32134,133077 +32135,133077 +32140,133040 +32145,132628 +32146,135536 +32152,135011 +32153,135011 +32154,132648 +32155,134608 +32156,132559 +32157,132718 +32158,132606 +32159,132965 +32160,135054 +32162,133041 +32163,132636 +32164,132965 +32165,135046 +32166,132743 +32167,134697 +32168,135032 +32169,132938 +32171,134229 +32172,134464 +32173,133305 +32174,132482 +32182,135005 +32188,135574 +32189,135665 +32192,134592 +32193,133132 +32194,135654 +32195,135150 +32196,135150 +32197,135316 +32198,135316 +32199,135302 +32200,132400 +32201,135005 +32216,132392 +32217,134950 +32226,132381 +32230,134348 +32231,133649 +32233,135971 +32234,135942 +32235,136191 +32236,132928 +32237,136075 +32238,136153 +32239,136164 +32240,135923 +32241,136080 +32242,136036 +32252,132604 +32253,132617 +32254,132613 +32255,132501 +32256,135050 +32257,132482 +32258,135011 +32259,132634 +32260,134085 +32261,133895 +32262,133913 +32263,132742 +32264,132521 +32265,132613 +32267,132715 +32268,132508 +32269,132614 +32270,135053 +32271,132508 +32272,132508 +32273,132725 +32274,135060 +32275,132613 +32276,133790 +32277,133794 +32278,133792 +32279,133793 +32280,133798 +32281,133795 +32282,133796 +32283,133797 +32284,133791 +32285,132721 +32286,132490 +32287,132607 +32288,135032 +32289,132497 +32290,132606 +32291,132653 +32292,135048 +32293,132396 +32294,135616 +32295,135277 +32296,134697 +32297,133309 +32298,133774 +32299,135342 +32300,133791 +32301,133606 +32302,135824 +32303,135474 +32304,134967 +32305,133389 +32306,135316 +32307,134967 +32308,134967 +32310,133135 +32311,135642 +32312,135642 +32313,135643 +32314,135316 +32315,135346 +32316,135534 +32317,135534 +32318,132960 +32320,133770 +32321,133308 +32322,135277 +32323,133381 +32324,135580 +32325,135346 +32326,133306 +32327,134666 +32328,135032 +32329,135032 +32330,135032 +32331,135032 +32332,135168 +32333,133306 +32334,135225 +32335,133387 +32336,133565 +32337,134661 +32338,133773 +32339,133773 +32340,132960 +32341,134634 +32342,133141 +32343,133485 +32344,133640 +32345,132556 +32346,132556 +32347,133388 +32348,132948 +32349,135032 +32350,134608 +32351,134296 +32352,132566 +32353,133386 +32354,134608 +32355,132406 +32356,135345 +32357,135651 +32358,132743 +32359,132743 +32360,132743 +32361,133732 +32362,135009 +32364,132501 +32370,132547 +32371,133762 +32372,133483 +32373,133483 +32374,135146 +32375,134296 +32376,134187 +32377,135009 +32378,132587 +32379,132587 +32380,135036 +32382,135474 +32386,133047 +32387,133047 +32388,132547 +32389,132547 +32390,132760 +32391,132490 +32394,134712 +32395,133290 +32397,134298 +32398,132666 +32399,132666 +32400,132666 +32401,134608 +32402,135468 +32403,135474 +32404,135040 +32405,134666 +32406,132556 +32407,134608 +32408,135032 +32409,135032 +32410,132950 +32411,135642 +32412,135643 +32413,133141 +32414,133624 +32415,132742 +32416,132521 +32417,132613 +32424,134711 +32425,134298 +32426,133686 +32427,136101 +32428,132932 +32429,133148 +32430,135127 +32431,133300 +32432,134136 +32433,132414 +32434,132414 +32435,132418 +32436,135126 +32437,135347 +32438,135347 +32439,135347 +32440,135496 +32441,135467 +32442,135271 +32443,135271 +32444,135126 +32445,135126 +32446,135126 +32447,132543 +32448,132543 +32449,132543 +32450,132932 +32451,132893 +32452,132893 +32455,135736 +32461,135225 +32462,135225 +32463,135580 +32464,135724 +32470,132966 +32489,135280 +32490,135280 +32492,132939 +32493,133078 +32497,135496 +32498,135534 +32499,135497 +32501,133772 +32503,133772 +32507,135463 +32508,133693 +32509,132524 +32511,135638 +32514,133040 +32515,133743 +32516,135225 +32517,135146 +32518,135146 +32519,135496 +32520,133904 +32521,133905 +32526,132791 +32527,135346 +32528,135346 +32529,135642 +32530,135643 +32531,135342 +32532,133146 +32533,133485 +32534,134296 +32535,134296 +32536,133146 +32537,134295 +32538,134295 +32539,134295 +32540,133374 +32541,135342 +32542,135651 +32543,134825 +32544,132653 +32545,132915 +32546,132924 +32547,132526 +32548,132527 +32549,132528 +32550,132529 +32551,132530 +32552,132531 +32553,132532 +32554,132533 +32555,132534 +32556,135228 +32557,135231 +32558,134967 +32559,134959 +32560,134968 +32561,134958 +32562,132566 +32563,132566 +32564,132653 +32565,132653 +32566,135048 +32567,135032 +32568,134296 +32569,134296 +32570,135461 +32571,135462 +32572,135342 +32574,135616 +32575,135666 +32576,135667 +32577,135619 +32578,135474 +32579,135471 +32580,135362 +32581,135364 +32582,135468 +32583,135471 +32584,135467 +32585,135582 +32586,135172 +32587,135171 +32588,133492 +32589,135365 +32590,135642 +32591,135642 +32592,135642 +32593,134296 +32594,133565 +32595,135471 +32596,133565 +32597,133483 +32598,135362 +32599,132551 +32600,133483 +32601,132547 +32602,135365 +32603,135365 +32604,135582 +32605,132503 +32606,132509 +32607,132506 +32608,132587 +32609,135172 +32610,135171 +32611,135171 +32612,135172 +32613,135170 +32614,135592 +32615,135592 +32616,132545 +32617,132561 +32618,135171 +32619,132564 +32620,132587 +32621,132587 +32622,132587 +32623,132545 +32624,132564 +32625,132561 +32626,132587 +32627,132548 +32628,132585 +32629,132545 +32630,132561 +32631,132405 +32632,132506 +32633,132509 +32634,132545 +32635,132545 +32636,132545 +32637,132509 +32638,132545 +32639,132564 +32640,132561 +32641,132561 +32642,132585 +32643,132585 +32644,132503 +32645,132562 +32646,132545 +32647,132585 +32648,135311 +32649,135466 +32650,134020 +32655,135229 +32656,133603 +32657,133388 +32658,135940 +32675,135005 +32677,135466 +32678,133374 +32679,132545 +32680,132545 +32681,132545 +32682,132545 +32683,135050 +32684,135032 +32685,135471 +32686,135127 +32687,135125 +32688,135125 +32689,134137 +32690,135428 +32691,134314 +32692,135428 +32693,135427 +32694,135026 +32695,135026 +32696,132945 +32697,132964 +32698,132964 +32699,132964 +32700,132964 +32701,133126 +32702,133126 +32703,133126 +32704,133126 +32705,133126 +32706,133126 +32707,133126 +32708,133126 +32709,133126 +32710,133126 +32711,133159 +32712,133159 +32713,133310 +32714,133311 +32715,133312 +32716,133313 +32717,135125 +32718,132502 +32719,132501 +32720,132503 +32721,132501 +32722,135365 +32723,135361 +32724,132502 +32725,133767 +32726,133765 +32727,133766 +32728,134154 +32729,132539 +32730,132539 +32731,133132 +32732,132562 +32733,132482 +32734,133565 +32735,133159 +32736,132405 +32737,132405 +32738,132420 +32739,135032 +32740,135055 +32741,135032 +32742,135055 +32743,132919 +32744,132919 +32745,135723 +32746,134411 +32747,132715 +32748,132715 +32749,132614 +32750,132508 +32751,132964 +32752,132959 +32753,134658 +32754,133127 +32755,132554 +32756,134680 +32757,132944 +32758,132584 +32759,134667 +32760,134667 +32761,132946 +32762,132946 +32763,135538 +32764,135538 +32765,133494 +32766,135496 +32767,134165 +32768,135724 +32769,132419 +32770,132559 +32771,133728 +32772,134634 +32773,132547 +32774,135473 +32776,135592 +32777,132482 +32778,132414 +32779,133479 +32780,133479 +32781,132595 +32782,133494 +32783,132943 +32784,133728 +32790,133077 +32791,134169 +32792,132834 +32804,134582 +32805,135005 +32811,132939 +32813,135046 +32815,132944 +32816,134586 +32817,134419 +32818,132743 +32819,134387 +32820,134315 +32821,132585 +32822,132585 +32823,135724 +32824,134164 +32825,134165 +32826,133632 +32827,135474 +32829,133075 +32830,134015 +32831,132093 +32834,132395 +32835,135321 +32836,135321 +32837,135321 +32838,133644 +32839,134007 +32840,134164 +32841,132658 +32842,133129 +32843,135056 +32844,133129 +32845,134945 +32846,133464 +32847,133463 +32849,134015 +32850,136192 +32851,136098 +32858,135473 +32859,132537 +32860,135009 +32865,132535 +32871,132611 +32872,132742 +32873,132965 +32874,132945 +32875,132604 +32876,132717 +32877,132945 +32878,132877 +32879,135824 +32880,132767 +32883,132584 +32884,134123 +32885,134315 +32886,134316 +32887,134307 +32888,134957 +32889,132963 +32890,132964 +32891,133483 +32893,135328 +32894,135150 +32895,133378 +32896,135047 +32897,135032 +32898,133722 +32899,133132 +32900,133127 +32901,135047 +32902,135047 +32903,135047 +32905,136192 +32906,133069 +32907,133069 +32908,133069 +32909,135157 +32910,134599 +32911,135813 +32912,136069 +32913,135990 +32914,135841 +32915,135021 +32916,135021 +32917,132684 +32918,132650 +32919,135150 +32920,134462 +32921,134458 +32922,134465 +32923,134457 +32924,134599 +32925,132506 +32926,134599 +32927,134599 +32928,132503 +32929,132650 +32930,135168 +32931,135473 +32932,135473 +32933,134458 +32934,133078 +32935,133078 +32936,133078 +32937,133078 +32938,133078 +32939,133078 +32940,133078 +32941,133078 +32942,133078 +32943,132743 +32944,132963 +32945,132741 +32946,132961 +32947,135168 +32948,132650 +32951,135005 +32954,135168 +32955,134015 +32956,134164 +32957,134165 +32958,134159 +32959,134160 +32960,134159 +32961,134162 +32962,132089 +32963,132089 +32964,134167 +32965,134173 +32966,134178 +32967,134177 +32968,134171 +32969,132366 +32970,134174 +32971,134175 +32972,134179 +32973,134180 +32974,132686 +32975,135005 +32978,133126 +32979,133126 +32980,133126 +32981,132653 +32982,135033 +32983,135033 +32984,132643 +32985,135054 +32986,132643 +32987,132541 +32988,132948 +32989,134603 +32990,132948 +32991,134586 +32992,132541 +32993,132541 +32994,132559 +32995,132948 +32996,132539 +32997,132953 +32998,134587 +32999,133076 +33000,135033 +33001,132650 +33002,135033 +33003,135054 +33004,135054 +33005,135033 +33006,132541 +33007,134603 +33008,132559 +33009,132560 +33010,135354 +33011,133479 +33012,133769 +33013,133491 +33014,135658 +33015,135173 +33016,133491 +33017,133497 +33018,134333 +33019,135540 +33020,135540 +33021,133860 +33022,133308 +33023,133282 +33025,135225 +33026,135257 +33027,132608 +33028,132614 +33029,134660 +33030,132951 +33031,132951 +33032,132585 +33033,135349 +33034,132585 +33035,132554 +33036,132554 +33037,132767 +33038,132767 +33039,133119 +33040,132504 +33041,134628 +33042,134636 +33043,133145 +33044,132551 +33045,132551 +33046,132963 +33047,132963 +33048,132562 +33049,132562 +33050,135060 +33051,135060 +33052,132542 +33053,135010 +33054,132680 +33055,135042 +33056,135042 +33057,134667 +33058,134692 +33059,134681 +33060,133122 +33061,132539 +33062,132688 +33063,133117 +33064,136163 +33067,135491 +33068,135491 +33069,135656 +33070,133168 +33071,133076 +33072,133059 +33073,133129 +33074,135056 +33075,135168 +33076,132539 +33077,132953 +33078,135050 +33079,132716 +33080,132539 +33081,132961 +33082,133076 +33083,135050 +33084,132716 +33085,132716 +33086,135168 +33087,135358 +33088,135050 +33089,135050 +33090,132962 +33091,132962 +33092,132962 +33093,135354 +33094,135366 +33095,135658 +33096,133769 +33097,135354 +33098,132567 +33099,132963 +33100,132963 +33101,132966 +33102,132552 +33103,132552 +33104,132552 +33105,132552 +33106,135663 +33107,135663 +33108,132541 +33109,132541 +33110,132966 +33111,132541 +33112,132541 +33113,135129 +33114,132535 +33115,132939 +33116,132586 +33117,132586 +33118,135498 +33119,134630 +33120,133051 +33121,132519 +33122,134668 +33123,135345 +33124,134688 +33125,135474 +33126,132515 +33127,134598 +33128,132404 +33129,135036 +33130,132609 +33131,132609 +33132,132939 +33133,135053 +33134,132606 +33135,133308 +33136,135056 +33137,132618 +33138,134961 +33139,135039 +33140,132611 +33141,132611 +33142,133754 +33143,133047 +33144,133771 +33145,135323 +33146,134694 +33147,134660 +33148,134626 +33149,134600 +33150,132651 +33151,132583 +33152,132583 +33153,132945 +33154,132945 +33155,132542 +33156,132951 +33160,132951 +33161,133119 +33162,133145 +33163,135145 +33167,132495 +33170,135145 +33171,134709 +33172,135144 +33173,134125 +33174,133133 +33175,135005 +33176,135005 +33177,134337 +33178,136168 +33179,132724 +33181,132395 +33182,132535 +33183,132718 +33184,132718 +33185,134586 +33187,133309 +33188,133280 +33189,133072 +33191,135816 +33193,134085 +33194,134711 +33195,133078 +33196,134177 +33197,134089 +33198,134659 +33199,133464 +33200,132363 +33201,133642 +33202,132107 +33203,132108 +33204,133645 +33205,134364 +33207,133303 +33208,133277 +33209,133439 +33210,134144 +33211,133460 +33212,134939 +33215,135033 +33219,135274 +33220,135274 +33222,134349 +33224,132595 +33225,136249 +33226,133299 +33227,135243 +33230,132767 +33231,132767 +33233,132392 +33234,135138 +33235,132392 +33236,135274 +33237,135650 +33238,134955 +33239,133941 +33243,134333 +33247,132494 +33248,134096 +33249,132857 +33250,132410 +33251,133485 +33252,135648 +33253,135648 +33254,135139 +33255,132410 +33256,132674 +33257,132657 +33258,132679 +33259,134596 +33260,132543 +33261,135434 +33262,133309 +33263,134655 +33264,132495 +33265,132535 +33266,132602 +33267,132938 +33268,132635 +33269,132938 +33270,132535 +33271,132493 +33272,132540 +33273,134590 +33274,135010 +33275,132610 +33276,132952 +33282,132939 +33283,135861 +33284,133912 +33285,133472 +33286,133149 +33287,133436 +33288,134967 +33289,133072 +33290,132768 +33291,134961 +33292,133143 +33293,133143 +33294,134107 +33295,134119 +33296,134090 +33297,134077 +33298,134108 +33299,135145 +33300,132402 +33301,133477 +33302,135654 +33303,135654 +33304,135271 +33305,134951 +33306,134955 +33307,134955 +33308,133485 +33309,134955 +33310,135009 +33311,134582 +33312,132539 +33313,132539 +33314,132539 +33315,135009 +33316,135005 +33317,132540 +33318,133770 +33319,132611 +33320,132540 +33321,132624 +33322,132624 +33323,132940 +33324,132494 +33325,132535 +33326,132492 +33327,132938 +33328,132609 +33329,134592 +33330,132493 +33331,132610 +33332,133762 +33333,132952 +33334,134589 +33335,132543 +33336,132624 +33337,134583 +33338,132938 +33339,132535 +33340,132624 +33341,132938 +33342,134582 +33343,135009 +33344,132539 +33345,134582 +33346,132635 +33347,132540 +33348,132547 +33349,132540 +33350,132540 +33351,134582 +33352,132722 +33353,132724 +33356,133762 +33358,135036 +33359,134655 +33368,135009 +33372,135009 +33374,134582 +33380,132722 +33381,134582 +33383,132635 +33384,132495 +33385,134655 +33386,132535 +33387,132635 +33388,132495 +33389,134655 +33390,132635 +33391,132495 +33392,134655 +33395,132804 +33399,132319 +33400,133165 +33401,133165 +33402,132665 +33409,133132 +33410,133345 +33415,135033 +33419,133793 +33420,135144 +33421,135152 +33422,135150 +33423,134457 +33424,133941 +33425,135638 +33426,133939 +33427,135474 +33428,135474 +33429,135138 +33430,135650 +33431,133501 +33433,134582 +33434,132392 +33435,132418 +33436,133001 +33447,134581 +33448,132880 +33449,134724 +33450,134725 +33451,134726 +33452,134727 +33453,134878 +33454,134879 +33455,134722 +33456,136120 +33457,136160 +33458,132393 +33459,132643 +33460,133474 +33461,133122 +33462,133163 +33463,132643 +33464,132642 +33466,132537 +33467,132806 +33468,132791 +33469,132792 +33470,132791 +33472,134582 +33518,133062 +33519,132952 +33520,136006 +33521,132924 +33522,134182 +33523,132648 +33524,132648 +33525,132648 +33526,132648 +33527,132647 +33528,132606 +33529,134125 +33530,132611 +33531,133759 +33532,133041 +33533,133060 +33534,133386 +33535,133202 +33536,132395 +33537,133382 +33538,132858 +33539,133992 +33540,132192 +33541,136152 +33542,135035 +33543,134456 +33544,133601 +33545,134308 +33546,134464 +33547,134232 +33548,135311 +33549,135161 +33550,134964 +33551,134006 +33552,133022 +33553,133906 +33554,135353 +33555,134018 +33556,132396 +33557,132396 +33558,135670 +33559,133474 +33560,134969 +33561,134969 +33562,134969 +33563,134969 +33564,134969 +33565,135620 +33566,135157 +33567,135157 +33568,132189 +33569,132939 +33570,132939 +33571,133912 +33572,135157 +33578,132395 +33585,134465 +33588,133204 +33589,133706 +33590,132646 +33591,132498 +33592,134584 +33593,134672 +33594,134662 +33595,133090 +33596,133078 +33597,132958 +33598,133078 +33599,132955 +33600,132638 +33601,132638 +33602,132751 +33603,132751 +33604,134662 +33605,132183 +33606,133101 +33607,135042 +33608,135042 +33609,132747 +33610,134687 +33611,132584 +33612,132653 +33613,132653 +33614,132653 +33615,135358 +33616,135034 +33617,135034 +33618,134596 +33619,133074 +33620,134596 +33621,132559 +33622,132559 +33623,132955 +33624,132955 +33625,132559 +33626,135647 +33627,132618 +33628,132751 +33629,132944 +33630,134584 +33631,132585 +33632,132498 +33633,132516 +33634,132617 +33635,132738 +33636,132963 +33637,134584 +33638,132590 +33639,132590 +33640,132652 +33641,132560 +33642,135034 +33643,134602 +33644,133076 +33645,133074 +33646,133074 +33647,132564 +33648,135034 +33649,132651 +33650,132648 +33651,132955 +33652,134601 +33653,135054 +33654,132542 +33655,133077 +33656,132959 +33657,133074 +33658,132959 +33659,135034 +33660,132564 +33661,132564 +33662,134626 +33663,132651 +33664,132723 +33665,132517 +33666,132616 +33667,132625 +33668,132944 +33669,132588 +33670,133073 +33671,133073 +33672,134583 +33673,132542 +33674,135041 +33675,133072 +33676,135034 +33677,133077 +33678,134632 +33679,135046 +33680,135051 +33681,132934 +33682,133073 +33683,132551 +33684,132551 +33685,133140 +33686,135034 +33687,134663 +33688,132626 +33689,132626 +33690,132551 +33691,132626 +33692,134663 +33693,133073 +33694,132585 +33695,134939 +33696,132550 +33697,132635 +33698,134662 +33699,135034 +33700,134663 +33701,134662 +33702,134227 +33703,133076 +33704,132550 +33705,132738 +33706,134678 +33707,135034 +33708,132550 +33709,132747 +33710,133101 +33711,132584 +33712,135042 +33713,134679 +33714,132586 +33715,133076 +33716,133101 +33717,133140 +33718,133140 +33719,133140 +33720,133072 +33721,132723 +33722,135034 +33723,132723 +33724,132723 +33725,135034 +33726,133074 +33727,132406 +33728,133389 +33729,135367 +33730,133766 +33731,133474 +33732,133768 +33733,133767 +33734,135663 +33735,133771 +33736,133767 +33737,133768 +33738,135650 +33739,133474 +33740,133474 +33741,133077 +33742,134944 +33743,133143 +33744,133143 +33745,134328 +33746,134327 +33747,133143 +33748,133143 +33749,135725 +33750,135725 +33751,135725 +33752,135725 +33753,135725 +33754,135725 +33755,135725 +33756,135725 +33757,135725 +33758,135725 +33759,135725 +33760,135725 +33761,135725 +33762,135725 +33763,133143 +33764,135725 +33765,135725 +33766,135725 +33767,135725 +33768,135725 +33769,135725 +33770,135725 +33771,135725 +33772,135725 +33773,135725 +33774,135725 +33775,135725 +33776,135725 +33777,135725 +33778,135725 +33779,135725 +33780,135725 +33781,135725 +33782,135725 +33783,135725 +33784,135725 +33785,135725 +33786,132486 +33787,135725 +33788,135725 +33789,132485 +33790,135725 +33791,135725 +33792,135725 +33793,135725 +33794,135725 +33795,135725 +33796,135725 +33797,135725 +33798,135725 +33799,135725 +33800,135725 +33801,135725 +33802,135725 +33803,135725 +33804,135725 +33805,135725 +33806,135725 +33807,135725 +33808,133423 +33809,135149 +33810,135059 +33811,135049 +33812,135049 +33813,133069 +33814,133758 +33815,132611 +33816,133069 +33817,132611 +33818,132618 +33819,132958 +33820,135535 +33821,135535 +33822,133077 +33823,134600 +33824,132507 +33825,132606 +33826,135620 +33827,135620 +33828,135535 +33829,133474 +33830,133501 +33831,135046 +33832,132498 +33834,132395 +33835,132395 +33838,2245030 +33839,135367 +33840,132722 +33841,135056 +33842,132939 +33843,132939 +33844,132939 +33845,133498 +33846,133153 +33847,133164 +33848,133164 +33849,133571 +33851,133573 +33852,135060 +33853,134677 +33854,134667 +33855,133426 +33856,133425 +33857,135501 +33858,132965 +33859,132944 +33860,132586 +33861,132586 +33862,132545 +33863,132545 +33864,133427 +33865,133117 +33866,133117 +33867,134968 +33868,132964 +33869,132946 +33870,132946 +33871,133570 +33872,132560 +33873,132562 +33874,132585 +33875,132585 +33876,132585 +33877,132585 +33878,132602 +33879,132602 +33880,133069 +33881,135366 +33882,135366 +33883,132542 +33884,132542 +33885,132514 +33887,134696 +33888,134691 +33889,132612 +33890,132554 +33891,132554 +33892,132554 +33893,132554 +33894,135648 +33895,132658 +33896,132958 +33897,132958 +33898,132958 +33899,132958 +33900,133117 +33901,133117 +33902,132618 +33903,132965 +33904,132502 +33905,132502 +33906,133341 +33907,133299 +33908,132664 +33911,133301 +33915,132653 +33920,132653 +33933,134582 +33938,133165 +33940,133670 +33941,133667 +33942,133664 +33955,135323 +33957,135323 +33958,135323 +33959,135323 +33960,135323 +33961,135661 +33963,135661 +33967,134399 +33968,135661 +33969,134398 +33970,134397 +33971,134396 +33972,134395 +33973,133884 +33978,132594 +33979,132594 +33980,132672 +33981,133077 +33982,132618 +33983,132751 +33984,132944 +33985,135665 +33986,134584 +33987,135665 +33988,135046 +33989,132585 +33990,132498 +33991,135665 +33992,135661 +33993,135323 +33994,135361 +33995,135361 +33996,135361 +33997,135359 +33998,133169 +33999,133170 +34000,135034 +34001,135034 +34002,135034 +34003,133074 +34004,133074 +34008,132542 +34010,132539 +34011,132502 +34012,132606 +34013,132953 +34014,132716 +34015,132539 +34016,132959 +34017,133074 +34018,135034 +34019,133074 +34020,135034 +34021,135034 +34022,135050 +34023,135034 +34024,135034 +34025,135034 +34029,133151 +34030,134656 +34031,134656 +34034,133309 +34035,134311 +34036,134314 +34037,135034 +34038,132644 +34039,134588 +34040,135033 +34041,132948 +34042,133126 +34043,132541 +34044,132541 +34045,132608 +34046,132511 +34047,132644 +34048,135033 +34049,134588 +34050,132189 +34051,132948 +34052,132608 +34053,132511 +34054,133126 +34055,132541 +34056,135034 +34057,133126 +34058,135033 +34059,134056 +34060,132642 +34061,132653 +34062,132652 +34063,132651 +34064,132652 +34065,132643 +34066,133077 +34067,135060 +34072,132642 +34073,132642 +34074,132642 +34075,132642 +34076,132642 +34077,135034 +34078,132503 +34079,132615 +34080,132633 +34081,132633 +34082,132945 +34083,132587 +34084,134583 +34085,133073 +34086,132723 +34087,132723 +34090,133140 +34091,135041 +34092,133077 +34093,132698 +34094,132699 +34095,132700 +34096,132697 +34097,132694 +34098,132693 +34099,132696 +34100,132695 +34101,134950 +34102,135493 +34104,133858 +34105,135638 +34106,135280 +34107,135612 +34108,132385 +34109,133042 +34110,134956 +34111,135654 +34112,135329 +34113,135150 +34114,135150 +34115,135493 +34116,135612 +34117,135493 +34121,133861 +34127,134955 +34128,132392 +34132,133574 +34133,132395 +34134,135157 +34135,135157 +34136,134897 +34137,134969 +34138,134896 +34139,135620 +34140,134898 +34141,135670 +34142,135671 +34143,134899 +34144,134902 +34145,134903 +34146,134906 +34147,134908 +34148,134907 +34149,134911 +34150,134909 +34151,134900 +34152,134904 +34153,134905 +34154,134910 +34155,134929 +34156,134930 +34157,134931 +34158,134932 +34159,134933 +34160,2241756 +34161,134935 +34162,134936 +34163,132965 +34164,134880 +34165,132965 +34166,134881 +34167,134893 +34168,134894 +34169,134883 +34170,134886 +34171,134885 +34172,134892 +34173,134895 +34174,134882 +34175,134887 +34176,132520 +34177,134471 +34178,132420 +34179,133754 +34180,132617 +34181,132617 +34182,132951 +34183,132951 +34184,132515 +34185,132618 +34186,132613 +34187,132610 +34188,134418 +34189,133428 +34190,135472 +34191,132520 +34192,132962 +34193,132962 +34194,132562 +34195,132562 +34196,132612 +34197,132612 +34198,135468 +34199,132612 +34200,132953 +34201,132953 +34202,132523 +34203,132521 +34204,133339 +34205,132500 +34206,134970 +34207,132612 +34208,132551 +34209,132538 +34210,132538 +34211,133077 +34212,133077 +34213,134106 +34214,133153 +34215,133173 +34216,133176 +34217,133171 +34218,133172 +34219,133174 +34220,133174 +34221,133175 +34222,133175 +34223,135502 +34224,132951 +34225,132951 +34226,132951 +34227,132601 +34228,134901 +34229,132951 +34230,132951 +34231,133753 +34232,135368 +34233,133126 +34234,132960 +34235,132960 +34236,132960 +34237,133575 +34238,134663 +34239,133772 +34240,132564 +34241,132509 +34242,132545 +34243,135032 +34244,132506 +34245,135032 +34246,132562 +34247,132562 +34248,132561 +34249,135050 +34250,135591 +34251,135060 +34252,135060 +34253,135065 +34254,135063 +34255,135064 +34256,135066 +34257,135066 +34258,135068 +34259,132538 +34260,132953 +34261,133572 +34262,132558 +34263,132564 +34264,135369 +34266,134662 +34267,132744 +34268,132744 +34269,132588 +34270,132664 +34271,134288 +34272,134289 +34273,134290 +34274,133340 +34275,134291 +34276,134292 +34277,134293 +34278,135061 +34279,134282 +34280,134283 +34281,134285 +34282,134284 +34283,134286 +34284,134287 +34285,134270 +34286,134271 +34287,134272 +34288,134911 +34289,134273 +34290,134274 +34291,134275 +34292,134687 +34293,133069 +34294,132667 +34295,132951 +34296,134296 +34297,132965 +34298,132965 +34299,132504 +34300,134591 +34301,134596 +34302,134596 +34303,133342 +34304,135366 +34305,132686 +34306,132955 +34307,133172 +34308,135060 +34309,135060 +34310,135060 +34311,135059 +34312,135059 +34313,135033 +34314,135033 +34315,132582 +34316,132957 +34317,132957 +34318,133307 +34319,132945 +34320,132507 +34321,133074 +34322,135036 +34323,135036 +34324,135038 +34325,132663 +34326,134636 +34327,135045 +34328,135067 +34329,133754 +34330,133498 +34331,133498 +34332,132589 +34333,132549 +34334,132587 +34335,132611 +34336,133424 +34337,133762 +34338,134536 +34339,133501 +34340,135005 +34342,134941 +34344,134276 +34345,134279 +34346,134277 +34347,133077 +34348,133074 +34349,133074 +34350,133074 +34351,133074 +34352,133165 +34353,133165 +34354,134276 +34355,134268 +34356,134277 +34357,134278 +34358,134279 +34359,134280 +34360,134281 +34361,134268 +34362,132392 +34363,133713 +34364,132787 +34365,134536 +34366,133073 +34367,133073 +34368,132418 +34369,133076 +34370,133074 +34371,132192 +34372,132535 +34373,133791 +34374,134478 +34375,132225 +34376,134169 +34377,132186 +34378,134242 +34379,132184 +34380,132202 +34381,133378 +34382,133378 +34383,132763 +34384,132768 +34385,132768 +34386,132768 +34387,132768 +34388,132768 +34389,132622 +34390,133792 +34391,135145 +34392,132509 +34393,132545 +34394,132503 +34395,132585 +34396,133072 +34397,133072 +34398,135473 +34399,135473 +34400,132740 +34401,135366 +34402,135366 +34403,135366 +34404,135363 +34405,135363 +34406,135619 +34407,135619 +34408,135466 +34409,135342 +34410,133071 +34411,133126 +34412,135057 +34413,135057 +34414,133041 +34415,133301 +34416,132562 +34417,132562 +34418,133041 +34419,135045 +34420,132743 +34421,132737 +34422,132532 +34423,134017 +34424,132490 +34425,132485 +34426,132416 +34427,132483 +34428,132483 +34429,132483 +34430,132483 +34431,134838 +34432,136093 +34433,133376 +34434,133069 +34435,133501 +34436,132689 +34437,132689 +34438,133474 +34439,133048 +34440,135575 +34441,135575 +34442,132511 +34443,132401 +34444,132511 +34445,132953 +34446,132953 +34447,132953 +34448,132953 +34449,132653 +34450,132400 +34451,134634 +34452,132648 +34453,132648 +34454,132541 +34455,132653 +34456,132700 +34457,136145 +34458,136145 +34459,135861 +34460,136074 +34461,132948 +34462,132953 +34463,132953 +34464,132945 +34465,133573 +34466,132953 +34467,132945 +34468,133048 +34469,132689 +34470,132400 +34471,133573 +34472,135466 +34473,133126 +34474,133041 +34475,133071 +34476,135057 +34477,135619 +34478,135342 +34479,132562 +34480,132400 +34481,132400 +34482,135057 +34483,132737 +34484,135619 +34485,133474 +34486,133174 +34487,133174 +34488,132598 +34489,132598 +34490,132597 +34491,132508 +34492,134878 +34493,134870 +34494,133859 +34495,133122 +34496,133748 +34497,133988 +34498,132826 +34499,134846 +34500,133748 +34501,132565 +34502,132565 +34503,132565 +34504,132565 +34505,132960 +34506,132498 +34507,132427 +34508,135453 +34509,132614 +34510,133308 +34512,135669 +34513,135669 +34514,132629 +34515,132639 +34516,132965 +34517,132505 +34518,132639 +34519,132738 +34520,132500 +34521,132584 +34522,132613 +34523,132953 +34524,133076 +34525,134584 +34526,135041 +34527,134968 +34528,134968 +34529,134968 +34530,134968 +34531,134968 +34532,134968 +34533,134968 +34534,132395 +34535,132382 +34536,135446 +34537,135447 +34538,135450 +34539,135450 +34541,135449 +34542,135449 +34543,134455 +34549,132609 +34550,132613 +34553,134927 +34555,132517 +34556,133047 +34557,134294 +34558,135047 +34559,133483 +34560,135638 +34561,133851 +34562,135005 +34563,134711 +34564,133122 +34571,133129 +34572,136244 +34573,135271 +34574,135902 +34575,133755 +34576,133753 +34577,132507 +34578,133850 +34579,135040 +34581,135457 +34582,135458 +34583,135459 +34584,135460 +34585,132547 +34588,135038 +34590,135038 +34593,132559 +34594,132507 +34595,132562 +34596,132666 +34597,135054 +34598,134586 +34599,132497 +34600,132951 +34601,133365 +34602,132768 +34603,132951 +34604,132560 +34605,132560 +34606,133077 +34607,133074 +34608,133072 +34609,133074 +34610,132523 +34611,132584 +34612,132617 +34613,132960 +34614,133070 +34615,134584 +34616,135061 +34617,132738 +34618,132951 +34619,134586 +34620,132501 +34621,132612 +34622,134588 +34623,133732 +34624,133131 +34625,132690 +34626,132539 +34627,132966 +34628,132499 +34629,132520 +34630,132767 +34631,132948 +34632,135033 +34633,132652 +34634,132539 +34635,134588 +34636,135464 +34637,132504 +34638,132542 +34639,133129 +34640,132951 +34641,132608 +34642,134588 +34643,135032 +34644,132741 +34645,132625 +34646,132517 +34647,132616 +34648,132588 +34649,133126 +34650,132944 +34651,135041 +34652,134583 +34653,133345 +34654,135451 +34655,135452 +34656,135454 +34667,135005 +34674,135449 +34675,135450 +34676,134141 +34677,134140 +34678,134140 +34679,134142 +34680,134144 +34681,134144 +34682,134143 +34683,135660 +34684,132542 +34685,132606 +34686,132958 +34687,134582 +34688,135038 +34689,132722 +34690,133164 +34691,132601 +34692,132592 +34693,133072 +34694,132505 +34695,132945 +34696,134583 +34697,135060 +34698,132633 +34699,132492 +34700,133143 +34708,132583 +34709,132583 +34710,134646 +34711,133069 +34712,132723 +34713,132723 +34714,132723 +34715,133132 +34716,132723 +34717,132723 +34718,132428 +34719,132542 +34720,132698 +34721,132698 +34722,132698 +34723,132698 +34724,132698 +34725,132664 +34726,132665 +34727,132691 +34728,132658 +34729,132650 +34730,132652 +34731,132653 +34732,135023 +34733,135028 +34734,135029 +34735,135454 +34736,135454 +34737,133459 +34738,133457 +34739,133458 +34740,133462 +34741,133465 +34742,133460 +34743,133973 +34744,132761 +34745,133467 +34746,133461 +34747,133468 +34748,134939 +34749,133472 +34750,133473 +34751,134331 +34752,134332 +34753,134329 +34754,134330 +34755,134327 +34756,134331 +34770,135039 +34771,132744 +34775,133133 +34776,132673 +34777,133132 +34778,133662 +34779,133663 +34780,133665 +34781,133132 +34782,132536 +34783,134588 +34784,132961 +34785,132961 +34786,132961 +34787,132961 +34788,134588 +34789,132961 +34790,132492 +34791,135036 +34792,132562 +34793,132612 +34794,135129 +34795,135464 +34796,133666 +34797,133668 +34798,133669 +34799,132689 +34800,135500 +34801,133739 +34802,133739 +34803,133479 +34804,135469 +34805,135469 +34806,135469 +34807,135469 +34808,133768 +34809,135326 +34810,135326 +34811,135144 +34812,133771 +34814,135005 +34818,135449 +34819,133483 +34820,133483 +34821,133040 +34822,133040 +34823,132737 +34824,132400 +34825,132637 +34826,132684 +34827,134681 +34828,133160 +34829,135060 +34830,132400 +34831,132516 +34832,132962 +34833,132587 +34834,134667 +34835,133117 +34836,132601 +34837,132511 +34838,132959 +34839,132548 +34840,134599 +34841,135056 +34842,132612 +34843,132492 +34844,132951 +34845,133022 +34846,132896 +34847,132896 +34848,135315 +34849,135315 +34850,135348 +34858,135342 +34859,135322 +34860,133042 +34861,135327 +34862,135327 +34863,134192 +34864,133881 +34865,133881 +34866,133880 +34867,133879 +34868,133320 +34869,133314 +34870,133318 +34871,133316 +34872,133882 +34873,133878 +34874,132619 +34875,135361 +34883,135361 +34884,135361 +34885,135361 +34886,135361 +34887,135361 +34888,135361 +34889,133045 +34890,134584 +34891,135144 +34892,134480 +34893,132483 +34894,135166 +34895,133739 +34896,135652 +34897,135033 +34898,133143 +34899,135469 +34900,132723 +34901,132945 +34902,133069 +34903,135325 +34904,135067 +34905,132737 +34906,134681 +34907,133160 +34908,133160 +34909,135060 +34910,132587 +34911,132962 +34912,132516 +34913,132614 +34914,132601 +34915,132637 +34916,132959 +34917,134667 +34918,133117 +34919,135060 +34920,135045 +34921,132548 +34922,132511 +34923,135125 +34924,132106 +34925,136067 +34926,132637 +34927,134667 +34928,133117 +34929,135045 +34930,132548 +34931,132959 +34932,132511 +34933,132601 +34934,132548 +34935,132959 +34936,134528 +34937,135148 +34938,135148 +34939,135168 +34940,135168 +34941,135168 +34942,132637 +34943,134667 +34944,134667 +34945,133117 +34946,135045 +34947,132548 +34948,132548 +34949,132959 +34950,132511 +34951,132959 +34952,132601 +34953,134913 +34954,134914 +34955,134912 +34956,134918 +34957,134919 +34958,134920 +34959,134915 +34960,134916 +34961,134917 +34962,133302 +34963,133303 +34964,132737 +34965,134681 +34966,133160 +34967,135060 +34968,132587 +34969,132962 +34970,132516 +34971,132614 +34972,132637 +34973,134667 +34974,133117 +34975,135045 +34976,132548 +34977,132959 +34978,132511 +34979,132601 +34980,135045 +34981,132548 +34982,132684 +34983,134599 +34984,132684 +34985,132767 +34986,135056 +34987,132579 +34988,132951 +34989,132492 +34990,132612 +34991,132684 +34992,134599 +34993,132767 +34994,135056 +34995,135056 +34996,132579 +34997,132951 +34998,132492 +34999,132612 +35000,132951 +35001,132684 +35002,134599 +35003,132767 +35004,135056 +35005,132579 +35006,132951 +35007,132492 +35008,132612 +35009,135327 +35010,133047 +35012,134723 +35013,132483 +35014,133571 +35015,136074 +35016,134137 +35017,135466 +35018,132857 +35023,133850 +35024,133850 +35025,134328 +35031,135356 +35032,132737 +35039,133303 +35041,133126 +35042,133126 +35043,134177 +35044,132614 +35045,136094 +35046,135849 +35047,136192 +35048,136121 +35049,132737 +35050,132962 +35051,134681 +35052,132587 +35053,132614 +35054,132737 +35055,132962 +35056,134339 +35057,133790 +35058,132516 +35059,135060 +35060,133160 +35061,133160 +35062,132587 +35063,132587 +35064,135060 +35065,134681 +35066,135060 +35067,132587 +35068,133571 +35069,134696 +35070,132744 +35071,135615 +35072,132649 +35073,134179 +35074,132953 +35075,132940 +35076,133768 +35077,133769 +35078,132649 +35079,132940 +35080,132633 +35081,132633 +35082,132633 +35083,132962 +35084,132606 +35085,132633 +35086,132962 +35087,132606 +35088,132633 +35089,133282 +35090,132611 +35091,132603 +35092,135865 +35093,134583 +35094,135639 +35095,133111 +35096,134583 +35097,135331 +35098,134095 +35099,134584 +35100,132962 +35101,132633 +35102,134646 +35103,134646 +35104,134667 +35112,135273 +35114,133768 +35115,133768 +35116,135461 +35117,132948 +35118,132965 +35119,132944 +35120,132490 +35124,133143 +35125,133163 +35129,133040 +35130,134888 +35131,133160 +35132,133160 +35133,133878 +35138,132501 +35139,133770 +35140,133573 +35141,134909 +35142,132684 +35143,132497 +35144,132612 +35145,132951 +35146,134599 +35147,132684 +35148,132579 +35149,135056 +35150,135371 +35151,132395 +35152,135371 +35153,134599 +35154,134599 +35155,132767 +35156,132684 +35157,134637 +35158,132601 +35159,132637 +35160,135045 +35161,134667 +35162,133117 +35163,132959 +35164,132511 +35165,132548 +35166,132548 +35167,132959 +35168,135012 +35169,135012 +35170,133694 +35171,132539 +35172,134596 +35173,132548 +35174,133168 +35175,134691 +35176,135060 +35177,135060 +35178,135432 +35179,132492 +35180,132612 +35181,132767 +35182,132767 +35183,132951 +35184,134599 +35185,132684 +35186,132579 +35187,135056 +35188,133160 +35195,133160 +35196,132742 +35197,132742 +35198,132742 +35199,132742 +35200,132742 +35201,132742 +35202,132742 +35203,132742 +35204,132742 +35205,132767 +35206,132767 +35207,132742 +35208,135049 +35209,135049 +35210,133160 +35211,133160 +35212,132561 +35213,132506 +35214,132561 +35215,132742 +35216,132742 +35217,132963 +35218,132510 +35219,132510 +35220,134004 +35221,133564 +35222,133071 +35223,133126 +35224,132498 +35238,134324 +35239,133502 +35240,135152 +35241,135150 +35242,135168 +35243,135669 +35244,133455 +35245,133454 +35246,133456 +35247,135370 +35248,135371 +35249,135361 +35250,133495 +35251,133503 +35252,135618 +35253,135541 +35254,135501 +35255,135356 +35256,135345 +35257,132428 +35258,132399 +35259,135574 +35260,134948 +35261,134947 +35262,135481 +35263,135482 +35264,134411 +35265,135724 +35266,136240 +35267,136118 +35268,136182 +35269,133988 +35272,135769 +35273,134503 +35274,134499 +35275,132606 +35276,132633 +35277,132962 +35278,134584 +35279,132940 +35280,134586 +35281,132649 +35282,134586 +35283,132606 +35284,132940 +35285,132940 +35286,132940 +35287,132606 +35288,132940 +35289,134646 +35290,132649 +35291,132940 +35292,132606 +35293,132633 +35294,132962 +35295,134667 +35296,132626 +35297,132744 +35298,134515 +35299,134516 +35300,134517 +35301,134518 +35302,132649 +35303,132940 +35307,133831 +35310,132616 +35311,135472 +35312,133776 +35313,133392 +35316,132535 +35322,132535 +35323,132962 +35324,135047 +35325,135038 +35326,135056 +35327,132579 +35328,132684 +35329,134599 +35330,132951 +35331,132767 +35332,132612 +35333,132492 +35334,133830 +35335,133832 +35336,133833 +35337,133834 +35338,133835 +35339,133829 +35340,133828 +35341,133821 +35342,133820 +35343,133824 +35344,133825 +35345,133826 +35346,133827 +35347,133823 +35348,133822 +35349,133804 +35350,133806 +35351,133809 +35352,133808 +35353,133810 +35354,133807 +35355,133805 +35356,133811 +35357,133495 +35358,133319 +35359,133317 +35360,133852 +35361,135442 +35362,135147 +35363,135175 +35364,135291 +35365,133775 +35366,133776 +35367,133391 +35368,135769 +35369,135045 +35370,135620 +35371,132416 +35372,133160 +35373,133315 +35374,135036 +35375,132660 +35376,132716 +35377,133759 +35378,133759 +35379,132539 +35380,132562 +35381,132538 +35382,132535 +35383,134555 +35384,132624 +35385,132535 +35386,132535 +35387,132660 +35388,132716 +35389,135176 +35390,135651 +35391,135369 +35392,135369 +35393,134963 +35394,134957 +35395,134631 +35396,135026 +35397,132660 +35398,132637 +35399,132535 +35400,135440 +35401,133944 +35402,132319 +35403,132873 +35404,132858 +35405,132514 +35406,132763 +35407,132599 +35408,133775 +35409,132548 +35410,132511 +35411,132959 +35412,133117 +35413,134667 +35414,135045 +35415,132637 +35416,132601 +35417,132390 +35418,132389 +35419,133074 +35420,132649 +35421,133072 +35422,132606 +35423,133390 +35424,132876 +35425,132876 +35429,135439 +35430,133775 +35431,133395 +35432,133155 +35433,133122 +35434,135060 +35435,132767 +35436,133152 +35437,133321 +35438,133394 +35439,135443 +35442,135441 +35443,132717 +35444,133777 +35445,135444 +35446,133777 +35447,133160 +35448,133458 +35449,132541 +35450,135493 +35456,135531 +35460,135501 +35461,135501 +35462,135541 +35464,134938 +35465,134422 +35472,133393 +35508,134696 +35509,132687 +35514,134588 +35515,134634 +35517,132956 +35518,132951 +35519,132492 +35520,132612 +35521,132951 +35522,134599 +35523,132684 +35524,132579 +35525,132579 +35526,132548 +35527,132511 +35528,132959 +35529,133117 +35530,134667 +35531,135045 +35532,132637 +35533,132601 +35534,132542 +35535,135021 +35540,132963 +35541,132940 +35542,132945 +35543,132950 +35544,132645 +35545,132950 +35546,132934 +35547,132745 +35548,132745 +35549,132745 +35550,132963 +35551,132630 +35552,132721 +35553,132940 +35554,132630 +35555,132613 +35556,132611 +35557,132615 +35558,132607 +35560,132543 +35562,134806 +35563,135144 +35564,132502 +35565,133754 +35567,134583 +35568,132541 +35569,132950 +35570,135275 +35571,135275 +35572,135640 +35573,134973 +35574,133504 +35575,135372 +35576,134971 +35577,134972 +35578,135501 +35582,135468 +35583,135468 +35584,132828 +35585,135652 +35586,132410 +35587,135154 +35588,135461 +35589,135643 +35590,135036 +35592,132489 +35593,135474 +35595,135824 +35596,135819 +35597,135036 +35598,132717 +35600,133117 +35601,133117 +35611,135045 +35612,133117 +35613,132548 +35614,132511 +35615,132959 +35616,134667 +35617,135045 +35618,132637 +35619,132601 +35620,134500 +35621,134501 +35622,132717 +35623,132878 +35625,133152 +35627,133152 +35629,133117 +35630,135150 +35631,135226 +35632,135226 +35633,135226 +35634,135226 +35639,134029 +35640,132539 +35642,133506 +35643,133505 +35649,134500 +35654,132389 +35657,135267 +35661,132392 +35666,132535 +35674,135005 +35675,135005 +35676,132612 +35677,132612 +35678,134172 +35690,132724 +35696,133122 +35699,132635 +35701,132393 +35704,132832 +35705,132687 +35709,133454 +35710,133496 +35711,134253 +35712,133454 +35713,132717 +35715,132535 +35716,135312 +35717,135350 +35718,134090 +35719,132390 +35720,132200 +35730,135501 +35731,135271 +35733,134581 +35734,135663 +35738,135264 +35739,135040 +35744,135262 +35745,135263 +35746,132548 +35747,132511 +35748,132959 +35749,133117 +35750,134667 +35751,135045 +35752,132637 +35753,132601 +35754,134667 +35756,134006 +35757,133797 +35758,134946 +35760,134581 +35761,134343 +35762,132200 +35771,134593 +35772,134593 +35778,132718 +35779,134584 +35780,132539 +35786,134584 +35790,132537 +35791,132939 +35792,134546 +35794,132718 +35797,132539 +35798,132951 +35799,132626 +35800,134583 +35801,133123 +35802,135047 +35803,132959 +35804,132542 +35805,132722 +35806,133077 +35807,135038 +35808,132960 +35809,134586 +35810,133077 +35811,135042 +35812,132949 +35813,134547 +35814,135472 +35815,134545 +35816,134545 +35817,134548 +35818,135594 +35819,135672 +35821,133076 +35822,133076 +35823,132662 +35825,135054 +35830,134144 +35831,134009 +35839,135273 +35842,134091 +35843,134092 +35844,134109 +35845,134110 +35846,134101 +35847,134102 +35848,134113 +35849,134112 +35850,134081 +35851,134078 +35852,134079 +35855,135144 +35856,134829 +35857,134801 +35861,134587 +35863,135501 +35864,133076 +35865,135054 +35868,133635 +35869,136200 +35870,135501 +35871,133850 +35876,134023 +35878,134955 +35884,134094 +35885,132609 +35886,134861 +35887,133058 +35888,132751 +35889,133058 +35890,134121 +35891,133058 +35898,135325 +35899,135638 +35900,135276 +35901,135643 +35902,136124 +35903,132718 +35905,136217 +35912,135271 +35914,132606 +35915,135032 +35916,134083 +35917,134093 +35918,134114 +35919,134103 +35920,134080 +35921,134111 +35922,133129 +35923,133076 +35928,132928 +35929,135026 +35930,134082 +35932,135641 +35933,135026 +35935,135054 +35945,135138 +35948,132878 +35959,132416 +35960,133076 +35961,135302 +35962,135324 +35963,132537 +35964,132395 +35968,133481 +35970,132645 +35971,132648 +35972,132648 +35973,132648 +35974,132642 +35975,132645 +35976,133076 +35979,132745 +35980,132937 +35987,132635 +35991,132751 +35992,133058 +35998,132883 +36000,132635 +36002,132635 +36003,132959 +36004,132542 +36005,132635 +36006,132539 +36007,132539 +36008,132539 +36009,132635 +36010,132951 +36011,132635 +36013,132940 +36014,134588 +36015,132720 +36016,134586 +36017,132716 +36018,134591 +36019,132635 +36020,132716 +36021,132716 +36022,134591 +36023,132669 +36024,132669 +36026,132635 +36027,135032 +36028,133076 +36029,132543 +36030,132543 +36031,132635 +36032,132743 +36034,133221 +36035,133233 +36036,135638 +36037,133074 +36038,135032 +36039,133119 +36040,133076 +36041,133074 +36042,133119 +36043,133077 +36044,135045 +36045,135662 +36046,133744 +36047,135009 +36050,132635 +36052,132635 +36055,132635 +36056,132543 +36058,132635 +36060,132635 +36062,133745 +36063,133488 +36064,133039 +36065,133060 +36066,135275 +36067,133480 +36068,135662 +36069,133489 +36072,132635 +36073,135275 +36074,133747 +36075,133746 +36077,132745 +36078,133039 +36079,133484 +36080,135662 +36081,135275 +36082,133747 +36083,133746 +36085,133076 +36086,133076 +36087,132635 +36088,135009 +36097,134582 +36100,134706 +36102,132939 +36103,135005 +36104,134582 +36108,132540 +36109,132624 +36110,134583 +36114,134582 +36116,134706 +36117,134583 +36118,135018 +36120,134582 +36121,132539 +36122,132539 +36124,135009 +36125,134582 +36126,132540 +36127,135005 +36128,134581 +36129,132535 +36131,132672 +36132,132672 +36133,135020 +36134,134581 +36135,132535 +36137,135010 +36138,132662 +36139,134655 +36140,132664 +36142,132250 +36144,134590 +36147,134655 +36148,132535 +36149,132938 +36150,132624 +36151,132635 +36154,135638 +36156,134581 +36158,132939 +36160,134581 +36163,133344 +36165,132937 +36166,132937 +36167,132937 +36168,132937 +36169,132937 +36170,132502 +36171,132502 +36174,132547 +36175,132547 +36176,132937 +36177,134683 +36178,132743 +36179,132629 +36180,132945 +36181,132945 +36182,132945 +36183,133137 +36184,132629 +36185,133651 +36186,132612 +36187,134574 +36188,134570 +36189,134568 +36190,134562 +36191,133225 +36192,133219 +36193,133223 +36194,133235 +36195,133224 +36196,132402 +36197,132402 +36198,133043 +36199,135327 +36200,135327 +36201,133489 +36202,132400 +36203,135302 +36204,135340 +36205,132606 +36206,132746 +36207,132964 +36208,132964 +36209,132745 +36210,132518 +36211,132551 +36212,132745 +36213,134688 +36214,132745 +36215,132745 +36216,132745 +36217,132745 +36218,133078 +36219,132606 +36220,132949 +36221,132745 +36222,132963 +36223,133124 +36224,133124 +36225,133124 +36226,132638 +36227,132960 +36228,133124 +36229,133124 +36230,134680 +36231,132544 +36232,132500 +36233,132964 +36234,132951 +36235,132745 +36236,132745 +36237,132960 +36238,132963 +36239,132963 +36240,132963 +36241,133131 +36242,133131 +36243,133071 +36244,133140 +36245,132606 +36246,132606 +36247,132606 +36248,132606 +36249,132605 +36250,132602 +36251,135369 +36252,135369 +36253,135369 +36254,135369 +36255,135278 +36256,132393 +36257,132401 +36258,132393 +36259,132393 +36260,135369 +36261,133046 +36262,132393 +36263,133054 +36265,133744 +36266,133745 +36267,133747 +36268,133746 +36269,135050 +36270,133651 +36271,132883 +36272,136200 +36273,132928 +36274,136121 +36275,136146 +36276,136141 +36277,136143 +36278,135158 +36279,132956 +36280,132721 +36282,135641 +36283,135641 +36284,135641 +36285,135641 +36287,133046 +36288,133491 +36290,134969 +36291,132635 +36292,132635 +36294,135033 +36297,135009 +36301,132745 +36302,132745 +36306,132635 +36307,134655 +36308,132535 +36317,136065 +36318,133631 +36331,132624 +36338,133877 +36347,132635 +36348,136036 +36349,132516 +36350,132587 +36351,132587 +36352,132684 +36353,132684 +36354,132684 +36358,132740 +36362,132740 +36366,132740 +36368,132687 +36369,132687 +36370,132687 +36371,135291 +36372,135277 +36373,135277 +36374,135277 +36375,134124 +36376,135277 +36377,135372 +36378,135371 +36379,134682 +36381,132395 +36382,132392 +36384,133152 +36385,133152 +36386,133153 +36390,132540 +36391,135726 +36401,134581 +36405,133982 +36406,134907 +36408,133496 +36412,133078 +36413,135728 +36414,135731 +36415,136099 +36416,133131 +36417,135340 +36418,135005 +36419,135160 +36422,135372 +36423,135331 +36424,135036 +36425,135032 +36426,134666 +36427,135053 +36428,134584 +36429,135053 +36430,132516 +36431,132203 +36432,133152 +36433,133122 +36434,135045 +36435,132606 +36436,132744 +36437,132962 +36438,134667 +36439,132721 +36440,132767 +36441,135275 +36442,135275 +36443,133040 +36444,133014 +36445,133133 +36446,136232 +36448,133797 +36451,134590 +36452,132540 +36454,135160 +36456,132635 +36457,134655 +36460,135265 +36466,133038 +36467,133038 +36468,135026 +36469,135026 +36470,134176 +36471,134230 +36472,133503 +36473,133503 +36474,132199 +36475,133986 +36476,135594 +36477,132485 +36478,134634 +36479,132940 +36480,132721 +36481,132607 +36482,134078 +36483,133503 +36484,134581 +36485,132635 +36486,134655 +36487,134378 +36488,134939 +36489,135616 +36490,135611 +36492,132535 +36493,135613 +36494,135616 +36496,135621 +36498,132635 +36499,132495 +36500,134655 +36501,132535 +36502,132938 +36503,133276 +36504,132819 +36505,133276 +36506,133149 +36507,133149 +36508,133717 +36509,133877 +36510,133876 +36511,133876 +36512,133877 +36517,133859 +36518,133503 +36519,136062 +36520,136062 +36521,132288 +36522,132626 +36527,133873 +36528,133859 +36529,133859 +36533,133861 +36534,132584 +36535,133029 +36538,132524 +36539,132516 +36540,132775 +36558,132995 +36566,135644 +36567,134230 +36568,133864 +36569,135619 +36570,132592 +36571,133863 +36572,136018 +36573,134249 +36574,134249 +36575,134249 +36577,134387 +36578,133745 +36581,132502 +36583,135032 +36585,132535 +36586,133040 +36587,132597 +36589,132775 +36590,133339 +36592,133299 +36593,133040 +36594,134709 +36595,132778 +36596,132784 +36597,132776 +36598,135665 +36599,133040 +36600,135493 +36601,136113 +36615,134518 +36617,134158 +36629,132363 +36630,133143 +36631,133483 +36637,134955 +36638,135641 +36644,133133 +36645,133133 +36649,135311 +36650,135311 +36651,134081 +36652,134244 +36654,135009 +36656,132500 +36658,132718 +36669,133077 +36671,132539 +36674,132644 +36675,132777 +36676,132644 +36677,133345 +36678,135005 +36679,133345 +36680,133345 +36681,133345 +36682,134970 +36683,134247 +36684,133434 +36686,132996 +36687,132996 +36688,132226 +36693,132786 +36696,135619 +36697,132395 +36698,135145 +36701,135026 +36702,132824 +36703,134522 +36704,133998 +36706,133483 +36707,133483 +36708,133483 +36709,133483 +36710,133483 +36711,133483 +36712,133483 +36713,133483 +36714,133483 +36715,133126 +36716,135373 +36725,132395 +36726,134955 +36727,134528 +36728,134524 +36729,135563 +36730,133160 +36741,135302 +36744,135032 +36748,135020 +36750,134581 +36751,132535 +36752,132939 +36754,132484 +36755,133316 +36756,134242 +36762,132418 +36763,132539 +36764,132539 +36765,133746 +36766,132540 +36767,132540 +36768,132717 +36769,134586 +36770,132630 +36771,132715 +36772,132768 +36773,135174 +36774,132624 +36775,132624 +36776,135011 +36777,135017 +36778,133076 +36779,133076 +36780,133071 +36781,135530 +36782,133076 +36786,132938 +36787,132940 +36788,132955 +36789,132635 +36790,134660 +36791,134660 +36792,132635 +36793,132544 +36794,135005 +36795,134706 +36796,132539 +36797,132939 +36798,132624 +36799,132490 +36800,134583 +36802,132606 +36803,132628 +36805,134583 +36806,133344 +36807,132723 +36808,132493 +36809,134582 +36814,134589 +36817,132724 +36821,132499 +36827,132490 +36836,132611 +36838,132495 +36842,133770 +36848,132635 +36849,134655 +36851,132495 +36852,132541 +36855,132635 +36857,132539 +36858,132539 +36859,132635 +36860,133727 +36861,136222 +36862,134723 +36864,132535 +36865,133848 +36866,134109 +36868,134119 +36871,132493 +36872,134582 +36873,132723 +36874,132493 +36875,134582 +36876,132723 +36877,132723 +36884,132745 +36885,135005 +36895,132723 +36896,134582 +36901,132762 +36902,133304 +36904,132624 +36905,132938 +36906,132495 +36916,132584 +36917,132584 +36919,132635 +36920,134655 +36922,132495 +36923,133487 +36924,133487 +36925,135493 +36934,134523 +36935,132609 +36936,133770 +36937,133763 +36938,132492 +36939,132502 +36940,132515 +36941,133769 +36942,134581 +36943,134603 +36944,134596 +36945,133129 +36946,133129 +36947,133129 +36948,134596 +36949,133129 +36950,136010 +36951,136011 +36952,136048 +36953,135954 +36954,132939 +36955,132939 +36956,135643 +36957,135637 +36958,135274 +36959,133057 +36960,135275 +36967,132505 +36968,132505 +36969,133045 +36970,135361 +36971,134596 +36972,133117 +36973,134384 +36974,133850 +36977,132608 +36979,133000 +36983,134324 +36984,134324 +36990,132628 +36992,134583 +36994,133344 +36996,132716 +36997,132630 +37000,135493 +37001,132395 +37003,135145 +37016,135639 +37017,135639 +37018,135280 +37019,135493 +37020,132395 +37021,132370 +37025,132499 +37030,134955 +37031,133483 +37034,133483 +37035,136125 +37036,133655 +37044,134439 +37045,135016 +37046,132662 +37047,132722 +37048,132638 +37049,133515 +37050,135416 +37051,135490 +37052,135542 +37053,135542 +37054,135222 +37055,133117 +37056,133117 +37057,135542 +37058,135026 +37059,135026 +37060,135026 +37061,135026 +37062,136074 +37063,135673 +37077,135129 +37078,135325 +37079,133738 +37080,135016 +37083,134320 +37094,134309 +37095,133758 +37101,132395 +37104,133067 +37112,134191 +37113,134221 +37125,133119 +37126,133119 +37130,134384 +37135,132395 +37148,135430 +37149,135430 +37154,132506 +37165,135005 +37168,135005 +37170,135654 +37171,135654 +37172,133477 +37174,134581 +37176,135005 +37178,134581 +37179,132541 +37181,133999 +37182,134230 +37183,134583 +37184,134583 +37185,134582 +37186,134591 +37190,132863 +37191,135417 +37192,133514 +37193,133513 +37194,135531 +37195,135222 +37196,132535 +37197,132607 +37198,132604 +37199,132662 +37200,134583 +37201,135543 +37202,132492 +37203,132606 +37204,134586 +37205,132602 +37206,132513 +37207,132535 +37208,135274 +37209,135411 +37210,134523 +37214,133851 +37215,136030 +37216,132624 +37217,134137 +37218,132780 +37219,134075 +37220,132859 +37221,132856 +37222,132856 +37223,134310 +37226,135671 +37234,135728 +37235,135410 +37236,136231 +37237,136070 +37238,133731 +37239,135988 +37240,135988 +37241,132097 +37246,132539 +37249,132781 +37250,132785 +37252,134582 +37253,132617 +37257,132395 +37266,132652 +37267,132615 +37269,134422 +37270,134060 +37271,135726 +37278,134197 +37282,133717 +37285,134192 +37286,133940 +37290,135177 +37292,132953 +37293,135723 +37294,133477 +37296,135046 +37297,132659 +37299,132740 +37300,133124 +37301,134693 +37302,135053 +37303,132963 +37304,132539 +37306,135349 +37307,135347 +37308,132949 +37309,133150 +37310,134599 +37311,133132 +37312,135033 +37313,132684 +37316,134181 +37318,132635 +37319,134655 +37320,135005 +37326,132624 +37327,132491 +37328,132543 +37329,132609 +37330,133153 +37331,133281 +37332,132957 +37333,134586 +37334,135040 +37335,135008 +37336,132511 +37337,132539 +37338,132609 +37339,133101 +37340,135039 +37341,132627 +37342,132498 +37343,132938 +37344,135038 +37345,133276 +37346,133276 +37347,133276 +37348,132505 +37349,132589 +37350,132602 +37351,132962 +37352,133071 +37353,134584 +37355,135044 +37356,132539 +37358,134323 +37359,134322 +37360,133723 +37361,134294 +37362,132917 +37363,136063 +37364,134310 +37365,134314 +37366,133884 +37368,134967 +37369,133571 +37370,133722 +37372,134172 +37373,134437 +37374,133731 +37377,132392 +37378,135668 +37380,132742 +37381,134186 +37382,134530 +37383,134304 +37388,136008 +37392,135592 +37393,134220 +37394,134218 +37400,134583 +37403,132624 +37405,134584 +37408,132495 +37409,135324 +37410,135133 +37412,134216 +37413,134214 +37414,134217 +37415,135276 +37424,133678 +37425,132239 +37426,132239 +37427,132268 +37428,133757 +37429,133757 +37430,133359 +37431,132611 +37432,132611 +37433,132608 +37434,132613 +37435,132613 +37436,132496 +37437,132499 +37438,132548 +37439,132963 +37440,132549 +37441,132965 +37442,134245 +37443,134911 +37444,132963 +37445,132963 +37446,132939 +37447,132501 +37448,133076 +37449,134586 +37450,132722 +37451,132680 +37452,132723 +37453,132723 +37454,132628 +37455,133111 +37456,135045 +37457,132541 +37458,134230 +37459,132536 +37460,134586 +37467,135321 +37469,135321 +37472,132946 +37473,132541 +37474,135055 +37475,133078 +37476,132505 +37477,132834 +37479,132945 +37481,132744 +37482,135039 +37483,134657 +37484,135026 +37490,132628 +37491,135054 +37492,133136 +37493,132722 +37494,135038 +37495,132547 +37496,135046 +37498,132963 +37499,132760 +37500,132505 +37501,134667 +37503,135005 +37504,133119 +37505,132951 +37506,135005 +37508,134584 +37509,132960 +37511,132512 +37515,135005 +37516,135005 +37524,133942 +37525,133038 +37531,135038 +37532,135005 +37533,133122 +37534,132958 +37535,132617 +37536,132590 +37537,132642 +37541,134478 +37542,132504 +37543,132605 +37544,132608 +37545,135128 +37547,132496 +37548,132588 +37549,133316 +37550,135140 +37551,134952 +37552,133437 +37553,132543 +37555,134564 +37556,133772 +37557,135614 +37558,136210 +37559,136128 +37560,132388 +37561,132590 +37562,132647 +37564,133601 +37571,132751 +37572,134586 +37573,132742 +37574,134660 +37576,132938 +37577,132554 +37578,132938 +37579,133680 +37580,132742 +37581,134660 +37582,132938 +37583,132554 +37584,132938 +37585,132938 +37589,133041 +37590,133706 +37593,132117 +37594,132722 +37595,134632 +37596,134632 +37597,132938 +37598,132938 +37599,132938 +37600,132544 +37601,132544 +37602,132938 +37603,132722 +37604,132722 +37605,134632 +37606,132938 +37607,132544 +37608,132544 +37611,133152 +37612,133153 +37613,133152 +37614,133152 +37615,133301 +37616,133152 +37617,133152 +37618,133152 +37619,133153 +37620,132945 +37625,134628 +37626,132956 +37627,132562 +37628,135412 +37629,132715 +37630,132715 +37631,134592 +37632,132721 +37633,132721 +37634,132541 +37638,134593 +37639,134593 +37640,134593 +37641,134593 +37642,132549 +37643,132504 +37645,134581 +37646,132721 +37647,132613 +37648,132502 +37651,134172 +37652,134181 +37653,132917 +37654,134060 +37655,135225 +37656,134314 +37657,134186 +37658,136153 +37659,134125 +37660,135225 +37661,134223 +37662,134209 +37663,134208 +37664,134206 +37665,134206 +37666,132395 +37667,133126 +37672,134307 +37681,132919 +37691,132938 +37693,132938 +37700,132951 +37745,132517 +37747,134589 +37748,133072 +37754,135033 +37755,132880 +37757,135005 +37766,134543 +37767,135005 +37774,135133 +37775,132635 +37780,133784 +37790,134581 +37792,132491 +37795,132543 +37798,132539 +37799,132524 +37800,135044 +37801,132946 +37802,135467 +37803,135467 +37804,133771 +37805,133771 +37806,134525 +37807,134756 +37808,134762 +37809,134759 +37810,134747 +37811,134753 +37812,134751 +37813,134749 +37814,134750 +37815,134748 +37816,134752 +37828,135274 +37829,134955 +37830,133130 +37834,133130 +37840,133452 +37841,133453 +37842,134773 +37843,134775 +37844,134772 +37845,134764 +37846,134771 +37847,134758 +37848,134774 +37849,134746 +37850,134742 +37851,134741 +37852,134740 +37853,134739 +37854,134738 +37855,134733 +37856,134729 +37857,134730 +37858,134728 +37859,134731 +37860,134760 +37861,134761 +37862,134778 +37863,134768 +37864,134766 +37865,134777 +37870,133869 +37871,135155 +37872,135157 +37873,135164 +37874,135165 +37877,134205 +37878,135005 +37879,133866 +37880,136076 +37883,132633 +37885,134593 +37887,132925 +37888,132925 +37889,132718 +37890,134599 +37891,133713 +37892,132962 +37893,132962 +37894,133132 +37895,134599 +37896,135038 +37897,132718 +37898,135043 +37909,134582 +37910,132392 +37911,134185 +37913,133133 +37918,134582 +37919,135410 +37920,135175 +37921,133299 +37922,134542 +37923,132491 +37924,132540 +37925,132722 +37926,132939 +37927,133072 +37928,134638 +37929,132939 +37930,132939 +37931,135054 +37932,132609 +37933,132939 +37934,135429 +37935,135429 +37936,133483 +37937,132435 +37938,133477 +37939,132511 +37940,132549 +37941,132739 +37942,132962 +37943,133127 +37944,134692 +37945,135057 +37946,132613 +37947,133491 +37948,135311 +37949,135465 +37950,135415 +37951,135493 +37952,136097 +37953,135425 +37954,135425 +37955,135425 +37956,135156 +37957,135637 +37958,132394 +37959,135328 +37961,135425 +37962,135612 +37963,132767 +37964,135423 +37965,135423 +37966,135424 +37967,135424 +37968,135427 +37969,133754 +37970,132504 +37971,135427 +37972,132537 +37973,132646 +37974,134597 +37975,135039 +37976,133152 +37977,132611 +37978,132506 +37979,132564 +37980,132955 +37981,132955 +37982,132767 +37983,134605 +37984,135049 +37985,132634 +37986,132605 +37987,134953 +37988,135582 +37989,135273 +37998,132516 +37999,132590 +38000,132723 +38001,132962 +38002,133071 +38003,134691 +38004,135044 +38005,132613 +38006,135311 +38007,133375 +38008,132408 +38009,135471 +38012,132492 +38013,132541 +38014,132647 +38015,132939 +38016,133153 +38017,132601 +38018,134596 +38019,135040 +38020,135163 +38021,135313 +38022,135469 +38023,132434 +38024,134953 +38025,133302 +38026,133476 +38027,133515 +38028,135615 +38029,135316 +38030,135542 +38031,133770 +38032,135368 +38033,135415 +38034,135157 +38035,133482 +38036,135593 +38037,132612 +38038,132626 +38039,132943 +38040,132550 +38041,133077 +38042,134663 +38043,135052 +38044,132612 +38045,132518 +38046,132611 +38047,132539 +38048,132514 +38049,132952 +38050,132952 +38051,133123 +38052,132647 +38057,135049 +38058,134600 +38059,132411 +38060,132609 +38061,132609 +38062,132718 +38063,134644 +38064,132505 +38065,132953 +38066,132953 +38067,132542 +38068,132767 +38069,132767 +38070,132767 +38071,135650 +38072,135643 +38073,132502 +38074,132608 +38075,132635 +38076,132960 +38077,133070 +38078,134697 +38081,135055 +38082,132491 +38083,132562 +38084,135503 +38085,134948 +38086,132393 +38087,135413 +38088,135616 +38089,133482 +38090,135128 +38091,133772 +38092,135416 +38093,133729 +38094,134296 +38096,132624 +38097,134518 +38098,133303 +38099,135412 +38100,133763 +38101,133763 +38102,132541 +38103,134282 +38104,134283 +38105,134284 +38106,134285 +38107,134286 +38108,135467 +38110,135291 +38111,135012 +38116,134584 +38118,132963 +38123,132495 +38124,134655 +38125,132535 +38127,135730 +38128,136101 +38129,135259 +38130,134948 +38141,135280 +38142,135280 +38143,132495 +38152,132495 +38158,132859 +38159,132539 +38160,134422 +38172,132715 +38175,133121 +38181,135277 +38182,134955 +38183,133483 +38185,134636 +38186,134636 +38187,133623 +38188,133623 +38189,134140 +38190,132599 +38191,134658 +38192,132944 +38193,132624 +38195,134336 +38197,133073 +38198,135641 +38222,135061 +38230,132500 +38231,132953 +38239,133306 +38245,132495 +38246,132543 +38249,135134 +38250,133067 +38251,132513 +38252,132939 +38254,132540 +38256,132635 +38257,134022 +38258,134955 +38259,135469 +38260,135533 +38261,132504 +38262,135543 +38263,135543 +38264,135224 +38265,135412 +38266,135011 +38267,135010 +38268,132740 +38269,133513 +38270,135416 +38271,133985 +38272,133902 +38273,133904 +38275,134691 +38276,134599 +38277,134583 +38278,134656 +38279,134664 +38280,134587 +38281,133851 +38282,133851 +38283,134473 +38284,134472 +38285,134691 +38286,132503 +38287,132150 +38288,133476 +38291,135138 +38292,132740 +38293,133124 +38294,133124 +38295,134693 +38296,135053 +38297,133071 +38298,133129 +38302,134588 +38305,132184 +38307,135652 +38308,134655 +38309,133276 +38311,132585 +38316,134694 +38317,132937 +38318,132937 +38319,132510 +38320,132554 +38321,132742 +38327,132636 +38328,132945 +38329,133137 +38330,133137 +38331,132612 +38332,135008 +38333,132634 +38334,132511 +38335,132612 +38336,132951 +38337,132551 +38338,133135 +38339,134664 +38340,135045 +38341,135468 +38343,133073 +38344,132503 +38345,135154 +38346,134336 +38347,135222 +38348,134123 +38349,135145 +38350,132605 +38351,132564 +38352,132723 +38353,133142 +38354,132948 +38355,135039 +38356,134594 +38357,132502 +38358,132609 +38359,132629 +38360,132953 +38361,133071 +38362,134678 +38363,135054 +38365,132547 +38366,135465 +38367,135615 +38368,135989 +38369,134236 +38370,135430 +38371,134588 +38384,133127 +38387,133041 +38389,136063 +38393,132939 +38404,132717 +38411,132395 +38412,134955 +38413,133040 +38414,132609 +38415,132512 +38416,132545 +38417,133135 +38418,133491 +38419,135542 +38422,132585 +38423,133479 +38426,135005 +38428,134523 +38429,133907 +38430,132820 +38433,133874 +38437,132539 +38441,132958 +38442,134598 +38444,132646 +38445,135060 +38447,132736 +38450,132938 +38451,135060 +38453,132736 +38457,135638 +38461,135354 +38471,134382 +38474,134389 +38475,134385 +38476,134386 +38477,134388 +38478,134383 +38479,134379 +38481,132505 +38482,134638 +38483,134638 +38484,134659 +38485,134659 +38486,135058 +38489,133365 +38491,132743 +38496,132949 +38499,133506 +38500,133506 +38502,135814 +38503,133132 +38508,133124 +38509,133124 +38510,133124 +38512,132743 +38513,135032 +38514,134666 +38515,134667 +38516,132504 +38517,132585 +38518,134588 +38519,134581 +38520,133770 +38521,133774 +38522,135150 +38523,135163 +38524,132944 +38525,132522 +38526,133041 +38527,133042 +38528,133042 +38529,135163 +38530,135179 +38531,133774 +38532,134667 +38536,132962 +38538,133133 +38539,132500 +38540,132960 +38541,133388 +38542,132499 +38543,133302 +38544,133280 +38545,132513 +38546,133793 +38547,133758 +38548,133758 +38549,134888 +38550,135425 +38552,135595 +38553,132717 +38555,133862 +38556,134909 +38559,132626 +38560,135268 +38561,133147 +38562,132394 +38563,135474 +38564,132490 +38569,135473 +38570,132115 +38571,133606 +38572,133607 +38575,132392 +38576,132392 +38589,133767 +38590,134541 +38591,133122 +38593,132739 +38596,132645 +38601,135667 +38602,134296 +38603,135145 +38604,132400 +38605,132623 +38606,135359 +38607,134542 +38608,132634 +38609,132837 +38610,132838 +38611,132839 +38612,132840 +38613,132841 +38614,132843 +38615,132844 +38616,132845 +38617,132846 +38618,132847 +38619,132848 +38620,132849 +38621,132851 +38622,132852 +38623,136050 +38624,132492 +38625,132606 +38626,132945 +38627,132549 +38628,133141 +38629,134667 +38630,135040 +38631,133978 +38632,135503 +38633,135639 +38634,133990 +38635,135412 +38636,133490 +38637,132492 +38638,132613 +38639,132637 +38640,132962 +38641,133147 +38642,135274 +38643,134696 +38644,134567 +38645,134569 +38646,135040 +38647,134573 +38648,134561 +38649,132551 +38650,132551 +38651,135531 +38652,134207 +38654,132609 +38655,133231 +38656,133226 +38657,132559 +38658,132498 +38659,133712 +38660,133135 +38661,132957 +38662,135008 +38663,135008 +38664,135054 +38665,133758 +38666,135145 +38667,133717 +38668,135005 +38671,132780 +38672,132554 +38673,134130 +38674,133379 +38675,132383 +38676,132383 +38677,132385 +38679,132394 +38680,132394 +38681,133489 +38682,132400 +38683,135302 +38684,132606 +38685,132964 +38686,132745 +38687,132518 +38688,132551 +38689,132551 +38690,134688 +38691,132745 +38692,132949 +38693,132606 +38694,133078 +38695,132963 +38696,134682 +38697,133124 +38698,132960 +38699,133124 +38700,132638 +38701,132500 +38702,132544 +38703,132951 +38704,132745 +38705,132963 +38706,132963 +38711,132584 +38712,134294 +38713,135223 +38714,132539 +38718,132938 +38720,134734 +38721,134779 +38722,134876 +38723,132433 +38724,135667 +38725,132435 +38726,133484 +38727,135615 +38728,134951 +38729,135464 +38733,134532 +38734,135145 +38735,135374 +38736,132520 +38737,132551 +38738,133163 +38739,134588 +38740,132660 +38741,135032 +38742,135314 +38743,134258 +38744,134259 +38745,134260 +38746,134261 +38747,134263 +38748,134262 +38749,134450 +38750,134447 +38751,134451 +38752,134448 +38753,134452 +38754,134449 +38756,133803 +38757,134424 +38758,134423 +38759,134425 +38760,134426 +38761,133615 +38762,133619 +38763,133618 +38764,133616 +38765,133620 +38766,134192 +38767,134839 +38771,132740 +38775,134644 +38777,132738 +38780,134667 +38781,134645 +38782,134640 +38783,132518 +38784,132585 +38785,134588 +38786,134588 +38787,134637 +38790,132586 +38791,132586 +38792,132583 +38794,133770 +38795,132399 +38796,133039 +38797,132406 +38798,133502 +38799,135017 +38803,132960 +38804,134593 +38806,132562 +38807,135669 +38808,135057 +38809,134094 +38811,134685 +38813,133769 +38814,135179 +38823,133042 +38824,135177 +38825,132944 +38826,133050 +38827,133509 +38828,132937 +38830,135054 +38831,132671 +38832,132718 +38833,132409 +38834,135612 +38835,135612 +38836,135623 +38837,134889 +38838,134611 +38839,133377 +38840,132645 +38843,132603 +38844,132944 +38845,132550 +38846,133126 +38847,134661 +38848,135054 +38849,132491 +38850,134661 +38851,132502 +38852,133749 +38853,135669 +38854,133510 +38855,132639 +38856,132639 +38857,132562 +38858,132957 +38859,133135 +38860,134645 +38861,135037 +38862,132505 +38863,135351 +38864,135337 +38865,132634 +38866,132605 +38867,132946 +38868,132554 +38869,133502 +38870,132506 +38871,134660 +38872,135049 +38873,132506 +38874,136067 +38875,132609 +38876,132751 +38877,132523 +38879,132957 +38880,132584 +38881,133076 +38883,134691 +38893,133920 +38894,133921 +38895,133923 +38896,133923 +38897,133922 +38898,133924 +38899,133925 +38900,133925 +38901,133927 +38902,133926 +38903,132653 +38904,132643 +38905,132511 +38906,132493 +38907,132953 +38908,132953 +38909,132953 +38910,132953 +38911,132953 +38912,132648 +38913,135056 +38914,135056 +38915,135056 +38916,132541 +38917,132686 +38918,134634 +38919,134634 +38920,132653 +38921,132606 +38922,132609 +38923,132610 +38924,132653 +38925,132653 +38926,132642 +38927,134596 +38928,134596 +38929,133136 +38930,135273 +38931,133136 +38932,133132 +38933,133132 +38934,133132 +38935,134596 +38936,133132 +38940,135054 +38941,132686 +38942,134634 +38943,132653 +38944,135056 +38945,132653 +38946,132519 +38947,132653 +38948,135056 +38949,135056 +38950,135056 +38951,135056 +38952,132953 +38953,132953 +38954,132953 +38955,132961 +38956,133129 +38957,134603 +38958,134608 +38962,132653 +38963,135056 +38964,132649 +38965,132961 +38966,132961 +38967,132961 +38968,132961 +38969,132961 +38970,132951 +38971,132951 +38972,133770 +38973,133762 +38974,132502 +38975,132515 +38976,133770 +38977,133768 +38978,132635 +38979,132938 +38980,134660 +38981,132635 +38982,132938 +38983,132551 +38984,132638 +38985,134659 +38986,132544 +38987,132544 +38988,132938 +38989,134628 +38991,134628 +38992,132956 +38993,132562 +38994,133710 +38995,135224 +38996,135475 +38997,132405 +38998,134333 +38999,133716 +39000,134139 +39001,133488 +39002,135543 +39003,135314 +39004,133483 +39005,135610 +39006,135333 +39007,135493 +39008,132541 +39009,132723 +39010,134587 +39011,135049 +39012,133161 +39013,132434 +39014,133709 +39021,135274 +39023,134075 +39024,135418 +39025,135412 +39028,134537 +39029,135672 +39030,135476 +39031,132962 +39032,133132 +39033,134599 +39034,135043 +39035,132718 +39037,134120 +39039,135368 +39040,135504 +39041,134907 +39042,133485 +39043,132585 +39044,134956 +39045,135233 +39048,135673 +39049,135673 +39050,135182 +39051,132629 +39052,134604 +39053,135353 +39054,135372 +39055,134527 +39056,133050 +39057,135466 +39058,135533 +39059,135540 +39060,132738 +39061,134680 +39062,132958 +39063,132958 +39064,132956 +39065,135034 +39066,132966 +39067,132966 +39068,132966 +39069,132616 +39070,133386 +39071,133423 +39072,132951 +39073,132955 +39074,135663 +39075,133765 +39076,135060 +39077,132490 +39078,133758 +39079,133066 +39080,135032 +39081,135363 +39082,132666 +39083,134696 +39084,135617 +39085,135474 +39086,135474 +39087,135617 +39088,132611 +39089,132561 +39090,132951 +39091,133134 +39092,135010 +39093,132514 +39094,135049 +39095,132609 +39096,132498 +39097,132542 +39098,133152 +39099,134592 +39100,132403 +39101,135661 +39102,133054 +39103,133131 +39104,135464 +39105,135223 +39107,135624 +39114,134033 +39115,134035 +39116,134030 +39117,134031 +39118,134034 +39119,134032 +39120,133403 +39121,133404 +39122,133398 +39123,133399 +39124,133405 +39125,133406 +39126,133397 +39127,133407 +39128,133401 +39129,133402 +39143,133140 +39144,133141 +39145,133928 +39146,135145 +39147,135145 +39148,135145 +39149,135145 +39150,135145 +39151,135145 +39153,135145 +39154,135145 +39159,135145 +39160,133276 +39162,133327 +39165,132635 +39166,132635 +39167,133152 +39168,133152 +39169,132609 +39170,132609 +39171,134586 +39172,135157 +39173,135503 +39174,132492 +39175,135493 +39177,132612 +39178,132874 +39179,132879 +39186,133803 +39187,132783 +39189,134227 +39192,135253 +39193,135254 +39194,133621 +39195,132854 +39197,132882 +39198,132881 +39199,132861 +39200,132860 +39201,132885 +39202,134097 +39203,134099 +39204,134098 +39205,134100 +39208,135468 +39209,133324 +39210,133325 +39211,133322 +39212,133323 +39213,132588 +39214,133326 +39215,135642 +39216,132546 +39217,132964 +39218,135652 +39219,135273 +39220,135273 +39221,133769 +39222,132542 +39223,132549 +39224,135054 +39225,135044 +39226,135150 +39227,135181 +39228,135279 +39229,135500 +39230,135494 +39231,135500 +39232,135497 +39233,133144 +39234,132617 +39235,133376 +39236,132536 +39237,132559 +39238,133126 +39239,132239 +39241,133071 +39242,133071 +39243,132759 +39244,132616 +39246,135539 +39247,135060 +39248,132506 +39249,132964 +39250,132548 +39251,133123 +39252,133123 +39253,134626 +39254,135271 +39255,133052 +39256,132290 +39257,135145 +39258,135131 +39259,132500 +39260,132603 +39261,132401 +39262,132629 +39263,132401 +39264,132547 +39265,132960 +39266,134661 +39267,132401 +39268,135046 +39269,133119 +39270,132768 +39271,133768 +39272,132768 +39273,132768 +39274,132768 +39275,132768 +39276,132768 +39277,133770 +39278,133516 +39279,133757 +39280,135140 +39281,135140 +39282,135642 +39283,134952 +39284,135639 +39285,135665 +39286,132659 +39287,135646 +39288,132629 +39289,135593 +39290,135593 +39291,132409 +39292,132437 +39293,135641 +39294,135641 +39295,135225 +39296,135171 +39297,132945 +39298,132945 +39299,135593 +39300,133039 +39301,133039 +39302,132490 +39303,132609 +39304,132738 +39305,132536 +39306,132953 +39307,134672 +39308,135054 +39309,133073 +39310,135411 +39311,133479 +39318,135025 +39319,132515 +39320,132952 +39321,134598 +39322,135040 +39324,133485 +39325,134538 +39326,133041 +39327,135593 +39328,134294 +39329,135328 +39330,134155 +39331,135493 +39332,134113 +39333,135543 +39334,132543 +39335,132950 +39336,134600 +39337,135010 +39338,135049 +39339,134333 +39340,132507 +39343,135359 +39344,133775 +39348,134584 +39350,132617 +39351,132395 +39352,132624 +39353,134583 +39354,132492 +39355,132543 +39356,135657 +39357,135657 +39358,133483 +39359,135321 +39360,132618 +39361,134655 +39363,132512 +39364,133076 +39365,133147 +39366,133140 +39367,133157 +39368,132549 +39369,133121 +39370,133069 +39371,133768 +39372,133276 +39374,135373 +39376,133043 +39377,132739 +39378,132613 +39379,135040 +39380,132515 +39381,132963 +39382,132963 +39383,132535 +39384,132535 +39385,134692 +39386,133127 +39387,132423 +39389,133514 +39390,134089 +39391,133768 +39392,135176 +39393,135128 +39394,133491 +39395,132505 +39396,132560 +39397,132606 +39398,132954 +39399,134685 +39400,132673 +39401,132673 +39402,132673 +39403,135040 +39405,132767 +39406,132425 +39407,134951 +39408,133052 +39409,132743 +39410,132502 +39411,132608 +39412,132956 +39413,132562 +39414,132562 +39415,134697 +39416,135055 +39417,133076 +39418,133076 +39419,135640 +39420,134542 +39421,132436 +39422,132872 +39423,135313 +39424,132886 +39425,135652 +39426,134298 +39427,133515 +39428,135417 +39429,135148 +39430,135469 +39431,135504 +39432,133325 +39433,135610 +39434,135531 +39435,135619 +39436,132511 +39438,132760 +39439,134706 +39440,132628 +39441,132946 +39442,132550 +39443,134665 +39444,135040 +39445,135047 +39446,134366 +39447,132503 +39448,132863 +39449,135327 +39450,132402 +39451,132554 +39452,132898 +39453,132899 +39454,132900 +39455,133692 +39456,133691 +39457,133656 +39458,133657 +39459,133659 +39460,132910 +39461,132897 +39462,132909 +39463,133658 +39464,133153 +39465,133127 +39466,132541 +39467,134640 +39468,132647 +39469,132510 +39470,135037 +39471,133142 +39472,134337 +39473,134608 +39474,135350 +39475,134608 +39476,134608 +39477,134608 +39478,134608 +39479,134608 +39480,133152 +39481,132718 +39482,133069 +39483,133160 +39484,133117 +39485,132615 +39486,133226 +39487,133231 +39488,133483 +39489,133224 +39490,133225 +39491,135321 +39492,134605 +39493,132951 +39494,135014 +39495,132549 +39496,132549 +39497,132506 +39498,135049 +39499,133145 +39505,133738 +39506,132608 +39507,134599 +39508,132691 +39509,132691 +39510,135032 +39511,133135 +39512,135342 +39513,132510 +39514,132742 +39515,132939 +39517,132561 +39518,134626 +39520,135049 +39521,132768 +39524,132722 +39526,133513 +39527,133513 +39530,135643 +39531,135314 +39539,132740 +39540,132963 +39541,133124 +39542,134693 +39543,135053 +39544,132503 +39545,132585 +39546,132585 +39547,132618 +39548,135260 +39549,135261 +39550,135318 +39554,135319 +39555,135320 +39556,135332 +39557,135332 +39558,135332 +39559,135333 +39560,135334 +39563,132442 +39564,132442 +39565,132442 +39566,132442 +39567,132442 +39568,132442 +39569,132442 +39570,135332 +39571,135334 +39572,135333 +39573,135318 +39574,135319 +39575,135320 +39576,132438 +39577,132439 +39578,132440 +39579,133517 +39580,133518 +39581,133519 +39582,133507 +39583,133508 +39584,133509 +39588,132511 +39593,135005 +39595,132539 +39598,135005 +39600,132539 +39602,133151 +39603,132435 +39604,135313 +39605,134123 +39606,134123 +39607,135493 +39608,132397 +39609,135615 +39610,133730 +39611,133486 +39612,132490 +39613,132751 +39614,132956 +39615,132550 +39616,134683 +39617,134683 +39618,132613 +39619,133078 +39620,135055 +39621,133564 +39622,133694 +39623,132537 +39625,135275 +39629,135145 +39631,134945 +39632,132433 +39633,133510 +39635,136095 +39636,136049 +39637,132152 +39638,136022 +39639,136074 +39640,132121 +39641,132741 +39642,135931 +39643,132497 +39644,132962 +39645,135730 +39646,132590 +39647,134687 +39648,132618 +39649,133101 +39650,133744 +39651,135054 +39652,136060 +39653,132254 +39654,132257 +39655,132745 +39657,132745 +39658,132745 +39659,132751 +39660,132750 +39661,132749 +39664,133076 +39665,133076 +39666,134661 +39669,132543 +39670,132724 +39671,133077 +39673,135145 +39678,135412 +39679,135145 +39680,133298 +39681,133345 +39682,133298 +39683,133772 +39684,133772 +39685,133770 +39686,133361 +39689,133291 +39690,133768 +39691,132537 +39692,132537 +39693,132537 +39694,132573 +39695,132544 +39696,132549 +39697,132556 +39698,132556 +39699,132583 +39700,132504 +39701,132499 +39702,132515 +39703,132508 +39704,134586 +39705,132515 +39706,132544 +39707,132851 +39708,132508 +39709,132583 +39715,134044 +39716,132835 +39717,134043 +39718,134041 +39719,134042 +39720,134040 +39721,134042 +39722,134044 +39723,134038 +39724,134039 +39725,134036 +39726,134037 +39727,134926 +39728,134924 +39729,134921 +39730,134922 +39731,134925 +39732,134923 +39735,135005 +39736,132505 +39737,132560 +39738,134581 +39739,132397 +39740,135425 +39741,135582 +39742,135576 +39743,135469 +39744,132954 +39745,135591 +39746,132674 +39747,134660 +39748,135148 +39749,132415 +39750,133485 +39751,135369 +39752,135334 +39753,135157 +39756,135005 +39757,135469 +39758,135365 +39759,135612 +39769,135275 +39773,135530 +39774,133482 +39775,135503 +39776,133723 +39777,132562 +39778,132510 +39779,132952 +39780,134598 +39781,135012 +39782,135040 +39783,133132 +39784,132506 +39785,132605 +39786,132513 +39787,132612 +39788,132634 +39789,132543 +39790,132945 +39791,134596 +39792,134596 +39793,133144 +39794,135045 +39796,135731 +39800,132759 +39801,132616 +39802,135060 +39803,132506 +39804,132964 +39805,132548 +39806,133123 +39807,134626 +39808,132607 +39809,132491 +39810,135008 +39811,133135 +39812,132543 +39813,132609 +39814,132957 +39815,135040 +39816,132626 +39817,132639 +39818,134261 +39823,135015 +39824,135015 +39826,136116 +39827,136116 +39830,133506 +39831,2245099 +39832,133057 +39833,133514 +39834,133515 +39835,133506 +39836,133048 +39837,133509 +39838,133066 +39839,135814 +39840,135814 +39841,135814 +39842,133066 +39843,135368 +39844,135377 +39845,133047 +39846,133502 +39847,133522 +39848,134067 +39849,132432 +39850,132418 +39854,133124 +39857,133286 +39859,135593 +39860,136039 +39861,133047 +39862,133485 +39863,134333 +39864,135542 +39865,132738 +39866,132960 +39867,135054 +39868,132500 +39869,132584 +39870,134695 +39871,132618 +39872,133076 +39873,133076 +39874,134096 +39875,133491 +39876,135475 +39877,134136 +39878,135138 +39882,132506 +39883,132554 +39884,132951 +39885,132680 +39886,134604 +39887,133134 +39888,134711 +39889,133153 +39890,135411 +39891,133168 +39892,135650 +39894,135127 +39895,132491 +39896,132563 +39897,132957 +39898,134638 +39899,132566 +39900,135037 +39901,132392 +39902,132392 +39903,132919 +39904,132919 +39905,132919 +39906,135335 +39910,133250 +39911,133251 +39914,133247 +39915,133236 +39916,133275 +39917,133274 +39918,133262 +39920,133246 +39921,133243 +39922,133253 +39923,133237 +39924,133273 +39925,133242 +39926,133252 +39927,133269 +39928,133268 +39929,133256 +39930,133272 +39931,133259 +39932,133258 +39933,133255 +39938,133241 +39939,134473 +39940,134473 +39941,133133 +39942,133152 +39944,135624 +39945,132643 +39946,132643 +39947,133280 +39948,133506 +39949,135167 +39950,132953 +39951,132716 +39952,134587 +39955,133494 +39957,135379 +39958,132456 +39959,133124 +39960,132590 +39961,133124 +39962,133707 +39963,132403 +39964,132452 +39965,132449 +39966,132399 +39967,133124 +39968,132617 +39969,132403 +39970,132535 +39974,135637 +39975,135493 +39976,132673 +39977,135008 +39978,135641 +39979,132631 +39980,132549 +39981,132964 +39982,134667 +39983,132520 +39984,135734 +39985,135033 +39986,133111 +39987,135157 +39988,132617 +39989,132402 +39990,135641 +39991,132330 +39992,132330 +39993,135641 +39994,135646 +39995,135651 +39996,132410 +39997,132330 +39998,132410 +39999,132330 +40000,135646 +40001,132400 +40002,132330 +40003,135654 +40004,132402 +40005,132330 +40018,134584 +40034,133425 +40035,134326 +40036,133445 +40037,132619 +40038,133318 +40039,134906 +40040,132300 +40041,135887 +40042,134470 +40043,136233 +40044,133396 +40045,134932 +40046,133397 +40047,135980 +40048,136061 +40049,134907 +40050,134755 +40051,134115 +40053,134425 +40054,134767 +40055,132483 +40056,132716 +40057,135050 +40058,133076 +40059,132953 +40060,132453 +40065,132395 +40066,132453 +40074,135145 +40075,135145 +40076,133438 +40080,135733 +40081,135880 +40082,135880 +40083,135959 +40084,135959 +40085,135944 +40086,135982 +40087,135982 +40088,134942 +40089,132539 +40090,132506 +40091,132606 +40092,134294 +40093,134294 +40094,135872 +40095,135872 +40096,136210 +40097,136210 +40098,132147 +40099,135884 +40100,134123 +40101,134122 +40102,134120 +40103,135986 +40104,135885 +40105,135977 +40106,135939 +40107,135970 +40108,135967 +40109,135910 +40110,135911 +40111,135906 +40112,135908 +40113,135131 +40114,135131 +40115,135131 +40116,132227 +40117,132232 +40121,134923 +40122,135164 +40127,135575 +40129,134663 +40130,133772 +40131,135465 +40132,135476 +40133,135476 +40134,135469 +40135,135475 +40136,135475 +40137,135531 +40138,135531 +40139,135475 +40140,135465 +40141,134113 +40142,135469 +40143,134123 +40144,135468 +40145,135469 +40146,133749 +40147,132547 +40148,132919 +40149,132919 +40150,132919 +40151,132919 +40152,133111 +40153,133111 +40154,132491 +40155,135470 +40156,135468 +40157,133485 +40158,135660 +40159,133482 +40160,132117 +40161,133870 +40162,133870 +40163,135894 +40164,132544 +40165,133072 +40167,134583 +40168,135593 +40169,132938 +40170,136097 +40171,132965 +40172,134296 +40173,134296 +40174,134294 +40175,136067 +40176,132290 +40177,134298 +40178,132964 +40179,133723 +40180,132942 +40181,132945 +40182,135658 +40183,132547 +40184,134504 +40185,134502 +40186,135656 +40187,135656 +40189,132414 +40190,132414 +40191,132392 +40192,135650 +40193,135651 +40194,135419 +40195,135660 +40199,133578 +40200,133576 +40213,133694 +40214,135410 +40238,133143 +40247,134379 +40248,133866 +40252,132547 +40253,132960 +40254,132960 +40255,132768 +40256,134661 +40257,135046 +40258,132603 +40261,134060 +40270,135006 +40272,135005 +40273,132539 +40274,132539 +40276,135145 +40286,133133 +40292,133752 +40293,135450 +40294,132434 +40295,132435 +40296,132411 +40297,132435 +40298,132403 +40299,132400 +40300,132434 +40301,135145 +40302,132402 +40303,135054 +40304,132872 +40311,135145 +40312,134596 +40313,132415 +40314,132648 +40315,132649 +40316,133640 +40317,135667 +40318,135411 +40319,135665 +40320,132737 +40321,132660 +40322,135151 +40323,134643 +40324,135175 +40325,132960 +40326,133144 +40327,133119 +40329,133072 +40330,132452 +40331,133512 +40332,133758 +40333,133758 +40334,133771 +40335,134639 +40336,135537 +40337,134408 +40338,134406 +40339,135056 +40340,135038 +40341,135139 +40342,135671 +40343,135611 +40344,135496 +40345,132373 +40346,135628 +40347,135648 +40348,135663 +40349,135368 +40350,132963 +40351,133474 +40352,132547 +40353,135191 +40354,135181 +40355,135185 +40356,135145 +40357,135187 +40358,135192 +40359,135181 +40365,135566 +40366,135566 +40367,135131 +40368,135565 +40369,135191 +40370,135567 +40371,135179 +40372,132775 +40373,132635 +40374,132635 +40378,132781 +40379,134131 +40380,132401 +40381,135582 +40382,135126 +40383,133047 +40384,133525 +40385,133525 +40386,133858 +40387,132497 +40388,132776 +40389,135665 +40390,132609 +40391,134686 +40392,135291 +40393,134336 +40394,134335 +40395,132360 +40396,132365 +40397,136080 +40398,135917 +40399,136050 +40400,132121 +40401,135124 +40402,134446 +40403,135733 +40404,135824 +40405,135843 +40406,136192 +40407,133077 +40408,133135 +40409,135128 +40410,132396 +40411,135662 +40412,135662 +40413,133314 +40414,133316 +40415,133327 +40417,133136 +40420,135358 +40421,135358 +40422,133041 +40423,132393 +40424,132401 +40426,132935 +40427,132936 +40428,136097 +40429,132965 +40430,134296 +40431,134296 +40432,132941 +40433,134294 +40434,134294 +40435,135145 +40436,132939 +40437,135145 +40438,135145 +40444,132939 +40445,132637 +40446,132959 +40447,134667 +40448,132637 +40449,132686 +40450,132959 +40451,133117 +40452,134667 +40453,135045 +40454,134667 +40455,132684 +40456,132951 +40457,132767 +40458,134599 +40459,135056 +40460,132637 +40461,132959 +40462,133117 +40463,134667 +40465,132737 +40466,132962 +40467,134681 +40468,132684 +40469,132951 +40470,134599 +40471,132637 +40473,132959 +40474,132637 +40475,135032 +40478,134667 +40479,132951 +40480,132767 +40481,134599 +40482,132684 +40483,134599 +40484,132737 +40485,132962 +40486,133160 +40487,134681 +40488,135060 +40489,132612 +40490,132612 +40491,132612 +40492,132601 +40493,132614 +40494,132601 +40495,132601 +40496,132618 +40497,132601 +40498,132548 +40499,132585 +40500,132579 +40501,132562 +40502,132539 +40503,132548 +40504,132587 +40505,132548 +40506,132548 +40507,132497 +40508,132492 +40509,132497 +40510,132515 +40511,132515 +40512,132511 +40513,132511 +40514,132511 +40515,132516 +40516,132511 +40518,133404 +40519,133397 +40520,135225 +40521,133580 +40522,133577 +40523,133579 +40524,133586 +40525,133582 +40526,133584 +40527,133583 +40537,133127 +40538,134626 +40539,132948 +40541,133009 +40542,133011 +40543,133593 +40544,133010 +40545,133023 +40546,133023 +40547,133023 +40548,133008 +40549,133004 +40550,133016 +40551,133019 +40552,133012 +40553,133013 +40554,133036 +40555,133035 +40556,133032 +40557,133037 +40558,133017 +40559,133019 +40561,132751 +40562,134584 +40563,135131 +40564,135469 +40565,133739 +40566,133694 +40583,136213 +40584,132660 +40585,132745 +40586,133146 +40587,135005 +40588,135005 +40592,133770 +40593,134908 +40605,135022 +40606,132780 +40607,135592 +40608,135592 +40609,135133 +40610,135133 +40611,135129 +40612,135467 +40614,135672 +40615,135129 +40616,135129 +40617,135467 +40618,135642 +40620,135643 +40621,134076 +40622,135050 +40623,132633 +40624,132945 +40625,133077 +40626,134667 +40627,135060 +40628,135060 +40629,132615 +40630,132509 +40631,132587 +40632,134390 +40633,134391 +40634,134392 +40635,134393 +40636,134394 +40637,133211 +40638,133121 +40639,133117 +40640,133117 +40641,135045 +40642,135045 +40643,135060 +40644,132767 +40645,135056 +40646,133117 +40647,132516 +40648,133766 +40649,135180 +40650,135224 +40651,135045 +40652,132808 +40653,134019 +40654,135271 +40655,135271 +40656,135271 +40657,133489 +40658,133489 +40659,133489 +40660,133489 +40661,133489 +40662,133489 +40663,135131 +40664,135131 +40665,135131 +40666,135131 +40667,135131 +40668,135131 +40669,135131 +40670,135131 +40671,135131 +40672,135131 +40673,135131 +40674,135131 +40675,135131 +40676,135131 +40677,135131 +40678,135131 +40679,136149 +40680,133365 +40681,136172 +40682,133160 +40683,133160 +40684,135056 +40685,133485 +40686,135280 +40687,132842 +40688,132740 +40689,132393 +40690,135316 +40691,135418 +40692,134597 +40693,132646 +40694,132807 +40695,134050 +40696,134051 +40697,134049 +40698,132647 +40699,134052 +40700,132541 +40701,132601 +40702,132939 +40703,133153 +40704,132953 +40705,132767 +40706,132542 +40707,134644 +40708,132718 +40709,132609 +40710,133049 +40711,135650 +40712,132653 +40713,132665 +40714,133706 +40715,135537 +40716,135131 +40717,132609 +40718,132722 +40719,134638 +40720,132540 +40721,133072 +40722,132939 +40723,132539 +40724,132514 +40725,133123 +40726,132952 +40727,132647 +40728,134600 +40729,135049 +40730,132605 +40731,132634 +40732,132955 +40733,132767 +40734,132564 +40735,134605 +40736,135049 +40737,132506 +40738,132612 +40739,132626 +40740,132943 +40741,132550 +40742,133077 +40743,132401 +40744,135052 +40745,132518 +40746,132739 +40747,132962 +40748,132511 +40749,133127 +40750,135145 +40751,135145 +40752,135131 +40753,135884 +40754,135637 +40755,135131 +40756,134692 +40757,135057 +40758,132549 +40759,132613 +40760,135131 +40761,132516 +40762,132723 +40763,132962 +40764,134691 +40765,132590 +40766,132613 +40767,132502 +40768,132608 +40769,132635 +40770,132960 +40771,133070 +40772,134697 +40773,135055 +40774,132562 +40775,133754 +40776,133770 +40777,133772 +40778,135131 +40779,134953 +40780,135131 +40781,134953 +40782,134948 +40783,134542 +40784,135131 +40785,135471 +40786,133729 +40787,135311 +40788,135313 +40789,135643 +40790,133483 +40791,133482 +40792,133477 +40793,135415 +40794,135415 +40795,135413 +40796,135328 +40797,135415 +40798,135416 +40799,135156 +40800,135131 +40801,136097 +40802,132965 +40803,134296 +40804,132394 +40805,132408 +40806,132393 +40807,135576 +40808,135591 +40809,135128 +40810,135530 +40811,135542 +40812,135612 +40813,135615 +40814,135616 +40815,135465 +40816,135469 +40817,135311 +40818,135650 +40819,133491 +40820,133071 +40821,135145 +40822,133485 +40823,133038 +40824,133055 +40825,135369 +40827,133071 +40828,135131 +40829,135482 +40830,132962 +40831,132959 +40832,132959 +40833,134667 +40834,134053 +40835,135277 +40836,135184 +40837,135144 +40838,135182 +40839,135144 +40840,135144 +40841,133946 +40842,135144 +40844,133912 +40845,135145 +40847,135191 +40848,135189 +40850,134525 +40851,135366 +40852,132831 +40853,132830 +40854,135373 +40855,135387 +40856,135389 +40857,135414 +40858,134379 +40859,135506 +40860,134973 +40861,134977 +40862,134975 +40863,135277 +40864,134974 +40865,134974 +40866,134971 +40867,134976 +40869,132737 +40870,132660 +40871,132401 +40872,134294 +40873,134294 +40874,134294 +40875,134294 +40876,135139 +40877,135175 +40878,134381 +40879,135650 +40880,135644 +40881,135644 +40883,132759 +40884,132717 +40885,132717 +40886,132939 +40888,134889 +40889,135131 +40890,134951 +40891,134951 +40892,134951 +40893,134951 +40894,134951 +40895,134951 +40896,134951 +40897,133529 +40898,133063 +40899,135193 +40900,132448 +40901,134975 +40902,135626 +40903,135411 +40904,133525 +40905,133136 +40906,135492 +40907,135492 +40908,135505 +40909,135566 +40910,135566 +40911,135566 +40912,135368 +40913,134639 +40914,132401 +40915,135056 +40916,133771 +40917,133771 +40918,133758 +40919,135671 +40920,135644 +40921,132392 +40922,132447 +40923,133526 +40924,134209 +40925,135126 +40926,135665 +40927,135665 +40928,135662 +40929,135566 +40930,135566 +40931,135662 +40932,135662 +40933,135368 +40934,135676 +40936,132859 +40937,135675 +40938,132434 +40939,132400 +40940,132393 +40941,135582 +40942,135662 +40943,135662 +40944,135662 +40945,135662 +40946,134430 +40947,135662 +40948,134044 +40950,132736 +40952,135060 +40953,135358 +40954,132393 +40955,132401 +40956,133516 +40957,133483 +40958,133041 +40959,133483 +40960,132394 +40961,132400 +40962,135539 +40963,134446 +40964,135824 +40965,136192 +40966,136121 +40967,135593 +40968,135574 +40969,133516 +40970,136094 +40971,135271 +40972,135593 +40973,135665 +40974,135642 +40975,135144 +40976,134965 +40977,133516 +40978,133483 +40979,133041 +40980,135593 +40981,133041 +40982,135574 +40983,135593 +40984,135665 +40985,134663 +40986,132949 +40987,132551 +40988,134667 +40989,132949 +40990,132549 +40991,132504 +40992,134633 +40993,134633 +40994,134633 +40995,134637 +40996,132951 +40997,132560 +40998,132951 +40999,134663 +41004,134630 +41005,132559 +41006,132504 +41007,132495 +41011,133162 +41012,133162 +41013,133162 +41014,132949 +41015,133140 +41018,133131 +41019,133134 +41020,132949 +41021,132959 +41022,132959 +41024,132959 +41025,133160 +41026,132944 +41027,133160 +41028,133160 +41029,133074 +41030,132944 +41031,132939 +41032,132545 +41033,132545 +41034,132545 +41035,133160 +41036,132939 +41037,133074 +41038,132944 +41039,132743 +41040,132743 +41041,132492 +41042,132606 +41043,132716 +41044,132492 +41045,132606 +41046,135665 +41047,132686 +41048,132492 +41049,132606 +41050,133843 +41052,133617 +41053,133615 +41054,133619 +41055,133616 +41057,135145 +41059,133846 +41060,133844 +41061,133847 +41062,133842 +41063,132767 +41064,132767 +41065,133117 +41066,135369 +41067,135741 +41068,133117 +41069,133119 +41070,135131 +41071,132392 +41072,135325 +41073,135145 +41074,135145 +41075,133469 +41080,132500 +41081,134312 +41082,132401 +41083,135358 +41084,132393 +41085,132393 +41086,135539 +41087,133041 +41088,135574 +41089,135271 +41090,135358 +41091,135665 +41092,135662 +41093,133729 +41094,132787 +41095,135358 +41096,134965 +41097,135358 +41098,135358 +41106,132722 +41107,132722 +41111,135036 +41117,134957 +41118,135318 +41119,134338 +41120,134342 +41121,134343 +41122,132926 +41123,132962 +41124,136051 +41125,133132 +41126,134599 +41127,135043 +41128,132718 +41129,132949 +41130,133132 +41131,134599 +41132,135033 +41133,132740 +41134,132963 +41135,133124 +41136,134693 +41137,135053 +41138,132962 +41139,133132 +41140,134599 +41141,134338 +41142,135043 +41143,132718 +41144,132633 +41145,132945 +41146,132945 +41147,133077 +41148,134667 +41149,135060 +41150,132945 +41151,132949 +41152,133132 +41153,132928 +41154,132949 +41155,134599 +41156,135033 +41157,132684 +41158,134231 +41159,132506 +41160,132542 +41161,132606 +41162,132506 +41163,132606 +41164,132539 +41165,132503 +41166,132618 +41167,132585 +41168,134230 +41169,134514 +41170,134015 +41171,133895 +41172,133309 +41173,133309 +41174,133854 +41175,134111 +41176,134107 +41177,134105 +41178,135735 +41179,135344 +41180,135427 +41181,135427 +41182,134587 +41183,132740 +41184,133124 +41185,134693 +41186,135053 +41187,135050 +41188,133076 +41189,132953 +41190,132716 +41191,134587 +41192,136032 +41193,133802 +41194,133075 +41195,133565 +41196,132633 +41197,132945 +41198,132945 +41199,133077 +41200,133077 +41201,134667 +41202,135060 +41203,132949 +41204,133132 +41205,134599 +41206,135033 +41207,132684 +41208,132962 +41209,133132 +41210,134599 +41211,135043 +41212,132718 +41213,132962 +41214,133132 +41215,134599 +41216,135043 +41217,132718 +41218,132949 +41219,133132 +41220,134599 +41221,135033 +41222,132684 +41223,134599 +41224,132740 +41225,132963 +41226,133124 +41227,134693 +41228,135053 +41229,132740 +41230,132963 +41231,134693 +41232,135053 +41233,133076 +41234,133076 +41235,132963 +41236,132584 +41237,132738 +41238,134586 +41239,133073 +41240,135059 +41241,132590 +41242,132963 +41243,134584 +41244,132738 +41245,135051 +41246,132963 +41247,132740 +41248,132963 +41249,134693 +41250,132615 +41251,132509 +41252,132506 +41253,132606 +41254,132506 +41255,132606 +41256,132503 +41257,132618 +41258,132585 +41259,132615 +41260,132509 +41261,132503 +41262,132618 +41263,132585 +41264,132506 +41265,132606 +41266,132615 +41267,132509 +41268,132587 +41269,132506 +41270,132606 +41271,132506 +41272,132606 +41273,132539 +41274,132503 +41275,132618 +41276,132585 +41277,132506 +41278,132542 +41279,133483 +41280,132395 +41281,132395 +41282,132395 +41283,132395 +41284,132503 +41285,132618 +41286,132585 +41287,132506 +41288,132606 +41289,132539 +41290,135493 +41291,135493 +41292,135493 +41293,135493 +41294,133483 +41295,133483 +41296,133483 +41297,133483 +41298,133483 +41299,134955 +41300,134955 +41301,134955 +41302,134955 +41303,134955 +41304,134955 +41305,134955 +41306,134955 +41307,135412 +41308,135412 +41309,135412 +41310,135412 +41311,135412 +41312,135412 +41313,135412 +41314,135412 +41315,132395 +41316,132395 +41317,132395 +41318,132395 +41319,132395 +41320,132395 +41321,132395 +41322,132395 +41323,132395 +41324,132395 +41325,132395 +41326,132395 +41327,132395 +41328,132395 +41329,135412 +41330,135412 +41331,135412 +41332,135412 +41333,135412 +41334,135145 +41335,135145 +41336,135145 +41337,135145 +41338,135145 +41339,135145 +41340,135145 +41341,135145 +41342,135145 +41343,135145 +41344,135145 +41345,135145 +41346,135145 +41347,135145 +41348,135145 +41349,135145 +41350,134465 +41351,132392 +41352,132392 +41353,132392 +41354,132392 +41355,132392 +41356,132392 +41357,132392 +41358,132392 +41359,135145 +41360,135145 +41361,133041 +41362,132393 +41363,135574 +41364,135593 +41365,135593 +41366,135662 +41367,135471 +41368,132393 +41369,135593 +41370,135593 +41371,133117 +41372,133121 +41373,132639 +41374,132639 +41375,132639 +41376,132639 +41377,132506 +41378,133832 +41379,132939 +41380,134946 +41381,132959 +41382,132962 +41383,132959 +41384,134599 +41385,132951 +41386,134599 +41387,134890 +41388,135319 +41389,135320 +41390,135319 +41391,133117 +41394,132723 +41395,134581 +41396,133757 +41397,132945 +41398,135595 +41399,134694 +41400,135057 +41401,132586 +41402,134584 +41403,135057 +41404,134694 +41405,132616 +41406,132586 +41407,133376 +41408,132637 +41409,132964 +41410,132637 +41411,134891 +41412,133722 +41413,134413 +41414,135384 +41415,135375 +41416,135384 +41417,135386 +41418,135271 +41419,135339 +41420,135669 +41421,135547 +41422,135537 +41423,135544 +41424,135546 +41425,133018 +41426,135623 +41427,135625 +41428,135388 +41429,135392 +41430,135631 +41431,135627 +41432,135628 +41433,135630 +41434,133018 +41435,135885 +41436,132638 +41437,132687 +41438,132625 +41439,132625 +41440,132961 +41441,133126 +41442,134693 +41443,132962 +41444,133132 +41445,134599 +41446,132718 +41447,133132 +41448,133392 +41449,133876 +41450,136150 +41451,132945 +41452,135596 +41453,134102 +41454,134132 +41455,133938 +41456,134542 +41457,134336 +41458,135473 +41459,135646 +41460,135325 +41461,133861 +41462,133076 +41463,133763 +41464,135131 +41465,134955 +41467,132635 +41468,132495 +41469,135313 +41470,134951 +41471,135661 +41472,135612 +41473,135613 +41474,132506 +41475,132506 +41476,132506 +41477,132509 +41478,132542 +41479,132539 +41480,132542 +41481,132587 +41482,132542 +41483,132539 +41484,132539 +41487,132392 +41488,134722 +41489,132382 +41490,135393 +41491,135394 +41492,135151 +41494,135651 +41495,135489 +41496,134952 +41499,132644 +41500,132768 +41501,134610 +41502,134610 +41503,132644 +41504,132644 +41505,132644 +41506,132644 +41507,132644 +41508,134630 +41509,132768 +41510,134630 +41511,132624 +41512,134667 +41513,134667 +41514,133074 +41515,133074 +41516,133072 +41517,132737 +41518,134679 +41519,133090 +41520,132722 +41521,134633 +41522,133072 +41523,133117 +41524,133117 +41525,132639 +41526,134633 +41527,134653 +41528,133117 +41529,133111 +41530,133111 +41531,132747 +41532,134693 +41533,136039 +41534,133111 +41535,133160 +41541,135645 +41542,136065 +41544,132950 +41545,132760 +41547,132188 +41548,135056 +41549,132611 +41550,132963 +41551,134632 +41552,132544 +41553,132544 +41554,135565 +41555,135189 +41556,132787 +41557,135189 +41558,133532 +41559,132442 +41560,132455 +41561,135380 +41562,135565 +41563,135381 +41564,135675 +41565,135790 +41566,134599 +41567,134599 +41568,134599 +41569,134628 +41570,135005 +41573,133151 +41574,134628 +41575,134628 +41576,134628 +41577,134628 +41578,134628 +41579,134628 +41580,132648 +41581,132742 +41582,134696 +41583,132741 +41589,132615 +41595,132643 +41596,132589 +41597,132442 +41598,135187 +41599,135223 +41600,135224 +41601,132273 +41602,133074 +41603,135616 +41604,134693 +41605,134696 +41606,134693 +41607,134662 +41608,135411 +41611,132454 +41612,133058 +41613,133058 +41614,132454 +41615,135411 +41616,132741 +41617,132639 +41618,135388 +41619,133040 +41620,135340 +41621,135418 +41622,135418 +41623,132433 +41624,132433 +41625,132433 +41626,132435 +41627,132413 +41628,132411 +41629,132412 +41630,132413 +41631,132436 +41632,133054 +41633,133054 +41634,133054 +41635,133054 +41636,132437 +41637,133527 +41638,133046 +41639,135462 +41640,133865 +41641,135614 +41644,132489 +41645,134951 +41646,134959 +41647,134948 +41648,134977 +41649,133149 +41652,135418 +41653,132395 +41654,134115 +41655,135161 +41656,133738 +41657,133402 +41658,133452 +41659,133823 +41660,133850 +41663,135563 +41667,135476 +41668,135476 +41669,135471 +41670,135467 +41671,135467 +41672,135471 +41673,132845 +41674,132846 +41675,132847 +41676,132848 +41677,132849 +41678,136050 +41679,132842 +41680,132852 +41681,132837 +41682,132839 +41683,132840 +41684,132841 +41685,132843 +41686,132844 +41691,132395 +41692,132395 +41693,132395 +41694,132395 +41695,133072 +41696,132395 +41697,132850 +41706,135050 +41707,133076 +41708,132401 +41709,132406 +41710,132953 +41712,132716 +41713,134587 +41714,132949 +41715,134599 +41716,135033 +41717,132684 +41718,135474 +41719,134160 +41720,134160 +41721,134165 +41722,134167 +41723,134162 +41724,134171 +41725,134175 +41726,134178 +41727,134180 +41728,134159 +41729,134164 +41730,134173 +41731,132089 +41732,132366 +41733,134174 +41734,134177 +41735,134179 +41736,135054 +41739,135274 +41740,135274 +41741,132745 +41742,132945 +41743,132606 +41744,133124 +41752,135131 +41753,135279 +41754,135615 +41755,134571 +41756,135048 +41757,132937 +41758,135043 +41765,133072 +41768,133516 +41769,133524 +41770,133047 +41771,133495 +41772,132443 +41773,135381 +41774,133516 +41775,135167 +41776,132457 +41777,133531 +41778,133483 +41779,135491 +41780,133515 +41781,135339 +41782,135374 +41783,133048 +41784,132458 +41785,133488 +41786,132450 +41787,135414 +41788,135183 +41789,135368 +41790,135361 +41791,135507 +41792,133117 +41793,133117 +41794,133132 +41795,132737 +41796,133132 +41797,133132 +41798,134695 +41799,134630 +41800,132746 +41801,133483 +41802,135056 +41803,132584 +41804,132956 +41805,132609 +41806,132554 +41807,132953 +41808,134606 +41809,133146 +41810,133147 +41811,133111 +41812,134585 +41813,132547 +41814,132600 +41815,135041 +41816,132941 +41817,132566 +41818,132502 +41819,135061 +41820,132952 +41821,132523 +41826,133151 +41827,132725 +41828,132643 +41829,132587 +41830,135042 +41831,132492 +41832,133151 +41833,133151 +41834,134602 +41835,135054 +41836,132502 +41837,135630 +41838,134601 +41839,135058 +41840,132956 +41841,135041 +41842,133129 +41843,133693 +41844,133694 +41845,133134 +41846,133101 +41847,133077 +41848,133132 +41849,133160 +41850,133143 +41851,132767 +41852,133072 +41853,133135 +41854,133693 +41855,135672 +41856,135672 +41857,133117 +41858,136048 +41859,133130 +41860,135049 +41861,132744 +41862,132767 +41863,132677 +41865,132939 +41866,135145 +41867,135379 +41868,135684 +41869,135178 +41870,134974 +41871,133056 +41872,135682 +41873,133528 +41874,135507 +41875,135507 +41876,132381 +41877,133579 +41880,135645 +41881,135667 +41884,135666 +41885,132547 +41886,132502 +41887,132584 +41888,132584 +41889,132517 +41890,132549 +41891,132504 +41892,132550 +41893,132492 +41894,135753 +41895,135188 +41896,132539 +41897,132492 +41898,132561 +41899,132539 +41900,132579 +41901,132536 +41902,132502 +41903,132579 +41904,132571 +41905,132494 +41906,133047 +41907,135368 +41908,135663 +41909,135648 +41910,135648 +41911,135648 +41912,135368 +41913,133047 +41914,134333 +41915,135611 +41916,132360 +41917,132746 +41918,133137 +41919,135049 +41920,132548 +41923,133121 +41924,133157 +41925,132551 +41926,132959 +41927,135291 +41928,132767 +41929,135291 +41930,132452 +41931,132452 +41932,132434 +41933,133124 +41935,133140 +41936,135733 +41938,132767 +41939,132273 +41940,132442 +41941,132442 +41942,132442 +41943,132442 +41944,132442 +41945,135619 +41946,135619 +41947,135667 +41948,135616 +41949,134639 +41950,135369 +41951,133361 +41952,133045 +41953,132554 +41954,132963 +41955,133148 +41956,132399 +41957,135280 +41959,132549 +41960,135042 +41961,132944 +41962,132497 +41963,132549 +41964,132963 +41965,133486 +41966,132644 +41967,132642 +41968,132549 +41969,135543 +41970,132561 +41971,134012 +41972,133076 +41973,135274 +41974,132433 +41975,135412 +41976,135412 +41977,135412 +41978,135412 +41979,135412 +41980,135412 +41981,135412 +41982,135412 +41983,135412 +41984,135412 +41985,132395 +41986,134975 +41998,133090 +41999,135131 +42000,135145 +42001,135145 +42031,134744 +42032,134448 +42033,133845 +42034,133579 +42036,135591 +42037,134079 +42038,134083 +42039,134080 +42040,134102 +42042,132395 +42043,135591 +42044,135131 +42045,133072 +42049,135145 +42056,132434 +42057,135582 +42058,135126 +42059,135411 +42060,135665 +42061,135667 +42062,133042 +42063,135411 +42064,135126 +42065,135411 +42066,135504 +42067,133483 +42068,133041 +42069,135358 +42070,132393 +42071,135539 +42072,135593 +42073,135574 +42074,135271 +42075,135593 +42076,135665 +42077,135662 +42078,133729 +42079,133738 +42080,133483 +42081,133041 +42082,132394 +42083,132400 +42084,135539 +42085,135593 +42086,135574 +42087,135275 +42088,135593 +42089,135642 +42090,135642 +42091,135144 +42092,133744 +42093,135493 +42094,135493 +42095,135493 +42100,132643 +42101,132541 +42102,132519 +42103,133135 +42104,132511 +42105,132634 +42106,132951 +42107,132551 +42108,134664 +42109,135045 +42110,134597 +42111,134714 +42112,134306 +42114,134374 +42115,133117 +42116,134258 +42122,132238 +42123,132535 +42124,132490 +42125,135280 +42126,132535 +42128,132760 +42129,134706 +42130,132538 +42131,132760 +42136,132541 +42139,132949 +42143,132648 +42144,132738 +42145,133124 +42151,136214 +42154,132506 +42156,132949 +42157,132653 +42158,132951 +42159,135033 +42160,135380 +42161,132887 +42162,135271 +42163,132740 +42164,132963 +42165,133124 +42166,134693 +42167,135053 +42168,132585 +42169,134011 +42170,133999 +42171,135033 +42172,135598 +42173,135599 +42174,135599 +42175,134978 +42176,134541 +42177,132449 +42178,135626 +42179,135681 +42180,135188 +42181,135476 +42182,135180 +42183,135337 +42184,135186 +42185,134079 +42186,133520 +42187,135360 +42188,135383 +42189,135674 +42190,135547 +42191,135545 +42192,135678 +42193,135677 +42194,133132 +42195,133132 +42196,133076 +42197,133124 +42198,133124 +42199,133124 +42200,133073 +42201,133126 +42202,133121 +42203,135569 +42204,133123 +42205,133143 +42206,133123 +42207,133140 +42208,133143 +42209,133123 +42210,133140 +42211,133121 +42212,133524 +42213,133140 +42214,133127 +42215,133123 +42216,133071 +42217,133071 +42218,133534 +42219,135391 +42220,135545 +42221,135191 +42222,133456 +42223,135683 +42224,135669 +42225,135348 +42226,136196 +42228,132960 +42240,133070 +42241,133070 +42247,132587 +42248,132614 +42252,132433 +42253,132455 +42254,134515 +42255,136081 +42256,136062 +42257,132736 +42271,132495 +42274,133153 +42275,133693 +42276,134596 +42277,134123 +42278,135464 +42279,133149 +42280,134916 +42281,134915 +42282,134917 +42283,136006 +42284,133641 +42285,134981 +42286,135674 +42287,132951 +42288,134599 +42289,133041 +42290,132684 +42291,132951 +42292,132767 +42293,132767 +42294,135056 +42295,134599 +42296,133160 +42297,132737 +42298,134681 +42299,132962 +42300,135060 +42301,132684 +42302,132951 +42303,134599 +42304,135056 +42305,132767 +42306,132637 +42307,132959 +42308,133117 +42309,134667 +42310,135045 +42313,132684 +42314,134660 +42315,134610 +42316,134672 +42317,134584 +42318,134697 +42319,134634 +42320,134614 +42321,135416 +42322,135416 +42323,135416 +42324,134628 +42325,134668 +42326,134697 +42327,132562 +42328,132587 +42329,132587 +42330,132548 +42331,132548 +42332,132548 +42333,132548 +42334,132548 +42335,135416 +42336,135416 +42337,135640 +42338,132395 +42339,135638 +42340,132395 +42341,135638 +42342,135241 +42343,135531 +42345,135041 +42346,132736 +42347,132938 +42348,135601 +42349,134584 +42350,132963 +42351,135041 +42352,132637 +42353,133127 +42354,134584 +42355,132963 +42356,132512 +42357,132590 +42358,132616 +42359,132637 +42360,135057 +42362,133122 +42363,134682 +42364,132515 +42365,132587 +42366,132606 +42367,132666 +42368,134608 +42369,134614 +42370,133136 +42371,132951 +42372,135033 +42373,132610 +42374,132490 +42375,132563 +42376,134976 +42377,135593 +42378,132249 +42379,135381 +42380,135680 +42381,135675 +42382,133584 +42385,135539 +42386,133161 +42387,133076 +42388,133074 +42389,133124 +42390,133124 +42391,133071 +42392,133126 +42393,135489 +42394,132601 +42395,134633 +42396,132722 +42397,134633 +42398,133072 +42399,132724 +42400,134630 +42401,134667 +42406,134982 +42407,135593 +42408,135602 +42409,134979 +42410,132935 +42411,132639 +42412,133117 +42413,134628 +42414,135055 +42415,132515 +42416,132562 +42417,132562 +42418,132614 +42419,133132 +42420,135325 +42421,132395 +42430,133867 +42432,132539 +42434,135133 +42435,133157 +42436,133151 +42437,133151 +42438,133148 +42439,132768 +42440,133564 +42441,132680 +42442,132961 +42443,135053 +42444,134600 +42445,133404 +42446,132950 +42447,135049 +42448,134588 +42449,132670 +42450,133132 +42451,133117 +42452,132947 +42453,134594 +42454,135055 +42455,132648 +42456,132648 +42460,133126 +42461,133076 +42462,133074 +42468,135753 +42478,133694 +42479,133133 +42480,133132 +42481,133136 +42482,135542 +42483,134681 +42484,132962 +42485,133160 +42486,135060 +42487,132587 +42490,133864 +42491,133770 +42492,132962 +42499,132737 +42501,134584 +42504,135273 +42506,132615 +42509,132490 +42514,135274 +42515,134592 +42516,132952 +42517,132550 +42518,132499 +42519,132539 +42520,132615 +42522,132615 +42523,132615 +42527,132615 +42528,132615 +42529,132615 +42537,135466 +42538,135467 +42539,135468 +42540,132488 +42541,135648 +42542,135672 +42543,135271 +42544,135271 +42547,132945 +42548,134423 +42549,135638 +42550,135638 +42551,132395 +42552,134950 +42553,133123 +42554,133076 +42555,133491 +42556,133491 +42557,135470 +42560,135686 +42561,135687 +42562,134549 +42563,134550 +42564,133737 +42565,135643 +42566,133742 +42567,132625 +42568,132944 +42571,133121 +42572,134658 +42573,135062 +42574,132680 +42575,133404 +42576,132961 +42577,135053 +42578,134612 +42579,132625 +42580,133121 +42581,132944 +42582,134583 +42583,135054 +42584,132519 +42585,132548 +42586,132601 +42587,132504 +42588,132560 +42589,132612 +42590,132492 +42591,132611 +42592,132568 +42593,132511 +42594,132549 +42595,132601 +42596,132511 +42597,132548 +42598,132601 +42600,132492 +42601,132563 +42602,132612 +42603,132500 +42604,132548 +42605,132601 +42606,132516 +42607,132582 +42608,135659 +42609,135447 +42610,134317 +42611,133754 +42612,132489 +42613,135150 +42614,132846 +42615,133768 +42616,133456 +42617,133456 +42618,134888 +42619,134888 +42620,134982 +42621,134978 +42622,134978 +42623,133000 +42624,135824 +42625,133642 +42626,134336 +42627,134335 +42628,134855 +42629,135481 +42630,133718 +42631,132737 +42632,132962 +42633,133160 +42634,134681 +42635,135060 +42636,132515 +42637,132587 +42638,132614 +42639,132637 +42640,132684 +42641,132951 +42642,132767 +42643,134599 +42644,135056 +42645,132612 +42646,132579 +42647,132539 +42648,132492 +42649,132492 +42650,132618 +42651,132516 +42653,133071 +42655,135646 +42656,132643 +42657,132643 +42658,132643 +42659,132648 +42660,135646 +42666,132392 +42667,132392 +42668,135055 +42669,132394 +42670,132392 +42672,132551 +42673,133117 +42674,132947 +42675,133117 +42676,134594 +42677,132648 +42678,135055 +42679,134295 +42680,135057 +42681,134608 +42698,132637 +42699,132511 +42700,132551 +42701,132539 +42702,132492 +42703,133160 +42704,132395 +42705,132395 +42706,134385 +42707,134584 +42708,133149 +42709,133117 +42710,132947 +42711,134594 +42712,132648 +42713,132432 +42714,132618 +42715,135954 +42716,136010 +42717,136011 +42718,136048 +42719,133117 +42720,133117 +42721,133117 +42722,133117 +42723,133869 +42726,132493 +42732,132493 +42738,132493 +42742,136202 +42743,132595 +42744,135411 +42745,135418 +42746,132408 +42747,132414 +42748,132414 +42749,132408 +42750,135418 +42751,135411 +42752,135128 +42753,135128 +42754,135128 +42755,135128 +42756,136205 +42757,136205 +42758,134297 +42759,135604 +42760,135604 +42761,136243 +42762,135542 +42763,135542 +42764,133404 +42765,133160 +42766,133153 +42767,133152 +42768,135622 +42770,135503 +42771,132665 +42772,132747 +42773,132747 +42774,132747 +42775,132747 +42776,132615 +42777,132615 +42778,132944 +42779,136243 +42780,134967 +42781,132516 +42782,132516 +42783,134643 +42784,132541 +42785,132634 +42786,132634 +42787,132960 +42788,132946 +42789,135682 +42790,135675 +42791,132483 +42793,135131 +42795,132637 +42796,133773 +42797,135151 +42798,132483 +42800,135022 +42801,132499 +42805,133772 +42807,135274 +42813,132539 +42817,132542 +42820,133489 +42821,132952 +42822,134051 +42823,135603 +42824,135689 +42825,135672 +42826,135687 +42827,134046 +42828,132195 +42829,133173 +42830,134584 +42831,134677 +42832,132605 +42833,132515 +42834,136158 +42835,132554 +42836,135065 +42837,132964 +42838,132742 +42839,134678 +42840,133101 +42841,132547 +42842,134655 +42843,132550 +42844,132504 +42845,132743 +42846,135032 +42847,132609 +42848,132512 +42849,132960 +42850,132616 +42851,132612 +42852,132943 +42853,135068 +42854,134630 +42855,134630 +42856,134584 +42857,132562 +42858,132495 +42859,132700 +42860,133176 +42861,133018 +42862,132512 +42863,132746 +42864,132551 +42865,132617 +42866,133127 +42867,133101 +42868,132518 +42869,132953 +42870,132547 +42871,134697 +42872,135066 +42873,132743 +42874,132751 +42875,132945 +42876,133124 +42877,132618 +42878,132767 +42879,132767 +42880,133078 +42881,133090 +42882,133077 +42883,133160 +42884,133111 +42885,132615 +42886,132945 +42887,132514 +42888,133121 +42889,133123 +42890,132635 +42891,132635 +42892,134668 +42893,132536 +42894,132548 +42895,135049 +42896,132612 +42897,132502 +42898,132659 +42899,133174 +42900,135067 +42901,132579 +42902,132569 +42903,132953 +42904,134608 +42905,134380 +42906,135127 +42907,133768 +42908,132608 +42909,133045 +42910,135054 +42911,132500 +42912,132937 +42913,133121 +42914,133119 +42915,132556 +42916,132743 +42917,134603 +42918,132760 +42919,134678 +42920,132541 +42921,132642 +42922,132642 +42923,132648 +42924,134047 +42925,132541 +42926,132618 +42927,134605 +42928,132953 +42929,133121 +42930,132648 +42931,132551 +42932,132944 +42933,135064 +42934,132648 +42935,132648 +42936,132492 +42937,132953 +42938,132953 +42939,132611 +42940,132953 +42941,132953 +42942,132610 +42943,132625 +42944,132720 +42945,134637 +42946,132746 +42947,132504 +42948,132606 +42949,135048 +42950,132549 +42951,133131 +42952,132956 +42953,132648 +42954,133119 +42955,134594 +42956,132605 +42957,132539 +42958,135948 +42959,133071 +42960,132299 +42961,132539 +42962,132515 +42963,132955 +42964,135049 +42965,132607 +42966,134606 +42967,132497 +42968,132649 +42969,132649 +42970,132935 +42971,132941 +42972,132571 +42973,133126 +42974,135050 +42975,132612 +42976,133172 +42977,132490 +42978,132679 +42979,132395 +42980,134630 +42981,132563 +42982,132566 +42983,135063 +42984,132953 +42985,132953 +42986,132502 +42987,132504 +42988,134347 +42989,135980 +42990,135894 +42991,136213 +42992,133161 +42993,135127 +42994,133071 +42995,133071 +42996,132612 +42997,132679 +42998,132767 +42999,132519 +43000,133117 +43001,133154 +43002,134612 +43003,132559 +43004,135066 +43005,132950 +43006,134334 +43007,135473 +43008,132546 +43009,132498 +43010,134631 +43011,132719 +43012,132615 +43013,133174 +43014,135042 +43015,132723 +43016,132563 +43017,132563 +43018,134657 +43019,135039 +43020,132949 +43021,132508 +43022,133175 +43023,133136 +43024,132563 +43025,132618 +43026,132502 +43027,135054 +43028,134608 +43029,132666 +43030,132601 +43031,135416 +43032,135388 +43033,132959 +43034,135057 +43035,132963 +43036,135375 +43037,134688 +43038,135375 +43039,132637 +43040,133122 +43041,134980 +43042,132512 +43043,132587 +43044,135051 +43045,132498 +43046,132953 +43052,132944 +43053,132953 +43054,132625 +43055,134614 +43056,132637 +43057,133120 +43058,132536 +43059,132552 +43060,134978 +43061,136163 +43062,132959 +43063,134667 +43064,132959 +43065,132513 +43066,135046 +43067,134656 +43068,132497 +43069,132639 +43070,133117 +43071,132539 +43072,132737 +43073,132949 +43074,132716 +43075,132683 +43076,134611 +43077,135687 +43078,132499 +43079,135378 +43080,133398 +43081,132579 +43082,132561 +43083,135508 +43084,132562 +43085,133330 +43086,133758 +43087,132569 +43088,135479 +43089,133765 +43090,135328 +43091,134552 +43092,133616 +43093,133768 +43094,133765 +43095,133396 +43096,133773 +43097,135686 +43098,135676 +43099,133768 +43100,133767 +43101,133018 +43102,134551 +43103,133575 +43104,133352 +43105,135438 +43106,132953 +43107,132956 +43108,133254 +43109,135735 +43110,133772 +43111,133793 +43112,135687 +43113,133761 +43114,134673 +43115,133754 +43116,135192 +43117,132130 +43118,134553 +43119,133407 +43120,133426 +43122,133007 +43125,132177 +43131,132542 +43134,132937 +43135,132585 +43136,132516 +43137,134671 +43138,134671 +43139,135046 +43140,132748 +43141,132604 +43142,132738 +43143,132490 +43144,134667 +43145,133118 +43146,132964 +43147,132583 +43149,134640 +43150,133693 +43151,132944 +43152,133423 +43153,132500 +43154,132625 +43155,135034 +43156,135034 +43157,133121 +43158,132546 +43159,132520 +43160,134686 +43161,132647 +43162,135048 +43163,133159 +43164,132960 +43165,133694 +43166,132606 +43167,132518 +43168,132718 +43169,135043 +43170,132956 +43171,134673 +43172,132549 +43173,132549 +43174,133144 +43175,134628 +43176,132955 +43177,132741 +43178,134586 +43179,132592 +43180,133123 +43181,135048 +43182,134677 +43183,132672 +43184,133074 +43185,132571 +43186,135057 +43187,135032 +43188,133377 +43189,132499 +43190,132948 +43191,132653 +43192,132559 +43193,134637 +43194,135669 +43195,133520 +43196,133753 +43197,133768 +43198,136048 +43199,135052 +43200,133498 +43201,133769 +43202,135508 +43203,133533 +43204,133535 +43205,132634 +43206,134697 +43207,135669 +43208,135045 +43209,135066 +43210,135169 +43211,132643 +43212,134608 +43213,133161 +43214,132497 +43215,135054 +43216,132566 +43217,132600 +43218,132644 +43219,134606 +43220,132943 +43221,133162 +43222,132720 +43223,134637 +43224,133117 +43225,132949 +43226,135045 +43227,135045 +43228,132539 +43229,132603 +43230,133132 +43231,134626 +43232,132506 +43233,132605 +43234,132554 +43235,132955 +43236,132722 +43237,133072 +43238,134980 +43239,134980 +43240,132638 +43241,132629 +43242,135478 +43243,134697 +43244,133069 +43245,135645 +43246,135671 +43247,132502 +43248,132960 +43249,134636 +43250,135054 +43251,132565 +43252,132536 +43253,135224 +43254,134663 +43255,132613 +43256,133076 +43257,135060 +43258,135067 +43259,135384 +43260,134697 +43261,132962 +43262,132536 +43263,132454 +43264,135033 +43265,135062 +43266,135062 +43267,135688 +43268,135033 +43269,132964 +43270,135045 +43271,135045 +43272,132747 +43273,135038 +43274,134697 +43275,135055 +43276,135055 +43277,133076 +43278,132502 +43279,135631 +43280,132956 +43281,135054 +43282,132536 +43283,132613 +43284,134609 +43285,132963 +43286,132686 +43287,132536 +43288,132536 +43289,133171 +43290,133770 +43291,133160 +43292,133758 +43293,132643 +43294,132953 +43295,132493 +43296,132953 +43297,135056 +43298,132560 +43299,132649 +43300,132520 +43301,132645 +43302,133155 +43303,134581 +43304,134601 +43305,133172 +43306,134677 +43307,132514 +43308,132572 +43309,135665 +43310,133013 +43311,135410 +43312,135616 +43313,135187 +43314,132400 +43315,135661 +43316,134423 +43317,136053 +43318,133745 +43319,135033 +43320,132502 +43321,132562 +43322,132502 +43323,135224 +43324,132409 +43325,132405 +43326,135650 +43332,133377 +43335,133379 +43339,133381 +43340,133396 +43343,132949 +43344,135054 +43345,132502 +43346,135054 +43347,132554 +43348,132960 +43349,132963 +43350,135638 +43351,135496 +43352,135504 +43353,135222 +43354,132455 +43355,132455 +43356,132405 +43357,135650 +43358,133223 +43359,135948 +43360,134115 +43364,132562 +43370,135053 +43371,132740 +43372,132963 +43373,132740 +43375,132740 +43380,135504 +43381,135493 +43382,135504 +43383,135493 +43384,135504 +43385,133757 +43386,135507 +43401,132392 +43402,134214 +43403,135145 +43404,134592 +43405,134586 +43406,135732 +43407,133408 +43408,132514 +43409,132561 +43410,132518 +43411,132539 +43412,132743 +43413,132618 +43414,132518 +43415,132744 +43416,132606 +43417,132492 +43418,132392 +43419,132392 +43420,133076 +43421,134606 +43422,133172 +43423,133314 +43424,134614 +43425,132601 +43426,132959 +43427,132962 +43428,132951 +43429,132951 +43430,136037 +43431,134377 +43432,133153 +43433,133152 +43434,134478 +43435,132965 +43436,132959 +43437,133078 +43438,132959 +43439,133078 +43440,132959 +43441,132959 +43442,132587 +43443,133132 +43444,133069 +43445,133101 +43446,133117 +43447,132956 +43448,132684 +43449,135480 +43450,135067 +43451,134667 +43452,133130 +43453,134599 +43454,133071 +43455,132743 +43456,133686 +43457,132737 +43458,133130 +43459,132637 +43460,133072 +43461,132629 +43462,132722 +43463,132721 +43469,132653 +43470,132585 +43471,132547 +43472,132547 +43473,135056 +43474,134681 +43475,135045 +43476,135032 +43477,132438 +43478,132554 +43479,135671 +43480,132738 +43482,135066 +43483,132500 +43485,133075 +43486,133073 +43487,133762 +43488,133762 +43489,135478 +43490,135054 +43491,135477 +43492,135056 +43493,133160 +43494,132743 +43495,133172 +43496,134678 +43497,134681 +43498,133175 +43499,134638 +43500,134607 +43501,133072 +43502,133069 +43503,135060 +43504,133101 +43505,133078 +43506,133155 +43507,134694 +43508,134667 +43511,135060 +43512,132767 +43513,133772 +43514,133172 +43515,133101 +43516,133101 +43517,133069 +43519,135493 +43520,135851 +43521,133160 +43522,132511 +43523,132953 +43524,132509 +43525,133766 +43527,132949 +43528,132840 +43529,132614 +43530,133160 +43531,133065 +43532,133125 +43535,133726 +43536,134325 +43537,133129 +43538,133117 +43539,132451 +43542,132515 +43543,133572 +43544,135478 +43545,135478 +43546,132738 +43547,133739 +43548,135827 +43549,132962 +43550,133760 +43551,134131 +43552,134599 +43553,134101 +43554,134601 +43555,132960 +43556,133071 +43557,132497 +43558,132497 +43559,133872 +43560,133016 +43561,133116 +43562,132962 +43563,134667 +43564,133758 +43565,132951 +43566,133407 +43567,134683 +43568,133762 +43569,133767 +43570,134628 +43571,132962 +43572,132963 +43573,132962 +43574,132616 +43575,132511 +43576,132601 +43577,133127 +43578,134413 +43579,134218 +43580,134903 +43581,135051 +43582,132744 +43583,135054 +43584,132601 +43585,133349 +43586,132740 +43587,132548 +43588,136070 +43589,132725 +43590,135053 +43591,135058 +43592,132508 +43593,132614 +43594,132573 +43595,136111 +43596,135050 +43597,133772 +43598,134398 +43599,134326 +43600,132743 +43601,133003 +43602,132746 +43603,132555 +43604,134395 +43605,134100 +43606,132658 +43607,135038 +43608,132954 +43609,134441 +43610,132743 +43611,132959 +43612,132637 +43613,132743 +43614,133156 +43615,133117 +43616,133117 +43617,135045 +43618,134667 +43619,134667 +43620,132637 +43621,132959 +43622,133117 +43623,134667 +43624,135045 +43626,132629 +43636,134156 +43638,135381 +43639,132943 +43640,132963 +43641,133483 +43642,133484 +43643,133050 +43644,133483 +43645,135650 +43646,133841 +43647,135641 +43648,135642 +43649,135642 +43651,132760 +43653,133119 +43654,132940 +43655,132409 +43656,132715 +43657,132749 +43658,132739 +43659,132718 +43660,132689 +43661,135059 +43662,135054 +43663,135061 +43664,135061 +43665,132739 +43666,132749 +43667,132689 +43668,135061 +43669,135061 +43670,132956 +43671,132951 +43672,132956 +43673,132949 +43674,132949 +43675,132949 +43676,132747 +43677,136021 +43678,132629 +43679,132629 +43680,136021 +43681,132759 +43682,132666 +43683,132944 +43684,132944 +43685,135613 +43686,132945 +43687,135613 +43688,135613 +43689,132955 +43690,135612 +43691,132950 +43692,133076 +43693,133126 +43694,133126 +43695,133126 +43696,133126 +43697,133076 +43698,132959 +43699,132605 +43700,132611 +43701,133306 +43702,132502 +43703,132521 +43704,132498 +43705,133772 +43706,133399 +43707,135616 +43708,135616 +43711,135274 +43712,133489 +43713,134677 +43714,134626 +43715,132585 +43716,132551 +43717,132559 +43718,132562 +43719,133884 +43720,133884 +43721,133884 +43722,133884 +43723,133884 +43724,133884 +43725,132613 +43726,132616 +43727,132617 +43728,132512 +43729,132511 +43730,132512 +43731,132514 +43732,132512 +43733,135275 +43734,132587 +43735,132548 +43736,135389 +43737,132571 +43738,134627 +43739,134459 +43740,134689 +43741,134664 +43742,134641 +43743,135049 +43744,135053 +43745,135036 +43746,135036 +43747,135035 +43748,132637 +43749,132959 +43750,133117 +43751,134667 +43752,135045 +43753,135179 +43754,135170 +43755,132767 +43756,135372 +43757,133694 +43758,133101 +43759,133398 +43760,134971 +43761,134085 +43762,135579 +43763,132376 +43764,132491 +43765,132543 +43766,135008 +43767,132957 +43768,133135 +43769,135040 +43770,132543 +43771,135579 +43772,133054 +43773,135352 +43774,135474 +43775,135342 +43776,133132 +43777,133132 +43778,135008 +43779,134586 +43780,132609 +43781,132957 +43782,132543 +43783,132491 +43784,135040 +43785,135321 +43792,134952 +43794,135019 +43796,135183 +43799,132433 +43800,134980 +43801,135054 +43802,135145 +43803,133527 +43806,132495 +43807,134655 +43809,135492 +43810,135145 +43811,135325 +43812,133514 +43813,135639 +43814,134677 +43817,135143 +43818,135145 +43820,135412 +43821,132547 +43822,132951 +43823,135041 +43824,132500 +43826,135274 +43827,135148 +43828,132459 +43829,132737 +43830,133527 +43831,133065 +43832,135629 +43833,135545 +43834,135496 +43835,135493 +43836,135629 +43837,133400 +43838,135321 +43842,133073 +43843,133074 +43846,135662 +43849,132718 +43850,134599 +43851,132542 +43852,135386 +43853,133145 +43855,132633 +43856,134667 +43857,132587 +43858,135186 +43859,135271 +43861,132684 +43862,135050 +43866,133533 +43867,133772 +43880,135493 +43881,135789 +43882,132392 +43883,133155 +43884,133172 +43885,133149 +43886,133023 +43887,133149 +43888,133023 +43889,133023 +43890,133023 +43891,133023 +43892,132769 +43893,132770 +43894,132771 +43895,132769 +43897,134451 +43898,135160 +43899,132746 +43900,132746 +43901,132742 +43902,132742 +43903,132392 +43904,133133 +43905,133133 +43906,133124 +43907,134694 +43908,133133 +43914,135478 +43915,135483 +43916,135484 +43917,135692 +43918,134667 +43919,132624 +43920,134653 +43921,134633 +43922,133074 +43923,133090 +43924,133111 +43925,133111 +43926,133111 +43927,134630 +43928,132724 +43929,132768 +43930,133152 +43931,134610 +43932,134606 +43933,132644 +43934,132644 +43935,132644 +43936,132392 +43937,133152 +43938,132742 +43939,133074 +43940,134686 +43941,132746 +43947,135124 +43948,135124 +43949,135124 +43950,135019 +43951,135185 +43952,132442 +43953,134949 +43954,135170 +43955,132953 +43956,132953 +43957,135057 +43958,132547 +43959,132606 +43960,132396 +43961,132964 +43962,135062 +43963,132940 +43964,132536 +43965,132645 +43966,134586 +43967,133076 +43968,135062 +43969,135040 +43970,132502 +43971,132583 +43972,134581 +43973,132742 +43974,133120 +43975,132500 +43976,135660 +43977,135661 +43978,135665 +43979,134724 +43980,132600 +43981,132540 +43982,132937 +43983,132502 +43984,132544 +43985,133152 +43986,134661 +43987,133076 +43988,132583 +43989,135057 +43990,132545 +43991,132545 +43992,132605 +43993,135464 +43994,135639 +43995,132396 +43996,132949 +43997,132499 +43998,135055 +43999,132546 +44000,132940 +44001,135054 +44002,134587 +44003,132502 +44004,135040 +44005,132951 +44006,132719 +44007,132500 +44008,133117 +44009,133077 +44010,133090 +44011,132400 +44016,132612 +44017,132586 +44018,134697 +44019,132502 +44020,132767 +44021,133152 +44022,134667 +44023,134955 +44024,134955 +44025,132489 +44026,134955 +44027,132505 +44028,132500 +44030,132736 +44031,132938 +44032,132736 +44034,132736 +44035,136210 +44036,134951 +44037,134950 +44039,135673 +44041,134542 +44042,134540 +44043,135057 +44046,135124 +44047,135124 +44048,132543 +44049,134582 +44050,133117 +44051,133154 +44052,133154 +44054,132943 +44055,132724 +44056,132495 +44057,132514 +44058,132629 +44059,132938 +44060,132602 +44061,132915 +44062,132920 +44063,134689 +44064,133071 +44065,135041 +44066,132612 +44067,132564 +44068,135054 +44069,132536 +44070,135049 +44071,132492 +44072,132618 +44073,132434 +44074,134594 +44075,134608 +44076,134130 +44077,133147 +44078,132745 +44079,132751 +44081,132493 +44085,135131 +44086,133411 +44087,132745 +44088,132745 +44089,132745 +44090,132742 +44091,132682 +44092,133111 +44093,134688 +44094,132549 +44095,132504 +44096,132744 +44097,132744 +44098,132744 +44099,132744 +44100,132744 +44101,132742 +44102,132611 +44103,132492 +44104,132716 +44105,132719 +44106,132551 +44107,134612 +44108,132612 +44109,135056 +44110,132502 +44111,132500 +44112,132953 +44113,132612 +44114,132547 +44115,135661 +44116,135661 +44117,135652 +44118,135466 +44119,132716 +44120,134592 +44121,132512 +44122,132957 +44123,135055 +44124,132958 +44125,132605 +44126,132502 +44127,132965 +44128,134696 +44129,132721 +44130,132634 +44131,133127 +44132,132666 +44133,134600 +44134,134600 +44135,135035 +44136,135035 +44137,132611 +44138,132666 +44139,132960 +44140,132566 +44141,132514 +44142,133154 +44143,132722 +44144,134696 +44145,132539 +44146,132956 +44147,132395 +44148,132395 +44149,132512 +44150,132395 +44151,135061 +44152,132395 +44153,132395 +44154,133127 +44155,132395 +44156,132647 +44157,132646 +44158,132649 +44159,132649 +44160,134600 +44161,134602 +44162,132558 +44163,135035 +44164,132949 +44165,132514 +44166,132514 +44167,132511 +44168,132606 +44169,132722 +44170,134696 +44171,132539 +44172,132606 +44173,135061 +44174,135061 +44175,135061 +44176,133127 +44177,132722 +44178,132722 +44179,134696 +44180,134696 +44181,135061 +44182,135061 +44183,135061 +44184,132956 +44185,132949 +44186,132606 +44187,132539 +44188,133127 +44189,133131 +44190,132512 +44191,132512 +44192,132512 +44193,132745 +44194,132745 +44195,134660 +44196,132745 +44197,134660 +44198,134660 +44199,132639 +44200,132551 +44201,132951 +44202,135053 +44203,135053 +44204,135053 +44205,135053 +44206,135055 +44207,132606 +44208,132511 +44209,133078 +44210,132751 +44211,132749 +44212,132749 +44213,135145 +44214,132749 +44215,134681 +44216,135638 +44217,135049 +44218,135053 +44219,132547 +44220,132613 +44221,132963 +44222,133884 +44223,133124 +44224,132522 +44225,136030 +44226,135463 +44230,132543 +44232,135046 +44233,135638 +44234,135379 +44235,135277 +44236,135277 +44237,133446 +44245,136232 +44246,135127 +44250,132395 +44251,134154 +44252,135009 +44253,132643 +44254,133132 +44255,135058 +44256,132502 +44257,132512 +44258,134514 +44259,136069 +44260,134247 +44265,132768 +44266,134655 +44267,132550 +44268,132504 +44269,133015 +44270,134967 +44271,133071 +44272,132609 +44273,132751 +44274,132523 +44275,132957 +44276,132160 +44277,132584 +44278,133076 +44279,134691 +44280,132515 +44281,132491 +44282,135040 +44283,132957 +44284,132543 +44285,135008 +44286,133490 +44287,136019 +44288,134295 +44289,135638 +44290,134054 +44291,134044 +44292,135673 +44293,134951 +44294,134950 +44295,134763 +44296,134201 +44298,132760 +44299,132490 +44300,132539 +44301,132939 +44302,134770 +44303,134375 +44304,132501 +44305,132940 +44306,134446 +44307,135055 +44308,134543 +44309,132138 +44310,132409 +44311,134653 +44312,134653 +44313,132512 +44314,135648 +44315,134564 +44316,134075 +44317,132408 +44318,132658 +44319,132718 +44320,132629 +44321,134436 +44322,132551 +44323,135059 +44324,132606 +44325,135055 +44326,132647 +44327,133078 +44328,135651 +44329,135418 +44330,135334 +44331,135185 +44332,132397 +44333,135477 +44334,132500 +44335,135041 +44336,132963 +44337,133071 +44338,134586 +44339,135176 +44340,132584 +44341,132749 +44343,135040 +44344,133592 +44345,132962 +44346,132502 +44347,134697 +44348,132613 +44349,132547 +44351,134333 +44352,133078 +44355,133585 +44356,133582 +44357,133412 +44358,133410 +44367,135739 +44368,133859 +44369,134975 +44370,133483 +44371,133296 +44372,133765 +44375,135388 +44377,135789 +44379,134655 +44382,135005 +44383,133694 +44385,132743 +44387,133694 +44388,132743 +44389,132618 +44396,132495 +44401,135005 +44404,135005 +44405,132352 +44406,133124 +44407,133121 +44408,133101 +44409,133136 +44410,133121 +44411,133119 +44412,133154 +44413,132960 +44415,135650 +44416,136030 +44417,135651 +44418,135648 +44419,135466 +44420,135493 +44421,135047 +44422,135045 +44423,134661 +44424,132745 +44425,133167 +44426,132751 +44428,135815 +44429,132768 +44430,132666 +44431,132629 +44432,132723 +44433,135026 +44434,135026 +44435,135026 +44436,135026 +44437,135026 +44438,135026 +44439,135026 +44440,135026 +44441,135026 +44442,132627 +44443,134608 +44444,133136 +44445,132400 +44446,135062 +44447,132496 +44448,132938 +44449,132539 +44450,133753 +44451,132605 +44452,135058 +44453,135058 +44454,132539 +44455,132539 +44456,132538 +44458,133769 +44459,132603 +44460,135033 +44461,135033 +44462,135040 +44463,132400 +44470,132408 +44471,132627 +44472,132630 +44473,133133 +44474,134884 +44475,134884 +44476,133062 +44477,135056 +44478,132960 +44479,134692 +44480,132948 +44481,132539 +44482,135056 +44483,132542 +44484,135056 +44485,132658 +44486,133985 +44487,132165 +44489,135145 +44490,134294 +44491,134294 +44493,132939 +44494,135026 +44497,135638 +44498,135274 +44500,135005 +44504,132939 +44506,132962 +44513,132962 +44515,133117 +44516,133156 +44517,133155 +44522,133161 +44523,133729 +44525,132500 +44529,135348 +44530,135327 +44531,135056 +44532,135056 +44533,135035 +44535,135051 +44536,135051 +44544,133736 +44545,135410 +44546,135369 +44547,132634 +44548,135145 +44549,134341 +44550,132506 +44551,132737 +44552,133644 +44553,132648 +44554,132648 +44555,132737 +44556,132629 +44557,132648 +44558,135473 +44559,133124 +44560,133127 +44561,133075 +44562,134907 +44563,135054 +44564,135615 +44565,133047 +44566,133129 +44567,133129 +44568,133129 +44569,133129 +44570,133129 +44571,132515 +44572,133073 +44573,135610 +44574,133124 +44575,133078 +44576,133076 +44577,133160 +44578,133160 +44579,133152 +44580,132228 +44581,132229 +44582,132231 +44583,132235 +44584,132236 +44585,132233 +44586,135646 +44587,132256 +44588,132255 +44589,132258 +44590,132259 +44591,132260 +44593,135643 +44594,135467 +44595,132743 +44596,135467 +44597,135646 +44598,132686 +44599,133768 +44600,133160 +44601,133160 +44602,133160 +44605,132716 +44606,133050 +44607,133111 +44608,133160 +44609,133131 +44610,133117 +44611,133132 +44612,133060 +44623,135006 +44624,135440 +44625,133758 +44626,133758 +44627,133758 +44628,133758 +44629,133758 +44630,133773 +44631,133757 +44632,133770 +44633,133768 +44634,133771 +44635,132381 +44636,132741 +44638,132741 +44639,132495 +44641,132951 +44642,132741 +44643,132951 +44645,132741 +44647,132741 +44648,134581 +44649,132606 +44650,135010 +44652,134539 +44653,133865 +44654,133016 +44655,133016 +44656,133137 +44657,133135 +44659,135493 +44660,135615 +44661,134538 +44662,135612 +44663,135615 +44664,135615 +44665,135610 +44666,134157 +44668,132736 +44674,132717 +44675,132512 +44677,133073 +44679,132615 +44680,133175 +44681,134391 +44682,135503 +44683,133171 +44684,133147 +44685,132595 +44686,133078 +44687,135131 +44688,135131 +44689,135279 +44690,135131 +44691,135279 +44693,132492 +44694,134583 +44695,132535 +44696,132938 +44697,132962 +44698,135047 +44699,135064 +44700,135056 +44701,134489 +44702,134494 +44703,133387 +44704,134487 +44705,134483 +44706,134490 +44707,134485 +44708,134496 +44709,134498 +44710,134947 +44711,133069 +44712,133118 +44713,133140 +44714,133116 +44715,132637 +44716,133134 +44717,133163 +44718,133163 +44719,133161 +44722,134885 +44723,135622 +44724,135503 +44725,133267 +44726,133240 +44727,132209 +44728,133486 +44729,133271 +44730,133270 +44731,133257 +44732,133076 +44734,134583 +44735,132585 +44737,132962 +44738,135275 +44739,132191 +44756,132188 +44763,132637 +44765,134718 +44766,132613 +44767,135313 +44768,133487 +44769,136036 +44770,132192 +44771,132172 +44772,132188 +44773,135483 +44774,135177 +44775,135145 +44776,135145 +44777,132760 +44779,135565 +44781,132938 +44782,133694 +44783,133732 +44784,134344 +44785,135565 +44786,135565 +44787,135565 +44788,132716 +44790,135060 +44791,134693 +44792,136131 +44793,136131 +44794,134781 +44795,134785 +44796,134782 +44797,134786 +44798,136152 +44799,135478 +44800,132637 +44801,132637 +44802,132637 +44803,133117 +44804,132959 +44805,132959 +44806,132959 +44807,133117 +44808,133117 +44809,134667 +44810,134667 +44811,132959 +44812,134667 +44813,134667 +44814,135045 +44815,135045 +44816,135045 +44817,133117 +44818,132551 +44819,132585 +44820,132516 +44823,135679 +44824,132496 +44825,132567 +44826,132608 +44827,134603 +44828,134630 +44829,132515 +44830,132571 +44831,132617 +44832,132551 +44833,134688 +44834,132515 +44835,132616 +44836,132515 +44837,134697 +44838,132551 +44839,132612 +44840,133160 +44841,133413 +44842,135672 +44843,135855 +44844,135851 +44845,133160 +44846,132737 +44847,132962 +44848,134681 +44849,135060 +44850,132395 +44851,136150 +44852,135026 +44853,133772 +44854,132513 +44855,135575 +44856,133511 +44857,133511 +44858,133527 +44861,132821 +44862,135195 +44863,134983 +44864,134978 +44865,134984 +44866,132517 +44867,134980 +44868,134980 +44869,134983 +44870,133526 +44871,133526 +44872,134468 +44873,133118 +44874,133119 +44875,132743 +44876,133132 +44877,133140 +44878,133071 +44879,133160 +44880,133076 +44881,133131 +44882,133135 +44883,133071 +44884,133125 +44885,135542 +44886,133161 +44888,135005 +44889,134799 +44890,135418 +44891,132395 +44892,132395 +44893,135347 +44895,132539 +44896,133117 +44897,132539 +44902,132539 +44903,133132 +44904,133175 +44919,133238 +44920,133239 +44921,133264 +44922,133263 +44923,133265 +44924,133266 +44925,133248 +44926,133249 +44927,133261 +44928,133260 +44929,133244 +44930,133245 +44931,135271 +44932,135271 +44935,135005 +44936,134633 +44940,134425 +44946,133858 +44948,133132 +44949,133023 +44950,133230 +44951,132548 +44952,132649 +44953,132643 +44954,133516 +44955,135271 +44956,135195 +44957,135395 +44958,135691 +44959,132444 +44960,132446 +44961,133528 +44962,135629 +44963,133532 +44964,133858 +44965,133040 +44966,132551 +44967,132690 +44968,134599 +44969,133195 +44970,133117 +44971,134296 +44972,132741 +44973,135508 +44974,133305 +44975,132951 +44976,134621 +44977,132986 +44978,135088 +44979,132707 +44980,132637 +44981,133117 +44986,133489 +44987,132959 +44988,134667 +44989,133117 +44990,132637 +44991,132959 +44992,134667 +44993,134667 +44994,135045 +44998,132501 +44999,132501 +45003,134333 +45004,133717 +45005,133712 +45006,134947 +45007,132956 +45008,132937 +45009,133117 +45010,133117 +45011,135133 +45012,132637 +45013,134539 +45014,132959 +45015,134667 +45016,132962 +45017,132737 +45018,133160 +45019,134681 +45020,135060 +45021,134667 +45022,132614 +45023,135045 +45024,133117 +45025,132637 +45026,132959 +45027,134667 +45028,135045 +45029,132617 +45030,134110 +45031,133366 +45032,133132 +45033,133167 +45034,132767 +45035,135056 +45036,135056 +45037,132767 +45038,132951 +45039,134599 +45040,133057 +45041,132637 +45042,133757 +45043,133760 +45044,132637 +45045,132684 +45046,132637 +45047,132637 +45048,133760 +45049,132708 +45050,133754 +45051,132987 +45052,133081 +45053,134622 +45054,135089 +45055,132606 +45056,132492 +45057,132686 +45058,134807 +45059,135640 +45060,132395 +45061,132594 +45062,132779 +45063,133980 +45064,134864 +45068,132395 +45069,132395 +45070,132395 +45071,132395 +45072,132395 +45073,132395 +45074,133489 +45075,133489 +45076,132395 +45077,132395 +45078,132395 +45079,132395 +45080,132395 +45081,132395 +45082,132395 +45086,132395 +45087,132395 +45094,132395 +45095,132395 +45096,135145 +45101,133144 +45102,132395 +45110,132395 +45111,132395 +45112,134423 +45113,132395 +45116,132395 +45117,132395 +45118,132395 +45119,132708 +45120,133081 +45121,132987 +45122,134622 +45123,132637 +45124,132951 +45125,134599 +45126,135089 +45127,133117 +45128,132959 +45129,134667 +45130,134667 +45131,135045 +45132,132763 +45133,136146 +45134,132505 +45135,133715 +45143,134568 +45144,134573 +45145,132395 +45146,132395 +45147,133174 +45148,133132 +45149,133076 +45150,132395 +45151,134422 +45153,135496 +45154,135543 +45155,132612 +45156,134796 +45157,134795 +45158,132583 +45159,135475 +45160,134336 +45161,135195 +45162,132767 +45163,134975 +45164,133133 +45165,133072 +45166,133145 +45167,133145 +45168,133078 +45169,133160 +45170,133160 +45171,132266 +45172,133159 +45173,133072 +45174,133072 +45175,133159 +45176,133072 +45177,133069 +45178,133117 +45179,133160 +45180,132138 +45181,133076 +45182,133071 +45183,133101 +45184,132608 +45185,132943 +45186,132161 +45187,135641 +45188,133514 +45189,135224 +45190,133765 +45191,133754 +45192,132618 +45193,132611 +45194,132608 +45195,132602 +45196,132607 +45197,133607 +45198,132934 +45199,133754 +45200,132943 +45201,132544 +45202,134938 +45203,135056 +45204,134985 +45205,135190 +45207,135045 +45208,135090 +45209,135694 +45210,134667 +45211,134544 +45212,135090 +45213,132637 +45214,133524 +45215,135032 +45216,134599 +45217,134621 +45218,134608 +45219,134621 +45220,134697 +45221,132639 +45222,132737 +45223,132737 +45224,135196 +45225,135056 +45226,132737 +45227,134650 +45228,134667 +45229,134669 +45230,135396 +45231,135397 +45232,135396 +45233,135694 +45234,132571 +45235,132562 +45236,132953 +45237,132558 +45238,132592 +45239,132552 +45240,132551 +45241,132492 +45242,132497 +45243,132516 +45244,132511 +45245,132515 +45246,132517 +45247,132511 +45260,135056 +45263,132496 +45264,132513 +45265,135510 +45274,134337 +45275,134337 +45276,135033 +45277,132503 +45278,132555 +45279,132565 +45280,132565 +45281,132565 +45282,132958 +45283,132633 +45284,132767 +45285,133134 +45286,133074 +45287,132583 +45288,132608 +45289,132613 +45290,132944 +45291,132502 +45292,132609 +45293,133069 +45294,135693 +45295,135695 +45296,132676 +45297,132963 +45298,132516 +45299,132522 +45300,132951 +45301,132948 +45302,132947 +45303,132947 +45304,132943 +45305,133594 +45306,133595 +45307,132395 +45308,132395 +45309,133117 +45310,133157 +45311,132743 +45312,133116 +45313,133116 +45314,133071 +45315,134896 +45316,132603 +45317,135583 +45318,135583 +45319,134609 +45320,134696 +45321,136172 +45322,136129 +45323,135056 +45324,132587 +45325,132511 +45326,132542 +45327,132718 +45328,133762 +45329,134667 +45330,134635 +45331,135090 +45332,132551 +45333,132965 +45334,134683 +45335,132692 +45336,132559 +45337,133265 +45338,135064 +45339,133772 +45340,133765 +45341,132573 +45342,132544 +45343,132964 +45344,135197 +45345,133524 +45346,133537 +45347,132616 +45348,135050 +45349,132585 +45350,133529 +45351,133320 +45352,132592 +45353,135428 +45354,135049 +45355,132759 +45356,132492 +45357,135477 +45358,132605 +45359,132612 +45360,135400 +45361,133155 +45362,133409 +45363,135195 +45364,133729 +45365,133536 +45366,133517 +45367,133517 +45368,133517 +45369,133132 +45370,133167 +45371,132504 +45372,132549 +45384,132740 +45385,133127 +45386,133176 +45387,135053 +45388,135068 +45389,134710 +45390,133459 +45391,134385 +45392,135565 +45393,135493 +45394,133724 +45395,133724 +45396,132395 +45397,132686 +45398,132951 +45399,132601 +45400,132612 +45401,132601 +45402,132601 +45403,132601 +45404,132614 +45405,132614 +45406,135091 +45407,135091 +45408,135091 +45409,135033 +45410,135038 +45411,135045 +45412,135056 +45413,135060 +45414,135054 +45415,132769 +45416,135638 +45424,132737 +45425,132731 +45426,132988 +45427,133082 +45428,134652 +45429,135060 +45430,135092 +45431,133082 +45434,133082 +45435,133584 +45436,135092 +45437,134795 +45443,132372 +45444,135621 +45445,135621 +45448,133649 +45449,133081 +45450,133160 +45451,133117 +45452,134411 +45453,133439 +45454,135038 +45456,135038 +45458,135038 +45459,135038 +45460,135038 +45461,133757 +45462,132940 +45463,133757 +45465,132783 +45466,133863 +45467,132782 +45468,134315 +45469,135493 +45470,135038 +45472,132583 +45473,135473 +45474,135426 +45475,135128 +45476,133758 +45477,133758 +45479,135561 +45480,133772 +45481,135561 +45482,132684 +45483,133694 +45485,135511 +45486,134947 +45487,135697 +45488,135263 +45489,133694 +45490,135397 +45491,135549 +45492,132447 +45493,135640 +45494,135056 +45495,135026 +45496,133521 +45497,135638 +45498,132250 +45500,133802 +45501,132509 +45502,132496 +45503,132937 +45504,135042 +45505,132536 +45506,132629 +45507,134653 +45508,135474 +45509,135144 +45510,133489 +45511,132684 +45512,135698 +45518,132395 +45519,132395 +45525,132395 +45526,132395 +45529,133149 +45530,135531 +45542,132395 +45543,132395 +45544,132395 +45545,133582 +45546,133582 +45547,133582 +45548,132395 +45549,132395 +45550,132395 +45551,132395 +45555,132395 +45556,132395 +45557,132395 +45559,132395 +45560,132395 +45563,132395 +45564,132395 +45567,132395 +45568,132395 +45569,132395 +45577,132395 +45578,132395 +45579,132395 +45580,132395 +45584,132395 +45585,132395 +45586,135050 +45594,132395 +45595,132395 +45596,132800 +45597,136172 +45598,135566 +45599,134800 +45608,133707 +45609,135646 +45610,133246 +45611,134780 +45612,134783 +45613,132147 +45614,132542 +45615,133491 +45616,134019 +45617,132796 +45626,133040 +45627,132944 +45628,132958 +45629,133040 +45630,133040 +45631,132395 +45632,132395 +45633,132395 +45634,132395 +45635,132395 +45636,132395 +45637,132395 +45638,132395 +45639,132395 +45640,132395 +45641,132395 +45642,132395 +45643,132395 +45644,132395 +45645,132395 +45646,132395 +45647,132395 +45648,132395 +45649,132395 +45650,132395 +45651,134430 +45652,134628 +45653,134977 +45654,132584 +45655,132584 +45656,132517 +45657,133194 +45658,132757 +45659,132985 +45660,134703 +45661,135087 +45662,132730 +45663,133190 +45664,132981 +45665,134651 +45666,134651 +45667,135083 +45668,132734 +45669,133193 +45670,132984 +45671,134675 +45672,135086 +45673,132989 +45674,133083 +45675,134623 +45676,135093 +45677,132709 +45678,132733 +45679,132982 +45680,133191 +45681,134674 +45682,135084 +45683,132756 +45684,133192 +45685,132983 +45686,134702 +45687,135085 +45688,135603 +45689,135603 +45690,135605 +45691,135605 +45692,135346 +45693,133481 +45702,133155 +45703,133134 +45704,135088 +45705,135033 +45706,132565 +45707,132958 +45708,133134 +45709,133192 +45710,133194 +45711,132944 +45712,132982 +45713,133191 +45714,132676 +45715,132985 +45716,132986 +45717,132947 +45718,132988 +45719,132983 +45720,133157 +45721,133190 +45722,133194 +45723,132603 +45724,134648 +45725,135092 +45726,133762 +45727,132965 +45728,132985 +45729,132559 +45730,132515 +45731,135084 +45732,132573 +45733,132544 +45734,135086 +45735,135084 +45736,132571 +45737,132571 +45738,135428 +45739,135671 +45740,132562 +45741,132618 +45742,132558 +45743,132612 +45744,132601 +45745,132611 +45746,132608 +45747,132716 +45748,132614 +45749,135093 +45750,132602 +45751,132716 +45752,135092 +45753,132607 +45754,132372 +45755,132716 +45756,135378 +45757,135086 +45758,135083 +45759,135090 +45760,135123 +45761,132601 +45762,132601 +45763,132502 +45764,133193 +45765,132511 +45766,132637 +45767,132734 +45768,133151 +45769,133518 +45770,133195 +45771,132690 +45772,133063 +45773,135054 +45774,135038 +45775,132614 +45776,135378 +45777,135356 +45778,133023 +45779,133023 +45780,133023 +45781,133023 +45782,133023 +45783,133023 +45784,133868 +45785,132551 +45786,132551 +45787,132567 +45788,135006 +45789,134706 +45790,132541 +45791,135060 +45794,132541 +45797,132767 +45798,133063 +45799,135395 +45800,132562 +45801,133134 +45802,133131 +45803,133118 +45804,132451 +45805,132639 +45806,132639 +45807,132639 +45808,134537 +45809,135861 +45810,133160 +45811,135060 +45812,132737 +45813,132962 +45814,134681 +45815,133900 +45816,135092 +45817,134978 +45818,133176 +45819,132767 +45820,132716 +45821,132587 +45822,132606 +45823,132492 +45825,134581 +45826,132626 +45827,132626 +45828,132626 +45838,133023 +45840,133023 +45843,133192 +45844,133140 +45845,132555 +45846,135543 +45847,134582 +45848,133276 +45849,134890 +45850,133858 +45851,133793 +45852,134903 +45853,133442 +45854,133314 +45855,133322 +45856,135067 +45857,132738 +45858,133071 +45859,132959 +45860,132965 +45861,132585 +45862,134694 +45863,135060 +45864,132737 +45865,135066 +45866,134681 +45867,134681 +45868,132738 +45869,132959 +45870,132959 +45871,132767 +45872,135056 +45873,135056 +45874,133155 +45875,132743 +45876,132547 +45877,132959 +45878,132959 +45879,134667 +45880,134678 +45881,132629 +45882,135045 +45883,134693 +45884,135085 +45885,133772 +45886,133776 +45887,135225 +45888,133176 +45889,135605 +45890,135605 +45891,132742 +45892,132742 +45893,132391 +45894,132391 +45895,132391 +45896,132391 +45897,134581 +45900,132766 +45903,134581 +45907,134204 +45908,134412 +45909,132573 +45910,132579 +45911,132539 +45912,132547 +45913,132584 +45914,132561 +45915,132539 +45916,132550 +45917,132571 +45918,132587 +45919,132549 +45920,132547 +45921,132562 +45922,132562 +45923,134937 +45925,132760 +45927,133151 +45928,134521 +45929,133151 +45930,133151 +45931,133151 +45932,134693 +45937,132742 +45938,133019 +45945,132392 +45946,135350 +45947,133445 +45948,133414 +45950,132620 +45951,132623 +45953,135050 +45954,133076 +45955,132953 +45956,132716 +45957,134587 +45958,132962 +45959,133132 +45960,134599 +45961,135043 +45962,132718 +45963,132633 +45964,132945 +45965,133077 +45966,134667 +45967,135060 +45968,133124 +45969,135053 +45970,135053 +45971,134693 +45972,132740 +45973,132963 +45974,132949 +45975,133132 +45976,135033 +45977,134599 +45978,132684 +45979,135050 +45980,133076 +45981,132953 +45982,132716 +45983,134587 +45984,132410 +45985,132547 +45993,132962 +45994,133132 +45995,134599 +45996,135043 +45997,132718 +45998,133132 +45999,134599 +46008,134693 +46009,132740 +46010,132963 +46011,133124 +46012,135053 +46013,132740 +46014,133077 +46015,133077 +46016,132633 +46017,132633 +46021,132945 +46022,134667 +46023,135060 +46024,132945 +46025,133077 +46026,133077 +46027,132767 +46028,132949 +46029,132949 +46031,133132 +46032,134599 +46033,135033 +46034,132767 +46035,132684 +46036,132949 +46037,132767 +46038,132767 +46039,132503 +46040,132618 +46041,132585 +46042,132503 +46043,132618 +46044,132585 +46045,135861 +46046,134169 +46047,132615 +46048,132509 +46049,132587 +46050,132587 +46051,132615 +46052,132509 +46053,132587 +46054,132506 +46055,132542 +46056,132542 +46057,132606 +46058,132506 +46059,132542 +46060,132606 +46061,132542 +46062,132506 +46063,132606 +46064,132539 +46065,132506 +46066,132606 +46067,132539 +46068,132506 +46069,132606 +46070,132539 +46071,132539 +46072,132517 +46073,133071 +46074,134681 +46075,132502 +46076,132963 +46077,133176 +46078,133124 +46079,132954 +46080,132740 +46082,132746 +46083,135045 +46084,135051 +46085,132616 +46086,132492 +46087,132492 +46088,132738 +46089,132511 +46090,132504 +46091,132550 +46092,134683 +46093,134667 +46094,132960 +46095,132601 +46096,135050 +46097,132508 +46098,135058 +46099,132744 +46100,132614 +46101,132518 +46102,132518 +46103,132959 +46104,132514 +46105,132497 +46106,134628 +46107,134599 +46108,134587 +46109,132945 +46110,135038 +46111,135054 +46112,132502 +46113,132494 +46114,132492 +46115,132494 +46116,132562 +46117,133116 +46118,133134 +46119,132951 +46120,135056 +46121,133762 +46122,134601 +46123,133758 +46124,133762 +46125,133767 +46126,133760 +46127,134599 +46128,134601 +46129,135056 +46130,132684 +46131,135056 +46132,132658 +46133,132658 +46134,133730 +46142,132798 +46154,132924 +46155,133029 +46176,136158 +46184,136021 +46188,133132 +46195,132795 +46196,132791 +46197,133077 +46204,132608 +46205,133194 +46206,132268 +46207,132983 +46208,134696 +46209,134790 +46210,133380 +46211,133000 +46212,133134 +46213,133132 +46214,133117 +46215,133117 +46216,133116 +46217,133134 +46220,135342 +46224,133124 +46246,132800 +46247,132800 +46248,134769 +46249,132804 +46252,134126 +46253,134127 +46254,133778 +46255,133779 +46256,133780 +46257,133781 +46258,133782 +46260,132795 +46266,133661 +46273,134019 +46298,132930 +46323,135047 +46324,135047 +46325,135145 +46334,135145 +46347,134599 +46348,135051 +46349,135045 +46350,132756 +46351,132737 +46352,132737 +46353,135054 +46354,133124 +46355,135058 +46356,132639 +46357,132983 +46358,133192 +46359,134697 +46379,132716 +46380,132724 +46382,132746 +46423,132804 +46426,132594 +46428,132716 +46429,132716 +46430,132657 +46431,132679 +46432,134581 +46433,133131 +46434,133132 +46435,132951 +46436,135058 +46437,132646 +46438,132722 +46439,134589 +46440,134592 +46441,133156 +46442,133152 +46443,132500 +46444,135037 +46445,132537 +46446,132615 +46447,132639 +46448,132629 +46449,133073 +46450,132508 +46451,132948 +46452,132584 +46453,134687 +46454,133071 +46455,133771 +46456,133741 +46457,135641 +46458,135661 +46459,135646 +46460,132398 +46461,132948 +46462,132508 +46463,134681 +46487,132985 +46488,134696 +46489,133762 +46490,133765 +46506,133134 +46507,133077 +46513,135145 +46514,133661 +46517,133311 +46518,135145 +46524,132930 +46542,135145 +46558,132614 +46559,132614 +46560,133803 +46574,132515 +46576,133071 +46577,133071 +46602,135641 +46606,135471 +46675,135610 +46677,135610 +46679,134329 +46692,133489 +46701,135145 +46712,135723 +46716,133661 +46759,133117 +46781,132591 +46783,135110 +46784,132591 +46785,132503 +46788,135289 +46789,135289 +46790,132756 +46791,132756 +46792,132541 +46793,132511 +46801,133512 +46802,133190 +46803,135108 +46804,132492 +46805,133316 +46806,135700 +46807,135109 +46808,135145 +46809,135055 +46810,132591 +46811,135474 +46812,133772 +46813,132716 +46814,132548 +46816,132556 +46817,134559 +46818,134968 +46819,133095 +46831,134955 +46832,132392 +46839,135326 +46840,133483 +46856,132740 +46857,132757 +46859,135087 +46860,133194 +46861,134703 +46862,132985 +46863,135145 +46864,133194 +46865,135087 +46866,134703 +46867,132757 +46868,132985 +46869,132989 +46870,133132 +46871,133083 +46872,134623 +46873,132709 +46874,135033 +46875,135093 +46876,135093 +46877,135050 +46878,133076 +46879,134587 +46880,132733 +46881,135084 +46882,134674 +46883,132982 +46884,133077 +46885,132734 +46886,132734 +46887,132734 +46888,135060 +46889,135060 +46890,135086 +46891,132734 +46892,132984 +46893,133077 +46894,133193 +46895,134675 +46896,133193 +46897,132633 +46898,133077 +46899,133193 +46900,135289 +46916,135145 +46921,132949 +46922,132986 +46923,133132 +46924,133195 +46925,134621 +46926,135088 +46927,132707 +46928,135089 +46929,133081 +46930,132987 +46931,132708 +46932,132986 +46933,134622 +46934,132684 +46935,132988 +46936,133082 +46937,134652 +46938,135092 +46939,132731 +46940,132988 +46941,132981 +46942,133190 +46943,134651 +46944,135083 +46945,132730 +46946,134651 +46947,132718 +46948,132740 +46949,132983 +46950,133192 +46951,134702 +46952,135053 +46953,135085 +46954,133192 +46955,133535 +46956,133522 +46961,132442 +46962,132470 +46963,132471 +46964,135548 +46965,135604 +46966,135604 +46967,135604 +46968,133527 +46969,135198 +46970,135399 +46971,135700 +46972,135680 +46973,135686 +46974,135189 +46975,133528 +46978,132635 +46979,132721 +46980,132507 +46981,134560 +46982,135699 +46983,133093 +46984,132511 +46985,135288 +46986,135695 +46987,133092 +46988,133094 +46989,132516 +46990,135111 +46991,135149 +46992,135290 +46993,135199 +46994,135199 +46995,132735 +46996,132579 +46997,135005 +46998,132756 +46999,132470 +47001,133097 +47002,132513 +47003,135106 +47004,132551 +47005,132500 +47006,133770 +47007,135107 +47008,135198 +47010,135632 +47011,132471 +47012,135701 +47013,135146 +47014,133123 +47015,134704 +47016,132990 +47017,132614 +47018,135106 +47019,133095 +47020,132756 +47021,132507 +47022,134704 +47023,132618 +47024,132990 +47025,134704 +47026,132990 +47027,132601 +47028,132756 +47029,134648 +47030,132959 +47031,132601 +47032,135110 +47033,134676 +47034,132991 +47035,132601 +47036,132511 +47037,133097 +47038,132556 +47039,134676 +47040,134676 +47041,132548 +47042,135289 +47043,132606 +47044,132973 +47045,134634 +47046,132503 +47047,132503 +47048,135270 +47049,134648 +47050,132647 +47051,133133 +47054,132573 +47055,132601 +47056,132723 +47057,132611 +47059,132592 +47060,132511 +47061,134615 +47062,132608 +47063,132948 +47064,134611 +47065,132606 +47066,132940 +47067,133772 +47068,133771 +47069,133770 +47070,133565 +47071,136014 +47072,136025 +47073,136074 +47088,136087 +47089,133246 +47090,134554 +47091,134554 +47092,132618 +47093,134177 +47094,135727 +47095,132344 +47096,133778 +47097,133802 +47098,132919 +47099,133282 +47100,134020 +47101,132766 +47102,132620 +47103,132250 +47104,134014 +47106,134471 +47107,135025 +47108,133133 +47109,135485 +47110,133197 +47111,133198 +47112,133199 +47113,133200 +47114,133196 +47115,134047 +47118,135025 +47119,135025 +47120,135025 +47121,132560 +47122,135025 +47123,133018 +47124,133718 +47125,135606 +47126,135606 +47127,135700 +47129,134599 +47130,132710 +47131,132574 +47132,134788 +47133,134791 +47136,134328 +47139,134589 +47144,133661 +47158,132795 +47159,132676 +47160,134676 +47161,132691 +47162,132574 +47163,133133 +47164,133133 +47165,133133 +47166,133134 +47167,133131 +47168,133129 +47169,133153 +47170,133098 +47171,132973 +47172,133132 +47173,133094 +47174,135601 +47175,135606 +47176,135606 +47177,134676 +47178,132248 +47179,133521 +47180,133140 +47187,133062 +47188,133062 +47189,135038 +47191,132602 +47192,133062 +47193,134586 +47195,134586 +47197,133062 +47198,133062 +47199,135033 +47202,135032 +47203,132743 +47204,134678 +47206,132960 +47207,133062 +47210,134655 +47212,133062 +47214,135062 +47220,132711 +47221,132575 +47225,133062 +47226,135397 +47227,133062 +47228,133062 +47229,133062 +47230,133062 +47231,133918 +47232,134506 +47235,134171 +47236,134167 +47237,134173 +47238,132366 +47239,134162 +47240,134162 +47241,134161 +47242,134161 +47243,134161 +47246,133075 +47247,133124 +47248,133537 +47249,133768 +47250,134947 +47252,133768 +47254,133102 +47255,133099 +47256,133100 +47257,132513 +47263,132771 +47267,135005 +47268,135723 +47285,135699 +47291,132963 +47292,132572 +47293,132558 +47294,136035 +47296,132607 +47297,135006 +47299,132607 +47302,133479 +47303,133480 +47309,133696 +47310,133696 +47311,132795 +47312,132792 +47313,132396 +47314,133661 +47325,133661 +47330,133067 +47345,132370 +47347,132675 +47348,132642 +47356,132622 +47373,135029 +47374,132539 +47375,135024 +47397,132750 +47402,135046 +47403,132542 +47404,132506 +47405,132615 +47406,132509 +47407,133076 +47408,132587 +47409,132506 +47410,132542 +47411,132606 +47412,132506 +47413,132606 +47414,132539 +47415,132503 +47416,132618 +47417,132585 +47418,132615 +47419,132509 +47420,132587 +47421,132506 +47422,132606 +47423,132539 +47424,132585 +47425,132506 +47426,132606 +47427,132539 +47428,132542 +47433,133134 +47434,135197 +47435,135180 +47436,132603 +47437,132743 +47438,135678 +47444,135612 +47445,133964 +47446,132791 +47447,134405 +47448,133655 +47449,135346 +47450,132675 +47451,132675 +47452,132675 +47453,132675 +47454,135036 +47455,132675 +47456,132675 +47457,132675 +47458,132675 +47459,136124 +47471,132791 +47472,132791 +47477,133697 +47478,135392 +47479,132548 +47491,132790 +47492,132790 +47493,132621 +47495,132500 +47501,132609 +47504,135145 +47505,133194 +47506,133160 +47507,134175 +47508,134170 +47509,134162 +47510,134179 +47511,134177 +47512,133662 +47518,132740 +47520,133696 +47521,132305 +47522,132345 +47527,135849 +47528,133603 +47548,135145 +47549,133615 +47550,133617 +47551,133619 +47559,133654 +47560,133696 +47567,133160 +47568,133160 +47577,132303 +47580,135822 +47581,132386 +47582,134196 +47583,134339 +47586,132540 +47588,133772 +47589,133772 +47590,133615 +47591,133617 +47592,133619 +47593,133124 +47594,133160 +47595,135473 +47596,132944 +47604,134890 +47605,135698 +47606,133521 +47607,135448 +47626,133767 +47627,132640 +47628,132641 +47629,132557 +47630,135493 +47631,135493 +47632,135493 +47633,135493 +47634,135493 +47635,135493 +47636,135493 +47637,135493 +47638,135493 +47639,135493 +47640,135493 +47641,135493 +47642,135493 +47643,135493 +47644,135493 +47645,135493 +47646,135271 +47647,135271 +47648,135277 +47649,135277 +47650,135277 +47651,135277 +47652,135277 +47653,135277 +47654,135277 +47655,135277 +47656,135277 +47657,135277 +47658,135277 +47659,135277 +47660,135277 +47661,135277 +47662,135277 +47663,135277 +47664,135277 +47665,135277 +47666,135277 +47667,135277 +47668,135277 +47669,135277 +47670,135277 +47671,135277 +47672,135277 +47673,135277 +47674,135277 +47675,135277 +47676,135277 +47677,135531 +47678,135531 +47679,135531 +47680,135531 +47681,135531 +47682,135531 +47683,135531 +47684,135531 +47685,135531 +47686,135531 +47687,135412 +47688,135531 +47689,135531 +47690,135531 +47692,132606 +47694,134139 +47696,135919 +47699,135470 +47700,133442 +47701,133443 +47704,132500 +47706,132963 +47707,133754 +47710,135610 +47711,135641 +47712,135641 +47713,135641 +47714,135641 +47715,135641 +47716,135641 +47717,135641 +47718,135641 +47719,135641 +47720,135641 +47721,135641 +47722,135641 +47723,135641 +47724,135641 +47730,134179 +47731,135753 +47732,132447 +47733,135697 +47734,135229 +47735,135229 +47736,133345 +47737,135229 +47739,135005 +47740,133536 +47742,133523 +47743,135190 +47744,135196 +47745,132197 +47746,133695 +47751,132939 +47753,135010 +47754,135229 +47755,135229 +47759,133192 +47760,133917 +47761,133921 +47763,133783 +47765,135805 +47767,134685 +47768,134685 +47769,134509 +47770,134510 +47771,132448 +47772,134511 +47773,132240 +47774,132241 +47776,132406 +47777,133883 +47778,134667 +47779,134513 +47780,134512 +47798,132230 +47799,133081 +47802,132395 +47803,132395 +47804,132395 +47805,132395 +47806,132395 +47807,132395 +47808,132395 +47809,132395 +47810,132395 +47811,132395 +47812,132395 +47816,133784 +47817,133786 +47818,132392 +47819,132392 +47820,132392 +47821,132392 +47822,132392 +47823,132392 +47824,132392 +47825,133082 +47836,134020 +47838,135060 +47839,132736 +47843,132938 +47862,135548 +47864,135511 +47865,135511 +47875,135623 +47876,132649 +47879,135277 +47880,134955 +47881,134955 +47883,132493 +47887,135005 +47888,132493 +47892,134155 +47894,133483 +47895,135053 +47897,133117 +47898,133565 +47899,136171 +47900,132506 +47901,134727 +47902,134879 +47903,134725 +47904,134767 +47905,134726 +47906,134230 +47907,134955 +47908,134955 +47909,135277 +47911,134955 +47912,133953 +47913,132542 +47914,132539 +47915,134055 +47916,133117 +47917,133749 +47918,132810 +47919,132809 +47920,134955 +47921,134955 +47922,135271 +47923,135271 +47925,135511 +47926,133000 +47928,135432 +47930,133839 +47931,133838 +47933,135660 +47934,132265 +47949,132756 +47950,135259 +47951,133191 +47969,132779 +47975,134648 +47976,135296 +47977,135709 +47986,134667 +47987,134667 +47988,134698 +47989,134921 +47990,134668 +47991,134700 +47992,133553 +47993,134667 +47994,135209 +47995,134652 +47996,135583 +47997,134993 +47998,135115 +47999,135113 +48000,133551 +48001,135494 +48002,135606 +48003,135710 +48004,135115 +48005,135113 +48006,134399 +48007,134423 +48008,134425 +48009,134424 +48010,134422 +48011,132729 +48012,132727 +48013,132633 +48014,132639 +48015,132754 +48016,132752 +48017,132980 +48018,132962 +48019,133108 +48020,133108 +48021,133192 +48022,133127 +48023,135298 +48024,133068 +48025,133068 +48026,135710 +48027,134196 +48028,135606 +48029,133552 +48030,135208 +48031,135708 +48032,132988 +48033,133188 +48034,132974 +48035,135431 +48036,132991 +48037,132968 +48038,135604 +48039,132971 +48040,135488 +48041,135487 +48042,135487 +48043,134697 +48044,134813 +48045,134695 +48050,134667 +48051,134648 +48052,135113 +48053,132752 +48054,132731 +48055,132729 +48056,133127 +48057,133127 +48058,133076 +48059,132974 +48060,132975 +48061,135369 +48062,135401 +48063,133482 +48064,135316 +48065,133514 +48066,132436 +48067,135543 +48068,134993 +48069,134993 +48070,134951 +48071,133329 +48078,135297 +48079,135296 +48086,134468 +48113,133195 +48130,132641 +48131,132640 +48155,132637 +48156,132449 +48157,135425 +48158,134234 +48159,133511 +48160,133456 +48161,133456 +48162,134115 +48163,134115 +48164,132601 +48165,135056 +48166,135689 +48167,132737 +48168,135271 +48169,135374 +48170,135183 +48171,132659 +48172,134417 +48173,135038 +48174,135058 +48175,132628 +48177,134728 +48183,135623 +48200,132393 +48201,132960 +48210,134968 +48211,134987 +48212,134988 +48213,135474 +48214,135545 +48215,135512 +48216,135486 +48217,133155 +48218,133097 +48219,133097 +48220,133097 +48221,132659 +48222,132659 +48223,135107 +48224,134685 +48225,132556 +48226,132940 +48227,132948 +48246,133071 +48247,133121 +48248,135650 +48252,135055 +48253,132614 +48254,132946 +48255,132946 +48256,132496 +48257,133071 +48258,132648 +48259,132639 +48261,133190 +48262,133190 +48285,132989 +48286,132582 +48287,132953 +48288,135054 +48290,135149 +48291,132517 +48292,135053 +48293,135051 +48294,135518 +48295,134601 +48296,134599 +48297,135056 +48298,135033 +48299,132692 +48300,132673 +48301,133155 +48302,133155 +48303,133134 +48304,132986 +48305,132950 +48306,132949 +48307,134608 +48308,135042 +48309,135061 +48311,132608 +48312,132601 +48313,132614 +48314,132613 +48315,132601 +48316,132611 +48321,132609 +48322,132607 +48324,132608 +48325,132601 +48326,132601 +48334,133794 +48335,133794 +48336,134906 +48337,135649 +48338,133409 +48339,132790 +48340,132783 +48341,136249 +48342,133743 +48344,134070 +48347,132614 +48348,132616 +48349,132611 +48350,135437 +48351,135511 +48352,132513 +48353,132503 +48354,132496 +48355,132516 +48356,132496 +48357,132515 +48358,132502 +48359,132496 +48360,132516 +48361,132522 +48362,132592 +48363,132542 +48364,132551 +48365,132573 +48366,132551 +48367,132565 +48368,132564 +48369,132559 +48370,132551 +48371,132574 +48372,132587 +48373,132615 +48374,132616 +48375,135805 +48376,132522 +48377,132520 +48378,132585 +48379,132588 +48380,135650 +48381,136245 +48382,135432 +48383,135056 +48384,132666 +48385,133134 +48386,133134 +48387,132950 +48388,132187 +48394,134794 +48395,135493 +48396,135646 +48397,135638 +48398,135277 +48399,135145 +48400,135145 +48401,135277 +48402,135271 +48403,135473 +48404,135145 +48405,132395 +48406,135145 +48407,133486 +48408,135271 +48434,133097 +48435,133097 +48436,133097 +48438,134508 +48446,132647 +48447,132941 +48448,134648 +48449,134642 +48450,132646 +48451,132942 +48452,132941 +48453,134585 +48454,134585 +48455,132648 +48456,134641 +48457,132639 +48466,132639 +48467,132959 +48468,134657 +48469,132692 +48470,134695 +48471,132738 +48472,132585 +48473,132751 +48474,134695 +48475,132502 +48476,132741 +48477,132502 +48478,132560 +48479,132560 +48480,134609 +48481,132651 +48482,134609 +48483,132492 +48484,132737 +48485,134628 +48486,134628 +48487,132633 +48488,134667 +48489,134667 +48490,132511 +48491,132633 +48492,134667 +48493,134667 +48494,132684 +48495,132949 +48496,132748 +48502,135641 +48503,133449 +48504,133450 +48505,133448 +48506,133451 +48507,133338 +48508,133333 +48509,133335 +48510,133332 +48511,133334 +48512,133331 +48521,135271 +48536,136099 +48537,136099 +48576,135026 +48577,132165 +48578,132165 +48580,134285 +48581,134279 +48582,134273 +48584,132981 +48585,132990 +48586,133194 +48587,132990 +48588,133194 +48589,134652 +48590,133850 +48591,135113 +48592,134537 +48593,132731 +48594,132990 +48595,133108 +48596,134652 +48597,134637 +48598,135113 +48599,132718 +48600,132718 +48601,133108 +48602,133108 +48603,134632 +48604,132629 +48605,132988 +48606,133068 +48607,134655 +48608,134672 +48609,135115 +48610,132628 +48611,132988 +48612,133068 +48613,133068 +48614,133068 +48615,134672 +48616,135115 +48617,134940 +48618,132972 +48619,133083 +48621,133155 +48622,134617 +48623,135060 +48624,132687 +48625,132972 +48626,134619 +48627,134617 +48628,132972 +48629,133155 +48630,134688 +48631,135060 +48632,132687 +48633,133195 +48634,134619 +48635,135060 +48636,133155 +48637,132687 +48638,134619 +48639,132744 +48640,132975 +48641,133109 +48642,134701 +48643,135061 +48644,133873 +48645,133023 +48646,134582 +48647,132744 +48648,134699 +48649,132975 +48650,133109 +48651,134701 +48652,135061 +48659,132503 +48660,132501 +48661,132503 +48662,132616 +48663,132589 +48664,132616 +48668,132588 +48669,132582 +48670,132617 +48671,132502 +48672,132590 +48673,132617 +48674,132502 +48675,132590 +48676,132501 +48677,132501 +48678,132562 +48679,132562 +48680,132395 +48681,132608 +48682,132608 +48683,132502 +48684,132601 +48685,132569 +48686,132502 +48687,132601 +48688,132569 +48689,132501 +48690,132613 +48691,132569 +48692,134126 +48698,132579 +48705,134468 +48708,134372 +48709,134477 +48710,134476 +48711,133134 +48717,132949 +48718,134226 +48719,133132 +48720,134479 +48721,134599 +48722,135033 +48723,132684 +48725,134226 +48726,133132 +48727,134599 +48728,132949 +48729,135033 +48730,132684 +48733,135050 +48734,133076 +48735,132953 +48736,132716 +48737,133155 +48738,133155 +48739,133108 +48740,133109 +48742,133931 +48743,133929 +48744,133930 +48745,132962 +48746,133132 +48747,134599 +48748,135043 +48749,132718 +48750,132718 +48751,132962 +48752,133132 +48753,134599 +48754,135043 +48755,132718 +48756,132633 +48757,132945 +48758,133077 +48759,132633 +48760,132945 +48761,133077 +48762,134667 +48763,135060 +48764,134667 +48765,135060 +48792,132740 +48793,132963 +48794,133124 +48795,134693 +48796,135053 +48797,132740 +48798,132963 +48799,133124 +48800,134693 +48801,135053 +48802,133886 +48803,133409 +48804,133409 +48805,133409 +48806,132395 +48807,134519 +48809,135149 +48810,132536 +48811,132567 +48812,132539 +48813,132542 +48814,132545 +48819,132586 +48820,132607 +48821,132616 +48822,132614 +48823,132608 +48826,132612 +48827,132611 +48828,132604 +48829,132605 +48830,132719 +48831,132626 +48832,132738 +48833,132670 +48834,133770 +48835,133757 +48836,133754 +48837,133764 +48838,133775 +48839,133766 +48840,132965 +48841,132937 +48842,132940 +48843,132943 +48844,132960 +48845,132953 +48846,133351 +48847,133347 +48848,133346 +48849,134975 +48850,134966 +48851,134978 +48852,134976 +48853,134977 +48854,135328 +48855,135642 +48856,135148 +48857,135156 +48858,133051 +48859,135291 +48860,133041 +48861,135152 +48862,135140 +48868,133776 +48869,133770 +48870,133758 +48871,133772 +48872,135569 +48873,134373 +48875,134295 +48876,133850 +48877,135213 +48878,135213 +48881,134582 +48886,135713 +48887,135713 +48888,135713 +48891,135606 +48892,133553 +48893,133739 +48894,134557 +48895,134556 +48899,132395 +48900,135266 +48901,135264 +48902,135519 +48905,132954 +48906,134997 +48907,134998 +48908,133551 +48911,132737 +48912,132737 +48913,132639 +48914,132982 +48915,132962 +48916,132716 +48917,132958 +48918,132734 +48919,132984 +48920,132986 +48921,132692 +48922,132986 +48923,132972 +48924,132692 +48925,132643 +48926,132985 +48927,132746 +48928,132737 +48930,132539 +48931,133276 +48935,135149 +48936,134282 +48938,133276 +48941,133077 +48942,132751 +48943,132585 +48944,133077 +48945,132751 +48946,134586 +48947,132585 +48948,132262 +48951,132263 +48963,132713 +48964,132577 +48965,135638 +48966,135866 +48967,132648 +48970,132199 +48971,134904 +48983,135277 +48984,132541 +48985,132541 +48988,132541 +48989,132541 +48992,133208 +48995,132949 +48996,134294 +49004,132944 +49005,133421 +49009,135855 +49044,133131 +49057,132592 +49062,132482 +49070,132448 +49071,132470 +49082,136044 +49087,133135 +49090,133172 +49111,133562 +49112,135607 +49113,135607 +49114,135555 +49127,136061 +49132,135209 +49133,133552 +49134,133536 +49135,133553 +49136,133554 +49137,135298 +49138,135555 +49139,135606 +49140,135511 +49141,135710 +49142,135583 +49143,135296 +49144,135629 +49145,135606 +49146,133551 +49147,135708 +49148,135196 +49149,132460 +49150,132412 +49151,132470 +49152,132412 +49153,134997 +49154,134999 +49155,134998 +49164,132228 +49249,133524 +49293,132687 +49294,132687 +49324,132791 +49325,132791 +49359,132758 +49393,135629 +49426,134144 +49561,132501 +49580,135033 +49624,134476 +49625,135026 +49633,132800 +49636,132791 +49649,132938 +49650,132795 +49684,133194 +49685,133109 +49686,133194 +49711,133278 +49712,133443 +49837,133201 +49839,132940 +49840,133719 +49870,132226 +49871,132797 +49872,132797 +49873,132797 +49880,134709 +49881,133639 +49933,134940 +49950,132226 +49951,133154 +49952,134616 +49953,135033 +49954,132702 +49955,134616 +49956,135033 +49957,132970 +49958,132703 +49959,134621 +49960,132987 +49961,134620 +49962,135033 +49963,132701 +49964,134622 +49965,132951 +49966,132959 +49967,132727 +49968,132646 +49969,132638 +49970,135709 +49971,135710 +49972,133698 +49973,133699 +49974,133699 +49987,133784 +49993,133529 +49995,135114 +49996,134703 +49998,132985 +49999,132757 +50001,132756 +50002,134705 +50003,135114 +50005,133114 +50007,133114 +50008,133114 +50009,135121 +50010,135121 +50011,135121 +50012,135121 +50013,135121 +50014,135121 +50015,135114 +50016,135114 +50017,135114 +50018,133114 +50019,133114 +50020,133114 +50081,135060 +50082,135060 +50083,135060 +50084,135060 +50173,134581 +50176,134581 +50184,133127 +50185,135060 +50186,132736 +50189,133700 +50190,133701 +50216,133784 +50376,133422 +50455,134139 +50456,136039 +50459,133660 +50468,135005 +50472,133565 +50476,135005 +50477,133565 +50479,133565 +50480,132716 +50486,133687 +50487,133687 +50488,133687 +50489,133687 +50493,134547 +50494,135341 +50495,135341 +50501,133923 +50502,133925 +50528,133149 +50529,133149 +50537,135794 +50557,133117 +50564,133152 +50565,133152 +50566,135022 +50567,134591 +50568,132539 +50569,133117 +50573,133687 +50574,133687 +50575,133687 +50576,133687 +50577,133687 +50578,133671 +50579,132551 +50580,132612 +50581,135055 +50582,132492 +50583,132790 +50584,134188 +50585,133788 +50586,134374 +50630,134335 +50631,135026 +50652,133152 +50686,135026 +50687,135031 +50689,135024 +50690,135028 +50691,135027 +50692,135022 +50694,133996 +50695,133196 +50696,132833 +50703,132648 +50704,132552 +50705,132648 +50706,133101 +50707,133122 +50733,133836 +50737,133975 +50842,133566 +50843,133567 +50844,133568 +50845,133569 +50849,133743 +50859,135026 +50860,135026 +50861,135026 +50862,135026 +50863,135026 +50881,133696 +50902,132793 +50903,132797 +50919,132191 +50992,132798 +51020,132246 +51271,132951 +51621,134154 +51682,133743 +51731,132798 +51758,132574 +51919,133123 +51920,133123 +51926,135277 diff --git a/HermesProxy/CSV/ItemEffect1.csv b/HermesProxy/CSV/ItemEffect1.csv new file mode 100644 index 00000000..cfae38e3 --- /dev/null +++ b/HermesProxy/CSV/ItemEffect1.csv @@ -0,0 +1,7495 @@ +ID,LegacySlotIndex,TriggerType,Charges,CoolDownMSec,CategoryCoolDownMSec,SpellCategoryID,SpellID,ChrSpecializationID,ParentItemID +97043,0,2,0,-1,-1,0,18077,0,899 +97044,0,0,0,-1,-1,0,469,0,900 +97045,0,0,0,-1,-1,0,472,0,903 +97046,0,0,-1,-1,-1,0,860,0,1105 +97047,0,1,0,-1,-1,0,9396,0,892 +97048,0,0,0,0,3000,330,578,0,1041 +97049,0,0,0,0,0,0,581,0,1042 +97050,0,0,0,0,0,0,580,0,1043 +97051,0,0,0,0,0,0,579,0,1044 +97052,0,0,0,120000,60000,12,547,0,1184 +97053,0,0,-1,-1,-1,0,8176,0,1187 +97054,0,0,-1,-1,-1,0,890,0,1101 +97055,0,0,-1,1000,0,0,673,0,1177 +97056,0,0,-1,0,60000,24,1940,0,1178 +97057,0,0,-1,-1,-1,0,494,0,986 +97058,0,0,-1,-1,-1,0,497,0,989 +97059,0,0,0,3600000,0,0,18831,0,1315 +97060,0,2,0,-1,-1,0,13480,0,1318 +97061,0,0,-1,-1,-1,0,735,0,1136 +97062,0,0,-1,-1,-1,0,3697,0,1138 +97063,0,0,-1,-1,-1,0,4993,0,1139 +97064,0,0,-1,-1,-1,0,3072,0,1108 +97065,0,0,-1,-1,-1,0,627,0,1109 +97066,0,0,-1,-1,-1,0,726,0,1111 +97067,0,0,-1,0,0,0,560,0,1052 +97068,0,0,-1,0,1000,11,5005,0,724 +97069,0,0,-1,-1,-1,0,2554,0,728 +97070,0,2,0,-1,-1,0,17504,0,809 +97071,0,2,0,-1,-1,0,13439,0,810 +97072,0,0,-1,0,1000,11,435,0,733 +97073,0,0,-1,300000,120000,4,3591,0,737 +97074,0,0,0,1800000,0,0,17712,0,833 +97075,1,1,0,-1,-1,0,5707,0,833 +97076,0,0,-1,0,60000,24,8312,0,835 +97077,0,0,-1,0,1000,11,433,0,787 +97078,0,0,-1,-1,-1,0,29467,0,23545 +97080,0,0,0,-1,-1,0,459,0,842 +97081,0,0,-1,-1,-1,0,3364,0,1093 +97082,0,0,-1,-1,-1,0,615,0,1095 +97083,0,0,-1,-1,-1,0,616,0,1096 +97084,0,0,-1,-1,-1,0,619,0,1099 +97085,0,0,-1,-1,-1,0,620,0,1100 +97086,0,0,-1,0,0,0,557,0,1048 +97087,0,2,0,-1,-1,0,18797,0,871 +97088,0,1,0,-1,-1,0,18049,0,873 +97089,0,0,-1,-1,-1,0,458,0,875 +97090,0,2,0,-1,-1,0,8552,0,880 +97091,0,0,-1,0,0,0,558,0,1049 +97092,0,0,-1,0,1000,11,5006,0,1082 +97093,0,1,0,0,-1,0,7597,0,867 +97094,1,1,0,-1,-1,0,9331,0,867 +97095,2,1,0,-1,-1,0,18074,0,867 +97096,0,1,0,0,0,0,7518,0,868 +97097,0,0,-1,-1,-1,0,609,0,1086 +97098,0,0,-1,-1,-1,0,656,0,1141 +97099,0,0,-1,-1,-1,0,659,0,1144 +97100,0,0,-1,-1,-1,0,7330,0,1146 +97101,0,0,-1,-1,-1,0,662,0,1149 +97102,0,0,-1,-1,-1,0,3725,0,1150 +97103,0,0,-1,-1,-1,0,664,0,1151 +97104,0,0,-1,0,1000,11,434,0,414 +97105,0,0,-1,0,1000,11,435,0,422 +97106,0,0,-1,-1,-1,0,610,0,1087 +97107,0,0,-1,-1,-1,0,3071,0,1088 +97108,0,0,-1,0,1000,11,5006,0,1017 +97109,0,0,-1,0,0,11,7291,0,1165 +97110,0,0,-1,0,1000,11,433,0,961 +97111,0,1,0,-1,-1,0,18815,0,1168 +97112,1,1,0,-1,-1,0,18816,0,1168 +97113,0,0,-1,-1,-1,4,431,0,1267 +97114,0,2,0,-1,-1,0,18208,0,1265 +97115,0,0,-1,-1,-1,0,3070,0,1084 +97116,0,0,-1,-1,-1,0,1150,0,1085 +97117,0,0,-1,-1,-1,0,540,0,1089 +97118,0,0,-1,-1,-1,0,476,0,966 +97119,0,0,-1,-1,1000,11,434,0,1321 +97120,0,0,-1,-1,120000,1153,7396,0,1322 +97121,0,0,-1,0,1000,11,434,0,1113 +97122,0,0,-1,0,1000,11,435,0,1114 +97123,0,0,-1,-1,1000,11,435,0,1119 +97124,0,0,-10,-1,-1,0,1500,0,836 +97125,0,0,-1,-1,-1,4,432,0,1268 +97126,0,0,0,-1,-1,0,468,0,1122 +97127,0,0,0,-1,-1,0,472,0,1123 +97128,0,0,0,-1,-1,0,471,0,1124 +97129,0,0,-1,0,60000,24,2120,0,1127 +97130,0,0,-1,-1,-1,0,473,0,951 +97131,0,0,-1,1000,-1,0,8118,0,954 +97132,0,0,-1,-1,-1,0,486,0,976 +97133,0,0,-1,1000,-1,0,8096,0,955 +97134,0,0,-1,0,1000,11,433,0,761 +97135,0,0,-1,-1,-1,0,3723,0,967 +97136,0,0,-1,-1,-1,0,3073,0,968 +97137,0,0,-1,-1,-1,0,483,0,973 +97138,0,0,-1,-1,-1,0,484,0,974 +97139,0,0,-1,-1,-1,0,1017,0,1224 +97140,0,0,-1,-1,-1,0,650,0,1228 +97141,0,0,-1,1000,-1,0,2006,0,1176 +97142,0,0,-1,-1,-1,0,612,0,1091 +97143,0,0,-1,-1,-1,0,613,0,1092 +97144,0,0,-1,-1,-1,0,485,0,975 +97145,0,0,-1,0,0,0,561,0,1053 +97146,0,0,-1,0,0,0,565,0,1057 +97147,0,0,-1,0,0,0,569,0,1061 +97148,0,0,-1,-1,120000,4,438,0,1072 +97149,0,2,0,-1,-1,0,13524,0,934 +97150,0,2,0,-1,-1,0,18138,0,937 +97151,0,0,0,900000,0,0,18820,0,940 +97152,0,2,0,-1,-1,0,13752,0,869 +97153,0,0,-1,0,0,0,538,0,1038 +97154,0,0,0,30000,-1,0,47,0,941 +97155,0,1,0,0,-1,0,9308,0,942 +97156,1,1,0,-1,-1,0,18799,0,942 +97157,0,1,0,-1,-1,0,13390,0,943 +97158,0,1,0,-1,-1,0,17873,0,944 +97159,1,1,0,-1,-1,0,17897,0,944 +97160,0,0,0,-1,-1,0,458,0,823 +97163,0,0,-1,0,120000,1153,1138,0,1703 +97164,0,0,-1,60000,30000,29,1139,0,1704 +97165,0,2,0,-1,-1,0,16401,0,1726 +97166,0,2,0,-1,-1,0,13528,0,1727 +97167,0,0,-1,0,120000,4,441,0,929 +97168,0,0,-1,0,0,0,3731,0,1029 +97169,0,0,-1,0,0,0,533,0,1030 +97170,0,0,-1,0,0,0,534,0,1031 +97171,0,0,-1,0,0,0,3077,0,1032 +97172,0,0,-1,0,0,0,536,0,1033 +97173,0,0,-1,0,0,0,537,0,1034 +97174,0,0,-1,-1,-1,0,6632,0,1559 +97175,0,0,-1,-1,-1,0,971,0,1641 +97176,0,0,-1,0,1000,59,1135,0,1645 +97177,0,0,-1,-1,-1,0,983,0,1648 +97178,0,0,-1,0,1000,11,1128,0,1649 +97179,0,0,-1,-1,-1,0,766,0,1568 +97180,0,0,-1,-1,-1,0,991,0,1655 +97181,0,0,-1,-1,-1,0,3216,0,1657 +97182,0,0,-1,0,0,0,3217,0,1035 +97183,0,0,-1,0,0,0,531,0,1037 +97184,0,0,0,0,3000,330,580,0,1132 +97185,0,0,0,0,3000,330,581,0,1133 +97186,0,0,0,0,3000,330,459,0,1134 +97187,0,0,-1,0,120000,1153,8070,0,1970 +97188,0,0,0,60000,-1,0,403,0,1914 +97189,0,0,-5,-1,-1,0,2352,0,1918 +97190,0,0,-1,0,60000,24,133,0,1399 +97191,0,0,-1,0,300000,28,65,0,1400 +97192,0,0,-3,1800000,-1,0,365,0,1700 +97193,0,0,0,300000,0,0,8736,0,1933 +97194,0,0,-1,-1,-1,0,3366,0,2363 +97195,0,0,-1,0,0,0,3218,0,1603 +97196,0,0,-1,-1,-1,0,721,0,1231 +97197,0,0,-1,-1,-1,0,722,0,1232 +97198,0,0,-1,-1,-1,0,1045,0,1238 +97199,0,0,-1,-1,-1,0,496,0,1239 +97200,0,0,-1,-1,-1,0,732,0,1243 +97201,0,0,-1,-1,-1,0,734,0,1245 +97202,0,2,0,-1,-1,0,18090,0,1986 +97203,0,0,-1,0,1000,11,433,0,2070 +97204,0,0,-1,0,0,59,430,0,2071 +97205,0,0,-1,0,0,150,746,0,1251 +97206,0,0,-1,1000,0,0,2352,0,1253 +97207,0,1,0,0,0,0,758,0,1254 +97208,1,1,0,0,0,0,23480,0,1254 +97209,0,0,0,30000,0,0,4960,0,1352 +97210,0,1,0,-1,-1,0,13675,0,2040 +97211,0,0,0,30000,30000,24,133,0,1258 +97212,0,0,-1,-1,-1,0,1059,0,1334 +97213,0,0,-1,-1,-1,0,502,0,992 +97214,0,0,-1,-1,-1,0,506,0,994 +97215,0,0,0,-1,-1,0,133,0,996 +97216,0,2,0,-1,-1,0,89,0,997 +97217,0,0,-1,-1,-1,0,520,0,1004 +97218,0,0,-1,0,1000,59,430,0,159 +97219,0,0,-1,-1,-1,0,3086,0,3114 +97220,0,0,-1,-1,-1,0,3064,0,1651 +97221,0,0,-1,0,60000,24,13424,0,1434 +97222,0,0,-1,-1,-1,0,790,0,1339 +97223,0,0,-1,-1,-1,0,5307,0,1341 +97224,0,0,0,60000,30000,22,805,0,1350 +97225,0,0,-1,-1,-1,0,858,0,1567 +97226,0,2,0,-1,-1,0,13440,0,1481 +97227,0,0,-10,0,60000,24,5917,0,1191 +97228,0,0,-1,-1,-1,0,3733,0,1246 +97229,0,0,-1,-1,-1,0,3099,0,1250 +97230,0,0,-1,-1,-1,0,838,0,1554 +97231,0,2,0,-1,-1,0,13440,0,1482 +97232,0,1,0,-1,-1,0,9412,0,1484 +97233,0,0,-1,0,1000,11,1127,0,1487 +97234,0,0,-1,-1,-1,0,493,0,985 +97235,0,0,0,1800000,0,0,12257,0,744 +97236,0,0,-3,60000,20000,29,370,0,1995 +97237,0,0,-5,-1,1000,59,5257,0,1262 +97238,0,0,-10,30000,30000,29,835,0,1472 +97239,0,1,0,-1,-1,0,19409,0,1979 +97240,0,1,0,0,0,0,9414,0,1980 +97241,0,1,0,0,0,0,9402,0,1992 +97242,1,1,0,0,0,0,9412,0,1992 +97243,0,0,-1,1000,-1,0,8116,0,1477 +97244,0,0,-1,1000,-1,0,8094,0,1478 +97245,0,0,-1,-1,-1,0,993,0,1658 +97246,0,1,0,-1,-1,0,15714,0,1716 +97247,1,1,0,-1,-1,0,18369,0,1717 +97248,0,1,0,-1,-1,0,9411,0,1720 +97249,0,0,-1,-1,-1,0,539,0,1886 +97250,0,0,-1,-1,1000,11,434,0,1326 +97251,0,0,-1,0,1000,11,1127,0,1707 +97252,0,0,-1,0,1000,59,1133,0,1708 +97253,0,1,0,-1,-1,0,14799,0,1664 +97254,0,0,-1,-1,-1,0,1091,0,1676 +97255,0,0,-1,-1,-1,0,478,0,3090 +97256,0,2,0,-1,-1,0,18211,0,1982 +97257,0,0,-5,120000,0,0,706,0,1612 +97258,0,0,-1,0,0,0,3088,0,1619 +97259,0,0,-3,1800000,-1,0,955,0,1622 +97260,0,0,-1,0,0,0,3087,0,1597 +97261,0,2,0,-1,-1,0,18086,0,1728 +97262,0,0,-1,-1,-1,0,719,0,1229 +97263,0,0,-1,-1,-1,0,9437,0,7586 +97264,0,0,0,60000,-1,0,1152,0,2948 +97265,0,0,-1,0,3000,79,2374,0,2457 +97266,0,0,0,60000,-1,0,707,0,1444 +97267,0,0,0,1800000,0,0,18826,0,1447 +97268,0,0,-1,0,120000,4,806,0,1450 +97269,0,0,-1,-1,-1,0,3079,0,1112 +97270,0,0,-1,0,1000,59,431,0,1179 +97271,0,0,-1,1000,-1,0,8099,0,1180 +97272,0,0,-1,1000,-1,0,8112,0,1181 +97273,0,0,-1,-1,-1,0,29475,0,23547 +97274,0,0,-1,0,1000,11,833,0,1401 +97275,0,0,-5,0,60000,24,143,0,1402 +97276,0,0,-10,30000,30000,28,834,0,1403 +97277,0,0,-1,-1,-1,0,29483,0,23548 +97278,0,0,-1,-1,-1,0,784,0,1328 +97279,0,1,0,0,0,0,18097,0,1204 +97280,0,0,-1,0,1000,59,432,0,1205 +97281,0,0,-1,0,120000,4,2024,0,1710 +97282,0,0,-1,1000,-1,0,8100,0,1711 +97283,0,0,-1,1000,-1,0,8113,0,1712 +97284,0,0,0,300000,0,0,14053,0,1713 +97285,0,1,0,-1,-1,0,7597,0,1680 +97286,0,0,-1,-1,-1,0,727,0,1681 +97287,0,1,0,-1,-1,0,9397,0,862 +97288,0,0,-5,0,300000,28,1152,0,1851 +97289,0,0,0,60000,-1,0,1139,0,1854 +97290,0,0,-1,-1,-1,0,3062,0,1877 +97291,0,0,-1,-1,-1,0,3213,0,1878 +97292,0,0,-1,-1,-1,0,573,0,1882 +97293,0,0,-1,-1,-1,0,1027,0,1534 +97294,0,2,0,-1,-1,0,16409,0,3822 +97295,0,0,-1,-1,-1,0,3353,0,3612 +97296,0,0,-1,0,120000,4,2379,0,2459 +97297,0,0,-1,-1,-1,0,2006,0,3438 +97298,0,0,-10,30000,-1,0,89,0,3441 +97299,0,0,-1,0,0,0,940,0,4179 +97300,0,0,-1,1000,-1,0,2827,0,2927 +97301,0,0,-1,0,1000,11,5004,0,2680 +97302,0,0,-1,0,1000,11,433,0,2681 +97303,0,0,-1,0,1000,11,2639,0,2682 +97304,0,0,-1,0,1000,11,5005,0,2683 +97305,0,1,0,-1,-1,0,17878,0,3075 +97306,0,0,-1,-1,-1,0,3366,0,3499 +97307,0,0,-1,0,1000,11,435,0,3770 +97308,0,0,-1,0,1000,11,5005,0,2684 +97309,0,0,-1,-1,-1,0,3085,0,3118 +97310,0,1,0,-1,-1,0,7679,0,2816 +97311,1,1,0,-1,-1,0,7708,0,2816 +97312,0,0,-1,1000,-1,0,3112,0,3239 +97313,0,1,0,-1,-1,0,9416,0,2620 +97314,0,0,-1,0,1000,11,1127,0,3771 +97315,0,0,-1,0,1000,59,1133,0,3772 +97316,0,0,-1,-1,-1,0,3097,0,3146 +97317,0,0,-1,-1,60000,24,700,0,3434 +97318,0,0,0,-1,-1,0,8913,0,2808 +97319,0,0,-1,-1,-1,0,3366,0,3467 +97320,0,0,-1,-1,-1,0,1087,0,3139 +97321,0,0,-1,0,120000,4,3592,0,2633 +97322,0,0,-1,-1,-1,0,3141,0,3096 +97323,0,0,-1,0,120000,4,708,0,3768 +97324,0,0,-1,1000,-1,0,2828,0,2862 +97325,0,0,-1,1000,-1,0,2829,0,2863 +97326,0,0,-1,0,-1,0,2824,0,2893 +97327,0,0,-1,0,1000,11,5006,0,3665 +97328,0,0,-1,-1,-1,0,3696,0,3097 +97329,0,0,-1,-1,-1,0,487,0,3098 +97330,0,2,0,0,0,0,13440,0,2256 +97331,0,0,-1,-1,-1,0,3074,0,3094 +97332,0,0,-1,-1,-1,0,3075,0,3095 +97333,0,0,-1,-1,-1,0,3682,0,3092 +97334,0,0,-1,-1,-1,0,872,0,3093 +97335,0,0,-1,0,0,0,987,0,4183 +97336,0,0,-1,0,0,0,967,0,4185 +97337,0,2,0,-1,-1,0,18199,0,2299 +97338,0,0,-1,-1,-1,0,2173,0,2406 +97339,0,0,-1,-1,-1,0,2174,0,2407 +97340,0,0,-1,-1,-1,0,2175,0,2408 +97341,0,0,-1,-1,-1,0,2176,0,2409 +97342,0,2,0,-1,-1,0,9796,0,3687 +97343,1,2,0,-1,-1,0,13441,0,3687 +97344,2,2,0,-1,-1,0,13438,0,3687 +97345,0,1,0,-1,-1,0,14825,0,3604 +97346,0,0,-1,0,3000,79,3164,0,3391 +97347,0,1,0,-1,-1,0,29417,0,3605 +97348,0,0,-1,0,3000,79,3166,0,3383 +97349,0,0,-1,0,120000,4,2380,0,3384 +97350,0,0,-1,0,120000,4,438,0,3385 +97351,0,0,-10,1800000,-1,0,1459,0,1912 +97352,0,0,-1,-1,-1,0,1107,0,4211 +97353,0,0,-1,0,0,0,577,0,4170 +97354,0,0,-1,-1,-1,0,3180,0,3393 +97355,0,0,-1,0,0,79,3182,0,3394 +97356,0,2,0,-1,-1,0,16409,0,1387 +97357,0,0,-1,0,120000,1153,4071,0,4366 +97358,0,0,-1,1000,-1,0,4056,0,4367 +97359,0,0,-1,-1,-1,0,11008,0,2596 +97360,0,0,-1,-1,-1,0,2408,0,2598 +97361,0,0,-1,-1,-1,0,2409,0,2599 +97362,0,1,0,-1,-1,0,7552,0,2907 +97363,0,0,-1,-1,-1,0,3703,0,4217 +97364,0,0,-1,-1,-1,0,3694,0,1536 +97365,0,0,0,900000,0,0,835,0,1404 +97366,0,0,-1,-1,-1,0,866,0,1571 +97367,0,0,-1,0,0,0,902,0,1589 +97368,0,1,0,-1,-1,0,21142,0,3475 +97369,0,0,-1,600000,120000,4,3680,0,3823 +97370,0,0,-1,-1,-1,0,3533,0,3872 +97371,0,0,-1,-1,-1,0,3534,0,3873 +97372,0,0,-1,0,0,0,906,0,1591 +97373,0,0,-1,-1,-1,0,3902,0,4355 +97374,0,0,-1,0,-1,0,2823,0,2892 +97375,0,0,-1,-1,-1,0,3535,0,3874 +97376,0,0,-1,1000,0,0,2352,0,2789 +97377,0,0,-1,-1,-1,0,936,0,4216 +97378,0,0,-1,0,3000,79,2381,0,2461 +97379,0,0,-1,0,1000,11,5005,0,3662 +97380,0,0,-1,0,0,0,876,0,4171 +97381,0,0,-1,-1,-1,0,3904,0,4356 +97382,0,0,-1,-1,-1,0,2352,0,2790 +97383,0,0,-1,-1,-1,0,2352,0,2792 +97384,0,0,-1,-1,-1,0,2342,0,2553 +97385,0,0,0,1800000,-1,0,554,0,2826 +97386,0,0,-1,0,1000,59,432,0,2136 +97387,0,0,-1,-1,-1,0,651,0,3119 +97388,0,0,-1,-1,-1,0,985,0,3120 +97389,0,0,-1,-1,-1,0,3745,0,3121 +97390,0,0,0,0,3000,330,470,0,2411 +97391,0,1,0,-1,-1,0,29415,0,2662 +97392,0,1,0,-1,-1,0,29625,0,2099 +97393,0,1,0,-1,-1,0,29418,0,2101 +97394,0,0,-1,-1,-1,0,2411,0,2601 +97395,0,0,-1,-1,-1,0,2412,0,2602 +97396,0,0,-1,-1,-1,0,3066,0,3102 +97397,0,0,-1,1000,-1,0,2830,0,2871 +97398,0,0,-1,1000,-1,0,8119,0,2289 +97399,0,0,-1,1000,-1,0,8097,0,2290 +97400,0,1,0,-1,-1,0,17747,0,2231 +97401,0,0,-1,-1,-1,0,11007,0,2686 +97402,0,0,-1,0,1000,11,5005,0,2687 +97403,0,1,0,-1,-1,0,9359,0,1998 +97404,0,2,0,-1,-1,0,18091,0,2000 +97405,0,1,0,-1,-1,0,5102,0,2002 +97406,0,0,-1,0,1000,11,433,0,2679 +97407,0,0,-1,0,-1,0,11007,0,2894 +97408,0,0,-1,1000,-1,0,2826,0,2896 +97409,0,1,0,-1,-1,0,9328,0,2549 +97410,0,0,-1,0,0,0,924,0,3132 +97411,0,0,-1,-1,-1,0,2760,0,2881 +97412,0,1,0,-1,-1,0,14824,0,2102 +97413,0,1,0,0,-1,0,9331,0,2262 +97414,0,2,0,-1,-1,0,14119,0,2263 +97415,0,0,-1,0,0,0,914,0,3130 +97416,0,1,0,-1,-1,0,7686,0,2879 +97417,1,1,0,-1,-1,0,7700,0,2879 +97418,0,0,-1,-1,-1,0,2555,0,2698 +97419,0,0,-1,0,0,0,3092,0,3127 +97420,0,0,-1,0,1000,59,431,0,2288 +97421,0,0,0,60000,-1,0,109,0,3015 +97422,0,2,0,-1,-1,0,18217,0,2205 +97423,0,2,0,-1,-1,0,17153,0,2291 +97424,0,0,-1,0,0,0,3089,0,3129 +97425,0,0,-1,-1,-1,0,2171,0,2404 +97426,0,0,-1,-1,-1,0,2172,0,2405 +97427,0,0,-1,0,0,0,492,0,3133 +97428,0,0,-1,-1,-1,0,729,0,3134 +97429,0,1,0,-1,-1,0,9318,0,2721 +97430,0,0,-1,-1,-1,0,11007,0,2723 +97431,0,0,-1,-1,-1,0,846,0,3089 +97432,0,0,-1,-1,-1,0,3352,0,3611 +97433,0,1,0,-1,-1,0,29501,0,2824 +97434,0,1,0,-1,-1,0,29624,0,2825 +97435,0,2,0,-1,-1,0,18205,0,3194 +97436,0,1,0,-1,-1,0,7709,0,2277 +97437,0,0,0,1800000,0,0,14530,0,2820 +97438,0,0,-1,-1,-1,0,3526,0,3866 +97439,0,0,-1,-1,-1,0,3529,0,3868 +97440,0,0,-1,-1,-1,0,3080,0,3123 +97441,0,0,-1,-1,-1,0,1007,0,3124 +97442,0,0,-1,0,0,0,3746,0,3125 +97443,0,0,-1,0,0,0,3091,0,3126 +97444,0,0,0,600000,0,0,13744,0,2802 +97445,0,0,0,1800000,-1,0,505,0,2804 +97446,0,0,-1,-1,-1,0,655,0,3140 +97447,0,0,-1,0,1000,11,5004,0,2888 +97448,0,0,-1,-1,-1,0,714,0,3141 +97449,0,0,-1,-1,-1,0,3096,0,3144 +97450,0,0,-1,-1,120000,4,29236,0,3087 +97451,0,0,-1,-1,-1,0,3063,0,3088 +97452,0,1,0,-1,-1,0,9400,0,3073 +97453,0,0,-1,-1,-1,0,3536,0,3875 +97454,0,0,-1,-1,-1,0,3351,0,2882 +97455,0,2,0,-1,-1,0,18138,0,2163 +97456,0,0,-1,-1,-1,0,3530,0,3869 +97457,0,0,-1,-1,-1,0,3531,0,3870 +97458,0,0,-1,-1,-1,0,3532,0,3871 +97459,0,0,-1,-1,-1,0,3065,0,3091 +97460,0,0,-1,-1,-1,0,6534,0,3678 +97461,0,0,-1,-1,-1,0,3382,0,3679 +97462,0,0,-1,-1,-1,0,3457,0,3832 +97463,0,0,-1,-1,-1,0,3303,0,3608 +97466,0,0,0,60000,-1,0,437,0,2478 +97467,0,0,-1,0,0,59,1135,0,3773 +97468,0,0,-1,0,-1,0,3408,0,3775 +97469,0,0,-1,0,3000,79,2378,0,2458 +97470,0,0,-1,1000,-1,0,8115,0,3012 +97471,0,0,-1,0,-1,0,11202,0,3776 +97472,0,0,-1,-1,-1,0,11008,0,2593 +97473,0,0,-1,-1,-1,0,11009,0,2594 +97474,0,0,-1,-1,-1,0,3302,0,2883 +97475,0,0,-1,1000,-1,0,8091,0,3013 +97476,0,2,0,-1,-1,0,18107,0,2164 +97477,0,0,-1,-1,-1,0,844,0,3099 +97478,0,0,-1,-1,-1,0,3068,0,3100 +97479,0,0,0,-1,3000,330,472,0,2414 +97480,0,0,-1,-1,-1,0,11009,0,2595 +97481,0,1,0,-1,-1,0,7703,0,2950 +97482,0,0,-1,0,1000,11,5006,0,3666 +97483,0,0,-1,0,1000,11,435,0,2685 +97484,0,2,0,-1,-1,0,16409,0,2912 +97485,0,0,-1,0,60000,24,1090,0,2091 +97486,0,1,0,-1,-1,0,14828,0,2663 +97487,0,0,-1,-1,-1,0,631,0,3112 +97488,0,0,-1,-1,-1,0,3082,0,3113 +97489,0,2,0,-1,-1,0,18803,0,2243 +97490,0,1,0,-1,-1,0,7597,0,2244 +97491,0,0,-5,120000,-1,0,9489,0,7667 +97492,0,0,0,0,3000,330,471,0,2413 +97493,0,2,0,-1,-1,0,16415,0,2915 +97494,0,0,-1,-1,-1,0,2556,0,2699 +97495,0,0,-1,-1,-1,0,2558,0,2701 +97496,0,0,-1,0,1000,11,5005,0,3220 +97497,0,0,-1,0,120000,4,4042,0,3928 +97498,0,0,-1,-1,-1,0,3734,0,5141 +97499,0,0,-1,-1,-1,0,3734,0,4222 +97500,0,0,-1,-1,-1,0,791,0,4223 +97501,0,0,-1,1000,0,0,3594,0,3824 +97502,0,0,-1,-1,-1,0,3737,0,4226 +97503,0,0,-1,-1,-1,0,3900,0,4351 +97504,0,0,-1,-1,-1,0,3901,0,4352 +97505,0,0,-1,-1,-1,0,3903,0,4353 +97506,0,0,-1,0,60000,24,4068,0,4390 +97507,0,0,-1,-1,-1,0,6361,0,5161 +97508,0,0,-1,-1,-1,0,5287,0,5163 +97509,0,0,-1,-1,-1,0,4029,0,4411 +97510,0,0,0,2000,-1,0,4954,0,4704 +97511,0,0,-1,10000,-1,0,4130,0,4481 +97512,0,0,0,0,0,0,4055,0,4401 +97513,0,0,-1,0,0,0,567,0,4176 +97514,0,0,-1,0,0,0,848,0,4177 +97515,0,0,-1,0,0,0,944,0,4178 +97516,0,0,-1,600000,60000,24,4078,0,4391 +97517,0,0,-1,0,120000,1153,4072,0,4392 +97518,0,0,-1,-1,-1,0,5269,0,5126 +97519,0,0,-1,-1,-1,0,5275,0,5127 +97520,0,0,-1,-1,-1,0,1049,0,4218 +97521,0,0,-1,-1,-1,0,661,0,4220 +97522,0,0,-1,-1,-1,0,3692,0,4221 +97523,0,0,-1,-1,-1,0,5289,0,5142 +97524,0,0,-1,-1,-1,0,5310,0,5153 +97525,0,0,0,-1,-1,0,1538,0,3710 +97526,0,0,-1,-1,-1,0,5273,0,5129 +97527,0,0,-1,-1,-1,0,989,0,4282 +97528,0,0,-1,-1,-1,0,3069,0,4283 +97529,0,0,-1,10000,-1,0,5316,0,5165 +97530,0,0,-1,-1,-1,0,3803,0,4296 +97531,0,0,-1,-1,-1,0,3804,0,4297 +97532,0,0,-1,-1,-1,0,3806,0,4298 +97533,0,0,-1,-1,-1,0,3807,0,4300 +97534,0,0,0,0,0,0,4506,0,4559 +97535,0,0,-1,-1,-1,0,3670,0,3930 +97536,0,0,-3,1000,0,0,4318,0,4546 +97537,0,0,-1,-1,-1,0,3736,0,4224 +97538,0,0,-1,-1,-1,0,5309,0,4225 +97539,0,0,-1,600000,60000,24,6084,0,5332 +97540,0,1,0,-1,-1,0,7560,0,4548 +97542,0,0,-1,0,1000,11,433,0,5349 +97543,0,0,0,-1,-1,0,469,0,2412 +97544,0,0,-1,0,1000,11,434,0,2287 +97545,0,1,0,-1,-1,0,9400,0,4117 +97546,0,0,-1,-1,-1,0,3974,0,4405 +97547,0,0,-1,1000,-1,0,3975,0,4406 +97548,0,0,-1,-1,-1,0,854,0,4161 +97549,0,0,-1,-1,-1,0,894,0,4162 +97550,0,0,-1,0,1000,59,430,0,5350 +97551,0,0,-1,0,1000,11,5006,0,3726 +97552,0,1,0,-1,-1,0,7688,0,4331 +97553,0,1,0,-1,-1,0,9314,0,2271 +97554,0,2,0,-1,-1,0,18078,0,3336 +97555,0,0,-1,0,0,0,658,0,4188 +97556,0,0,-1,0,0,0,920,0,4189 +97557,0,0,0,3600000,15000,1141,9174,0,4264 +97558,0,0,-1,1000,-1,0,2833,0,4265 +97559,0,0,-1,0,3000,79,2367,0,2454 +97560,0,0,-1,0,120000,4,437,0,2455 +97561,0,0,-1,0,120000,4,2370,0,2456 +97562,0,0,-1,0,1000,11,5006,0,3727 +97563,0,0,-1,-1,-1,0,1089,0,3138 +97564,0,0,-1,-1,-1,0,614,0,4267 +97565,0,0,-1,0,1000,11,5007,0,4457 +97566,0,0,-1,1000,-1,0,8101,0,4422 +97567,0,0,-1,-1,-1,0,3474,0,4165 +97568,0,0,-1,-1,-1,0,1023,0,4166 +97569,0,0,-1,-1,-1,0,3684,0,4167 +97570,0,0,-1,0,0,0,3727,0,4168 +97571,0,0,-1,0,0,0,575,0,4169 +97572,0,0,-1,-1,-1,0,1153,0,4268 +97573,0,1,0,-1,-1,0,7689,0,4317 +97574,0,0,-1,0,1000,11,435,0,4593 +97575,0,0,-1,0,1000,11,1127,0,4594 +97576,0,0,-1,-1,-1,0,11009,0,4595 +97577,0,1,0,-1,-1,0,9329,0,3341 +97578,0,0,-1,-1,-1,0,4975,0,4750 +97579,0,0,-1,-1,-1,0,608,0,4141 +97580,0,0,-1,-1,-1,0,28285,0,4142 +97581,0,0,-1,-1,-1,0,619,0,4143 +97582,0,0,-1,-1,-1,0,3808,0,4301 +97583,0,0,-1,-1,-1,0,991,0,4147 +97584,0,0,-1,300000,-1,0,2791,0,4423 +97585,0,1,0,0,0,0,13669,0,4130 +97586,0,0,-1,0,60000,24,4062,0,4598 +97587,0,0,-1,0,1000,59,11009,0,4600 +97588,0,0,-1,0,1000,11,1129,0,4601 +97589,0,0,-1,0,1000,11,1129,0,4602 +97590,0,0,-1,0,1000,11,1127,0,4603 +97591,0,0,-1,-1,-1,0,4943,0,4624 +97592,0,0,-1,-1,-1,0,4034,0,4416 +97593,0,0,-1,-1,-1,0,5305,0,4157 +97594,0,0,-1,-1,-1,0,3549,0,4158 +97595,0,0,-1,0,1000,11,434,0,4592 +97596,0,0,-1,-1,-1,0,4030,0,4412 +97597,0,0,-1,-1,-1,0,4031,0,4413 +97598,0,0,-1,-1,-1,0,4032,0,4414 +97599,0,0,-1,-1,-1,0,4033,0,4415 +97600,0,0,-1,10000,-1,0,4131,0,4480 +97601,0,2,0,-1,-1,0,13496,0,4090 +97602,0,0,-1,-1,-1,0,6425,0,5484 +97603,0,0,-1,-1,-1,0,6426,0,5485 +97604,0,1,0,-1,-1,0,9133,0,4248 +97605,0,0,-1,-1,-1,0,4027,0,4409 +97606,0,0,-1,-1,-1,0,4028,0,4410 +97607,0,1,0,-1,-1,0,7680,0,2943 +97608,0,1,0,-1,-1,0,7709,0,2944 +97609,0,0,-1,-1,-1,0,870,0,3115 +97610,0,0,-1,0,60000,24,4065,0,4370 +97611,0,0,-1,0,120000,4,440,0,4596 +97612,0,0,-1,-1,-1,0,4509,0,4597 +97613,0,0,-1,-1,-1,0,1037,0,4163 +97614,0,0,-1,-1,-1,0,3896,0,4345 +97615,0,0,-1,-1,-1,0,654,0,4202 +97616,0,0,-1,1000,-1,0,3113,0,3240 +97617,0,0,-1,1000,-1,0,3114,0,3241 +97618,0,0,-1,-1,-1,0,730,0,4198 +97619,0,0,-1,-1,-1,0,3701,0,4199 +97620,0,0,-10,300000,120000,1153,18805,0,4381 +97621,0,0,-5,5000,-1,0,65,0,3507 +97622,0,0,-1,-1,-1,0,3379,0,3682 +97623,0,0,-1,0,1000,11,1127,0,4544 +97624,0,0,-1,-1,-1,0,6701,0,4354 +97625,0,0,-1,0,60000,24,4054,0,4358 +97626,0,0,-1,-1,-1,0,3183,0,3395 +97627,0,0,-1,-1,-1,0,3800,0,4293 +97628,0,0,-1,-1,-1,0,3802,0,4294 +97629,0,0,-1,-1,-1,0,3801,0,4295 +97630,0,0,-1,0,1000,11,5006,0,3663 +97631,0,0,-1,0,1000,11,5006,0,3664 +97633,0,0,0,3600000,0,0,4079,0,4397 +97634,0,0,-1,1000,-1,0,4075,0,4398 +97635,0,0,-1,-1,-1,0,3897,0,4347 +97636,0,0,-1,-1,-1,0,2363,0,2554 +97637,0,2,0,-1,-1,0,3742,0,3278 +97638,0,0,-1,-1,-1,0,1031,0,4212 +97639,0,0,-1,-1,-1,0,3083,0,3116 +97640,0,0,-1,-1,-1,0,3905,0,4348 +97641,0,0,-1,-1,-1,0,3899,0,4350 +97642,0,0,-1,-1,-1,0,6641,0,4152 +97643,0,0,-1,-1,-1,0,6637,0,4153 +97644,0,1,0,-1,-1,0,9361,0,2564 +97645,0,1,0,-1,-1,0,9400,0,2565 +97646,0,0,-1,-1,-1,0,2571,0,2761 +97647,0,0,-1,-1,-1,0,898,0,2762 +97648,0,0,-1,-1,-1,0,3682,0,4154 +97649,0,0,-1,-1,-1,0,481,0,4155 +97650,0,0,-1,-1,-1,0,3725,0,4156 +97651,0,0,-1,0,1000,11,434,0,4605 +97652,0,0,-1,0,1000,11,435,0,4606 +97653,0,0,-1,0,1000,11,1127,0,4607 +97654,0,0,-3,600000,60000,24,9515,0,3456 +97655,0,0,-1,-1,-1,0,3349,0,3609 +97656,0,0,-1,1000,0,0,3595,0,3829 +97657,0,0,-1,-1,-1,0,3455,0,3830 +97658,0,0,-1,0,1000,11,5007,0,3728 +97659,0,0,-1,0,1000,11,5007,0,3729 +97660,0,0,-1,-1,-1,0,625,0,4207 +97661,0,0,-1,-1,-1,0,950,0,4208 +97662,0,0,-1,-1,-1,0,535,0,4209 +97663,1,0,-1,0,120000,1153,10052,0,5513 +97664,1,0,-1,0,120000,1153,5405,0,5514 +97665,0,0,-1,0,0,0,926,0,4172 +97666,0,0,-1,-1,-1,0,3187,0,3396 +97667,0,0,-5,900000,0,0,4077,0,4386 +97668,0,0,-1,-1,-1,0,3350,0,3610 +97669,0,0,-1,-1,-1,0,3354,0,4215 +97670,0,0,-1,0,1000,59,6114,0,5342 +97671,0,0,-1,-1,-1,0,4035,0,4417 +97672,0,0,-1,0,1000,11,1129,0,4418 +97673,0,0,-1,1000,-1,0,8098,0,4419 +97674,0,0,-1,300000,-1,0,1008,0,4420 +97675,0,0,-1,-1,1000,11,2639,0,3448 +97676,0,0,-1,0,3000,79,3220,0,3389 +97677,0,0,-1,0,3000,79,3160,0,3390 +97678,0,0,-1,1000,-1,0,8095,0,4421 +97679,0,0,-1,-1,-1,0,6042,0,4210 +97680,0,0,-1,0,60000,24,4066,0,4374 +97681,0,0,-5,900000,0,0,4057,0,4376 +97682,0,0,-1,0,0,0,3728,0,4173 +97683,0,0,-1,1000,-1,0,2831,0,2304 +97684,0,0,-1,0,60000,24,4074,0,4384 +97685,0,0,-1,-1,-1,0,4239,0,4529 +97686,0,0,-1,0,60000,24,4062,0,4378 +97687,0,0,-1,-1,-1,0,3402,0,3735 +97688,0,0,-1,-1,-1,0,3403,0,3736 +97689,0,0,-1,-1,-1,0,3404,0,3737 +97690,0,0,-1,-1,-1,0,1043,0,4164 +97691,0,0,-1,0,3000,79,6512,0,3828 +97692,0,0,-1,0,60000,24,4069,0,4394 +97693,0,0,-1,0,0,0,842,0,4180 +97694,0,0,-1,-1,-1,0,3381,0,3680 +97695,0,0,-1,-1,-1,0,3380,0,3681 +97696,0,0,-1,-1,-1,0,4977,0,4760 +97697,1,1,0,-1,-1,0,4977,0,4760 +97698,0,0,-8,0,60000,24,4067,0,4403 +97699,0,0,-1,0,0,0,3549,0,4181 +97700,0,0,-1,0,3000,79,26677,0,3386 +97701,0,0,-1,0,3000,79,3219,0,3382 +97702,0,0,-1,0,60000,24,4061,0,4365 +97703,0,0,-1,-1,-1,0,3383,0,4609 +97704,0,0,-1,-1,-1,0,1015,0,4206 +97705,0,0,-1,0,1000,11,434,0,4537 +97706,0,0,-1,0,1000,11,435,0,4538 +97707,0,0,-1,0,1000,11,1127,0,4539 +97708,0,0,-1,0,1000,11,433,0,4540 +97709,0,1,0,-1,-1,0,7597,0,3854 +97710,1,2,0,-1,-1,0,13439,0,3854 +97711,0,1,0,-1,-1,0,14565,0,3566 +97712,0,0,-1,0,3000,79,3593,0,3825 +97713,0,0,-1,0,3000,79,3223,0,3826 +97714,0,0,-10,30000,0,4,7669,0,3251 +97715,0,0,-1,0,1000,11,433,0,4536 +97716,0,0,-1,-1,-1,0,1095,0,4200 +97717,0,0,-1,-1,-1,0,928,0,4201 +97718,0,0,-1,0,1000,11,435,0,4542 +97719,0,0,-1,-1,-1,0,1123,0,4213 +97720,0,1,0,-1,-1,0,29418,0,3573 +97721,0,1,0,-1,-1,0,14824,0,3574 +97722,0,0,-1,0,60000,24,4100,0,4395 +97723,0,0,0,3600000,60000,94,23076,0,4396 +97724,0,0,-1,0,60000,24,4064,0,4360 +97725,0,0,-1,-1,-1,0,3407,0,3745 +97726,0,0,-1,1000,-1,0,2832,0,2313 +97727,0,1,0,-1,-1,0,15806,0,4983 +97728,0,0,-1,-1,-1,0,2364,0,2555 +97729,0,0,-1,0,0,0,910,0,4182 +97730,0,0,0,1000,-1,0,3678,0,4027 +97731,0,0,-1,-1,-1,0,3799,0,4292 +97732,0,0,-1,-1,-1,0,3738,0,4227 +97733,0,0,-1,-1,-1,0,962,0,4228 +97734,0,0,-1,-1,-1,0,3740,0,4229 +97735,0,0,0,120000,0,0,3607,0,3912 +97736,0,0,-1,-1,-1,0,2365,0,2556 +97737,0,1,0,-1,-1,0,29418,0,5439 +97738,0,1,0,-1,-1,0,14824,0,5441 +97739,0,0,-1,-1,-1,0,9440,0,7613 +97740,0,0,-1,0,0,0,3214,0,5715 +97741,0,0,-1,0,-1,0,5761,0,5237 +97742,0,0,-1,-1,-1,0,7150,0,5973 +97743,0,0,-1,0,0,0,519,0,5711 +97744,0,0,-1,0,1000,11,5004,0,5472 +97745,0,0,-1,-1,-1,0,4976,0,5185 +97746,0,0,-1,0,0,0,6258,0,5406 +97747,0,0,-1,0,0,0,6259,0,5407 +97748,0,0,-1,-1,-1,0,611,0,5678 +97749,0,0,-1,-1,-1,0,1105,0,5679 +97750,0,0,0,0,3000,330,6899,0,5872 +97751,0,0,0,0,3000,330,6898,0,5873 +97752,0,0,0,0,3000,330,6896,0,5874 +97753,0,0,0,0,3000,330,6897,0,5875 +97754,0,0,-1,0,1000,11,7737,0,6299 +97755,0,0,-1,1000,-1,0,6650,0,5654 +97756,0,0,0,0,3000,330,6648,0,5655 +97757,0,0,-1,-1,-1,0,2761,0,5577 +97758,0,0,-1,-1,-1,0,2762,0,5578 +97759,0,0,0,-1,-1,0,6249,0,5396 +97760,0,0,-1,-1,-1,0,6250,0,5397 +97761,0,0,-1,0,1000,59,5909,0,5265 +97762,0,0,-1,-1,-1,0,7327,0,6132 +97763,0,0,-1,-1,-1,0,6706,0,5786 +97764,0,0,-1,0,120000,4,6724,0,5816 +97765,0,0,-1,-1,-1,0,3695,0,5666 +97766,0,0,-1,-1,-1,0,3713,0,5667 +97767,0,0,0,0,3000,330,6654,0,5668 +97768,0,1,0,-1,-1,0,29418,0,7278 +97769,0,0,0,-1,-1,0,3366,0,6893 +97770,0,0,-1,-1,-1,0,8616,0,6897 +97771,0,1,0,-1,0,0,7685,0,6898 +97772,1,1,0,-1,-1,0,7706,0,6898 +97773,2,0,0,1800000,0,0,18956,0,6898 +97774,0,1,0,-1,-1,0,14824,0,7279 +97775,0,0,-1,-1,-1,0,1101,0,5727 +97776,0,1,0,0,0,0,5718,0,5230 +97777,1,0,-1,0,0,100,5720,0,5230 +97778,0,1,0,0,0,0,5719,0,5231 +97779,1,0,-1,0,0,100,5723,0,5231 +97780,0,0,-1,-1,-1,0,3366,0,6210 +97781,0,0,-1,-1,-1,0,3189,0,6211 +97782,0,0,-1,1000,-1,0,7407,0,6213 +97783,0,0,-1,-1,-1,0,725,0,5719 +97784,0,0,-1,-1,-1,0,663,0,5729 +97785,0,0,-1,-1,-1,0,788,0,5730 +97786,0,0,-1,-1,-1,0,956,0,5724 +97787,0,0,-1,-1,-1,0,979,0,5725 +97788,0,0,-1,-1,-1,0,657,0,5726 +97789,0,0,-1,0,1000,11,5006,0,5527 +97790,0,0,-1,-1,-1,0,6504,0,5528 +97791,0,0,-1,0,1000,11,433,0,5057 +97792,0,0,-1,-1,-1,0,6902,0,5878 +97793,0,0,-1,1000,0,0,5140,0,5021 +97794,0,0,-1,-1,-1,0,3366,0,6208 +97795,0,0,-1,-1,-1,0,5245,0,5083 +97796,0,0,-1,-1,-1,0,3366,0,6209 +97797,0,2,0,-1,-1,0,18197,0,5426 +97798,0,0,-1,0,60000,24,5134,0,4852 +97799,0,0,-1,-1,-1,0,4977,0,5415 +97800,0,0,-1,-1,-1,0,4978,0,5416 +97801,0,0,-1,0,0,150,1159,0,2581 +97802,0,0,-1,-1,-1,0,3378,0,3683 +97803,0,0,-1,0,1000,11,1129,0,3927 +97804,0,0,-5,0,60000,24,4060,0,4388 +97805,0,0,0,-1,-1,0,8001,0,6145 +97806,0,0,-1,-1,-1,0,6709,0,5789 +97807,0,0,-1,-1,-1,0,7760,0,6330 +97808,0,2,0,-1,-1,0,13490,0,6331 +97809,0,0,-1,-1,-1,0,574,0,5685 +97810,0,0,-1,0,0,0,562,0,5709 +97811,0,0,-1,0,0,0,632,0,5710 +97812,0,0,3,300000,0,0,14134,0,5613 +97813,0,0,-1,-1,-1,0,7759,0,6329 +97814,0,0,-1,0,1000,11,434,0,5066 +97815,1,0,-1,-1,-1,0,5206,0,5068 +97816,0,1,0,0,0,0,6260,0,5408 +97817,1,0,-1,0,0,100,6262,0,5408 +97818,0,0,-1,0,120000,4,3169,0,3387 +97819,0,0,-1,0,3000,79,3222,0,3388 +97820,0,2,0,-1,-1,0,13491,0,2942 +97821,0,0,-1,-1,-1,0,626,0,5670 +97822,0,0,-1,-1,-1,0,626,0,5671 +97823,0,0,-1,0,0,0,501,0,5702 +97824,0,2,0,-1,-1,0,18092,0,5182 +97825,0,1,0,-1,-1,0,7687,0,5183 +97826,0,0,0,300000,0,0,1139,0,5079 +97827,0,0,-1,0,1000,11,435,0,5526 +97828,0,0,-1,0,0,0,5665,0,5206 +97829,0,0,-1,0,0,0,3726,0,5703 +97830,0,0,-1,1000,0,0,5161,0,5052 +97831,0,0,-1,0,1000,11,6410,0,5473 +97832,0,0,-1,0,1000,11,5004,0,5474 +97833,0,0,-1,-1,-1,0,6527,0,5475 +97834,0,1,0,-1,-1,0,9141,0,5191 +97835,0,0,-1,0,0,0,3559,0,5708 +97836,0,0,-1,1000,-1,0,6296,0,5421 +97837,0,0,0,180000,0,0,7728,0,6928 +97838,0,0,-5,30000,-1,0,6918,0,5880 +97839,0,0,-1,0,1000,11,435,0,6362 +97840,0,0,-1,-1,-1,0,7757,0,6326 +97841,0,0,-1,-1,-1,0,7285,0,6074 +97842,0,0,-1,0,120000,4,6613,0,5633 +97843,0,0,-1,-1,-1,0,5666,0,5218 +97844,0,0,-1,0,0,0,5681,0,5223 +97845,0,0,-1,-1,-1,0,6620,0,5638 +97846,0,0,-1,-1,-1,0,6621,0,5640 +97847,0,0,-1,0,1000,11,6727,0,5823 +97848,0,0,-1,-1,-1,0,6623,0,5641 +97849,0,0,-1,0,120000,4,6615,0,5634 +97850,0,0,-1,0,1000,11,5005,0,5525 +97851,0,0,-1,0,0,0,532,0,5698 +97852,0,0,-1,0,0,0,3691,0,5699 +97853,0,0,-1,0,0,0,1001,0,5700 +97854,0,0,-1,0,0,0,892,0,5701 +97855,0,0,-1,0,1000,11,1127,0,6807 +97856,0,0,-1,-1,-1,0,3748,0,4280 +97857,0,0,-1,-1,-1,0,977,0,4281 +97858,0,0,-1,0,0,0,488,0,5704 +97859,0,0,-1,0,0,0,631,0,5705 +97860,0,0,-1,0,0,0,975,0,5706 +97861,0,0,-1,0,0,0,570,0,5707 +97862,0,0,-1,0,1000,11,5005,0,5476 +97863,0,0,-1,-1,-1,0,3751,0,5728 +97864,0,1,0,0,0,0,6261,0,5409 +97865,1,0,-1,0,0,100,6263,0,5409 +97866,0,0,-1,-1,-1,0,4975,0,5411 +97867,0,0,-1,-1,-1,0,6529,0,4882 +97868,0,0,0,10000,-1,0,9095,0,7308 +97869,0,0,-1,-1,-1,0,7898,0,6401 +97870,0,0,-1,-1,-1,0,7787,0,6348 +97871,0,0,-1,-1,-1,0,5292,0,5156 +97872,0,0,-1,-1,-1,0,5304,0,5157 +97873,0,0,-1,-1,-1,0,792,0,5158 +97874,0,2,0,-1,-1,0,20869,0,5815 +97875,1,0,-1,0,120000,1153,6262,0,5512 +97876,0,0,-1,-1,-1,0,7864,0,6376 +97877,0,0,-1,-1,-1,0,1011,0,5677 +97878,0,0,-1,0,1000,11,7737,0,6303 +97879,0,0,0,180000,0,0,8674,0,6913 +97880,0,0,-1,-1,-1,0,931,0,5673 +97881,0,0,-1,-1,-1,0,559,0,5674 +97882,0,0,-1,0,0,0,5706,0,5227 +97883,0,2,-1,0,-1,0,2607,0,4985 +97884,0,0,-1,0,0,0,1076,0,5154 +97885,0,0,-1,0,0,0,908,0,5713 +97886,0,0,-1,-1,-1,0,1039,0,5684 +97887,0,1,0,0,-1,0,13674,0,4975 +97888,0,0,-1,-1,-1,0,6423,0,5482 +97889,0,0,-1,1000,-1,0,8114,0,4424 +97890,0,1,0,-1,-1,0,7703,0,4319 +97891,0,0,-1,0,0,0,786,0,5139 +97892,0,0,-1,-1,-1,0,6630,0,5694 +97893,0,0,0,600000,1000,59,1135,0,4696 +97894,0,0,0,-1,-1,0,6974,0,5916 +97895,0,0,0,1800000,0,0,14053,0,5323 +97896,0,0,-1,-1,-1,0,6427,0,5486 +97897,0,0,-1,0,1000,59,5020,0,4952 +97898,0,0,-1,0,0,0,5713,0,5228 +97899,0,0,-1,0,0,0,5714,0,5229 +97900,0,0,-1,-1,-1,0,368397,0,5682 +97901,0,0,-1,0,1000,11,433,0,4604 +97902,0,0,-1,-1,-1,0,882,0,4284 +97903,0,0,-1,-1,-1,0,3081,0,4285 +97904,0,0,0,300000,0,0,5024,0,4984 +97905,1,0,-1,0,120000,1153,5720,0,5509 +97906,1,0,-1,0,120000,1153,5723,0,5510 +97907,0,0,-1,-1,-1,0,6234,0,5338 +97908,0,0,-1,-1,-1,0,1021,0,5683 +97909,0,0,-1,-1,-1,0,6310,0,5456 +97910,0,1,0,-1,-1,0,7708,0,4323 +97911,0,0,-1,-1,-1,0,5107,0,5020 +97912,0,0,-1,-1,-1,0,5099,0,4986 +97913,0,0,-1,-1,-1,0,3801,0,5974 +97914,0,0,-1,0,60000,24,8277,0,5457 +97915,0,0,-1,0,0,150,3267,0,3530 +97916,0,0,-1,0,0,150,3268,0,3531 +97917,0,0,-1,-1,-1,0,571,0,4287 +97918,0,0,-1,-1,-1,0,3750,0,4288 +97919,0,0,-1,-1,-1,0,5303,0,5144 +97920,0,0,-1,1000,-1,0,6668,0,5740 +97921,0,0,-1,0,120000,1153,2052,0,5205 +97922,0,0,1,1000,-1,0,6298,0,5387 +97923,0,0,-1,10000,-1,0,4132,0,4479 +97924,0,0,-1,-1,-1,0,7894,0,6390 +97925,0,0,-1,-1,-1,0,6627,0,5692 +97926,0,0,-1,-1,-1,0,6656,0,5693 +97927,0,0,-1,0,1000,11,433,0,4656 +97928,0,0,-1,-1,-1,0,7756,0,6325 +97929,0,0,-1,-1,-1,0,6707,0,5787 +97930,0,0,-1,-1,-1,0,964,0,4270 +97931,0,0,-1,-1,-1,0,1109,0,5720 +97932,0,0,-1,-1,-1,0,28284,0,4144 +97933,0,0,-1,-1,-1,0,3724,0,4145 +97934,0,0,0,0,0,0,12883,0,5507 +97935,0,0,-1,-1,-1,0,5270,0,5131 +97936,0,0,-1,-1,-1,0,5274,0,5132 +97937,1,0,-1,0,120000,1153,6263,0,5511 +97938,0,0,-1,-1,-1,0,918,0,5721 +97939,0,0,-1,-1,-1,0,862,0,5722 +97940,0,0,-1,-1,-1,0,4954,0,4702 +97941,0,0,-1,-1,-1,0,4141,0,4472 +97942,0,0,-1,-1,-1,0,5294,0,5145 +97943,0,0,-1,-1,-1,0,5305,0,5146 +97944,0,0,-1,-1,-1,0,1063,0,5147 +97945,0,0,0,-1,-1,0,3366,0,5521 +97946,0,2,0,-1,-1,0,16400,0,4449 +97947,0,0,0,-1,-1,0,265,0,5417 +97948,0,0,-1,-1,-1,0,4978,0,4762 +97949,0,0,-1,0,0,0,128,0,5522 +97950,1,1,0,0,0,0,18384,0,5522 +97951,0,0,-1,-1,-1,0,789,0,4274 +97952,0,0,-1,-1,-1,0,628,0,4275 +97953,0,0,-1,-1,-1,0,999,0,4276 +97954,0,0,-1,-1,-1,0,3752,0,4279 +97955,0,0,-1,-1,-1,0,5286,0,5155 +97956,0,0,-1,0,1000,11,5005,0,5477 +97957,0,0,-1,0,1000,11,435,0,5478 +97958,0,0,-1,-1,-1,0,6424,0,5483 +97959,0,0,0,-1,-1,0,6509,0,5384 +97960,0,0,-1,-1,-1,0,5290,0,5149 +97961,0,0,-1,-1,-1,0,5295,0,5150 +97962,0,0,-1,-1,-1,0,5296,0,5152 +97963,0,0,-1,-1,-1,0,1053,0,4148 +97964,0,0,0,3600000,0,0,9163,0,4262 +97965,0,0,-1,-1,-1,0,6429,0,5488 +97966,0,0,-1,-1,-1,0,4975,0,4956 +97967,0,0,-1,-1,-1,0,1005,0,4271 +97968,0,0,0,-1,-1,0,5,0,5418 +97969,0,0,-1,-1,-1,0,6430,0,5489 +97970,0,0,-1,0,1800000,831,20707,0,5232 +97971,0,0,-1,0,1000,59,1133,0,4791 +97972,0,0,-1,1000,-1,0,8117,0,4425 +97973,0,0,-1,1000,-1,0,8120,0,4426 +97974,0,0,-1,0,1000,11,5006,0,5479 +97975,0,0,-1,-1,-1,0,7868,0,6377 +97976,0,0,5,300000,0,0,14253,0,4444 +97977,0,2,0,-1,-1,0,13518,0,4446 +97978,0,0,-1,-1,-1,0,618,0,4269 +97979,0,1,0,-1,-1,0,4152,0,4491 +97980,0,0,-1,-1,-1,0,4945,0,4639 +97981,0,0,0,-1,-1,0,4982,0,4640 +97982,0,0,-1,-1,-1,0,504,0,5680 +97983,0,0,-1,-1,-1,0,6642,0,4149 +97984,0,0,-1,-1,-1,0,6639,0,4150 +97985,0,0,0,-1,-1,0,7023,0,5937 +97986,0,0,-1,-1,-1,0,7895,0,6391 +97987,0,0,-1,-1,-1,0,973,0,4272 +97988,0,0,-1,-1,-1,0,3810,0,4273 +97989,0,0,-1,0,0,0,795,0,5148 +97990,0,0,-1,0,60000,24,8312,0,4941 +97991,0,0,-1,-1,-1,0,5312,0,5159 +97992,0,0,-1,-1,-1,0,5297,0,5160 +97993,0,0,-1,0,0,0,3090,0,5696 +97994,0,0,0,60000,-1,0,6405,0,5462 +97995,0,0,-1,0,1000,11,434,0,5095 +97996,0,0,-1,-1,-1,0,16375,0,4945 +97997,0,0,-1,0,1000,11,5006,0,5480 +97998,0,0,-1,0,1000,59,5021,0,4953 +97999,0,1,0,-1,-1,0,7701,0,4324 +98000,0,0,0,1800000,-1,0,9774,0,4328 +98001,0,1,0,-1,-1,0,9342,0,4329 +98002,0,0,-1,-1,-1,0,792,0,8801 +98003,0,0,-1,-1,-1,0,483,0,8803 +98004,0,1,0,-1,-1,0,29413,0,8217 +98005,0,1,0,-1,-1,0,14827,0,8218 +98006,0,1,0,-1,-1,0,29416,0,7371 +98007,0,0,-1,0,1000,59,1137,0,8766 +98008,0,0,-1,-1,-1,0,3735,0,8767 +98009,0,0,-1,-1,-1,0,3063,0,8771 +98010,0,0,-1,-1,-1,0,3734,0,8772 +98011,0,0,0,180000,0,0,8344,0,7506 +98012,0,0,-1,-1,-1,0,6644,0,8879 +98013,0,0,-1,-1,-1,0,6631,0,8880 +98014,0,1,0,0,0,0,9342,0,7553 +98015,0,0,-1,-1,-1,0,8900,0,6638 +98016,0,2,0,-1,-1,0,8191,0,6622 +98017,0,0,-1,1000,-1,0,11544,0,9315 +98018,0,0,-1,1000,-1,0,11543,0,9317 +98019,0,0,-1,-1,-1,0,5289,0,8744 +98020,0,0,-1,-1,-1,0,5294,0,8745 +98021,0,1,0,-1,-1,0,7619,0,7747 +98022,0,0,-1,-1,-1,0,9946,0,7983 +98023,0,0,-1,-1,-1,0,3063,0,8797 +98024,0,2,0,0,0,0,18197,0,6472 +98025,0,0,-1,10000,1000,11,8213,0,6657 +98026,0,0,-1,-1,-1,0,6610,0,5621 +98027,0,0,-1,-1,-1,0,7958,0,6476 +98028,0,0,0,180000,0,0,8913,0,7297 +98029,0,0,-1,-1,-1,0,7324,0,8884 +98030,0,0,-1,-1,-1,0,10522,0,8386 +98031,0,0,-1,-1,-1,0,3068,0,8895 +98032,0,0,-1,-1,-1,0,9052,0,7269 +98033,0,0,-1,-1,-1,0,1403,0,6623 +98034,0,1,0,-1,-1,0,9343,0,7054 +98035,0,1,0,-1,-1,0,9132,0,7348 +98036,1,1,0,-1,-1,0,21352,0,7348 +98037,0,0,0,-1,-1,0,9976,0,7970 +98038,0,1,0,0,0,0,7597,0,8347 +98039,0,0,-1,-1,-1,0,9854,0,8773 +98040,0,0,-1,-1,-1,0,9817,0,7979 +98041,0,0,-1,-1,-1,0,9815,0,7980 +98042,0,0,0,1000,-1,0,8283,0,6684 +98043,0,0,-1,-1,-1,0,8717,0,6988 +98044,0,0,0,-1,-1,0,10707,0,8500 +98045,0,0,-1,0,60000,24,5100,0,5013 +98046,0,0,-1,-1,-1,0,8593,0,6866 +98047,0,0,-1,1000,-1,0,6668,0,9318 +98048,0,0,-1,-1,-1,0,3063,0,8778 +98049,0,0,-1,-1,-1,0,3682,0,8886 +98050,0,0,-1,-1,-1,0,3723,0,8887 +98051,0,0,-1,-1,-1,0,485,0,8888 +98052,0,0,-1,-1,-1,0,9940,0,7976 +98053,0,0,-1,0,1000,11,435,0,8365 +98054,0,0,-1,-1,-1,0,10723,0,8095 +98055,0,0,-1,-1,-1,0,9819,0,7981 +98056,0,0,-1,-1,-1,0,6687,0,5771 +98057,0,0,-1,0,1000,11,1129,0,8075 +98058,0,0,-1,0,1000,11,1131,0,8076 +98059,0,0,0,0,1800000,1051,8342,0,7148 +98060,0,2,0,-1,-1,0,13526,0,6909 +98061,0,0,-1,-1,-1,0,11508,0,9297 +98062,0,0,10,-1,-1,0,10113,0,8051 +98063,0,1,0,0,0,38,8299,0,6706 +98064,0,0,-1,-1,-1,0,8089,0,6533 +98065,0,1,0,-1,-1,0,7703,0,7053 +98066,0,0,-1,0,1000,11,1127,0,8364 +98067,0,0,-1,-1,-1,0,736,0,9219 +98068,0,0,-1,-1,-1,0,535,0,9220 +98069,0,0,-1,-1,-1,0,9216,0,7450 +98070,0,0,-1,-1,-1,0,5305,0,8821 +98071,0,0,-1,-1,-1,0,3066,0,8883 +98072,0,1,0,-1,-1,0,7681,0,7049 +98073,0,0,-1,-1,-1,0,8608,0,6892 +98074,0,0,-1,60000,0,150,7932,0,6452 +98075,0,0,-1,-1,-1,0,1070,0,8779 +98076,0,0,-1,-1,-1,0,11529,0,9303 +98077,0,0,-1,-1,-1,0,854,0,8835 +98078,0,0,0,3600000,0,0,9175,0,7391 +98079,0,0,-1,-1,-1,0,6631,0,8837 +98080,0,0,0,-1,-1,0,7914,0,6436 +98081,0,1,0,10000,-1,0,9160,0,7375 +98082,0,0,-1,3000,0,0,16589,0,8529 +98083,0,0,-1,0,1000,11,1127,0,8543 +98084,0,2,0,-1,-1,0,18204,0,7730 +98085,0,0,-1,-1,-1,0,7635,0,6272 +98086,0,0,-1,-1,-1,0,7637,0,6273 +98087,0,0,-1,-1,-1,0,5305,0,8882 +98088,0,0,10,8000,-1,0,9082,0,7247 +98089,0,0,-1,-1,-1,0,736,0,9218 +98090,0,0,-1,0,0,150,10838,0,8544 +98091,0,0,-1,0,0,150,10839,0,8545 +98092,0,0,-1,-1,-1,0,7444,0,6221 +98093,0,0,-1,0,60000,24,8331,0,6714 +98094,0,0,-1,-1,-1,0,8341,0,6716 +98095,0,0,-1,-1,-1,0,8796,0,7085 +98096,0,0,0,180000,-1,0,8712,0,6999 +98097,0,0,-1,-1,-1,0,7957,0,6475 +98098,0,0,-1,-1,-1,0,7324,0,8816 +98099,0,0,-1,-1,-1,0,3725,0,8817 +98100,0,0,-1,0,1000,11,1129,0,6887 +98101,0,0,-1,0,1000,11,5004,0,6888 +98102,0,0,-1,-1,-1,0,10020,0,7982 +98103,0,0,-1,-1,-1,0,10772,0,8493 +98104,0,0,-1,-1,-1,0,10543,0,8398 +98105,0,0,-1,-1,-1,0,8199,0,6648 +98106,0,0,-1,-1,-1,0,8200,0,6649 +98107,0,0,-1,-1,-1,0,8917,0,7208 +98108,0,2,0,-1,-1,0,8348,0,6660 +98109,0,0,-1,-1,-1,0,8239,0,6661 +98110,0,0,-1,-1,-1,0,8790,0,7087 +98111,0,0,-1,-1,-1,0,8803,0,7088 +98112,0,0,-1,-1,-1,0,8785,0,7090 +98113,0,2,0,-1,-1,0,9800,0,7960 +98114,0,0,-1,-1,-1,0,8087,0,6529 +98115,0,1,0,-1,-1,0,29636,0,6469 +98116,0,0,0,-1,-1,0,10684,0,8495 +98117,0,0,0,-1,-1,0,10711,0,8497 +98118,0,0,0,-1,-1,0,10697,0,8499 +98119,0,1,0,-1,-1,0,18764,0,6461 +98120,0,0,-1,1000,-1,0,9900,0,7964 +98121,0,0,-1,0,0,150,7926,0,6450 +98122,0,0,0,0,3000,330,8395,0,8588 +98123,0,0,0,0,3000,330,10795,0,8589 +98124,0,0,0,0,3000,330,10798,0,8590 +98125,0,0,-1,-1,-1,0,3075,0,8878 +98126,0,0,0,180000,-1,0,8712,0,6931 +98127,0,1,0,0,0,38,8299,0,6698 +98128,0,0,-1,0,0,150,7927,0,6451 +98129,0,0,-1,-1,-1,0,7644,0,6275 +98130,0,1,0,-1,-1,0,14826,0,7372 +98131,0,0,-1,-1,-1,0,8325,0,6710 +98132,0,0,0,0,3000,330,10796,0,8591 +98133,0,0,0,0,3000,330,10799,0,8592 +98134,0,0,-1,0,1000,11,434,0,6890 +98135,0,0,-1,0,3000,79,8212,0,6662 +98136,0,0,-1,-1,-1,0,8241,0,6663 +98137,0,0,-1,-1,-1,0,8201,0,6650 +98138,0,0,-1,-1,-1,0,10561,0,8389 +98139,0,0,-1,-1,-1,0,10563,0,8390 +98140,0,0,0,60000,0,0,9176,0,7344 +98141,0,0,-1,-1,-1,0,8133,0,6621 +98142,0,0,-1,-1,-1,0,8783,0,7091 +98143,0,0,-1,-1,-1,0,7364,0,6183 +98144,0,0,-1,-1,-1,0,8244,0,6672 +98145,0,0,0,60000,-1,0,9712,0,7866 +98146,0,0,0,180000,0,0,9224,0,6626 +98147,0,0,-1,-1,-1,0,5291,0,8788 +98148,0,0,-1,-1,-1,0,8121,0,6619 +98149,0,0,-1,0,1000,11,433,0,6289 +98150,0,0,-1,0,1000,11,433,0,6290 +98151,0,0,-1,-1,-1,0,7640,0,6274 +98152,0,0,-1,0,1000,11,5007,0,6038 +98153,0,0,-1,0,120000,4,7254,0,6052 +98154,0,0,-1,0,1000,11,434,0,6308 +98155,0,0,-1,-1,-1,0,3690,0,5672 +98156,0,0,-1,-1,-1,0,962,0,8796 +98157,0,0,0,180000,-1,0,8712,0,6997 +98158,0,0,0,3600000,600000,0,10618,0,8367 +98159,0,0,-1,-1,-1,0,8370,0,6735 +98160,0,1,0,-1,-1,0,9134,0,7349 +98161,0,0,-1,-1,-1,0,485,0,8815 +98162,0,1,0,-1,-1,0,9402,0,7377 +98163,0,0,0,10000,-1,0,9172,0,7388 +98164,0,0,-1,0,1000,11,435,0,5845 +98165,0,0,-1,0,120000,4,11903,0,6149 +98166,0,0,-1,0,1000,11,433,0,6317 +98167,0,0,-1,-1,-1,0,1037,0,6133 +98168,0,0,-1,-1,-1,0,8532,0,6811 +98169,0,1,0,-1,-1,0,7708,0,7027 +98170,0,1,0,-1,-1,0,7703,0,7046 +98171,0,1,0,-1,-1,0,7710,0,7047 +98172,0,0,-1,1000,-1,0,6805,0,5868 +98173,0,0,-1,-1,-1,0,6689,0,5772 +98174,0,0,-1,-1,-1,0,3906,0,5773 +98175,0,0,-1,0,1000,11,434,0,6316 +98176,0,0,-1,-1,-1,0,7214,0,6039 +98177,0,0,-1,-1,-1,0,3065,0,8802 +98178,0,0,-1,-1,-1,0,5305,0,8805 +98179,0,0,-1,-1,-1,0,486,0,8806 +98180,0,0,-1,-1,-1,0,5305,0,8807 +98181,0,0,-1,-1,-1,0,3067,0,8808 +98182,0,0,-1,-1,-1,0,886,0,8870 +98183,0,0,-1,-1,-1,0,1385,0,6544 +98184,0,0,-1,-1,-1,0,10527,0,8395 +98185,0,2,0,-1,-1,0,16400,0,5752 +98186,0,0,-1,0,0,0,3077,0,9043 +98187,0,0,-1,-1,-1,0,3094,0,8930 +98188,0,0,-1,-1,-1,0,559,0,8939 +98189,0,0,-1,-1,-1,0,1025,0,9201 +98190,0,0,-1,-1,-1,0,719,0,9202 +98191,0,0,-1,0,3000,79,7844,0,6373 +98192,0,2,0,-1,-1,0,16406,0,5616 +98193,0,0,-1,-1,-1,0,6622,0,5643 +98194,0,0,-1,-1,-1,0,6635,0,5644 +98195,0,0,-1,-1,-1,0,922,0,5676 +98196,0,0,-1,-1,-1,0,6758,0,5859 +98197,0,0,-1,-1,-1,0,6611,0,5623 +98198,0,0,-1,0,120000,4,7233,0,6049 +98199,0,0,0,0,3000,330,458,0,5656 +98200,0,0,-1,0,0,0,3727,0,9041 +98201,0,0,-1,-1,-1,0,6609,0,5619 +98202,0,0,-1,-1,-1,0,10536,0,8397 +98203,0,0,-1,-1,-1,0,3067,0,8873 +98204,0,0,-1,-1,-1,0,3723,0,8876 +98205,0,0,-1,-1,-1,0,7280,0,6068 +98206,0,1,0,-1,-1,0,9233,0,7284 +98207,0,0,-1,0,3000,79,673,0,5997 +98208,0,0,-1,-1,-1,0,854,0,8877 +98209,0,0,-1,-1,-1,0,7228,0,6046 +98210,0,0,-1,-1,-1,0,3724,0,8889 +98211,0,0,-1,-1,-1,0,844,0,8891 +98212,0,0,-1,-1,-1,0,6639,0,8892 +98213,0,0,-1,-1,-1,0,494,0,8893 +98214,0,0,-1,-1,-1,0,5305,0,8894 +98215,0,0,-1,-1,-1,0,7632,0,6270 +98216,0,0,-1,-1,-1,0,7631,0,6271 +98217,0,1,0,0,0,38,8315,0,6707 +98218,0,0,-1,-1,-1,0,8517,0,6783 +98219,0,1,0,0,0,38,8357,0,6724 +98220,0,0,-1,-1,-1,0,8781,0,7092 +98221,0,0,-1,-1,-1,0,8779,0,7093 +98222,0,0,-1,0,1000,11,433,0,7097 +98223,0,0,-1,-1,-1,0,6717,0,5810 +98224,0,0,-1,0,3600000,103,10668,0,8411 +98225,0,0,0,300000,0,0,8892,0,7189 +98226,0,0,-1,-1,-1,0,6803,0,5867 +98227,0,0,-1,0,0,0,6652,0,5657 +98228,0,0,-1,-1,-1,0,8919,0,7207 +98229,0,0,-1,-1,-1,0,8605,0,6891 +98230,0,0,-1,-1,-1,0,6641,0,8871 +98231,0,0,-1,-1,-1,0,7226,0,6044 +98232,0,0,-1,-1,-1,0,7462,0,6222 +98233,0,0,-1,-1,-1,0,7264,0,6057 +98234,0,1,0,-1,-1,0,7823,0,6365 +98235,0,1,0,-1,-1,0,7825,0,6366 +98236,0,1,0,-1,-1,0,7826,0,6367 +98237,0,0,-1,0,120000,4,7840,0,6372 +98238,0,0,-1,-1,-1,0,7783,0,6347 +98239,0,1,0,0,0,38,8360,0,6728 +98240,0,0,-1,-1,-1,0,7860,0,6375 +98241,0,0,-1,-1,-1,0,7216,0,6042 +98242,0,0,-1,-1,-1,0,9067,0,7288 +98243,0,0,-1,-1,-1,0,9071,0,7289 +98244,0,0,-1,-1,-1,0,9092,0,7307 +98245,0,0,-1,-1,-1,0,517,0,5647 +98246,0,0,-1,-1,-1,0,6643,0,5648 +98247,0,0,-1,-1,-1,0,8794,0,7084 +98248,0,0,-1,-1,-1,0,8787,0,7089 +98249,0,2,0,-1,-1,0,8313,0,6904 +98250,0,0,-1,0,1000,11,7737,0,6291 +98251,0,0,-1,-1,-1,0,7260,0,6053 +98252,0,0,-1,-1,-1,0,7261,0,6054 +98253,0,0,-1,-1,-1,0,10555,0,8399 +98254,0,0,-1,-1,-1,0,10565,0,8400 +98255,0,0,-1,-1,-1,0,6696,0,5775 +98256,0,0,-1,0,3000,79,7178,0,5996 +98257,0,1,0,-1,-1,0,9141,0,6733 +98258,0,0,-1,-1,-1,0,5310,0,8799 +98259,0,0,-1,-1,-1,0,3093,0,5661 +98260,0,0,-1,-1,-1,0,3094,0,5662 +98261,0,2,0,-1,-1,0,18398,0,5756 +98262,0,0,-1,-1,-1,0,3068,0,8872 +98263,0,0,0,3600000,15000,1141,9174,0,6972 +98264,0,0,0,-1,-1,0,8690,0,6948 +98265,0,0,-1,0,-1,0,8686,0,6949 +98266,0,0,-1,0,-1,0,8688,0,6950 +98267,0,0,0,180000,0,0,9222,0,7464 +98268,0,0,-1,-1,-1,0,7444,0,6342 +98269,0,0,-1,-1,-1,0,7462,0,6343 +98270,0,0,-1,-1,-1,0,7772,0,6345 +98271,0,0,-1,-1,-1,0,7777,0,6346 +98272,0,0,-5,120000,-1,0,5809,0,5251 +98273,0,2,0,-1,-1,0,13440,0,6831 +98274,0,2,0,-1,-1,0,16403,0,6738 +98275,0,0,-1,-1,-1,0,4981,0,4823 +98276,0,0,-1,-1,-1,0,9055,0,7273 +98277,0,0,-1,-1,-1,0,7830,0,6368 +98278,0,0,-1,-1,-1,0,7831,0,6369 +98279,0,0,-1,0,120000,4,7239,0,6050 +98280,0,0,-1,0,120000,4,7245,0,6051 +98281,0,0,0,-1,-1,0,10137,0,8066 +98282,0,0,0,0,3000,330,6653,0,5665 +98283,0,0,0,180000,0,0,9221,0,6284 +98284,0,0,-1,-1,-1,0,7262,0,6055 +98285,0,0,-1,-1,-1,0,6638,0,5650 +98286,0,1,0,-1,-1,0,9401,0,7064 +98287,0,0,-1,-1,-1,0,10492,0,8384 +98288,0,0,-1,300000,120000,1153,9512,0,7676 +98289,0,0,-1,-1,-1,0,3737,0,8793 +98290,0,0,-1,-1,-1,0,3735,0,8794 +98291,0,0,-1,-1,-1,0,9855,0,8795 +98292,0,0,-1,-1,-1,0,6625,0,5642 +98293,0,0,-1,-1,-1,0,7218,0,6043 +98294,0,0,-1,-1,-1,0,653,0,5658 +98295,0,0,-1,-1,-1,0,864,0,5660 +98296,0,0,-1,-1,-1,0,726,0,8809 +98297,0,0,-1,-1,-1,0,3723,0,8811 +98298,0,0,-1,-1,-1,0,6631,0,8812 +98299,0,0,-1,-1,-1,0,854,0,8814 +98300,0,0,-1,-1,-1,0,11513,0,9283 +98301,0,1,0,90000,-1,0,13675,0,9643 +98302,0,0,-1,-1,-1,0,997,0,9033 +98303,0,0,-1,0,120000,4,11364,0,9036 +98304,0,0,-1,-1,-1,0,12141,0,10304 +98305,0,0,-1,1000,-1,0,12175,0,10305 +98306,0,0,-1,1000,-1,0,12177,0,10306 +98307,0,0,-1,1000,-1,0,12178,0,10307 +98308,0,2,0,-1,-1,0,13482,0,9446 +98309,0,0,-1,-1,-1,0,11644,0,9367 +98310,0,0,-1,0,1000,11,1131,0,8957 +98311,0,0,-1,-1,-1,0,6631,0,8804 +98312,0,0,-1,-1,-1,0,6631,0,8822 +98313,0,0,-1,-1,-1,0,854,0,8824 +98314,0,0,-1,-1,-1,0,3063,0,8906 +98315,0,0,-1,-1,-1,0,5307,0,8907 +98316,0,0,-1,-1,-1,0,1007,0,8974 +98317,0,0,-1,0,1000,11,435,0,7228 +98318,0,0,-1,-1,-1,0,6631,0,8898 +98319,0,0,-1,-1,-1,0,3723,0,8899 +98320,0,0,-1,-1,-1,0,10006,0,7993 +98321,0,1,0,-1,-1,0,7681,0,7721 +98322,0,0,-1,0,1000,11,1129,0,8959 +98323,0,0,-1,-1,-1,0,3085,0,9018 +98324,0,0,-1,0,0,0,488,0,9057 +98325,0,0,-1,0,0,0,488,0,9058 +98326,0,0,-1,-1,-1,0,10723,0,8432 +98327,0,0,-1,0,-1,0,11399,0,9186 +98328,0,0,-1,-1,-1,0,9958,0,7994 +98329,0,1,0,-1,-1,0,13599,0,7757 +98330,0,1,0,-1,-1,0,18087,0,10698 +98331,1,0,0,0,180000,0,12938,0,10698 +98332,0,0,-1,-1,-1,0,9938,0,7995 +98333,0,2,0,-1,-1,0,13482,0,8006 +98334,1,0,-1,0,120000,1153,10057,0,8007 +98335,0,0,-1,0,0,0,3731,0,9059 +98336,0,2,0,-1,-1,0,11879,0,9608 +98337,0,0,-1,-1,-1,0,1007,0,8998 +98338,0,0,-1,-1,-1,0,1007,0,8999 +98339,0,0,-1,-1,-1,0,1007,0,9000 +98340,0,0,-1,-1,-1,0,3085,0,9002 +98341,0,0,-1,-1,-1,0,504,0,8918 +98342,0,1,0,0,0,0,9142,0,9640 +98343,0,0,-1,-1,-1,0,983,0,8979 +98344,0,0,-1,-1,-1,0,983,0,8980 +98345,0,0,-1,-1,-1,0,1087,0,9223 +98346,0,0,-1,0,3000,79,11406,0,9224 +98347,0,0,-1,-1,-1,0,1089,0,9225 +98348,0,0,-1,-1,-1,0,721,0,9193 +98349,0,0,-1,-1,-1,0,3071,0,8960 +98350,0,0,-1,-1,-1,0,3071,0,8961 +98351,0,0,-1,-1,-1,0,628,0,8962 +98352,0,1,0,-1,-1,0,9139,0,9428 +98353,0,1,0,-1,-1,0,13665,0,9379 +98354,0,0,0,1800000,0,0,9252,0,7508 +98355,1,0,-1,0,120000,1153,10058,0,8008 +98356,0,0,-1,-1,-1,0,10000,0,8029 +98357,0,1,0,-1,-1,0,13669,0,7928 +98358,0,0,-1,-1,-1,0,3079,0,8954 +98359,0,0,-1,0,0,0,900,0,9062 +98360,0,0,-1,0,0,0,946,0,9166 +98361,0,1,0,-1,-1,0,9328,0,10004 +98362,0,0,-1,-1,-1,0,656,0,8909 +98363,0,0,-1,-1,-1,0,656,0,8912 +98364,0,0,-1,0,0,0,561,0,9052 +98365,0,0,-1,-1,-1,0,10664,0,8388 +98366,0,0,0,-1,-1,0,11923,0,9719 +98367,0,0,-1,-1,-1,0,997,0,9023 +98368,0,0,-1,-1,-1,0,1007,0,9024 +98369,0,0,-1,-1,-1,0,1007,0,9025 +98370,0,1,0,-1,-1,0,7516,0,9405 +98371,0,1,0,-1,-1,0,7518,0,9410 +98372,0,0,-1,-1,-1,0,11840,0,9530 +98373,0,1,0,-1,-1,0,17746,0,7953 +98374,0,0,-1,-1,-1,0,656,0,8917 +98375,0,0,-1,0,-1,0,11339,0,8927 +98376,0,0,-1,-1,-1,0,792,0,8775 +98377,0,0,-1,-1,-1,0,3354,0,9204 +98378,0,0,-1,-1,-1,0,3354,0,9205 +98379,0,0,-1,-1,-1,0,5307,0,8780 +98380,0,0,0,-1,-1,0,11434,0,9240 +98381,0,0,-1,-1,-1,0,3070,0,8955 +98382,0,0,-1,-1,-1,0,628,0,8958 +98383,0,0,-1,-1,-1,0,624,0,8965 +98384,0,0,0,30000,-1,0,11885,0,9606 +98385,0,1,0,0,0,0,7516,0,9607 +98386,0,2,0,-1,-1,0,12731,0,9418 +98387,0,1,0,-1,-1,0,21361,0,9448 +98388,0,1,0,-1,-1,0,13390,0,9385 +98389,0,2,0,-1,-1,0,13438,0,9386 +98390,0,1,0,-1,-1,0,9331,0,9391 +98391,0,0,-1,-1,-1,0,997,0,9019 +98392,0,0,-1,-1,-1,0,10545,0,8404 +98393,0,1,0,-1,-1,0,15714,0,9517 +98394,0,0,-1,0,0,0,946,0,9141 +98395,0,0,-1,-1,-1,0,1045,0,9195 +98396,0,0,-1,-1,-1,0,1045,0,9196 +98397,0,0,-1,-1,-1,0,11435,0,9241 +98398,0,1,0,-1,-1,0,14565,0,7756 +98399,0,2,0,-1,-1,0,9796,0,7959 +98400,0,0,-1,-1,-1,0,10617,0,8149 +98401,0,0,-1,-1,-1,0,3085,0,9003 +98402,0,0,-1,-1,-1,0,3085,0,9014 +98403,0,1,0,-1,-1,0,9357,0,10039 +98404,0,0,-1,0,0,0,946,0,9139 +98405,0,0,-1,0,0,0,946,0,9140 +98406,0,0,-1,0,0,0,946,0,9142 +98407,0,0,-1,0,120000,4,11387,0,9144 +98408,0,0,-1,-1,-1,0,9270,0,7560 +98409,0,0,-1,0,1000,11,5004,0,7808 +98410,0,0,-1,-1,-1,0,9996,0,7992 +98411,0,0,-1,-1,-1,0,1089,0,9212 +98412,0,0,-1,-1,-1,0,1089,0,9213 +98413,0,0,-1,-1,-1,0,20799,0,9214 +98414,0,0,-1,-1,-1,0,979,0,9216 +98415,0,0,-1,-1,-1,0,736,0,9217 +98416,0,0,-1,-1,-1,0,12137,0,10301 +98417,0,0,-1,0,0,0,566,0,9054 +98418,0,0,-1,0,0,0,906,0,9185 +98419,0,0,-1,-1,-1,0,3692,0,9230 +98420,0,0,-1,0,0,0,566,0,9055 +98421,0,0,-1,0,0,0,566,0,9056 +98422,0,0,0,5000,-1,0,12699,0,10699 +98423,0,0,-1,-1,-1,0,5310,0,8902 +98424,0,0,-1,-1,-1,0,962,0,8904 +98425,0,0,-1,-1,-1,0,3734,0,8905 +98426,0,0,-1,-1,-1,0,997,0,9008 +98427,0,0,-1,-1,-1,0,5310,0,8776 +98428,0,0,0,0,3000,330,10787,0,8627 +98429,0,0,-1,-1,-1,0,3751,0,9231 +98430,0,0,-1,0,3000,79,11405,0,9232 +98431,0,0,-1,0,3000,79,11407,0,9233 +98432,0,0,-1,-1,-1,0,730,0,9198 +98433,0,1,0,-1,-1,0,18207,0,7710 +98434,0,0,-1,-1,-1,0,654,0,9208 +98435,0,0,-1,-1,-1,0,654,0,9209 +98436,0,0,-1,-1,-1,0,997,0,8991 +98437,0,2,0,-1,-1,0,18081,0,9651 +98438,0,0,-1,0,0,0,900,0,9063 +98439,0,0,-1,-1,-1,0,3081,0,8981 +98440,0,0,-1,-1,-1,0,3081,0,8982 +98441,0,0,-1,-1,-1,0,10530,0,8403 +98442,0,0,-1,-1,-1,0,10547,0,8405 +98443,0,0,-1,-1,-1,0,10567,0,8406 +98444,0,1,0,-1,-1,0,13669,0,7920 +98445,0,0,-1,0,0,0,1076,0,8782 +98446,0,0,-1,0,0,0,952,0,9150 +98447,0,0,-1,0,0,0,952,0,9152 +98448,0,0,-1,1000,-1,0,11540,0,9312 +98449,0,0,-1,1000,-1,0,11541,0,9313 +98450,0,0,-1,0,0,0,946,0,9165 +98451,0,0,-1,-1,-1,0,964,0,8992 +98452,0,0,-1,-1,-1,0,964,0,8993 +98453,0,0,-1,-1,-1,0,3081,0,9006 +98454,0,0,-1,-1,-1,0,12143,0,10312 +98455,0,0,-1,-1,-1,0,11537,0,9263 +98456,0,1,0,0,0,0,17768,0,8345 +98457,0,0,-1,0,0,0,944,0,9169 +98458,0,1,0,-1,-1,0,9346,0,10019 +98459,0,0,-1,-1,-1,0,2920,0,8900 +98460,0,0,-1,-1,-1,0,997,0,9009 +98461,0,0,-1,-1,-1,0,997,0,9010 +98462,0,0,-1,0,0,0,558,0,9048 +98463,0,1,0,-1,-1,0,15807,0,7724 +98464,0,1,0,-1,-1,0,14248,0,10041 +98465,0,0,0,-1,-1,0,10673,0,8485 +98466,0,0,0,-1,-1,0,10674,0,8486 +98467,0,0,0,-1,-1,0,10676,0,8487 +98468,0,0,-1,0,0,0,946,0,9102 +98469,0,0,-1,0,0,0,946,0,9105 +98470,0,0,-1,0,0,0,944,0,9123 +98471,0,0,-1,-1,-1,0,656,0,8919 +98472,0,0,-1,-1,-1,0,656,0,8920 +98473,0,0,-1,0,0,0,952,0,9183 +98474,0,0,0,0,3000,330,10789,0,8632 +98475,0,1,0,-1,-1,0,15776,0,7951 +98476,0,0,-1,-1,-1,0,964,0,8971 +98477,0,0,0,-1,-1,0,10678,0,8488 +98478,0,0,0,1800000,0,0,22641,0,9394 +98479,0,0,-1,-1,-1,0,862,0,9229 +98480,0,1,0,-1,-1,0,14047,0,9484 +98481,0,2,0,-1,-1,0,13533,0,9423 +98482,0,0,-1,0,0,0,3731,0,9047 +98483,0,0,-1,-1,-1,0,3723,0,8825 +98484,0,0,-1,-1,-1,0,7324,0,8842 +98485,0,0,-1,-1,-1,0,6637,0,8826 +98486,0,0,-1,-1,-1,0,7324,0,8828 +98487,0,0,-1,-1,-1,0,485,0,8829 +98488,0,0,-1,-1,-1,0,3723,0,8830 +98489,0,0,-1,-1,-1,0,656,0,8931 +98490,0,0,-1,0,1000,11,1131,0,8932 +98491,0,1,0,-1,-1,0,11789,0,9452 +98492,0,0,-1,-1,-1,0,624,0,8963 +98493,0,0,-1,-1,-1,0,12140,0,10303 +98494,0,0,-1,-1,-1,0,11629,0,9361 +98495,0,0,-1,0,0,0,944,0,9127 +98496,0,0,-1,0,0,0,944,0,9128 +98497,0,0,-1,-1,-1,0,964,0,8972 +98498,0,2,0,-1,-1,0,11790,0,9453 +98499,0,1,0,-1,-1,0,9395,0,9454 +98500,0,0,-1,-1,-1,0,882,0,8983 +98501,0,0,-1,-1,-1,0,3734,0,8781 +98502,0,0,-1,0,1000,11,7737,0,8683 +98503,0,0,-1,-1,-1,0,3354,0,9203 +98504,0,0,-1,0,0,0,532,0,9044 +98505,0,0,-1,0,0,0,944,0,9145 +98506,0,0,-1,0,0,0,944,0,9146 +98507,0,0,-1,0,0,0,946,0,9100 +98508,0,0,-1,0,0,0,946,0,9101 +98509,0,0,-1,-1,-1,0,9215,0,7449 +98510,0,0,-1,0,0,0,566,0,9184 +98511,0,0,0,3600000,180000,0,5405,0,9397 +98512,0,0,-1,0,-1,0,11356,0,8985 +98513,0,0,-1,-1,-1,0,997,0,8986 +98514,0,0,-1,0,3000,79,11328,0,8949 +98515,0,0,-1,-1,-1,0,964,0,8970 +98516,0,0,-1,-1,-1,0,1007,0,8975 +98517,0,0,-1,-1,-1,0,874,0,8897 +98518,0,0,-1,-1,-1,0,3066,0,8852 +98519,0,0,-1,-1,-1,0,485,0,8854 +98520,0,0,-1,-1,-1,0,7324,0,8856 +98521,0,0,-1,0,0,0,944,0,9147 +98522,0,0,-1,-1,-1,0,1089,0,9226 +98523,0,0,-1,-1,-1,0,862,0,9227 +98524,0,0,-1,-1,-1,0,862,0,9228 +98525,0,0,-1,0,0,0,924,0,9188 +98526,0,0,-1,-1,-1,0,714,0,9200 +98527,0,0,-1,-1,-1,0,654,0,9207 +98528,0,2,0,-1,-1,0,13486,0,9511 +98529,0,0,-1,-1,-1,0,854,0,8851 +98530,0,0,-1,-1,-1,0,870,0,8969 +98531,0,0,-1,0,0,0,3731,0,9045 +98532,0,0,-1,0,0,0,3731,0,9046 +98533,0,0,-1,0,0,0,952,0,9158 +98534,0,0,-1,0,0,0,952,0,9159 +98535,0,0,-1,-1,-1,0,11761,0,9442 +98536,0,0,-1,0,1000,59,22734,0,8079 +98537,0,0,-1,-1,-1,0,11503,0,9293 +98538,0,0,0,0,3000,330,10792,0,8628 +98539,0,2,0,-1,-1,0,18083,0,9419 +98540,0,0,-1,-1,-1,0,9953,0,7985 +98541,0,0,-1,-1,-1,0,9973,0,7986 +98542,0,0,-1,-1,-1,0,10845,0,8547 +98543,0,0,0,0,3000,330,8980,0,8583 +98544,0,0,-1,-1,-1,0,10010,0,8028 +98545,0,0,-1,-1,-1,0,9595,0,7741 +98546,0,0,-1,-1,-1,0,11505,0,9294 +98547,0,0,-1,-1,-1,0,11506,0,9295 +98548,0,0,-1,-1,-1,0,11507,0,9296 +98549,0,0,-1,0,0,0,920,0,9086 +98550,0,0,-1,0,0,0,944,0,9125 +98551,0,0,-1,0,0,0,944,0,9126 +98552,0,0,-1,-1,-1,0,9514,0,7678 +98553,0,0,-1,-1,-1,0,559,0,8947 +98554,0,0,-1,0,0,0,952,0,9160 +98555,0,0,-1,0,0,0,952,0,9161 +98556,0,2,0,-1,-1,0,16413,0,10797 +98557,0,0,-1,-1,-1,0,997,0,9031 +98558,0,0,-1,-1,-1,0,997,0,9032 +98559,0,0,-1,-1,-1,0,3734,0,8756 +98560,0,0,-1,-1,-1,0,11530,0,9302 +98561,0,0,-1,-1,-1,0,11532,0,9304 +98562,0,1,0,-1,-1,0,17746,0,8197 +98563,0,0,-1,0,0,0,946,0,9162 +98564,0,0,-1,0,0,0,946,0,9163 +98565,0,0,0,-1,-1,0,10679,0,8489 +98566,0,0,-1,0,1000,59,1135,0,8077 +98567,0,0,-1,0,1000,59,1137,0,8078 +98568,0,1,0,-1,-1,0,9140,0,9378 +98569,0,0,-1,-1,-1,0,3528,0,3867 +98570,0,0,-1,-1,-1,0,3724,0,8840 +98571,0,0,-1,-1,-1,0,9155,0,7360 +98572,0,0,-1,-1,-1,0,9151,0,7361 +98573,0,0,-1,-1,-1,0,9152,0,7362 +98574,0,0,-1,-1,-1,0,5307,0,8757 +98575,0,0,-1,-1,-1,0,3734,0,8791 +98576,0,0,-1,0,0,0,1076,0,8792 +98577,0,0,-1,-1,-1,0,3068,0,8857 +98578,0,0,-1,1000,-1,0,10344,0,8173 +98579,0,0,-1,-1,-1,0,9982,0,7987 +98580,0,0,-1,-1,-1,0,10517,0,8409 +98581,0,0,0,-1,-1,0,10683,0,8492 +98582,0,0,-1,-1,-1,0,14008,0,11141 +98583,0,0,-1,0,3000,79,11389,0,9154 +98584,0,0,-1,0,0,0,920,0,9085 +98585,0,2,0,-1,-1,0,11658,0,9372 +98586,0,0,-1,1000,-1,0,10850,0,8546 +98587,0,0,-1,0,1000,11,5004,0,7806 +98588,0,0,-1,0,1000,11,5004,0,7807 +98589,0,0,-1,-1,-1,0,9586,0,7766 +98590,0,2,0,-1,-1,0,18206,0,9475 +98591,0,0,-1,0,3000,79,11390,0,9155 +98592,0,0,-1,0,0,0,952,0,9156 +98593,0,0,0,0,3000,330,10788,0,8633 +98594,0,0,0,30000,30000,24,133,0,8688 +98595,0,0,-1,0,0,0,952,0,9135 +98596,0,0,-1,-1,-1,0,1366,0,6516 +98597,0,0,-1,-1,-1,0,9219,0,7453 +98598,0,0,-1,-1,-1,0,10369,0,8243 +98599,0,0,-1,-1,-1,0,13525,0,11098 +98600,0,0,-1,-1,-1,0,3067,0,5649 +98601,0,0,-1,-1,-1,0,7767,0,6344 +98602,0,0,-1,-1,-1,0,10510,0,8385 +98603,0,0,-1,-1,-1,0,11510,0,9300 +98604,0,0,0,10800000,-1,0,11209,0,8703 +98605,0,0,-1,-1,-1,0,3735,0,8774 +98606,0,0,0,900000,10000,1141,10578,0,8348 +98607,0,0,-1,-1,-1,0,656,0,8914 +98608,0,0,-1,0,1000,11,1131,0,8953 +98609,0,0,0,-1,-1,0,11654,0,9380 +98610,1,2,0,-1,-1,0,11657,0,9380 +98611,0,0,0,3600000,0,0,12438,0,9404 +98612,0,0,-1,-1,-1,0,9981,0,7988 +98613,0,0,-1,-1,-1,0,11009,0,9360 +98614,0,0,-1,0,0,0,920,0,9087 +98615,0,0,-1,-1,-1,0,962,0,8903 +98616,0,0,-1,-1,-1,0,3725,0,8908 +98617,0,0,0,-1,-1,0,12709,0,9364 +98618,0,0,-1,-1,-1,0,9583,0,7768 +98619,0,0,-1,0,3600000,103,10669,0,8412 +98620,0,1,0,0,0,0,9417,0,7685 +98621,0,2,0,-1,-1,0,16403,0,8224 +98622,0,1,0,0,-1,0,7688,0,7513 +98623,0,1,0,0,-1,0,7702,0,7514 +98624,0,1,0,0,0,0,9342,0,7515 +98625,1,0,0,1800000,0,0,9253,0,7515 +98626,0,0,-1,1000,-1,0,11542,0,9314 +98627,0,0,0,1800000,10000,1141,14537,0,7734 +98628,0,0,-1,-1,-1,0,1007,0,8997 +98629,0,0,-1,-1,-1,0,3075,0,8859 +98630,0,0,-1,-1,-1,0,3724,0,8861 +98631,0,0,-1,-1,-1,0,5305,0,8863 +98632,0,0,-1,-1,-1,0,3682,0,8864 +98633,0,0,-1,-1,-1,0,3737,0,8784 +98634,0,0,-1,-1,-1,0,3063,0,8785 +98635,0,0,-1,-1,-1,0,792,0,8786 +98636,0,0,-1,-1,-1,0,8202,0,6635 +98637,0,0,-1,-1,-1,0,8898,0,6636 +98638,0,0,-1,0,0,0,946,0,9137 +98639,0,0,-1,0,0,0,3731,0,9038 +98640,0,0,-1,0,0,0,900,0,9065 +98641,0,0,-1,-1,-1,0,844,0,8865 +98642,0,0,-1,-1,-1,0,485,0,8866 +98643,0,0,-1,-1,-1,0,7324,0,8867 +98644,0,0,-1,-1,-1,0,6639,0,8868 +98645,0,0,-1,-1,-1,0,1007,0,9026 +98646,0,0,-1,-1,-1,0,1007,0,9027 +98647,0,0,-1,-1,-1,0,8899,0,6637 +98648,0,0,-1,0,-1,0,11340,0,8928 +98649,0,0,-1,-1,-1,0,3068,0,8832 +98650,0,0,-1,-1,-1,0,3067,0,8833 +98651,0,0,-1,-1,-1,0,5305,0,8834 +98652,0,0,-1,-1,-1,0,962,0,8777 +98653,0,0,-1,-1,-1,0,494,0,8844 +98654,0,0,-1,0,0,0,566,0,9074 +98655,0,0,-1,0,0,0,924,0,9078 +98656,0,0,-1,0,0,0,924,0,9080 +98657,0,0,-1,0,0,0,924,0,9082 +98658,0,0,-1,0,0,0,924,0,9083 +98659,0,0,-1,0,0,0,920,0,9084 +98660,0,0,0,-1,-1,0,10675,0,8491 +98661,0,0,-1,-1,-1,0,3067,0,8858 +98662,0,0,-1,-1,-1,0,3734,0,8765 +98663,0,0,-1,-1,-1,0,9274,0,7561 +98664,0,0,-1,-1,-1,0,9965,0,7989 +98665,0,0,-1,-1,-1,0,9971,0,7990 +98666,0,0,0,0,3000,330,10790,0,8630 +98667,0,0,-1,-1,-1,0,7956,0,6474 +98668,0,0,-1,-1,-1,0,8856,0,7131 +98669,0,0,0,3600000,15000,1141,9174,0,7133 +98670,0,0,-1,-1,-1,0,8838,0,7114 +98671,0,0,-1,-1,-1,0,9594,0,7740 +98672,0,0,-1,-1,-1,0,5285,0,8743 +98673,0,0,-1,10000,1000,11,8063,0,6522 +98674,0,0,-1,-1,-1,0,5291,0,8789 +98675,0,0,-1,0,3000,79,11474,0,9264 +98676,0,0,0,1000,-1,0,11610,0,9328 +98677,0,1,0,-1,-1,0,9415,0,7714 +98678,0,0,-1,-1,-1,0,3723,0,8847 +98679,0,0,-1,-1,-1,0,3682,0,8848 +98680,0,1,0,0,0,0,13669,0,7936 +98681,1,0,0,1800000,0,0,9774,0,7936 +98682,0,0,-1,60000,0,150,7933,0,6453 +98683,0,0,-1,-1,-1,0,7937,0,6454 +98684,0,0,-1,-1,-1,0,9584,0,7767 +98685,0,1,0,900000,180000,0,9414,0,9470 +98686,0,1,0,-1,-1,0,9329,0,7359 +98687,0,1,0,-1,-1,0,29633,0,9412 +98688,0,0,-1,-1,-1,0,6637,0,8849 +98689,0,0,-1,-1,-1,0,6639,0,8850 +98690,0,0,0,-1,-1,0,10706,0,8501 +98691,0,0,-1,0,1000,11,433,0,6458 +98692,0,0,-1,-1,-1,0,3208,0,8758 +98693,0,0,-1,-1,-1,0,3734,0,8759 +98694,0,0,-1,-1,-1,0,3067,0,8818 +98695,0,0,-1,-1,-1,0,3723,0,8819 +98696,0,0,-1,-1,-1,0,874,0,8820 +98697,0,0,0,0,3000,330,10873,0,8563 +98698,0,0,-1,-1,-1,0,997,0,9021 +98699,0,0,-1,0,0,0,531,0,9037 +98700,0,1,0,-1,-1,0,9416,0,7749 +98701,0,0,-1,-1,-1,0,10573,0,8407 +98702,0,0,-1,0,0,0,944,0,9171 +98703,0,0,-1,0,0,0,944,0,9174 +98704,0,0,-1,0,0,0,946,0,9177 +98705,0,0,-1,0,0,0,946,0,9178 +98706,0,0,-1,0,3000,79,11396,0,9179 +98707,0,2,0,-1,-1,0,9632,0,7717 +98708,0,0,0,1800000,0,0,9252,0,7507 +98709,0,0,-1,-1,-1,0,9812,0,7978 +98710,0,0,0,-1,-1,0,3366,0,7146 +98711,0,0,-1,-1,-1,0,10014,0,8030 +98712,0,1,0,-1,-1,0,7597,0,7927 +98713,0,0,-1,-1,-1,0,11547,0,9319 +98714,0,0,-1,-1,-1,0,11548,0,9323 +98715,0,0,-1,-1,-1,0,10738,0,8444 +98716,0,0,-1,-1,-1,0,8088,0,6530 +98717,0,0,-1,-1,-1,0,8090,0,6532 +98718,0,1,0,-1,-1,0,7597,0,7719 +98719,0,0,-1,-1,-1,0,793,0,8764 +98720,0,0,-1,-1,-1,0,3684,0,8945 +98721,0,0,-1,-1,-1,0,5307,0,8761 +98722,0,1,0,-1,-1,0,7709,0,7709 +98723,0,1,0,-1,-1,0,9416,0,10018 +98724,0,0,-1,-1,-1,0,515,0,1002 +98725,0,0,-1,-1,-1,0,9596,0,7742 +98726,0,0,-1,-1,-1,0,7263,0,6056 +98727,0,0,-1,-1,-1,0,12185,0,10325 +98728,0,0,-1,-1,-1,0,12186,0,10326 +98729,0,1,0,-1,-1,0,15808,0,10570 +98730,0,0,-1,-1,-1,0,5291,0,8787 +98731,0,0,0,60000,30000,24,689,0,2012 +98732,0,0,0,300000,10000,1141,13278,0,10645 +98733,0,0,-1,-1,-1,0,13916,0,11208 +98734,0,0,0,1000,-1,0,6658,0,5687 +98735,0,0,0,3600000,0,0,13234,0,10721 +98736,0,1,0,-1,-1,0,15464,0,10837 +98737,0,2,0,-1,-1,0,13519,0,754 +98738,0,1,0,0,-1,0,7703,0,10572 +98739,0,2,0,-1,-1,0,13049,0,10847 +98740,0,0,-1,-1,-1,0,7108,0,5951 +98741,0,0,-1,-1,-1,0,7220,0,6041 +98742,0,0,-5,-1,-1,0,12851,0,10831 +98743,0,1,0,900000,30000,0,7517,0,10795 +98744,0,0,-1,-1,-1,0,12171,0,10311 +98745,0,1,0,-1,-1,0,9325,0,10023 +98746,0,0,-1,0,0,0,3089,0,9072 +98747,0,0,-1,0,0,0,3089,0,9073 +98748,0,0,-1,0,3000,79,11350,0,8956 +98749,0,0,-1,-1,-1,0,886,0,4160 +98750,0,0,-1,-1,-1,0,3895,0,4346 +98751,0,0,-1,0,0,0,3729,0,4174 +98752,0,0,-1,0,0,0,952,0,4184 +98753,0,1,0,0,0,38,8324,0,6711 +98754,0,0,-1,0,-1,0,8693,0,6951 +98755,0,0,0,30000,-1,0,11889,0,9621 +98756,1,2,0,-1,-1,0,11791,0,9465 +98757,0,0,0,0,3000,330,579,0,5663 +98758,0,0,-1,-1,-1,0,13169,0,10858 +98759,0,0,-1,-1,-1,0,13621,0,11152 +98760,0,0,-1,30000,-1,0,12189,0,10327 +98761,0,0,0,-1,-1,0,12304,0,10445 +98762,0,0,-1,-1,-1,0,12146,0,10315 +98763,0,0,-1,-1,-1,0,12173,0,10317 +98764,0,0,-1,-1,-1,0,13883,0,11206 +98765,0,1,0,0,0,0,12956,0,10779 +98766,0,1,0,-1,-1,0,9139,0,4825 +98767,0,0,-1,-1,-1,0,13647,0,11163 +98768,0,0,-1,0,0,0,952,0,9157 +98769,0,0,0,1800000,0,0,23134,0,10587 +98770,0,1,0,-1,-1,0,11789,0,10506 +98771,0,0,-1,-1,-1,0,9217,0,7451 +98772,0,0,-1,1000,-1,0,14209,0,10792 +98773,0,1,0,0,-1,0,13595,0,11263 +98774,0,0,-1,1000,-1,0,14210,0,10794 +98775,0,0,-1,-1,-1,0,14929,0,11412 +98776,0,0,-1,0,1000,11,1131,0,11415 +98777,0,0,-3,60000,30000,29,510,0,1533 +98778,0,0,-1,-1,-1,0,13656,0,11165 +98779,0,0,-1,-1,-1,0,997,0,4286 +98780,0,0,-1,-1,-1,0,8371,0,6736 +98781,0,1,0,-1,-1,0,8747,0,7052 +98782,0,0,-1,-1,-1,0,13565,0,11100 +98783,0,0,-1,-1,-1,0,13537,0,11101 +98784,0,0,-1,-1,-1,0,12646,0,10602 +98785,0,0,-1,-1,-1,0,12142,0,10316 +98786,0,0,-1,-1,-1,0,12148,0,10320 +98787,0,0,-1,-1,-1,0,15490,0,11683 +98788,0,1,0,-1,-1,0,9328,0,10002 +98789,0,0,-1,-1,-1,0,6626,0,5695 +98790,0,0,-1,1000,-1,0,9903,0,7965 +98791,0,0,-1,0,0,0,960,0,5716 +98792,0,0,-1,0,60000,24,12421,0,10514 +98793,0,0,0,-1,-1,0,13143,0,10757 +98794,0,0,-1,0,60000,24,12419,0,10507 +98795,0,0,0,-1,-1,0,10709,0,10394 +98796,0,0,-1,-1,-1,0,13842,0,11203 +98797,0,0,-1,-1,-1,0,3366,0,6207 +98798,0,0,-1,0,0,0,3078,0,5712 +98799,0,0,-1,-1,500,1951,13739,0,11174 +98800,0,0,-1,-1,500,1951,13740,0,11175 +98801,0,0,-5,-1,-1,0,12938,0,11582 +98802,0,0,0,-1,-1,0,10716,0,10361 +98803,0,0,-1,-1,-1,0,12706,0,10644 +98804,0,0,-1,-1,-1,0,12802,0,10687 +98805,0,0,-1,-1,-1,0,12806,0,10689 +98806,0,0,-1,-1,-1,0,12808,0,10690 +98807,0,0,-1,0,-1,0,13226,0,10921 +98808,0,0,-1,0,-1,0,13227,0,10922 +98809,0,0,-1,-1,500,1951,13361,0,10938 +98810,0,0,-1,-1,500,1951,13362,0,10939 +98811,0,0,-1,0,-1,0,13225,0,10920 +98812,0,0,0,45000,-1,0,14247,0,11170 +98813,0,0,-1,-1,-1,0,9154,0,7364 +98814,0,0,0,300000,-1,0,12346,0,10818 +98815,0,0,-1,0,60000,24,13808,0,10830 +98816,0,0,-1,0,0,0,946,0,4175 +98817,0,0,-1,-1,-1,0,3805,0,4299 +98818,0,0,-1,-1,-1,0,5291,0,5151 +98819,0,0,-1,-1,-1,0,18974,0,15208 +98820,0,0,-1,-1,-1,0,13869,0,11205 +98821,0,1,0,-1,-1,0,9346,0,10844 +98822,0,1,0,-1,-1,0,13670,0,10845 +98823,0,0,0,-1,-1,0,10695,0,10822 +98824,0,0,-1,-1,-1,0,13934,0,11224 +98825,0,0,0,300000,10000,1141,13183,0,10727 +98826,0,0,0,-1,-1,0,12534,0,10515 +98827,0,0,0,1800000,-1,0,12438,0,10518 +98828,0,0,-1,-1,-1,0,13688,0,11167 +98829,0,0,0,300000,-1,0,13978,0,11169 +98830,0,0,6,600000,10000,1141,13237,0,10577 +98831,0,0,0,1800000,0,0,13141,0,10724 +98832,0,0,-1,-1,-1,0,13904,0,11207 +98833,0,2,0,-1,-1,0,18075,0,10772 +98834,0,0,-1,-1,-1,0,9153,0,7363 +98835,0,0,-1,0,-1,0,13219,0,10918 +98836,0,2,0,-1,-1,0,18200,0,7753 +98837,0,0,-1,0,1000,11,433,0,6361 +98838,0,0,-1,0,1000,11,7737,0,11109 +98839,0,0,-1,-1,-1,0,10569,0,8401 +98840,0,0,0,-1,-1,0,10698,0,8498 +98841,0,0,-1,-1,-1,0,13699,0,11166 +98842,0,0,-1,-1,-1,0,13691,0,11168 +98843,0,0,0,-1,-1,0,12243,0,10398 +98844,0,1,0,-1,-1,0,9344,0,10003 +98845,0,1,0,-1,-1,0,9345,0,10011 +98846,0,1,0,-1,-1,0,9142,0,10624 +98847,0,2,0,-1,-1,0,12685,0,10625 +98848,0,0,-1,0,1000,11,1129,0,9681 +98849,0,0,0,300000,10000,1141,17283,0,13171 +98850,0,0,0,-1,-1,0,3366,0,12143 +98851,0,1,0,-1,-1,0,14824,0,11363 +98852,0,0,-1,-1,-1,0,13465,0,11081 +98853,0,0,-1,0,0,0,488,0,9089 +98854,0,0,-1,0,0,0,488,0,9090 +98855,0,0,0,-1,-1,0,10717,0,10392 +98856,0,0,0,-1,-1,0,10688,0,10393 +98857,0,0,-1,-1,-1,0,1150,0,8967 +98858,0,0,-1,-1,-1,0,3748,0,8968 +98859,0,0,-1,-1,-1,0,3085,0,9015 +98860,0,0,-1,-1,-1,0,12438,0,10684 +98861,0,0,-1,-1,-1,0,3208,0,1335 +98862,0,0,-1,-1,500,1951,13498,0,11082 +98863,1,1,0,-1,-1,0,7518,0,9625 +98864,0,0,-1,-1,-1,0,736,0,4214 +98865,0,2,0,-1,-1,0,56,0,9477 +98866,0,0,0,60000,0,0,12022,0,10030 +98867,0,1,0,-1,-1,0,9414,0,10031 +98868,0,0,0,60000,-1,0,11402,0,9189 +98869,0,0,-1,0,0,0,561,0,9051 +98870,0,0,0,30000,-1,0,11886,0,9618 +98871,0,0,-1,-1,-1,0,12199,0,10338 +98872,0,0,-1,0,0,0,488,0,9091 +98873,0,0,-1,0,0,0,488,0,9092 +98874,0,0,-1,0,0,0,946,0,9180 +98875,0,2,0,-1,-1,0,16405,0,9478 +98876,0,1,0,0,0,0,15807,0,9479 +98877,0,0,-1,-1,-1,0,3085,0,9016 +98878,0,0,-1,-1,-1,0,656,0,8913 +98879,0,0,-1,-1,-1,0,656,0,8916 +98880,0,0,0,5000,-1,0,15748,0,12144 +98881,0,2,0,-1,-1,0,18089,0,11902 +98882,0,0,0,-1,-1,0,15648,0,11903 +98883,0,0,-1,-1,-1,0,16447,0,12534 +98884,0,0,0,300000,-1,0,1184,0,1544 +98885,0,0,-1,0,0,0,900,0,1588 +98886,0,0,-1,0,0,0,946,0,9168 +98887,0,0,-1,0,0,0,944,0,9170 +98888,0,0,-1,300000,60000,24,13241,0,10646 +98889,0,0,-1,-1,-1,0,3094,0,8942 +98890,0,1,0,-1,-1,0,17868,0,10042 +98891,0,2,0,-1,-1,0,16405,0,8190 +98892,0,0,-1,0,0,0,3731,0,9039 +98893,0,1,0,-1,-1,0,9346,0,12756 +98894,0,0,-1,-1,-1,0,15491,0,11682 +98895,0,0,-1,-1,-1,0,15118,0,11569 +98896,0,0,-1,-1,-1,0,8369,0,6734 +98897,0,0,0,30000,-1,0,11887,0,9619 +98898,0,0,-1,-1,-1,0,656,0,8921 +98899,0,0,2,-1,-1,0,12283,0,10444 +98900,0,0,0,-1,-1,0,10714,0,10360 +98901,0,0,-1,-1,-1,0,13982,0,11231 +98902,0,0,-1,-1,-1,0,14050,0,11243 +98903,0,1,0,0,0,0,21363,0,10659 +98904,1,1,0,-1,-1,0,21596,0,10659 +98905,0,0,-1,0,0,0,534,0,9040 +98906,0,1,0,-1,-1,0,9411,0,10032 +98907,0,0,-1,600000,120000,4,11392,0,9172 +98908,0,0,-1,0,0,0,906,0,9070 +98909,0,0,-1,-1,-1,0,6637,0,8885 +98910,0,0,-1,-1,-1,0,3075,0,8841 +98911,0,0,-1,0,0,0,944,0,9176 +98912,0,0,-1,0,0,0,946,0,9181 +98913,0,0,-1,-1,-1,0,12345,0,10463 +98914,0,0,-1,0,0,0,3089,0,9094 +98915,0,1,0,-1,-1,0,12560,0,10542 +98916,0,0,-1,0,3000,79,12608,0,10592 +98917,0,2,0,-1,-1,0,56,0,10627 +98918,0,1,0,-1,-1,0,18079,0,10696 +98919,1,0,0,0,0,0,12938,0,10696 +98920,0,2,0,-1,-1,0,12686,0,10626 +98921,0,1,0,-1,-1,0,9325,0,10028 +98922,0,0,-1,-1,-1,0,11009,0,9260 +98923,0,0,0,30000,-1,0,11888,0,9620 +98924,0,0,0,-1,-1,0,11757,0,9466 +98925,0,2,0,-1,-1,0,3742,0,9467 +98926,0,0,-1,0,0,0,3089,0,9095 +98927,0,0,-1,0,0,0,952,0,9098 +98928,0,0,-1,-1,-1,0,3474,0,8933 +98929,0,0,-1,-1,-1,0,656,0,8934 +98930,0,0,-1,-1,-1,0,997,0,9007 +98931,0,1,0,-1,-1,0,21431,0,10510 +98932,0,0,-1,-1,-1,0,12253,0,10419 +98933,0,1,0,-1,-1,0,29634,0,10567 +98934,0,0,-1,-1,-1,0,12253,0,10460 +98935,0,0,0,-1,-1,0,12347,0,10464 +98936,0,0,-1,0,3600000,103,10692,0,8423 +98937,0,0,-1,0,3600000,103,10693,0,8424 +98938,0,0,-1,0,0,0,924,0,9079 +98939,0,0,-1,-1,-1,0,656,0,8922 +98940,0,1,0,10000,-1,0,9778,0,7939 +98941,0,2,0,0,-1,0,13534,0,7954 +98942,0,2,0,-1,-1,0,9806,0,7961 +98943,0,0,-1,0,120000,4,439,0,118 +98944,0,0,-1,0,0,0,924,0,9131 +98945,0,0,-1,0,0,0,952,0,9132 +98946,0,0,-1,0,0,0,952,0,9133 +98947,0,0,-1,0,0,0,952,0,9134 +98948,0,0,-1,-1,-1,0,997,0,8988 +98949,0,0,-1,0,0,0,566,0,9075 +98950,0,1,0,-1,-1,0,9415,0,10787 +98951,0,0,-1,-1,-1,0,3067,0,8896 +98952,0,0,-1,0,0,0,906,0,9066 +98953,0,0,-1,0,0,0,906,0,9067 +98954,0,0,-1,-1,-1,0,624,0,8966 +98955,0,0,-1,0,0,0,924,0,9081 +98956,0,0,-1,0,3000,79,11371,0,9088 +98957,0,0,-1,-1,-1,0,9781,0,7967 +98958,0,0,-1,-1,-1,0,9783,0,7969 +98959,0,0,-1,0,0,0,952,0,9096 +98960,0,0,-1,0,0,0,952,0,9097 +98961,0,2,0,-1,-1,0,11791,0,9485 +98962,0,1,0,-1,-1,0,11992,0,9978 +98963,0,0,-1,-1,-1,0,3081,0,9005 +98964,0,0,-1,1000,-1,0,12176,0,10308 +98965,0,0,-1,1000,-1,0,12179,0,10310 +98966,0,0,-1,-1,-1,0,964,0,8994 +98967,0,0,-1,0,0,0,3089,0,9071 +98968,0,0,-1,-1,-1,0,12138,0,10302 +98969,0,0,0,1200000,0,0,22641,0,10588 +98970,0,0,-1,-1,-1,0,12648,0,10604 +98971,0,0,-1,-1,-1,0,12649,0,10605 +98972,0,0,-1,-1,-1,0,12650,0,10606 +98973,0,0,-1,-1,-1,0,12651,0,10607 +98974,0,0,-1,-1,-1,0,12652,0,10608 +98975,0,1,0,-1,-1,0,9408,0,9431 +98976,0,1,0,-1,-1,0,14794,0,10025 +98977,0,1,0,-1,-1,0,7597,0,7937 +98978,0,1,0,-1,-1,0,9343,0,10009 +98979,0,0,-1,-1,-1,0,12894,0,10713 +98980,0,0,0,300000,0,0,13006,0,10716 +98981,0,0,-1,-1,-1,0,622,0,1102 +98982,0,0,-1,-1,-1,0,12647,0,10603 +98983,0,0,-1,0,0,0,541,0,4186 +98984,0,1,0,-1,-1,0,14248,0,9434 +98985,0,0,-1,0,1000,11,433,0,117 +98986,0,0,-1,0,1000,11,6727,0,8526 +98987,0,1,0,0,0,0,15874,0,9375 +98988,0,0,-1,-1,-1,0,3354,0,9221 +98989,0,0,-1,-1,-1,0,3354,0,9222 +98990,0,0,3,-1,-1,0,13494,0,9449 +98991,0,0,-1,-1,-1,0,368397,0,8938 +98992,0,0,-1,-1,-1,0,656,0,8940 +98993,0,0,-1,-1,-1,0,3071,0,8976 +98994,0,0,-1,-1,-1,0,890,0,8977 +98995,0,1,0,-1,-1,0,7706,0,10461 +98996,0,0,-1,-1,-1,0,12645,0,10601 +98997,0,0,-1,-1,-1,0,9967,0,7991 +98998,0,0,-1,0,1000,11,1131,0,8950 +98999,0,0,-1,0,3000,79,11349,0,8951 +99000,0,0,-1,-1,-1,0,981,0,9194 +99001,0,0,-1,-1,-1,0,12149,0,10322 +99002,0,0,-1,-1,-1,0,12150,0,10324 +99003,0,0,-1,-1,-1,0,890,0,8978 +99004,0,0,-1,-1,-1,0,964,0,8996 +99005,0,0,-1,0,0,0,900,0,9064 +99006,0,0,-1,0,60000,24,4074,0,10719 +99007,0,0,-1,0,60000,24,12562,0,10586 +99008,0,1,0,-1,-1,0,18074,0,10805 +99009,0,1,0,-1,-1,0,9316,0,10020 +99010,0,0,-1,-1,-1,0,12684,0,10622 +99011,0,2,0,-1,-1,0,13439,0,10623 +99012,0,1,0,-1,-1,0,9298,0,10044 +99013,0,1,0,-1,-1,0,17993,0,9482 +99014,0,1,0,-1,-1,0,9346,0,10021 +99015,0,0,-1,-1,-1,0,956,0,9191 +99016,0,0,-1,-1,-1,0,1107,0,9192 +99017,0,0,-1,0,0,0,924,0,9129 +99018,0,0,-1,-1,-1,0,11437,0,9249 +99019,0,0,0,-1,-1,0,11438,0,9252 +99020,0,0,-1,-1,-1,0,656,0,8943 +99021,0,0,-1,-1,-1,0,733,0,1244 +99022,0,1,0,-1,-1,0,12418,0,10501 +99023,0,1,0,-1,-1,0,14248,0,10502 +99024,0,0,0,-1,-1,0,12735,0,10663 +99025,0,0,-1,0,3000,79,11403,0,9197 +99026,0,2,0,0,-1,0,13532,0,9639 +99027,0,1,0,0,0,0,9408,0,9393 +99028,0,0,-1,0,1000,59,432,0,9451 +99029,0,0,-1,0,-1,0,11338,0,8926 +99030,0,0,-1,-1,-1,0,559,0,8929 +99031,0,0,-1,-1,-1,0,3695,0,8946 +99032,0,0,-1,-1,-1,0,15340,0,11622 +99033,0,1,0,-1,-1,0,14799,0,11904 +99034,0,1,0,-1,-1,0,15776,0,12062 +99035,0,0,-1,0,0,0,906,0,9069 +99036,0,2,0,-1,-1,0,16408,0,11121 +99037,0,0,-1,-1,-1,0,16674,0,12685 +99038,0,1,0,-1,-1,0,21361,0,13179 +99039,0,0,-1,-1,-1,0,3734,0,8800 +99040,0,0,-1,-1,-1,0,3723,0,8874 +99041,0,0,-1,-1,-1,0,656,0,8910 +99042,0,0,-1,-1,-1,0,15441,0,11667 +99043,0,0,-1,-1,-1,0,15449,0,11673 +99044,0,0,-1,-1,-1,0,3456,0,3831 +99045,0,0,-1,0,0,0,946,0,9138 +99046,0,0,-1,-1,-1,0,16672,0,12683 +99047,0,0,-1,-1,-1,0,15936,0,12226 +99048,0,0,-1,-1,-1,0,15854,0,12227 +99049,0,0,-1,-1,-1,0,15858,0,12229 +99050,0,0,-1,0,0,0,946,0,9103 +99051,0,2,0,-1,-1,0,10373,0,9425 +99052,0,0,-1,0,1000,0,434,0,12238 +99053,0,0,-1,-1,-1,0,15908,0,12239 +99054,0,0,-1,-1,-1,0,11531,0,9301 +99055,0,2,0,-1,-1,0,15494,0,11684 +99056,0,1,0,-1,-1,0,9415,0,11685 +99057,0,1,0,-1,-1,0,9336,0,11686 +99058,0,1,0,-1,-1,0,18076,0,11907 +99059,0,0,-1,-1,-1,0,9577,0,7733 +99060,0,1,0,-1,-1,0,13669,0,7926 +99061,0,2,0,-1,-1,0,19260,0,13148 +99062,0,0,0,30000,-1,0,17536,0,13536 +99063,0,2,0,-1,-1,0,18214,0,13051 +99064,0,0,0,-1,-1,0,15048,0,11825 +99065,0,1,0,-1,-1,0,9415,0,11632 +99066,0,0,-1,-1,-1,0,16077,0,12350 +99067,0,0,-1,-1,-1,0,15297,0,11610 +99068,0,0,-1,-1,-1,0,15298,0,11611 +99069,0,0,-1,-1,-1,0,15299,0,11612 +99070,0,0,-1,-1,-1,0,730,0,9199 +99071,0,0,0,1800000,10000,1141,11826,0,9492 +99072,0,0,-1,0,3000,79,11405,0,9206 +99073,0,2,0,-1,-1,0,16939,0,12802 +99074,0,1,0,0,0,0,9346,0,12543 +99075,0,1,0,0,0,0,7597,0,12548 +99076,0,1,0,-1,-1,0,7598,0,9413 +99077,0,0,-1,-1,-1,0,17033,0,12835 +99078,0,1,0,-1,-1,0,9141,0,12259 +99079,0,1,0,-1,-1,0,17819,0,12105 +99080,0,0,-1,-1,-1,0,854,0,8860 +99081,0,0,-1,-1,-1,0,3212,0,1332 +99082,0,0,-1,-1,-1,0,5307,0,8798 +99083,0,0,-1,-1,-1,0,10575,0,8408 +99084,0,0,-1,-1,-1,0,15391,0,11643 +99085,0,0,-1,0,0,0,946,0,9104 +99086,0,0,-1,-1,-1,0,3735,0,8783 +99087,0,1,0,0,-1,0,13669,0,11755 +99088,0,0,0,-1,-1,0,10680,0,8496 +99089,0,1,0,-1,-1,0,13665,0,11931 +99090,1,1,0,-1,-1,0,7597,0,11931 +99091,2,1,0,-1,-1,0,9336,0,11931 +99092,0,0,-1,-1,-1,0,734,0,9190 +99093,0,0,0,900000,45000,1141,12766,0,10455 +99094,0,0,-1,0,1000,11,1131,0,12763 +99095,0,0,-1,-1,-1,0,12460,0,10548 +99096,0,0,-1,-1,-1,0,7227,0,6045 +99097,0,0,-1,-1,-1,0,6694,0,5774 +99098,0,0,-1,1000,-1,0,14227,0,10793 +99099,0,0,0,-1,-1,0,15303,0,11613 +99100,0,0,-1,0,120000,4,4941,0,4623 +99101,0,0,-1,-1,-1,0,5305,0,8855 +99102,0,0,-1,-1,-1,0,3075,0,8823 +99103,0,0,-1,0,3000,79,11334,0,9187 +99104,0,0,0,-1,-1,0,15049,0,11826 +99105,0,1,0,-1,-1,0,18031,0,11841 +99106,0,1,0,-1,-1,0,9344,0,11842 +99107,0,0,-1,-1,-1,0,16796,0,12733 +99108,0,0,-1,0,1000,11,1131,0,8948 +99109,0,0,-1,-1,-1,0,16760,0,12726 +99110,0,0,-1,-1,-1,0,16761,0,12727 +99111,0,0,0,1800000,0,0,10577,0,8346 +99112,0,0,-1,-1,-1,0,4026,0,4408 +99113,0,0,0,180000,0,0,9223,0,6286 +99114,0,1,0,-1,-1,0,7219,0,12639 +99115,1,1,0,-1,-1,0,13665,0,12639 +99116,2,1,0,-1,-1,0,7597,0,12639 +99117,0,1,0,-1,-1,0,7598,0,12640 +99118,1,1,0,-1,-1,0,15465,0,12640 +99119,0,0,-1,-1,-1,0,6644,0,3101 +99120,0,0,-1,-1,-1,0,16762,0,12728 +99121,0,0,-1,-1,-1,0,3084,0,3122 +99122,0,1,0,-1,-1,0,13387,0,12115 +99123,0,0,-1,-1,-1,0,15975,0,12261 +99124,0,0,-1,0,0,0,566,0,9077 +99125,0,1,0,-1,-1,0,13587,0,11122 +99126,0,0,-1,-1,-1,0,16684,0,12696 +99127,0,0,-1,-1,-1,0,16686,0,12698 +99128,0,0,-1,-1,-1,0,17034,0,12836 +99129,0,0,-1,-1,-1,0,17035,0,12837 +99130,0,0,-1,-1,-1,0,17036,0,12838 +99131,0,1,0,-1,-1,0,13669,0,11910 +99132,0,0,-1,0,1000,11,10256,0,12215 +99133,0,0,-1,0,1000,11,10256,0,12216 +99134,0,0,-1,-1,-1,0,6637,0,8862 +99135,0,0,-1,-1,-1,0,6428,0,5487 +99136,0,1,0,0,0,38,21751,0,6708 +99137,0,0,-1,-1,-1,0,3366,0,12301 +99138,0,1,0,-1,-1,0,7617,0,1131 +99139,0,0,-1,-1,-1,0,656,0,8915 +99140,0,0,-1,0,60000,24,15239,0,11566 +99141,0,1,0,-1,-1,0,29418,0,11362 +99142,0,0,-1,-1,-1,0,494,0,8810 +99143,0,0,-1,-1,-1,0,11758,0,8584 +99144,0,0,-1,-1,-1,0,5307,0,8768 +99145,0,0,0,60000,60000,28,905,0,2803 +99146,0,2,0,-1,-1,0,18104,0,811 +99147,0,2,0,-1,-1,0,17148,0,1263 +99148,0,1,0,-1,-1,0,16718,0,12709 +99149,1,1,0,-1,-1,0,18067,0,12709 +99150,0,0,-1,-1,-1,0,16754,0,12719 +99151,0,0,-1,-1,-1,0,16755,0,12720 +99152,0,0,-1,-1,-1,0,1029,0,5723 +99153,0,0,0,0,3000,330,10793,0,8629 +99154,0,0,-1,-1,-1,0,16695,0,12706 +99155,0,0,-1,-1,-1,0,16696,0,12707 +99156,0,0,-1,-1,-1,0,3209,0,1880 +99157,0,1,0,-1,-1,0,7823,0,12222 +99158,0,0,-1,0,1000,11,5004,0,12224 +99159,0,0,0,-1,-1,0,14250,0,11286 +99160,0,1,0,-1,-1,0,9401,0,11807 +99161,0,0,0,-1,-1,0,16007,0,12284 +99162,0,0,-1,0,0,0,621,0,5697 +99163,0,1,0,0,0,0,23727,0,12103 +99164,0,1,0,-1,-1,0,9331,0,12104 +99165,0,0,-1,60000,-1,0,16629,0,12650 +99166,0,0,-1,0,0,0,946,0,9182 +99167,0,0,-1,-1,-1,0,11760,0,9439 +99168,0,0,-1,0,1000,11,5004,0,11584 +99169,0,0,-1,-1,-1,0,12136,0,10300 +99170,0,0,-1,-1,-1,0,12261,0,10424 +99171,0,0,-1,-1,-1,0,2553,0,2697 +99172,0,0,-1,180000,-1,0,16031,0,12288 +99173,0,0,-1,0,1000,11,1131,0,11444 +99174,0,0,-1,-1,-1,0,2410,0,2600 +99175,0,0,-1,-1,-1,0,3735,0,8901 +99176,0,0,-1,-1,-1,0,3085,0,9001 +99177,0,0,-4,-1,-1,0,17155,0,12906 +99178,0,1,0,-1,-1,0,17371,0,12625 +99179,0,1,0,-1,-1,0,16611,0,12628 +99180,0,0,-1,-1,-1,0,962,0,8763 +99181,0,0,-1,-1,-1,0,3723,0,8875 +99182,0,0,-1,1000,-1,0,12174,0,10309 +99183,0,0,-1,-1,-1,0,16693,0,12704 +99184,0,0,-1,-1,-1,0,16694,0,12705 +99185,0,0,0,-1,-1,0,14247,0,11522 +99186,0,0,-1,-1,-1,0,15862,0,12231 +99187,0,0,-1,-1,-1,0,997,0,9035 +99188,0,0,-1,-1,-1,0,8896,0,7192 +99189,0,0,-1,0,0,0,558,0,9050 +99190,0,1,0,-1,-1,0,7689,0,12260 +99191,0,1,0,-1,-1,0,9344,0,12107 +99192,0,1,0,-1,-1,0,7517,0,12550 +99193,0,0,-1,0,0,0,924,0,9130 +99194,0,1,0,-1,-1,0,9332,0,12061 +99195,0,1,0,-1,-1,0,7363,0,6182 +99196,0,0,-5,-1,-1,0,16053,0,12300 +99197,0,2,0,-1,-1,0,16433,0,11744 +99198,0,1,0,-1,-1,0,13386,0,11746 +99199,0,0,-1,2000,-1,0,17047,0,12844 +99200,0,0,0,300000,0,0,17447,0,11808 +99201,0,2,0,-1,-1,0,16559,0,11809 +99202,0,1,0,-1,-1,0,15594,0,11810 +99203,1,1,0,-1,-1,0,13385,0,11810 +99204,0,1,0,-1,-1,0,15465,0,12082 +99205,0,0,-1,0,-1,0,11355,0,8984 +99206,0,0,-1,0,120000,1153,15229,0,11562 +99207,0,1,0,-1,-1,0,9142,0,13138 +99208,0,0,0,1800000,0,0,17252,0,13143 +99209,0,1,0,-1,-1,0,7678,0,13031 +99210,1,1,0,-1,-1,0,7707,0,13031 +99211,0,2,0,-1,-1,0,17510,0,13032 +99212,0,0,-1,-1,-1,0,15276,0,11602 +99213,0,2,0,-1,-1,0,16405,0,11603 +99214,0,1,0,-1,-1,0,7597,0,12258 +99215,0,0,-1,-1,-1,0,13564,0,11197 +99216,0,0,0,0,3000,330,16060,0,12327 +99217,0,1,0,-1,-1,0,18382,0,12752 +99218,0,0,-1,-1,-1,0,10532,0,8387 +99219,0,0,-1,-1,-1,0,490,0,980 +99220,0,1,0,-1,-1,0,9397,0,10796 +99221,0,1,0,-1,-1,0,13388,0,13041 +99222,0,0,0,-1,-1,0,16447,0,12526 +99223,0,1,0,-1,-1,0,9140,0,12527 +99224,0,0,-1,0,0,0,561,0,9049 +99225,0,0,0,-1,-1,0,11438,0,9251 +99226,0,1,0,-1,-1,0,19691,0,1465 +99227,0,0,-1,-1,-1,0,496,0,9211 +99228,0,0,-1,0,0,0,946,0,9167 +99229,0,0,-1,-1,120000,1153,16666,0,12662 +99230,0,2,0,-1,-1,0,13442,0,6220 +99231,0,0,-1,-1,-1,0,12459,0,10546 +99232,0,1,0,-1,-1,0,9335,0,10823 +99233,0,0,-1,-1,-1,0,2352,0,2791 +99234,0,0,0,-1,-1,0,17133,0,12888 +99235,0,2,0,-1,-1,0,16413,0,12992 +99236,0,1,0,-1,-1,0,7598,0,12757 +99237,1,1,0,-1,-1,0,13669,0,12757 +99238,0,1,0,-1,-1,0,15600,0,11815 +99239,1,1,0,-1,-1,0,9331,0,11815 +99240,0,0,-1,0,120000,1153,15700,0,11951 +99241,0,0,-1,0,120000,1153,15701,0,11952 +99242,0,0,-1,-1,-1,0,6641,0,8853 +99243,0,0,0,1800000,0,0,13180,0,10726 +99244,0,0,0,-1,-1,0,10685,0,11023 +99245,0,1,0,0,-1,0,15464,0,11964 +99246,0,1,0,0,0,0,17866,0,12926 +99247,0,1,0,0,0,0,8397,0,11302 +99248,0,1,0,-1,-1,0,15714,0,11822 +99249,0,1,0,-1,-1,0,15714,0,11823 +99250,0,0,-1,-1,-1,0,15301,0,11614 +99251,0,0,-1,-1,-1,0,11509,0,9298 +99252,0,0,0,0,3000,330,16058,0,12325 +99253,0,0,-1,-1,-1,0,15635,0,11827 +99254,0,0,0,-1,-1,0,10704,0,11026 +99255,0,0,0,-1,-1,0,10703,0,11027 +99256,0,1,0,-1,-1,0,23727,0,11662 +99257,1,1,0,-1,-1,0,9417,0,11662 +99258,0,1,0,0,-1,0,13390,0,13091 +99259,0,1,0,-1,-1,0,9403,0,7060 +99260,0,0,-1,-1,-1,0,8798,0,7086 +99261,0,0,-1,-1,-1,0,15634,0,11828 +99262,0,1,0,0,0,0,15438,0,11669 +99263,1,1,0,-1,-1,0,13383,0,11669 +99264,0,0,-1,-1,-1,0,15444,0,11670 +99265,0,0,-1,-1,-1,0,15446,0,11671 +99266,0,0,-1,-1,-1,0,15458,0,11672 +99267,0,0,0,3000,-1,0,16028,0,12286 +99268,0,0,0,-1,3000,330,16083,0,12353 +99269,0,0,-1,0,0,0,944,0,9175 +99270,0,0,-1,0,0,0,3089,0,9093 +99271,1,1,0,-1,-1,0,7598,0,11726 +99272,0,0,-1,-1,-1,0,15302,0,11615 +99273,0,1,0,-1,-1,0,7707,0,10049 +99274,0,0,-1,-1,-1,0,14199,0,11148 +99275,0,0,-1,0,0,0,15233,0,11564 +99276,0,0,-1,-1,-1,0,11008,0,11846 +99277,0,0,-1,-1,-1,0,624,0,4266 +99278,0,0,-1,1000,-1,0,14814,0,11325 +99279,0,0,-1,-1,-1,0,3085,0,9013 +99280,0,0,-1,-1,-1,0,3081,0,9004 +99281,0,1,0,-1,-1,0,9331,0,13166 +99282,0,1,0,-1,-1,0,9140,0,13248 +99283,0,0,-1,-1,-1,0,11533,0,9305 +99284,0,0,-1,-1,-1,0,13393,0,11038 +99285,0,0,0,120000,-1,0,18364,0,14134 +99286,0,1,0,-1,-1,0,7598,0,11735 +99287,0,1,0,0,0,0,9415,0,11824 +99288,0,0,0,-1,-1,0,10682,0,8494 +99289,0,0,0,0,3000,330,10969,0,8595 +99290,0,0,-1,-1,-1,0,874,0,8843 +99291,0,0,-1,0,0,0,3210,0,1036 +99292,0,2,0,-1,-1,0,13439,0,10761 +99293,0,2,0,-1,-1,0,16411,0,10628 +99294,0,0,-1,-1,-1,0,12653,0,10609 +99295,0,1,0,-1,-1,0,14799,0,11747 +99296,0,1,0,0,0,0,9400,0,11748 +99297,0,0,-1,-1,-1,0,15649,0,11836 +99298,0,0,-1,-1,-1,0,5272,0,5130 +99299,0,0,-1,-1,-1,0,4976,0,4754 +99300,0,0,0,0,3000,330,6777,0,5864 +99301,0,0,0,-1,-1,0,15033,0,11445 +99302,0,0,-1,-1,-1,0,15406,0,11649 +99303,0,0,-1,-1,-1,0,997,0,8989 +99304,0,0,-1,-1,-1,0,495,0,4146 +99305,0,0,-1,-1,-1,0,15397,0,11645 +99306,0,0,-1,-1,-1,0,15404,0,11648 +99307,0,0,-1,-1,-1,0,7134,0,5972 +99308,0,0,-1,0,0,0,15231,0,11563 +99309,0,0,-1,0,3000,79,11319,0,8827 +99310,0,0,-1,-1,-1,0,1003,0,4277 +99311,0,0,-1,-1,-1,0,15463,0,11676 +99312,0,0,0,-1,-1,0,13548,0,11110 +99313,0,1,0,-1,-1,0,7823,0,7996 +99314,0,1,0,-1,-1,0,13669,0,11872 +99315,0,0,-1,-1,-1,0,12182,0,10318 +99316,0,2,0,-1,-1,0,15280,0,11607 +99317,0,0,-1,-1,-1,0,15699,0,11948 +99318,0,0,-1,-1,-1,0,3684,0,8935 +99319,0,0,-1,-1,-1,0,997,0,9034 +99320,1,0,-1,0,120000,1153,11732,0,9421 +99321,0,0,-1,-1,-1,0,13420,0,11039 +99322,0,0,-1,-1,-1,0,15389,0,11642 +99323,0,0,0,-1,-1,0,471,0,902 +99324,0,1,0,-1,-1,0,9343,0,11623 +99325,0,2,0,-1,-1,0,15283,0,11608 +99326,0,0,-1,0,0,0,952,0,9099 +99327,0,2,0,-1,-1,0,13527,0,9486 +99328,0,0,-1,-1,-1,0,656,0,8911 +99329,0,0,-1,-1,-1,0,15394,0,11644 +99330,0,1,0,-1,-1,0,9343,0,11624 +99331,0,1,0,-1,-1,0,9342,0,11633 +99332,0,0,-1,120000,0,0,15057,0,11590 +99333,0,0,-1,-1,-1,0,13654,0,11164 +99334,0,0,-1,-1,-1,0,13949,0,11226 +99335,0,0,0,3600000,60000,94,23075,0,10576 +99336,0,2,0,-1,-1,0,13530,0,8225 +99337,0,0,0,-1,-1,0,14806,0,11320 +99338,0,0,-1,-1,-1,0,15429,0,11664 +99339,0,0,-1,-1,-1,0,12147,0,10319 +99340,0,0,-1,-1,-1,0,3095,0,3143 +99341,0,0,0,-1,-1,0,3366,0,11000 +99342,0,0,-1,0,0,0,906,0,9068 +99343,0,0,-1,0,0,0,3211,0,1063 +99344,0,0,-1,300000,0,0,15279,0,11567 +99345,0,0,-1,-1,-1,0,854,0,8890 +99346,0,0,-1,-1,-1,0,10459,0,8155 +99347,0,0,-1,-1,-1,0,9951,0,7984 +99348,0,0,0,600000,-1,0,13399,0,11020 +99349,0,0,-1,0,120000,4,6614,0,5632 +99350,0,0,0,-1,3000,330,468,0,2415 +99351,0,0,-1,0,0,0,952,0,9151 +99352,0,2,0,-1,-1,0,18088,0,10803 +99353,0,2,0,-1,-1,0,18084,0,10804 +99354,0,0,-1,-1,-1,0,15702,0,11953 +99355,0,0,-1,-1,-1,0,3215,0,1090 +99356,0,0,-1,-1,-1,0,15066,0,11473 +99357,0,0,0,-1,-1,0,15067,0,11474 +99358,0,1,0,-1,-1,0,15464,0,12651 +99359,0,0,-1,-1,-1,0,13564,0,11085 +99360,0,0,0,600000,0,0,13120,0,10720 +99361,0,1,0,-1,-1,0,21625,0,11634 +99362,0,2,0,-1,-1,0,13526,0,11635 +99363,0,0,0,3600000,0,0,12561,0,10543 +99364,0,0,-1,-1,-1,0,3976,0,4407 +99365,0,0,-1,0,1000,11,1129,0,4599 +99366,0,0,-1,-1,-1,0,15998,0,12262 +99367,0,0,-1,-1,-1,0,16679,0,12691 +99368,0,0,-1,-1,-1,0,16680,0,12692 +99369,0,0,-1,-1,-1,0,16681,0,12693 +99370,0,0,-1,-1,-1,0,16682,0,12694 +99371,0,0,0,900000,0,0,15646,0,11832 +99372,1,1,0,-1,-1,0,9417,0,11832 +99373,0,0,-1,-1,-1,0,15627,0,11833 +99374,0,0,0,1800000,0,0,23133,0,10725 +99375,0,0,-1,-1,-1,0,997,0,9022 +99376,0,0,0,600000,0,0,12733,0,10418 +99377,0,1,0,-1,-1,0,7597,0,12940 +99378,0,0,0,-1,-1,0,17709,0,13582 +99379,0,0,0,-1,-1,0,17708,0,13584 +99380,0,0,-1,-1,-1,0,15597,0,11813 +99381,0,2,0,-1,-1,0,16603,0,12621 +99382,0,1,0,-1,-1,0,9141,0,12535 +99383,0,0,-1,-1,-1,0,3401,0,3734 +99384,0,0,0,2000,-1,0,4954,0,5410 +99385,0,0,-1,-1,500,1951,13632,0,11134 +99386,0,0,-1,-1,500,1951,13633,0,11135 +99387,0,0,-1,-1,-1,0,1025,0,4203 +99388,0,0,-1,0,120000,4,17546,0,13458 +99389,0,0,-1,0,120000,4,17545,0,13460 +99390,0,0,-1,0,120000,4,17550,0,13462 +99391,0,1,0,-1,-1,0,21596,0,13387 +99392,0,1,0,-1,-1,0,9344,0,13388 +99393,0,1,0,-1,-1,0,9397,0,13391 +99394,0,1,0,0,0,0,17947,0,13700 +99395,1,1,0,0,0,0,23482,0,13700 +99396,0,1,0,0,0,0,17949,0,13701 +99397,1,1,0,0,0,0,23483,0,13701 +99398,0,0,0,-1,-1,0,3366,0,13704 +99399,0,0,-1,-1,-1,0,13850,0,11204 +99400,0,0,-1,0,1000,11,26030,0,11950 +99401,0,0,-1,-1,-1,0,18257,0,13947 +99402,0,1,0,-1,-1,0,17713,0,13586 +99403,0,1,0,-1,-1,0,15464,0,7950 +99404,0,0,0,-1,-1,0,17133,0,12886 +99405,0,0,0,-1,-1,0,17133,0,12887 +99406,0,1,0,900000,30000,0,7517,0,12985 +99407,0,0,-5,-1,-1,0,16057,0,12323 +99408,0,0,-1,0,1000,11,18071,0,13724 +99409,0,0,-1,-1,-1,0,17432,0,13302 +99410,0,0,-1,-1,-1,0,15757,0,12164 +99411,0,0,0,-1,-1,0,3366,0,12186 +99412,0,1,0,-1,-1,0,15804,0,12187 +99413,0,1,0,-1,-1,0,9318,0,12554 +99414,0,0,-1,-1,-1,0,13982,0,11609 +99415,0,1,0,-1,-1,0,4070,0,1490 +99416,0,0,-1,0,120000,4,17543,0,13457 +99417,0,0,-1,0,1000,11,1129,0,13893 +99418,0,2,0,0,-1,0,16921,0,12794 +99419,0,2,0,-1,-1,0,13318,0,12795 +99420,0,2,0,-1,-1,0,56,0,12796 +99421,0,0,-1,-1,-1,0,17640,0,13517 +99422,0,0,-1,-1,-1,0,17641,0,13518 +99423,0,0,-1,-1,-1,0,18258,0,13948 +99424,0,1,0,-1,-1,0,18065,0,13716 +99425,0,1,0,-1,-1,0,18066,0,13717 +99426,0,0,-1,-1,-1,0,17591,0,13485 +99427,0,0,-1,-1,-1,0,17592,0,13486 +99428,0,1,0,-1,-1,0,9346,0,13092 +99429,0,1,0,-1,-1,0,13669,0,13260 +99430,0,2,0,-1,-1,0,18112,0,13262 +99431,0,0,-1,-1,-1,0,18254,0,13943 +99432,0,1,0,-1,-1,0,7598,0,13944 +99433,0,2,0,-1,-1,0,16405,0,13060 +99434,0,0,-1,-1,-1,0,17025,0,12826 +99435,0,0,-1,-1,-1,0,17026,0,12827 +99436,0,0,-1,-1,-1,0,17027,0,12828 +99437,0,0,0,1800000,0,0,16739,0,1973 +99438,0,1,0,-1,-1,0,17623,0,13544 +99439,0,2,0,-1,-1,0,16414,0,11920 +99440,0,1,0,-1,-1,0,18018,0,14136 +99441,1,1,0,-1,-1,0,17900,0,14136 +99442,0,1,0,-1,-1,0,18378,0,14141 +99443,0,1,0,-1,-1,0,18379,0,14142 +99444,0,0,-1,-1,-1,0,18259,0,13949 +99445,0,0,0,300000,-1,0,12346,0,10465 +99446,0,1,0,-1,-1,0,15464,0,11921 +99447,1,1,0,-1,-1,0,7598,0,11921 +99448,0,1,0,0,-1,0,7597,0,12929 +99449,0,0,-1,0,60000,24,4067,0,4380 +99450,0,0,0,0,3000,330,16081,0,12351 +99451,0,0,0,0,3000,330,16082,0,12354 +99452,0,1,0,-1,-1,0,9343,0,13161 +99453,0,0,0,1800000,0,0,17275,0,13164 +99454,0,0,-1,-1,-1,0,17585,0,13479 +99455,0,0,-1,-1,-1,0,17587,0,13481 +99456,0,0,-1,-1,-1,0,17588,0,13482 +99457,0,0,-1,-1,-1,0,17643,0,13520 +99458,0,0,0,-1,-1,0,16628,0,12646 +99459,0,0,0,0,3000,330,8394,0,8631 +99460,0,1,0,-1,-1,0,7721,0,12631 +99461,0,1,0,-1,-1,0,18052,0,13170 +99462,0,0,-1,-1,-1,0,17644,0,13521 +99463,0,0,-1,-1,-1,0,17645,0,13522 +99464,0,0,-1,-1,-1,0,3366,0,13523 +99465,0,0,0,-1,-1,0,17368,0,13256 +99466,0,1,0,-1,-1,0,13831,0,11782 +99467,0,1,0,-1,-1,0,13388,0,12618 +99468,0,1,0,-1,-1,0,13388,0,12620 +99469,0,1,0,-1,-1,0,16615,0,12632 +99470,1,1,0,-1,-1,0,9361,0,12632 +99471,1,1,0,-1,-1,0,18029,0,12633 +99472,0,1,0,-1,-1,0,15810,0,12634 +99473,0,0,-1,-1,-1,0,16623,0,12645 +99474,0,0,-1,-1,-1,0,12184,0,10323 +99475,0,0,0,1000,-1,0,17176,0,12942 +99476,0,1,0,-1,-1,0,13384,0,13074 +99477,0,0,-1,-1,-1,0,18532,0,14512 +99478,0,0,-1,-1,-1,0,18537,0,14514 +99479,0,1,0,-1,-1,0,7680,0,14522 +99480,0,1,0,-1,-1,0,9331,0,13095 +99481,0,1,0,-1,-1,0,9342,0,13101 +99482,0,1,0,-1,-1,0,17371,0,13102 +99483,0,0,-1,-1,-1,0,18526,0,14509 +99484,0,0,-1,1000,-1,0,2864,0,4427 +99485,0,1,0,-1,-1,0,15465,0,12927 +99486,1,1,0,-1,-1,0,14027,0,12927 +99487,0,1,0,-1,-1,0,17670,0,12846 +99488,0,0,-1,-1,-1,0,16750,0,12716 +99489,0,0,-1,-1,-1,0,16751,0,12717 +99490,0,0,-1,-1,-1,0,17589,0,13483 +99491,0,2,0,0,-1,0,13318,0,12791 +99492,0,0,10,30000,30000,0,17166,0,12928 +99493,0,1,0,0,0,0,16982,0,12805 +99494,0,0,-1,-1,-1,0,17590,0,13484 +99495,0,1,0,0,-1,0,9317,0,11923 +99496,0,1,0,-1,-1,0,9346,0,11924 +99497,0,1,0,-1,-1,0,7598,0,11926 +99498,0,1,0,-1,-1,0,15816,0,12784 +99499,0,0,-1,-1,-1,0,18529,0,14510 +99500,0,0,0,0,3000,330,17458,0,13325 +99501,0,2,0,-1,-1,0,16916,0,12790 +99502,0,1,0,-1,-1,0,7597,0,13217 +99503,0,0,-1,-1,-1,0,17432,0,13303 +99504,0,1,0,-1,-1,0,9336,0,13368 +99505,0,1,0,-1,-1,0,13830,0,13369 +99506,0,1,0,-1,-1,0,9343,0,13964 +99507,0,0,-1,-1,-1,0,16537,0,12586 +99508,0,1,0,0,-1,0,13390,0,12602 +99509,0,1,0,-1,-1,0,17178,0,12947 +99510,0,0,-1,-1,-1,0,15755,0,12162 +99511,0,0,-1,-1,-1,0,16749,0,12714 +99512,0,0,-1,-1,-1,0,16752,0,12715 +99513,0,0,-1,0,3000,79,17539,0,13454 +99514,0,0,-1,0,0,0,17730,0,13603 +99515,1,1,0,0,0,0,18384,0,13603 +99516,0,1,0,-1,-1,0,7823,0,12221 +99517,0,0,-1,-1,-1,0,15756,0,12163 +99518,0,0,-1,-1,-1,0,17583,0,13477 +99519,0,0,0,-1,-1,0,16996,0,12785 +99520,0,1,0,-1,-1,0,14799,0,13314 +99521,0,1,0,-1,-1,0,23727,0,13956 +99522,0,0,-1,-1,-1,0,18524,0,14505 +99523,0,0,-1,-1,-1,0,18525,0,14506 +99524,0,1,0,-1,-1,0,7598,0,13965 +99525,0,1,0,0,-1,0,21361,0,13141 +99526,0,1,0,-1,-1,0,15464,0,13142 +99527,0,1,0,0,0,0,9407,0,13184 +99528,0,0,-1,-1,-1,0,18492,0,14482 +99529,0,0,-1,-1,-1,0,18493,0,14483 +99530,0,0,-1,-1,-1,0,18494,0,14484 +99531,0,0,-1,-1,-1,0,18497,0,14488 +99532,0,0,-1,-1,-1,0,18488,0,14478 +99533,0,0,-1,-1,-1,0,18489,0,14479 +99534,0,0,-1,-1,-1,0,18490,0,14480 +99535,0,0,-1,-1,-1,0,18491,0,14481 +99536,0,1,0,-1,-1,0,16718,0,12686 +99537,0,0,-1,-1,-1,0,16748,0,12713 +99538,0,0,-1,0,120000,4,17540,0,13455 +99539,0,0,-1,0,120000,4,17544,0,13456 +99540,0,0,-1,-1,-1,0,17595,0,13489 +99541,0,0,-1,-1,-1,0,18507,0,14489 +99542,0,1,0,-1,-1,0,18044,0,14154 +99543,1,1,0,0,0,0,18379,0,14154 +99544,2,1,0,0,0,0,18388,0,14154 +99545,0,1,0,-1,-1,0,7597,0,13400 +99546,0,1,0,-1,-1,0,14047,0,13936 +99547,0,0,-1,-1,-1,0,18250,0,13939 +99548,0,1,0,-1,-1,0,18030,0,13954 +99549,1,1,0,-1,-1,0,17988,0,13954 +99550,0,0,-1,-1,-1,0,17024,0,12825 +99551,0,1,0,-1,-1,0,15956,0,12225 +99552,0,1,0,0,0,0,9318,0,12960 +99553,0,0,-1,0,0,0,944,0,9148 +99554,0,1,0,-1,-1,0,15464,0,12966 +99555,0,0,0,-1,-1,0,17179,0,13752 +99556,0,0,0,1000,-1,0,17271,0,13156 +99557,0,1,0,-1,-1,0,9415,0,12589 +99558,0,2,0,-1,-1,0,16551,0,12590 +99559,0,2,0,-1,-1,0,16602,0,12592 +99560,0,1,0,-1,-1,0,14056,0,12603 +99561,0,0,-1,-1,-1,0,13478,0,11078 +99562,0,0,-1,-1,-1,0,13484,0,11079 +99563,0,0,-1,0,1000,11,1127,0,13756 +99564,0,2,0,-1,-1,0,17484,0,13361 +99565,0,0,-1,-1,-1,0,11629,0,12003 +99566,0,0,0,0,3000,330,16056,0,12302 +99567,0,0,0,0,3000,330,16055,0,12303 +99568,0,0,-1,-1,-1,0,624,0,8964 +99569,0,0,-1,-1,-1,0,3474,0,8941 +99570,0,0,-1,-1,-1,0,997,0,9020 +99571,0,0,-1,-1,-1,0,997,0,8987 +99572,0,0,-1,-1,-1,0,16195,0,12440 +99573,0,2,0,-1,-1,0,18086,0,11803 +99574,0,0,0,45000,-1,0,15591,0,11804 +99575,0,1,0,-1,-1,0,9416,0,13013 +99576,0,0,0,60000,0,0,18400,0,13379 +99577,0,0,-10,60000,-1,0,682,0,1186 +99578,0,0,-1,-1,-1,0,17028,0,12830 +99579,0,0,-1,-1,-1,0,17029,0,12831 +99580,0,0,-1,-1,-1,0,17031,0,12833 +99581,0,0,0,-1,-1,0,16627,0,12647 +99582,0,0,-1,60000,-1,0,16326,0,12455 +99583,0,2,0,-1,-1,0,17483,0,13348 +99584,0,1,0,0,-1,0,9326,0,13349 +99585,0,2,0,-1,-1,0,16898,0,12777 +99586,0,0,0,-1,-1,0,17567,0,12185 +99587,0,1,0,-1,-1,0,15805,0,12188 +99588,0,1,0,-1,-1,0,9139,0,13380 +99589,0,1,0,-1,-1,0,15806,0,12964 +99590,1,1,0,-1,-1,0,13670,0,12964 +99591,0,1,0,-1,-1,0,21632,0,13383 +99592,0,0,-1,-1,-1,0,17032,0,12834 +99593,0,0,-1,-1,-1,0,16073,0,12346 +99594,0,1,0,-1,-1,0,17619,0,13503 +99595,0,0,0,900000,60000,94,17490,0,13353 +99596,0,1,0,-1,-1,0,9332,0,12653 +99597,0,0,-1,-1,-1,0,17432,0,13307 +99598,0,0,-1,-1,-1,0,17436,0,13308 +99599,0,0,-1,-1,-1,0,17437,0,13310 +99600,0,0,-1,0,120000,4,15822,0,12190 +99601,0,0,-1,0,1000,11,10256,0,12218 +99602,0,1,0,-1,-1,0,9140,0,11858 +99603,0,0,-1,-1,-1,0,15647,0,12565 +99604,0,0,-1,-1,-1,0,15649,0,12566 +99605,0,2,0,-1,-1,0,18082,0,12792 +99606,0,0,-1,60000,-1,0,16323,0,12451 +99607,0,0,-1,0,1000,11,1129,0,13930 +99608,0,0,-1,0,1000,11,1131,0,13933 +99609,0,0,0,600000,0,0,18264,0,13937 +99610,0,1,0,0,0,0,9416,0,13938 +99611,0,0,-1,0,1000,11,15852,0,12217 +99612,0,0,-5,120000,-1,0,17016,0,12815 +99613,0,0,-1,-1,-1,0,17017,0,12816 +99614,0,1,0,-1,-1,0,16638,0,12624 +99615,0,0,0,60000,-1,0,16613,0,12627 +99616,0,0,-1,0,0,0,17729,0,13602 +99617,1,1,0,0,0,0,18384,0,13602 +99618,0,0,0,900000,0,0,16470,0,12532 +99619,0,1,0,0,0,0,9346,0,12545 +99620,0,1,0,0,0,0,9408,0,12547 +99621,0,0,-1,0,1000,11,1127,0,13758 +99622,0,1,0,-1,-1,0,7617,0,11861 +99623,0,1,0,0,0,0,14027,0,11862 +99624,0,1,0,-1,-1,0,15464,0,13967 +99625,0,1,0,-1,-1,0,13390,0,13072 +99626,0,1,0,-1,-1,0,17625,0,13505 +99627,0,0,-1,0,3000,79,17624,0,13506 +99628,0,2,0,-1,-1,0,13440,0,12250 +99629,0,0,-1,0,1000,11,1127,0,13759 +99630,0,1,0,0,-1,0,17495,0,13375 +99631,0,1,0,0,-1,0,15807,0,11933 +99632,0,0,0,0,3000,330,16080,0,12330 +99633,0,0,-1,-1,-1,0,16673,0,12684 +99634,0,0,-1,-1,-1,0,997,0,8990 +99635,0,1,0,-1,-1,0,15808,0,12953 +99636,0,0,-1,-1,-1,0,18521,0,14507 +99637,0,0,-1,-1,-1,0,18527,0,14508 +99638,0,1,0,-1,-1,0,15464,0,13211 +99639,0,2,0,-1,-1,0,17407,0,13285 +99640,0,1,0,-1,-1,0,14049,0,13359 +99641,1,1,0,-1,-1,0,7597,0,13359 +99642,0,2,0,-1,-1,0,10370,0,12469 +99643,0,0,-1,-1,-1,0,16675,0,12687 +99644,0,0,-1,60000,-1,0,16325,0,12457 +99645,0,0,-1,60000,-1,0,16327,0,12458 +99646,0,0,-1,-1,-1,0,13630,0,11132 +99647,0,1,0,-1,-1,0,9398,0,11784 +99648,0,2,0,-1,-1,0,56,0,12528 +99649,0,1,0,-1,-1,0,14803,0,11806 +99650,1,1,0,-1,-1,0,9333,0,11806 +99651,0,0,-1,0,1000,11,1129,0,13546 +99652,0,2,0,-1,-1,0,17511,0,13035 +99653,0,1,0,-1,-1,0,9396,0,11922 +99654,0,2,0,-1,-1,0,16549,0,12583 +99655,0,0,-1,-1,-1,0,17018,0,12817 +99656,0,0,-1,-1,-1,0,17021,0,12821 +99657,0,1,0,-1,-1,0,9395,0,12998 +99658,0,0,0,0,3000,330,15779,0,13326 +99659,0,0,0,-1,-1,0,15999,0,12264 +99660,0,0,0,0,3000,330,17454,0,13322 +99661,0,0,0,0,3000,330,17463,0,13332 +99662,0,0,0,-1,3000,330,17481,0,13335 +99663,0,0,-1,0,1000,11,1129,0,4608 +99664,0,0,0,0,3000,330,17459,0,13327 +99665,0,0,0,0,3000,330,17460,0,13329 +99666,0,0,0,0,3000,330,17462,0,13331 +99667,0,0,-1,0,60000,24,12543,0,10562 +99668,0,1,0,0,-1,0,17482,0,13212 +99669,0,0,0,-1,-1,0,16450,0,12529 +99670,0,0,-1,-1,-1,0,17597,0,13491 +99671,0,0,-1,60000,-1,0,16322,0,12450 +99672,0,0,-1,0,1000,11,5006,0,12209 +99673,0,0,-1,0,1000,11,5007,0,12210 +99674,0,0,-1,0,1000,11,5007,0,12211 +99675,0,0,-1,0,1000,11,5007,0,12213 +99676,0,1,0,-1,-1,0,13385,0,12939 +99677,0,0,-1,-1,-1,0,5305,0,8813 +99678,0,2,0,0,-1,0,18203,0,13183 +99679,0,0,-1,-1,-1,0,17593,0,13487 +99680,0,0,0,120000,10000,1141,17330,0,13213 +99681,0,1,0,-1,-1,0,17328,0,13215 +99682,0,0,-1,0,1000,11,1127,0,13754 +99683,0,0,-1,-1,-1,0,16676,0,12688 +99684,0,2,0,-1,-1,0,14118,0,12463 +99685,0,0,-1,-1,-1,0,9934,0,7975 +99686,0,0,-1,-1,-1,0,17022,0,12823 +99687,0,1,0,-1,-1,0,13670,0,11787 +99688,0,0,-1,-1,-1,0,16677,0,12689 +99689,0,0,-1,-1,-1,0,16678,0,12690 +99690,0,1,0,-1,-1,0,16550,0,12588 +99691,0,0,-1,-1,-1,0,16072,0,12347 +99692,0,1,0,-1,-1,0,18060,0,13711 +99693,0,0,-1,0,1000,11,18230,0,13928 +99694,0,1,0,-1,-1,0,18384,0,11750 +99695,0,2,0,-1,-1,0,17196,0,12969 +99696,0,0,-1,0,1000,11,1127,0,13760 +99697,0,1,0,-1,-1,0,9331,0,13340 +99698,0,0,-1,-1,-1,0,15911,0,12240 +99699,0,2,0,-1,-1,0,15662,0,12243 +99700,0,0,-1,0,1000,11,1129,0,13888 +99701,0,0,0,-1,-1,0,17474,0,12891 +99702,0,0,-1,1000,-1,0,16138,0,12404 +99703,0,0,-1,-1,-1,0,17023,0,12824 +99704,0,1,0,-1,-1,0,9296,0,12256 +99705,0,1,0,-1,-1,0,9401,0,11310 +99706,0,0,-1,-1,-1,0,16691,0,12702 +99707,0,0,-1,-1,-1,0,784,0,8790 +99708,1,1,0,-1,-1,0,18196,0,11927 +99709,0,1,0,-1,-1,0,13665,0,13163 +99710,0,0,-1,0,120000,4,17528,0,13442 +99711,0,0,-1,0,3000,79,11348,0,13445 +99712,0,1,0,-1,-1,0,15806,0,13045 +99713,0,0,0,0,3000,330,17229,0,13086 +99714,0,1,0,-1,-1,0,9408,0,12110 +99715,0,1,0,90000,-1,0,13674,0,7787 +99716,0,0,-1,0,1000,11,1131,0,8952 +99717,0,0,-1,-1,-1,0,12805,0,10688 +99718,0,0,-1,-1,-1,0,16197,0,12443 +99719,0,0,-1,-1,-1,0,16683,0,12695 +99720,0,0,-1,-1,-1,0,16685,0,12697 +99721,0,0,-1,-1,-1,0,16692,0,12703 +99722,0,0,-1,-1,-1,0,16747,0,12711 +99723,0,1,0,-1,-1,0,16620,0,12641 +99724,2,1,0,-1,-1,0,14249,0,12641 +99725,0,1,0,-1,-1,0,18198,0,13017 +99726,0,0,-1,-1,-1,0,2897,0,8760 +99727,0,1,0,0,0,0,9346,0,12464 +99728,0,0,-1,-1,-1,0,18251,0,13940 +99729,0,0,-1,-1,-1,0,18252,0,13941 +99730,0,1,0,-1,-1,0,9298,0,13007 +99731,0,1,0,-1,-1,0,14550,0,16139 +99732,0,2,0,-1,-1,0,17506,0,13408 +99733,0,1,0,-1,-1,0,13387,0,12619 +99734,0,0,-1,-1,-1,0,19208,0,15762 +99735,0,0,-1,-1,-1,0,18665,0,14630 +99736,0,0,-1,-1,-1,0,6519,0,5543 +99737,0,0,-1,-1,-1,0,19209,0,15763 +99738,0,1,0,-1,-1,0,14054,0,15999 +99739,0,0,-1,-1,-1,0,19211,0,15765 +99740,0,1,0,-1,-1,0,18008,0,14107 +99741,0,1,0,-1,-1,0,9417,0,13863 +99742,0,1,0,0,0,0,15465,0,13404 +99743,1,1,0,-1,-1,0,7597,0,13404 +99744,0,1,0,-1,-1,0,7516,0,13405 +99745,0,1,0,-1,-1,0,9295,0,14108 +99746,0,1,0,-1,-1,0,18008,0,14112 +99747,0,0,0,-1,-1,0,18762,0,14547 +99748,0,0,-1,-1,-1,0,15427,0,11663 +99749,0,0,-1,0,0,0,3366,0,11885 +99750,0,1,0,-1,-1,0,13390,0,13049 +99751,0,1,0,-1,-1,0,7597,0,12584 +99752,1,1,0,-1,-1,0,9335,0,12584 +99753,0,0,0,0,3000,330,16059,0,12326 +99754,0,0,-1,60000,-1,0,16329,0,12460 +99755,0,0,-1,1000,-1,0,16622,0,12643 +99756,0,1,0,-1,-1,0,14630,0,16129 +99757,0,1,0,-1,-1,0,14635,0,16130 +99758,0,1,0,-1,-1,0,14628,0,16132 +99759,0,1,0,-1,-1,0,17818,0,13255 +99760,1,1,0,-1,-1,0,15464,0,13255 +99761,2,1,0,-1,-1,0,27743,0,13255 +99762,3,1,0,-1,-1,0,27744,0,13255 +99763,0,1,0,-1,-1,0,9413,0,14538 +99764,0,0,-1,-1,-1,0,18711,0,14644 +99765,0,0,-1,0,1000,11,5007,0,12212 +99766,0,0,0,0,3000,330,17464,0,13333 +99767,0,0,3,-1,-1,0,19688,0,15914 +99768,0,0,3,-1,-1,0,19689,0,15915 +99769,0,1,0,-1,-1,0,7597,0,14615 +99770,0,1,0,-1,-1,0,15464,0,14616 +99771,0,0,-1,-1,-1,0,18397,0,14338 +99772,0,0,-1,-1,-1,0,17596,0,13490 +99773,0,0,-1,-1,-1,0,17598,0,13492 +99774,0,0,-1,-1,-1,0,17599,0,13493 +99775,0,0,-1,0,0,0,1076,0,8769 +99776,0,0,-1,-1,-1,0,962,0,8770 +99777,0,1,0,-1,-1,0,7597,0,13036 +99778,0,1,0,-1,-1,0,9142,0,13039 +99779,0,0,-1,-1,-1,0,12172,0,10314 +99780,0,0,0,300000,10000,1141,6251,0,13382 +99781,0,1,0,-1,-1,0,18212,0,13044 +99782,0,1,0,-1,-1,0,7597,0,12783 +99783,0,0,-1,0,1000,11,5007,0,13851 +99784,0,0,-1,-1,-1,0,13932,0,11223 +99785,0,1,0,-1,-1,0,18201,0,11629 +99786,0,0,-1,0,60000,24,15235,0,11565 +99787,0,0,-1,0,1000,59,18140,0,13813 +99788,0,1,0,-1,-1,0,14635,0,16133 +99789,0,1,0,-1,-1,0,14550,0,16135 +99790,0,0,3,-1,-1,0,19548,0,15908 +99791,0,0,-1,-1,-1,0,15402,0,11647 +99792,0,1,0,-1,-1,0,13665,0,13056 +99793,1,1,0,-1,-1,0,15465,0,13056 +99794,0,2,0,-1,-1,0,18202,0,13057 +99795,0,1,0,-1,-1,0,9408,0,11928 +99796,0,2,0,-1,-1,0,15602,0,11817 +99797,0,0,-1,-1,-1,0,17432,0,13306 +99798,0,0,0,0,3000,330,18990,0,15290 +99799,0,0,-1,-1,-1,0,19646,0,15869 +99800,0,0,-1,-1,-1,0,19649,0,15870 +99801,0,0,-1,-1,-1,0,19651,0,15871 +99802,0,0,-1,-1,-1,0,20709,0,15872 +99803,0,0,-1,0,0,0,566,0,9076 +99804,0,1,0,-1,-1,0,9325,0,13029 +99805,0,0,-1,-1,-1,0,17404,0,13287 +99806,0,1,0,-1,-1,0,7597,0,12774 +99807,0,1,0,-1,-1,0,15768,0,12775 +99808,0,1,0,-1,-1,0,13665,0,12776 +99809,1,1,0,-1,-1,0,15465,0,12776 +99810,0,0,-1,-1,-1,0,17199,0,12973 +99811,0,2,0,-1,-1,0,14106,0,12974 +99812,0,1,0,-1,-1,0,18015,0,14106 +99813,0,0,-1,-1,-1,0,17403,0,13288 +99814,0,0,0,-1,-1,0,17368,0,13289 +99815,0,1,0,-1,-1,0,29626,0,13040 +99816,0,1,0,-1,-1,0,7597,0,13162 +99817,0,1,0,-1,-1,0,14254,0,13169 +99818,0,0,-1,-1,-1,0,13946,0,11225 +99819,0,2,0,-1,-1,0,17308,0,13198 +99820,0,1,0,-1,-1,0,13390,0,14622 +99821,1,1,0,-1,-1,0,21362,0,14622 +99822,0,1,0,-1,-1,0,13389,0,14624 +99823,1,1,0,-1,-1,0,21363,0,14624 +99824,0,0,-1,-1,-1,0,17604,0,13499 +99825,0,1,0,-1,-1,0,18062,0,13713 +99826,0,1,0,-1,-1,0,18063,0,13714 +99827,0,1,0,-1,-1,0,18064,0,13715 +99828,0,0,-1,-1,-1,0,18473,0,14467 +99829,0,0,-1,-1,-1,0,20321,0,16325 +99830,0,0,-3,0,120000,1153,19199,0,15723 +99831,0,0,-1,-1,-1,0,19149,0,15724 +99832,0,1,0,-1,-1,0,21618,0,12637 +99833,0,0,0,-1,-1,0,3366,0,12382 +99834,0,2,0,-1,-1,0,18833,0,14555 +99835,0,1,0,0,-1,0,14710,0,16125 +99836,0,1,0,-1,-1,0,14630,0,16126 +99837,0,1,0,-1,-1,0,14628,0,16127 +99838,0,0,-1,-1,-1,0,19156,0,15725 +99839,0,1,0,-1,-1,0,9415,0,12606 +99840,0,1,0,-1,-1,0,18042,0,13346 +99841,0,0,0,0,3000,330,17465,0,13334 +99842,0,1,0,0,0,0,15874,0,14551 +99843,1,1,0,-1,-1,0,7578,0,14551 +99844,2,1,0,-1,-1,0,7527,0,14551 +99845,0,1,0,-1,-1,0,14550,0,16136 +99846,0,1,0,-1,-1,0,14548,0,16137 +99847,0,1,0,-1,-1,0,14553,0,16138 +99848,0,1,0,-1,-1,0,14254,0,12965 +99849,0,2,0,-1,-1,0,18211,0,13053 +99850,0,1,0,-1,-1,0,17866,0,14042 +99851,0,1,0,-1,-1,0,13669,0,14611 +99852,0,2,0,-1,-1,0,18656,0,14576 +99853,0,1,0,-1,-1,0,18201,0,11628 +99854,0,0,-1,-1,-1,0,15400,0,11646 +99855,0,1,0,0,-1,0,14548,0,16124 +99856,0,1,0,-1,-1,0,13390,0,15413 +99857,0,0,-1,-1,-1,0,15119,0,11570 +99858,0,0,-1,-1,-1,0,7229,0,6047 +99859,0,0,0,900000,30000,1141,18787,0,14554 +99860,0,2,0,0,-1,0,17505,0,13401 +99861,0,0,-1,0,120000,4,17531,0,13444 +99862,0,1,0,-1,-1,0,14049,0,15051 +99863,0,0,-1,0,1000,11,434,0,4541 +99864,0,0,-1,-1,-1,0,3693,0,4219 +99865,0,0,-3,60000,0,0,126,0,13508 +99866,0,1,0,-1,-1,0,17891,0,13871 +99867,0,0,-1,-1,-1,0,3366,0,13873 +99868,0,2,0,-1,-1,0,18633,0,14531 +99869,0,0,-1,-1,-1,0,18517,0,14499 +99870,0,1,0,-1,-1,0,15466,0,13052 +99871,0,0,-1,-1,-1,0,17600,0,13494 +99872,0,0,-1,-1,-1,0,18479,0,14472 +99873,0,1,0,-1,-1,0,15814,0,14536 +99874,0,2,0,0,-1,0,17315,0,13204 +99875,0,0,-1,0,1000,11,18124,0,13810 +99876,0,1,0,-1,-1,0,21618,0,13386 +99877,0,1,0,-1,-1,0,9408,0,13242 +99878,1,1,0,-1,-1,0,9361,0,13242 +99879,0,1,0,0,0,0,14049,0,13395 +99880,0,2,0,-1,-1,0,18381,0,14145 +99881,0,1,0,-1,-1,0,15696,0,14553 +99882,0,1,0,-1,-1,0,9295,0,14043 +99883,0,1,0,-1,-1,0,17867,0,14045 +99884,0,1,0,-1,-1,0,21626,0,13216 +99885,0,2,0,-1,-1,0,17331,0,13218 +99886,0,2,0,-1,-1,0,16528,0,12582 +99887,0,1,0,-1,-1,0,7598,0,12587 +99888,0,0,-1,0,1000,11,1129,0,13889 +99889,0,1,0,-1,-1,0,9400,0,14044 +99890,0,1,0,0,0,0,20847,0,14557 +99891,0,0,0,-1,-1,0,18153,0,13892 +99892,0,2,0,-1,-1,0,16927,0,12797 +99893,0,2,0,-1,-1,0,14126,0,13054 +99894,0,0,-1,-1,-1,0,15866,0,12233 +99895,0,1,0,-1,-1,0,13390,0,14552 +99896,0,1,0,-1,-1,0,9315,0,13206 +99897,0,1,0,-1,-1,0,7681,0,13208 +99898,0,0,0,-1,-1,0,3366,0,11140 +99899,0,0,0,180000,-1,0,17468,0,13342 +99900,0,0,0,180000,-1,0,17469,0,13343 +99901,0,0,-1,-1,-1,0,14125,0,11115 +99902,0,0,0,-1,-1,0,10677,0,8490 +99903,0,1,0,-1,-1,0,18056,0,14152 +99904,1,1,0,-1,-1,0,18384,0,14152 +99905,2,0,0,300000,0,0,18385,0,14152 +99906,0,1,0,-1,-1,0,28264,0,14153 +99907,1,0,0,600000,0,0,18386,0,14153 +99908,0,0,0,600000,60000,94,18307,0,14022 +99909,0,0,0,600000,60000,94,18308,0,14023 +99910,0,2,0,-1,-1,0,19755,0,14024 +99911,0,1,0,0,0,0,9414,0,13396 +99912,0,0,-1,0,1000,11,18231,0,13929 +99913,0,0,-1,-1,-1,0,18255,0,13945 +99914,0,1,0,-1,-1,0,9315,0,14548 +99915,0,1,0,-1,-1,0,13670,0,14549 +99916,0,0,0,0,3000,330,17450,0,13317 +99917,0,2,0,-1,-1,0,17500,0,13393 +99918,0,0,-1,0,1000,11,18229,0,13927 +99919,0,0,-1,-1,-1,0,18668,0,14635 +99920,0,1,0,-1,-1,0,15810,0,14640 +99921,0,1,0,-1,-1,0,14027,0,14641 +99922,0,0,0,10000,-1,0,16378,0,12472 +99923,0,1,0,-1,-1,0,13384,0,13394 +99924,0,0,-1,-1,-1,0,17432,0,13304 +99925,0,0,-1,-1,-1,0,18475,0,14469 +99926,0,0,-1,-1,-1,0,18477,0,14470 +99927,0,0,-1,-1,-1,0,19157,0,15726 +99928,0,0,-1,-1,-1,0,19158,0,15727 +99929,0,1,0,-1,-1,0,21626,0,14621 +99930,1,1,0,-1,-1,0,13390,0,14621 +99931,0,1,0,-1,-1,0,21363,0,14623 +99932,1,1,0,-1,-1,0,14249,0,14623 +99933,0,0,-1,0,1000,11,5007,0,12214 +99934,0,1,0,-1,-1,0,9295,0,12113 +99935,0,1,0,-1,-1,0,15696,0,11932 +99936,0,1,0,-1,-1,0,9398,0,13185 +99937,0,1,0,-1,-1,0,13670,0,11821 +99938,0,0,0,1800000,0,0,17448,0,13315 +99939,0,1,0,-1,-1,0,29635,0,13146 +99940,0,0,-1,-1,-1,0,18667,0,14634 +99941,0,1,0,-1,-1,0,14049,0,14636 +99942,0,0,-1,-1,-1,0,17432,0,13305 +99943,0,0,-1,0,1000,11,18232,0,13932 +99944,0,1,0,-1,-1,0,23930,0,13209 +99945,0,1,0,-1,-1,0,14049,0,13210 +99946,0,0,-1,0,0,150,18610,0,14530 +99947,0,0,-1,-1,-1,0,18481,0,14474 +99948,0,0,-1,-1,-1,0,18482,0,14476 +99949,1,1,0,-1,-1,0,13669,0,13966 +99950,0,0,-1,-1,-1,0,17594,0,13488 +99951,0,1,0,0,0,0,7597,0,13098 +99952,1,1,0,-1,-1,0,9329,0,13098 +99953,0,0,-1,-1,-1,0,18511,0,14491 +99954,0,0,-1,-1,-1,0,18510,0,14492 +99955,0,0,-1,-1,-1,0,18509,0,14493 +99956,1,1,0,-1,-1,0,13385,0,13955 +99957,0,0,-1,-1,-1,0,18512,0,14494 +99958,0,0,-1,-1,-1,0,18472,0,14466 +99959,0,0,-1,-1,-1,0,13613,0,11150 +99960,0,0,-1,0,120000,4,17534,0,13446 +99961,0,0,-1,0,3000,79,17535,0,13447 +99962,0,1,0,-1,-1,0,17890,0,13869 +99963,0,1,0,-1,-1,0,9308,0,13870 +99964,0,1,0,0,-1,0,13669,0,13177 +99965,0,1,0,0,0,0,21363,0,13178 +99966,1,1,0,-1,-1,0,9316,0,13178 +99967,0,0,-1,0,60000,24,17291,0,13180 +99968,0,0,-1,-1,60000,24,29443,0,13509 +99969,0,0,-1,0,3000,79,17626,0,13510 +99970,0,0,-1,0,3000,79,17627,0,13511 +99971,0,0,0,300000,10000,1141,17668,0,13515 +99972,0,0,-1,-1,-1,0,18508,0,14490 +99973,0,0,-1,-1,-1,0,17438,0,13311 +99974,0,2,0,-1,-1,0,18289,0,13983 +99975,0,1,0,-1,-1,0,18287,0,13985 +99976,0,1,0,-1,-1,0,18379,0,14143 +99977,0,0,-1,-1,-1,0,18522,0,14504 +99978,0,0,-1,-1,-1,0,17188,0,12958 +99979,0,0,-1,0,120000,4,2023,0,3827 +99980,0,0,-1,-1,-1,0,7798,0,6349 +99981,0,0,0,0,3000,330,17455,0,13323 +99982,0,0,0,0,3000,330,17456,0,13324 +99983,0,1,0,0,0,0,17945,0,13699 +99984,1,1,0,0,0,0,23481,0,13699 +99985,0,2,0,-1,-1,0,16454,0,12531 +99986,0,1,0,-1,-1,0,18382,0,13968 +99987,0,1,0,-1,-1,0,18061,0,13712 +99988,0,1,0,-1,-1,0,9346,0,13168 +99989,0,1,0,-1,-1,0,17350,0,13243 +99990,0,1,0,-1,-1,0,18011,0,14111 +99991,0,0,-1,-1,-1,0,18474,0,14468 +99992,0,0,-1,-1,-1,0,17601,0,13495 +99993,0,0,-1,-1,-1,0,17602,0,13496 +99994,0,0,-1,-1,-1,0,17603,0,13497 +99995,0,1,0,-1,-1,0,17890,0,13868 +99996,0,1,0,-1,-1,0,18378,0,14144 +99997,0,0,-1,-1,-1,0,18514,0,14495 +99998,0,0,0,0,3000,330,17453,0,13321 +99999,0,0,0,0,3000,330,18363,0,14062 +100000,0,1,0,-1,-1,0,7703,0,14103 +100001,0,0,-1,0,3000,79,17538,0,13452 +100002,0,0,-1,0,3000,79,17537,0,13453 +100003,0,0,-1,-1,-1,0,18515,0,14496 +100004,0,0,-1,-1,-1,0,18513,0,14497 +100005,0,0,-1,-1,-1,0,18256,0,13946 +100006,0,0,-1,0,1000,11,1131,0,13935 +100007,0,2,0,-1,-1,0,18278,0,13953 +100008,0,0,0,1800000,0,0,20587,0,15873 +100009,0,1,0,-1,-1,0,14799,0,16949 +100010,0,0,-1,-1,-1,0,19864,0,16052 +100011,0,0,-1,-1,-1,0,19866,0,16054 +100012,0,0,-1,-1,-1,0,19166,0,15730 +100013,0,0,-1,-1,-1,0,19169,0,15732 +100014,0,1,0,-1,-1,0,9342,0,11665 +100015,0,1,0,-1,-1,0,9345,0,16554 +100016,0,1,0,-1,-1,0,7597,0,16513 +100017,0,1,0,3600000,600000,0,7598,0,15056 +100018,1,1,0,-1,-1,0,13669,0,15056 +100019,0,1,0,-1,-1,0,9296,0,15105 +100020,0,1,0,-1,-1,0,9326,0,15106 +100021,0,2,0,-1,-1,0,20586,0,15853 +100022,0,1,0,900000,30000,0,14635,0,16141 +100023,0,0,-1,-1,-1,0,19903,0,16084 +100024,0,0,-1,-1,-1,0,19902,0,16085 +100025,0,0,0,-1,-1,0,20529,0,16645 +100026,0,1,0,0,0,0,9401,0,15107 +100027,1,0,0,1800000,0,0,18957,0,15107 +100028,0,0,-1,-1,-1,0,19216,0,15772 +100029,0,1,0,-1,-1,0,14799,0,16808 +100030,0,1,0,-1,-1,0,9328,0,10038 +100031,0,0,-1,-1,-1,0,20431,0,16386 +100032,0,0,-1,-1,-1,0,20856,0,17023 +100033,0,0,-1,-1,-1,0,19886,0,16072 +100034,0,0,-1,-1,-1,0,19161,0,15728 +100035,0,1,0,-1,-1,0,14127,0,17571 +100036,0,0,-10,15000,-1,0,19512,0,15826 +100037,0,1,0,-1,-1,0,14590,0,16064 +100038,0,1,0,-1,-1,0,15715,0,16536 +100039,1,1,0,-1,-1,0,25975,0,16536 +100040,0,0,-1,-1,-1,0,19887,0,16073 +100041,0,1,0,900000,30000,0,14716,0,16159 +100042,0,1,0,-1,-1,0,14548,0,16142 +100043,0,1,0,-1,-1,0,14673,0,16145 +100044,0,1,0,-1,-1,0,21432,0,15995 +100045,0,0,-1,-1,-1,0,19212,0,15768 +100046,0,0,-1,-1,-1,0,19213,0,15769 +100047,0,0,-1,0,60000,24,19784,0,16005 +100048,0,0,-1,-1,-1,0,19861,0,16049 +100049,0,0,-1,-1,-1,0,19863,0,16050 +100050,0,0,-1,-1,-1,0,19862,0,16051 +100051,0,1,0,-1,-1,0,9406,0,16811 +100052,0,1,0,-1,-1,0,21626,0,16812 +100053,1,1,0,-1,-1,0,9406,0,16812 +100054,0,1,0,-1,-1,0,7597,0,16567 +100055,0,0,-1,-1,-1,0,20364,0,16333 +100056,0,0,-1,-1,-1,0,20404,0,16376 +100057,0,0,-1,-1,-1,0,20407,0,16379 +100058,0,1,0,-1,-1,0,7581,0,16007 +100059,1,1,0,-1,-1,0,21429,0,16007 +100060,0,1,0,0,-1,0,19786,0,16009 +100061,0,0,-1,-1,-1,0,20329,0,16331 +100062,0,0,3,-1,-1,0,19674,0,15911 +100063,0,1,0,3600000,600000,0,14056,0,15050 +100064,0,0,-1,-1,-1,0,20312,0,16316 +100065,0,1,0,-1,-1,0,18384,0,16913 +100066,1,1,0,-1,-1,0,14799,0,16913 +100067,0,1,0,-1,-1,0,15464,0,16457 +100068,0,0,-1,-1,-1,0,19218,0,15774 +100069,0,0,-1,-1,-1,0,19220,0,15776 +100070,0,0,-1,-1,-1,0,19221,0,15777 +100071,0,1,0,-1,-1,0,9417,0,16415 +100072,0,1,0,-1,-1,0,7597,0,16417 +100073,0,1,0,-1,-1,0,9141,0,16420 +100074,0,1,0,-1,-1,0,9345,0,16421 +100075,1,1,0,-1,-1,0,7597,0,16421 +100076,0,1,0,-1,-1,0,22778,0,16510 +100077,0,0,0,-1,-1,0,20531,0,16655 +100078,0,0,0,-1,-1,0,20531,0,16656 +100079,0,1,0,-1,-1,0,14590,0,16065 +100080,0,1,0,0,180000,0,14588,0,16067 +100081,0,0,-1,-1,-1,0,20434,0,16389 +100082,0,1,0,-1,-1,0,28539,0,16571 +100083,1,1,0,-1,-1,0,7597,0,16571 +100084,0,1,0,-1,-1,0,22801,0,16573 +100085,1,1,0,-1,-1,0,14799,0,16573 +100086,2,1,0,-1,-1,0,21363,0,16573 +100087,0,1,0,-1,-1,0,7597,0,16574 +100088,0,0,-1,-1,-1,0,11009,0,17402 +100089,0,0,-1,-1,-1,0,11008,0,17403 +100090,0,0,-1,0,1000,59,431,0,17404 +100091,0,1,0,0,0,0,18030,0,16058 +100092,0,1,0,-1,-1,0,7597,0,13959 +100093,0,0,-1,-1,-1,0,19848,0,16044 +100094,0,0,-1,-1,-1,0,19849,0,16045 +100095,0,1,0,-1,-1,0,14712,0,16154 +100096,0,1,0,-1,-1,0,14712,0,16163 +100097,0,0,-1,-1,-1,0,20397,0,16321 +100098,0,0,-1,-1,-1,0,20318,0,16322 +100099,0,1,0,-1,-1,0,14590,0,16061 +100100,0,0,-1,0,1000,11,1129,0,16168 +100101,0,0,-1,0,1000,11,435,0,16170 +100102,0,0,-1,-1,-1,0,21568,0,17413 +100103,0,1,0,-1,-1,0,7598,0,16821 +100104,0,1,0,-1,-1,0,7597,0,16822 +100105,0,2,0,-1,-1,0,18202,0,13399 +100106,0,0,-1,-1,-1,0,19851,0,16046 +100107,0,0,-1,-1,-1,0,19859,0,16047 +100108,0,0,-1,-1,-1,0,19860,0,16048 +100109,0,1,0,-1,-1,0,14675,0,16161 +100110,0,0,-1,-1,-1,0,19192,0,15749 +100111,0,0,-1,-1,-1,0,19197,0,15752 +100112,0,0,3,-1,-1,0,19692,0,15916 +100113,0,0,-1,0,120000,1153,19805,0,16023 +100114,0,0,-1,-1,-1,0,20319,0,16323 +100115,0,1,0,-1,-1,0,7598,0,16435 +100116,0,0,-1,-1,-1,0,20086,0,16251 +100117,0,0,-1,-1,-1,0,20428,0,16383 +100118,0,0,-1,-1,-1,0,20432,0,16387 +100119,0,1,0,-1,-1,0,13385,0,14525 +100120,0,0,-1,0,0,150,18608,0,14529 +100121,0,0,-1,0,0,0,22098,0,17891 +100122,0,0,-1,0,0,0,22099,0,17892 +100123,0,1,0,-1,-1,0,15464,0,16848 +100124,0,0,0,0,3000,330,18989,0,15277 +100125,0,0,-1,-1,-1,0,20880,0,17051 +100126,0,0,-1,-1,-1,0,20879,0,17053 +100127,0,1,0,-1,-1,0,18033,0,16922 +100128,1,1,0,-1,-1,0,21364,0,16922 +100129,0,1,0,-1,-1,0,18037,0,16923 +100130,0,1,0,-1,-1,0,18384,0,16443 +100131,1,1,0,-1,-1,0,18050,0,16443 +100132,0,1,0,-1,-1,0,15715,0,16444 +100133,1,1,0,-1,-1,0,25975,0,16444 +100134,0,1,0,-1,-1,0,23049,0,16446 +100135,0,1,0,-1,-1,0,21618,0,16801 +100136,1,1,0,-1,-1,0,9343,0,16801 +100137,0,0,-1,-1,-1,0,18887,0,15002 +100138,0,1,0,-1,-1,0,7597,0,16851 +100139,0,1,0,-1,-1,0,9315,0,16924 +100140,0,1,0,-1,-1,0,23300,0,16410 +100141,0,0,-1,0,1000,11,1131,0,16171 +100142,0,0,-1,-1,-1,0,19191,0,15748 +100143,0,1,0,-1,-1,0,22683,0,15138 +100144,0,1,0,-1,-1,0,14630,0,16117 +100145,0,0,-1,0,0,0,22101,0,17894 +100146,0,1,0,-1,-1,0,9344,0,16934 +100147,0,1,0,-1,-1,0,18384,0,16805 +100148,1,1,0,-1,-1,0,9415,0,16805 +100149,0,0,3,-1,-1,0,19694,0,15917 +100150,0,0,-1,-1,-1,0,20323,0,16327 +100151,0,0,-1,-1,-1,0,20087,0,16252 +100152,0,0,-1,0,0,0,22102,0,17895 +100153,0,1,0,-1,-1,0,9396,0,16524 +100154,0,1,0,-1,-1,0,14633,0,16172 +100155,0,0,-1,-1,-1,0,20324,0,16328 +100156,0,0,-1,-1,-1,0,20327,0,16330 +100157,0,1,0,-1,-1,0,14716,0,16165 +100158,0,0,-1,0,1000,11,434,0,16167 +100159,0,1,0,-1,-1,0,7598,0,16515 +100160,0,0,-1,0,0,0,22103,0,17896 +100161,0,0,-1,0,0,0,22104,0,17897 +100162,0,0,-1,0,0,0,22106,0,17899 +100163,0,0,-1,-1,-1,0,20394,0,16364 +100164,0,0,-1,-1,-1,0,20875,0,17048 +100165,0,0,-1,-1,-1,0,19170,0,15733 +100166,0,0,-1,-1,-1,0,19171,0,15734 +100167,0,0,-1,-1,-1,0,19172,0,15735 +100168,0,0,-10,-1,-1,0,19250,0,15736 +100169,0,0,-1,-1,-1,0,19173,0,15737 +100170,0,1,0,-1,-1,0,14799,0,16954 +100171,1,1,0,-1,-1,0,21362,0,16954 +100172,0,1,0,-1,-1,0,17367,0,16955 +100173,0,1,0,-1,-1,0,7597,0,16465 +100174,0,0,-1,-1,-1,0,20398,0,16368 +100175,0,1,0,-1,-1,0,9417,0,16369 +100176,0,0,-1,-1,-1,0,20399,0,16371 +100177,0,0,-1,0,1000,11,434,0,17406 +100178,0,0,-1,-1,-1,0,19201,0,15755 +100179,0,1,0,-1,-1,0,14799,0,16806 +100180,0,1,0,-1,-1,0,9415,0,16807 +100181,0,1,0,-1,-1,0,9346,0,16803 +100182,0,1,0,-1,-1,0,9342,0,16804 +100183,0,0,0,0,3000,330,16081,0,16344 +100184,0,1,0,-1,-1,0,14552,0,16162 +100185,0,1,0,-1,-1,0,9141,0,16526 +100186,0,1,0,-1,-1,0,14712,0,16152 +100187,0,1,0,-1,-1,0,14710,0,16153 +100188,0,1,0,-1,-1,0,14712,0,16155 +100189,0,1,0,-1,-1,0,14712,0,16157 +100190,0,0,-5,-1,-1,0,19690,0,15875 +100191,0,1,0,0,0,0,9336,0,17044 +100192,0,0,-1,-1,-1,0,19847,0,16043 +100193,0,1,0,-1,-1,0,14710,0,16158 +100194,0,0,-1,-1,-1,0,20857,0,17025 +100195,0,1,0,-1,-1,0,7597,0,16552 +100196,0,0,-1,-1,-1,0,20315,0,16319 +100197,0,0,-1,-1,-1,0,18664,0,14627 +100198,0,0,0,1000,-1,0,19935,0,16107 +100199,0,1,0,-1,-1,0,15465,0,16852 +100200,0,1,0,-1,-1,0,21625,0,16855 +100201,1,1,0,-1,-1,0,9408,0,16855 +100202,1,1,0,-1,-1,0,7597,0,15141 +100203,0,0,0,-1,-1,0,20274,0,15042 +100204,0,0,0,0,3000,330,18991,0,15292 +100205,0,0,0,0,3000,330,18992,0,15293 +100206,0,0,0,1000,-1,0,19470,0,15766 +100207,0,0,-1,0,0,0,19932,0,16104 +100208,0,0,-1,-1,-1,0,19202,0,15756 +100209,0,1,0,-1,-1,0,14635,0,16140 +100210,0,1,0,-1,-1,0,14550,0,16143 +100211,0,1,0,-1,-1,0,14550,0,16144 +100212,0,2,0,-1,-1,0,18652,0,14541 +100213,0,1,0,-1,-1,0,21626,0,16842 +100214,1,1,0,-1,-1,0,9408,0,16842 +100215,0,1,0,-1,-1,0,7598,0,15057 +100216,1,1,0,-1,-1,0,13669,0,15057 +100217,0,0,-1,1000,-1,0,19057,0,15564 +100218,0,1,0,-1,-1,0,18384,0,16533 +100219,1,1,0,-1,-1,0,18050,0,16533 +100220,0,1,0,-1,-1,0,14798,0,16534 +100221,1,1,0,-1,-1,0,18384,0,16534 +100222,0,1,0,-1,-1,0,18384,0,16535 +100223,1,1,0,-1,-1,0,18050,0,16535 +100224,0,1,0,-1,-1,0,21627,0,16843 +100225,1,1,0,-1,-1,0,9417,0,16843 +100226,0,1,0,-1,-1,0,21618,0,16844 +100227,1,1,0,-1,-1,0,9406,0,16844 +100228,0,1,0,-1,-1,0,7597,0,16845 +100229,0,0,-1,-1,-1,0,19198,0,15753 +100230,0,0,-1,-1,-1,0,19200,0,15754 +100231,0,1,0,-1,-1,0,21618,0,16836 +100232,1,1,0,-1,-1,0,9406,0,16836 +100233,0,1,0,-1,-1,0,14635,0,16118 +100234,0,1,0,-1,-1,0,14628,0,16119 +100235,0,1,0,-1,-1,0,14630,0,16122 +100236,0,1,0,0,-1,0,14628,0,16123 +100237,0,0,-1,-1,-1,0,19204,0,15758 +100238,0,0,-1,-1,-1,0,19205,0,15759 +100239,0,0,-1,-1,-1,0,19206,0,15760 +100240,0,0,-1,-1,-1,0,19207,0,15761 +100241,0,1,0,-1,-1,0,9398,0,16501 +100242,0,1,0,-1,-1,0,13669,0,16502 +100243,1,1,0,-1,-1,0,9330,0,16502 +100244,0,1,0,-1,-1,0,9343,0,16802 +100245,0,1,0,-1,-1,0,14673,0,16148 +100246,0,0,-1,-1,-1,0,18987,0,15209 +100247,0,0,0,3600000,60000,94,23074,0,16022 +100248,0,0,-1,-1,-1,0,19868,0,16056 +100249,0,1,0,-1,-1,0,21625,0,16829 +100250,1,1,0,-1,-1,0,9406,0,16829 +100251,0,1,0,-1,-1,0,9406,0,16831 +100252,0,1,0,-1,-1,0,13669,0,16832 +100253,0,1,0,-1,-1,0,21625,0,16833 +100254,1,1,0,-1,-1,0,9408,0,16833 +100255,0,1,0,-1,-1,0,9417,0,16834 +100256,0,0,-1,-1,-1,0,19188,0,15745 +100257,0,0,-1,-1,-1,0,19189,0,15746 +100258,0,1,0,-1,-1,0,9406,0,16837 +100259,0,1,0,-1,-1,0,18384,0,16839 +100260,1,1,0,-1,-1,0,9415,0,16839 +100261,0,1,0,-1,-1,0,9396,0,16840 +100262,0,1,0,-1,-1,0,18384,0,16841 +100263,1,1,0,-1,-1,0,9408,0,16841 +100264,0,1,0,-1,-1,0,9408,0,16853 +100265,0,2,0,-1,-1,0,16406,0,15814 +100266,0,0,-1,-1,-1,0,7931,0,16112 +100267,0,1,0,-1,-1,0,9406,0,16860 +100268,0,0,-1,-1,-1,0,11008,0,3703 +100269,0,0,-1,60000,-1,0,16321,0,12459 +100270,0,0,-1,0,1000,0,19069,0,15688 +100271,0,0,-1,-1,-1,0,19565,0,15842 +100272,0,1,0,-1,-1,0,13669,0,16418 +100273,1,1,0,-1,-1,0,9141,0,16418 +100274,2,1,0,-1,-1,0,15464,0,16418 +100275,0,0,-1,-1,-1,0,20326,0,16329 +100276,0,0,0,5000,-1,0,19938,0,16114 +100277,0,1,0,-1,-1,0,9398,0,14626 +100278,0,0,-1,0,120000,4,7242,0,6048 +100279,0,1,0,-1,-1,0,14565,0,11906 +100280,0,0,-1,0,60000,24,19769,0,15993 +100281,0,0,-1,-1,-1,0,19187,0,15744 +100282,0,1,0,-1,-1,0,7597,0,15058 +100283,1,1,0,-1,-1,0,13669,0,15058 +100284,0,1,0,3600000,600000,0,9315,0,15059 +100285,0,1,0,-1,-1,0,9315,0,15060 +100286,0,0,-1,-1,-1,0,19720,0,15883 +100287,0,1,0,-1,-1,0,14628,0,16116 +100288,0,0,-1,-1,-1,0,15864,0,12232 +100289,0,1,0,-1,-1,0,14047,0,16950 +100290,0,1,0,-1,-1,0,9397,0,16951 +100291,0,1,0,-1,-1,0,21363,0,16953 +100292,1,1,0,-1,-1,0,9342,0,16953 +100293,0,0,-1,-1,-1,0,19950,0,16110 +100294,0,0,-1,-1,-1,0,19949,0,16111 +100295,0,1,0,-1,-1,0,14673,0,16149 +100296,0,1,0,-1,-1,0,14712,0,16151 +100297,0,1,0,0,0,0,9335,0,15063 +100298,1,1,0,-1,-1,0,7597,0,15063 +100299,0,0,-1,-1,-1,0,18952,0,16308 +100300,0,1,0,-1,-1,0,14590,0,16063 +100301,1,1,0,-1,-1,0,7597,0,16466 +100302,0,1,0,-1,-1,0,7597,0,16467 +100303,0,1,0,-1,-1,0,7597,0,16846 +100304,0,1,0,-1,-1,0,9406,0,16856 +100305,0,2,0,-1,-1,0,17152,0,647 +100306,0,2,0,-1,-1,0,19874,0,15418 +100307,0,1,0,-1,-1,0,7597,0,15411 +100308,1,1,0,-1,-1,0,9334,0,15411 +100309,0,1,0,-1,-1,0,21618,0,16857 +100310,0,1,0,-1,-1,0,9406,0,16858 +100311,0,1,0,0,0,0,9414,0,15108 +100312,1,0,0,1800000,0,0,18957,0,15108 +100313,0,0,-1,-1,-1,0,19029,0,15454 +100314,0,1,0,-1,-1,0,15811,0,15062 +100315,1,1,0,-1,-1,0,7597,0,15062 +100316,0,0,3,-1,-1,0,19696,0,15919 +100317,0,0,3,-1,-1,0,19697,0,15920 +100318,0,0,3,-1,-1,0,19693,0,15921 +100319,0,0,3,-1,-1,0,19700,0,15923 +100320,0,0,-1,-1,-1,0,19176,0,15740 +100321,0,0,-1,-1,-1,0,19177,0,15741 +100322,0,0,-1,0,1000,11,1127,0,16169 +100323,0,1,0,-1,-1,0,14635,0,16128 +100324,0,0,0,1800000,0,0,19634,0,15866 +100325,0,0,-1,-1,-1,0,3702,0,4204 +100326,0,0,-1,-1,-1,0,3686,0,4205 +100327,0,0,-1,-1,-1,0,19217,0,15773 +100328,0,0,0,1000,-1,0,19933,0,16105 +100329,0,0,-1,0,0,0,22095,0,17888 +100330,0,0,-1,0,0,0,22097,0,17890 +100331,0,1,0,-1,-1,0,14248,0,16549 +100332,1,1,0,-1,-1,0,7597,0,16549 +100333,0,0,-1,0,1800000,951,21355,0,17324 +100334,0,0,-1,0,1800000,951,21370,0,17325 +100335,0,0,-1,-1,-1,0,997,0,9029 +100336,0,0,-1,0,120000,4,11359,0,9030 +100337,0,0,0,-1,-1,0,21885,0,17696 +100338,0,1,0,-1,-1,0,9345,0,17570 +100339,0,1,0,-1,-1,0,18049,0,17583 +100340,0,1,0,-1,-1,0,18049,0,17586 +100341,0,1,0,-1,-1,0,22588,0,18163 +100342,0,1,0,-1,-1,0,14254,0,16519 +100343,0,0,-1,0,1000,11,1129,0,16766 +100344,0,1,0,-1,-1,0,18384,0,16413 +100345,0,1,0,-1,-1,0,18384,0,18405 +100346,0,1,0,-1,-1,0,13665,0,18406 +100347,1,1,0,-1,-1,0,13387,0,18406 +100348,2,1,0,-1,-1,0,21601,0,18406 +100349,0,1,0,-1,-1,0,18013,0,18407 +100350,0,2,0,0,-1,0,18276,0,14487 +100351,0,0,0,-1,-1,0,21848,0,17712 +100352,0,1,0,0,0,0,9331,0,17713 +100353,1,1,0,-1,-1,0,15464,0,17713 +100354,0,1,0,-1,-1,0,23037,0,16487 +100355,1,1,0,-1,-1,0,14248,0,16487 +100356,0,0,-1,-1,-1,0,20852,0,17022 +100357,0,1,0,-1,-1,0,9417,0,16485 +100358,0,2,0,-1,-1,0,16928,0,12798 +100359,0,1,0,-1,-1,0,13670,0,18370 +100360,0,1,0,-1,-1,0,21366,0,18371 +100361,0,1,0,-1,-1,0,9326,0,18372 +100362,0,1,0,-1,-1,0,14047,0,18373 +100363,0,1,0,-1,-1,0,14254,0,16414 +100364,0,1,0,-1,-1,0,23049,0,16558 +100365,0,0,0,30000,-1,0,21332,0,17310 +100366,0,1,0,-1,-1,0,9345,0,16580 +100367,0,1,0,-1,-1,0,9345,0,13344 +100368,0,0,-1,0,3000,79,17628,0,13512 +100369,0,0,-1,-1,-1,0,22929,0,18514 +100370,0,0,-1,-1,-1,0,22930,0,18515 +100371,0,1,0,-1,-1,0,21619,0,18483 +100372,0,1,0,-1,-1,0,23300,0,16471 +100373,1,1,0,-1,-1,0,7597,0,16471 +100374,0,1,0,-1,-1,0,7597,0,16504 +100375,1,1,0,-1,-1,0,9345,0,16504 +100376,0,1,0,-1,-1,0,9141,0,16507 +100377,0,1,0,-1,-1,0,7598,0,16508 +100378,0,1,0,-1,-1,0,17367,0,17578 +100379,0,0,-1,-1,-1,0,22873,0,18416 +100380,0,0,-1,-1,-1,0,20388,0,16358 +100381,0,0,-1,-1,-1,0,20389,0,16359 +100382,0,2,0,-1,-1,0,16407,0,17704 +100383,0,1,0,0,0,0,13669,0,16983 +100384,0,0,3,-1,-1,0,19687,0,15913 +100385,0,1,0,-1,-1,0,7597,0,16578 +100386,1,1,0,-1,-1,0,18384,0,16578 +100387,2,1,0,-1,-1,0,9415,0,16578 +100388,0,1,0,-1,-1,0,15464,0,16483 +100389,0,1,0,0,0,0,9346,0,13001 +100390,0,1,0,-1,-1,0,15464,0,12936 +100391,1,1,0,-1,-1,0,7597,0,12936 +100392,0,1,0,-1,-1,0,21618,0,16797 +100393,1,1,0,-1,-1,0,9343,0,16797 +100394,0,0,-1,0,1800000,831,20763,0,16893 +100395,0,0,-1,0,1000,11,5004,0,17199 +100396,0,0,-1,-1,-1,0,20390,0,16360 +100397,0,2,0,-1,-1,0,21919,0,17705 +100398,0,0,-1,-1,-1,0,20380,0,16350 +100399,0,0,-1,-1,-1,0,20381,0,16351 +100400,0,0,0,0,3000,330,22719,0,18243 +100401,0,0,-1,-1,-1,0,16688,0,12700 +100402,0,1,0,-1,-1,0,18032,0,18510 +100403,0,1,0,-1,-1,0,13669,0,18511 +100404,0,1,0,-1,-1,0,18384,0,17070 +100405,1,1,0,-1,-1,0,21362,0,17070 +100406,2,1,0,-1,-1,0,18056,0,17070 +100407,0,0,-1,0,0,0,22092,0,17885 +100408,0,0,-1,0,0,0,22093,0,17886 +100409,0,1,0,-1,-1,0,7597,0,16345 +100410,1,1,0,-1,-1,0,9335,0,16345 +100411,0,1,0,-1,-1,0,15464,0,16863 +100412,1,1,0,-1,-1,0,13383,0,16863 +100413,0,1,0,-1,-1,0,13669,0,16864 +100414,1,1,0,-1,-1,0,13383,0,16864 +100415,0,1,0,-1,-1,0,13676,0,16865 +100416,1,1,0,-1,-1,0,13385,0,16865 +100417,0,1,0,-1,-1,0,13669,0,16866 +100418,1,1,0,-1,-1,0,13385,0,16866 +100419,0,0,-1,1000,-1,0,21343,0,17202 +100420,0,0,-1,-1,-1,0,20069,0,16217 +100421,0,0,-1,-1,-1,0,20084,0,16249 +100422,0,1,0,-1,-1,0,15715,0,16523 +100423,0,1,0,-1,-1,0,22590,0,18165 +100424,0,1,0,-1,-1,0,9343,0,18528 +100425,0,1,0,-1,-1,0,9345,0,17567 +100426,0,0,-1,-1,-1,0,21933,0,17725 +100427,0,1,0,-1,-1,0,18030,0,18309 +100428,0,1,0,-1,-1,0,9345,0,18546 +100429,0,1,0,-1,-1,0,17816,0,10036 +100430,0,0,-1,0,1800000,951,21371,0,17323 +100431,0,1,0,-1,-1,0,13665,0,16867 +100432,1,1,0,-1,-1,0,13385,0,16867 +100433,0,1,0,-1,-1,0,9329,0,16503 +100434,1,1,0,-1,-1,0,9342,0,16503 +100435,0,1,0,-1,-1,0,15813,0,15052 +100436,0,0,-1,0,1000,11,1127,0,13755 +100437,0,0,-1,-1,-1,0,22736,0,18258 +100438,0,1,0,-1,-1,0,7681,0,18395 +100439,0,1,0,-1,-1,0,14630,0,16131 +100440,0,0,0,-1,-1,0,11438,0,9253 +100441,0,1,0,-1,-1,0,13387,0,18547 +100442,0,0,-1,-1,-1,0,20379,0,16349 +100443,0,2,0,-1,-1,0,21153,0,17076 +100444,1,1,0,-1,-1,0,7597,0,17076 +100445,0,1,0,-1,-1,0,9343,0,17078 +100446,0,1,0,-1,-1,0,18384,0,18403 +100447,0,0,-1,-1,-1,0,22794,0,18290 +100448,0,0,-1,-1,-1,0,22798,0,18291 +100449,0,0,-1,-1,-1,0,22796,0,18292 +100450,0,0,-1,-1,-1,0,19164,0,15729 +100451,0,0,-1,-1,-1,0,19190,0,15747 +100452,0,0,0,-1,-1,0,20530,0,16650 +100453,0,1,0,-1,-1,0,13669,0,16506 +100454,1,1,0,-1,-1,0,15464,0,16506 +100455,2,1,0,-1,-1,0,9141,0,16506 +100456,0,0,-1,0,120000,1153,18832,0,14894 +100457,0,1,0,3600000,600000,0,18041,0,15047 +100458,0,0,-3,0,60000,24,17639,0,13514 +100459,0,0,0,0,3000,330,22722,0,18248 +100460,0,0,-1,0,3000,79,21920,0,17708 +100461,0,1,0,-1,-1,0,21623,0,17710 +100462,0,1,0,-1,-1,0,9343,0,16518 +100463,1,1,0,-1,-1,0,22801,0,16518 +100464,0,0,-1,-1,-1,0,22872,0,18415 +100465,0,0,-1,0,1800000,831,20762,0,16892 +100466,0,1,0,-1,-1,0,15464,0,16468 +100467,0,1,0,-1,-1,0,9346,0,16472 +100468,1,1,0,-1,-1,0,18379,0,16472 +100469,0,0,-1,-1,-1,0,11007,0,17196 +100470,0,0,-1,0,1000,11,5004,0,17197 +100471,1,0,-1,0,120000,1153,23471,0,19007 +100472,0,1,0,-1,-1,0,18384,0,18368 +100473,0,1,0,-1,-1,0,18384,0,18369 +100474,0,0,0,300000,0,0,21954,0,17744 +100475,0,1,0,0,0,0,21991,0,17782 +100476,0,1,0,-1,-1,0,17367,0,17592 +100477,0,0,-1,0,120000,1153,21955,0,17747 +100478,0,0,-1,-1,-1,0,22846,0,18331 +100479,0,1,0,-1,-1,0,18384,0,18509 +100480,0,1,0,-1,-1,0,7597,0,16477 +100481,0,1,0,-1,-1,0,7597,0,16478 +100482,0,1,0,-1,-1,0,7598,0,16479 +100483,1,1,0,-1,-1,0,15464,0,16479 +100484,0,0,-1,-1,-1,0,18480,0,14473 +100485,0,1,0,-1,-1,0,9417,0,17569 +100486,0,1,0,-1,-1,0,18054,0,17579 +100487,0,1,0,-1,-1,0,13383,0,16862 +100488,0,0,-1,0,0,0,22090,0,17883 +100489,0,0,-1,-1,-1,0,20899,0,17060 +100490,0,1,0,-1,-1,0,18384,0,16898 +100491,1,1,0,-1,-1,0,9315,0,16898 +100492,0,1,0,-1,-1,0,18032,0,16899 +100493,0,1,0,-1,-1,0,21626,0,16900 +100494,1,1,0,-1,-1,0,9316,0,16900 +100495,0,0,-1,-1,-1,0,20377,0,16347 +100496,0,1,0,-1,-1,0,7597,0,15860 +100497,0,0,0,1000,-1,0,19931,0,16103 +100498,0,0,-1,-1,-1,0,20429,0,16384 +100499,0,1,0,-1,-1,0,13669,0,16401 +100500,0,1,0,0,0,0,21969,0,17774 +100501,0,0,-1,-1,-1,0,22753,0,18259 +100502,0,0,-1,-1,-1,0,21866,0,17689 +100503,1,0,-1,0,120000,1153,23468,0,19004 +100504,0,0,-1,-1,-1,0,16671,0,12682 +100505,0,0,-1,-1,-1,0,16687,0,12699 +100506,0,1,0,-1,-1,0,9345,0,17600 +100507,0,1,0,-1,-1,0,9417,0,17601 +100508,0,0,-1,-1,-1,0,18518,0,14500 +100509,0,0,-1,-1,-1,0,20378,0,16348 +100510,0,0,-1,-1,-1,0,19175,0,15739 +100511,0,1,0,-1,-1,0,9331,0,17777 +100512,0,1,0,30000,-1,0,21978,0,17780 +100513,0,1,0,-1,-1,0,18384,0,16796 +100514,1,1,0,-1,-1,0,14799,0,16796 +100515,1,0,-1,0,120000,1153,23469,0,19005 +100516,1,0,-1,0,120000,1153,23470,0,19006 +100517,0,1,0,-1,-1,0,7569,0,17754 +100518,0,1,0,-1,-1,0,9316,0,16902 +100519,1,1,0,-1,-1,0,21618,0,16902 +100520,0,1,0,-1,-1,0,9315,0,16903 +100521,1,1,0,-1,-1,0,21618,0,16903 +100522,0,0,-1,-1,-1,0,22789,0,18269 +100523,0,0,0,-1,-1,0,11434,0,9239 +100524,0,0,-1,0,120000,4,17548,0,13459 +100525,0,1,0,-1,-1,0,9417,0,17613 +100526,0,1,0,-1,-1,0,7597,0,16577 +100527,1,1,0,-1,-1,0,18384,0,16577 +100528,2,1,0,-1,-1,0,9415,0,16577 +100529,0,0,-1,-1,-1,0,21947,0,17729 +100530,0,0,0,0,-1,0,21950,0,17731 +100531,0,1,0,-1,-1,0,15464,0,18323 +100532,0,1,0,-1,-1,0,7597,0,16433 +100533,0,0,-1,-1,-1,0,17045,0,12368 +100534,0,0,-1,-1,-1,0,16781,0,12722 +100535,0,1,0,-1,-1,0,18384,0,16416 +100536,0,0,-1,-1,-1,0,17020,0,12819 +100537,0,0,0,-1,-1,0,22567,0,18157 +100538,0,0,0,-1,-1,0,22567,0,18158 +100539,0,0,0,-1,-1,0,21050,0,17117 +100540,0,0,-1,-1,-1,0,22871,0,18414 +100541,0,1,0,-1,-1,0,22586,0,18161 +100542,0,1,0,-1,-1,0,22587,0,18162 +100543,0,0,-1,-1,-1,0,15439,0,11666 +100544,0,1,0,-1,-1,0,14054,0,16579 +100545,1,1,0,-1,-1,0,18384,0,16579 +100546,2,1,0,-1,-1,0,7597,0,16579 +100547,0,0,0,-1,-1,0,19937,0,16787 +100548,0,1,0,-1,-1,0,9346,0,16550 +100549,1,1,0,-1,-1,0,7597,0,16550 +100550,0,1,0,-1,-1,0,9141,0,16987 +100551,0,0,-1,-1,-1,0,17586,0,13480 +100552,0,0,-1,-1,-1,0,17642,0,13519 +100553,0,1,0,-1,-1,0,21596,0,17902 +100554,1,1,0,-1,-1,0,13669,0,17902 +100555,2,0,0,0,120000,1091,22564,0,17902 +100556,0,0,-1,-1,-1,0,22599,0,18182 +100557,0,1,0,-1,-1,0,17830,0,18545 +100558,0,1,0,-1,-1,0,23516,0,16961 +100559,1,1,0,-1,-1,0,13385,0,16961 +100560,0,0,-1,0,1000,11,434,0,17119 +100561,0,1,0,-1,-1,0,14673,0,16150 +100562,0,0,-1,0,1000,11,433,0,16166 +100563,0,1,0,-1,-1,0,14712,0,16164 +100564,0,0,-1,-1,-1,0,20317,0,16346 +100565,0,0,0,-1,-1,0,20529,0,16646 +100566,0,0,0,-1,-1,0,22567,0,18156 +100567,0,0,-1,-1,-1,0,20921,0,17062 +100568,0,1,0,-1,-1,0,9332,0,17069 +100569,1,1,0,-1,-1,0,15464,0,17069 +100570,0,0,-1,-1,-1,0,9073,0,7290 +100571,0,0,0,-1,-1,0,21957,0,17764 +100572,0,2,0,-1,-1,0,21961,0,17766 +100573,0,1,0,-1,-1,0,14089,0,17767 +100574,0,1,0,-1,-1,0,18384,0,16489 +100575,0,0,-1,-1,-1,0,19877,0,16665 +100576,0,1,0,-1,-1,0,14254,0,16490 +100577,0,1,0,-1,-1,0,18384,0,16945 +100578,0,1,0,-1,-1,0,18384,0,16946 +100579,1,1,0,-1,-1,0,13881,0,16946 +100580,0,1,0,-1,-1,0,18384,0,16947 +100581,1,1,0,-1,-1,0,9415,0,16947 +100582,2,1,0,-1,-1,0,9406,0,16947 +100583,0,1,0,-1,-1,0,14054,0,16440 +100584,1,1,0,-1,-1,0,23037,0,16440 +100585,0,1,0,-1,-1,0,17367,0,17591 +100586,0,1,0,-1,-1,0,9141,0,15469 +100587,0,1,0,-1,-1,0,21618,0,16838 +100588,1,1,0,-1,-1,0,9406,0,16838 +100589,0,1,0,-1,-1,0,21346,0,17770 +100590,0,2,0,0,-1,0,16908,0,12781 +100591,0,0,-1,-1,-1,0,18478,0,14471 +100592,0,0,-1,-1,-1,0,18496,0,14486 +100593,0,1,0,-1,-1,0,7597,0,16521 +100594,0,0,-1,0,0,0,22091,0,17884 +100595,0,1,0,-1,-1,0,9343,0,16494 +100596,0,1,0,-1,-1,0,18034,0,16901 +100597,1,1,0,-1,-1,0,18379,0,16901 +100598,0,1,0,-1,-1,0,7597,0,18324 +100599,0,0,-1,-1,-1,0,19219,0,15775 +100600,0,0,-1,0,0,0,22700,0,18232 +100601,0,0,-1,-1,-1,0,19174,0,15738 +100602,0,1,0,-1,-1,0,15464,0,18404 +100603,1,1,0,-1,-1,0,7597,0,18404 +100604,0,0,-1,-1,-1,0,16989,0,12807 +100605,0,0,-1,-1,-1,0,17019,0,12818 +100606,0,1,0,-1,-1,0,23046,0,17584 +100607,1,1,0,-1,-1,0,14798,0,17584 +100608,0,0,-1,-1,-1,0,3695,0,8936 +100609,0,0,-1,-1,-1,0,656,0,8937 +100610,0,1,0,-1,-1,0,21518,0,17741 +100611,1,1,0,-1,-1,0,18378,0,17741 +100612,0,1,0,-1,-1,0,9417,0,18396 +100613,0,1,0,-1,-1,0,7710,0,15109 +100614,1,1,0,-1,-1,0,7688,0,15109 +100615,0,0,-1,-1,-1,0,19215,0,15771 +100616,0,0,-1,-1,-1,0,22705,0,18235 +100617,0,1,0,-1,-1,0,18384,0,18367 +100618,0,0,-1,0,3000,79,17629,0,13513 +100619,0,0,-1,0,120000,4,2023,0,17350 +100620,0,0,-1,0,300000,4,21396,0,17352 +100621,0,0,-1,0,0,0,22094,0,17887 +100622,0,2,0,-1,-1,0,22863,0,18410 +100623,0,1,0,-1,-1,0,13669,0,18411 +100624,0,0,-1,-1,-1,0,20077,0,16242 +100625,0,0,-1,-1,-1,0,20079,0,16244 +100626,0,0,-1,-1,-1,0,20408,0,16380 +100627,0,1,0,-1,-1,0,9417,0,16813 +100628,0,1,0,-1,-1,0,21626,0,16814 +100629,1,1,0,-1,-1,0,9408,0,16814 +100630,0,1,0,-1,-1,0,9408,0,16815 +100631,0,1,0,-1,-1,0,14054,0,16912 +100632,0,0,-1,-1,-1,0,20393,0,16363 +100633,0,0,0,-1,-1,0,20529,0,16648 +100634,0,0,0,-1,-1,0,20530,0,16649 +100635,0,0,0,-1,-1,0,20530,0,16651 +100636,0,1,0,-1,-1,0,13670,0,16962 +100637,1,1,0,-1,-1,0,18185,0,16962 +100638,0,0,0,0,3000,330,16082,0,16339 +100639,0,1,0,-1,-1,0,18185,0,16963 +100640,0,1,0,-1,-1,0,13665,0,16964 +100641,1,1,0,-1,-1,0,13385,0,16964 +100642,0,1,0,-1,-1,0,23515,0,16965 +100643,1,1,0,-1,-1,0,13385,0,16965 +100644,0,0,-1,-1,-1,0,20270,0,16302 +100645,0,0,-1,-1,-1,0,19890,0,16082 +100646,0,1,0,-1,-1,0,7597,0,16910 +100647,0,1,0,-1,-1,0,15464,0,16911 +100648,0,0,-1,0,1000,59,1133,0,17405 +100649,0,1,0,0,-1,0,21361,0,17110 +100650,0,0,-1,60000,60000,0,17038,0,12820 +100651,0,1,0,-1,-1,0,18384,0,16835 +100652,1,1,0,-1,-1,0,21362,0,16835 +100653,2,1,0,-1,-1,0,9408,0,16835 +100654,0,0,-1,-1,-1,0,19867,0,16055 +100655,0,0,0,-1,-1,0,20530,0,16652 +100656,0,1,0,-1,-1,0,18384,0,16931 +100657,1,1,0,-1,-1,0,17367,0,16931 +100658,0,1,0,-1,-1,0,18384,0,16933 +100659,1,1,0,-1,-1,0,15715,0,16933 +100660,0,1,0,-1,-1,0,18185,0,16966 +100661,0,0,-1,-1,-1,0,19203,0,15757 +100662,0,0,-1,-1,-1,0,19214,0,15770 +100663,0,1,0,-1,-1,0,22778,0,16406 +100664,0,1,0,-1,-1,0,9318,0,16926 +100665,0,1,0,-1,-1,0,14047,0,16927 +100666,0,0,-1,0,1000,11,10256,0,16971 +100667,0,0,-1,-1,-1,0,20737,0,16972 +100668,0,1,0,-1,-1,0,14590,0,16066 +100669,0,0,-1,-1,-1,0,19889,0,16083 +100670,0,0,0,1000,-1,0,19934,0,16106 +100671,0,1,0,-1,-1,0,7597,0,16473 +100672,1,1,0,-1,-1,0,15715,0,16473 +100673,2,1,0,-1,-1,0,21363,0,16473 +100674,0,1,0,-1,-1,0,7597,0,16474 +100675,1,1,0,-1,-1,0,15715,0,16474 +100676,2,1,0,-1,-1,0,21363,0,16474 +100677,0,1,0,-1,-1,0,15464,0,16568 +100678,0,1,0,-1,-1,0,21363,0,16958 +100679,1,1,0,-1,-1,0,15715,0,16958 +100680,0,0,-1,-1,-1,0,20382,0,16352 +100681,0,0,-1,-1,-1,0,20385,0,16355 +100682,0,1,0,-1,-1,0,23037,0,16391 +100683,1,1,0,-1,-1,0,14248,0,16391 +100684,0,1,0,-1,-1,0,23049,0,16392 +100685,0,0,-1,-1,-1,0,20383,0,16353 +100686,0,0,-1,-1,-1,0,20090,0,16255 +100687,0,1,0,-1,-1,0,21626,0,16956 +100688,1,1,0,-1,-1,0,9344,0,16956 +100689,0,0,-1,0,3600000,103,10667,0,8410 +100690,0,1,0,-1,-1,0,9335,0,16984 +100691,0,1,0,-1,-1,0,23217,0,16448 +100692,1,1,0,-1,-1,0,9417,0,16448 +100693,0,1,0,-1,-1,0,9346,0,16449 +100694,0,1,0,-1,-1,0,7597,0,16450 +100695,0,1,0,-1,-1,0,9343,0,16393 +100696,0,0,-1,-1,-1,0,20430,0,16385 +100697,0,2,0,-1,-1,0,21151,0,17071 +100698,0,0,-1,-1,-1,0,17161,0,12922 +100699,0,1,0,-1,-1,0,13670,0,12935 +100700,0,1,0,0,-1,0,13881,0,12930 +100701,0,2,0,0,-1,0,21951,0,17733 +100702,0,1,0,-1,-1,0,13385,0,17734 +100703,0,1,0,-1,-1,0,9318,0,16904 +100704,0,1,0,-1,-1,0,7597,0,16905 +100705,1,1,0,-1,-1,0,15465,0,16905 +100706,0,0,-1,-1,-1,0,20386,0,16356 +100707,0,1,0,-1,-1,0,23217,0,16496 +100708,0,1,0,-1,-1,0,23049,0,16498 +100709,0,1,0,-1,-1,0,15807,0,16499 +100710,0,0,-1,-1,-1,0,19845,0,16041 +100711,0,0,-1,-1,-1,0,19846,0,16042 +100712,0,1,0,-1,-1,0,9345,0,16459 +100713,0,1,0,-1,-1,0,15464,0,16462 +100714,0,1,0,-1,-1,0,15464,0,16823 +100715,0,0,-1,-1,-1,0,20065,0,16214 +100716,0,1,0,-1,-1,0,21347,0,16928 +100717,1,1,0,-1,-1,0,9344,0,16928 +100718,2,1,0,-1,-1,0,18384,0,16928 +100719,0,1,0,-1,-1,0,21347,0,16929 +100720,1,1,0,-1,-1,0,17367,0,16929 +100721,0,1,0,-1,-1,0,18055,0,16930 +100722,0,1,0,-1,-1,0,7597,0,16566 +100723,0,1,0,-1,-1,0,9417,0,17576 +100724,0,1,0,-1,-1,0,23046,0,17577 +100725,1,1,0,-1,-1,0,14248,0,17577 +100726,0,0,-1,-1,-1,0,21145,0,17200 +100727,0,0,-1,-1,-1,0,21146,0,17201 +100728,0,1,0,-1,-1,0,21346,0,17900 +100729,1,0,0,0,120000,1091,22564,0,17900 +100730,0,1,0,-1,-1,0,7219,0,16907 +100731,0,1,0,-1,-1,0,7597,0,16908 +100732,0,1,0,-1,-1,0,23043,0,17596 +100733,1,1,0,-1,-1,0,14248,0,17596 +100734,0,1,0,-1,-1,0,17367,0,17603 +100735,1,1,0,-1,-1,0,21362,0,17603 +100736,0,1,0,-1,-1,0,15715,0,17604 +100737,0,0,-1,-1,-1,0,20401,0,16373 +100738,0,0,-1,-1,-1,0,20403,0,16375 +100739,0,1,0,-1,-1,0,9398,0,16423 +100740,0,1,0,-1,-1,0,9329,0,16424 +100741,1,1,0,-1,-1,0,9342,0,16424 +100742,0,0,-1,-1,-1,0,20850,0,17017 +100743,0,0,-1,-1,-1,0,20851,0,17018 +100744,0,0,-1,-1,-1,0,20088,0,16253 +100745,0,0,-1,-1,-1,0,20089,0,16254 +100746,0,0,-1,-1,-1,0,20433,0,16388 +100747,0,0,-1,-1,-1,0,20405,0,16377 +100748,0,0,-1,-1,-1,0,20814,0,16974 +100749,0,1,0,-1,-1,0,23212,0,17064 +100750,0,1,0,-1,-1,0,15438,0,17066 +100751,1,1,0,-1,-1,0,13675,0,17066 +100752,2,1,0,-1,-1,0,22852,0,17066 +100753,0,0,-1,-1,-1,0,20881,0,17052 +100754,0,1,0,-1,-1,0,9334,0,16425 +100755,1,1,0,-1,-1,0,7597,0,16425 +100756,0,1,0,-1,-1,0,14798,0,16442 +100757,1,1,0,-1,-1,0,18384,0,16442 +100758,0,1,0,-1,-1,0,14677,0,16146 +100759,0,1,0,-1,-1,0,14673,0,16147 +100760,0,0,0,1000,-1,0,19930,0,16102 +100761,0,0,-1,-1,-1,0,19865,0,16053 +100762,0,1,0,-1,-1,0,7598,0,16419 +100763,0,1,0,-1,-1,0,18034,0,16921 +100764,0,0,-1,-1,-1,0,20427,0,16382 +100765,0,0,0,0,2700000,951,21544,0,17384 +100766,0,0,-1,-1,500,1951,20040,0,16203 +100767,0,1,0,-1,-1,0,14254,0,16918 +100768,1,1,0,-1,-1,0,21362,0,16918 +100769,0,1,0,-1,-1,0,18029,0,16919 +100770,0,1,0,-1,-1,0,18384,0,16920 +100771,1,1,0,-1,-1,0,9316,0,16920 +100772,0,2,0,-1,-1,0,17511,0,17002 +100773,0,1,0,-1,-1,0,7597,0,16820 +100774,0,1,0,-1,-1,0,15464,0,16563 +100775,1,1,0,-1,-1,0,7597,0,16563 +100776,0,1,0,-1,-1,0,15465,0,16564 +100777,1,1,0,-1,-1,0,7597,0,16564 +100778,0,2,0,-1,-1,0,18205,0,17752 +100779,0,1,0,-1,-1,0,7597,0,16522 +100780,0,0,-1,-1,-1,0,20075,0,16223 +100781,0,0,-1,-1,-1,0,20076,0,16224 +100782,0,0,-1,-1,-1,0,20078,0,16243 +100783,0,1,0,-1,-1,0,7597,0,16455 +100784,1,1,0,-1,-1,0,15464,0,16455 +100785,0,1,0,-1,-1,0,15465,0,16456 +100786,1,1,0,-1,-1,0,7597,0,16456 +100787,0,1,0,-1,-1,0,7597,0,16909 +100788,0,0,0,1800000,0,0,21956,0,17759 +100789,1,1,0,-1,-1,0,21958,0,17759 +100790,0,0,-1,-1,-1,0,20628,0,16767 +100791,0,0,0,1200000,0,0,20631,0,16768 +100792,0,0,0,1000,-1,0,19936,0,16108 +100793,0,0,-1,-1,-1,0,20400,0,16372 +100794,0,2,0,-1,-1,0,21152,0,17073 +100795,1,1,0,-1,-1,0,9332,0,17073 +100796,0,1,0,0,0,0,9346,0,17109 +100797,0,2,0,-1,-1,0,21170,0,17074 +100798,1,0,0,-1,60000,1150,21180,0,17074 +100799,0,1,0,-1,-1,0,9358,0,18289 +100800,0,0,0,0,3000,330,458,0,16338 +100801,0,1,0,-1,-1,0,21619,0,16914 +100802,1,1,0,-1,-1,0,17367,0,16914 +100803,0,0,-1,-1,-1,0,20878,0,17049 +100804,0,0,-1,-1,-1,0,20898,0,17059 +100805,0,1,0,-1,-1,0,14635,0,16121 +100806,0,0,-1,0,60000,24,19821,0,16040 +100807,0,1,0,0,0,0,21991,0,17783 +100808,0,0,-1,-1,-1,0,16753,0,12718 +100809,0,0,-1,-1,-1,0,17037,0,12839 +100810,0,0,-1,-1,-1,0,17433,0,13309 +100811,0,0,-1,-1,-1,0,20320,0,16324 +100812,0,0,0,900000,60000,94,17490,0,17067 +100813,0,0,-1,-1,-1,0,19167,0,15731 +100814,0,0,-1,-1,-1,0,20313,0,16317 +100815,0,0,-1,-1,-1,0,20316,0,16320 +100816,0,0,-20,-1,-1,0,20804,0,16991 +100817,0,1,0,-1,-1,0,18384,0,16916 +100818,1,1,0,-1,-1,0,17367,0,16916 +100819,0,1,0,-1,-1,0,21619,0,16917 +100820,1,1,0,-1,-1,0,14248,0,16917 +100821,0,1,0,-1,-1,0,9141,0,16528 +100822,0,1,0,-1,-1,0,23157,0,16530 +100823,0,1,0,-1,-1,0,13669,0,16531 +100824,1,1,0,-1,-1,0,13665,0,17108 +100825,0,2,0,-1,-1,0,21165,0,17112 +100826,0,0,0,1000,-1,0,19929,0,16086 +100827,0,1,0,-1,-1,0,21346,0,17901 +100828,1,1,0,-1,-1,0,13669,0,17901 +100829,2,0,0,0,120000,1091,22564,0,17901 +100830,0,1,0,-1,-1,0,15464,0,16826 +100831,0,1,0,-1,-1,0,7597,0,16827 +100832,0,1,0,-1,-1,0,21618,0,16828 +100833,1,1,0,-1,-1,0,9415,0,16828 +100834,0,1,0,-1,-1,0,14047,0,16798 +100835,0,1,0,-1,-1,0,9417,0,16799 +100836,1,1,0,-1,-1,0,21625,0,16799 +100837,0,1,0,-1,-1,0,18384,0,16800 +100838,1,1,0,-1,-1,0,9416,0,16800 +100839,0,0,-1,0,1800000,951,21537,0,17362 +100840,0,0,-1,-1,-1,0,19225,0,15781 +100841,0,1,0,-1,-1,0,9346,0,16551 +100842,0,1,0,-1,-1,0,21618,0,16817 +100843,1,1,0,-1,-1,0,9415,0,16817 +100844,0,1,0,-1,-1,0,14047,0,16818 +100845,0,1,0,-1,-1,0,21624,0,16819 +100846,1,1,0,-1,-1,0,9314,0,16819 +100847,0,1,0,-1,-1,0,20732,0,16886 +100848,0,1,0,-1,-1,0,14248,0,16539 +100849,1,1,0,-1,-1,0,23727,0,16539 +100850,0,1,0,-1,-1,0,23037,0,16540 +100851,1,1,0,-1,-1,0,14054,0,16540 +100852,0,1,0,-1,-1,0,7597,0,16541 +100853,0,1,0,-1,-1,0,15464,0,16544 +100854,0,1,0,-1,-1,0,21636,0,17113 +100855,1,1,0,-1,-1,0,17493,0,17113 +100856,0,0,-1,0,1800000,951,21728,0,17505 +100857,0,0,-1,0,1800000,951,21730,0,17506 +100858,0,0,-1,0,1800000,951,21729,0,17507 +100859,0,1,0,-1,-1,0,19380,0,15782 +100860,0,1,0,-1,-1,0,19380,0,15783 +100861,0,1,0,-1,-1,0,13676,0,16960 +100862,1,1,0,-1,-1,0,13385,0,16960 +100863,0,1,0,-1,-1,0,9141,0,16659 +100864,0,0,-1,-1,-1,0,20080,0,16245 +100865,0,0,-1,-1,-1,0,20081,0,16246 +100866,0,1,0,-1,-1,0,15464,0,16545 +100867,0,2,0,-1,-1,0,17315,0,13286 +100868,0,0,-1,0,0,0,22051,0,17827 +100869,0,0,0,-1,-1,0,21160,0,17204 +100870,0,2,0,-1,-1,0,21179,0,17223 +100871,1,0,0,-1,60000,1150,21181,0,17223 +100872,0,0,0,-1,-1,0,21171,0,17224 +100873,0,0,-1,-1,-1,0,18563,0,14526 +100874,0,0,-1,-1,-1,0,20406,0,16378 +100875,0,1,0,0,-1,0,15465,0,17063 +100876,0,1,0,-1,-1,0,9329,0,15587 +100877,0,1,0,-1,-1,0,7597,0,16426 +100878,1,1,0,-1,-1,0,13669,0,16426 +100879,0,1,0,-1,-1,0,9141,0,16428 +100880,0,0,-1,-1,500,1951,20039,0,16202 +100881,0,0,-1,-1,-1,0,20082,0,16247 +100882,0,0,-1,-1,-1,0,21248,0,17242 +100883,0,1,0,-1,-1,0,18382,0,14146 +100884,0,1,0,-1,-1,0,9141,0,16427 +100885,0,0,-1,-1,-1,0,18536,0,14513 +100886,0,1,0,-1,-1,0,18050,0,17605 +100887,1,1,0,-1,-1,0,21362,0,17605 +100888,0,1,0,-1,-1,0,14047,0,17607 +100889,0,1,0,-1,-1,0,14047,0,17608 +100890,1,1,0,-1,-1,0,23043,0,17608 +100891,0,0,-1,-1,-1,0,21569,0,17414 +100892,0,1,0,-1,-1,0,9417,0,17616 +100893,0,1,0,-1,-1,0,23043,0,17617 +100894,1,1,0,-1,-1,0,14248,0,17617 +100895,0,1,0,-1,-1,0,15715,0,17622 +100896,0,1,0,-1,-1,0,18050,0,17623 +100897,1,1,0,-1,-1,0,21362,0,17623 +100898,0,0,-1,-1,-1,0,997,0,9012 +100899,0,1,0,-1,-1,0,7597,0,16560 +100900,0,1,0,-1,-1,0,15464,0,16561 +100901,1,1,0,-1,-1,0,7597,0,16561 +100902,0,0,-1,0,1000,11,1127,0,17407 +100903,0,0,-1,0,1000,11,1129,0,17408 +100904,0,0,-3,600000,60000,24,19363,0,15778 +100905,0,0,-1,-1,-1,0,19222,0,15779 +100906,0,1,0,-1,-1,0,7597,0,16936 +100907,0,1,0,-1,-1,0,13669,0,16422 +100908,1,1,0,-1,-1,0,9330,0,16422 +100909,0,0,-1,-1,-1,0,21924,0,17709 +100910,0,0,-1,0,1000,11,18234,0,13934 +100911,0,1,0,-1,-1,0,7597,0,16453 +100912,1,1,0,-1,-1,0,15464,0,16453 +100913,0,1,0,-1,-1,0,7597,0,16454 +100914,0,1,0,-1,-1,0,14798,0,16810 +100915,0,1,0,-1,-1,0,19691,0,16658 +100916,0,1,0,-1,-1,0,9315,0,16925 +100917,0,0,0,0,259200000,791,19566,0,15846 +100918,0,0,0,30000,-1,0,19588,0,15848 +100919,0,0,-1,-1,-1,0,20426,0,16381 +100920,0,0,-1,-1,-1,0,20392,0,16362 +100921,0,1,0,-1,-1,0,13675,0,16868 +100922,1,1,0,-1,-1,0,13383,0,16868 +100923,0,1,0,-1,-1,0,9342,0,16809 +100924,1,1,0,-1,-1,0,23727,0,16809 +100925,0,0,0,-1,-1,0,10059,0,12585 +100926,0,0,0,900000,120000,1153,23539,0,19045 +100927,0,0,-1,-1,-1,0,964,0,8995 +100928,0,1,0,-1,-1,0,15464,0,18736 +100929,0,1,0,-1,-1,0,18013,0,19434 +100930,0,1,0,-1,-1,0,21363,0,19435 +100931,0,1,0,-1,-1,0,18039,0,19437 +100932,0,1,0,-1,-1,0,15814,0,19406 +100933,1,1,0,-1,-1,0,15465,0,19406 +100934,2,1,0,-1,-1,0,13669,0,19406 +100935,0,0,-1,-1,-1,0,21915,0,17706 +100936,0,2,0,-1,-1,0,23267,0,18816 +100937,0,0,0,90000,15000,1141,23271,0,18820 +100938,0,1,0,-1,-1,0,9406,0,18824 +100939,0,1,0,-1,-1,0,7597,0,18831 +100940,0,1,0,-1,-1,0,9404,0,18679 +100941,0,0,-1,-1,-1,0,22905,0,18489 +100942,0,1,0,-1,-1,0,9331,0,15862 +100943,0,0,0,-1,3000,330,17481,0,18063 +100944,0,1,0,-1,-1,0,14248,0,18082 +100945,0,1,0,-1,-1,0,13675,0,18499 +100946,1,1,0,-1,-1,0,22912,0,18499 +100947,0,1,0,-1,-1,0,9408,0,18717 +100948,0,1,0,-1,-1,0,9417,0,19121 +100949,0,1,0,-1,-1,0,23434,0,18970 +100950,0,1,0,-1,-1,0,7597,0,18832 +100951,0,0,-1,0,120000,4,17530,0,18841 +100952,0,1,0,-1,-1,0,15464,0,19387 +100953,0,1,0,-1,-1,0,14052,0,19396 +100954,1,1,0,-1,-1,0,13669,0,19396 +100955,0,1,0,-1,-1,0,15464,0,12963 +100956,1,1,0,-1,-1,0,7597,0,12963 +100957,2,1,0,-1,-1,0,13670,0,12963 +100958,0,1,0,-1,-1,0,9335,0,19439 +100959,0,0,-1,60000,0,150,23786,0,19440 +100960,0,0,0,600000,120000,1153,23034,0,18606 +100961,0,1,0,-1,-1,0,7597,0,18847 +100962,1,1,0,-1,-1,0,9335,0,18847 +100963,0,0,0,300000,-1,0,23273,0,18849 +100964,0,1,0,-1,-1,0,7597,0,18821 +100965,1,1,0,-1,-1,0,9336,0,18821 +100966,0,0,0,-1,-1,0,23180,0,18688 +100967,0,1,0,-1,-1,0,9327,0,18691 +100968,0,1,0,-1,-1,0,18384,0,18720 +100969,0,1,0,-1,-1,0,7597,0,18725 +100970,1,1,0,-1,-1,0,15814,0,18725 +100971,0,1,0,-1,-1,0,23435,0,18971 +100972,0,1,0,-1,-1,0,14047,0,19156 +100973,0,1,0,-1,-1,0,15810,0,19157 +100974,1,1,0,-1,-1,0,7597,0,19157 +100975,2,1,0,-1,-1,0,18384,0,19157 +100976,0,1,0,-1,-1,0,9343,0,13390 +100977,0,0,0,-1,-1,0,23679,0,19274 +100978,0,1,0,-1,-1,0,9329,0,13203 +100979,0,1,0,-1,-1,0,9336,0,17714 +100980,0,0,0,0,86400000,991,21935,0,17716 +100981,0,1,0,-1,-1,0,21433,0,17717 +100982,0,1,0,-1,-1,0,8082,0,19022 +100983,0,0,-1,1000,-1,0,11544,0,19026 +100984,0,1,0,-1,-1,0,18384,0,18490 +100985,1,1,0,-1,-1,0,9318,0,18490 +100986,0,0,-1,-1,-1,0,17015,0,12814 +100987,0,1,0,-1,-1,0,14798,0,18727 +100988,0,1,0,0,0,0,7597,0,13957 +100989,0,1,0,-1,-1,0,22618,0,18168 +100990,1,1,0,-1,-1,0,22620,0,18168 +100991,0,1,0,-1,-1,0,18384,0,18709 +100992,1,0,-1,0,120000,1153,23475,0,19011 +100993,0,0,-1,-1,-1,0,22931,0,18516 +100994,0,1,0,-1,-1,0,21598,0,18315 +100995,0,1,0,-1,-1,0,14254,0,18316 +100996,0,1,0,-1,-1,0,9407,0,18318 +100997,0,1,0,-1,-1,0,14714,0,16160 +100998,0,1,0,-1,-1,0,18049,0,18479 +100999,0,0,0,900000,120000,1153,23538,0,19046 +101000,0,1,0,-1,-1,0,21362,0,19047 +101001,0,0,-1,-1,-1,0,23806,0,19445 +101002,0,0,0,-1,-1,0,23192,0,18707 +101003,0,1,0,-1,-1,0,21363,0,18739 +101004,0,1,0,-1,-1,0,13669,0,18716 +101005,0,1,0,-1,-1,0,29637,0,17753 +101006,0,1,0,-1,-1,0,23046,0,17588 +101007,1,1,0,-1,-1,0,14798,0,17588 +101008,1,0,-1,0,120000,1153,23472,0,19008 +101009,0,0,-1,-1,-1,0,23807,0,19446 +101010,0,0,-1,-1,-1,0,23808,0,19447 +101011,0,0,-1,-1,-1,0,23810,0,19449 +101012,0,1,0,-1,-1,0,7597,0,18868 +101013,0,1,0,-1,-1,0,13665,0,18690 +101014,0,1,0,-1,-1,0,17367,0,19131 +101015,1,1,0,-1,-1,0,21363,0,19131 +101016,0,2,0,-1,-1,0,18138,0,17068 +101017,0,1,0,-1,-1,0,21596,0,17907 +101018,1,1,0,-1,-1,0,13669,0,17907 +101019,2,0,0,0,120000,1091,22563,0,17907 +101020,0,0,-1,-1,-1,0,19719,0,15877 +101021,0,0,0,300000,-1,0,23273,0,18858 +101022,0,2,0,-1,-1,0,21992,0,17802 +101023,0,1,0,-1,-1,0,17280,0,19165 +101024,0,1,0,-1,-1,0,13669,0,19058 +101025,0,0,-1,-1,-1,0,22594,0,18170 +101026,0,0,-1,-1,-1,0,22597,0,18172 +101027,0,1,0,-1,-1,0,21440,0,18860 +101028,0,0,0,300000,-1,0,23276,0,18862 +101029,0,1,0,-1,-1,0,9336,0,19144 +101030,0,1,0,-1,-1,0,15809,0,19043 +101031,0,0,-1,-1,-1,0,23508,0,19027 +101032,0,0,-1,-1,-1,0,19564,0,15844 +101033,0,0,-1,-1,-1,0,23670,0,19216 +101034,0,1,0,-1,-1,0,7597,0,18520 +101035,1,1,0,-1,-1,0,14052,0,18520 +101036,0,0,-1,0,1000,11,10256,0,17222 +101037,0,1,0,-1,-1,0,9318,0,18723 +101038,0,1,0,-1,-1,0,13385,0,18495 +101039,0,0,-1,-1,-1,0,15857,0,12228 +101040,0,1,0,-1,-1,0,9345,0,17568 +101041,0,0,-1,-1,-1,0,22932,0,18517 +101042,0,0,-1,-1,-1,0,22934,0,18519 +101043,0,0,0,-1,-1,0,20513,0,16603 +101044,0,0,-1,-1,-1,0,21852,0,17683 +101045,0,0,-1,-1,-1,0,20387,0,16357 +101046,0,1,0,-1,-1,0,7598,0,16431 +101047,0,1,0,-1,-1,0,9346,0,16957 +101048,0,0,0,0,3000,330,22723,0,18242 +101049,0,0,-1,-1,-1,0,7324,0,4151 +101050,0,0,-1,0,0,0,566,0,1058 +101051,0,1,0,-1,-1,0,9346,0,18494 +101052,0,0,-1,0,60000,24,23063,0,18641 +101053,0,0,-1,-1,-1,0,22728,0,18252 +101054,0,0,-1,0,120000,4,22729,0,18253 +101055,0,0,-1,0,1000,11,22731,0,18254 +101056,0,0,0,0,3000,330,22724,0,18245 +101057,0,0,0,0,3000,330,22718,0,18247 +101058,0,1,0,-1,-1,0,9332,0,18379 +101059,0,0,-20,-1,-1,0,22563,0,18149 +101060,0,0,0,-1,-1,0,23811,0,19450 +101061,0,1,0,-1,-1,0,14089,0,19363 +101062,0,1,0,-1,-1,0,17871,0,18408 +101063,0,0,-1,-1,-1,0,22875,0,18418 +101064,0,1,0,-1,-1,0,21362,0,19096 +101065,0,0,-1,-1,-1,0,23671,0,19217 +101066,0,0,-1,-1,-1,0,23669,0,19218 +101067,0,0,-1,-1,-1,0,23672,0,19219 +101068,0,0,-1,-1,-1,0,11629,0,19221 +101069,0,0,-1,0,1000,11,1127,0,19224 +101070,0,0,-1,0,1000,11,1131,0,19225 +101071,0,0,-1,-1,-1,0,22733,0,18257 +101072,0,2,0,-1,-1,0,23604,0,19166 +101073,0,1,0,-1,-1,0,9408,0,18525 +101074,0,1,0,-1,-1,0,18384,0,18526 +101075,0,1,0,-1,-1,0,18035,0,18527 +101076,0,0,0,300000,-1,0,23276,0,18864 +101077,0,0,0,-1,-1,0,21957,0,17762 +101078,0,0,-1,-1,-1,0,22596,0,18173 +101079,0,2,0,-1,-1,0,22639,0,18202 +101080,0,2,0,-1,-1,0,22640,0,18203 +101081,0,1,0,-1,-1,0,7517,0,18813 +101082,0,0,-1,0,120000,4,4042,0,18839 +101083,0,1,0,-1,-1,0,14799,0,18878 +101084,0,0,0,-1,-1,0,23152,0,18670 +101085,0,1,0,-1,-1,0,9400,0,18672 +101086,0,1,0,-1,-1,0,7516,0,18674 +101087,0,0,-1,-1,-1,0,22593,0,18169 +101088,0,1,0,-1,-1,0,18050,0,17602 +101089,1,1,0,-1,-1,0,21362,0,17602 +101090,0,0,0,0,3000,330,22720,0,18244 +101091,0,2,0,-1,-1,0,21992,0,19019 +101092,0,1,0,-1,-1,0,9331,0,19048 +101093,0,0,-1,0,1000,11,10256,0,18045 +101094,0,1,0,-1,-1,0,13597,0,18337 +101095,0,1,0,-1,-1,0,21627,0,18743 +101096,0,1,0,-1,-1,0,13669,0,16906 +101097,0,0,-1,1000,-1,0,23065,0,18640 +101098,0,0,-1,-1,-1,0,23179,0,18685 +101099,0,1,0,-1,-1,0,15771,0,18822 +101100,0,0,-1,0,1000,11,1129,0,18635 +101101,1,0,-1,0,120000,1153,23476,0,19012 +101102,1,0,-1,0,120000,1153,23477,0,19013 +101103,0,0,-1,0,1000,11,23541,0,19061 +101104,0,1,0,-1,-1,0,18098,0,18758 +101105,0,1,0,-1,-1,0,9334,0,18759 +101106,0,1,0,-1,-1,0,7597,0,18828 +101107,1,1,0,-1,-1,0,9335,0,18828 +101108,0,1,0,-1,-1,0,15465,0,18465 +101109,0,0,-1,-1,-1,0,23054,0,18626 +101110,0,0,0,-1,-1,0,23232,0,18782 +101111,0,0,-1,0,120000,4,17549,0,13461 +101112,0,0,0,-1,-1,0,21957,0,17761 +101113,0,0,0,300000,0,0,23132,0,18639 +101114,0,1,0,-1,-1,0,20885,0,18760 +101115,0,1,0,-1,-1,0,9417,0,18458 +101116,0,1,0,-1,-1,0,23043,0,17620 +101117,1,1,0,-1,-1,0,14047,0,17620 +101118,0,1,0,0,0,0,9331,0,17772 +101119,0,1,0,-1,-1,0,9318,0,18469 +101120,1,1,0,-1,-1,0,21618,0,18469 +101121,0,0,-1,-1,-1,0,23254,0,18749 +101122,0,1,0,-1,-1,0,21361,0,18491 +101123,0,0,-1,0,0,150,23569,0,19068 +101124,0,1,0,-1,-1,0,23046,0,17564 +101125,0,0,-1,1000,-1,0,22725,0,18251 +101126,0,0,-1,0,0,0,23141,0,18666 +101127,0,1,0,-1,-1,0,17901,0,19105 +101128,0,1,0,-1,-1,0,7598,0,16543 +101129,1,1,0,-1,-1,0,15464,0,16543 +101130,0,1,0,-1,-1,0,14254,0,16476 +101131,1,1,0,-1,-1,0,18379,0,16476 +101132,0,1,0,-1,-1,0,9317,0,18208 +101133,0,1,0,-1,-1,0,22849,0,18346 +101134,0,1,0,-1,-1,0,7597,0,18866 +101135,1,1,0,-1,-1,0,9335,0,18866 +101136,0,1,0,-1,-1,0,7597,0,18867 +101137,0,1,0,-1,-1,0,7597,0,18869 +101138,0,0,0,-1,-1,0,23233,0,18783 +101139,0,1,0,-1,-1,0,21627,0,14545 +101140,0,1,0,0,-1,0,13598,0,18023 +101141,1,1,0,-1,-1,0,9413,0,18023 +101142,0,0,-1,-1,-1,0,10842,0,16113 +101143,0,0,-1,-1,-1,0,23030,0,18600 +101144,0,0,-1,-1,-1,0,21946,0,17724 +101145,0,1,0,-1,-1,0,9342,0,19129 +101146,0,1,0,-1,-1,0,9307,0,19130 +101147,0,1,0,-1,-1,0,18384,0,18390 +101148,0,0,0,0,3000,330,23228,0,18778 +101149,0,0,-1,0,1000,11,1129,0,18255 +101150,0,1,0,-1,-1,0,15693,0,18472 +101151,1,1,0,-1,-1,0,9408,0,18472 +101152,0,1,0,-1,-1,0,18039,0,19162 +101153,0,1,0,-1,-1,0,9335,0,18711 +101154,0,1,0,-1,-1,0,18032,0,18702 +101155,0,2,0,-1,-1,0,10351,0,8223 +101156,0,1,0,-1,-1,0,7518,0,18413 +101157,1,1,0,-1,-1,0,7597,0,16565 +101158,0,1,0,-1,-1,0,21626,0,19050 +101159,0,0,0,-1,-1,0,23679,0,19268 +101160,0,1,0,-1,-1,0,14127,0,19366 +101161,0,0,0,0,3000,330,23246,0,18791 +101162,0,0,0,0,3000,330,23251,0,18797 +101163,0,1,0,-1,-1,0,7597,0,16527 +101164,1,1,0,-1,-1,0,13669,0,16527 +101165,0,1,0,-1,-1,0,7598,0,18817 +101166,1,1,0,-1,-1,0,15810,0,18817 +101167,0,0,-1,-1,-1,0,9514,0,18160 +101168,1,1,0,-1,-1,0,7597,0,18713 +101169,2,1,0,-1,-1,0,21432,0,18713 +101170,0,1,0,-1,-1,0,23210,0,17082 +101171,0,0,0,300000,-1,0,23724,0,19340 +101172,0,1,0,-1,-1,0,7597,0,16939 +101173,0,1,0,-1,-1,0,7219,0,18722 +101174,0,0,0,30000,-1,0,23208,0,18752 +101175,0,1,0,-1,-1,0,7516,0,18754 +101176,0,1,0,-1,-1,0,14047,0,18721 +101177,0,1,0,-1,-1,0,15811,0,19389 +101178,0,0,-1,0,1000,11,21149,0,17198 +101179,0,1,0,-1,-1,0,18384,0,19135 +101180,0,1,0,-1,-1,0,9142,0,18394 +101181,0,1,0,-1,-1,0,9343,0,19086 +101182,0,1,0,-1,-1,0,9316,0,18459 +101183,0,1,0,-1,-1,0,15464,0,16480 +101184,0,0,-1,-1,-1,0,23130,0,18661 +101185,0,1,0,-1,-1,0,23731,0,19349 +101186,1,1,0,-1,-1,0,13385,0,19349 +101187,0,1,0,-1,-1,0,14799,0,18681 +101188,0,0,-1,0,0,0,22052,0,17828 +101189,0,1,0,-1,-1,0,22854,0,18355 +101190,0,1,0,-1,-1,0,18030,0,18523 +101191,0,1,0,-1,-1,0,7597,0,18524 +101192,0,1,0,-1,-1,0,20885,0,17909 +101193,1,1,0,-1,-1,0,13670,0,17909 +101194,2,0,0,0,1000,1091,22563,0,17909 +101195,0,1,0,-1,-1,0,22589,0,18164 +101196,0,1,0,-1,-1,0,21601,0,18298 +101197,0,0,-1,0,1000,59,22734,0,18300 +101198,0,1,0,-1,-1,0,9415,0,18301 +101199,0,0,0,-1,-1,0,22567,0,18159 +101200,0,0,-1,0,0,0,22089,0,17882 +101201,0,1,0,-1,-1,0,18985,0,18345 +101202,0,0,-1,0,0,0,23143,0,18668 +101203,0,1,0,-1,-1,0,23172,0,18673 +101204,0,1,0,-1,-1,0,17819,0,18676 +101205,0,1,0,-1,-1,0,15464,0,18812 +101206,0,1,0,-1,-1,0,7597,0,18830 +101207,0,1,0,-1,-1,0,18378,0,18468 +101208,0,1,0,-1,-1,0,18384,0,18317 +101209,0,1,0,-1,-1,0,13601,0,18338 +101210,0,1,0,-1,-1,0,21626,0,16948 +101211,1,1,0,-1,-1,0,9398,0,16948 +101212,2,1,0,-1,-1,0,7681,0,16948 +101213,0,1,0,-1,-1,0,23217,0,16555 +101214,1,1,0,-1,-1,0,9417,0,16555 +101215,0,1,0,-1,-1,0,18054,0,17593 +101216,0,0,-1,0,300000,4,21395,0,17351 +101217,0,1,0,-1,-1,0,9345,0,17610 +101218,0,2,0,-1,-1,0,21140,0,17075 +101219,0,1,0,-1,-1,0,22836,0,18310 +101220,0,1,0,-1,-1,0,21629,0,18311 +101221,0,0,-1,-1,-1,0,21567,0,17412 +101222,0,1,0,-1,-1,0,18050,0,17624 +101223,1,1,0,-1,-1,0,21362,0,17624 +101224,0,1,0,-1,-1,0,21600,0,17903 +101225,1,1,0,-1,-1,0,13669,0,17903 +101226,2,0,0,0,120000,1091,22564,0,17903 +101227,0,0,-1,-1,-1,0,11009,0,18288 +101228,0,0,-1,-1,-1,0,23086,0,18650 +101229,0,0,-1,1000,-1,0,23135,0,18662 +101230,0,1,0,-1,-1,0,18029,0,18391 +101231,0,1,0,-1,-1,0,21619,0,16854 +101232,1,1,0,-1,-1,0,9408,0,16854 +101233,0,1,0,-1,-1,0,21434,0,18282 +101234,1,1,0,-1,-1,0,15464,0,18282 +101235,0,0,-1,-1,-1,0,22779,0,18283 +101236,0,1,0,-1,-1,0,17902,0,14340 +101237,0,1,0,-1,-1,0,15464,0,18500 +101238,0,0,-1,-1,-1,0,21884,0,17693 +101239,0,1,0,-1,-1,0,21432,0,18764 +101240,0,1,0,-1,-1,0,21432,0,18765 +101241,0,0,0,0,3000,330,23221,0,18766 +101242,0,2,0,-1,-1,0,18276,0,13984 +101243,0,0,-10,300000,120000,1153,23064,0,18637 +101244,0,0,0,300000,0,0,23097,0,18638 +101245,0,1,0,-1,-1,0,18384,0,18496 +101246,0,0,-1,-1,-1,0,23098,0,18654 +101247,0,1,0,-1,-1,0,9343,0,18745 +101248,0,1,0,-1,-1,0,7597,0,18204 +101249,0,1,0,-1,-1,0,21629,0,18757 +101250,0,1,0,-1,-1,0,18033,0,19140 +101251,0,0,0,180000,-1,0,23595,0,19141 +101252,0,1,0,-1,-1,0,9416,0,19142 +101253,0,1,0,-1,-1,0,7597,0,19143 +101254,1,1,0,-1,-1,0,15813,0,19143 +101255,0,0,3,-1,-1,0,19699,0,15922 +101256,0,0,-1,-1,-1,0,20322,0,16326 +101257,0,0,-1,-1,-1,0,19210,0,15764 +101258,0,0,0,0,3000,330,23229,0,18777 +101259,0,0,-1,-1,-1,0,21851,0,17682 +101260,0,1,0,0,0,0,7711,0,17111 +101261,0,1,0,-1,-1,0,9346,0,18102 +101262,0,1,0,-1,-1,0,15464,0,18349 +101263,0,1,0,-1,-1,0,7516,0,18351 +101264,0,1,0,-1,-1,0,21626,0,18536 +101265,0,0,0,-1,-1,0,21960,0,17757 +101266,0,0,-1,-1,-1,0,17030,0,12832 +101267,0,0,0,0,3000,330,23222,0,18774 +101268,0,1,0,-1,-1,0,9406,0,17721 +101269,1,1,0,-1,-1,0,7696,0,17721 +101270,0,0,-1,0,0,0,22100,0,17893 +101271,0,1,0,-1,-1,0,21346,0,17905 +101272,1,0,0,0,120000,1091,22563,0,17905 +101273,0,1,0,-1,-1,0,21346,0,17906 +101274,1,1,0,-1,-1,0,13669,0,17906 +101275,2,0,0,0,120000,1091,22563,0,17906 +101276,0,0,0,-1,-1,0,23231,0,18779 +101277,0,0,0,-1,-1,0,23231,0,18780 +101278,0,2,0,0,-1,0,21951,0,17943 +101279,0,0,-1,-1,-1,0,23007,0,18592 +101280,0,1,0,-1,-1,0,21363,0,18312 +101281,0,1,0,-1,-1,0,13670,0,18313 +101282,0,1,0,-1,-1,0,21626,0,18314 +101283,0,1,0,-1,-1,0,9345,0,17598 +101284,0,1,0,-1,-1,0,14254,0,17599 +101285,0,1,0,-1,-1,0,14047,0,17618 +101286,0,1,0,-1,-1,0,23217,0,16397 +101287,0,1,0,-1,-1,0,7517,0,13245 +101288,0,2,0,-1,-1,0,22850,0,18348 +101289,0,1,0,-1,-1,0,14630,0,16120 +101290,0,1,0,-1,-1,0,9317,0,15061 +101291,0,0,0,-1,-1,0,12686,0,17122 +101292,0,1,0,-1,-1,0,15715,0,17580 +101293,0,1,0,-1,-1,0,7597,0,18530 +101294,0,1,0,-1,-1,0,13387,0,18531 +101295,0,1,0,-1,-1,0,9396,0,16830 +101296,0,0,-1,-1,-1,0,17584,0,13478 +101297,0,1,0,-1,-1,0,13669,0,18521 +101298,0,1,0,-1,-1,0,7597,0,18366 +101299,0,0,-1,-1,-1,0,17605,0,13500 +101300,0,0,-1,0,120000,4,17530,0,13443 +101301,0,0,0,0,3000,330,17461,0,13328 +101302,0,0,-1,1000,-1,0,22756,0,18262 +101303,0,1,0,-1,-1,0,21365,0,18263 +101304,0,0,-1,-1,-1,0,22758,0,18264 +101305,0,0,-1,-1,-1,0,22874,0,18417 +101306,0,0,0,-1,-1,0,19772,0,15996 +101307,0,1,0,-1,-1,0,15715,0,17590 +101308,0,1,0,-1,-1,0,23157,0,16403 +101309,0,1,0,-1,-1,0,9329,0,18463 +101310,0,1,0,-1,-1,0,21442,0,18508 +101311,0,0,0,-1,-1,0,3366,0,18249 +101312,0,1,0,-1,-1,0,15464,0,16937 +101313,0,0,-1,-1,-1,0,21288,0,17262 +101314,0,1,0,-1,-1,0,18379,0,16943 +101315,0,1,0,-1,-1,0,18384,0,16944 +101316,1,1,0,-1,-1,0,9315,0,16944 +101317,0,0,-1,0,0,0,22053,0,17829 +101318,0,0,-1,0,0,0,22054,0,17830 +101319,0,1,0,-1,-1,0,21079,0,17142 +101320,0,1,0,-1,-1,0,14254,0,17611 +101321,0,0,-1,-1,-1,0,11008,0,18287 +101322,0,0,-1,-1,-1,0,22840,0,18329 +101323,0,0,-1,-1,-1,0,22844,0,18330 +101324,0,1,0,-1,-1,0,15464,0,16938 +101325,1,1,0,-1,-1,0,7597,0,16938 +101326,0,1,0,-1,-1,0,9345,0,17572 +101327,0,1,0,-1,-1,0,21362,0,13244 +101328,0,1,0,-1,-1,0,18050,0,19147 +101329,0,1,0,-1,-1,0,13384,0,18493 +101330,0,0,0,-1,-1,0,21425,0,17364 +101331,0,1,0,-1,-1,0,9345,0,17612 +101332,0,0,-1,0,0,0,23142,0,18667 +101333,0,1,0,-1,-1,0,23266,0,18815 +101334,1,1,0,-1,-1,0,7598,0,18715 +101335,2,1,0,-1,-1,0,14097,0,18715 +101336,0,1,0,-1,-1,0,13669,0,19052 +101337,0,0,0,0,3000,330,23227,0,18776 +101338,0,0,-1,-1,-1,0,3366,0,18266 +101339,0,0,-1,-1,-1,0,22762,0,18267 +101340,0,2,0,-1,-1,0,18796,0,870 +101341,0,0,0,0,3000,330,6654,0,16343 +101342,0,0,0,-1,-1,0,23853,0,17162 +101343,1,2,0,-1,-1,0,21162,0,17182 +101344,2,1,0,-1,-1,0,21142,0,17182 +101345,0,0,0,30000,-1,0,21127,0,17191 +101346,1,0,-1,0,120000,1153,23473,0,19009 +101347,1,0,-1,0,120000,1153,23474,0,19010 +101348,0,0,-1,0,1800000,831,20765,0,16896 +101349,0,1,0,-1,-1,0,18384,0,16897 +101350,1,1,0,-1,-1,0,18032,0,16897 +101351,0,1,0,-1,-1,0,15807,0,16396 +101352,0,0,-1,-1,-1,0,23084,0,18649 +101353,0,1,0,-1,-1,0,13665,0,18502 +101354,1,1,0,-1,-1,0,13385,0,18502 +101355,0,0,0,-1,-1,0,23012,0,18597 +101356,0,0,0,-1,-1,0,23013,0,18598 +101357,0,1,0,0,-1,0,9343,0,18048 +101358,0,1,0,0,0,0,21620,0,18103 +101359,1,1,0,-1,-1,0,18384,0,18103 +101360,1,1,0,-1,-1,0,21629,0,18104 +101361,0,1,0,-1,-1,0,19307,0,13347 +101362,0,1,0,-1,-1,0,9335,0,17736 +101363,0,2,0,-1,-1,0,21952,0,17738 +101364,0,1,0,-1,-1,0,14027,0,18375 +101365,0,1,0,-1,-1,0,17371,0,18470 +101366,0,1,0,-1,-1,0,15809,0,18544 +101367,0,1,0,-1,-1,0,18382,0,19145 +101368,1,1,0,-1,-1,0,14047,0,19145 +101369,0,0,-1,-1,-1,0,9218,0,7452 +101370,0,0,-1,-1,-1,1071,23851,0,19462 +101371,0,1,0,-1,-1,0,21445,0,18473 +101372,0,1,0,-1,-1,0,9345,0,18475 +101373,0,1,0,-1,-1,0,9417,0,13398 +101374,0,1,0,-1,-1,0,17367,0,17625 +101375,1,1,0,-1,-1,0,21362,0,17625 +101376,0,0,-1,-1,-1,0,21794,0,17626 +101377,0,0,-1,-1,-1,0,21358,0,17333 +101378,0,0,-1,0,1000,11,433,0,17344 +101379,0,1,0,-1,-1,0,7597,0,16940 +101380,0,1,0,-1,-1,0,22778,0,16484 +101381,1,1,0,-1,-1,0,7597,0,16484 +101382,0,1,0,-1,-1,0,7597,0,18420 +101383,0,1,0,-1,-1,0,9346,0,18378 +101384,0,0,-1,-1,-1,0,19193,0,15751 +101385,0,1,0,-1,-1,0,21618,0,17718 +101386,0,1,0,-1,-1,0,18384,0,17719 +101387,0,0,-1,-1,-1,0,21944,0,17722 +101388,0,1,0,-1,-1,0,20885,0,17904 +101389,1,1,0,-1,-1,0,13670,0,17904 +101390,2,0,0,0,1000,1091,22564,0,17904 +101391,0,1,0,-1,-1,0,15717,0,18392 +101392,0,1,0,-1,-1,0,7597,0,18393 +101393,0,0,-1,-1,-1,0,22790,0,18284 +101394,0,0,0,0,3000,330,23219,0,18767 +101395,0,1,0,-1,-1,0,7597,0,18421 +101396,0,1,0,-1,-1,0,17867,0,18450 +101397,0,0,0,-1,-1,0,23530,0,19054 +101398,0,1,0,-1,-1,0,14248,0,16452 +101399,1,1,0,-1,-1,0,7597,0,16452 +101400,0,1,0,-1,-1,0,15464,0,18698 +101401,0,1,0,-1,-1,0,9330,0,19097 +101402,0,1,0,-1,-1,0,28539,0,16463 +101403,1,1,0,-1,-1,0,7597,0,16463 +101404,0,0,-20,-1,-1,0,22564,0,18150 +101405,0,1,0,-1,-1,0,17367,0,17581 +101406,0,0,-1,0,1800000,831,20764,0,16895 +101407,0,0,-1,-1,-1,0,20067,0,16215 +101408,0,0,-1,-1,-1,0,20068,0,16216 +101409,0,0,0,0,3000,330,23220,0,18768 +101410,0,0,0,0,3000,330,23225,0,18772 +101411,0,1,0,-1,-1,0,13669,0,18342 +101412,0,1,0,-1,-1,0,9417,0,17594 +101413,0,1,0,-1,-1,0,9345,0,17566 +101414,0,0,-1,0,-1,0,8679,0,6947 +101415,0,1,0,-1,-1,0,9415,0,16816 +101416,0,0,-1,0,60000,24,23000,0,18588 +101417,0,0,0,-1,-1,0,23015,0,18601 +101418,0,1,0,-1,-1,0,21348,0,18602 +101419,0,0,0,0,3000,330,23240,0,18785 +101420,0,0,-1,-1,-1,0,22562,0,18152 +101421,0,0,0,-1,-1,0,22567,0,18153 +101422,0,1,0,-1,-1,0,9140,0,7949 +101423,0,1,0,-1,-1,0,9304,0,19108 +101424,0,1,0,-1,-1,0,9417,0,19109 +101425,0,0,-1,0,300000,4,21393,0,17348 +101426,0,0,-1,0,1800000,951,21538,0,17363 +101427,0,0,0,0,2700000,951,21565,0,17410 +101428,0,1,0,-1,-1,0,7570,0,18296 +101429,1,1,0,-1,-1,0,22811,0,18296 +101430,2,1,0,-1,-1,0,7582,0,18296 +101431,0,0,-1,900000,-1,0,22792,0,18297 +101432,0,1,0,-1,-1,0,7597,0,19167 +101433,0,1,0,-1,-1,0,18384,0,16441 +101434,1,1,0,-1,-1,0,18050,0,16441 +101435,0,0,-1,0,0,0,30229,0,18599 +101436,0,1,0,-1,-1,0,21629,0,18477 +101437,0,0,0,0,3000,330,23239,0,18787 +101438,0,0,0,0,3000,330,23241,0,18788 +101439,0,0,0,-1,-1,0,20531,0,16654 +101440,0,0,-1,-1,-1,0,20435,0,16390 +101441,0,1,0,-1,-1,0,7597,0,16942 +101442,0,1,0,-1,-1,0,18384,0,17103 +101443,1,1,0,-1,-1,0,18056,0,17103 +101444,0,1,0,0,0,0,13669,0,17065 +101445,1,1,0,-1,-1,0,13387,0,17065 +101446,0,0,-1,-1,-1,0,22598,0,18171 +101447,0,1,0,-1,-1,0,9343,0,18321 +101448,0,1,0,-1,-1,0,21600,0,17908 +101449,1,1,0,-1,-1,0,13669,0,17908 +101450,2,0,0,0,120000,1091,22563,0,17908 +101451,0,1,0,-1,-1,0,23101,0,18646 +101452,0,0,0,30000,-1,0,23359,0,18904 +101453,0,0,0,0,1800000,1160,23041,0,18608 +101454,1,1,0,-1,-1,0,23236,0,18608 +101455,2,1,0,-1,-1,0,23264,0,18608 +101456,0,1,0,-1,-1,0,7597,0,18380 +101457,0,1,0,-1,-1,0,13385,0,18381 +101458,0,1,0,-1,-1,0,21347,0,18382 +101459,0,2,0,-1,-1,0,17352,0,13246 +101460,0,1,0,-1,-1,0,7597,0,17072 +101461,0,1,0,-1,-1,0,13390,0,18503 +101462,0,1,0,-1,-1,0,21185,0,17104 +101463,1,1,0,-1,-1,0,15806,0,17104 +101464,0,1,0,-1,-1,0,21363,0,17105 +101465,1,1,0,-1,-1,0,15715,0,17105 +101466,0,1,0,-1,-1,0,21365,0,17106 +101467,0,1,0,-1,-1,0,23593,0,19132 +101468,0,1,0,-1,-1,0,9335,0,18451 +101469,0,0,-1,-1,-1,0,22760,0,18265 +101470,0,0,-1,-1,-1,0,18669,0,14639 +101471,0,1,0,-1,-1,0,9305,0,18693 +101472,0,1,0,-1,-1,0,23181,0,18696 +101473,0,1,0,-1,-1,0,21618,0,18697 +101474,0,0,-1,-1,-1,0,22481,0,18046 +101475,0,0,0,-1,-1,0,21391,0,17347 +101476,0,0,-1,0,300000,4,21394,0,17349 +101477,0,0,0,180000,0,0,22891,0,18438 +101478,0,0,0,-1,-1,0,22567,0,18155 +101479,0,1,0,-1,-1,0,21347,0,16932 +101480,1,1,0,-1,-1,0,14047,0,16932 +101481,0,1,0,-1,-1,0,7597,0,18505 +101482,1,1,0,-1,-1,0,7576,0,18505 +101483,0,1,0,-1,-1,0,9315,0,18507 +101484,0,1,0,-1,-1,0,14798,0,16915 +101485,1,1,0,-1,-1,0,18384,0,16915 +101486,0,1,0,-1,-1,0,9334,0,16525 +101487,1,1,0,-1,-1,0,7597,0,16525 +101488,0,1,0,-1,-1,0,9335,0,18484 +101489,0,0,0,0,120000,1091,22563,0,17690 +101490,0,0,0,0,120000,1091,22564,0,17691 +101491,0,1,0,-1,-1,0,7597,0,16430 +101492,0,1,0,-1,-1,0,14248,0,16437 +101493,1,1,0,-1,-1,0,23727,0,16437 +101494,0,1,0,0,0,0,13669,0,18205 +101495,1,1,0,-1,-1,0,7597,0,18205 +101496,0,0,0,0,3000,330,16084,0,8586 +101497,0,1,0,-1,-1,0,20886,0,18326 +101498,0,1,0,-1,-1,0,21626,0,18327 +101499,1,1,0,-1,-1,0,9317,0,18327 +101500,0,0,0,0,3000,330,23223,0,18773 +101501,0,0,-1,-1,-1,0,20072,0,16220 +101502,0,0,-1,-1,-1,0,20073,0,16221 +101503,0,0,-1,-1,-1,0,20074,0,16222 +101504,0,1,0,-1,-1,0,22852,0,18352 +101505,0,1,0,-1,-1,0,18384,0,18353 +101506,0,1,0,-1,-1,0,22855,0,18354 +101507,0,1,0,-1,-1,0,9417,0,18497 +101508,0,0,-1,-1,-1,0,22903,0,18487 +101509,0,0,0,0,3000,330,22717,0,18241 +101510,0,1,0,-1,-1,0,21432,0,18763 +101511,0,0,-1,-1,-1,0,22754,0,18260 +101512,0,1,0,-1,-1,0,15715,0,18322 +101513,0,0,0,-1,-1,0,23531,0,19055 +101514,0,1,0,-1,-1,0,9416,0,14631 +101515,0,1,0,-1,-1,0,9331,0,19120 +101516,1,1,0,-1,-1,0,15464,0,19120 +101517,0,0,-1,-1,-1,0,20402,0,16374 +101518,0,1,0,-1,-1,0,22988,0,18582 +101519,1,0,0,-1,-1,0,22989,0,18582 +101520,0,0,-1,-1,-1,0,24096,0,19766 +101521,0,0,-1,-1,-1,0,13714,0,11147 +101522,0,0,0,-1,-1,0,23678,0,19265 +101523,0,1,0,-1,-1,0,21624,0,16859 +101524,1,1,0,-1,-1,0,9406,0,16859 +101525,0,1,0,-1,-1,0,13667,0,19354 +101526,0,1,0,-1,-1,0,7598,0,19358 +101527,0,1,0,-1,-1,0,21631,0,19373 +101528,0,1,0,-1,-1,0,9335,0,19584 +101529,0,0,-1,0,3000,79,24361,0,20004 +101530,0,0,-1,-1,-1,0,24373,0,20014 +101531,0,1,0,-1,-1,0,7597,0,19898 +101532,1,1,0,-1,-1,0,9331,0,19898 +101533,0,1,0,-1,-1,0,18030,0,19899 +101534,0,0,0,-1,-1,0,23677,0,19230 +101535,0,0,0,-1,-1,0,23677,0,19231 +101536,0,0,0,-1,-1,0,23677,0,19233 +101537,0,0,0,-1,-1,0,23677,0,19235 +101538,0,1,0,-1,-1,0,9346,0,19861 +101539,0,1,0,-1,-1,0,9316,0,19863 +101540,0,0,0,-1,-1,0,23062,0,18630 +101541,0,0,-1,0,0,0,23144,0,18669 +101542,0,2,0,-1,-1,0,13442,0,18671 +101543,0,1,0,-1,-1,0,14047,0,18467 +101544,0,1,0,-1,-1,0,9406,0,19594 +101545,1,1,0,-1,-1,0,24191,0,19594 +101546,0,1,0,-1,-1,0,15714,0,19595 +101547,0,1,0,-1,-1,0,14799,0,19596 +101548,0,1,0,-1,-1,0,7598,0,19834 +101549,1,1,0,-1,-1,0,15810,0,19834 +101550,0,1,0,-1,-1,0,9417,0,19849 +101551,0,1,0,-1,-1,0,9416,0,18740 +101552,0,0,-1,-1,-1,0,23204,0,18746 +101553,0,0,-1,0,1000,11,24410,0,20064 +101554,0,0,-1,0,1000,11,1129,0,19306 +101555,0,0,-1,600000,120000,1153,23004,0,18645 +101556,0,0,-1,-1,-1,0,23083,0,18647 +101557,0,0,-1,-1,-1,0,23085,0,18648 +101558,0,0,-1,-1,-1,0,23088,0,18651 +101559,0,1,0,-1,-1,0,15821,0,19854 +101560,0,2,0,-1,-1,0,21949,0,17730 +101561,0,0,0,-1,-1,0,21957,0,17763 +101562,0,1,0,-1,-1,0,14047,0,18471 +101563,0,0,0,-1,-1,0,23677,0,19232 +101564,0,0,0,-1,-1,0,23679,0,19272 +101565,0,0,0,-1,-1,0,23679,0,19273 +101566,0,0,0,0,3000,330,23510,0,19030 +101567,0,1,0,-1,-1,0,23990,0,20051 +101568,0,1,0,-1,-1,0,17746,0,20255 +101569,0,0,-5,1500,-1,0,24717,0,20397 +101570,0,0,-5,1500,-1,0,24718,0,20398 +101571,0,1,0,-1,-1,0,23990,0,20159 +101572,1,1,0,-1,-1,0,9417,0,20159 +101573,0,0,0,120000,10000,1141,24353,0,19992 +101574,0,1,0,-1,-1,0,21365,0,18803 +101575,0,0,0,-1,-1,0,22990,0,18583 +101576,0,0,-1,1000,-1,0,24377,0,19708 +101577,0,1,0,-1,-1,0,9345,0,19964 +101578,1,1,0,-1,-1,0,21627,0,19964 +101579,0,0,-1,1000,-1,0,24325,0,19974 +101580,0,0,0,0,3000,330,23248,0,18795 +101581,0,1,0,-1,-1,0,23990,0,20048 +101582,0,0,0,0,3000,330,24576,0,20221 +101583,0,0,-1,0,1000,11,24411,0,20222 +101584,0,1,0,-1,-1,0,21618,0,20056 +101585,0,0,0,-1,-1,0,23430,0,18967 +101586,0,0,-1,-1,-1,0,23716,0,19331 +101587,0,0,-1,-1,-1,0,23717,0,19332 +101588,0,0,-1,-1,-1,0,23718,0,19333 +101589,0,0,0,120000,10000,1141,23721,0,19336 +101590,0,1,0,-1,-1,0,21440,0,19361 +101591,0,1,0,-1,-1,0,17493,0,19379 +101592,1,1,0,-1,-1,0,23729,0,19379 +101593,0,0,0,0,1800000,1051,22999,0,18587 +101594,0,0,0,-1,-1,0,23058,0,18627 +101595,0,1,0,-1,-1,0,14254,0,19929 +101596,1,1,0,-1,-1,0,23727,0,19929 +101597,0,0,0,0,3000,330,23250,0,18796 +101598,0,1,0,-1,-1,0,21636,0,18800 +101599,1,1,0,-1,-1,0,23213,0,18800 +101600,0,0,0,0,1800000,1031,23041,0,18801 +101601,1,1,0,-1,-1,0,23236,0,18801 +101602,0,0,-1,-1,-1,0,20396,0,16366 +101603,0,1,0,-1,-1,0,18384,0,16491 +101604,0,1,0,-1,-1,0,9417,0,16492 +101605,0,1,0,-1,-1,0,17371,0,18682 +101606,0,0,0,-1,-1,0,23678,0,19261 +101607,0,0,0,-1,-1,0,23678,0,19262 +101608,0,0,0,-1,-1,0,23678,0,19263 +101609,0,1,0,-1,-1,0,9417,0,19603 +101610,0,1,0,-1,-1,0,14803,0,20137 +101611,1,1,0,-1,-1,0,7597,0,20137 +101612,0,1,0,-1,-1,0,15465,0,20138 +101613,1,1,0,-1,-1,0,21607,0,20138 +101614,0,1,0,-1,-1,0,9336,0,20060 +101615,0,1,0,-1,-1,0,9417,0,20061 +101616,1,1,0,-1,-1,0,21618,0,20061 +101617,0,0,-1,0,1000,11,24411,0,20062 +101618,0,0,-1,0,1000,11,24409,0,20063 +101619,0,1,0,-1,-1,0,18052,0,18814 +101620,0,1,0,-1,-1,0,15806,0,20068 +101621,0,1,0,-1,-1,0,18382,0,20069 +101622,1,1,0,-1,-1,0,18057,0,20069 +101623,0,1,0,-1,-1,0,14798,0,20070 +101624,1,1,0,-1,-1,0,18384,0,20070 +101625,0,0,0,180000,180000,1155,23991,0,20071 +101626,0,1,0,-1,-1,0,15806,0,20073 +101627,0,0,-1,0,1000,11,5007,0,20074 +101628,0,0,-1,-1,-1,0,24419,0,20075 +101629,0,0,-5,1500,-1,0,24719,0,20399 +101630,0,0,0,360000,60000,1141,363880,0,20130 +101631,0,0,-1,-1,500,1951,13497,0,10998 +101632,0,0,-1,-1,-1,0,24282,0,19818 +101633,0,1,0,-1,-1,0,18384,0,20133 +101634,1,1,0,-1,-1,0,7597,0,20133 +101635,2,1,0,-1,-1,0,23727,0,20133 +101636,0,1,0,-1,-1,0,18382,0,20134 +101637,1,1,0,-1,-1,0,7597,0,20134 +101638,0,1,0,-1,-1,0,23727,0,20033 +101639,1,1,0,-1,-1,0,14054,0,20033 +101640,0,0,0,180000,10000,1141,15712,0,11905 +101641,0,0,0,-1,-1,0,16872,0,12789 +101642,0,1,0,-1,-1,0,15464,0,13018 +101643,0,1,0,-1,-1,0,18382,0,19401 +101644,1,1,0,-1,-1,0,23727,0,19401 +101645,0,0,0,0,3000,330,23252,0,18798 +101646,0,1,0,-1,-1,0,7680,0,19592 +101647,0,1,0,-1,-1,0,23516,0,19321 +101648,0,1,0,-1,-1,0,23674,0,19226 +101649,0,1,0,-1,-1,0,15464,0,19687 +101650,0,1,0,-1,-1,0,18052,0,19828 +101651,1,1,0,-1,-1,0,18384,0,19828 +101652,0,0,-1,-1,-1,0,11007,0,19222 +101653,0,0,-1,-1,-1,0,17048,0,12848 +101654,0,1,0,-1,-1,0,23990,0,20160 +101655,1,1,0,-1,-1,0,9415,0,20160 +101656,0,1,0,-1,-1,0,23990,0,20161 +101657,1,1,0,-1,-1,0,9398,0,20161 +101658,0,1,0,-1,-1,0,23990,0,20162 +101659,1,1,0,-1,-1,0,9397,0,20162 +101660,0,0,0,180000,0,0,24268,0,19930 +101661,0,0,-1,-1,-1,0,24264,0,19931 +101662,0,0,-1,0,3000,79,24382,0,20079 +101663,0,0,-1,-1,-1,0,24372,0,20013 +101664,0,1,0,-1,-1,0,18050,0,19315 +101665,0,1,0,-1,-1,0,23990,0,20199 +101666,0,1,0,-1,-1,0,23990,0,20200 +101667,0,1,0,-1,-1,0,13665,0,19351 +101668,1,1,0,-1,-1,0,14121,0,19351 +101669,0,2,0,-1,-1,0,21140,0,19353 +101670,0,0,-1,0,1000,59,23698,0,19318 +101671,0,1,0,-1,-1,0,21626,0,19920 +101672,0,1,0,-1,-1,0,7597,0,19325 +101673,1,1,0,-1,-1,0,15464,0,19325 +101674,2,1,0,-1,-1,0,9329,0,19325 +101675,0,1,0,-1,-1,0,14712,0,16156 +101676,0,0,-1,0,1000,11,24005,0,19696 +101677,0,1,0,-1,-1,0,23990,0,20154 +101678,0,1,0,-1,-1,0,23990,0,20155 +101679,0,0,-1,-1,-1,0,24164,0,19787 +101680,0,1,0,-1,-1,0,15808,0,19582 +101681,0,1,0,-1,-1,0,9343,0,19604 +101682,0,1,0,-1,-1,0,24433,0,19613 +101683,0,1,0,-1,-1,0,7597,0,20089 +101684,1,1,0,-1,-1,0,9139,0,20089 +101685,0,1,0,-1,-1,0,7597,0,20124 +101686,0,1,0,3600000,600000,0,7598,0,19690 +101687,0,1,0,-1,-1,0,23990,0,20201 +101688,0,1,0,-1,-1,0,7597,0,20205 +101689,0,1,0,-1,-1,0,23990,0,20208 +101690,0,0,-1,-1,-1,0,23711,0,19326 +101691,0,1,0,-1,-1,0,9406,0,19528 +101692,0,1,0,-1,-1,0,15464,0,19907 +101693,0,0,-1,0,0,0,22096,0,17889 +101694,0,0,0,-1,-1,0,23680,0,19283 +101695,0,1,0,-1,-1,0,7597,0,20135 +101696,1,1,0,-1,-1,0,15464,0,20135 +101697,0,0,-1,-1,-1,0,24194,0,19850 +101698,0,0,-1,-1,-1,0,24195,0,19851 +101699,0,1,0,-1,-1,0,9336,0,19853 +101700,0,0,-1,0,0,150,24413,0,20237 +101701,0,0,-1,0,0,150,24412,0,20244 +101702,0,0,-1,0,1000,11,24707,0,20388 +101703,0,0,-1,0,1000,11,24707,0,20389 +101704,0,0,-1,-1,-1,0,5311,0,5162 +101705,0,1,0,-1,-1,0,7597,0,13962 +101706,1,1,0,-1,-1,0,13669,0,13962 +101707,0,0,-1,0,3000,79,24383,0,20081 +101708,0,1,0,-1,-1,0,18035,0,19890 +101709,1,1,0,-1,-1,0,18384,0,19890 +101710,0,1,0,-1,-1,0,9346,0,19891 +101711,1,1,0,-1,-1,0,23727,0,19891 +101712,0,1,0,-1,-1,0,23727,0,19893 +101713,1,1,0,-1,-1,0,9416,0,19893 +101714,0,0,-1,-1,-1,0,24126,0,19769 +101715,0,0,-1,-1,-1,0,24127,0,19770 +101716,1,1,0,-1,-1,0,15465,0,20136 +101717,0,1,0,-1,-1,0,15810,0,19900 +101718,1,1,0,-1,-1,0,7597,0,19900 +101719,0,1,0,-1,-1,0,24595,0,19903 +101720,1,1,0,-1,-1,0,18379,0,19903 +101721,0,1,0,-1,-1,0,13384,0,19577 +101722,1,1,0,-1,-1,0,13675,0,19577 +101723,2,1,0,-1,-1,0,24428,0,19577 +101724,0,1,0,-1,-1,0,24432,0,19621 +101725,0,1,0,-1,-1,0,7597,0,19887 +101726,0,1,0,-1,-1,0,15812,0,14638 +101727,0,1,0,-1,-1,0,20959,0,18532 +101728,0,1,0,-1,-1,0,18384,0,18534 +101729,1,1,0,-1,-1,0,14047,0,18534 +101730,0,0,-1,0,0,0,22105,0,17898 +101731,0,0,0,0,3000,330,22721,0,18246 +101732,0,1,0,-1,-1,0,24362,0,20005 +101733,0,1,0,-1,-1,0,23688,0,19288 +101734,0,1,0,-1,-1,0,23990,0,20156 +101735,0,1,0,-1,-1,0,14254,0,19397 +101736,1,1,0,-1,-1,0,21365,0,19397 +101737,0,1,0,-1,-1,0,14056,0,19398 +101738,0,0,-1,-1,-1,0,23634,0,19203 +101739,0,0,-1,-1,-1,0,24400,0,20040 +101740,0,0,-1,0,1000,11,24005,0,19995 +101741,0,0,-1,0,1000,11,24005,0,19996 +101742,0,2,0,-1,-1,0,13318,0,13016 +101743,0,0,-1,120000,120000,79,24417,0,20080 +101744,0,1,0,-1,-1,0,9416,0,20164 +101745,0,1,0,-1,-1,0,18384,0,20165 +101746,1,1,0,-1,-1,0,9415,0,20165 +101747,0,1,0,-1,-1,0,9343,0,20166 +101748,0,1,0,-1,-1,0,23990,0,20157 +101749,0,1,0,-1,-1,0,9417,0,18747 +101750,1,1,0,-1,-1,0,14049,0,18747 +101751,2,1,0,-1,-1,0,9405,0,18747 +101752,0,1,0,-1,-1,0,9294,0,18762 +101753,0,1,0,-1,-1,0,15696,0,19312 +101754,1,1,0,-1,-1,0,21625,0,19312 +101755,0,1,0,-1,-1,0,23727,0,19684 +101756,1,1,0,-1,-1,0,14254,0,19684 +101757,0,0,-1,-1,-1,0,24358,0,20000 +101758,0,0,-1,-1,-1,0,24359,0,20001 +101759,0,0,-1,0,120000,4,24360,0,20002 +101760,0,2,0,-1,-1,0,23719,0,19334 +101761,0,0,-1,-1,-1,0,24165,0,19788 +101762,0,1,0,-1,-1,0,7540,0,19921 +101763,0,0,0,180000,20000,1141,24499,0,19956 +101764,0,1,0,-1,-1,0,9343,0,19846 +101765,0,0,-1,-1,-1,0,24420,0,20078 +101766,0,1,0,-1,-1,0,15464,0,19685 +101767,0,0,0,1000,-1,0,5166,0,5059 +101768,0,0,-1,-1,-1,0,12145,0,10313 +101769,0,0,-1,-1,-1,0,12183,0,10321 +101770,0,1,0,-1,-1,0,7597,0,16542 +101771,0,1,0,-1,-1,0,13669,0,18861 +101772,0,0,-1,0,0,150,23567,0,19066 +101773,0,0,-1,0,180000,24,5917,0,18209 +101774,0,0,0,0,3000,330,23243,0,18790 +101775,0,0,-1,-1,-1,0,24167,0,19789 +101776,0,1,0,-1,-1,0,7546,0,19908 +101777,1,2,0,-1,-1,0,24254,0,19908 +101778,0,1,0,-1,-1,0,18033,0,19909 +101779,0,2,0,-1,-1,0,18205,0,19910 +101780,0,0,-1,-1,-1,0,19138,0,15710 +101781,0,1,0,-1,-1,0,23728,0,19360 +101782,0,1,0,-1,-1,0,15829,0,19364 +101783,0,1,0,-1,-1,0,7597,0,19365 +101784,0,0,0,5000,0,0,24347,0,19979 +101785,0,0,-1,0,0,150,24414,0,20243 +101786,0,0,-1,-1,-1,0,24815,0,20464 +101787,0,1,0,-1,-1,0,9316,0,19892 +101788,0,0,-1,-1,-1,0,24128,0,19771 +101789,0,0,-1,-1,-1,0,24130,0,19773 +101790,0,0,-1,1000,-1,0,24377,0,19714 +101791,0,1,0,-1,-1,0,9332,0,10784 +101792,0,0,0,0,3000,330,23247,0,18793 +101793,0,0,0,0,3000,330,23249,0,18794 +101794,0,0,-1,-1,-1,0,874,0,1574 +101795,0,0,-1,-1,-1,0,19224,0,15780 +101796,0,1,0,-1,-1,0,23686,0,19289 +101797,0,1,0,-1,-1,0,9315,0,19530 +101798,0,1,0,-1,-1,0,9408,0,19531 +101799,0,1,0,-1,-1,0,9406,0,19532 +101800,0,1,0,-1,-1,0,7680,0,19533 +101801,0,0,-1,0,120000,4,440,0,858 +101802,0,0,-1,-1,-1,0,3063,0,8762 +101803,0,0,-1,-1,-1,0,874,0,8869 +101804,0,0,-1,-1,-1,0,3549,0,8881 +101805,0,1,0,-1,-1,0,7597,0,20041 +101806,0,1,0,-1,-1,0,14027,0,19084 +101807,0,1,0,-1,-1,0,9343,0,19085 +101808,0,0,-1,-1,-1,0,3366,0,18268 +101809,0,0,-1,0,3000,79,22807,0,18294 +101810,0,1,0,-1,-1,0,23729,0,19844 +101811,1,1,0,-1,-1,0,9345,0,19844 +101812,0,1,0,-1,-1,0,15464,0,19906 +101813,0,1,0,-1,-1,0,18378,0,17743 +101814,1,1,0,-1,-1,0,20969,0,17743 +101815,0,1,0,-1,-1,0,23729,0,19682 +101816,1,1,0,-1,-1,0,14054,0,19682 +101817,0,1,0,-1,-1,0,23727,0,19683 +101818,1,1,0,-1,-1,0,18054,0,19683 +101819,0,1,0,-1,-1,0,15464,0,19925 +101820,0,1,0,-1,-1,0,9315,0,19826 +101821,0,0,0,120000,0,0,24574,0,19948 +101822,0,0,-1,2000,-1,0,24227,0,19860 +101823,0,0,-1,0,1000,11,24005,0,19994 +101824,0,2,0,-1,-1,0,23605,0,19169 +101825,0,2,0,-1,-1,0,18211,0,19170 +101826,0,1,0,-1,-1,0,17900,0,19438 +101827,1,1,0,-1,-1,0,23727,0,19438 +101828,0,1,0,-1,-1,0,9306,0,18307 +101829,0,1,0,-1,-1,0,14803,0,18466 +101830,0,1,0,-1,-1,0,15464,0,20003 +101831,0,0,-1,-1,-1,0,22712,0,18239 +101832,0,0,-1,-1,-1,0,20085,0,16250 +101833,0,0,0,14400000,-1,0,23442,0,18984 +101834,0,1,0,-1,-1,0,22778,0,16548 +101835,1,1,0,-1,-1,0,7597,0,16548 +101836,0,0,0,-1,-1,0,23678,0,19258 +101837,0,0,-1,0,1000,11,23692,0,19301 +101838,0,0,-1,-1,-1,0,23657,0,19207 +101839,0,0,-1,-1,-1,0,23673,0,19220 +101840,0,0,0,-1,-1,0,23677,0,19234 +101841,0,1,0,-1,-1,0,23689,0,19287 +101842,0,1,0,-1,-1,0,7597,0,19984 +101843,1,1,0,-1,-1,0,14089,0,19984 +101844,0,0,0,120000,20000,1141,24352,0,19991 +101845,0,1,0,-1,-1,0,15465,0,19694 +101846,0,1,0,-1,-1,0,21618,0,19123 +101847,0,1,0,-1,-1,0,7516,0,19124 +101848,0,0,-1,-1,-1,0,19178,0,20253 +101849,0,1,0,-1,-1,0,7597,0,16847 +101850,0,0,-1,-1,-1,0,12901,0,10728 +101851,0,0,0,-1,-1,0,23678,0,19260 +101852,0,1,0,-1,-1,0,14047,0,19926 +101853,0,1,0,-1,-1,0,15806,0,19583 +101854,0,1,0,-1,-1,0,15696,0,19382 +101855,0,1,0,-1,-1,0,9346,0,19094 +101856,0,2,0,-1,-1,0,18398,0,19099 +101857,0,0,-1,1000,-1,0,23008,0,18594 +101858,0,0,0,0,1800000,1160,23042,0,18609 +101859,1,1,0,-1,-1,0,21364,0,18609 +101860,2,1,0,-1,-1,0,23265,0,18609 +101861,0,0,-1,-1,-1,0,656,0,8944 +101862,0,0,0,-1,-1,0,468,0,901 +101863,0,0,-1,0,0,150,23568,0,19067 +101864,0,0,0,-1,-1,0,18559,0,14523 +101865,0,0,0,-1,-1,0,23432,0,18965 +101866,0,0,0,0,3000,330,23242,0,18789 +101867,0,1,0,-1,-1,0,15810,0,19380 +101868,1,1,0,-1,-1,0,7597,0,19380 +101869,0,1,0,-1,-1,0,15810,0,19381 +101870,1,1,0,-1,-1,0,15465,0,19381 +101871,0,0,0,180000,0,0,8312,0,20084 +101872,0,0,-1,-1,-1,0,23713,0,19327 +101873,0,0,-1,-1,-1,0,23714,0,19329 +101874,0,0,-1,-1,-1,0,23514,0,19036 +101875,0,0,-1,0,1000,11,433,0,19223 +101876,0,0,-1,0,0,150,23696,0,19307 +101877,0,0,0,-1,-1,0,20531,0,16653 +101878,0,1,0,-1,-1,0,14799,0,16795 +101879,1,1,0,-1,-1,0,23727,0,16795 +101880,0,0,0,300000,-1,0,23276,0,18851 +101881,0,1,0,-1,-1,0,23701,0,19290 +101882,0,1,0,-1,-1,0,9417,0,17573 +101883,0,2,0,-1,-1,0,21159,0,17193 +101884,0,0,-1,-1,-1,0,18253,0,13942 +101885,0,0,-1,-1,-1,0,23094,0,18658 +101886,0,1,0,-1,-1,0,23929,0,18874 +101887,0,1,0,-1,-1,0,18035,0,18875 +101888,1,1,0,-1,-1,0,21365,0,18875 +101889,0,1,0,-1,-1,0,18369,0,14620 +101890,1,1,0,-1,-1,0,21362,0,14620 +101891,0,1,0,-1,-1,0,14052,0,14637 +101892,0,0,-1,0,1000,11,1127,0,18632 +101893,0,0,-1,0,1000,11,434,0,18633 +101894,0,0,0,-1,-1,0,23136,0,18663 +101895,0,1,0,-1,-1,0,13675,0,19912 +101896,1,1,0,-1,-1,0,13669,0,19912 +101897,0,1,0,-1,-1,0,7518,0,19913 +101898,0,1,0,-1,-1,0,9397,0,19598 +101899,0,1,0,-1,-1,0,9415,0,19600 +101900,0,1,0,-1,-1,0,21348,0,19302 +101901,0,1,0,-1,-1,0,18379,0,19303 +101902,0,0,-1,0,1000,11,434,0,19304 +101903,0,0,-1,0,1000,11,435,0,19305 +101904,0,0,0,-1,-1,0,23680,0,19276 +101905,0,0,0,-1,-1,0,23680,0,19278 +101906,0,0,0,-1,-1,0,23680,0,19281 +101907,0,0,0,-1,-1,0,23680,0,19282 +101908,0,1,0,-1,-1,0,7597,0,18876 +101909,0,1,0,-1,-1,0,7597,0,18877 +101910,0,1,0,-1,-1,0,13383,0,18879 +101911,0,1,0,-1,-1,0,7598,0,19998 +101912,1,1,0,-1,-1,0,23217,0,19998 +101913,0,0,0,-1,-1,0,23679,0,19275 +101914,0,1,0,-1,-1,0,7597,0,18843 +101915,1,1,0,-1,-1,0,9335,0,18843 +101916,0,0,-1,-1,-1,0,23645,0,19183 +101917,0,0,-1,-1,-1,0,23640,0,19208 +101918,0,0,-1,-1,-1,0,23641,0,19209 +101919,0,0,-1,-1,-1,0,23651,0,19210 +101920,0,1,0,-1,-1,0,18020,0,19407 +101921,0,1,0,-1,-1,0,7597,0,18805 +101922,1,1,0,-1,-1,0,9331,0,18805 +101923,0,0,0,6000,-1,0,15958,0,12287 +101924,0,0,-1,0,1000,11,18071,0,19063 +101925,0,0,-1,-1,-1,0,23712,0,19328 +101926,0,1,0,-1,-1,0,7597,0,18844 +101927,1,1,0,-1,-1,0,9335,0,18844 +101928,0,0,0,300000,-1,0,5579,0,18845 +101929,0,0,0,300000,-1,0,5579,0,18846 +101930,0,0,0,300000,-1,0,23274,0,18850 +101931,1,1,0,-1,-1,0,14803,0,20142 +101932,0,1,0,0,-1,0,7597,0,20143 +101933,1,1,0,-1,-1,0,21595,0,20143 +101934,0,1,0,0,0,0,7597,0,20144 +101935,1,1,0,-1,-1,0,21595,0,20144 +101936,0,1,0,-1,-1,0,7597,0,20145 +101937,1,1,0,-1,-1,0,15464,0,20145 +101938,0,1,0,-1,-1,0,7597,0,20146 +101939,0,1,0,-1,-1,0,23689,0,20147 +101940,1,1,0,-1,-1,0,23686,0,20147 +101941,0,0,0,0,3000,330,24252,0,19902 +101942,0,1,0,-1,-1,0,14254,0,17562 +101943,0,1,0,-1,-1,0,7517,0,18806 +101944,0,1,0,-1,-1,0,18384,0,18807 +101945,1,1,0,-1,-1,0,9343,0,18807 +101946,0,0,0,-1,-1,0,23431,0,18966 +101947,0,1,0,-1,-1,0,21364,0,18308 +101948,0,2,0,-1,-1,0,20883,0,17054 +101949,0,1,0,-1,-1,0,15464,0,16562 +101950,0,0,-1,-1,-1,0,3898,0,4349 +101951,0,0,-1,-1,-1,0,25960,0,21299 +101952,0,1,0,-1,-1,0,7597,0,18871 +101953,0,2,0,-1,-1,0,21153,0,18882 +101954,1,1,0,-1,-1,0,7597,0,18882 +101955,0,0,0,60000,-1,0,23359,0,18903 +101956,0,1,0,-1,-1,0,7597,0,18238 +101957,0,1,0,-1,-1,0,22188,0,18388 +101958,0,1,0,-1,-1,0,9315,0,18389 +101959,0,1,0,-1,-1,0,23929,0,18873 +101960,0,1,0,-1,-1,0,15465,0,13963 +101961,0,1,0,-1,-1,0,9318,0,13969 +101962,0,1,0,-1,-1,0,13669,0,18047 +101963,0,0,0,300000,0,0,23131,0,18634 +101964,0,0,-1,0,1000,11,24384,0,20031 +101965,0,1,0,-1,-1,0,15714,0,20032 +101966,0,0,-1,0,0,150,24414,0,20066 +101967,0,1,0,-1,-1,0,7598,0,19323 +101968,1,2,0,-1,-1,0,23454,0,19323 +101969,0,1,0,-1,-1,0,23433,0,18968 +101970,0,1,0,-1,-1,0,7517,0,19574 +101971,0,0,-1,-1,-1,0,24909,0,20548 +101972,0,1,-1,-1,-1,0,24748,0,20422 +101973,0,1,0,-1,-1,0,9395,0,20426 +101974,1,1,0,-1,-1,0,21360,0,20426 +101975,0,0,-1,-1,-1,0,11654,0,11086 +101976,1,2,0,-1,-1,0,11657,0,11086 +101977,0,0,-1,-1,-1,0,11759,0,9437 +101978,0,1,0,0,-1,0,13959,0,9458 +101979,0,0,-1,-1,-1,0,11792,0,9472 +101980,0,0,-1,-1,-1,0,23179,0,18802 +101981,0,1,0,-1,-1,0,7597,0,18848 +101982,1,1,0,-1,-1,0,9335,0,18848 +101983,0,1,0,-1,-1,0,21440,0,18836 +101984,0,0,-1,-1,-1,0,23635,0,19205 +101985,0,0,-1,-1,-1,0,23656,0,19206 +101986,0,0,-1,-1,-1,0,16759,0,12725 +101987,0,2,0,-1,-1,0,16871,0,12769 +101988,0,0,-1,-1,-1,0,24281,0,19814 +101989,0,0,-1,0,0,150,24413,0,20065 +101990,0,1,0,-1,-1,0,15464,0,16569 +101991,0,1,0,-1,-1,0,9417,0,19845 +101992,0,1,0,-1,-1,0,9417,0,19523 +101993,1,1,0,-1,-1,0,21362,0,19523 +101994,0,0,-1,-1,-1,0,25804,0,21151 +101995,0,0,-1,0,1000,11,25693,0,21153 +101996,0,1,0,-1,-1,0,9343,0,20625 +101997,0,0,-1,-1,-1,0,24280,0,19816 +101998,0,1,0,-1,-1,0,9415,0,19524 +101999,1,1,0,-1,-1,0,21625,0,19524 +102000,0,0,-1,1000,-1,0,24377,0,19712 +102001,0,1,0,-1,-1,0,23562,0,19862 +102002,1,1,0,-1,-1,0,13385,0,19862 +102003,2,1,0,-1,-1,0,13675,0,19862 +102004,0,0,0,-1,-1,0,23677,0,19236 +102005,0,0,-1,-1,-1,0,13618,0,11151 +102006,0,0,-1,-1,-1,0,2796,0,2889 +102007,0,0,-1,-1,-1,0,20391,0,16361 +102008,0,1,0,-1,-1,0,18384,0,18842 +102009,1,1,0,-1,-1,0,18056,0,18842 +102010,0,1,0,-1,-1,0,7597,0,19896 +102011,0,0,-1,0,1000,11,23542,0,19062 +102012,0,0,0,300000,-1,0,5579,0,18834 +102013,0,1,0,-1,-1,0,9415,0,19115 +102014,0,1,0,-1,-1,0,9408,0,19116 +102015,0,0,-1,-1,-1,0,18516,0,14498 +102016,0,0,-1,-1,-1,0,23090,0,18653 +102017,0,0,-1,-1,-1,0,23091,0,18655 +102018,0,0,-1,-1,-1,0,23092,0,18656 +102019,0,0,-1,-1,-1,0,20083,0,16248 +102020,0,0,-1,-1,-1,0,20314,0,16318 +102021,0,1,0,-1,-1,0,14799,0,19393 +102022,0,1,0,-1,-1,0,13669,0,19394 +102023,0,1,0,-1,-1,0,23729,0,19999 +102024,1,1,0,-1,-1,0,18384,0,19999 +102025,2,1,0,-1,-1,0,21365,0,19999 +102026,0,1,0,-1,-1,0,9415,0,19601 +102027,1,1,0,-1,-1,0,24429,0,19601 +102028,0,1,0,-1,-1,0,9417,0,19602 +102029,0,1,0,0,0,0,13669,0,19024 +102030,1,0,0,1800000,0,0,23506,0,19024 +102031,0,0,0,300000,-1,0,23277,0,18853 +102032,0,1,0,-1,-1,0,21440,0,18855 +102033,0,1,0,-1,-1,0,9346,0,18350 +102034,0,0,-1,-1,-1,0,22933,0,18518 +102035,0,0,-1,0,0,150,24412,0,20067 +102036,0,0,-1,-1,-1,0,19178,0,15742 +102037,0,0,-1,-1,-1,0,19186,0,15743 +102038,0,0,-1,-1,-1,0,18519,0,14501 +102039,0,0,-1,-1,-1,0,18528,0,14511 +102040,0,1,0,-1,-1,0,21607,0,20149 +102041,1,1,0,-1,-1,0,13665,0,20149 +102042,0,0,0,120000,0,0,24354,0,19990 +102043,0,0,-1,-1,-1,0,23631,0,19204 +102044,0,1,0,-1,-1,0,18032,0,18870 +102045,0,1,0,-1,-1,0,21640,0,18872 +102046,0,1,0,-1,-1,0,9330,0,19095 +102047,0,0,-1,0,1000,59,1133,0,10841 +102048,0,1,0,-1,-1,0,7597,0,16505 +102049,1,2,0,-1,-1,0,21162,0,18881 +102050,2,1,0,-1,-1,0,21142,0,18881 +102051,0,1,0,-1,-1,0,18079,0,10697 +102052,1,0,0,0,0,0,12938,0,10697 +102053,0,0,0,-1,-1,0,17707,0,13583 +102054,0,1,0,-1,-1,0,18369,0,12952 +102055,0,0,0,-1,-1,0,23679,0,19269 +102056,0,0,-1,-1,-1,0,18487,0,14477 +102057,0,0,-1,-1,-1,0,18495,0,14485 +102058,0,0,0,-1,-1,330,23509,0,19029 +102059,0,0,-1,0,120000,4,6612,0,5631 +102060,0,0,0,300000,-1,0,5579,0,18856 +102061,1,2,0,-1,-1,0,21162,0,19158 +102062,2,1,0,-1,-1,0,21142,0,19158 +102063,0,0,0,300000,-1,0,23725,0,19341 +102064,0,0,0,300000,20000,1141,23726,0,19342 +102065,0,0,0,300000,20000,1141,23733,0,19343 +102066,0,0,0,300000,-1,0,23780,0,19345 +102067,0,1,0,-1,-1,0,23730,0,19347 +102068,1,1,0,-1,-1,0,21618,0,19347 +102069,0,1,0,-1,-1,0,18030,0,19348 +102070,0,0,-1,-1,-1,0,2557,0,2700 +102071,0,0,-1,-1,-1,0,23089,0,18652 +102072,0,1,0,-1,-1,0,21362,0,18726 +102073,0,1,0,-1,-1,0,14027,0,19083 +102074,0,1,0,-1,-1,0,9413,0,18728 +102075,0,1,0,-1,-1,0,21363,0,18730 +102076,0,0,0,-1,-1,0,23061,0,18629 +102077,0,1,0,-1,-1,0,13665,0,19168 +102078,0,1,0,-1,-1,0,18049,0,13253 +102079,0,0,-1,-1,-1,0,17582,0,13476 +102080,0,0,0,-1,-1,0,23232,0,18781 +102081,0,1,0,-1,-1,0,21440,0,18835 +102082,0,0,0,300000,-1,0,5579,0,18854 +102083,0,1,0,-1,-1,0,7597,0,18838 +102084,1,1,0,-1,-1,0,9335,0,18838 +102085,0,1,0,-1,-1,0,7597,0,18840 +102086,1,1,0,-1,-1,0,9335,0,18840 +102087,0,0,-1,-1,-1,0,20384,0,16354 +102088,0,1,0,-1,-1,0,14027,0,19350 +102089,0,1,0,-1,-1,0,23440,0,18982 +102090,0,1,0,-1,-1,0,7597,0,18865 +102091,1,1,0,-1,-1,0,9335,0,18865 +102092,0,0,0,600000,120000,1153,23035,0,18607 +102093,0,0,-1,-1,-1,0,23191,0,18731 +102094,0,0,-1,1000,-1,0,6802,0,5851 +102095,0,1,0,-1,-1,0,13669,0,18377 +102096,0,1,0,-1,-1,0,23594,0,19133 +102097,0,1,0,-1,-1,0,18384,0,19134 +102098,1,1,0,-1,-1,0,9343,0,19134 +102099,0,1,0,-1,-1,0,15715,0,19136 +102100,1,1,0,-1,-1,0,18384,0,19136 +102101,0,0,-1,-1,-1,0,17606,0,13501 +102102,0,0,-1,-1,-1,0,981,0,3142 +102103,0,1,0,-1,-1,0,18041,0,19395 +102104,1,1,0,-1,-1,0,21365,0,19395 +102105,0,1,0,-1,-1,0,7597,0,20150 +102106,1,1,0,-1,-1,0,15806,0,20150 +102107,0,1,0,-1,-1,0,7597,0,20151 +102108,1,1,0,-1,-1,0,9331,0,20151 +102109,0,1,0,-1,-1,0,14027,0,20152 +102110,0,1,0,-1,-1,0,7696,0,10010 +102111,0,0,-1,-1,-1,0,23400,0,18949 +102112,0,1,0,-1,-1,0,23409,0,18951 +102113,0,1,0,-1,-1,0,13385,0,18383 +102114,0,1,0,-1,-1,0,17747,0,18808 +102115,1,1,0,-1,-1,0,9415,0,18808 +102116,0,1,0,-1,-1,0,18039,0,18810 +102117,0,0,0,3600000,0,0,23126,0,18660 +102118,0,1,0,-1,-1,0,7597,0,18827 +102119,1,1,0,-1,-1,0,9335,0,18827 +102120,0,1,0,-1,-1,0,17997,0,18829 +102121,0,1,0,-1,-1,0,21440,0,18833 +102122,0,0,-1,0,1000,11,23540,0,19060 +102123,0,1,0,-1,-1,0,21347,0,18535 +102124,0,1,0,-1,-1,0,7597,0,19137 +102125,1,1,0,-1,-1,0,15464,0,19137 +102126,0,0,0,300000,-1,0,23277,0,18863 +102127,0,1,0,-1,-1,0,18013,0,18809 +102128,1,1,0,-1,-1,0,21599,0,18809 +102129,0,1,0,-1,-1,0,15714,0,19426 +102130,0,1,0,-1,-1,0,18009,0,18735 +102131,0,1,0,-1,-1,0,9327,0,19989 +102132,0,1,0,-1,-1,0,7597,0,18823 +102133,1,1,0,-1,-1,0,7576,0,18823 +102134,0,1,0,-1,-1,0,13959,0,18825 +102135,0,0,-1,-1,-1,0,6631,0,4159 +102136,0,0,-1,-1,-1,0,3735,0,4230 +102137,0,0,-1,-1,-1,0,23788,0,19442 +102138,0,0,-1,-1,-1,0,23805,0,19444 +102139,0,1,0,-1,-1,0,13665,0,18537 +102140,1,1,0,-1,-1,0,9332,0,18537 +102141,0,1,0,-1,-1,0,7598,0,18538 +102142,0,0,-1,-1,-1,0,22949,0,18539 +102143,0,1,0,-1,-1,0,21440,0,18837 +102144,0,0,0,300000,-1,0,23274,0,18859 +102145,0,0,-1,-1,-1,0,23630,0,19202 +102146,0,0,-1,-1,-1,0,23654,0,19211 +102147,0,0,-1,-1,-1,0,23655,0,19212 +102148,0,0,0,0,3000,330,23338,0,18902 +102149,0,1,0,-1,-1,0,13959,0,18826 +102150,0,1,0,-1,-1,0,21475,0,18303 +102151,0,1,0,-1,-1,0,9346,0,19090 +102152,0,1,0,-1,-1,0,21362,0,19098 +102153,0,2,0,-1,-1,0,23592,0,19100 +102154,0,0,0,0,3000,330,23238,0,18786 +102155,0,0,0,300000,-1,0,23273,0,18857 +102156,0,1,0,-1,-1,0,14049,0,18541 +102157,1,1,0,-1,-1,0,15464,0,18541 +102158,0,1,0,-1,-1,0,13665,0,18542 +102159,0,1,0,-1,-1,0,18384,0,18543 +102160,0,1,0,-1,-1,0,7597,0,16451 +102161,1,1,0,-1,-1,0,9346,0,16451 +102162,0,0,-1,0,1000,59,432,0,19299 +102163,0,0,-1,0,1000,59,1135,0,19300 +102164,0,0,0,-1,-1,0,23151,0,18659 +102165,0,0,-1,-1,-1,0,21941,0,17720 +102166,0,0,0,-1,-1,0,21957,0,17765 +102167,0,0,-1,-1,-1,0,7758,0,6328 +102168,0,1,0,-1,-1,0,9344,0,19101 +102169,0,1,0,-1,-1,0,9344,0,19102 +102170,0,1,0,-1,-1,0,23727,0,19905 +102171,1,1,0,-1,-1,0,21618,0,19905 +102172,0,0,-1,1000,-1,0,24377,0,19713 +102173,0,1,0,-1,-1,0,7517,0,19575 +102174,0,1,0,-1,-1,0,29414,0,18714 +102175,0,1,0,-1,-1,0,13385,0,18384 +102176,0,1,0,-1,-1,0,14054,0,18385 +102177,0,1,0,-1,-1,0,21626,0,18386 +102178,1,1,0,-1,-1,0,18032,0,18386 +102179,0,1,0,-1,-1,0,18384,0,18387 +102180,0,0,-1,0,1000,11,18233,0,13931 +102181,0,0,0,1800000,0,0,19638,0,15867 +102182,0,0,-1,0,1000,59,24355,0,19997 +102183,0,0,0,300000,-1,0,23273,0,18852 +102184,0,0,0,14400000,-1,0,23453,0,18986 +102185,0,0,0,300000,20000,1141,23723,0,19339 +102186,0,0,-1,0,120000,4,440,0,2462 +102187,0,0,-1,1000,-1,0,24377,0,19715 +102188,0,1,0,-1,-1,0,9406,0,19593 +102189,0,0,0,0,180000,491,16349,0,12344 +102190,1,1,0,-1,-1,0,16372,0,12344 +102191,0,0,-1,-1,-1,0,20395,0,16365 +102192,0,1,0,-1,-1,0,14054,0,16475 +102193,1,1,0,-1,-1,0,7597,0,16475 +102194,0,1,0,-1,-1,0,14047,0,16952 +102195,0,0,0,-1,-1,0,20529,0,16647 +102196,0,0,-1,-1,-1,0,6708,0,5788 +102197,0,1,0,-1,-1,0,15815,0,19904 +102198,1,1,0,-1,-1,0,7597,0,19904 +102199,0,0,-1,-1,-1,0,15698,0,11914 +102200,0,1,0,-1,-1,0,14829,0,19320 +102201,0,2,0,-1,-1,0,24388,0,19324 +102202,0,1,0,-1,-1,0,21619,0,19038 +102203,0,1,0,-1,-1,0,17896,0,19310 +102204,0,1,0,-1,-1,0,14055,0,19400 +102205,1,1,0,-1,-1,0,21363,0,19400 +102206,0,1,0,-1,-1,0,23727,0,19403 +102207,1,1,0,-1,-1,0,14248,0,19403 +102208,0,1,0,-1,-1,0,17829,0,19308 +102209,1,1,0,-1,-1,0,21625,0,19308 +102210,0,1,0,-1,-1,0,18014,0,19309 +102211,0,1,0,-1,-1,0,18029,0,18304 +102212,0,1,0,-1,-1,0,13665,0,18305 +102213,0,1,0,-1,-1,0,9326,0,18306 +102214,0,0,0,-1,-1,0,23233,0,18784 +102215,0,0,0,-1,-1,0,20269,0,16208 +102216,0,0,-1,-1,-1,0,20070,0,16218 +102217,0,0,-1,-1,-1,0,23093,0,18657 +102218,0,0,-1,-1,-1,0,22906,0,18488 +102219,0,1,-1,-1,-1,0,24748,0,20421 +102220,0,1,0,-1,-1,0,7678,0,20427 +102221,0,1,0,-1,-1,0,14054,0,21178 +102222,0,0,-1,-1,-1,0,24889,0,20531 +102223,0,0,-1,-1,-1,0,24890,0,20532 +102224,0,1,0,0,0,0,9402,0,20350 +102225,0,1,0,-1,-1,0,9336,0,20194 +102226,0,1,0,-1,-1,0,18384,0,20195 +102227,0,0,-1,0,0,150,24413,0,20232 +102228,0,1,0,-1,-1,0,14027,0,20117 +102229,0,1,0,-1,-1,0,17891,0,20356 +102230,0,1,0,-1,-1,0,18030,0,20266 +102231,1,1,0,-1,-1,0,21364,0,20266 +102232,0,1,0,-1,-1,0,18384,0,20118 +102233,0,1,0,-1,-1,0,21618,0,20203 +102234,0,1,0,-1,-1,0,23990,0,20110 +102235,0,1,0,-1,-1,0,15464,0,19377 +102236,0,1,0,-1,-1,0,13383,0,19576 +102237,0,1,0,-1,-1,0,9397,0,19599 +102238,0,1,0,-1,-1,0,9343,0,19605 +102239,1,1,0,-1,-1,0,24430,0,19605 +102240,0,1,0,-1,-1,0,9415,0,19520 +102241,1,1,0,-1,-1,0,21625,0,19520 +102242,0,0,-1,0,1000,59,24355,0,21241 +102243,0,1,0,-1,-1,0,7597,0,21242 +102244,1,1,0,-1,-1,0,9142,0,21242 +102245,0,0,-1,-1,-1,0,25982,0,21283 +102246,0,1,0,-1,-1,0,18384,0,20174 +102247,0,1,0,-1,-1,0,18378,0,19566 +102248,0,0,-1,0,1000,11,24707,0,20390 +102249,0,0,-1,-1,-1,0,25719,0,21112 +102250,0,0,-1,-1,-1,0,25722,0,21114 +102251,0,0,-1,-1,-1,0,25940,0,21214 +102252,0,0,-1,-1,-1,0,25955,0,21219 +102253,0,1,0,-1,-1,0,14590,0,16062 +102254,0,1,0,-1,-1,0,14630,0,16134 +102255,0,1,0,-1,-1,0,18384,0,20047 +102256,1,1,0,-1,-1,0,9343,0,20047 +102257,0,1,0,-1,-1,0,17875,0,19311 +102258,0,0,-1,-1,-1,0,25983,0,21284 +102259,0,0,-1,-1,-1,0,25720,0,21041 +102260,0,0,0,180000,10000,1141,24571,0,19951 +102261,0,1,0,-1,-1,0,9345,0,19848 +102262,0,0,0,180000,10000,1141,24532,0,19954 +102263,0,1,0,-1,-1,0,7597,0,20204 +102264,0,1,0,-1,-1,0,14798,0,20214 +102265,1,1,0,-1,-1,0,18384,0,20214 +102266,0,2,0,-1,-1,0,24257,0,19918 +102267,0,1,0,-1,-1,0,18384,0,19922 +102268,1,1,0,-1,-1,0,9408,0,19922 +102269,0,1,0,-1,-1,0,15714,0,19923 +102270,1,1,0,-1,-1,0,21625,0,19923 +102271,0,0,0,-1,-1,0,25162,0,20769 +102272,0,1,0,-1,-1,0,23990,0,20054 +102273,1,1,0,-1,-1,0,9417,0,20054 +102274,0,0,0,180000,180000,1155,23991,0,20072 +102275,0,1,0,-1,-1,0,7597,0,20179 +102276,0,0,-1,0,1000,11,24869,0,20516 +102277,0,1,0,-1,-1,0,9336,0,20116 +102278,0,1,0,-1,-1,0,9336,0,20175 +102279,0,0,-1,-1,-1,0,24898,0,20544 +102280,0,1,0,-1,-1,0,21624,0,20278 +102281,0,1,0,0,-1,0,13669,0,20279 +102282,0,1,0,-1,-1,0,21509,0,20504 +102283,0,1,0,0,0,0,7681,0,20505 +102284,0,1,0,0,0,0,24775,0,20446 +102285,0,0,0,180000,10000,1141,24531,0,19953 +102286,0,0,-1,0,0,150,24412,0,20235 +102287,0,1,0,-1,-1,0,17891,0,20354 +102288,1,1,0,-1,-1,0,9307,0,20357 +102289,0,1,0,0,0,0,9404,0,20358 +102290,0,1,0,-1,-1,0,24782,0,20451 +102291,0,0,-1,0,1000,11,24800,0,20452 +102292,0,1,0,-1,-1,0,13384,0,21198 +102293,0,1,0,-1,-1,0,15464,0,21204 +102294,0,0,-1,0,1000,11,25691,0,21217 +102295,0,1,0,-1,-1,0,9417,0,19829 +102296,1,1,0,-1,-1,0,21619,0,19829 +102297,0,1,0,-1,-1,0,21619,0,19831 +102298,0,1,0,-1,-1,0,21439,0,19833 +102299,1,1,0,-1,-1,0,21362,0,19833 +102300,0,1,0,-1,-1,0,15464,0,19835 +102301,0,1,0,-1,-1,0,23727,0,20536 +102302,1,1,0,-1,-1,0,14794,0,20536 +102303,0,1,0,-1,-1,0,21618,0,20537 +102304,0,1,0,-1,-1,0,21626,0,20538 +102305,0,1,0,-1,-1,0,21625,0,20539 +102306,0,1,0,-1,-1,0,13670,0,20270 +102307,1,1,0,-1,-1,0,14803,0,20270 +102308,0,0,-1,-1,-1,0,24897,0,20543 +102309,0,0,0,-1,-1,0,24696,0,20371 +102310,0,1,0,-1,-1,0,24697,0,20372 +102311,1,1,0,-1,-1,0,13670,0,20372 +102312,0,1,0,-1,-1,0,15464,0,21201 +102313,0,1,0,-1,-1,0,15464,0,21202 +102314,0,1,0,-1,-1,0,15464,0,21203 +102315,0,0,-1,-1,-1,0,19200,0,20254 +102316,0,1,0,-1,-1,0,16611,0,20148 +102317,1,1,0,-1,-1,0,15599,0,20148 +102318,0,1,0,-1,-1,0,7597,0,20257 +102319,1,1,0,-1,-1,0,18384,0,20257 +102320,2,1,0,-1,-1,0,21364,0,20257 +102321,0,1,0,-1,-1,0,7597,0,20267 +102322,0,1,0,-1,-1,0,14803,0,20271 +102323,1,1,0,-1,-1,0,7597,0,20271 +102324,0,1,0,-1,-1,0,7597,0,20276 +102325,0,1,0,-1,-1,0,9308,0,20339 +102326,0,0,-1,-1,-1,0,24895,0,20540 +102327,0,0,0,120000,20000,1141,24658,0,19950 +102328,0,0,-1,-1,-1,0,24908,0,20546 +102329,0,1,0,-1,-1,0,13675,0,20549 +102330,0,0,-1,-1,-1,0,24704,0,20382 +102331,0,1,0,-1,-1,0,7597,0,20671 +102332,0,1,0,-1,-1,0,9331,0,20722 +102333,0,0,-1,-1,-1,0,25088,0,20727 +102334,0,0,-1,-1,-1,0,25092,0,20731 +102335,0,0,-1,-1,-1,0,25094,0,20733 +102336,0,0,-1,-1,-1,0,25096,0,20735 +102337,0,0,-1,-1,-1,0,25097,0,20736 +102338,0,1,0,-1,-1,0,9316,0,20704 +102339,0,1,0,-1,-1,0,9404,0,20352 +102340,1,1,0,-1,-1,0,9307,0,20353 +102341,0,1,0,-1,-1,0,7597,0,20088 +102342,1,1,0,-1,-1,0,9331,0,20088 +102343,0,1,0,0,0,0,24774,0,20445 +102344,0,1,0,-1,-1,0,15807,0,20615 +102345,0,1,0,-1,-1,0,21632,0,20631 +102346,0,0,-1,-1,-1,0,25985,0,21287 +102347,0,0,-1,-1,-1,0,25961,0,21288 +102348,0,1,0,-1,-1,0,9395,0,20431 +102349,1,1,0,-1,-1,0,21360,0,20431 +102350,0,1,0,-1,-1,0,21595,0,20579 +102351,0,1,0,-1,-1,0,23990,0,20053 +102352,1,1,0,-1,-1,0,9329,0,20053 +102353,0,0,-5,1000,-1,0,25117,0,20744 +102354,0,0,-5,1000,-1,0,25118,0,20745 +102355,0,1,0,-1,-1,0,18031,0,20638 +102356,0,1,0,-1,-1,0,9316,0,20639 +102357,0,0,-1,-1,-1,0,24094,0,19764 +102358,0,1,0,-1,-1,0,23990,0,20122 +102359,0,0,-1,-1,-1,0,24941,0,20576 +102360,0,1,0,-1,-1,0,9336,0,20192 +102361,0,1,0,-1,-1,0,17367,0,20698 +102362,1,1,0,-1,-1,0,21625,0,20698 +102363,0,1,0,-1,-1,0,9398,0,20641 +102364,0,0,-5,1000,-1,0,25123,0,20748 +102365,0,0,-5,1000,-1,0,25122,0,20749 +102366,0,0,-5,1000,-1,0,25121,0,20750 +102367,0,1,0,-1,-1,0,9395,0,20672 +102368,0,1,0,-1,-1,0,9335,0,20675 +102369,0,0,-1,1000,-1,0,24377,0,20880 +102370,0,1,0,-1,-1,0,15714,0,20632 +102371,1,1,0,-1,-1,0,18384,0,20632 +102372,0,1,0,-1,-1,0,9314,0,19843 +102373,0,1,0,0,0,0,9402,0,20335 +102374,1,1,0,-1,-1,0,21624,0,20335 +102375,0,1,0,-1,-1,0,9397,0,19521 +102376,1,1,0,-1,-1,0,21624,0,19521 +102377,0,1,0,-1,-1,0,9343,0,19522 +102378,1,1,0,-1,-1,0,21619,0,19522 +102379,0,0,0,43200000,-1,0,24006,0,19697 +102380,0,1,0,-1,-1,0,7597,0,20268 +102381,1,1,0,-1,-1,0,14803,0,20268 +102382,0,1,0,-1,-1,0,7597,0,20269 +102383,0,1,0,-1,-1,0,13665,0,20272 +102384,1,1,0,-1,-1,0,15687,0,20272 +102385,0,1,0,-1,-1,0,24852,0,20502 +102386,0,1,0,-1,-1,0,9344,0,20705 +102387,0,1,0,-1,-1,0,14254,0,20720 +102388,0,0,0,0,0,0,25247,0,20834 +102389,0,0,-1,0,-1,0,25351,0,20844 +102390,0,0,-3,-1,-1,0,26008,0,21267 +102391,0,1,0,-1,-1,0,24697,0,21268 +102392,1,1,0,-1,-1,0,13387,0,21268 +102393,0,0,0,1800000,-1,0,25112,0,20534 +102394,0,0,-1,60000,-1,0,24973,0,20604 +102395,0,1,0,-1,-1,0,18384,0,21179 +102396,1,1,0,-1,-1,0,21361,0,21179 +102397,0,0,-1,-1,-1,0,25962,0,21289 +102398,0,0,-1,-1,-1,0,25963,0,21290 +102399,0,1,0,-1,-1,0,21618,0,20380 +102400,0,1,0,-1,-1,0,23990,0,20127 +102401,0,1,0,-1,-1,0,24994,0,20580 +102402,0,1,0,-1,-1,0,17320,0,20581 +102403,1,1,0,-1,-1,0,21634,0,20581 +102404,0,1,0,-1,-1,0,14098,0,19963 +102405,0,1,0,-1,-1,0,23729,0,19388 +102406,0,1,0,-1,-1,0,21636,0,19391 +102407,0,0,-1,-1,-1,0,25964,0,21291 +102408,0,0,-1,-1,-1,0,25965,0,21292 +102409,0,1,0,-1,-1,0,25717,0,21101 +102410,0,1,0,-1,-1,0,25718,0,21102 +102411,0,2,0,-1,-1,0,24585,0,19852 +102412,0,1,0,-1,-1,0,15807,0,20577 +102413,0,1,0,-1,-1,0,29632,0,16004 +102414,0,0,0,300000,0,0,25892,0,21181 +102415,0,1,0,-1,-1,0,7597,0,21182 +102416,1,1,0,-1,-1,0,15464,0,21182 +102417,0,1,0,-1,-1,0,18384,0,21183 +102418,1,1,0,-1,-1,0,15715,0,21183 +102419,0,1,0,-1,-1,0,14054,0,21186 +102420,1,1,0,-1,-1,0,23727,0,21186 +102421,0,0,-1,-1,-1,0,25853,0,21173 +102422,0,0,0,-1,-1,0,25855,0,21174 +102423,0,0,-1,-1,-1,0,25984,0,21285 +102424,0,1,0,-1,-1,0,18384,0,20196 +102425,0,0,-1,-1,-1,0,25966,0,21293 +102426,0,0,-1,-1,-1,0,25970,0,21294 +102427,0,1,0,-1,-1,0,13385,0,19873 +102428,0,1,0,-1,-1,0,24436,0,19609 +102429,0,1,0,-1,-1,0,7678,0,20428 +102430,0,1,0,-1,-1,0,15715,0,20582 +102431,0,1,0,-1,-1,0,7597,0,21244 +102432,1,1,0,-1,-1,0,15464,0,21244 +102433,2,1,0,-1,-1,0,9330,0,21244 +102434,0,1,0,-1,-1,0,21476,0,21269 +102435,1,1,0,-1,-1,0,23203,0,21269 +102436,2,1,0,-1,-1,0,13387,0,21269 +102437,0,1,0,-1,-1,0,14803,0,20273 +102438,1,1,0,-1,-1,0,7597,0,20273 +102439,0,1,0,-1,-1,0,13670,0,20274 +102440,1,1,0,-1,-1,0,14803,0,20274 +102441,0,1,0,-1,-1,0,15464,0,21187 +102442,0,1,0,-1,-1,0,18056,0,21188 +102443,1,1,0,-1,-1,0,18382,0,21188 +102444,0,0,-1,180000,180000,1140,28745,0,21143 +102445,1,1,0,-1,-1,0,13831,0,20344 +102446,0,1,0,-1,-1,0,7598,0,20696 +102447,0,1,0,-1,-1,0,14799,0,20697 +102448,0,1,0,-1,-1,0,14027,0,20657 +102449,0,1,0,0,0,0,9308,0,20345 +102450,0,1,0,-1,-1,0,15464,0,19832 +102451,0,1,0,-1,-1,0,26647,0,19837 +102452,0,1,0,-1,-1,0,9318,0,19838 +102453,0,1,0,-1,-1,0,7681,0,19839 +102454,0,1,0,-1,-1,0,9314,0,19840 +102455,0,0,-1,0,0,150,24414,0,20234 +102456,1,1,0,-1,-1,0,9404,0,20351 +102457,0,0,0,120000,20000,1141,25891,0,21180 +102458,0,0,-1,0,1000,11,24410,0,20224 +102459,0,0,-1,0,1000,11,24411,0,20225 +102460,0,0,-1,0,1000,11,24409,0,20226 +102461,0,0,-1,0,1000,11,24410,0,20227 +102462,0,1,0,-1,-1,0,9308,0,20348 +102463,1,1,0,-1,-1,0,24667,0,20349 +102464,0,1,0,-1,-1,0,23990,0,20128 +102465,0,1,0,-1,-1,0,21626,0,19568 +102466,0,0,0,600000,-1,0,25793,0,21144 +102467,0,1,0,-1,-1,0,21618,0,19569 +102468,0,1,0,-1,-1,0,18378,0,19570 +102469,0,1,0,0,0,0,9308,0,20346 +102470,0,0,-1,0,1000,11,24409,0,20223 +102471,0,0,-1,0,1000,11,24869,0,21254 +102472,0,0,-1,-1,-1,0,25971,0,21295 +102473,0,0,-1,-1,-1,0,25972,0,21296 +102474,0,0,-1,-1,-1,0,25958,0,21297 +102475,0,0,-1,-1,-1,0,25959,0,21298 +102476,0,1,0,-1,-1,0,23990,0,20129 +102477,0,1,0,-1,-1,0,9417,0,20262 +102478,1,1,0,-1,-1,0,21363,0,20262 +102479,0,0,0,180000,-1,0,24884,0,20525 +102480,0,0,-1,-1,-1,0,24885,0,20526 +102481,0,0,-1,-1,-1,0,24168,0,19790 +102482,0,1,0,-1,-1,0,24198,0,19812 +102483,0,1,0,-1,-1,0,23729,0,19847 +102484,1,1,0,-1,-1,0,9345,0,19847 +102485,0,1,0,-1,-1,0,13390,0,19855 +102486,1,1,0,-1,-1,0,9307,0,20355 +102487,0,1,0,-1,-1,0,7517,0,20640 +102488,0,0,-1,-1,-1,0,25091,0,20730 +102489,0,1,0,-1,-1,0,18384,0,20369 +102490,0,1,0,-1,-1,0,24694,0,20370 +102491,1,1,0,-1,-1,0,13670,0,20370 +102492,0,1,0,-1,-1,0,21364,0,19567 +102493,0,1,0,-1,-1,0,18052,0,20654 +102494,0,1,0,-1,-1,0,18049,0,20724 +102495,0,0,-1,0,1000,11,24005,0,21238 +102496,0,0,-1,0,1000,11,24005,0,21240 +102497,0,0,-1,-1,-1,0,24726,0,20403 +102498,0,1,0,-1,-1,0,17747,0,20530 +102499,1,1,0,-1,-1,0,14793,0,20530 +102500,0,0,-1,-1,-1,0,25973,0,21300 +102501,0,1,0,-1,-1,0,23990,0,20187 +102502,1,1,0,-1,-1,0,9138,0,20187 +102503,0,1,0,-1,-1,0,23990,0,20189 +102504,1,1,0,-1,-1,0,9141,0,20189 +102505,0,1,0,-1,-1,0,7597,0,20190 +102506,1,1,0,-1,-1,0,15806,0,20190 +102507,0,1,0,-1,-1,0,14027,0,20191 +102508,0,1,0,-1,-1,0,9416,0,20099 +102509,0,1,0,-1,-1,0,23990,0,20100 +102510,1,1,0,-1,-1,0,9141,0,20100 +102511,0,0,-1,-1,-1,0,24264,0,19932 +102512,0,0,-1,-1,-1,0,20071,0,16219 +102513,0,0,-1,-1,-1,0,1007,0,9028 +102514,0,1,0,-1,-1,0,13383,0,19894 +102515,1,1,0,-1,-1,0,13669,0,19894 +102516,0,1,0,-1,-1,0,24350,0,19982 +102517,0,0,-1,-1,-1,0,24095,0,19765 +102518,0,1,0,-1,-1,0,23990,0,20091 +102519,0,1,0,-1,-1,0,23990,0,20092 +102520,0,0,-1,1000,-1,0,24377,0,19709 +102521,0,0,-1,1000,-1,0,24377,0,19710 +102522,0,0,0,-1,-1,0,11535,0,9299 +102523,0,0,-1,-1,-1,0,24285,0,19815 +102524,0,0,-1,-1,-1,0,24369,0,20011 +102525,0,0,-1,-1,-1,0,24147,0,19781 +102526,0,1,0,-1,-1,0,7597,0,19692 +102527,0,1,0,-1,-1,0,15464,0,19695 +102528,0,1,0,-1,-1,0,29414,0,19319 +102529,0,1,0,-1,-1,0,15465,0,19686 +102530,0,1,0,-1,-1,0,17898,0,20331 +102531,1,1,0,-1,-1,0,18378,0,20331 +102532,0,1,0,-1,-1,0,18384,0,20044 +102533,0,1,0,-1,-1,0,7597,0,20045 +102534,1,1,0,-1,-1,0,15806,0,20045 +102535,0,1,0,-1,-1,0,13388,0,19871 +102536,1,1,0,-1,-1,0,13669,0,19871 +102537,0,1,0,-1,-1,0,25669,0,19874 +102538,0,1,0,-1,-1,0,9342,0,19830 +102539,1,1,0,-1,-1,0,21362,0,19830 +102540,0,1,0,-1,-1,0,29162,0,23238 +102541,0,1,0,-1,-1,0,13384,0,21332 +102542,1,1,0,-1,-1,0,15464,0,21332 +102543,0,1,0,-1,-1,0,7517,0,21330 +102544,1,1,0,-1,-1,0,15464,0,21330 +102545,0,1,0,-1,-1,0,9346,0,21414 +102546,1,1,0,-1,-1,0,18384,0,21414 +102547,0,1,0,-1,-1,0,21361,0,21801 +102548,1,1,0,-1,-1,0,7680,0,21801 +102549,0,1,0,-1,-1,0,7597,0,21463 +102550,1,1,0,-1,-1,0,15464,0,21463 +102551,0,0,-1,-1,-1,0,24288,0,19817 +102552,0,1,0,-1,-1,0,23990,0,20183 +102553,0,1,0,-1,-1,0,7597,0,20259 +102554,0,1,0,-1,-1,0,9345,0,20260 +102555,0,1,0,-1,-1,0,13669,0,20261 +102556,0,0,-1,-1,-1,0,997,0,9011 +102557,0,0,-1,-1,-1,0,3085,0,9017 +102558,0,1,0,-1,-1,0,23990,0,20186 +102559,1,1,0,-1,-1,0,9329,0,20186 +102560,0,1,0,-1,-1,0,7597,0,20140 +102561,1,1,0,-1,-1,0,14803,0,20140 +102562,0,1,0,-1,-1,0,7597,0,20141 +102563,0,0,-1,-1,-1,0,24828,0,20475 +102564,0,0,-1,-1,-1,0,24855,0,20506 +102565,0,1,0,-1,-1,0,9417,0,22082 +102566,0,0,-10,60000,-1,0,26678,0,21813 +102567,0,0,-3,10000,-1,0,24706,0,20387 +102568,0,1,0,-1,-1,0,18382,0,20334 +102569,1,1,0,-1,-1,0,24666,0,20334 +102570,2,1,0,-1,-1,0,21620,0,20334 +102571,0,1,0,-1,-1,0,9343,0,19518 +102572,1,1,0,-1,-1,0,21619,0,19518 +102573,0,0,-1,1000,-1,0,24377,0,19707 +102574,0,1,0,-1,-1,0,7823,0,19969 +102575,0,1,0,-1,-1,0,24301,0,19970 +102576,0,1,0,-1,-1,0,23990,0,20121 +102577,0,1,0,-1,-1,0,15464,0,20216 +102578,0,0,-1,-1,-1,0,24856,0,20507 +102579,0,0,-1,-1,-1,0,24859,0,20508 +102580,0,0,-1,0,1000,11,24005,0,21235 +102581,0,0,-1,-1,120000,1153,27869,0,20520 +102582,0,1,0,-1,-1,0,7597,0,20521 +102583,1,1,0,-1,-1,0,15464,0,20521 +102584,0,1,0,-1,-1,0,18384,0,20523 +102585,1,1,0,-1,-1,0,9404,0,20523 +102586,0,1,0,-1,-1,0,7597,0,21814 +102587,1,1,0,-1,-1,0,15464,0,21814 +102588,0,1,0,-1,-1,0,9332,0,21478 +102589,0,1,0,-1,-1,0,13665,0,21479 +102590,1,1,0,-1,-1,0,7518,0,21479 +102591,0,1,0,-1,-1,0,9415,0,19507 +102592,0,1,0,-1,-1,0,24188,0,19588 +102593,0,1,0,-1,-1,0,23727,0,19374 +102594,1,1,0,-1,-1,0,14248,0,19374 +102595,0,1,0,-1,-1,0,14055,0,19375 +102596,1,1,0,-1,-1,0,18382,0,19375 +102597,0,0,-1,-1,-1,0,24143,0,19777 +102598,0,1,0,-1,-1,0,21628,0,20217 +102599,0,1,0,-1,-1,0,23727,0,20686 +102600,0,1,0,0,0,0,9404,0,20359 +102601,0,1,0,-1,-1,0,17891,0,20360 +102602,0,1,0,-1,-1,0,9404,0,20361 +102603,1,1,0,-1,-1,0,17891,0,20362 +102604,0,1,0,0,0,0,7702,0,20363 +102605,0,1,0,-1,-1,0,14047,0,19857 +102606,1,1,0,-1,-1,0,23727,0,19857 +102607,0,0,-1,2000,-1,0,24226,0,19858 +102608,0,1,0,-1,-1,0,7597,0,19859 +102609,1,1,0,-1,-1,0,9335,0,19859 +102610,0,1,0,-1,-1,0,24426,0,20006 +102611,0,1,0,-1,-1,0,9412,0,20082 +102612,0,1,0,-1,-1,0,7597,0,20083 +102613,1,1,0,-1,-1,0,21363,0,20083 +102614,0,1,0,-1,-1,0,9345,0,19597 +102615,0,1,0,-1,-1,0,7680,0,19529 +102616,0,1,0,-1,-1,0,7570,0,22207 +102617,1,1,0,-1,-1,0,7582,0,22207 +102618,2,1,0,-1,-1,0,22811,0,22207 +102619,0,1,0,-1,-1,0,14799,0,22208 +102620,0,0,-1,-1,-1,0,27591,0,22209 +102621,0,0,-1,-1,-1,0,24144,0,19778 +102622,0,0,-1,-1,-1,0,24145,0,19779 +102623,0,0,-1,-1,-1,0,24146,0,19780 +102624,0,1,0,-1,-1,0,21601,0,18319 +102625,0,0,0,-1,-1,0,23679,0,19270 +102626,0,0,0,-1,-1,0,23679,0,19271 +102627,0,0,0,900000,0,0,15604,0,11819 +102628,1,1,0,-1,-1,0,9408,0,11819 +102629,0,1,0,-1,-1,0,7597,0,7935 +102630,1,1,0,-1,-1,0,13669,0,7935 +102631,0,0,-1,-1,-1,0,9944,0,7977 +102632,0,1,0,-1,-1,0,9397,0,19525 +102633,1,1,0,-1,-1,0,21624,0,19525 +102634,0,1,0,-1,-1,0,13669,0,20550 +102635,0,1,0,-1,-1,0,7597,0,20551 +102636,0,0,-1,-1,-1,0,24915,0,20553 +102637,0,1,0,-1,-1,0,17371,0,19885 +102638,0,1,0,-1,-1,0,21619,0,21482 +102639,1,1,0,-1,-1,0,9417,0,21482 +102640,0,0,-1,1000,1500,1136,26293,0,21560 +102641,0,0,0,300000,-1,0,27571,0,22206 +102642,0,0,-1,1000,-1,0,24377,0,19711 +102643,0,1,0,-1,-1,0,24392,0,20035 +102644,0,0,0,180000,10000,1141,24389,0,20036 +102645,0,0,0,-1,-1,0,23428,0,18963 +102646,0,0,0,-1,-1,0,23429,0,18964 +102647,0,1,0,-1,-1,0,9417,0,19519 +102648,1,1,0,-1,-1,0,21362,0,19519 +102649,0,0,-1,-1,-1,0,24860,0,20509 +102650,0,1,0,-1,-1,0,7598,0,19945 +102651,1,1,0,-1,-1,0,15810,0,19945 +102652,0,1,0,-1,-1,0,15465,0,19946 +102653,1,1,0,-1,-1,0,18207,0,19946 +102654,0,0,0,75000,0,0,24610,0,19947 +102655,0,0,0,0,3000,330,24242,0,19872 +102656,0,1,0,-1,-1,0,14798,0,19897 +102657,0,1,0,-1,-1,0,9336,0,20059 +102658,0,1,0,-1,-1,0,15464,0,20517 +102659,0,1,0,-1,-1,0,15715,0,20626 +102660,0,1,0,-1,-1,0,23990,0,20123 +102661,0,1,0,-1,-1,0,23990,0,20209 +102662,0,1,0,-1,-1,0,23990,0,20210 +102663,0,1,0,-1,-1,0,23990,0,20211 +102664,0,1,0,-1,-1,0,13386,0,20688 +102665,1,1,0,-1,-1,0,25036,0,20688 +102666,0,1,0,-1,-1,0,15464,0,20689 +102667,0,1,0,-1,-1,0,23990,0,20101 +102668,1,1,0,-1,-1,0,9138,0,20101 +102669,0,0,0,120000,20000,1141,24661,0,19949 +102670,0,0,-1,-1,-1,0,16690,0,12701 +102671,0,0,-1,-1,-1,0,23809,0,19448 +102672,0,1,0,-1,-1,0,7518,0,19335 +102673,0,0,-1,-1,-1,0,24887,0,20527 +102674,0,1,0,-1,-1,0,18384,0,20324 +102675,1,1,0,-1,-1,0,13831,0,20324 +102676,0,1,0,-1,-1,0,9308,0,20325 +102677,1,1,0,-1,-1,0,21619,0,20325 +102678,0,1,0,-1,-1,0,18384,0,20326 +102679,1,1,0,-1,-1,0,13831,0,20326 +102680,0,1,0,-1,-1,0,17898,0,20327 +102681,1,1,0,-1,-1,0,18378,0,20327 +102682,0,1,0,-1,-1,0,18384,0,20328 +102683,1,1,0,-1,-1,0,13831,0,20328 +102684,1,1,0,-1,-1,0,13831,0,20340 +102685,0,1,0,-1,-1,0,17899,0,20341 +102686,1,1,0,-1,-1,0,13831,0,20342 +102687,0,1,0,-1,-1,0,23990,0,20185 +102688,0,1,0,-1,-1,0,21626,0,20218 +102689,0,1,0,-1,-1,0,21598,0,20219 +102690,0,1,0,-1,-1,0,18382,0,20220 +102691,1,1,0,-1,-1,0,18057,0,20220 +102692,0,1,0,-1,-1,0,9308,0,20336 +102693,1,1,0,-1,-1,0,21619,0,20336 +102694,1,1,0,-1,-1,0,13831,0,20338 +102695,0,1,0,-1,-1,0,21626,0,19572 +102696,0,0,-1,-1,-1,0,24290,0,19819 +102697,0,0,-1,-1,-1,0,24279,0,19821 +102698,0,1,0,-1,-1,0,14027,0,20090 +102699,0,1,0,-1,-1,0,9343,0,20098 +102700,0,1,0,-1,-1,0,23990,0,20109 +102701,0,1,0,-1,-1,0,7598,0,19875 +102702,1,1,0,-1,-1,0,9335,0,19875 +102703,0,1,0,-1,-1,0,21485,0,19431 +102704,1,1,0,-1,-1,0,23181,0,19431 +102705,2,1,0,-1,-1,0,14249,0,19431 +102706,0,1,0,-1,-1,0,17899,0,20343 +102707,0,1,0,-1,-1,0,24434,0,19617 +102708,0,0,0,180000,0,0,24542,0,19955 +102709,0,0,0,180000,20000,1141,24543,0,19957 +102710,0,0,0,180000,0,0,24546,0,19958 +102711,0,1,0,-1,-1,0,23990,0,20096 +102712,1,1,0,-1,-1,0,9397,0,20096 +102713,0,0,0,-1,-1,0,23677,0,19227 +102714,0,1,0,-1,-1,0,13385,0,19383 +102715,0,0,-1,-1,-1,0,24421,0,20076 +102716,0,1,0,-1,-1,0,9315,0,19526 +102717,0,1,0,-1,-1,0,9408,0,19527 +102718,0,1,0,-1,-1,0,23732,0,19355 +102719,0,0,-1,-1,-1,0,13818,0,11202 +102720,0,1,0,-1,-1,0,13385,0,19888 +102721,1,1,0,-1,-1,0,13674,0,19888 +102722,0,1,0,-1,-1,0,18038,0,20264 +102723,1,1,0,-1,-1,0,21619,0,20264 +102724,0,1,0,-1,-1,0,18379,0,20265 +102725,1,1,0,-1,-1,0,9408,0,20265 +102726,0,0,0,180000,20000,1141,24544,0,19959 +102727,0,1,0,-1,-1,0,24291,0,19961 +102728,0,1,0,-1,-1,0,24292,0,19962 +102729,0,1,0,-1,-1,0,9333,0,19384 +102730,1,1,0,-1,-1,0,15464,0,19384 +102731,0,1,0,-1,-1,0,9345,0,20037 +102732,0,1,0,-1,-1,0,18057,0,19886 +102733,0,0,-5,1500,-1,0,24737,0,20409 +102734,0,0,-5,1500,-1,0,24724,0,20411 +102735,0,0,0,-1,-1,0,469,0,1125 +102736,0,1,0,-1,-1,0,14127,0,19895 +102737,0,1,0,-1,-1,0,21364,0,19571 +102738,0,1,0,-1,-1,0,21618,0,19573 +102739,0,0,-1,-1,-1,0,10571,0,8402 +102740,0,1,0,-1,-1,0,18050,0,19864 +102741,0,1,0,-1,-1,0,9335,0,19865 +102742,1,1,0,-1,-1,0,7597,0,19865 +102743,0,0,-1,0,0,0,531,0,9053 +102744,0,0,-1,0,0,0,944,0,9124 +102745,0,1,0,-1,-1,0,23990,0,20094 +102746,1,1,0,-1,-1,0,9415,0,20094 +102747,0,0,-1,-1,-1,0,23715,0,19330 +102748,0,1,0,-1,-1,0,9318,0,19430 +102749,1,1,0,-1,-1,0,21626,0,19430 +102750,0,1,0,-1,-1,0,17898,0,20329 +102751,1,1,0,-1,-1,0,18378,0,20329 +102752,0,1,0,0,0,0,9308,0,20332 +102753,1,1,0,-1,-1,0,21619,0,20332 +102754,0,1,0,0,0,0,9308,0,20333 +102755,1,1,0,-1,-1,0,21619,0,20333 +102756,0,0,-5,1500,-1,0,24741,0,20414 +102757,0,0,-1,-1,-1,0,24861,0,20510 +102758,0,0,-1,-1,-1,0,24862,0,20511 +102759,0,0,0,180000,25000,1141,24865,0,20512 +102760,0,1,0,-1,-1,0,23990,0,20202 +102761,0,0,-1,-1,-1,0,24142,0,19776 +102762,0,1,0,-1,-1,0,23990,0,20168 +102763,1,1,0,-1,-1,0,9138,0,20168 +102764,0,1,0,-1,-1,0,23990,0,20169 +102765,0,0,0,300000,30000,1141,23720,0,19337 +102766,0,0,-1,-1,-1,0,1089,0,9215 +102767,0,1,0,-1,-1,0,23990,0,20170 +102768,1,1,0,-1,-1,0,9141,0,20170 +102769,0,1,0,-1,-1,0,18379,0,20479 +102770,1,1,0,-1,-1,0,9344,0,20479 +102771,1,1,0,-1,-1,0,7598,0,20487 +102772,2,1,0,-1,-1,0,14097,0,20487 +102773,0,0,-1,-1,-1,0,24916,0,20555 +102774,0,1,0,-1,-1,0,7517,0,19822 +102775,0,1,0,-1,-1,0,7597,0,19823 +102776,0,1,0,-1,-1,0,7597,0,19825 +102777,0,0,-1,-1,-1,0,24160,0,19783 +102778,0,0,-1,-1,-1,0,24161,0,19784 +102779,0,1,0,-1,-1,0,18384,0,20097 +102780,1,1,0,-1,-1,0,9415,0,20097 +102781,0,1,0,-1,-1,0,9396,0,19367 +102782,0,1,0,-1,-1,0,18384,0,20046 +102783,0,0,-1,-1,-1,0,24422,0,20077 +102784,0,0,-1,-1,-1,0,24284,0,19820 +102785,0,1,0,-1,-1,0,15464,0,19693 +102786,0,0,-1,-1,-1,0,24302,0,19971 +102787,0,1,0,-1,-1,0,7597,0,19985 +102788,0,1,0,-1,-1,0,24351,0,19986 +102789,0,1,0,-1,-1,0,18030,0,19928 +102790,0,0,-1,-1,-1,0,24129,0,19772 +102791,0,1,0,-1,-1,0,7597,0,20106 +102792,0,1,0,-1,-1,0,18046,0,19385 +102793,1,1,0,-1,-1,0,18384,0,19385 +102794,0,1,0,-1,-1,0,13670,0,19386 +102795,0,0,-1,-1,-1,0,24162,0,19785 +102796,0,1,0,-1,-1,0,23990,0,20049 +102797,0,1,0,-1,-1,0,18382,0,19356 +102798,1,1,0,-1,-1,0,23728,0,19356 +102799,0,2,0,-1,-1,0,24251,0,19901 +102800,1,1,0,-1,-1,0,9141,0,19901 +102801,2,1,0,-1,-1,0,24591,0,19901 +102802,0,0,0,-1,-1,0,23678,0,19264 +102803,0,0,0,-1,-1,0,23680,0,19279 +102804,0,1,0,-1,-1,0,7823,0,19972 +102805,0,1,0,-1,-1,0,14049,0,19866 +102806,0,0,-5,1500,-1,0,24720,0,20413 +102807,0,1,0,-1,-1,0,21361,0,20425 +102808,0,1,0,-1,-1,0,23990,0,20093 +102809,0,1,0,-1,-1,0,23727,0,20034 +102810,1,1,0,-1,-1,0,14054,0,20034 +102811,0,0,-1,-1,-1,0,24149,0,19782 +102812,0,0,-1,-1,-1,0,24289,0,19813 +102813,0,1,0,-1,-1,0,7597,0,20042 +102814,0,0,0,-1,-1,0,23678,0,19259 +102815,0,0,0,-1,-1,0,23680,0,19280 +102816,0,0,0,-1,-1,0,23680,0,19284 +102817,0,1,0,-1,-1,0,23990,0,20111 +102818,0,1,0,-1,-1,0,23990,0,20112 +102819,1,1,0,-1,-1,0,9141,0,20112 +102820,0,1,0,-1,-1,0,23990,0,20113 +102821,1,1,0,-1,-1,0,9138,0,20113 +102822,0,0,-1,-1,-1,0,23668,0,19215 +102823,0,1,0,-1,-1,0,9142,0,19508 +102824,0,1,0,-1,-1,0,7597,0,19856 +102825,1,1,0,-1,-1,0,14049,0,19856 +102826,0,1,0,-1,-1,0,23990,0,20095 +102827,1,1,0,-1,-1,0,9398,0,20095 +102828,0,1,0,-1,-1,0,18384,0,19390 +102829,1,1,0,-1,-1,0,21627,0,19390 +102830,0,0,-1,0,0,0,952,0,9136 +102831,0,0,-1,0,0,0,946,0,9143 +102832,0,0,-1,0,0,0,946,0,9164 +102833,0,1,0,-1,-1,0,9408,0,19841 +102834,0,1,0,-1,-1,0,9315,0,19842 +102835,0,0,-1,-1,-1,0,24370,0,20012 +102836,0,1,0,-1,-1,0,15464,0,20556 +102837,1,1,0,-1,-1,0,7597,0,20556 +102838,0,0,-1,60000,-1,79,24930,0,20557 +102839,0,1,0,-1,-1,0,13665,0,20139 +102840,0,1,0,-1,-1,0,23990,0,20114 +102841,0,1,0,-1,-1,0,7597,0,20115 +102842,1,1,0,-1,-1,0,9331,0,20115 +102843,0,0,-1,-1,-1,0,24163,0,19786 +102844,0,1,0,-1,-1,0,23990,0,20167 +102845,1,1,0,-1,-1,0,9329,0,20167 +102846,0,1,0,-1,-1,0,18384,0,20330 +102847,1,1,0,-1,-1,0,13831,0,20330 +102848,0,0,0,180000,20000,1141,24498,0,19952 +102849,0,1,0,-1,-1,0,7597,0,20153 +102850,1,1,0,-1,-1,0,9139,0,20153 +102851,0,1,0,-1,-1,0,18384,0,20163 +102852,1,1,0,-1,-1,0,9343,0,20163 +102853,1,1,0,-1,-1,0,7597,0,20488 +102854,2,1,0,-1,-1,0,21432,0,20488 +102855,0,1,0,-1,-1,0,18052,0,19370 +102856,0,1,0,-1,-1,0,21365,0,19371 +102857,0,0,-1,0,1000,11,24005,0,21236 +102858,0,1,0,-1,-1,0,23990,0,20181 +102859,0,1,0,-1,-1,0,7597,0,20193 +102860,1,1,0,-1,-1,0,9331,0,20193 +102861,0,1,0,-1,-1,0,17367,0,20258 +102862,0,1,0,-1,-1,0,23990,0,20102 +102863,0,1,0,-1,-1,0,18384,0,20103 +102864,0,1,0,-1,-1,0,14127,0,19378 +102865,0,1,0,-1,-1,0,13383,0,19968 +102866,1,1,0,-1,-1,0,7711,0,19968 +102867,0,1,0,-1,-1,0,23990,0,20050 +102868,0,1,0,-1,-1,0,23990,0,20052 +102869,1,1,0,-1,-1,0,9329,0,20052 +102870,0,0,-1,0,3000,79,24363,0,20007 +102871,0,0,-1,0,120000,4,24364,0,20008 +102872,0,1,0,-1,-1,0,18384,0,20171 +102873,0,1,0,-1,-1,0,7517,0,19867 +102874,0,1,0,-1,-1,0,15806,0,19869 +102875,1,1,0,-1,-1,0,7597,0,19869 +102876,0,1,0,-1,-1,0,9318,0,19870 +102877,0,0,-5,1500,-1,0,24733,0,20410 +102878,0,1,0,-1,-1,0,21361,0,20434 +102879,0,1,0,-1,-1,0,18029,0,22469 +102880,1,1,0,-1,-1,0,21626,0,22469 +102881,0,1,0,-1,-1,0,21628,0,22470 +102882,1,1,0,-1,-1,0,18032,0,22470 +102883,0,1,0,-1,-1,0,13385,0,21994 +102884,0,1,0,-1,-1,0,15464,0,21995 +102885,0,1,0,-1,-1,0,23727,0,22504 +102886,1,1,0,-1,-1,0,28767,0,22504 +102887,2,1,0,-1,-1,0,18384,0,22504 +102888,0,0,-1,1000,2000,1136,26521,0,21744 +102889,0,0,-1,60000,-1,0,25823,0,21745 +102890,0,1,0,-1,-1,0,7597,0,21316 +102891,0,1,0,-1,-1,0,7597,0,21317 +102892,0,0,-1,60000,-1,0,25860,0,21212 +102893,0,1,0,-1,-1,0,13665,0,20616 +102894,0,1,0,-1,-1,0,14027,0,20622 +102895,0,1,0,-1,-1,0,17493,0,20635 +102896,0,1,0,-1,-1,0,26142,0,23220 +102897,0,1,0,-1,-1,0,29150,0,23221 +102898,0,1,0,0,-1,0,14799,0,22336 +102899,0,2,0,-1,-1,0,26693,0,21856 +102900,0,0,0,600000,60000,94,26066,0,21326 +102901,0,0,-1,0,0,0,27113,0,22034 +102902,0,1,0,-1,-1,0,18384,0,21483 +102903,1,1,0,-1,-1,0,21625,0,21483 +102904,2,1,0,-1,-1,0,9415,0,21483 +102905,0,1,0,-1,-1,0,13384,0,21485 +102906,0,0,0,-1,-1,0,27671,0,22298 +102907,0,0,0,-1,-1,0,27671,0,22299 +102908,0,1,0,-1,-1,0,9416,0,22090 +102909,1,1,0,-1,-1,0,7597,0,22090 +102910,0,0,-1,-1,-1,0,27719,0,22121 +102911,0,1,0,-1,-1,0,13384,0,20619 +102912,0,1,0,-1,-1,0,9316,0,20707 +102913,0,0,-1,1000,2000,1136,26328,0,21577 +102914,0,0,-1,1000,2000,1136,26329,0,21578 +102915,0,0,0,180000,-1,0,26391,0,21579 +102916,0,1,0,-1,-1,0,9344,0,20706 +102917,0,1,0,-1,-1,0,7518,0,20710 +102918,0,0,-1,0,0,79,27653,0,22192 +102919,0,1,0,-1,-1,0,27851,0,22397 +102920,0,1,0,-1,-1,0,13665,0,21675 +102921,0,0,-1,0,1000,11,26263,0,21537 +102922,0,0,-1,-1,2000,0,25822,0,21747 +102923,0,1,0,-1,-1,0,18384,0,21802 +102924,1,1,0,-1,-1,0,9343,0,21802 +102925,0,1,0,-1,-1,0,23046,0,23282 +102926,1,1,0,-1,-1,0,14248,0,23282 +102927,0,0,0,1000,-1,11,26373,0,21739 +102928,0,1,0,-1,-1,0,9408,0,21470 +102929,0,1,0,-1,-1,0,9317,0,21472 +102930,1,1,0,-1,-1,0,18384,0,21472 +102931,0,0,0,180000,30000,1141,26166,0,21473 +102932,0,1,0,-1,-1,0,15464,0,22013 +102933,1,1,0,-1,-1,0,27038,0,22013 +102934,0,1,0,-1,-1,0,18384,0,21804 +102935,1,1,0,-1,-1,0,14799,0,21804 +102936,0,1,0,-1,-1,0,13385,0,21805 +102937,1,1,0,-1,-1,0,27043,0,22015 +102938,0,0,-1,-1,-1,0,24896,0,20542 +102939,0,0,-1,-1,-1,0,25981,0,21282 +102940,0,1,0,-1,-1,0,9417,0,20694 +102941,0,1,0,-1,-1,0,9331,0,20695 +102942,0,0,0,-1,-1,0,25018,0,20651 +102943,0,1,0,-1,-1,0,7679,0,19827 +102944,0,1,0,-1,-1,0,27848,0,22401 +102945,0,1,0,-1,-1,0,27850,0,22400 +102946,0,1,0,-1,-1,0,26158,0,21452 +102947,1,1,0,-1,-1,0,18384,0,21452 +102948,2,1,0,-1,-1,0,23727,0,21452 +102949,0,1,0,-1,-1,0,15464,0,21455 +102950,0,1,0,-1,-1,0,13669,0,21456 +102951,1,1,0,-1,-1,0,13384,0,21456 +102952,0,1,0,-1,-1,0,14248,0,23255 +102953,1,1,0,-1,-1,0,18384,0,23255 +102954,0,1,0,-1,-1,0,14054,0,22333 +102955,0,0,-1,-1,-1,0,27592,0,22219 +102956,0,1,0,-1,-1,0,13388,0,22420 +102957,1,1,0,-1,-1,0,13669,0,22420 +102958,0,1,0,-1,-1,0,18038,0,22465 +102959,1,1,0,-1,-1,0,21365,0,22465 +102960,0,0,0,-1,-1,0,27669,0,22294 +102961,0,0,0,-1,-1,0,27670,0,22297 +102962,0,1,0,-1,-1,0,18014,0,22342 +102963,0,0,-1,0,0,0,26793,0,22021 +102964,0,0,-1,0,0,0,27093,0,22022 +102965,0,0,-1,0,0,0,27104,0,22025 +102966,0,0,-1,-1,-1,0,27704,0,22119 +102967,0,1,0,-1,-1,0,7517,0,21392 +102968,0,1,0,-1,-1,0,23727,0,19876 +102969,0,0,-1,-1,-1,0,25688,0,21039 +102970,0,1,0,0,0,0,9317,0,22334 +102971,0,1,0,-1,-1,0,14798,0,22335 +102972,1,1,0,-1,-1,0,23727,0,22335 +102973,0,1,0,-1,-1,0,9346,0,22273 +102974,1,1,0,-1,-1,0,18384,0,22273 +102975,0,1,0,-1,-1,0,9396,0,22112 +102976,1,1,0,-1,-1,0,21623,0,22112 +102977,0,0,0,-1,-1,0,27241,0,22114 +102978,0,0,-1,-1,-1,0,27716,0,22122 +102979,0,1,0,-1,-1,0,9334,0,22378 +102980,0,1,0,-1,-1,0,27859,0,22395 +102981,0,1,0,-1,-1,0,9398,0,22095 +102982,0,1,0,-1,-1,0,9415,0,22111 +102983,0,0,0,-1,-1,0,27671,0,22300 +102984,0,0,0,0,600000,1139,27184,0,22049 +102985,0,0,-1,-1,-1,0,27594,0,22214 +102986,0,0,-1,-1,-1,0,26278,0,21547 +102987,0,0,-1,1000,2000,1136,26517,0,21718 +102988,0,0,-1,1000,2000,1136,26518,0,21719 +102989,0,0,-1,-1,-1,0,26587,0,21761 +102990,0,1,0,-1,-1,0,7518,0,22671 +102991,0,1,0,-1,-1,0,7597,0,22672 +102992,1,1,0,-1,-1,0,15464,0,22672 +102993,0,1,0,-1,-1,0,7597,0,22673 +102994,1,1,0,-1,-1,0,15464,0,22673 +102995,0,1,0,-1,-1,0,7597,0,21581 +102996,1,1,0,-1,-1,0,15464,0,21581 +102997,0,1,0,-1,-1,0,18038,0,21582 +102998,1,1,0,-1,-1,0,21364,0,21582 +102999,0,1,0,-1,-1,0,18031,0,21583 +103000,1,1,0,-1,-1,0,18378,0,21583 +103001,0,1,0,-1,-1,0,7597,0,23243 +103002,0,1,0,-1,-1,0,18055,0,21698 +103003,1,1,0,-1,-1,0,21627,0,21698 +103004,0,1,0,-1,-1,0,13384,0,21700 +103005,0,1,0,-1,-1,0,18029,0,19877 +103006,0,1,0,-1,-1,0,21632,0,22801 +103007,1,1,0,-1,-1,0,28736,0,22801 +103008,1,1,0,-1,-1,0,7597,0,22802 +103009,2,1,0,-1,-1,0,15464,0,22802 +103010,0,0,-1,1000,1500,1136,26291,0,21558 +103011,0,0,-1,1000,1500,1136,26292,0,21559 +103012,0,1,0,-1,-1,0,13384,0,21331 +103013,0,1,0,-1,-1,0,14799,0,21803 +103014,1,1,0,-1,-1,0,7597,0,21803 +103015,0,0,0,0,3000,330,26054,0,21321 +103016,0,1,0,-1,-1,0,13390,0,21322 +103017,0,1,0,-1,-1,0,14047,0,21387 +103018,1,1,0,-1,-1,0,7597,0,21387 +103019,0,1,0,-1,-1,0,14049,0,22664 +103020,0,1,0,-1,-1,0,7597,0,22676 +103021,1,1,0,-1,-1,0,18384,0,22676 +103022,2,1,0,-1,-1,0,18379,0,22676 +103023,0,0,-1,-1,-1,0,27712,0,22175 +103024,0,1,0,-1,-1,0,15824,0,22191 +103025,1,1,0,-1,-1,0,7597,0,22191 +103026,2,1,0,-1,-1,0,27518,0,22191 +103027,0,1,0,-1,-1,0,9335,0,22194 +103028,1,1,0,-1,-1,0,7597,0,22194 +103029,2,1,0,-1,-1,0,27522,0,22194 +103030,0,1,0,-1,-1,0,14254,0,21806 +103031,1,1,0,-1,-1,0,21626,0,21806 +103032,0,1,0,-1,-1,0,7597,0,21809 +103033,1,1,0,-1,-1,0,15464,0,21809 +103034,0,1,0,-1,-1,0,18030,0,21810 +103035,0,0,0,86400000,-1,0,26265,0,21540 +103036,0,0,-1,-1,-1,0,26436,0,21731 +103037,0,0,-1,-1,-1,0,26846,0,21923 +103038,0,0,-1,-1,-1,0,27662,0,22200 +103039,0,1,0,-1,-1,0,7597,0,22322 +103040,0,0,-1,0,1000,11,1131,0,22324 +103041,0,0,0,-1,-1,0,27670,0,22295 +103042,0,0,0,-1,-1,0,27670,0,22296 +103043,0,0,0,-1,-1,0,27666,0,22289 +103044,0,0,0,600000,600000,1139,27517,0,21986 +103045,0,1,0,-1,-1,0,15807,0,22665 +103046,0,1,0,-1,-1,0,9332,0,22666 +103047,0,1,0,-1,-1,0,9406,0,22667 +103048,0,1,0,-1,-1,0,9317,0,22424 +103049,1,1,0,-1,-1,0,21362,0,22424 +103050,0,0,-1,0,0,0,7211,0,22432 +103051,0,1,0,-1,-1,0,7598,0,22438 +103052,1,1,0,-1,-1,0,21625,0,22438 +103053,0,1,0,-1,-1,0,15464,0,22442 +103054,1,1,0,-1,-1,0,7597,0,22442 +103055,2,1,0,-1,-1,0,21625,0,22442 +103056,0,1,0,-1,-1,0,18056,0,21407 +103057,1,1,0,-1,-1,0,26153,0,21407 +103058,0,1,0,-1,-1,0,9318,0,21704 +103059,0,0,-1,1000,2000,1136,26488,0,21714 +103060,0,1,0,-1,-1,0,7597,0,21715 +103061,1,1,0,-1,-1,0,9331,0,21715 +103062,0,0,-1,1000,2000,1136,26516,0,21717 +103063,0,1,0,-1,-1,0,14248,0,21464 +103064,1,1,0,-1,-1,0,25975,0,21464 +103065,0,1,0,-1,-1,0,15760,0,21837 +103066,1,1,0,-1,-1,0,15807,0,21837 +103067,0,1,0,-1,-1,0,14798,0,21838 +103068,1,1,0,-1,-1,0,23729,0,21838 +103069,0,1,0,-1,-1,0,26814,0,21839 +103070,1,1,0,-1,-1,0,21625,0,21839 +103071,0,0,-1,0,1000,11,1129,0,21552 +103072,0,0,-1,1000,1500,1136,26286,0,21557 +103073,0,0,-1,-1,-1,0,26434,0,21729 +103074,0,0,-1,-1,-1,0,27717,0,22174 +103075,0,1,0,-1,-1,0,14054,0,21608 +103076,1,1,0,-1,-1,0,18384,0,21608 +103077,0,1,0,-1,-1,0,18030,0,22468 +103078,1,1,0,-1,-1,0,21626,0,22468 +103079,0,0,-1,1000,1500,1136,26338,0,21595 +103080,0,1,0,-1,-1,0,9330,0,21708 +103081,0,1,0,-1,-1,0,7517,0,21506 +103082,0,0,-1,-1,-1,0,26588,0,21762 +103083,0,1,0,-1,-1,0,18055,0,21343 +103084,1,1,0,-1,-1,0,18384,0,21343 +103085,2,1,0,-1,-1,0,26283,0,21343 +103086,0,1,0,-1,-1,0,9417,0,22084 +103087,1,1,0,-1,-1,0,21628,0,22084 +103088,0,1,0,-1,-1,0,9417,0,22093 +103089,1,1,0,-1,-1,0,21618,0,22093 +103090,0,1,0,-1,-1,0,9417,0,22101 +103091,0,1,0,-1,-1,0,9395,0,22108 +103092,0,0,0,0,60000,1140,27616,0,22115 +103093,0,1,0,-1,-1,0,18029,0,21462 +103094,1,1,0,-1,-1,0,21363,0,21462 +103095,0,1,0,-1,-1,0,14799,0,21624 +103096,1,1,0,-1,-1,0,18384,0,21624 +103097,0,0,0,-1,-1,0,26469,0,21309 +103098,0,1,0,-1,-1,0,18054,0,21709 +103099,1,1,0,-1,-1,0,23727,0,21709 +103100,0,0,0,600000,-1,11,26373,0,21711 +103101,0,1,0,-1,-1,0,18037,0,21712 +103102,1,1,0,-1,-1,0,18379,0,21712 +103103,0,1,0,-1,-1,0,9343,0,21388 +103104,1,1,0,-1,-1,0,21362,0,21388 +103105,0,1,0,-1,-1,0,9346,0,21389 +103106,1,1,0,-1,-1,0,18384,0,21389 +103107,2,1,0,-1,-1,0,7597,0,21389 +103108,0,1,0,-1,-1,0,9345,0,21390 +103109,1,1,0,-1,-1,0,7597,0,21390 +103110,2,1,0,-1,-1,0,21618,0,21390 +103111,0,1,0,-1,-1,0,9343,0,21391 +103112,1,1,0,-1,-1,0,21625,0,21391 +103113,0,1,0,-1,-1,0,14127,0,21344 +103114,1,1,0,-1,-1,0,23727,0,21344 +103115,2,1,0,-1,-1,0,21362,0,21344 +103116,0,1,0,-1,-1,0,14799,0,21354 +103117,1,1,0,-1,-1,0,21625,0,21354 +103118,0,1,0,-1,-1,0,14799,0,21355 +103119,1,1,0,-1,-1,0,21362,0,21355 +103120,2,1,0,-1,-1,0,25975,0,21355 +103121,0,0,-1,-1,-1,0,26280,0,21548 +103122,0,0,0,0,3000,330,26056,0,21323 +103123,0,0,0,0,3000,330,26055,0,21324 +103124,0,0,-1,60000,-1,0,25823,0,21536 +103125,0,0,-1,-1,-1,0,27702,0,22117 +103126,0,1,0,-1,-1,0,27656,0,22321 +103127,0,1,0,-1,-1,0,15464,0,22348 +103128,0,1,0,-1,-1,0,9417,0,21486 +103129,0,0,-1,-1,-1,0,26430,0,21725 +103130,0,0,-1,-1,-1,0,26431,0,21726 +103131,0,0,0,180000,-1,0,26400,0,21647 +103132,0,1,0,-1,-1,0,14799,0,21648 +103133,0,1,0,-1,-1,0,13387,0,22669 +103134,0,1,0,-1,-1,0,13383,0,22670 +103135,0,0,-1,-1,-1,0,27706,0,22173 +103136,0,0,-1,-1,-1,0,27714,0,22177 +103137,0,1,0,-1,-1,0,9346,0,21418 +103138,0,0,-88,3000,-1,0,26374,0,21713 +103139,0,1,0,-1,-1,0,18384,0,21597 +103140,1,1,0,-1,-1,0,23727,0,21597 +103141,2,1,0,-1,-1,0,14799,0,21597 +103142,0,1,0,-1,-1,0,9417,0,21487 +103143,1,1,0,-1,-1,0,18384,0,21487 +103144,0,0,0,180000,-1,0,26168,0,21488 +103145,0,1,0,-1,-1,0,13384,0,21621 +103146,0,0,-3,600000,60000,24,26067,0,21325 +103147,0,1,0,-1,-1,0,13384,0,21329 +103148,0,1,0,-1,-1,0,7517,0,21333 +103149,0,1,0,-1,-1,0,15715,0,21588 +103150,1,1,0,-1,-1,0,18379,0,21588 +103151,0,0,-1,1000,1500,1136,26333,0,21589 +103152,0,0,-1,1000,1500,1136,26334,0,21590 +103153,0,0,-1,1000,1500,1136,26335,0,21591 +103154,0,1,0,-1,-1,0,21473,0,22198 +103155,1,1,0,-1,-1,0,18676,0,22198 +103156,2,1,0,-1,-1,0,27561,0,22198 +103157,0,1,0,0,0,0,7597,0,22326 +103158,1,1,0,-1,-1,0,21361,0,22326 +103159,0,0,-1,-1,-1,0,25087,0,20726 +103160,0,1,0,-1,-1,0,15464,0,21602 +103161,0,1,0,-1,-1,0,14254,0,21603 +103162,0,1,0,-1,-1,0,15696,0,21604 +103163,0,1,0,-1,-1,0,15464,0,21403 +103164,0,1,0,-1,-1,0,15464,0,21404 +103165,0,1,0,-1,-1,0,18057,0,21334 +103166,1,1,0,-1,-1,0,18384,0,21334 +103167,2,1,0,-1,-1,0,26283,0,21334 +103168,0,1,0,-1,-1,0,14127,0,21338 +103169,1,1,0,-1,-1,0,25975,0,21338 +103170,0,1,0,-1,-1,0,18053,0,21351 +103171,1,1,0,-1,-1,0,18384,0,21351 +103172,2,1,0,-1,-1,0,25975,0,21351 +103173,0,1,0,-1,-1,0,7597,0,21650 +103174,1,1,0,-1,-1,0,9331,0,21650 +103175,0,0,-1,1000,1500,1136,26336,0,21592 +103176,0,0,-1,1000,1500,1136,26337,0,21593 +103177,0,1,0,-1,-1,0,17899,0,21527 +103178,0,1,0,-1,-1,0,15464,0,21394 +103179,0,1,0,-1,-1,0,21618,0,21395 +103180,0,1,0,-1,-1,0,9342,0,21396 +103181,0,1,0,-1,-1,0,15464,0,21701 +103182,0,1,0,-1,-1,0,14798,0,21703 +103183,0,0,0,120000,-1,0,26074,0,21328 +103184,0,1,0,-1,-1,0,14254,0,21607 +103185,1,1,0,-1,-1,0,21363,0,21607 +103186,0,0,-1,-1,-1,0,26389,0,21721 +103187,0,0,-1,-1,-1,0,26411,0,21722 +103188,0,0,-1,-1,-1,0,26429,0,21724 +103189,0,1,0,-1,-1,0,9417,0,22655 +103190,0,1,0,-1,-1,0,7597,0,22656 +103191,0,1,0,-1,-1,0,15816,0,21651 +103192,1,1,0,-1,-1,0,7598,0,21651 +103193,0,1,0,-1,-1,0,27797,0,22345 +103194,0,1,0,-1,-1,0,9397,0,22270 +103195,0,0,0,-1,-1,0,27669,0,22292 +103196,0,1,0,-1,-1,0,14054,0,21594 +103197,1,1,0,-1,-1,0,23727,0,21594 +103198,0,1,0,-1,-1,0,17371,0,21683 +103199,0,1,0,-1,-1,0,17371,0,21694 +103200,0,0,-1,-1,-1,0,26432,0,21727 +103201,0,0,-1,-1,-1,0,26433,0,21728 +103202,0,1,0,-1,-1,0,18029,0,21606 +103203,0,1,0,-1,-1,0,14127,0,21335 +103204,1,1,0,-1,-1,0,25975,0,21335 +103205,2,1,0,-1,-1,0,23727,0,21335 +103206,0,1,0,-1,-1,0,26142,0,21398 +103207,0,1,0,-1,-1,0,9417,0,21399 +103208,0,1,0,-1,-1,0,9343,0,21400 +103209,0,1,0,0,0,0,9344,0,22657 +103210,0,1,0,0,0,0,14027,0,22659 +103211,1,1,0,-1,-1,0,7597,0,22659 +103212,0,0,-1,-1,-1,0,26846,0,21922 +103213,0,1,0,-1,-1,0,18050,0,21337 +103214,1,1,0,-1,-1,0,18384,0,21337 +103215,2,1,0,-1,-1,0,23727,0,21337 +103216,0,1,0,-1,-1,0,7597,0,21366 +103217,1,1,0,-1,-1,0,9417,0,21366 +103218,0,1,0,-1,-1,0,9345,0,21623 +103219,1,1,0,-1,-1,0,7597,0,21623 +103220,0,0,0,180000,-1,0,26467,0,21625 +103221,0,1,0,-1,-1,0,9416,0,21626 +103222,1,1,0,-1,-1,0,14049,0,21626 +103223,0,1,0,-1,-1,0,9318,0,22471 +103224,1,1,0,-1,-1,0,21619,0,22471 +103225,0,1,0,-1,-1,0,14799,0,23277 +103226,0,1,0,-1,-1,0,28539,0,23279 +103227,0,1,0,-1,-1,0,26395,0,21622 +103228,1,1,0,-1,-1,0,18384,0,21622 +103229,0,0,-1,30000,-1,0,27571,0,22218 +103230,0,0,-1,-1,-1,0,27596,0,22221 +103231,0,1,0,-1,-1,0,9407,0,22245 +103232,0,1,0,-1,-1,0,15464,0,22347 +103233,0,1,0,0,-1,0,7681,0,22327 +103234,1,1,0,-1,-1,0,18196,0,22328 +103235,0,1,0,-1,-1,0,17367,0,21374 +103236,1,1,0,-1,-1,0,7597,0,21374 +103237,2,1,0,-1,-1,0,18384,0,21374 +103238,0,1,0,-1,-1,0,21365,0,21517 +103239,1,1,0,-1,-1,0,26208,0,21517 +103240,0,1,0,-1,-1,0,26204,0,21518 +103241,0,0,-1,-1,-1,0,26004,0,21519 +103242,0,1,0,-1,-1,0,27037,0,22003 +103243,0,1,0,-1,-1,0,18050,0,21352 +103244,1,1,0,-1,-1,0,21627,0,21352 +103245,0,1,0,-1,-1,0,15714,0,21318 +103246,0,1,0,-1,-1,0,18052,0,21336 +103247,1,1,0,-1,-1,0,18384,0,21336 +103248,0,1,0,-1,-1,0,7597,0,23219 +103249,1,1,0,-1,-1,0,15464,0,23219 +103250,0,1,0,-1,-1,0,7597,0,21364 +103251,1,1,0,-1,-1,0,15464,0,21364 +103252,0,1,0,-1,-1,0,9396,0,21367 +103253,0,1,0,-1,-1,0,7598,0,23226 +103254,0,1,0,-1,-1,0,18053,0,22501 +103255,0,1,0,-1,-1,0,14127,0,22502 +103256,1,1,0,-1,-1,0,23727,0,22502 +103257,0,1,0,-1,-1,0,25975,0,22503 +103258,1,1,0,-1,-1,0,14054,0,22503 +103259,0,1,0,-1,-1,0,21363,0,21397 +103260,0,1,0,-1,-1,0,13665,0,21598 +103261,1,1,0,-1,-1,0,13387,0,21598 +103262,0,1,0,-1,-1,0,7597,0,21599 +103263,0,1,0,-1,-1,0,18052,0,21600 +103264,0,0,-1,0,0,0,27108,0,22029 +103265,0,1,0,-1,-1,0,9398,0,22063 +103266,0,0,-1,0,0,79,27652,0,22193 +103267,0,0,0,-1,-1,0,27360,0,22048 +103268,0,1,0,-1,-1,0,9416,0,22065 +103269,1,1,0,-1,-1,0,18384,0,22065 +103270,0,1,0,-1,-1,0,9417,0,22066 +103271,1,1,0,-1,-1,0,23727,0,22066 +103272,0,1,0,-1,-1,0,9417,0,22078 +103273,0,0,-1,-1,-1,0,26088,0,21358 +103274,0,1,0,-1,-1,0,15464,0,21359 +103275,0,1,0,-1,-1,0,15464,0,21361 +103276,0,1,0,-1,-1,0,17872,0,23237 +103277,1,1,0,-1,-1,0,18384,0,23237 +103278,0,1,0,-1,-1,0,15715,0,21469 +103279,0,1,0,-1,-1,0,14248,0,21697 +103280,0,1,0,-1,-1,0,9342,0,22379 +103281,0,1,0,-1,-1,0,18030,0,22380 +103282,0,1,0,-1,-1,0,13388,0,21601 +103283,0,1,0,-1,-1,0,21361,0,21401 +103284,0,1,0,-1,-1,0,18042,0,22466 +103285,1,1,0,-1,-1,0,21629,0,22466 +103286,0,1,0,-1,-1,0,18032,0,22467 +103287,1,1,0,-1,-1,0,21626,0,22467 +103288,0,1,0,-1,-1,0,9415,0,22079 +103289,1,1,0,-1,-1,0,21360,0,22079 +103290,0,1,0,-1,-1,0,9416,0,22080 +103291,1,1,0,-1,-1,0,21626,0,22080 +103292,2,1,0,-1,-1,0,18384,0,22080 +103293,0,1,0,-1,-1,0,9342,0,22149 +103294,0,1,0,-1,-1,0,21363,0,20618 +103295,1,1,0,-1,-1,0,14054,0,20618 +103296,0,0,-1,-1,-1,0,26445,0,21737 +103297,0,1,0,-1,-1,0,9343,0,23289 +103298,0,1,0,-1,-1,0,18384,0,23295 +103299,1,1,0,-1,-1,0,9343,0,23295 +103300,0,1,0,-1,-1,0,7598,0,23301 +103301,0,0,-1,-1,-1,0,27710,0,22120 +103302,0,1,0,-1,-1,0,21364,0,21696 +103303,0,1,0,-1,-1,0,14799,0,22383 +103304,1,1,0,-1,-1,0,25975,0,22383 +103305,0,1,0,-1,-1,0,18038,0,22464 +103306,1,1,0,-1,-1,0,21635,0,22464 +103307,0,0,-1,-1,-1,0,27593,0,22222 +103308,0,1,0,-1,-1,0,9342,0,22223 +103309,0,1,0,-1,-1,0,9346,0,22225 +103310,0,1,0,-1,-1,0,7597,0,22651 +103311,1,1,0,-1,-1,0,15464,0,22651 +103312,0,1,0,-1,-1,0,14248,0,22652 +103313,0,1,0,-1,-1,0,9344,0,22654 +103314,0,1,0,-1,-1,0,27225,0,22060 +103315,1,1,0,-1,-1,0,7597,0,22060 +103316,0,1,0,-1,-1,0,27206,0,22061 +103317,0,1,0,-1,-1,0,9343,0,22062 +103318,0,1,0,-1,-1,0,14248,0,22064 +103319,0,1,0,-1,-1,0,26228,0,21523 +103320,0,1,0,-1,-1,0,9398,0,21678 +103321,0,1,0,-1,-1,0,26460,0,21273 +103322,1,1,0,-1,-1,0,23729,0,21273 +103323,2,1,0,-1,-1,0,18384,0,21273 +103324,0,1,0,-1,-1,0,26461,0,21275 +103325,1,1,0,-1,-1,0,21643,0,21275 +103326,0,1,0,-1,-1,0,21632,0,23027 +103327,1,0,0,180000,-1,0,28760,0,23027 +103328,0,0,-1,-1,-1,0,27684,0,22393 +103329,0,1,0,-1,-1,0,18029,0,22394 +103330,0,1,0,-1,-1,0,27855,0,22396 +103331,0,1,0,-1,-1,0,18384,0,22886 +103332,1,1,0,-1,-1,0,14248,0,22886 +103333,0,1,0,-1,-1,0,14248,0,22887 +103334,1,1,0,-1,-1,0,18384,0,22887 +103335,0,1,0,-1,-1,0,18057,0,21461 +103336,1,1,0,-1,-1,0,18384,0,21461 +103337,0,1,0,-1,-1,0,18030,0,21889 +103338,0,1,0,-1,-1,0,17371,0,21890 +103339,0,0,0,180000,-1,0,26789,0,21891 +103340,0,1,0,-1,-1,0,9396,0,21365 +103341,0,1,0,-1,-1,0,7597,0,21370 +103342,1,1,0,-1,-1,0,9415,0,21370 +103343,0,1,0,-1,-1,0,9416,0,21409 +103344,0,1,0,-1,-1,0,15464,0,21688 +103345,0,0,-1,1000,2000,1136,26490,0,21716 +103346,0,0,-1,1000,2000,1136,26519,0,21720 +103347,0,0,-1,-1,-1,0,26444,0,21738 +103348,0,1,0,-1,-1,0,18049,0,23276 +103349,0,1,0,-1,-1,0,15808,0,21126 +103350,1,1,0,-1,-1,0,7574,0,21126 +103351,0,1,0,-1,-1,0,23732,0,21128 +103352,1,1,0,-1,-1,0,25767,0,21128 +103353,0,0,-1,-1,-1,0,25978,0,21279 +103354,0,0,-1,-1,-1,0,25979,0,21280 +103355,0,0,-1,-1,-1,0,3723,0,22890 +103356,0,1,0,-1,-1,0,18035,0,22515 +103357,1,1,0,-1,-1,0,21361,0,22515 +103358,0,0,0,-1,-1,0,27666,0,22291 +103359,0,0,0,-1,-1,0,27669,0,22293 +103360,0,1,0,-1,-1,0,18384,0,22427 +103361,1,1,0,-1,-1,0,18032,0,22427 +103362,2,1,0,-1,-1,0,21629,0,22427 +103363,0,0,-1,-1,-1,0,28249,0,22705 +103364,0,0,0,-9,-9,79,30297,0,23696 +103365,0,1,0,-1,-1,0,23727,0,21413 +103366,1,1,0,-1,-1,0,18056,0,21413 +103367,0,1,0,-1,-1,0,21363,0,20480 +103368,1,1,0,-1,-1,0,9416,0,20480 +103369,0,1,0,-1,-1,0,15464,0,21205 +103370,0,1,0,-1,-1,0,14248,0,21206 +103371,1,1,0,-1,-1,0,21625,0,21206 +103372,0,0,-1,0,0,0,24833,0,20620 +103373,0,0,-1,-1,-1,0,25136,0,20755 +103374,0,0,-1,-1,-1,0,25137,0,20756 +103375,0,1,0,-1,-1,0,15714,0,20682 +103376,0,1,0,-1,-1,0,15464,0,20683 +103377,0,0,-1,60000,-1,0,25860,0,21213 +103378,0,1,0,-1,-1,0,18042,0,21667 +103379,1,1,0,-1,-1,0,18384,0,21667 +103380,0,1,0,-1,-1,0,18053,0,21668 +103381,1,1,0,-1,-1,0,18384,0,21668 +103382,0,1,0,-1,-1,0,18038,0,21669 +103383,0,0,-1,-1,-1,0,25969,0,21307 +103384,0,1,0,-1,-1,0,18053,0,23031 +103385,1,1,0,-1,-1,0,23727,0,23031 +103386,0,0,-1,-1,-1,0,28328,0,22729 +103387,0,1,0,-1,-1,0,18384,0,22730 +103388,1,1,0,-1,-1,0,18057,0,22730 +103389,0,0,-1,-1,-1,0,28611,0,22891 +103390,0,1,0,-1,-1,0,15714,0,21207 +103391,1,1,0,-1,-1,0,21625,0,21207 +103392,0,0,-1,0,1000,11,25690,0,21072 +103393,0,0,-1,-1,-1,0,25705,0,21099 +103394,0,0,0,-1,-1,0,26010,0,21277 +103395,0,1,0,-1,-1,0,31750,0,24358 +103396,0,1,0,-1,-1,0,28852,0,23203 +103397,0,1,0,-1,-1,0,28851,0,23204 +103398,0,1,0,-1,-1,0,29112,0,23206 +103399,0,1,0,0,0,0,14799,0,23452 +103400,0,1,0,-1,-1,0,29369,0,23454 +103401,1,1,0,-1,-1,0,21626,0,23454 +103402,0,1,0,-1,-1,0,29113,0,23207 +103403,0,1,0,-1,-1,0,29113,0,23208 +103404,0,0,-1,-1,-1,0,25132,0,20751 +103405,0,0,0,-1,-1,0,26532,0,21301 +103406,0,0,-1,-1,-1,0,25974,0,21302 +103407,0,0,-1,-1,-1,0,25976,0,21303 +103408,0,0,-1,-1,-1,0,25967,0,21304 +103409,0,0,0,-1,-1,0,26541,0,21305 +103410,0,0,-1,-1,-1,0,25968,0,21306 +103411,0,1,0,-1,-1,0,21438,0,21272 +103412,0,1,0,-1,-1,0,21625,0,20648 +103413,0,1,0,-1,-1,0,7597,0,20665 +103414,0,1,0,-1,-1,0,7679,0,20666 +103415,0,1,0,-1,-1,0,7597,0,21278 +103416,1,1,0,-1,-1,0,15464,0,21278 +103417,0,1,0,-1,-1,0,9334,0,20703 +103418,0,1,0,-1,-1,0,13383,0,21196 +103419,0,1,0,-1,-1,0,13384,0,21199 +103420,0,1,0,-1,-1,0,9343,0,20714 +103421,1,1,0,-1,-1,0,21618,0,20714 +103422,0,1,0,-1,-1,0,28851,0,23006 +103423,0,1,0,-1,-1,0,13669,0,22418 +103424,1,1,0,-1,-1,0,21410,0,22418 +103425,0,1,0,-1,-1,0,15464,0,22419 +103426,1,1,0,-1,-1,0,28112,0,22419 +103427,2,1,0,-1,-1,0,13388,0,22419 +103428,0,1,0,-1,-1,0,13388,0,22421 +103429,1,1,0,-1,-1,0,21476,0,22421 +103430,2,1,0,-1,-1,0,28112,0,22421 +103431,0,0,-1,-1,-1,0,28248,0,22704 +103432,0,0,-1,-1,-1,0,28324,0,22726 +103433,0,1,0,-1,-1,0,9344,0,23264 +103434,1,1,0,-1,-1,0,18384,0,23264 +103435,0,0,-1,-1,-1,0,24874,0,20518 +103436,0,0,0,180000,180000,1155,25746,0,21115 +103437,0,0,0,180000,180000,1155,25747,0,21116 +103438,0,0,0,180000,180000,1155,25746,0,21117 +103439,0,0,0,180000,180000,1155,25747,0,21118 +103440,0,1,0,-1,-1,0,14054,0,20716 +103441,0,1,0,-1,-1,0,18035,0,20717 +103442,0,0,0,-1,-1,0,26528,0,21308 +103443,0,1,0,-1,-1,0,29369,0,23464 +103444,1,1,0,-1,-1,0,21626,0,23464 +103445,0,1,0,-1,-1,0,21364,0,23465 +103446,1,1,0,-1,-1,0,14054,0,23465 +103447,0,1,0,-1,-1,0,14249,0,22416 +103448,1,1,0,-1,-1,0,13669,0,22416 +103449,2,1,0,-1,-1,0,15465,0,22416 +103450,0,1,0,-1,-1,0,21409,0,22417 +103451,1,1,0,-1,-1,0,13669,0,22417 +103452,2,1,0,-1,-1,0,28325,0,22417 +103453,0,1,0,-1,-1,0,21364,0,22947 +103454,0,0,0,5000,-1,0,25851,0,21171 +103455,0,0,-1,-1,-1,0,24888,0,20528 +103456,0,0,-1,0,1000,11,1131,0,21033 +103457,0,0,-1,30000,-1,0,25677,0,21038 +103458,0,0,0,180000,180000,1155,25750,0,21119 +103459,0,0,0,180000,180000,1155,25750,0,21120 +103460,0,1,0,-1,-1,0,23990,0,20188 +103461,0,1,0,-1,-1,0,9342,0,20642 +103462,0,1,0,-1,-1,0,21618,0,20647 +103463,0,1,0,-1,-1,0,21626,0,21311 +103464,0,1,0,-1,-1,0,14027,0,21312 +103465,0,1,0,-1,-1,0,13383,0,21197 +103466,0,1,0,-1,-1,0,7516,0,19878 +103467,0,1,0,-1,-1,0,24243,0,19879 +103468,0,0,-5,1000,-1,0,25119,0,20746 +103469,0,0,-1,-1,-1,0,25138,0,20757 +103470,0,0,-1,-1,-1,0,25132,0,20758 +103471,0,0,-1,0,1000,11,25692,0,21071 +103472,0,0,-1,-1,-1,0,25658,0,21025 +103473,0,0,-1,-1,-1,0,25133,0,20752 +103474,0,0,-1,-1,-1,0,25134,0,20753 +103475,0,0,-1,-1,-1,0,25135,0,20754 +103476,0,0,-1,-1,-1,0,24891,0,20533 +103477,0,1,0,-1,-1,0,9417,0,20176 +103478,1,1,0,-1,-1,0,21618,0,20176 +103479,0,1,0,-1,-1,0,13669,0,21695 +103480,1,1,0,-1,-1,0,13384,0,21695 +103481,0,0,-1,-1,-1,0,26435,0,21730 +103482,0,1,0,-1,-1,0,18035,0,21666 +103483,1,1,0,-1,-1,0,21620,0,21666 +103484,0,1,0,-1,-1,0,9317,0,21690 +103485,1,1,0,-1,-1,0,21626,0,21690 +103486,0,1,0,-1,-1,0,14798,0,21345 +103487,1,1,0,-1,-1,0,25975,0,21345 +103488,2,1,0,-1,-1,0,21362,0,21345 +103489,0,0,-1,-1,-1,0,26089,0,21369 +103490,0,0,-1,-1,-1,0,26091,0,21371 +103491,0,0,-1,0,1000,11,25660,0,21023 +103492,0,0,-1,0,1000,11,1129,0,21030 +103493,0,1,0,-1,-1,0,18054,0,21585 +103494,1,1,0,-1,-1,0,23727,0,21585 +103495,0,1,0,-1,-1,0,13385,0,21200 +103496,0,1,0,-1,-1,0,15813,0,20669 +103497,0,1,0,-1,-1,0,18384,0,20674 +103498,0,1,0,-1,-1,0,21629,0,20685 +103499,1,1,0,-1,-1,0,9314,0,20685 +103500,0,1,0,-1,-1,0,7597,0,20043 +103501,1,1,0,-1,-1,0,15806,0,20043 +103502,0,1,0,0,0,0,7597,0,20275 +103503,0,1,0,-1,-1,0,14027,0,20599 +103504,0,0,-1,-1,-1,0,24892,0,20535 +103505,0,0,-1,-1,-1,0,24911,0,20547 +103506,0,1,0,-1,-1,0,7597,0,20668 +103507,0,1,0,-1,-1,0,25906,0,21190 +103508,0,0,0,90000,-1,0,24998,0,20636 +103509,0,1,0,-1,-1,0,13384,0,20637 +103510,0,0,-1,0,1000,11,1131,0,21031 +103511,0,0,-1,0,3000,79,26276,0,21546 +103512,0,1,0,-1,-1,0,14049,0,21677 +103513,1,1,0,-1,-1,0,7597,0,21677 +103514,0,1,0,-1,-1,0,18035,0,21620 +103515,1,1,0,-1,-1,0,21620,0,21620 +103516,0,1,0,-1,-1,0,18050,0,21347 +103517,1,1,0,-1,-1,0,18384,0,21347 +103518,2,1,0,-1,-1,0,23727,0,21347 +103519,0,1,0,-1,-1,0,14127,0,21348 +103520,1,1,0,-1,-1,0,21628,0,21348 +103521,2,1,0,-1,-1,0,23727,0,21348 +103522,0,1,0,-1,-1,0,14248,0,21349 +103523,1,1,0,-1,-1,0,21625,0,21349 +103524,0,1,0,-1,-1,0,14799,0,21350 +103525,1,1,0,-1,-1,0,21625,0,21350 +103526,2,1,0,-1,-1,0,25975,0,21350 +103527,0,1,0,-1,-1,0,14054,0,21353 +103528,1,1,0,-1,-1,0,7597,0,21353 +103529,0,1,0,-1,-1,0,14054,0,21356 +103530,1,1,0,-1,-1,0,7597,0,21356 +103531,2,1,0,-1,-1,0,21618,0,21356 +103532,0,1,0,-1,-1,0,14127,0,21357 +103533,1,1,0,-1,-1,0,18384,0,21357 +103534,2,1,0,-1,-1,0,7597,0,21357 +103535,0,1,0,-1,-1,0,7597,0,21360 +103536,1,1,0,-1,-1,0,15464,0,21360 +103537,0,0,0,300000,20000,1141,23734,0,19344 +103538,0,1,0,-1,-1,0,9317,0,19965 +103539,1,1,0,-1,-1,0,21627,0,19965 +103540,0,1,0,-1,-1,0,21363,0,19967 +103541,0,1,0,-1,-1,0,18036,0,21609 +103542,0,1,0,-1,-1,0,18029,0,21610 +103543,1,1,0,-1,-1,0,21627,0,21610 +103544,0,1,0,-1,-1,0,14127,0,21611 +103545,0,1,0,-1,-1,0,9344,0,21612 +103546,1,1,0,-1,-1,0,21620,0,21612 +103547,0,0,-1,-1,-1,0,26437,0,21732 +103548,0,0,-1,-1,-1,0,26438,0,21733 +103549,0,0,-1,-1,-1,0,26439,0,21734 +103550,0,0,-1,-1,-1,0,26440,0,21735 +103551,0,0,0,-1,3000,330,3363,0,21736 +103552,0,2,0,-1,-1,0,26415,0,21679 +103553,0,1,0,-1,-1,0,15717,0,20623 +103554,0,1,0,-1,-1,0,13388,0,20699 +103555,0,0,-1,-1,-1,0,25465,0,20905 +103556,0,0,-1,-1,-1,0,25465,0,20908 +103557,0,1,0,-1,-1,0,21363,0,21411 +103558,0,1,0,-1,-1,0,7597,0,20177 +103559,0,1,0,-1,-1,0,23990,0,20182 +103560,0,1,0,-1,-1,0,26405,0,21676 +103561,0,1,0,-1,-1,0,9345,0,23262 +103562,1,1,0,-1,-1,0,21626,0,23262 +103563,0,1,0,-1,-1,0,18384,0,23263 +103564,1,1,0,-1,-1,0,14248,0,23263 +103565,0,1,0,-1,-1,0,15715,0,23272 +103566,0,1,0,-1,-1,0,7681,0,20711 +103567,0,0,-1,1000,1500,1136,26294,0,21561 +103568,0,0,-1,1000,1500,1136,26295,0,21562 +103569,0,1,0,-1,-1,0,18384,0,21563 +103570,1,1,0,-1,-1,0,26283,0,21563 +103571,0,1,0,-1,-1,0,26283,0,21565 +103572,0,1,0,-1,-1,0,25975,0,21566 +103573,0,1,0,-1,-1,0,21593,0,21568 +103574,0,1,0,-1,-1,0,11789,0,21526 +103575,0,1,0,-1,-1,0,9315,0,21531 +103576,0,1,0,-1,-1,0,15715,0,23273 +103577,0,1,0,0,0,0,7597,0,20277 +103578,1,1,0,-1,-1,0,21595,0,20277 +103579,0,0,-1,-1,-1,0,25147,0,20761 +103580,0,1,0,-1,-1,0,17367,0,21372 +103581,1,1,0,-1,-1,0,18384,0,21372 +103582,0,1,0,-1,-1,0,15714,0,21373 +103583,1,1,0,-1,-1,0,25975,0,21373 +103584,2,1,0,-1,-1,0,21362,0,21373 +103585,0,1,0,-1,-1,0,13881,0,21375 +103586,1,1,0,-1,-1,0,18384,0,21375 +103587,2,1,0,-1,-1,0,21618,0,21375 +103588,0,1,0,-1,-1,0,14127,0,21376 +103589,1,1,0,-1,-1,0,21625,0,21376 +103590,0,1,0,-1,-1,0,14027,0,21702 +103591,0,1,0,-1,-1,0,14799,0,21705 +103592,0,1,0,-1,-1,0,13383,0,21706 +103593,0,1,0,-1,-1,0,9315,0,21619 +103594,1,1,0,-1,-1,0,21633,0,21619 +103595,0,0,0,180000,-1,0,26480,0,21670 +103596,0,1,0,-1,-1,0,18053,0,21671 +103597,1,1,0,-1,-1,0,26283,0,21671 +103598,0,1,0,-1,-1,0,15464,0,21672 +103599,0,1,0,-1,-1,0,15464,0,21406 +103600,0,1,0,-1,-1,0,21363,0,21408 +103601,0,1,0,-1,-1,0,21362,0,21410 +103602,1,1,0,-1,-1,0,26154,0,21410 +103603,0,0,-1,-1,-1,0,26413,0,21723 +103604,0,1,0,-1,-1,0,7597,0,21673 +103605,1,1,0,-1,-1,0,9336,0,21673 +103606,0,0,-1,-1,-1,0,25037,0,20709 +103607,0,1,0,-1,-1,0,7598,0,20627 +103608,1,1,0,-1,-1,0,9333,0,20627 +103609,0,1,0,-1,-1,0,18040,0,20628 +103610,1,1,0,-1,-1,0,21629,0,20628 +103611,2,1,0,-1,-1,0,18384,0,20628 +103612,0,1,0,-1,-1,0,14054,0,20629 +103613,0,0,-1,-1,-1,0,24245,0,19883 +103614,0,0,-1,-1,-1,0,26298,0,21569 +103615,0,0,-1,-1,-1,0,25783,0,21136 +103616,0,1,0,-1,-1,0,9408,0,20630 +103617,0,1,0,-1,-1,0,9330,0,20633 +103618,0,1,0,-1,-1,0,18052,0,20634 +103619,0,1,0,-1,-1,0,7597,0,21362 +103620,0,1,0,-1,-1,0,9343,0,21453 +103621,0,1,0,-1,-1,0,21599,0,21567 +103622,0,1,0,-1,-1,0,13388,0,21674 +103623,0,0,-1,1000,2000,1136,26325,0,21574 +103624,0,0,-1,1000,2000,1136,26326,0,21575 +103625,0,0,-1,1000,2000,1136,26327,0,21576 +103626,0,1,0,-1,-1,0,18378,0,21681 +103627,1,1,0,-1,-1,0,7681,0,21681 +103628,0,0,-1,-1,-1,0,26299,0,21570 +103629,0,0,-1,1000,2000,1136,26304,0,21571 +103630,0,1,0,-1,-1,0,7597,0,23242 +103631,1,1,0,-1,-1,0,15464,0,23242 +103632,2,1,0,-1,-1,0,9332,0,23242 +103633,0,1,0,-1,-1,0,9408,0,21484 +103634,0,1,0,-1,-1,0,9345,0,21489 +103635,0,1,0,-1,-1,0,15464,0,21477 +103636,1,1,0,-1,-1,0,9336,0,21477 +103637,0,1,0,-1,-1,0,7597,0,21368 +103638,1,1,0,-1,-1,0,9415,0,21368 +103639,0,1,0,-1,-1,0,9314,0,21412 +103640,0,1,0,-1,-1,0,9346,0,21415 +103641,0,1,0,-1,-1,0,26155,0,21416 +103642,0,1,0,-1,-1,0,18384,0,21417 +103643,1,1,0,-1,-1,0,9343,0,21417 +103644,2,1,0,-1,-1,0,23727,0,21417 +103645,0,1,0,-1,-1,0,9417,0,21475 +103646,0,1,0,-1,-1,0,14254,0,21476 +103647,0,1,0,-1,-1,0,18040,0,21615 +103648,1,1,0,-1,-1,0,21634,0,21615 +103649,0,1,0,-1,-1,0,17871,0,21686 +103650,0,1,0,-1,-1,0,7598,0,21495 +103651,0,1,0,-1,-1,0,26203,0,21516 +103652,0,1,0,-1,-1,0,23730,0,21521 +103653,0,1,0,-1,-1,0,14127,0,21684 +103654,0,0,0,180000,-1,0,26463,0,21685 +103655,0,1,0,-1,-1,0,21596,0,21687 +103656,0,1,0,-1,-1,0,14054,0,21689 +103657,1,1,0,-1,-1,0,18384,0,21689 +103658,0,0,-1,-1,-1,0,25980,0,21281 +103659,0,1,0,-1,-1,0,15817,0,21586 +103660,1,1,0,-1,-1,0,7597,0,21586 +103661,2,1,0,-1,-1,0,15464,0,21586 +103662,0,1,0,-1,-1,0,18031,0,21587 +103663,1,1,0,-1,-1,0,21619,0,21587 +103664,0,1,0,-1,-1,0,18043,0,21663 +103665,1,1,0,-1,-1,0,21628,0,21663 +103666,0,1,0,-1,-1,0,7597,0,21664 +103667,1,1,0,-1,-1,0,15810,0,21664 +103668,0,2,0,-1,-1,0,26108,0,21134 +103669,0,1,0,-1,-1,0,23300,0,23274 +103670,1,1,0,-1,-1,0,7597,0,23274 +103671,0,1,0,-1,-1,0,18052,0,21346 +103672,1,1,0,-1,-1,0,18384,0,21346 +103673,2,1,0,-1,-1,0,21620,0,21346 +103674,0,0,-1,-1,-1,0,25089,0,20728 +103675,0,0,-1,-1,-1,0,25090,0,20729 +103676,0,0,-1,-1,-1,0,25093,0,20732 +103677,0,0,-1,-1,-1,0,25095,0,20734 +103678,0,0,0,180000,-1,0,24854,0,20503 +103679,0,1,0,-1,-1,0,15696,0,21617 +103680,0,1,0,-1,-1,0,21625,0,20621 +103681,0,1,0,-1,-1,0,15715,0,21504 +103682,0,1,0,-1,-1,0,15809,0,21505 +103683,0,1,0,-1,-1,0,7597,0,21393 +103684,0,1,0,-1,-1,0,14248,0,21468 +103685,0,1,0,-1,-1,0,13669,0,21693 +103686,0,1,0,-1,-1,0,18049,0,21707 +103687,1,1,0,-1,-1,0,26283,0,21707 +103688,0,0,-1,0,1000,11,25990,0,21215 +103689,0,0,0,0,3000,330,25953,0,21218 +103690,0,1,0,-1,-1,0,7597,0,23312 +103691,1,1,0,-1,-1,0,15464,0,23312 +103692,2,1,0,-1,-1,0,14089,0,23312 +103693,0,1,0,-1,-1,0,9332,0,23313 +103694,1,1,0,-1,-1,0,7597,0,23313 +103695,2,1,0,-1,-1,0,15464,0,23313 +103696,0,1,0,-1,-1,0,7597,0,23023 +103697,1,1,0,-1,-1,0,9331,0,23023 +103698,0,0,0,0,3000,330,26656,0,21176 +103699,0,1,0,0,0,0,21629,0,21185 +103700,1,1,0,-1,-1,0,9406,0,21185 +103701,0,1,0,-1,-1,0,25901,0,21189 +103702,1,1,0,-1,-1,0,15464,0,21189 +103703,0,1,0,-1,-1,0,23729,0,19884 +103704,1,1,0,-1,-1,0,21641,0,19884 +103705,2,1,0,-1,-1,0,14054,0,19884 +103706,0,0,0,-1,-1,0,25849,0,21168 +103707,0,0,-5,1000,-1,0,25120,0,20747 +103708,0,2,0,-1,-1,0,24993,0,20578 +103709,0,1,0,-1,-1,0,21362,0,20481 +103710,1,1,0,-1,-1,0,9398,0,20481 +103711,0,0,-1,-1,-1,0,24917,0,20554 +103712,0,1,0,-1,-1,0,15464,0,20680 +103713,0,1,0,-1,-1,0,14248,0,23025 +103714,1,1,0,-1,-1,0,23727,0,23025 +103715,2,1,0,-1,-1,0,18384,0,23025 +103716,0,1,0,-1,-1,0,7597,0,22749 +103717,0,1,0,-1,-1,0,21364,0,23455 +103718,1,1,0,-1,-1,0,14054,0,23455 +103719,0,1,0,-1,-1,0,7597,0,23456 +103720,1,1,0,-1,-1,0,9335,0,23456 +103721,0,1,0,-1,-1,0,15715,0,23297 +103722,0,1,0,-1,-1,0,7597,0,23298 +103723,1,1,0,-1,-1,0,15464,0,23298 +103724,2,1,0,-1,-1,0,15806,0,23298 +103725,0,1,0,-1,-1,0,7597,0,23299 +103726,1,1,0,-1,-1,0,15464,0,23299 +103727,2,1,0,-1,-1,0,15806,0,23299 +103728,0,1,0,-1,-1,0,17899,0,20347 +103729,0,1,0,-1,-1,0,15715,0,21208 +103730,1,1,0,-1,-1,0,21362,0,21208 +103731,0,1,0,-1,-1,0,18049,0,21209 +103732,1,1,0,-1,-1,0,21362,0,21209 +103733,0,1,0,-1,-1,0,14127,0,21210 +103734,1,1,0,-1,-1,0,21363,0,21210 +103735,0,1,0,-1,-1,0,9315,0,21458 +103736,1,1,0,-1,-1,0,21618,0,21458 +103737,0,1,0,-1,-1,0,15464,0,21459 +103738,0,1,0,-1,-1,0,13665,0,21460 +103739,1,1,0,-1,-1,0,13385,0,21460 +103740,0,1,0,-1,-1,0,9343,0,21454 +103741,0,1,0,-1,-1,0,18384,0,21466 +103742,1,1,0,-1,-1,0,18053,0,21466 +103743,0,1,0,-1,-1,0,14248,0,21471 +103744,1,1,0,-1,-1,0,18384,0,21471 +103745,0,1,0,-1,-1,0,21619,0,21481 +103746,0,1,0,-1,-1,0,15464,0,21490 +103747,0,1,0,-1,-1,0,13384,0,20650 +103748,0,1,0,-1,-1,0,28693,0,22988 +103749,1,1,0,-1,-1,0,28717,0,22988 +103750,2,1,0,-1,-1,0,21620,0,22988 +103751,0,1,0,-1,-1,0,13669,0,23028 +103752,0,0,-1,0,1000,11,29041,0,23175 +103753,0,0,-1,-1,-1,0,29029,0,23176 +103754,0,1,0,0,-1,0,7709,0,23177 +103755,0,1,0,0,0,0,9415,0,23178 +103756,0,0,-1,-1,-1,0,31020,0,24101 +103757,0,1,0,-1,-1,0,9330,0,24222 +103758,0,0,0,0,0,79,30331,0,23794 +103759,0,0,0,0,0,79,30336,0,23795 +103760,0,0,0,0,0,79,30338,0,23796 +103761,0,1,0,-1,-1,0,9345,0,22968 +103762,0,1,0,-1,-1,0,9346,0,22700 +103763,0,0,-1,-1,-1,0,28245,0,22703 +103764,0,1,0,-1,-1,0,15829,0,22814 +103765,0,1,0,-1,-1,0,18050,0,22506 +103766,1,1,0,-1,-1,0,18382,0,22506 +103767,2,1,0,-1,-1,0,23727,0,22506 +103768,0,1,0,-1,-1,0,23727,0,22507 +103769,1,1,0,-1,-1,0,18053,0,22507 +103770,0,1,0,-1,-1,0,17367,0,22508 +103771,1,1,0,-1,-1,0,18384,0,22508 +103772,0,1,0,-1,-1,0,18384,0,22509 +103773,1,1,0,-1,-1,0,18049,0,22509 +103774,0,1,0,-1,-1,0,18052,0,22510 +103775,1,1,0,-1,-1,0,18384,0,22510 +103776,0,1,0,-1,-1,0,9417,0,23256 +103777,1,1,0,-1,-1,0,18384,0,23256 +103778,0,1,0,-1,-1,0,9416,0,22092 +103779,0,1,0,-1,-1,0,9343,0,22097 +103780,1,1,0,-1,-1,0,18384,0,22097 +103781,0,0,-3,600000,60000,24,29305,0,23379 +103782,0,1,0,0,0,0,9317,0,23453 +103783,0,1,0,-1,-1,0,15763,0,23577 +103784,0,0,-1,0,120000,4,17531,0,23578 +103785,0,1,0,-1,-1,0,21477,0,22981 +103786,1,1,0,-1,-1,0,23203,0,22981 +103787,0,0,-1,-1,-1,0,29480,0,23549 +103788,0,0,0,120000,0,0,29506,0,23558 +103789,0,0,0,120000,20000,1141,29602,0,23570 +103790,0,0,-1,0,120000,4,17534,0,23579 +103791,0,0,-1,-1,-1,0,28483,0,22774 +103792,0,1,0,-1,-1,0,7597,0,23300 +103793,0,1,0,-1,-1,0,14248,0,23302 +103794,1,1,0,-1,-1,0,21626,0,23302 +103795,0,1,0,-1,-1,0,18045,0,22514 +103796,1,1,0,-1,-1,0,21620,0,22514 +103797,0,1,0,-1,-1,0,21626,0,22516 +103798,1,1,0,-1,-1,0,17371,0,22516 +103799,0,1,0,-1,-1,0,18034,0,22518 +103800,0,1,0,-1,-1,0,18031,0,22519 +103801,0,1,0,-1,-1,0,18031,0,22495 +103802,1,1,0,-1,-1,0,21620,0,22495 +103803,0,0,0,-1,-1,0,28487,0,22780 +103804,0,0,0,-1,-1,0,28505,0,22781 +103805,0,1,0,-1,-1,0,9335,0,22810 +103806,0,1,0,-1,-1,0,14027,0,22812 +103807,1,1,0,-1,-1,0,7597,0,22812 +103808,0,1,0,-1,-1,0,18379,0,23067 +103809,0,1,0,-1,-1,0,18039,0,23048 +103810,1,1,0,-1,-1,0,21619,0,23048 +103811,0,1,0,-1,-1,0,13881,0,23663 +103812,1,1,0,-1,-1,0,21363,0,23663 +103813,0,1,0,-1,-1,0,14127,0,22752 +103814,0,0,-1,-1,-1,0,28465,0,22767 +103815,0,0,-1,-1,-1,0,28477,0,22769 +103816,0,0,-1,-1,-1,0,28485,0,22772 +103817,0,0,-1,-1,-1,0,28229,0,22694 +103818,0,0,0,-1,-1,0,28738,0,23002 +103819,0,1,0,-1,-1,0,28847,0,23004 +103820,0,1,0,-1,-1,0,14248,0,23666 +103821,1,1,0,-1,-1,0,21364,0,23666 +103822,0,1,0,-1,-1,0,18049,0,23668 +103823,1,1,0,-1,-1,0,7598,0,23668 +103824,0,0,-1,0,120000,1153,30018,0,23683 +103825,0,0,-1,0,0,150,30020,0,23684 +103826,0,0,-1,-1,-1,0,30046,0,23689 +103827,0,0,-1,-1,-1,0,30048,0,23690 +103828,0,0,-1,0,0,0,27110,0,22031 +103829,0,1,0,-1,-1,0,7597,0,22954 +103830,1,1,0,-1,-1,0,15464,0,22954 +103831,2,0,0,120000,15000,1141,28866,0,22954 +103832,0,1,0,-1,-1,0,9343,0,22852 +103833,0,1,0,-1,-1,0,18384,0,23021 +103834,1,1,0,-1,-1,0,14248,0,23021 +103835,0,1,0,-1,-1,0,28805,0,23056 +103836,1,1,0,-1,-1,0,18378,0,23056 +103837,0,1,0,-1,-1,0,18030,0,23065 +103838,1,1,0,-1,-1,0,21627,0,23065 +103839,0,1,0,-1,-1,0,18030,0,23066 +103840,1,1,0,-1,-1,0,21627,0,23066 +103841,0,1,0,-1,-1,0,28687,0,22803 +103842,0,1,0,-1,-1,0,18384,0,22878 +103843,1,1,0,-1,-1,0,9343,0,22878 +103844,0,1,0,-1,-1,0,28840,0,22813 +103845,0,1,0,-1,-1,0,9417,0,22756 +103846,0,1,0,-1,-1,0,9346,0,22757 +103847,0,0,-1,-1,-1,0,29006,0,23164 +103848,0,1,0,-1,-1,0,9415,0,23168 +103849,0,1,0,0,-1,0,9397,0,23169 +103850,0,1,0,-1,-1,0,9417,0,23311 +103851,1,1,0,-1,-1,0,18384,0,23311 +103852,0,1,0,-1,-1,0,14047,0,22711 +103853,0,0,-1,-1,-1,0,27835,0,22390 +103854,0,1,0,-1,-1,0,14055,0,22391 +103855,1,1,0,-1,-1,0,18384,0,22391 +103856,0,0,-1,-1,-1,0,27838,0,22392 +103857,0,1,0,-1,-1,0,15464,0,21997 +103858,0,0,-1,-1,-1,0,27595,0,22220 +103859,0,1,0,0,0,0,18031,0,22689 +103860,0,1,0,-1,-1,0,7597,0,22690 +103861,0,1,0,-1,-1,0,28282,0,22691 +103862,1,2,0,-1,-1,0,28414,0,22691 +103863,2,1,0,-1,-1,0,7598,0,22691 +103864,3,1,0,-1,-1,0,15464,0,22691 +103865,4,2,0,-1,-1,0,29155,0,22691 +103866,0,0,-1,-1,-1,0,28228,0,22692 +103867,0,0,-1,-1,180000,1153,29432,0,22682 +103868,0,1,0,-1,-1,0,9332,0,23258 +103869,1,1,0,-1,-1,0,7597,0,23258 +103870,2,1,0,-1,-1,0,15464,0,23258 +103871,0,1,0,-1,-1,0,7597,0,23259 +103872,1,1,0,-1,-1,0,18384,0,23259 +103873,0,1,0,-1,-1,0,9397,0,22758 +103874,0,1,0,-1,-1,0,13385,0,22762 +103875,0,1,0,-1,-1,0,13390,0,22763 +103876,0,0,-1,-1,-1,0,28464,0,22766 +103877,0,0,-1,-1,-1,0,28466,0,22768 +103878,0,0,-1,-1,-1,0,28476,0,22770 +103879,0,0,-1,-1,-1,0,28475,0,22771 +103880,0,0,-1,-1,-1,0,28484,0,22773 +103881,0,0,-1,-1,-1,0,28286,0,22739 +103882,0,1,0,-1,-1,0,7597,0,22740 +103883,0,1,0,-1,-1,0,9416,0,22741 +103884,0,1,0,-1,-1,0,7598,0,23293 +103885,0,1,0,-1,-1,0,7597,0,23294 +103886,1,1,0,-1,-1,0,9344,0,23294 +103887,0,1,0,-1,-1,0,14127,0,23296 +103888,0,1,0,-1,-1,0,18384,0,22102 +103889,1,1,0,-1,-1,0,9343,0,22102 +103890,0,1,0,-1,-1,0,7597,0,23244 +103891,1,1,0,-1,-1,0,15464,0,23244 +103892,0,0,-1,1500,-1,0,28806,0,23247 +103893,0,1,0,-1,-1,0,9344,0,23260 +103894,1,1,0,-1,-1,0,18384,0,23260 +103895,0,1,0,-1,-1,0,14248,0,23261 +103896,1,1,0,-1,-1,0,21626,0,23261 +103897,0,0,-10,-1,120000,1142,26682,0,21829 +103898,0,0,-1,0,0,0,27123,0,22027 +103899,0,1,0,-1,-1,0,15465,0,22009 +103900,0,1,0,-1,-1,0,9315,0,22234 +103901,1,1,0,-1,-1,0,21625,0,22234 +103902,0,0,-1,0,0,0,27112,0,22033 +103903,0,1,0,-1,-1,0,7219,0,23072 +103904,1,1,0,-1,-1,0,7597,0,23072 +103905,2,1,0,-1,-1,0,15464,0,23072 +103906,0,1,0,-1,-1,0,18049,0,23664 +103907,1,1,0,-1,-1,0,18384,0,23664 +103908,2,1,0,-1,-1,0,23727,0,23664 +103909,0,1,0,-1,-1,0,17367,0,23665 +103910,1,1,0,-1,-1,0,18382,0,23665 +103911,0,1,0,-1,-1,0,18382,0,22630 +103912,1,1,0,-1,-1,0,28141,0,22630 +103913,2,1,0,-1,-1,0,28143,0,22630 +103914,3,0,0,-1,-1,0,28148,0,22630 +103915,0,1,0,-1,-1,0,28144,0,22631 +103916,1,1,0,-1,-1,0,28155,0,22631 +103917,2,0,0,-1,-1,0,28148,0,22631 +103918,0,1,0,-1,-1,0,28145,0,22632 +103919,1,1,0,-1,-1,0,28152,0,22632 +103920,2,1,0,-1,-1,0,28154,0,22632 +103921,3,0,0,-1,-1,0,28148,0,22632 +103922,0,1,0,-1,-1,0,14248,0,23303 +103923,1,1,0,-1,-1,0,21626,0,23303 +103924,0,1,0,-1,-1,0,14248,0,23304 +103925,1,1,0,-1,-1,0,18384,0,23304 +103926,0,1,0,-1,-1,0,18384,0,23305 +103927,1,1,0,-1,-1,0,14248,0,23305 +103928,0,1,0,-1,-1,0,7598,0,23306 +103929,0,1,0,-1,-1,0,9406,0,23129 +103930,0,1,0,-1,-1,0,14248,0,22885 +103931,1,1,0,-1,-1,0,21626,0,22885 +103932,0,1,0,-1,-1,0,18384,0,22505 +103933,1,1,0,-1,-1,0,18054,0,22505 +103934,2,1,0,-1,-1,0,25975,0,22505 +103935,0,1,0,-1,-1,0,7598,0,23251 +103936,0,0,-1,-1,-1,0,27728,0,22309 +103937,0,0,-1,-1,-1,0,27729,0,22310 +103938,0,1,0,-1,-1,0,18053,0,22499 +103939,0,1,0,-1,-1,0,18384,0,22500 +103940,1,1,0,-1,-1,0,14127,0,22500 +103941,0,1,0,-1,-1,0,7597,0,21998 +103942,0,1,0,-1,-1,0,7597,0,21999 +103943,0,0,-1,0,0,0,27115,0,22036 +103944,0,1,0,-1,-1,0,21632,0,23037 +103945,0,1,0,-1,-1,0,7597,0,23038 +103946,1,1,0,-1,-1,0,15464,0,23038 +103947,2,1,0,-1,-1,0,15812,0,23038 +103948,0,0,-1,-1,-1,0,28161,0,22635 +103949,0,1,0,-1,-1,0,14047,0,22407 +103950,0,1,0,0,0,0,9416,0,22408 +103951,0,1,0,-1,-1,0,26395,0,23451 +103952,1,1,0,-1,-1,0,18384,0,23451 +103953,0,1,0,-1,-1,0,14798,0,22731 +103954,1,1,0,-1,-1,0,23727,0,22731 +103955,0,1,0,-1,-1,0,28347,0,22736 +103956,0,0,0,-1,-1,0,30156,0,23713 +103957,0,0,0,0,3000,330,30174,0,23720 +103958,0,1,0,-1,-1,0,9335,0,22712 +103959,0,1,0,-1,-1,0,7597,0,22714 +103960,1,1,0,-1,-1,0,15464,0,22714 +103961,0,1,0,-1,-1,0,13881,0,22716 +103962,0,0,-1,0,1000,11,29334,0,23211 +103963,0,1,0,-1,-1,0,7597,0,23467 +103964,1,1,0,-1,-1,0,9335,0,23467 +103965,0,1,0,0,0,0,14799,0,23468 +103966,0,1,0,0,0,0,9317,0,23469 +103967,0,1,0,-1,-1,0,9416,0,22750 +103968,0,1,0,-1,-1,0,7597,0,22751 +103969,1,1,0,-1,-1,0,15464,0,22751 +103970,0,1,0,-1,-1,0,7597,0,22753 +103971,1,1,0,-1,-1,0,15464,0,22753 +103972,2,1,0,-1,-1,0,15715,0,22753 +103973,0,0,0,3600000,3600000,1149,21358,0,22754 +103974,0,1,0,-1,-1,0,21618,0,23667 +103975,1,1,0,-1,-1,0,7597,0,23667 +103976,2,1,0,-1,-1,0,14799,0,23667 +103977,0,1,0,-1,-1,0,23043,0,23288 +103978,1,1,0,-1,-1,0,14248,0,23288 +103979,0,1,0,-1,-1,0,23037,0,23290 +103980,1,1,0,-1,-1,0,9346,0,23290 +103981,0,1,0,-1,-1,0,9344,0,23291 +103982,1,1,0,-1,-1,0,23727,0,23291 +103983,0,1,0,-1,-1,0,7598,0,23292 +103984,0,1,0,-1,-1,0,14248,0,22882 +103985,1,1,0,-1,-1,0,21626,0,22882 +103986,0,1,0,-1,-1,0,14248,0,22883 +103987,1,1,0,-1,-1,0,18384,0,22883 +103988,0,1,0,-1,-1,0,18055,0,22983 +103989,1,1,0,-1,-1,0,18384,0,22983 +103990,0,1,0,-1,-1,0,15465,0,22718 +103991,0,1,0,-1,-1,0,7597,0,22872 +103992,0,1,0,-1,-1,0,22778,0,23286 +103993,0,1,0,-1,-1,0,22912,0,22422 +103994,1,1,0,-1,-1,0,21476,0,22422 +103995,2,1,0,-1,-1,0,13388,0,22422 +103996,0,1,0,-1,-1,0,7518,0,22423 +103997,0,1,0,-1,-1,0,18038,0,22425 +103998,1,1,0,-1,-1,0,18384,0,22425 +103999,2,1,0,-1,-1,0,20959,0,22425 +104000,0,1,0,-1,-1,0,21629,0,22426 +104001,1,1,0,-1,-1,0,9318,0,22426 +104002,0,1,0,-1,-1,0,18054,0,23069 +104003,0,1,0,-1,-1,0,17493,0,23070 +104004,1,1,0,-1,-1,0,18382,0,23070 +104005,0,1,0,-1,-1,0,15715,0,22884 +104006,0,1,0,-1,-1,0,27037,0,23073 +104007,0,1,0,-1,-1,0,18384,0,23075 +104008,1,1,0,-1,-1,0,9316,0,23075 +104009,2,1,0,-1,-1,0,21618,0,23075 +104010,0,1,0,-1,-1,0,7516,0,22764 +104011,0,1,0,-1,-1,0,14047,0,22721 +104012,0,1,0,-1,-1,0,9327,0,23128 +104013,0,1,0,-1,-1,0,7598,0,22873 +104014,0,1,0,-1,-1,0,14127,0,22881 +104015,0,1,0,-1,-1,0,9331,0,23170 +104016,0,1,0,-1,-1,0,9417,0,22098 +104017,1,1,0,-1,-1,0,21618,0,22098 +104018,0,1,0,-1,-1,0,21618,0,22099 +104019,1,1,0,-1,-1,0,9417,0,22099 +104020,0,1,0,-1,-1,0,9416,0,22100 +104021,0,1,0,-1,-1,0,9416,0,22107 +104022,1,1,0,-1,-1,0,21623,0,22107 +104023,0,1,0,-1,-1,0,9345,0,22109 +104024,0,1,0,-1,-1,0,14254,0,22688 +104025,0,0,-1,-1,-1,0,27730,0,22312 +104026,0,1,0,-1,-1,0,9315,0,22319 +104027,1,1,0,-1,-1,0,21619,0,22319 +104028,0,0,-1,0,0,0,27102,0,22024 +104029,0,0,-1,0,0,0,27105,0,22026 +104030,0,0,-1,0,0,0,26792,0,22020 +104031,0,1,0,-1,-1,0,7598,0,23071 +104032,0,1,0,-1,-1,0,15464,0,22806 +104033,0,1,0,-1,-1,0,28693,0,22807 +104034,1,1,0,-1,-1,0,23727,0,22807 +104035,2,1,0,-1,-1,0,18384,0,22807 +104036,0,1,0,-1,-1,0,7597,0,22808 +104037,1,1,0,-1,-1,0,15464,0,22808 +104038,2,1,0,-1,-1,0,9329,0,22808 +104039,0,1,0,-1,-1,0,21629,0,22809 +104040,1,1,0,-1,-1,0,14055,0,22809 +104041,0,0,-1,0,120000,1153,27661,0,22261 +104042,0,0,-1,-1,-1,0,28163,0,22636 +104043,0,1,0,-1,-1,0,7597,0,22748 +104044,1,1,0,-1,-1,0,15464,0,22748 +104045,0,1,0,-1,-1,0,13385,0,22940 +104046,0,0,-1,0,1000,11,29055,0,23172 +104047,0,1,0,-1,-1,0,9415,0,23173 +104048,0,1,0,-1,-1,0,9346,0,22253 +104049,0,1,0,-1,-1,0,13390,0,22732 +104050,1,1,0,-1,-1,0,13669,0,22732 +104051,2,1,0,-1,-1,0,15464,0,22732 +104052,0,1,0,-1,-1,0,28686,0,22942 +104053,0,0,0,0,0,103,30175,0,23719 +104054,0,0,0,0,0,103,30177,0,23721 +104055,0,0,0,0,0,103,30178,0,23722 +104056,0,1,0,-1,-1,0,9343,0,23254 +104057,0,1,0,-1,-1,0,23727,0,22231 +104058,0,1,0,-1,-1,0,7597,0,22936 +104059,0,1,0,-1,-1,0,7597,0,23014 +104060,1,1,0,-1,-1,0,15464,0,23014 +104061,2,1,0,-1,-1,0,9334,0,23014 +104062,0,0,0,-1,-1,0,28740,0,23015 +104063,0,0,-1,300000,60000,24,29324,0,23418 +104064,0,0,-1,-1,-1,0,29335,0,23435 +104065,0,1,0,-1,-1,0,7598,0,22874 +104066,0,1,0,-1,-1,0,27853,0,22398 +104067,0,1,0,-1,-1,0,14127,0,23017 +104068,1,1,0,-1,-1,0,25975,0,23017 +104069,1,1,0,-1,-1,0,15464,0,23018 +104070,0,1,0,-1,-1,0,9344,0,23275 +104071,0,0,0,0,0,0,30183,0,23725 +104072,0,0,0,0,0,0,30190,0,23728 +104073,0,1,0,-1,-1,0,7597,0,23307 +104074,0,1,0,-1,-1,0,9346,0,23308 +104075,0,1,0,-1,-1,0,9343,0,23309 +104076,0,0,-1,0,0,0,26743,0,22023 +104077,0,1,0,-1,-1,0,18034,0,22960 +104078,1,1,0,-1,-1,0,21363,0,22960 +104079,0,1,0,-1,-1,0,9343,0,22091 +104080,1,1,0,-1,-1,0,18384,0,22091 +104081,0,1,0,-1,-1,0,7598,0,22875 +104082,0,1,0,-1,-1,0,13387,0,23019 +104083,0,1,0,-1,-1,0,7598,0,23068 +104084,0,1,0,-1,-1,0,7597,0,22876 +104085,0,1,0,-1,-1,0,7597,0,22879 +104086,1,1,0,-1,-1,0,15464,0,22879 +104087,2,1,0,-1,-1,0,15806,0,22879 +104088,0,1,0,-1,-1,0,7597,0,22880 +104089,1,1,0,-1,-1,0,15464,0,22880 +104090,2,1,0,-1,-1,0,15806,0,22880 +104091,0,1,0,-1,-1,0,21624,0,22254 +104092,1,1,0,-1,-1,0,7678,0,22254 +104093,0,1,0,-1,-1,0,9407,0,22275 +104094,0,0,-1,-1,-1,0,29332,0,23327 +104095,0,0,0,-1,-1,0,27667,0,22131 +104096,0,0,-1,-1,-1,0,28230,0,22695 +104097,0,0,-1,-1,-1,0,28233,0,22698 +104098,0,1,0,-1,-1,0,14248,0,23310 +104099,1,1,0,-1,-1,0,18384,0,23310 +104100,0,0,-1,-1,-1,0,28165,0,22638 +104101,0,0,-1,-1,-1,0,27709,0,22140 +104102,0,0,-1,-1,-1,0,27703,0,22141 +104103,0,0,-1,-1,-1,0,27711,0,22142 +104104,0,1,0,-1,-1,0,9416,0,22110 +104105,0,0,-1,0,1000,11,29073,0,22895 +104106,0,0,-1,-1,-1,0,28613,0,22897 +104107,0,1,0,-1,-1,0,23516,0,23139 +104108,0,1,0,-1,-1,0,9415,0,23156 +104109,0,0,-1,-1,-1,0,27701,0,22143 +104110,0,1,0,-1,-1,0,9345,0,22256 +104111,0,1,0,-1,-1,0,7681,0,22257 +104112,0,0,-1,-1,-1,0,26899,0,22259 +104113,0,0,0,-1,-1,0,27664,0,22285 +104114,0,0,0,-1,-1,0,27665,0,22286 +104115,0,0,0,-1,-1,0,27665,0,22287 +104116,0,0,0,-1,-1,0,27665,0,22288 +104117,0,0,0,-1,-1,0,27666,0,22290 +104118,0,1,0,-1,-1,0,27846,0,22399 +104119,0,1,0,-1,-1,0,7597,0,23314 +104120,1,1,0,-1,-1,0,15464,0,23314 +104121,0,1,0,-1,-1,0,7597,0,23315 +104122,0,1,0,-1,-1,0,14248,0,23316 +104123,1,1,0,-1,-1,0,21626,0,23316 +104124,0,1,0,-1,-1,0,9345,0,23317 +104125,1,1,0,-1,-1,0,21626,0,23317 +104126,0,1,0,-1,-1,0,18384,0,23318 +104127,1,1,0,-1,-1,0,14248,0,23318 +104128,0,1,0,-1,-1,0,9344,0,23319 +104129,1,1,0,-1,-1,0,18384,0,23319 +104130,0,0,-1,-1,-1,0,29229,0,23320 +104131,0,1,0,-1,-1,0,26395,0,23466 +104132,1,1,0,-1,-1,0,18384,0,23466 +104133,0,1,0,-1,-1,0,9140,0,22404 +104134,0,1,0,-1,-1,0,9407,0,22405 +104135,0,1,0,-1,-1,0,18041,0,22406 +104136,0,1,0,-1,-1,0,18040,0,22428 +104137,1,1,0,-1,-1,0,18384,0,22428 +104138,2,1,0,-1,-1,0,21629,0,22428 +104139,0,1,0,-1,-1,0,18032,0,22430 +104140,1,1,0,-1,-1,0,18384,0,22430 +104141,2,1,0,-1,-1,0,21363,0,22430 +104142,0,1,0,-1,-1,0,18031,0,22431 +104143,1,1,0,-1,-1,0,21363,0,22431 +104144,0,1,0,0,0,0,9416,0,22433 +104145,1,1,0,-1,-1,0,18384,0,22433 +104146,0,1,0,-1,-1,0,28849,0,23005 +104147,0,1,0,-1,-1,0,25975,0,22937 +104148,1,1,0,-1,-1,0,15715,0,22937 +104149,0,1,0,-1,-1,0,13385,0,22938 +104150,1,1,0,-1,-1,0,13669,0,22938 +104151,2,1,0,-1,-1,0,15464,0,22938 +104152,0,1,0,-1,-1,0,18035,0,22939 +104153,0,0,0,-1,3000,330,29059,0,23193 +104154,0,0,-1,1500,-1,0,30088,0,23194 +104155,0,0,-1,1500,-1,0,30089,0,23195 +104156,0,0,-1,1500,-1,0,30090,0,23196 +104157,0,1,0,-1,-1,0,27847,0,22402 +104158,0,1,0,-1,-1,0,23727,0,22403 +104159,1,1,0,-1,-1,0,9415,0,22403 +104160,0,0,0,0,0,0,30187,0,23727 +104161,0,1,0,-1,-1,0,28855,0,23198 +104162,0,1,0,-1,-1,0,28857,0,23199 +104163,0,1,0,-1,-1,0,7597,0,23000 +104164,1,1,0,-1,-1,0,15464,0,23000 +104165,0,1,0,-1,-1,0,18382,0,23001 +104166,1,0,0,120000,-1,0,28862,0,23001 +104167,0,1,0,-1,-1,0,15696,0,23029 +104168,0,1,0,-1,-1,0,9336,0,23030 +104169,1,1,0,-1,-1,0,15464,0,23030 +104170,0,1,0,-1,-1,0,9346,0,23032 +104171,0,1,0,-1,-1,0,7597,0,23034 +104172,0,1,0,-1,-1,0,28767,0,23035 +104173,0,1,0,-1,-1,0,15696,0,23036 +104174,0,0,0,-1,-1,0,28739,0,23007 +104175,0,1,0,-1,-1,0,9408,0,23009 +104176,0,1,0,-1,-1,0,28856,0,23200 +104177,0,1,0,-1,-1,0,28853,0,23201 +104178,0,1,0,-1,-1,0,28853,0,23202 +104179,0,1,0,-1,-1,0,28854,0,23197 +104180,0,1,0,-1,-1,0,9345,0,22085 +104181,1,1,0,-1,-1,0,21626,0,22085 +104182,0,1,0,-1,-1,0,9417,0,22086 +104183,1,1,0,-1,-1,0,21618,0,22086 +104184,0,1,0,-1,-1,0,9417,0,22087 +104185,1,1,0,-1,-1,0,21618,0,22087 +104186,0,1,0,-1,-1,0,9398,0,22088 +104187,0,1,0,-1,-1,0,9343,0,22089 +104188,1,1,0,-1,-1,0,7597,0,22089 +104189,0,1,0,-1,-1,0,7597,0,23257 +104190,1,1,0,-1,-1,0,15464,0,23257 +104191,2,1,0,-1,-1,0,14089,0,23257 +104192,0,0,0,0,900000,1149,28354,0,22737 +104193,0,0,-1,0,1000,11,29008,0,23160 +104194,0,0,-1,0,1000,59,29007,0,23161 +104195,0,0,-5,1500,-1,0,29004,0,23163 +104196,0,1,0,-1,-1,0,13384,0,22699 +104197,0,1,0,-1,-1,0,7597,0,23557 +104198,1,1,0,-1,-1,0,9330,0,23557 +104199,0,1,0,-1,-1,0,18384,0,22429 +104200,1,1,0,-1,-1,0,18031,0,22429 +104201,2,1,0,-1,-1,0,21619,0,22429 +104202,0,0,-1,0,0,0,26019,0,22587 +104203,0,0,-1,0,0,0,6476,0,22588 +104204,0,1,0,-1,-1,0,23729,0,22589 +104205,1,1,0,-1,-1,0,28141,0,22589 +104206,2,1,0,-1,-1,0,28142,0,22589 +104207,3,0,0,-1,-1,0,28148,0,22589 +104208,0,0,0,-1,-1,0,30152,0,23712 +104209,0,0,0,600000,0,0,30161,0,23714 +104210,0,0,0,0,0,103,30164,0,23715 +104211,0,0,0,3600000,0,0,30167,0,23716 +104212,0,0,0,0,0,103,30173,0,23718 +104213,0,1,0,-1,-1,0,14127,0,22747 +104214,0,0,-1,-1,-1,0,27715,0,22144 +104215,0,0,-1,-1,-1,0,27718,0,22145 +104216,0,0,-1,0,60000,24,17291,0,22151 +104217,0,1,0,-1,-1,0,21632,0,22994 +104218,0,1,0,-1,-1,0,9345,0,21494 +104219,1,1,0,-1,-1,0,18384,0,21494 +104220,0,1,0,-1,-1,0,21362,0,21496 +104221,0,0,-1,0,0,0,27109,0,22030 +104222,0,1,0,0,0,0,23727,0,22339 +104223,1,1,0,-1,-1,0,9345,0,22339 +104224,0,1,0,-1,-1,0,15464,0,22340 +104225,0,1,0,-1,-1,0,15808,0,22343 +104226,0,0,-10,-1,120000,1142,26681,0,21833 +104227,0,0,-10,-1,-1,0,26682,0,21834 +104228,0,1,0,-1,-1,0,15715,0,21836 +104229,1,1,0,-1,-1,0,18384,0,21836 +104230,0,1,0,-1,-1,0,7518,0,21503 +104231,0,1,0,-1,-1,0,18033,0,21507 +104232,1,1,0,-1,-1,0,21627,0,21507 +104233,0,1,0,-1,-1,0,7569,0,23039 +104234,1,1,0,-1,-1,0,22188,0,23039 +104235,2,1,0,-1,-1,0,7581,0,23039 +104236,0,1,0,-1,-1,0,21475,0,23040 +104237,1,1,0,-1,-1,0,22852,0,23040 +104238,2,0,0,120000,-1,0,28773,0,23040 +104239,0,0,-1,-1,-1,0,31017,0,24102 +104240,0,1,0,-1,-1,0,18369,0,22818 +104241,0,1,0,-1,-1,0,18379,0,22819 +104242,1,1,0,-1,-1,0,18038,0,22819 +104243,0,1,0,-1,-1,0,9417,0,22820 +104244,1,1,0,-1,-1,0,23727,0,22820 +104245,0,1,0,-1,-1,0,18384,0,22821 +104246,1,1,0,-1,-1,0,9345,0,22821 +104247,0,1,0,-1,-1,0,7597,0,23045 +104248,1,1,0,-1,-1,0,14056,0,23045 +104249,0,1,0,-1,-1,0,18056,0,23046 +104250,1,0,0,120000,20000,1141,28779,0,23046 +104251,0,1,0,-1,-1,0,18043,0,23047 +104252,1,0,0,120000,-1,0,28780,0,23047 +104253,0,1,0,-1,-1,0,18049,0,23049 +104254,1,1,0,-1,-1,0,18384,0,23049 +104255,2,1,0,-1,-1,0,23727,0,23049 +104256,1,1,0,-1,-1,0,7598,0,22798 +104257,0,1,0,-1,-1,0,17319,0,23089 +104258,0,1,0,-1,-1,0,18098,0,23090 +104259,0,1,0,-1,-1,0,15807,0,22195 +104260,1,1,0,-1,-1,0,7597,0,22195 +104261,2,1,0,-1,-1,0,18676,0,22195 +104262,0,1,0,-1,-1,0,9415,0,22329 +104263,1,1,0,-1,-1,0,23727,0,22329 +104264,2,1,0,-1,-1,0,18384,0,22329 +104265,0,0,-1,-1,-1,0,28214,0,22685 +104266,0,0,-1,-1,-1,0,28231,0,22696 +104267,0,0,-1,-1,-1,0,28232,0,22697 +104268,0,1,0,-1,-1,0,14089,0,22804 +104269,1,1,0,-1,-1,0,15464,0,22804 +104270,0,1,0,-1,-1,0,9315,0,22713 +104271,1,1,0,-1,-1,0,21362,0,22713 +104272,0,1,0,-1,-1,0,7597,0,22715 +104273,0,1,0,-1,-1,0,23727,0,22330 +104274,0,1,0,-1,-1,0,13385,0,22331 +104275,0,1,0,-1,-1,0,18384,0,22332 +104276,0,1,0,-1,-1,0,7598,0,22476 +104277,1,1,0,-1,-1,0,15826,0,22476 +104278,2,1,0,-1,-1,0,15464,0,22476 +104279,0,1,0,-1,-1,0,7597,0,22477 +104280,1,1,0,-1,-1,0,15464,0,22477 +104281,0,1,0,-1,-1,0,7597,0,22439 +104282,0,0,0,0,60000,1140,27433,0,21946 +104283,0,0,-1,-1,-1,0,27708,0,21960 +104284,0,0,0,-1,-1,0,27570,0,22235 +104285,0,0,-1,1000,-1,0,27720,0,22236 +104286,0,0,-1,1000,-1,0,27723,0,22237 +104287,0,1,0,-1,-1,0,15817,0,23041 +104288,1,0,0,120000,20000,1141,28777,0,23041 +104289,0,0,0,120000,-1,0,28778,0,23042 +104290,0,1,0,-1,-1,0,15464,0,22440 +104291,0,1,0,-1,-1,0,7597,0,22441 +104292,1,1,0,-1,-1,0,21618,0,22441 +104293,0,1,0,-1,-1,0,15464,0,22443 +104294,0,1,0,-1,-1,0,9346,0,22458 +104295,1,1,0,-1,-1,0,21364,0,22458 +104296,2,1,0,-1,-1,0,18384,0,22458 +104297,0,0,-1,-1,-1,0,27700,0,22176 +104298,0,1,0,-1,-1,0,14127,0,22943 +104299,1,1,0,-1,-1,0,28869,0,22943 +104300,0,1,0,-1,-1,0,21475,0,23043 +104301,1,1,0,-1,-1,0,28112,0,23043 +104302,0,1,0,-1,-1,0,7597,0,23044 +104303,1,1,0,-1,-1,0,15464,0,23044 +104304,0,1,0,-1,-1,0,7598,0,22815 +104305,0,1,0,-1,-1,0,14089,0,22816 +104306,1,1,0,-1,-1,0,7597,0,22816 +104307,0,1,0,-1,-1,0,18384,0,22867 +104308,1,1,0,-1,-1,0,9342,0,22867 +104309,0,1,0,-1,-1,0,28870,0,23081 +104310,0,1,0,-1,-1,0,13383,0,22680 +104311,0,1,0,-1,-1,0,9408,0,22681 +104312,1,1,0,-1,-1,0,21362,0,22681 +104313,0,1,0,-1,-1,0,9315,0,22247 +104314,0,1,0,-1,-1,0,15464,0,22384 +104315,1,1,0,-1,-1,0,7597,0,22384 +104316,0,1,0,-1,-1,0,15465,0,22385 +104317,1,1,0,-1,-1,0,7597,0,22385 +104318,0,1,0,-1,-1,0,28876,0,23091 +104319,0,1,0,-1,-1,0,18098,0,23092 +104320,0,1,0,-1,-1,0,15465,0,22411 +104321,0,1,0,-1,-1,0,9417,0,22412 +104322,0,1,0,-1,-1,0,18031,0,22517 +104323,1,1,0,-1,-1,0,21362,0,22517 +104324,0,1,0,-1,-1,0,18041,0,22513 +104325,0,1,0,-1,-1,0,13881,0,23063 +104326,0,1,0,-1,-1,0,18030,0,23064 +104327,0,0,-1,-1,-1,0,28211,0,22683 +104328,0,1,0,-1,-1,0,23043,0,22869 +104329,1,1,0,-1,-1,0,14248,0,22869 +104330,0,0,-1,-1,-1,0,28212,0,22684 +104331,0,0,-1,-1,-1,0,28213,0,22686 +104332,0,0,-1,-1,-1,0,28215,0,22687 +104333,0,1,0,-1,-1,0,17319,0,23087 +104334,0,1,0,-1,-1,0,17319,0,23088 +104335,0,1,0,-1,-1,0,7597,0,22811 +104336,1,1,0,-1,-1,0,9329,0,22811 +104337,0,1,0,-1,-1,0,7597,0,22877 +104338,1,1,0,-1,-1,0,9344,0,22877 +104339,0,1,0,-1,-1,0,22778,0,22868 +104340,0,0,-1,-1,-1,0,27833,0,22388 +104341,0,0,-1,-1,-1,0,27738,0,22046 +104342,0,1,0,-1,-1,0,23037,0,22870 +104343,1,1,0,-1,-1,0,9346,0,22870 +104344,0,1,0,-1,-1,0,18098,0,23093 +104345,0,0,-1,1000,-1,0,28891,0,23122 +104346,0,0,-1,1000,-1,0,28898,0,23123 +104347,0,1,0,-1,-1,0,13881,0,23124 +104348,1,1,0,-1,-1,0,18384,0,23124 +104349,0,1,0,-1,-1,0,15714,0,23125 +104350,0,1,0,-1,-1,0,23217,0,23280 +104351,0,1,0,-1,-1,0,9343,0,23281 +104352,0,1,0,-1,-1,0,9346,0,23283 +104353,0,1,0,-1,-1,0,9331,0,23284 +104354,1,1,0,-1,-1,0,7597,0,23284 +104355,0,1,0,-1,-1,0,23049,0,23285 +104356,1,1,0,-1,-1,0,9335,0,23285 +104357,0,1,0,-1,-1,0,28870,0,23078 +104358,0,0,-1,1000,-1,0,27721,0,22238 +104359,0,0,-1,1000,-1,0,27722,0,22239 +104360,0,1,0,-1,-1,0,7597,0,23252 +104361,0,1,0,-1,-1,0,9346,0,23253 +104362,0,0,0,-1,-1,0,27664,0,22284 +104363,0,0,-1,-1,-1,0,27834,0,22389 +104364,0,1,0,-1,-1,0,9345,0,22074 +104365,1,1,0,-1,-1,0,23727,0,22074 +104366,0,1,0,-1,-1,0,15464,0,22232 +104367,0,1,0,-1,-1,0,9343,0,22859 +104368,0,1,0,-1,-1,0,9344,0,23057 +104369,1,1,0,-1,-1,0,18382,0,23057 +104370,0,1,0,-1,-1,0,18043,0,23058 +104371,1,1,0,-1,-1,0,18379,0,23058 +104372,0,1,0,-1,-1,0,15464,0,22436 +104373,1,1,0,-1,-1,0,7597,0,22436 +104374,2,1,0,-1,-1,0,21618,0,22436 +104375,0,1,0,-1,-1,0,7597,0,22437 +104376,1,1,0,-1,-1,0,21627,0,22437 +104377,0,1,0,-1,-1,0,9398,0,22071 +104378,0,1,0,-1,-1,0,9345,0,22072 +104379,0,1,0,-1,-1,0,9417,0,22073 +104380,0,1,0,-1,-1,0,9416,0,22240 +104381,1,1,0,-1,-1,0,23727,0,22240 +104382,0,1,0,-1,-1,0,28870,0,23082 +104383,0,1,0,-1,-1,0,9295,0,22266 +104384,0,1,0,-1,-1,0,18053,0,22267 +104385,1,1,0,-1,-1,0,23727,0,22267 +104386,0,0,0,75000,15000,1141,27675,0,22268 +104387,0,1,0,-1,-1,0,9345,0,22271 +104388,1,1,0,-1,-1,0,21363,0,22271 +104389,0,1,0,-1,-1,0,9344,0,22409 +104390,1,1,0,-1,-1,0,18384,0,22409 +104391,0,1,0,-1,-1,0,13669,0,23059 +104392,1,1,0,-1,-1,0,13390,0,23059 +104393,0,1,0,-1,-1,0,15464,0,23060 +104394,0,1,0,-1,-1,0,18036,0,23061 +104395,0,1,0,-1,-1,0,14798,0,23062 +104396,1,1,0,-1,-1,0,18384,0,23062 +104397,0,1,0,-1,-1,0,9331,0,22864 +104398,1,1,0,-1,-1,0,7597,0,22864 +104399,0,1,0,-1,-1,0,23046,0,22865 +104400,1,1,0,-1,-1,0,14248,0,22865 +104401,0,0,0,60000,20000,1141,28200,0,22678 +104402,0,0,0,-1,-1,0,28871,0,23083 +104403,0,1,0,-1,-1,0,22849,0,23084 +104404,0,1,0,-1,-1,0,24197,0,23085 +104405,0,0,-1,0,0,0,27117,0,22038 +104406,0,0,-1,0,0,0,27118,0,22039 +104407,0,0,-1,-1,-1,0,29388,0,23246 +104408,0,1,0,-1,-1,0,14027,0,22150 +104409,1,1,0,-1,-1,0,15464,0,22150 +104410,0,0,-1,-1,-1,0,27739,0,22047 +104411,0,0,-1,-1,-1,0,27726,0,22307 +104412,0,0,-1,-1,-1,0,27727,0,22308 +104413,0,0,-1,-1,-1,0,27146,0,21984 +104414,0,0,-1,-1,-1,0,29116,0,23215 +104415,0,1,0,-1,-1,0,9307,0,23126 +104416,0,0,-1,0,0,0,27121,0,22042 +104417,0,0,-1,0,0,0,27122,0,22043 +104418,0,1,0,-1,-1,0,18036,0,22720 +104419,0,1,0,-1,-1,0,13388,0,21639 +104420,1,1,0,-1,-1,0,13669,0,21639 +104421,0,1,0,0,-1,0,9315,0,22315 +104422,0,0,0,-1,-1,0,27664,0,22283 +104423,0,1,0,-1,-1,0,9345,0,22069 +104424,1,1,0,-1,-1,0,26283,0,22069 +104425,0,1,0,-1,-1,0,9344,0,22860 +104426,1,1,0,-1,-1,0,23727,0,22860 +104427,0,1,0,-1,-1,0,28539,0,22862 +104428,0,1,0,-1,-1,0,14049,0,22722 +104429,0,0,-1,0,0,0,3231,0,22584 +104430,0,0,-1,0,0,0,8375,0,22585 +104431,0,0,-1,0,0,0,26020,0,22586 +104432,0,1,0,-1,-1,0,9417,0,22075 +104433,1,1,0,-1,-1,0,18384,0,22075 +104434,0,1,0,-1,-1,0,9416,0,22242 +104435,0,1,0,-1,-1,0,9417,0,22113 +104436,1,1,0,-1,-1,0,21618,0,22113 +104437,0,1,0,-1,-1,0,7597,0,22005 +104438,0,0,-1,-1,-1,0,29333,0,23326 +104439,0,1,0,-1,-1,0,14049,0,23054 +104440,0,0,-1,-1,-1,0,28800,0,23055 +104441,0,1,0,-1,-1,0,9417,0,22096 +104442,1,1,0,-1,-1,0,21618,0,22096 +104443,0,1,0,-1,-1,0,23217,0,22863 +104444,0,1,0,-1,-1,0,9345,0,22067 +104445,0,1,0,-1,-1,0,9417,0,22070 +104446,0,1,0,-1,-1,0,14047,0,22511 +104447,0,0,0,600000,-1,0,27922,0,22485 +104448,0,0,-1,-1,-1,0,28086,0,22486 +104449,0,0,-1,-1,-1,0,27713,0,22123 +104450,0,1,0,-1,-1,0,9331,0,21498 +104451,0,1,0,-1,-1,0,27539,0,22196 +104452,0,1,0,-1,-1,0,18676,0,22197 +104453,0,0,-1,0,0,0,27107,0,22028 +104454,0,0,0,0,600000,1139,27190,0,22050 +104455,0,0,-1,0,0,0,27119,0,22040 +104456,0,1,0,-1,-1,0,17367,0,21499 +104457,1,1,0,-1,-1,0,18384,0,21499 +104458,0,1,0,-1,-1,0,9397,0,22106 +104459,0,1,0,-1,-1,0,15464,0,22480 +104460,1,1,0,-1,-1,0,7597,0,22480 +104461,2,1,0,-1,-1,0,15817,0,22480 +104462,0,1,0,-1,-1,0,15464,0,22481 +104463,1,1,0,-1,-1,0,15818,0,22481 +104464,2,1,0,-1,-1,0,7597,0,22481 +104465,1,1,0,-1,-1,0,7597,0,22482 +104466,0,1,0,-1,-1,0,7597,0,22483 +104467,0,1,0,-1,-1,0,18041,0,22489 +104468,1,1,0,-1,-1,0,18378,0,22489 +104469,0,1,0,-1,-1,0,18041,0,22488 +104470,1,1,0,-1,-1,0,18378,0,22488 +104471,0,1,0,-1,-1,0,18040,0,22512 +104472,1,1,0,-1,-1,0,21363,0,22512 +104473,0,0,-1,0,0,0,27111,0,22032 +104474,0,0,-1,0,0,0,27114,0,22035 +104475,0,0,-1,0,0,0,27116,0,22037 +104476,0,0,0,-1,-1,0,27668,0,22136 +104477,0,0,0,0,600000,1139,27191,0,22051 +104478,0,1,0,-1,-1,0,9314,0,21500 +104479,1,1,0,-1,-1,0,21618,0,21500 +104480,0,1,0,-1,-1,0,18041,0,22490 +104481,0,1,0,-1,-1,0,21363,0,22491 +104482,1,1,0,-1,-1,0,18034,0,22491 +104483,0,1,0,-1,-1,0,18033,0,22492 +104484,1,1,0,-1,-1,0,21363,0,22492 +104485,0,1,0,-1,-1,0,15696,0,22493 +104486,0,1,0,-1,-1,0,18035,0,22494 +104487,1,1,0,-1,-1,0,21618,0,22494 +104488,0,1,0,-1,-1,0,9331,0,22318 +104489,0,1,0,-1,-1,0,18036,0,22272 +104490,0,1,0,-1,-1,0,24196,0,22496 +104491,1,1,0,-1,-1,0,23727,0,22496 +104492,2,1,0,-1,-1,0,18384,0,22496 +104493,3,1,0,-1,-1,0,28869,0,22496 +104494,0,0,0,0,600000,1139,27201,0,22052 +104495,0,0,0,0,600000,1139,27202,0,22056 +104496,0,0,0,0,600000,1139,27203,0,22057 +104497,0,1,0,-1,-1,0,7515,0,21996 +104498,0,1,0,-1,-1,0,13383,0,22000 +104499,0,0,-1,0,0,0,27120,0,22041 +104500,0,1,0,-1,-1,0,9417,0,22076 +104501,0,1,0,-1,-1,0,9342,0,22077 +104502,1,1,0,-1,-1,0,23727,0,22077 +104503,0,1,0,-1,-1,0,23727,0,22497 +104504,1,1,0,-1,-1,0,28264,0,22497 +104505,0,1,0,-1,-1,0,14055,0,22498 +104506,1,1,0,-1,-1,0,23727,0,22498 +104507,2,1,0,-1,-1,0,18382,0,22498 +104508,0,1,0,-1,-1,0,28792,0,22799 +104509,1,1,0,-1,-1,0,18382,0,22799 +104510,2,1,0,-1,-1,0,28799,0,22799 +104511,0,1,0,-1,-1,0,23729,0,22800 +104512,1,1,0,-1,-1,0,28841,0,22800 +104513,2,1,0,-1,-1,0,18384,0,22800 +104514,0,1,0,-1,-1,0,18049,0,23050 +104515,1,1,0,-1,-1,0,18384,0,23050 +104516,2,1,0,-1,-1,0,23727,0,23050 +104517,0,1,0,-1,-1,0,7598,0,23053 +104518,1,1,0,-1,-1,0,9334,0,23053 +104519,0,1,0,-1,-1,0,9416,0,22081 +104520,0,0,0,-1,-1,0,27667,0,22132 +104521,0,0,0,-1,-1,0,27667,0,22133 +104522,0,0,0,-1,-1,0,27668,0,22134 +104523,0,0,0,-1,-1,0,27668,0,22135 +104524,0,1,0,-1,-1,0,9415,0,22068 +104525,0,1,0,-1,-1,0,9343,0,22083 +104526,1,1,0,-1,-1,0,21626,0,22083 +104527,0,1,0,-1,-1,0,9346,0,22855 +104528,0,1,0,-1,-1,0,23049,0,22856 +104529,1,1,0,-1,-1,0,9335,0,22856 +104530,1,1,0,-1,-1,0,22801,0,22857 +104531,0,1,0,-1,-1,0,15464,0,22478 +104532,1,1,0,-1,-1,0,7598,0,22478 +104533,0,1,0,-1,-1,0,7597,0,22479 +104534,1,1,0,-1,-1,0,15464,0,22479 +115245,0,0,0,-1,-1,0,308395,0,172070 +118012,0,0,0,-1,-1,0,330659,0,180089 +138372,0,0,-1,-1,3600000,1928,349858,0,184937 +138373,0,0,0,-1,-1,0,349863,0,184938 +140321,0,0,0,180000,0,0,366881,0,190181 +140324,0,0,0,180000,0,0,366894,0,190186 +140325,0,0,0,180000,0,0,366902,0,190187 +140337,0,0,0,-1,-1,0,367062,0,190308 +140338,0,0,0,-1,-1,0,369463,0,190307 diff --git a/HermesProxy/CSV/ItemEffect2.csv b/HermesProxy/CSV/ItemEffect2.csv new file mode 100644 index 00000000..1ac13f74 --- /dev/null +++ b/HermesProxy/CSV/ItemEffect2.csv @@ -0,0 +1,17687 @@ +ID,LegacySlotIndex,TriggerType,Charges,CoolDownMSec,CategoryCoolDownMSec,SpellCategoryID,SpellID,ChrSpecializationID,ParentItemID +97043,0,2,0,-1,-1,0,18077,0,899 +97045,0,0,0,-1,-1,0,472,0,903 +97046,0,0,-1,-1,-1,0,483,0,1105 +97047,0,1,0,-1,-1,0,9396,0,892 +97048,0,0,0,0,3000,330,578,0,1041 +97049,0,0,0,0,0,0,581,0,1042 +97050,0,0,0,0,0,0,580,0,1043 +97051,0,0,0,0,0,0,579,0,1044 +97052,0,0,0,120000,60000,12,547,0,1184 +97053,0,0,-1,-1,-1,0,8176,0,1187 +97054,0,0,-1,-1,-1,0,483,0,1101 +97055,0,0,-1,1000,0,0,673,0,1177 +97056,0,0,-1,0,60000,24,1940,0,1178 +97057,0,0,-1,-1,-1,0,483,0,986 +97058,0,0,-1,-1,-1,0,483,0,989 +97059,0,0,0,3600000,0,0,18831,0,1315 +97060,0,2,0,-1,-1,0,13480,0,1318 +97061,0,0,-1,-1,-1,0,483,0,1136 +97062,0,0,-1,-1,-1,0,483,0,1138 +97063,0,0,-1,-1,-1,0,483,0,1139 +97064,0,0,-1,-1,-1,0,483,0,1108 +97065,0,0,-1,-1,-1,0,483,0,1109 +97066,0,0,-1,-1,-1,0,483,0,1111 +97067,0,0,-1,0,0,0,483,0,1052 +97068,0,0,-1,0,1000,11,5005,0,724 +97069,0,0,-1,-1,-1,0,483,0,728 +97070,0,2,0,-1,-1,0,17504,0,809 +97071,0,2,0,-1,-1,0,13439,0,810 +97072,0,0,-1,0,1000,11,435,0,733 +97073,0,0,-1,300000,120000,4,3591,0,737 +97074,0,0,0,1800000,0,0,17712,0,833 +97075,1,1,0,-1,-1,0,5707,0,833 +97076,0,0,-1,0,60000,24,8312,0,835 +97077,0,0,-1,0,1000,11,433,0,787 +97078,0,0,-1,-1,-1,0,29467,0,23545 +97080,0,0,0,-1,-1,0,459,0,842 +97081,0,0,-1,-1,-1,0,483,0,1093 +97082,0,0,-1,-1,-1,0,483,0,1095 +97083,0,0,-1,-1,-1,0,483,0,1096 +97084,0,0,-1,-1,-1,0,483,0,1099 +97085,0,0,-1,-1,-1,0,483,0,1100 +97086,0,0,-1,0,0,0,483,0,1048 +97087,0,2,0,-1,-1,0,18797,0,871 +97088,0,1,0,-1,-1,0,18049,0,873 +97089,0,0,-1,-1,-1,0,458,0,875 +97090,0,2,0,-1,-1,0,8552,0,880 +97091,0,0,-1,0,0,0,483,0,1049 +97092,0,0,-1,0,1000,11,5006,0,1082 +97093,0,1,0,0,-1,0,7597,0,867 +97094,1,1,0,-1,-1,0,9331,0,867 +97095,2,1,0,-1,-1,0,18074,0,867 +97096,0,1,0,0,0,0,7518,0,868 +97097,0,0,-1,-1,-1,0,483,0,1086 +97098,0,0,-1,-1,-1,0,483,0,1141 +97099,0,0,-1,-1,-1,0,483,0,1144 +97100,0,0,-1,-1,-1,0,483,0,1146 +97101,0,0,-1,-1,-1,0,483,0,1149 +97102,0,0,-1,-1,-1,0,483,0,1150 +97103,0,0,-1,-1,-1,0,483,0,1151 +97104,0,0,-1,0,1000,11,434,0,414 +97105,0,0,-1,0,1000,11,435,0,422 +97106,0,0,-1,-1,-1,0,483,0,1087 +97107,0,0,-1,-1,-1,0,483,0,1088 +97108,0,0,-1,0,1000,11,5006,0,1017 +97109,0,0,-1,0,0,11,7291,0,1165 +97110,0,0,-1,0,1000,11,433,0,961 +97111,0,1,0,-1,-1,0,18815,0,1168 +97112,1,1,0,-1,-1,0,18816,0,1168 +97113,0,0,-1,-1,-1,4,431,0,1267 +97114,0,2,0,-1,-1,0,18208,0,1265 +97115,0,0,-1,-1,-1,0,483,0,1084 +97116,0,0,-1,-1,-1,0,483,0,1085 +97117,0,0,-1,-1,-1,0,483,0,1089 +97118,0,0,-1,-1,-1,0,483,0,966 +97119,0,0,-1,-1,1000,11,434,0,1321 +97120,0,0,-1,-1,120000,1153,7396,0,1322 +97121,0,0,-1,0,1000,11,434,0,1113 +97122,0,0,-1,0,1000,11,435,0,1114 +97123,0,0,-1,-1,1000,11,435,0,1119 +97124,0,0,-10,-1,-1,0,1500,0,836 +97125,0,0,-1,-1,-1,4,432,0,1268 +97126,0,0,0,-1,-1,0,468,0,1122 +97127,0,0,0,-1,-1,0,472,0,1123 +97128,0,0,0,-1,-1,0,471,0,1124 +97129,0,0,-1,0,60000,24,2120,0,1127 +97130,0,0,-1,-1,-1,0,473,0,951 +97131,0,0,-1,1000,-1,0,8118,0,954 +97132,0,0,-1,-1,-1,0,483,0,976 +97133,0,0,-1,1000,-1,0,8096,0,955 +97134,0,0,-1,0,1000,11,433,0,761 +97135,0,0,-1,-1,-1,0,483,0,967 +97136,0,0,-1,-1,-1,0,483,0,968 +97137,0,0,-1,-1,-1,0,483,0,973 +97138,0,0,-1,-1,-1,0,483,0,974 +97139,0,0,-1,-1,-1,0,483,0,1224 +97140,0,0,-1,-1,-1,0,483,0,1228 +97141,0,0,-1,1000,-1,0,2006,0,1176 +97142,0,0,-1,-1,-1,0,483,0,1091 +97143,0,0,-1,-1,-1,0,483,0,1092 +97144,0,0,-1,-1,-1,0,483,0,975 +97145,0,0,-1,0,0,0,483,0,1053 +97146,0,0,-1,0,0,0,483,0,1057 +97147,0,0,-1,0,0,0,483,0,1061 +97148,0,0,-1,-1,120000,4,438,0,1072 +97149,0,2,0,-1,-1,0,13524,0,934 +97150,0,2,0,-1,-1,0,18138,0,937 +97151,0,0,0,900000,0,0,18820,0,940 +97152,0,2,0,-1,-1,0,13752,0,869 +97153,0,0,-1,0,0,0,483,0,1038 +97154,0,0,0,30000,-1,0,47,0,941 +97155,0,1,0,0,-1,0,9308,0,942 +97156,1,1,0,-1,-1,0,18799,0,942 +97157,0,1,0,-1,-1,0,13390,0,943 +97158,0,1,0,-1,-1,0,17873,0,944 +97159,1,1,0,-1,-1,0,17897,0,944 +97160,0,0,0,-1,-1,0,458,0,823 +97163,0,0,-1,0,120000,1153,1138,0,1703 +97164,0,0,-1,60000,30000,29,1139,0,1704 +97165,0,2,0,-1,-1,0,16401,0,1726 +97166,0,2,0,-1,-1,0,13528,0,1727 +97167,0,0,-1,0,120000,4,441,0,929 +97168,0,0,-1,0,0,0,483,0,1029 +97169,0,0,-1,0,0,0,483,0,1030 +97170,0,0,-1,0,0,0,483,0,1031 +97171,0,0,-1,0,0,0,483,0,1032 +97172,0,0,-1,0,0,0,483,0,1033 +97173,0,0,-1,0,0,0,483,0,1034 +97174,0,0,-1,-1,-1,0,483,0,1559 +97175,0,0,-1,-1,-1,0,483,0,1641 +97176,0,0,-1,0,1000,59,1135,0,1645 +97177,0,0,-1,-1,-1,0,483,0,1648 +97178,0,0,-1,0,1000,11,1128,0,1649 +97179,0,0,-1,-1,-1,0,483,0,1568 +97180,0,0,-1,-1,-1,0,483,0,1655 +97181,0,0,-1,-1,-1,0,483,0,1657 +97182,0,0,-1,0,0,0,483,0,1035 +97183,0,0,-1,0,0,0,483,0,1037 +97184,0,0,0,0,3000,330,580,0,1132 +97185,0,0,0,0,3000,330,581,0,1133 +97186,0,0,0,0,3000,330,459,0,1134 +97187,0,0,-1,0,120000,1153,8070,0,1970 +97188,0,0,0,60000,-1,0,403,0,1914 +97189,0,0,-5,-1,-1,0,2352,0,1918 +97190,0,0,-1,0,60000,24,49512,0,1399 +97191,0,0,-1,0,300000,28,65,0,1400 +97192,0,0,-3,1800000,-1,0,365,0,1700 +97193,0,0,0,300000,0,0,8736,0,1933 +97194,0,0,-1,-1,-1,0,3366,0,2363 +97195,0,0,-1,0,0,0,483,0,1603 +97196,0,0,-1,-1,-1,0,483,0,1231 +97197,0,0,-1,-1,-1,0,483,0,1232 +97198,0,0,-1,-1,-1,0,483,0,1238 +97199,0,0,-1,-1,-1,0,483,0,1239 +97200,0,0,-1,-1,-1,0,483,0,1243 +97201,0,0,-1,-1,-1,0,483,0,1245 +97202,0,2,0,-1,-1,0,18090,0,1986 +97203,0,0,-1,0,1000,11,433,0,2070 +97204,0,0,-1,0,0,59,430,0,2071 +97205,0,0,-1,0,1000,150,746,0,1251 +97206,0,0,-1,1000,0,0,2352,0,1253 +97207,0,1,0,0,0,0,758,0,1254 +97208,1,1,0,0,0,0,23480,0,1254 +97209,0,0,0,30000,0,0,4960,0,1352 +97210,0,1,0,-1,-1,0,13675,0,2040 +97211,0,0,0,30000,30000,24,133,0,1258 +97212,0,0,-1,-1,-1,0,483,0,1334 +97213,0,0,-1,-1,-1,0,483,0,992 +97214,0,0,-1,-1,-1,0,483,0,994 +97215,0,0,0,-1,-1,0,133,0,996 +97216,0,2,0,-1,-1,0,89,0,997 +97217,0,0,-1,-1,-1,0,483,0,1004 +97218,0,0,-1,0,1000,59,430,0,159 +97219,0,0,-1,-1,-1,0,483,0,3114 +97220,0,0,-1,-1,-1,0,483,0,1651 +97221,0,0,-1,0,60000,24,13424,0,1434 +97222,0,0,-1,-1,-1,0,483,0,1339 +97223,0,0,-1,-1,-1,0,483,0,1341 +97224,0,0,0,60000,30000,22,805,0,1350 +97225,0,0,-1,-1,-1,0,483,0,1567 +97226,0,2,0,-1,-1,0,13440,0,1481 +97227,0,0,-10,0,60000,24,5917,0,1191 +97228,0,0,-1,-1,-1,0,483,0,1246 +97229,0,0,-1,-1,-1,0,483,0,1250 +97230,0,0,-1,-1,-1,0,483,0,1554 +97231,0,2,0,-1,-1,0,13440,0,1482 +97232,0,1,0,-1,-1,0,9412,0,1484 +97233,0,0,-1,0,1000,11,1127,0,1487 +97234,0,0,-1,-1,-1,0,483,0,985 +97235,0,0,0,1800000,0,0,12257,0,744 +97236,0,0,-3,60000,20000,29,370,0,1995 +97237,0,0,-5,-1,1000,59,5257,0,1262 +97238,0,0,-10,30000,30000,29,835,0,1472 +97239,0,1,0,-1,-1,0,19409,0,1979 +97240,0,1,0,0,0,0,9414,0,1980 +97241,0,1,0,0,0,0,9402,0,1992 +97242,1,1,0,0,0,0,9412,0,1992 +97243,0,0,-1,1000,-1,0,8116,0,1477 +97244,0,0,-1,1000,-1,0,8094,0,1478 +97245,0,0,-1,-1,-1,0,483,0,1658 +97246,0,1,0,-1,-1,0,15714,0,1716 +97247,1,1,0,-1,-1,0,18369,0,1717 +97248,0,1,0,-1,-1,0,9411,0,1720 +97249,0,0,-1,-1,-1,0,483,0,1886 +97250,0,0,-1,-1,1000,11,434,0,1326 +97251,0,0,-1,0,1000,11,1127,0,1707 +97252,0,0,-1,0,1000,59,1133,0,1708 +97253,0,1,0,-1,-1,0,14799,0,1664 +97254,0,0,-1,-1,-1,0,483,0,1676 +97255,0,0,-1,-1,-1,0,483,0,3090 +97256,0,2,0,-1,-1,0,18211,0,1982 +97257,0,0,-5,120000,0,0,706,0,1612 +97258,0,0,-1,0,0,0,483,0,1619 +97259,0,0,-3,1800000,-1,0,955,0,1622 +97260,0,0,-1,0,0,0,483,0,1597 +97261,0,2,0,-1,-1,0,18086,0,1728 +97262,0,0,-1,-1,-1,0,483,0,1229 +97263,0,0,-1,-1,-1,0,9437,0,7586 +97264,0,0,0,60000,-1,0,1152,0,2948 +97265,0,0,-1,0,3000,79,2374,0,2457 +97266,0,0,0,60000,-1,0,707,0,1444 +97267,0,0,0,1800000,0,0,18826,0,1447 +97268,0,0,-1,0,120000,4,806,0,1450 +97269,0,0,-1,-1,-1,0,483,0,1112 +97270,0,0,-1,0,1000,59,431,0,1179 +97271,0,0,-1,1000,-1,0,8099,0,1180 +97272,0,0,-1,1000,-1,0,8112,0,1181 +97273,0,0,-1,-1,-1,0,29475,0,23547 +97274,0,0,-1,0,1000,11,833,0,1401 +97275,0,0,-5,0,60000,24,143,0,1402 +97276,0,0,-10,30000,30000,28,834,0,1403 +97277,0,0,-1,-1,-1,0,29483,0,23548 +97278,0,0,-1,-1,-1,0,483,0,1328 +97279,0,1,0,0,0,0,18097,0,1204 +97280,0,0,-1,0,1000,59,432,0,1205 +97281,0,0,-1,0,120000,4,2024,0,1710 +97282,0,0,-1,1000,-1,0,8100,0,1711 +97283,0,0,-1,1000,-1,0,8113,0,1712 +97284,0,0,0,300000,0,0,14053,0,1713 +97285,0,1,0,-1,-1,0,7597,0,1680 +97286,0,0,-1,-1,-1,0,483,0,1681 +97287,0,1,0,-1,-1,0,9397,0,862 +97288,0,0,-5,0,300000,28,1152,0,1851 +97289,0,0,0,60000,-1,0,1139,0,1854 +97290,0,0,-1,-1,-1,0,483,0,1877 +97291,0,0,-1,-1,-1,0,3213,0,1878 +97292,0,0,-1,-1,-1,0,483,0,1882 +97293,0,0,-1,-1,-1,0,483,0,1534 +97294,0,2,0,-1,-1,0,16409,0,3822 +97295,0,0,-1,-1,-1,0,483,0,3612 +97296,0,0,-1,0,120000,4,2379,0,2459 +97297,0,0,-1,-1,-1,0,2006,0,3438 +97298,0,0,-10,30000,-1,0,89,0,3441 +97299,0,0,-1,0,0,0,483,0,4179 +97301,0,0,-1,0,1000,11,5004,0,2680 +97302,0,0,-1,0,1000,11,433,0,2681 +97303,0,0,-1,0,1000,11,2639,0,2682 +97304,0,0,-1,0,1000,11,5005,0,2683 +97305,0,1,0,-1,-1,0,17878,0,3075 +97306,0,0,-1,-1,-1,0,3366,0,3499 +97307,0,0,-1,0,1000,11,435,0,3770 +97308,0,0,-1,0,1000,11,5005,0,2684 +97309,0,0,-1,-1,-1,0,483,0,3118 +97310,0,1,0,-1,-1,0,7679,0,2816 +97311,1,1,0,-1,-1,0,7708,0,2816 +97312,0,0,-1,1000,-1,0,3112,0,3239 +97313,0,1,0,-1,-1,0,9416,0,2620 +97314,0,0,-1,0,1000,11,1127,0,3771 +97315,0,0,-1,0,1000,59,1133,0,3772 +97316,0,0,-1,-1,-1,0,483,0,3146 +97317,0,0,-1,-1,60000,24,700,0,3434 +97318,0,0,0,-1,-1,0,8913,0,2808 +97319,0,0,-1,-1,-1,0,3366,0,3467 +97320,0,0,-1,-1,-1,0,483,0,3139 +97321,0,0,-1,0,120000,4,3592,0,2633 +97322,0,0,-1,-1,-1,0,483,0,3096 +97323,0,0,-1,0,120000,4,708,0,3768 +97324,0,0,-1,1000,-1,0,2828,0,2862 +97325,0,0,-1,1000,-1,0,2829,0,2863 +97326,0,0,-1,0,-1,0,2824,0,2893 +97327,0,0,-1,0,1000,11,5006,0,3665 +97328,0,0,-1,-1,-1,0,483,0,3097 +97329,0,0,-1,-1,-1,0,483,0,3098 +97330,0,2,0,0,0,0,13440,0,2256 +97331,0,0,-1,-1,-1,0,483,0,3094 +97332,0,0,-1,-1,-1,0,483,0,3095 +97333,0,0,-1,-1,-1,0,483,0,3092 +97334,0,0,-1,-1,-1,0,483,0,3093 +97335,0,0,-1,0,0,0,483,0,4183 +97336,0,0,-1,0,0,0,483,0,4185 +97337,0,2,0,-1,-1,0,18199,0,2299 +97338,0,0,-1,-1,-1,0,483,0,2406 +97339,0,0,-1,-1,-1,0,483,0,2407 +97340,0,0,-1,-1,-1,0,483,0,2408 +97341,0,0,-1,-1,-1,0,483,0,2409 +97342,0,2,0,-1,-1,0,9796,0,3687 +97343,1,2,0,-1,-1,0,13441,0,3687 +97344,2,2,0,-1,-1,0,13438,0,3687 +97345,0,1,0,-1,-1,0,14825,0,3604 +97346,0,0,-1,0,3000,79,3164,0,3391 +97347,0,1,0,-1,-1,0,29417,0,3605 +97348,0,0,-1,0,3000,79,3166,0,3383 +97349,0,0,-1,0,120000,4,2380,0,3384 +97350,0,0,-1,0,120000,4,438,0,3385 +97351,0,0,-10,1800000,-1,0,1459,0,1912 +97352,0,0,-1,-1,-1,0,483,0,4211 +97353,0,0,-1,0,0,0,483,0,4170 +97354,0,0,-1,-1,-1,0,483,0,3393 +97355,0,0,-1,0,0,79,483,0,3394 +97356,0,2,0,-1,-1,0,16409,0,1387 +97357,0,0,-1,0,120000,1153,4071,0,4366 +97358,0,0,-1,1000,-1,0,4056,0,4367 +97359,0,0,-1,0,1000,59,11008,0,2596 +97360,0,0,-1,-1,-1,0,483,0,2598 +97361,0,0,-1,-1,-1,0,2409,0,2599 +97363,0,0,-1,-1,-1,0,483,0,4217 +97364,0,0,-1,-1,-1,0,483,0,1536 +97365,0,0,0,900000,0,0,835,0,1404 +97366,0,0,-1,-1,-1,0,483,0,1571 +97367,0,0,-1,0,0,0,483,0,1589 +97368,0,1,0,-1,-1,0,21142,0,3475 +97369,0,0,-1,0,600000,4,3680,0,3823 +97370,0,0,-1,-1,-1,0,483,0,3872 +97371,0,0,-1,-1,-1,0,483,0,3873 +97372,0,0,-1,0,0,0,483,0,1591 +97373,0,0,-1,-1,-1,0,483,0,4355 +97374,0,0,-1,0,-1,0,2823,0,2892 +97375,0,0,-1,-1,-1,0,483,0,3874 +97376,0,0,-1,1000,0,0,2352,0,2789 +97377,0,0,-1,-1,-1,0,483,0,4216 +97378,0,0,-1,0,3000,79,2381,0,2461 +97379,0,0,-1,0,1000,11,5005,0,3662 +97380,0,0,-1,0,0,0,483,0,4171 +97381,0,0,-1,-1,-1,0,483,0,4356 +97382,0,0,-1,-1,-1,0,2352,0,2790 +97383,0,0,-1,-1,-1,0,2352,0,2792 +97384,0,0,-1,-1,-1,0,483,0,2553 +97385,0,0,0,1800000,-1,0,554,0,2826 +97386,0,0,-1,0,1000,59,432,0,2136 +97387,0,0,-1,-1,-1,0,483,0,3119 +97388,0,0,-1,-1,-1,0,483,0,3120 +97389,0,0,-1,-1,-1,0,483,0,3121 +97390,0,0,0,0,3000,330,470,0,2411 +97391,0,1,0,-1,-1,0,29415,0,2662 +97392,0,1,0,-1,-1,0,29625,0,2099 +97393,0,1,0,-1,-1,0,29418,0,2101 +97394,0,0,-1,-1,-1,0,483,0,2601 +97395,0,0,-1,-1,-1,0,2412,0,2602 +97396,0,0,-1,-1,-1,0,483,0,3102 +97397,0,0,-1,1000,-1,0,2830,0,2871 +97398,0,0,-1,1000,-1,0,8119,0,2289 +97399,0,0,-1,1000,-1,0,8097,0,2290 +97400,0,1,0,-1,-1,0,17747,0,2231 +97401,0,0,-1,-1,-1,0,11007,0,2686 +97402,0,0,-1,0,1000,11,5005,0,2687 +97403,0,1,0,-1,-1,0,9359,0,1998 +97404,0,2,0,-1,-1,0,18091,0,2000 +97405,0,1,0,-1,-1,0,5102,0,2002 +97406,0,0,-1,0,1000,11,433,0,2679 +97407,0,0,-1,0,-1,0,11007,0,2894 +97409,0,1,0,-1,-1,0,9328,0,2549 +97410,0,0,-1,0,0,0,483,0,3132 +97411,0,0,-1,-1,-1,0,483,0,2881 +97412,0,1,0,-1,-1,0,14824,0,2102 +97413,0,1,0,0,-1,0,9331,0,2262 +97414,0,2,0,-1,-1,0,14119,0,2263 +97415,0,0,-1,0,0,0,483,0,3130 +97416,0,1,0,-1,-1,0,7686,0,2879 +97417,1,1,0,-1,-1,0,7700,0,2879 +97418,0,0,-1,-1,-1,0,483,0,2698 +97419,0,0,-1,0,0,0,483,0,3127 +97420,0,0,-1,0,1000,59,431,0,2288 +97421,0,0,0,60000,-1,0,109,0,3015 +97422,0,2,0,-1,-1,0,18217,0,2205 +97423,0,2,0,-1,-1,0,17153,0,2291 +97424,0,0,-1,0,0,0,483,0,3129 +97425,0,0,-1,-1,-1,0,483,0,2404 +97426,0,0,-1,-1,-1,0,483,0,2405 +97427,0,0,-1,0,0,0,483,0,3133 +97428,0,0,-1,-1,-1,0,483,0,3134 +97429,0,1,0,-1,-1,0,9318,0,2721 +97430,0,0,-1,0,1000,59,11007,0,2723 +97431,0,0,-1,-1,-1,0,483,0,3089 +97432,0,0,-1,-1,-1,0,483,0,3611 +97433,0,1,0,-1,-1,0,29501,0,2824 +97434,0,1,0,-1,-1,0,29624,0,2825 +97435,0,2,0,-1,-1,0,18205,0,3194 +97436,0,1,0,-1,-1,0,7709,0,2277 +97437,0,0,0,1800000,0,0,14530,0,2820 +97438,0,0,-1,-1,-1,0,483,0,3866 +97439,0,0,-1,-1,-1,0,483,0,3868 +97440,0,0,-1,-1,-1,0,483,0,3123 +97441,0,0,-1,-1,-1,0,483,0,3124 +97442,0,0,-1,0,0,0,483,0,3125 +97443,0,0,-1,0,0,0,483,0,3126 +97444,0,0,0,600000,0,0,13744,0,2802 +97445,0,0,0,1800000,-1,0,505,0,2804 +97446,0,0,-1,-1,-1,0,483,0,3140 +97447,0,0,-1,0,1000,11,5004,0,2888 +97448,0,0,-1,-1,-1,0,483,0,3141 +97449,0,0,-1,-1,-1,0,483,0,3144 +97450,0,0,-1,-1,120000,4,29236,0,3087 +97451,0,0,-1,-1,-1,0,483,0,3088 +97452,0,1,0,-1,-1,0,9400,0,3073 +97453,0,0,-1,-1,-1,0,483,0,3875 +97454,0,0,-1,-1,-1,0,483,0,2882 +97455,0,2,0,-1,-1,0,18138,0,2163 +97456,0,0,-1,-1,-1,0,483,0,3869 +97457,0,0,-1,-1,-1,0,483,0,3870 +97458,0,0,-1,-1,-1,0,483,0,3871 +97459,0,0,-1,-1,-1,0,483,0,3091 +97460,0,0,-1,-1,-1,0,483,0,3678 +97461,0,0,-1,-1,-1,0,483,0,3679 +97462,0,0,-1,-1,-1,0,483,0,3832 +97463,0,0,-1,-1,-1,0,483,0,3608 +97466,0,0,0,60000,-1,0,437,0,2478 +97467,0,0,-1,0,0,59,1135,0,3773 +97468,0,0,-1,0,-1,0,3408,0,3775 +97469,0,0,-1,0,3000,79,2378,0,2458 +97470,0,0,-1,1000,-1,0,8115,0,3012 +97471,0,0,-1,0,-1,0,11202,0,3776 +97472,0,0,-1,0,1000,59,11008,0,2593 +97473,0,0,-1,0,1000,59,11009,0,2594 +97474,0,0,-1,-1,-1,0,483,0,2883 +97475,0,0,-1,1000,-1,0,8091,0,3013 +97476,0,2,0,-1,-1,0,18107,0,2164 +97477,0,0,-1,-1,-1,0,483,0,3099 +97478,0,0,-1,-1,-1,0,483,0,3100 +97479,0,0,0,-1,3000,330,472,0,2414 +97480,0,0,-1,0,1000,59,11009,0,2595 +97481,0,1,0,-1,-1,0,7703,0,2950 +97482,0,0,-1,0,1000,11,5006,0,3666 +97483,0,0,-1,0,1000,11,435,0,2685 +97484,0,2,0,-1,-1,0,16409,0,2912 +97485,0,0,-1,0,60000,24,1090,0,2091 +97486,0,1,0,-1,-1,0,14828,0,2663 +97487,0,0,-1,-1,-1,0,483,0,3112 +97488,0,0,-1,-1,-1,0,483,0,3113 +97489,0,2,0,-1,-1,0,18803,0,2243 +97490,0,1,0,-1,-1,0,7597,0,2244 +97491,0,0,-5,120000,-1,0,9489,0,7667 +97492,0,0,0,0,3000,330,471,0,2413 +97493,0,2,0,-1,-1,0,16415,0,2915 +97494,0,0,-1,-1,-1,0,483,0,2699 +97495,0,0,-1,-1,-1,0,483,0,2701 +97496,0,0,-1,0,1000,11,5005,0,3220 +97497,0,0,-1,0,120000,4,4042,0,3928 +97498,0,0,-1,-1,-1,0,483,0,5141 +97499,0,0,-1,-1,-1,0,483,0,4222 +97500,0,0,-1,-1,-1,0,483,0,4223 +97501,0,0,-1,1000,0,0,3594,0,3824 +97502,0,0,-1,-1,-1,0,483,0,4226 +97503,0,0,-1,-1,-1,0,483,0,4351 +97504,0,0,-1,-1,-1,0,483,0,4352 +97505,0,0,-1,-1,-1,0,483,0,4353 +97506,0,0,-1,0,60000,24,4068,0,4390 +97507,0,0,-1,-1,-1,0,483,0,5161 +97508,0,0,-1,-1,-1,0,483,0,5163 +97509,0,0,-1,-1,-1,0,483,0,4411 +97510,0,0,0,2000,-1,0,4954,0,4704 +97511,0,0,-1,10000,-1,0,4130,0,4481 +97512,0,0,0,1500,0,0,4055,0,4401 +97513,0,0,-1,0,0,0,483,0,4176 +97514,0,0,-1,0,0,0,483,0,4177 +97515,0,0,-1,0,0,0,483,0,4178 +97516,0,0,-1,600000,60000,24,4078,0,4391 +97517,0,0,-1,0,120000,1153,4072,0,4392 +97518,0,0,-1,-1,-1,0,483,0,5126 +97519,0,0,-1,-1,-1,0,483,0,5127 +97520,0,0,-1,-1,-1,0,483,0,4218 +97521,0,0,-1,-1,-1,0,483,0,4220 +97522,0,0,-1,-1,-1,0,483,0,4221 +97523,0,0,-1,-1,-1,0,483,0,5142 +97524,0,0,-1,-1,-1,0,483,0,5153 +97525,0,0,0,-1,-1,0,1538,0,3710 +97526,0,0,-1,-1,-1,0,483,0,5129 +97527,0,0,-1,-1,-1,0,483,0,4282 +97528,0,0,-1,-1,-1,0,483,0,4283 +97529,0,0,-1,10000,-1,0,5316,0,5165 +97530,0,0,-1,-1,-1,0,483,0,4296 +97531,0,0,-1,-1,-1,0,483,0,4297 +97532,0,0,-1,-1,-1,0,483,0,4298 +97533,0,0,-1,-1,-1,0,483,0,4300 +97534,0,0,0,0,0,0,4506,0,4559 +97535,0,0,-1,-1,-1,0,3670,0,3930 +97536,0,0,-3,1000,0,0,4318,0,4546 +97537,0,0,-1,-1,-1,0,3736,0,4224 +97538,0,0,-1,-1,-1,0,483,0,4225 +97539,0,0,-1,600000,60000,24,6084,0,5332 +97542,0,0,-1,0,1000,11,433,0,5349 +97544,0,0,-1,0,1000,11,434,0,2287 +97545,0,1,0,-1,-1,0,9400,0,4117 +97546,0,0,-1,-1,-1,0,3974,0,4405 +97547,0,0,-1,1000,-1,0,3975,0,4406 +97548,0,0,-1,-1,-1,0,483,0,4161 +97549,0,0,-1,-1,-1,0,483,0,4162 +97550,0,0,-1,0,1000,59,430,0,5350 +97551,0,0,-1,0,1000,11,5006,0,3726 +97552,0,1,0,-1,-1,0,7688,0,4331 +97553,0,1,0,-1,-1,0,9314,0,2271 +97554,0,2,0,-1,-1,0,18078,0,3336 +97555,0,0,-1,0,0,0,483,0,4188 +97556,0,0,-1,0,0,0,483,0,4189 +97557,0,0,0,3600000,15000,1141,9174,0,4264 +97558,0,0,-1,1000,-1,0,2833,0,4265 +97559,0,0,-1,0,3000,79,2367,0,2454 +97560,0,0,-1,0,120000,4,437,0,2455 +97561,0,0,-1,0,120000,4,2370,0,2456 +97562,0,0,-1,0,1000,11,5006,0,3727 +97563,0,0,-1,-1,-1,0,483,0,3138 +97564,0,0,-1,-1,-1,0,483,0,4267 +97565,0,0,-1,0,1000,11,5007,0,4457 +97566,0,0,-1,1000,-1,0,8101,0,4422 +97567,0,0,-1,-1,-1,0,483,0,4165 +97568,0,0,-1,-1,-1,0,483,0,4166 +97569,0,0,-1,-1,-1,0,483,0,4167 +97570,0,0,-1,0,0,0,483,0,4168 +97571,0,0,-1,0,0,0,483,0,4169 +97572,0,0,-1,-1,-1,0,483,0,4268 +97573,0,1,0,-1,-1,0,7689,0,4317 +97574,0,0,-1,0,1000,11,435,0,4593 +97575,0,0,-1,0,1000,11,1127,0,4594 +97576,0,0,-1,0,1000,59,11009,0,4595 +97577,0,1,0,-1,-1,0,9329,0,3341 +97578,0,0,-1,-1,-1,0,4975,0,4750 +97579,0,0,-1,-1,-1,0,483,0,4141 +97580,0,0,-1,-1,-1,0,483,0,4142 +97581,0,0,-1,-1,-1,0,483,0,4143 +97582,0,0,-1,-1,-1,0,483,0,4301 +97583,0,0,-1,-1,-1,0,483,0,4147 +97584,0,0,-1,300000,-1,0,2791,0,4423 +97585,0,1,0,0,0,0,13669,0,4130 +97586,0,0,-1,0,60000,24,4062,0,4598 +97587,0,0,-1,0,1000,59,11009,0,4600 +97588,0,0,-1,0,1000,11,1129,0,4601 +97589,0,0,-1,0,1000,11,1129,0,4602 +97590,0,0,-1,0,1000,11,1127,0,4603 +97591,0,0,-1,-1,-1,0,483,0,4624 +97592,0,0,-1,-1,-1,0,483,0,4416 +97593,0,0,-1,-1,-1,0,483,0,4157 +97594,0,0,-1,-1,-1,0,483,0,4158 +97595,0,0,-1,0,1000,11,434,0,4592 +97596,0,0,-1,-1,-1,0,483,0,4412 +97597,0,0,-1,-1,-1,0,483,0,4413 +97598,0,0,-1,-1,-1,0,483,0,4414 +97599,0,0,-1,-1,-1,0,483,0,4415 +97600,0,0,-1,10000,-1,0,4131,0,4480 +97601,0,2,0,-1,-1,0,13496,0,4090 +97602,0,0,-1,-1,-1,0,483,0,5484 +97603,0,0,-1,-1,-1,0,483,0,5485 +97604,0,1,0,-1,-1,0,9133,0,4248 +97605,0,0,-1,-1,-1,0,483,0,4409 +97606,0,0,-1,-1,-1,0,483,0,4410 +97607,0,1,0,-1,-1,0,7680,0,2943 +97608,0,1,0,-1,-1,0,7709,0,2944 +97609,0,0,-1,-1,-1,0,483,0,3115 +97610,0,0,-1,0,60000,24,4065,0,4370 +97611,0,0,-1,0,120000,4,440,0,4596 +97612,0,0,-1,-1,-1,0,483,0,4597 +97613,0,0,-1,-1,-1,0,483,0,4163 +97614,0,0,-1,-1,-1,0,483,0,4345 +97615,0,0,-1,-1,-1,0,483,0,4202 +97616,0,0,-1,1000,-1,0,3113,0,3240 +97617,0,0,-1,1000,-1,0,3114,0,3241 +97618,0,0,-1,-1,-1,0,483,0,4198 +97619,0,0,-1,-1,-1,0,483,0,4199 +97620,0,0,-10,300000,120000,1153,18805,0,4381 +97621,0,0,-5,5000,-1,0,65,0,3507 +97622,0,0,-1,-1,-1,0,483,0,3682 +97623,0,0,-1,0,1000,11,1127,0,4544 +97624,0,0,-1,-1,-1,0,483,0,4354 +97625,0,0,-1,0,60000,24,4054,0,4358 +97626,0,0,-1,-1,-1,0,483,0,3395 +97627,0,0,-1,-1,-1,0,483,0,4293 +97628,0,0,-1,-1,-1,0,483,0,4294 +97629,0,0,-1,-1,-1,0,483,0,4295 +97630,0,0,-1,0,1000,11,5006,0,3663 +97631,0,0,-1,0,1000,11,5006,0,3664 +97633,0,0,0,3600000,0,0,4079,0,4397 +97634,0,0,-1,1000,-1,0,4075,0,4398 +97635,0,0,-1,-1,-1,0,483,0,4347 +97636,0,0,-1,-1,-1,0,483,0,2554 +97637,0,2,0,-1,-1,0,3742,0,3278 +97638,0,0,-1,-1,-1,0,483,0,4212 +97639,0,0,-1,-1,-1,0,483,0,3116 +97640,0,0,-1,-1,-1,0,483,0,4348 +97641,0,0,-1,-1,-1,0,483,0,4350 +97642,0,0,-1,-1,-1,0,483,0,4152 +97643,0,0,-1,-1,-1,0,483,0,4153 +97644,0,1,0,-1,-1,0,9361,0,2564 +97645,0,1,0,-1,-1,0,9400,0,2565 +97646,0,0,-1,-1,-1,0,2571,0,2761 +97647,0,0,-1,-1,-1,0,898,0,2762 +97648,0,0,-1,-1,-1,0,483,0,4154 +97649,0,0,-1,-1,-1,0,483,0,4155 +97650,0,0,-1,-1,-1,0,483,0,4156 +97651,0,0,-1,0,1000,11,434,0,4605 +97652,0,0,-1,0,1000,11,435,0,4606 +97653,0,0,-1,0,1000,11,1127,0,4607 +97654,0,0,-3,600000,60000,24,9515,0,3456 +97655,0,0,-1,-1,-1,0,483,0,3609 +97656,0,0,-1,1000,0,0,3595,0,3829 +97657,0,0,-1,-1,-1,0,483,0,3830 +97658,0,0,-1,0,1000,11,5007,0,3728 +97659,0,0,-1,0,1000,11,5007,0,3729 +97660,0,0,-1,-1,-1,0,483,0,4207 +97661,0,0,-1,-1,-1,0,483,0,4208 +97662,0,0,-1,-1,-1,0,483,0,4209 +97663,1,0,-1,0,120000,1153,10052,0,5513 +97664,1,0,-1,0,120000,1153,5405,0,5514 +97665,0,0,-1,0,0,0,483,0,4172 +97666,0,0,-1,-1,-1,0,483,0,3396 +97667,0,0,-5,900000,0,0,4077,0,4386 +97668,0,0,-1,-1,-1,0,483,0,3610 +97669,0,0,-1,-1,-1,0,483,0,4215 +97670,0,0,-1,0,1000,59,6114,0,5342 +97671,0,0,-1,-1,-1,0,483,0,4417 +97672,0,0,-1,0,1000,11,1129,0,4418 +97673,0,0,-1,1000,-1,0,8098,0,4419 +97674,0,0,-1,300000,-1,0,1008,0,4420 +97675,0,0,-1,-1,1000,11,2639,0,3448 +97676,0,0,-1,0,3000,79,3220,0,3389 +97677,0,0,-1,0,3000,79,3160,0,3390 +97678,0,0,-1,1000,-1,0,8095,0,4421 +97679,0,0,-1,-1,-1,0,483,0,4210 +97680,0,0,-1,0,60000,24,4066,0,4374 +97681,0,0,-5,900000,0,0,4057,0,4376 +97682,0,0,-1,0,0,0,483,0,4173 +97683,0,0,-1,1000,-1,0,2831,0,2304 +97684,0,0,-1,0,60000,24,4074,0,4384 +97685,0,0,-1,-1,-1,0,4239,0,4529 +97686,0,0,-1,0,60000,24,4062,0,4378 +97687,0,0,-1,-1,-1,0,483,0,3735 +97688,0,0,-1,-1,-1,0,483,0,3736 +97689,0,0,-1,-1,-1,0,483,0,3737 +97690,0,0,-1,-1,-1,0,483,0,4164 +97691,0,0,-1,0,3000,79,6512,0,3828 +97692,0,0,-1,0,60000,24,4069,0,4394 +97693,0,0,-1,0,0,0,483,0,4180 +97694,0,0,-1,-1,-1,0,483,0,3680 +97695,0,0,-1,-1,-1,0,483,0,3681 +97696,0,0,-1,-1,-1,0,4977,0,4760 +97697,1,1,0,-1,-1,0,4977,0,4760 +97698,0,0,-8,0,60000,24,4067,0,4403 +97699,0,0,-1,0,0,0,483,0,4181 +97700,0,0,-1,0,120000,79,26677,0,3386 +97701,0,0,-1,0,3000,79,3219,0,3382 +97702,0,0,-1,0,60000,24,4061,0,4365 +97703,0,0,-1,-1,-1,0,483,0,4609 +97704,0,0,-1,-1,-1,0,483,0,4206 +97705,0,0,-1,0,1000,11,434,0,4537 +97706,0,0,-1,0,1000,11,435,0,4538 +97707,0,0,-1,0,1000,11,1127,0,4539 +97708,0,0,-1,0,1000,11,433,0,4540 +97709,0,1,0,-1,-1,0,7597,0,3854 +97710,1,2,0,-1,-1,0,13439,0,3854 +97711,0,1,0,-1,-1,0,14565,0,3566 +97712,0,0,-1,0,3000,79,3593,0,3825 +97713,0,0,-1,0,3000,79,3223,0,3826 +97714,0,0,-10,30000,0,4,7669,0,3251 +97715,0,0,-1,0,1000,11,433,0,4536 +97716,0,0,-1,-1,-1,0,483,0,4200 +97717,0,0,-1,-1,-1,0,483,0,4201 +97718,0,0,-1,0,1000,11,435,0,4542 +97719,0,0,-1,-1,-1,0,483,0,4213 +97720,0,1,0,-1,-1,0,29418,0,3573 +97721,0,1,0,-1,-1,0,14824,0,3574 +97722,0,0,-1,0,60000,24,4100,0,4395 +97723,0,0,0,1200000,60000,94,4073,0,4396 +97724,0,0,-1,0,60000,24,4064,0,4360 +97725,0,0,-1,-1,-1,0,3407,0,3745 +97726,0,0,-1,1000,-1,0,2832,0,2313 +97727,0,1,0,-1,-1,0,15806,0,4983 +97728,0,0,-1,-1,-1,0,483,0,2555 +97729,0,0,-1,0,0,0,483,0,4182 +97730,0,0,0,1000,-1,0,3678,0,4027 +97731,0,0,-1,-1,-1,0,483,0,4292 +97733,0,0,-1,-1,-1,0,483,0,4228 +97734,0,0,-1,-1,-1,0,483,0,4229 +97735,0,0,0,120000,0,0,3607,0,3912 +97736,0,0,-1,-1,-1,0,483,0,2556 +97737,0,1,0,-1,-1,0,29418,0,5439 +97738,0,1,0,-1,-1,0,14824,0,5441 +97739,0,0,-1,-1,-1,0,483,0,7613 +97740,0,0,-1,0,0,0,483,0,5715 +97741,0,0,-1,0,-1,0,5761,0,5237 +97742,0,0,-1,-1,-1,0,483,0,5973 +97743,0,0,-1,0,0,0,483,0,5711 +97744,0,0,-1,0,1000,11,5004,0,5472 +97745,0,0,-1,-1,-1,0,4976,0,5185 +97746,0,0,-1,0,0,0,6258,0,5406 +97747,0,0,-1,0,0,0,6259,0,5407 +97748,0,0,-1,-1,-1,0,611,0,5678 +97749,0,0,-1,-1,-1,0,483,0,5679 +97750,0,0,0,0,3000,330,6899,0,5872 +97751,0,0,0,0,3000,330,6898,0,5873 +97752,0,0,0,0,3000,330,6896,0,5874 +97753,0,0,0,0,3000,330,6897,0,5875 +97754,0,0,-1,0,1000,11,7737,0,6299 +97755,0,0,-1,1000,-1,0,6650,0,5654 +97756,0,0,0,0,3000,330,6648,0,5655 +97757,0,0,-1,-1,-1,0,483,0,5577 +97758,0,0,-1,-1,-1,0,483,0,5578 +97759,0,0,0,-1,-1,0,6249,0,5396 +97760,0,0,-1,-1,-1,0,6250,0,5397 +97761,0,0,-1,0,1000,59,5909,0,5265 +97762,0,0,-1,-1,-1,0,483,0,6132 +97763,0,0,-1,-1,-1,0,483,0,5786 +97764,0,0,-1,0,120000,4,6724,0,5816 +97765,0,0,-1,-1,-1,0,483,0,5666 +97766,0,0,-1,-1,-1,0,483,0,5667 +97767,0,0,0,0,3000,330,6654,0,5668 +97768,0,1,0,-1,-1,0,29418,0,7278 +97769,0,0,0,-1,-1,0,3366,0,6893 +97770,0,0,-1,-1,-1,0,8616,0,6897 +97771,0,1,0,-1,0,0,7685,0,6898 +97772,1,1,0,-1,-1,0,7706,0,6898 +97773,2,0,0,1800000,0,0,18956,0,6898 +97774,0,1,0,-1,-1,0,14824,0,7279 +97775,0,0,-1,-1,-1,0,483,0,5727 +97776,0,1,0,0,0,0,5718,0,5230 +97777,1,0,-1,0,0,100,5720,0,5230 +97778,0,1,0,0,0,0,5719,0,5231 +97779,1,0,-1,0,0,100,5723,0,5231 +97780,0,0,-1,-1,-1,0,3366,0,6210 +97781,0,0,-1,-1,-1,0,483,0,6211 +97782,0,0,-1,1000,-1,0,7407,0,6213 +97783,0,0,-1,-1,-1,0,483,0,5719 +97784,0,0,-1,-1,-1,0,483,0,5729 +97785,0,0,-1,-1,-1,0,483,0,5730 +97786,0,0,-1,-1,-1,0,483,0,5724 +97787,0,0,-1,-1,-1,0,483,0,5725 +97788,0,0,-1,-1,-1,0,483,0,5726 +97789,0,0,-1,0,1000,11,5006,0,5527 +97790,0,0,-1,-1,-1,0,483,0,5528 +97791,0,0,-1,0,1000,11,433,0,5057 +97792,0,0,-1,-1,-1,0,6902,0,5878 +97793,0,0,-1,1000,0,0,5140,0,5021 +97794,0,0,-1,-1,-1,0,3366,0,6208 +97795,0,0,-1,-1,-1,0,483,0,5083 +97796,0,0,-1,-1,-1,0,3366,0,6209 +97797,0,2,0,-1,-1,0,18197,0,5426 +97798,0,0,-1,0,60000,24,5134,0,4852 +97799,0,0,-1,-1,-1,0,4977,0,5415 +97800,0,0,-1,-1,-1,0,4978,0,5416 +97801,0,0,-1,0,1000,150,1159,0,2581 +97802,0,0,-1,-1,-1,0,483,0,3683 +97803,0,0,-1,0,1000,11,1129,0,3927 +97804,0,0,-5,0,60000,24,4060,0,4388 +97805,0,0,0,-1,-1,0,8001,0,6145 +97806,0,0,-1,-1,-1,0,483,0,5789 +97807,0,0,-1,-1,-1,0,483,0,6330 +97808,0,2,0,-1,-1,0,13490,0,6331 +97809,0,0,-1,-1,-1,0,483,0,5685 +97810,0,0,-1,0,0,0,483,0,5709 +97811,0,0,-1,0,0,0,483,0,5710 +97812,0,0,3,300000,0,0,14134,0,5613 +97813,0,0,-1,-1,-1,0,483,0,6329 +97814,0,0,-1,0,1000,11,434,0,5066 +97815,1,0,-1,-1,-1,0,5206,0,5068 +97816,0,1,0,0,0,0,6260,0,5408 +97817,1,0,-1,0,0,100,6262,0,5408 +97818,0,0,-1,0,120000,4,3169,0,3387 +97819,0,0,-1,0,3000,79,3222,0,3388 +97820,0,2,0,-1,-1,0,13491,0,2942 +97821,0,0,-1,-1,-1,0,483,0,5670 +97822,0,0,-1,-1,-1,0,483,0,5671 +97823,0,0,-1,0,0,0,483,0,5702 +97824,0,2,0,-1,-1,0,18092,0,5182 +97825,0,1,0,-1,-1,0,7687,0,5183 +97826,0,0,0,300000,0,0,1139,0,5079 +97827,0,0,-1,0,1000,11,435,0,5526 +97828,0,0,-1,0,0,0,5665,0,5206 +97829,0,0,-1,0,0,0,483,0,5703 +97830,0,0,-1,1000,0,0,5161,0,5052 +97831,0,0,-1,0,1000,11,6410,0,5473 +97832,0,0,-1,0,1000,11,5004,0,5474 +97833,0,0,-1,-1,-1,0,6527,0,5475 +97834,0,1,0,-1,-1,0,9141,0,5191 +97835,0,0,-1,0,0,0,483,0,5708 +97836,0,0,-1,1000,-1,0,6296,0,5421 +97837,0,0,0,180000,0,0,7728,0,6928 +97838,0,0,-5,30000,-1,0,6918,0,5880 +97839,0,0,-1,0,1000,11,435,0,6362 +97840,0,0,-1,-1,-1,0,483,0,6326 +97841,0,0,-1,-1,-1,0,7285,0,6074 +97842,0,0,-1,0,120000,4,6613,0,5633 +97843,0,0,-1,-1,-1,0,5666,0,5218 +97844,0,0,-1,0,0,0,5681,0,5223 +97845,0,0,-1,-1,-1,0,6620,0,5638 +97846,0,0,-1,-1,-1,0,483,0,5640 +97847,0,0,-1,0,1000,11,6727,0,5823 +97848,0,0,-1,-1,-1,0,483,0,5641 +97849,0,0,-1,0,120000,4,6615,0,5634 +97850,0,0,-1,0,1000,11,5005,0,5525 +97851,0,0,-1,0,0,0,483,0,5698 +97852,0,0,-1,0,0,0,483,0,5699 +97853,0,0,-1,0,0,0,483,0,5700 +97854,0,0,-1,0,0,0,483,0,5701 +97855,0,0,-1,0,1000,11,1127,0,6807 +97856,0,0,-1,-1,-1,0,483,0,4280 +97857,0,0,-1,-1,-1,0,483,0,4281 +97858,0,0,-1,0,0,0,483,0,5704 +97859,0,0,-1,0,0,0,483,0,5705 +97860,0,0,-1,0,0,0,483,0,5706 +97861,0,0,-1,0,0,0,483,0,5707 +97862,0,0,-1,0,1000,11,5005,0,5476 +97863,0,0,-1,-1,-1,0,483,0,5728 +97864,0,1,0,0,0,0,6261,0,5409 +97865,1,0,-1,0,0,100,6263,0,5409 +97866,0,0,-1,-1,-1,0,4975,0,5411 +97867,0,0,-1,-1,-1,0,6529,0,4882 +97868,0,0,0,10000,-1,0,9095,0,7308 +97869,0,0,-1,-1,-1,0,483,0,6401 +97870,0,0,-1,-1,-1,0,483,0,6348 +97871,0,0,-1,-1,-1,0,483,0,5156 +97872,0,0,-1,-1,-1,0,5304,0,5157 +97873,0,0,-1,-1,-1,0,483,0,5158 +97874,0,2,0,-1,-1,0,20869,0,5815 +97875,1,0,-1,0,120000,1153,6262,0,5512 +97876,0,0,-1,-1,-1,0,483,0,6376 +97877,0,0,-1,-1,-1,0,483,0,5677 +97878,0,0,-1,0,1000,11,7737,0,6303 +97879,0,0,0,180000,0,0,8674,0,6913 +97880,0,0,-1,-1,-1,0,483,0,5673 +97881,0,0,-1,-1,-1,0,483,0,5674 +97882,0,0,-1,0,0,0,5706,0,5227 +97883,0,2,-1,0,-1,0,2607,0,4985 +97884,0,0,-1,0,0,0,483,0,5154 +97885,0,0,-1,0,0,0,483,0,5713 +97886,0,0,-1,-1,-1,0,483,0,5684 +97887,0,1,0,0,-1,0,13674,0,4975 +97888,0,0,-1,-1,-1,0,483,0,5482 +97889,0,0,-1,1000,-1,0,8114,0,4424 +97890,0,1,0,-1,-1,0,7703,0,4319 +97891,0,0,-1,0,0,0,483,0,5139 +97892,0,0,-1,-1,-1,0,6630,0,5694 +97893,0,0,0,600000,1000,59,1135,0,4696 +97894,0,0,0,-1,-1,0,6974,0,5916 +97895,0,0,0,1800000,0,0,14053,0,5323 +97896,0,0,-1,-1,-1,0,483,0,5486 +97897,0,0,-1,0,1000,59,5020,0,4952 +97898,0,0,-1,0,0,0,5713,0,5228 +97899,0,0,-1,0,0,0,5714,0,5229 +97900,0,0,-1,-1,-1,0,483,0,5682 +97901,0,0,-1,0,1000,11,433,0,4604 +97902,0,0,-1,-1,-1,0,483,0,4284 +97903,0,0,-1,-1,-1,0,483,0,4285 +97904,0,0,0,300000,0,0,5024,0,4984 +97905,1,0,-1,0,120000,1153,5720,0,5509 +97906,1,0,-1,0,120000,1153,5723,0,5510 +97907,0,0,-1,-1,-1,0,6234,0,5338 +97908,0,0,-1,-1,-1,0,483,0,5683 +97909,0,0,-1,-1,-1,0,6310,0,5456 +97910,0,1,0,-1,-1,0,7708,0,4323 +97911,0,0,-1,-1,-1,0,5107,0,5020 +97912,0,0,-1,-1,-1,0,5099,0,4986 +97913,0,0,-1,-1,-1,0,483,0,5974 +97914,0,0,-1,0,60000,24,8277,0,5457 +97915,0,0,-1,0,1000,150,3267,0,3530 +97916,0,0,-1,0,1000,150,3268,0,3531 +97917,0,0,-1,-1,-1,0,483,0,4287 +97918,0,0,-1,-1,-1,0,483,0,4288 +97919,0,0,-1,-1,-1,0,5303,0,5144 +97920,0,0,-1,1000,-1,0,47004,0,5740 +97921,0,0,-1,0,120000,1153,2052,0,5205 +97922,0,0,1,1000,-1,0,6298,0,5387 +97923,0,0,-1,10000,-1,0,4132,0,4479 +97924,0,0,-1,-1,-1,0,483,0,6390 +97925,0,0,-1,-1,-1,0,6627,0,5692 +97926,0,0,-1,-1,-1,0,6656,0,5693 +97927,0,0,-1,0,1000,11,433,0,4656 +97928,0,0,-1,-1,-1,0,483,0,6325 +97929,0,0,-1,-1,-1,0,483,0,5787 +97930,0,0,-1,-1,-1,0,483,0,4270 +97931,0,0,-1,-1,-1,0,483,0,5720 +97932,0,0,-1,-1,-1,0,483,0,4144 +97933,0,0,-1,-1,-1,0,483,0,4145 +97934,0,0,0,0,0,0,12883,0,5507 +97935,0,0,-1,-1,-1,0,483,0,5131 +97936,0,0,-1,-1,-1,0,483,0,5132 +97937,1,0,-1,0,120000,1153,6263,0,5511 +97938,0,0,-1,-1,-1,0,483,0,5721 +97939,0,0,-1,-1,-1,0,483,0,5722 +97940,0,0,-1,-1,-1,0,4954,0,4702 +97941,0,0,-1,-1,-1,0,4141,0,4472 +97942,0,0,-1,-1,-1,0,483,0,5145 +97943,0,0,-1,-1,-1,0,483,0,5146 +97944,0,0,-1,-1,-1,0,483,0,5147 +97945,0,0,0,-1,-1,0,3366,0,5521 +97946,0,2,0,-1,-1,0,16400,0,4449 +97947,0,0,0,-1,-1,0,265,0,5417 +97948,0,0,-1,-1,-1,0,4978,0,4762 +97949,0,0,0,0,180000,1148,128,0,5522 +97950,1,1,0,0,0,0,32793,0,5522 +97951,0,0,-1,-1,-1,0,483,0,4274 +97952,0,0,-1,-1,-1,0,483,0,4275 +97953,0,0,-1,-1,-1,0,483,0,4276 +97954,0,0,-1,-1,-1,0,483,0,4279 +97955,0,0,-1,-1,-1,0,483,0,5155 +97956,0,0,-1,0,1000,11,5005,0,5477 +97957,0,0,-1,0,1000,11,435,0,5478 +97958,0,0,-1,-1,-1,0,483,0,5483 +97959,0,0,0,-1,-1,0,6509,0,5384 +97960,0,0,-1,-1,-1,0,483,0,5149 +97961,0,0,-1,-1,-1,0,483,0,5150 +97962,0,0,-1,-1,-1,0,483,0,5152 +97963,0,0,-1,-1,-1,0,483,0,4148 +97964,0,0,0,3600000,0,0,9163,0,4262 +97965,0,0,-1,-1,-1,0,483,0,5488 +97966,0,0,-1,-1,-1,0,4975,0,4956 +97967,0,0,-1,-1,-1,0,483,0,4271 +97968,0,0,0,-1,-1,0,5,0,5418 +97969,0,0,-1,-1,-1,0,483,0,5489 +97970,0,0,-1,0,1800000,831,20707,0,5232 +97971,0,0,-1,0,1000,59,1133,0,4791 +97972,0,0,-1,1000,-1,0,8117,0,4425 +97973,0,0,-1,1000,-1,0,8120,0,4426 +97974,0,0,-1,0,1000,11,5006,0,5479 +97975,0,0,-1,-1,-1,0,483,0,6377 +97976,0,0,5,300000,0,0,14253,0,4444 +97977,0,2,0,-1,-1,0,13518,0,4446 +97978,0,0,-1,-1,-1,0,483,0,4269 +97979,0,1,0,-1,-1,0,4152,0,4491 +97980,0,0,-1,-1,-1,0,4945,0,4639 +97981,0,0,0,-1,-1,0,4982,0,4640 +97982,0,0,-1,-1,-1,0,483,0,5680 +97983,0,0,-1,-1,-1,0,483,0,4149 +97984,0,0,-1,-1,-1,0,483,0,4150 +97985,0,0,0,-1,-1,0,7023,0,5937 +97986,0,0,-1,-1,-1,0,483,0,6391 +97987,0,0,-1,-1,-1,0,483,0,4272 +97988,0,0,-1,-1,-1,0,483,0,4273 +97989,0,0,-1,0,0,0,483,0,5148 +97990,0,0,-1,0,60000,24,8312,0,4941 +97991,0,0,-1,-1,-1,0,483,0,5159 +97992,0,0,-1,-1,-1,0,483,0,5160 +97993,0,0,-1,0,0,0,483,0,5696 +97994,0,0,0,60000,-1,0,6405,0,5462 +97995,0,0,-1,0,1000,11,434,0,5095 +97996,0,0,-1,-1,-1,0,16375,0,4945 +97997,0,0,-1,0,1000,11,5006,0,5480 +97998,0,0,-1,0,1000,59,5021,0,4953 +97999,0,1,0,-1,-1,0,7701,0,4324 +98000,0,0,0,1800000,-1,0,9774,0,4328 +98001,0,1,0,-1,-1,0,9342,0,4329 +98002,0,0,-1,-1,-1,0,483,0,8801 +98003,0,0,-1,-1,-1,0,483,0,8803 +98004,0,1,0,-1,-1,0,29413,0,8217 +98005,0,1,0,-1,-1,0,14827,0,8218 +98006,0,1,0,-1,-1,0,29416,0,7371 +98007,0,0,-1,0,1000,59,1137,0,8766 +98008,0,0,-1,-1,-1,0,483,0,8767 +98009,0,0,-1,-1,-1,0,483,0,8771 +98010,0,0,-1,-1,-1,0,483,0,8772 +98011,0,0,0,180000,0,0,8344,0,7506 +98012,0,0,-1,-1,-1,0,483,0,8879 +98013,0,0,-1,-1,-1,0,483,0,8880 +98014,0,1,0,0,0,0,9342,0,7553 +98015,0,0,-1,-1,-1,0,8900,0,6638 +98016,0,2,0,-1,-1,0,8191,0,6622 +98017,0,0,-1,1000,-1,0,11544,0,9315 +98018,0,0,-1,1000,-1,0,11543,0,9317 +98019,0,0,-1,-1,-1,0,483,0,8744 +98020,0,0,-1,-1,-1,0,483,0,8745 +98021,0,1,0,-1,-1,0,7619,0,7747 +98022,0,0,-1,-1,-1,0,483,0,7983 +98023,0,0,-1,-1,-1,0,483,0,8797 +98024,0,2,0,0,0,0,18197,0,6472 +98025,0,0,-1,10000,1000,11,8213,0,6657 +98026,0,0,-1,-1,-1,0,6610,0,5621 +98027,0,0,-1,-1,-1,0,483,0,6476 +98028,0,0,0,180000,0,0,8913,0,7297 +98029,0,0,-1,-1,-1,0,483,0,8884 +98030,0,0,-1,-1,-1,0,483,0,8386 +98031,0,0,-1,-1,-1,0,483,0,8895 +98032,0,0,-1,-1,-1,0,9052,0,7269 +98033,0,0,-1,-1,-1,0,483,0,6623 +98034,0,1,0,-1,-1,0,9343,0,7054 +98035,0,1,0,-1,-1,0,9132,0,7348 +98036,1,1,0,-1,-1,0,21352,0,7348 +98037,0,0,0,-1,-1,0,9976,0,7970 +98038,0,1,0,0,0,0,7597,0,8347 +98039,0,0,-1,-1,-1,0,483,0,8773 +98040,0,0,-1,-1,-1,0,483,0,7979 +98041,0,0,-1,-1,-1,0,483,0,7980 +98042,0,0,0,1000,-1,0,8283,0,6684 +98043,0,0,-1,-1,-1,0,483,0,6988 +98044,0,0,0,1500,-1,0,10707,0,8500 +98045,0,0,-1,0,60000,24,5100,0,5013 +98046,0,0,-1,-1,-1,0,8593,0,6866 +98047,0,0,-1,1000,-1,0,6668,0,9318 +98048,0,0,-1,-1,-1,0,483,0,8778 +98049,0,0,-1,-1,-1,0,483,0,8886 +98050,0,0,-1,-1,-1,0,483,0,8887 +98051,0,0,-1,-1,-1,0,483,0,8888 +98052,0,0,-1,-1,-1,0,483,0,7976 +98053,0,0,-1,0,1000,11,435,0,8365 +98054,0,0,-1,-1,-1,0,10723,0,8095 +98055,0,0,-1,-1,-1,0,483,0,7981 +98056,0,0,-1,-1,-1,0,483,0,5771 +98057,0,0,-1,0,1000,11,1129,0,8075 +98058,0,0,-1,0,1000,11,1131,0,8076 +98059,0,0,0,1800000,1800000,1051,8342,0,7148 +98060,0,2,0,-1,-1,0,13526,0,6909 +98061,0,0,-1,-1,-1,0,483,0,9297 +98062,0,0,10,-1,-1,0,10113,0,8051 +98063,0,1,0,0,0,38,8299,0,6706 +98064,0,0,-1,-1,-1,0,8089,0,6533 +98065,0,1,0,-1,-1,0,7703,0,7053 +98066,0,0,-1,0,1000,11,1127,0,8364 +98067,0,0,-1,-1,-1,0,483,0,9219 +98068,0,0,-1,-1,-1,0,483,0,9220 +98069,0,0,-1,-1,-1,0,483,0,7450 +98070,0,0,-1,-1,-1,0,483,0,8821 +98071,0,0,-1,-1,-1,0,483,0,8883 +98072,0,1,0,-1,-1,0,7681,0,7049 +98073,0,0,-1,-1,-1,0,483,0,6892 +98074,0,0,-1,60000,0,150,7932,0,6452 +98075,0,0,-1,-1,-1,0,483,0,8779 +98076,0,0,-1,-1,-1,0,483,0,9303 +98077,0,0,-1,-1,-1,0,483,0,8835 +98078,0,0,0,1200000,300000,1203,9175,0,7391 +98079,0,0,-1,-1,-1,0,483,0,8837 +98080,0,0,0,-1,-1,0,7914,0,6436 +98081,0,1,0,10000,-1,0,9160,0,7375 +98082,0,0,-1,0,3000,79,16589,0,8529 +98083,0,0,-1,0,1000,11,1127,0,8543 +98084,0,2,0,-1,-1,0,18204,0,7730 +98085,0,0,-1,-1,-1,0,483,0,6272 +98086,0,0,-1,-1,-1,0,483,0,6273 +98087,0,0,-1,-1,-1,0,483,0,8882 +98088,0,0,10,8000,-1,0,9082,0,7247 +98089,0,0,-1,-1,-1,0,483,0,9218 +98090,0,0,-1,0,1000,150,10838,0,8544 +98091,0,0,-1,0,1000,150,10839,0,8545 +98092,0,0,-1,-1,-1,0,483,0,6221 +98093,0,0,-1,0,60000,24,8331,0,6714 +98094,0,0,-1,-1,-1,0,483,0,6716 +98095,0,0,-1,-1,-1,0,483,0,7085 +98096,0,0,0,180000,-1,0,8712,0,6999 +98097,0,0,-1,-1,-1,0,483,0,6475 +98098,0,0,-1,-1,-1,0,483,0,8816 +98099,0,0,-1,-1,-1,0,483,0,8817 +98100,0,0,-1,0,1000,11,1129,0,6887 +98101,0,0,-1,0,1000,11,5004,0,6888 +98102,0,0,-1,-1,-1,0,483,0,7982 +98103,0,0,-1,-1,-1,0,10772,0,8493 +98104,0,0,-1,-1,-1,0,483,0,8398 +98105,0,0,-1,-1,-1,0,483,0,6648 +98106,0,0,-1,-1,-1,0,483,0,6649 +98107,0,0,-1,-1,-1,0,8917,0,7208 +98108,0,2,0,-1,-1,0,8348,0,6660 +98109,0,0,-1,-1,-1,0,483,0,6661 +98110,0,0,-1,-1,-1,0,483,0,7087 +98111,0,0,-1,-1,-1,0,483,0,7088 +98112,0,0,-1,-1,-1,0,483,0,7090 +98113,0,2,0,-1,-1,0,9800,0,7960 +98114,0,0,-1,-1,-1,0,8087,0,6529 +98115,0,1,0,-1,-1,0,29636,0,6469 +98116,0,0,0,1500,-1,0,10684,0,8495 +98117,0,0,0,1500,-1,0,10711,0,8497 +98118,0,0,0,1500,-1,0,10697,0,8499 +98119,0,1,0,-1,-1,0,21619,0,6461 +98120,0,0,-1,1000,-1,0,9900,0,7964 +98121,0,0,-1,0,1000,150,7926,0,6450 +98122,0,0,0,0,3000,330,8395,0,8588 +98123,0,0,0,0,3000,330,10795,0,8589 +98124,0,0,0,0,3000,330,10798,0,8590 +98125,0,0,-1,-1,-1,0,483,0,8878 +98126,0,0,0,180000,-1,0,8712,0,6931 +98127,0,1,0,0,0,38,8299,0,6698 +98128,0,0,-1,0,1000,150,7927,0,6451 +98129,0,0,-1,-1,-1,0,483,0,6275 +98130,0,1,0,-1,-1,0,14826,0,7372 +98131,0,0,-1,-1,-1,0,483,0,6710 +98132,0,0,0,0,3000,330,10796,0,8591 +98133,0,0,0,0,3000,330,10799,0,8592 +98134,0,0,-1,0,1000,11,434,0,6890 +98135,0,0,-1,0,3000,79,8212,0,6662 +98136,0,0,-1,-1,-1,0,483,0,6663 +98137,0,0,-1,-1,-1,0,483,0,6650 +98138,0,0,-1,-1,-1,0,483,0,8389 +98139,0,0,-1,-1,-1,0,483,0,8390 +98140,0,1,0,60000,0,0,9395,0,7344 +98141,0,0,-1,-1,-1,0,483,0,6621 +98142,0,0,-1,-1,-1,0,483,0,7091 +98143,0,0,-1,-1,-1,0,7364,0,6183 +98144,0,0,-1,-1,-1,0,483,0,6672 +98145,0,0,0,60000,-1,0,9712,0,7866 +98146,0,0,0,180000,0,0,9224,0,6626 +98147,0,0,-1,-1,-1,0,483,0,8788 +98148,0,0,-1,-1,-1,0,8121,0,6619 +98149,0,0,-1,0,1000,11,433,0,6289 +98150,0,0,-1,0,1000,11,433,0,6290 +98151,0,0,-1,-1,-1,0,483,0,6274 +98152,0,0,-1,0,1000,11,5007,0,6038 +98153,0,0,-1,0,120000,4,7254,0,6052 +98154,0,0,-1,0,1000,11,434,0,6308 +98155,0,0,-1,-1,-1,0,483,0,5672 +98156,0,0,-1,-1,-1,0,483,0,8796 +98157,0,0,0,180000,-1,0,8712,0,6997 +98158,0,0,0,3600000,600000,0,10618,0,8367 +98159,0,0,-1,-1,-1,0,483,0,6735 +98160,0,1,0,-1,-1,0,9134,0,7349 +98161,0,0,-1,-1,-1,0,483,0,8815 +98162,0,1,0,-1,-1,0,9402,0,7377 +98163,0,0,0,10000,-1,0,9172,0,7388 +98164,0,0,-1,0,1000,11,435,0,5845 +98165,0,0,-1,0,120000,4,11903,0,6149 +98166,0,0,-1,0,1000,11,433,0,6317 +98167,0,0,-1,-1,-1,0,483,0,6133 +98168,0,0,-1,-1,-1,0,8532,0,6811 +98169,0,1,0,-1,-1,0,7708,0,7027 +98170,0,1,0,-1,-1,0,7703,0,7046 +98171,0,1,0,-1,-1,0,7710,0,7047 +98172,0,0,-1,1000,-1,0,6805,0,5868 +98173,0,0,-1,-1,-1,0,483,0,5772 +98174,0,0,-1,-1,-1,0,483,0,5773 +98175,0,0,-1,0,1000,11,434,0,6316 +98176,0,0,-1,-1,-1,0,483,0,6039 +98177,0,0,-1,-1,-1,0,483,0,8802 +98178,0,0,-1,-1,-1,0,483,0,8805 +98179,0,0,-1,-1,-1,0,483,0,8806 +98180,0,0,-1,-1,-1,0,483,0,8807 +98181,0,0,-1,-1,-1,0,483,0,8808 +98182,0,0,-1,-1,-1,0,886,0,8870 +98183,0,0,-1,-1,-1,0,483,0,6544 +98184,0,0,-1,-1,-1,0,483,0,8395 +98185,0,2,0,-1,-1,0,16400,0,5752 +98186,0,0,-1,0,0,0,483,0,9043 +98187,0,0,-1,-1,-1,0,483,0,8930 +98188,0,0,-1,-1,-1,0,483,0,8939 +98189,0,0,-1,-1,-1,0,483,0,9201 +98190,0,0,-1,-1,-1,0,483,0,9202 +98191,0,0,-1,0,3000,79,7844,0,6373 +98192,0,2,0,-1,-1,0,16406,0,5616 +98193,0,0,-1,-1,-1,0,483,0,5643 +98194,0,0,-1,-1,-1,0,483,0,5644 +98195,0,0,-1,-1,-1,0,483,0,5676 +98196,0,0,-1,-1,-1,0,6758,0,5859 +98197,0,0,-1,-1,-1,0,6611,0,5623 +98198,0,0,-1,0,120000,4,7233,0,6049 +98199,0,0,0,0,3000,330,458,0,5656 +98200,0,0,-1,0,0,0,483,0,9041 +98201,0,0,-1,-1,-1,0,6609,0,5619 +98202,0,0,-1,-1,-1,0,483,0,8397 +98203,0,0,-1,-1,-1,0,483,0,8873 +98204,0,0,-1,-1,-1,0,483,0,8876 +98205,0,0,-1,-1,-1,0,483,0,6068 +98206,0,1,0,-1,-1,0,9233,0,7284 +98207,0,0,-1,0,3000,79,673,0,5997 +98208,0,0,-1,-1,-1,0,483,0,8877 +98209,0,0,-1,-1,-1,0,483,0,6046 +98210,0,0,-1,-1,-1,0,483,0,8889 +98211,0,0,-1,-1,-1,0,483,0,8891 +98212,0,0,-1,-1,-1,0,483,0,8892 +98213,0,0,-1,-1,-1,0,483,0,8893 +98214,0,0,-1,-1,-1,0,483,0,8894 +98215,0,0,-1,-1,-1,0,483,0,6270 +98216,0,0,-1,-1,-1,0,483,0,6271 +98217,0,1,0,0,0,38,8315,0,6707 +98218,0,0,-1,-1,-1,0,8517,0,6783 +98219,0,1,0,0,0,38,8357,0,6724 +98220,0,0,-1,-1,-1,0,483,0,7092 +98221,0,0,-1,-1,-1,0,483,0,7093 +98222,0,0,-1,0,1000,11,433,0,7097 +98223,0,0,-1,-1,-1,0,6717,0,5810 +98224,0,0,-1,0,3600000,103,10668,0,8411 +98225,0,0,0,300000,300000,1203,8892,0,7189 +98226,0,0,-1,-1,-1,0,6803,0,5867 +98227,0,0,-1,0,0,0,483,0,5657 +98228,0,0,-1,-1,-1,0,8919,0,7207 +98229,0,0,-1,-1,-1,0,483,0,6891 +98230,0,0,-1,-1,-1,0,483,0,8871 +98231,0,0,-1,-1,-1,0,483,0,6044 +98232,0,0,-1,-1,-1,0,483,0,6222 +98233,0,0,-1,-1,-1,0,483,0,6057 +98234,0,1,0,-1,-1,0,7823,0,6365 +98235,0,1,0,-1,-1,0,7825,0,6366 +98236,0,1,0,-1,-1,0,7826,0,6367 +98237,0,0,-1,0,120000,4,7840,0,6372 +98238,0,0,-1,-1,-1,0,483,0,6347 +98239,0,1,0,0,0,38,8360,0,6728 +98240,0,0,-1,-1,-1,0,483,0,6375 +98241,0,0,-1,-1,-1,0,7216,0,6042 +98242,0,0,-1,-1,-1,0,483,0,7288 +98243,0,0,-1,-1,-1,0,483,0,7289 +98244,0,0,-1,-1,-1,0,9092,0,7307 +98245,0,0,-1,-1,-1,0,483,0,5647 +98246,0,0,-1,-1,-1,0,483,0,5648 +98247,0,0,-1,-1,-1,0,483,0,7084 +98248,0,0,-1,-1,-1,0,483,0,7089 +98249,0,2,0,-1,-1,0,8313,0,6904 +98250,0,0,-1,0,1000,11,7737,0,6291 +98251,0,0,-1,-1,-1,0,483,0,6053 +98252,0,0,-1,-1,-1,0,483,0,6054 +98253,0,0,-1,-1,-1,0,483,0,8399 +98254,0,0,-1,-1,-1,0,483,0,8400 +98255,0,0,-1,-1,-1,0,483,0,5775 +98256,0,0,-1,0,3000,79,7178,0,5996 +98257,0,1,0,-1,-1,0,9141,0,6733 +98258,0,0,-1,-1,-1,0,483,0,8799 +98259,0,0,-1,-1,-1,0,483,0,5661 +98260,0,0,-1,-1,-1,0,483,0,5662 +98261,0,2,0,-1,-1,0,18398,0,5756 +98262,0,0,-1,-1,-1,0,483,0,8872 +98263,0,0,0,3600000,15000,1141,9174,0,6972 +98264,0,0,0,-1,-1,0,8690,0,6948 +98265,0,0,-1,0,-1,0,8686,0,6949 +98266,0,0,-1,0,-1,0,8688,0,6950 +98267,0,0,0,180000,0,0,9222,0,7464 +98268,0,0,-1,-1,-1,0,483,0,6342 +98269,0,0,-1,-1,-1,0,483,0,6343 +98270,0,0,-1,-1,-1,0,483,0,6345 +98271,0,0,-1,-1,-1,0,483,0,6346 +98272,0,0,-5,120000,-1,0,5809,0,5251 +98273,0,2,0,-1,-1,0,13440,0,6831 +98274,0,2,0,-1,-1,0,16403,0,6738 +98275,0,0,-1,-1,-1,0,4981,0,4823 +98276,0,0,-1,-1,-1,0,9055,0,7273 +98277,0,0,-1,-1,-1,0,483,0,6368 +98278,0,0,-1,-1,-1,0,483,0,6369 +98279,0,0,-1,0,120000,4,7239,0,6050 +98280,0,0,-1,0,120000,4,7245,0,6051 +98281,0,0,0,-1,-1,0,10137,0,8066 +98282,0,0,0,0,3000,330,6653,0,5665 +98283,0,0,0,180000,0,0,9221,0,6284 +98284,0,0,-1,-1,-1,0,483,0,6055 +98285,0,0,-1,-1,-1,0,483,0,5650 +98286,0,1,0,-1,-1,0,9401,0,7064 +98287,0,0,-1,-1,-1,0,483,0,8384 +98288,0,0,-1,300000,120000,1153,9512,0,7676 +98289,0,0,-1,-1,-1,0,483,0,8793 +98290,0,0,-1,-1,-1,0,483,0,8794 +98291,0,0,-1,-1,-1,0,483,0,8795 +98292,0,0,-1,-1,-1,0,483,0,5642 +98293,0,0,-1,-1,-1,0,7218,0,6043 +98294,0,0,-1,-1,-1,0,483,0,5658 +98295,0,0,-1,-1,-1,0,483,0,5660 +98296,0,0,-1,-1,-1,0,483,0,8809 +98297,0,0,-1,-1,-1,0,483,0,8811 +98298,0,0,-1,-1,-1,0,483,0,8812 +98299,0,0,-1,-1,-1,0,483,0,8814 +98300,0,0,-1,-1,-1,0,11513,0,9283 +98301,0,1,0,90000,-1,0,13675,0,9643 +98302,0,0,-1,-1,-1,0,483,0,9033 +98303,0,0,-1,0,120000,4,11364,0,9036 +98304,0,0,-1,-1,-1,0,483,0,10304 +98305,0,0,-1,1000,-1,0,12175,0,10305 +98306,0,0,-1,1000,-1,0,12177,0,10306 +98307,0,0,-1,1000,-1,0,12178,0,10307 +98308,0,2,0,-1,-1,0,13482,0,9446 +98309,0,0,-1,-1,-1,0,483,0,9367 +98310,0,0,-1,0,1000,11,1131,0,8957 +98311,0,0,-1,-1,-1,0,483,0,8804 +98312,0,0,-1,-1,-1,0,483,0,8822 +98313,0,0,-1,-1,-1,0,483,0,8824 +98314,0,0,-1,-1,-1,0,483,0,8906 +98315,0,0,-1,-1,-1,0,483,0,8907 +98316,0,0,-1,-1,-1,0,483,0,8974 +98317,0,0,-1,0,1000,11,435,0,7228 +98318,0,0,-1,-1,-1,0,483,0,8898 +98319,0,0,-1,-1,-1,0,483,0,8899 +98320,0,0,-1,-1,-1,0,483,0,7993 +98321,0,1,0,-1,-1,0,7681,0,7721 +98322,0,0,-1,0,1000,11,1129,0,8959 +98323,0,0,-1,-1,-1,0,483,0,9018 +98324,0,0,-1,0,0,0,483,0,9057 +98325,0,0,-1,0,0,0,483,0,9058 +98326,0,0,-1,-1,-1,0,10723,0,8432 +98327,0,0,-1,0,-1,0,11399,0,9186 +98328,0,0,-1,-1,-1,0,483,0,7994 +98329,0,1,0,-1,-1,0,13599,0,7757 +98330,0,1,0,-1,-1,0,18087,0,10698 +98331,1,0,0,0,0,0,12938,0,10698 +98332,0,0,-1,-1,-1,0,483,0,7995 +98333,0,2,0,-1,-1,0,13482,0,8006 +98334,1,0,-1,0,120000,1153,10057,0,8007 +98335,0,0,-1,0,0,0,483,0,9059 +98336,0,2,0,-1,-1,0,11879,0,9608 +98337,0,0,-1,-1,-1,0,483,0,8998 +98338,0,0,-1,-1,-1,0,483,0,8999 +98339,0,0,-1,-1,-1,0,483,0,9000 +98340,0,0,-1,-1,-1,0,483,0,9002 +98341,0,0,-1,-1,-1,0,483,0,8918 +98342,0,1,0,0,0,0,9142,0,9640 +98343,0,0,-1,-1,-1,0,483,0,8979 +98344,0,0,-1,-1,-1,0,483,0,8980 +98345,0,0,-1,-1,-1,0,483,0,9223 +98346,0,0,-1,0,3000,79,11406,0,9224 +98347,0,0,-1,-1,-1,0,483,0,9225 +98348,0,0,-1,-1,-1,0,483,0,9193 +98349,0,0,-1,-1,-1,0,483,0,8960 +98350,0,0,-1,-1,-1,0,483,0,8961 +98351,0,0,-1,-1,-1,0,483,0,8962 +98352,0,1,0,-1,-1,0,9139,0,9428 +98353,0,1,0,-1,-1,0,13665,0,9379 +98354,0,0,0,900000,0,0,9252,0,7508 +98355,1,0,-1,0,120000,1153,10058,0,8008 +98356,0,0,-1,-1,-1,0,483,0,8029 +98357,0,1,0,-1,-1,0,13669,0,7928 +98358,0,0,-1,-1,-1,0,483,0,8954 +98359,0,0,-1,0,0,0,483,0,9062 +98360,0,0,-1,0,0,0,483,0,9166 +98361,0,1,0,-1,-1,0,9328,0,10004 +98362,0,0,-1,-1,-1,0,483,0,8909 +98363,0,0,-1,-1,-1,0,483,0,8912 +98364,0,0,-1,0,0,0,483,0,9052 +98365,0,0,-1,-1,-1,0,483,0,8388 +98366,0,0,0,-1,-1,0,11923,0,9719 +98367,0,0,-1,-1,-1,0,483,0,9023 +98368,0,0,-1,-1,-1,0,483,0,9024 +98369,0,0,-1,-1,-1,0,483,0,9025 +98370,0,1,0,-1,-1,0,7516,0,9405 +98371,0,1,0,-1,-1,0,7518,0,9410 +98372,0,0,-1,-1,-1,0,11840,0,9530 +98373,0,1,0,-1,-1,0,17746,0,7953 +98374,0,0,-1,-1,-1,0,483,0,8917 +98375,0,0,-1,0,-1,0,11339,0,8927 +98376,0,0,-1,-1,-1,0,483,0,8775 +98377,0,0,-1,-1,-1,0,483,0,9204 +98378,0,0,-1,-1,-1,0,483,0,9205 +98379,0,0,-1,-1,-1,0,483,0,8780 +98380,0,0,0,-1,-1,0,11434,0,9240 +98381,0,0,-1,-1,-1,0,483,0,8955 +98382,0,0,-1,-1,-1,0,483,0,8958 +98383,0,0,-1,-1,-1,0,483,0,8965 +98384,0,0,0,30000,-1,0,11885,0,9606 +98385,0,1,0,0,0,0,7516,0,9607 +98386,0,2,0,-1,-1,0,12731,0,9418 +98387,0,1,0,-1,-1,0,21361,0,9448 +98388,0,1,0,-1,-1,0,13390,0,9385 +98389,0,2,0,-1,-1,0,13438,0,9386 +98390,0,1,0,-1,-1,0,9331,0,9391 +98391,0,0,-1,-1,-1,0,483,0,9019 +98392,0,0,-1,-1,-1,0,483,0,8404 +98393,0,1,0,-1,-1,0,15714,0,9517 +98394,0,0,-1,0,0,0,483,0,9141 +98395,0,0,-1,-1,-1,0,483,0,9195 +98396,0,0,-1,-1,-1,0,483,0,9196 +98397,0,0,-1,-1,-1,0,11435,0,9241 +98399,0,2,0,-1,-1,0,9796,0,7959 +98400,0,0,-1,-1,-1,0,10617,0,8149 +98401,0,0,-1,-1,-1,0,483,0,9003 +98402,0,0,-1,-1,-1,0,483,0,9014 +98403,0,1,0,-1,-1,0,9357,0,10039 +98404,0,0,-1,0,0,0,483,0,9139 +98405,0,0,-1,0,0,0,483,0,9140 +98406,0,0,-1,0,0,0,483,0,9142 +98407,0,0,-1,0,120000,4,11387,0,9144 +98408,0,0,-1,-1,-1,0,483,0,7560 +98409,0,0,-1,0,1000,11,5004,0,7808 +98410,0,0,-1,-1,-1,0,483,0,7992 +98411,0,0,-1,-1,-1,0,483,0,9212 +98412,0,0,-1,-1,-1,0,483,0,9213 +98413,0,0,-1,-1,-1,0,483,0,9214 +98414,0,0,-1,-1,-1,0,483,0,9216 +98415,0,0,-1,-1,-1,0,483,0,9217 +98416,0,0,-1,-1,-1,0,483,0,10301 +98417,0,0,-1,0,0,0,483,0,9054 +98418,0,0,-1,0,0,0,483,0,9185 +98419,0,0,-1,-1,-1,0,483,0,9230 +98420,0,0,-1,0,0,0,483,0,9055 +98421,0,0,-1,0,0,0,483,0,9056 +98422,0,0,0,5000,-1,0,12699,0,10699 +98423,0,0,-1,-1,-1,0,483,0,8902 +98424,0,0,-1,-1,-1,0,483,0,8904 +98425,0,0,-1,-1,-1,0,483,0,8905 +98426,0,0,-1,-1,-1,0,483,0,9008 +98427,0,0,-1,-1,-1,0,483,0,8776 +98428,0,0,0,0,3000,330,10787,0,8627 +98429,0,0,-1,-1,-1,0,483,0,9231 +98430,0,0,-1,0,3000,79,11405,0,9232 +98431,0,0,-1,0,3000,79,11407,0,9233 +98432,0,0,-1,-1,-1,0,483,0,9198 +98433,0,1,0,-1,-1,0,14049,0,7710 +98434,0,0,-1,-1,-1,0,483,0,9208 +98435,0,0,-1,-1,-1,0,483,0,9209 +98436,0,0,-1,-1,-1,0,483,0,8991 +98437,0,2,0,-1,-1,0,18081,0,9651 +98438,0,0,-1,0,0,0,483,0,9063 +98439,0,0,-1,-1,-1,0,483,0,8981 +98440,0,0,-1,-1,-1,0,483,0,8982 +98441,0,0,-1,-1,-1,0,483,0,8403 +98442,0,0,-1,-1,-1,0,483,0,8405 +98443,0,0,-1,-1,-1,0,483,0,8406 +98444,0,1,0,-1,-1,0,13669,0,7920 +98445,0,0,-1,0,0,0,483,0,8782 +98446,0,0,-1,0,0,0,483,0,9150 +98447,0,0,-1,0,0,0,483,0,9152 +98448,0,0,-1,1000,-1,0,11540,0,9312 +98449,0,0,-1,1000,-1,0,11541,0,9313 +98450,0,0,-1,0,0,0,483,0,9165 +98451,0,0,-1,-1,-1,0,483,0,8992 +98452,0,0,-1,-1,-1,0,483,0,8993 +98453,0,0,-1,-1,-1,0,483,0,9006 +98454,0,0,-1,-1,-1,0,483,0,10312 +98455,0,0,-1,-1,-1,0,11537,0,9263 +98456,0,1,0,0,0,0,17768,0,8345 +98457,0,0,-1,0,0,0,483,0,9169 +98458,0,1,0,-1,-1,0,9346,0,10019 +98459,0,0,-1,-1,-1,0,483,0,8900 +98460,0,0,-1,-1,-1,0,483,0,9009 +98461,0,0,-1,-1,-1,0,483,0,9010 +98462,0,0,-1,0,0,0,483,0,9048 +98463,0,1,0,-1,-1,0,15807,0,7724 +98464,0,1,0,-1,-1,0,14248,0,10041 +98465,0,0,0,1500,-1,0,10673,0,8485 +98466,0,0,0,1500,-1,0,10674,0,8486 +98467,0,0,0,1500,-1,0,10676,0,8487 +98468,0,0,-1,0,0,0,483,0,9102 +98469,0,0,-1,0,0,0,483,0,9105 +98470,0,0,-1,0,0,0,483,0,9123 +98471,0,0,-1,-1,-1,0,483,0,8919 +98472,0,0,-1,-1,-1,0,483,0,8920 +98473,0,0,-1,0,0,0,483,0,9183 +98474,0,0,0,0,3000,330,10789,0,8632 +98476,0,0,-1,-1,-1,0,483,0,8971 +98477,0,0,0,1500,-1,0,10678,0,8488 +98478,0,0,0,1800000,0,0,22641,0,9394 +98479,0,0,-1,-1,-1,0,483,0,9229 +98480,0,1,0,-1,-1,0,14047,0,9484 +98481,0,2,0,-1,-1,0,13533,0,9423 +98482,0,0,-1,0,0,0,483,0,9047 +98483,0,0,-1,-1,-1,0,483,0,8825 +98484,0,0,-1,-1,-1,0,483,0,8842 +98485,0,0,-1,-1,-1,0,483,0,8826 +98486,0,0,-1,-1,-1,0,483,0,8828 +98487,0,0,-1,-1,-1,0,483,0,8829 +98488,0,0,-1,-1,-1,0,483,0,8830 +98489,0,0,-1,-1,-1,0,483,0,8931 +98490,0,0,-1,0,1000,11,1131,0,8932 +98491,0,1,0,-1,-1,0,11789,0,9452 +98492,0,0,-1,-1,-1,0,483,0,8963 +98493,0,0,-1,-1,-1,0,483,0,10303 +98494,0,0,-1,-1,-1,0,11629,0,9361 +98495,0,0,-1,0,0,0,483,0,9127 +98496,0,0,-1,0,0,0,483,0,9128 +98497,0,0,-1,-1,-1,0,483,0,8972 +98498,0,2,0,-1,-1,0,11790,0,9453 +98499,0,1,0,-1,-1,0,9395,0,9454 +98500,0,0,-1,-1,-1,0,483,0,8983 +98501,0,0,-1,-1,-1,0,483,0,8781 +98502,0,0,-1,0,1000,11,7737,0,8683 +98503,0,0,-1,-1,-1,0,483,0,9203 +98504,0,0,-1,0,0,0,483,0,9044 +98505,0,0,-1,0,0,0,483,0,9145 +98506,0,0,-1,0,0,0,483,0,9146 +98507,0,0,-1,0,0,0,483,0,9100 +98508,0,0,-1,0,0,0,483,0,9101 +98509,0,0,-1,-1,-1,0,483,0,7449 +98510,0,0,-1,0,0,0,483,0,9184 +98511,0,0,0,3600000,180000,0,5405,0,9397 +98512,0,0,-1,0,-1,0,11356,0,8985 +98513,0,0,-1,-1,-1,0,483,0,8986 +98514,0,0,-1,0,3000,79,11328,0,8949 +98515,0,0,-1,-1,-1,0,483,0,8970 +98516,0,0,-1,-1,-1,0,483,0,8975 +98517,0,0,-1,-1,-1,0,483,0,8897 +98518,0,0,-1,-1,-1,0,483,0,8852 +98519,0,0,-1,-1,-1,0,483,0,8854 +98520,0,0,-1,-1,-1,0,483,0,8856 +98521,0,0,-1,0,0,0,483,0,9147 +98522,0,0,-1,-1,-1,0,483,0,9226 +98523,0,0,-1,-1,-1,0,483,0,9227 +98524,0,0,-1,-1,-1,0,483,0,9228 +98525,0,0,-1,0,0,0,483,0,9188 +98526,0,0,-1,-1,-1,0,483,0,9200 +98527,0,0,-1,-1,-1,0,483,0,9207 +98528,0,2,0,-1,-1,0,13486,0,9511 +98529,0,0,-1,-1,-1,0,483,0,8851 +98530,0,0,-1,-1,-1,0,483,0,8969 +98531,0,0,-1,0,0,0,483,0,9045 +98532,0,0,-1,0,0,0,483,0,9046 +98533,0,0,-1,0,0,0,483,0,9158 +98534,0,0,-1,0,0,0,483,0,9159 +98535,0,0,-1,-1,-1,0,11761,0,9442 +98536,0,0,-1,0,1000,59,22734,0,8079 +98537,0,0,-1,-1,-1,0,483,0,9293 +98538,0,0,0,0,3000,330,10792,0,8628 +98539,0,2,0,-1,-1,0,18083,0,9419 +98540,0,0,-1,-1,-1,0,483,0,7985 +98541,0,0,-1,-1,-1,0,483,0,7986 +98542,0,0,-1,-1,-1,0,483,0,8547 +98543,0,0,0,0,3000,330,8980,0,8583 +98544,0,0,-1,-1,-1,0,483,0,8028 +98545,0,0,-1,-1,-1,0,9595,0,7741 +98546,0,0,-1,-1,-1,0,483,0,9294 +98547,0,0,-1,-1,-1,0,483,0,9295 +98548,0,0,-1,-1,-1,0,483,0,9296 +98549,0,0,-1,0,0,0,483,0,9086 +98550,0,0,-1,0,0,0,483,0,9125 +98551,0,0,-1,0,0,0,483,0,9126 +98552,0,0,-1,-1,-1,0,483,0,7678 +98553,0,0,-1,-1,-1,0,483,0,8947 +98554,0,0,-1,0,0,0,483,0,9160 +98555,0,0,-1,0,0,0,483,0,9161 +98556,0,2,0,-1,-1,0,16413,0,10797 +98557,0,0,-1,-1,-1,0,483,0,9031 +98558,0,0,-1,-1,-1,0,483,0,9032 +98559,0,0,-1,-1,-1,0,483,0,8756 +98560,0,0,-1,-1,-1,0,483,0,9302 +98561,0,0,-1,-1,-1,0,483,0,9304 +98562,0,1,0,-1,-1,0,17746,0,8197 +98563,0,0,-1,0,0,0,483,0,9162 +98564,0,0,-1,0,0,0,483,0,9163 +98565,0,0,0,1500,-1,0,10679,0,8489 +98566,0,0,-1,0,1000,59,1135,0,8077 +98567,0,0,-1,0,1000,59,1137,0,8078 +98568,0,1,0,-1,-1,0,9140,0,9378 +98569,0,0,-1,-1,-1,0,483,0,3867 +98570,0,0,-1,-1,-1,0,483,0,8840 +98571,0,0,-1,-1,-1,0,483,0,7360 +98572,0,0,-1,-1,-1,0,483,0,7361 +98573,0,0,-1,-1,-1,0,483,0,7362 +98574,0,0,-1,-1,-1,0,483,0,8757 +98575,0,0,-1,-1,-1,0,483,0,8791 +98576,0,0,-1,0,0,0,483,0,8792 +98577,0,0,-1,-1,-1,0,483,0,8857 +98578,0,0,-1,1000,-1,0,10344,0,8173 +98579,0,0,-1,-1,-1,0,483,0,7987 +98580,0,0,-1,-1,-1,0,483,0,8409 +98581,0,0,0,1500,-1,0,10683,0,8492 +98582,0,0,-1,-1,-1,0,14008,0,11141 +98583,0,0,-1,0,3000,79,11389,0,9154 +98584,0,0,-1,0,0,0,483,0,9085 +98585,0,2,0,-1,-1,0,11658,0,9372 +98586,0,0,-1,1000,-1,0,10850,0,8546 +98587,0,0,-1,0,1000,11,5004,0,7806 +98588,0,0,-1,0,1000,11,5004,0,7807 +98589,0,0,-1,-1,-1,0,9586,0,7766 +98590,0,2,0,-1,-1,0,18206,0,9475 +98591,0,0,-1,0,3000,79,11390,0,9155 +98592,0,0,-1,0,0,0,483,0,9156 +98593,0,0,0,0,3000,330,10788,0,8633 +98594,0,0,0,30000,30000,24,133,0,8688 +98595,0,0,-1,0,0,0,483,0,9135 +98596,0,0,-1,-1,-1,0,483,0,6516 +98597,0,0,-1,-1,-1,0,483,0,7453 +98598,0,0,-1,-1,-1,0,10369,0,8243 +98599,0,0,-1,-1,-1,0,483,0,11098 +98600,0,0,-1,-1,-1,0,483,0,5649 +98601,0,0,-1,-1,-1,0,483,0,6344 +98602,0,0,-1,-1,-1,0,483,0,8385 +98603,0,0,-1,-1,-1,0,483,0,9300 +98604,0,0,0,10800000,-1,0,11209,0,8703 +98605,0,0,-1,-1,-1,0,483,0,8774 +98606,0,0,0,900000,10000,1141,10578,0,8348 +98607,0,0,-1,-1,-1,0,483,0,8914 +98608,0,0,-1,0,1000,11,1131,0,8953 +98609,0,0,0,-1,-1,0,11654,0,9380 +98610,1,2,0,-1,-1,0,11657,0,9380 +98611,0,0,0,3600000,0,0,12438,0,9404 +98612,0,0,-1,-1,-1,0,483,0,7988 +98613,0,0,-1,-1,-1,0,11009,0,9360 +98614,0,0,-1,0,0,0,483,0,9087 +98615,0,0,-1,-1,-1,0,483,0,8903 +98616,0,0,-1,-1,-1,0,483,0,8908 +98617,0,0,0,-1,-1,0,12709,0,9364 +98618,0,0,-1,-1,-1,0,9583,0,7768 +98619,0,0,-1,0,3600000,103,10669,0,8412 +98620,0,1,0,0,0,0,9417,0,7685 +98621,0,2,0,-1,-1,0,16403,0,8224 +98622,0,1,0,0,-1,0,7688,0,7513 +98623,0,1,0,0,-1,0,7702,0,7514 +98624,0,1,0,0,0,0,9342,0,7515 +98625,1,0,0,1800000,0,0,9253,0,7515 +98626,0,0,-1,1000,-1,0,11542,0,9314 +98627,0,0,0,180000,10000,1141,14537,0,7734 +98628,0,0,-1,-1,-1,0,483,0,8997 +98629,0,0,-1,-1,-1,0,483,0,8859 +98630,0,0,-1,-1,-1,0,483,0,8861 +98631,0,0,-1,-1,-1,0,483,0,8863 +98632,0,0,-1,-1,-1,0,483,0,8864 +98633,0,0,-1,-1,-1,0,483,0,8784 +98634,0,0,-1,-1,-1,0,483,0,8785 +98635,0,0,-1,-1,-1,0,483,0,8786 +98636,0,0,-1,-1,-1,0,8202,0,6635 +98637,0,0,-1,-1,-1,0,8898,0,6636 +98638,0,0,-1,0,0,0,483,0,9137 +98639,0,0,-1,0,0,0,483,0,9038 +98640,0,0,-1,0,0,0,483,0,9065 +98641,0,0,-1,-1,-1,0,483,0,8865 +98642,0,0,-1,-1,-1,0,483,0,8866 +98643,0,0,-1,-1,-1,0,483,0,8867 +98644,0,0,-1,-1,-1,0,483,0,8868 +98645,0,0,-1,-1,-1,0,483,0,9026 +98646,0,0,-1,-1,-1,0,483,0,9027 +98647,0,0,-1,-1,-1,0,8899,0,6637 +98648,0,0,-1,0,-1,0,11340,0,8928 +98649,0,0,-1,-1,-1,0,483,0,8832 +98650,0,0,-1,-1,-1,0,483,0,8833 +98651,0,0,-1,-1,-1,0,483,0,8834 +98652,0,0,-1,-1,-1,0,483,0,8777 +98653,0,0,-1,-1,-1,0,483,0,8844 +98654,0,0,-1,0,0,0,483,0,9074 +98655,0,0,-1,0,0,0,483,0,9078 +98656,0,0,-1,0,0,0,483,0,9080 +98657,0,0,-1,0,0,0,483,0,9082 +98658,0,0,-1,0,0,0,483,0,9083 +98659,0,0,-1,0,0,0,483,0,9084 +98660,0,0,0,1500,-1,0,10675,0,8491 +98661,0,0,-1,-1,-1,0,483,0,8858 +98662,0,0,-1,-1,-1,0,483,0,8765 +98663,0,0,-1,-1,-1,0,483,0,7561 +98664,0,0,-1,-1,-1,0,483,0,7989 +98665,0,0,-1,-1,-1,0,483,0,7990 +98666,0,0,0,0,3000,330,10790,0,8630 +98667,0,0,-1,-1,-1,0,483,0,6474 +98668,0,0,-1,-1,-1,0,8856,0,7131 +98669,0,0,0,3600000,15000,1141,9174,0,7133 +98670,0,0,-1,-1,-1,0,483,0,7114 +98671,0,0,-1,-1,-1,0,9594,0,7740 +98672,0,0,-1,-1,-1,0,483,0,8743 +98673,0,0,-1,10000,1000,11,8063,0,6522 +98674,0,0,-1,-1,-1,0,483,0,8789 +98675,0,0,-1,0,3000,79,11474,0,9264 +98676,0,0,0,1000,-1,0,11610,0,9328 +98677,0,1,0,-1,-1,0,9415,0,7714 +98678,0,0,-1,-1,-1,0,483,0,8847 +98679,0,0,-1,-1,-1,0,483,0,8848 +98680,0,1,0,0,0,0,13669,0,7936 +98681,1,0,0,1800000,0,0,9774,0,7936 +98682,0,0,-1,60000,0,150,7933,0,6453 +98683,0,0,-1,-1,-1,0,483,0,6454 +98684,0,0,-1,-1,-1,0,9584,0,7767 +98685,0,1,0,900000,180000,0,14054,0,9470 +98686,0,1,0,-1,-1,0,9329,0,7359 +98687,0,1,0,-1,-1,0,29633,0,9412 +98688,0,0,-1,-1,-1,0,483,0,8849 +98689,0,0,-1,-1,-1,0,483,0,8850 +98690,0,0,0,1500,-1,0,10706,0,8501 +98691,0,0,-1,0,1000,11,433,0,6458 +98692,0,0,-1,-1,-1,0,3208,0,8758 +98693,0,0,-1,-1,-1,0,483,0,8759 +98694,0,0,-1,-1,-1,0,483,0,8818 +98695,0,0,-1,-1,-1,0,483,0,8819 +98696,0,0,-1,-1,-1,0,483,0,8820 +98697,0,0,0,0,3000,330,10873,0,8563 +98698,0,0,-1,-1,-1,0,483,0,9021 +98699,0,0,-1,0,0,0,483,0,9037 +98700,0,1,0,-1,-1,0,9416,0,7749 +98701,0,0,-1,-1,-1,0,483,0,8407 +98702,0,0,-1,0,0,0,483,0,9171 +98703,0,0,-1,0,0,0,483,0,9174 +98704,0,0,-1,0,0,0,483,0,9177 +98705,0,0,-1,0,0,0,483,0,9178 +98706,0,0,-1,0,3000,79,11396,0,9179 +98707,0,2,0,9000,-1,0,9632,0,7717 +98708,0,0,0,1800000,0,0,9252,0,7507 +98709,0,0,-1,-1,-1,0,483,0,7978 +98710,0,0,0,-1,-1,0,3366,0,7146 +98711,0,0,-1,-1,-1,0,483,0,8030 +98712,0,1,0,-1,-1,0,7597,0,7927 +98713,0,0,-1,-1,-1,0,11547,0,9319 +98714,0,0,-1,-1,-1,0,11548,0,9323 +98715,0,0,-1,-1,-1,0,10738,0,8444 +98716,0,0,-1,-1,-1,0,8088,0,6530 +98717,0,0,-1,-1,-1,0,8090,0,6532 +98718,0,1,0,-1,-1,0,7597,0,7719 +98719,0,0,-1,-1,-1,0,483,0,8764 +98720,0,0,-1,-1,-1,0,483,0,8945 +98721,0,0,-1,-1,-1,0,483,0,8761 +98722,0,1,0,-1,-1,0,14799,0,7709 +98723,0,1,0,-1,-1,0,9416,0,10018 +98724,0,0,-1,-1,-1,0,515,0,1002 +98725,0,0,-1,-1,-1,0,483,0,7742 +98726,0,0,-1,-1,-1,0,483,0,6056 +98727,0,0,-1,-1,-1,0,483,0,10325 +98728,0,0,-1,-1,-1,0,483,0,10326 +98729,0,1,0,-1,-1,0,15808,0,10570 +98730,0,0,-1,-1,-1,0,483,0,8787 +98731,0,0,0,60000,30000,24,689,0,2012 +98732,0,0,0,300000,10000,1141,13278,0,10645 +98733,0,0,-1,-1,-1,0,483,0,11208 +98734,0,0,0,1000,-1,0,6658,0,5687 +98735,0,0,0,3600000,0,0,13234,0,10721 +98737,0,2,0,-1,-1,0,13519,0,754 +98738,0,1,0,0,-1,0,7703,0,10572 +98739,0,2,0,-1,-1,0,13049,0,10847 +98740,0,0,-1,-1,-1,0,7108,0,5951 +98741,0,0,-1,-1,-1,0,7220,0,6041 +98742,0,0,-5,-1,-1,0,12851,0,10831 +98743,0,1,0,900000,30000,0,7517,0,10795 +98744,0,0,-1,-1,-1,0,483,0,10311 +98745,0,1,0,-1,-1,0,9325,0,10023 +98746,0,0,-1,0,0,0,483,0,9072 +98747,0,0,-1,0,0,0,483,0,9073 +98748,0,0,-1,0,3000,79,11350,0,8956 +98749,0,0,-1,-1,-1,0,886,0,4160 +98750,0,0,-1,-1,-1,0,483,0,4346 +98751,0,0,-1,0,0,0,483,0,4174 +98752,0,0,-1,0,0,0,483,0,4184 +98753,0,1,0,0,0,38,8324,0,6711 +98754,0,0,-1,0,-1,0,8693,0,6951 +98755,0,0,0,30000,-1,0,11889,0,9621 +98756,1,2,0,-1,-1,0,11791,0,9465 +98757,0,0,0,0,3000,330,579,0,5663 +98758,0,0,-1,-1,-1,0,483,0,10858 +98759,0,0,-1,-1,-1,0,483,0,11152 +98760,0,0,-1,30000,-1,0,12189,0,10327 +98761,0,0,0,-1,-1,0,12304,0,10445 +98762,0,0,-1,-1,-1,0,483,0,10315 +98763,0,0,-1,-1,-1,0,483,0,10317 +98764,0,0,-1,-1,-1,0,483,0,11206 +98765,0,1,0,0,0,0,12956,0,10779 +98766,0,1,0,-1,-1,0,9139,0,4825 +98767,0,0,-1,-1,-1,0,483,0,11163 +98768,0,0,-1,0,0,0,483,0,9157 +98769,0,0,0,1800000,0,0,23134,0,10587 +98770,0,1,0,-1,-1,0,11789,0,10506 +98771,0,0,-1,-1,-1,0,483,0,7451 +98772,0,0,-1,1000,-1,0,14209,0,10792 +98773,0,1,0,0,-1,0,13595,0,11263 +98774,0,0,-1,1000,-1,0,14210,0,10794 +98775,0,0,-1,-1,-1,0,14929,0,11412 +98776,0,0,-1,0,1000,11,1131,0,11415 +98777,0,0,-3,60000,30000,29,510,0,1533 +98778,0,0,-1,-1,-1,0,483,0,11165 +98779,0,0,-1,-1,-1,0,483,0,4286 +98780,0,0,-1,-1,-1,0,483,0,6736 +98781,0,1,0,-1,-1,0,8747,0,7052 +98782,0,0,-1,-1,-1,0,13565,0,11100 +98783,0,0,-1,-1,-1,0,483,0,11101 +98784,0,0,-1,-1,-1,0,483,0,10602 +98785,0,0,-1,-1,-1,0,483,0,10316 +98786,0,0,-1,-1,-1,0,483,0,10320 +98787,0,0,-1,-1,-1,0,15490,0,11683 +98788,0,1,0,-1,-1,0,9328,0,10002 +98789,0,0,-1,-1,-1,0,6626,0,5695 +98790,0,0,-1,1000,-1,0,9903,0,7965 +98791,0,0,-1,0,0,0,483,0,5716 +98792,0,0,-1,0,60000,24,12421,0,10514 +98793,0,0,0,-1,-1,0,13143,0,10757 +98794,0,0,-1,0,60000,24,12419,0,10507 +98795,0,0,0,1500,-1,0,10709,0,10394 +98796,0,0,-1,-1,-1,0,483,0,11203 +98797,0,0,-1,-1,-1,0,3366,0,6207 +98798,0,0,-1,0,0,0,483,0,5712 +98799,0,0,-1,-1,-1,0,13739,0,11174 +98800,0,0,-1,-1,-1,0,13740,0,11175 +98801,0,0,-5,-1,-1,0,12938,0,11582 +98802,0,0,0,1500,-1,0,10716,0,10361 +98803,0,0,-1,-1,-1,0,483,0,10644 +98804,0,0,-1,-1,-1,0,12802,0,10687 +98805,0,0,-1,-1,-1,0,12806,0,10689 +98806,0,0,-1,-1,-1,0,12808,0,10690 +98807,0,0,-1,0,-1,0,13226,0,10921 +98808,0,0,-1,0,-1,0,13227,0,10922 +98809,0,0,-1,-1,-1,0,13361,0,10938 +98810,0,0,-1,-1,-1,0,13362,0,10939 +98811,0,0,-1,0,-1,0,13225,0,10920 +98812,0,0,0,45000,-1,0,14247,0,11170 +98813,0,0,-1,-1,-1,0,483,0,7364 +98814,0,0,0,300000,-1,0,12346,0,10818 +98815,0,0,-1,0,60000,24,13808,0,10830 +98816,0,0,-1,0,0,0,483,0,4175 +98817,0,0,-1,-1,-1,0,483,0,4299 +98818,0,0,-1,-1,-1,0,483,0,5151 +98819,0,0,-1,-1,-1,0,18974,0,15208 +98820,0,0,-1,-1,-1,0,483,0,11205 +98821,0,1,0,-1,-1,0,9346,0,10844 +98823,0,0,0,1500,-1,0,10695,0,10822 +98824,0,0,-1,-1,-1,0,483,0,11224 +98825,0,0,0,300000,10000,1141,13183,0,10727 +98826,0,0,0,-1,-1,0,12534,0,10515 +98827,0,0,0,30000,-1,0,12438,0,10518 +98828,0,0,-1,-1,-1,0,483,0,11167 +98829,0,0,0,300000,-1,0,13978,0,11169 +98830,0,0,6,600000,10000,1141,13237,0,10577 +98831,0,0,0,900000,300000,1203,13141,0,10724 +98832,0,0,-1,-1,-1,0,483,0,11207 +98833,0,2,0,-1,-1,0,18075,0,10772 +98834,0,0,-1,-1,-1,0,483,0,7363 +98835,0,0,-1,0,-1,0,13219,0,10918 +98836,0,2,0,-1,-1,0,18200,0,7753 +98837,0,0,-1,0,1000,11,433,0,6361 +98838,0,0,-1,0,1000,11,7737,0,11109 +98839,0,0,-1,-1,-1,0,483,0,8401 +98840,0,0,0,1500,-1,0,10698,0,8498 +98841,0,0,-1,-1,-1,0,483,0,11166 +98842,0,0,-1,-1,-1,0,483,0,11168 +98843,0,0,0,1500,-1,0,12243,0,10398 +98844,0,1,0,-1,-1,0,9344,0,10003 +98845,0,1,0,-1,-1,0,9345,0,10011 +98846,0,1,0,-1,-1,0,9142,0,10624 +98847,0,2,0,-1,-1,0,12685,0,10625 +98848,0,0,-1,0,1000,11,1129,0,9681 +98849,0,0,0,300000,10000,1141,17283,0,13171 +98850,0,0,0,-1,-1,0,3366,0,12143 +98851,0,1,0,-1,-1,0,14824,0,11363 +98852,0,0,-1,-1,-1,0,483,0,11081 +98853,0,0,-1,0,0,0,483,0,9089 +98854,0,0,-1,0,0,0,483,0,9090 +98855,0,0,0,1500,-1,0,10717,0,10392 +98856,0,0,0,1500,-1,0,10688,0,10393 +98857,0,0,-1,-1,-1,0,483,0,8967 +98858,0,0,-1,-1,-1,0,483,0,8968 +98859,0,0,-1,-1,-1,0,483,0,9015 +98860,0,0,-1,-1,-1,0,12438,0,10684 +98861,0,0,-1,-1,-1,0,3208,0,1335 +98862,0,0,-1,-1,-1,0,13498,0,11082 +98863,1,1,0,-1,-1,0,7518,0,9625 +98864,0,0,-1,-1,-1,0,483,0,4214 +98865,0,2,0,-1,-1,0,56,0,9477 +98866,0,0,0,60000,0,0,12022,0,10030 +98867,0,1,0,-1,-1,0,9414,0,10031 +98868,0,0,0,60000,-1,0,11402,0,9189 +98869,0,0,-1,0,0,0,483,0,9051 +98870,0,0,0,30000,-1,0,11886,0,9618 +98871,0,0,-1,-1,-1,0,12199,0,10338 +98872,0,0,-1,0,0,0,483,0,9091 +98873,0,0,-1,0,0,0,483,0,9092 +98874,0,0,-1,0,0,0,483,0,9180 +98875,0,2,0,-1,-1,0,16405,0,9478 +98876,0,1,0,0,0,0,15807,0,9479 +98877,0,0,-1,-1,-1,0,483,0,9016 +98878,0,0,-1,-1,-1,0,483,0,8913 +98879,0,0,-1,-1,-1,0,483,0,8916 +98880,0,0,0,5000,-1,0,15748,0,12144 +98881,0,2,0,-1,-1,0,18089,0,11902 +98882,0,0,0,1500,-1,0,15648,0,11903 +98883,0,0,-1,-1,-1,0,16447,0,12534 +98884,0,0,0,300000,-1,0,1184,0,1544 +98885,0,0,-1,0,0,0,483,0,1588 +98886,0,0,-1,0,0,0,483,0,9168 +98887,0,0,-1,0,0,0,483,0,9170 +98888,0,0,-1,300000,60000,24,13241,0,10646 +98889,0,0,-1,-1,-1,0,483,0,8942 +98890,0,1,0,-1,-1,0,17868,0,10042 +98891,0,2,0,-1,-1,0,16405,0,8190 +98892,0,0,-1,0,0,0,483,0,9039 +98893,0,1,0,-1,-1,0,9346,0,12756 +98894,0,0,-1,-1,-1,0,15491,0,11682 +98895,0,0,-1,-1,-1,0,15118,0,11569 +98896,0,0,-1,-1,-1,0,483,0,6734 +98897,0,0,0,30000,-1,0,11887,0,9619 +98898,0,0,-1,-1,-1,0,483,0,8921 +98899,0,0,2,-1,-1,0,12283,0,10444 +98900,0,0,0,1500,-1,0,10714,0,10360 +98901,0,0,-1,-1,-1,0,13982,0,11231 +98902,0,0,-1,-1,-1,0,14050,0,11243 +98903,0,1,0,0,0,0,21363,0,10659 +98904,1,1,0,-1,-1,0,21596,0,10659 +98905,0,0,-1,0,0,0,483,0,9040 +98906,0,1,0,-1,-1,0,9411,0,10032 +98907,0,0,-1,0,600000,4,11392,0,9172 +98908,0,0,-1,0,0,0,483,0,9070 +98909,0,0,-1,-1,-1,0,483,0,8885 +98910,0,0,-1,-1,-1,0,483,0,8841 +98911,0,0,-1,0,0,0,483,0,9176 +98912,0,0,-1,0,0,0,483,0,9181 +98913,0,0,-1,-1,-1,0,483,0,10463 +98914,0,0,-1,0,0,0,483,0,9094 +98915,0,1,0,-1,-1,0,12560,0,10542 +98916,0,0,-1,0,3000,79,12608,0,10592 +98917,0,2,0,-1,-1,0,56,0,10627 +98918,0,1,0,-1,-1,0,18079,0,10696 +98919,1,0,0,0,0,0,12938,0,10696 +98920,0,2,0,-1,-1,0,12686,0,10626 +98921,0,1,0,-1,-1,0,9325,0,10028 +98922,0,0,-1,-1,-1,0,11009,0,9260 +98923,0,0,0,30000,-1,0,11888,0,9620 +98924,0,0,0,-1,-1,0,11757,0,9466 +98925,0,2,0,-1,-1,0,3742,0,9467 +98926,0,0,-1,0,0,0,483,0,9095 +98927,0,0,-1,0,0,0,483,0,9098 +98928,0,0,-1,-1,-1,0,483,0,8933 +98929,0,0,-1,-1,-1,0,483,0,8934 +98930,0,0,-1,-1,-1,0,483,0,9007 +98931,0,1,0,-1,-1,0,21431,0,10510 +98932,0,0,-1,-1,-1,0,12253,0,10419 +98933,0,1,0,-1,-1,0,29634,0,10567 +98934,0,0,-1,-1,-1,0,12253,0,10460 +98935,0,0,0,-1,-1,0,12347,0,10464 +98936,0,0,-1,0,3600000,103,10692,0,8423 +98937,0,0,-1,0,3600000,103,10693,0,8424 +98938,0,0,-1,0,0,0,483,0,9079 +98939,0,0,-1,-1,-1,0,483,0,8922 +98940,0,1,0,10000,-1,0,9778,0,7939 +98941,0,2,0,-1,-1,0,13534,0,7954 +98942,0,2,0,-1,-1,0,9806,0,7961 +98943,0,0,-1,0,120000,4,439,0,118 +98944,0,0,-1,0,0,0,483,0,9131 +98945,0,0,-1,0,0,0,483,0,9132 +98946,0,0,-1,0,0,0,483,0,9133 +98947,0,0,-1,0,0,0,483,0,9134 +98948,0,0,-1,-1,-1,0,483,0,8988 +98949,0,0,-1,0,0,0,483,0,9075 +98950,0,1,0,-1,-1,0,9415,0,10787 +98951,0,0,-1,-1,-1,0,483,0,8896 +98952,0,0,-1,0,0,0,483,0,9066 +98953,0,0,-1,0,0,0,483,0,9067 +98954,0,0,-1,-1,-1,0,483,0,8966 +98955,0,0,-1,0,0,0,483,0,9081 +98956,0,0,-1,0,3000,79,11371,0,9088 +98957,0,0,-1,-1,-1,0,9781,0,7967 +98958,0,0,-1,-1,-1,0,9783,0,7969 +98959,0,0,-1,0,0,0,483,0,9096 +98960,0,0,-1,0,0,0,483,0,9097 +98961,0,2,0,-1,-1,0,11791,0,9485 +98962,0,1,0,-1,-1,0,11992,0,9978 +98963,0,0,-1,-1,-1,0,483,0,9005 +98964,0,0,-1,1000,-1,0,12176,0,10308 +98965,0,0,-1,1000,-1,0,12179,0,10310 +98966,0,0,-1,-1,-1,0,483,0,8994 +98967,0,0,-1,0,0,0,483,0,9071 +98968,0,0,-1,-1,-1,0,483,0,10302 +98969,0,0,0,1200000,0,1180,22641,0,10588 +98970,0,0,-1,-1,-1,0,483,0,10604 +98971,0,0,-1,-1,-1,0,483,0,10605 +98972,0,0,-1,-1,-1,0,483,0,10606 +98973,0,0,-1,-1,-1,0,483,0,10607 +98974,0,0,-1,-1,-1,0,483,0,10608 +98975,0,1,0,-1,-1,0,9408,0,9431 +98976,0,1,0,-1,-1,0,14794,0,10025 +98977,0,1,0,-1,-1,0,7597,0,7937 +98978,0,1,0,-1,-1,0,9343,0,10009 +98979,0,0,-1,-1,-1,0,483,0,10713 +98980,0,0,0,300000,0,0,13006,0,10716 +98981,0,0,-1,-1,-1,0,483,0,1102 +98982,0,0,-1,-1,-1,0,483,0,10603 +98983,0,0,-1,0,0,0,483,0,4186 +98984,0,1,0,-1,-1,0,14248,0,9434 +98985,0,0,-1,0,1000,11,433,0,117 +98986,0,0,-1,0,1000,11,6727,0,8526 +98988,0,0,-1,-1,-1,0,483,0,9221 +98989,0,0,-1,-1,-1,0,483,0,9222 +98990,0,0,3,-1,-1,0,13494,0,9449 +98991,0,0,-1,-1,-1,0,483,0,8938 +98992,0,0,-1,-1,-1,0,483,0,8940 +98993,0,0,-1,-1,-1,0,483,0,8976 +98994,0,0,-1,-1,-1,0,483,0,8977 +98995,0,1,0,-1,-1,0,7706,0,10461 +98996,0,0,-1,-1,-1,0,483,0,10601 +98997,0,0,-1,-1,-1,0,483,0,7991 +98998,0,0,-1,0,1000,11,1131,0,8950 +98999,0,0,-1,0,3000,79,11349,0,8951 +99000,0,0,-1,-1,-1,0,483,0,9194 +99001,0,0,-1,-1,-1,0,483,0,10322 +99002,0,0,-1,-1,-1,0,483,0,10324 +99003,0,0,-1,-1,-1,0,483,0,8978 +99004,0,0,-1,-1,-1,0,483,0,8996 +99005,0,0,-1,0,0,0,483,0,9064 +99006,0,0,-1,0,60000,24,4074,0,10719 +99007,0,0,-1,0,60000,24,12562,0,10586 +99008,0,1,0,-1,-1,0,18074,0,10805 +99009,0,1,0,-1,-1,0,9316,0,10020 +99010,0,0,-1,-1,-1,0,12684,0,10622 +99011,0,2,0,-1,-1,0,13439,0,10623 +99012,0,1,0,-1,-1,0,9298,0,10044 +99013,0,1,0,-1,-1,0,17993,0,9482 +99014,0,1,0,-1,-1,0,9346,0,10021 +99015,0,0,-1,-1,-1,0,483,0,9191 +99016,0,0,-1,-1,-1,0,483,0,9192 +99017,0,0,-1,0,0,0,483,0,9129 +99018,0,0,-1,-1,-1,0,11437,0,9249 +99019,0,0,0,-1,-1,0,11438,0,9252 +99020,0,0,-1,-1,-1,0,483,0,8943 +99021,0,0,-1,-1,-1,0,483,0,1244 +99022,0,1,0,-1,-1,0,12418,0,10501 +99023,0,1,0,-1,-1,0,14248,0,10502 +99024,0,0,0,-1,-1,0,12735,0,10663 +99025,0,0,-1,0,3000,79,11403,0,9197 +99026,0,2,0,0,-1,0,13532,0,9639 +99027,0,1,0,0,0,0,9408,0,9393 +99028,0,0,-1,0,1000,59,432,0,9451 +99029,0,0,-1,0,-1,0,11338,0,8926 +99030,0,0,-1,-1,-1,0,483,0,8929 +99031,0,0,-1,-1,-1,0,483,0,8946 +99032,0,0,-1,-1,-1,0,15340,0,11622 +99033,0,1,0,-1,-1,0,14799,0,11904 +99035,0,0,-1,0,0,0,483,0,9069 +99036,0,2,0,-1,-1,0,16408,0,11121 +99037,0,0,-1,-1,-1,0,483,0,12685 +99038,0,1,0,-1,-1,0,21361,0,13179 +99039,0,0,-1,-1,-1,0,483,0,8800 +99040,0,0,-1,-1,-1,0,483,0,8874 +99041,0,0,-1,-1,-1,0,483,0,8910 +99042,0,0,-1,-1,-1,0,15441,0,11667 +99043,0,0,-1,-1,-1,0,15449,0,11673 +99044,0,0,-1,-1,-1,0,483,0,3831 +99045,0,0,-1,0,0,0,483,0,9138 +99046,0,0,-1,-1,-1,0,483,0,12683 +99047,0,0,-1,-1,-1,0,483,0,12226 +99048,0,0,-1,-1,-1,0,483,0,12227 +99049,0,0,-1,-1,-1,0,483,0,12229 +99050,0,0,-1,0,0,0,483,0,9103 +99051,0,2,0,-1,-1,0,10373,0,9425 +99052,0,0,-1,0,1000,0,434,0,12238 +99053,0,0,-1,-1,-1,0,483,0,12239 +99054,0,0,-1,-1,-1,0,483,0,9301 +99055,0,2,0,-1,-1,0,15494,0,11684 +99057,0,1,0,-1,-1,0,9336,0,11686 +99058,0,1,0,-1,-1,0,18076,0,11907 +99059,0,0,-1,-1,-1,0,9577,0,7733 +99060,0,1,0,-1,-1,0,13669,0,7926 +99061,0,2,0,-1,-1,0,19260,0,13148 +99062,0,0,0,30000,-1,0,17536,0,13536 +99063,0,2,0,-1,-1,0,18214,0,13051 +99064,0,0,0,1500,-1,0,15048,0,11825 +99066,0,0,-1,-1,-1,0,16077,0,12350 +99067,0,0,-1,-1,-1,0,483,0,11610 +99068,0,0,-1,-1,-1,0,483,0,11611 +99069,0,0,-1,-1,-1,0,483,0,11612 +99070,0,0,-1,-1,-1,0,483,0,9199 +99071,0,0,0,1800000,10000,1141,11826,0,9492 +99072,0,0,-1,0,3000,79,11405,0,9206 +99073,0,2,0,-1,-1,0,16939,0,12802 +99074,0,1,0,0,0,0,9346,0,12543 +99075,0,1,0,0,0,0,7597,0,12548 +99076,0,1,0,-1,-1,0,7598,0,9413 +99077,0,0,-1,-1,-1,0,483,0,12835 +99078,0,1,0,-1,-1,0,9141,0,12259 +99079,0,1,0,-1,-1,0,17819,0,12105 +99080,0,0,-1,-1,-1,0,483,0,8860 +99081,0,0,-1,-1,-1,0,483,0,1332 +99082,0,0,-1,-1,-1,0,483,0,8798 +99083,0,0,-1,-1,-1,0,483,0,8408 +99084,0,0,-1,-1,-1,0,15391,0,11643 +99085,0,0,-1,0,0,0,483,0,9104 +99086,0,0,-1,-1,-1,0,483,0,8783 +99087,0,1,0,0,-1,0,13669,0,11755 +99088,0,0,0,1500,-1,0,10680,0,8496 +99089,0,1,0,-1,-1,0,13665,0,11931 +99090,1,1,0,-1,-1,0,7597,0,11931 +99091,2,1,0,-1,-1,0,9336,0,11931 +99092,0,0,-1,-1,-1,0,483,0,9190 +99093,0,0,0,900000,45000,1141,12766,0,10455 +99094,0,0,-1,0,1000,11,1131,0,12763 +99095,0,0,-1,-1,-1,0,12460,0,10548 +99096,0,0,-1,-1,-1,0,483,0,6045 +99097,0,0,-1,-1,-1,0,483,0,5774 +99098,0,0,-1,1000,-1,0,14227,0,10793 +99099,0,0,0,-1,-1,0,15303,0,11613 +99100,0,0,-1,0,120000,4,4941,0,4623 +99101,0,0,-1,-1,-1,0,483,0,8855 +99102,0,0,-1,-1,-1,0,483,0,8823 +99103,0,0,-1,0,3000,79,11334,0,9187 +99104,0,0,0,1500,-1,0,15049,0,11826 +99105,0,1,0,-1,-1,0,18031,0,11841 +99106,0,1,0,-1,-1,0,9344,0,11842 +99107,0,0,-1,-1,-1,0,16796,0,12733 +99108,0,0,-1,0,1000,11,1131,0,8948 +99109,0,0,-1,-1,-1,0,483,0,12726 +99110,0,0,-1,-1,-1,0,483,0,12727 +99111,0,0,0,1800000,0,0,10577,0,8346 +99112,0,0,-1,-1,-1,0,483,0,4408 +99113,0,0,0,180000,0,0,9223,0,6286 +99114,0,1,0,-1,-1,0,43588,0,12639 +99115,1,1,0,-1,-1,0,13665,0,12639 +99116,2,1,0,-1,-1,0,7597,0,12639 +99117,0,1,0,-1,-1,0,7598,0,12640 +99118,1,1,0,-1,-1,0,15465,0,12640 +99119,0,0,-1,-1,-1,0,483,0,3101 +99120,0,0,-1,-1,-1,0,483,0,12728 +99121,0,0,-1,-1,-1,0,483,0,3122 +99122,0,1,0,-1,-1,0,13387,0,12115 +99123,0,0,-1,-1,-1,0,483,0,12261 +99124,0,0,-1,0,0,0,483,0,9077 +99125,0,1,0,0,0,0,48777,0,11122 +99126,0,0,-1,-1,-1,0,483,0,12696 +99127,0,0,-1,-1,-1,0,483,0,12698 +99128,0,0,-1,-1,-1,0,483,0,12836 +99129,0,0,-1,-1,-1,0,483,0,12837 +99130,0,0,-1,-1,-1,0,483,0,12838 +99131,0,1,0,-1,-1,0,13669,0,11910 +99132,0,0,-1,0,1000,11,10256,0,12215 +99133,0,0,-1,0,1000,11,10256,0,12216 +99134,0,0,-1,-1,-1,0,483,0,8862 +99135,0,0,-1,-1,-1,0,483,0,5487 +99136,0,1,0,0,0,38,39704,0,6708 +99137,0,0,-1,-1,-1,0,3366,0,12301 +99138,0,1,0,-1,-1,0,7617,0,1131 +99139,0,0,-1,-1,-1,0,483,0,8915 +99140,0,0,-1,0,60000,24,15239,0,11566 +99141,0,1,0,-1,-1,0,29418,0,11362 +99142,0,0,-1,-1,-1,0,483,0,8810 +99143,0,0,-1,-1,-1,0,11758,0,8584 +99144,0,0,-1,-1,-1,0,483,0,8768 +99145,0,0,0,60000,60000,28,905,0,2803 +99146,0,2,0,-1,-1,0,18104,0,811 +99147,0,2,0,-1,-1,0,17148,0,1263 +99148,0,1,0,-1,-1,0,16718,0,12709 +99149,1,1,0,-1,-1,0,18067,0,12709 +99150,0,0,-1,-1,-1,0,483,0,12719 +99151,0,0,-1,-1,-1,0,483,0,12720 +99152,0,0,-1,-1,-1,0,483,0,5723 +99153,0,0,0,0,3000,330,10793,0,8629 +99154,0,0,-1,-1,-1,0,483,0,12706 +99155,0,0,-1,-1,-1,0,483,0,12707 +99156,0,0,-1,-1,-1,0,3209,0,1880 +99157,0,1,0,-1,-1,0,7823,0,12222 +99158,0,0,-1,0,1000,11,5004,0,12224 +99159,0,0,0,-1,-1,0,14250,0,11286 +99160,0,1,0,-1,-1,0,9417,0,11807 +99161,0,0,0,-1,-1,0,16007,0,12284 +99162,0,0,-1,0,0,0,483,0,5697 +99163,0,1,0,0,0,0,23727,0,12103 +99164,0,1,0,-1,-1,0,9331,0,12104 +99165,0,0,-1,60000,-1,0,16629,0,12650 +99166,0,0,-1,0,0,0,483,0,9182 +99167,0,0,-1,-1,-1,0,11760,0,9439 +99168,0,0,-1,0,1000,11,5004,0,11584 +99169,0,0,-1,-1,-1,0,483,0,10300 +99170,0,0,-1,-1,-1,0,483,0,10424 +99171,0,0,-1,-1,-1,0,483,0,2697 +99172,0,0,-1,180000,-1,0,16031,0,12288 +99173,0,0,-1,0,1000,11,1131,0,11444 +99174,0,0,-1,-1,-1,0,2410,0,2600 +99175,0,0,-1,-1,-1,0,483,0,8901 +99176,0,0,-1,-1,-1,0,483,0,9001 +99177,0,0,-4,-1,-1,0,17155,0,12906 +99178,0,1,0,-1,-1,0,17371,0,12625 +99179,0,1,0,-1,-1,0,16611,0,12628 +99180,0,0,-1,-1,-1,0,483,0,8763 +99181,0,0,-1,-1,-1,0,483,0,8875 +99182,0,0,-1,1000,-1,0,12174,0,10309 +99183,0,0,-1,-1,-1,0,483,0,12704 +99184,0,0,-1,-1,-1,0,483,0,12705 +99185,0,0,0,-1,-1,0,14247,0,11522 +99186,0,0,-1,-1,-1,0,483,0,12231 +99187,0,0,-1,-1,-1,0,483,0,9035 +99188,0,0,-1,-1,-1,0,483,0,7192 +99189,0,0,-1,0,0,0,483,0,9050 +99190,0,1,0,-1,-1,0,7689,0,12260 +99191,0,1,0,-1,-1,0,9344,0,12107 +99192,0,1,0,-1,-1,0,7517,0,12550 +99193,0,0,-1,0,0,0,483,0,9130 +99194,0,1,0,-1,-1,0,9332,0,12061 +99195,0,1,0,-1,-1,0,7363,0,6182 +99196,0,0,-5,-1,-1,0,16053,0,12300 +99197,0,2,0,-1,-1,0,16433,0,11744 +99198,0,1,0,-1,-1,0,13386,0,11746 +99199,0,0,-1,2000,-1,0,17047,0,12844 +99200,0,0,0,300000,0,0,17447,0,11808 +99201,0,2,0,-1,-1,0,16559,0,11809 +99202,0,1,0,-1,-1,0,15594,0,11810 +99203,1,1,0,-1,-1,0,13385,0,11810 +99204,0,1,0,-1,-1,0,15465,0,12082 +99205,0,0,-1,0,-1,0,11355,0,8984 +99206,0,0,-1,0,120000,1153,15229,0,11562 +99207,0,1,0,-1,-1,0,9142,0,13138 +99208,0,0,0,1800000,0,0,17252,0,13143 +99209,0,1,0,-1,-1,0,7678,0,13031 +99210,1,1,0,-1,-1,0,7707,0,13031 +99211,0,2,0,-1,-1,0,17510,0,13032 +99212,0,0,-1,-1,-1,0,15276,0,11602 +99213,0,2,0,-1,-1,0,16405,0,11603 +99214,0,1,0,-1,-1,0,7597,0,12258 +99215,0,0,-1,-1,-1,0,13564,0,11197 +99216,0,0,0,0,3000,330,16060,0,12327 +99217,0,1,0,-1,-1,0,18382,0,12752 +99218,0,0,-1,-1,-1,0,483,0,8387 +99219,0,0,-1,-1,-1,0,483,0,980 +99220,0,1,0,-1,-1,0,9397,0,10796 +99221,0,1,0,-1,-1,0,13388,0,13041 +99222,0,0,0,-1,-1,0,16447,0,12526 +99223,0,1,0,-1,-1,0,9140,0,12527 +99224,0,0,-1,0,0,0,483,0,9049 +99225,0,0,0,-1,-1,0,11438,0,9251 +99226,0,1,0,-1,-1,0,19691,0,1465 +99227,0,0,-1,-1,-1,0,483,0,9211 +99228,0,0,-1,0,0,0,483,0,9167 +99229,0,0,-1,-1,120000,1153,16666,0,12662 +99230,0,2,0,-1,-1,0,13442,0,6220 +99231,0,0,-1,-1,-1,0,12459,0,10546 +99232,0,1,0,-1,-1,0,9335,0,10823 +99233,0,0,-1,-1,-1,0,2352,0,2791 +99234,0,0,0,-1,-1,0,17133,0,12888 +99235,0,2,0,-1,-1,0,16413,0,12992 +99236,0,1,0,-1,-1,0,7598,0,12757 +99237,1,1,0,-1,-1,0,13669,0,12757 +99238,0,1,0,-1,-1,0,15600,0,11815 +99239,1,1,0,-1,-1,0,9331,0,11815 +99240,0,0,-1,120000,120000,1153,15700,0,11951 +99241,0,0,-1,0,120000,1153,15701,0,11952 +99242,0,0,-1,-1,-1,0,483,0,8853 +99243,0,0,0,1800000,0,0,13180,0,10726 +99244,0,0,0,1500,-1,0,10685,0,11023 +99245,0,1,0,0,-1,0,15464,0,11964 +99246,0,1,0,0,0,0,14799,0,12926 +99247,0,1,0,0,0,0,8397,0,11302 +99248,0,1,0,-1,-1,0,15714,0,11822 +99249,0,1,0,-1,-1,0,15714,0,11823 +99250,0,0,-1,-1,-1,0,483,0,11614 +99251,0,0,-1,-1,-1,0,483,0,9298 +99252,0,0,0,0,3000,330,16058,0,12325 +99253,0,0,-1,-1,-1,0,483,0,11827 +99254,0,0,0,1500,-1,0,10704,0,11026 +99255,0,0,0,1500,-1,0,10703,0,11027 +99256,0,1,0,-1,-1,0,23727,0,11662 +99257,1,1,0,-1,-1,0,9417,0,11662 +99258,0,1,0,0,-1,0,13390,0,13091 +99259,0,1,0,-1,-1,0,9403,0,7060 +99260,0,0,-1,-1,-1,0,483,0,7086 +99261,0,0,-1,-1,-1,0,483,0,11828 +99262,0,1,0,0,0,0,15438,0,11669 +99263,1,1,0,-1,-1,0,13383,0,11669 +99264,0,0,-1,-1,-1,0,15444,0,11670 +99265,0,0,-1,-1,-1,0,15446,0,11671 +99266,0,0,-1,-1,-1,0,15458,0,11672 +99267,0,0,0,3000,-1,0,16028,0,12286 +99268,0,0,0,-1,3000,330,16083,0,12353 +99269,0,0,-1,0,0,0,483,0,9175 +99270,0,0,-1,0,0,0,483,0,9093 +99271,1,1,0,-1,-1,0,7598,0,11726 +99272,0,0,-1,-1,-1,0,483,0,11615 +99273,0,1,0,-1,-1,0,7707,0,10049 +99274,0,0,-1,-1,-1,0,14199,0,11148 +99275,0,0,-1,0,0,0,15233,0,11564 +99276,0,0,-1,-1,-1,0,11008,0,11846 +99277,0,0,-1,-1,-1,0,483,0,4266 +99278,0,0,-1,1000,-1,0,14814,0,11325 +99279,0,0,-1,-1,-1,0,483,0,9013 +99280,0,0,-1,-1,-1,0,483,0,9004 +99281,0,1,0,-1,-1,0,9331,0,13166 +99282,0,1,0,-1,-1,0,9140,0,13248 +99283,0,0,-1,-1,-1,0,483,0,9305 +99284,0,0,-1,-1,-1,0,483,0,11038 +99285,0,0,0,120000,-1,0,18364,0,14134 +99286,0,1,0,-1,-1,0,7598,0,11735 +99287,0,1,0,0,0,0,9415,0,11824 +99288,0,0,0,1500,-1,0,10682,0,8494 +99289,0,0,0,0,3000,330,10969,0,8595 +99290,0,0,-1,-1,-1,0,483,0,8843 +99291,0,0,-1,0,0,0,483,0,1036 +99292,0,2,0,-1,-1,0,13439,0,10761 +99293,0,2,0,-1,-1,0,16411,0,10628 +99294,0,0,-1,-1,-1,0,483,0,10609 +99295,0,1,0,-1,-1,0,14799,0,11747 +99296,0,1,0,0,0,0,9400,0,11748 +99297,0,0,-1,-1,-1,0,15649,0,11836 +99298,0,0,-1,-1,-1,0,483,0,5130 +99299,0,0,-1,-1,-1,0,4976,0,4754 +99300,0,0,0,0,3000,330,6777,0,5864 +99301,0,0,0,-1,-1,0,15033,0,11445 +99302,0,0,-1,-1,-1,0,15406,0,11649 +99303,0,0,-1,-1,-1,0,483,0,8989 +99304,0,0,-1,-1,-1,0,483,0,4146 +99305,0,0,-1,-1,-1,0,15397,0,11645 +99306,0,0,-1,-1,-1,0,15404,0,11648 +99307,0,0,-1,-1,-1,0,483,0,5972 +99308,0,0,-1,0,0,0,15231,0,11563 +99309,0,0,-1,0,3000,79,11319,0,8827 +99310,0,0,-1,-1,-1,0,483,0,4277 +99311,0,0,-1,-1,-1,0,15463,0,11676 +99312,0,0,0,1500,-1,0,13548,0,11110 +99313,0,1,0,-1,-1,0,7823,0,7996 +99314,0,1,0,-1,-1,0,13669,0,11872 +99315,0,0,-1,-1,-1,0,483,0,10318 +99316,0,2,0,-1,-1,0,15280,0,11607 +99317,0,0,-1,-1,-1,0,15699,0,11948 +99318,0,0,-1,-1,-1,0,483,0,8935 +99319,0,0,-1,-1,-1,0,483,0,9034 +99320,1,0,-1,0,120000,1153,11732,0,9421 +99321,0,0,-1,-1,-1,0,483,0,11039 +99322,0,0,-1,-1,-1,0,15389,0,11642 +99323,0,0,0,-1,-1,0,471,0,902 +99324,0,1,0,-1,-1,0,9343,0,11623 +99325,0,2,0,-1,-1,0,15283,0,11608 +99326,0,0,-1,0,0,0,483,0,9099 +99327,0,2,0,-1,-1,0,13527,0,9486 +99328,0,0,-1,-1,-1,0,483,0,8911 +99329,0,0,-1,-1,-1,0,15394,0,11644 +99330,0,1,0,-1,-1,0,9343,0,11624 +99332,0,0,-1,120000,0,0,15057,0,11590 +99333,0,0,-1,-1,-1,0,483,0,11164 +99334,0,0,-1,-1,-1,0,483,0,11226 +99335,0,0,0,1200000,60000,94,12749,0,10576 +99336,0,2,0,-1,-1,0,13530,0,8225 +99337,0,0,0,-1,-1,0,14806,0,11320 +99338,0,0,-1,-1,-1,0,15429,0,11664 +99339,0,0,-1,-1,-1,0,483,0,10319 +99340,0,0,-1,-1,-1,0,483,0,3143 +99341,0,0,0,-1,-1,0,3366,0,11000 +99342,0,0,-1,0,0,0,483,0,9068 +99343,0,0,-1,0,0,0,483,0,1063 +99344,0,0,-1,300000,0,0,15279,0,11567 +99345,0,0,-1,-1,-1,0,483,0,8890 +99346,0,0,-1,-1,-1,0,10459,0,8155 +99347,0,0,-1,-1,-1,0,483,0,7984 +99348,0,0,0,600000,-1,0,13399,0,11020 +99349,0,0,-1,0,120000,4,6614,0,5632 +99350,0,0,0,-1,3000,330,468,0,2415 +99351,0,0,-1,0,0,0,483,0,9151 +99352,0,2,0,-1,-1,0,18088,0,10803 +99353,0,2,0,-1,-1,0,18084,0,10804 +99354,0,0,-1,-1,-1,0,15702,0,11953 +99355,0,0,-1,-1,-1,0,483,0,1090 +99356,0,0,-1,-1,-1,0,15066,0,11473 +99357,0,0,0,1500,-1,0,15067,0,11474 +99358,0,1,0,-1,-1,0,15464,0,12651 +99359,0,0,-1,-1,-1,0,13564,0,11085 +99360,0,0,0,600000,0,0,13120,0,10720 +99361,0,1,0,-1,-1,0,21625,0,11634 +99362,0,2,0,-1,-1,0,13526,0,11635 +99363,0,0,0,3600000,0,0,12561,0,10543 +99364,0,0,-1,-1,-1,0,3976,0,4407 +99365,0,0,-1,0,1000,11,1129,0,4599 +99366,0,0,-1,-1,-1,0,15998,0,12262 +99367,0,0,-1,-1,-1,0,483,0,12691 +99368,0,0,-1,-1,-1,0,483,0,12692 +99369,0,0,-1,-1,-1,0,483,0,12693 +99370,0,0,-1,-1,-1,0,483,0,12694 +99371,0,0,0,900000,0,0,15646,0,11832 +99372,1,1,0,-1,-1,0,9417,0,11832 +99373,0,0,-1,-1,-1,0,15627,0,11833 +99374,0,0,0,1200000,90000,94,23133,0,10725 +99375,0,0,-1,-1,-1,0,483,0,9022 +99376,0,0,0,1200000,0,0,12733,0,10418 +99377,0,1,0,-1,-1,0,7597,0,12940 +99378,0,0,0,1500,-1,0,17709,0,13582 +99379,0,0,0,1500,-1,0,17708,0,13584 +99380,0,0,-1,-1,-1,0,483,0,11813 +99381,0,2,0,-1,-1,0,16603,0,12621 +99382,0,1,0,-1,-1,0,9141,0,12535 +99383,0,0,-1,-1,-1,0,483,0,3734 +99384,0,0,0,2000,-1,0,4954,0,5410 +99385,0,0,-1,-1,-1,0,13632,0,11134 +99386,0,0,-1,-1,-1,0,13633,0,11135 +99387,0,0,-1,-1,-1,0,483,0,4203 +99388,0,0,-1,0,120000,4,17546,0,13458 +99389,0,0,-1,0,120000,4,17545,0,13460 +99390,0,0,-1,0,120000,4,17550,0,13462 +99391,0,1,0,-1,-1,0,21596,0,13387 +99392,0,1,0,-1,-1,0,9344,0,13388 +99393,0,1,0,-1,-1,0,9397,0,13391 +99394,0,1,0,0,0,0,17947,0,13700 +99395,1,1,0,0,0,0,23482,0,13700 +99396,0,1,0,0,0,0,17949,0,13701 +99397,1,1,0,0,0,0,23483,0,13701 +99398,0,0,0,-1,-1,0,3366,0,13704 +99399,0,0,-1,-1,-1,0,483,0,11204 +99400,0,0,-1,0,1000,11,26030,0,11950 +99401,0,0,-1,-1,-1,0,483,0,13947 +99402,0,1,0,-1,-1,0,17713,0,13586 +99403,0,1,0,-1,-1,0,15464,0,7950 +99404,0,0,0,-1,-1,0,17133,0,12886 +99405,0,0,0,-1,-1,0,17133,0,12887 +99406,0,1,0,900000,30000,0,7517,0,12985 +99407,0,0,-5,-1,-1,0,16057,0,12323 +99408,0,0,-1,0,1000,11,18071,0,13724 +99409,0,0,-1,-1,-1,0,17432,0,13302 +99410,0,0,-1,-1,-1,0,483,0,12164 +99411,0,0,0,-1,-1,0,3366,0,12186 +99412,0,1,0,-1,-1,0,15804,0,12187 +99413,0,1,0,-1,-1,0,9318,0,12554 +99414,0,0,-1,-1,-1,0,13982,0,11609 +99415,0,1,0,-1,-1,0,4070,0,1490 +99416,0,0,-1,0,120000,4,17543,0,13457 +99417,0,0,-1,0,1000,11,1129,0,13893 +99418,0,2,0,-1,-1,0,16921,0,12794 +99419,0,2,0,-1,-1,0,13318,0,12795 +99420,0,2,0,-1,-1,0,56,0,12796 +99421,0,0,-1,-1,-1,0,483,0,13517 +99422,0,0,-1,-1,-1,0,483,0,13518 +99423,0,0,-1,-1,-1,0,483,0,13948 +99424,0,1,0,-1,-1,0,18065,0,13716 +99425,0,1,0,-1,-1,0,18066,0,13717 +99426,0,0,-1,-1,-1,0,483,0,13485 +99427,0,0,-1,-1,-1,0,483,0,13486 +99428,0,1,0,-1,-1,0,9346,0,13092 +99429,0,1,0,-1,-1,0,13669,0,13260 +99430,0,2,0,-1,-1,0,18112,0,13262 +99431,0,0,-1,-1,-1,0,483,0,13943 +99432,0,1,0,-1,-1,0,7598,0,13944 +99433,0,2,0,-1,-1,0,16405,0,13060 +99434,0,0,-1,-1,-1,0,483,0,12826 +99435,0,0,-1,-1,-1,0,483,0,12827 +99436,0,0,-1,-1,-1,0,483,0,12828 +99437,0,0,0,1800000,0,0,16739,0,1973 +99438,0,1,0,-1,-1,0,17623,0,13544 +99439,0,2,0,-1,-1,0,16414,0,11920 +99440,0,1,0,-1,-1,0,18018,0,14136 +99441,1,1,0,-1,-1,0,17900,0,14136 +99442,0,1,0,-1,-1,0,18378,0,14141 +99443,0,1,0,-1,-1,0,18379,0,14142 +99444,0,0,-1,-1,-1,0,483,0,13949 +99445,0,0,0,300000,-1,0,12346,0,10465 +99446,0,1,0,-1,-1,0,15464,0,11921 +99447,1,1,0,-1,-1,0,7598,0,11921 +99448,0,1,0,0,-1,0,7597,0,12929 +99449,0,0,-1,0,60000,24,4067,0,4380 +99450,0,0,0,0,3000,330,16081,0,12351 +99451,0,0,0,0,3000,330,16082,0,12354 +99452,0,1,0,-1,-1,0,9343,0,13161 +99453,0,0,0,1800000,0,0,17275,0,13164 +99454,0,0,-1,-1,-1,0,483,0,13479 +99455,0,0,-1,-1,-1,0,483,0,13481 +99456,0,0,-1,-1,-1,0,483,0,13482 +99457,0,0,-1,-1,-1,0,483,0,13520 +99458,0,0,0,-1,-1,0,16628,0,12646 +99459,0,0,0,0,3000,330,8394,0,8631 +99460,0,1,0,-1,-1,0,7721,0,12631 +99461,0,1,0,-1,-1,0,18052,0,13170 +99462,0,0,-1,-1,-1,0,483,0,13521 +99463,0,0,-1,-1,-1,0,483,0,13522 +99464,0,0,-1,-1,-1,0,3366,0,13523 +99465,0,0,0,-1,-1,0,17368,0,13256 +99466,0,1,0,-1,-1,0,13831,0,11782 +99467,0,1,0,-1,-1,0,13388,0,12618 +99468,0,1,0,-1,-1,0,13388,0,12620 +99469,0,1,0,-1,-1,0,16615,0,12632 +99470,1,1,0,-1,-1,0,9361,0,12632 +99471,1,1,0,-1,-1,0,18029,0,12633 +99472,0,1,0,-1,-1,0,15810,0,12634 +99473,0,0,-1,-1,-1,0,16623,0,12645 +99474,0,0,-1,-1,-1,0,483,0,10323 +99475,0,0,0,1000,-1,0,17176,0,12942 +99476,0,1,0,-1,-1,0,13384,0,13074 +99477,0,0,-1,-1,-1,0,483,0,14512 +99478,0,0,-1,-1,-1,0,483,0,14514 +99479,0,1,0,-1,-1,0,7680,0,14522 +99480,0,1,0,-1,-1,0,9331,0,13095 +99481,0,1,0,-1,-1,0,9342,0,13101 +99482,0,1,0,-1,-1,0,17371,0,13102 +99483,0,0,-1,-1,-1,0,483,0,14509 +99484,0,0,-1,1000,-1,0,2864,0,4427 +99485,0,1,0,-1,-1,0,15465,0,12927 +99486,1,1,0,-1,-1,0,14027,0,12927 +99487,0,1,0,-1,-1,0,17670,0,12846 +99488,0,0,-1,-1,-1,0,483,0,12716 +99489,0,0,-1,-1,-1,0,483,0,12717 +99490,0,0,-1,-1,-1,0,483,0,13483 +99491,0,2,0,0,-1,0,13318,0,12791 +99492,0,0,10,30000,30000,0,17166,0,12928 +99493,0,1,0,0,0,0,16982,0,12805 +99494,0,0,-1,-1,-1,0,483,0,13484 +99495,0,1,0,0,-1,0,9317,0,11923 +99496,0,1,0,-1,-1,0,9346,0,11924 +99497,0,1,0,-1,-1,0,7598,0,11926 +99498,0,1,0,-1,-1,0,15816,0,12784 +99499,0,0,-1,-1,-1,0,483,0,14510 +99500,0,0,0,0,3000,330,17458,0,13325 +99501,0,2,0,-1,-1,0,16916,0,12790 +99502,0,1,0,-1,-1,0,7597,0,13217 +99503,0,0,-1,-1,-1,0,17432,0,13303 +99504,0,1,0,-1,-1,0,9336,0,13368 +99505,0,1,0,-1,-1,0,13830,0,13369 +99506,0,1,0,-1,-1,0,9343,0,13964 +99507,0,0,-1,-1,-1,0,16537,0,12586 +99508,0,1,0,0,-1,0,13390,0,12602 +99509,0,1,0,-1,-1,0,17178,0,12947 +99510,0,0,-1,-1,-1,0,483,0,12162 +99511,0,0,-1,-1,-1,0,483,0,12714 +99512,0,0,-1,-1,-1,0,483,0,12715 +99513,0,0,-1,0,3000,79,17539,0,13454 +99514,0,0,0,0,180000,1148,17730,0,13603 +99515,1,1,0,0,0,0,32795,0,13603 +99516,0,1,0,-1,-1,0,7823,0,12221 +99517,0,0,-1,-1,-1,0,483,0,12163 +99518,0,0,-1,-1,-1,0,483,0,13477 +99519,0,0,0,-1,-1,0,16996,0,12785 +99520,0,1,0,-1,-1,0,14799,0,13314 +99521,0,1,0,-1,-1,0,23727,0,13956 +99522,0,0,-1,-1,-1,0,483,0,14505 +99523,0,0,-1,-1,-1,0,483,0,14506 +99524,0,1,0,-1,-1,0,7598,0,13965 +99525,0,1,0,0,-1,0,21361,0,13141 +99526,0,1,0,-1,-1,0,15464,0,13142 +99527,0,1,0,0,0,0,9407,0,13184 +99528,0,0,-1,-1,-1,0,483,0,14482 +99529,0,0,-1,-1,-1,0,483,0,14483 +99530,0,0,-1,-1,-1,0,483,0,14484 +99531,0,0,-1,-1,-1,0,483,0,14488 +99532,0,0,-1,-1,-1,0,483,0,14478 +99533,0,0,-1,-1,-1,0,483,0,14479 +99534,0,0,-1,-1,-1,0,483,0,14480 +99535,0,0,-1,-1,-1,0,483,0,14481 +99536,0,1,0,-1,-1,0,16718,0,12686 +99537,0,0,-1,-1,-1,0,483,0,12713 +99538,0,0,-1,0,120000,4,17540,0,13455 +99539,0,0,-1,0,120000,4,17544,0,13456 +99540,0,0,-1,-1,-1,0,483,0,13489 +99541,0,0,-1,-1,-1,0,483,0,14489 +99542,0,1,0,-1,-1,0,18044,0,14154 +99543,1,1,0,0,0,0,18379,0,14154 +99544,2,1,0,0,0,0,18388,0,14154 +99545,0,1,0,-1,-1,0,7597,0,13400 +99546,0,1,0,-1,-1,0,14047,0,13936 +99547,0,0,-1,-1,-1,0,483,0,13939 +99548,0,1,0,-1,-1,0,18030,0,13954 +99549,1,1,0,-1,-1,0,17988,0,13954 +99550,0,0,-1,-1,-1,0,483,0,12825 +99551,0,1,0,-1,-1,0,15956,0,12225 +99552,0,1,0,0,0,0,9318,0,12960 +99553,0,0,-1,0,0,0,483,0,9148 +99554,0,1,0,-1,-1,0,15464,0,12966 +99555,0,0,0,-1,-1,0,17179,0,13752 +99556,0,0,0,1000,-1,0,17271,0,13156 +99557,0,1,0,-1,-1,0,14248,0,12589 +99558,0,2,0,-1,-1,0,16551,0,12590 +99559,0,2,0,-1,-1,0,16602,0,12592 +99560,0,1,0,-1,-1,0,14056,0,12603 +99561,0,0,-1,-1,-1,0,13478,0,11078 +99562,0,0,-1,-1,-1,0,13484,0,11079 +99563,0,0,-1,0,1000,11,1127,0,13756 +99564,0,2,0,-1,-1,0,17484,0,13361 +99565,0,0,-1,-1,-1,0,11629,0,12003 +99566,0,0,0,0,3000,330,16056,0,12302 +99567,0,0,0,0,3000,330,16055,0,12303 +99568,0,0,-1,-1,-1,0,483,0,8964 +99569,0,0,-1,-1,-1,0,483,0,8941 +99570,0,0,-1,-1,-1,0,483,0,9020 +99571,0,0,-1,-1,-1,0,483,0,8987 +99572,0,0,-1,-1,-1,0,16195,0,12440 +99573,0,2,0,-1,-1,0,18086,0,11803 +99574,0,0,0,45000,-1,0,15591,0,11804 +99575,0,1,0,-1,-1,0,9416,0,13013 +99576,0,0,0,60000,0,0,18400,0,13379 +99577,0,0,-10,60000,-1,0,682,0,1186 +99578,0,0,-1,-1,-1,0,483,0,12830 +99579,0,0,-1,-1,-1,0,483,0,12831 +99580,0,0,-1,-1,-1,0,483,0,12833 +99581,0,0,0,-1,-1,0,16627,0,12647 +99582,0,0,-1,60000,-1,0,16326,0,12455 +99583,0,2,0,-1,-1,0,17483,0,13348 +99584,0,1,0,0,-1,0,9326,0,13349 +99585,0,2,0,-1,-1,0,16898,0,12777 +99586,0,0,0,1500,-1,0,17567,0,12185 +99587,0,1,0,-1,-1,0,15805,0,12188 +99588,0,1,0,-1,-1,0,9139,0,13380 +99589,0,1,0,-1,-1,0,15806,0,12964 +99591,0,1,0,-1,-1,0,21632,0,13383 +99592,0,0,-1,-1,-1,0,483,0,12834 +99593,0,0,-1,-1,-1,0,16073,0,12346 +99594,0,1,0,-1,-1,0,17619,0,13503 +99595,0,0,0,900000,60000,94,17490,0,13353 +99596,0,1,0,-1,-1,0,9332,0,12653 +99597,0,0,-1,-1,-1,0,17432,0,13307 +99598,0,0,-1,-1,-1,0,483,0,13308 +99599,0,0,-1,-1,-1,0,483,0,13310 +99600,0,0,-1,0,120000,4,15822,0,12190 +99601,0,0,-1,0,1000,11,10256,0,12218 +99602,0,1,0,-1,-1,0,9140,0,11858 +99603,0,0,-1,1500,-1,0,15647,0,12565 +99604,0,0,-1,-1,-1,0,15649,0,12566 +99605,0,2,0,-1,-1,0,18082,0,12792 +99606,0,0,-1,60000,-1,0,16323,0,12451 +99607,0,0,-1,0,1000,11,1129,0,13930 +99608,0,0,-1,0,1000,11,1131,0,13933 +99609,0,0,0,600000,0,0,18264,0,13937 +99610,0,1,0,0,0,0,9416,0,13938 +99611,0,0,-1,0,1000,11,15852,0,12217 +99612,0,0,-5,120000,-1,0,17016,0,12815 +99613,0,0,-1,-1,-1,0,483,0,12816 +99614,0,1,0,-1,-1,0,16638,0,12624 +99615,0,0,0,0,-1,0,16613,0,12627 +99616,0,0,0,0,180000,1148,17729,0,13602 +99617,1,1,0,0,0,0,32794,0,13602 +99618,0,0,0,900000,0,0,16470,0,12532 +99619,0,1,0,0,0,0,9346,0,12545 +99620,0,1,0,0,0,0,9408,0,12547 +99621,0,0,-1,0,1000,11,1127,0,13758 +99622,0,1,0,-1,-1,0,7617,0,11861 +99623,0,1,0,0,0,0,14027,0,11862 +99624,0,1,0,-1,-1,0,15464,0,13967 +99625,0,1,0,-1,-1,0,13390,0,13072 +99626,0,1,0,-1,-1,0,17625,0,13505 +99627,0,0,-1,0,3000,79,17624,0,13506 +99628,0,2,0,-1,-1,0,13440,0,12250 +99629,0,0,-1,0,1000,11,1127,0,13759 +99630,0,1,0,0,-1,0,17495,0,13375 +99631,0,1,0,0,-1,0,15807,0,11933 +99632,0,0,0,0,3000,330,16080,0,12330 +99633,0,0,-1,-1,-1,0,483,0,12684 +99634,0,0,-1,-1,-1,0,483,0,8990 +99635,0,1,0,-1,-1,0,15808,0,12953 +99636,0,0,-1,-1,-1,0,483,0,14507 +99637,0,0,-1,-1,-1,0,483,0,14508 +99638,0,1,0,-1,-1,0,15464,0,13211 +99639,0,2,0,-1,-1,0,17407,0,13285 +99640,0,1,0,-1,-1,0,14049,0,13359 +99641,1,1,0,-1,-1,0,7597,0,13359 +99642,0,2,0,-1,-1,0,10370,0,12469 +99643,0,0,-1,-1,-1,0,483,0,12687 +99644,0,0,-1,60000,-1,0,16325,0,12457 +99645,0,0,-1,60000,-1,0,16327,0,12458 +99646,0,0,-1,-1,-1,0,13630,0,11132 +99647,0,1,0,-1,-1,0,9398,0,11784 +99648,0,2,0,-1,-1,0,56,0,12528 +99649,0,1,0,-1,-1,0,14803,0,11806 +99650,1,1,0,-1,-1,0,9333,0,11806 +99651,0,0,-1,0,1000,11,1129,0,13546 +99652,0,2,0,-1,-1,0,17511,0,13035 +99653,0,1,0,-1,-1,0,9396,0,11922 +99654,0,2,0,-1,-1,0,16549,0,12583 +99655,0,0,-1,-1,-1,0,483,0,12817 +99656,0,0,-1,-1,-1,0,483,0,12821 +99657,0,1,0,-1,-1,0,9395,0,12998 +99658,0,0,0,0,3000,330,15779,0,13326 +99659,0,0,0,1500,-1,0,15999,0,12264 +99660,0,0,0,0,3000,330,17454,0,13322 +99661,0,0,0,0,3000,330,17463,0,13332 +99662,0,0,0,-1,3000,330,17481,0,13335 +99663,0,0,-1,0,1000,11,1129,0,4608 +99664,0,0,0,0,3000,330,17459,0,13327 +99665,0,0,0,0,3000,330,17460,0,13329 +99666,0,0,0,0,3000,330,17462,0,13331 +99667,0,0,-1,0,60000,24,12543,0,10562 +99668,0,1,0,0,-1,0,17482,0,13212 +99669,0,0,0,1500,-1,0,16450,0,12529 +99670,0,0,-1,-1,-1,0,483,0,13491 +99671,0,0,-1,60000,-1,0,16322,0,12450 +99672,0,0,-1,0,1000,11,5006,0,12209 +99673,0,0,-1,0,1000,11,5007,0,12210 +99674,0,0,-1,0,1000,11,5007,0,12211 +99675,0,0,-1,0,1000,11,5007,0,12213 +99676,0,1,0,-1,-1,0,13385,0,12939 +99677,0,0,-1,-1,-1,0,483,0,8813 +99678,0,2,0,0,-1,0,18203,0,13183 +99679,0,0,-1,-1,-1,0,483,0,13487 +99680,0,0,0,120000,10000,1141,17330,0,13213 +99681,0,1,0,-1,-1,0,17328,0,13215 +99682,0,0,-1,0,1000,11,1127,0,13754 +99683,0,0,-1,-1,-1,0,483,0,12688 +99684,0,2,0,-1,-1,0,14118,0,12463 +99685,0,0,-1,-1,-1,0,483,0,7975 +99686,0,0,-1,-1,-1,0,483,0,12823 +99687,0,1,0,-1,-1,0,13670,0,11787 +99688,0,0,-1,-1,-1,0,483,0,12689 +99689,0,0,-1,-1,-1,0,483,0,12690 +99690,0,1,0,-1,-1,0,16550,0,12588 +99691,0,0,-1,-1,-1,0,16072,0,12347 +99692,0,1,0,-1,-1,0,18060,0,13711 +99693,0,0,-1,0,1000,11,18230,0,13928 +99694,0,1,0,-1,-1,0,18384,0,11750 +99695,0,2,0,-1,-1,0,17196,0,12969 +99696,0,0,-1,0,1000,11,1127,0,13760 +99697,0,1,0,-1,-1,0,9331,0,13340 +99698,0,0,-1,-1,-1,0,483,0,12240 +99699,0,2,0,-1,-1,0,15662,0,12243 +99700,0,0,-1,0,1000,11,1129,0,13888 +99701,0,0,0,-1,-1,0,17474,0,12891 +99702,0,0,-1,1000,-1,0,16138,0,12404 +99703,0,0,-1,-1,-1,0,483,0,12824 +99704,0,1,0,-1,-1,0,9296,0,12256 +99705,0,1,0,-1,-1,0,9401,0,11310 +99706,0,0,-1,-1,-1,0,483,0,12702 +99707,0,0,-1,-1,-1,0,483,0,8790 +99708,1,1,0,-1,-1,0,18196,0,11927 +99709,0,1,0,-1,-1,0,13665,0,13163 +99710,0,0,-1,0,120000,4,17528,0,13442 +99711,0,0,-1,0,3000,79,11348,0,13445 +99712,0,1,0,-1,-1,0,15806,0,13045 +99713,0,0,0,0,3000,330,17229,0,13086 +99714,0,1,0,-1,-1,0,9408,0,12110 +99715,0,1,0,90000,-1,0,13674,0,7787 +99716,0,0,-1,0,1000,11,1131,0,8952 +99717,0,0,-1,-1,-1,0,12805,0,10688 +99718,0,0,-1,-1,-1,0,16197,0,12443 +99719,0,0,-1,-1,-1,0,483,0,12695 +99720,0,0,-1,-1,-1,0,483,0,12697 +99721,0,0,-1,-1,-1,0,483,0,12703 +99722,0,0,-1,-1,-1,0,483,0,12711 +99723,0,1,0,-1,-1,0,16620,0,12641 +99724,2,1,0,-1,-1,0,14249,0,12641 +99725,0,1,0,-1,-1,0,18198,0,13017 +99726,0,0,-1,-1,-1,0,483,0,8760 +99727,0,1,0,0,0,0,9346,0,12464 +99728,0,0,-1,-1,-1,0,483,0,13940 +99729,0,0,-1,-1,-1,0,483,0,13941 +99730,0,1,0,-1,-1,0,9298,0,13007 +99731,0,1,0,-1,-1,0,14550,0,16139 +99732,0,2,0,-1,-1,0,17506,0,13408 +99733,0,1,0,-1,-1,0,13387,0,12619 +99734,0,0,-1,-1,-1,0,483,0,15762 +99735,0,0,-1,-1,-1,0,483,0,14630 +99736,0,0,-1,-1,-1,0,483,0,5543 +99737,0,0,-1,-1,-1,0,483,0,15763 +99738,0,1,0,-1,-1,0,14054,0,15999 +99739,0,0,-1,-1,-1,0,483,0,15765 +99740,0,1,0,-1,-1,0,18008,0,14107 +99741,0,1,0,-1,-1,0,9417,0,13863 +99742,0,1,0,0,0,0,15465,0,13404 +99743,1,1,0,-1,-1,0,7597,0,13404 +99744,0,1,0,-1,-1,0,7516,0,13405 +99745,0,1,0,-1,-1,0,9325,0,14108 +99746,0,1,0,-1,-1,0,18008,0,14112 +99747,0,0,0,-1,-1,0,18762,0,14547 +99748,0,0,-1,-1,-1,0,15427,0,11663 +99749,0,0,-1,0,0,0,3366,0,11885 +99750,0,1,0,-1,-1,0,13390,0,13049 +99751,0,1,0,-1,-1,0,7597,0,12584 +99752,1,1,0,-1,-1,0,9335,0,12584 +99753,0,0,0,0,3000,330,16059,0,12326 +99754,0,0,-1,60000,-1,0,16329,0,12460 +99755,0,0,-1,1000,-1,0,16622,0,12643 +99756,0,1,0,-1,-1,0,14630,0,16129 +99757,0,1,0,-1,-1,0,14635,0,16130 +99758,0,1,0,-1,-1,0,14628,0,16132 +99763,0,1,0,-1,-1,0,9413,0,14538 +99764,0,0,-1,-1,-1,0,18711,0,14644 +99765,0,0,-1,0,1000,11,5007,0,12212 +99766,0,0,0,0,3000,330,17464,0,13333 +99767,0,0,3,-1,-1,0,19688,0,15914 +99768,0,0,3,-1,-1,0,19689,0,15915 +99769,0,1,0,-1,-1,0,7597,0,14615 +99770,0,1,0,-1,-1,0,15464,0,14616 +99771,0,0,-1,-1,-1,0,18397,0,14338 +99772,0,0,-1,-1,-1,0,483,0,13490 +99773,0,0,-1,-1,-1,0,483,0,13492 +99774,0,0,-1,-1,-1,0,483,0,13493 +99775,0,0,-1,0,0,0,483,0,8769 +99776,0,0,-1,-1,-1,0,483,0,8770 +99777,0,1,0,-1,-1,0,7597,0,13036 +99778,0,1,0,-1,-1,0,9142,0,13039 +99779,0,0,-1,-1,-1,0,483,0,10314 +99780,0,0,0,300000,10000,1141,6251,0,13382 +99781,0,1,0,-1,-1,0,18212,0,13044 +99782,0,1,0,-1,-1,0,7597,0,12783 +99783,0,0,-1,0,1000,11,5007,0,13851 +99784,0,0,-1,-1,-1,0,483,0,11223 +99785,0,1,0,-1,-1,0,18201,0,11629 +99786,0,0,-1,0,60000,24,15235,0,11565 +99787,0,0,-1,0,1000,59,18140,0,13813 +99788,0,1,0,-1,-1,0,14635,0,16133 +99789,0,1,0,-1,-1,0,14550,0,16135 +99790,0,0,3,-1,-1,0,19548,0,15908 +99791,0,0,-1,-1,-1,0,15402,0,11647 +99792,0,1,0,-1,-1,0,13665,0,13056 +99793,1,1,0,-1,-1,0,15465,0,13056 +99794,0,2,0,-1,-1,0,18202,0,13057 +99795,0,1,0,-1,-1,0,9408,0,11928 +99796,0,2,0,-1,-1,0,15602,0,11817 +99797,0,0,-1,-1,-1,0,17432,0,13306 +99798,0,0,0,0,3000,330,18990,0,15290 +99799,0,0,-1,-1,-1,0,19646,0,15869 +99800,0,0,-1,-1,-1,0,19649,0,15870 +99801,0,0,-1,-1,-1,0,19651,0,15871 +99802,0,0,-1,-1,-1,0,20709,0,15872 +99803,0,0,-1,0,0,0,483,0,9076 +99804,0,1,0,-1,-1,0,9325,0,13029 +99805,0,0,-1,-1,-1,0,483,0,13287 +99806,0,1,0,-1,-1,0,7597,0,12774 +99808,0,1,0,-1,-1,0,13665,0,12776 +99809,1,1,0,-1,-1,0,15465,0,12776 +99810,0,0,-1,-1,-1,0,17199,0,12973 +99811,0,2,0,-1,-1,0,14106,0,12974 +99812,0,1,0,-1,-1,0,18015,0,14106 +99813,0,0,-1,-1,-1,0,483,0,13288 +99814,0,0,0,-1,-1,0,17368,0,13289 +99815,0,1,0,-1,-1,0,29626,0,13040 +99816,0,1,0,-1,-1,0,7597,0,13162 +99817,0,1,0,-1,-1,0,14254,0,13169 +99818,0,0,-1,-1,-1,0,483,0,11225 +99819,0,2,0,-1,-1,0,17308,0,13198 +99820,0,1,0,-1,-1,0,13390,0,14622 +99821,1,1,0,-1,-1,0,21362,0,14622 +99822,0,1,0,-1,-1,0,13389,0,14624 +99823,1,1,0,-1,-1,0,21363,0,14624 +99824,0,0,-1,-1,-1,0,483,0,13499 +99825,0,1,0,-1,-1,0,18062,0,13713 +99826,0,1,0,-1,-1,0,18063,0,13714 +99827,0,1,0,-1,-1,0,18064,0,13715 +99828,0,0,-1,-1,-1,0,483,0,14467 +99829,0,0,-1,-1,-1,0,20321,0,16325 +99830,0,0,-3,0,120000,1153,19199,0,15723 +99831,0,0,-1,-1,-1,0,483,0,15724 +99833,0,0,0,-1,-1,0,3366,0,12382 +99834,0,2,0,-1,-1,0,18833,0,14555 +99835,0,1,0,0,-1,0,14710,0,16125 +99836,0,1,0,-1,-1,0,14630,0,16126 +99837,0,1,0,-1,-1,0,14628,0,16127 +99838,0,0,-1,-1,-1,0,483,0,15725 +99839,0,1,0,-1,-1,0,9415,0,12606 +99840,0,1,0,-1,-1,0,18042,0,13346 +99841,0,0,0,0,3000,330,17465,0,13334 +99845,0,1,0,-1,-1,0,14550,0,16136 +99846,0,1,0,-1,-1,0,14548,0,16137 +99847,0,1,0,-1,-1,0,14553,0,16138 +99848,0,1,0,-1,-1,0,14254,0,12965 +99849,0,2,0,-1,-1,0,18211,0,13053 +99850,0,1,0,-1,-1,0,17866,0,14042 +99851,0,1,0,-1,-1,0,13669,0,14611 +99852,0,2,0,-1,-1,0,18656,0,14576 +99853,0,1,0,-1,-1,0,18201,0,11628 +99854,0,0,-1,-1,-1,0,15400,0,11646 +99855,0,1,0,0,-1,0,14548,0,16124 +99856,0,1,0,-1,-1,0,13390,0,15413 +99857,0,0,-1,-1,-1,0,15119,0,11570 +99858,0,0,-1,-1,-1,0,483,0,6047 +99859,0,0,0,900000,30000,1141,18787,0,14554 +99860,0,2,0,0,-1,0,17505,0,13401 +99861,0,0,-1,0,120000,4,17531,0,13444 +99862,0,1,0,-1,-1,0,14049,0,15051 +99863,0,0,-1,0,1000,11,434,0,4541 +99864,0,0,-1,-1,-1,0,483,0,4219 +99865,0,0,3,60000,0,0,126,0,13508 +99866,0,1,0,-1,-1,0,17891,0,13871 +99867,0,0,-1,-1,-1,0,3366,0,13873 +99868,0,2,0,-1,-1,0,18633,0,14531 +99869,0,0,-1,-1,-1,0,483,0,14499 +99870,0,1,0,-1,-1,0,15466,0,13052 +99871,0,0,-1,-1,-1,0,483,0,13494 +99872,0,0,-1,-1,-1,0,483,0,14472 +99873,0,1,0,-1,-1,0,15814,0,14536 +99874,0,2,0,0,-1,0,17315,0,13204 +99875,0,0,-1,0,1000,11,18124,0,13810 +99876,0,1,0,-1,-1,0,21618,0,13386 +99877,0,1,0,-1,-1,0,9408,0,13242 +99878,1,1,0,-1,-1,0,9361,0,13242 +99879,0,1,0,0,0,0,14049,0,13395 +99880,0,2,0,-1,-1,0,18381,0,14145 +99881,0,1,0,-1,-1,0,15696,0,14553 +99882,0,1,0,-1,-1,0,9295,0,14043 +99883,0,1,0,-1,-1,0,17867,0,14045 +99884,0,1,0,-1,-1,0,21626,0,13216 +99885,0,2,0,-1,-1,0,17331,0,13218 +99886,0,2,0,-1,-1,0,16528,0,12582 +99887,0,1,0,-1,-1,0,7598,0,12587 +99888,0,0,-1,0,1000,11,1129,0,13889 +99889,0,1,0,-1,-1,0,9400,0,14044 +99890,0,1,0,0,0,0,20847,0,14557 +99891,0,0,0,-1,-1,0,18153,0,13892 +99892,0,2,0,-1,-1,0,16927,0,12797 +99893,0,2,0,-1,-1,0,14126,0,13054 +99894,0,0,-1,-1,-1,0,483,0,12233 +99895,0,1,0,-1,-1,0,13390,0,14552 +99896,0,1,0,-1,-1,0,9315,0,13206 +99897,0,1,0,-1,-1,0,7681,0,13208 +99898,0,0,0,-1,-1,0,3366,0,11140 +99899,0,0,0,180000,-1,0,17468,0,13342 +99900,0,0,0,180000,-1,0,17469,0,13343 +99901,0,0,-1,-1,-1,0,14125,0,11115 +99902,0,0,0,1500,-1,0,10677,0,8490 +99903,0,1,0,-1,-1,0,18056,0,14152 +99904,1,1,0,-1,-1,0,18384,0,14152 +99905,2,0,0,300000,0,0,18385,0,14152 +99906,0,1,0,-1,-1,0,28264,0,14153 +99907,1,0,0,600000,0,0,18386,0,14153 +99908,0,0,0,600000,60000,94,18307,0,14022 +99909,0,0,0,600000,60000,94,18308,0,14023 +99910,0,2,0,-1,-1,0,19755,0,14024 +99911,0,1,0,0,0,0,9414,0,13396 +99912,0,0,-1,0,1000,11,18231,0,13929 +99913,0,0,-1,-1,-1,0,483,0,13945 +99914,0,1,0,-1,-1,0,9315,0,14548 +99915,0,1,0,-1,-1,0,13670,0,14549 +99916,0,0,0,0,3000,330,17450,0,13317 +99917,0,2,0,-1,-1,0,17500,0,13393 +99918,0,0,-1,0,1000,11,18229,0,13927 +99919,0,0,-1,-1,-1,0,483,0,14635 +99920,0,1,0,-1,-1,0,15810,0,14640 +99921,0,1,0,-1,-1,0,14027,0,14641 +99922,0,0,0,10000,-1,0,16378,0,12472 +99923,0,1,0,-1,-1,0,13384,0,13394 +99924,0,0,-1,-1,-1,0,17432,0,13304 +99925,0,0,-1,-1,-1,0,483,0,14469 +99926,0,0,-1,-1,-1,0,483,0,14470 +99927,0,0,-1,-1,-1,0,483,0,15726 +99928,0,0,-1,-1,-1,0,483,0,15727 +99929,0,1,0,-1,-1,0,21626,0,14621 +99930,1,1,0,-1,-1,0,13390,0,14621 +99931,0,1,0,-1,-1,0,21363,0,14623 +99932,1,1,0,-1,-1,0,14249,0,14623 +99933,0,0,-1,0,1000,11,5007,0,12214 +99934,0,1,0,-1,-1,0,9295,0,12113 +99935,0,1,0,-1,-1,0,15696,0,11932 +99936,0,1,0,-1,-1,0,14799,0,13185 +99938,0,0,0,1800000,0,0,17448,0,13315 +99939,0,1,0,-1,-1,0,29635,0,13146 +99940,0,0,-1,-1,-1,0,483,0,14634 +99941,0,1,0,-1,-1,0,14049,0,14636 +99942,0,0,-1,-1,-1,0,17432,0,13305 +99943,0,0,-1,0,1000,11,18232,0,13932 +99944,0,1,0,-1,-1,0,23930,0,13209 +99945,0,1,0,-1,-1,0,14049,0,13210 +99946,0,0,-1,0,1000,150,18610,0,14530 +99947,0,0,-1,-1,-1,0,483,0,14474 +99948,0,0,-1,-1,-1,0,483,0,14476 +99949,1,1,0,-1,-1,0,13669,0,13966 +99950,0,0,-1,-1,-1,0,483,0,13488 +99951,0,1,0,0,0,0,7597,0,13098 +99952,1,1,0,-1,-1,0,9329,0,13098 +99953,0,0,-1,-1,-1,0,483,0,14491 +99954,0,0,-1,-1,-1,0,483,0,14492 +99955,0,0,-1,-1,-1,0,483,0,14493 +99956,1,1,0,-1,-1,0,13385,0,13955 +99957,0,0,-1,-1,-1,0,483,0,14494 +99958,0,0,-1,-1,-1,0,483,0,14466 +99959,0,0,-1,-1,-1,0,483,0,11150 +99960,0,0,-1,0,120000,4,17534,0,13446 +99961,0,0,-1,0,3000,79,17535,0,13447 +99962,0,1,0,-1,-1,0,17890,0,13869 +99963,0,1,0,-1,-1,0,9308,0,13870 +99964,0,1,0,0,-1,0,13669,0,13177 +99965,0,1,0,0,0,0,21363,0,13178 +99966,1,1,0,-1,-1,0,9316,0,13178 +99967,0,0,-1,0,60000,24,17291,0,13180 +99968,0,0,-1,-1,60000,24,29443,0,13509 +99969,0,0,-1,0,3000,79,17626,0,13510 +99970,0,0,-1,0,3000,79,17627,0,13511 +99971,0,0,0,300000,10000,1141,17668,0,13515 +99972,0,0,-1,-1,-1,0,483,0,14490 +99973,0,0,-1,-1,-1,0,483,0,13311 +99974,0,2,0,-1,-1,0,18289,0,13983 +99975,0,1,0,-1,-1,0,18287,0,13985 +99976,0,1,0,-1,-1,0,18379,0,14143 +99977,0,0,-1,-1,-1,0,483,0,14504 +99978,0,0,-1,-1,-1,0,483,0,12958 +99979,0,0,-1,0,120000,4,2023,0,3827 +99980,0,0,-1,-1,-1,0,483,0,6349 +99981,0,0,0,0,3000,330,17455,0,13323 +99982,0,0,0,0,3000,330,17456,0,13324 +99983,0,1,0,0,0,0,17945,0,13699 +99984,1,1,0,0,0,0,23481,0,13699 +99985,0,2,0,-1,-1,0,16454,0,12531 +99986,0,1,0,-1,-1,0,18382,0,13968 +99987,0,1,0,-1,-1,0,18061,0,13712 +99988,0,1,0,-1,-1,0,9346,0,13168 +99989,0,1,0,-1,-1,0,17350,0,13243 +99990,0,1,0,-1,-1,0,18011,0,14111 +99991,0,0,-1,-1,-1,0,483,0,14468 +99992,0,0,-1,-1,-1,0,483,0,13495 +99993,0,0,-1,-1,-1,0,483,0,13496 +99994,0,0,-1,-1,-1,0,483,0,13497 +99995,0,1,0,-1,-1,0,17890,0,13868 +99996,0,1,0,-1,-1,0,18378,0,14144 +99997,0,0,-1,-1,-1,0,483,0,14495 +99998,0,0,0,0,3000,330,17453,0,13321 +99999,0,0,0,0,3000,330,18363,0,14062 +100000,0,1,0,-1,-1,0,7703,0,14103 +100001,0,0,-1,0,3000,79,17538,0,13452 +100002,0,0,-1,0,3000,79,17537,0,13453 +100003,0,0,-1,-1,-1,0,483,0,14496 +100004,0,0,-1,-1,-1,0,483,0,14497 +100005,0,0,-1,-1,-1,0,483,0,13946 +100006,0,0,-1,0,1000,11,1131,0,13935 +100007,0,2,0,-1,-1,0,18278,0,13953 +100008,0,0,0,1800000,0,0,20587,0,15873 +100009,0,1,0,-1,-1,0,14799,0,16949 +100010,0,0,-1,-1,-1,0,483,0,16052 +100011,0,0,-1,-1,-1,0,483,0,16054 +100012,0,0,-1,-1,-1,0,483,0,15730 +100013,0,0,-1,-1,-1,0,483,0,15732 +100014,0,1,0,-1,-1,0,9342,0,11665 +100015,0,1,0,-1,-1,0,9345,0,16554 +100016,0,1,0,-1,-1,0,7597,0,16513 +100017,0,1,0,3600000,600000,0,7598,0,15056 +100018,1,1,0,-1,-1,0,13669,0,15056 +100019,0,1,0,-1,-1,0,9296,0,15105 +100020,0,1,0,-1,-1,0,9326,0,15106 +100021,0,2,0,-1,-1,0,20586,0,15853 +100022,0,1,0,900000,30000,0,14635,0,16141 +100023,0,0,-1,-1,-1,0,19903,0,16084 +100024,0,0,-1,-1,-1,0,19902,0,16085 +100025,0,0,0,-1,-1,0,20529,0,16645 +100026,0,1,0,0,0,0,9401,0,15107 +100027,1,0,0,1800000,0,0,18957,0,15107 +100028,0,0,-1,-1,-1,0,483,0,15772 +100029,0,1,0,-1,-1,0,14799,0,16808 +100030,0,1,0,-1,-1,0,9328,0,10038 +100031,0,0,-1,-1,-1,0,20431,0,16386 +100032,0,0,-1,-1,-1,0,483,0,17023 +100033,0,0,-1,-1,-1,0,19886,0,16072 +100034,0,0,-1,-1,-1,0,483,0,15728 +100035,0,1,0,-1,-1,0,14127,0,17571 +100036,0,0,-10,15000,-1,0,19512,0,15826 +100037,0,1,0,-1,-1,0,14590,0,16064 +100038,0,1,0,-1,-1,0,15715,0,16536 +100039,1,1,0,-1,-1,0,25975,0,16536 +100040,0,0,-1,-1,-1,0,19887,0,16073 +100041,0,1,0,900000,30000,0,14716,0,16159 +100042,0,1,0,-1,-1,0,14548,0,16142 +100043,0,1,0,-1,-1,0,14673,0,16145 +100044,0,1,0,-1,-1,0,21432,0,15995 +100045,0,0,-1,-1,-1,0,483,0,15768 +100046,0,0,-1,-1,-1,0,483,0,15769 +100047,0,0,-1,0,60000,24,19784,0,16005 +100048,0,0,-1,-1,-1,0,483,0,16049 +100049,0,0,-1,-1,-1,0,483,0,16050 +100050,0,0,-1,-1,-1,0,483,0,16051 +100051,0,1,0,-1,-1,0,9406,0,16811 +100052,0,1,0,-1,-1,0,21626,0,16812 +100053,1,1,0,-1,-1,0,9406,0,16812 +100054,0,1,0,-1,-1,0,7597,0,16567 +100055,0,0,-1,-1,-1,0,20364,0,16333 +100056,0,0,-1,-1,-1,0,20404,0,16376 +100057,0,0,-1,-1,-1,0,20407,0,16379 +100059,1,1,0,-1,-1,0,21429,0,16007 +100060,0,1,0,0,-1,0,42184,0,16009 +100061,0,0,-1,-1,-1,0,20329,0,16331 +100062,0,0,3,-1,-1,0,19674,0,15911 +100063,0,1,0,3600000,600000,0,14056,0,15050 +100064,0,0,-1,-1,-1,0,20312,0,16316 +100065,0,1,0,-1,-1,0,18384,0,16913 +100066,1,1,0,-1,-1,0,14799,0,16913 +100067,0,1,0,-1,-1,0,15464,0,16457 +100068,0,0,-1,-1,-1,0,483,0,15774 +100069,0,0,-1,-1,-1,0,483,0,15776 +100070,0,0,-1,-1,-1,0,483,0,15777 +100071,0,1,0,-1,-1,0,9417,0,16415 +100072,0,1,0,-1,-1,0,7597,0,16417 +100073,0,1,0,-1,-1,0,9141,0,16420 +100074,0,1,0,-1,-1,0,9345,0,16421 +100075,1,1,0,-1,-1,0,7597,0,16421 +100076,0,1,0,-1,-1,0,22778,0,16510 +100077,0,0,0,-1,-1,0,20531,0,16655 +100078,0,0,0,-1,-1,0,20531,0,16656 +100079,0,1,0,-1,-1,0,14590,0,16065 +100080,0,1,0,0,180000,0,14588,0,16067 +100081,0,0,-1,-1,-1,0,20434,0,16389 +100082,0,1,0,-1,-1,0,28539,0,16571 +100083,1,1,0,-1,-1,0,7597,0,16571 +100084,0,1,0,-1,-1,0,22801,0,16573 +100085,1,1,0,-1,-1,0,14799,0,16573 +100086,2,1,0,-1,-1,0,21363,0,16573 +100087,0,1,0,-1,-1,0,7597,0,16574 +100088,0,0,-1,0,1000,59,11009,0,17402 +100089,0,0,-1,0,1000,59,11008,0,17403 +100090,0,0,-1,0,1000,59,431,0,17404 +100091,0,1,0,0,0,0,18030,0,16058 +100092,0,1,0,-1,-1,0,7597,0,13959 +100093,0,0,-1,-1,-1,0,483,0,16044 +100094,0,0,-1,-1,-1,0,483,0,16045 +100095,0,1,0,-1,-1,0,14712,0,16154 +100096,0,1,0,-1,-1,0,14712,0,16163 +100097,0,0,-1,-1,-1,0,20397,0,16321 +100098,0,0,-1,-1,-1,0,20318,0,16322 +100099,0,1,0,-1,-1,0,14590,0,16061 +100100,0,0,-1,0,1000,11,1129,0,16168 +100101,0,0,-1,0,1000,11,435,0,16170 +100102,0,0,-1,-1,-1,0,483,0,17413 +100103,0,1,0,-1,-1,0,7598,0,16821 +100104,0,1,0,-1,-1,0,7597,0,16822 +100105,0,2,0,-1,-1,0,18202,0,13399 +100106,0,0,-1,-1,-1,0,483,0,16046 +100107,0,0,-1,-1,-1,0,483,0,16047 +100108,0,0,-1,-1,-1,0,483,0,16048 +100109,0,1,0,-1,-1,0,14675,0,16161 +100110,0,0,-1,-1,-1,0,483,0,15749 +100111,0,0,-1,-1,-1,0,483,0,15752 +100112,0,0,3,-1,-1,0,19692,0,15916 +100113,0,0,-1,0,120000,1153,19805,0,16023 +100114,0,0,-1,-1,-1,0,20319,0,16323 +100115,0,1,0,-1,-1,0,7598,0,16435 +100116,0,0,-1,-1,-1,0,483,0,16251 +100117,0,0,-1,-1,-1,0,20428,0,16383 +100118,0,0,-1,-1,-1,0,20432,0,16387 +100119,0,1,0,-1,-1,0,13385,0,14525 +100120,0,0,-1,0,1000,150,18608,0,14529 +100121,0,0,-1,0,0,0,22098,0,17891 +100122,0,0,-1,0,0,0,22099,0,17892 +100123,0,1,0,-1,-1,0,15464,0,16848 +100124,0,0,0,0,3000,330,18989,0,15277 +100125,0,0,-1,-1,-1,0,483,0,17051 +100126,0,0,-1,-1,-1,0,483,0,17053 +100127,0,1,0,-1,-1,0,18033,0,16922 +100128,1,1,0,-1,-1,0,21364,0,16922 +100129,0,1,0,-1,-1,0,18037,0,16923 +100130,0,1,0,-1,-1,0,18384,0,16443 +100131,1,1,0,-1,-1,0,18050,0,16443 +100132,0,1,0,-1,-1,0,15715,0,16444 +100133,1,1,0,-1,-1,0,25975,0,16444 +100134,0,1,0,-1,-1,0,23049,0,16446 +100135,0,1,0,-1,-1,0,21618,0,16801 +100136,1,1,0,-1,-1,0,9343,0,16801 +100137,0,0,-1,-1,-1,0,18887,0,15002 +100138,0,1,0,-1,-1,0,7597,0,16851 +100139,0,1,0,-1,-1,0,9315,0,16924 +100140,0,1,0,-1,-1,0,23300,0,16410 +100141,0,0,-1,0,1000,11,1131,0,16171 +100142,0,0,-1,-1,-1,0,483,0,15748 +100143,0,1,0,-1,-1,0,22683,0,15138 +100144,0,1,0,-1,-1,0,14630,0,16117 +100145,0,0,-1,0,0,0,22101,0,17894 +100146,0,1,0,-1,-1,0,9344,0,16934 +100147,0,1,0,-1,-1,0,18384,0,16805 +100148,1,1,0,-1,-1,0,9415,0,16805 +100149,0,0,3,-1,-1,0,19694,0,15917 +100150,0,0,-1,-1,-1,0,20323,0,16327 +100151,0,0,-1,-1,-1,0,483,0,16252 +100152,0,0,-1,0,0,0,22102,0,17895 +100153,0,1,0,-1,-1,0,9396,0,16524 +100154,0,1,0,-1,-1,0,14633,0,16172 +100155,0,0,-1,-1,-1,0,20324,0,16328 +100156,0,0,-1,-1,-1,0,20327,0,16330 +100157,0,1,0,-1,-1,0,14716,0,16165 +100158,0,0,-1,0,1000,11,434,0,16167 +100159,0,1,0,-1,-1,0,7598,0,16515 +100160,0,0,-1,0,0,0,22103,0,17896 +100161,0,0,-1,0,0,0,22104,0,17897 +100162,0,0,-1,0,0,0,22106,0,17899 +100163,0,0,-1,-1,-1,0,20394,0,16364 +100164,0,0,-1,0,1000,59,20875,0,17048 +100165,0,0,-1,-1,-1,0,483,0,15733 +100166,0,0,-1,-1,-1,0,483,0,15734 +100167,0,0,-1,-1,-1,0,483,0,15735 +100168,0,0,-10,-1,-1,0,19250,0,15736 +100169,0,0,-1,-1,-1,0,483,0,15737 +100170,0,1,0,-1,-1,0,14799,0,16954 +100171,1,1,0,-1,-1,0,21362,0,16954 +100172,0,1,0,-1,-1,0,17367,0,16955 +100173,0,1,0,-1,-1,0,7597,0,16465 +100174,0,0,-1,-1,-1,0,20398,0,16368 +100175,0,1,0,-1,-1,0,9417,0,16369 +100176,0,0,-1,-1,-1,0,20399,0,16371 +100177,0,0,-1,0,1000,11,434,0,17406 +100178,0,0,-1,-1,-1,0,483,0,15755 +100179,0,1,0,-1,-1,0,14799,0,16806 +100180,0,1,0,-1,-1,0,9415,0,16807 +100181,0,1,0,-1,-1,0,9346,0,16803 +100182,0,1,0,-1,-1,0,9342,0,16804 +100183,0,0,0,0,3000,330,16081,0,16344 +100184,0,1,0,-1,-1,0,14552,0,16162 +100185,0,1,0,-1,-1,0,15807,0,16526 +100186,0,1,0,-1,-1,0,14712,0,16152 +100187,0,1,0,-1,-1,0,14710,0,16153 +100188,0,1,0,-1,-1,0,14712,0,16155 +100189,0,1,0,-1,-1,0,14712,0,16157 +100190,0,0,-5,-1,-1,0,19690,0,15875 +100191,0,1,0,0,0,0,9336,0,17044 +100192,0,0,-1,-1,-1,0,483,0,16043 +100193,0,1,0,-1,-1,0,14710,0,16158 +100194,0,0,-1,-1,-1,0,483,0,17025 +100195,0,1,0,-1,-1,0,7597,0,16552 +100196,0,0,-1,-1,-1,0,20315,0,16319 +100197,0,0,-1,-1,-1,0,483,0,14627 +100198,0,0,0,1000,-1,0,19935,0,16107 +100199,0,1,0,-1,-1,0,15465,0,16852 +100200,0,1,0,-1,-1,0,21625,0,16855 +100201,1,1,0,-1,-1,0,9408,0,16855 +100202,1,1,0,-1,-1,0,7597,0,15141 +100203,0,0,0,-1,-1,0,20274,0,15042 +100204,0,0,0,0,3000,330,18991,0,15292 +100205,0,0,0,0,3000,330,18992,0,15293 +100206,0,0,0,1000,-1,0,19470,0,15766 +100207,0,0,-1,0,0,0,19932,0,16104 +100208,0,0,-1,-1,-1,0,483,0,15756 +100209,0,1,0,-1,-1,0,14635,0,16140 +100210,0,1,0,-1,-1,0,14550,0,16143 +100211,0,1,0,-1,-1,0,14550,0,16144 +100212,0,2,0,-1,-1,0,18652,0,14541 +100213,0,1,0,-1,-1,0,21626,0,16842 +100214,1,1,0,-1,-1,0,9408,0,16842 +100215,0,1,0,-1,-1,0,7598,0,15057 +100216,1,1,0,-1,-1,0,13669,0,15057 +100217,0,0,-1,1000,-1,0,19057,0,15564 +100218,0,1,0,-1,-1,0,18384,0,16533 +100219,1,1,0,-1,-1,0,18050,0,16533 +100220,0,1,0,-1,-1,0,14798,0,16534 +100221,1,1,0,-1,-1,0,18384,0,16534 +100222,0,1,0,-1,-1,0,18384,0,16535 +100223,1,1,0,-1,-1,0,18050,0,16535 +100224,0,1,0,-1,-1,0,21627,0,16843 +100225,1,1,0,-1,-1,0,9417,0,16843 +100226,0,1,0,-1,-1,0,21618,0,16844 +100227,1,1,0,-1,-1,0,9406,0,16844 +100228,0,1,0,-1,-1,0,7597,0,16845 +100229,0,0,-1,-1,-1,0,483,0,15753 +100230,0,0,-1,-1,-1,0,483,0,15754 +100231,0,1,0,-1,-1,0,21618,0,16836 +100232,1,1,0,-1,-1,0,9406,0,16836 +100233,0,1,0,-1,-1,0,14635,0,16118 +100234,0,1,0,-1,-1,0,14628,0,16119 +100235,0,1,0,-1,-1,0,14630,0,16122 +100236,0,1,0,0,-1,0,14628,0,16123 +100237,0,0,-1,-1,-1,0,483,0,15758 +100238,0,0,-1,-1,-1,0,483,0,15759 +100239,0,0,-1,-1,-1,0,483,0,15760 +100240,0,0,-1,-1,-1,0,483,0,15761 +100241,0,1,0,-1,-1,0,9398,0,16501 +100242,0,1,0,-1,-1,0,13669,0,16502 +100243,1,1,0,-1,-1,0,9330,0,16502 +100244,0,1,0,-1,-1,0,9343,0,16802 +100245,0,1,0,-1,-1,0,14673,0,16148 +100246,0,0,-1,-1,-1,0,18987,0,15209 +100247,0,0,0,1200000,60000,94,19804,0,16022 +100248,0,0,-1,-1,-1,0,483,0,16056 +100249,0,1,0,-1,-1,0,21625,0,16829 +100250,1,1,0,-1,-1,0,9406,0,16829 +100251,0,1,0,-1,-1,0,9406,0,16831 +100252,0,1,0,-1,-1,0,13669,0,16832 +100253,0,1,0,-1,-1,0,21625,0,16833 +100254,1,1,0,-1,-1,0,9408,0,16833 +100255,0,1,0,-1,-1,0,9417,0,16834 +100256,0,0,-1,-1,-1,0,483,0,15745 +100257,0,0,-1,-1,-1,0,483,0,15746 +100258,0,1,0,-1,-1,0,9406,0,16837 +100259,0,1,0,-1,-1,0,18384,0,16839 +100260,1,1,0,-1,-1,0,9415,0,16839 +100261,0,1,0,-1,-1,0,9396,0,16840 +100262,0,1,0,-1,-1,0,18384,0,16841 +100263,1,1,0,-1,-1,0,9408,0,16841 +100264,0,1,0,-1,-1,0,9408,0,16853 +100265,0,2,0,-1,-1,0,16406,0,15814 +100266,0,0,-1,-1,-1,0,483,0,16112 +100267,0,1,0,-1,-1,0,9406,0,16860 +100268,0,0,-1,-1,-1,0,11008,0,3703 +100269,0,0,-1,60000,-1,0,16321,0,12459 +100270,0,0,-1,0,1000,0,19069,0,15688 +100271,0,0,-1,-1,-1,0,19565,0,15842 +100272,0,1,0,-1,-1,0,13669,0,16418 +100273,1,1,0,-1,-1,0,9141,0,16418 +100274,2,1,0,-1,-1,0,15464,0,16418 +100275,0,0,-1,-1,-1,0,20326,0,16329 +100276,0,0,0,5000,-1,0,19938,0,16114 +100277,0,1,0,-1,-1,0,9398,0,14626 +100278,0,0,-1,0,120000,4,7242,0,6048 +100279,0,1,0,-1,-1,0,14565,0,11906 +100280,0,0,-1,0,60000,24,19769,0,15993 +100281,0,0,-1,-1,-1,0,483,0,15744 +100282,0,1,0,-1,-1,0,7597,0,15058 +100283,1,1,0,-1,-1,0,13669,0,15058 +100284,0,1,0,3600000,600000,0,9315,0,15059 +100285,0,1,0,-1,-1,0,9315,0,15060 +100286,0,0,-1,-1,-1,0,19720,0,15883 +100287,0,1,0,-1,-1,0,14628,0,16116 +100288,0,0,-1,-1,-1,0,483,0,12232 +100289,0,1,0,-1,-1,0,14047,0,16950 +100290,0,1,0,-1,-1,0,9397,0,16951 +100291,0,1,0,-1,-1,0,21363,0,16953 +100292,1,1,0,-1,-1,0,9342,0,16953 +100293,0,0,-1,-1,-1,0,483,0,16110 +100294,0,0,-1,-1,-1,0,483,0,16111 +100295,0,1,0,-1,-1,0,14673,0,16149 +100296,0,1,0,-1,-1,0,14712,0,16151 +100297,0,1,0,0,0,0,9335,0,15063 +100298,1,1,0,-1,-1,0,7597,0,15063 +100299,0,0,-1,-1,-1,0,18952,0,16308 +100300,0,1,0,-1,-1,0,14590,0,16063 +100301,1,1,0,-1,-1,0,7597,0,16466 +100302,0,1,0,-1,-1,0,7597,0,16467 +100303,0,1,0,-1,-1,0,7597,0,16846 +100304,0,1,0,-1,-1,0,9406,0,16856 +100305,0,2,0,-1,-1,0,17152,0,647 +100306,0,2,0,-1,-1,0,19874,0,15418 +100307,0,1,0,-1,-1,0,7597,0,15411 +100308,1,1,0,-1,-1,0,9334,0,15411 +100309,0,1,0,-1,-1,0,21618,0,16857 +100310,0,1,0,-1,-1,0,9406,0,16858 +100311,0,1,0,0,0,0,9414,0,15108 +100312,1,0,0,1800000,0,0,18957,0,15108 +100313,0,0,-1,-1,-1,0,19029,0,15454 +100314,0,1,0,-1,-1,0,15811,0,15062 +100315,1,1,0,-1,-1,0,7597,0,15062 +100316,0,0,3,-1,-1,0,19696,0,15919 +100317,0,0,3,-1,-1,0,19697,0,15920 +100318,0,0,3,-1,-1,0,19693,0,15921 +100319,0,0,3,-1,-1,0,19700,0,15923 +100320,0,0,-1,-1,-1,0,483,0,15740 +100321,0,0,-1,-1,-1,0,483,0,15741 +100322,0,0,-1,0,1000,11,1127,0,16169 +100323,0,1,0,-1,-1,0,14635,0,16128 +100324,0,0,0,1800000,0,0,19634,0,15866 +100325,0,0,-1,-1,-1,0,483,0,4204 +100326,0,0,-1,-1,-1,0,483,0,4205 +100327,0,0,-1,-1,-1,0,483,0,15773 +100328,0,0,0,1000,-1,0,19933,0,16105 +100329,0,0,-1,0,0,0,22095,0,17888 +100330,0,0,-1,0,0,0,22097,0,17890 +100331,0,1,0,-1,-1,0,14248,0,16549 +100332,1,1,0,-1,-1,0,7597,0,16549 +100333,0,0,-1,0,1800000,951,21355,0,17324 +100334,0,0,-1,0,1800000,951,21370,0,17325 +100335,0,0,-1,-1,-1,0,483,0,9029 +100336,0,0,-1,0,120000,4,11359,0,9030 +100337,0,0,0,-1,-1,0,21885,0,17696 +100338,0,1,0,-1,-1,0,9345,0,17570 +100339,0,1,0,-1,-1,0,18049,0,17583 +100340,0,1,0,-1,-1,0,18049,0,17586 +100341,0,1,0,-1,-1,0,22588,0,18163 +100342,0,1,0,-1,-1,0,14254,0,16519 +100343,0,0,-1,0,1000,11,1129,0,16766 +100344,0,1,0,-1,-1,0,18384,0,16413 +100345,0,1,0,-1,-1,0,18384,0,18405 +100346,0,1,0,-1,-1,0,13665,0,18406 +100347,1,1,0,-1,-1,0,13387,0,18406 +100348,2,1,0,-1,-1,0,21601,0,18406 +100349,0,1,0,-1,-1,0,18013,0,18407 +100350,0,2,0,0,-1,0,18276,0,14487 +100351,0,0,0,-1,-1,0,21848,0,17712 +100352,0,1,0,0,0,0,9331,0,17713 +100353,1,1,0,-1,-1,0,15464,0,17713 +100354,0,1,0,-1,-1,0,23037,0,16487 +100355,1,1,0,-1,-1,0,14248,0,16487 +100356,0,0,-1,-1,-1,0,483,0,17022 +100357,0,1,0,-1,-1,0,9417,0,16485 +100358,0,2,0,-1,-1,0,16928,0,12798 +100359,0,1,0,-1,-1,0,13670,0,18370 +100360,0,1,0,-1,-1,0,21366,0,18371 +100361,0,1,0,-1,-1,0,9326,0,18372 +100362,0,1,0,-1,-1,0,14047,0,18373 +100363,0,1,0,-1,-1,0,14254,0,16414 +100364,0,1,0,-1,-1,0,23049,0,16558 +100365,0,0,0,30000,-1,0,21332,0,17310 +100366,0,1,0,-1,-1,0,9345,0,16580 +100367,0,1,0,-1,-1,0,9345,0,13344 +100368,0,0,-1,0,3000,79,17628,0,13512 +100369,0,0,-1,-1,-1,0,483,0,18514 +100370,0,0,-1,-1,-1,0,483,0,18515 +100371,0,1,0,-1,-1,0,21619,0,18483 +100372,0,1,0,-1,-1,0,23300,0,16471 +100373,1,1,0,-1,-1,0,7597,0,16471 +100374,0,1,0,-1,-1,0,7597,0,16504 +100375,1,1,0,-1,-1,0,9345,0,16504 +100376,0,1,0,-1,-1,0,9141,0,16507 +100377,0,1,0,-1,-1,0,7598,0,16508 +100378,0,1,0,-1,-1,0,17367,0,17578 +100379,0,0,-1,-1,-1,0,483,0,18416 +100380,0,0,-1,-1,-1,0,20388,0,16358 +100381,0,0,-1,-1,-1,0,20389,0,16359 +100382,0,2,0,-1,-1,0,16407,0,17704 +100383,0,1,0,0,0,0,13669,0,16983 +100384,0,0,3,-1,-1,0,19687,0,15913 +100385,0,1,0,-1,-1,0,7597,0,16578 +100386,1,1,0,-1,-1,0,18384,0,16578 +100387,2,1,0,-1,-1,0,9415,0,16578 +100388,0,1,0,-1,-1,0,15464,0,16483 +100389,0,1,0,0,0,0,9346,0,13001 +100390,0,1,0,-1,-1,0,15464,0,12936 +100391,1,1,0,-1,-1,0,7597,0,12936 +100392,0,1,0,-1,-1,0,21618,0,16797 +100393,1,1,0,-1,-1,0,9343,0,16797 +100394,0,0,-1,0,1800000,831,20763,0,16893 +100395,0,0,-1,0,1000,11,5004,0,17199 +100396,0,0,-1,-1,-1,0,20390,0,16360 +100397,0,2,0,-1,-1,0,21919,0,17705 +100398,0,0,-1,-1,-1,0,20380,0,16350 +100399,0,0,-1,-1,-1,0,20381,0,16351 +100400,0,0,0,0,3000,330,22719,0,18243 +100401,0,0,-1,-1,-1,0,483,0,12700 +100402,0,1,0,-1,-1,0,18032,0,18510 +100403,0,1,0,-1,-1,0,13669,0,18511 +100404,0,1,0,-1,-1,0,18384,0,17070 +100405,1,1,0,-1,-1,0,21362,0,17070 +100406,2,1,0,-1,-1,0,18056,0,17070 +100407,0,0,-1,0,0,0,22092,0,17885 +100408,0,1,0,-1,-1,0,22093,0,17886 +100409,0,1,0,-1,-1,0,7597,0,16345 +100410,1,1,0,-1,-1,0,9335,0,16345 +100411,0,1,0,-1,-1,0,15464,0,16863 +100412,1,1,0,-1,-1,0,13383,0,16863 +100413,0,1,0,-1,-1,0,13669,0,16864 +100414,1,1,0,-1,-1,0,13383,0,16864 +100415,0,1,0,-1,-1,0,13676,0,16865 +100416,1,1,0,-1,-1,0,13385,0,16865 +100417,0,1,0,-1,-1,0,13669,0,16866 +100418,1,1,0,-1,-1,0,13385,0,16866 +100419,0,0,-1,1000,1000,1197,21343,0,17202 +100420,0,0,-1,-1,-1,0,483,0,16217 +100421,0,0,-1,-1,-1,0,483,0,16249 +100422,0,1,0,-1,-1,0,15715,0,16523 +100423,0,1,0,-1,-1,0,22590,0,18165 +100424,0,1,0,-1,-1,0,9343,0,18528 +100425,0,1,0,-1,-1,0,9345,0,17567 +100426,0,0,-1,-1,-1,0,483,0,17725 +100427,0,1,0,-1,-1,0,18030,0,18309 +100428,0,1,0,-1,-1,0,9345,0,18546 +100429,0,1,0,-1,-1,0,17816,0,10036 +100430,0,0,-1,0,1800000,951,21371,0,17323 +100431,0,1,0,-1,-1,0,13665,0,16867 +100432,1,1,0,-1,-1,0,13385,0,16867 +100433,0,1,0,-1,-1,0,9329,0,16503 +100434,1,1,0,-1,-1,0,9342,0,16503 +100435,0,1,0,-1,-1,0,15813,0,15052 +100436,0,0,-1,0,1000,11,1127,0,13755 +100437,0,0,-1,-1,-1,0,22736,0,18258 +100438,0,1,0,-1,-1,0,7681,0,18395 +100439,0,1,0,-1,-1,0,14630,0,16131 +100440,0,0,0,-1,-1,0,11438,0,9253 +100441,0,1,0,-1,-1,0,13387,0,18547 +100442,0,0,-1,-1,-1,0,20379,0,16349 +100443,0,2,0,-1,-1,0,21153,0,17076 +100444,1,1,0,-1,-1,0,7597,0,17076 +100445,0,1,0,-1,-1,0,9343,0,17078 +100446,0,1,0,-1,-1,0,18384,0,18403 +100447,0,0,-1,-1,-1,0,483,0,18290 +100448,0,0,-1,-1,-1,0,483,0,18291 +100449,0,0,-1,-1,-1,0,483,0,18292 +100450,0,0,-1,-1,-1,0,483,0,15729 +100451,0,0,-1,-1,-1,0,483,0,15747 +100452,0,0,0,-1,-1,0,20530,0,16650 +100453,0,1,0,-1,-1,0,13669,0,16506 +100454,1,1,0,-1,-1,0,15464,0,16506 +100455,2,1,0,-1,-1,0,9141,0,16506 +100456,0,0,-1,0,120000,1153,18832,0,14894 +100457,0,1,0,3600000,600000,0,18041,0,15047 +100458,0,0,-3,0,60000,24,17639,0,13514 +100459,0,0,0,0,3000,330,22722,0,18248 +100460,0,0,-1,0,3000,79,21920,0,17708 +100461,0,1,0,-1,-1,0,21623,0,17710 +100462,0,1,0,-1,-1,0,9343,0,16518 +100463,1,1,0,-1,-1,0,22801,0,16518 +100464,0,0,-1,-1,-1,0,483,0,18415 +100465,0,0,-1,0,1800000,831,20762,0,16892 +100466,0,1,0,-1,-1,0,15464,0,16468 +100467,0,1,0,-1,-1,0,9346,0,16472 +100468,1,1,0,-1,-1,0,18379,0,16472 +100469,0,0,-1,0,1000,59,11007,0,17196 +100470,0,0,-1,0,1000,11,5004,0,17197 +100471,1,0,-1,0,120000,1153,23471,0,19007 +100472,0,1,0,-1,-1,0,18384,0,18368 +100473,0,1,0,-1,-1,0,18384,0,18369 +100474,0,0,0,300000,0,0,21954,0,17744 +100475,0,1,0,0,0,0,21991,0,17782 +100476,0,1,0,-1,-1,0,17367,0,17592 +100477,0,0,-1,0,120000,1153,21955,0,17747 +100478,0,0,-1,-1,-1,0,22846,0,18331 +100479,0,1,0,-1,-1,0,18384,0,18509 +100480,0,1,0,-1,-1,0,7597,0,16477 +100481,0,1,0,-1,-1,0,7597,0,16478 +100482,0,1,0,-1,-1,0,7598,0,16479 +100483,1,1,0,-1,-1,0,15464,0,16479 +100484,0,0,-1,-1,-1,0,483,0,14473 +100485,0,1,0,-1,-1,0,9417,0,17569 +100486,0,1,0,-1,-1,0,18054,0,17579 +100487,0,1,0,-1,-1,0,13383,0,16862 +100488,0,0,-1,0,0,0,22090,0,17883 +100489,0,0,-1,-1,-1,0,483,0,17060 +100490,0,1,0,-1,-1,0,18384,0,16898 +100491,1,1,0,-1,-1,0,9315,0,16898 +100492,0,1,0,-1,-1,0,18032,0,16899 +100493,0,1,0,-1,-1,0,21626,0,16900 +100494,1,1,0,-1,-1,0,9316,0,16900 +100495,0,0,-1,-1,-1,0,20377,0,16347 +100496,0,1,0,-1,-1,0,7597,0,15860 +100497,0,0,0,1000,-1,0,19931,0,16103 +100498,0,0,-1,-1,-1,0,20429,0,16384 +100499,0,1,0,-1,-1,0,13669,0,16401 +100500,0,1,0,0,0,0,21969,0,17774 +100501,0,0,-1,-1,-1,0,483,0,18259 +100502,0,0,-1,-1,-1,0,21866,0,17689 +100503,1,0,-1,0,120000,1153,23468,0,19004 +100504,0,0,-1,-1,-1,0,483,0,12682 +100505,0,0,-1,-1,-1,0,483,0,12699 +100506,0,1,0,-1,-1,0,9345,0,17600 +100507,0,1,0,-1,-1,0,9417,0,17601 +100508,0,0,-1,-1,-1,0,483,0,14500 +100509,0,0,-1,-1,-1,0,20378,0,16348 +100510,0,0,-1,-1,-1,0,483,0,15739 +100511,0,1,0,-1,-1,0,9331,0,17777 +100512,0,1,0,30000,-1,0,21978,0,17780 +100513,0,1,0,-1,-1,0,18384,0,16796 +100514,1,1,0,-1,-1,0,14799,0,16796 +100515,1,0,-1,0,120000,1153,23469,0,19005 +100516,1,0,-1,0,120000,1153,23470,0,19006 +100518,0,1,0,-1,-1,0,9316,0,16902 +100519,1,1,0,-1,-1,0,21618,0,16902 +100520,0,1,0,-1,-1,0,9315,0,16903 +100521,1,1,0,-1,-1,0,21618,0,16903 +100522,0,0,-1,0,1000,59,22789,0,18269 +100523,0,0,0,-1,-1,0,11434,0,9239 +100524,0,0,-1,0,120000,4,17548,0,13459 +100525,0,1,0,-1,-1,0,9417,0,17613 +100526,0,1,0,-1,-1,0,7597,0,16577 +100527,1,1,0,-1,-1,0,18384,0,16577 +100528,2,1,0,-1,-1,0,9415,0,16577 +100529,0,0,-1,-1,-1,0,21947,0,17729 +100530,0,0,0,0,-1,0,21950,0,17731 +100531,0,1,0,-1,-1,0,15464,0,18323 +100532,0,1,0,-1,-1,0,7597,0,16433 +100533,0,0,-1,-1,-1,0,17045,0,12368 +100534,0,0,-1,-1,-1,0,16781,0,12722 +100535,0,1,0,-1,-1,0,18384,0,16416 +100536,0,0,-1,-1,-1,0,483,0,12819 +100537,0,0,0,1500,-1,0,22567,0,18157 +100538,0,0,0,1500,-1,0,22567,0,18158 +100539,0,0,0,-1,-1,0,21050,0,17117 +100540,0,0,-1,-1,-1,0,483,0,18414 +100541,0,1,0,-1,-1,0,22586,0,18161 +100542,0,1,0,-1,-1,0,22587,0,18162 +100543,0,0,-1,-1,-1,0,15439,0,11666 +100544,0,1,0,-1,-1,0,14054,0,16579 +100545,1,1,0,-1,-1,0,18384,0,16579 +100546,2,1,0,-1,-1,0,7597,0,16579 +100547,0,0,0,-1,-1,0,19937,0,16787 +100548,0,1,0,-1,-1,0,9346,0,16550 +100549,1,1,0,-1,-1,0,7597,0,16550 +100550,0,1,0,-1,-1,0,9141,0,16987 +100551,0,0,-1,-1,-1,0,483,0,13480 +100552,0,0,-1,-1,-1,0,483,0,13519 +100553,0,1,0,-1,-1,0,21596,0,17902 +100554,1,1,0,-1,-1,0,13669,0,17902 +100555,2,0,0,120000,120000,1091,22564,0,17902 +100556,0,0,-1,-1,-1,0,22599,0,18182 +100557,0,1,0,-1,-1,0,17830,0,18545 +100558,0,1,0,-1,-1,0,23516,0,16961 +100559,1,1,0,-1,-1,0,13385,0,16961 +100560,0,0,-1,0,1000,11,434,0,17119 +100561,0,1,0,-1,-1,0,14673,0,16150 +100562,0,0,-1,0,1000,11,433,0,16166 +100563,0,1,0,-1,-1,0,14712,0,16164 +100564,0,0,-1,-1,-1,0,20317,0,16346 +100565,0,0,0,-1,-1,0,20529,0,16646 +100566,0,0,0,1500,-1,0,22567,0,18156 +100567,0,0,-1,-1,-1,0,483,0,17062 +100568,0,1,0,-1,-1,0,9332,0,17069 +100569,1,1,0,-1,-1,0,15464,0,17069 +100570,0,0,-1,-1,-1,0,483,0,7290 +100571,0,0,0,-1,-1,0,21957,0,17764 +100572,0,2,0,-1,-1,0,21961,0,17766 +100573,0,1,0,-1,-1,0,14089,0,17767 +100574,0,1,0,-1,-1,0,18384,0,16489 +100575,0,0,-1,-1,-1,0,483,0,16665 +100576,0,1,0,-1,-1,0,14254,0,16490 +100577,0,1,0,-1,-1,0,18384,0,16945 +100578,0,1,0,-1,-1,0,18384,0,16946 +100579,1,1,0,-1,-1,0,13881,0,16946 +100580,0,1,0,-1,-1,0,18384,0,16947 +100581,1,1,0,-1,-1,0,9415,0,16947 +100582,2,1,0,-1,-1,0,9406,0,16947 +100583,0,1,0,-1,-1,0,14054,0,16440 +100584,1,1,0,-1,-1,0,23037,0,16440 +100585,0,1,0,-1,-1,0,17367,0,17591 +100586,0,1,0,-1,-1,0,9141,0,15469 +100587,0,1,0,-1,-1,0,21618,0,16838 +100588,1,1,0,-1,-1,0,9406,0,16838 +100589,0,1,0,-1,-1,0,21346,0,17770 +100590,0,2,0,-1,-1,0,16908,0,12781 +100591,0,0,-1,-1,-1,0,483,0,14471 +100592,0,0,-1,-1,-1,0,483,0,14486 +100593,0,1,0,-1,-1,0,7597,0,16521 +100594,0,0,-1,0,0,0,22091,0,17884 +100595,0,1,0,-1,-1,0,9343,0,16494 +100596,0,1,0,-1,-1,0,18034,0,16901 +100597,1,1,0,-1,-1,0,18379,0,16901 +100598,0,1,0,-1,-1,0,7597,0,18324 +100599,0,0,-1,-1,-1,0,483,0,15775 +100600,0,0,-1,0,600000,1193,22700,0,18232 +100601,0,0,-1,-1,-1,0,483,0,15738 +100602,0,1,0,-1,-1,0,15464,0,18404 +100603,1,1,0,-1,-1,0,7597,0,18404 +100604,0,0,-1,-1,-1,0,16989,0,12807 +100605,0,0,-1,-1,-1,0,483,0,12818 +100606,0,1,0,-1,-1,0,23046,0,17584 +100607,1,1,0,-1,-1,0,14798,0,17584 +100608,0,0,-1,-1,-1,0,483,0,8936 +100609,0,0,-1,-1,-1,0,483,0,8937 +100610,0,1,0,-1,-1,0,21518,0,17741 +100611,1,1,0,-1,-1,0,18378,0,17741 +100612,0,1,0,-1,-1,0,9417,0,18396 +100613,0,1,0,-1,-1,0,7710,0,15109 +100614,1,1,0,-1,-1,0,7688,0,15109 +100615,0,0,-1,-1,-1,0,483,0,15771 +100616,0,0,-1,-1,-1,0,483,0,18235 +100617,0,1,0,-1,-1,0,18384,0,18367 +100618,0,0,-1,0,3000,79,17629,0,13513 +100619,0,0,-1,0,120000,4,2023,0,17350 +100620,0,0,-1,0,120000,4,21396,0,17352 +100621,0,0,-1,0,0,0,22094,0,17887 +100622,0,2,0,-1,-1,0,22863,0,18410 +100623,0,1,0,-1,-1,0,13669,0,18411 +100624,0,0,-1,-1,-1,0,483,0,16242 +100625,0,0,-1,-1,-1,0,483,0,16244 +100626,0,0,-1,-1,-1,0,20408,0,16380 +100627,0,1,0,-1,-1,0,9417,0,16813 +100628,0,1,0,-1,-1,0,21626,0,16814 +100629,1,1,0,-1,-1,0,9408,0,16814 +100630,0,1,0,-1,-1,0,9408,0,16815 +100631,0,1,0,-1,-1,0,14054,0,16912 +100632,0,0,-1,-1,-1,0,20393,0,16363 +100633,0,0,0,-1,-1,0,20529,0,16648 +100634,0,0,0,-1,-1,0,20530,0,16649 +100635,0,0,0,-1,-1,0,20530,0,16651 +100636,0,1,0,-1,-1,0,13670,0,16962 +100637,1,1,0,-1,-1,0,18185,0,16962 +100638,0,0,0,0,3000,330,16082,0,16339 +100639,0,1,0,-1,-1,0,18185,0,16963 +100640,0,1,0,-1,-1,0,13665,0,16964 +100641,1,1,0,-1,-1,0,13385,0,16964 +100642,0,1,0,-1,-1,0,23515,0,16965 +100643,1,1,0,-1,-1,0,13385,0,16965 +100644,0,0,-1,-1,-1,0,20270,0,16302 +100645,0,0,-1,-1,-1,0,19890,0,16082 +100646,0,1,0,-1,-1,0,7597,0,16910 +100647,0,1,0,-1,-1,0,15464,0,16911 +100648,0,0,-1,0,1000,59,1133,0,17405 +100649,0,1,0,0,-1,0,21361,0,17110 +100650,0,0,-1,60000,60000,0,17038,0,12820 +100651,0,1,0,-1,-1,0,18384,0,16835 +100652,1,1,0,-1,-1,0,21362,0,16835 +100653,2,1,0,-1,-1,0,9408,0,16835 +100654,0,0,-1,-1,-1,0,483,0,16055 +100655,0,0,0,-1,-1,0,20530,0,16652 +100656,0,1,0,-1,-1,0,18384,0,16931 +100657,1,1,0,-1,-1,0,17367,0,16931 +100658,0,1,0,-1,-1,0,18384,0,16933 +100659,1,1,0,-1,-1,0,15715,0,16933 +100660,0,1,0,-1,-1,0,18185,0,16966 +100661,0,0,-1,-1,-1,0,483,0,15757 +100662,0,0,-1,-1,-1,0,483,0,15770 +100663,0,1,0,-1,-1,0,22778,0,16406 +100664,0,1,0,-1,-1,0,9318,0,16926 +100665,0,1,0,-1,-1,0,14047,0,16927 +100666,0,0,-1,0,1000,11,10256,0,16971 +100667,0,0,0,120000,-1,0,20737,0,16972 +100668,0,1,0,-1,-1,0,14590,0,16066 +100669,0,0,-1,-1,-1,0,19889,0,16083 +100670,0,0,0,1000,-1,0,19934,0,16106 +100671,0,1,0,-1,-1,0,7597,0,16473 +100672,1,1,0,-1,-1,0,15715,0,16473 +100673,2,1,0,-1,-1,0,21363,0,16473 +100674,0,1,0,-1,-1,0,7597,0,16474 +100675,1,1,0,-1,-1,0,15715,0,16474 +100676,2,1,0,-1,-1,0,21363,0,16474 +100677,0,1,0,-1,-1,0,15464,0,16568 +100678,0,1,0,-1,-1,0,21363,0,16958 +100679,1,1,0,-1,-1,0,15715,0,16958 +100680,0,0,-1,-1,-1,0,20382,0,16352 +100681,0,0,-1,-1,-1,0,20385,0,16355 +100682,0,1,0,-1,-1,0,23037,0,16391 +100683,1,1,0,-1,-1,0,14248,0,16391 +100684,0,1,0,-1,-1,0,23049,0,16392 +100685,0,0,-1,-1,-1,0,20383,0,16353 +100686,0,0,-1,-1,-1,0,483,0,16255 +100687,0,1,0,-1,-1,0,21626,0,16956 +100688,1,1,0,-1,-1,0,9344,0,16956 +100689,0,0,-1,0,3600000,103,10667,0,8410 +100690,0,1,0,-1,-1,0,9335,0,16984 +100691,0,1,0,-1,-1,0,23217,0,16448 +100692,1,1,0,-1,-1,0,9417,0,16448 +100693,0,1,0,-1,-1,0,9346,0,16449 +100694,0,1,0,-1,-1,0,7597,0,16450 +100695,0,1,0,-1,-1,0,9343,0,16393 +100696,0,0,-1,-1,-1,0,20430,0,16385 +100697,0,2,0,-1,-1,0,21151,0,17071 +100698,0,0,-1,-1,-1,0,17161,0,12922 +100700,0,1,0,0,-1,0,13881,0,12930 +100701,0,2,0,0,-1,0,21951,0,17733 +100702,0,1,0,-1,-1,0,13385,0,17734 +100703,0,1,0,-1,-1,0,9318,0,16904 +100704,0,1,0,-1,-1,0,7597,0,16905 +100705,1,1,0,-1,-1,0,15465,0,16905 +100706,0,0,-1,-1,-1,0,20386,0,16356 +100707,0,1,0,-1,-1,0,23217,0,16496 +100708,0,1,0,-1,-1,0,23049,0,16498 +100709,0,1,0,-1,-1,0,15807,0,16499 +100710,0,0,-1,-1,-1,0,483,0,16041 +100711,0,0,-1,-1,-1,0,483,0,16042 +100712,0,1,0,-1,-1,0,9345,0,16459 +100713,0,1,0,-1,-1,0,15464,0,16462 +100714,0,1,0,-1,-1,0,15464,0,16823 +100715,0,0,-1,-1,-1,0,483,0,16214 +100716,0,1,0,-1,-1,0,21347,0,16928 +100717,1,1,0,-1,-1,0,9344,0,16928 +100718,2,1,0,-1,-1,0,18384,0,16928 +100719,0,1,0,-1,-1,0,21347,0,16929 +100720,1,1,0,-1,-1,0,17367,0,16929 +100721,0,1,0,-1,-1,0,18055,0,16930 +100722,0,1,0,-1,-1,0,7597,0,16566 +100723,0,1,0,-1,-1,0,9417,0,17576 +100724,0,1,0,-1,-1,0,23046,0,17577 +100725,1,1,0,-1,-1,0,14248,0,17577 +100726,0,0,-1,-1,-1,0,483,0,17200 +100727,0,0,-1,-1,-1,0,483,0,17201 +100728,0,1,0,-1,-1,0,21346,0,17900 +100729,1,0,0,120000,120000,1091,22564,0,17900 +100730,0,1,0,-1,-1,0,43588,0,16907 +100731,0,1,0,-1,-1,0,7597,0,16908 +100732,0,1,0,-1,-1,0,23043,0,17596 +100733,1,1,0,-1,-1,0,14248,0,17596 +100734,0,1,0,-1,-1,0,17367,0,17603 +100735,1,1,0,-1,-1,0,21362,0,17603 +100736,0,1,0,-1,-1,0,15715,0,17604 +100737,0,0,-1,-1,-1,0,20401,0,16373 +100738,0,0,-1,-1,-1,0,20403,0,16375 +100739,0,1,0,-1,-1,0,9398,0,16423 +100740,0,1,0,-1,-1,0,9329,0,16424 +100741,1,1,0,-1,-1,0,9342,0,16424 +100742,0,0,-1,-1,-1,0,483,0,17017 +100743,0,0,-1,-1,-1,0,483,0,17018 +100744,0,0,-1,-1,-1,0,483,0,16253 +100745,0,0,-1,-1,-1,0,483,0,16254 +100746,0,0,-1,-1,-1,0,20433,0,16388 +100747,0,0,-1,-1,-1,0,20405,0,16377 +100748,0,0,-1,-1,-1,0,20814,0,16974 +100749,0,1,0,-1,-1,0,23212,0,17064 +100750,0,1,0,-1,-1,0,15438,0,17066 +100751,1,1,0,-1,-1,0,13675,0,17066 +100752,2,1,0,-1,-1,0,22852,0,17066 +100753,0,0,-1,-1,-1,0,483,0,17052 +100754,0,1,0,-1,-1,0,15811,0,16425 +100755,1,1,0,-1,-1,0,7597,0,16425 +100756,0,1,0,-1,-1,0,14798,0,16442 +100757,1,1,0,-1,-1,0,18384,0,16442 +100758,0,1,0,-1,-1,0,14677,0,16146 +100759,0,1,0,-1,-1,0,14673,0,16147 +100760,0,0,0,1000,-1,0,19930,0,16102 +100761,0,0,-1,-1,-1,0,483,0,16053 +100762,0,1,0,-1,-1,0,7598,0,16419 +100763,0,1,0,-1,-1,0,18034,0,16921 +100764,0,0,-1,-1,-1,0,20427,0,16382 +100765,0,0,0,0,2700000,951,21544,0,17384 +100766,0,0,-1,-1,-1,0,20040,0,16203 +100767,0,1,0,-1,-1,0,14254,0,16918 +100768,1,1,0,-1,-1,0,21362,0,16918 +100769,0,1,0,-1,-1,0,18029,0,16919 +100770,0,1,0,-1,-1,0,18384,0,16920 +100771,1,1,0,-1,-1,0,9316,0,16920 +100772,0,2,0,-1,-1,0,17511,0,17002 +100773,0,1,0,-1,-1,0,7597,0,16820 +100774,0,1,0,-1,-1,0,15464,0,16563 +100775,1,1,0,-1,-1,0,7597,0,16563 +100776,0,1,0,-1,-1,0,15465,0,16564 +100777,1,1,0,-1,-1,0,7597,0,16564 +100778,0,2,0,-1,-1,0,18205,0,17752 +100779,0,1,0,-1,-1,0,7597,0,16522 +100780,0,0,-1,-1,-1,0,483,0,16223 +100781,0,0,-1,-1,-1,0,483,0,16224 +100782,0,0,-1,-1,-1,0,483,0,16243 +100783,0,1,0,-1,-1,0,7597,0,16455 +100784,1,1,0,-1,-1,0,15464,0,16455 +100785,0,1,0,-1,-1,0,15465,0,16456 +100786,1,1,0,-1,-1,0,7597,0,16456 +100787,0,1,0,-1,-1,0,7597,0,16909 +100788,0,0,0,1800000,0,0,21956,0,17759 +100789,1,1,0,-1,-1,0,21958,0,17759 +100790,0,0,-1,-1,-1,0,483,0,16767 +100791,0,0,0,1200000,0,0,20631,0,16768 +100792,0,0,0,1000,-1,0,19936,0,16108 +100793,0,0,-1,-1,-1,0,20400,0,16372 +100794,0,2,0,-1,-1,0,21152,0,17073 +100795,1,1,0,-1,-1,0,9332,0,17073 +100796,0,1,0,0,0,0,9346,0,17109 +100797,0,2,0,-1,-1,0,21170,0,17074 +100798,1,0,0,-1,60000,1150,21180,0,17074 +100799,0,1,0,-1,-1,0,9358,0,18289 +100800,0,0,0,0,3000,330,458,0,16338 +100801,0,1,0,-1,-1,0,21619,0,16914 +100802,1,1,0,-1,-1,0,17367,0,16914 +100803,0,0,-1,-1,-1,0,483,0,17049 +100804,0,0,-1,-1,-1,0,483,0,17059 +100805,0,1,0,-1,-1,0,14635,0,16121 +100806,0,0,-1,0,60000,24,19821,0,16040 +100807,0,1,0,0,0,0,21991,0,17783 +100808,0,0,-1,-1,-1,0,483,0,12718 +100809,0,0,-1,-1,-1,0,483,0,12839 +100810,0,0,-1,-1,-1,0,483,0,13309 +100811,0,0,-1,-1,-1,0,20320,0,16324 +100812,0,0,0,900000,60000,94,17490,0,17067 +100813,0,0,-1,-1,-1,0,483,0,15731 +100814,0,0,-1,-1,-1,0,20313,0,16317 +100815,0,0,-1,-1,-1,0,20316,0,16320 +100816,0,0,-20,-1,-1,0,20804,0,16991 +100817,0,1,0,-1,-1,0,18384,0,16916 +100818,1,1,0,-1,-1,0,17367,0,16916 +100819,0,1,0,-1,-1,0,21619,0,16917 +100820,1,1,0,-1,-1,0,14248,0,16917 +100821,0,1,0,-1,-1,0,14027,0,16528 +100822,0,1,0,-1,-1,0,23157,0,16530 +100823,0,1,0,-1,-1,0,13669,0,16531 +100824,1,1,0,-1,-1,0,13665,0,17108 +100825,0,2,0,-1,-1,0,21165,0,17112 +100826,0,0,0,1000,-1,0,19929,0,16086 +100827,0,1,0,-1,-1,0,21346,0,17901 +100828,1,1,0,-1,-1,0,13669,0,17901 +100829,2,0,0,120000,120000,1091,22564,0,17901 +100830,0,1,0,-1,-1,0,15464,0,16826 +100831,0,1,0,-1,-1,0,7597,0,16827 +100832,0,1,0,-1,-1,0,21618,0,16828 +100833,1,1,0,-1,-1,0,9415,0,16828 +100834,0,1,0,-1,-1,0,14047,0,16798 +100835,0,1,0,-1,-1,0,9417,0,16799 +100836,1,1,0,-1,-1,0,21625,0,16799 +100837,0,1,0,-1,-1,0,18384,0,16800 +100838,1,1,0,-1,-1,0,9416,0,16800 +100839,0,0,-1,0,1800000,951,21537,0,17362 +100840,0,0,-1,-1,-1,0,483,0,15781 +100841,0,1,0,-1,-1,0,9346,0,16551 +100842,0,1,0,-1,-1,0,21618,0,16817 +100843,1,1,0,-1,-1,0,9415,0,16817 +100844,0,1,0,-1,-1,0,14047,0,16818 +100845,0,1,0,-1,-1,0,21624,0,16819 +100846,1,1,0,-1,-1,0,9314,0,16819 +100847,0,1,0,-1,-1,0,20732,0,16886 +100848,0,1,0,-1,-1,0,14248,0,16539 +100849,1,1,0,-1,-1,0,23727,0,16539 +100850,0,1,0,-1,-1,0,23037,0,16540 +100851,1,1,0,-1,-1,0,14054,0,16540 +100852,0,1,0,-1,-1,0,7597,0,16541 +100853,0,1,0,-1,-1,0,15464,0,16544 +100854,0,1,0,-1,-1,0,21636,0,17113 +100855,1,1,0,-1,-1,0,17493,0,17113 +100856,0,0,-1,0,1800000,951,21728,0,17505 +100857,0,0,-1,0,1800000,951,21730,0,17506 +100858,0,0,-1,0,1800000,951,21729,0,17507 +100859,0,1,0,-1,-1,0,19380,0,15782 +100860,0,1,0,-1,-1,0,19380,0,15783 +100861,0,1,0,-1,-1,0,13676,0,16960 +100862,1,1,0,-1,-1,0,13385,0,16960 +100863,0,1,0,-1,-1,0,9141,0,16659 +100864,0,0,-1,-1,-1,0,483,0,16245 +100865,0,0,-1,-1,-1,0,483,0,16246 +100866,0,1,0,-1,-1,0,15464,0,16545 +100867,0,2,0,-1,-1,0,17315,0,13286 +100868,0,0,-1,0,0,0,22051,0,17827 +100869,0,0,0,-1,-1,0,21160,0,17204 +100870,0,2,0,-1,-1,0,21179,0,17223 +100871,1,0,0,-1,60000,1150,21181,0,17223 +100872,0,0,0,-1,-1,0,21171,0,17224 +100873,0,0,-1,-1,-1,0,483,0,14526 +100874,0,0,-1,-1,-1,0,20406,0,16378 +100875,0,1,0,0,-1,0,15465,0,17063 +100876,0,1,0,-1,-1,0,9329,0,15587 +100877,0,1,0,-1,-1,0,7597,0,16426 +100878,1,1,0,-1,-1,0,13669,0,16426 +100879,0,1,0,-1,-1,0,15807,0,16428 +100880,0,0,-1,-1,-1,0,20039,0,16202 +100881,0,0,-1,-1,-1,0,483,0,16247 +100882,0,0,-1,-1,-1,0,21248,0,17242 +100883,0,1,0,-1,-1,0,18382,0,14146 +100884,0,1,0,-1,-1,0,14027,0,16427 +100885,0,0,-1,-1,-1,0,483,0,14513 +100886,0,1,0,-1,-1,0,18050,0,17605 +100887,1,1,0,-1,-1,0,21362,0,17605 +100888,0,1,0,-1,-1,0,14047,0,17607 +100889,0,1,0,-1,-1,0,14047,0,17608 +100890,1,1,0,-1,-1,0,23043,0,17608 +100891,0,0,-1,-1,-1,0,483,0,17414 +100892,0,1,0,-1,-1,0,9417,0,17616 +100893,0,1,0,-1,-1,0,23043,0,17617 +100894,1,1,0,-1,-1,0,14248,0,17617 +100895,0,1,0,-1,-1,0,15715,0,17622 +100896,0,1,0,-1,-1,0,18050,0,17623 +100897,1,1,0,-1,-1,0,21362,0,17623 +100898,0,0,-1,-1,-1,0,483,0,9012 +100899,0,1,0,-1,-1,0,7597,0,16560 +100900,0,1,0,-1,-1,0,15464,0,16561 +100901,1,1,0,-1,-1,0,7597,0,16561 +100902,0,0,-1,0,1000,11,1127,0,17407 +100903,0,0,-1,0,1000,11,1129,0,17408 +100904,0,0,-3,600000,60000,24,19363,0,15778 +100905,0,0,-1,-1,-1,0,483,0,15779 +100906,0,1,0,-1,-1,0,7597,0,16936 +100907,0,1,0,-1,-1,0,13669,0,16422 +100908,1,1,0,-1,-1,0,9330,0,16422 +100909,0,0,-1,-1,-1,0,483,0,17709 +100910,0,0,-1,0,1000,11,18234,0,13934 +100911,0,1,0,-1,-1,0,7597,0,16453 +100912,1,1,0,-1,-1,0,15464,0,16453 +100913,0,1,0,-1,-1,0,7597,0,16454 +100914,0,1,0,-1,-1,0,14798,0,16810 +100915,0,1,0,-1,-1,0,19691,0,16658 +100916,0,1,0,-1,-1,0,9315,0,16925 +100917,0,0,0,0,255600000,791,19566,0,15846 +100918,0,0,0,30000,-1,0,19588,0,15848 +100919,0,0,-1,-1,-1,0,20426,0,16381 +100920,0,0,-1,-1,-1,0,20392,0,16362 +100921,0,1,0,-1,-1,0,13675,0,16868 +100922,1,1,0,-1,-1,0,13383,0,16868 +100923,0,1,0,-1,-1,0,9342,0,16809 +100924,1,1,0,-1,-1,0,23727,0,16809 +100925,0,0,0,-1,-1,0,10059,0,12585 +100926,0,0,0,900000,120000,1153,23539,0,19045 +100927,0,0,-1,-1,-1,0,483,0,8995 +100928,0,1,0,-1,-1,0,15464,0,18736 +100929,0,1,0,-1,-1,0,18013,0,19434 +100930,0,1,0,-1,-1,0,21363,0,19435 +100931,0,1,0,-1,-1,0,18039,0,19437 +100932,0,1,0,-1,-1,0,15814,0,19406 +100933,1,1,0,-1,-1,0,15465,0,19406 +100934,2,1,0,-1,-1,0,13669,0,19406 +100935,0,0,-1,-1,-1,0,483,0,17706 +100936,0,2,0,-1,-1,0,23267,0,18816 +100937,0,0,0,90000,15000,1141,23271,0,18820 +100938,0,1,0,-1,-1,0,9406,0,18824 +100939,0,1,0,-1,-1,0,7597,0,18831 +100940,0,1,0,-1,-1,0,9404,0,18679 +100941,0,0,-1,-1,-1,0,22905,0,18489 +100942,0,1,0,-1,-1,0,9331,0,15862 +100943,0,0,0,-1,3000,330,17481,0,18063 +100944,0,1,0,-1,-1,0,14248,0,18082 +100945,0,1,0,-1,-1,0,13675,0,18499 +100946,1,1,0,-1,-1,0,22912,0,18499 +100947,0,1,0,-1,-1,0,9408,0,18717 +100948,0,1,0,-1,-1,0,9417,0,19121 +100949,0,1,0,-1,-1,0,23434,0,18970 +100950,0,1,0,-1,-1,0,7597,0,18832 +100951,0,0,-1,0,120000,4,17530,0,18841 +100952,0,1,0,-1,-1,0,15464,0,19387 +100953,0,1,0,-1,-1,0,14052,0,19396 +100954,1,1,0,-1,-1,0,13669,0,19396 +100955,0,1,0,-1,-1,0,15464,0,12963 +100956,1,1,0,-1,-1,0,7597,0,12963 +100958,0,1,0,-1,-1,0,9335,0,19439 +100959,0,0,-1,60000,0,150,23786,0,19440 +100960,0,0,0,600000,120000,1153,23034,0,18606 +100961,0,1,0,-1,-1,0,7597,0,18847 +100962,1,1,0,-1,-1,0,9335,0,18847 +100963,0,0,0,300000,300000,1182,42292,0,18849 +100964,0,1,0,-1,-1,0,7597,0,18821 +100965,1,1,0,-1,-1,0,9336,0,18821 +100966,0,0,0,-1,-1,0,23180,0,18688 +100967,0,1,0,-1,-1,0,9327,0,18691 +100968,0,1,0,-1,-1,0,18384,0,18720 +100969,0,1,0,-1,-1,0,7597,0,18725 +100970,1,1,0,-1,-1,0,15814,0,18725 +100971,0,1,0,-1,-1,0,23435,0,18971 +100972,0,1,0,-1,-1,0,14047,0,19156 +100973,0,1,0,-1,-1,0,15810,0,19157 +100974,1,1,0,-1,-1,0,7597,0,19157 +100975,2,1,0,-1,-1,0,18384,0,19157 +100976,0,1,0,-1,-1,0,9343,0,13390 +100977,0,0,0,-1,-1,0,23679,0,19274 +100978,0,1,0,-1,-1,0,9329,0,13203 +100979,0,1,0,-1,-1,0,9336,0,17714 +100980,0,0,0,0,86400000,991,21935,0,17716 +100981,0,1,0,-1,-1,0,21433,0,17717 +100982,0,1,0,-1,-1,0,8082,0,19022 +100983,0,0,-1,1000,-1,0,11544,0,19026 +100984,0,1,0,-1,-1,0,18384,0,18490 +100985,1,1,0,-1,-1,0,9318,0,18490 +100986,0,0,-1,-1,-1,0,17015,0,12814 +100987,0,1,0,-1,-1,0,14798,0,18727 +100988,0,1,0,0,0,0,7597,0,13957 +100989,0,1,0,-1,-1,0,22618,0,18168 +100990,1,1,0,-1,-1,0,22620,0,18168 +100991,0,1,0,-1,-1,0,18384,0,18709 +100992,1,0,-1,0,120000,1153,23475,0,19011 +100993,0,0,-1,-1,-1,0,483,0,18516 +100994,0,1,0,-1,-1,0,21598,0,18315 +100995,0,1,0,-1,-1,0,14254,0,18316 +100996,0,1,0,-1,-1,0,9407,0,18318 +100997,0,1,0,-1,-1,0,14714,0,16160 +100998,0,1,0,-1,-1,0,18049,0,18479 +100999,0,0,0,900000,120000,1153,23538,0,19046 +101000,0,1,0,-1,-1,0,21362,0,19047 +101001,0,0,-1,-1,-1,0,483,0,19445 +101002,0,0,0,-1,-1,0,23192,0,18707 +101003,0,1,0,-1,-1,0,21363,0,18739 +101004,0,1,0,-1,-1,0,13669,0,18716 +101005,0,1,0,-1,-1,0,29637,0,17753 +101006,0,1,0,-1,-1,0,23046,0,17588 +101007,1,1,0,-1,-1,0,14798,0,17588 +101008,1,0,-1,0,120000,1153,23472,0,19008 +101009,0,0,-1,-1,-1,0,483,0,19446 +101010,0,0,-1,-1,-1,0,483,0,19447 +101011,0,0,-1,-1,-1,0,483,0,19449 +101012,0,1,0,-1,-1,0,7597,0,18868 +101013,0,1,0,-1,-1,0,13665,0,18690 +101014,0,1,0,-1,-1,0,17367,0,19131 +101015,1,1,0,-1,-1,0,21363,0,19131 +101016,0,2,0,-1,-1,0,18138,0,17068 +101017,0,1,0,-1,-1,0,21596,0,17907 +101018,1,1,0,-1,-1,0,13669,0,17907 +101019,2,0,0,120000,120000,1091,22563,0,17907 +101020,0,0,-1,-1,-1,0,19719,0,15877 +101021,0,0,0,300000,300000,1182,42292,0,18858 +101022,0,2,0,-1,-1,0,21992,0,17802 +101023,0,1,0,-1,-1,0,17280,0,19165 +101024,0,1,0,-1,-1,0,13669,0,19058 +101025,0,0,-1,-1,-1,0,22594,0,18170 +101026,0,0,-1,-1,-1,0,22597,0,18172 +101027,0,1,0,-1,-1,0,21440,0,18860 +101028,0,0,0,300000,300000,1182,42292,0,18862 +101029,0,1,0,-1,-1,0,9336,0,19144 +101030,0,1,0,-1,-1,0,15809,0,19043 +101031,0,0,-1,-1,-1,0,483,0,19027 +101032,0,0,-1,-1,-1,0,19564,0,15844 +101033,0,0,-1,-1,-1,0,483,0,19216 +101034,0,1,0,-1,-1,0,7597,0,18520 +101035,1,1,0,-1,-1,0,14052,0,18520 +101036,0,0,-1,0,1000,11,10256,0,17222 +101037,0,1,0,-1,-1,0,9318,0,18723 +101038,0,1,0,-1,-1,0,13385,0,18495 +101039,0,0,-1,-1,-1,0,483,0,12228 +101040,0,1,0,-1,-1,0,9345,0,17568 +101041,0,0,-1,-1,-1,0,483,0,18517 +101042,0,0,-1,-1,-1,0,483,0,18519 +101043,0,0,0,-1,-1,0,20513,0,16603 +101044,0,0,-1,-1,-1,0,483,0,17683 +101045,0,0,-1,-1,-1,0,20387,0,16357 +101046,0,1,0,-1,-1,0,7598,0,16431 +101047,0,1,0,-1,-1,0,9346,0,16957 +101048,0,0,0,0,3000,330,22723,0,18242 +101049,0,0,-1,-1,-1,0,483,0,4151 +101050,0,0,-1,0,0,0,483,0,1058 +101051,0,1,0,-1,-1,0,9346,0,18494 +101052,0,0,-1,0,60000,24,23063,0,18641 +101053,0,0,-1,-1,-1,0,483,0,18252 +101054,0,0,-1,0,120000,4,22729,0,18253 +101055,0,0,-1,0,1000,11,22731,0,18254 +101056,0,0,0,0,3000,330,22724,0,18245 +101057,0,0,0,0,3000,330,22718,0,18247 +101058,0,1,0,-1,-1,0,9332,0,18379 +101059,0,0,-20,-1,-1,0,22563,0,18149 +101060,0,0,0,1500,-1,0,23811,0,19450 +101061,0,1,0,-1,-1,0,14089,0,19363 +101062,0,1,0,-1,-1,0,17871,0,18408 +101063,0,0,-1,-1,-1,0,483,0,18418 +101064,0,1,0,-1,-1,0,21362,0,19096 +101065,0,0,-1,-1,-1,0,483,0,19217 +101066,0,0,-1,-1,-1,0,483,0,19218 +101067,0,0,-1,-1,-1,0,483,0,19219 +101068,0,0,-1,0,1000,59,11629,0,19221 +101069,0,0,-1,0,1000,11,1127,0,19224 +101070,0,0,-1,0,1000,11,1131,0,19225 +101071,0,0,-1,-1,-1,0,483,0,18257 +101072,0,2,0,-1,-1,0,23604,0,19166 +101073,0,1,0,-1,-1,0,9408,0,18525 +101074,0,1,0,-1,-1,0,18384,0,18526 +101075,0,1,0,-1,-1,0,18035,0,18527 +101076,0,0,0,300000,300000,1182,42292,0,18864 +101077,0,0,0,-1,-1,0,21957,0,17762 +101078,0,0,-1,-1,-1,0,22596,0,18173 +101079,0,2,0,-1,-1,0,22639,0,18202 +101080,0,2,0,-1,-1,0,22640,0,18203 +101081,0,1,0,-1,-1,0,7517,0,18813 +101082,0,0,-1,0,120000,4,4042,0,18839 +101083,0,1,0,-1,-1,0,14799,0,18878 +101084,0,0,0,-1,-1,0,23152,0,18670 +101085,0,1,0,-1,-1,0,9400,0,18672 +101086,0,1,0,-1,-1,0,7516,0,18674 +101087,0,0,-1,-1,-1,0,22593,0,18169 +101088,0,1,0,-1,-1,0,18050,0,17602 +101089,1,1,0,-1,-1,0,21362,0,17602 +101090,0,0,0,0,3000,330,22720,0,18244 +101091,0,2,0,-1,-1,0,21992,0,19019 +101092,0,1,0,-1,-1,0,9331,0,19048 +101093,0,0,-1,0,1000,11,10256,0,18045 +101094,0,1,0,-1,-1,0,13597,0,18337 +101095,0,1,0,-1,-1,0,21627,0,18743 +101096,0,1,0,-1,-1,0,13669,0,16906 +101097,0,0,-1,1000,-1,0,23065,0,18640 +101098,0,0,-1,-1,-1,0,23179,0,18685 +101100,0,0,-1,0,1000,11,1129,0,18635 +101101,1,0,-1,0,120000,1153,23476,0,19012 +101102,1,0,-1,0,120000,1153,23477,0,19013 +101103,0,0,-1,0,1000,11,23541,0,19061 +101104,0,1,0,-1,-1,0,18098,0,18758 +101105,0,1,0,-1,-1,0,9334,0,18759 +101106,0,1,0,-1,-1,0,7597,0,18828 +101107,1,1,0,-1,-1,0,9335,0,18828 +101108,0,1,0,-1,-1,0,15465,0,18465 +101109,0,0,-1,-1,-1,0,23054,0,18626 +101110,0,0,0,-1,-1,0,23232,0,18782 +101111,0,0,-1,0,120000,4,17549,0,13461 +101112,0,0,0,-1,-1,0,21957,0,17761 +101113,0,0,0,300000,0,0,23132,0,18639 +101114,0,1,0,-1,-1,0,20885,0,18760 +101115,0,1,0,-1,-1,0,9417,0,18458 +101116,0,1,0,-1,-1,0,23043,0,17620 +101117,1,1,0,-1,-1,0,14047,0,17620 +101118,0,1,0,0,0,0,9331,0,17772 +101119,0,1,0,-1,-1,0,9318,0,18469 +101120,1,1,0,-1,-1,0,21618,0,18469 +101121,0,0,-1,-1,-1,0,23254,0,18749 +101122,0,1,0,-1,-1,0,21361,0,18491 +101123,0,0,-1,0,1000,150,23569,0,19068 +101124,0,1,0,-1,-1,0,23046,0,17564 +101125,0,0,-1,1000,-1,0,22725,0,18251 +101126,0,0,-1,0,0,0,23141,0,18666 +101127,0,1,0,-1,-1,0,17901,0,19105 +101128,0,1,0,-1,-1,0,7598,0,16543 +101129,1,1,0,-1,-1,0,15464,0,16543 +101130,0,1,0,-1,-1,0,14254,0,16476 +101131,1,1,0,-1,-1,0,18379,0,16476 +101132,0,1,0,-1,-1,0,9317,0,18208 +101133,0,1,0,-1,-1,0,22849,0,18346 +101134,0,1,0,-1,-1,0,7597,0,18866 +101135,1,1,0,-1,-1,0,9335,0,18866 +101136,0,1,0,-1,-1,0,7597,0,18867 +101137,0,1,0,-1,-1,0,7597,0,18869 +101138,0,0,0,-1,-1,0,23233,0,18783 +101139,0,1,0,-1,-1,0,21627,0,14545 +101140,0,1,0,0,-1,0,13598,0,18023 +101141,1,1,0,-1,-1,0,9413,0,18023 +101142,0,0,-1,-1,-1,0,483,0,16113 +101143,0,0,-1,-1,-1,0,483,0,18600 +101144,0,0,-1,-1,-1,0,483,0,17724 +101145,0,1,0,-1,-1,0,9342,0,19129 +101146,0,1,0,-1,-1,0,9307,0,19130 +101147,0,1,0,-1,-1,0,18384,0,18390 +101148,0,0,0,0,3000,330,23228,0,18778 +101149,0,0,-1,0,1000,11,1129,0,18255 +101150,0,1,0,-1,-1,0,15693,0,18472 +101151,1,1,0,-1,-1,0,9408,0,18472 +101152,0,1,0,-1,-1,0,18039,0,19162 +101153,0,1,0,-1,-1,0,9335,0,18711 +101154,0,1,0,-1,-1,0,18032,0,18702 +101155,0,2,0,-1,-1,0,10351,0,8223 +101156,0,1,0,-1,-1,0,7518,0,18413 +101157,1,1,0,-1,-1,0,7597,0,16565 +101158,0,1,0,-1,-1,0,21626,0,19050 +101159,0,0,0,-1,-1,0,23679,0,19268 +101160,0,1,0,-1,-1,0,14127,0,19366 +101161,0,0,0,0,3000,330,23246,0,18791 +101162,0,0,0,0,3000,330,23251,0,18797 +101163,0,1,0,-1,-1,0,7597,0,16527 +101164,1,1,0,-1,-1,0,13669,0,16527 +101165,0,1,0,-1,-1,0,7598,0,18817 +101166,1,1,0,-1,-1,0,15810,0,18817 +101167,0,0,-1,-1,-1,0,483,0,18160 +101168,1,1,0,-1,-1,0,7597,0,18713 +101169,2,1,0,-1,-1,0,21432,0,18713 +101170,0,1,0,-1,-1,0,23210,0,17082 +101171,0,0,0,300000,-1,0,23724,0,19340 +101172,0,1,0,-1,-1,0,7597,0,16939 +101173,0,1,0,-1,-1,0,43588,0,18722 +101174,0,0,0,30000,-1,0,23208,0,18752 +101175,0,1,0,-1,-1,0,7516,0,18754 +101176,0,1,0,-1,-1,0,14047,0,18721 +101177,0,1,0,-1,-1,0,15811,0,19389 +101178,0,0,-1,0,1000,11,21149,0,17198 +101179,0,1,0,-1,-1,0,18384,0,19135 +101180,0,1,0,-1,-1,0,9142,0,18394 +101181,0,1,0,-1,-1,0,9343,0,19086 +101182,0,1,0,-1,-1,0,9316,0,18459 +101183,0,1,0,-1,-1,0,15464,0,16480 +101184,0,0,-1,-1,-1,0,483,0,18661 +101185,0,1,0,-1,-1,0,23731,0,19349 +101186,1,1,0,-1,-1,0,13385,0,19349 +101187,0,1,0,-1,-1,0,14799,0,18681 +101188,0,0,-1,0,0,0,22052,0,17828 +101189,0,1,0,-1,-1,0,22854,0,18355 +101190,0,1,0,-1,-1,0,18030,0,18523 +101191,0,1,0,-1,-1,0,7597,0,18524 +101192,0,1,0,-1,-1,0,20885,0,17909 +101193,1,1,0,-1,-1,0,13670,0,17909 +101194,2,0,0,0,1000,1091,22563,0,17909 +101195,0,1,0,-1,-1,0,22589,0,18164 +101196,0,1,0,-1,-1,0,21601,0,18298 +101197,0,0,-1,0,1000,59,22734,0,18300 +101198,0,1,0,-1,-1,0,9415,0,18301 +101199,0,0,0,1500,-1,0,22567,0,18159 +101200,0,0,-1,0,0,0,22089,0,17882 +101201,0,1,0,-1,-1,0,42184,0,18345 +101202,0,0,-1,0,0,0,23143,0,18668 +101203,0,1,0,-1,-1,0,23172,0,18673 +101204,0,1,0,-1,-1,0,17819,0,18676 +101205,0,1,0,-1,-1,0,15464,0,18812 +101206,0,1,0,-1,-1,0,7597,0,18830 +101207,0,1,0,-1,-1,0,18378,0,18468 +101208,0,1,0,-1,-1,0,18384,0,18317 +101209,0,1,0,-1,-1,0,13601,0,18338 +101210,0,1,0,-1,-1,0,21626,0,16948 +101211,1,1,0,-1,-1,0,9398,0,16948 +101212,2,1,0,-1,-1,0,7681,0,16948 +101213,0,1,0,-1,-1,0,23217,0,16555 +101214,1,1,0,-1,-1,0,9417,0,16555 +101215,0,1,0,-1,-1,0,18054,0,17593 +101216,0,0,-1,0,120000,4,21395,0,17351 +101217,0,1,0,-1,-1,0,9345,0,17610 +101218,0,2,0,-1,-1,0,21140,0,17075 +101219,0,1,0,-1,-1,0,22836,0,18310 +101220,0,1,0,-1,-1,0,21629,0,18311 +101221,0,0,-1,-1,-1,0,483,0,17412 +101222,0,1,0,-1,-1,0,18050,0,17624 +101223,1,1,0,-1,-1,0,21362,0,17624 +101224,0,1,0,-1,-1,0,21600,0,17903 +101225,1,1,0,-1,-1,0,13669,0,17903 +101226,2,0,0,120000,120000,1091,22564,0,17903 +101227,0,0,-1,0,1000,59,11009,0,18288 +101228,0,0,-1,-1,-1,0,483,0,18650 +101229,0,0,-1,1000,-1,0,23135,0,18662 +101230,0,1,0,-1,-1,0,18029,0,18391 +101231,0,1,0,-1,-1,0,21619,0,16854 +101232,1,1,0,-1,-1,0,9408,0,16854 +101233,0,1,0,-1,-1,0,21434,0,18282 +101234,1,1,0,-1,-1,0,15464,0,18282 +101235,0,0,-1,-1,-1,0,22779,0,18283 +101236,0,1,0,-1,-1,0,17902,0,14340 +101237,0,1,0,-1,-1,0,15464,0,18500 +101238,0,0,-1,-1,-1,0,21884,0,17693 +101239,0,1,0,-1,-1,0,21432,0,18764 +101240,0,1,0,-1,-1,0,21432,0,18765 +101241,0,0,0,0,3000,330,23221,0,18766 +101242,0,2,0,-1,-1,0,18276,0,13984 +101243,0,0,-10,300000,120000,1153,23064,0,18637 +101244,0,0,0,300000,0,0,23097,0,18638 +101245,0,1,0,-1,-1,0,18384,0,18496 +101246,0,0,-1,-1,-1,0,483,0,18654 +101247,0,1,0,-1,-1,0,9343,0,18745 +101248,0,1,0,-1,-1,0,7597,0,18204 +101249,0,1,0,-1,-1,0,21629,0,18757 +101250,0,1,0,-1,-1,0,18033,0,19140 +101251,0,0,0,180000,-1,0,23595,0,19141 +101252,0,1,0,-1,-1,0,9416,0,19142 +101253,0,1,0,-1,-1,0,7597,0,19143 +101254,1,1,0,-1,-1,0,15813,0,19143 +101255,0,0,3,-1,-1,0,19699,0,15922 +101256,0,0,-1,-1,-1,0,20322,0,16326 +101257,0,0,-1,-1,-1,0,483,0,15764 +101258,0,0,0,0,3000,330,23229,0,18777 +101259,0,0,-1,-1,-1,0,483,0,17682 +101260,0,1,0,0,0,0,7711,0,17111 +101261,0,1,0,-1,-1,0,9346,0,18102 +101262,0,1,0,-1,-1,0,15464,0,18349 +101263,0,1,0,-1,-1,0,7516,0,18351 +101264,0,1,0,-1,-1,0,21626,0,18536 +101265,0,0,0,-1,-1,0,21960,0,17757 +101266,0,0,-1,-1,-1,0,483,0,12832 +101267,0,0,0,0,3000,330,23222,0,18774 +101268,0,1,0,-1,-1,0,9406,0,17721 +101269,1,1,0,-1,-1,0,7696,0,17721 +101270,0,0,-1,0,0,0,22100,0,17893 +101271,0,1,0,-1,-1,0,21346,0,17905 +101272,1,0,0,120000,120000,1091,22563,0,17905 +101273,0,1,0,-1,-1,0,21346,0,17906 +101274,1,1,0,-1,-1,0,13669,0,17906 +101275,2,0,0,120000,120000,1091,22563,0,17906 +101276,0,0,0,-1,-1,0,23231,0,18779 +101277,0,0,0,-1,-1,0,23231,0,18780 +101278,0,2,0,0,-1,0,21951,0,17943 +101279,0,0,-1,-1,-1,0,483,0,18592 +101280,0,1,0,-1,-1,0,21363,0,18312 +101281,0,1,0,-1,-1,0,13670,0,18313 +101282,0,1,0,-1,-1,0,21626,0,18314 +101283,0,1,0,-1,-1,0,9345,0,17598 +101284,0,1,0,-1,-1,0,14254,0,17599 +101285,0,1,0,-1,-1,0,14047,0,17618 +101286,0,1,0,-1,-1,0,23217,0,16397 +101287,0,1,0,-1,-1,0,7517,0,13245 +101288,0,2,0,-1,-1,0,22850,0,18348 +101289,0,1,0,-1,-1,0,14630,0,16120 +101290,0,1,0,-1,-1,0,9317,0,15061 +101291,0,0,0,-1,-1,0,12686,0,17122 +101292,0,1,0,-1,-1,0,15715,0,17580 +101293,0,1,0,-1,-1,0,7597,0,18530 +101294,0,1,0,-1,-1,0,13387,0,18531 +101295,0,1,0,-1,-1,0,9396,0,16830 +101296,0,0,-1,-1,-1,0,483,0,13478 +101297,0,1,0,-1,-1,0,13669,0,18521 +101298,0,1,0,-1,-1,0,7597,0,18366 +101299,0,0,-1,-1,-1,0,483,0,13500 +101300,0,0,-1,0,120000,4,17530,0,13443 +101301,0,0,0,0,3000,330,17461,0,13328 +101302,0,0,-1,1000,-1,0,22756,0,18262 +101303,0,1,0,-1,-1,0,21365,0,18263 +101304,0,0,-1,-1,-1,0,483,0,18264 +101305,0,0,-1,-1,-1,0,483,0,18417 +101306,0,0,0,1500,-1,0,19772,0,15996 +101307,0,1,0,-1,-1,0,15715,0,17590 +101308,0,1,0,-1,-1,0,23157,0,16403 +101309,0,1,0,-1,-1,0,9329,0,18463 +101310,0,1,0,-1,-1,0,21442,0,18508 +101311,0,0,0,-1,-1,0,3366,0,18249 +101312,0,1,0,-1,-1,0,15464,0,16937 +101313,0,0,-1,-1,-1,0,21288,0,17262 +101314,0,1,0,-1,-1,0,18379,0,16943 +101315,0,1,0,-1,-1,0,18384,0,16944 +101316,1,1,0,-1,-1,0,9315,0,16944 +101317,0,0,-1,0,0,0,22053,0,17829 +101318,0,0,-1,0,0,0,22054,0,17830 +101319,0,1,0,-1,-1,0,21079,0,17142 +101320,0,1,0,-1,-1,0,14254,0,17611 +101321,0,0,-1,0,1000,59,11008,0,18287 +101322,0,0,-1,-1,-1,0,22840,0,18329 +101323,0,0,-1,-1,-1,0,22844,0,18330 +101324,0,1,0,-1,-1,0,15464,0,16938 +101325,1,1,0,-1,-1,0,7597,0,16938 +101326,0,1,0,-1,-1,0,9345,0,17572 +101327,0,1,0,-1,-1,0,21362,0,13244 +101328,0,1,0,-1,-1,0,18050,0,19147 +101329,0,1,0,-1,-1,0,13384,0,18493 +101330,0,0,0,-1,-1,0,21425,0,17364 +101331,0,1,0,-1,-1,0,9345,0,17612 +101332,0,0,-1,0,0,0,23142,0,18667 +101333,0,1,0,-1,-1,0,23266,0,18815 +101334,1,1,0,-1,-1,0,7598,0,18715 +101335,2,1,0,-1,-1,0,14097,0,18715 +101336,0,1,0,-1,-1,0,13669,0,19052 +101337,0,0,0,0,3000,330,23227,0,18776 +101338,0,0,-1,-1,-1,0,3366,0,18266 +101339,0,0,-1,-1,-1,0,483,0,18267 +101340,0,2,0,-1,-1,0,18796,0,870 +101341,0,0,0,0,3000,330,6654,0,16343 +101342,0,0,0,-1,-1,0,23853,0,17162 +101343,1,2,0,-1,-1,0,21162,0,17182 +101344,2,1,0,-1,-1,0,21142,0,17182 +101345,0,0,0,30000,-1,0,21127,0,17191 +101346,1,0,-1,0,120000,1153,23473,0,19009 +101347,1,0,-1,0,120000,1153,23474,0,19010 +101348,0,0,-1,0,1800000,831,20765,0,16896 +101349,0,1,0,-1,-1,0,18384,0,16897 +101350,1,1,0,-1,-1,0,18032,0,16897 +101351,0,1,0,-1,-1,0,15807,0,16396 +101352,0,0,-1,-1,-1,0,483,0,18649 +101353,0,1,0,-1,-1,0,13665,0,18502 +101354,1,1,0,-1,-1,0,13385,0,18502 +101355,0,0,0,1500,-1,0,23012,0,18597 +101356,0,0,0,1500,-1,0,23013,0,18598 +101357,0,1,0,0,-1,0,9343,0,18048 +101358,0,1,0,0,0,0,21620,0,18103 +101359,1,1,0,-1,-1,0,18384,0,18103 +101360,1,1,0,-1,-1,0,21629,0,18104 +101361,0,1,0,-1,-1,0,19307,0,13347 +101362,0,1,0,-1,-1,0,9335,0,17736 +101363,0,2,0,-1,-1,0,21952,0,17738 +101364,0,1,0,-1,-1,0,14027,0,18375 +101365,0,1,0,-1,-1,0,17371,0,18470 +101366,0,1,0,-1,-1,0,15809,0,18544 +101367,0,1,0,-1,-1,0,18382,0,19145 +101368,1,1,0,-1,-1,0,14047,0,19145 +101369,0,0,-1,-1,-1,0,483,0,7452 +101370,0,0,-1,-1,-1,1071,23851,0,19462 +101371,0,1,0,-1,-1,0,21445,0,18473 +101372,0,1,0,-1,-1,0,9345,0,18475 +101373,0,1,0,-1,-1,0,9417,0,13398 +101374,0,1,0,-1,-1,0,17367,0,17625 +101375,1,1,0,-1,-1,0,21362,0,17625 +101376,0,0,-1,-1,-1,0,21794,0,17626 +101377,0,0,-1,-1,-1,0,21358,0,17333 +101378,0,0,-1,0,1000,11,433,0,17344 +101379,0,1,0,-1,-1,0,7597,0,16940 +101380,0,1,0,-1,-1,0,22778,0,16484 +101381,1,1,0,-1,-1,0,7597,0,16484 +101382,0,1,0,-1,-1,0,7597,0,18420 +101383,0,1,0,-1,-1,0,9346,0,18378 +101384,0,0,-1,-1,-1,0,483,0,15751 +101385,0,1,0,-1,-1,0,21618,0,17718 +101386,0,1,0,-1,-1,0,18384,0,17719 +101387,0,0,-1,-1,-1,0,483,0,17722 +101388,0,1,0,-1,-1,0,20885,0,17904 +101389,1,1,0,-1,-1,0,13670,0,17904 +101390,2,0,0,0,1000,1091,22564,0,17904 +101392,0,1,0,-1,-1,0,7597,0,18393 +101393,0,0,-1,0,1000,59,22790,0,18284 +101394,0,0,0,0,3000,330,23219,0,18767 +101395,0,1,0,-1,-1,0,7597,0,18421 +101396,0,1,0,-1,-1,0,17867,0,18450 +101397,0,0,0,1500,-1,0,23530,0,19054 +101398,0,1,0,-1,-1,0,14248,0,16452 +101399,1,1,0,-1,-1,0,7597,0,16452 +101400,0,1,0,-1,-1,0,15464,0,18698 +101401,0,1,0,-1,-1,0,9330,0,19097 +101402,0,1,0,-1,-1,0,28539,0,16463 +101403,1,1,0,-1,-1,0,7597,0,16463 +101404,0,0,-20,-1,-1,0,22564,0,18150 +101405,0,1,0,-1,-1,0,17367,0,17581 +101406,0,0,-1,0,1800000,831,20764,0,16895 +101407,0,0,-1,-1,-1,0,483,0,16215 +101408,0,0,-1,-1,-1,0,483,0,16216 +101409,0,0,0,0,3000,330,23220,0,18768 +101410,0,0,0,0,3000,330,23225,0,18772 +101411,0,1,0,-1,-1,0,13669,0,18342 +101412,0,1,0,-1,-1,0,9417,0,17594 +101413,0,1,0,-1,-1,0,9345,0,17566 +101414,0,0,-1,0,-1,0,8679,0,6947 +101415,0,1,0,-1,-1,0,9415,0,16816 +101416,0,0,-1,0,60000,24,23000,0,18588 +101417,0,0,0,-1,-1,0,23015,0,18601 +101418,0,1,0,-1,-1,0,21348,0,18602 +101419,0,0,0,0,3000,330,23240,0,18785 +101420,0,0,-1,-1,-1,0,22562,0,18152 +101421,0,0,0,1500,-1,0,22567,0,18153 +101422,0,1,0,-1,-1,0,9140,0,7949 +101423,0,1,0,-1,-1,0,9304,0,19108 +101424,0,1,0,-1,-1,0,9417,0,19109 +101425,0,0,-1,0,120000,4,21393,0,17348 +101426,0,0,-1,0,1800000,951,21538,0,17363 +101427,0,0,0,0,2700000,951,21565,0,17410 +101431,0,0,-1,900000,-1,0,22792,0,18297 +101432,0,1,0,-1,-1,0,7597,0,19167 +101433,0,1,0,-1,-1,0,18384,0,16441 +101434,1,1,0,-1,-1,0,18050,0,16441 +101435,0,0,-1,0,0,0,30229,0,18599 +101436,0,1,0,-1,-1,0,21629,0,18477 +101437,0,0,0,0,3000,330,23239,0,18787 +101438,0,0,0,0,3000,330,23241,0,18788 +101439,0,0,0,-1,-1,0,20531,0,16654 +101440,0,0,-1,-1,-1,0,20435,0,16390 +101441,0,1,0,-1,-1,0,7597,0,16942 +101442,0,1,0,-1,-1,0,18384,0,17103 +101443,1,1,0,-1,-1,0,18056,0,17103 +101444,0,1,0,0,0,0,13669,0,17065 +101445,1,1,0,-1,-1,0,13387,0,17065 +101446,0,0,-1,-1,-1,0,22598,0,18171 +101447,0,1,0,-1,-1,0,9343,0,18321 +101448,0,1,0,-1,-1,0,21600,0,17908 +101449,1,1,0,-1,-1,0,13669,0,17908 +101450,2,0,0,120000,120000,1091,22563,0,17908 +101451,0,1,0,-1,-1,0,23101,0,18646 +101452,0,0,0,30000,-1,0,23359,0,18904 +101453,0,0,0,0,1800000,1160,23041,0,18608 +101455,2,1,0,-1,-1,0,23264,0,18608 +101456,0,1,0,-1,-1,0,7597,0,18380 +101457,0,1,0,-1,-1,0,13385,0,18381 +101458,0,1,0,-1,-1,0,21347,0,18382 +101459,0,2,0,-1,-1,0,17352,0,13246 +101460,0,1,0,-1,-1,0,7597,0,17072 +101461,0,1,0,-1,-1,0,13390,0,18503 +101462,0,1,0,-1,-1,0,21185,0,17104 +101463,1,1,0,-1,-1,0,15806,0,17104 +101464,0,1,0,-1,-1,0,21363,0,17105 +101465,1,1,0,-1,-1,0,15715,0,17105 +101466,0,1,0,-1,-1,0,21365,0,17106 +101467,0,1,0,-1,-1,0,23593,0,19132 +101468,0,1,0,-1,-1,0,9335,0,18451 +101469,0,0,-1,-1,-1,0,483,0,18265 +101470,0,0,-1,-1,-1,0,483,0,14639 +101471,0,1,0,-1,-1,0,9305,0,18693 +101472,0,1,0,-1,-1,0,23181,0,18696 +101473,0,1,0,-1,-1,0,21618,0,18697 +101474,0,0,-1,-1,-1,0,483,0,18046 +101475,0,0,0,-1,-1,0,21391,0,17347 +101476,0,0,-1,0,120000,4,21394,0,17349 +101477,0,0,0,180000,0,0,22891,0,18438 +101478,0,0,0,1500,-1,0,22567,0,18155 +101479,0,1,0,-1,-1,0,21347,0,16932 +101480,1,1,0,-1,-1,0,14047,0,16932 +101481,0,1,0,-1,-1,0,7597,0,18505 +101483,0,1,0,-1,-1,0,9315,0,18507 +101484,0,1,0,-1,-1,0,14798,0,16915 +101485,1,1,0,-1,-1,0,18384,0,16915 +101486,0,1,0,-1,-1,0,15811,0,16525 +101487,1,1,0,-1,-1,0,7597,0,16525 +101488,0,1,0,-1,-1,0,9335,0,18484 +101489,0,0,0,120000,120000,1091,22563,0,17690 +101490,0,0,0,120000,120000,1091,22564,0,17691 +101491,0,1,0,-1,-1,0,7597,0,16430 +101492,0,1,0,-1,-1,0,14248,0,16437 +101493,1,1,0,-1,-1,0,23727,0,16437 +101494,0,1,0,0,0,0,13669,0,18205 +101495,1,1,0,-1,-1,0,7597,0,18205 +101496,0,0,0,0,3000,330,16084,0,8586 +101497,0,1,0,-1,-1,0,20886,0,18326 +101498,0,1,0,-1,-1,0,21626,0,18327 +101499,1,1,0,-1,-1,0,9317,0,18327 +101500,0,0,0,0,3000,330,23223,0,18773 +101501,0,0,-1,-1,-1,0,483,0,16220 +101502,0,0,-1,-1,-1,0,483,0,16221 +101503,0,0,-1,-1,-1,0,483,0,16222 +101504,0,1,0,-1,-1,0,22852,0,18352 +101505,0,1,0,-1,-1,0,18384,0,18353 +101506,0,1,0,-1,-1,0,22855,0,18354 +101507,0,1,0,-1,-1,0,9417,0,18497 +101508,0,0,-1,-1,-1,0,483,0,18487 +101509,0,0,0,0,3000,330,22717,0,18241 +101510,0,1,0,-1,-1,0,21432,0,18763 +101511,0,0,-1,-1,-1,0,483,0,18260 +101512,0,1,0,-1,-1,0,15715,0,18322 +101513,0,0,0,1500,-1,0,23531,0,19055 +101514,0,1,0,-1,-1,0,9416,0,14631 +101515,0,1,0,-1,-1,0,9331,0,19120 +101516,1,1,0,-1,-1,0,15464,0,19120 +101517,0,0,-1,-1,-1,0,20402,0,16374 +101518,0,1,0,-1,-1,0,22988,0,18582 +101519,1,0,0,-1,-1,0,22989,0,18582 +101520,0,0,-1,-1,-1,0,483,0,19766 +101521,0,0,-1,-1,-1,0,13714,0,11147 +101522,0,0,0,-1,-1,0,23678,0,19265 +101523,0,1,0,-1,-1,0,21624,0,16859 +101524,1,1,0,-1,-1,0,9406,0,16859 +101525,0,1,0,-1,-1,0,13667,0,19354 +101526,0,1,0,-1,-1,0,7598,0,19358 +101527,0,1,0,-1,-1,0,21631,0,19373 +101528,0,1,0,-1,-1,0,9335,0,19584 +101529,0,0,-1,0,3000,79,24361,0,20004 +101530,0,0,-1,-1,-1,0,483,0,20014 +101531,0,1,0,-1,-1,0,7597,0,19898 +101532,1,1,0,-1,-1,0,9331,0,19898 +101533,0,1,0,-1,-1,0,18030,0,19899 +101534,0,0,0,-1,-1,0,23677,0,19230 +101535,0,0,0,-1,-1,0,23677,0,19231 +101536,0,0,0,-1,-1,0,23677,0,19233 +101537,0,0,0,-1,-1,0,23677,0,19235 +101538,0,1,0,-1,-1,0,9346,0,19861 +101539,0,1,0,-1,-1,0,9316,0,19863 +101540,0,0,0,-1,-1,0,23062,0,18630 +101541,0,0,-1,0,0,0,23144,0,18669 +101542,0,2,0,-1,-1,0,13442,0,18671 +101543,0,1,0,-1,-1,0,14047,0,18467 +101544,0,1,0,-1,-1,0,9406,0,19594 +101545,1,1,0,-1,-1,0,24191,0,19594 +101546,0,1,0,-1,-1,0,15714,0,19595 +101547,0,1,0,-1,-1,0,14799,0,19596 +101548,0,1,0,-1,-1,0,7598,0,19834 +101549,1,1,0,-1,-1,0,15810,0,19834 +101550,0,1,0,-1,-1,0,9417,0,19849 +101551,0,1,0,-1,-1,0,9416,0,18740 +101552,0,0,-1,-1,-1,0,23204,0,18746 +101553,0,0,-1,0,1000,11,24410,0,20064 +101554,0,0,-1,0,1000,11,1129,0,19306 +101555,0,0,-1,600000,120000,1153,23004,0,18645 +101556,0,0,-1,-1,-1,0,483,0,18647 +101557,0,0,-1,-1,-1,0,483,0,18648 +101558,0,0,-1,-1,-1,0,483,0,18651 +101559,0,1,0,-1,-1,0,15821,0,19854 +101560,0,2,0,-1,-1,0,21949,0,17730 +101561,0,0,0,-1,-1,0,21957,0,17763 +101562,0,1,0,-1,-1,0,14047,0,18471 +101563,0,0,0,-1,-1,0,23677,0,19232 +101564,0,0,0,-1,-1,0,23679,0,19272 +101565,0,0,0,-1,-1,0,23679,0,19273 +101566,0,0,0,0,3000,330,23510,0,19030 +101567,0,1,0,-1,-1,0,23990,0,20051 +101568,0,1,0,-1,-1,0,17746,0,20255 +101569,0,0,-5,1500,-1,0,24717,0,20397 +101570,0,0,-5,1500,-1,0,24718,0,20398 +101571,0,1,0,-1,-1,0,23990,0,20159 +101572,1,1,0,-1,-1,0,9417,0,20159 +101573,0,0,0,120000,10000,1141,24353,0,19992 +101574,0,1,0,-1,-1,0,21365,0,18803 +101575,0,0,0,-1,-1,0,22990,0,18583 +101576,0,0,-1,1000,-1,0,24377,0,19708 +101577,0,1,0,-1,-1,0,9345,0,19964 +101578,1,1,0,-1,-1,0,21627,0,19964 +101579,0,0,-1,1000,-1,0,24325,0,19974 +101580,0,0,0,0,3000,330,23248,0,18795 +101581,0,1,0,-1,-1,0,23990,0,20048 +101582,0,0,0,0,3000,330,24576,0,20221 +101583,0,0,-1,0,1000,11,24411,0,20222 +101584,0,1,0,-1,-1,0,21618,0,20056 +101585,0,0,0,1500,-1,0,23430,0,18967 +101586,0,0,-1,-1,-1,0,483,0,19331 +101587,0,0,-1,-1,-1,0,483,0,19332 +101588,0,0,-1,-1,-1,0,483,0,19333 +101589,0,0,0,120000,10000,1141,23721,0,19336 +101590,0,1,0,-1,-1,0,21440,0,19361 +101591,0,1,0,-1,-1,0,17493,0,19379 +101592,1,1,0,-1,-1,0,23729,0,19379 +101593,0,0,0,1800000,1800000,1051,22999,0,18587 +101594,0,0,0,-1,-1,0,23058,0,18627 +101595,0,1,0,-1,-1,0,14254,0,19929 +101596,1,1,0,-1,-1,0,23727,0,19929 +101597,0,0,0,0,3000,330,23250,0,18796 +101598,0,1,0,-1,-1,0,21636,0,18800 +101599,1,1,0,-1,-1,0,23213,0,18800 +101600,0,0,0,0,1800000,1031,23041,0,18801 +101601,1,1,0,-1,-1,0,23236,0,18801 +101602,0,0,-1,-1,-1,0,20396,0,16366 +101603,0,1,0,-1,-1,0,18384,0,16491 +101604,0,1,0,-1,-1,0,9417,0,16492 +101605,0,1,0,-1,-1,0,17371,0,18682 +101606,0,0,0,-1,-1,0,23678,0,19261 +101607,0,0,0,-1,-1,0,23678,0,19262 +101608,0,0,0,-1,-1,0,23678,0,19263 +101609,0,1,0,-1,-1,0,9417,0,19603 +101610,0,1,0,-1,-1,0,14803,0,20137 +101611,1,1,0,-1,-1,0,7597,0,20137 +101612,0,1,0,-1,-1,0,15465,0,20138 +101613,1,1,0,-1,-1,0,21607,0,20138 +101614,0,1,0,-1,-1,0,9336,0,20060 +101615,0,1,0,-1,-1,0,9417,0,20061 +101616,1,1,0,-1,-1,0,21618,0,20061 +101617,0,0,-1,0,1000,11,24411,0,20062 +101618,0,0,-1,0,1000,11,24409,0,20063 +101619,0,1,0,-1,-1,0,18052,0,18814 +101620,0,1,0,-1,-1,0,15806,0,20068 +101621,0,1,0,-1,-1,0,18382,0,20069 +101622,1,1,0,-1,-1,0,18057,0,20069 +101623,0,1,0,-1,-1,0,14798,0,20070 +101624,1,1,0,-1,-1,0,18384,0,20070 +101625,0,0,0,180000,180000,1155,23991,0,20071 +101626,0,1,0,-1,-1,0,15806,0,20073 +101627,0,0,-1,0,1000,11,5007,0,20074 +101628,0,0,-1,-1,-1,0,483,0,20075 +101629,0,0,-5,1500,-1,0,24719,0,20399 +101630,0,0,0,360000,60000,1141,24427,0,20130 +101631,0,0,-1,-1,-1,0,13497,0,10998 +101632,0,0,-1,-1,-1,0,24282,0,19818 +101633,0,1,0,-1,-1,0,18384,0,20133 +101634,1,1,0,-1,-1,0,7597,0,20133 +101635,2,1,0,-1,-1,0,23727,0,20133 +101636,0,1,0,-1,-1,0,18382,0,20134 +101637,1,1,0,-1,-1,0,7597,0,20134 +101638,0,1,0,-1,-1,0,23727,0,20033 +101639,1,1,0,-1,-1,0,14054,0,20033 +101640,0,0,0,180000,10000,1141,15712,0,11905 +101641,0,0,0,0,0,0,16872,0,12789 +101642,0,1,0,-1,-1,0,15464,0,13018 +101643,0,1,0,-1,-1,0,18382,0,19401 +101644,1,1,0,-1,-1,0,23727,0,19401 +101645,0,0,0,0,3000,330,23252,0,18798 +101646,0,1,0,-1,-1,0,7680,0,19592 +101647,0,1,0,-1,-1,0,23516,0,19321 +101648,0,1,0,-1,-1,0,23674,0,19226 +101649,0,1,0,-1,-1,0,15464,0,19687 +101650,0,1,0,-1,-1,0,18052,0,19828 +101651,1,1,0,-1,-1,0,18384,0,19828 +101652,0,0,-1,0,1000,59,11007,0,19222 +101653,0,0,-1,-1,-1,0,17048,0,12848 +101654,0,1,0,-1,-1,0,23990,0,20160 +101655,1,1,0,-1,-1,0,9415,0,20160 +101656,0,1,0,-1,-1,0,23990,0,20161 +101657,1,1,0,-1,-1,0,9398,0,20161 +101658,0,1,0,-1,-1,0,23990,0,20162 +101659,1,1,0,-1,-1,0,9397,0,20162 +101660,0,0,0,180000,0,0,24268,0,19930 +101661,0,0,-1,-1,-1,0,24264,0,19931 +101662,0,0,-1,0,3000,79,24382,0,20079 +101663,0,0,-1,-1,-1,0,483,0,20013 +101664,0,1,0,-1,-1,0,18050,0,19315 +101665,0,1,0,-1,-1,0,23990,0,20199 +101666,0,1,0,-1,-1,0,23990,0,20200 +101667,0,1,0,-1,-1,0,13665,0,19351 +101669,0,2,0,-1,-1,0,21140,0,19353 +101670,0,0,-1,0,1000,59,23698,0,19318 +101671,0,1,0,-1,-1,0,21626,0,19920 +101672,0,1,0,-1,-1,0,7597,0,19325 +101673,1,1,0,-1,-1,0,15464,0,19325 +101674,2,1,0,-1,-1,0,9329,0,19325 +101675,0,1,0,-1,-1,0,14712,0,16156 +101676,0,0,-1,0,1000,11,24005,0,19696 +101677,0,1,0,-1,-1,0,23990,0,20154 +101678,0,1,0,-1,-1,0,23990,0,20155 +101679,0,0,-1,-1,-1,0,24164,0,19787 +101680,0,1,0,-1,-1,0,15808,0,19582 +101681,0,1,0,-1,-1,0,9343,0,19604 +101682,0,1,0,-1,-1,0,24433,0,19613 +101683,0,1,0,-1,-1,0,7597,0,20089 +101684,1,1,0,-1,-1,0,9139,0,20089 +101685,0,1,0,-1,-1,0,7597,0,20124 +101686,0,1,0,3600000,600000,0,7598,0,19690 +101687,0,1,0,-1,-1,0,23990,0,20201 +101688,0,1,0,-1,-1,0,7597,0,20205 +101689,0,1,0,-1,-1,0,23990,0,20208 +101690,0,0,-1,-1,-1,0,483,0,19326 +101691,0,1,0,-1,-1,0,9406,0,19528 +101692,0,1,0,-1,-1,0,15464,0,19907 +101693,0,0,-1,0,0,0,22096,0,17889 +101694,0,0,0,-1,-1,0,23680,0,19283 +101695,0,1,0,-1,-1,0,7597,0,20135 +101696,1,1,0,-1,-1,0,15464,0,20135 +101697,0,0,-1,-1,-1,0,24194,0,19850 +101698,0,0,-1,-1,-1,0,24195,0,19851 +101699,0,1,0,-1,-1,0,9336,0,19853 +101700,0,0,-1,0,1000,150,24413,0,20237 +101701,0,0,-1,0,1000,150,24412,0,20244 +101702,0,0,-1,0,1000,11,24707,0,20388 +101703,0,0,-1,0,1000,11,24707,0,20389 +101704,0,0,-1,-1,-1,0,483,0,5162 +101705,0,1,0,-1,-1,0,7597,0,13962 +101706,1,1,0,-1,-1,0,13669,0,13962 +101707,0,0,-1,0,3000,79,24383,0,20081 +101708,0,1,0,-1,-1,0,18035,0,19890 +101709,1,1,0,-1,-1,0,18384,0,19890 +101710,0,1,0,-1,-1,0,9346,0,19891 +101711,1,1,0,-1,-1,0,23727,0,19891 +101712,0,1,0,-1,-1,0,23727,0,19893 +101713,1,1,0,-1,-1,0,9416,0,19893 +101714,0,0,-1,-1,-1,0,483,0,19769 +101715,0,0,-1,-1,-1,0,483,0,19770 +101716,1,1,0,-1,-1,0,15465,0,20136 +101717,0,1,0,-1,-1,0,15810,0,19900 +101718,1,1,0,-1,-1,0,7597,0,19900 +101719,0,1,0,-1,-1,0,24595,0,19903 +101720,1,1,0,-1,-1,0,18379,0,19903 +101721,0,1,0,-1,-1,0,13384,0,19577 +101723,2,1,0,-1,-1,0,24428,0,19577 +101724,0,1,0,-1,-1,0,24432,0,19621 +101725,0,1,0,-1,-1,0,7597,0,19887 +101726,0,1,0,-1,-1,0,15812,0,14638 +101727,0,1,0,-1,-1,0,20959,0,18532 +101728,0,1,0,-1,-1,0,18384,0,18534 +101729,1,1,0,-1,-1,0,14047,0,18534 +101730,0,0,-1,0,0,0,22105,0,17898 +101731,0,0,0,0,3000,330,22721,0,18246 +101733,0,1,0,-1,-1,0,23688,0,19288 +101734,0,1,0,-1,-1,0,23990,0,20156 +101735,0,1,0,-1,-1,0,14254,0,19397 +101736,1,1,0,-1,-1,0,21365,0,19397 +101737,0,1,0,-1,-1,0,14056,0,19398 +101738,0,0,-1,-1,-1,0,483,0,19203 +101739,0,0,-1,-1,-1,0,483,0,20040 +101740,0,0,-1,0,1000,11,24005,0,19995 +101741,0,0,-1,0,1000,11,24005,0,19996 +101742,0,2,0,-1,-1,0,13318,0,13016 +101743,0,0,-1,120000,120000,79,24417,0,20080 +101744,0,1,0,-1,-1,0,9416,0,20164 +101745,0,1,0,-1,-1,0,18384,0,20165 +101746,1,1,0,-1,-1,0,9415,0,20165 +101747,0,1,0,-1,-1,0,9343,0,20166 +101748,0,1,0,-1,-1,0,23990,0,20157 +101749,0,1,0,-1,-1,0,9417,0,18747 +101750,1,1,0,-1,-1,0,14049,0,18747 +101751,2,1,0,-1,-1,0,9405,0,18747 +101752,0,1,0,-1,-1,0,9294,0,18762 +101753,0,1,0,-1,-1,0,15696,0,19312 +101754,1,1,0,-1,-1,0,21625,0,19312 +101755,0,1,0,-1,-1,0,23727,0,19684 +101756,1,1,0,-1,-1,0,14254,0,19684 +101757,0,0,-1,-1,-1,0,483,0,20000 +101758,0,0,-1,-1,-1,0,483,0,20001 +101759,0,0,-1,0,120000,4,24360,0,20002 +101760,0,2,0,-1,-1,0,23719,0,19334 +101761,0,0,-1,-1,-1,0,24165,0,19788 +101763,0,0,0,180000,20000,1141,24499,0,19956 +101764,0,1,0,-1,-1,0,9343,0,19846 +101765,0,0,-1,-1,-1,0,24420,0,20078 +101766,0,1,0,-1,-1,0,15464,0,19685 +101767,0,0,0,1000,-1,0,5166,0,5059 +101768,0,0,-1,-1,-1,0,483,0,10313 +101769,0,0,-1,-1,-1,0,483,0,10321 +101770,0,1,0,-1,-1,0,7597,0,16542 +101771,0,1,0,-1,-1,0,13669,0,18861 +101772,0,0,-1,0,1000,150,23567,0,19066 +101773,0,0,-1,0,180000,24,5917,0,18209 +101774,0,0,0,0,3000,330,23243,0,18790 +101775,0,0,-1,-1,-1,0,24167,0,19789 +101777,1,2,0,-1,-1,0,24254,0,19908 +101778,0,1,0,-1,-1,0,18033,0,19909 +101779,0,2,0,-1,-1,0,18205,0,19910 +101780,0,0,-1,-1,-1,0,19138,0,15710 +101781,0,1,0,-1,-1,0,23728,0,19360 +101782,0,1,0,-1,-1,0,15829,0,19364 +101783,0,1,0,-1,-1,0,7597,0,19365 +101784,0,0,0,5000,0,0,24347,0,19979 +101785,0,0,-1,0,1000,150,24414,0,20243 +101786,0,0,-1,-1,-1,0,24815,0,20464 +101787,0,1,0,-1,-1,0,9316,0,19892 +101788,0,0,-1,-1,-1,0,483,0,19771 +101789,0,0,-1,-1,-1,0,483,0,19773 +101790,0,0,-1,1000,-1,0,24377,0,19714 +101791,0,1,0,-1,-1,0,9332,0,10784 +101792,0,0,0,0,3000,330,23247,0,18793 +101793,0,0,0,0,3000,330,23249,0,18794 +101794,0,0,-1,-1,-1,0,483,0,1574 +101795,0,0,-1,-1,-1,0,483,0,15780 +101796,0,1,0,-1,-1,0,23686,0,19289 +101797,0,1,0,-1,-1,0,9315,0,19530 +101798,0,1,0,-1,-1,0,9408,0,19531 +101799,0,1,0,-1,-1,0,9406,0,19532 +101800,0,1,0,-1,-1,0,7680,0,19533 +101801,0,0,-1,0,120000,4,440,0,858 +101802,0,0,-1,-1,-1,0,483,0,8762 +101803,0,0,-1,-1,-1,0,483,0,8869 +101804,0,0,-1,-1,-1,0,483,0,8881 +101805,0,1,0,-1,-1,0,7597,0,20041 +101806,0,1,0,-1,-1,0,14027,0,19084 +101807,0,1,0,-1,-1,0,9343,0,19085 +101808,0,0,-1,-1,-1,0,3366,0,18268 +101809,0,0,-1,0,3000,79,22807,0,18294 +101810,0,1,0,-1,-1,0,23729,0,19844 +101811,1,1,0,-1,-1,0,9345,0,19844 +101812,0,1,0,-1,-1,0,15464,0,19906 +101813,0,1,0,-1,-1,0,18378,0,17743 +101814,1,1,0,-1,-1,0,20969,0,17743 +101815,0,1,0,-1,-1,0,23729,0,19682 +101816,1,1,0,-1,-1,0,14054,0,19682 +101817,0,1,0,-1,-1,0,23727,0,19683 +101818,1,1,0,-1,-1,0,18054,0,19683 +101819,0,1,0,-1,-1,0,15464,0,19925 +101820,0,1,0,-1,-1,0,9315,0,19826 +101821,0,0,0,120000,0,0,24574,0,19948 +101822,0,0,-1,2000,-1,0,24227,0,19860 +101823,0,0,-1,0,1000,11,24005,0,19994 +101824,0,2,0,-1,-1,0,23605,0,19169 +101825,0,2,0,-1,-1,0,18211,0,19170 +101826,0,1,0,-1,-1,0,17900,0,19438 +101827,1,1,0,-1,-1,0,23727,0,19438 +101828,0,1,0,-1,-1,0,9306,0,18307 +101829,0,1,0,-1,-1,0,14803,0,18466 +101830,0,1,0,-1,-1,0,15464,0,20003 +101831,0,0,-1,-1,-1,0,483,0,18239 +101832,0,0,-1,-1,-1,0,483,0,16250 +101833,0,0,0,14400000,-1,0,23442,0,18984 +101834,0,1,0,-1,-1,0,22778,0,16548 +101835,1,1,0,-1,-1,0,7597,0,16548 +101836,0,0,0,-1,-1,0,23678,0,19258 +101837,0,0,-1,0,1000,11,23692,0,19301 +101838,0,0,-1,-1,-1,0,483,0,19207 +101839,0,0,-1,-1,-1,0,483,0,19220 +101840,0,0,0,-1,-1,0,23677,0,19234 +101841,0,1,0,-1,-1,0,23689,0,19287 +101842,0,1,0,-1,-1,0,7597,0,19984 +101843,1,1,0,-1,-1,0,14089,0,19984 +101844,0,0,0,120000,20000,1141,24352,0,19991 +101845,0,1,0,-1,-1,0,15465,0,19694 +101846,0,1,0,-1,-1,0,21618,0,19123 +101847,0,1,0,-1,-1,0,7516,0,19124 +101848,0,0,-1,-1,-1,0,483,0,20253 +101849,0,1,0,-1,-1,0,7597,0,16847 +101850,0,0,-1,-1,-1,0,483,0,10728 +101851,0,0,0,-1,-1,0,23678,0,19260 +101852,0,1,0,-1,-1,0,14047,0,19926 +101853,0,1,0,-1,-1,0,15806,0,19583 +101854,0,1,0,-1,-1,0,15696,0,19382 +101855,0,1,0,-1,-1,0,9346,0,19094 +101856,0,2,0,-1,-1,0,18398,0,19099 +101857,0,0,-1,1000,-1,0,23008,0,18594 +101858,0,0,0,0,1800000,1160,23042,0,18609 +101859,1,1,0,-1,-1,0,21364,0,18609 +101860,2,1,0,-1,-1,0,23265,0,18609 +101861,0,0,-1,-1,-1,0,483,0,8944 +101862,0,0,0,-1,-1,0,468,0,901 +101863,0,0,-1,0,1000,150,23568,0,19067 +101864,0,0,0,-1,-1,0,18559,0,14523 +101865,0,0,0,1500,-1,0,23432,0,18965 +101866,0,0,0,0,3000,330,23242,0,18789 +101867,0,1,0,-1,-1,0,15810,0,19380 +101868,1,1,0,-1,-1,0,7597,0,19380 +101869,0,1,0,-1,-1,0,15810,0,19381 +101870,1,1,0,-1,-1,0,15465,0,19381 +101871,0,0,0,180000,0,0,8312,0,20084 +101872,0,0,-1,-1,-1,0,483,0,19327 +101873,0,0,-1,-1,-1,0,483,0,19329 +101874,0,0,-1,-1,-1,0,23514,0,19036 +101875,0,0,-1,0,1000,11,433,0,19223 +101876,0,0,-1,0,1000,150,23696,0,19307 +101877,0,0,0,-1,-1,0,20531,0,16653 +101878,0,1,0,-1,-1,0,14799,0,16795 +101879,1,1,0,-1,-1,0,23727,0,16795 +101880,0,0,0,300000,300000,1182,42292,0,18851 +101881,0,1,0,-1,-1,0,23701,0,19290 +101882,0,1,0,-1,-1,0,9417,0,17573 +101883,0,2,0,-1,-1,0,21159,0,17193 +101884,0,0,-1,-1,-1,0,483,0,13942 +101885,0,0,-1,-1,-1,0,483,0,18658 +101886,0,1,0,-1,-1,0,23929,0,18874 +101887,0,1,0,-1,-1,0,18035,0,18875 +101888,1,1,0,-1,-1,0,21365,0,18875 +101889,0,1,0,-1,-1,0,18369,0,14620 +101890,1,1,0,-1,-1,0,21362,0,14620 +101891,0,1,0,-1,-1,0,14052,0,14637 +101892,0,0,-1,0,1000,11,1127,0,18632 +101893,0,0,-1,0,1000,11,434,0,18633 +101894,0,0,0,-1,-1,0,23136,0,18663 +101895,0,1,0,-1,-1,0,13675,0,19912 +101896,1,1,0,-1,-1,0,13669,0,19912 +101897,0,1,0,-1,-1,0,7518,0,19913 +101898,0,1,0,-1,-1,0,9397,0,19598 +101899,0,1,0,-1,-1,0,9415,0,19600 +101900,0,1,0,-1,-1,0,21348,0,19302 +101901,0,1,0,-1,-1,0,18379,0,19303 +101902,0,0,-1,0,1000,11,434,0,19304 +101903,0,0,-1,0,1000,11,435,0,19305 +101904,0,0,0,-1,-1,0,23680,0,19276 +101905,0,0,0,-1,-1,0,23680,0,19278 +101906,0,0,0,-1,-1,0,23680,0,19281 +101907,0,0,0,-1,-1,0,23680,0,19282 +101908,0,1,0,-1,-1,0,7597,0,18876 +101909,0,1,0,-1,-1,0,7597,0,18877 +101910,0,1,0,-1,-1,0,13383,0,18879 +101911,0,1,0,-1,-1,0,7598,0,19998 +101912,1,1,0,-1,-1,0,23217,0,19998 +101913,0,0,0,-1,-1,0,23679,0,19275 +101914,0,1,0,-1,-1,0,7597,0,18843 +101915,1,1,0,-1,-1,0,9335,0,18843 +101916,0,0,-1,-1,-1,0,23645,0,19183 +101917,0,0,-1,-1,-1,0,483,0,19208 +101918,0,0,-1,-1,-1,0,483,0,19209 +101919,0,0,-1,-1,-1,0,483,0,19210 +101920,0,1,0,-1,-1,0,18020,0,19407 +101921,0,1,0,-1,-1,0,7597,0,18805 +101922,1,1,0,-1,-1,0,9331,0,18805 +101923,0,0,0,6000,-1,0,15958,0,12287 +101924,0,0,-1,0,1000,11,18071,0,19063 +101925,0,0,-1,-1,-1,0,483,0,19328 +101926,0,1,0,-1,-1,0,7597,0,18844 +101927,1,1,0,-1,-1,0,9335,0,18844 +101928,0,0,0,300000,300000,1182,42292,0,18845 +101929,0,0,0,300000,300000,1182,42292,0,18846 +101930,0,0,0,300000,300000,1182,42292,0,18850 +101931,1,1,0,-1,-1,0,14803,0,20142 +101932,0,1,0,0,-1,0,7597,0,20143 +101933,1,1,0,-1,-1,0,21595,0,20143 +101934,0,1,0,0,0,0,7597,0,20144 +101935,1,1,0,-1,-1,0,21595,0,20144 +101936,0,1,0,-1,-1,0,7597,0,20145 +101937,1,1,0,-1,-1,0,15464,0,20145 +101938,0,1,0,-1,-1,0,7597,0,20146 +101939,0,1,0,-1,-1,0,23689,0,20147 +101940,1,1,0,-1,-1,0,23686,0,20147 +101941,0,0,0,0,3000,330,24252,0,19902 +101942,0,1,0,-1,-1,0,14254,0,17562 +101943,0,1,0,-1,-1,0,7517,0,18806 +101944,0,1,0,-1,-1,0,18384,0,18807 +101945,1,1,0,-1,-1,0,9343,0,18807 +101946,0,0,0,1500,-1,0,23431,0,18966 +101947,0,1,0,-1,-1,0,21364,0,18308 +101948,0,2,0,-1,-1,0,20883,0,17054 +101949,0,1,0,-1,-1,0,15464,0,16562 +101950,0,0,-1,-1,-1,0,483,0,4349 +101951,0,0,-1,-1,-1,0,483,0,21299 +101952,0,1,0,-1,-1,0,7597,0,18871 +101953,0,2,0,-1,-1,0,21153,0,18882 +101954,1,1,0,-1,-1,0,7597,0,18882 +101955,0,0,0,60000,-1,0,23359,0,18903 +101956,0,1,0,-1,-1,0,7597,0,18238 +101958,0,1,0,-1,-1,0,9315,0,18389 +101959,0,1,0,-1,-1,0,23929,0,18873 +101960,0,1,0,-1,-1,0,15465,0,13963 +101961,0,1,0,-1,-1,0,9318,0,13969 +101962,0,1,0,-1,-1,0,14027,0,18047 +101963,0,0,0,300000,0,0,23131,0,18634 +101964,0,0,-1,0,1000,11,24384,0,20031 +101965,0,1,0,-1,-1,0,15714,0,20032 +101966,0,0,-1,0,1000,150,24414,0,20066 +101967,0,1,0,-1,-1,0,7598,0,19323 +101968,1,2,0,-1,-1,0,23454,0,19323 +101969,0,1,0,-1,-1,0,23433,0,18968 +101970,0,1,0,-1,-1,0,7517,0,19574 +101971,0,0,-1,-1,-1,0,483,0,20548 +101972,0,1,-1,-1,-1,0,24748,0,20422 +101973,0,1,0,-1,-1,0,9395,0,20426 +101974,1,1,0,-1,-1,0,21360,0,20426 +101975,0,0,-1,-1,-1,0,11654,0,11086 +101976,1,2,0,-1,-1,0,11657,0,11086 +101977,0,0,-1,-1,-1,0,11759,0,9437 +101978,0,1,0,0,-1,0,13959,0,9458 +101979,0,0,-1,-1,-1,0,11792,0,9472 +101980,0,0,-1,-1,-1,0,23179,0,18802 +101981,0,1,0,-1,-1,0,7597,0,18848 +101982,1,1,0,-1,-1,0,9335,0,18848 +101983,0,1,0,-1,-1,0,21440,0,18836 +101984,0,0,-1,-1,-1,0,483,0,19205 +101985,0,0,-1,-1,-1,0,483,0,19206 +101986,0,0,-1,-1,-1,0,483,0,12725 +101987,0,2,0,-1,-1,0,16871,0,12769 +101988,0,0,-1,-1,-1,0,24281,0,19814 +101989,0,0,-1,0,1000,150,24413,0,20065 +101990,0,1,0,-1,-1,0,15464,0,16569 +101991,0,1,0,-1,-1,0,9417,0,19845 +101992,0,1,0,-1,-1,0,9417,0,19523 +101993,1,1,0,-1,-1,0,21362,0,19523 +101994,0,0,-1,0,1000,59,25804,0,21151 +101995,0,0,-1,0,1000,11,25693,0,21153 +101996,0,1,0,-1,-1,0,9343,0,20625 +101997,0,0,-1,-1,-1,0,24280,0,19816 +101998,0,1,0,-1,-1,0,9415,0,19524 +101999,1,1,0,-1,-1,0,21625,0,19524 +102000,0,0,-1,1000,-1,0,24377,0,19712 +102001,0,1,0,-1,-1,0,23562,0,19862 +102002,1,1,0,-1,-1,0,13385,0,19862 +102003,2,1,0,-1,-1,0,13675,0,19862 +102004,0,0,0,-1,-1,0,23677,0,19236 +102005,0,0,-1,-1,-1,0,483,0,11151 +102006,0,0,-1,-1,-1,0,483,0,2889 +102007,0,0,-1,-1,-1,0,20391,0,16361 +102008,0,1,0,-1,-1,0,18384,0,18842 +102009,1,1,0,-1,-1,0,18056,0,18842 +102010,0,1,0,-1,-1,0,7597,0,19896 +102011,0,0,-1,0,1000,11,23542,0,19062 +102012,0,0,0,300000,300000,1182,42292,0,18834 +102013,0,1,0,-1,-1,0,9415,0,19115 +102014,0,1,0,-1,-1,0,9408,0,19116 +102015,0,0,-1,-1,-1,0,483,0,14498 +102016,0,0,-1,-1,-1,0,483,0,18653 +102017,0,0,-1,-1,-1,0,483,0,18655 +102018,0,0,-1,-1,-1,0,483,0,18656 +102019,0,0,-1,-1,-1,0,483,0,16248 +102020,0,0,-1,-1,-1,0,20314,0,16318 +102021,0,1,0,-1,-1,0,14799,0,19393 +102022,0,1,0,-1,-1,0,13669,0,19394 +102023,0,1,0,-1,-1,0,23729,0,19999 +102024,1,1,0,-1,-1,0,18384,0,19999 +102025,2,1,0,-1,-1,0,21365,0,19999 +102026,0,1,0,-1,-1,0,9415,0,19601 +102027,1,1,0,-1,-1,0,24429,0,19601 +102028,0,1,0,-1,-1,0,9417,0,19602 +102030,1,0,0,900000,0,0,23506,0,19024 +102031,0,0,0,300000,300000,1182,42292,0,18853 +102032,0,1,0,-1,-1,0,21440,0,18855 +102033,0,1,0,-1,-1,0,9346,0,18350 +102034,0,0,-1,-1,-1,0,483,0,18518 +102035,0,0,-1,0,1000,150,24412,0,20067 +102036,0,0,-1,-1,-1,0,483,0,15742 +102037,0,0,-1,-1,-1,0,483,0,15743 +102038,0,0,-1,-1,-1,0,483,0,14501 +102039,0,0,-1,-1,-1,0,483,0,14511 +102040,0,1,0,-1,-1,0,21607,0,20149 +102041,1,1,0,-1,-1,0,13665,0,20149 +102042,0,0,0,120000,0,0,24354,0,19990 +102043,0,0,-1,-1,-1,0,483,0,19204 +102044,0,1,0,-1,-1,0,18032,0,18870 +102045,0,1,0,-1,-1,0,21640,0,18872 +102046,0,1,0,-1,-1,0,9330,0,19095 +102047,0,0,-1,0,1000,59,1133,0,10841 +102048,0,1,0,-1,-1,0,7597,0,16505 +102049,1,2,0,-1,-1,0,21162,0,18881 +102050,2,1,0,-1,-1,0,21142,0,18881 +102051,0,1,0,-1,-1,0,18079,0,10697 +102052,1,0,0,0,0,0,12938,0,10697 +102053,0,0,0,1500,-1,0,17707,0,13583 +102054,0,1,0,-1,-1,0,18369,0,12952 +102055,0,0,0,-1,-1,0,23679,0,19269 +102056,0,0,-1,-1,-1,0,483,0,14477 +102057,0,0,-1,-1,-1,0,483,0,14485 +102058,0,0,0,-1,-1,330,23509,0,19029 +102059,0,0,-1,0,120000,4,6612,0,5631 +102060,0,0,0,300000,300000,1182,42292,0,18856 +102061,1,2,0,-1,-1,0,21162,0,19158 +102062,2,1,0,-1,-1,0,21142,0,19158 +102063,0,0,0,300000,-1,0,23725,0,19341 +102064,0,0,0,300000,20000,1141,23726,0,19342 +102065,0,0,0,300000,20000,1141,23733,0,19343 +102066,0,0,0,300000,-1,0,23780,0,19345 +102067,0,1,0,-1,-1,0,23730,0,19347 +102068,1,1,0,-1,-1,0,21618,0,19347 +102069,0,1,0,-1,-1,0,18030,0,19348 +102070,0,0,-1,-1,-1,0,483,0,2700 +102071,0,0,-1,-1,-1,0,483,0,18652 +102072,0,1,0,-1,-1,0,21362,0,18726 +102073,0,1,0,-1,-1,0,14027,0,19083 +102074,0,1,0,-1,-1,0,9413,0,18728 +102075,0,1,0,-1,-1,0,21363,0,18730 +102076,0,0,0,-1,-1,0,23061,0,18629 +102077,0,1,0,-1,-1,0,13665,0,19168 +102078,0,1,0,-1,-1,0,18049,0,13253 +102079,0,0,-1,-1,-1,0,483,0,13476 +102080,0,0,0,-1,-1,0,23232,0,18781 +102081,0,1,0,-1,-1,0,21440,0,18835 +102082,0,0,0,300000,300000,1182,42292,0,18854 +102083,0,1,0,-1,-1,0,7597,0,18838 +102084,1,1,0,-1,-1,0,9335,0,18838 +102085,0,1,0,-1,-1,0,7597,0,18840 +102086,1,1,0,-1,-1,0,9335,0,18840 +102087,0,0,-1,-1,-1,0,20384,0,16354 +102088,0,1,0,-1,-1,0,14027,0,19350 +102089,0,1,0,-1,-1,0,23440,0,18982 +102090,0,1,0,-1,-1,0,7597,0,18865 +102091,1,1,0,-1,-1,0,9335,0,18865 +102092,0,0,0,600000,120000,1153,23035,0,18607 +102093,0,0,-1,-1,-1,0,483,0,18731 +102094,0,0,-1,1000,-1,0,6802,0,5851 +102095,0,1,0,-1,-1,0,13669,0,18377 +102096,0,1,0,-1,-1,0,23594,0,19133 +102097,0,1,0,-1,-1,0,18384,0,19134 +102098,1,1,0,-1,-1,0,9343,0,19134 +102099,0,1,0,-1,-1,0,15715,0,19136 +102100,1,1,0,-1,-1,0,18384,0,19136 +102101,0,0,-1,-1,-1,0,483,0,13501 +102102,0,0,-1,-1,-1,0,483,0,3142 +102103,0,1,0,-1,-1,0,18041,0,19395 +102104,1,1,0,-1,-1,0,21365,0,19395 +102105,0,1,0,-1,-1,0,7597,0,20150 +102106,1,1,0,-1,-1,0,15806,0,20150 +102107,0,1,0,-1,-1,0,7597,0,20151 +102108,1,1,0,-1,-1,0,9331,0,20151 +102109,0,1,0,-1,-1,0,14027,0,20152 +102110,0,1,0,-1,-1,0,7696,0,10010 +102111,0,0,-1,-1,-1,0,483,0,18949 +102112,0,1,0,-1,-1,0,23409,0,18951 +102113,0,1,0,-1,-1,0,13385,0,18383 +102114,0,1,0,-1,-1,0,17747,0,18808 +102115,1,1,0,-1,-1,0,9415,0,18808 +102116,0,1,0,-1,-1,0,18039,0,18810 +102117,0,0,0,3600000,0,0,23126,0,18660 +102118,0,1,0,-1,-1,0,7597,0,18827 +102119,1,1,0,-1,-1,0,9335,0,18827 +102120,0,1,0,-1,-1,0,17997,0,18829 +102121,0,1,0,-1,-1,0,21440,0,18833 +102122,0,0,-1,0,1000,11,23540,0,19060 +102123,0,1,0,-1,-1,0,21347,0,18535 +102124,0,1,0,-1,-1,0,7597,0,19137 +102125,1,1,0,-1,-1,0,15464,0,19137 +102126,0,0,0,300000,300000,1182,42292,0,18863 +102127,0,1,0,-1,-1,0,18013,0,18809 +102128,1,1,0,-1,-1,0,21599,0,18809 +102129,0,1,0,-1,-1,0,15714,0,19426 +102130,0,1,0,-1,-1,0,18009,0,18735 +102131,0,1,0,-1,-1,0,9327,0,19989 +102132,0,1,0,-1,-1,0,7597,0,18823 +102134,0,1,0,-1,-1,0,13959,0,18825 +102135,0,0,-1,-1,-1,0,483,0,4159 +102136,0,0,-1,-1,-1,0,483,0,4230 +102137,0,0,-1,-1,-1,0,483,0,19442 +102138,0,0,-1,-1,-1,0,483,0,19444 +102139,0,1,0,-1,-1,0,13665,0,18537 +102140,1,1,0,-1,-1,0,9332,0,18537 +102141,0,1,0,-1,-1,0,7598,0,18538 +102142,0,0,-1,-1,-1,0,22949,0,18539 +102143,0,1,0,-1,-1,0,21440,0,18837 +102144,0,0,0,300000,300000,1182,42292,0,18859 +102145,0,0,-1,-1,-1,0,483,0,19202 +102146,0,0,-1,-1,-1,0,483,0,19211 +102147,0,0,-1,-1,-1,0,483,0,19212 +102148,0,0,0,0,3000,330,23338,0,18902 +102149,0,1,0,-1,-1,0,13959,0,18826 +102150,0,1,0,-1,-1,0,21475,0,18303 +102151,0,1,0,-1,-1,0,9346,0,19090 +102152,0,1,0,-1,-1,0,21362,0,19098 +102153,0,2,0,-1,-1,0,23592,0,19100 +102154,0,0,0,0,3000,330,23238,0,18786 +102155,0,0,0,300000,300000,1182,42292,0,18857 +102156,0,1,0,-1,-1,0,14049,0,18541 +102157,1,1,0,-1,-1,0,15464,0,18541 +102158,0,1,0,-1,-1,0,13665,0,18542 +102159,0,1,0,-1,-1,0,18384,0,18543 +102160,0,1,0,-1,-1,0,7597,0,16451 +102161,1,1,0,-1,-1,0,9346,0,16451 +102162,0,0,-1,0,1000,59,432,0,19299 +102163,0,0,-1,0,1000,59,1135,0,19300 +102164,0,0,0,-1,-1,0,23151,0,18659 +102165,0,0,-1,-1,-1,0,483,0,17720 +102166,0,0,0,-1,-1,0,21957,0,17765 +102167,0,0,-1,-1,-1,0,483,0,6328 +102168,0,1,0,-1,-1,0,9344,0,19101 +102169,0,1,0,-1,-1,0,9344,0,19102 +102170,0,1,0,-1,-1,0,23727,0,19905 +102171,1,1,0,-1,-1,0,21618,0,19905 +102172,0,0,-1,1000,-1,0,24377,0,19713 +102173,0,1,0,-1,-1,0,7517,0,19575 +102174,0,1,0,-1,-1,0,29414,0,18714 +102175,0,1,0,-1,-1,0,13385,0,18384 +102176,0,1,0,-1,-1,0,14054,0,18385 +102177,0,1,0,-1,-1,0,21626,0,18386 +102178,1,1,0,-1,-1,0,18032,0,18386 +102179,0,1,0,-1,-1,0,18384,0,18387 +102180,0,0,-1,0,1000,11,18233,0,13931 +102181,0,0,0,1800000,0,0,19638,0,15867 +102182,0,0,-1,0,1000,59,24355,0,19997 +102183,0,0,0,300000,300000,1182,42292,0,18852 +102184,0,0,0,14400000,-1,0,23453,0,18986 +102185,0,0,0,300000,20000,1141,23723,0,19339 +102186,0,0,-1,0,120000,4,440,0,2462 +102187,0,0,-1,1000,-1,0,24377,0,19715 +102188,0,1,0,-1,-1,0,9406,0,19593 +102189,0,0,0,0,180000,491,16349,0,12344 +102190,1,1,0,-1,-1,0,16372,0,12344 +102191,0,0,-1,-1,-1,0,20395,0,16365 +102192,0,1,0,-1,-1,0,14054,0,16475 +102193,1,1,0,-1,-1,0,7597,0,16475 +102194,0,1,0,-1,-1,0,14047,0,16952 +102195,0,0,0,-1,-1,0,20529,0,16647 +102196,0,0,-1,-1,-1,0,483,0,5788 +102197,0,1,0,-1,-1,0,15815,0,19904 +102198,1,1,0,-1,-1,0,7597,0,19904 +102199,0,0,-1,-1,-1,0,15698,0,11914 +102200,0,1,0,-1,-1,0,14829,0,19320 +102201,0,2,0,-1,-1,0,24388,0,19324 +102202,0,1,0,-1,-1,0,21619,0,19038 +102203,0,1,0,-1,-1,0,17896,0,19310 +102204,0,1,0,-1,-1,0,14055,0,19400 +102205,1,1,0,-1,-1,0,21363,0,19400 +102206,0,1,0,-1,-1,0,23727,0,19403 +102207,1,1,0,-1,-1,0,14248,0,19403 +102208,0,1,0,-1,-1,0,17829,0,19308 +102209,1,1,0,-1,-1,0,21625,0,19308 +102210,0,1,0,-1,-1,0,18014,0,19309 +102211,0,1,0,-1,-1,0,18029,0,18304 +102212,0,1,0,-1,-1,0,13665,0,18305 +102213,0,1,0,-1,-1,0,9326,0,18306 +102214,0,0,0,-1,-1,0,23233,0,18784 +102215,0,0,0,-1,-1,0,20269,0,16208 +102216,0,0,-1,-1,-1,0,483,0,16218 +102217,0,0,-1,-1,-1,0,483,0,18657 +102218,0,0,-1,-1,-1,0,22906,0,18488 +102219,0,1,-1,-1,-1,0,24748,0,20421 +102220,0,1,0,-1,-1,0,7678,0,20427 +102221,0,1,0,-1,-1,0,14054,0,21178 +102222,0,0,-1,-1,-1,0,24889,0,20531 +102223,0,0,-1,-1,-1,0,24890,0,20532 +102224,0,1,0,0,0,0,9402,0,20350 +102225,0,1,0,-1,-1,0,9336,0,20194 +102226,0,1,0,-1,-1,0,18384,0,20195 +102227,0,0,-1,0,1000,150,24413,0,20232 +102228,0,1,0,-1,-1,0,14027,0,20117 +102229,0,1,0,-1,-1,0,17891,0,20356 +102230,0,1,0,-1,-1,0,18030,0,20266 +102231,1,1,0,-1,-1,0,21364,0,20266 +102232,0,1,0,-1,-1,0,18384,0,20118 +102233,0,1,0,-1,-1,0,21618,0,20203 +102234,0,1,0,-1,-1,0,23990,0,20110 +102235,0,1,0,-1,-1,0,15464,0,19377 +102236,0,1,0,-1,-1,0,13383,0,19576 +102237,0,1,0,-1,-1,0,9397,0,19599 +102238,0,1,0,-1,-1,0,9343,0,19605 +102239,1,1,0,-1,-1,0,24430,0,19605 +102240,0,1,0,-1,-1,0,9415,0,19520 +102241,1,1,0,-1,-1,0,21625,0,19520 +102242,0,0,-1,0,1000,59,24355,0,21241 +102243,0,1,0,-1,-1,0,7597,0,21242 +102244,1,1,0,-1,-1,0,9142,0,21242 +102245,0,0,-1,-1,-1,0,483,0,21283 +102246,0,1,0,-1,-1,0,18384,0,20174 +102247,0,1,0,-1,-1,0,18378,0,19566 +102248,0,0,-1,0,1000,11,24707,0,20390 +102249,0,0,-1,-1,-1,0,25719,0,21112 +102250,0,0,-1,0,1000,59,25722,0,21114 +102251,0,0,-1,-1,-1,0,483,0,21214 +102252,0,0,-1,-1,-1,0,483,0,21219 +102253,0,1,0,-1,-1,0,14590,0,16062 +102254,0,1,0,-1,-1,0,14630,0,16134 +102255,0,1,0,-1,-1,0,18384,0,20047 +102256,1,1,0,-1,-1,0,9343,0,20047 +102257,0,1,0,-1,-1,0,17875,0,19311 +102258,0,0,-1,-1,-1,0,483,0,21284 +102259,0,0,-1,-1,-1,0,25720,0,21041 +102260,0,0,0,180000,10000,1141,24571,0,19951 +102261,0,1,0,-1,-1,0,9345,0,19848 +102262,0,0,0,180000,10000,1141,24532,0,19954 +102263,0,1,0,-1,-1,0,7597,0,20204 +102264,0,1,0,-1,-1,0,14798,0,20214 +102265,1,1,0,-1,-1,0,18384,0,20214 +102266,0,2,0,-1,-1,0,24257,0,19918 +102267,0,1,0,-1,-1,0,18384,0,19922 +102268,1,1,0,-1,-1,0,9408,0,19922 +102269,0,1,0,-1,-1,0,15714,0,19923 +102270,1,1,0,-1,-1,0,21625,0,19923 +102271,0,0,0,1500,-1,0,25162,0,20769 +102272,0,1,0,-1,-1,0,23990,0,20054 +102273,1,1,0,-1,-1,0,9417,0,20054 +102274,0,0,0,180000,180000,1155,23991,0,20072 +102275,0,1,0,-1,-1,0,7597,0,20179 +102276,0,0,-1,0,1000,11,24869,0,20516 +102277,0,1,0,-1,-1,0,9336,0,20116 +102278,0,1,0,-1,-1,0,9336,0,20175 +102279,0,0,-1,-1,-1,0,24898,0,20544 +102280,0,1,0,-1,-1,0,21624,0,20278 +102281,0,1,0,0,-1,0,13669,0,20279 +102282,0,1,0,-1,-1,0,21509,0,20504 +102283,0,1,0,0,0,0,7681,0,20505 +102285,0,0,0,180000,10000,1141,24531,0,19953 +102286,0,0,-1,0,1000,150,24412,0,20235 +102287,0,1,0,-1,-1,0,17891,0,20354 +102288,1,1,0,-1,-1,0,9307,0,20357 +102289,0,1,0,0,0,0,9404,0,20358 +102290,0,1,0,-1,-1,0,24782,0,20451 +102291,0,0,-1,0,1000,11,24800,0,20452 +102292,0,1,0,-1,-1,0,13384,0,21198 +102293,0,1,0,-1,-1,0,15464,0,21204 +102294,0,0,-1,0,1000,11,25691,0,21217 +102295,0,1,0,-1,-1,0,9417,0,19829 +102296,1,1,0,-1,-1,0,21619,0,19829 +102297,0,1,0,-1,-1,0,21619,0,19831 +102298,0,1,0,-1,-1,0,21439,0,19833 +102299,1,1,0,-1,-1,0,21362,0,19833 +102300,0,1,0,-1,-1,0,15464,0,19835 +102301,0,1,0,-1,-1,0,23727,0,20536 +102302,1,1,0,-1,-1,0,14794,0,20536 +102303,0,1,0,-1,-1,0,21618,0,20537 +102304,0,1,0,-1,-1,0,21626,0,20538 +102305,0,1,0,-1,-1,0,21625,0,20539 +102306,0,1,0,-1,-1,0,13670,0,20270 +102307,1,1,0,-1,-1,0,14803,0,20270 +102308,0,0,-1,-1,-1,0,24897,0,20543 +102309,0,0,0,1500,-1,0,24696,0,20371 +102310,0,1,0,-1,-1,0,24697,0,20372 +102311,1,1,0,-1,-1,0,13670,0,20372 +102312,0,1,0,-1,-1,0,15464,0,21201 +102313,0,1,0,-1,-1,0,15464,0,21202 +102314,0,1,0,-1,-1,0,15464,0,21203 +102315,0,0,-1,-1,-1,0,483,0,20254 +102316,0,1,0,-1,-1,0,16611,0,20148 +102317,1,1,0,-1,-1,0,15599,0,20148 +102318,0,1,0,-1,-1,0,7597,0,20257 +102319,1,1,0,-1,-1,0,18384,0,20257 +102320,2,1,0,-1,-1,0,21364,0,20257 +102321,0,1,0,-1,-1,0,7597,0,20267 +102322,0,1,0,-1,-1,0,14803,0,20271 +102323,1,1,0,-1,-1,0,7597,0,20271 +102324,0,1,0,-1,-1,0,7597,0,20276 +102325,0,1,0,-1,-1,0,9308,0,20339 +102326,0,0,-1,-1,-1,0,24895,0,20540 +102327,0,0,0,120000,20000,1141,24658,0,19950 +102328,0,0,-1,-1,-1,0,483,0,20546 +102329,0,1,0,-1,-1,0,13675,0,20549 +102330,0,0,-1,-1,-1,0,483,0,20382 +102331,0,1,0,-1,-1,0,7597,0,20671 +102332,0,1,0,-1,-1,0,9331,0,20722 +102333,0,0,-1,-1,-1,0,483,0,20727 +102334,0,0,-1,-1,-1,0,483,0,20731 +102335,0,0,-1,-1,-1,0,483,0,20733 +102336,0,0,-1,-1,-1,0,483,0,20735 +102337,0,0,-1,-1,-1,0,483,0,20736 +102338,0,1,0,-1,-1,0,9316,0,20704 +102339,0,1,0,-1,-1,0,9404,0,20352 +102340,1,1,0,-1,-1,0,9307,0,20353 +102341,0,1,0,-1,-1,0,7597,0,20088 +102342,1,1,0,-1,-1,0,9331,0,20088 +102343,0,1,0,0,0,0,24774,0,20445 +102344,0,1,0,-1,-1,0,15807,0,20615 +102345,0,1,0,-1,-1,0,21632,0,20631 +102346,0,0,-1,-1,-1,0,483,0,21287 +102347,0,0,-1,-1,-1,0,483,0,21288 +102348,0,1,0,-1,-1,0,9395,0,20431 +102349,1,1,0,-1,-1,0,21360,0,20431 +102350,0,1,0,-1,-1,0,21595,0,20579 +102351,0,1,0,-1,-1,0,23990,0,20053 +102352,1,1,0,-1,-1,0,9329,0,20053 +102353,0,0,-5,1000,-1,0,25117,0,20744 +102354,0,0,-5,1000,-1,0,25118,0,20745 +102355,0,1,0,-1,-1,0,18031,0,20638 +102356,0,1,0,-1,-1,0,9316,0,20639 +102357,0,0,-1,-1,-1,0,483,0,19764 +102358,0,1,0,-1,-1,0,23990,0,20122 +102359,0,0,-1,-1,-1,0,483,0,20576 +102360,0,1,0,-1,-1,0,9336,0,20192 +102361,0,1,0,-1,-1,0,17367,0,20698 +102362,1,1,0,-1,-1,0,21625,0,20698 +102363,0,1,0,-1,-1,0,9398,0,20641 +102364,0,0,-5,1000,-1,0,25123,0,20748 +102365,0,0,-5,1000,-1,0,25122,0,20749 +102366,0,0,-5,1000,-1,0,25121,0,20750 +102367,0,1,0,-1,-1,0,9395,0,20672 +102368,0,1,0,-1,-1,0,9335,0,20675 +102369,0,0,-1,1000,-1,0,24377,0,20880 +102370,0,1,0,-1,-1,0,15714,0,20632 +102371,1,1,0,-1,-1,0,18384,0,20632 +102372,0,1,0,-1,-1,0,9314,0,19843 +102373,0,1,0,0,0,0,9402,0,20335 +102374,1,1,0,-1,-1,0,21624,0,20335 +102375,0,1,0,-1,-1,0,9397,0,19521 +102376,1,1,0,-1,-1,0,21624,0,19521 +102377,0,1,0,-1,-1,0,9343,0,19522 +102378,1,1,0,-1,-1,0,21619,0,19522 +102379,0,0,0,43200000,-1,0,24006,0,19697 +102380,0,1,0,-1,-1,0,7597,0,20268 +102381,1,1,0,-1,-1,0,14803,0,20268 +102382,0,1,0,-1,-1,0,7597,0,20269 +102383,0,1,0,-1,-1,0,13665,0,20272 +102384,1,1,0,-1,-1,0,15687,0,20272 +102385,0,1,0,-1,-1,0,24852,0,20502 +102386,0,1,0,-1,-1,0,9344,0,20705 +102387,0,1,0,-1,-1,0,14254,0,20720 +102388,0,0,0,0,0,0,25247,0,20834 +102389,0,0,-1,0,-1,0,25351,0,20844 +102390,0,0,-3,-1,-1,0,26008,0,21267 +102391,0,1,0,-1,-1,0,44901,0,21268 +102392,1,1,0,-1,-1,0,13387,0,21268 +102393,0,0,0,1800000,-1,0,25112,0,20534 +102394,0,0,-1,60000,-1,0,24973,0,20604 +102395,0,1,0,-1,-1,0,18384,0,21179 +102396,1,1,0,-1,-1,0,21361,0,21179 +102397,0,0,-1,-1,-1,0,483,0,21289 +102398,0,0,-1,-1,-1,0,483,0,21290 +102399,0,1,0,-1,-1,0,21618,0,20380 +102400,0,1,0,-1,-1,0,23990,0,20127 +102401,0,1,0,-1,-1,0,44894,0,20580 +102402,0,1,0,-1,-1,0,17320,0,20581 +102403,1,1,0,-1,-1,0,21634,0,20581 +102404,0,1,0,-1,-1,0,14098,0,19963 +102405,0,1,0,-1,-1,0,23729,0,19388 +102406,0,1,0,-1,-1,0,21636,0,19391 +102407,0,0,-1,-1,-1,0,483,0,21291 +102408,0,0,-1,-1,-1,0,483,0,21292 +102409,0,1,0,-1,-1,0,25717,0,21101 +102410,0,1,0,-1,-1,0,25718,0,21102 +102411,0,2,0,-1,-1,0,24585,0,19852 +102412,0,1,0,-1,-1,0,15807,0,20577 +102413,0,1,0,-1,-1,0,29632,0,16004 +102414,0,0,0,300000,0,0,25892,0,21181 +102415,0,1,0,-1,-1,0,7597,0,21182 +102416,1,1,0,-1,-1,0,15464,0,21182 +102417,0,1,0,-1,-1,0,18384,0,21183 +102418,1,1,0,-1,-1,0,15715,0,21183 +102419,0,1,0,-1,-1,0,14054,0,21186 +102420,1,1,0,-1,-1,0,23727,0,21186 +102421,0,0,-1,-1,-1,0,25853,0,21173 +102422,0,0,0,-1,-1,0,25855,0,21174 +102423,0,0,-1,-1,-1,0,483,0,21285 +102424,0,1,0,-1,-1,0,18384,0,20196 +102425,0,0,-1,-1,-1,0,483,0,21293 +102426,0,0,-1,-1,-1,0,483,0,21294 +102427,0,1,0,-1,-1,0,13385,0,19873 +102428,0,1,0,-1,-1,0,24436,0,19609 +102429,0,1,0,-1,-1,0,7678,0,20428 +102430,0,1,0,-1,-1,0,15715,0,20582 +102431,0,1,0,-1,-1,0,7597,0,21244 +102432,1,1,0,-1,-1,0,15464,0,21244 +102433,2,1,0,-1,-1,0,9330,0,21244 +102434,0,1,0,-1,-1,0,21476,0,21269 +102435,1,1,0,-1,-1,0,23203,0,21269 +102436,2,1,0,-1,-1,0,13387,0,21269 +102437,0,1,0,-1,-1,0,14803,0,20273 +102438,1,1,0,-1,-1,0,7597,0,20273 +102439,0,1,0,-1,-1,0,13670,0,20274 +102440,1,1,0,-1,-1,0,14803,0,20274 +102441,0,1,0,-1,-1,0,15464,0,21187 +102442,0,1,0,-1,-1,0,18056,0,21188 +102443,1,1,0,-1,-1,0,18382,0,21188 +102444,0,0,-1,180000,180000,1140,28745,0,21143 +102445,1,1,0,-1,-1,0,13831,0,20344 +102446,0,1,0,-1,-1,0,7598,0,20696 +102447,0,1,0,-1,-1,0,14799,0,20697 +102448,0,1,0,-1,-1,0,14027,0,20657 +102449,0,1,0,0,0,0,9308,0,20345 +102450,0,1,0,-1,-1,0,15464,0,19832 +102451,0,1,0,-1,-1,0,26647,0,19837 +102452,0,1,0,-1,-1,0,9318,0,19838 +102453,0,1,0,-1,-1,0,7681,0,19839 +102454,0,1,0,-1,-1,0,9314,0,19840 +102455,0,0,-1,0,1000,150,24414,0,20234 +102456,1,1,0,-1,-1,0,9404,0,20351 +102457,0,0,0,120000,20000,1141,25891,0,21180 +102458,0,0,-1,0,1000,11,24410,0,20224 +102459,0,0,-1,0,1000,11,24411,0,20225 +102460,0,0,-1,0,1000,11,24409,0,20226 +102461,0,0,-1,0,1000,11,24410,0,20227 +102462,0,1,0,-1,-1,0,9308,0,20348 +102463,1,1,0,-1,-1,0,24667,0,20349 +102464,0,1,0,-1,-1,0,23990,0,20128 +102465,0,1,0,-1,-1,0,21626,0,19568 +102466,0,0,0,600000,-1,0,25793,0,21144 +102467,0,1,0,-1,-1,0,21618,0,19569 +102468,0,1,0,-1,-1,0,18378,0,19570 +102469,0,1,0,0,0,0,9308,0,20346 +102470,0,0,-1,0,1000,11,24409,0,20223 +102471,0,0,-1,0,1000,11,24869,0,21254 +102472,0,0,-1,-1,-1,0,483,0,21295 +102473,0,0,-1,-1,-1,0,483,0,21296 +102474,0,0,-1,-1,-1,0,483,0,21297 +102475,0,0,-1,-1,-1,0,483,0,21298 +102476,0,1,0,-1,-1,0,23990,0,20129 +102477,0,1,0,-1,-1,0,9417,0,20262 +102478,1,1,0,-1,-1,0,21363,0,20262 +102479,0,0,0,180000,-1,0,24884,0,20525 +102480,0,0,-1,-1,-1,0,24885,0,20526 +102481,0,0,-1,-1,-1,0,24168,0,19790 +102482,0,1,0,-1,-1,0,24198,0,19812 +102483,0,1,0,-1,-1,0,23729,0,19847 +102484,1,1,0,-1,-1,0,9345,0,19847 +102485,0,1,0,-1,-1,0,13390,0,19855 +102486,1,1,0,-1,-1,0,9307,0,20355 +102487,0,1,0,-1,-1,0,7517,0,20640 +102488,0,0,-1,-1,-1,0,483,0,20730 +102489,0,1,0,-1,-1,0,18384,0,20369 +102490,0,1,0,-1,-1,0,24694,0,20370 +102491,1,1,0,-1,-1,0,13670,0,20370 +102492,0,1,0,-1,-1,0,21364,0,19567 +102493,0,1,0,-1,-1,0,18052,0,20654 +102494,0,1,0,-1,-1,0,18049,0,20724 +102495,0,0,-1,0,1000,11,24005,0,21238 +102496,0,0,-1,0,1000,11,24005,0,21240 +102497,0,0,-1,-1,-1,0,24726,0,20403 +102498,0,1,0,-1,-1,0,17747,0,20530 +102499,1,1,0,-1,-1,0,14793,0,20530 +102500,0,0,-1,-1,-1,0,483,0,21300 +102501,0,1,0,-1,-1,0,23990,0,20187 +102502,1,1,0,-1,-1,0,9138,0,20187 +102503,0,1,0,-1,-1,0,23990,0,20189 +102504,1,1,0,-1,-1,0,9141,0,20189 +102505,0,1,0,-1,-1,0,7597,0,20190 +102506,1,1,0,-1,-1,0,15806,0,20190 +102507,0,1,0,-1,-1,0,14027,0,20191 +102508,0,1,0,-1,-1,0,9416,0,20099 +102509,0,1,0,-1,-1,0,23990,0,20100 +102510,1,1,0,-1,-1,0,9141,0,20100 +102511,0,0,-1,-1,-1,0,24264,0,19932 +102512,0,0,-1,-1,-1,0,483,0,16219 +102513,0,0,-1,-1,-1,0,483,0,9028 +102514,0,1,0,-1,-1,0,13383,0,19894 +102515,1,1,0,-1,-1,0,13669,0,19894 +102516,0,1,0,-1,-1,0,24350,0,19982 +102517,0,0,-1,-1,-1,0,483,0,19765 +102518,0,1,0,-1,-1,0,23990,0,20091 +102519,0,1,0,-1,-1,0,23990,0,20092 +102520,0,0,-1,1000,-1,0,24377,0,19709 +102521,0,0,-1,1000,-1,0,24377,0,19710 +102522,0,0,0,-1,-1,0,11535,0,9299 +102523,0,0,-1,-1,-1,0,24285,0,19815 +102524,0,0,-1,-1,-1,0,483,0,20011 +102525,0,0,-1,-1,-1,0,483,0,19781 +102526,0,1,0,-1,-1,0,7597,0,19692 +102527,0,1,0,-1,-1,0,15464,0,19695 +102528,0,1,0,-1,-1,0,29414,0,19319 +102529,0,1,0,-1,-1,0,15465,0,19686 +102530,0,1,0,-1,-1,0,17898,0,20331 +102531,1,1,0,-1,-1,0,18378,0,20331 +102532,0,1,0,-1,-1,0,18384,0,20044 +102533,0,1,0,-1,-1,0,7597,0,20045 +102534,1,1,0,-1,-1,0,15806,0,20045 +102535,0,1,0,-1,-1,0,13388,0,19871 +102536,1,1,0,-1,-1,0,13669,0,19871 +102537,0,1,0,-1,-1,0,25669,0,19874 +102538,0,1,0,-1,-1,0,9342,0,19830 +102539,1,1,0,-1,-1,0,21362,0,19830 +102540,0,1,0,-1,-1,0,29162,0,23238 +102541,0,1,0,-1,-1,0,13384,0,21332 +102542,1,1,0,-1,-1,0,15464,0,21332 +102543,0,1,0,-1,-1,0,7517,0,21330 +102544,1,1,0,-1,-1,0,15464,0,21330 +102545,0,1,0,-1,-1,0,9346,0,21414 +102546,1,1,0,-1,-1,0,18384,0,21414 +102547,0,1,0,-1,-1,0,21361,0,21801 +102548,1,1,0,-1,-1,0,7680,0,21801 +102549,0,1,0,-1,-1,0,7597,0,21463 +102550,1,1,0,-1,-1,0,15464,0,21463 +102551,0,0,-1,-1,-1,0,24288,0,19817 +102552,0,1,0,-1,-1,0,23990,0,20183 +102553,0,1,0,-1,-1,0,7597,0,20259 +102554,0,1,0,-1,-1,0,9345,0,20260 +102555,0,1,0,-1,-1,0,13669,0,20261 +102556,0,0,-1,-1,-1,0,483,0,9011 +102557,0,0,-1,-1,-1,0,483,0,9017 +102558,0,1,0,-1,-1,0,23990,0,20186 +102559,1,1,0,-1,-1,0,9329,0,20186 +102560,0,1,0,-1,-1,0,7597,0,20140 +102561,1,1,0,-1,-1,0,14803,0,20140 +102562,0,1,0,-1,-1,0,7597,0,20141 +102563,0,0,-5,1500,-1,0,43674,0,20475 +102564,0,0,-1,-1,-1,0,483,0,20506 +102565,0,1,0,-1,-1,0,9417,0,22082 +102566,0,0,-10,60000,-1,0,26678,0,21813 +102567,0,0,-3,10000,-1,0,24706,0,20387 +102568,0,1,0,-1,-1,0,18382,0,20334 +102569,1,1,0,-1,-1,0,24666,0,20334 +102570,2,1,0,-1,-1,0,21620,0,20334 +102571,0,1,0,-1,-1,0,9343,0,19518 +102572,1,1,0,-1,-1,0,21619,0,19518 +102573,0,0,-1,1000,-1,0,24377,0,19707 +102574,0,1,0,-1,-1,0,7823,0,19969 +102575,0,1,0,-1,-1,0,24301,0,19970 +102576,0,1,0,-1,-1,0,23990,0,20121 +102577,0,1,0,-1,-1,0,15464,0,20216 +102578,0,0,-1,-1,-1,0,483,0,20507 +102579,0,0,-1,-1,-1,0,483,0,20508 +102580,0,0,-1,0,1000,11,24005,0,21235 +102581,0,0,-1,-1,120000,1153,27869,0,20520 +102582,0,1,0,-1,-1,0,7597,0,20521 +102583,1,1,0,-1,-1,0,15464,0,20521 +102584,0,1,0,-1,-1,0,18384,0,20523 +102585,1,1,0,-1,-1,0,9404,0,20523 +102586,0,1,0,-1,-1,0,7597,0,21814 +102587,1,1,0,-1,-1,0,15464,0,21814 +102588,0,1,0,-1,-1,0,9332,0,21478 +102589,0,1,0,-1,-1,0,13665,0,21479 +102590,1,1,0,-1,-1,0,7518,0,21479 +102591,0,1,0,-1,-1,0,9415,0,19507 +102592,0,1,0,-1,-1,0,24188,0,19588 +102593,0,1,0,-1,-1,0,23727,0,19374 +102594,1,1,0,-1,-1,0,14248,0,19374 +102595,0,1,0,-1,-1,0,14055,0,19375 +102596,1,1,0,-1,-1,0,18382,0,19375 +102597,0,0,-1,-1,-1,0,483,0,19777 +102598,0,1,0,-1,-1,0,21628,0,20217 +102599,0,1,0,-1,-1,0,23727,0,20686 +102600,0,1,0,0,0,0,9404,0,20359 +102601,0,1,0,-1,-1,0,17891,0,20360 +102602,0,1,0,-1,-1,0,9404,0,20361 +102603,1,1,0,-1,-1,0,17891,0,20362 +102604,0,1,0,0,0,0,7702,0,20363 +102605,0,1,0,-1,-1,0,14047,0,19857 +102606,1,1,0,-1,-1,0,23727,0,19857 +102607,0,0,-1,2000,-1,0,24226,0,19858 +102608,0,1,0,-1,-1,0,7597,0,19859 +102609,1,1,0,-1,-1,0,9335,0,19859 +102611,0,1,0,-1,-1,0,9412,0,20082 +102612,0,1,0,-1,-1,0,7597,0,20083 +102613,1,1,0,-1,-1,0,21363,0,20083 +102614,0,1,0,-1,-1,0,9345,0,19597 +102615,0,1,0,-1,-1,0,7680,0,19529 +102620,0,0,-1,-1,-1,0,483,0,22209 +102621,0,0,-1,-1,-1,0,483,0,19778 +102622,0,0,-1,-1,-1,0,483,0,19779 +102623,0,0,-1,-1,-1,0,483,0,19780 +102624,0,1,0,-1,-1,0,21601,0,18319 +102625,0,0,0,-1,-1,0,23679,0,19270 +102626,0,0,0,-1,-1,0,23679,0,19271 +102627,0,0,0,900000,0,0,15604,0,11819 +102628,1,1,0,-1,-1,0,9408,0,11819 +102629,0,1,0,-1,-1,0,7597,0,7935 +102630,1,1,0,-1,-1,0,13669,0,7935 +102631,0,0,-1,-1,-1,0,483,0,7977 +102632,0,1,0,-1,-1,0,9397,0,19525 +102633,1,1,0,-1,-1,0,21624,0,19525 +102634,0,1,0,-1,-1,0,13669,0,20550 +102635,0,1,0,-1,-1,0,7597,0,20551 +102636,0,0,-1,-1,-1,0,483,0,20553 +102637,0,1,0,-1,-1,0,17371,0,19885 +102638,0,1,0,-1,-1,0,21619,0,21482 +102639,1,1,0,-1,-1,0,9417,0,21482 +102640,0,0,-1,1000,1500,1136,26293,0,21560 +102641,0,0,0,300000,-1,0,27571,0,22206 +102642,0,0,-1,1000,-1,0,24377,0,19711 +102643,0,1,0,-1,-1,0,24392,0,20035 +102644,0,0,0,180000,10000,1141,24389,0,20036 +102645,0,0,0,1500,-1,0,23428,0,18963 +102646,0,0,0,1500,-1,0,23429,0,18964 +102647,0,1,0,-1,-1,0,9417,0,19519 +102648,1,1,0,-1,-1,0,21362,0,19519 +102649,0,0,-1,-1,-1,0,483,0,20509 +102650,0,1,0,-1,-1,0,7598,0,19945 +102651,1,1,0,-1,-1,0,15810,0,19945 +102652,0,1,0,-1,-1,0,15465,0,19946 +102653,1,1,0,-1,-1,0,18207,0,19946 +102654,0,0,0,75000,0,0,24610,0,19947 +102655,0,0,0,0,3000,330,24242,0,19872 +102656,0,1,0,-1,-1,0,14798,0,19897 +102657,0,1,0,-1,-1,0,9336,0,20059 +102658,0,1,0,-1,-1,0,15464,0,20517 +102659,0,1,0,-1,-1,0,15715,0,20626 +102660,0,1,0,-1,-1,0,23990,0,20123 +102661,0,1,0,-1,-1,0,23990,0,20209 +102662,0,1,0,-1,-1,0,23990,0,20210 +102663,0,1,0,-1,-1,0,23990,0,20211 +102664,0,1,0,-1,-1,0,13386,0,20688 +102665,1,1,0,-1,-1,0,25036,0,20688 +102666,0,1,0,-1,-1,0,15464,0,20689 +102667,0,1,0,-1,-1,0,23990,0,20101 +102668,1,1,0,-1,-1,0,9138,0,20101 +102669,0,0,0,120000,20000,1141,24661,0,19949 +102670,0,0,-1,-1,-1,0,483,0,12701 +102671,0,0,-1,-1,-1,0,483,0,19448 +102672,0,1,0,-1,-1,0,7518,0,19335 +102673,0,0,-1,-1,-1,0,24887,0,20527 +102674,0,1,0,-1,-1,0,18384,0,20324 +102675,1,1,0,-1,-1,0,13831,0,20324 +102676,0,1,0,-1,-1,0,9308,0,20325 +102677,1,1,0,-1,-1,0,21619,0,20325 +102678,0,1,0,-1,-1,0,18384,0,20326 +102679,1,1,0,-1,-1,0,13831,0,20326 +102680,0,1,0,-1,-1,0,17898,0,20327 +102681,1,1,0,-1,-1,0,18378,0,20327 +102682,0,1,0,-1,-1,0,18384,0,20328 +102683,1,1,0,-1,-1,0,13831,0,20328 +102684,1,1,0,-1,-1,0,13831,0,20340 +102685,0,1,0,-1,-1,0,17899,0,20341 +102686,1,1,0,-1,-1,0,13831,0,20342 +102687,0,1,0,-1,-1,0,23990,0,20185 +102688,0,1,0,-1,-1,0,21626,0,20218 +102689,0,1,0,-1,-1,0,21598,0,20219 +102690,0,1,0,-1,-1,0,18382,0,20220 +102691,1,1,0,-1,-1,0,18057,0,20220 +102692,0,1,0,-1,-1,0,9308,0,20336 +102693,1,1,0,-1,-1,0,21619,0,20336 +102694,1,1,0,-1,-1,0,13831,0,20338 +102695,0,1,0,-1,-1,0,21626,0,19572 +102696,0,0,-1,-1,-1,0,24290,0,19819 +102697,0,0,-1,-1,-1,0,24279,0,19821 +102698,0,1,0,-1,-1,0,14027,0,20090 +102699,0,1,0,-1,-1,0,9343,0,20098 +102700,0,1,0,-1,-1,0,23990,0,20109 +102701,0,1,0,-1,-1,0,7598,0,19875 +102702,1,1,0,-1,-1,0,9335,0,19875 +102703,0,1,0,-1,-1,0,21485,0,19431 +102704,1,1,0,-1,-1,0,23181,0,19431 +102705,2,1,0,-1,-1,0,14249,0,19431 +102706,0,1,0,-1,-1,0,17899,0,20343 +102707,0,1,0,-1,-1,0,24434,0,19617 +102708,0,0,0,180000,0,0,24542,0,19955 +102709,0,0,0,180000,20000,1141,24543,0,19957 +102710,0,0,0,180000,0,0,24546,0,19958 +102711,0,1,0,-1,-1,0,23990,0,20096 +102712,1,1,0,-1,-1,0,9397,0,20096 +102713,0,0,0,-1,-1,0,23677,0,19227 +102714,0,1,0,-1,-1,0,13385,0,19383 +102715,0,0,-1,-1,-1,0,24421,0,20076 +102716,0,1,0,-1,-1,0,9315,0,19526 +102717,0,1,0,-1,-1,0,9408,0,19527 +102718,0,1,0,-1,-1,0,23732,0,19355 +102719,0,0,-1,-1,-1,0,483,0,11202 +102720,0,1,0,-1,-1,0,13385,0,19888 +102721,1,1,0,-1,-1,0,13674,0,19888 +102722,0,1,0,-1,-1,0,18038,0,20264 +102723,1,1,0,-1,-1,0,21619,0,20264 +102724,0,1,0,-1,-1,0,18379,0,20265 +102725,1,1,0,-1,-1,0,9408,0,20265 +102726,0,0,0,180000,20000,1141,24544,0,19959 +102727,0,1,0,-1,-1,0,24291,0,19961 +102728,0,1,0,-1,-1,0,24292,0,19962 +102729,0,1,0,-1,-1,0,9333,0,19384 +102730,1,1,0,-1,-1,0,15464,0,19384 +102731,0,1,0,-1,-1,0,9345,0,20037 +102732,0,1,0,-1,-1,0,18057,0,19886 +102733,0,0,-5,1500,-1,0,24737,0,20409 +102734,0,0,-5,1500,-1,0,24724,0,20411 +102736,0,1,0,-1,-1,0,14127,0,19895 +102737,0,1,0,-1,-1,0,21364,0,19571 +102738,0,1,0,-1,-1,0,21618,0,19573 +102739,0,0,-1,-1,-1,0,483,0,8402 +102740,0,1,0,-1,-1,0,18050,0,19864 +102741,0,1,0,-1,-1,0,9335,0,19865 +102742,1,1,0,-1,-1,0,7597,0,19865 +102743,0,0,-1,0,0,0,483,0,9053 +102744,0,0,-1,0,0,0,483,0,9124 +102745,0,1,0,-1,-1,0,23990,0,20094 +102746,1,1,0,-1,-1,0,9415,0,20094 +102747,0,0,-1,-1,-1,0,483,0,19330 +102748,0,1,0,-1,-1,0,9318,0,19430 +102749,1,1,0,-1,-1,0,21626,0,19430 +102750,0,1,0,-1,-1,0,17898,0,20329 +102751,1,1,0,-1,-1,0,18378,0,20329 +102752,0,1,0,0,0,0,9308,0,20332 +102753,1,1,0,-1,-1,0,21619,0,20332 +102754,0,1,0,0,0,0,9308,0,20333 +102755,1,1,0,-1,-1,0,21619,0,20333 +102756,0,0,-5,1500,-1,0,24741,0,20414 +102757,0,0,-1,-1,-1,0,483,0,20510 +102758,0,0,-1,-1,-1,0,483,0,20511 +102759,0,0,0,180000,25000,1141,24865,0,20512 +102760,0,1,0,-1,-1,0,23990,0,20202 +102761,0,0,-1,-1,-1,0,483,0,19776 +102762,0,1,0,-1,-1,0,23990,0,20168 +102763,1,1,0,-1,-1,0,9138,0,20168 +102764,0,1,0,-1,-1,0,23990,0,20169 +102765,0,0,0,300000,30000,1141,23720,0,19337 +102766,0,0,-1,-1,-1,0,483,0,9215 +102767,0,1,0,-1,-1,0,23990,0,20170 +102768,1,1,0,-1,-1,0,9141,0,20170 +102769,0,1,0,-1,-1,0,18379,0,20479 +102770,1,1,0,-1,-1,0,9344,0,20479 +102771,1,1,0,-1,-1,0,7598,0,20487 +102772,2,1,0,-1,-1,0,14097,0,20487 +102773,0,0,-1,-1,-1,0,483,0,20555 +102774,0,1,0,-1,-1,0,7517,0,19822 +102775,0,1,0,-1,-1,0,7597,0,19823 +102776,0,1,0,-1,-1,0,7597,0,19825 +102777,0,0,-1,-1,-1,0,24160,0,19783 +102778,0,0,-1,-1,-1,0,24161,0,19784 +102779,0,1,0,-1,-1,0,18384,0,20097 +102780,1,1,0,-1,-1,0,9415,0,20097 +102781,0,1,0,-1,-1,0,9396,0,19367 +102782,0,1,0,-1,-1,0,18384,0,20046 +102783,0,0,-1,-1,-1,0,24422,0,20077 +102784,0,0,-1,-1,-1,0,24284,0,19820 +102785,0,1,0,-1,-1,0,15464,0,19693 +102786,0,0,-1,-1,-1,0,24302,0,19971 +102787,0,1,0,-1,-1,0,7597,0,19985 +102788,0,1,0,-1,-1,0,24351,0,19986 +102789,0,1,0,-1,-1,0,18030,0,19928 +102790,0,0,-1,-1,-1,0,483,0,19772 +102791,0,1,0,-1,-1,0,7597,0,20106 +102792,0,1,0,-1,-1,0,18046,0,19385 +102793,1,1,0,-1,-1,0,18384,0,19385 +102794,0,1,0,-1,-1,0,13670,0,19386 +102795,0,0,-1,-1,-1,0,24162,0,19785 +102796,0,1,0,-1,-1,0,23990,0,20049 +102797,0,1,0,-1,-1,0,18382,0,19356 +102798,1,1,0,-1,-1,0,23728,0,19356 +102799,0,2,0,-1,-1,0,24251,0,19901 +102800,1,1,0,-1,-1,0,9141,0,19901 +102801,2,1,0,-1,-1,0,24591,0,19901 +102802,0,0,0,-1,-1,0,23678,0,19264 +102803,0,0,0,-1,-1,0,23680,0,19279 +102804,0,1,0,-1,-1,0,7823,0,19972 +102805,0,1,0,-1,-1,0,14049,0,19866 +102806,0,0,-5,1500,-1,0,24720,0,20413 +102807,0,1,0,-1,-1,0,21361,0,20425 +102808,0,1,0,-1,-1,0,23990,0,20093 +102809,0,1,0,-1,-1,0,23727,0,20034 +102810,1,1,0,-1,-1,0,14054,0,20034 +102811,0,0,-1,-1,-1,0,24149,0,19782 +102812,0,0,-1,-1,-1,0,24289,0,19813 +102813,0,1,0,-1,-1,0,7597,0,20042 +102814,0,0,0,-1,-1,0,23678,0,19259 +102815,0,0,0,-1,-1,0,23680,0,19280 +102816,0,0,0,-1,-1,0,23680,0,19284 +102817,0,1,0,-1,-1,0,23990,0,20111 +102818,0,1,0,-1,-1,0,23990,0,20112 +102819,1,1,0,-1,-1,0,9141,0,20112 +102820,0,1,0,-1,-1,0,23990,0,20113 +102821,1,1,0,-1,-1,0,9138,0,20113 +102822,0,0,-1,-1,-1,0,483,0,19215 +102823,0,1,0,-1,-1,0,9142,0,19508 +102824,0,1,0,-1,-1,0,7597,0,19856 +102825,1,1,0,-1,-1,0,14049,0,19856 +102826,0,1,0,-1,-1,0,23990,0,20095 +102827,1,1,0,-1,-1,0,9398,0,20095 +102828,0,1,0,-1,-1,0,18384,0,19390 +102829,1,1,0,-1,-1,0,21627,0,19390 +102830,0,0,-1,0,0,0,483,0,9136 +102831,0,0,-1,0,0,0,483,0,9143 +102832,0,0,-1,0,0,0,483,0,9164 +102833,0,1,0,-1,-1,0,9408,0,19841 +102834,0,1,0,-1,-1,0,9315,0,19842 +102835,0,0,-1,-1,-1,0,483,0,20012 +102836,0,1,0,-1,-1,0,15464,0,20556 +102837,1,1,0,-1,-1,0,7597,0,20556 +102838,0,0,-1,60000,-1,79,24930,0,20557 +102839,0,1,0,-1,-1,0,13665,0,20139 +102840,0,1,0,-1,-1,0,23990,0,20114 +102841,0,1,0,-1,-1,0,7597,0,20115 +102842,1,1,0,-1,-1,0,9331,0,20115 +102843,0,0,-1,-1,-1,0,24163,0,19786 +102844,0,1,0,-1,-1,0,23990,0,20167 +102845,1,1,0,-1,-1,0,9329,0,20167 +102846,0,1,0,-1,-1,0,18384,0,20330 +102847,1,1,0,-1,-1,0,13831,0,20330 +102848,0,0,0,180000,20000,1141,24498,0,19952 +102849,0,1,0,-1,-1,0,7597,0,20153 +102850,1,1,0,-1,-1,0,9139,0,20153 +102851,0,1,0,-1,-1,0,18384,0,20163 +102852,1,1,0,-1,-1,0,9343,0,20163 +102853,1,1,0,-1,-1,0,7597,0,20488 +102854,2,1,0,-1,-1,0,21432,0,20488 +102855,0,1,0,-1,-1,0,18052,0,19370 +102856,0,1,0,-1,-1,0,21365,0,19371 +102857,0,0,-1,0,1000,11,24005,0,21236 +102858,0,1,0,-1,-1,0,23990,0,20181 +102859,0,1,0,-1,-1,0,7597,0,20193 +102860,1,1,0,-1,-1,0,9331,0,20193 +102861,0,1,0,-1,-1,0,17367,0,20258 +102862,0,1,0,-1,-1,0,23990,0,20102 +102863,0,1,0,-1,-1,0,18384,0,20103 +102864,0,1,0,-1,-1,0,14127,0,19378 +102865,0,1,0,-1,-1,0,13383,0,19968 +102866,1,1,0,-1,-1,0,7711,0,19968 +102867,0,1,0,-1,-1,0,23990,0,20050 +102868,0,1,0,-1,-1,0,23990,0,20052 +102869,1,1,0,-1,-1,0,9329,0,20052 +102870,0,0,-1,0,3000,79,24363,0,20007 +102871,0,0,-1,0,120000,4,24364,0,20008 +102872,0,1,0,-1,-1,0,18384,0,20171 +102873,0,1,0,-1,-1,0,7517,0,19867 +102874,0,1,0,-1,-1,0,15806,0,19869 +102875,1,1,0,-1,-1,0,7597,0,19869 +102876,0,1,0,-1,-1,0,9318,0,19870 +102877,0,0,-5,1500,-1,0,24733,0,20410 +102878,0,1,0,-1,-1,0,21361,0,20434 +102879,0,1,0,-1,-1,0,18029,0,22469 +102880,1,1,0,-1,-1,0,21626,0,22469 +102881,0,1,0,-1,-1,0,21628,0,22470 +102882,1,1,0,-1,-1,0,18032,0,22470 +102883,0,1,0,-1,-1,0,13385,0,21994 +102884,0,1,0,-1,-1,0,15464,0,21995 +102885,0,1,0,-1,-1,0,23727,0,22504 +102886,1,1,0,-1,-1,0,28767,0,22504 +102887,2,1,0,-1,-1,0,18384,0,22504 +102888,0,0,-1,1000,2000,1136,26521,0,21744 +102889,0,0,-1,60000,-1,0,25823,0,21745 +102890,0,1,0,-1,-1,0,7597,0,21316 +102891,0,1,0,-1,-1,0,7597,0,21317 +102892,0,0,-1,60000,-1,0,25860,0,21212 +102893,0,1,0,-1,-1,0,13665,0,20616 +102894,0,1,0,-1,-1,0,14027,0,20622 +102895,0,1,0,-1,-1,0,17493,0,20635 +102896,0,1,0,-1,-1,0,26142,0,23220 +102897,0,1,0,-1,-1,0,29150,0,23221 +102898,0,1,0,0,-1,0,14799,0,22336 +102899,0,2,0,-1,-1,0,26693,0,21856 +102900,0,0,0,600000,60000,94,26066,0,21326 +102901,0,0,-1,0,0,0,27113,0,22034 +102902,0,1,0,-1,-1,0,18384,0,21483 +102903,1,1,0,-1,-1,0,21625,0,21483 +102904,2,1,0,-1,-1,0,9415,0,21483 +102905,0,1,0,-1,-1,0,13384,0,21485 +102906,0,0,0,-1,-1,0,27671,0,22298 +102907,0,0,0,-1,-1,0,27671,0,22299 +102908,0,1,0,-1,-1,0,9416,0,22090 +102909,1,1,0,-1,-1,0,7597,0,22090 +102910,0,0,-1,-1,-1,0,27719,0,22121 +102911,0,1,0,-1,-1,0,13384,0,20619 +102912,0,1,0,-1,-1,0,9316,0,20707 +102913,0,0,-1,1000,2000,1136,26328,0,21577 +102914,0,0,-1,1000,2000,1136,26329,0,21578 +102915,0,0,0,180000,-1,0,26391,0,21579 +102916,0,1,0,-1,-1,0,9344,0,20706 +102917,0,1,0,-1,-1,0,7518,0,20710 +102918,0,0,-1,0,0,79,27653,0,22192 +102919,0,1,0,-1,-1,0,27851,0,22397 +102920,0,1,0,-1,-1,0,13665,0,21675 +102921,0,0,-1,0,1000,11,26263,0,21537 +102922,0,0,-1,-1,2000,0,25822,0,21747 +102923,0,1,0,-1,-1,0,18384,0,21802 +102924,1,1,0,-1,-1,0,9343,0,21802 +102925,0,1,0,-1,-1,0,23046,0,23282 +102926,1,1,0,-1,-1,0,14248,0,23282 +102927,0,0,0,1000,-1,11,26373,0,21739 +102928,0,1,0,-1,-1,0,9408,0,21470 +102929,0,1,0,-1,-1,0,9317,0,21472 +102930,1,1,0,-1,-1,0,18384,0,21472 +102931,0,0,0,180000,30000,1141,26166,0,21473 +102932,0,1,0,-1,-1,0,15464,0,22013 +102933,1,1,0,-1,-1,0,27038,0,22013 +102934,0,1,0,-1,-1,0,18384,0,21804 +102935,1,1,0,-1,-1,0,14799,0,21804 +102936,0,1,0,-1,-1,0,13385,0,21805 +102937,1,1,0,-1,-1,0,27043,0,22015 +102938,0,0,-1,-1,-1,0,24896,0,20542 +102939,0,0,-1,-1,-1,0,483,0,21282 +102940,0,1,0,-1,-1,0,9417,0,20694 +102941,0,1,0,-1,-1,0,9331,0,20695 +102942,0,0,0,1500,-1,0,25018,0,20651 +102943,0,1,0,-1,-1,0,7679,0,19827 +102944,0,1,0,-1,-1,0,27848,0,22401 +102945,0,1,0,-1,-1,0,27850,0,22400 +102946,0,1,0,-1,-1,0,26158,0,21452 +102947,1,1,0,-1,-1,0,18384,0,21452 +102948,2,1,0,-1,-1,0,23727,0,21452 +102949,0,1,0,-1,-1,0,15464,0,21455 +102950,0,1,0,-1,-1,0,13669,0,21456 +102951,1,1,0,-1,-1,0,13384,0,21456 +102952,0,1,0,-1,-1,0,14248,0,23255 +102953,1,1,0,-1,-1,0,18384,0,23255 +102954,0,1,0,-1,-1,0,14054,0,22333 +102955,0,0,-1,-1,-1,0,483,0,22219 +102956,0,1,0,-1,-1,0,13388,0,22420 +102957,1,1,0,-1,-1,0,13669,0,22420 +102958,0,1,0,-1,-1,0,18038,0,22465 +102959,1,1,0,-1,-1,0,21365,0,22465 +102960,0,0,0,-1,-1,0,27669,0,22294 +102961,0,0,0,-1,-1,0,27670,0,22297 +102962,0,1,0,-1,-1,0,18014,0,22342 +102963,0,0,-1,0,0,0,26793,0,22021 +102964,0,0,-1,0,0,0,27093,0,22022 +102965,0,0,-1,0,0,0,27104,0,22025 +102966,0,0,-1,-1,-1,0,27704,0,22119 +102967,0,1,0,-1,-1,0,7517,0,21392 +102968,0,1,0,-1,-1,0,23727,0,19876 +102969,0,0,-1,-1,-1,0,25688,0,21039 +102970,0,1,0,0,0,0,9317,0,22334 +102971,0,1,0,-1,-1,0,14798,0,22335 +102972,1,1,0,-1,-1,0,23727,0,22335 +102973,0,1,0,-1,-1,0,9346,0,22273 +102974,1,1,0,-1,-1,0,18384,0,22273 +102975,0,1,0,-1,-1,0,9396,0,22112 +102976,1,1,0,-1,-1,0,21623,0,22112 +102977,0,0,0,1500,-1,0,27241,0,22114 +102978,0,0,-1,-1,-1,0,27716,0,22122 +102979,0,1,0,-1,-1,0,9334,0,22378 +102980,0,1,0,-1,-1,0,27859,0,22395 +102981,0,1,0,-1,-1,0,9398,0,22095 +102982,0,1,0,-1,-1,0,9415,0,22111 +102983,0,0,0,-1,-1,0,27671,0,22300 +102984,0,0,0,0,600000,1139,27184,0,22049 +102985,0,0,-1,-1,-1,0,483,0,22214 +102986,0,0,-1,-1,-1,0,483,0,21547 +102987,0,0,-1,1000,2000,1136,26517,0,21718 +102988,0,0,-1,1000,2000,1136,26518,0,21719 +102989,0,0,-1,-1,-1,0,26587,0,21761 +102990,0,1,0,-1,-1,0,7518,0,22671 +102991,0,1,0,-1,-1,0,7597,0,22672 +102992,1,1,0,-1,-1,0,15464,0,22672 +102993,0,1,0,-1,-1,0,7597,0,22673 +102994,1,1,0,-1,-1,0,15464,0,22673 +102995,0,1,0,-1,-1,0,7597,0,21581 +102996,1,1,0,-1,-1,0,15464,0,21581 +102997,0,1,0,-1,-1,0,18038,0,21582 +102998,1,1,0,-1,-1,0,21364,0,21582 +102999,0,1,0,-1,-1,0,18031,0,21583 +103000,1,1,0,-1,-1,0,18378,0,21583 +103001,0,1,0,-1,-1,0,7597,0,23243 +103002,0,1,0,-1,-1,0,18055,0,21698 +103003,1,1,0,-1,-1,0,21627,0,21698 +103004,0,1,0,-1,-1,0,13384,0,21700 +103005,0,1,0,-1,-1,0,18029,0,19877 +103006,0,1,0,-1,-1,0,21632,0,22801 +103007,1,1,0,-1,-1,0,28736,0,22801 +103008,1,1,0,-1,-1,0,7597,0,22802 +103009,2,1,0,-1,-1,0,15464,0,22802 +103010,0,0,-1,1000,1500,1136,26291,0,21558 +103011,0,0,-1,1000,1500,1136,26292,0,21559 +103012,0,1,0,-1,-1,0,13384,0,21331 +103013,0,1,0,-1,-1,0,14799,0,21803 +103014,1,1,0,-1,-1,0,7597,0,21803 +103015,0,0,0,0,3000,330,26054,0,21321 +103016,0,1,0,-1,-1,0,13390,0,21322 +103017,0,1,0,-1,-1,0,14047,0,21387 +103018,1,1,0,-1,-1,0,7597,0,21387 +103019,0,1,0,-1,-1,0,14049,0,22664 +103020,0,1,0,-1,-1,0,7597,0,22676 +103021,1,1,0,-1,-1,0,18384,0,22676 +103022,2,1,0,-1,-1,0,18379,0,22676 +103023,0,0,-1,-1,-1,0,27712,0,22175 +103024,0,1,0,-1,-1,0,15824,0,22191 +103025,1,1,0,-1,-1,0,7597,0,22191 +103026,2,1,0,-1,-1,0,27518,0,22191 +103027,0,1,0,-1,-1,0,9335,0,22194 +103028,1,1,0,-1,-1,0,7597,0,22194 +103029,2,1,0,-1,-1,0,27522,0,22194 +103030,0,1,0,-1,-1,0,14254,0,21806 +103031,1,1,0,-1,-1,0,21626,0,21806 +103032,0,1,0,-1,-1,0,7597,0,21809 +103033,1,1,0,-1,-1,0,15464,0,21809 +103034,0,1,0,-1,-1,0,18030,0,21810 +103035,0,0,0,86400000,-1,0,26265,0,21540 +103036,0,0,-1,-1,-1,0,483,0,21731 +103037,0,0,-1,-1,-1,0,26846,0,21923 +103038,0,0,-1,-1,-1,0,27662,0,22200 +103039,0,1,0,-1,-1,0,7597,0,22322 +103040,0,0,-1,0,1000,11,1131,0,22324 +103041,0,0,0,-1,-1,0,27670,0,22295 +103042,0,0,0,-1,-1,0,27670,0,22296 +103043,0,0,0,-1,-1,0,27666,0,22289 +103044,0,0,0,600000,600000,1139,27517,0,21986 +103045,0,1,0,-1,-1,0,15807,0,22665 +103046,0,1,0,-1,-1,0,9332,0,22666 +103047,0,1,0,-1,-1,0,9406,0,22667 +103048,0,1,0,-1,-1,0,9317,0,22424 +103049,1,1,0,-1,-1,0,21362,0,22424 +103050,0,0,-1,0,0,0,7211,0,22432 +103051,0,1,0,-1,-1,0,7598,0,22438 +103052,1,1,0,-1,-1,0,21625,0,22438 +103053,0,1,0,-1,-1,0,15464,0,22442 +103054,1,1,0,-1,-1,0,7597,0,22442 +103055,2,1,0,-1,-1,0,21625,0,22442 +103056,0,1,0,-1,-1,0,18056,0,21407 +103057,1,1,0,-1,-1,0,44892,0,21407 +103058,0,1,0,-1,-1,0,9318,0,21704 +103059,0,0,-1,1000,2000,1136,26488,0,21714 +103060,0,1,0,-1,-1,0,7597,0,21715 +103061,1,1,0,-1,-1,0,9331,0,21715 +103062,0,0,-1,1000,2000,1136,26516,0,21717 +103063,0,1,0,-1,-1,0,14248,0,21464 +103064,1,1,0,-1,-1,0,25975,0,21464 +103066,1,1,0,-1,-1,0,15807,0,21837 +103067,0,1,0,-1,-1,0,14798,0,21838 +103068,1,1,0,-1,-1,0,23729,0,21838 +103069,0,1,0,-1,-1,0,26814,0,21839 +103070,1,1,0,-1,-1,0,21625,0,21839 +103071,0,0,-1,0,1000,11,1129,0,21552 +103072,0,0,-1,1000,1500,1136,26286,0,21557 +103073,0,0,-1,-1,-1,0,483,0,21729 +103074,0,0,-1,-1,-1,0,27717,0,22174 +103075,0,1,0,-1,-1,0,14054,0,21608 +103076,1,1,0,-1,-1,0,18384,0,21608 +103077,0,1,0,-1,-1,0,18030,0,22468 +103078,1,1,0,-1,-1,0,21626,0,22468 +103079,0,0,-1,1000,1500,1136,26338,0,21595 +103080,0,1,0,-1,-1,0,9330,0,21708 +103081,0,1,0,-1,-1,0,7517,0,21506 +103082,0,0,-1,-1,-1,0,26588,0,21762 +103083,0,1,0,-1,-1,0,18055,0,21343 +103084,1,1,0,-1,-1,0,18384,0,21343 +103085,2,1,0,-1,-1,0,26283,0,21343 +103086,0,1,0,-1,-1,0,9417,0,22084 +103087,1,1,0,-1,-1,0,21628,0,22084 +103088,0,1,0,-1,-1,0,9417,0,22093 +103089,1,1,0,-1,-1,0,21618,0,22093 +103090,0,1,0,-1,-1,0,9417,0,22101 +103091,0,1,0,-1,-1,0,9395,0,22108 +103092,0,0,0,0,60000,1140,27616,0,22115 +103093,0,1,0,-1,-1,0,18029,0,21462 +103094,1,1,0,-1,-1,0,21363,0,21462 +103095,0,1,0,-1,-1,0,14799,0,21624 +103096,1,1,0,-1,-1,0,18384,0,21624 +103097,0,0,0,-1,-1,0,26469,0,21309 +103098,0,1,0,-1,-1,0,18054,0,21709 +103099,1,1,0,-1,-1,0,23727,0,21709 +103100,0,0,0,600000,-1,11,26373,0,21711 +103101,0,1,0,-1,-1,0,18037,0,21712 +103102,1,1,0,-1,-1,0,18379,0,21712 +103103,0,1,0,-1,-1,0,9343,0,21388 +103104,1,1,0,-1,-1,0,21362,0,21388 +103105,0,1,0,-1,-1,0,9346,0,21389 +103106,1,1,0,-1,-1,0,18384,0,21389 +103107,2,1,0,-1,-1,0,7597,0,21389 +103108,0,1,0,-1,-1,0,9345,0,21390 +103109,1,1,0,-1,-1,0,7597,0,21390 +103110,2,1,0,-1,-1,0,21618,0,21390 +103111,0,1,0,-1,-1,0,9343,0,21391 +103112,1,1,0,-1,-1,0,21625,0,21391 +103113,0,1,0,-1,-1,0,14127,0,21344 +103114,1,1,0,-1,-1,0,23727,0,21344 +103115,2,1,0,-1,-1,0,21362,0,21344 +103116,0,1,0,-1,-1,0,14799,0,21354 +103117,1,1,0,-1,-1,0,21625,0,21354 +103118,0,1,0,-1,-1,0,14799,0,21355 +103119,1,1,0,-1,-1,0,21362,0,21355 +103120,2,1,0,-1,-1,0,25975,0,21355 +103121,0,0,-1,-1,-1,0,483,0,21548 +103122,0,0,0,0,3000,330,26056,0,21323 +103123,0,0,0,0,3000,330,26055,0,21324 +103124,0,0,-1,60000,-1,0,25823,0,21536 +103125,0,0,-1,-1,-1,0,27702,0,22117 +103126,0,1,0,-1,-1,0,27656,0,22321 +103127,0,1,0,-1,-1,0,15464,0,22348 +103128,0,1,0,-1,-1,0,9417,0,21486 +103129,0,0,-1,-1,-1,0,483,0,21725 +103130,0,0,-1,-1,-1,0,483,0,21726 +103131,0,0,0,180000,-1,0,26400,0,21647 +103132,0,1,0,-1,-1,0,14799,0,21648 +103133,0,1,0,-1,-1,0,13387,0,22669 +103134,0,1,0,-1,-1,0,13383,0,22670 +103135,0,0,-1,-1,-1,0,27706,0,22173 +103136,0,0,-1,-1,-1,0,27714,0,22177 +103137,0,1,0,-1,-1,0,9346,0,21418 +103138,0,0,-88,3000,-1,0,26374,0,21713 +103139,0,1,0,-1,-1,0,18384,0,21597 +103140,1,1,0,-1,-1,0,23727,0,21597 +103141,2,1,0,-1,-1,0,14799,0,21597 +103142,0,1,0,-1,-1,0,9417,0,21487 +103143,1,1,0,-1,-1,0,18384,0,21487 +103144,0,0,0,180000,-1,0,26168,0,21488 +103145,0,1,0,-1,-1,0,13384,0,21621 +103146,0,0,-3,600000,60000,24,26067,0,21325 +103147,0,1,0,-1,-1,0,13384,0,21329 +103148,0,1,0,-1,-1,0,7517,0,21333 +103149,0,1,0,-1,-1,0,15715,0,21588 +103150,1,1,0,-1,-1,0,18379,0,21588 +103151,0,0,-1,1000,1500,1136,26333,0,21589 +103152,0,0,-1,1000,1500,1136,26334,0,21590 +103153,0,0,-1,1000,1500,1136,26335,0,21591 +103154,0,1,0,-1,-1,0,21473,0,22198 +103155,1,1,0,-1,-1,0,18676,0,22198 +103156,2,1,0,-1,-1,0,27561,0,22198 +103157,0,1,0,0,0,0,7597,0,22326 +103158,1,1,0,-1,-1,0,21361,0,22326 +103159,0,0,-1,-1,-1,0,483,0,20726 +103160,0,1,0,-1,-1,0,15464,0,21602 +103161,0,1,0,-1,-1,0,14254,0,21603 +103162,0,1,0,-1,-1,0,15696,0,21604 +103163,0,1,0,-1,-1,0,15464,0,21403 +103164,0,1,0,-1,-1,0,15464,0,21404 +103165,0,1,0,-1,-1,0,18057,0,21334 +103166,1,1,0,-1,-1,0,18384,0,21334 +103167,2,1,0,-1,-1,0,26283,0,21334 +103168,0,1,0,-1,-1,0,14127,0,21338 +103169,1,1,0,-1,-1,0,25975,0,21338 +103170,0,1,0,-1,-1,0,18053,0,21351 +103171,1,1,0,-1,-1,0,18384,0,21351 +103172,2,1,0,-1,-1,0,25975,0,21351 +103173,0,1,0,-1,-1,0,7597,0,21650 +103174,1,1,0,-1,-1,0,9331,0,21650 +103175,0,0,-1,1000,1500,1136,26336,0,21592 +103176,0,0,-1,1000,1500,1136,26337,0,21593 +103177,0,1,0,-1,-1,0,17899,0,21527 +103178,0,1,0,-1,-1,0,15464,0,21394 +103179,0,1,0,-1,-1,0,21618,0,21395 +103180,0,1,0,-1,-1,0,9342,0,21396 +103181,0,1,0,-1,-1,0,15464,0,21701 +103182,0,1,0,-1,-1,0,14798,0,21703 +103183,0,0,0,120000,-1,0,26074,0,21328 +103184,0,1,0,-1,-1,0,14254,0,21607 +103185,1,1,0,-1,-1,0,21363,0,21607 +103186,0,0,-1,0,1000,59,26389,0,21721 +103187,0,0,-1,-1,-1,0,483,0,21722 +103188,0,0,-1,-1,-1,0,483,0,21724 +103189,0,1,0,-1,-1,0,9417,0,22655 +103190,0,1,0,-1,-1,0,7597,0,22656 +103191,0,1,0,-1,-1,0,15816,0,21651 +103192,1,1,0,-1,-1,0,7598,0,21651 +103193,0,1,0,-1,-1,0,27797,0,22345 +103195,0,0,0,-1,-1,0,27669,0,22292 +103196,0,1,0,-1,-1,0,14054,0,21594 +103197,1,1,0,-1,-1,0,23727,0,21594 +103198,0,1,0,-1,-1,0,17371,0,21683 +103199,0,1,0,-1,-1,0,17371,0,21694 +103200,0,0,-1,-1,-1,0,483,0,21727 +103201,0,0,-1,-1,-1,0,483,0,21728 +103202,0,1,0,-1,-1,0,18029,0,21606 +103203,0,1,0,-1,-1,0,14127,0,21335 +103204,1,1,0,-1,-1,0,25975,0,21335 +103205,2,1,0,-1,-1,0,23727,0,21335 +103206,0,1,0,-1,-1,0,26142,0,21398 +103207,0,1,0,-1,-1,0,9417,0,21399 +103208,0,1,0,-1,-1,0,9343,0,21400 +103209,0,1,0,0,0,0,9344,0,22657 +103210,0,1,0,0,0,0,14027,0,22659 +103211,1,1,0,-1,-1,0,7597,0,22659 +103212,0,0,-1,-1,-1,0,26846,0,21922 +103213,0,1,0,-1,-1,0,18050,0,21337 +103214,1,1,0,-1,-1,0,18384,0,21337 +103215,2,1,0,-1,-1,0,23727,0,21337 +103216,0,1,0,-1,-1,0,7597,0,21366 +103217,1,1,0,-1,-1,0,9417,0,21366 +103218,0,1,0,-1,-1,0,9345,0,21623 +103219,1,1,0,-1,-1,0,7597,0,21623 +103220,0,0,0,180000,-1,0,26467,0,21625 +103221,0,1,0,-1,-1,0,9416,0,21626 +103222,1,1,0,-1,-1,0,14049,0,21626 +103223,0,1,0,-1,-1,0,9318,0,22471 +103224,1,1,0,-1,-1,0,21619,0,22471 +103225,0,1,0,-1,-1,0,14799,0,23277 +103226,0,1,0,-1,-1,0,28539,0,23279 +103227,0,1,0,-1,-1,0,26395,0,21622 +103228,1,1,0,-1,-1,0,18384,0,21622 +103229,0,0,-1,30000,-1,0,27571,0,22218 +103230,0,0,-1,-1,-1,0,483,0,22221 +103231,0,1,0,-1,-1,0,9407,0,22245 +103232,0,1,0,-1,-1,0,15464,0,22347 +103233,0,1,0,0,-1,0,7681,0,22327 +103234,1,1,0,-1,-1,0,18196,0,22328 +103235,0,1,0,-1,-1,0,17367,0,21374 +103236,1,1,0,-1,-1,0,7597,0,21374 +103237,2,1,0,-1,-1,0,18384,0,21374 +103238,0,1,0,-1,-1,0,21365,0,21517 +103239,1,1,0,-1,-1,0,35126,0,21517 +103240,0,1,0,-1,-1,0,26204,0,21518 +103241,0,0,-1,-1,-1,0,26004,0,21519 +103242,0,1,0,-1,-1,0,27037,0,22003 +103243,0,1,0,-1,-1,0,18050,0,21352 +103244,1,1,0,-1,-1,0,21627,0,21352 +103245,0,1,0,-1,-1,0,15714,0,21318 +103246,0,1,0,-1,-1,0,18052,0,21336 +103247,1,1,0,-1,-1,0,18384,0,21336 +103248,0,1,0,-1,-1,0,7597,0,23219 +103249,1,1,0,-1,-1,0,15464,0,23219 +103250,0,1,0,-1,-1,0,7597,0,21364 +103251,1,1,0,-1,-1,0,15464,0,21364 +103252,0,1,0,-1,-1,0,9396,0,21367 +103253,0,1,0,-1,-1,0,7598,0,23226 +103254,0,1,0,-1,-1,0,18053,0,22501 +103255,0,1,0,-1,-1,0,14127,0,22502 +103256,1,1,0,-1,-1,0,23727,0,22502 +103257,0,1,0,-1,-1,0,25975,0,22503 +103258,1,1,0,-1,-1,0,14054,0,22503 +103259,0,1,0,-1,-1,0,21363,0,21397 +103260,0,1,0,-1,-1,0,13665,0,21598 +103261,1,1,0,-1,-1,0,13387,0,21598 +103262,0,1,0,-1,-1,0,7597,0,21599 +103263,0,1,0,-1,-1,0,18052,0,21600 +103264,0,0,-1,0,0,0,27108,0,22029 +103265,0,1,0,-1,-1,0,9398,0,22063 +103266,0,0,-1,0,0,79,27652,0,22193 +103267,0,0,0,-1,-1,0,27360,0,22048 +103268,0,1,0,-1,-1,0,9416,0,22065 +103269,1,1,0,-1,-1,0,18384,0,22065 +103270,0,1,0,-1,-1,0,9417,0,22066 +103271,1,1,0,-1,-1,0,23727,0,22066 +103272,0,1,0,-1,-1,0,9417,0,22078 +103273,0,0,-1,-1,-1,0,483,0,21358 +103274,0,1,0,-1,-1,0,15464,0,21359 +103275,0,1,0,-1,-1,0,15464,0,21361 +103276,0,1,0,-1,-1,0,17872,0,23237 +103277,1,1,0,-1,-1,0,18384,0,23237 +103278,0,1,0,-1,-1,0,15715,0,21469 +103279,0,1,0,-1,-1,0,14248,0,21697 +103280,0,1,0,-1,-1,0,9342,0,22379 +103281,0,1,0,-1,-1,0,18030,0,22380 +103282,0,1,0,-1,-1,0,13388,0,21601 +103283,0,1,0,-1,-1,0,21361,0,21401 +103284,0,1,0,-1,-1,0,18042,0,22466 +103285,1,1,0,-1,-1,0,21629,0,22466 +103286,0,1,0,-1,-1,0,18032,0,22467 +103287,1,1,0,-1,-1,0,21626,0,22467 +103288,0,1,0,-1,-1,0,9415,0,22079 +103289,1,1,0,-1,-1,0,21360,0,22079 +103290,0,1,0,-1,-1,0,9416,0,22080 +103291,1,1,0,-1,-1,0,21626,0,22080 +103292,2,1,0,-1,-1,0,18384,0,22080 +103293,0,1,0,-1,-1,0,9342,0,22149 +103294,0,1,0,-1,-1,0,21363,0,20618 +103295,1,1,0,-1,-1,0,14054,0,20618 +103296,0,0,-1,-1,-1,0,483,0,21737 +103297,0,1,0,-1,-1,0,9343,0,23289 +103298,0,1,0,-1,-1,0,18384,0,23295 +103299,1,1,0,-1,-1,0,9343,0,23295 +103300,0,1,0,-1,-1,0,7598,0,23301 +103301,0,0,-1,-1,-1,0,27710,0,22120 +103302,0,1,0,-1,-1,0,21364,0,21696 +103303,0,1,0,-1,-1,0,14799,0,22383 +103304,1,1,0,-1,-1,0,25975,0,22383 +103305,0,1,0,-1,-1,0,18038,0,22464 +103306,1,1,0,-1,-1,0,21635,0,22464 +103307,0,0,-1,-1,-1,0,483,0,22222 +103309,0,1,0,-1,-1,0,9346,0,22225 +103310,0,1,0,-1,-1,0,7597,0,22651 +103311,1,1,0,-1,-1,0,15464,0,22651 +103312,0,1,0,-1,-1,0,14248,0,22652 +103313,0,1,0,-1,-1,0,9344,0,22654 +103314,0,1,0,-1,-1,0,27225,0,22060 +103315,1,1,0,-1,-1,0,7597,0,22060 +103316,0,1,0,-1,-1,0,27206,0,22061 +103317,0,1,0,-1,-1,0,9343,0,22062 +103318,0,1,0,-1,-1,0,14248,0,22064 +103319,0,1,0,-1,-1,0,26228,0,21523 +103320,0,1,0,-1,-1,0,9398,0,21678 +103321,0,1,0,-1,-1,0,26460,0,21273 +103322,1,1,0,-1,-1,0,23729,0,21273 +103323,2,1,0,-1,-1,0,18384,0,21273 +103324,0,1,0,-1,-1,0,26461,0,21275 +103325,1,1,0,-1,-1,0,21643,0,21275 +103326,0,1,0,-1,-1,0,21632,0,23027 +103327,1,0,0,180000,-1,0,28760,0,23027 +103328,0,0,-1,-1,-1,0,483,0,22393 +103329,0,1,0,-1,-1,0,18029,0,22394 +103330,0,1,0,-1,-1,0,27855,0,22396 +103331,0,1,0,-1,-1,0,18384,0,22886 +103332,1,1,0,-1,-1,0,14248,0,22886 +103333,0,1,0,-1,-1,0,14248,0,22887 +103334,1,1,0,-1,-1,0,18384,0,22887 +103335,0,1,0,-1,-1,0,18057,0,21461 +103336,1,1,0,-1,-1,0,18384,0,21461 +103337,0,1,0,-1,-1,0,18030,0,21889 +103338,0,1,0,-1,-1,0,17371,0,21890 +103339,0,0,0,180000,-1,0,26789,0,21891 +103340,0,1,0,-1,-1,0,9396,0,21365 +103341,0,1,0,-1,-1,0,7597,0,21370 +103342,1,1,0,-1,-1,0,9415,0,21370 +103343,0,1,0,-1,-1,0,9416,0,21409 +103344,0,1,0,-1,-1,0,15464,0,21688 +103345,0,0,-1,1000,2000,1136,26490,0,21716 +103346,0,0,-1,1000,2000,1136,26519,0,21720 +103347,0,0,-1,-1,-1,0,483,0,21738 +103348,0,1,0,-1,-1,0,18049,0,23276 +103349,0,1,0,-1,-1,0,15808,0,21126 +103351,0,1,0,-1,-1,0,23732,0,21128 +103352,1,1,0,-1,-1,0,25767,0,21128 +103353,0,0,-1,-1,-1,0,483,0,21279 +103354,0,0,-1,-1,-1,0,483,0,21280 +103355,0,0,-1,-1,-1,0,483,0,22890 +103356,0,1,0,-1,-1,0,18035,0,22515 +103357,1,1,0,-1,-1,0,21361,0,22515 +103358,0,0,0,-1,-1,0,27666,0,22291 +103359,0,0,0,-1,-1,0,27669,0,22293 +103360,0,1,0,-1,-1,0,18384,0,22427 +103361,1,1,0,-1,-1,0,18032,0,22427 +103362,2,1,0,-1,-1,0,21629,0,22427 +103363,0,0,-1,-1,-1,0,483,0,22705 +103364,0,0,0,-9,-9,79,30297,0,23696 +103365,0,1,0,-1,-1,0,23727,0,21413 +103366,1,1,0,-1,-1,0,18056,0,21413 +103367,0,1,0,-1,-1,0,21363,0,20480 +103368,1,1,0,-1,-1,0,9416,0,20480 +103369,0,1,0,-1,-1,0,15464,0,21205 +103370,0,1,0,-1,-1,0,14248,0,21206 +103371,1,1,0,-1,-1,0,21625,0,21206 +103372,0,0,-1,0,0,0,24833,0,20620 +103373,0,0,-1,-1,-1,0,483,0,20755 +103374,0,0,-1,-1,-1,0,483,0,20756 +103375,0,1,0,-1,-1,0,15714,0,20682 +103376,0,1,0,-1,-1,0,15464,0,20683 +103377,0,0,-1,60000,-1,0,25860,0,21213 +103378,0,1,0,-1,-1,0,18042,0,21667 +103379,1,1,0,-1,-1,0,18384,0,21667 +103380,0,1,0,-1,-1,0,18053,0,21668 +103381,1,1,0,-1,-1,0,18384,0,21668 +103382,0,1,0,-1,-1,0,18038,0,21669 +103383,0,0,-1,-1,-1,0,483,0,21307 +103384,0,1,0,-1,-1,0,18053,0,23031 +103385,1,1,0,-1,-1,0,23727,0,23031 +103386,0,0,-1,-1,-1,0,483,0,22729 +103387,0,1,0,-1,-1,0,18384,0,22730 +103388,1,1,0,-1,-1,0,18057,0,22730 +103389,0,0,-1,-1,-1,0,483,0,22891 +103390,0,1,0,-1,-1,0,15714,0,21207 +103391,1,1,0,-1,-1,0,21625,0,21207 +103392,0,0,-1,0,1000,11,25690,0,21072 +103393,0,0,-1,-1,-1,0,483,0,21099 +103394,0,0,0,1500,-1,0,26010,0,21277 +103395,0,1,0,-1,-1,0,31750,0,24358 +103396,0,1,0,-1,-1,0,28852,0,23203 +103397,0,1,0,-1,-1,0,28851,0,23204 +103398,0,1,0,-1,-1,0,29112,0,23206 +103399,0,1,0,0,0,0,14799,0,23452 +103400,0,1,0,-1,-1,0,29369,0,23454 +103401,1,1,0,-1,-1,0,21626,0,23454 +103402,0,1,0,-1,-1,0,29113,0,23207 +103403,0,1,0,-1,-1,0,29113,0,23208 +103404,0,0,-1,-1,-1,0,483,0,20751 +103405,0,0,0,1500,-1,0,26532,0,21301 +103406,0,0,-1,-1,-1,0,483,0,21302 +103407,0,0,-1,-1,-1,0,483,0,21303 +103408,0,0,-1,-1,-1,0,483,0,21304 +103409,0,0,0,1500,-1,0,26541,0,21305 +103410,0,0,-1,-1,-1,0,483,0,21306 +103411,0,1,0,-1,-1,0,21438,0,21272 +103412,0,1,0,-1,-1,0,21625,0,20648 +103413,0,1,0,-1,-1,0,7597,0,20665 +103414,0,1,0,-1,-1,0,7679,0,20666 +103417,0,1,0,-1,-1,0,9334,0,20703 +103418,0,1,0,-1,-1,0,13383,0,21196 +103419,0,1,0,-1,-1,0,13384,0,21199 +103420,0,1,0,-1,-1,0,9343,0,20714 +103421,1,1,0,-1,-1,0,21618,0,20714 +103422,0,1,0,-1,-1,0,28851,0,23006 +103423,0,1,0,-1,-1,0,13669,0,22418 +103424,1,1,0,-1,-1,0,21410,0,22418 +103425,0,1,0,-1,-1,0,15464,0,22419 +103426,1,1,0,-1,-1,0,28112,0,22419 +103427,2,1,0,-1,-1,0,13388,0,22419 +103428,0,1,0,-1,-1,0,13388,0,22421 +103429,1,1,0,-1,-1,0,21476,0,22421 +103430,2,1,0,-1,-1,0,28112,0,22421 +103431,0,0,-1,-1,-1,0,483,0,22704 +103432,0,0,-1,-1,-1,0,28324,0,22726 +103433,0,1,0,-1,-1,0,9344,0,23264 +103434,1,1,0,-1,-1,0,18384,0,23264 +103435,0,0,-1,-1,-1,0,24874,0,20518 +103436,0,0,0,180000,180000,1155,25746,0,21115 +103437,0,0,0,180000,180000,1155,25747,0,21116 +103438,0,0,0,180000,180000,1155,25746,0,21117 +103439,0,0,0,180000,180000,1155,25747,0,21118 +103440,0,1,0,-1,-1,0,14054,0,20716 +103441,0,1,0,-1,-1,0,18035,0,20717 +103442,0,0,0,-1,-1,0,26528,0,21308 +103443,0,1,0,-1,-1,0,29369,0,23464 +103444,1,1,0,-1,-1,0,21626,0,23464 +103445,0,1,0,-1,-1,0,21364,0,23465 +103446,1,1,0,-1,-1,0,14054,0,23465 +103447,0,1,0,-1,-1,0,14249,0,22416 +103448,1,1,0,-1,-1,0,13669,0,22416 +103449,2,1,0,-1,-1,0,15465,0,22416 +103450,0,1,0,-1,-1,0,21409,0,22417 +103451,1,1,0,-1,-1,0,13669,0,22417 +103452,2,1,0,-1,-1,0,28325,0,22417 +103453,0,1,0,-1,-1,0,21364,0,22947 +103454,0,0,0,5000,-1,0,25851,0,21171 +103455,0,0,-1,-1,-1,0,24888,0,20528 +103456,0,0,-1,0,1000,11,1131,0,21033 +103457,0,0,-1,30000,-1,0,25677,0,21038 +103458,0,0,0,180000,180000,1155,25750,0,21119 +103459,0,0,0,180000,180000,1155,25750,0,21120 +103460,0,1,0,-1,-1,0,23990,0,20188 +103461,0,1,0,-1,-1,0,9342,0,20642 +103462,0,1,0,-1,-1,0,21618,0,20647 +103463,0,1,0,-1,-1,0,21626,0,21311 +103464,0,1,0,-1,-1,0,14027,0,21312 +103465,0,1,0,-1,-1,0,13383,0,21197 +103466,0,1,0,-1,-1,0,7516,0,19878 +103467,0,1,0,-1,-1,0,24243,0,19879 +103468,0,0,-5,1000,-1,0,25119,0,20746 +103469,0,0,-1,-1,-1,0,483,0,20757 +103470,0,0,-1,-1,-1,0,483,0,20758 +103471,0,0,-1,0,1000,11,25692,0,21071 +103472,0,0,-1,-1,-1,0,483,0,21025 +103473,0,0,-1,-1,-1,0,483,0,20752 +103474,0,0,-1,-1,-1,0,483,0,20753 +103475,0,0,-1,-1,-1,0,483,0,20754 +103476,0,0,-1,-1,-1,0,24891,0,20533 +103477,0,1,0,-1,-1,0,9417,0,20176 +103478,1,1,0,-1,-1,0,21618,0,20176 +103479,0,1,0,-1,-1,0,13669,0,21695 +103480,1,1,0,-1,-1,0,13384,0,21695 +103481,0,0,-1,-1,-1,0,483,0,21730 +103482,0,1,0,-1,-1,0,18035,0,21666 +103483,1,1,0,-1,-1,0,21620,0,21666 +103484,0,1,0,-1,-1,0,9317,0,21690 +103485,1,1,0,-1,-1,0,21626,0,21690 +103486,0,1,0,-1,-1,0,14798,0,21345 +103487,1,1,0,-1,-1,0,25975,0,21345 +103488,2,1,0,-1,-1,0,21362,0,21345 +103489,0,0,-1,-1,-1,0,483,0,21369 +103490,0,0,-1,-1,-1,0,483,0,21371 +103491,0,0,-1,0,1000,11,25660,0,21023 +103492,0,0,-1,0,1000,11,1129,0,21030 +103493,0,1,0,-1,-1,0,18054,0,21585 +103494,1,1,0,-1,-1,0,23727,0,21585 +103495,0,1,0,-1,-1,0,13385,0,21200 +103496,0,1,0,-1,-1,0,15813,0,20669 +103497,0,1,0,-1,-1,0,18384,0,20674 +103498,0,1,0,-1,-1,0,21629,0,20685 +103499,1,1,0,-1,-1,0,9314,0,20685 +103500,0,1,0,-1,-1,0,7597,0,20043 +103501,1,1,0,-1,-1,0,15806,0,20043 +103502,0,1,0,0,0,0,7597,0,20275 +103503,0,1,0,-1,-1,0,14027,0,20599 +103504,0,0,-1,-1,-1,0,24892,0,20535 +103505,0,0,-1,-1,-1,0,483,0,20547 +103506,0,1,0,-1,-1,0,7597,0,20668 +103507,0,1,0,-1,-1,0,25906,0,21190 +103508,0,0,0,90000,-1,0,24998,0,20636 +103509,0,1,0,-1,-1,0,13384,0,20637 +103510,0,0,-1,0,1000,11,1131,0,21031 +103511,0,0,-1,0,3000,79,26276,0,21546 +103512,0,1,0,-1,-1,0,14049,0,21677 +103513,1,1,0,-1,-1,0,7597,0,21677 +103514,0,1,0,-1,-1,0,18035,0,21620 +103515,1,1,0,-1,-1,0,21620,0,21620 +103516,0,1,0,-1,-1,0,18050,0,21347 +103517,1,1,0,-1,-1,0,18384,0,21347 +103518,2,1,0,-1,-1,0,23727,0,21347 +103519,0,1,0,-1,-1,0,14127,0,21348 +103520,1,1,0,-1,-1,0,21628,0,21348 +103521,2,1,0,-1,-1,0,23727,0,21348 +103522,0,1,0,-1,-1,0,14248,0,21349 +103523,1,1,0,-1,-1,0,21625,0,21349 +103524,0,1,0,-1,-1,0,14799,0,21350 +103525,1,1,0,-1,-1,0,21625,0,21350 +103526,2,1,0,-1,-1,0,25975,0,21350 +103527,0,1,0,-1,-1,0,14054,0,21353 +103528,1,1,0,-1,-1,0,7597,0,21353 +103529,0,1,0,-1,-1,0,14054,0,21356 +103530,1,1,0,-1,-1,0,7597,0,21356 +103531,2,1,0,-1,-1,0,21618,0,21356 +103532,0,1,0,-1,-1,0,14127,0,21357 +103533,1,1,0,-1,-1,0,18384,0,21357 +103534,2,1,0,-1,-1,0,7597,0,21357 +103535,0,1,0,-1,-1,0,7597,0,21360 +103536,1,1,0,-1,-1,0,15464,0,21360 +103537,0,0,0,300000,20000,1141,23734,0,19344 +103538,0,1,0,-1,-1,0,9317,0,19965 +103539,1,1,0,-1,-1,0,21627,0,19965 +103540,0,1,0,-1,-1,0,21363,0,19967 +103541,0,1,0,-1,-1,0,18036,0,21609 +103542,0,1,0,-1,-1,0,18029,0,21610 +103543,1,1,0,-1,-1,0,21627,0,21610 +103544,0,1,0,-1,-1,0,14127,0,21611 +103545,0,1,0,-1,-1,0,9344,0,21612 +103546,1,1,0,-1,-1,0,21620,0,21612 +103547,0,0,-1,-1,-1,0,483,0,21732 +103548,0,0,-1,-1,-1,0,483,0,21733 +103549,0,0,-1,-1,-1,0,483,0,21734 +103550,0,0,-1,-1,-1,0,483,0,21735 +103551,0,0,0,-1,3000,330,3363,0,21736 +103552,0,2,0,-1,-1,0,26415,0,21679 +103554,0,1,0,-1,-1,0,13388,0,20699 +103555,0,0,-1,-1,-1,0,25465,0,20905 +103556,0,0,-1,-1,-1,0,25465,0,20908 +103557,0,1,0,-1,-1,0,21363,0,21411 +103558,0,1,0,-1,-1,0,7597,0,20177 +103559,0,1,0,-1,-1,0,23990,0,20182 +103560,0,1,0,-1,-1,0,26405,0,21676 +103561,0,1,0,-1,-1,0,9345,0,23262 +103562,1,1,0,-1,-1,0,21626,0,23262 +103563,0,1,0,-1,-1,0,18384,0,23263 +103564,1,1,0,-1,-1,0,14248,0,23263 +103565,0,1,0,-1,-1,0,15715,0,23272 +103566,0,1,0,-1,-1,0,7681,0,20711 +103567,0,0,-1,1000,1500,1136,26294,0,21561 +103568,0,0,-1,1000,1500,1136,26295,0,21562 +103569,0,1,0,-1,-1,0,18384,0,21563 +103570,1,1,0,-1,-1,0,26283,0,21563 +103571,0,1,0,-1,-1,0,26283,0,21565 +103572,0,1,0,-1,-1,0,25975,0,21566 +103573,0,1,0,-1,-1,0,21593,0,21568 +103574,0,1,0,-1,-1,0,11789,0,21526 +103575,0,1,0,-1,-1,0,9315,0,21531 +103576,0,1,0,-1,-1,0,15715,0,23273 +103577,0,1,0,0,0,0,7597,0,20277 +103578,1,1,0,-1,-1,0,21595,0,20277 +103579,0,0,-1,-1,-1,0,483,0,20761 +103580,0,1,0,-1,-1,0,17367,0,21372 +103581,1,1,0,-1,-1,0,18384,0,21372 +103582,0,1,0,-1,-1,0,15714,0,21373 +103583,1,1,0,-1,-1,0,25975,0,21373 +103584,2,1,0,-1,-1,0,21362,0,21373 +103585,0,1,0,-1,-1,0,13881,0,21375 +103586,1,1,0,-1,-1,0,18384,0,21375 +103587,2,1,0,-1,-1,0,21618,0,21375 +103588,0,1,0,-1,-1,0,14127,0,21376 +103589,1,1,0,-1,-1,0,21625,0,21376 +103590,0,1,0,-1,-1,0,14027,0,21702 +103591,0,1,0,-1,-1,0,14799,0,21705 +103592,0,1,0,-1,-1,0,13383,0,21706 +103593,0,1,0,-1,-1,0,9315,0,21619 +103594,1,1,0,-1,-1,0,21633,0,21619 +103595,0,0,0,180000,-1,0,26480,0,21670 +103596,0,1,0,-1,-1,0,18053,0,21671 +103597,1,1,0,-1,-1,0,26283,0,21671 +103598,0,1,0,-1,-1,0,15464,0,21672 +103599,0,1,0,-1,-1,0,15464,0,21406 +103600,0,1,0,-1,-1,0,21363,0,21408 +103601,0,1,0,-1,-1,0,21362,0,21410 +103602,1,1,0,-1,-1,0,26154,0,21410 +103603,0,0,-1,-1,-1,0,483,0,21723 +103604,0,1,0,-1,-1,0,7597,0,21673 +103605,1,1,0,-1,-1,0,9336,0,21673 +103606,0,0,-1,0,1000,59,25037,0,20709 +103607,0,1,0,-1,-1,0,7598,0,20627 +103608,1,1,0,-1,-1,0,9333,0,20627 +103609,0,1,0,-1,-1,0,18040,0,20628 +103610,1,1,0,-1,-1,0,21629,0,20628 +103611,2,1,0,-1,-1,0,18384,0,20628 +103612,0,1,0,-1,-1,0,14054,0,20629 +103613,0,0,-1,-1,-1,0,24245,0,19883 +103614,0,0,-1,-1,-1,0,26298,0,21569 +103615,0,0,-1,-1,-1,0,25783,0,21136 +103616,0,1,0,-1,-1,0,9408,0,20630 +103617,0,1,0,-1,-1,0,9330,0,20633 +103618,0,1,0,-1,-1,0,18052,0,20634 +103619,0,1,0,-1,-1,0,7597,0,21362 +103620,0,1,0,-1,-1,0,9343,0,21453 +103621,0,1,0,-1,-1,0,21599,0,21567 +103622,0,1,0,-1,-1,0,13388,0,21674 +103623,0,0,-1,1000,2000,1136,26325,0,21574 +103624,0,0,-1,1000,2000,1136,26326,0,21575 +103625,0,0,-1,1000,2000,1136,26327,0,21576 +103626,0,1,0,-1,-1,0,18378,0,21681 +103627,1,1,0,-1,-1,0,7681,0,21681 +103628,0,0,-1,-1,-1,0,26299,0,21570 +103629,0,0,-1,1000,2000,1136,26304,0,21571 +103630,0,1,0,-1,-1,0,7597,0,23242 +103631,1,1,0,-1,-1,0,15464,0,23242 +103632,2,1,0,-1,-1,0,9332,0,23242 +103633,0,1,0,-1,-1,0,9408,0,21484 +103634,0,1,0,-1,-1,0,9345,0,21489 +103635,0,1,0,-1,-1,0,15464,0,21477 +103636,1,1,0,-1,-1,0,9336,0,21477 +103637,0,1,0,-1,-1,0,7597,0,21368 +103638,1,1,0,-1,-1,0,9415,0,21368 +103639,0,1,0,-1,-1,0,9314,0,21412 +103640,0,1,0,-1,-1,0,9346,0,21415 +103641,0,1,0,-1,-1,0,26155,0,21416 +103642,0,1,0,-1,-1,0,18384,0,21417 +103643,1,1,0,-1,-1,0,9343,0,21417 +103644,2,1,0,-1,-1,0,23727,0,21417 +103645,0,1,0,-1,-1,0,9417,0,21475 +103646,0,1,0,-1,-1,0,14254,0,21476 +103647,0,1,0,-1,-1,0,18040,0,21615 +103648,1,1,0,-1,-1,0,21634,0,21615 +103649,0,1,0,-1,-1,0,17871,0,21686 +103650,0,1,0,-1,-1,0,7598,0,21495 +103651,0,1,0,-1,-1,0,26203,0,21516 +103652,0,1,0,-1,-1,0,23730,0,21521 +103653,0,1,0,-1,-1,0,14127,0,21684 +103654,0,0,0,180000,-1,0,26463,0,21685 +103655,0,1,0,-1,-1,0,21596,0,21687 +103656,0,1,0,-1,-1,0,14054,0,21689 +103657,1,1,0,-1,-1,0,18384,0,21689 +103658,0,0,-1,-1,-1,0,483,0,21281 +103659,0,1,0,-1,-1,0,15817,0,21586 +103660,1,1,0,-1,-1,0,7597,0,21586 +103661,2,1,0,-1,-1,0,15464,0,21586 +103662,0,1,0,-1,-1,0,18031,0,21587 +103663,1,1,0,-1,-1,0,21619,0,21587 +103664,0,1,0,-1,-1,0,18043,0,21663 +103665,1,1,0,-1,-1,0,21628,0,21663 +103666,0,1,0,-1,-1,0,7597,0,21664 +103667,1,1,0,-1,-1,0,15810,0,21664 +103668,0,2,0,-1,-1,0,26108,0,21134 +103669,0,1,0,-1,-1,0,23300,0,23274 +103670,1,1,0,-1,-1,0,7597,0,23274 +103671,0,1,0,-1,-1,0,18052,0,21346 +103672,1,1,0,-1,-1,0,18384,0,21346 +103673,2,1,0,-1,-1,0,21620,0,21346 +103674,0,0,-1,-1,-1,0,483,0,20728 +103675,0,0,-1,-1,-1,0,483,0,20729 +103676,0,0,-1,-1,-1,0,483,0,20732 +103677,0,0,-1,-1,-1,0,483,0,20734 +103678,0,0,0,180000,-1,0,24854,0,20503 +103679,0,1,0,-1,-1,0,15696,0,21617 +103680,0,1,0,-1,-1,0,21625,0,20621 +103681,0,1,0,-1,-1,0,15715,0,21504 +103682,0,1,0,-1,-1,0,15809,0,21505 +103683,0,1,0,-1,-1,0,7597,0,21393 +103684,0,1,0,-1,-1,0,14248,0,21468 +103685,0,1,0,-1,-1,0,13669,0,21693 +103686,0,1,0,-1,-1,0,18049,0,21707 +103687,1,1,0,-1,-1,0,26283,0,21707 +103688,0,0,-1,0,1000,11,25990,0,21215 +103689,0,0,0,0,3000,330,25953,0,21218 +103690,0,1,0,-1,-1,0,7597,0,23312 +103691,1,1,0,-1,-1,0,15464,0,23312 +103692,2,1,0,-1,-1,0,14089,0,23312 +103693,0,1,0,-1,-1,0,9332,0,23313 +103694,1,1,0,-1,-1,0,7597,0,23313 +103695,2,1,0,-1,-1,0,15464,0,23313 +103696,0,1,0,-1,-1,0,7597,0,23023 +103697,1,1,0,-1,-1,0,9331,0,23023 +103698,0,0,0,0,3000,330,26656,0,21176 +103699,0,1,0,0,0,0,21629,0,21185 +103700,1,1,0,-1,-1,0,9406,0,21185 +103701,0,1,0,-1,-1,0,25901,0,21189 +103702,1,1,0,-1,-1,0,15464,0,21189 +103703,0,1,0,-1,-1,0,23729,0,19884 +103704,1,1,0,-1,-1,0,21641,0,19884 +103705,2,1,0,-1,-1,0,14054,0,19884 +103706,0,0,0,1500,-1,0,25849,0,21168 +103707,0,0,-5,1000,-1,0,25120,0,20747 +103708,0,2,0,-1,-1,0,24993,0,20578 +103709,0,1,0,-1,-1,0,21362,0,20481 +103710,1,1,0,-1,-1,0,9398,0,20481 +103711,0,0,-1,-1,-1,0,483,0,20554 +103712,0,1,0,-1,-1,0,15464,0,20680 +103713,0,1,0,-1,-1,0,14248,0,23025 +103714,1,1,0,-1,-1,0,23727,0,23025 +103715,2,1,0,-1,-1,0,18384,0,23025 +103716,0,1,0,-1,-1,0,7597,0,22749 +103717,0,1,0,-1,-1,0,21364,0,23455 +103718,1,1,0,-1,-1,0,14054,0,23455 +103719,0,1,0,-1,-1,0,7597,0,23456 +103720,1,1,0,-1,-1,0,9335,0,23456 +103721,0,1,0,-1,-1,0,15715,0,23297 +103722,0,1,0,-1,-1,0,7597,0,23298 +103723,1,1,0,-1,-1,0,15464,0,23298 +103724,2,1,0,-1,-1,0,15806,0,23298 +103725,0,1,0,-1,-1,0,7597,0,23299 +103726,1,1,0,-1,-1,0,15464,0,23299 +103727,2,1,0,-1,-1,0,15806,0,23299 +103728,0,1,0,-1,-1,0,17899,0,20347 +103729,0,1,0,-1,-1,0,15715,0,21208 +103730,1,1,0,-1,-1,0,21362,0,21208 +103731,0,1,0,-1,-1,0,18049,0,21209 +103732,1,1,0,-1,-1,0,21362,0,21209 +103733,0,1,0,-1,-1,0,14127,0,21210 +103734,1,1,0,-1,-1,0,21363,0,21210 +103735,0,1,0,-1,-1,0,9315,0,21458 +103736,1,1,0,-1,-1,0,21618,0,21458 +103737,0,1,0,-1,-1,0,15464,0,21459 +103738,0,1,0,-1,-1,0,13665,0,21460 +103739,1,1,0,-1,-1,0,13385,0,21460 +103740,0,1,0,-1,-1,0,9343,0,21454 +103741,0,1,0,-1,-1,0,18384,0,21466 +103742,1,1,0,-1,-1,0,18053,0,21466 +103743,0,1,0,-1,-1,0,14248,0,21471 +103744,1,1,0,-1,-1,0,18384,0,21471 +103745,0,1,0,-1,-1,0,21619,0,21481 +103746,0,1,0,-1,-1,0,15464,0,21490 +103747,0,1,0,-1,-1,0,13384,0,20650 +103748,0,1,0,-1,-1,0,28693,0,22988 +103749,1,1,0,-1,-1,0,33372,0,22988 +103750,2,1,0,-1,-1,0,21620,0,22988 +103751,0,1,0,-1,-1,0,13669,0,23028 +103752,0,0,-1,0,1000,11,29041,0,23175 +103753,0,0,-1,-1,-1,0,29029,0,23176 +103754,0,1,0,0,-1,0,7709,0,23177 +103755,0,1,0,0,0,0,9415,0,23178 +103756,0,0,-1,-1,-1,0,483,0,24101 +103757,0,1,0,-1,-1,0,9330,0,24222 +103758,0,0,0,0,0,79,30331,0,23794 +103759,0,0,0,0,0,79,30336,0,23795 +103760,0,0,0,0,0,79,30338,0,23796 +103761,0,1,0,-1,-1,0,9345,0,22968 +103762,0,1,0,-1,-1,0,9346,0,22700 +103763,0,0,-1,-1,-1,0,483,0,22703 +103764,0,1,0,-1,-1,0,15829,0,22814 +103765,0,1,0,-1,-1,0,18050,0,22506 +103766,1,1,0,-1,-1,0,18382,0,22506 +103767,2,1,0,-1,-1,0,23727,0,22506 +103768,0,1,0,-1,-1,0,23727,0,22507 +103769,1,1,0,-1,-1,0,18053,0,22507 +103770,0,1,0,-1,-1,0,17367,0,22508 +103771,1,1,0,-1,-1,0,18384,0,22508 +103772,0,1,0,-1,-1,0,18384,0,22509 +103773,1,1,0,-1,-1,0,18049,0,22509 +103774,0,1,0,-1,-1,0,18052,0,22510 +103775,1,1,0,-1,-1,0,18384,0,22510 +103776,0,1,0,-1,-1,0,9417,0,23256 +103777,1,1,0,-1,-1,0,18384,0,23256 +103778,0,1,0,-1,-1,0,9416,0,22092 +103779,0,1,0,-1,-1,0,9343,0,22097 +103780,1,1,0,-1,-1,0,18384,0,22097 +103781,0,0,-3,600000,60000,24,29305,0,23379 +103782,0,1,0,0,0,0,9317,0,23453 +103784,0,0,-1,0,120000,4,17531,0,23578 +103785,0,1,0,-1,-1,0,21477,0,22981 +103786,1,1,0,-1,-1,0,23203,0,22981 +103787,0,0,-1,-1,-1,0,29480,0,23549 +103788,0,0,0,120000,0,0,29506,0,23558 +103789,0,0,0,120000,20000,1141,29602,0,23570 +103790,0,0,-1,0,120000,4,17534,0,23579 +103791,0,0,-1,-1,-1,0,483,0,22774 +103792,0,1,0,-1,-1,0,7597,0,23300 +103793,0,1,0,-1,-1,0,14248,0,23302 +103794,1,1,0,-1,-1,0,21626,0,23302 +103795,0,1,0,-1,-1,0,18045,0,22514 +103796,1,1,0,-1,-1,0,21620,0,22514 +103797,0,1,0,-1,-1,0,21626,0,22516 +103798,1,1,0,-1,-1,0,17371,0,22516 +103799,0,1,0,-1,-1,0,18034,0,22518 +103800,0,1,0,-1,-1,0,18031,0,22519 +103801,0,1,0,-1,-1,0,18031,0,22495 +103802,1,1,0,-1,-1,0,21620,0,22495 +103803,0,0,0,1500,-1,0,28487,0,22780 +103804,0,0,0,1500,-1,0,28505,0,22781 +103805,0,1,0,-1,-1,0,9335,0,22810 +103806,0,1,0,-1,-1,0,14027,0,22812 +103807,1,1,0,-1,-1,0,7597,0,22812 +103808,0,1,0,-1,-1,0,18379,0,23067 +103809,0,1,0,-1,-1,0,18039,0,23048 +103810,1,1,0,-1,-1,0,21619,0,23048 +103811,0,1,0,-1,-1,0,13881,0,23663 +103812,1,1,0,-1,-1,0,21363,0,23663 +103813,0,1,0,-1,-1,0,14127,0,22752 +103814,0,0,-1,-1,-1,0,483,0,22767 +103815,0,0,-1,-1,-1,0,483,0,22769 +103816,0,0,-1,-1,-1,0,483,0,22772 +103817,0,0,-1,-1,-1,0,483,0,22694 +103818,0,0,0,1500,-1,0,28738,0,23002 +103819,0,1,0,-1,-1,0,28847,0,23004 +103820,0,1,0,-1,-1,0,14248,0,23666 +103821,1,1,0,-1,-1,0,21364,0,23666 +103822,0,1,0,-1,-1,0,18049,0,23668 +103823,1,1,0,-1,-1,0,7598,0,23668 +103825,0,0,-1,0,1000,150,30020,0,23684 +103826,0,0,-1,-1,-1,0,483,0,23689 +103828,0,0,-1,0,0,0,27110,0,22031 +103829,0,1,0,-1,-1,0,7597,0,22954 +103830,1,1,0,-1,-1,0,15464,0,22954 +103831,2,0,0,120000,15000,1141,28866,0,22954 +103832,0,1,0,-1,-1,0,9343,0,22852 +103833,0,1,0,-1,-1,0,18384,0,23021 +103834,1,1,0,-1,-1,0,14248,0,23021 +103835,0,1,0,-1,-1,0,28805,0,23056 +103836,1,1,0,-1,-1,0,18378,0,23056 +103837,0,1,0,-1,-1,0,18030,0,23065 +103838,1,1,0,-1,-1,0,21627,0,23065 +103839,0,1,0,-1,-1,0,18030,0,23066 +103840,1,1,0,-1,-1,0,21627,0,23066 +103841,0,1,0,-1,-1,0,28687,0,22803 +103842,0,1,0,-1,-1,0,18384,0,22878 +103843,1,1,0,-1,-1,0,9343,0,22878 +103844,0,1,0,-1,-1,0,28840,0,22813 +103845,0,1,0,-1,-1,0,9417,0,22756 +103846,0,1,0,-1,-1,0,9346,0,22757 +103847,0,0,-1,-1,-1,0,29006,0,23164 +103848,0,1,0,-1,-1,0,9415,0,23168 +103849,0,1,0,0,-1,0,9397,0,23169 +103850,0,1,0,-1,-1,0,9417,0,23311 +103851,1,1,0,-1,-1,0,18384,0,23311 +103852,0,1,0,-1,-1,0,14047,0,22711 +103853,0,0,-1,-1,-1,0,483,0,22390 +103854,0,1,0,-1,-1,0,14055,0,22391 +103855,1,1,0,-1,-1,0,18384,0,22391 +103856,0,0,-1,-1,-1,0,483,0,22392 +103857,0,1,0,-1,-1,0,15464,0,21997 +103858,0,0,-1,-1,-1,0,483,0,22220 +103859,0,1,0,0,0,0,18031,0,22689 +103860,0,1,0,-1,-1,0,7597,0,22690 +103861,0,1,0,-1,-1,0,28282,0,22691 +103862,1,2,0,-1,-1,0,28414,0,22691 +103863,2,1,0,-1,-1,0,7598,0,22691 +103864,3,1,0,-1,-1,0,15464,0,22691 +103865,4,2,0,-1,-1,0,29155,0,22691 +103866,0,0,-1,-1,-1,0,483,0,22692 +103867,0,0,-1,-1,180000,1153,29432,0,22682 +103868,0,1,0,-1,-1,0,9332,0,23258 +103869,1,1,0,-1,-1,0,7597,0,23258 +103870,2,1,0,-1,-1,0,15464,0,23258 +103871,0,1,0,-1,-1,0,7597,0,23259 +103872,1,1,0,-1,-1,0,18384,0,23259 +103873,0,1,0,-1,-1,0,9397,0,22758 +103874,0,1,0,-1,-1,0,13385,0,22762 +103875,0,1,0,-1,-1,0,13390,0,22763 +103876,0,0,-1,-1,-1,0,483,0,22766 +103877,0,0,-1,-1,-1,0,483,0,22768 +103878,0,0,-1,-1,-1,0,483,0,22770 +103879,0,0,-1,-1,-1,0,483,0,22771 +103880,0,0,-1,-1,-1,0,483,0,22773 +103881,0,0,-1,-1,-1,0,483,0,22739 +103882,0,1,0,-1,-1,0,7597,0,22740 +103883,0,1,0,-1,-1,0,9416,0,22741 +103884,0,1,0,-1,-1,0,7598,0,23293 +103885,0,1,0,-1,-1,0,7597,0,23294 +103886,1,1,0,-1,-1,0,9344,0,23294 +103887,0,1,0,-1,-1,0,14127,0,23296 +103888,0,1,0,-1,-1,0,18384,0,22102 +103889,1,1,0,-1,-1,0,9343,0,22102 +103890,0,1,0,-1,-1,0,7597,0,23244 +103891,1,1,0,-1,-1,0,15464,0,23244 +103892,0,0,-1,1500,-1,0,28806,0,23247 +103893,0,1,0,-1,-1,0,9344,0,23260 +103894,1,1,0,-1,-1,0,18384,0,23260 +103895,0,1,0,-1,-1,0,14248,0,23261 +103896,1,1,0,-1,-1,0,21626,0,23261 +103897,0,0,-10,-1,120000,1142,26682,0,21829 +103898,0,0,-1,0,0,0,27123,0,22027 +103899,0,1,0,-1,-1,0,15465,0,22009 +103900,0,1,0,-1,-1,0,9315,0,22234 +103901,1,1,0,-1,-1,0,21625,0,22234 +103902,0,0,-1,0,0,0,27112,0,22033 +103903,0,1,0,-1,-1,0,43588,0,23072 +103904,1,1,0,-1,-1,0,7597,0,23072 +103905,2,1,0,-1,-1,0,15464,0,23072 +103906,0,1,0,-1,-1,0,18049,0,23664 +103907,1,1,0,-1,-1,0,18384,0,23664 +103908,2,1,0,-1,-1,0,23727,0,23664 +103909,0,1,0,-1,-1,0,17367,0,23665 +103910,1,1,0,-1,-1,0,18382,0,23665 +103911,0,1,0,-1,-1,0,18382,0,22630 +103912,1,1,0,-1,-1,0,28141,0,22630 +103913,2,1,0,-1,-1,0,28143,0,22630 +103914,3,0,0,-1,-1,0,28148,0,22630 +103915,0,1,0,-1,-1,0,28144,0,22631 +103916,1,1,0,-1,-1,0,28155,0,22631 +103917,2,0,0,-1,-1,0,28148,0,22631 +103918,0,1,0,-1,-1,0,28145,0,22632 +103919,1,1,0,-1,-1,0,28152,0,22632 +103920,2,1,0,-1,-1,0,44907,0,22632 +103921,3,0,0,-1,-1,0,28148,0,22632 +103922,0,1,0,-1,-1,0,14248,0,23303 +103923,1,1,0,-1,-1,0,39546,0,23303 +103924,0,1,0,-1,-1,0,14248,0,23304 +103925,1,1,0,-1,-1,0,18384,0,23304 +103926,0,1,0,-1,-1,0,18384,0,23305 +103927,1,1,0,-1,-1,0,14248,0,23305 +103928,0,1,0,-1,-1,0,7598,0,23306 +103929,0,1,0,-1,-1,0,9406,0,23129 +103930,0,1,0,-1,-1,0,14248,0,22885 +103931,1,1,0,-1,-1,0,39547,0,22885 +103932,0,1,0,-1,-1,0,18384,0,22505 +103933,1,1,0,-1,-1,0,18054,0,22505 +103934,2,1,0,-1,-1,0,25975,0,22505 +103935,0,1,0,-1,-1,0,7598,0,23251 +103936,0,0,-1,-1,-1,0,483,0,22309 +103937,0,0,-1,-1,-1,0,483,0,22310 +103938,0,1,0,-1,-1,0,18053,0,22499 +103939,0,1,0,-1,-1,0,18384,0,22500 +103940,1,1,0,-1,-1,0,14127,0,22500 +103941,0,1,0,-1,-1,0,7597,0,21998 +103942,0,1,0,-1,-1,0,7597,0,21999 +103943,0,0,-1,0,0,0,27115,0,22036 +103944,0,1,0,-1,-1,0,21632,0,23037 +103945,0,1,0,-1,-1,0,7597,0,23038 +103946,1,1,0,-1,-1,0,15464,0,23038 +103947,2,1,0,-1,-1,0,15812,0,23038 +103948,0,0,-1,-1,-1,0,28161,0,22635 +103949,0,1,0,-1,-1,0,14047,0,22407 +103950,0,1,0,0,0,0,9416,0,22408 +103951,0,1,0,-1,-1,0,26395,0,23451 +103952,1,1,0,-1,-1,0,18384,0,23451 +103953,0,1,0,-1,-1,0,14798,0,22731 +103954,1,1,0,-1,-1,0,23727,0,22731 +103955,0,1,0,-1,-1,0,28347,0,22736 +103956,0,0,0,1500,-1,0,30156,0,23713 +103957,0,0,0,0,3000,330,30174,0,23720 +103958,0,1,0,-1,-1,0,9335,0,22712 +103959,0,1,0,-1,-1,0,7597,0,22714 +103960,1,1,0,-1,-1,0,15464,0,22714 +103961,0,1,0,-1,-1,0,13881,0,22716 +103962,0,0,-1,1000,1000,11,29334,0,23211 +103963,0,1,0,-1,-1,0,7597,0,23467 +103964,1,1,0,-1,-1,0,9335,0,23467 +103965,0,1,0,0,0,0,14799,0,23468 +103966,0,1,0,0,0,0,9317,0,23469 +103967,0,1,0,-1,-1,0,9416,0,22750 +103968,0,1,0,-1,-1,0,7597,0,22751 +103969,1,1,0,-1,-1,0,15464,0,22751 +103970,0,1,0,-1,-1,0,7597,0,22753 +103971,1,1,0,-1,-1,0,15464,0,22753 +103972,2,1,0,-1,-1,0,15715,0,22753 +103973,0,0,0,3600000,3600000,1149,21358,0,22754 +103974,0,1,0,-1,-1,0,21618,0,23667 +103975,1,1,0,-1,-1,0,7597,0,23667 +103976,2,1,0,-1,-1,0,14799,0,23667 +103977,0,1,0,-1,-1,0,23043,0,23288 +103978,1,1,0,-1,-1,0,14248,0,23288 +103979,0,1,0,-1,-1,0,23037,0,23290 +103980,1,1,0,-1,-1,0,9346,0,23290 +103981,0,1,0,-1,-1,0,9344,0,23291 +103982,1,1,0,-1,-1,0,23727,0,23291 +103983,0,1,0,-1,-1,0,7598,0,23292 +103984,0,1,0,-1,-1,0,14248,0,22882 +103985,1,1,0,-1,-1,0,21626,0,22882 +103986,0,1,0,-1,-1,0,14248,0,22883 +103987,1,1,0,-1,-1,0,18384,0,22883 +103988,0,1,0,-1,-1,0,18055,0,22983 +103989,1,1,0,-1,-1,0,18384,0,22983 +103990,0,1,0,-1,-1,0,15465,0,22718 +103991,0,1,0,-1,-1,0,7597,0,22872 +103992,0,1,0,-1,-1,0,22778,0,23286 +103993,0,1,0,-1,-1,0,22912,0,22422 +103994,1,1,0,-1,-1,0,21476,0,22422 +103995,2,1,0,-1,-1,0,13388,0,22422 +103996,0,1,0,-1,-1,0,7518,0,22423 +103997,0,1,0,-1,-1,0,18038,0,22425 +103998,1,1,0,-1,-1,0,18384,0,22425 +103999,2,1,0,-1,-1,0,20959,0,22425 +104000,0,1,0,-1,-1,0,21629,0,22426 +104001,1,1,0,-1,-1,0,9318,0,22426 +104002,0,1,0,-1,-1,0,18054,0,23069 +104003,0,1,0,-1,-1,0,17493,0,23070 +104004,1,1,0,-1,-1,0,18382,0,23070 +104005,0,1,0,-1,-1,0,15715,0,22884 +104006,0,1,0,-1,-1,0,27037,0,23073 +104007,0,1,0,-1,-1,0,18384,0,23075 +104008,1,1,0,-1,-1,0,9316,0,23075 +104009,2,1,0,-1,-1,0,21618,0,23075 +104010,0,1,0,-1,-1,0,7516,0,22764 +104011,0,1,0,-1,-1,0,14047,0,22721 +104012,0,1,0,-1,-1,0,9327,0,23128 +104013,0,1,0,-1,-1,0,7598,0,22873 +104014,0,1,0,-1,-1,0,14127,0,22881 +104015,0,1,0,-1,-1,0,9331,0,23170 +104016,0,1,0,-1,-1,0,9417,0,22098 +104017,1,1,0,-1,-1,0,21618,0,22098 +104018,0,1,0,-1,-1,0,21618,0,22099 +104019,1,1,0,-1,-1,0,9417,0,22099 +104020,0,1,0,-1,-1,0,9416,0,22100 +104021,0,1,0,-1,-1,0,9416,0,22107 +104022,1,1,0,-1,-1,0,21623,0,22107 +104023,0,1,0,-1,-1,0,9345,0,22109 +104024,0,1,0,-1,-1,0,14254,0,22688 +104025,0,0,-1,-1,-1,0,483,0,22312 +104026,0,1,0,-1,-1,0,9315,0,22319 +104027,1,1,0,-1,-1,0,21619,0,22319 +104028,0,0,-1,0,0,0,27102,0,22024 +104029,0,0,-1,0,0,0,22092,0,22026 +104030,0,0,-1,0,0,0,26792,0,22020 +104031,0,1,0,-1,-1,0,7598,0,23071 +104032,0,1,0,-1,-1,0,15464,0,22806 +104033,0,1,0,-1,-1,0,28693,0,22807 +104034,1,1,0,-1,-1,0,23727,0,22807 +104035,2,1,0,-1,-1,0,18384,0,22807 +104036,0,1,0,-1,-1,0,7597,0,22808 +104037,1,1,0,-1,-1,0,15464,0,22808 +104038,2,1,0,-1,-1,0,9329,0,22808 +104039,0,1,0,-1,-1,0,21629,0,22809 +104040,1,1,0,-1,-1,0,14055,0,22809 +104041,0,0,-1,0,120000,1153,27661,0,22261 +104042,0,0,-1,-1,-1,0,28163,0,22636 +104043,0,1,0,-1,-1,0,7597,0,22748 +104044,1,1,0,-1,-1,0,15464,0,22748 +104045,0,1,0,-1,-1,0,13385,0,22940 +104046,0,0,-1,0,1000,11,29055,0,23172 +104047,0,1,0,-1,-1,0,9415,0,23173 +104048,0,1,0,-1,-1,0,9346,0,22253 +104049,0,1,0,-1,-1,0,13390,0,22732 +104050,1,1,0,-1,-1,0,13669,0,22732 +104051,2,1,0,-1,-1,0,15464,0,22732 +104052,0,1,0,-1,-1,0,28686,0,22942 +104053,0,0,0,0,0,103,30175,0,23719 +104054,0,0,0,0,0,103,30177,0,23721 +104055,0,0,0,0,0,103,30178,0,23722 +104056,0,1,0,-1,-1,0,9343,0,23254 +104057,0,1,0,-1,-1,0,23727,0,22231 +104058,0,1,0,-1,-1,0,7597,0,22936 +104059,0,1,0,-1,-1,0,7597,0,23014 +104060,1,1,0,-1,-1,0,15464,0,23014 +104061,2,1,0,-1,-1,0,9334,0,23014 +104062,0,0,0,1500,-1,0,28740,0,23015 +104063,0,0,-1,300000,60000,24,29324,0,23418 +104064,0,0,-1,1000,-1,0,29335,0,23435 +104065,0,1,0,-1,-1,0,7598,0,22874 +104066,0,1,0,-1,-1,0,27853,0,22398 +104067,0,1,0,-1,-1,0,14127,0,23017 +104068,1,1,0,-1,-1,0,25975,0,23017 +104069,1,1,0,-1,-1,0,15464,0,23018 +104070,0,1,0,-1,-1,0,9344,0,23275 +104071,0,0,0,0,0,0,30183,0,23725 +104072,0,0,0,0,0,0,30190,0,23728 +104073,0,1,0,-1,-1,0,7597,0,23307 +104074,0,1,0,-1,-1,0,9346,0,23308 +104075,0,1,0,-1,-1,0,9343,0,23309 +104076,0,0,-1,0,0,0,26743,0,22023 +104077,0,1,0,-1,-1,0,18034,0,22960 +104078,1,1,0,-1,-1,0,21363,0,22960 +104079,0,1,0,-1,-1,0,9343,0,22091 +104080,1,1,0,-1,-1,0,18384,0,22091 +104081,0,1,0,-1,-1,0,7598,0,22875 +104082,0,1,0,-1,-1,0,13387,0,23019 +104083,0,1,0,-1,-1,0,7598,0,23068 +104084,0,1,0,-1,-1,0,7597,0,22876 +104085,0,1,0,-1,-1,0,7597,0,22879 +104086,1,1,0,-1,-1,0,15464,0,22879 +104087,2,1,0,-1,-1,0,15806,0,22879 +104088,0,1,0,-1,-1,0,7597,0,22880 +104089,1,1,0,-1,-1,0,15464,0,22880 +104090,2,1,0,-1,-1,0,15806,0,22880 +104091,0,1,0,-1,-1,0,21624,0,22254 +104092,1,1,0,-1,-1,0,7678,0,22254 +104093,0,1,0,-1,-1,0,9407,0,22275 +104094,0,0,-1,1000,-1,0,29332,0,23327 +104095,0,0,0,-1,-1,0,27667,0,22131 +104096,0,0,-1,-1,-1,0,483,0,22695 +104097,0,0,-1,-1,-1,0,483,0,22698 +104098,0,1,0,-1,-1,0,14248,0,23310 +104099,1,1,0,-1,-1,0,18384,0,23310 +104100,0,0,-1,-1,-1,0,28165,0,22638 +104101,0,0,-1,-1,-1,0,27709,0,22140 +104102,0,0,-1,-1,-1,0,27703,0,22141 +104103,0,0,-1,-1,-1,0,27711,0,22142 +104104,0,1,0,-1,-1,0,9416,0,22110 +104105,0,0,-1,0,1000,11,29073,0,22895 +104106,0,0,-1,-1,-1,0,483,0,22897 +104107,0,1,0,-1,-1,0,23516,0,23139 +104108,0,1,0,-1,-1,0,9415,0,23156 +104109,0,0,-1,-1,-1,0,27701,0,22143 +104110,0,1,0,-1,-1,0,9345,0,22256 +104111,0,1,0,-1,-1,0,7681,0,22257 +104112,0,0,-1,-1,-1,0,26899,0,22259 +104113,0,0,0,-1,-1,0,27664,0,22285 +104114,0,0,0,-1,-1,0,27665,0,22286 +104115,0,0,0,-1,-1,0,27665,0,22287 +104116,0,0,0,-1,-1,0,27665,0,22288 +104117,0,0,0,-1,-1,0,27666,0,22290 +104118,0,1,0,-1,-1,0,27846,0,22399 +104119,0,1,0,-1,-1,0,7597,0,23314 +104120,1,1,0,-1,-1,0,15464,0,23314 +104121,0,1,0,-1,-1,0,7597,0,23315 +104122,0,1,0,-1,-1,0,14248,0,23316 +104123,1,1,0,-1,-1,0,21626,0,23316 +104124,0,1,0,-1,-1,0,9345,0,23317 +104125,1,1,0,-1,-1,0,21626,0,23317 +104126,0,1,0,-1,-1,0,18384,0,23318 +104127,1,1,0,-1,-1,0,14248,0,23318 +104128,0,1,0,-1,-1,0,9344,0,23319 +104129,1,1,0,-1,-1,0,18384,0,23319 +104130,0,0,-1,-1,-1,0,483,0,23320 +104131,0,1,0,-1,-1,0,26395,0,23466 +104132,1,1,0,-1,-1,0,18384,0,23466 +104133,0,1,0,-1,-1,0,9140,0,22404 +104134,0,1,0,-1,-1,0,9407,0,22405 +104135,0,1,0,-1,-1,0,18041,0,22406 +104136,0,1,0,-1,-1,0,18040,0,22428 +104137,1,1,0,-1,-1,0,18384,0,22428 +104138,2,1,0,-1,-1,0,21629,0,22428 +104139,0,1,0,-1,-1,0,18032,0,22430 +104140,1,1,0,-1,-1,0,18384,0,22430 +104141,2,1,0,-1,-1,0,21363,0,22430 +104142,0,1,0,-1,-1,0,18031,0,22431 +104143,1,1,0,-1,-1,0,21363,0,22431 +104144,0,1,0,0,0,0,9416,0,22433 +104145,1,1,0,-1,-1,0,18384,0,22433 +104146,0,1,0,-1,-1,0,28849,0,23005 +104147,0,1,0,-1,-1,0,25975,0,22937 +104148,1,1,0,-1,-1,0,15715,0,22937 +104149,0,1,0,-1,-1,0,13385,0,22938 +104150,1,1,0,-1,-1,0,13669,0,22938 +104151,2,1,0,-1,-1,0,15464,0,22938 +104152,0,1,0,-1,-1,0,18035,0,22939 +104153,0,0,0,-1,3000,330,29059,0,23193 +104154,0,0,-1,1500,-1,0,30088,0,23194 +104155,0,0,-1,1500,-1,0,30089,0,23195 +104156,0,0,-1,1500,-1,0,30090,0,23196 +104157,0,1,0,-1,-1,0,27847,0,22402 +104158,0,1,0,-1,-1,0,23727,0,22403 +104159,1,1,0,-1,-1,0,9415,0,22403 +104160,0,0,0,0,0,0,30187,0,23727 +104161,0,1,0,-1,-1,0,28855,0,23198 +104162,0,1,0,-1,-1,0,28857,0,23199 +104163,0,1,0,-1,-1,0,7597,0,23000 +104164,1,1,0,-1,-1,0,15464,0,23000 +104165,0,1,0,-1,-1,0,18382,0,23001 +104166,1,0,0,120000,-1,0,28862,0,23001 +104167,0,1,0,-1,-1,0,15696,0,23029 +104168,0,1,0,-1,-1,0,9336,0,23030 +104169,1,1,0,-1,-1,0,15464,0,23030 +104170,0,1,0,-1,-1,0,9346,0,23032 +104171,0,1,0,-1,-1,0,7597,0,23034 +104172,0,1,0,-1,-1,0,28767,0,23035 +104173,0,1,0,-1,-1,0,15696,0,23036 +104174,0,0,0,1500,-1,0,28739,0,23007 +104175,0,1,0,-1,-1,0,9408,0,23009 +104176,0,1,0,-1,-1,0,28856,0,23200 +104177,0,1,0,-1,-1,0,28853,0,23201 +104178,0,1,0,-1,-1,0,28853,0,23202 +104179,0,1,0,-1,-1,0,28854,0,23197 +104180,0,1,0,-1,-1,0,9345,0,22085 +104181,1,1,0,-1,-1,0,21626,0,22085 +104182,0,1,0,-1,-1,0,9417,0,22086 +104183,1,1,0,-1,-1,0,21618,0,22086 +104184,0,1,0,-1,-1,0,9417,0,22087 +104185,1,1,0,-1,-1,0,21618,0,22087 +104186,0,1,0,-1,-1,0,9398,0,22088 +104187,0,1,0,-1,-1,0,9343,0,22089 +104188,1,1,0,-1,-1,0,7597,0,22089 +104189,0,1,0,-1,-1,0,7597,0,23257 +104190,1,1,0,-1,-1,0,15464,0,23257 +104191,2,1,0,-1,-1,0,14089,0,23257 +104192,0,0,0,0,900000,1149,28354,0,22737 +104193,0,0,-1,0,1000,11,29008,0,23160 +104194,0,0,-1,0,1000,59,29007,0,23161 +104195,0,0,-5,1500,-1,0,29004,0,23163 +104196,0,1,0,-1,-1,0,13384,0,22699 +104197,0,1,0,-1,-1,0,7597,0,23557 +104198,1,1,0,-1,-1,0,9330,0,23557 +104199,0,1,0,-1,-1,0,18384,0,22429 +104200,1,1,0,-1,-1,0,18031,0,22429 +104201,2,1,0,-1,-1,0,21619,0,22429 +104202,0,0,-1,0,0,0,26019,0,22587 +104203,0,0,-1,0,0,0,6476,0,22588 +104204,0,1,0,-1,-1,0,23729,0,22589 +104205,1,1,0,-1,-1,0,28141,0,22589 +104206,2,1,0,-1,-1,0,28142,0,22589 +104207,3,0,0,-1,-1,0,28148,0,22589 +104208,0,0,0,1500,-1,0,30152,0,23712 +104209,0,0,0,30000,0,0,30161,0,23714 +104210,0,0,0,0,0,103,30164,0,23715 +104211,0,0,0,600000,0,0,30167,0,23716 +104212,0,0,0,0,0,103,30173,0,23718 +104213,0,1,0,-1,-1,0,14127,0,22747 +104214,0,0,-1,-1,-1,0,27715,0,22144 +104215,0,0,-1,-1,-1,0,27718,0,22145 +104216,0,0,-1,0,60000,24,17291,0,22151 +104217,0,1,0,-1,-1,0,21632,0,22994 +104218,0,1,0,-1,-1,0,9345,0,21494 +104219,1,1,0,-1,-1,0,18384,0,21494 +104220,0,1,0,-1,-1,0,21362,0,21496 +104221,0,0,-1,0,0,0,27109,0,22030 +104222,0,1,0,0,0,0,23727,0,22339 +104223,1,1,0,-1,-1,0,9345,0,22339 +104224,0,1,0,-1,-1,0,15464,0,22340 +104225,0,1,0,-1,-1,0,15808,0,22343 +104226,0,0,-10,-1,120000,1142,26681,0,21833 +104227,0,0,-10,-1,-1,0,26682,0,21834 +104228,0,1,0,-1,-1,0,15715,0,21836 +104229,1,1,0,-1,-1,0,18384,0,21836 +104230,0,1,0,-1,-1,0,7518,0,21503 +104231,0,1,0,-1,-1,0,18033,0,21507 +104232,1,1,0,-1,-1,0,21627,0,21507 +104236,0,1,0,-1,-1,0,21475,0,23040 +104237,1,1,0,-1,-1,0,22852,0,23040 +104238,2,0,0,120000,-1,0,28773,0,23040 +104239,0,0,-1,-1,-1,0,483,0,24102 +104240,0,1,0,-1,-1,0,18369,0,22818 +104241,0,1,0,-1,-1,0,18379,0,22819 +104242,1,1,0,-1,-1,0,18038,0,22819 +104243,0,1,0,-1,-1,0,9417,0,22820 +104244,1,1,0,-1,-1,0,23727,0,22820 +104245,0,1,0,-1,-1,0,18384,0,22821 +104246,1,1,0,-1,-1,0,9345,0,22821 +104247,0,1,0,-1,-1,0,7597,0,23045 +104248,1,1,0,-1,-1,0,14056,0,23045 +104249,0,1,0,-1,-1,0,18056,0,23046 +104250,1,0,0,120000,20000,1141,28779,0,23046 +104251,0,1,0,-1,-1,0,18043,0,23047 +104252,1,0,0,120000,-1,0,28780,0,23047 +104253,0,1,0,-1,-1,0,18049,0,23049 +104254,1,1,0,-1,-1,0,18384,0,23049 +104255,2,1,0,-1,-1,0,23727,0,23049 +104256,1,1,0,-1,-1,0,7598,0,22798 +104257,0,1,0,-1,-1,0,17319,0,23089 +104258,0,1,0,-1,-1,0,18098,0,23090 +104259,0,1,0,-1,-1,0,15807,0,22195 +104260,1,1,0,-1,-1,0,7597,0,22195 +104261,2,1,0,-1,-1,0,18676,0,22195 +104262,0,1,0,-1,-1,0,9415,0,22329 +104263,1,1,0,-1,-1,0,23727,0,22329 +104264,2,1,0,-1,-1,0,18384,0,22329 +104265,0,0,-1,-1,-1,0,483,0,22685 +104266,0,0,-1,-1,-1,0,483,0,22696 +104267,0,0,-1,-1,-1,0,483,0,22697 +104268,0,1,0,-1,-1,0,14089,0,22804 +104269,1,1,0,-1,-1,0,15464,0,22804 +104270,0,1,0,-1,-1,0,9315,0,22713 +104271,1,1,0,-1,-1,0,21362,0,22713 +104272,0,1,0,-1,-1,0,7597,0,22715 +104273,0,1,0,-1,-1,0,23727,0,22330 +104274,0,1,0,-1,-1,0,13385,0,22331 +104275,0,1,0,-1,-1,0,18384,0,22332 +104276,0,1,0,-1,-1,0,7598,0,22476 +104277,1,1,0,-1,-1,0,15826,0,22476 +104278,2,1,0,-1,-1,0,15464,0,22476 +104279,0,1,0,-1,-1,0,7597,0,22477 +104280,1,1,0,-1,-1,0,15464,0,22477 +104281,0,1,0,-1,-1,0,7597,0,22439 +104282,0,0,0,0,60000,1140,27433,0,21946 +104283,0,0,-1,-1,-1,0,27708,0,21960 +104284,0,0,0,1000,-1,0,27570,0,22235 +104285,0,0,-1,1000,-1,0,27720,0,22236 +104286,0,0,-1,1000,-1,0,27723,0,22237 +104287,0,1,0,-1,-1,0,15817,0,23041 +104288,1,0,0,120000,20000,1141,28777,0,23041 +104289,0,0,0,120000,-1,0,28778,0,23042 +104290,0,1,0,-1,-1,0,15464,0,22440 +104291,0,1,0,-1,-1,0,7597,0,22441 +104292,1,1,0,-1,-1,0,21618,0,22441 +104293,0,1,0,-1,-1,0,15464,0,22443 +104294,0,1,0,-1,-1,0,9346,0,22458 +104295,1,1,0,-1,-1,0,21364,0,22458 +104296,2,1,0,-1,-1,0,18384,0,22458 +104297,0,0,-1,-1,-1,0,27700,0,22176 +104298,0,1,0,-1,-1,0,14127,0,22943 +104299,1,1,0,-1,-1,0,28869,0,22943 +104300,0,1,0,-1,-1,0,21475,0,23043 +104301,1,1,0,-1,-1,0,28112,0,23043 +104302,0,1,0,-1,-1,0,7597,0,23044 +104303,1,1,0,-1,-1,0,15464,0,23044 +104304,0,1,0,-1,-1,0,7598,0,22815 +104305,0,1,0,-1,-1,0,14089,0,22816 +104306,1,1,0,-1,-1,0,7597,0,22816 +104307,0,1,0,-1,-1,0,18384,0,22867 +104308,1,1,0,-1,-1,0,9342,0,22867 +104309,0,1,0,-1,-1,0,28870,0,23081 +104310,0,1,0,-1,-1,0,13383,0,22680 +104311,0,1,0,-1,-1,0,9408,0,22681 +104312,1,1,0,-1,-1,0,21362,0,22681 +104313,0,1,0,-1,-1,0,9315,0,22247 +104314,0,1,0,-1,-1,0,15464,0,22384 +104315,1,1,0,-1,-1,0,7597,0,22384 +104316,0,1,0,-1,-1,0,15465,0,22385 +104317,1,1,0,-1,-1,0,7597,0,22385 +104318,0,1,0,-1,-1,0,28876,0,23091 +104319,0,1,0,-1,-1,0,18098,0,23092 +104320,0,1,0,-1,-1,0,15465,0,22411 +104321,0,1,0,-1,-1,0,9417,0,22412 +104322,0,1,0,-1,-1,0,18031,0,22517 +104323,1,1,0,-1,-1,0,21362,0,22517 +104324,0,1,0,-1,-1,0,18041,0,22513 +104325,0,1,0,-1,-1,0,13881,0,23063 +104326,0,1,0,-1,-1,0,18030,0,23064 +104327,0,0,-1,-1,-1,0,483,0,22683 +104328,0,1,0,-1,-1,0,23043,0,22869 +104329,1,1,0,-1,-1,0,14248,0,22869 +104330,0,0,-1,-1,-1,0,483,0,22684 +104331,0,0,-1,-1,-1,0,483,0,22686 +104332,0,0,-1,-1,-1,0,483,0,22687 +104333,0,1,0,-1,-1,0,17319,0,23087 +104334,0,1,0,-1,-1,0,17319,0,23088 +104335,0,1,0,-1,-1,0,7597,0,22811 +104336,1,1,0,-1,-1,0,9329,0,22811 +104337,0,1,0,-1,-1,0,7597,0,22877 +104338,1,1,0,-1,-1,0,9344,0,22877 +104339,0,1,0,-1,-1,0,22778,0,22868 +104340,0,0,-1,-1,-1,0,483,0,22388 +104341,0,0,-1,-1,-1,0,27738,0,22046 +104342,0,1,0,-1,-1,0,23037,0,22870 +104343,1,1,0,-1,-1,0,9346,0,22870 +104344,0,1,0,-1,-1,0,18098,0,23093 +104345,0,0,-1,1000,-1,0,28891,0,23122 +104346,0,0,-1,1000,-1,0,28898,0,23123 +104347,0,1,0,-1,-1,0,13881,0,23124 +104348,1,1,0,-1,-1,0,18384,0,23124 +104349,0,1,0,-1,-1,0,15714,0,23125 +104350,0,1,0,-1,-1,0,23217,0,23280 +104351,0,1,0,-1,-1,0,9343,0,23281 +104352,0,1,0,-1,-1,0,9346,0,23283 +104353,0,1,0,-1,-1,0,9331,0,23284 +104354,1,1,0,-1,-1,0,7597,0,23284 +104355,0,1,0,-1,-1,0,23049,0,23285 +104356,1,1,0,-1,-1,0,9335,0,23285 +104357,0,1,0,-1,-1,0,28870,0,23078 +104358,0,0,-1,1000,-1,0,27721,0,22238 +104359,0,0,-1,1000,-1,0,27722,0,22239 +104360,0,1,0,-1,-1,0,7597,0,23252 +104361,0,1,0,-1,-1,0,9346,0,23253 +104362,0,0,0,-1,-1,0,27664,0,22284 +104363,0,0,-1,-1,-1,0,483,0,22389 +104364,0,1,0,-1,-1,0,9345,0,22074 +104365,1,1,0,-1,-1,0,23727,0,22074 +104366,0,1,0,-1,-1,0,15464,0,22232 +104367,0,1,0,-1,-1,0,9343,0,22859 +104368,0,1,0,-1,-1,0,9344,0,23057 +104369,1,1,0,-1,-1,0,18382,0,23057 +104370,0,1,0,-1,-1,0,18043,0,23058 +104371,1,1,0,-1,-1,0,18379,0,23058 +104372,0,1,0,-1,-1,0,15464,0,22436 +104373,1,1,0,-1,-1,0,7597,0,22436 +104374,2,1,0,-1,-1,0,21618,0,22436 +104375,0,1,0,-1,-1,0,7597,0,22437 +104376,1,1,0,-1,-1,0,21627,0,22437 +104377,0,1,0,-1,-1,0,9398,0,22071 +104378,0,1,0,-1,-1,0,9345,0,22072 +104379,0,1,0,-1,-1,0,9417,0,22073 +104380,0,1,0,-1,-1,0,9416,0,22240 +104381,1,1,0,-1,-1,0,23727,0,22240 +104382,0,1,0,-1,-1,0,28870,0,23082 +104383,0,1,0,-1,-1,0,9295,0,22266 +104384,0,1,0,-1,-1,0,18053,0,22267 +104385,1,1,0,-1,-1,0,23727,0,22267 +104386,0,0,0,75000,15000,1141,27675,0,22268 +104387,0,1,0,-1,-1,0,9345,0,22271 +104388,1,1,0,-1,-1,0,21363,0,22271 +104389,0,1,0,-1,-1,0,9344,0,22409 +104390,1,1,0,-1,-1,0,18384,0,22409 +104391,0,1,0,-1,-1,0,13669,0,23059 +104392,1,1,0,-1,-1,0,13390,0,23059 +104393,0,1,0,-1,-1,0,15464,0,23060 +104394,0,1,0,-1,-1,0,18036,0,23061 +104395,0,1,0,-1,-1,0,14798,0,23062 +104396,1,1,0,-1,-1,0,18384,0,23062 +104397,0,1,0,-1,-1,0,9331,0,22864 +104398,1,1,0,-1,-1,0,7597,0,22864 +104399,0,1,0,-1,-1,0,23046,0,22865 +104400,1,1,0,-1,-1,0,14248,0,22865 +104401,0,0,0,60000,20000,1141,28200,0,22678 +104402,0,0,0,1500,-1,0,28871,0,23083 +104403,0,1,0,-1,-1,0,22849,0,23084 +104404,0,1,0,-1,-1,0,24197,0,23085 +104405,0,0,-1,0,0,0,27117,0,22038 +104406,0,0,-1,0,0,0,27118,0,22039 +104407,0,0,-1,1000,-1,0,47175,0,23246 +104408,0,1,0,-1,-1,0,14027,0,22150 +104409,1,1,0,-1,-1,0,15464,0,22150 +104410,0,0,-1,-1,-1,0,27739,0,22047 +104411,0,0,-1,-1,-1,0,483,0,22307 +104412,0,0,-1,-1,-1,0,483,0,22308 +104413,0,0,-1,-1,-1,0,27146,0,21984 +104414,0,0,-1,1000,-1,0,29116,0,23215 +104415,0,1,0,-1,-1,0,9307,0,23126 +104416,0,0,-1,0,0,0,27121,0,22042 +104417,0,0,-1,0,0,0,27122,0,22043 +104418,0,1,0,-1,-1,0,18036,0,22720 +104419,0,1,0,-1,-1,0,13388,0,21639 +104420,1,1,0,-1,-1,0,13669,0,21639 +104421,0,1,0,0,-1,0,9315,0,22315 +104422,0,0,0,-1,-1,0,27664,0,22283 +104423,0,1,0,-1,-1,0,9345,0,22069 +104424,1,1,0,-1,-1,0,26283,0,22069 +104425,0,1,0,-1,-1,0,9344,0,22860 +104426,1,1,0,-1,-1,0,23727,0,22860 +104427,0,1,0,-1,-1,0,28539,0,22862 +104428,0,1,0,-1,-1,0,14049,0,22722 +104429,0,0,-1,0,0,0,3231,0,22584 +104430,0,0,-1,0,0,0,8375,0,22585 +104431,0,0,-1,0,0,0,26020,0,22586 +104432,0,1,0,-1,-1,0,9417,0,22075 +104433,1,1,0,-1,-1,0,18384,0,22075 +104434,0,1,0,-1,-1,0,14027,0,22242 +104435,0,1,0,-1,-1,0,9417,0,22113 +104436,1,1,0,-1,-1,0,21618,0,22113 +104437,0,1,0,-1,-1,0,7597,0,22005 +104438,0,0,-1,1000,-1,0,29333,0,23326 +104439,0,1,0,-1,-1,0,14049,0,23054 +104440,0,0,-1,-1,-1,0,28800,0,23055 +104441,0,1,0,-1,-1,0,9417,0,22096 +104442,1,1,0,-1,-1,0,21618,0,22096 +104443,0,1,0,-1,-1,0,23217,0,22863 +104444,0,1,0,-1,-1,0,9345,0,22067 +104445,0,1,0,-1,-1,0,9417,0,22070 +104446,0,1,0,-1,-1,0,14047,0,22511 +104447,0,0,0,600000,-1,0,27922,0,22485 +104448,0,0,-1,-1,-1,0,28086,0,22486 +104449,0,0,-1,-1,-1,0,27713,0,22123 +104450,0,1,0,-1,-1,0,9331,0,21498 +104451,0,1,0,-1,-1,0,27539,0,22196 +104452,0,1,0,-1,-1,0,18676,0,22197 +104453,0,0,-1,0,0,0,27107,0,22028 +104454,0,0,0,0,600000,1139,27190,0,22050 +104455,0,0,-1,0,0,0,27119,0,22040 +104456,0,1,0,-1,-1,0,17367,0,21499 +104457,1,1,0,-1,-1,0,18384,0,21499 +104458,0,1,0,-1,-1,0,9397,0,22106 +104459,0,1,0,-1,-1,0,15464,0,22480 +104460,1,1,0,-1,-1,0,7597,0,22480 +104461,2,1,0,-1,-1,0,15817,0,22480 +104462,0,1,0,-1,-1,0,15464,0,22481 +104463,1,1,0,-1,-1,0,15818,0,22481 +104464,2,1,0,-1,-1,0,7597,0,22481 +104465,1,1,0,-1,-1,0,7597,0,22482 +104466,0,1,0,-1,-1,0,7597,0,22483 +104467,0,1,0,-1,-1,0,18041,0,22489 +104468,1,1,0,-1,-1,0,18378,0,22489 +104469,0,1,0,-1,-1,0,18041,0,22488 +104470,1,1,0,-1,-1,0,18378,0,22488 +104471,0,1,0,-1,-1,0,18040,0,22512 +104472,1,1,0,-1,-1,0,21363,0,22512 +104473,0,0,-1,0,0,0,27111,0,22032 +104474,0,0,-1,0,0,0,27114,0,22035 +104475,0,0,-1,0,0,0,27116,0,22037 +104476,0,0,0,-1,-1,0,27668,0,22136 +104477,0,0,0,0,600000,1139,27191,0,22051 +104478,0,1,0,-1,-1,0,9314,0,21500 +104479,1,1,0,-1,-1,0,21618,0,21500 +104480,0,1,0,-1,-1,0,18041,0,22490 +104481,0,1,0,-1,-1,0,21363,0,22491 +104482,1,1,0,-1,-1,0,18034,0,22491 +104483,0,1,0,-1,-1,0,18033,0,22492 +104484,1,1,0,-1,-1,0,21363,0,22492 +104485,0,1,0,-1,-1,0,15696,0,22493 +104486,0,1,0,-1,-1,0,18035,0,22494 +104487,1,1,0,-1,-1,0,21618,0,22494 +104488,0,1,0,-1,-1,0,9331,0,22318 +104489,0,1,0,-1,-1,0,18036,0,22272 +104490,0,1,0,-1,-1,0,24196,0,22496 +104491,1,1,0,-1,-1,0,23727,0,22496 +104492,2,1,0,-1,-1,0,18384,0,22496 +104493,3,1,0,-1,-1,0,28869,0,22496 +104494,0,0,0,0,600000,1139,27201,0,22052 +104495,0,0,0,0,600000,1139,27202,0,22056 +104496,0,0,0,0,600000,1139,27203,0,22057 +104497,0,1,0,-1,-1,0,7515,0,21996 +104498,0,1,0,-1,-1,0,13383,0,22000 +104499,0,0,-1,0,0,0,27120,0,22041 +104500,0,1,0,-1,-1,0,9417,0,22076 +104501,0,1,0,-1,-1,0,9342,0,22077 +104502,1,1,0,-1,-1,0,23727,0,22077 +104503,0,1,0,-1,-1,0,23727,0,22497 +104504,1,1,0,-1,-1,0,28264,0,22497 +104505,0,1,0,-1,-1,0,14055,0,22498 +104506,1,1,0,-1,-1,0,23727,0,22498 +104507,2,1,0,-1,-1,0,18382,0,22498 +104508,0,1,0,-1,-1,0,28792,0,22799 +104509,1,1,0,-1,-1,0,18382,0,22799 +104510,2,1,0,-1,-1,0,28799,0,22799 +104511,0,1,0,-1,-1,0,23729,0,22800 +104512,1,1,0,-1,-1,0,28841,0,22800 +104513,2,1,0,-1,-1,0,18384,0,22800 +104514,0,1,0,-1,-1,0,18049,0,23050 +104515,1,1,0,-1,-1,0,18384,0,23050 +104516,2,1,0,-1,-1,0,23727,0,23050 +104517,0,1,0,-1,-1,0,7598,0,23053 +104518,1,1,0,-1,-1,0,9334,0,23053 +104519,0,1,0,-1,-1,0,9416,0,22081 +104520,0,0,0,-1,-1,0,27667,0,22132 +104521,0,0,0,-1,-1,0,27667,0,22133 +104522,0,0,0,-1,-1,0,27668,0,22134 +104523,0,0,0,-1,-1,0,27668,0,22135 +104524,0,1,0,-1,-1,0,9415,0,22068 +104525,0,1,0,-1,-1,0,9343,0,22083 +104526,1,1,0,-1,-1,0,21626,0,22083 +104527,0,1,0,-1,-1,0,9346,0,22855 +104528,0,1,0,-1,-1,0,23049,0,22856 +104529,1,1,0,-1,-1,0,9335,0,22856 +104530,1,1,0,-1,-1,0,22801,0,22857 +104531,0,1,0,-1,-1,0,15464,0,22478 +104532,1,1,0,-1,-1,0,7598,0,22478 +104533,0,1,0,-1,-1,0,7597,0,22479 +104534,1,1,0,-1,-1,0,15464,0,22479 +115245,0,0,0,-1,-1,0,308395,0,172070 +118012,0,0,0,-1,-1,0,330659,0,180089 +127524,0,0,0,600000,600000,0,30978,0,23905 +127525,0,0,-1,-1,-1,0,483,0,24003 +127526,1,6,0,-1,-1,0,27960,0,24003 +127527,0,0,-1,0,1000,59,22734,0,24006 +127528,0,1,0,-1,-1,0,25179,0,20796 +127529,0,1,0,0,-1,0,9398,0,20966 +127530,1,0,10,1500,-1,0,25607,0,20966 +127531,0,1,0,0,-1,0,9407,0,20967 +127532,1,0,10,1500,0,0,25608,0,20967 +127533,0,1,0,-1,-1,0,9331,0,20968 +127534,0,1,0,0,0,0,18034,0,20969 +127535,0,0,-1,-1,-1,0,483,0,20970 +127536,1,6,0,-1,-1,0,25610,0,20970 +127537,0,0,-1,-1,-1,0,483,0,20971 +127538,1,6,0,-1,-1,0,25612,0,20971 +127539,0,1,0,-1,-1,0,9325,0,21087 +127540,0,1,0,-1,-1,0,14793,0,21088 +127541,0,1,0,-1,-1,0,18012,0,21089 +127542,0,1,0,-1,-1,0,14793,0,21090 +127543,0,1,0,-1,-1,0,18012,0,21091 +127544,0,1,0,-1,-1,0,14793,0,21092 +127545,0,1,0,0,0,0,9325,0,21093 +127546,0,0,-1,-1,-1,0,483,0,21892 +127547,1,6,0,-1,-1,0,26747,0,21892 +127548,0,0,-1,-1,-1,0,483,0,21893 +127549,1,6,0,-1,-1,0,26749,0,21893 +127550,0,0,-1,-1,-1,0,483,0,21894 +127551,1,6,0,-1,-1,0,26750,0,21894 +127552,0,0,-1,-1,-1,0,483,0,21895 +127553,1,6,0,-1,-1,0,26751,0,21895 +127554,0,0,-1,-1,-1,0,483,0,21896 +127555,1,6,0,-1,-1,0,26773,0,21896 +127556,0,0,-1,-1,-1,0,27492,0,22185 +127557,0,0,-1,-1,-1,0,27493,0,22186 +127558,0,0,-1,-1,-1,0,27494,0,22187 +127559,0,0,-1,-1,-1,0,27495,0,22188 +127560,0,0,-1,-1,-1,0,27496,0,22189 +127561,0,0,-1,-1,-1,0,483,0,22565 +127562,1,6,0,-1,-1,0,28022,0,22565 +127563,0,0,-1,0,120000,4,28538,0,22847 +127564,0,0,-1,0,3000,79,28514,0,22848 +127565,0,0,-1,0,120000,4,28515,0,22849 +127566,0,0,-1,0,120000,4,28517,0,22850 +127567,0,0,-1,0,3000,79,28518,0,22851 +127568,0,0,-1,0,3000,79,28519,0,22853 +127569,0,0,-1,0,3000,79,28520,0,22854 +127570,0,1,0,-1,-1,0,9394,0,23411 +127571,0,1,0,-1,-1,0,9393,0,23413 +127572,0,1,0,-1,-1,0,21634,0,23523 +127573,1,1,0,-1,-1,0,18050,0,23523 +127574,0,1,0,-1,-1,0,21630,0,23524 +127575,1,1,0,-1,-1,0,15715,0,23524 +127576,0,0,-1,-1,-1,0,483,0,23617 +127577,1,6,0,-1,-1,0,29649,0,23617 +127578,0,0,-1,-1,-1,0,483,0,23618 +127579,1,6,0,-1,-1,0,29656,0,23618 +127580,0,0,-1,-1,-1,0,483,0,23619 +127581,1,6,0,-1,-1,0,29657,0,23619 +127582,0,0,-1,-1,-1,0,483,0,23620 +127583,1,6,0,-1,-1,0,29658,0,23620 +127584,0,0,-1,-1,-1,0,30199,0,23730 +127585,0,0,-1,-1,-1,0,30200,0,23731 +127586,0,0,0,180000,0,0,30208,0,23732 +127587,0,0,0,15000,0,0,30435,0,23820 +127588,0,0,0,1500,0,0,30427,0,23821 +127589,0,0,-20,0,120000,4,28495,0,23822 +127590,0,0,-20,0,120000,4,28499,0,23823 +127591,0,1,0,0,0,0,15826,0,23824 +127592,2,0,0,300000,300000,1203,51582,0,23824 +127593,0,0,0,300000,0,0,30458,0,23825 +127594,0,0,0,600000,600000,0,30978,0,23911 +127595,0,1,0,-1,-1,0,9345,0,23912 +127596,1,0,0,600000,600000,0,30978,0,23912 +127597,0,1,0,-1,-1,0,9317,0,23913 +127598,0,1,0,-1,-1,0,9317,0,23914 +127599,1,0,0,600000,600000,0,30978,0,23914 +127600,0,1,0,-1,-1,0,9317,0,23915 +127601,0,0,-1,0,1000,59,22734,0,24007 +127602,0,0,-1,0,1000,11,18234,0,24008 +127603,0,0,-1,0,1000,11,18234,0,24009 +127604,0,0,0,-1,-1,0,3366,0,24010 +127605,0,0,-1,-1,-1,0,483,0,20972 +127606,1,6,0,-1,-1,0,25614,0,20972 +127607,0,0,-1,-1,-1,0,483,0,20973 +127608,1,6,0,-1,-1,0,25617,0,20973 +127609,0,0,-1,-1,-1,0,483,0,20974 +127610,1,6,0,-1,-1,0,25618,0,20974 +127611,0,0,-1,-1,-1,0,483,0,20975 +127612,1,6,0,-1,-1,0,25619,0,20975 +127613,0,1,0,0,0,0,9325,0,21094 +127614,0,1,0,-1,-1,0,18012,0,21095 +127615,0,1,0,-1,-1,0,9325,0,21096 +127616,0,1,0,-1,-1,0,25706,0,21097 +127617,0,1,0,0,0,0,7710,0,21098 +127618,0,0,0,300000,60000,28,26551,0,21748 +127619,0,0,-1,-1,-1,0,483,0,21897 +127620,1,6,0,-1,-1,0,26774,0,21897 +127621,0,0,-1,-1,-1,0,483,0,21898 +127622,1,6,0,-1,-1,0,26775,0,21898 +127623,0,0,-1,-1,-1,0,483,0,21899 +127624,1,6,0,-1,-1,0,26776,0,21899 +127625,0,0,-1,-1,-1,0,483,0,21900 +127626,1,6,0,-1,-1,0,26777,0,21900 +127627,0,0,-1,-1,-1,0,27497,0,22190 +127628,0,0,-1,0,1000,11,1131,0,22323 +127629,0,0,-1,-1,-1,0,32978,0,22446 +127630,0,0,-1,-1,-1,0,28100,0,22572 +127631,0,0,-1,-1,-1,0,28101,0,22573 +127632,0,0,-1,-1,-1,0,28102,0,22574 +127633,0,0,-1,-1,-1,0,28106,0,22575 +127634,0,0,-1,-1,-1,0,28105,0,22576 +127635,0,0,-1,-1,-1,0,28104,0,22577 +127636,0,0,-1,0,3000,79,28521,0,22861 +127637,0,0,-1,0,3000,79,28540,0,22866 +127638,0,0,-1,0,120000,4,28548,0,22871 +127639,0,0,-1,-1,-1,0,29364,0,23417 +127640,0,1,0,-1,-1,0,21630,0,23525 +127641,1,1,0,-1,-1,0,18049,0,23525 +127642,0,1,0,-1,-1,0,20959,0,23526 +127643,1,1,0,-1,-1,0,14056,0,23526 +127644,0,1,0,-1,-1,0,33780,0,23527 +127645,1,1,0,-1,-1,0,23593,0,23527 +127646,0,0,-1,1000,-1,0,29452,0,23528 +127647,0,0,-1,1000,-1,0,29453,0,23529 +127648,0,0,-1,-1,-1,0,29454,0,23530 +127649,0,0,-1,-1,-1,0,483,0,23621 +127650,1,6,0,-1,-1,0,29622,0,23621 +127651,0,0,-1,-1,-1,0,483,0,23622 +127652,1,6,0,-1,-1,0,29662,0,23622 +127653,0,0,-1,-1,-1,0,483,0,23623 +127654,1,6,0,-1,-1,0,29663,0,23623 +127655,0,0,-1,-1,-1,0,483,0,23624 +127656,1,6,0,-1,-1,0,29664,0,23624 +127657,0,0,-1,-1,-1,0,30214,0,23734 +127658,0,0,-1,-1,-1,0,30230,0,23735 +127659,0,0,-1,0,60000,24,30216,0,23736 +127660,0,0,-1,0,60000,24,30217,0,23737 +127661,0,0,-1,0,60000,24,30461,0,23826 +127662,0,0,-1,300000,60000,24,30486,0,23827 +127663,0,1,0,-1,-1,0,26155,0,23828 +127664,1,1,0,-1,-1,0,18382,0,23828 +127665,0,1,0,-1,-1,0,28735,0,23829 +127666,1,1,0,-1,-1,0,7598,0,23829 +127667,0,0,50,-1,-1,0,39681,0,23831 +127668,0,0,0,600000,600000,0,30978,0,23916 +127669,0,1,0,-1,-1,0,13390,0,23917 +127670,1,0,0,600000,600000,0,30978,0,23917 +127671,0,1,0,-1,-1,0,7597,0,23918 +127672,1,0,0,600000,600000,0,30978,0,23918 +127673,0,0,-1,-1,-1,0,483,0,20976 +127674,1,6,0,-1,-1,0,25622,0,20976 +127675,0,1,0,-1,-1,0,9345,0,21753 +127676,0,1,0,0,-1,0,13669,0,21754 +127677,0,1,0,0,-1,0,9331,0,21755 +127678,1,0,10,1500,0,0,26562,0,21755 +127679,0,1,0,-1,-1,0,23990,0,21756 +127680,1,0,0,1200000,0,0,26571,0,21756 +127681,0,1,0,-1,-1,0,26578,0,21758 +127682,1,0,0,300000,15000,1141,26576,0,21758 +127683,0,0,-1,-1,-1,0,483,0,21901 +127684,1,6,0,-1,-1,0,26778,0,21901 +127685,0,0,-1,-1,-1,0,483,0,21902 +127686,1,6,0,-1,-1,0,26779,0,21902 +127687,0,0,-1,-1,-1,0,483,0,21903 +127688,1,6,0,-1,-1,0,26780,0,21903 +127689,0,0,-1,-1,-1,0,483,0,21904 +127690,1,6,0,-1,-1,0,26781,0,21904 +127691,0,0,-1,-1,-1,0,483,0,21905 +127692,1,6,0,-1,-1,0,26782,0,21905 +127693,0,0,-1,-1,-1,0,32977,0,22447 +127694,0,0,-1,-1,-1,0,28103,0,22578 +127695,0,0,-4,5000,-1,0,28624,0,22896 +127696,0,0,-1,-1,-1,0,483,0,22900 +127697,1,6,0,-1,-1,0,28543,0,22900 +127698,0,1,0,-1,-1,0,14049,0,23531 +127699,0,1,0,-1,-1,0,43588,0,23533 +127700,0,1,0,-1,-1,0,15810,0,23534 +127701,1,1,0,-1,-1,0,21365,0,23534 +127702,0,0,-1,-1,-1,0,483,0,23625 +127703,1,6,0,-1,-1,0,29668,0,23625 +127704,0,0,-1,-1,-1,0,483,0,23626 +127705,1,6,0,-1,-1,0,29669,0,23626 +127706,0,0,-1,-1,-1,0,483,0,23627 +127707,1,6,0,-1,-1,0,29671,0,23627 +127708,0,0,-1,-1,-1,0,483,0,23628 +127709,1,6,0,-1,-1,0,29672,0,23628 +127710,0,0,50,-1,-1,0,39684,0,23832 +127711,0,0,0,300000,0,0,30507,0,23835 +127712,0,0,0,120000,0,0,46567,0,23836 +127713,0,0,0,1000,-1,0,30767,0,23925 +127714,0,1,0,-1,-1,0,9332,0,24020 +127715,0,1,0,-1,-1,0,21363,0,24021 +127716,0,1,0,-1,-1,0,15807,0,24022 +127717,0,1,0,-1,-1,0,9335,0,24023 +127718,0,1,0,-1,-1,0,14054,0,24024 +127719,0,0,10,1500,-1,0,25207,0,20830 +127720,0,0,10,1500,-1,0,25211,0,20831 +127721,0,1,0,0,0,0,23990,0,21759 +127722,1,0,0,600000,60000,28,26571,0,21759 +127723,0,1,0,-1,-1,0,7516,0,21760 +127724,1,0,0,300000,60000,28,26581,0,21760 +127725,0,1,0,-1,-1,0,9139,0,21763 +127726,1,0,0,900000,60000,28,26593,0,21763 +127727,0,1,0,0,-1,0,9294,0,21764 +127728,0,1,0,0,0,0,9314,0,21765 +127729,0,1,0,0,0,0,26598,0,21766 +127730,0,0,-1,-1,-1,0,483,0,21906 +127731,1,6,0,-1,-1,0,26783,0,21906 +127732,0,0,-1,-1,-1,0,483,0,21907 +127733,1,6,0,-1,-1,0,26784,0,21907 +127734,0,0,-1,-1,-1,0,483,0,21908 +127735,1,6,0,-1,-1,0,26752,0,21908 +127736,0,0,-1,-1,-1,0,483,0,21909 +127737,1,6,0,-1,-1,0,26753,0,21909 +127738,0,0,-1,-1,-1,0,483,0,21910 +127739,1,6,0,-1,-1,0,26754,0,21910 +127740,0,0,-1,-1,-1,0,483,0,22901 +127741,1,6,0,-1,-1,0,28546,0,22901 +127742,0,0,-1,-1,-1,0,483,0,22902 +127743,1,6,0,-1,-1,0,28549,0,22902 +127744,0,0,-1,-1,-1,0,483,0,22903 +127745,1,6,0,-1,-1,0,28550,0,22903 +127746,0,0,-1,-1,-1,0,483,0,22904 +127747,1,6,0,-1,-1,0,28552,0,22904 +127748,0,0,0,-1,-1,0,29200,0,23268 +127749,0,0,-1,120000,120000,1153,29251,0,23329 +127750,0,1,0,-1,-1,0,18049,0,23536 +127751,1,1,0,-1,-1,0,21365,0,23536 +127752,0,1,0,-1,-1,0,18037,0,23539 +127753,0,2,0,-1,-1,0,16916,0,23541 +127754,0,0,-1,-1,-1,0,483,0,23629 +127755,1,6,0,-1,-1,0,29692,0,23629 +127756,0,0,-1,-1,-1,0,483,0,23630 +127757,1,6,0,-1,-1,0,29693,0,23630 +127758,0,0,-1,-1,-1,0,483,0,23631 +127759,1,6,0,-1,-1,0,29694,0,23631 +127760,0,0,-1,-1,-1,0,483,0,23632 +127761,1,6,0,-1,-1,0,29695,0,23632 +127762,0,0,-1,-1,-1,0,30222,0,23745 +127763,0,1,0,-1,-1,0,9332,0,23746 +127764,0,0,-1,-1,-1,0,30226,0,23749 +127765,0,1,0,0,0,0,40386,0,23838 +127766,1,1,0,-1,-1,0,18053,0,23838 +127767,0,1,0,0,0,0,15816,0,23839 +127768,1,1,0,-1,-1,0,30519,0,23839 +127769,0,0,-1,0,0,0,30524,0,23840 +127770,0,0,-1,0,60000,24,30526,0,23841 +127771,0,1,0,-1,-1,0,18379,0,20832 +127772,0,1,0,-1,-1,0,7707,0,20833 +127773,0,0,0,300000,20000,1141,26599,0,21769 +127774,0,0,-1,-1,-1,0,483,0,21911 +127775,1,6,0,-1,-1,0,26755,0,21911 +127776,0,0,-1,-1,-1,0,483,0,21912 +127777,1,6,0,-1,-1,0,26756,0,21912 +127778,0,0,-1,-1,-1,0,483,0,21913 +127779,1,6,0,-1,-1,0,26758,0,21913 +127780,0,0,-1,-1,-1,0,483,0,21914 +127781,1,6,0,-1,-1,0,26757,0,21914 +127782,0,0,0,20000,20000,1140,27907,0,22473 +127783,0,0,-1,-1,-1,0,483,0,22905 +127784,1,6,0,-1,-1,0,28553,0,22905 +127785,0,0,-1,-1,-1,0,483,0,22906 +127786,1,6,0,-1,-1,0,28554,0,22906 +127787,0,0,-1,-1,-1,0,483,0,22907 +127788,1,6,0,-1,-1,0,28555,0,22907 +127789,0,0,-1,-1,-1,0,483,0,22908 +127790,1,6,0,-1,-1,0,28556,0,22908 +127791,0,0,-1,-1,120000,1153,29271,0,23334 +127792,0,1,0,-1,-1,0,36069,0,23543 +127793,0,1,0,-1,-1,0,14056,0,23544 +127794,0,0,-1,-1,-1,0,483,0,23633 +127795,1,6,0,-1,-1,0,29696,0,23633 +127796,0,0,-1,-1,-1,0,483,0,23634 +127797,1,6,0,-1,-1,0,29697,0,23634 +127798,0,0,-1,-1,-1,0,483,0,23635 +127799,1,6,0,-1,-1,0,29698,0,23635 +127800,0,0,-1,-1,-1,0,483,0,23636 +127801,1,6,0,-1,-1,0,29699,0,23636 +127802,0,0,0,-1,-1,0,30408,0,23751 +127803,0,0,0,20000,20000,0,31114,0,23934 +127804,0,1,0,0,0,0,14798,0,21774 +127805,1,1,0,-1,-1,0,18384,0,21774 +127806,0,1,0,0,0,0,14027,0,21775 +127807,0,1,0,-1,-1,0,21360,0,21777 +127808,1,0,0,300000,60000,28,26600,0,21777 +127809,0,1,0,-1,-1,0,9327,0,21778 +127810,0,0,-1,-1,-1,0,483,0,21915 +127811,1,6,0,-1,-1,0,26759,0,21915 +127812,0,0,-1,-1,-1,0,483,0,21916 +127813,1,6,0,-1,-1,0,26760,0,21916 +127814,0,0,-1,-1,-1,0,483,0,21917 +127815,1,6,0,-1,-1,0,26762,0,21917 +127816,0,0,-1,-1,-1,0,483,0,21918 +127817,1,6,0,-1,-1,0,26761,0,21918 +127818,0,0,-5,1000,-1,0,28013,0,22521 +127819,0,0,-5,1000,-1,0,28017,0,22522 +127820,0,0,-1,-1,-1,0,483,0,22530 +127821,1,6,0,-1,-1,0,27906,0,22530 +127822,0,0,-1,-1,-1,0,483,0,22909 +127823,1,6,0,-1,-1,0,28557,0,22909 +127824,0,0,-1,-1,-1,0,483,0,22910 +127825,1,6,0,-1,-1,0,28558,0,22910 +127826,0,0,-1,-1,-1,0,483,0,22911 +127827,1,6,0,-1,-1,0,28562,0,22911 +127828,0,0,-1,-1,-1,0,483,0,22912 +127829,1,6,0,-1,-1,0,28563,0,22912 +127830,0,0,0,-1,-1,0,34665,0,23337 +127831,0,3,0,-1,-1,0,29343,0,23442 +127832,0,0,0,-1,-1,0,29347,0,23443 +127833,0,0,-1,0,3000,79,29348,0,23444 +127834,0,1,0,-1,-1,0,37542,0,23554 +127835,0,1,0,-1,-1,0,14049,0,23555 +127836,0,1,0,-1,-1,0,21628,0,23556 +127837,1,1,0,-1,-1,0,39602,0,23556 +127838,0,0,-1,1000,-1,0,32274,0,23559 +127839,0,0,-1,-1,-1,0,483,0,23637 +127840,1,6,0,-1,-1,0,29700,0,23637 +127841,0,0,-1,-1,-1,0,483,0,23638 +127842,1,6,0,-1,-1,0,29728,0,23638 +127843,0,0,-1,-1,-1,0,483,0,23639 +127844,1,6,0,-1,-1,0,29729,0,23639 +127845,0,0,-1,-1,-1,0,30224,0,23755 +127846,0,0,-1,0,1000,11,5004,0,23756 +127847,0,0,-1,0,1000,59,11629,0,23848 +127848,0,1,0,-1,-1,0,17819,0,21779 +127849,1,1,0,-1,-1,0,13830,0,21779 +127850,0,1,0,0,0,0,7598,0,21780 +127851,1,1,0,-1,-1,0,26605,0,21780 +127852,0,1,0,-1,-1,0,13384,0,21784 +127853,1,0,0,300000,60000,28,26609,0,21784 +127854,0,0,-1,-1,-1,0,483,0,21919 +127855,1,6,0,-1,-1,0,26763,0,21919 +127856,0,0,-1,-1,-1,0,483,0,21924 +127857,1,6,0,-1,-1,0,18406,0,21924 +127858,0,0,-1,0,-1,0,26891,0,21927 +127859,0,0,-1,-1,-1,0,483,0,22531 +127860,1,6,0,-1,-1,0,27911,0,22531 +127861,0,0,-1,-1,-1,0,483,0,22532 +127862,1,6,0,-1,-1,0,27913,0,22532 +127863,0,0,-1,-1,-1,0,483,0,22533 +127864,1,6,0,-1,-1,0,27914,0,22533 +127865,0,0,-1,-1,-1,0,483,0,22534 +127866,1,6,0,-1,-1,0,27917,0,22534 +127867,0,0,-1,0,1000,11,5005,0,22645 +127868,0,0,0,0,180000,1148,28170,0,22646 +127869,1,1,0,0,0,0,32789,0,22646 +127870,0,0,-1,-1,-1,0,483,0,22913 +127871,1,6,0,-1,-1,0,28564,0,22913 +127872,0,0,-1,-1,-1,0,483,0,22914 +127873,1,6,0,-1,-1,0,28565,0,22914 +127874,0,0,-1,-1,-1,0,483,0,22915 +127875,1,6,0,-1,-1,0,28566,0,22915 +127876,0,0,-1,-1,-1,0,483,0,22916 +127877,1,6,0,-1,-1,0,28567,0,22916 +127878,0,0,-1,-1,-1,0,483,0,23130 +127879,1,6,0,-1,-1,0,28903,0,23130 +127880,0,0,-1,-1,-1,0,483,0,23131 +127881,1,6,0,-1,-1,0,28905,0,23131 +127882,0,0,-1,-1,-1,0,483,0,23133 +127883,1,6,0,-1,-1,0,28906,0,23133 +127884,0,1,0,-1,-1,0,21364,0,23457 +127885,1,1,0,-1,-1,0,14054,0,23457 +127886,0,1,0,-1,-1,0,26395,0,23458 +127887,1,1,0,-1,-1,0,18384,0,23458 +127888,0,1,0,-1,-1,0,14049,0,23563 +127889,1,1,0,-1,-1,0,21628,0,23563 +127890,0,1,0,-1,-1,0,15819,0,23564 +127891,1,1,0,0,-1,0,21365,0,23564 +127892,2,0,0,1800000,-1,0,34518,0,23564 +127893,0,1,0,-1,-1,0,15828,0,23565 +127894,1,1,0,0,-1,0,21632,0,23565 +127895,2,0,0,1800000,-1,0,34518,0,23565 +127896,0,0,0,-1,-1,0,30489,0,23645 +127897,0,0,0,600000,600000,0,30978,0,23647 +127898,0,0,0,600000,600000,0,30978,0,23648 +127899,0,1,0,-1,-1,0,18053,0,23761 +127900,0,1,0,-1,-1,0,30645,0,23762 +127901,1,0,0,-1,-1,0,12883,0,23762 +127902,0,1,0,-1,-1,0,15828,0,23763 +127903,2,0,0,120000,-1,0,30249,0,23763 +127904,0,0,-1,-1,-1,0,30250,0,23764 +127905,0,0,-1,-1,-1,0,30252,0,23765 +127906,0,0,-1,-1,-1,0,30260,0,23766 +127907,0,0,-1,-1,-1,0,30562,0,23857 +127908,0,1,0,0,0,0,9316,0,24045 +127909,0,1,0,-1,-1,0,21364,0,24046 +127910,1,1,0,-1,-1,0,9345,0,24046 +127911,0,0,-1,-1,-1,0,483,0,20854 +127912,1,6,0,-1,-1,0,25339,0,20854 +127913,0,0,-1,-1,-1,0,483,0,20855 +127914,1,6,0,-1,-1,0,25323,0,20855 +127915,0,0,-1,-1,-1,0,483,0,20856 +127916,1,6,0,-1,-1,0,25320,0,20856 +127917,0,0,-1,0,1000,11,433,0,20857 +127918,1,0,0,300000,60000,1141,26614,0,21789 +127919,0,1,0,0,-1,0,9307,0,21790 +127920,1,1,0,-1,-1,0,9327,0,21790 +127921,0,1,0,-1,-1,0,18029,0,21791 +127922,1,1,0,-1,-1,0,21361,0,21791 +127923,0,1,0,-1,-1,0,21407,0,21792 +127924,0,0,-1,-1,-1,0,483,0,21940 +127925,1,6,0,-1,-1,0,26873,0,21940 +127926,0,0,-1,-1,-1,0,483,0,21941 +127927,1,6,0,-1,-1,0,26875,0,21941 +127928,0,0,-1,-1,-1,0,483,0,21942 +127929,1,6,0,-1,-1,0,26878,0,21942 +127930,0,0,-1,-1,-1,0,483,0,22535 +127931,1,6,0,-1,-1,0,27920,0,22535 +127932,0,0,-1,-1,-1,0,483,0,22536 +127933,1,6,0,-1,-1,0,27924,0,22536 +127934,0,0,-1,-1,-1,0,483,0,22537 +127935,1,6,0,-1,-1,0,27926,0,22537 +127936,0,0,-1,-1,-1,0,483,0,22647 +127937,1,6,0,-1,-1,0,28267,0,22647 +127938,0,0,0,-1,-1,0,28226,0,22675 +127939,0,0,0,60000,60000,1140,28247,0,22693 +127940,0,0,-1,-1,-1,0,483,0,22917 +127941,1,6,0,-1,-1,0,28568,0,22917 +127942,0,0,-1,-1,-1,0,483,0,22918 +127943,1,6,0,-1,-1,0,28569,0,22918 +127944,0,0,-1,-1,-1,0,483,0,22919 +127945,1,6,0,-1,-1,0,28570,0,22919 +127946,0,0,-1,-1,-1,0,483,0,22920 +127947,1,6,0,-1,-1,0,28571,0,22920 +127948,0,0,-1,-1,-1,0,483,0,23134 +127949,1,6,0,-1,-1,0,28907,0,23134 +127950,0,0,-1,-1,-1,0,483,0,23135 +127951,1,6,0,-1,-1,0,28910,0,23135 +127952,0,0,-1,-1,-1,0,483,0,23136 +127953,1,6,0,-1,-1,0,28912,0,23136 +127954,0,0,-1,-1,-1,0,483,0,23137 +127955,1,6,0,-1,-1,0,28914,0,23137 +127956,0,1,0,-1,-1,0,29369,0,23459 +127957,1,1,0,-1,-1,0,21626,0,23459 +127958,0,1,0,-1,-1,0,7597,0,23461 +127959,1,1,0,-1,-1,0,9335,0,23461 +127960,0,1,0,0,0,0,14799,0,23462 +127961,0,1,0,0,0,0,9317,0,23463 +127962,0,0,-1,-1,-1,0,29542,0,23566 +127963,0,0,0,600000,600000,0,30978,0,23649 +127964,0,1,0,-1,-1,0,7597,0,23650 +127965,1,0,0,600000,600000,0,30978,0,23650 +127966,0,1,0,-1,-1,0,13390,0,23651 +127967,1,0,0,600000,600000,0,30978,0,23651 +127968,0,1,0,-1,-1,0,9345,0,23652 +127969,1,0,0,600000,600000,0,30978,0,23652 +127970,0,1,0,-1,-1,0,9317,0,23653 +127971,1,0,0,600000,600000,0,30978,0,23653 +127972,0,0,0,180000,-1,0,30261,0,23767 +127973,0,0,-1,0,5000,1168,30262,0,23768 +127974,0,0,-1,0,5000,1168,30263,0,23769 +127975,0,0,-1,0,5000,1168,30265,0,23770 +127976,0,0,-1,0,5000,1168,30264,0,23771 +127977,0,0,0,-1,-1,0,30602,0,23861 +127978,0,0,-1,-1,-1,0,30550,0,23862 +127979,0,0,-1,-1,-1,0,3366,0,23956 +127980,0,1,0,-1,-1,0,14049,0,21793 +127981,0,0,-1,0,-1,0,26785,0,21835 +127982,0,0,-1,-1,-1,0,483,0,21943 +127983,1,6,0,-1,-1,0,26881,0,21943 +127984,0,0,-1,-1,-1,0,483,0,21944 +127985,1,6,0,-1,-1,0,26882,0,21944 +127986,0,0,-1,-1,-1,0,483,0,21945 +127987,1,6,0,-1,-1,0,26887,0,21945 +127988,0,0,-1,-1,-1,0,483,0,21947 +127989,1,6,0,-1,-1,0,26896,0,21947 +127990,0,0,-1,-1,-1,0,483,0,22538 +127991,1,6,0,-1,-1,0,27927,0,22538 +127992,0,0,-1,-1,-1,0,483,0,22539 +127993,1,6,0,-1,-1,0,27945,0,22539 +127994,0,0,-1,-1,-1,0,483,0,22540 +127995,1,6,0,-1,-1,0,27946,0,22540 +127996,0,0,-1,-1,-1,0,28273,0,22710 +127997,0,0,10,10000,10000,1157,28451,0,22755 +127998,0,0,-1,-1,-1,0,483,0,22921 +127999,1,6,0,-1,-1,0,28572,0,22921 +128000,0,0,-1,-1,-1,0,483,0,22922 +128001,1,6,0,-1,-1,0,28573,0,22922 +128002,0,0,-1,-1,-1,0,483,0,22923 +128003,1,6,0,-1,-1,0,28575,0,22923 +128004,0,0,-1,-1,-1,0,483,0,22924 +128005,1,6,0,-1,-1,0,28576,0,22924 +128006,0,0,-1,-1,-1,0,483,0,23138 +128007,1,6,0,-1,-1,0,28915,0,23138 +128008,0,0,-1,-1,-1,0,483,0,23140 +128009,1,6,0,-1,-1,0,28916,0,23140 +128010,0,0,-1,-1,-1,0,483,0,23141 +128011,1,6,0,-1,-1,0,28917,0,23141 +128012,0,0,-1,-1,-1,0,483,0,23142 +128013,1,6,0,-1,-1,0,28918,0,23142 +128014,0,0,-1,180000,180000,1153,29276,0,23354 +128015,0,0,0,120000,120000,1140,29279,0,23358 +128016,0,0,0,120000,120000,1140,29297,0,23361 +128017,0,0,-1,-1,-1,0,483,0,23574 +128018,1,6,0,-1,-1,0,29688,0,23574 +128019,0,0,-1,1000,-1,0,29507,0,23575 +128020,0,0,-1,1000,-1,0,29720,0,23576 +128022,0,0,-1,-1,-1,0,29773,0,23581 +128023,0,0,-1,0,1000,59,11629,0,23584 +128024,0,0,0,-1,-1,0,29866,0,23654 +128025,0,0,-1,-1,-1,0,29909,0,23655 +128026,0,0,0,5000,-1,0,29917,0,23659 +128027,0,0,-1,-1,-1,0,30567,0,23864 +128028,0,0,-1,-1,-1,0,30557,0,23865 +128029,0,0,0,-1,-1,0,17449,0,21026 +128030,0,1,0,-1,-1,0,17884,0,21846 +128031,1,1,0,-1,-1,0,17846,0,21846 +128032,0,1,0,-1,-1,0,17884,0,21847 +128033,1,1,0,-1,-1,0,17846,0,21847 +128034,0,1,0,-1,-1,0,26703,0,21848 +128035,1,1,0,-1,-1,0,26715,0,21848 +128036,0,0,-1,-1,-1,0,483,0,21948 +128037,1,6,0,-1,-1,0,26897,0,21948 +128038,0,0,-1,-1,-1,0,483,0,21949 +128039,1,6,0,-1,-1,0,26900,0,21949 +128040,0,0,-1,-1,-1,0,483,0,21950 +128041,1,6,0,-1,-1,0,26904,0,21950 +128042,0,0,-1,-1,-1,0,483,0,21951 +128043,1,6,0,-1,-1,0,26905,0,21951 +128044,0,0,-1,-1,-1,0,483,0,22541 +128045,1,6,0,-1,-1,0,27947,0,22541 +128046,0,0,-1,-1,-1,0,483,0,22542 +128047,1,6,0,-1,-1,0,27948,0,22542 +128048,0,0,-1,-1,-1,0,483,0,22543 +128049,1,6,0,-1,-1,0,27950,0,22543 +128050,0,0,-1,-1,-1,0,483,0,22544 +128051,1,6,0,-1,-1,0,27951,0,22544 +128052,0,0,-1,0,3000,79,28488,0,22778 +128053,0,0,-1,0,3000,79,28486,0,22779 +128054,0,0,0,600000,600000,1139,28516,0,22783 +128055,0,0,-1,-1,-1,0,483,0,22925 +128056,1,6,0,-1,-1,0,28577,0,22925 +128057,0,0,-1,-1,-1,0,483,0,22926 +128058,1,6,0,-1,-1,0,28578,0,22926 +128059,0,0,-1,-1,-1,0,483,0,22927 +128060,1,6,0,-1,-1,0,28579,0,22927 +128061,0,0,-1,-1,-1,0,483,0,23143 +128062,1,6,0,-1,-1,0,28924,0,23143 +128063,0,0,-1,-1,-1,0,483,0,23144 +128064,1,6,0,-1,-1,0,28925,0,23144 +128065,0,0,-1,-1,-1,0,483,0,23145 +128066,1,6,0,-1,-1,0,28927,0,23145 +128067,0,0,-1,-1,-1,0,483,0,23146 +128068,1,6,0,-1,-1,0,28933,0,23146 +128069,0,1,0,-1,-1,0,7597,0,23362 +128070,0,1,0,-1,-1,0,7597,0,23363 +128071,1,1,0,-1,-1,0,13390,0,23363 +128072,0,0,0,-1,-1,0,29384,0,23480 +128073,0,0,-1,0,1000,59,1137,0,23585 +128074,0,0,-1,0,1000,59,11009,0,23586 +128075,0,0,0,3600000,-1,0,29830,0,23587 +128076,1,1,0,-1,-1,0,21363,0,23587 +128077,2,1,0,-1,-1,0,14055,0,23587 +128078,0,0,0,60000,60000,1140,29731,0,23669 +128079,0,0,-1,0,3000,79,7178,0,23871 +128080,0,1,0,1500,-1,0,9140,0,20909 +128081,0,0,0,-1,3000,330,25675,0,21044 +128082,0,1,0,-1,-1,0,9294,0,21045 +128083,0,1,0,-1,-1,0,9399,0,21046 +128084,0,1,0,-1,-1,0,9294,0,21047 +128085,0,1,0,-1,-1,0,9297,0,21048 +128086,0,1,0,-1,-1,0,9294,0,21049 +128087,0,1,0,-1,-1,0,14254,0,21849 +128088,0,1,0,-1,-1,0,18049,0,21850 +128089,0,1,0,-1,-1,0,14127,0,21851 +128090,0,1,0,-1,-1,0,18054,0,21852 +128091,0,1,0,-1,-1,0,18052,0,21853 +128092,0,1,0,-1,-1,0,17493,0,21854 +128093,0,1,0,-1,-1,0,28264,0,21855 +128094,0,0,-1,-1,-1,0,483,0,21952 +128095,1,6,0,-1,-1,0,26906,0,21952 +128096,0,0,-1,-1,-1,0,483,0,21953 +128097,1,6,0,-1,-1,0,26909,0,21953 +128098,0,0,-1,-1,-1,0,483,0,21954 +128099,1,6,0,-1,-1,0,26910,0,21954 +128100,0,0,-1,-1,-1,0,483,0,21955 +128101,1,6,0,-1,-1,0,26912,0,21955 +128102,0,0,-1,-1,-1,0,483,0,22545 +128103,1,6,0,-1,-1,0,27954,0,22545 +128104,0,0,-1,-1,-1,0,483,0,22546 +128105,1,6,0,-1,-1,0,27958,0,22546 +128106,0,0,-1,-1,-1,0,483,0,22547 +128107,1,6,0,-1,-1,0,27960,0,22547 +128108,0,0,0,600000,600000,1139,28516,0,22784 +128109,0,0,-1,0,180000,1153,28714,0,22788 +128110,0,0,-1,-1,-1,0,28700,0,22955 +128111,0,0,-1,-1,-1,0,483,0,23147 +128112,1,6,0,-1,-1,0,28936,0,23147 +128113,0,0,-1,-1,-1,0,483,0,23148 +128114,1,6,0,-1,-1,0,28938,0,23148 +128115,0,0,-1,-1,-1,0,483,0,23149 +128116,1,6,0,-1,-1,0,28944,0,23149 +128117,0,0,-1,-1,-1,0,483,0,23150 +128118,1,6,0,-1,-1,0,28947,0,23150 +128119,0,0,-1,-1,-1,0,29435,0,23485 +128120,0,0,-1,-1,-1,0,483,0,23590 +128121,1,6,0,-1,-1,0,29566,0,23590 +128122,0,0,-1,-1,-1,0,483,0,23591 +128123,1,6,0,-1,-1,0,29568,0,23591 +128124,0,0,-1,-1,-1,0,483,0,23592 +128125,1,6,0,-1,-1,0,29569,0,23592 +128126,0,0,-1,-1,-1,0,483,0,23593 +128127,1,6,0,-1,-1,0,29571,0,23593 +128128,0,0,-1,-1,-1,0,483,0,23594 +128129,1,6,0,-1,-1,0,29603,0,23594 +128130,0,0,0,-1,-1,0,30006,0,23674 +128131,0,0,0,120000,-1,0,30009,0,23675 +128132,0,0,-8,-1,-1,0,29773,0,23788 +128133,0,0,-1,-1,-1,0,483,0,23874 +128134,1,6,0,-1,-1,0,30547,0,23874 +128135,0,0,0,-1,-1,0,30611,0,23875 +128136,0,0,0,-1,-1,0,30612,0,23876 +128137,0,0,0,-1,-1,0,30617,0,23877 +128138,0,1,0,-1,-1,0,9297,0,21050 +128139,0,1,0,-1,-1,0,9294,0,21051 +128140,0,1,0,0,0,0,9399,0,21052 +128141,0,1,0,0,0,0,9399,0,21053 +128142,0,1,0,-1,-1,0,9297,0,21054 +128143,0,1,0,-1,-1,0,9399,0,21055 +128144,0,1,0,-1,-1,0,9297,0,21056 +128145,0,1,0,-1,-1,0,14798,0,21859 +128146,1,1,0,-1,-1,0,21633,0,21859 +128147,0,1,0,-1,-1,0,14047,0,21860 +128148,1,1,0,-1,-1,0,18378,0,21860 +128149,0,1,0,-1,-1,0,18050,0,21861 +128150,1,1,0,-1,-1,0,21634,0,21861 +128151,0,1,0,-1,-1,0,33484,0,21862 +128152,1,1,0,-1,-1,0,21634,0,21862 +128153,0,0,-1,-1,-1,0,483,0,21956 +128154,1,6,0,-1,-1,0,26914,0,21956 +128155,0,0,-1,-1,-1,0,483,0,21957 +128156,1,6,0,-1,-1,0,26915,0,21957 +128157,0,0,-1,-1,-1,0,483,0,21958 +128158,1,6,0,-1,-1,0,26918,0,21958 +128159,0,0,-1,-1,-1,0,483,0,21959 +128160,1,6,0,-1,-1,0,26920,0,21959 +128161,0,0,-1,0,1000,150,27030,0,21990 +128162,0,0,-1,-1,-1,0,483,0,22548 +128163,1,6,0,-1,-1,0,27962,0,22548 +128164,0,0,-1,-1,-1,0,483,0,22551 +128165,1,6,0,-1,-1,0,27968,0,22551 +128166,0,0,-1,0,120000,1153,28527,0,22795 +128167,0,0,-3,-1,-1,0,29517,0,22796 +128168,0,0,0,5000,-1,0,29528,0,22962 +128169,0,0,-1,-1,-1,0,483,0,23151 +128170,1,6,0,-1,-1,0,28948,0,23151 +128171,0,0,-1,-1,-1,0,483,0,23152 +128172,1,6,0,-1,-1,0,28950,0,23152 +128173,0,0,-1,-1,-1,0,483,0,23153 +128174,1,6,0,-1,-1,0,28953,0,23153 +128175,0,0,-1,-1,-1,0,483,0,23154 +128176,1,6,0,-1,-1,0,28955,0,23154 +128177,0,0,-1,-1,120000,1153,29308,0,23381 +128178,0,1,0,-1,-1,0,9333,0,23490 +128179,0,1,0,-1,-1,0,15806,0,23491 +128180,0,0,-1,0,1000,59,11007,0,23492 +128181,0,1,0,-1,-1,0,15809,0,23493 +128182,0,0,-1,-1,-1,0,483,0,23595 +128183,1,6,0,-1,-1,0,29605,0,23595 +128184,0,0,-1,-1,-1,0,483,0,23596 +128185,1,6,0,-1,-1,0,29606,0,23596 +128186,0,0,-1,-1,-1,0,483,0,23597 +128187,1,6,0,-1,-1,0,29608,0,23597 +128188,0,0,-1,-1,-1,0,483,0,23598 +128189,1,6,0,-1,-1,0,29611,0,23598 +128190,0,0,0,0,120000,1164,30298,0,23792 +128191,0,0,-1,-1,-1,0,483,0,23799 +128192,1,6,0,-1,-1,0,30313,0,23799 +128193,0,0,-1,-1,-1,0,483,0,23882 +128194,1,6,0,-1,-1,0,30549,0,23882 +128195,0,0,-1,0,900000,1164,30840,0,23982 +128196,0,0,-1,-1,-1,0,30845,0,23985 +128197,0,1,0,0,0,0,7687,0,21057 +128198,0,1,0,-1,-1,0,17747,0,21058 +128199,0,1,0,-1,-1,0,9295,0,21059 +128200,0,1,0,-1,-1,0,17747,0,21060 +128201,0,1,0,-1,-1,0,17870,0,21061 +128202,0,1,0,-1,-1,0,17747,0,21062 +128203,0,1,0,-1,-1,0,17870,0,21063 +128204,0,1,0,-1,-1,0,21631,0,21868 +128205,0,1,0,-1,-1,0,18025,0,21869 +128206,1,1,0,-1,-1,0,17908,0,21869 +128207,0,0,-1,0,1000,150,27031,0,21991 +128208,0,0,-1,-1,-1,0,483,0,21992 +128209,1,6,0,-1,-1,0,27032,0,21992 +128210,0,0,-1,-1,-1,0,483,0,21993 +128211,1,6,0,-1,-1,0,27033,0,21993 +128212,0,0,-1,-1,-1,0,27029,0,22012 +128213,0,0,-1,0,1000,59,27089,0,22018 +128214,0,0,-1,0,1000,11,33725,0,22019 +128215,0,0,-1,-1,-1,0,483,0,22552 +128216,1,6,0,-1,-1,0,27967,0,22552 +128217,0,0,-1,-1,-1,0,483,0,22553 +128218,1,6,0,-1,-1,0,27972,0,22553 +128219,0,0,-1,-1,-1,0,483,0,22554 +128220,1,6,0,-1,-1,0,27971,0,22554 +128221,0,0,-1,-1,180000,1153,28726,0,22797 +128222,0,0,-1,0,3000,79,28489,0,22823 +128223,0,0,-1,0,3000,79,28490,0,22824 +128224,0,0,-1,0,3000,79,28491,0,22825 +128225,0,0,-1,0,120000,4,28492,0,22826 +128226,0,0,-1,0,3000,79,28493,0,22827 +128227,0,0,-1,0,120000,4,28494,0,22828 +128228,0,0,-1,-1,-1,0,483,0,23155 +128229,1,6,0,-1,-1,0,28957,0,23155 +128230,0,0,-1,180000,180000,1153,29312,0,23386 +128231,0,1,0,-1,-1,0,9334,0,23494 +128232,0,0,-1,0,1000,11,433,0,23495 +128233,0,0,-1,1000,1500,1136,26286,0,23496 +128234,0,1,0,-1,-1,0,21620,0,23498 +128235,0,1,0,-1,-1,0,15816,0,23499 +128236,0,0,0,-1,-1,0,29451,0,23500 +128237,0,0,-1,-1,-1,0,483,0,23599 +128238,1,6,0,-1,-1,0,29610,0,23599 +128239,0,0,-1,-1,-1,0,483,0,23600 +128240,1,6,0,-1,-1,0,29613,0,23600 +128241,0,0,-1,-1,-1,0,483,0,23601 +128242,1,6,0,-1,-1,0,29614,0,23601 +128243,0,0,-1,-1,-1,0,483,0,23602 +128244,1,6,0,-1,-1,0,29615,0,23602 +128245,0,0,0,-1,-1,0,30015,0,23680 +128246,0,0,0,60000,60000,1140,30212,0,23682 +128247,0,0,-1,-1,-1,0,483,0,23800 +128248,1,6,0,-1,-1,0,30314,0,23800 +128249,0,0,-1,-1,-1,0,30406,0,23801 +128250,0,0,-1,-1,-1,0,483,0,23802 +128251,1,6,0,-1,-1,0,30315,0,23802 +128252,0,0,-1,-1,-1,0,483,0,23803 +128253,1,6,0,-1,-1,0,30316,0,23803 +128254,0,0,-1,-1,-1,0,483,0,23804 +128255,1,6,0,-1,-1,0,30317,0,23804 +128256,0,0,-1,-1,-1,0,483,0,23883 +128257,1,6,0,-1,-1,0,30551,0,23883 +128258,0,0,-1,-1,-1,0,483,0,23884 +128259,1,6,0,-1,-1,0,30552,0,23884 +128260,0,0,-1,-1,-1,0,483,0,23885 +128261,1,6,0,-1,-1,0,30555,0,23885 +128262,0,0,-1,-1,-1,0,483,0,23887 +128263,1,6,0,-1,-1,0,30556,0,23887 +128264,0,0,-1,-1,-1,0,30847,0,23986 +128265,0,0,-1,-1,-1,0,30848,0,23989 +128266,0,1,0,0,-1,0,7517,0,20950 +128267,1,0,10,1500,-1,0,25606,0,20950 +128268,0,1,0,-1,-1,0,17747,0,21064 +128269,0,1,0,0,0,0,9295,0,21065 +128270,0,1,0,0,0,0,9295,0,21066 +128271,0,1,0,-1,-1,0,17870,0,21067 +128272,0,1,0,-1,-1,0,9295,0,21068 +128273,0,1,0,-1,-1,0,25689,0,21069 +128274,0,1,0,0,0,0,7688,0,21070 +128275,0,1,0,-1,-1,0,25706,0,21870 +128276,1,1,0,-1,-1,0,26717,0,21870 +128277,0,1,0,-1,-1,0,26737,0,21871 +128278,1,1,0,-1,-1,0,26727,0,21871 +128279,0,1,0,-1,-1,0,18048,0,21873 +128280,1,1,0,-1,-1,0,18378,0,21873 +128281,0,1,0,-1,-1,0,23593,0,21874 +128282,1,1,0,-1,-1,0,21364,0,21874 +128283,0,1,0,-1,-1,0,26228,0,21875 +128284,1,1,0,-1,-1,0,21633,0,21875 +128285,1,0,-3,0,120000,1153,27103,0,22044 +128286,0,0,-1,0,-1,0,26967,0,22053 +128287,0,0,-1,0,-1,0,27186,0,22054 +128288,0,0,-1,0,-1,0,27188,0,22055 +128289,1,0,-1,0,120000,1153,27235,0,22103 +128290,1,0,-1,0,120000,1153,27236,0,22104 +128291,0,0,-1,-1,-1,0,483,0,22555 +128292,1,6,0,-1,-1,0,27975,0,22555 +128293,0,0,-1,-1,-1,0,483,0,22556 +128294,1,6,0,-1,-1,0,27977,0,22556 +128295,0,0,-1,-1,-1,0,483,0,22557 +128296,1,6,0,-1,-1,0,28004,0,22557 +128297,0,0,-1,0,120000,4,28495,0,22829 +128298,0,0,-1,0,3000,79,28496,0,22830 +128299,0,0,-1,0,3000,79,28497,0,22831 +128300,0,0,-1,0,120000,4,28499,0,22832 +128301,0,0,-1,0,3000,79,28501,0,22833 +128302,0,0,-1,0,3000,79,28502,0,22834 +128303,0,0,-1,-1,-1,0,29049,0,23191 +128304,0,0,0,10000,10000,1140,29314,0,23394 +128305,0,0,-1,-1,-1,0,28273,0,23501 +128306,0,1,0,-1,-1,0,15812,0,23503 +128307,0,0,-1,-1,-1,0,483,0,23603 +128308,1,6,0,-1,-1,0,29616,0,23603 +128309,0,0,-1,-1,-1,0,483,0,23604 +128310,1,6,0,-1,-1,0,29617,0,23604 +128311,0,0,-1,-1,-1,0,483,0,23605 +128312,1,6,0,-1,-1,0,29619,0,23605 +128313,0,0,-1,-1,-1,0,483,0,23606 +128314,1,6,0,-1,-1,0,29620,0,23606 +128315,0,0,0,60000,60000,0,30098,0,23691 +128316,0,0,-1,20000,20000,1140,30077,0,23693 +128317,0,0,-1,-1,-1,0,483,0,23805 +128318,1,6,0,-1,-1,0,30318,0,23805 +128319,0,0,-1,-1,-1,0,483,0,23806 +128320,1,6,0,-1,-1,0,30325,0,23806 +128321,0,0,-1,-1,-1,0,483,0,23807 +128322,1,6,0,-1,-1,0,30329,0,23807 +128323,0,0,-1,-1,-1,0,483,0,23808 +128324,1,6,0,-1,-1,0,30332,0,23808 +128325,0,0,-1,-1,-1,0,483,0,23809 +128326,1,6,0,-1,-1,0,30334,0,23809 +128327,0,0,-1,-1,-1,0,483,0,23888 +128328,1,6,0,-1,-1,0,30548,0,23888 +128329,0,0,0,1000,-1,0,30877,0,23995 +128330,0,1,0,-1,-1,0,9140,0,20955 +128331,1,1,0,-1,-1,0,7515,0,20955 +128332,0,1,0,0,-1,0,20888,0,20956 +128333,0,1,0,900000,30000,0,9415,0,20958 +128334,0,1,0,-1,-1,0,7517,0,20959 +128335,0,1,0,-1,-1,0,9324,0,21073 +128336,0,1,0,-1,-1,0,9412,0,21074 +128337,0,1,0,-1,-1,0,9324,0,21075 +128338,0,1,0,-1,-1,0,9327,0,21076 +128339,0,1,0,-1,-1,0,9324,0,21077 +128340,0,1,0,-1,-1,0,9327,0,21078 +128341,0,1,0,-1,-1,0,9324,0,21079 +128342,1,0,-1,0,120000,1153,27237,0,22105 +128343,0,0,-1,0,1800000,831,27239,0,22116 +128344,0,1,0,0,0,0,27252,0,22128 +128345,1,1,0,0,0,0,27256,0,22128 +128346,0,0,-1,-1,-1,0,483,0,22146 +128347,1,6,0,-1,-1,0,26991,0,22146 +128348,0,0,-1,-1,-1,0,483,0,22153 +128349,1,6,0,-1,-1,0,27127,0,22153 +128350,0,0,-1,-1,-1,0,483,0,22558 +128351,1,6,0,-1,-1,0,28003,0,22558 +128352,0,0,-1,-1,-1,0,483,0,22559 +128353,1,6,0,-1,-1,0,27984,0,22559 +128354,0,0,-1,-1,-1,0,483,0,22560 +128355,1,6,0,-1,-1,0,27981,0,22560 +128356,0,0,-1,0,3000,79,28503,0,22835 +128357,0,0,-1,0,120000,4,28504,0,22836 +128358,0,0,-1,0,120000,4,28506,0,22837 +128359,0,0,-1,0,120000,4,28507,0,22838 +128360,0,0,-1,0,120000,4,28508,0,22839 +128361,0,0,-1,0,3000,79,28509,0,22840 +128362,0,0,-1,-1,-1,0,483,0,23607 +128363,1,6,0,-1,-1,0,29621,0,23607 +128364,0,0,-1,-1,-1,0,483,0,23608 +128365,1,6,0,-1,-1,0,29628,0,23608 +128366,0,0,-1,-1,-1,0,483,0,23609 +128367,1,6,0,-1,-1,0,29629,0,23609 +128368,0,0,-1,-1,-1,0,483,0,23610 +128369,1,6,0,-1,-1,0,29630,0,23610 +128370,0,0,-1,-1,-1,0,483,0,23611 +128371,1,6,0,-1,-1,0,29642,0,23611 +128372,0,0,3,-1,-1,0,30099,0,23697 +128373,0,0,3,-1,-1,0,30102,0,23702 +128374,0,0,3,-1,-1,0,30105,0,23703 +128375,0,0,-1,0,1000,59,11009,0,23704 +128376,0,0,-1,-1,-1,0,483,0,23810 +128377,1,6,0,-1,-1,0,30337,0,23810 +128378,0,0,-1,-1,-1,0,483,0,23811 +128379,1,6,0,-1,-1,0,30341,0,23811 +128380,0,0,-1,-1,-1,0,483,0,23812 +128381,1,6,0,-1,-1,0,30342,0,23812 +128382,0,0,-1,-1,-1,0,483,0,23813 +128383,1,6,0,-1,-1,0,30343,0,23813 +128384,0,0,-1,-1,-1,0,483,0,23814 +128385,1,6,0,-1,-1,0,30344,0,23814 +128386,0,0,3,-1,-1,0,30646,0,23896 +128387,0,0,3,-1,-1,0,30653,0,23897 +128388,0,0,3,-1,-1,0,30654,0,23898 +128389,0,0,-1,-1,-1,0,483,0,24000 +128390,1,6,0,-1,-1,0,27911,0,24000 +128391,0,0,-1,-1,-1,0,483,0,24001 +128392,1,6,0,-1,-1,0,28553,0,24001 +128393,0,0,-1,-1,-1,0,483,0,24002 +128394,1,6,0,-1,-1,0,29657,0,24002 +128395,0,1,0,-1,-1,0,21593,0,20961 +128396,0,1,0,-1,-1,0,9331,0,20964 +128397,0,1,0,0,0,0,9412,0,21080 +128398,0,1,0,0,0,0,9412,0,21081 +128399,0,1,0,-1,-1,0,9327,0,21082 +128400,0,1,0,-1,-1,0,9412,0,21083 +128401,0,1,0,-1,-1,0,9327,0,21084 +128402,0,1,0,0,0,0,7708,0,21085 +128403,0,1,0,-1,-1,0,14793,0,21086 +128404,0,0,-1,-1,-1,0,27487,0,22179 +128405,0,0,-1,-1,-1,0,27488,0,22180 +128406,0,0,-1,-1,-1,0,27489,0,22181 +128407,0,0,-1,-1,-1,0,27490,0,22182 +128408,0,0,-1,-1,-1,0,27500,0,22183 +128409,0,0,-1,-1,-1,0,27491,0,22184 +128410,0,0,-1,-1,-1,0,483,0,22561 +128411,1,6,0,-1,-1,0,27982,0,22561 +128412,0,0,-1,-1,-1,0,483,0,22562 +128413,1,6,0,-1,-1,0,28016,0,22562 +128414,0,0,-1,-1,-1,0,483,0,22563 +128415,1,6,0,-1,-1,0,28019,0,22563 +128416,0,0,-1,-1,-1,0,483,0,22564 +128417,1,6,0,-1,-1,0,28021,0,22564 +128418,0,0,-1,0,120000,4,28511,0,22841 +128419,0,0,-1,0,120000,4,28512,0,22842 +128420,0,0,-1,0,120000,4,28513,0,22844 +128421,0,0,-1,0,120000,4,28536,0,22845 +128422,0,0,-1,0,120000,4,28537,0,22846 +128423,0,1,0,-1,-1,0,9393,0,23407 +128424,0,0,-1,-1,-1,0,483,0,23612 +128425,1,6,0,-1,-1,0,29643,0,23612 +128426,0,0,-1,-1,-1,0,483,0,23613 +128427,1,6,0,-1,-1,0,29645,0,23613 +128428,0,0,-1,-1,-1,0,483,0,23615 +128429,1,6,0,-1,-1,0,29648,0,23615 +128430,0,0,-1,-1,-1,0,30154,0,23711 +128431,0,1,0,-1,-1,0,24346,0,23717 +128432,0,0,-1,-1,-1,0,483,0,23815 +128433,1,6,0,-1,-1,0,30347,0,23815 +128434,0,0,-1,-1,-1,0,483,0,23816 +128435,1,6,0,-1,-1,0,30348,0,23816 +128436,0,0,-1,-1,-1,0,483,0,23817 +128437,1,6,0,-1,-1,0,30349,0,23817 +128438,0,0,-1,-1,-1,0,30419,0,23818 +128439,0,0,-1,1000,-1,0,30434,0,23819 +128440,0,1,0,-1,-1,0,9336,0,25540 +128441,0,1,0,0,0,0,9346,0,25541 +128442,0,1,0,0,0,0,9316,0,25542 +128443,1,1,0,-1,-1,0,21620,0,25542 +128444,0,1,0,-1,-1,0,33022,0,25543 +128445,0,1,0,-1,-1,0,9142,0,25544 +128446,0,1,0,-1,-1,0,9331,0,25545 +128447,0,0,10,3600000,0,0,30999,0,24095 +128448,0,1,0,-1,-1,0,21618,0,24096 +128449,1,1,0,-1,-1,0,9317,0,24096 +128450,0,0,10,3600000,0,0,31000,0,24097 +128451,0,0,10,3600000,0,0,31002,0,24098 +128452,0,0,-1,-1,-1,0,31003,0,24099 +128453,0,0,-1,-1,-1,0,483,0,24182 +128454,1,6,0,-1,-1,0,31082,0,24182 +128455,0,0,-1,-1,-1,0,483,0,24183 +128456,1,6,0,-1,-1,0,31083,0,24183 +128457,0,0,-1,-1,-1,0,31225,0,24184 +128458,0,0,-1,-1,-1,0,31371,0,24273 +128459,0,0,-1,-1,-1,0,31372,0,24274 +128460,0,0,-1,-1,-1,0,31369,0,24275 +128461,0,1,0,-1,-1,0,14254,0,24362 +128462,0,1,0,-1,-1,0,21626,0,24364 +128463,0,1,0,-1,-1,0,15812,0,24365 +128464,0,1,0,-1,-1,0,9336,0,24366 +128465,1,1,0,-1,-1,0,21626,0,24366 +128466,0,1,0,-1,-1,0,33233,0,24453 +128467,0,1,0,-1,-1,0,18049,0,24455 +128468,0,1,0,-1,-1,0,22778,0,24548 +128469,0,1,0,-1,-1,0,22778,0,24549 +128470,0,1,0,-1,-1,0,44904,0,25336 +128471,0,1,0,-1,-1,0,44905,0,25337 +128472,0,1,0,-1,-1,0,18049,0,25546 +128473,0,1,0,-1,-1,0,15714,0,25547 +128474,0,0,-1,0,3000,79,32304,0,25548 +128475,0,0,-1,120000,120000,1153,32305,0,25550 +128476,0,1,0,-1,-1,0,15812,0,25551 +128477,0,0,0,0,5000,1167,32307,0,25552 +128478,0,0,-1,0,1000,11,5004,0,24105 +128479,0,0,10,3600000,0,0,31023,0,24106 +128480,0,0,-1,-1,-1,0,483,0,24192 +128481,1,6,0,-1,-1,0,31089,0,24192 +128482,0,0,-1,-1,-1,0,483,0,24193 +128483,1,6,0,-1,-1,0,31084,0,24193 +128484,0,0,-1,-1,-1,0,31370,0,24276 +128485,0,0,-1,-1,-1,0,31333,0,24278 +128486,1,1,0,-1,-1,0,21619,0,24458 +128487,0,1,0,-1,-1,0,9318,0,24459 +128488,0,1,0,-1,-1,0,15715,0,24462 +128489,0,0,0,120000,120000,1155,32140,0,24551 +128490,0,1,0,-1,-1,0,18053,0,24552 +128491,0,1,0,-1,-1,0,17367,0,24553 +128492,0,1,0,-1,-1,0,17367,0,24554 +128493,0,1,0,-1,-1,0,28360,0,24555 +128494,0,1,0,-1,-1,0,33063,0,24556 +128495,1,1,0,-1,-1,0,17367,0,24556 +128496,0,0,0,0,20000,1164,32205,0,25458 +128497,0,0,0,0,5000,1167,32314,0,25555 +128498,0,1,0,-1,-1,0,15715,0,25556 +128499,1,1,0,-1,-1,0,21630,0,25556 +128500,0,1,0,-1,-1,0,14127,0,25558 +128501,0,1,0,0,0,0,18029,0,24110 +128502,1,1,0,0,-1,0,18379,0,24110 +128503,2,0,10,3600000,-1,0,31024,0,24110 +128504,0,1,0,0,0,0,33488,0,24114 +128505,1,0,10,3600000,-1,0,31025,0,24114 +128506,0,0,-1,-1,-1,0,483,0,24194 +128507,1,6,0,-1,-1,0,31085,0,24194 +128508,0,0,-1,-1,-1,0,483,0,24195 +128509,1,6,0,-1,-1,0,31087,0,24195 +128510,0,0,-1,-1,-1,0,483,0,24196 +128511,1,6,0,-1,-1,0,31088,0,24196 +128512,0,0,-1,-1,-1,0,483,0,24197 +128513,1,6,0,-1,-1,0,31090,0,24197 +128514,0,0,0,-1,-1,0,31497,0,24287 +128515,0,0,-1,-1,-1,0,31479,0,24289 +128516,0,0,0,120000,0,0,31771,0,24376 +128517,0,1,0,-1,-1,0,9331,0,24377 +128518,0,1,0,0,-1,0,26225,0,24378 +128519,0,1,0,-1,-1,0,9331,0,24464 +128520,0,1,0,-1,-1,0,15810,0,24465 +128521,0,1,0,-1,-1,0,14049,0,24466 +128522,0,0,0,-1,-1,0,31927,0,24467 +128523,0,1,0,-1,-1,0,41973,0,24557 +128524,0,0,0,0,10000,1167,32146,0,24560 +128525,0,1,0,-1,-1,0,17367,0,24561 +128526,0,1,0,-1,-1,0,17367,0,24562 +128527,0,0,0,5000,5000,0,31606,0,25465 +128528,0,1,0,-1,-1,0,15808,0,25559 +128529,0,1,0,-1,-1,0,14027,0,25560 +128530,0,1,0,-1,-1,0,9331,0,25562 +128531,0,1,0,-1,-1,0,9417,0,25563 +128532,0,1,0,0,-1,0,9408,0,25564 +128533,1,1,0,-1,-1,0,21631,0,25564 +128534,1,1,0,0,-1,0,28869,0,24116 +128535,2,0,10,3600000,-1,0,31033,0,24116 +128536,0,1,0,0,0,0,21628,0,24117 +128537,1,0,10,3600000,0,0,31026,0,24117 +128538,0,1,0,-1,-1,0,9397,0,24120 +128539,0,0,-1,-1,-1,0,483,0,24198 +128540,1,6,0,-1,-1,0,31091,0,24198 +128541,0,0,-1,-1,-1,0,483,0,24199 +128542,1,6,0,-1,-1,0,31092,0,24199 +128543,0,0,-1,-1,-1,0,483,0,24200 +128544,1,6,0,-1,-1,0,31149,0,24200 +128545,0,0,-1,-1,-1,0,483,0,24201 +128546,1,6,0,-1,-1,0,31094,0,24201 +128547,0,0,-1,-1,-1,0,483,0,24202 +128548,1,6,0,-1,-1,0,31095,0,24202 +128549,0,0,-1,-1,-1,0,483,0,24292 +128550,1,6,0,-1,-1,0,31430,0,24292 +128551,0,0,-1,-1,-1,0,483,0,24293 +128552,1,6,0,-1,-1,0,31431,0,24293 +128553,0,0,-1,-1,-1,0,483,0,24294 +128554,1,6,0,-1,-1,0,31432,0,24294 +128555,0,1,0,-1,-1,0,9407,0,24380 +128556,0,1,0,-1,-1,0,9332,0,24381 +128557,0,1,0,-1,-1,0,28767,0,24384 +128558,1,1,0,-1,-1,0,21363,0,24384 +128559,0,0,-1,-1,-1,0,31949,0,24470 +128560,0,1,0,-1,-1,0,18053,0,24563 +128561,0,1,0,-1,-1,0,18057,0,24564 +128562,0,1,0,-1,-1,0,18053,0,24565 +128563,0,1,0,-1,-1,0,18054,0,24566 +128564,0,1,0,-1,-1,0,14047,0,24567 +128565,0,1,0,0,0,0,14055,0,24568 +128566,0,0,-1,-1,-1,0,32234,0,25469 +128567,0,0,0,-1,3000,330,32235,0,25470 +128568,0,0,0,-1,3000,330,32239,0,25471 +128569,0,1,0,-1,-1,0,14089,0,25565 +128570,0,1,0,-1,-1,0,14254,0,25566 +128571,0,1,0,-1,-1,0,14248,0,25567 +128572,0,1,0,-1,-1,0,18049,0,25568 +128573,0,1,0,-1,-1,0,18049,0,25570 +128574,0,1,0,0,0,0,14248,0,24121 +128575,1,0,10,3600000,0,0,31035,0,24121 +128576,0,1,0,0,0,0,32981,0,24122 +128577,0,1,0,0,0,0,32980,0,24123 +128578,0,1,0,-1,-1,0,15819,0,24124 +128579,1,0,0,300000,0,0,31038,0,24124 +128580,0,0,0,120000,0,0,31039,0,24125 +128581,0,0,0,300000,20000,1141,31040,0,24126 +128582,0,1,0,-1,-1,0,21640,0,24127 +128583,1,0,0,300000,0,0,31045,0,24127 +128584,0,0,-1,-1,-1,0,483,0,24203 +128585,1,6,0,-1,-1,0,31096,0,24203 +128586,0,0,-1,-1,-1,0,483,0,24204 +128587,1,6,0,-1,-1,0,31097,0,24204 +128588,0,0,-1,-1,-1,0,483,0,24205 +128589,1,6,0,-1,-1,0,31098,0,24205 +128590,0,0,-1,-1,-1,0,483,0,24206 +128591,1,6,0,-1,-1,0,31099,0,24206 +128592,0,0,-1,-1,-1,0,483,0,24295 +128593,1,6,0,-1,-1,0,31433,0,24295 +128594,0,0,-1,-1,-1,0,483,0,24296 +128595,1,6,0,-1,-1,0,31434,0,24296 +128596,0,0,-1,-1,-1,0,483,0,24297 +128597,1,6,0,-1,-1,0,31435,0,24297 +128598,0,0,-1,-1,-1,0,483,0,24298 +128599,1,6,0,-1,-1,0,31437,0,24298 +128600,0,1,0,-1,-1,0,34262,0,24386 +128601,0,1,0,-1,-1,0,21626,0,24388 +128602,1,1,0,-1,-1,0,9406,0,24388 +128603,0,1,0,-1,-1,0,14027,0,24389 +128604,0,1,0,-1,-1,0,18038,0,24390 +128605,1,0,0,180000,-1,0,31794,0,24390 +128606,0,0,0,5000,5000,0,32042,0,24474 +128607,0,1,0,0,0,0,9344,0,24569 +128608,0,1,0,-1,-1,0,32149,0,24570 +128609,0,1,0,0,0,0,14047,0,24571 +128610,0,1,0,-1,-1,0,14047,0,24572 +128611,0,0,0,-1,3000,330,32240,0,25472 +128612,0,0,0,-1,3000,330,32242,0,25473 +128613,0,0,0,-1,3000,330,32243,0,25474 +128614,0,0,0,-1,3000,330,32244,0,25475 +128615,0,0,0,-1,3000,330,32245,0,25476 +128616,0,1,0,-1,-1,0,18049,0,25571 +128617,0,1,0,-1,-1,0,18049,0,25572 +128618,0,1,0,-1,-1,0,18049,0,25574 +128619,0,1,0,-1,-1,0,13881,0,25575 +128620,0,1,0,-1,-1,0,14089,0,25576 +128621,0,1,0,-1,-1,0,17746,0,24128 +128622,1,1,0,-1,-1,0,15813,0,24128 +128623,2,0,0,180000,15000,1141,31047,0,24128 +128624,0,0,-1,-1,-1,0,483,0,24207 +128625,1,6,0,-1,-1,0,31100,0,24207 +128626,0,0,-1,-1,-1,0,483,0,24208 +128627,1,6,0,-1,-1,0,31101,0,24208 +128628,0,0,-1,-1,-1,0,483,0,24209 +128629,1,6,0,-1,-1,0,31102,0,24209 +128630,0,0,-1,-1,-1,0,483,0,24210 +128631,1,6,0,-1,-1,0,31103,0,24210 +128632,0,0,-1,-1,-1,0,483,0,24211 +128633,1,6,0,-1,-1,0,31104,0,24211 +128634,0,0,-1,-1,-1,0,483,0,24299 +128635,1,6,0,-1,-1,0,31438,0,24299 +128636,0,0,-1,-1,-1,0,483,0,24300 +128637,1,6,0,-1,-1,0,31440,0,24300 +128638,0,0,-1,-1,-1,0,483,0,24301 +128639,1,6,0,-1,-1,0,31441,0,24301 +128640,0,0,-1,-1,-1,0,483,0,24302 +128641,1,6,0,-1,-1,0,31442,0,24302 +128642,0,0,-1,-1,-1,0,483,0,24303 +128643,1,6,0,-1,-1,0,31443,0,24303 +128644,0,1,0,-1,-1,0,21626,0,24391 +128645,1,1,0,-1,-1,0,9318,0,24391 +128646,0,1,0,-1,-1,0,9346,0,24392 +128647,0,1,0,-1,-1,0,9317,0,24393 +128648,0,1,0,-1,-1,0,15826,0,24394 +128649,0,1,0,-1,-1,0,14248,0,24395 +128650,0,1,0,-1,-1,0,14127,0,24481 +128651,0,0,0,-1,3000,330,32246,0,25477 +128652,0,1,0,-1,-1,0,14254,0,25479 +128653,0,1,0,-1,-1,0,14254,0,25480 +128654,0,1,0,-1,-1,0,14799,0,25482 +128655,0,1,0,-1,-1,0,14799,0,25483 +128656,0,1,0,-1,-1,0,18049,0,25577 +128657,0,1,0,-1,-1,0,14089,0,25578 +128658,0,1,0,-1,-1,0,13881,0,25579 +128659,0,1,0,-1,-1,0,15807,0,25581 +128660,0,1,0,0,0,0,14254,0,25582 +128661,0,0,-1,-1,-1,0,483,0,24212 +128662,1,6,0,-1,-1,0,31105,0,24212 +128663,0,0,-1,-1,-1,0,483,0,24213 +128664,1,6,0,-1,-1,0,31106,0,24213 +128665,0,0,-1,-1,-1,0,483,0,24214 +128666,1,6,0,-1,-1,0,31107,0,24214 +128667,0,0,-1,-1,-1,0,483,0,24215 +128668,1,6,0,-1,-1,0,31108,0,24215 +128669,0,0,-1,-1,-1,0,483,0,24304 +128670,1,6,0,-1,-1,0,31444,0,24304 +128671,0,0,-1,-1,-1,0,483,0,24305 +128672,1,6,0,-1,-1,0,31448,0,24305 +128673,0,0,-1,-1,-1,0,483,0,24306 +128674,1,6,0,-1,-1,0,31449,0,24306 +128675,0,0,-1,-1,-1,0,483,0,24307 +128676,1,6,0,-1,-1,0,31450,0,24307 +128677,0,0,-1,-1,-1,0,483,0,24308 +128678,1,6,0,-1,-1,0,31451,0,24308 +128679,0,1,0,-1,-1,0,15809,0,24396 +128680,0,1,0,-1,-1,0,18033,0,24397 +128681,0,1,0,-1,-1,0,14049,0,24398 +128682,0,0,0,-1,-1,0,3366,0,24490 +128683,0,1,0,-1,-1,0,14248,0,25484 +128684,0,1,0,-1,-1,0,9334,0,25486 +128685,0,1,0,-1,-1,0,9334,0,25487 +128686,0,1,0,-1,-1,0,9316,0,25488 +128687,1,1,0,-1,-1,0,21363,0,25488 +128688,0,1,0,-1,-1,0,9344,0,25489 +128689,0,1,0,0,0,0,14254,0,25583 +128690,0,1,0,-1,-1,0,15807,0,25584 +128691,0,0,0,30000,30000,0,31116,0,24140 +128692,0,0,-1,-1,-1,0,483,0,24216 +128693,1,6,0,-1,-1,0,31109,0,24216 +128694,0,0,-1,-1,-1,0,483,0,24217 +128695,1,6,0,-1,-1,0,31110,0,24217 +128696,0,0,-1,-1,-1,0,483,0,24218 +128697,1,6,0,-1,-1,0,31111,0,24218 +128698,0,0,-1,-1,-1,0,483,0,24219 +128699,1,6,0,-1,-1,0,31112,0,24219 +128700,0,0,-1,-1,-1,0,483,0,24220 +128701,1,6,0,-1,-1,0,31113,0,24220 +128702,0,0,-1,-1,-1,0,31268,0,24221 +128703,0,0,-1,-1,-1,0,483,0,24309 +128704,1,6,0,-1,-1,0,31452,0,24309 +128705,0,0,-1,-1,-1,0,483,0,24310 +128706,1,6,0,-1,-1,0,31453,0,24310 +128707,0,0,-1,-1,-1,0,483,0,24311 +128708,1,6,0,-1,-1,0,31454,0,24311 +128709,0,0,-1,-1,-1,0,483,0,24312 +128710,1,6,0,-1,-1,0,31455,0,24312 +128711,0,0,-1,-1,-1,0,31958,0,24491 +128712,0,0,0,10000,-1,0,32028,0,24494 +128713,0,0,-1,-1,-1,0,32249,0,25490 +128714,0,1,0,-1,-1,0,18045,0,25492 +128715,0,1,0,-1,-1,0,26459,0,25494 +128716,0,1,0,-1,-1,0,9330,0,25495 +128717,0,1,0,-1,-1,0,9329,0,25496 +128718,0,1,0,-1,-1,0,14254,0,25591 +128719,0,1,0,-1,-1,0,9345,0,25592 +128720,1,1,0,-1,-1,0,21626,0,25592 +128721,0,1,0,-1,-1,0,15808,0,25594 +128722,0,0,-1,10000,10000,0,31118,0,24147 +128723,0,0,-1,10000,10000,0,31120,0,24148 +128724,0,0,-1,10000,10000,0,31121,0,24149 +128725,0,0,-1,-1,-1,0,483,0,24313 +128726,1,6,0,-1,-1,0,31456,0,24313 +128727,0,0,-1,-1,-1,0,483,0,24314 +128728,1,6,0,-1,-1,0,31459,0,24314 +128729,0,0,-1,-1,-1,0,483,0,24315 +128730,1,6,0,-1,-1,0,31461,0,24315 +128731,0,0,-1,-1,-1,0,483,0,24316 +128732,1,6,0,-1,-1,0,31373,0,24316 +128733,0,0,-1,-1,-1,0,31549,0,24318 +128734,0,0,-1,0,1000,0,27094,0,24408 +128735,0,1,-1,-1,-1,0,9330,0,24410 +128736,0,0,0,-1,-1,0,32037,0,24498 +128737,0,1,-1,-1,-1,0,9330,0,25497 +128738,0,0,-1,0,120000,1153,32254,0,25498 +128739,0,1,0,-1,-1,0,9334,0,25499 +128740,0,1,0,0,-1,0,9344,0,25500 +128741,0,1,0,-1,-1,0,9315,0,25501 +128742,1,1,0,-1,-1,0,21363,0,25501 +128743,0,1,0,-1,-1,0,9343,0,25502 +128744,0,1,0,-1,-1,0,18049,0,25595 +128745,0,0,0,-1,3000,330,32345,0,25596 +128746,0,1,0,-1,-1,0,14027,0,25598 +128747,0,1,0,-1,-1,0,9343,0,25599 +128748,0,1,0,-1,-1,0,9343,0,25600 +128749,0,1,0,0,0,0,14248,0,24154 +128750,0,1,0,-1,-1,0,44895,0,24155 +128751,0,1,0,-1,-1,0,34318,0,24413 +128752,0,0,0,0,10000,1167,32001,0,24501 +128753,0,0,-1,-1,-1,0,32036,0,24502 +128754,0,1,0,-1,-1,0,9342,0,25296 +128755,0,1,0,-1,-1,0,33094,0,25297 +128756,0,1,0,-1,-1,0,14248,0,25298 +128757,0,1,0,-1,-1,0,18049,0,25299 +128758,0,1,0,-1,-1,0,14254,0,25503 +128759,0,1,0,-1,-1,0,15807,0,25504 +128760,0,1,0,-1,-1,0,9343,0,25505 +128761,0,1,0,-1,-1,0,15810,0,25506 +128762,0,1,0,-1,-1,0,15810,0,25507 +128763,0,1,0,-1,-1,0,15714,0,25508 +128764,1,1,0,-1,-1,0,21629,0,25508 +128765,0,0,-1,-1,-1,0,32255,0,25509 +128766,0,1,0,-1,-1,0,9335,0,24063 +128767,0,0,-1,-1,-1,0,45351,0,24157 +128768,0,0,-1,-1,-1,0,483,0,24158 +128769,1,6,0,-1,-1,0,31053,0,24158 +128770,0,0,-1,-1,-1,0,483,0,24159 +128771,1,6,0,-1,-1,0,31054,0,24159 +128772,0,0,-1,-1,-1,0,483,0,24160 +128773,1,6,0,-1,-1,0,31055,0,24160 +128774,0,0,0,30000,30000,24,133,0,24420 +128775,0,0,-1,-1,-1,0,31920,0,24421 +128776,0,1,0,-1,-1,0,14798,0,25300 +128777,0,1,0,-1,-1,0,18052,0,25301 +128778,0,1,0,-1,-1,0,18058,0,25302 +128779,0,1,0,-1,-1,0,33136,0,25303 +128780,0,1,0,-1,-1,0,33022,0,25304 +128781,0,1,0,-1,-1,0,33139,0,25305 +128782,0,1,0,-1,-1,0,18049,0,25510 +128783,0,1,0,-1,-1,0,15714,0,25511 +128784,0,1,0,-1,-1,0,15808,0,25512 +128785,0,1,0,-1,-1,0,15810,0,25513 +128786,0,1,0,-1,-1,0,9346,0,25514 +128787,0,1,0,-1,-1,0,9336,0,25515 +128788,0,1,0,-1,-1,0,28264,0,24069 +128789,0,1,0,-1,-1,0,14798,0,24070 +128790,1,1,0,-1,-1,0,23727,0,24070 +128791,0,0,-1,-1,-1,0,483,0,24161 +128792,1,6,0,-1,-1,0,31056,0,24161 +128793,0,0,-1,-1,-1,0,483,0,24162 +128794,1,6,0,-1,-1,0,31057,0,24162 +128795,0,0,-1,-1,-1,0,483,0,24163 +128796,1,6,0,-1,-1,0,31058,0,24163 +128797,0,0,-1,-1,-1,0,483,0,24164 +128798,1,6,0,-1,-1,0,31060,0,24164 +128799,0,0,-1,-1,-1,0,31613,0,24335 +128800,0,0,0,-1,-1,0,32038,0,24428 +128801,0,1,0,-1,-1,0,33140,0,25306 +128802,0,1,0,-1,-1,0,33141,0,25307 +128803,0,1,0,-1,-1,0,33138,0,25308 +128804,0,1,0,-1,-1,0,28693,0,25309 +128805,0,1,0,-1,-1,0,9314,0,25310 +128806,0,1,0,-1,-1,0,33103,0,25311 +128807,0,1,0,-1,-1,0,14254,0,25516 +128808,0,1,0,0,-1,0,18029,0,25517 +128809,1,1,0,-1,-1,0,21627,0,25517 +128810,0,1,0,-1,-1,0,18049,0,25518 +128811,0,1,0,-1,-1,0,14027,0,25519 +128812,0,0,-1,1000,-1,0,32282,0,25521 +128813,0,0,-1,0,1000,11,434,0,24072 +128814,0,1,0,-1,-1,0,14089,0,24073 +128815,0,1,0,0,0,0,9333,0,24074 +128816,0,1,0,0,0,0,14254,0,24075 +128817,0,1,0,0,0,0,18037,0,24076 +128818,0,0,-1,-1,-1,0,483,0,24165 +128819,1,6,0,-1,-1,0,31061,0,24165 +128820,0,0,-1,-1,-1,0,483,0,24166 +128821,1,6,0,-1,-1,0,31067,0,24166 +128822,0,0,-1,-1,-1,0,483,0,24167 +128823,1,6,0,-1,-1,0,31068,0,24167 +128824,0,0,-1,-1,-1,0,483,0,24168 +128825,1,6,0,-1,-1,0,31070,0,24168 +128826,0,1,0,-1,-1,0,14798,0,24250 +128827,0,0,0,-1,-1,0,31614,0,24337 +128828,0,0,-1,0,1000,11,1131,0,24338 +128829,0,0,-1,3600000,3600000,0,32027,0,24429 +128830,0,0,-1,1500,-1,0,32098,0,24520 +128831,0,0,-1,1500,-1,0,32096,0,24522 +128832,0,1,0,-1,-1,0,33148,0,25312 +128833,0,1,0,-1,-1,0,33149,0,25313 +128834,0,1,0,-1,-1,0,33163,0,25314 +128835,0,1,0,-1,-1,0,18040,0,25315 +128836,0,1,0,-1,-1,0,18047,0,25316 +128837,0,1,0,-1,-1,0,33164,0,25317 +128838,0,1,0,-1,-1,0,14799,0,25523 +128839,0,1,0,-1,-1,0,14799,0,25524 +128840,0,1,0,-1,-1,0,14799,0,25525 +128841,0,0,-1,-1,-1,0,483,0,25526 +128842,1,6,0,-1,-1,0,32285,0,25526 +128843,0,0,0,-1,3000,330,32289,0,25527 +128844,0,1,0,0,0,0,18009,0,24079 +128845,1,1,0,-1,-1,0,21628,0,24079 +128846,0,1,0,0,0,0,17892,0,24080 +128847,1,1,0,-1,-1,0,21628,0,24080 +128848,0,1,0,0,0,0,17868,0,24082 +128849,1,1,0,-1,-1,0,21628,0,24082 +128850,0,1,0,-1,-1,0,17371,0,24083 +128851,0,0,-1,-1,-1,0,483,0,24169 +128852,1,6,0,-1,-1,0,31071,0,24169 +128853,0,0,-1,-1,-1,0,483,0,24170 +128854,1,6,0,-1,-1,0,31072,0,24170 +128855,0,0,-1,-1,-1,0,483,0,24171 +128856,1,6,0,-1,-1,0,31076,0,24171 +128857,0,0,-1,-1,-1,0,483,0,24172 +128858,1,6,0,-1,-1,0,31077,0,24172 +128859,0,0,-1,-1,-1,0,483,0,24173 +128860,1,6,0,-1,-1,0,31078,0,24173 +128861,0,1,0,-1,-1,0,21363,0,24251 +128862,0,1,0,-1,-1,0,14055,0,24252 +128863,0,1,0,-1,-1,0,18038,0,24254 +128864,1,1,0,-1,-1,0,21364,0,24254 +128865,0,1,0,-1,-1,0,17367,0,24255 +128866,0,1,0,-1,-1,0,18055,0,24256 +128867,0,0,-1,-1,-1,0,483,0,24345 +128868,1,6,0,-1,-1,0,31709,0,24345 +128869,0,1,0,-1,-1,0,21607,0,24525 +128870,1,1,0,-1,-1,0,13665,0,24525 +128871,0,1,0,-1,-1,0,7597,0,24526 +128872,1,1,0,-1,-1,0,15464,0,24526 +128873,0,1,0,-1,-1,0,14803,0,24529 +128874,1,1,0,-1,-1,0,7597,0,24529 +128875,0,1,0,-1,-1,0,33030,0,25318 +128876,0,1,0,-1,-1,0,33165,0,25319 +128877,0,1,0,-1,-1,0,33166,0,25320 +128878,0,1,0,-1,-1,0,33168,0,25321 +128879,0,1,0,-1,-1,0,33169,0,25322 +128880,0,1,0,-1,-1,0,33170,0,25323 +128881,0,0,0,-1,3000,330,32290,0,25528 +128882,0,0,0,-1,3000,330,32292,0,25529 +128883,0,1,0,-1,-1,0,14254,0,25530 +128884,0,0,0,-1,3000,330,32295,0,25531 +128885,0,0,0,-1,3000,330,32296,0,25532 +128886,0,0,0,-1,3000,330,32297,0,25533 +128887,0,0,-1,-1,-1,0,30988,0,24084 +128888,0,1,0,0,0,0,17990,0,24085 +128889,1,1,0,-1,-1,0,21628,0,24085 +128890,0,1,0,0,0,0,17824,0,24086 +128891,1,1,0,-1,-1,0,21628,0,24086 +128892,0,1,0,0,0,0,21629,0,24089 +128893,0,0,-1,-1,-1,0,483,0,24174 +128894,1,6,0,-1,-1,0,31062,0,24174 +128895,0,0,-1,-1,-1,0,483,0,24175 +128896,1,6,0,-1,-1,0,31063,0,24175 +128897,0,0,-1,-1,-1,0,483,0,24176 +128898,1,6,0,-1,-1,0,31064,0,24176 +128899,0,0,-1,-1,-1,0,483,0,24177 +128900,1,6,0,-1,-1,0,31065,0,24177 +128901,0,1,0,-1,-1,0,21366,0,24257 +128902,0,1,0,-1,-1,0,15812,0,24259 +128903,0,1,0,-1,-1,0,21630,0,24260 +128904,0,1,0,-1,-1,0,18039,0,24261 +128905,1,1,0,-1,-1,0,21366,0,24261 +128906,0,1,0,-1,-1,0,28264,0,24262 +128907,0,1,0,-1,-1,0,28264,0,24263 +128908,0,1,0,-1,-1,0,9137,0,24349 +128909,0,1,0,-1,-1,0,9139,0,24352 +128910,0,1,0,-1,-1,0,9394,0,24354 +128911,0,0,0,5000,5000,0,31736,0,24355 +128912,0,0,-1,2000,-1,0,31958,0,24538 +128913,0,1,0,-1,-1,0,33035,0,25324 +128914,0,1,0,-1,-1,0,44888,0,25325 +128915,0,1,0,-1,-1,0,33037,0,25326 +128916,0,1,0,-1,-1,0,44889,0,25327 +128917,0,1,0,-1,-1,0,44890,0,25328 +128918,0,1,0,-1,-1,0,44891,0,25329 +128919,0,1,0,-1,-1,0,15806,0,25534 +128920,0,0,0,1500,-1,0,32298,0,25535 +128921,0,1,0,-1,-1,0,33124,0,25536 +128922,0,1,0,-1,-1,0,14027,0,25538 +128923,0,0,-3,-1,-1,0,22807,0,25539 +128924,0,1,0,-1,-1,0,9334,0,24090 +128925,0,0,10,3600000,0,0,30997,0,24092 +128926,0,0,10,3600000,0,0,30994,0,24093 +128927,0,1,0,-1,-1,0,9417,0,24094 +128928,1,1,0,-1,-1,0,21619,0,24094 +128929,0,0,-1,-1,-1,0,483,0,24178 +128930,1,6,0,-1,-1,0,31066,0,24178 +128931,0,0,-1,-1,-1,0,483,0,24179 +128932,1,6,0,-1,-1,0,31079,0,24179 +128933,0,0,-1,-1,-1,0,483,0,24180 +128934,1,6,0,-1,-1,0,31080,0,24180 +128935,0,0,-1,-1,-1,0,483,0,24181 +128936,1,6,0,-1,-1,0,31081,0,24181 +128937,0,1,0,-1,-1,0,18047,0,24264 +128938,1,1,0,-1,-1,0,21366,0,24264 +128939,0,1,0,-1,-1,0,28264,0,24266 +128940,0,1,0,-1,-1,0,17280,0,24267 +128941,0,0,-1,0,60000,24,31367,0,24268 +128942,0,0,-1,0,60000,24,31368,0,24269 +128943,0,1,0,-1,-1,0,9335,0,24356 +128944,0,1,0,-1,-1,0,9346,0,24357 +128945,1,1,0,-1,-1,0,21626,0,24357 +128946,0,1,0,-1,-1,0,18050,0,24359 +128947,0,1,0,-1,-1,0,15809,0,24360 +128948,0,1,0,-1,-1,0,23732,0,24361 +128949,0,1,0,-1,-1,0,9345,0,24450 +128950,0,1,0,-1,-1,0,9336,0,24451 +128951,0,1,0,-1,-1,0,15715,0,24452 +128952,0,0,-1,0,1000,11,32112,0,24539 +128953,0,0,-1,0,1000,0,10257,0,24540 +128954,0,0,-1,120000,120000,4,32125,0,24541 +128955,0,1,0,-1,-1,0,44893,0,25330 +128956,0,1,0,-1,-1,0,44896,0,25331 +128957,0,1,0,-1,-1,0,44897,0,25332 +128958,0,1,0,-1,-1,0,44898,0,25333 +128959,0,1,0,-1,-1,0,44900,0,25334 +128960,0,1,0,-1,-1,0,44902,0,25335 +128961,0,1,0,-1,-1,0,14027,0,25639 +128962,0,1,0,-1,-1,0,9343,0,25640 +128963,0,1,0,-1,-1,0,32402,0,25643 +128964,0,1,0,-1,-1,0,32403,0,25644 +128965,0,0,-1,-1,-1,0,483,0,25732 +128966,1,6,0,-1,-1,0,32490,0,25732 +128967,0,0,-1,-1,-1,0,483,0,25733 +128968,1,6,0,-1,-1,0,32493,0,25733 +128969,0,0,-1,-1,-1,0,483,0,25734 +128970,1,6,0,-1,-1,0,32494,0,25734 +128971,0,0,-1,-1,-1,0,483,0,25735 +128972,1,6,0,-1,-1,0,32495,0,25735 +128973,0,0,-1,-1,-1,0,483,0,25736 +128974,1,6,0,-1,-1,0,32496,0,25736 +128975,0,1,0,-1,-1,0,9332,0,25823 +128976,0,1,0,-1,-1,0,9346,0,25824 +128977,0,1,0,-1,-1,0,9332,0,25825 +128978,0,1,0,-1,-1,0,9346,0,25826 +128979,0,0,0,300000,-1,0,32641,0,25827 +128980,0,1,0,90000,-1,0,32642,0,25828 +128981,0,1,0,-1,-1,0,9416,0,25915 +128982,0,1,0,-1,-1,0,9331,0,25916 +128983,0,1,0,-1,-1,0,33275,0,25917 +128984,0,1,0,-1,-1,0,33136,0,26777 +128985,0,1,0,-1,-1,0,33022,0,26778 +128986,0,1,0,-1,-1,0,33139,0,26779 +128987,0,1,0,-1,-1,0,33140,0,26780 +128988,0,1,0,-1,-1,0,33141,0,26781 +128989,0,1,0,-1,-1,0,33138,0,26782 +128990,0,1,0,-1,-1,0,32401,0,25645 +128991,0,0,-1,-1,-1,0,32384,0,25648 +128992,0,0,-1,1000,-1,0,32397,0,25650 +128993,0,0,-1,-1,-1,0,483,0,25737 +128994,1,6,0,-1,-1,0,32497,0,25737 +128995,0,0,-1,-1,-1,0,483,0,25738 +128996,1,6,0,-1,-1,0,32498,0,25738 +128997,0,0,-1,-1,-1,0,483,0,25739 +128998,1,6,0,-1,-1,0,32499,0,25739 +128999,0,0,-1,-1,-1,0,483,0,25740 +129000,1,6,0,-1,-1,0,32500,0,25740 +129001,0,0,0,120000,120000,1155,33828,0,25829 +129002,0,1,0,-1,-1,0,14089,0,25830 +129003,0,1,0,-1,-1,0,9336,0,25831 +129004,0,1,0,-1,-1,0,9330,0,25832 +129005,0,1,0,-1,-1,0,15809,0,25833 +129006,0,1,0,-1,-1,0,9336,0,25834 +129007,1,1,0,-1,-1,0,32748,0,25834 +129008,0,1,0,-1,-1,0,15819,0,25835 +129009,1,1,0,-1,-1,0,23990,0,25835 +129010,0,1,0,-1,-1,0,9417,0,25920 +129011,0,1,0,-1,-1,0,9344,0,25921 +129012,1,1,0,-1,-1,0,21363,0,25921 +129013,0,1,0,-1,-1,0,9343,0,25923 +129014,0,1,0,-1,-1,0,9343,0,25924 +129015,0,1,0,-1,-1,0,9416,0,25925 +129016,0,1,0,-1,-1,0,9138,0,26019 +129017,0,0,0,-1,-1,0,28693,0,26783 +129018,0,1,0,-1,-1,0,9314,0,26784 +129019,0,1,0,-1,-1,0,33103,0,26785 +129020,0,1,0,-1,-1,0,33148,0,26786 +129021,0,1,0,-1,-1,0,33149,0,26787 +129022,0,1,0,-1,-1,0,33163,0,26788 +129023,0,0,-1,1000,-1,0,32398,0,25651 +129024,0,0,-1,1000,-1,0,32399,0,25652 +129025,0,1,0,0,0,0,48776,0,25653 +129026,0,1,0,-1,-1,0,14049,0,25654 +129027,0,1,0,-1,-1,0,15810,0,25655 +129028,0,1,0,-1,-1,0,14052,0,25656 +129029,0,0,-1,-1,-1,0,483,0,25741 +129030,1,6,0,-1,-1,0,32501,0,25741 +129031,0,0,-1,-1,-1,0,483,0,25742 +129032,1,6,0,-1,-1,0,32502,0,25742 +129033,0,0,-1,-1,-1,0,483,0,25743 +129034,1,6,0,-1,-1,0,32503,0,25743 +129035,0,1,0,-1,-1,0,37083,0,25836 +129036,1,1,0,-1,-1,0,21363,0,25836 +129037,0,0,-1,-1,-1,0,32646,0,25840 +129038,0,1,0,-1,-1,0,9334,0,25927 +129039,0,1,0,-1,-1,0,21620,0,25928 +129040,1,1,0,-1,-1,0,9317,0,25928 +129041,0,1,0,-1,-1,0,14799,0,25929 +129042,0,1,0,-1,-1,0,15806,0,25930 +129043,0,1,0,-1,-1,0,14799,0,25931 +129044,0,1,0,-1,-1,0,9137,0,26025 +129045,0,1,0,-1,-1,0,18040,0,26789 +129046,0,1,0,-1,-1,0,18047,0,26790 +129047,0,1,0,-1,-1,0,33164,0,26791 +129048,0,1,0,-1,-1,0,33030,0,26792 +129049,0,1,0,-1,-1,0,33165,0,26793 +129050,0,1,0,-1,-1,0,33166,0,26794 +129051,0,1,0,-1,-1,0,15821,0,25657 +129052,0,0,0,0,60000,1164,32408,0,25658 +129053,0,1,0,-1,-1,0,15714,0,25659 +129054,1,1,0,-1,-1,0,18378,0,25659 +129055,0,1,0,-1,-1,0,13881,0,25660 +129056,1,1,0,-1,-1,0,20959,0,25660 +129057,0,1,0,-1,-1,0,14799,0,25661 +129058,1,1,0,-1,-1,0,21364,0,25661 +129059,0,1,0,-1,-1,0,14047,0,25662 +129060,1,1,0,-1,-1,0,21629,0,25662 +129061,0,0,-1,-1,-1,0,32574,0,25747 +129062,0,0,-1,-1,-1,0,32575,0,25748 +129063,0,0,-1,-1,-1,0,32576,0,25749 +129064,0,0,-1,-1,-1,0,32577,0,25750 +129065,0,1,0,-1,-1,0,18058,0,25935 +129066,0,0,0,90000,15000,1141,39201,0,25936 +129067,0,0,0,90000,15000,1141,39200,0,25937 +129068,0,1,0,-1,-1,0,9139,0,26026 +129069,0,1,0,-1,-1,0,33168,0,26795 +129070,0,1,0,-1,-1,0,33169,0,26796 +129071,0,1,0,-1,-1,0,33170,0,26797 +129072,0,1,0,-1,-1,0,33035,0,26798 +129073,0,1,0,-1,-1,0,33115,0,26799 +129074,0,1,0,-1,-1,0,33176,0,26800 +129075,0,0,0,-1,3000,330,32420,0,25664 +129076,0,1,0,-1,-1,0,32410,0,25667 +129077,0,1,0,-1,-1,0,14089,0,25668 +129078,0,0,-1,-1,-1,0,483,0,25846 +129079,1,6,0,-1,-1,0,32656,0,25846 +129080,0,0,-1,-1,-1,0,483,0,25847 +129081,1,6,0,-1,-1,0,32657,0,25847 +129082,0,0,-1,-1,-1,0,483,0,25848 +129083,1,6,0,-1,-1,0,32665,0,25848 +129084,0,0,-1,-1,-1,0,483,0,25849 +129085,1,6,0,-1,-1,0,32667,0,25849 +129086,0,1,0,0,0,0,9416,0,25939 +129087,0,1,0,-1,-1,0,34323,0,25940 +129088,0,1,0,-1,-1,0,15810,0,25941 +129089,1,1,0,-1,-1,0,21361,0,25942 +129090,0,1,0,-1,-1,0,9335,0,25943 +129091,0,1,0,-1,-1,0,9136,0,26034 +129092,0,1,0,-1,-1,0,33177,0,26801 +129093,0,1,0,-1,-1,0,33178,0,26802 +129094,0,1,0,-1,-1,0,33179,0,26803 +129095,0,1,0,-1,-1,0,33180,0,26804 +129096,0,1,0,-1,-1,0,33181,0,26805 +129097,0,1,0,-1,-1,0,33039,0,26806 +129098,0,1,0,-1,-1,0,9336,0,25669 +129099,0,1,0,-1,-1,0,15811,0,25670 +129100,0,1,0,-1,-1,0,15812,0,25671 +129101,0,1,0,-1,-1,0,9342,0,25673 +129102,0,1,0,-1,-1,0,9343,0,25674 +129103,0,1,0,-1,-1,0,21620,0,25759 +129104,1,1,0,-1,-1,0,33328,0,25759 +129105,0,1,0,-1,-1,0,28687,0,25760 +129106,0,1,0,-1,-1,0,44903,0,25761 +129107,0,0,0,1000,-1,0,32744,0,25853 +129108,0,1,0,-1,-1,0,17367,0,25854 +129109,0,1,0,-1,-1,0,18054,0,25855 +129110,0,1,0,-1,-1,0,17367,0,25856 +129111,0,1,0,-1,-1,0,33066,0,25857 +129112,1,1,0,-1,-1,0,17367,0,25857 +129113,0,1,0,-1,-1,0,21619,0,25945 +129114,1,1,0,-1,-1,0,18029,0,25945 +129115,0,1,0,-1,-1,0,15810,0,25946 +129116,0,1,0,-1,-1,0,21363,0,25947 +129117,1,1,0,-1,-1,0,15714,0,25947 +129118,0,1,0,-1,-1,0,14248,0,25948 +129119,1,1,0,-1,-1,0,21364,0,25948 +129120,0,1,0,-1,-1,0,14248,0,25949 +129121,0,1,0,-1,-1,0,33183,0,26807 +129122,0,1,0,-1,-1,0,33184,0,26808 +129123,0,1,0,-1,-1,0,33185,0,26809 +129124,0,1,0,-1,-1,0,33187,0,26810 +129125,0,1,0,-1,-1,0,33188,0,26811 +129126,0,1,0,-1,-1,0,14248,0,25675 +129127,0,1,0,-1,-1,0,15714,0,25676 +129128,0,0,-1,1000,-1,0,32426,0,25679 +129129,0,1,0,-1,-1,0,9334,0,25763 +129130,0,1,0,-1,-1,0,9334,0,25764 +129131,0,1,0,-1,-1,0,18058,0,25858 +129132,0,1,0,-1,-1,0,33236,0,25950 +129133,0,1,0,-1,-1,0,14089,0,25951 +129134,0,1,0,0,-1,0,14248,0,25954 +129135,0,1,0,-1,-1,0,33484,0,25681 +129136,1,1,0,-1,-1,0,23212,0,25681 +129137,0,1,0,-1,-1,0,21632,0,25682 +129138,1,1,0,-1,-1,0,14254,0,25682 +129139,0,1,0,-1,-1,0,33485,0,25683 +129140,0,0,-1,-1,-1,0,32446,0,25684 +129141,0,1,0,-1,-1,0,14089,0,25685 +129142,0,1,0,-1,-1,0,14089,0,25686 +129143,0,0,-1,-1,-1,0,33531,0,25770 +129144,0,0,-1,-1,-1,0,33532,0,25771 +129145,0,1,0,0,-1,0,9334,0,25773 +129146,0,0,-1,-1,-1,0,483,0,25869 +129147,1,6,0,-1,-1,0,32765,0,25869 +129148,0,0,-1,-1,-1,0,483,0,25870 +129149,1,6,0,-1,-1,0,32766,0,25870 +129150,0,1,0,-1,-1,0,9346,0,25955 +129151,0,1,0,-1,-1,0,18049,0,25957 +129152,0,1,0,-1,-1,0,9334,0,25959 +129153,0,1,0,-1,-1,0,9334,0,25960 +129154,0,1,0,-1,-1,0,15812,0,25687 +129155,0,1,0,-1,-1,0,13881,0,25692 +129156,1,1,0,-1,-1,0,20959,0,25692 +129157,0,1,0,-1,-1,0,14248,0,25693 +129158,1,1,0,-1,-1,0,21628,0,25693 +129159,0,1,0,-1,-1,0,26461,0,25774 +129160,0,1,0,0,-1,0,18030,0,25776 +129161,0,1,0,-1,-1,0,14799,0,25777 +129162,0,1,0,-1,-1,0,9345,0,25778 +129163,0,1,0,-1,-1,0,14089,0,25779 +129164,0,1,0,-1,-1,0,9344,0,25961 +129165,0,1,0,0,0,0,15807,0,25962 +129166,0,1,0,0,-1,0,9332,0,25965 +129167,0,1,0,-1,-1,0,9314,0,25966 +129168,0,1,0,1800000,0,0,18050,0,26055 +129169,1,0,0,120000,-1,0,33012,0,26055 +129170,0,1,0,-1,-1,0,14248,0,25694 +129171,1,1,0,-1,-1,0,21631,0,25694 +129172,0,1,0,-1,-1,0,14056,0,25695 +129173,0,1,0,-1,-1,0,15812,0,25696 +129174,0,1,0,-1,-1,0,15808,0,25697 +129175,0,1,0,-1,-1,0,15810,0,25782 +129176,0,1,0,-1,-1,0,18049,0,25783 +129177,0,1,0,-1,-1,0,9342,0,25785 +129178,0,0,0,300000,0,0,32599,0,25786 +129179,0,0,-1,0,120000,1153,32802,0,25880 +129180,0,0,-1,0,120000,1153,32803,0,25881 +129181,0,0,-1,0,120000,1153,32804,0,25882 +129182,0,0,-1,0,120000,1153,32805,0,25883 +129183,0,1,0,-1,-1,0,15809,0,25968 +129184,0,1,0,-1,-1,0,9346,0,25970 +129185,0,1,0,-1,-1,0,9141,0,25971 +129186,0,1,0,-1,-1,0,14027,0,25601 +129187,0,0,-1,-1,-1,0,32347,0,25604 +129188,0,1,0,-1,-1,0,14254,0,25606 +129189,0,1,0,-1,-1,0,14254,0,25607 +129190,0,1,0,-1,-1,0,14054,0,25701 +129191,0,1,0,-1,-1,0,14054,0,25702 +129192,0,0,0,90000,-1,0,32600,0,25787 +129193,0,1,0,-1,-1,0,35075,0,25788 +129194,0,1,0,-1,-1,0,14056,0,25789 +129195,0,1,0,-1,-1,0,14056,0,25790 +129196,0,1,0,-1,-1,0,15696,0,25791 +129197,0,1,0,-1,-1,0,15696,0,25792 +129198,0,0,-1,0,120000,1153,32806,0,25884 +129199,0,1,0,-1,-1,0,15714,0,25885 +129200,0,0,-1,0,5000,1168,32812,0,25886 +129201,0,0,-1,-1,-1,0,483,0,25887 +129202,1,6,0,-1,-1,0,32814,0,25887 +129203,0,0,-1,-1,-1,0,483,0,25888 +129204,1,6,0,-1,-1,0,32810,0,25888 +129205,0,1,0,0,-1,0,9397,0,25973 +129206,1,1,0,-1,-1,0,21623,0,25973 +129207,0,1,0,0,0,0,14054,0,25974 +129208,0,1,0,0,0,0,15811,0,25976 +129209,0,1,0,-1,-1,0,7826,0,25978 +129210,0,1,0,-1,-1,0,9345,0,25611 +129211,0,1,0,-1,-1,0,15806,0,25612 +129212,0,1,0,-1,-1,0,14799,0,25613 +129213,0,1,0,0,0,0,14047,0,25710 +129214,0,1,0,-1,-1,0,14054,0,25711 +129215,0,1,0,-1,-1,0,18033,0,25793 +129216,0,1,0,-1,-1,0,15809,0,25794 +129217,0,1,0,-1,-1,0,18033,0,25795 +129218,0,1,0,-1,-1,0,15809,0,25796 +129219,0,1,0,-1,-1,0,28325,0,25797 +129220,0,1,0,-1,-1,0,15826,0,25798 +129221,1,0,0,120000,20000,1141,32604,0,25798 +129222,0,0,0,10000,-1,0,32834,0,25889 +129223,0,1,0,-1,-1,0,15715,0,25981 +129224,0,1,0,-1,-1,0,9346,0,25982 +129225,0,1,0,-1,-1,0,15807,0,25983 +129226,0,1,0,-1,-1,0,15809,0,25614 +129227,0,1,0,-1,-1,0,15811,0,25616 +129228,0,1,0,-1,-1,0,15807,0,25617 +129229,0,1,0,-1,-1,0,9336,0,25712 +129230,0,1,0,-1,-1,0,9318,0,25713 +129231,1,1,0,-1,-1,0,18379,0,25713 +129232,0,1,0,-1,-1,0,18379,0,25714 +129233,1,1,0,-1,-1,0,9346,0,25714 +129234,0,1,0,-1,-1,0,15808,0,25716 +129235,0,1,0,-1,-1,0,15808,0,25717 +129236,0,1,0,-1,-1,0,18057,0,25800 +129237,0,1,0,-1,-1,0,24196,0,25801 +129238,1,0,0,120000,20000,1141,32607,0,25801 +129239,0,1,0,-1,-1,0,15806,0,25804 +129240,0,1,0,-1,-1,0,14798,0,25985 +129241,0,1,0,-1,-1,0,9317,0,25988 +129242,0,1,0,-1,-1,0,9345,0,25989 +129243,0,1,0,-1,-1,0,9335,0,25990 +129244,0,1,0,-1,-1,0,18049,0,25619 +129245,1,0,0,120000,20000,1141,32355,0,25619 +129246,0,1,0,-1,-1,0,18049,0,25620 +129247,1,0,0,120000,20000,1141,32355,0,25620 +129248,0,1,0,-1,-1,0,44896,0,25622 +129249,0,1,0,-1,-1,0,21363,0,25623 +129250,0,1,0,-1,-1,0,33181,0,25625 +129251,0,1,0,-1,-1,0,14254,0,25718 +129252,0,0,-1,-1,-1,0,483,0,25720 +129253,1,6,0,-1,-1,0,32455,0,25720 +129254,0,0,-1,-1,-1,0,483,0,25721 +129255,1,6,0,-1,-1,0,32457,0,25721 +129256,0,0,-1,-1,-1,0,483,0,25722 +129257,1,6,0,-1,-1,0,32458,0,25722 +129258,0,1,0,-1,-1,0,21364,0,25805 +129259,1,1,0,-1,-1,0,18031,0,25805 +129260,0,1,0,-1,-1,0,9416,0,25806 +129261,0,1,0,-1,-1,0,9416,0,25808 +129262,0,1,0,-1,-1,0,21364,0,25810 +129263,1,1,0,-1,-1,0,18031,0,25810 +129264,0,0,-1,-1,-1,0,32852,0,25900 +129265,0,0,-1,-1,-1,0,483,0,25902 +129266,1,6,0,-1,-1,0,32866,0,25902 +129267,0,0,-1,-1,-1,0,483,0,25903 +129268,1,6,0,-1,-1,0,32867,0,25903 +129269,0,1,0,-1,-1,0,9335,0,25993 +129270,0,0,0,120000,20000,1141,32955,0,25994 +129271,0,0,0,120000,20000,1141,32956,0,25995 +129272,0,0,0,120000,20000,1141,32957,0,25996 +129273,0,1,0,-1,-1,0,21363,0,25626 +129274,0,1,0,-1,-1,0,9333,0,25628 +129275,1,0,0,120000,15000,1141,32362,0,25628 +129276,0,1,0,-1,-1,0,9406,0,25629 +129277,0,1,0,-1,-1,0,14248,0,25630 +129278,0,1,0,-1,-1,0,14248,0,25631 +129279,0,0,-1,-1,-1,0,483,0,25725 +129280,1,6,0,-1,-1,0,32461,0,25725 +129281,0,0,-1,-1,-1,0,483,0,25726 +129282,1,6,0,-1,-1,0,32482,0,25726 +129283,0,1,0,-1,-1,0,15806,0,25811 +129284,0,0,-1,-1,-1,0,483,0,25904 +129285,1,6,0,-1,-1,0,32870,0,25904 +129286,0,0,-1,-1,-1,0,483,0,25905 +129287,1,6,0,-1,-1,0,32868,0,25905 +129288,0,0,-1,-1,-1,0,483,0,25906 +129289,1,6,0,-1,-1,0,32869,0,25906 +129290,0,0,-1,-1,-1,0,483,0,25907 +129291,1,6,0,-1,-1,0,32871,0,25907 +129292,0,0,-1,-1,-1,0,483,0,25908 +129293,1,6,0,-1,-1,0,32873,0,25908 +129294,0,1,0,-1,-1,0,21630,0,25997 +129295,0,1,0,-1,-1,0,21363,0,25999 +129296,0,1,0,-1,-1,0,33020,0,26000 +129297,0,1,0,-1,-1,0,9342,0,26770 +129298,0,1,0,-1,-1,0,9406,0,25632 +129299,0,1,0,-1,-1,0,9333,0,25633 +129300,1,0,0,120000,15000,1141,32362,0,25633 +129301,0,1,0,-1,-1,0,15696,0,25634 +129302,1,0,0,120000,0,0,32367,0,25634 +129303,0,1,0,-1,-1,0,9335,0,25636 +129304,0,1,0,-1,-1,0,9344,0,25637 +129305,0,0,-1,-1,-1,0,483,0,25728 +129306,1,6,0,-1,-1,0,32485,0,25728 +129307,0,0,-1,-1,-1,0,483,0,25729 +129308,1,6,0,-1,-1,0,32487,0,25729 +129309,0,0,-1,-1,-1,0,483,0,25730 +129310,1,6,0,-1,-1,0,32489,0,25730 +129311,0,0,-1,-1,-1,0,483,0,25731 +129312,1,6,0,-1,-1,0,32488,0,25731 +129313,0,0,-5,5000,5000,0,32633,0,25817 +129314,0,1,0,-1,-1,0,18042,0,25820 +129315,1,1,0,-1,-1,0,21636,0,25820 +129316,0,1,0,-1,-1,0,15816,0,25821 +129317,0,1,0,-1,-1,0,18042,0,25822 +129318,0,0,-1,-1,-1,0,483,0,25909 +129319,1,6,0,-1,-1,0,32872,0,25909 +129320,0,0,-1,-1,-1,0,483,0,25910 +129321,1,6,0,-1,-1,0,32874,0,25910 +129322,0,1,0,-1,-1,0,9344,0,25913 +129323,1,1,0,-1,-1,0,21363,0,25913 +129324,0,0,0,-1,-1,0,32979,0,26002 +129325,0,1,0,-1,-1,0,33094,0,26771 +129326,0,1,0,-1,-1,0,14248,0,26772 +129327,0,1,0,-1,-1,0,18049,0,26773 +129328,0,1,0,-1,-1,0,14798,0,26774 +129329,0,1,0,-1,-1,0,18052,0,26775 +129330,0,1,0,-1,-1,0,18058,0,26776 +129331,0,2,0,-1,-1,0,34199,0,28367 +129332,0,0,0,5000,-1,0,34219,0,28369 +129333,0,1,0,-1,-1,0,38334,0,28370 +129334,1,0,0,120000,-1,0,34210,0,28370 +129335,0,1,0,-1,-1,0,9336,0,28450 +129336,0,1,0,-1,-1,0,9329,0,28451 +129337,0,0,-1,-1,-1,0,34367,0,28452 +129338,0,1,0,-1,-1,0,18049,0,28453 +129339,0,1,0,-1,-1,0,15810,0,28454 +129340,0,1,0,-1,-1,0,15811,0,27430 +129341,1,1,0,-1,-1,0,21362,0,27430 +129342,0,1,0,-1,-1,0,28687,0,27431 +129343,0,1,0,-1,-1,0,18029,0,27433 +129344,0,1,0,-1,-1,0,9331,0,27434 +129345,0,1,0,-1,-1,0,14248,0,27517 +129346,1,1,0,-1,-1,0,28869,0,27517 +129347,0,1,0,-1,-1,0,34292,0,27518 +129348,0,1,0,-1,-1,0,15808,0,27519 +129349,0,1,0,-1,-1,0,14056,0,27521 +129350,1,1,0,-1,-1,0,21627,0,27521 +129351,0,0,-1,-1,-1,0,483,0,27689 +129352,1,6,0,-1,-1,0,33285,0,27689 +129353,0,0,-1,-1,-1,0,483,0,27690 +129354,1,6,0,-1,-1,0,33286,0,27690 +129355,0,0,-1,-1,-1,0,483,0,27691 +129356,1,6,0,-1,-1,0,33287,0,27691 +129357,0,0,-1,-1,-1,0,483,0,27692 +129358,1,6,0,-1,-1,0,33288,0,27692 +129359,0,0,-1,-1,-1,0,483,0,27693 +129360,1,6,0,-1,-1,0,33289,0,27693 +129361,0,1,0,-1,-1,0,13881,0,27778 +129362,0,1,0,-1,-1,0,14089,0,27779 +129363,0,1,0,0,0,0,18038,0,27780 +129364,0,1,0,-1,-1,0,18053,0,27781 +129365,0,0,-1,0,1000,11,27094,0,27859 +129366,0,0,-1,0,1000,59,27089,0,27860 +129367,0,1,0,0,-1,0,9343,0,27942 +129368,1,1,0,-1,-1,0,21361,0,27942 +129369,0,1,0,-1,-1,0,21363,0,27946 +129370,1,1,0,-1,-1,0,18032,0,27946 +129371,0,1,0,-1,-1,0,9342,0,28027 +129372,1,1,0,-1,-1,0,21619,0,28027 +129373,0,1,0,-1,-1,0,9342,0,28028 +129374,0,1,0,-1,-1,0,9316,0,28029 +129375,0,1,0,-1,-1,0,9345,0,28030 +129376,0,1,0,-1,-1,0,9335,0,28032 +129377,0,0,0,120000,20000,1141,34106,0,28121 +129378,0,0,0,10000,10000,0,33980,0,28209 +129379,0,1,0,0,-1,0,9332,0,28210 +129380,0,0,-1,-1,-1,0,483,0,28281 +129381,1,6,0,-1,-1,0,34010,0,28281 +129382,0,0,-1,-1,-1,0,483,0,28282 +129383,1,6,0,-1,-1,0,34009,0,28282 +129384,0,0,0,-1,-1,0,34063,0,28283 +129385,0,0,-1,0,1000,59,11009,0,28284 +129386,0,1,0,-1,-1,0,34241,0,28372 +129387,0,1,0,-1,-1,0,18032,0,28373 +129388,0,1,0,-1,-1,0,13881,0,28374 +129389,0,0,0,120000,-1,0,34372,0,28455 +129390,0,1,0,0,-1,0,9315,0,27440 +129391,0,1,0,-1,-1,0,15714,0,27522 +129392,0,1,0,0,0,0,15715,0,27523 +129393,0,1,0,-1,-1,0,18036,0,27525 +129394,1,1,0,-1,-1,0,21627,0,27525 +129395,0,1,0,-1,-1,0,9334,0,27526 +129396,0,0,-1,-1,-1,0,483,0,27694 +129397,1,6,0,-1,-1,0,33290,0,27694 +129398,0,0,-1,-1,-1,0,483,0,27695 +129399,1,6,0,-1,-1,0,33291,0,27695 +129400,0,0,-1,-1,-1,0,483,0,27696 +129401,1,6,0,-1,-1,0,33292,0,27696 +129402,0,0,-1,-1,-1,0,483,0,27697 +129403,1,6,0,-1,-1,0,33293,0,27697 +129404,0,0,-1,-1,-1,0,483,0,27698 +129405,1,6,0,-1,-1,0,33294,0,27698 +129406,0,1,0,-1,-1,0,15715,0,27783 +129407,0,1,0,-1,-1,0,14248,0,27784 +129408,0,1,0,-1,-1,0,9333,0,27865 +129409,1,1,0,-1,-1,0,21363,0,27865 +129410,0,1,0,-1,-1,0,18044,0,27866 +129411,0,1,0,-1,-1,0,15817,0,27867 +129412,0,1,0,-1,-1,0,33250,0,27868 +129413,0,1,0,-1,-1,0,33556,0,27947 +129414,0,1,0,-1,-1,0,18055,0,27948 +129415,0,1,0,-1,-1,0,33557,0,27949 +129416,0,1,0,-1,-1,0,21362,0,27950 +129417,0,1,0,-1,-1,0,21362,0,27951 +129418,0,1,0,-1,-1,0,21619,0,27952 +129419,0,1,0,-1,-1,0,33273,0,28033 +129420,1,1,0,-1,-1,0,21637,0,28033 +129421,0,1,0,-1,-1,0,33648,0,28034 +129422,0,0,0,-1,-1,0,33644,0,28035 +129423,0,0,-1,0,1000,11,27094,0,28036 +129424,0,1,0,-1,-1,0,15806,0,28124 +129425,0,1,0,-1,-1,0,7680,0,28126 +129426,1,1,0,-1,-1,0,33830,0,28126 +129427,0,1,0,-1,-1,0,14047,0,28212 +129428,0,1,0,-1,-1,0,18033,0,28213 +129429,0,1,0,-1,-1,0,14127,0,28214 +129430,0,1,0,-1,-1,0,9336,0,28215 +129431,0,1,0,-1,-1,0,14047,0,28285 +129432,1,1,0,-1,-1,0,21626,0,28285 +129433,0,1,0,-1,-1,0,9335,0,28286 +129434,0,1,0,-1,-1,0,15817,0,28288 +129435,1,0,0,120000,10000,1141,33807,0,28288 +129436,0,0,0,-1,-1,0,34068,0,28289 +129437,0,1,0,-1,-1,0,15808,0,28377 +129438,0,1,0,-1,-1,0,18049,0,28378 +129439,0,1,0,-1,-1,0,18049,0,28379 +129440,0,1,0,-1,-1,0,15808,0,28380 +129441,0,1,0,-1,-1,0,9346,0,28382 +129442,0,0,0,-1,-1,0,32649,0,27357 +129443,0,0,0,1500,-1,0,33050,0,27445 +129444,0,1,0,-1,-1,0,21618,0,27447 +129445,0,1,0,-1,-1,0,15807,0,27528 +129446,0,0,0,120000,0,0,33089,0,27529 +129447,0,1,0,-1,-1,0,9329,0,27531 +129448,0,0,-1,-1,-1,0,483,0,27699 +129449,1,6,0,-1,-1,0,33295,0,27699 +129450,0,0,-1,-1,-1,0,483,0,27700 +129451,1,6,0,-1,-1,0,33296,0,27700 +129452,0,1,0,-1,-1,0,14799,0,27702 +129453,0,1,0,-1,-1,0,14127,0,27703 +129454,1,1,0,-1,-1,0,38522,0,27703 +129455,0,1,0,-1,-1,0,15832,0,27787 +129456,0,1,0,-1,-1,0,21619,0,27789 +129457,1,1,0,-1,-1,0,18031,0,27789 +129458,0,1,0,-1,-1,0,18041,0,27790 +129459,1,1,0,-1,-1,0,21633,0,27790 +129460,0,1,0,-1,-1,0,33273,0,27791 +129461,0,1,0,0,-1,0,33274,0,27792 +129462,0,1,0,-1,-1,0,18036,0,27873 +129463,0,1,0,-1,-1,0,21362,0,27953 +129464,0,1,0,-1,-1,0,21619,0,27954 +129465,0,1,0,-1,-1,0,21619,0,27955 +129466,0,1,0,-1,-1,0,21362,0,27956 +129467,0,1,0,-1,-1,0,21624,0,27957 +129468,0,0,0,10000,-1,0,33655,0,28038 +129469,0,0,0,90000,15000,1141,33662,0,28040 +129470,0,0,0,90000,15000,1141,33667,0,28041 +129471,0,0,0,300000,0,0,33668,0,28042 +129472,0,1,0,-1,-1,0,13675,0,28043 +129473,0,1,0,-1,-1,0,18033,0,28127 +129474,0,1,0,-1,-1,0,9408,0,28128 +129475,0,1,0,-1,-1,0,9316,0,28129 +129476,0,1,0,-1,-1,0,9316,0,28130 +129477,0,0,-1,20000,-1,0,33824,0,28131 +129478,0,0,0,0,5000,1170,33836,0,28132 +129479,0,1,0,0,-1,0,33273,0,28216 +129480,0,1,0,-1,-1,0,18036,0,28218 +129481,0,1,0,-1,-1,0,15814,0,28219 +129482,1,1,0,-1,-1,0,21363,0,28219 +129483,0,1,0,-1,-1,0,18056,0,28220 +129484,0,0,-1,-1,-1,0,483,0,28291 +129485,1,6,0,-1,-1,0,34069,0,28291 +129486,0,1,0,-1,-1,0,21436,0,28294 +129487,0,1,0,-1,-1,0,14056,0,28384 +129488,0,1,0,-1,-1,0,9342,0,28386 +129489,0,1,0,-1,-1,0,18029,0,28387 +129490,1,1,0,-1,-1,0,21627,0,28387 +129491,0,0,-1,0,1000,11,18234,0,28501 +129492,0,1,0,-1,-1,0,34593,0,28502 +129493,0,1,0,-1,-1,0,18033,0,28503 +129494,1,1,0,-1,-1,0,21628,0,28503 +129495,0,1,0,-1,-1,0,9336,0,28504 +129496,0,1,0,-1,-1,0,21363,0,28505 +129497,1,1,0,-1,-1,0,18039,0,28505 +129498,0,1,0,-1,-1,0,21631,0,27448 +129499,1,1,0,-1,-1,0,15696,0,27448 +129500,0,1,0,-1,-1,0,15817,0,27450 +129501,0,1,0,-1,-1,0,18016,0,27451 +129502,0,1,0,-1,-1,0,9316,0,27452 +129503,0,0,-1,-1,-1,0,33100,0,27532 +129504,0,1,0,-1,-1,0,9335,0,27533 +129505,0,1,0,-1,-1,0,14047,0,27534 +129506,0,1,0,-1,-1,0,14248,0,27535 +129507,1,1,0,-1,-1,0,21628,0,27535 +129508,0,1,0,-1,-1,0,18035,0,27536 +129509,0,1,0,-1,-1,0,18050,0,27704 +129510,0,1,0,-1,-1,0,18054,0,27705 +129511,0,1,0,-1,-1,0,14254,0,27706 +129512,0,1,0,-1,-1,0,23044,0,27707 +129513,1,1,0,-1,-1,0,14127,0,27707 +129514,0,1,0,-1,-1,0,17367,0,27708 +129515,0,1,0,-1,-1,0,28360,0,27709 +129516,0,1,0,-1,-1,0,14254,0,27793 +129517,0,1,0,-1,-1,0,15715,0,27795 +129518,0,1,0,-1,-1,0,14799,0,27796 +129519,0,1,0,-1,-1,0,15806,0,27797 +129520,0,1,0,-1,-1,0,15812,0,27874 +129521,1,1,0,-1,-1,0,21628,0,27874 +129522,0,1,0,-1,-1,0,18044,0,27875 +129523,1,1,0,-1,-1,0,21364,0,27875 +129524,0,1,0,0,-1,0,33273,0,27876 +129525,0,1,0,-1,-1,0,44908,0,27877 +129526,0,1,0,-1,-1,0,14089,0,27878 +129527,0,1,0,-1,-1,0,21624,0,27958 +129528,0,1,0,-1,-1,0,21624,0,27959 +129529,0,1,0,-1,-1,0,21624,0,27960 +129530,0,1,0,-1,-1,0,21619,0,27961 +129531,0,1,0,-1,-1,0,21619,0,27962 +129532,0,1,0,-1,-1,0,21630,0,27963 +129533,0,1,0,-1,-1,0,18031,0,28045 +129534,1,1,0,-1,-1,0,21618,0,28045 +129535,0,0,0,-1,-1,0,33715,0,28047 +129536,0,0,0,-1,-1,0,33670,0,28048 +129537,0,1,0,-1,-1,0,15714,0,28134 +129538,0,1,0,-1,-1,0,18054,0,28136 +129539,1,1,0,-1,-1,0,33830,0,28136 +129540,2,1,0,-1,-1,0,21626,0,28136 +129541,0,1,0,-1,-1,0,17280,0,28137 +129542,1,1,0,-1,-1,0,21628,0,28137 +129543,0,1,0,-1,-1,0,33484,0,28138 +129544,1,1,0,-1,-1,0,20959,0,28138 +129545,0,1,0,-1,-1,0,18036,0,28221 +129546,1,1,0,-1,-1,0,21364,0,28221 +129547,0,1,0,-1,-1,0,14056,0,28222 +129548,0,0,0,120000,20000,1141,34000,0,28223 +129549,0,1,0,-1,-1,0,15814,0,28224 +129550,0,1,0,-1,-1,0,9335,0,28295 +129551,0,1,0,-1,-1,0,34231,0,28296 +129552,0,1,0,-1,-1,0,41973,0,28297 +129553,0,1,0,-1,-1,0,15817,0,28298 +129554,0,1,0,-1,-1,0,15820,0,28300 +129555,0,1,0,-1,-1,0,34061,0,28390 +129556,0,1,0,-1,-1,0,18056,0,28391 +129557,0,1,0,-1,-1,0,15807,0,28392 +129558,0,1,0,0,0,0,15808,0,27453 +129559,0,1,0,-1,-1,0,13881,0,27454 +129560,0,1,0,-1,-1,0,21364,0,27456 +129561,1,1,0,-1,-1,0,18045,0,27456 +129562,0,1,0,-1,-1,0,18036,0,27457 +129563,0,1,0,-1,-1,0,18049,0,27537 +129564,0,1,0,0,-1,0,33273,0,27538 +129565,1,1,0,-1,-1,0,18378,0,27538 +129566,0,1,0,-1,-1,0,21364,0,27539 +129567,1,1,0,-1,-1,0,18036,0,27539 +129568,0,1,0,-1,-1,0,9398,0,27540 +129569,0,1,0,-1,-1,0,15815,0,27541 +129570,0,1,0,-1,-1,0,15714,0,27710 +129571,0,1,0,-1,-1,0,17367,0,27711 +129572,0,1,0,-1,-1,0,14049,0,27712 +129573,0,1,0,-1,-1,0,18031,0,27714 +129574,1,1,0,-1,-1,0,18379,0,27714 +129575,0,1,0,-1,-1,0,21364,0,27798 +129576,1,1,0,-1,-1,0,9416,0,27798 +129577,0,1,0,-1,-1,0,18058,0,27799 +129578,0,1,0,-1,-1,0,18044,0,27800 +129579,0,1,0,-1,-1,0,15806,0,27801 +129580,1,1,0,-1,-1,0,21363,0,27801 +129581,0,1,0,-1,-1,0,14254,0,27802 +129582,1,1,0,-1,-1,0,18379,0,27802 +129583,1,1,0,-1,-1,0,23300,0,27880 +129584,0,1,0,-1,-1,0,21630,0,27964 +129585,0,1,0,-1,-1,0,21366,0,27965 +129586,0,1,0,-1,-1,0,21630,0,27966 +129587,0,1,0,-1,-1,0,21366,0,27967 +129588,0,1,0,-1,-1,0,21366,0,27968 +129589,0,1,0,-1,-1,0,18058,0,28050 +129590,0,1,0,-1,-1,0,18058,0,28052 +129591,0,1,0,-1,-1,0,14127,0,28139 +129592,1,1,0,-1,-1,0,21618,0,28139 +129593,0,1,0,-1,-1,0,28264,0,28140 +129594,1,1,0,-1,-1,0,21627,0,28140 +129595,0,1,0,-1,-1,0,9336,0,28226 +129596,0,1,0,0,0,0,15714,0,28227 +129597,0,1,0,-1,-1,0,14049,0,28228 +129598,1,1,0,-1,-1,0,21362,0,28228 +129599,0,1,0,-1,-1,0,13881,0,28229 +129600,0,1,0,-1,-1,0,9335,0,28302 +129601,0,1,0,-1,-1,0,18036,0,28304 +129602,1,1,0,-1,-1,0,21364,0,28304 +129603,0,1,0,-1,-1,0,9335,0,28305 +129604,0,1,0,-1,-1,0,15715,0,28394 +129605,0,0,0,-1,-1,0,3366,0,28395 +129606,0,1,0,-1,-1,0,15808,0,28396 +129607,0,1,0,-1,-1,0,9142,0,28397 +129608,0,1,0,-1,-1,0,17320,0,27458 +129609,0,1,0,-1,-1,0,22852,0,27459 +129610,0,1,0,-1,-1,0,15820,0,27461 +129611,0,1,0,-1,-1,0,15714,0,27462 +129612,0,1,0,-1,-1,0,18033,0,27542 +129613,1,1,0,-1,-1,0,21630,0,27542 +129614,0,1,0,-1,-1,0,33250,0,27543 +129615,0,1,0,-1,-1,0,34294,0,27544 +129616,0,1,0,-1,-1,0,15811,0,27545 +129617,0,1,0,0,-1,0,15808,0,27546 +129618,0,1,0,-1,-1,0,14248,0,27716 +129619,0,1,0,-1,-1,0,14089,0,27717 +129620,0,1,0,-1,-1,0,9335,0,27719 +129621,0,1,0,-1,-1,0,33274,0,27804 +129622,0,1,0,-1,-1,0,21363,0,27805 +129623,0,1,0,-1,-1,0,21364,0,27806 +129624,1,1,0,-1,-1,0,18036,0,27806 +129625,0,1,0,-1,-1,0,9408,0,27885 +129626,0,1,0,-1,-1,0,34246,0,27886 +129627,0,1,0,-1,-1,0,18379,0,27888 +129628,1,1,0,-1,-1,0,15818,0,27888 +129629,0,1,0,-1,-1,0,21630,0,27969 +129630,0,1,0,-1,-1,0,18379,0,27970 +129631,0,1,0,-1,-1,0,18379,0,27971 +129632,0,1,0,-1,-1,0,18379,0,27972 +129633,0,1,0,-1,-1,0,18379,0,27973 +129634,0,1,0,-1,-1,0,21366,0,27974 +129635,0,1,0,-1,-1,0,18058,0,28055 +129636,1,1,0,-1,-1,0,21618,0,28055 +129637,0,1,0,-1,-1,0,21618,0,28057 +129638,1,1,0,-1,-1,0,15821,0,28057 +129639,0,1,0,-1,-1,0,9137,0,28145 +129640,0,1,0,-1,-1,0,18037,0,28230 +129641,0,1,0,-1,-1,0,18053,0,28231 +129642,1,1,0,-1,-1,0,21618,0,28231 +129643,0,1,0,-1,-1,0,18056,0,28232 +129644,0,1,0,-1,-1,0,15696,0,28233 +129645,1,1,0,-1,-1,0,21631,0,28233 +129646,0,0,0,120000,120000,1182,42292,0,28234 +129647,0,1,0,-1,-1,0,9333,0,28306 +129648,0,1,0,-1,-1,0,9335,0,28307 +129649,0,1,0,-1,-1,0,9335,0,28308 +129650,0,1,0,-1,-1,0,9335,0,28309 +129651,0,1,0,-1,-1,0,9335,0,28310 +129652,0,2,0,-1,-1,0,34107,0,28311 +129653,0,1,0,-1,-1,0,9335,0,28312 +129654,0,1,0,-1,-1,0,15696,0,28398 +129655,0,0,-1,0,1000,59,34291,0,28399 +129656,0,1,0,-1,-1,0,14056,0,28401 +129657,0,1,0,-1,-1,0,17367,0,28402 +129658,0,1,0,-1,-1,0,15806,0,27463 +129659,0,1,0,-1,-1,0,15715,0,27464 +129660,0,1,0,-1,-1,0,14799,0,27465 +129661,0,1,0,-1,-1,0,18050,0,27466 +129662,0,1,0,-1,-1,0,14056,0,27467 +129663,1,1,0,-1,-1,0,17746,0,27467 +129664,0,1,0,-1,-1,0,17897,0,27547 +129665,0,1,0,-1,-1,0,18033,0,27548 +129666,0,1,0,-1,-1,0,18036,0,27549 +129667,1,1,0,-1,-1,0,18378,0,27549 +129668,0,1,0,-1,-1,0,33274,0,27550 +129669,0,1,-1,-1,-1,0,14027,0,27631 +129670,0,1,0,-1,-1,0,15806,0,27722 +129671,0,1,0,-1,-1,0,9345,0,27723 +129672,0,1,0,-1,-1,0,9335,0,27726 +129673,0,1,0,-1,-1,0,18030,0,27727 +129674,0,0,0,-1,-1,0,33381,0,27808 +129675,0,1,0,-1,-1,0,18017,0,27889 +129676,0,1,0,-1,-1,0,9345,0,27890 +129677,0,0,0,120000,0,0,33479,0,27891 +129678,0,1,0,-1,-1,0,9336,0,27892 +129679,0,1,0,-1,-1,0,21366,0,27975 +129680,1,1,0,-1,-1,0,9142,0,28062 +129681,0,1,0,0,-1,0,9398,0,28063 +129682,0,1,0,-1,-1,0,37736,0,28064 +129683,0,1,0,-1,-1,0,33695,0,28065 +129684,0,1,0,-1,-1,0,33696,0,28066 +129685,0,0,0,120000,120000,1182,42292,0,28235 +129686,0,0,0,120000,120000,1182,42292,0,28236 +129687,0,0,0,120000,120000,1182,42292,0,28237 +129688,0,0,0,120000,120000,1182,42292,0,28238 +129689,0,0,0,120000,120000,1182,42292,0,28239 +129690,0,0,0,120000,120000,1182,42292,0,28240 +129691,0,1,0,-1,-1,0,9335,0,28313 +129692,0,1,0,-1,-1,0,9335,0,28314 +129693,0,1,0,-1,-1,0,9332,0,28315 +129694,0,1,0,-1,-1,0,33274,0,28316 +129695,0,1,0,-1,-1,0,18052,0,28317 +129696,0,1,0,-1,-1,0,17367,0,28404 +129697,0,1,0,-1,-1,0,15714,0,28405 +129698,0,1,0,-1,-1,0,14799,0,28406 +129699,0,1,0,-1,-1,0,44912,0,28476 +129700,0,1,0,-1,-1,0,18049,0,28477 +129701,0,0,0,-1,-1,0,34387,0,28478 +129702,0,1,0,0,0,0,18031,0,27468 +129703,0,1,0,-1,-1,0,21364,0,27469 +129704,1,1,0,-1,-1,0,17367,0,27469 +129705,0,1,0,-1,-1,0,32973,0,27470 +129706,1,1,0,-1,-1,0,17367,0,27470 +129707,0,1,0,-1,-1,0,18054,0,27471 +129708,0,1,0,-1,-1,0,18058,0,27472 +129709,1,1,0,-1,-1,0,18379,0,27472 +129710,0,0,-1,300000,120000,1153,9512,0,27553 +129711,0,0,-1,0,1000,11,5004,0,27635 +129712,0,0,-1,0,1000,11,5005,0,27636 +129713,0,1,0,-1,-1,0,9334,0,27637 +129714,0,1,0,-1,-1,0,18030,0,27728 +129715,0,1,0,-1,-1,0,9331,0,27731 +129716,0,1,0,-1,-1,0,9417,0,27732 +129717,0,1,0,-1,-1,0,9334,0,27733 +129718,0,1,0,-1,-1,0,34244,0,27815 +129719,0,1,0,-1,-1,0,18052,0,27816 +129720,1,1,0,-1,-1,0,25975,0,27816 +129721,0,1,0,-1,-1,0,15603,0,27896 +129722,0,1,0,-1,-1,0,18039,0,27897 +129723,1,1,0,-1,-1,0,21366,0,27897 +129724,0,1,0,-1,-1,0,9336,0,27898 +129725,0,1,0,-1,-1,0,28792,0,27899 +129726,0,1,0,-1,-1,0,15714,0,27981 +129727,0,0,-1,-1,-1,0,33703,0,28068 +129728,0,1,0,-1,-1,0,21625,0,28069 +129729,0,1,0,-1,-1,0,14055,0,28070 +129730,1,1,0,-1,-1,0,21625,0,28070 +129731,0,0,-1,-1,-1,0,33704,0,28071 +129732,0,0,-1,-1,-1,0,33705,0,28072 +129733,0,1,0,-1,-1,0,9137,0,28158 +129734,0,0,0,120000,120000,1182,42292,0,28241 +129735,0,0,0,120000,120000,1182,42292,0,28242 +129736,0,0,0,120000,120000,1182,42292,0,28243 +129737,0,1,0,0,0,0,14089,0,28244 +129738,0,1,0,0,0,0,18049,0,28245 +129739,0,1,0,0,0,0,15807,0,28246 +129740,0,1,-1,-1,-1,0,14027,0,28319 +129741,0,1,0,0,-1,0,9343,0,28320 +129742,0,1,0,-1,-1,0,33273,0,28322 +129743,0,1,0,-1,-1,0,14127,0,28409 +129744,0,1,0,-1,-1,0,14127,0,28410 +129745,0,1,0,-1,-1,0,14799,0,28411 +129746,0,1,0,-1,-1,0,14248,0,28412 +129747,0,0,0,0,3000,330,34406,0,28481 +129748,0,0,0,0,3000,330,34407,0,28482 +129749,0,0,0,1800000,-1,0,34511,0,28484 +129750,0,0,-3,172800000,1000,0,33060,0,27388 +129751,0,1,0,-1,-1,0,21626,0,27473 +129752,1,1,0,-1,-1,0,15714,0,27473 +129753,0,1,0,-1,-1,0,15806,0,27474 +129754,0,1,0,-1,-1,0,18038,0,27477 +129755,1,1,0,-1,-1,0,21364,0,27477 +129756,0,1,0,-1,-1,0,9336,0,27478 +129757,0,1,0,-1,-1,0,15714,0,27638 +129758,0,1,0,-1,-1,0,15808,0,27642 +129759,0,1,0,-1,-1,0,9416,0,27734 +129760,1,1,0,-1,-1,0,21362,0,27734 +129761,0,1,0,-1,-1,0,9416,0,27735 +129762,1,1,0,-1,-1,0,21362,0,27735 +129763,0,0,-1,-1,-1,0,33361,0,27736 +129764,0,1,0,-1,-1,0,9316,0,27737 +129765,0,1,0,-1,-1,0,14799,0,27738 +129766,0,1,0,-1,-1,0,9344,0,27739 +129767,1,1,0,-1,-1,0,18055,0,27818 +129768,0,0,0,0,3000,330,24242,0,27819 +129769,0,1,0,-1,-1,0,14798,0,27821 +129770,0,0,0,300000,0,0,33486,0,27900 +129771,0,2,0,0,-1,0,33489,0,27901 +129772,0,1,0,-1,-1,0,18049,0,27902 +129773,0,1,0,-1,-1,0,15816,0,27903 +129774,0,1,0,-1,-1,0,33557,0,27983 +129775,0,1,0,-1,-1,0,33556,0,27984 +129776,0,1,0,-1,-1,0,9336,0,27987 +129777,0,1,0,-1,-1,0,33274,0,27988 +129778,0,0,-1,-1,-1,0,33706,0,28073 +129779,0,1,0,-1,-1,0,14055,0,28075 +129780,0,2,0,-1,-1,0,16409,0,28164 +129781,0,1,0,-1,-1,0,21432,0,28165 +129782,0,1,0,-1,-1,0,23181,0,28166 +129783,0,1,0,0,-1,0,9336,0,28168 +129784,0,1,0,0,0,0,15715,0,28247 +129785,0,1,0,-1,-1,0,34230,0,28248 +129786,0,1,0,-1,-1,0,18034,0,28250 +129787,1,1,0,-1,-1,0,21630,0,28250 +129788,0,1,0,-1,-1,0,15696,0,28251 +129789,0,1,0,0,0,0,14049,0,28323 +129790,0,1,0,-1,-1,0,44908,0,28325 +129791,0,0,0,-1,-1,0,34117,0,28326 +129792,0,1,0,0,0,0,14248,0,28327 +129793,1,1,0,-1,-1,0,28869,0,28327 +129794,0,1,0,-1,-1,0,18037,0,28413 +129795,0,1,0,-1,-1,0,15818,0,28414 +129796,0,1,0,-1,-1,0,18056,0,28415 +129797,0,1,0,-1,-1,0,9336,0,28416 +129798,0,0,0,1800000,-1,0,34511,0,28485 +129799,0,0,-1,0,1000,11,27094,0,28486 +129800,0,0,0,-1,-1,0,33067,0,27479 +129801,0,1,0,-1,-1,0,14248,0,27483 +129802,0,1,0,-1,-1,0,9317,0,27645 +129803,0,1,0,-1,-1,0,9331,0,27646 +129804,0,1,0,-1,-1,0,9332,0,27647 +129805,0,1,0,-1,-1,0,17371,0,27648 +129806,0,1,0,-1,-1,0,13881,0,27649 +129807,0,1,0,-1,-1,0,9336,0,27650 +129808,0,1,0,0,-1,0,33250,0,27741 +129809,0,1,0,-1,-1,0,14127,0,27742 +129810,0,1,0,-1,-1,0,13881,0,27743 +129811,0,1,0,-1,-1,0,34253,0,27744 +129812,0,1,0,-1,-1,0,15820,0,27823 +129813,1,1,0,-1,-1,0,21361,0,27823 +129814,0,1,0,-1,-1,0,18055,0,27824 +129815,0,1,0,-1,-1,0,9333,0,27825 +129816,0,1,0,-1,-1,0,18035,0,27826 +129817,1,1,0,-1,-1,0,18378,0,27826 +129818,0,1,0,-1,-1,0,18030,0,27827 +129819,0,1,0,-1,-1,0,33490,0,27905 +129820,0,1,0,-1,-1,0,18050,0,27907 +129821,1,1,0,-1,-1,0,33491,0,27907 +129822,0,1,0,-1,-1,0,15810,0,27908 +129823,0,1,0,-1,-1,0,14055,0,27909 +129824,0,1,0,-1,-1,0,33565,0,27989 +129825,0,1,0,-1,-1,0,33565,0,27990 +129826,0,0,0,-1,-1,0,3366,0,27991 +129827,0,1,0,-1,-1,0,18054,0,27993 +129828,0,1,0,-1,-1,0,33484,0,28169 +129829,0,1,0,-1,-1,0,14089,0,28170 +129830,1,1,0,-1,-1,0,21618,0,28170 +129831,0,1,0,-1,-1,0,15829,0,28172 +129832,0,1,0,-1,-1,0,15829,0,28173 +129833,0,1,0,-1,-1,0,34040,0,28252 +129834,0,1,0,-1,-1,0,14254,0,28254 +129835,0,1,0,-1,-1,0,13881,0,28255 +129836,0,1,0,-1,-1,0,21629,0,28329 +129837,0,1,0,-1,-1,0,33020,0,28330 +129838,0,1,0,-1,-1,0,14089,0,28331 +129839,0,1,0,-1,-1,0,15808,0,28332 +129840,0,1,0,-1,-1,0,9330,0,28333 +129841,0,1,0,-1,-1,0,34320,0,28418 +129842,0,1,0,0,0,0,18029,0,28419 +129843,0,0,-1,1000,-1,0,34339,0,28420 +129844,0,0,-1,1000,-1,0,34340,0,28421 +129845,0,1,0,-1,-1,0,9336,0,28422 +129846,0,0,-1,-1,-1,0,33019,0,27317 +129847,0,1,0,-1,-1,0,34258,0,27484 +129848,0,1,0,-1,-1,0,15715,0,27485 +129849,0,1,0,-1,-1,0,18055,0,27488 +129850,0,0,-1,0,1000,11,33253,0,27651 +129851,0,1,0,-1,-1,0,14054,0,27652 +129852,0,0,-1,0,1000,11,33260,0,27655 +129853,0,0,-1,0,1000,11,33272,0,27656 +129854,0,1,0,-1,-1,0,15810,0,27745 +129855,0,1,0,-1,-1,0,14798,0,27746 +129856,0,1,0,-1,-1,0,9140,0,27747 +129857,0,1,0,-1,-1,0,18042,0,27748 +129858,0,1,0,-1,-1,0,44893,0,27749 +129859,0,1,0,-1,-1,0,15715,0,27750 +129860,1,1,0,-1,-1,0,18378,0,27750 +129861,0,1,0,-1,-1,0,21638,0,27828 +129862,1,0,0,120000,-1,0,33400,0,27828 +129863,0,1,0,-1,-1,0,15821,0,27829 +129864,0,1,0,-1,-1,0,15812,0,27831 +129865,0,1,0,-1,-1,0,14047,0,27910 +129866,1,1,0,-1,-1,0,21363,0,27910 +129867,0,1,0,-1,-1,0,14049,0,27911 +129868,0,1,0,-1,-1,0,18042,0,27912 +129869,1,1,0,-1,-1,0,21633,0,27912 +129870,0,1,0,-1,-1,0,9334,0,27913 +129871,0,1,0,-1,-1,0,15715,0,27914 +129872,1,1,0,-1,-1,0,21626,0,27914 +129873,0,1,0,-1,-1,0,13881,0,27994 +129874,0,1,0,-1,-1,0,9333,0,27995 +129875,0,1,0,-1,-1,0,21364,0,27996 +129876,0,1,0,-1,-1,0,14248,0,28174 +129877,0,1,0,-1,-1,0,20959,0,28177 +129878,0,1,0,-1,-1,0,14089,0,28178 +129879,0,1,0,-1,-1,0,13881,0,28179 +129880,0,1,0,0,-1,0,33273,0,28257 +129881,1,1,0,-1,-1,0,21626,0,28257 +129882,0,1,0,-1,-1,0,18037,0,28259 +129883,1,1,0,-1,-1,0,21364,0,28259 +129884,0,1,0,-1,-1,0,14248,0,28260 +129885,0,0,0,-1,-1,0,32759,0,28261 +129886,0,1,0,-1,-1,0,9334,0,28334 +129887,0,1,0,-1,-1,0,9334,0,28335 +129888,1,1,0,-1,-1,0,28539,0,28335 +129889,0,0,-1,-1,-1,0,34140,0,28336 +129890,0,1,0,-1,-1,0,13881,0,28338 +129891,0,1,0,-1,-1,0,9336,0,28423 +129892,0,1,0,-1,-1,0,9329,0,28424 +129893,0,1,0,0,0,0,18029,0,27409 +129894,0,1,0,-1,-1,0,18029,0,27489 +129895,1,1,0,-1,-1,0,18379,0,27489 +129896,0,1,0,-1,-1,0,9315,0,27491 +129897,0,1,0,-1,-1,0,14047,0,27492 +129898,0,1,0,-1,-1,0,13881,0,27493 +129899,0,0,-1,0,1000,11,33264,0,27657 +129900,0,0,-1,0,1000,11,33255,0,27658 +129901,0,0,-1,0,1000,11,33262,0,27659 +129902,0,0,-1,0,1000,11,35271,0,27660 +129903,0,0,-1,0,1000,11,27094,0,27661 +129904,0,0,-1,0,1000,11,33253,0,27662 +129905,0,1,0,-1,-1,0,14049,0,27751 +129906,0,1,0,-1,-1,0,14055,0,27753 +129907,0,1,0,-1,-1,0,9330,0,27754 +129908,0,1,0,-1,-1,0,14027,0,27756 +129909,0,1,0,-1,-1,0,18378,0,27835 +129910,1,1,0,-1,-1,0,15696,0,27835 +129911,0,1,0,-1,-1,0,9335,0,27837 +129912,0,1,0,-1,-1,0,9334,0,27915 +129913,1,1,0,-1,-1,0,21620,0,27915 +129914,0,1,-1,-1,-1,0,9332,0,27916 +129915,0,1,0,-1,-1,0,34252,0,27917 +129916,0,1,0,-1,-1,0,9316,0,27919 +129917,1,1,0,-1,-1,0,20959,0,27919 +129918,0,1,0,-1,-1,0,15806,0,28181 +129919,1,1,0,-1,-1,0,21364,0,28181 +129920,0,1,0,-1,-1,0,15818,0,28182 +129921,0,1,0,-1,-1,0,18050,0,28183 +129922,0,1,0,-1,-1,0,18053,0,28185 +129923,0,1,0,-1,-1,0,9332,0,28263 +129924,0,1,0,-1,-1,0,15814,0,28264 +129925,0,1,0,-1,-1,0,34061,0,28265 +129926,0,1,0,-1,-1,0,18056,0,28266 +129927,1,1,0,-1,-1,0,21633,0,28266 +129928,0,1,0,-1,-1,0,14049,0,28339 +129929,0,1,0,-1,-1,0,18033,0,28340 +129930,0,1,0,-1,-1,0,33250,0,28341 +129931,0,1,0,-1,-1,0,14798,0,28342 +129932,0,1,0,-1,-1,0,9336,0,28343 +129933,0,1,0,-1,-1,0,34514,0,28428 +129934,0,1,0,-1,-1,0,34514,0,28429 +129935,1,2,0,-1,-1,0,34513,0,28429 +129936,0,1,0,-1,-1,0,34515,0,28430 +129937,1,2,0,-1,-1,0,34513,0,28430 +129938,0,1,0,-1,-1,0,15809,0,28431 +129939,0,1,0,-1,-1,0,15810,0,28432 +129940,0,1,0,-1,-1,0,9333,0,28433 +129941,0,1,0,-1,-1,0,18041,0,27410 +129942,0,1,0,-1,-1,0,18029,0,27411 +129943,0,1,0,-1,-1,0,26461,0,27412 +129944,0,1,0,-1,-1,0,15806,0,27413 +129945,0,1,0,-1,-1,0,15810,0,27414 +129946,0,1,0,-1,-1,0,21363,0,27494 +129947,1,1,0,-1,-1,0,15811,0,27494 +129948,0,0,-1,1000,-1,0,33077,0,27498 +129949,0,0,-1,0,1000,11,33266,0,27663 +129950,0,0,-1,0,1000,11,33262,0,27664 +129951,0,0,-1,0,1000,11,33264,0,27665 +129952,0,0,-1,0,1000,11,33269,0,27666 +129953,0,0,-1,0,1000,11,33258,0,27667 +129954,0,1,0,-1,-1,0,44908,0,27757 +129955,0,1,0,-1,-1,0,14254,0,27758 +129956,0,1,0,-1,-1,0,18044,0,27759 +129957,1,1,0,-1,-1,0,21365,0,27759 +129958,0,1,0,-1,-1,0,14056,0,27760 +129959,0,1,0,-1,-1,0,14027,0,27761 +129960,0,1,0,-1,-1,0,18058,0,27838 +129961,0,1,0,-1,-1,0,21632,0,27839 +129962,1,1,0,-1,-1,0,14127,0,27839 +129963,0,1,0,0,0,0,15813,0,27920 +129964,1,1,0,-1,-1,0,33510,0,27920 +129965,2,1,0,-1,-1,0,39598,0,27920 +129966,0,1,0,0,0,0,15813,0,27921 +129967,1,1,0,-1,-1,0,33510,0,27921 +129968,2,1,0,-1,-1,0,39598,0,27921 +129969,0,1,0,0,0,0,17367,0,27922 +129970,1,1,0,-1,-1,0,33511,0,27922 +129971,0,1,0,0,0,0,17367,0,27924 +129972,1,1,0,-1,-1,0,33511,0,27924 +129973,0,1,0,0,0,0,9336,0,27925 +129974,0,1,0,-1,-1,0,14049,0,28186 +129975,0,1,0,-1,-1,0,15714,0,28187 +129976,0,1,0,-1,-1,0,33250,0,28188 +129977,1,1,0,-1,-1,0,9334,0,28189 +129978,0,1,0,-1,-1,0,18043,0,28190 +129979,1,1,0,-1,-1,0,33953,0,28190 +129980,0,1,0,-1,-1,0,9336,0,28267 +129981,0,1,0,-1,-1,0,18036,0,28268 +129982,0,1,0,-1,-1,0,15714,0,28269 +129983,0,0,-1,-1,-1,0,483,0,28270 +129984,1,6,0,-1,-1,0,33992,0,28270 +129985,0,1,0,-1,-1,0,14056,0,28344 +129986,0,1,0,0,0,0,14254,0,28346 +129987,0,1,0,-1,-1,0,15814,0,28347 +129988,0,1,0,-1,-1,0,15696,0,28348 +129989,0,1,0,-1,-1,0,17367,0,28349 +129990,1,1,0,-1,-1,0,21626,0,28349 +129991,0,1,0,-1,-1,0,33485,0,28434 +129992,0,1,0,-1,-1,0,34509,0,28435 +129993,0,1,0,-1,-1,0,36069,0,28436 +129994,0,2,0,-1,-1,0,21165,0,28437 +129995,0,2,0,-1,-1,0,21165,0,28438 +129996,0,2,0,-1,-1,0,21165,0,28439 +129997,0,1,0,-1,-1,0,14052,0,27415 +129998,0,1,0,180000,180000,1155,15814,0,27416 +129999,1,0,0,120000,-1,0,33014,0,27416 +130000,0,1,0,-1,-1,0,9315,0,27417 +130001,0,1,0,-1,-1,0,14798,0,27418 +130002,0,0,-1,1000,-1,0,33078,0,27499 +130003,0,0,-1,1000,-1,0,33079,0,27500 +130004,0,0,-1,1000,-1,0,33080,0,27501 +130005,0,0,-1,1000,-1,0,33081,0,27502 +130006,0,0,-1,1000,-1,0,33082,0,27503 +130007,0,0,-1,1000,-1,0,33082,0,27504 +130008,1,1,0,-1,-1,0,21632,0,27505 +130009,0,1,0,-1,-1,0,14049,0,27673 +130010,0,1,0,-1,-1,0,18042,0,27763 +130011,0,1,0,-1,-1,0,17872,0,27764 +130012,0,1,0,-1,-1,0,15808,0,27765 +130013,0,1,0,0,0,0,18031,0,27766 +130014,0,1,0,-1,-1,0,33250,0,27842 +130015,0,1,0,-1,-1,0,14798,0,27843 +130016,0,1,0,-1,-1,0,13881,0,27845 +130017,0,1,0,-1,-1,0,14027,0,27846 +130018,0,1,0,0,0,0,15813,0,27926 +130019,1,1,0,-1,-1,0,33522,0,27926 +130020,0,1,0,0,0,0,15813,0,27927 +130021,1,1,0,-1,-1,0,33522,0,27927 +130022,0,1,-1,-1,-1,0,9329,0,27928 +130023,0,1,-1,-1,-1,0,9329,0,27929 +130024,0,1,0,-1,-1,0,9329,0,27930 +130025,0,1,0,-1,-1,0,9329,0,27931 +130026,0,0,-1,0,120000,4,17534,0,28100 +130027,0,0,-1,0,120000,4,17531,0,28101 +130028,0,0,-1,0,3000,79,33720,0,28102 +130029,0,0,-1,0,3000,79,33721,0,28103 +130030,0,0,-1,0,3000,79,33726,0,28104 +130031,0,1,0,-1,-1,0,13881,0,28191 +130032,0,1,0,-1,-1,0,15818,0,28192 +130033,0,1,0,-1,-1,0,28869,0,28193 +130034,1,1,0,-1,-1,0,18052,0,28193 +130035,0,1,0,-1,-1,0,18030,0,28194 +130036,1,1,0,-1,-1,0,18379,0,28194 +130037,0,0,-1,-1,-1,0,483,0,28271 +130038,1,6,0,-1,-1,0,33994,0,28271 +130039,0,0,-1,-1,-1,0,483,0,28272 +130040,1,6,0,-1,-1,0,33997,0,28272 +130041,0,0,-1,-1,-1,0,483,0,28273 +130042,1,6,0,-1,-1,0,33999,0,28273 +130043,0,0,-1,-1,-1,0,34141,0,28351 +130044,0,0,-1,-1,-1,0,34142,0,28352 +130045,0,0,-1,-1,-1,0,34144,0,28353 +130046,0,1,0,-1,-1,0,42367,0,28355 +130047,0,2,0,-1,-1,0,34510,0,28441 +130048,0,2,0,-1,-1,0,34510,0,28442 +130049,0,1,0,-1,-1,0,18030,0,28443 +130050,0,1,0,-1,-1,0,18030,0,28444 +130051,1,1,0,-1,-1,0,21629,0,27420 +130052,0,1,0,-1,-1,0,14049,0,27423 +130053,0,1,0,-1,-1,0,9334,0,27424 +130054,0,1,0,-1,-1,0,18044,0,27506 +130055,1,1,0,-1,-1,0,21364,0,27506 +130056,0,1,0,-1,-1,0,13881,0,27508 +130057,0,1,0,-1,-1,0,14056,0,27509 +130058,0,1,0,-1,-1,0,13881,0,27510 +130059,1,1,0,-1,-1,0,21364,0,27510 +130060,0,1,0,-1,-1,0,9335,0,27767 +130061,0,1,0,-1,-1,0,13881,0,27768 +130062,0,0,0,120000,-1,0,39228,0,27770 +130063,0,1,0,-1,-1,0,18057,0,27848 +130064,0,1,0,-1,-1,0,15818,0,27936 +130065,0,1,0,0,-1,0,28530,0,27937 +130066,0,0,0,-1,-1,0,34387,0,28106 +130067,0,1,0,-1,-1,0,33759,0,28108 +130068,0,1,0,-1,-1,0,33746,0,28109 +130069,0,0,0,10000,-1,0,33744,0,28110 +130070,0,0,-1,-1,-1,0,483,0,28274 +130071,1,6,0,-1,-1,0,34003,0,28274 +130072,0,1,0,-1,-1,0,14056,0,28275 +130073,0,0,-1,-1,-1,0,483,0,28276 +130074,1,6,0,-1,-1,0,34005,0,28276 +130075,0,0,-1,-1,-1,0,483,0,28277 +130076,1,6,0,-1,-1,0,34006,0,28277 +130077,0,1,0,-1,-1,0,34139,0,28356 +130078,0,1,0,-1,-1,0,34138,0,28357 +130079,0,1,0,-1,-1,0,7680,0,28445 +130080,0,1,0,-1,-1,0,18050,0,28446 +130081,1,1,0,-1,-1,0,21628,0,28446 +130082,0,1,0,-1,-1,0,18050,0,28447 +130083,1,1,0,-1,-1,0,21628,0,28447 +130084,0,1,0,-1,-1,0,9417,0,28448 +130085,1,1,0,-1,-1,0,21618,0,28448 +130086,0,1,0,-1,-1,0,9336,0,28449 +130087,0,1,0,0,-1,0,21620,0,27426 +130088,1,1,0,-1,-1,0,28686,0,27426 +130089,0,1,0,-1,-1,0,14254,0,27428 +130090,1,1,0,-1,-1,0,21627,0,27428 +130091,0,1,0,-1,-1,0,33250,0,27512 +130092,0,1,0,-1,-1,0,14052,0,27514 +130093,0,1,0,-1,-1,0,18054,0,27683 +130094,1,1,0,-1,-1,0,33297,0,27683 +130095,0,0,-1,-1,-1,0,483,0,27684 +130096,1,6,0,-1,-1,0,33279,0,27684 +130097,0,0,-1,-1,-1,0,483,0,27685 +130098,1,6,0,-1,-1,0,33276,0,27685 +130099,0,0,-1,-1,-1,0,483,0,27686 +130100,1,6,0,-1,-1,0,33277,0,27686 +130101,0,0,-1,-1,-1,0,483,0,27687 +130102,1,6,0,-1,-1,0,33278,0,27687 +130103,0,0,-1,-1,-1,0,483,0,27688 +130104,1,6,0,-1,-1,0,33284,0,27688 +130105,0,1,0,-1,-1,0,18037,0,27772 +130106,0,1,0,-1,-1,0,15814,0,27773 +130107,1,1,0,-1,-1,0,21628,0,27773 +130108,0,1,0,-1,-1,0,18032,0,27775 +130109,0,1,0,-1,-1,0,15809,0,27776 +130110,0,0,0,0,3000,330,24242,0,27853 +130111,0,0,-1,0,1000,11,27094,0,27854 +130112,0,0,-1,0,1000,11,27094,0,27855 +130113,0,0,-1,0,1000,11,27094,0,27856 +130114,0,0,-1,0,1000,11,27094,0,27857 +130115,0,0,-1,0,1000,11,27094,0,27858 +130116,0,1,0,-1,-1,0,15815,0,27938 +130117,0,1,0,0,-1,0,9343,0,27939 +130118,1,1,0,-1,-1,0,21361,0,27939 +130119,0,0,0,-1,-1,0,33631,0,28025 +130120,0,1,0,-1,-1,0,9342,0,28026 +130121,0,0,0,43200000,-1,0,33770,0,28111 +130122,0,0,-1,0,1000,11,33772,0,28112 +130123,0,1,0,-1,-1,0,18036,0,28202 +130124,0,1,0,-1,-1,0,14047,0,28203 +130125,0,1,0,-1,-1,0,15813,0,28204 +130126,0,1,0,-1,-1,0,15812,0,28206 +130127,0,1,0,-1,-1,0,13881,0,28278 +130128,0,0,-1,-1,-1,0,483,0,28279 +130129,1,6,0,-1,-1,0,34007,0,28279 +130130,0,0,-1,-1,-1,0,483,0,28280 +130131,1,6,0,-1,-1,0,34008,0,28280 +130132,0,1,0,0,0,0,24243,0,28366 +130133,0,0,0,-1,-1,0,35738,0,29790 +130134,0,1,0,-1,-1,0,15809,0,29792 +130135,0,1,0,-1,-1,0,13881,0,29793 +130136,1,1,0,-1,-1,0,21623,0,29793 +130137,0,1,0,-1,-1,0,35868,0,29883 +130138,1,1,0,-1,-1,0,35870,0,29883 +130139,0,1,0,-1,-1,0,18055,0,28626 +130140,0,1,0,-1,-1,0,18049,0,28627 +130141,0,1,0,-1,-1,0,13881,0,28628 +130142,0,1,0,-1,-1,0,15715,0,28714 +130143,0,1,0,-1,-1,0,14047,0,28715 +130144,0,1,0,-1,-1,0,33066,0,28716 +130145,1,1,0,-1,-1,0,14254,0,28716 +130146,0,1,0,-1,-1,0,15829,0,28801 +130147,0,1,0,-1,-1,0,42040,0,28802 +130148,0,1,0,-1,-1,0,23593,0,28803 +130149,0,1,0,-1,-1,0,26227,0,28804 +130150,0,1,0,-1,-1,0,9141,0,28805 +130151,0,1,0,-1,-1,0,9331,0,28806 +130152,1,1,0,-1,-1,0,28539,0,28806 +130153,0,0,-1,-1,-1,0,35406,0,28886 +130154,0,0,-1,-1,-1,0,35404,0,28887 +130155,0,0,-1,-1,-1,0,35417,0,28888 +130156,0,0,-1,-1,-1,0,35402,0,28889 +130157,0,0,-1,-1,-1,0,22840,0,28890 +130158,0,0,-1,-1,-1,0,22840,0,28891 +130159,0,0,-1,-1,-1,0,22840,0,28892 +130160,0,1,0,-1,-1,0,17367,0,28982 +130161,0,1,0,-1,-1,0,14127,0,28983 +130162,0,1,0,-1,-1,0,14799,0,28984 +130163,0,1,0,-1,-1,0,14127,0,28985 +130164,0,1,0,-1,-1,0,9336,0,28986 +130165,0,1,0,-1,-1,0,14054,0,29067 +130166,1,1,0,-1,-1,0,35074,0,29067 +130167,0,1,0,-1,-1,0,14054,0,29068 +130168,0,1,0,-1,-1,0,18053,0,29069 +130169,0,1,0,-1,-1,0,18049,0,29070 +130170,1,1,0,-1,-1,0,23516,0,29070 +130171,0,1,0,0,0,0,9408,0,29159 +130172,1,1,0,-1,-1,0,21362,0,29159 +130173,0,1,0,-1,-1,0,15813,0,29248 +130174,0,1,0,-1,-1,0,18033,0,29249 +130175,0,1,0,-1,-1,0,18039,0,29250 +130176,1,1,0,-1,-1,0,21364,0,29250 +130177,0,1,0,-1,-1,0,18039,0,29251 +130178,0,1,0,-1,-1,0,14254,0,29252 +130179,0,1,0,-1,-1,0,14127,0,29341 +130180,0,1,0,-1,-1,0,18035,0,29342 +130181,1,1,0,-1,-1,0,21365,0,29342 +130182,0,1,0,-1,-1,0,14054,0,29343 +130183,0,1,0,-1,-1,0,18052,0,29344 +130184,1,1,0,-1,-1,0,21635,0,29344 +130185,0,1,0,-1,-1,0,9314,0,29345 +130186,1,1,0,-1,-1,0,21634,0,29345 +130187,0,1,0,-1,-1,0,15806,0,29346 +130188,0,0,10,0,15000,24,35139,0,29429 +130189,0,1,0,0,0,0,14799,0,29521 +130190,1,1,0,-1,-1,0,21627,0,29521 +130191,0,1,0,0,0,0,17367,0,29522 +130192,1,1,0,-1,-1,0,18032,0,29522 +130193,0,1,0,0,0,0,9345,0,29523 +130194,1,1,0,-1,-1,0,9317,0,29523 +130195,0,1,0,0,0,0,14047,0,29524 +130196,1,1,0,-1,-1,0,18032,0,29524 +130197,0,1,0,0,0,0,33782,0,29525 +130198,0,1,0,0,0,0,15828,0,29526 +130199,0,1,0,-1,-1,0,7597,0,29615 +130200,1,1,0,-1,-1,0,15715,0,29615 +130201,2,1,0,-1,-1,0,21363,0,29615 +130202,0,1,0,-1,-1,0,7597,0,29616 +130203,1,1,0,-1,-1,0,15715,0,29616 +130204,2,1,0,-1,-1,0,21363,0,29616 +130205,0,1,0,-1,-1,0,14254,0,29617 +130206,1,1,0,-1,-1,0,18379,0,29617 +130207,0,0,0,-1,-1,0,35683,0,29618 +130208,0,0,-1,-1,-1,0,483,0,29704 +130209,1,6,0,-1,-1,0,35537,0,29704 +130210,0,0,0,-1,-1,0,35739,0,29795 +130211,0,0,0,60000,60000,0,35745,0,29796 +130212,0,1,0,-1,-1,0,29414,0,29889 +130213,0,1,0,-1,-1,0,35875,0,29890 +130214,0,1,0,-1,-1,0,35876,0,29891 +130215,0,1,0,-1,-1,0,35887,0,29892 +130216,1,1,0,-1,-1,0,35888,0,29892 +130217,2,1,0,-1,-1,0,35875,0,29892 +130218,0,1,0,-1,-1,0,35889,0,29893 +130219,1,1,0,-1,-1,0,35890,0,29893 +130220,2,1,0,-1,-1,0,35876,0,29893 +130221,0,1,0,-1,-1,0,35893,0,29894 +130222,0,1,0,-1,-1,0,15810,0,28545 +130223,0,0,0,-1,-1,0,34520,0,28547 +130224,0,1,0,-1,-1,0,18378,0,28631 +130225,1,1,0,-1,-1,0,18040,0,28631 +130226,0,0,-1,-1,-1,0,483,0,28632 +130227,1,6,0,-1,-1,0,34608,0,28632 +130228,0,1,0,-1,-1,0,42057,0,28633 +130229,0,0,0,5000,-1,0,34630,0,28634 +130230,0,1,0,-1,-1,0,14047,0,28717 +130231,0,1,0,-1,-1,0,18050,0,28718 +130232,0,1,0,-1,-1,0,17367,0,28719 +130233,1,1,0,-1,-1,0,33830,0,28719 +130234,2,1,0,-1,-1,0,21619,0,28719 +130235,0,1,0,-1,-1,0,18052,0,28720 +130236,1,1,0,-1,-1,0,21626,0,28720 +130237,0,1,0,-1,-1,0,18055,0,28721 +130238,1,1,0,-1,-1,0,21629,0,28721 +130239,0,1,0,-1,-1,0,9343,0,28722 +130240,1,1,0,-1,-1,0,21624,0,28722 +130241,0,1,0,-1,-1,0,9335,0,28807 +130242,0,1,0,-1,-1,0,9335,0,28808 +130243,0,1,0,-1,-1,0,9332,0,28809 +130244,0,1,0,-1,-1,0,18055,0,28810 +130245,0,1,0,-1,-1,0,18029,0,28811 +130246,1,1,0,-1,-1,0,33830,0,28811 +130247,0,0,-1,-1,-1,0,22840,0,28893 +130248,0,0,-1,-1,-1,0,22840,0,28894 +130249,0,0,-1,-1,-1,0,22840,0,28895 +130250,0,0,-1,-1,-1,0,22840,0,28896 +130251,0,0,-1,-1,-1,0,22840,0,28897 +130252,0,0,-1,-1,-1,0,22840,0,28898 +130253,0,0,-1,-1,-1,0,22840,0,28899 +130254,0,1,0,-1,-1,0,9336,0,28987 +130255,0,1,0,-1,-1,0,9329,0,28988 +130256,0,1,0,-1,-1,0,18057,0,29076 +130257,0,1,0,-1,-1,0,15832,0,29166 +130258,0,1,0,-1,-1,0,15832,0,29167 +130259,0,1,0,0,0,0,18037,0,29168 +130260,1,1,0,-1,-1,0,21618,0,29168 +130261,0,1,0,0,0,0,18037,0,29169 +130262,1,1,0,-1,-1,0,21618,0,29169 +130263,0,1,0,-1,-1,0,14799,0,29253 +130264,0,1,0,-1,-1,0,14127,0,29254 +130265,0,1,0,-1,-1,0,15715,0,29255 +130266,0,1,0,-1,-1,0,14248,0,29256 +130267,0,1,0,-1,-1,0,14127,0,29257 +130268,0,1,0,-1,-1,0,14047,0,29347 +130269,1,1,0,-1,-1,0,35126,0,29347 +130270,0,2,0,-1,-1,0,35131,0,29348 +130271,0,1,0,-1,-1,0,15806,0,29349 +130272,0,1,0,-1,-1,0,14799,0,29350 +130273,0,1,0,-1,-1,0,9335,0,29351 +130274,0,1,0,0,0,0,15817,0,29527 +130275,0,0,-50,0,120000,24,35475,0,29528 +130276,0,0,-50,0,120000,24,35476,0,29529 +130277,0,0,-50,0,120000,24,35477,0,29530 +130278,0,0,-50,0,120000,24,35478,0,29531 +130279,0,0,-50,0,120000,24,35474,0,29532 +130280,0,0,-1,-1,-1,0,483,0,29713 +130281,1,6,0,-1,-1,0,35538,0,29713 +130282,0,0,-1,-1,-1,0,483,0,29714 +130283,1,6,0,-1,-1,0,35539,0,29714 +130284,0,0,0,-1,-1,0,35755,0,29803 +130285,0,1,0,-1,-1,0,15807,0,29804 +130286,0,1,0,-1,-1,0,15809,0,29806 +130287,1,1,0,-1,-1,0,21627,0,29806 +130288,0,1,0,-1,-1,0,35894,0,29895 +130289,0,1,0,-1,-1,0,35896,0,29896 +130290,1,1,0,-1,-1,0,35897,0,29896 +130291,0,1,0,-1,-1,0,35898,0,29897 +130292,1,1,0,-1,-1,0,35899,0,29897 +130293,0,1,0,-1,-1,0,35900,0,29898 +130294,1,1,0,-1,-1,0,35901,0,29898 +130295,0,1,0,-1,-1,0,35902,0,29899 +130296,1,1,0,-1,-1,0,35903,0,29899 +130297,0,0,0,-1,-1,0,34526,0,28550 +130298,0,1,0,0,0,0,15806,0,28553 +130299,0,1,0,-1,-1,0,14799,0,28638 +130300,0,1,0,-1,-1,0,14127,0,28639 +130301,0,1,0,-1,-1,0,14127,0,28640 +130302,0,1,0,-1,-1,0,14127,0,28641 +130303,0,1,0,-1,-1,0,15714,0,28723 +130304,1,1,0,-1,-1,0,21363,0,28723 +130305,0,1,0,-1,-1,0,14127,0,28724 +130306,0,0,0,-1,-1,0,34646,0,28725 +130307,0,1,0,-1,-1,0,14055,0,28726 +130308,1,1,0,-1,-1,0,42056,0,28726 +130309,0,0,0,120000,-1,0,29601,0,28727 +130310,0,1,0,-1,-1,0,9317,0,28812 +130311,0,1,0,-1,-1,0,18034,0,28813 +130312,0,1,0,-1,-1,0,9406,0,28814 +130313,0,1,0,-1,-1,0,9318,0,28815 +130314,0,1,0,-1,-1,0,34772,0,28816 +130315,0,1,0,-1,-1,0,33063,0,28817 +130316,1,1,0,-1,-1,0,18049,0,28817 +130317,0,0,-1,-1,-1,0,22840,0,28900 +130318,0,0,-1,-1,-1,0,22840,0,28901 +130319,0,0,-1,-1,-1,0,22840,0,28902 +130320,0,0,-1,-1,-1,0,35436,0,28903 +130321,0,0,-1,-1,-1,0,35434,0,28904 +130322,0,1,0,-1,-1,0,14799,0,28992 +130323,0,1,0,-1,-1,0,14127,0,28993 +130324,0,1,0,-1,-1,0,14127,0,28994 +130325,0,1,0,-1,-1,0,28360,0,29077 +130326,1,1,0,-1,-1,0,26283,0,29077 +130327,0,1,0,-1,-1,0,28360,0,29078 +130328,0,1,0,-1,-1,0,14054,0,29079 +130329,0,1,0,-1,-1,0,14055,0,29080 +130330,0,1,0,-1,-1,0,15818,0,29081 +130331,0,1,0,-1,-1,0,15820,0,29082 +130332,1,1,0,-1,-1,0,21627,0,29082 +130333,0,1,0,-1,-1,0,18040,0,29170 +130334,1,1,0,-1,-1,0,44909,0,29171 +130335,0,1,0,-1,-1,0,14047,0,29172 +130336,0,1,0,-1,-1,0,18047,0,29174 +130337,0,1,0,-1,-1,0,18050,0,29258 +130338,0,1,0,-1,-1,0,14089,0,29259 +130339,1,1,0,-1,-1,0,21619,0,29259 +130340,0,1,0,-1,-1,0,15810,0,29261 +130341,0,1,0,-1,-1,0,9333,0,29262 +130342,1,1,0,-1,-1,0,21627,0,29262 +130343,0,1,0,-1,-1,0,14055,0,29352 +130344,0,1,0,-1,-1,0,39585,0,29353 +130345,1,1,0,-1,-1,0,21627,0,29353 +130346,0,1,0,-1,-1,0,18036,0,29354 +130347,0,1,0,-1,-1,0,37542,0,29355 +130348,0,0,-1,30000,-1,0,35129,0,29443 +130349,0,0,-1,-1,-1,0,35488,0,29533 +130350,0,0,-1,-1,-1,0,35489,0,29534 +130351,0,0,-1,-1,-1,0,35490,0,29535 +130352,0,0,-1,-1,-1,0,35495,0,29536 +130353,0,0,-1,-1,-1,0,483,0,29717 +130354,1,6,0,-1,-1,0,35543,0,29717 +130355,0,0,-1,-1,-1,0,483,0,29718 +130356,1,6,0,-1,-1,0,35544,0,29718 +130357,0,0,-1,-1,-1,0,483,0,29719 +130358,1,6,0,-1,-1,0,35549,0,29719 +130359,0,0,-1,-1,-1,0,483,0,29720 +130360,1,6,0,-1,-1,0,35555,0,29720 +130361,0,1,0,-1,-1,0,14047,0,29808 +130362,1,1,0,-1,-1,0,21363,0,29808 +130363,0,1,0,-1,-1,0,15819,0,29810 +130364,0,1,0,-1,-1,0,15808,0,29811 +130365,1,1,0,-1,-1,0,21628,0,29811 +130366,0,0,0,1500,-1,0,35907,0,29901 +130367,0,0,0,1500,-1,0,35909,0,29902 +130368,0,0,0,1500,-1,0,35910,0,29903 +130369,0,0,0,1500,-1,0,35911,0,29904 +130370,0,1,0,0,0,0,14127,0,28555 +130371,0,1,0,-1,-1,0,14127,0,28642 +130372,0,1,0,-1,-1,0,14799,0,28643 +130373,0,1,0,-1,-1,0,18035,0,28728 +130374,1,1,0,-1,-1,0,21630,0,28728 +130375,0,1,0,-1,-1,0,15811,0,28729 +130376,0,1,0,-1,-1,0,18033,0,28731 +130377,0,1,0,-1,-1,0,28735,0,28732 +130378,0,1,0,-1,-1,0,18041,0,28733 +130379,1,1,0,-1,-1,0,21630,0,28733 +130380,0,1,0,-1,-1,0,13881,0,28818 +130381,0,1,0,-1,-1,0,18055,0,28819 +130382,0,1,0,-1,-1,0,18049,0,28820 +130383,0,1,0,-1,-1,0,13881,0,28821 +130384,0,1,0,-1,-1,0,18033,0,28822 +130385,1,1,0,-1,-1,0,18378,0,28822 +130386,0,0,-1,-1,-1,0,35438,0,28907 +130387,0,0,-1,-1,-1,0,35432,0,28908 +130388,0,0,-1,-1,-1,0,35437,0,28909 +130389,0,0,-1,-1,-1,0,35439,0,28910 +130390,0,1,0,-1,-1,0,14127,0,29001 +130391,0,1,0,-1,-1,0,14799,0,29002 +130392,0,1,0,-1,-1,0,15827,0,29083 +130393,0,1,0,-1,-1,0,15810,0,29084 +130394,1,1,0,-1,-1,0,21620,0,29084 +130395,0,1,0,-1,-1,0,15815,0,29085 +130396,1,1,0,-1,-1,0,18379,0,29085 +130397,0,1,0,-1,-1,0,18042,0,29086 +130398,1,1,0,-1,-1,0,21632,0,29086 +130399,0,1,0,-1,-1,0,33820,0,29087 +130400,0,1,0,-1,-1,0,34495,0,29175 +130401,1,1,0,-1,-1,0,21630,0,29175 +130402,0,1,0,-1,-1,0,23181,0,29176 +130403,0,0,0,90000,15000,1141,35337,0,29179 +130404,0,1,0,-1,-1,0,15820,0,29180 +130405,0,0,0,120000,-1,0,35352,0,29181 +130406,0,1,0,-1,-1,0,34593,0,29266 +130407,0,1,0,-1,-1,0,18036,0,29267 +130408,0,1,0,-1,-1,0,14047,0,29268 +130409,0,1,0,-1,-1,0,42107,0,29356 +130410,0,1,0,-1,-1,0,15815,0,29357 +130411,1,1,0,-1,-1,0,43588,0,29357 +130412,0,1,0,-1,-1,0,44910,0,29359 +130413,0,1,0,-1,-1,0,14052,0,29360 +130414,0,0,0,60000,60000,0,35246,0,29445 +130415,0,0,0,30000,-1,0,35282,0,29447 +130416,0,0,-1,0,1000,11,35270,0,29448 +130417,0,0,-1,0,1000,11,35270,0,29449 +130418,0,0,-1,-1,-1,0,483,0,29721 +130419,1,6,0,-1,-1,0,35557,0,29721 +130420,0,0,-1,-1,-1,0,483,0,29722 +130421,1,6,0,-1,-1,0,35554,0,29722 +130422,0,0,-1,-1,-1,0,483,0,29723 +130423,1,6,0,-1,-1,0,35558,0,29723 +130424,0,0,-1,-1,-1,0,483,0,29724 +130425,1,6,0,-1,-1,0,35559,0,29724 +130426,0,1,0,-1,-1,0,13881,0,29813 +130427,0,1,0,900000,30000,0,18036,0,29814 +130428,1,1,0,-1,-1,0,21618,0,29814 +130429,0,0,0,1000,-1,0,35771,0,29817 +130430,0,0,0,1000,-1,0,35772,0,29818 +130431,0,1,0,-1,-1,0,15808,0,29908 +130432,0,1,0,-1,-1,0,9329,0,29909 +130433,0,1,0,-1,-1,0,14055,0,29910 +130434,0,1,0,-1,-1,0,33035,0,29911 +130435,0,0,-1,-1,-1,0,35936,0,29912 +130436,0,1,0,-1,-1,0,13881,0,28560 +130437,0,1,0,-1,-1,0,9331,0,28561 +130438,0,1,0,-1,-1,0,18041,0,28647 +130439,0,1,0,-1,-1,0,14049,0,28649 +130440,0,0,0,300000,-1,0,34622,0,28651 +130441,0,1,0,-1,-1,0,14047,0,28734 +130442,0,1,0,-1,-1,0,36062,0,28735 +130443,1,1,0,-1,-1,0,21634,0,28735 +130444,0,1,0,-1,-1,0,17371,0,28823 +130445,1,1,0,120000,-1,0,37705,0,28823 +130446,0,1,-1,-1,-1,0,15809,0,28826 +130447,0,1,0,-1,-1,0,9333,0,28827 +130448,0,1,0,-1,-1,0,15821,0,28828 +130449,0,0,-1,-1,-1,0,35433,0,28911 +130450,0,0,-1,-1,-1,0,35435,0,28912 +130451,0,0,0,0,3000,330,39316,0,28915 +130452,0,1,0,-1,-1,0,14127,0,29003 +130453,0,1,0,-1,-1,0,18050,0,29004 +130454,1,1,0,-1,-1,0,21628,0,29004 +130455,0,1,0,-1,-1,0,18050,0,29005 +130456,1,1,0,-1,-1,0,21628,0,29005 +130457,0,1,0,-1,-1,0,9417,0,29006 +130458,1,1,0,-1,-1,0,21618,0,29006 +130459,0,1,0,-1,-1,0,17320,0,29088 +130460,1,1,0,-1,-1,0,21632,0,29088 +130461,0,1,0,-1,-1,0,18042,0,29089 +130462,1,1,0,-1,-1,0,21620,0,29089 +130463,0,1,0,-1,-1,0,18039,0,29090 +130464,1,1,0,-1,-1,0,21628,0,29090 +130465,0,1,0,-1,-1,0,28264,0,29091 +130466,0,1,0,-1,-1,0,18050,0,29092 +130467,0,2,0,-1,-1,0,35353,0,29182 +130468,1,1,0,-1,-1,0,9332,0,29182 +130469,0,1,0,-1,-1,0,18040,0,29183 +130470,0,1,0,-1,-1,0,34796,0,29185 +130471,0,0,-1,-1,-1,0,35443,0,29186 +130472,0,1,0,-1,-1,0,17909,0,29269 +130473,0,1,0,-1,-1,0,17882,0,29270 +130474,0,1,0,-1,-1,0,17846,0,29271 +130475,0,1,0,-1,-1,0,18026,0,29272 +130476,0,1,0,-1,-1,0,28360,0,29273 +130477,0,0,0,1500,-1,0,35156,0,29363 +130478,0,0,0,1500,-1,0,35239,0,29364 +130479,0,0,-1,0,1000,11,35270,0,29450 +130480,0,0,-1,0,1000,11,35270,0,29451 +130481,0,0,-1,0,1000,11,35270,0,29452 +130482,0,0,-1,0,1000,11,35270,0,29453 +130483,0,0,-1,0,1000,59,34291,0,29454 +130484,0,1,0,-1,-1,0,21365,0,29455 +130485,0,0,-1,-1,-1,0,483,0,29549 +130486,1,6,0,-1,-1,0,25392,0,29549 +130487,0,0,-1,-1,-1,0,483,0,29725 +130488,1,6,0,-1,-1,0,35560,0,29725 +130489,0,0,-1,-1,-1,0,483,0,29726 +130490,1,6,0,-1,-1,0,35561,0,29726 +130491,0,0,-1,-1,-1,0,483,0,29727 +130492,1,6,0,-1,-1,0,35562,0,29727 +130493,0,0,-1,-1,-1,0,483,0,29728 +130494,1,6,0,-1,-1,0,35563,0,29728 +130495,0,1,0,-1,-1,0,35785,0,29823 +130496,0,1,0,-1,-1,0,9329,0,29914 +130497,0,1,0,0,-1,0,9397,0,29915 +130498,0,1,0,-1,-1,0,9141,0,29916 +130499,0,1,0,-1,-1,0,9342,0,29917 +130500,1,1,0,-1,-1,0,21361,0,29917 +130501,0,1,0,-1,-1,0,18053,0,29918 +130502,0,1,0,-1,-1,0,14055,0,28565 +130503,0,1,0,-1,-1,0,21632,0,28567 +130504,1,1,0,-1,-1,0,18038,0,28567 +130505,0,1,0,-1,-1,0,38321,0,28568 +130506,0,1,0,-1,-1,0,18036,0,28569 +130507,0,1,0,-1,-1,0,18038,0,28652 +130508,0,1,0,-1,-1,0,21631,0,28653 +130509,0,1,0,-1,-1,0,18054,0,28654 +130510,0,1,0,-1,-1,0,18040,0,28655 +130511,1,1,0,-1,-1,0,18379,0,28655 +130512,0,1,0,-1,-1,0,9333,0,28656 +130513,1,1,0,-1,-1,0,21626,0,28656 +130514,0,1,0,-1,-1,0,15814,0,28740 +130515,1,1,0,-1,-1,0,18378,0,28740 +130516,0,1,0,-1,-1,0,15817,0,28741 +130517,0,1,0,-1,-1,0,18042,0,28742 +130518,0,1,0,-1,-1,0,28264,0,28744 +130519,0,1,0,-1,-1,0,14049,0,28830 +130520,1,1,0,-1,-1,0,34774,0,28830 +130521,0,1,0,-1,-1,0,9415,0,28831 +130522,0,1,0,-1,-1,0,14248,0,28832 +130523,1,1,0,-1,-1,0,23300,0,28832 +130524,0,1,0,-1,-1,0,14254,0,28833 +130525,0,1,0,-1,-1,0,15814,0,28918 +130526,0,1,0,-1,-1,0,44908,0,28919 +130527,0,1,0,-1,-1,0,9334,0,28920 +130528,0,1,0,-1,-1,0,9334,0,28921 +130529,0,1,0,-1,-1,0,9334,0,28922 +130530,0,1,0,-1,-1,0,34061,0,29011 +130531,0,1,0,-1,-1,0,34592,0,29012 +130532,0,1,0,-1,-1,0,18053,0,29093 +130533,0,1,0,-1,-1,0,17493,0,29094 +130534,1,1,0,-1,-1,0,21627,0,29094 +130535,0,1,0,-1,-1,0,18053,0,29095 +130536,1,1,0,-1,-1,0,21620,0,29095 +130537,0,0,-1,-1,-1,0,35441,0,29187 +130538,0,0,-1,-1,-1,0,35444,0,29188 +130539,0,0,-1,-1,-1,0,35445,0,29189 +130540,0,0,-1,-1,-1,0,35445,0,29190 +130541,0,0,-1,-1,-1,0,35447,0,29191 +130542,0,0,-1,-1,-1,0,35452,0,29192 +130543,0,1,0,-1,-1,0,18045,0,29274 +130544,1,1,0,-1,-1,0,18379,0,29274 +130545,0,1,0,-1,-1,0,14047,0,29367 +130546,0,1,0,-1,-1,0,14127,0,29368 +130547,0,1,0,-1,-1,0,14248,0,29369 +130548,0,1,0,-1,-1,0,17280,0,29370 +130549,1,0,0,120000,20000,1141,35163,0,29370 +130550,0,1,0,-1,-1,0,9335,0,29371 +130551,0,1,0,-1,-1,0,9335,0,29372 +130552,0,1,0,-1,-1,0,14027,0,29456 +130553,0,1,0,-1,-1,0,33233,0,29457 +130554,0,1,0,-1,-1,0,15696,0,29458 +130555,1,1,0,-1,-1,0,21366,0,29458 +130556,0,0,-1,-1,-1,0,35349,0,29460 +130557,0,0,-1,-1,-1,0,483,0,29550 +130558,1,6,0,-1,-1,0,27090,0,29550 +130559,0,0,-1,-1,-1,0,483,0,29729 +130560,1,6,0,-1,-1,0,35564,0,29729 +130561,0,0,-1,-1,-1,0,483,0,29730 +130562,1,6,0,-1,-1,0,35567,0,29730 +130563,0,0,-1,-1,-1,0,483,0,29731 +130564,1,6,0,-1,-1,0,35568,0,29731 +130565,0,0,-1,-1,-1,0,483,0,29732 +130566,1,6,0,-1,-1,0,35572,0,29732 +130567,0,0,-1,-1,-1,0,483,0,29733 +130568,1,6,0,-1,-1,0,35573,0,29733 +130569,0,1,0,-1,-1,0,35786,0,29824 +130570,0,1,0,-1,-1,0,18036,0,29920 +130571,1,1,0,-1,-1,0,21632,0,29920 +130572,0,1,0,-1,-1,0,18048,0,29921 +130573,1,1,0,-1,-1,0,21632,0,29921 +130574,0,1,0,-1,-1,0,18054,0,29922 +130575,0,1,0,-1,-1,0,18038,0,29923 +130576,1,1,0,-1,-1,0,21627,0,29923 +130577,0,1,0,-1,-1,0,18053,0,28570 +130578,0,1,0,-1,-1,0,9330,0,28572 +130579,0,2,0,-1,-1,0,34580,0,28573 +130580,0,1,0,-1,-1,0,18030,0,28574 +130581,0,1,0,-1,-1,0,18052,0,28575 +130582,0,1,0,-1,-1,0,9336,0,28657 +130583,0,1,0,-1,-1,0,44911,0,28658 +130584,0,1,0,-1,-1,0,17371,0,28661 +130585,0,1,0,-1,-1,0,33820,0,28662 +130586,1,1,0,-1,-1,0,21638,0,28662 +130587,0,1,0,-1,-1,0,15806,0,28746 +130588,0,1,0,-1,-1,0,18041,0,28748 +130589,1,1,0,-1,-1,0,21630,0,28748 +130590,0,1,0,-1,-1,0,15815,0,28750 +130591,0,1,0,-1,-1,0,14127,0,28834 +130592,0,1,0,-1,-1,0,9417,0,28835 +130593,0,1,0,-1,-1,0,9332,0,28836 +130594,1,1,0,-1,-1,0,32748,0,28836 +130595,0,1,0,-1,-1,0,9331,0,28837 +130596,0,1,0,-1,-1,0,9335,0,28838 +130597,0,1,0,-1,-1,0,15814,0,28923 +130598,0,1,0,-1,-1,0,9334,0,28924 +130599,0,1,0,-1,-1,0,9334,0,28925 +130600,0,1,0,-1,-1,0,9334,0,28926 +130601,0,0,0,0,3000,330,34795,0,28927 +130602,0,1,0,-1,-1,0,9334,0,28928 +130603,0,0,0,5000,-1,0,34857,0,29018 +130604,0,0,0,-1,-1,0,34895,0,29101 +130605,0,0,0,0,3000,330,34896,0,29102 +130606,0,0,0,0,3000,330,34897,0,29103 +130607,0,0,-1,-1,-1,0,35453,0,29193 +130608,0,0,-1,-1,-1,0,35454,0,29194 +130609,0,0,-1,-1,-1,0,35455,0,29195 +130610,0,0,-1,-1,-1,0,35456,0,29196 +130611,0,0,-1,-1,-1,0,35456,0,29197 +130612,0,0,-1,-1,-1,0,35457,0,29198 +130613,0,1,0,-1,-1,0,15809,0,29280 +130614,0,1,0,-1,-1,0,14056,0,29281 +130615,0,1,0,-1,-1,0,15812,0,29282 +130616,0,1,0,-1,-1,0,15814,0,29283 +130617,0,1,0,-1,-1,0,15714,0,29284 +130618,0,1,0,-1,-1,0,18033,0,29373 +130619,1,1,0,-1,-1,0,21627,0,29373 +130620,0,1,0,-1,-1,0,18034,0,29374 +130621,1,1,0,-1,-1,0,21618,0,29374 +130622,0,1,0,-1,-1,0,18033,0,29375 +130623,1,1,0,-1,-1,0,18378,0,29375 +130624,0,1,0,-1,-1,0,17320,0,29376 +130625,1,0,0,120000,-1,0,35165,0,29376 +130626,0,1,0,-1,-1,0,21633,0,29377 +130627,0,1,0,-1,-1,0,17821,0,29378 +130628,0,0,0,0,3000,330,22719,0,29465 +130629,0,0,0,0,3000,330,22718,0,29466 +130630,0,0,-1,-1,-1,0,483,0,29734 +130631,1,6,0,-1,-1,0,35574,0,29734 +130632,0,0,0,0,60000,1167,35685,0,29737 +130633,0,1,0,-1,-1,0,35827,0,29835 +130634,1,1,0,-1,-1,0,35828,0,29835 +130635,0,1,0,-1,-1,0,14049,0,29924 +130636,0,1,0,-1,-1,0,14047,0,29926 +130637,0,1,0,-1,-1,0,14047,0,29927 +130638,0,1,0,-1,-1,0,14047,0,29928 +130639,0,1,0,-1,-1,0,14047,0,29929 +130640,0,1,0,-1,-1,0,9331,0,28576 +130641,0,1,0,-1,-1,0,33820,0,28578 +130642,1,1,0,-1,-1,0,34584,0,28578 +130643,0,1,0,-1,-1,0,34586,0,28579 +130644,0,1,0,-1,-1,0,15807,0,28581 +130645,0,1,0,-1,-1,0,21630,0,28663 +130646,1,1,0,-1,-1,0,18037,0,28663 +130647,0,1,0,-1,-1,0,18037,0,28666 +130648,1,1,0,-1,-1,0,21364,0,28666 +130649,0,1,0,-1,-1,0,26154,0,28751 +130650,0,1,0,-1,-1,0,18036,0,28752 +130651,0,1,0,-1,-1,0,17367,0,28753 +130652,0,1,0,-1,-1,0,18032,0,28754 +130653,1,1,0,-1,-1,0,21629,0,28754 +130654,0,1,0,-1,-1,0,15815,0,28755 +130655,0,1,0,-1,-1,0,9332,0,28839 +130656,0,1,0,-1,-1,0,9141,0,28840 +130657,0,1,0,-1,-1,0,21365,0,28841 +130658,0,1,0,-1,-1,0,33020,0,28842 +130659,0,1,0,-1,-1,0,9334,0,28929 +130660,0,1,0,-1,-1,0,9334,0,28930 +130661,0,1,0,-1,-1,0,34796,0,28931 +130662,0,1,-1,-1,-1,0,9330,0,28932 +130663,0,1,0,-1,-1,0,21434,0,28933 +130664,0,0,0,0,3000,330,34898,0,29104 +130665,0,0,0,0,3000,330,34899,0,29105 +130666,0,1,0,-1,-1,0,9329,0,29108 +130667,1,1,0,-1,-1,0,38164,0,29108 +130668,0,1,0,-1,-1,0,14248,0,29109 +130669,1,1,0,-1,-1,0,38164,0,29109 +130670,0,0,-1,-1,-1,0,35458,0,29199 +130671,0,1,0,-1,-1,0,9140,0,29203 +130672,0,1,0,-1,-1,0,9331,0,29204 +130673,0,1,0,-1,-1,0,18049,0,29285 +130674,0,1,0,-1,-1,0,14127,0,29286 +130675,0,1,0,-1,-1,0,13881,0,29287 +130676,0,1,0,-1,-1,0,18032,0,29288 +130677,0,1,0,-1,-1,0,18033,0,29289 +130678,0,1,0,-1,-1,0,18036,0,29290 +130679,0,1,0,-1,-1,0,15811,0,29379 +130680,0,1,0,-1,-1,0,9342,0,29380 +130681,0,1,0,-1,-1,0,15809,0,29381 +130682,0,1,0,-1,-1,0,9333,0,29382 +130683,0,1,0,-1,-1,0,15821,0,29383 +130684,1,0,0,120000,20000,1141,35166,0,29383 +130685,0,0,0,0,3000,330,22720,0,29467 +130686,0,0,0,0,3000,330,22717,0,29468 +130687,0,0,0,0,3000,330,22724,0,29469 +130688,0,0,0,0,3000,330,22722,0,29470 +130689,0,0,0,0,3000,330,22723,0,29471 +130690,0,0,0,0,3000,330,22721,0,29472 +130691,0,0,-1,-1,-1,0,35707,0,29742 +130692,0,0,0,0,3000,330,35711,0,29743 +130693,0,1,0,-1,-1,0,35830,0,29836 +130694,1,1,0,-1,-1,0,35829,0,29836 +130695,0,0,-1,0,0,0,35791,0,29837 +130696,0,0,-1,0,0,0,35792,0,29838 +130697,0,0,-1,0,0,0,35793,0,29839 +130698,0,0,-1,0,0,0,35794,0,29840 +130699,0,0,-1,0,0,0,35795,0,29841 +130700,0,1,0,-1,-1,0,14047,0,29930 +130701,0,1,0,-1,-1,0,14047,0,29931 +130702,0,1,0,-1,-1,0,14047,0,29932 +130703,1,1,0,-1,-1,0,21363,0,29932 +130704,0,1,0,-1,-1,0,14047,0,29933 +130705,1,1,0,-1,-1,0,21363,0,29933 +130706,0,1,0,-1,-1,0,14047,0,29934 +130707,1,1,0,-1,-1,0,21363,0,29934 +130708,0,1,0,-1,-1,0,9345,0,29935 +130709,1,1,0,-1,-1,0,21363,0,29935 +130710,0,1,0,-1,-1,0,18034,0,28582 +130711,1,1,0,-1,-1,0,21364,0,28582 +130712,0,1,0,-1,-1,0,24196,0,28583 +130713,0,1,0,-1,-1,0,14055,0,28585 +130714,1,0,0,-1,3600000,1176,39937,0,28585 +130715,0,1,0,-1,-1,0,17280,0,28586 +130716,0,1,0,-1,-1,0,15826,0,28587 +130717,1,1,0,-1,-1,0,21630,0,28587 +130718,0,1,0,-1,-1,0,15827,0,28669 +130719,0,1,0,-1,-1,0,18052,0,28670 +130720,0,1,0,-1,-1,0,15816,0,28671 +130721,1,1,0,-1,-1,0,21631,0,28671 +130722,0,1,0,-1,-1,0,15806,0,28672 +130723,0,1,0,-1,-1,0,9344,0,28673 +130724,0,1,0,-1,-1,0,18048,0,28756 +130725,0,1,0,-1,-1,0,15810,0,28757 +130726,0,1,0,-1,-1,0,13881,0,28758 +130727,0,1,0,-1,-1,0,13881,0,28759 +130728,0,1,0,-1,-1,0,13881,0,28760 +130729,0,1,0,-1,-1,0,21625,0,28845 +130730,0,1,0,-1,-1,0,21620,0,28846 +130731,1,1,0,-1,-1,0,9345,0,28846 +130732,0,1,0,-1,-1,0,32973,0,28847 +130733,1,1,0,-1,-1,0,15715,0,28847 +130734,0,1,0,-1,-1,0,14047,0,28848 +130735,0,1,0,-1,-1,0,34796,0,28935 +130736,0,0,0,0,3000,330,33660,0,28936 +130737,0,1,0,-1,-1,0,9334,0,28937 +130738,0,1,0,0,0,0,9343,0,28938 +130739,0,0,0,5000,-1,0,34875,0,29025 +130740,0,0,0,120000,-1,0,34888,0,29027 +130741,0,1,0,-1,-1,0,18045,0,29028 +130742,1,1,0,-1,-1,0,18378,0,29028 +130743,0,1,0,-1,-1,0,18042,0,29029 +130744,1,1,0,-1,-1,0,21633,0,29029 +130745,0,0,-1,0,1000,59,11009,0,29112 +130746,0,1,0,-1,-1,0,9335,0,29115 +130747,0,1,0,-1,-1,0,15818,0,29116 +130748,0,0,0,-1,-1,0,34990,0,29205 +130749,0,0,0,-1,-1,0,34990,0,29206 +130750,0,0,0,-1,-1,0,34992,0,29207 +130751,0,1,0,-1,-1,0,18035,0,29291 +130752,0,0,-1,0,1000,11,24800,0,29292 +130753,0,0,-1,0,1000,11,10257,0,29293 +130754,0,1,0,-1,-1,0,35075,0,29294 +130755,0,1,0,-1,-1,0,42034,0,29295 +130756,0,1,0,-1,-1,0,40443,0,29296 +130757,0,1,0,-1,-1,0,35075,0,29385 +130758,0,1,0,-1,-1,0,42038,0,29387 +130759,2,0,0,120000,-1,0,35169,0,29387 +130760,0,1,0,-1,-1,0,37742,0,29388 +130761,0,0,0,0,10000,1167,35372,0,29473 +130762,0,0,-1,-1,-1,0,483,0,29664 +130763,1,6,0,-1,-1,0,35530,0,29664 +130764,0,0,0,0,3000,330,35710,0,29744 +130765,0,0,0,0,3000,330,35713,0,29745 +130766,0,0,0,0,3000,330,35712,0,29746 +130767,0,0,0,0,3000,330,35714,0,29747 +130768,0,1,0,-1,-1,0,33372,0,29748 +130769,0,0,-1,0,0,0,35796,0,29842 +130770,0,0,-1,0,0,0,35797,0,29843 +130771,0,0,-1,0,0,0,35798,0,29844 +130772,0,0,-1,0,0,0,35799,0,29845 +130773,0,0,-1,0,0,0,35800,0,29846 +130774,0,0,-1,0,0,0,35801,0,29847 +130775,0,1,0,-1,-1,0,9345,0,29936 +130776,1,1,0,-1,-1,0,21363,0,29936 +130777,0,1,0,-1,-1,0,9345,0,29937 +130778,1,1,0,-1,-1,0,21363,0,29937 +130779,0,1,0,-1,-1,0,15808,0,29938 +130780,0,1,0,-1,-1,0,15808,0,29939 +130781,0,1,0,-1,-1,0,15808,0,29940 +130782,0,1,0,-1,-1,0,15808,0,29941 +130783,0,1,0,-1,-1,0,9316,0,28588 +130784,0,1,0,-1,-1,0,15811,0,28589 +130785,1,1,0,-1,-1,0,18378,0,28589 +130786,0,0,0,120000,-1,0,38332,0,28590 +130787,1,1,0,120000,-1,0,18044,0,28590 +130788,0,1,0,-1,-1,0,18048,0,28591 +130789,0,1,0,-1,-1,0,38320,0,28592 +130790,0,1,0,-1,-1,0,15811,0,28674 +130791,0,1,0,-1,-1,0,9415,0,28679 +130792,0,1,0,-1,-1,0,14127,0,28762 +130793,0,1,0,-1,-1,0,18042,0,28763 +130794,1,1,0,-1,-1,0,21636,0,28763 +130795,0,1,0,-1,-1,0,15820,0,28764 +130796,0,1,0,-1,-1,0,15696,0,28765 +130797,1,1,0,-1,-1,0,21628,0,28765 +130798,0,1,0,-1,-1,0,14798,0,28766 +130799,0,1,0,-1,-1,0,18050,0,28849 +130800,1,1,0,-1,-1,0,21362,0,28849 +130801,0,1,0,-1,-1,0,21362,0,28850 +130802,1,1,0,-1,-1,0,9344,0,28850 +130803,0,1,0,-1,-1,0,22778,0,28852 +130804,0,1,0,0,0,0,9343,0,28941 +130805,0,1,0,-1,-1,0,9334,0,28944 +130806,0,1,0,-1,-1,0,15814,0,28945 +130807,0,1,0,-1,-1,0,9334,0,28946 +130808,0,1,0,-1,-1,0,32584,0,29030 +130809,1,1,0,-1,-1,0,21634,0,29030 +130810,0,1,0,-1,-1,0,18042,0,29031 +130811,0,1,0,-1,-1,0,18042,0,29032 +130812,1,1,0,-1,-1,0,21632,0,29032 +130813,0,1,0,-1,-1,0,18055,0,29033 +130814,1,1,0,-1,-1,0,18378,0,29033 +130815,0,1,0,-1,-1,0,18052,0,29034 +130816,1,1,0,-1,-1,0,21626,0,29034 +130817,0,1,0,-1,-1,0,18055,0,29117 +130818,1,1,0,-1,-1,0,21639,0,29117 +130819,0,1,0,-1,-1,0,14829,0,29118 +130820,0,0,-1,-1,-1,0,483,0,29120 +130821,1,6,0,-1,-1,0,18456,0,29120 +130822,0,1,0,-1,-1,0,15808,0,29121 +130823,0,1,-1,-1,-1,0,9330,0,29212 +130824,0,0,-1,-1,-1,0,483,0,29213 +130825,1,6,0,-1,-1,0,32498,0,29213 +130826,0,0,-1,-1,-1,0,483,0,29214 +130827,1,6,0,-1,-1,0,32499,0,29214 +130828,0,0,-1,-1,-1,0,483,0,29215 +130829,1,6,0,-1,-1,0,32500,0,29215 +130830,0,1,0,-1,-1,0,40443,0,29297 +130831,1,1,0,-1,-1,0,35077,0,29297 +130832,0,1,0,-1,-1,0,14056,0,29298 +130833,0,1,0,-1,-1,0,15814,0,29299 +130834,0,1,0,-1,-1,0,14052,0,29300 +130835,0,1,0,-1,-1,0,14052,0,29301 +130836,1,1,0,-1,-1,0,35080,0,29301 +130837,0,1,0,-1,-1,0,13881,0,29302 +130838,0,1,0,-1,-1,0,37740,0,29389 +130839,0,1,0,-1,-1,0,33693,0,29390 +130840,0,0,-1,0,1000,11,27094,0,29393 +130841,0,0,-1,0,1000,11,35270,0,29394 +130842,0,0,0,10000,10000,0,35413,0,29478 +130843,0,0,-1,-1,-1,0,35409,0,29482 +130844,0,0,-1,1000,-1,0,35415,0,29483 +130845,0,0,-1,-1,-1,0,483,0,29669 +130846,1,6,0,-1,-1,0,35520,0,29669 +130847,0,0,-1,-1,-1,0,483,0,29672 +130848,1,6,0,-1,-1,0,35521,0,29672 +130849,0,0,-1,-1,-1,0,483,0,29673 +130850,1,6,0,-1,-1,0,35522,0,29673 +130851,0,0,-1,-1,-1,0,35725,0,29750 +130852,0,0,-1,0,0,0,35802,0,29848 +130853,0,0,-1,0,0,0,35803,0,29849 +130854,0,0,-1,0,0,0,35804,0,29850 +130855,0,0,-1,0,0,0,35805,0,29851 +130856,0,0,-1,0,0,0,35806,0,29852 +130857,0,0,-1,0,0,0,35807,0,29853 +130858,0,1,0,-1,-1,0,15809,0,28506 +130859,0,1,0,-1,-1,0,14055,0,28507 +130860,0,1,0,-1,-1,0,18031,0,28508 +130861,0,1,0,-1,-1,0,15809,0,28509 +130862,0,1,0,-1,-1,0,13881,0,28510 +130863,0,1,0,-1,-1,0,28360,0,28594 +130864,0,0,-1,-1,-1,0,483,0,28596 +130865,1,6,0,-1,-1,0,34590,0,28596 +130866,0,1,0,-1,-1,0,34061,0,28597 +130867,0,1,0,-1,-1,0,14248,0,28680 +130868,1,1,0,-1,-1,0,23300,0,28680 +130869,0,1,0,-1,-1,0,14254,0,28681 +130870,0,1,0,-1,-1,0,18050,0,28682 +130871,0,1,0,-1,-1,0,9417,0,28683 +130872,0,1,0,-1,-1,0,9332,0,28684 +130873,1,1,0,-1,-1,0,32748,0,28684 +130874,0,1,0,-1,-1,0,9331,0,28685 +130875,0,0,0,180000,10000,1141,37208,0,28767 +130876,0,1,0,-1,-1,0,14056,0,28768 +130877,0,1,0,-1,-1,0,42040,0,28770 +130878,0,1,0,-1,-1,0,40151,0,28771 +130879,0,1,0,-1,-1,0,15806,0,28772 +130880,0,1,0,-1,-1,0,23044,0,28856 +130881,1,1,0,-1,-1,0,15715,0,28856 +130882,0,1,0,-1,-1,0,9346,0,28857 +130883,0,1,0,-1,-1,0,18053,0,28858 +130884,0,1,0,-1,-1,0,9334,0,28947 +130885,0,1,0,-1,-1,0,44908,0,28948 +130886,0,1,0,-1,-1,0,15814,0,28949 +130887,0,1,0,-1,-1,0,9334,0,28950 +130888,0,1,0,-1,-1,0,9334,0,28951 +130889,0,1,0,-1,-1,0,9334,0,28952 +130890,0,1,0,-1,-1,0,18055,0,29035 +130891,1,1,0,-1,-1,0,18378,0,29035 +130892,0,1,0,-1,-1,0,28360,0,29036 +130893,1,1,0,-1,-1,0,21630,0,29036 +130894,0,1,0,-1,-1,0,18053,0,29037 +130895,0,1,0,-1,-1,0,18378,0,29038 +130896,1,1,0,-1,-1,0,21620,0,29039 +130897,0,1,0,-1,-1,0,18379,0,29123 +130898,0,1,0,-1,-1,0,15808,0,29124 +130899,0,1,0,-1,-1,0,18052,0,29126 +130900,0,0,-1,-1,-1,0,483,0,29217 +130901,1,6,0,-1,-1,0,32501,0,29217 +130902,0,0,-1,-1,-1,0,483,0,29218 +130903,1,6,0,-1,-1,0,32503,0,29218 +130904,0,0,-1,-1,-1,0,483,0,29219 +130905,1,6,0,-1,-1,0,32502,0,29219 +130906,0,0,0,0,3000,330,35020,0,29220 +130907,0,1,0,-1,-1,0,17367,0,29303 +130908,0,1,0,-1,-1,0,18052,0,29304 +130909,0,1,0,-1,-1,0,18052,0,29305 +130910,1,1,0,-1,-1,0,35083,0,29305 +130911,0,1,0,-1,-1,0,18038,0,29306 +130912,1,1,0,-1,-1,0,21365,0,29306 +130913,0,1,0,-1,-1,0,18036,0,29307 +130914,1,1,0,-1,-1,0,21630,0,29307 +130915,0,1,0,-1,-1,0,18040,0,29308 +130916,1,1,0,-1,-1,0,21632,0,29308 +130917,0,0,-1,0,1000,59,27089,0,29395 +130918,0,1,0,0,0,0,35175,0,29398 +130919,0,1,0,-1,-1,0,14798,0,29399 +130920,0,0,-1,1000,-1,0,35416,0,29485 +130921,0,0,-1,1000,-1,0,35418,0,29486 +130922,0,0,-1,1000,-1,0,35419,0,29487 +130923,0,0,-1,1000,-1,0,35420,0,29488 +130924,0,0,-1,-1,-1,1153,35673,0,29585 +130925,0,0,-1,-1,-1,0,483,0,29674 +130926,1,6,0,-1,-1,0,35523,0,29674 +130927,0,0,-1,-1,-1,0,483,0,29675 +130928,1,6,0,-1,-1,0,35524,0,29675 +130929,0,0,-1,-1,-1,0,483,0,29677 +130930,1,6,0,-1,-1,0,35525,0,29677 +130931,0,0,-1,0,0,0,35808,0,29854 +130932,0,1,0,-1,-1,0,35832,0,29855 +130933,1,1,0,-1,-1,0,35833,0,29855 +130934,2,1,0,-1,-1,0,35834,0,29855 +130935,0,0,-1,0,0,0,35809,0,29856 +130936,0,0,-1,0,0,0,35810,0,29857 +130937,0,0,-1,0,0,0,35811,0,29858 +130938,0,1,0,-1,-1,0,18033,0,28511 +130939,0,1,0,-1,-1,0,18033,0,28512 +130940,0,1,0,-1,-1,0,14056,0,28514 +130941,0,1,0,-1,-1,0,17367,0,28515 +130942,0,1,0,-1,-1,0,15826,0,28599 +130943,1,1,0,-1,-1,0,18378,0,28599 +130944,0,1,0,-1,-1,0,18046,0,28600 +130945,1,1,0,-1,-1,0,21631,0,28600 +130946,0,1,0,-1,-1,0,15831,0,28601 +130947,0,1,0,-1,-1,0,17367,0,28602 +130948,1,1,0,-1,-1,0,34598,0,28602 +130949,0,1,0,-1,-1,0,14127,0,28603 +130950,0,1,0,-1,-1,0,9335,0,28686 +130951,0,1,0,-1,-1,0,9332,0,28687 +130952,0,1,0,-1,-1,0,9141,0,28688 +130953,0,1,0,-1,-1,0,21365,0,28689 +130954,0,1,0,-1,-1,0,33020,0,28690 +130955,0,2,0,-1,-1,0,34696,0,28774 +130956,0,1,0,-1,-1,0,15821,0,28776 +130957,0,1,0,-1,-1,0,15814,0,28777 +130958,0,1,0,-1,-1,0,9344,0,28859 +130959,0,1,0,-1,-1,0,14054,0,28860 +130960,1,1,0,-1,-1,0,23300,0,28862 +130961,0,1,0,-1,-1,0,9334,0,28953 +130962,0,1,0,-1,-1,0,9334,0,28954 +130963,0,1,0,-1,-1,0,9334,0,28955 +130964,0,1,0,-1,-1,0,9334,0,28956 +130965,0,1,0,-1,-1,0,34796,0,28957 +130966,0,1,-1,-1,-1,0,9330,0,28958 +130967,0,1,0,-1,-1,0,21632,0,29042 +130968,0,1,0,-1,-1,0,15825,0,29044 +130969,0,1,0,-1,-1,0,15823,0,29045 +130970,0,1,0,0,0,0,15808,0,29128 +130971,0,1,0,-1,-1,0,13881,0,29129 +130972,0,1,0,-1,-1,0,33250,0,29130 +130973,0,1,0,-1,-1,0,15832,0,29131 +130974,0,0,0,90000,15000,1141,35337,0,29132 +130975,0,1,0,-1,-1,0,35338,0,29133 +130976,1,1,0,-1,-1,0,21633,0,29133 +130977,0,0,0,0,3000,330,35022,0,29221 +130978,0,0,0,0,3000,330,35018,0,29222 +130979,0,0,0,0,3000,330,35025,0,29223 +130980,0,0,0,0,3000,330,35027,0,29224 +130981,0,0,0,0,3000,330,35028,0,29225 +130982,0,1,0,-1,-1,0,18040,0,29309 +130983,1,1,0,-1,-1,0,21632,0,29309 +130984,2,1,0,-1,-1,0,35086,0,29309 +130985,1,1,0,-1,-1,0,21619,0,29312 +130986,0,1,0,-1,-1,0,21625,0,29313 +130987,1,1,0,-1,-1,0,15715,0,29313 +130988,0,1,0,-1,-1,0,17367,0,29314 +130989,1,1,0,-1,-1,0,21619,0,29314 +130990,0,0,-1,0,1000,59,27089,0,29401 +130991,0,0,-1,-1,-1,0,27094,0,29402 +130992,0,0,0,300000,300000,1182,42292,0,29592 +130993,0,0,0,300000,300000,1182,42292,0,29593 +130994,1,1,0,-1,-1,0,22801,0,29594 +130995,0,0,-1,-1,-1,0,483,0,29682 +130996,1,6,0,-1,-1,0,35526,0,29682 +130997,0,0,-1,0,0,0,35812,0,29859 +130998,0,0,-1,0,0,0,35813,0,29860 +130999,0,0,-1,0,0,0,35814,0,29861 +131000,0,0,-1,0,0,0,35815,0,29862 +131001,0,0,-1,0,0,0,35816,0,29863 +131002,0,0,-1,0,0,0,35817,0,29864 +131003,0,1,0,-1,-1,0,18049,0,28517 +131004,0,1,0,-1,-1,0,35075,0,28518 +131005,0,1,0,-1,-1,0,15812,0,28519 +131006,1,1,0,-1,-1,0,21619,0,28519 +131007,0,1,0,-1,-1,0,18039,0,28520 +131008,1,1,0,-1,-1,0,21627,0,28520 +131009,0,1,0,-1,-1,0,18040,0,28521 +131010,0,1,0,-1,-1,0,40107,0,28604 +131011,0,1,0,-1,-1,0,34593,0,28606 +131012,0,0,0,60000,0,0,34603,0,28607 +131013,0,1,0,-1,-1,0,18041,0,28609 +131014,1,1,0,-1,-1,0,21634,0,28609 +131015,0,1,0,-1,-1,0,21625,0,28693 +131016,0,1,0,-1,-1,0,21620,0,28694 +131017,1,1,0,-1,-1,0,9345,0,28694 +131018,0,1,0,-1,-1,0,32973,0,28695 +131019,1,1,0,-1,-1,0,15715,0,28695 +131020,0,1,0,-1,-1,0,15810,0,28778 +131021,1,1,0,-1,-1,0,18378,0,28778 +131022,0,1,0,-1,-1,0,18053,0,28780 +131023,0,1,0,-1,-1,0,14055,0,28781 +131024,0,1,0,-1,-1,0,40151,0,28782 +131025,1,1,0,-1,-1,0,33780,0,28782 +131026,0,1,0,-1,-1,0,9345,0,28783 +131027,0,1,0,-1,-1,0,15715,0,28866 +131028,0,1,0,-1,-1,0,14047,0,28867 +131029,0,1,0,-1,-1,0,33066,0,28868 +131030,1,1,0,-1,-1,0,14254,0,28868 +131031,0,1,0,-1,-1,0,34796,0,28959 +131032,0,1,0,-1,-1,0,21434,0,28960 +131033,0,0,0,5000,-1,0,34830,0,28962 +131034,0,1,0,-1,-1,0,18056,0,28963 +131035,0,1,0,-1,-1,0,18058,0,28964 +131036,0,1,0,-1,-1,0,15828,0,29046 +131037,0,1,0,-1,-1,0,15812,0,29047 +131038,0,1,0,-1,-1,0,15821,0,29048 +131039,0,1,0,-1,-1,0,18044,0,29049 +131040,1,1,0,-1,-1,0,21627,0,29049 +131041,0,1,0,-1,-1,0,33820,0,29050 +131042,0,1,0,-1,-1,0,14056,0,29135 +131043,0,1,0,-1,-1,0,14056,0,29136 +131044,0,1,0,-1,-1,0,15828,0,29137 +131045,0,1,0,-1,-1,0,15828,0,29138 +131046,0,1,0,-1,-1,0,18379,0,29139 +131047,0,0,0,60000,-1,0,35036,0,29226 +131048,0,0,0,0,3000,330,34896,0,29227 +131049,0,0,0,0,3000,330,34790,0,29228 +131050,0,0,0,0,3000,330,34898,0,29229 +131051,0,0,0,0,3000,330,34899,0,29230 +131052,0,0,0,0,3000,330,34897,0,29231 +131053,0,1,0,-1,-1,0,18033,0,29315 +131054,0,1,0,-1,-1,0,14054,0,29317 +131055,1,1,0,-1,-1,0,25975,0,29317 +131056,0,1,0,-1,-1,0,15809,0,29318 +131057,0,1,0,-1,-1,0,21635,0,29319 +131058,0,1,0,0,0,0,14047,0,29320 +131059,1,1,0,-1,-1,0,28869,0,29320 +131060,0,1,0,0,0,0,14089,0,29321 +131061,0,0,-1,0,1000,11,27094,0,29412 +131062,0,1,0,-1,-1,0,18384,0,29595 +131063,1,1,0,-1,-1,0,9342,0,29595 +131064,0,1,0,-1,-1,0,7597,0,29596 +131065,0,1,0,-1,-1,0,14248,0,29597 +131066,1,1,0,-1,-1,0,18384,0,29597 +131067,0,1,0,-1,-1,0,7597,0,29598 +131068,1,1,0,-1,-1,0,18384,0,29598 +131069,0,1,0,-1,-1,0,9344,0,29599 +131070,1,1,0,-1,-1,0,18384,0,29599 +131071,0,0,-1,-1,-1,0,483,0,29684 +131072,1,6,0,-1,-1,0,35527,0,29684 +131073,0,1,0,-1,-1,0,35835,0,29865 +131074,1,1,0,-1,-1,0,35836,0,29865 +131075,2,1,0,-1,-1,0,35837,0,29865 +131076,0,0,-1,0,0,0,35818,0,29866 +131077,0,0,-1,0,0,0,35819,0,29867 +131078,0,0,-1,0,0,0,35820,0,29868 +131079,0,0,-1,0,0,0,35821,0,29869 +131080,0,0,-1,0,0,0,35822,0,29870 +131081,0,1,0,-1,-1,0,40107,0,28522 +131082,1,1,0,-1,-1,0,21627,0,28522 +131083,0,1,0,-1,-1,0,38322,0,28523 +131084,0,1,0,-1,-1,0,14089,0,28524 +131085,0,1,0,-1,-1,0,18030,0,28525 +131086,0,1,0,-1,-1,0,15815,0,28610 +131087,0,1,0,-1,-1,0,14047,0,28611 +131088,1,1,0,-1,-1,0,21628,0,28611 +131089,0,1,0,-1,-1,0,18037,0,28612 +131090,1,1,0,-1,-1,0,21632,0,28612 +131091,0,1,0,-1,-1,0,9141,0,28613 +131092,0,1,0,-1,-1,0,9331,0,28614 +131093,1,1,0,-1,-1,0,28539,0,28614 +131094,0,1,0,-1,-1,0,14047,0,28696 +131095,0,1,0,-1,-1,0,18050,0,28697 +131096,1,1,0,-1,-1,0,21362,0,28697 +131097,0,1,0,-1,-1,0,21362,0,28698 +131098,1,1,0,-1,-1,0,9344,0,28698 +131099,0,1,0,-1,-1,0,22778,0,28700 +131100,0,1,0,-1,-1,0,37657,0,28785 +131101,0,0,-1,-1,-1,0,34717,0,28786 +131102,0,0,0,300000,-1,0,34750,0,28788 +131103,0,1,0,-1,-1,0,34040,0,28789 +131104,1,1,0,-1,-1,0,34749,0,28789 +131105,0,1,0,-1,-1,0,14047,0,28869 +131106,0,1,0,-1,-1,0,18050,0,28870 +131107,0,1,0,-1,-1,0,17367,0,28871 +131108,1,1,0,-1,-1,0,33830,0,28871 +131109,2,1,0,-1,-1,0,21363,0,28871 +131110,0,1,0,-1,-1,0,18052,0,28872 +131111,1,1,0,-1,-1,0,21620,0,28872 +131112,0,1,0,-1,-1,0,18055,0,28873 +131113,1,1,0,-1,-1,0,21629,0,28873 +131114,0,1,0,-1,-1,0,28360,0,28966 +131115,0,1,0,-1,-1,0,18054,0,28967 +131116,0,1,0,-1,-1,0,14055,0,28968 +131117,0,0,0,5000,-1,0,34893,0,29052 +131118,0,1,0,-1,-1,0,33820,0,29053 +131119,0,1,0,-1,-1,0,15696,0,29054 +131120,0,1,0,-1,-1,0,18037,0,29055 +131121,1,1,0,-1,-1,0,21633,0,29055 +131122,0,1,0,-1,-1,0,28264,0,29056 +131123,0,1,0,-1,-1,0,18379,0,29140 +131124,0,1,0,-1,-1,0,17493,0,29141 +131125,0,1,0,-1,-1,0,17493,0,29142 +131126,0,1,0,-1,-1,0,29414,0,29143 +131127,0,1,0,-1,-1,0,29414,0,29144 +131128,0,0,-1,-1,-1,0,483,0,29232 +131129,1,6,0,-1,-1,0,32766,0,29232 +131130,0,1,0,0,0,0,18032,0,29322 +131131,1,1,0,-1,-1,0,21628,0,29322 +131132,0,0,0,5000,5000,0,35113,0,29324 +131133,0,1,0,-1,-1,0,15811,0,29326 +131134,1,1,0,-1,-1,0,21365,0,29326 +131135,0,1,0,-1,-1,0,18037,0,29327 +131136,0,1,0,0,0,0,15823,0,29502 +131137,0,1,0,0,0,0,14056,0,29503 +131138,0,1,0,0,0,0,17493,0,29504 +131139,1,1,0,-1,-1,0,21632,0,29504 +131140,0,1,0,0,0,0,18042,0,29505 +131141,0,1,0,0,0,0,18046,0,29506 +131142,0,1,0,0,0,0,18048,0,29508 +131143,1,1,0,-1,-1,0,21641,0,29508 +131144,0,1,0,-1,-1,0,23300,0,29600 +131145,1,1,0,-1,-1,0,7597,0,29600 +131146,0,1,0,-1,-1,0,9344,0,29601 +131147,0,1,0,-1,-1,0,15715,0,29602 +131148,0,1,0,-1,-1,0,15715,0,29603 +131149,0,1,0,-1,-1,0,18049,0,29604 +131150,0,0,-1,-1,-1,0,483,0,29689 +131151,1,6,0,-1,-1,0,35529,0,29689 +131152,0,0,-1,-1,-1,0,483,0,29691 +131153,1,6,0,-1,-1,0,35528,0,29691 +131154,0,0,-1,-1,-1,0,483,0,29693 +131155,1,6,0,-1,-1,0,35531,0,29693 +131156,0,1,0,-1,-1,0,18050,0,29771 +131157,0,1,0,-1,-1,0,14798,0,29773 +131158,0,1,0,-1,-1,0,14798,0,29774 +131159,1,1,0,-1,-1,0,21364,0,29774 +131160,0,1,0,0,-1,0,15715,0,29775 +131161,0,0,0,120000,20000,1141,35733,0,29776 +131162,1,1,0,-1,-1,0,15812,0,29776 +131163,0,0,-1,0,0,0,35823,0,29871 +131164,0,0,-1,0,0,0,35824,0,29872 +131165,0,0,-1,0,0,0,35825,0,29873 +131166,0,0,-1,0,0,0,35826,0,29874 +131167,0,1,0,-1,-1,0,35842,0,29875 +131168,0,1,0,-1,-1,0,35844,0,29876 +131169,0,0,0,120000,-1,0,34519,0,28528 +131170,0,1,0,-1,-1,0,18049,0,28530 +131171,0,1,0,-1,-1,0,9335,0,28615 +131172,0,1,0,-1,-1,0,9335,0,28616 +131173,0,1,0,-1,-1,0,9332,0,28617 +131174,0,1,0,-1,-1,0,18029,0,28618 +131175,1,1,0,-1,-1,0,33830,0,28618 +131176,0,1,0,-1,-1,0,9317,0,28619 +131177,0,1,0,-1,-1,0,18034,0,28620 +131178,0,1,0,-1,-1,0,23044,0,28704 +131179,1,1,0,-1,-1,0,15715,0,28704 +131180,0,1,0,-1,-1,0,9346,0,28705 +131181,0,1,0,-1,-1,0,18036,0,28790 +131182,1,1,0,-1,-1,0,21630,0,28790 +131183,0,1,0,-1,-1,0,15813,0,28791 +131184,0,1,0,-1,-1,0,14127,0,28793 +131185,0,1,0,-1,-1,0,42039,0,28794 +131186,0,1,0,-1,-1,0,9343,0,28874 +131187,1,1,0,-1,-1,0,21624,0,28874 +131188,0,1,0,-1,-1,0,15714,0,28875 +131189,1,1,0,-1,-1,0,21363,0,28875 +131190,0,0,-1,-1,-1,0,22840,0,28876 +131191,0,0,-1,-1,-1,0,22840,0,28877 +131192,0,0,-1,-1,-1,0,35403,0,28878 +131193,0,0,-1,-1,-1,0,22840,0,28879 +131194,0,1,0,-1,-1,0,9141,0,28972 +131195,0,1,0,-1,-1,0,9329,0,28973 +131196,0,1,0,-1,-1,0,9336,0,28974 +131197,0,1,0,-1,-1,0,9336,0,28975 +131198,0,1,0,-1,-1,0,14798,0,29057 +131199,0,1,0,-1,-1,0,18055,0,29058 +131200,0,1,0,-1,-1,0,17280,0,29059 +131201,0,1,0,-1,-1,0,13881,0,29060 +131202,0,1,0,-1,-1,0,18045,0,29061 +131203,0,1,0,-1,-1,0,15820,0,29147 +131204,0,1,0,-1,-1,0,15820,0,29148 +131205,0,1,0,0,-1,0,9416,0,29149 +131206,0,1,0,-1,-1,0,9332,0,29150 +131207,0,1,0,-1,-1,0,9332,0,29151 +131208,0,1,0,-1,-1,0,13881,0,29240 +131209,0,1,0,-1,-1,0,18052,0,29241 +131210,0,1,0,-1,-1,0,18053,0,29242 +131211,0,1,0,-1,-1,0,14798,0,29328 +131212,1,1,0,-1,-1,0,26283,0,29328 +131213,0,1,0,-1,-1,0,14127,0,29330 +131214,0,1,0,-1,-1,0,15818,0,29332 +131215,0,1,0,-1,-1,0,14254,0,29333 +131216,0,1,0,0,0,0,15817,0,29510 +131217,1,1,0,-1,-1,0,21636,0,29510 +131218,0,1,0,0,0,0,14056,0,29511 +131219,0,1,0,0,0,0,23990,0,29512 +131220,1,1,0,-1,-1,0,20959,0,29512 +131221,0,0,0,-1,-1,0,35460,0,29513 +131222,0,1,0,0,0,0,15824,0,29514 +131223,0,1,0,-1,-1,0,14799,0,29605 +131224,0,1,0,-1,-1,0,22801,0,29606 +131225,1,1,0,-1,-1,0,14799,0,29606 +131226,2,1,0,-1,-1,0,21363,0,29606 +131227,0,1,0,-1,-1,0,7597,0,29607 +131228,0,1,0,-1,-1,0,14054,0,29608 +131229,1,1,0,-1,-1,0,18384,0,29608 +131230,2,1,0,-1,-1,0,7597,0,29608 +131231,0,1,0,-1,-1,0,7597,0,29609 +131232,1,1,0,-1,-1,0,18384,0,29609 +131233,2,1,0,-1,-1,0,9415,0,29609 +131234,0,0,-1,-1,-1,0,483,0,29698 +131235,1,6,0,-1,-1,0,35532,0,29698 +131236,0,0,-30,0,1000,1167,35734,0,29778 +131237,0,1,0,-1,-1,0,9317,0,29779 +131238,1,1,0,-1,-1,0,21623,0,29779 +131239,0,1,0,-1,-1,0,18056,0,29780 +131240,0,1,0,-1,-1,0,18040,0,29781 +131241,0,0,0,-1,-1,0,35851,0,29877 +131242,0,1,0,-1,-1,0,35854,0,29878 +131243,0,1,0,-1,-1,0,35855,0,29879 +131244,0,1,0,-1,-1,0,35866,0,29882 +131245,1,1,0,-1,-1,0,35867,0,29882 +131246,0,1,0,-1,-1,0,9406,0,28622 +131247,0,1,0,-1,-1,0,9317,0,28623 +131248,0,1,0,-1,-1,0,33063,0,28624 +131249,1,1,0,-1,-1,0,18049,0,28624 +131250,0,1,0,-1,-1,0,13881,0,28625 +131251,0,1,0,-1,-1,0,18053,0,28706 +131252,0,1,0,-1,-1,0,9344,0,28707 +131253,0,1,0,-1,-1,0,14054,0,28708 +131254,1,1,0,-1,-1,0,23300,0,28710 +131255,0,1,0,-1,-1,0,15828,0,28796 +131256,0,1,0,-1,-1,0,14127,0,28797 +131257,0,0,0,300000,-1,0,34750,0,28798 +131258,0,1,0,-1,-1,0,17280,0,28799 +131259,0,0,-1,-1,-1,0,22840,0,28880 +131260,0,0,-1,-1,-1,0,35405,0,28881 +131261,0,0,-1,-1,-1,0,35355,0,28882 +131262,0,0,-1,-1,-1,0,22840,0,28883 +131263,0,0,-1,-1,-1,0,22840,0,28884 +131264,0,0,-1,-1,-1,0,35407,0,28885 +131265,0,1,0,-1,-1,0,18030,0,28976 +131266,0,1,0,-1,-1,0,18030,0,28977 +131267,0,1,0,-1,-1,0,7680,0,28978 +131268,0,1,0,-1,-1,0,17367,0,28980 +131269,0,1,0,-1,-1,0,15714,0,28981 +131270,0,1,0,-1,-1,0,26154,0,29062 +131271,1,1,0,-1,-1,0,21627,0,29062 +131272,0,1,0,-1,-1,0,33820,0,29063 +131273,1,1,0,-1,-1,0,21634,0,29063 +131274,0,1,0,-1,-1,0,18042,0,29064 +131275,1,1,0,-1,-1,0,21620,0,29064 +131276,0,1,0,-1,-1,0,18045,0,29065 +131277,0,1,0,-1,-1,0,14054,0,29066 +131278,0,1,0,-1,-1,0,9332,0,29152 +131279,0,1,0,-1,-1,0,34611,0,29153 +131280,0,1,0,-1,-1,0,34611,0,29155 +131281,0,1,0,-1,-1,0,9396,0,29157 +131282,0,1,0,-1,-1,0,15714,0,29243 +131283,1,1,0,-1,-1,0,21620,0,29243 +131284,0,1,0,-1,-1,0,17367,0,29244 +131285,0,1,0,-1,-1,0,18050,0,29245 +131286,1,1,0,-1,-1,0,21629,0,29245 +131287,0,1,0,-1,-1,0,15811,0,29246 +131288,0,1,0,-1,-1,0,15814,0,29247 +131289,0,1,0,-1,-1,0,18029,0,29334 +131290,1,1,0,-1,-1,0,18378,0,29334 +131291,0,1,0,-1,-1,0,15808,0,29335 +131292,0,1,0,-1,-1,0,14052,0,29339 +131293,1,1,0,-1,-1,0,21363,0,29339 +131294,0,1,0,-1,-1,0,9330,0,29340 +131295,0,1,0,0,0,0,15826,0,29515 +131296,1,1,0,-1,-1,0,21630,0,29515 +131297,0,1,0,0,0,0,9333,0,29516 +131298,1,1,0,-1,-1,0,21629,0,29516 +131299,0,1,0,0,0,0,15808,0,29517 +131300,1,1,0,-1,-1,0,21620,0,29517 +131301,0,1,0,0,0,0,18054,0,29519 +131302,1,1,0,-1,-1,0,21630,0,29519 +131303,0,1,0,0,0,0,14798,0,29520 +131304,1,1,0,-1,-1,0,21365,0,29520 +131305,0,1,0,-1,-1,0,7597,0,29610 +131306,1,1,0,-1,-1,0,18384,0,29610 +131307,2,1,0,-1,-1,0,9415,0,29610 +131308,0,1,0,-1,-1,0,9345,0,29611 +131309,0,1,0,-1,-1,0,9346,0,29612 +131310,1,1,0,-1,-1,0,18379,0,29612 +131311,0,1,0,-1,-1,0,23300,0,29613 +131312,1,1,0,-1,-1,0,7597,0,29613 +131313,0,1,0,-1,-1,0,14054,0,29614 +131314,1,1,0,-1,-1,0,7597,0,29614 +131315,0,0,-1,-1,-1,0,483,0,29700 +131316,1,6,0,-1,-1,0,35533,0,29700 +131317,0,0,-1,-1,-1,0,483,0,29701 +131318,1,6,0,-1,-1,0,35534,0,29701 +131319,0,0,-1,-1,-1,0,483,0,29702 +131320,1,6,0,-1,-1,0,35535,0,29702 +131321,0,0,-1,-1,-1,0,483,0,29703 +131322,1,6,0,-1,-1,0,35536,0,29703 +131323,0,1,0,-1,-1,0,15812,0,29782 +131324,1,1,0,-1,-1,0,21633,0,29782 +131325,0,1,0,-1,-1,0,13665,0,29783 +131326,0,1,0,-1,-1,0,18050,0,29784 +131327,0,1,0,-1,-1,0,9334,0,29785 +131328,1,1,0,-1,-1,0,21620,0,29785 +131329,0,1,0,-1,-1,0,9331,0,29787 +131330,0,1,0,-1,-1,0,15824,0,29788 +131331,0,1,0,-1,-1,0,21629,0,31222 +131332,0,1,0,-1,-1,0,14052,0,31226 +131333,0,2,0,-1,-1,0,38282,0,31318 +131334,0,1,0,-1,-1,0,15714,0,31321 +131335,0,2,0,-1,-1,0,38284,0,31322 +131336,0,1,0,-1,-1,0,18044,0,29976 +131337,1,1,0,-1,-1,0,21365,0,29976 +131338,0,1,0,-1,-1,0,31941,0,29977 +131339,0,1,0,-1,-1,0,28264,0,29978 +131340,0,1,0,-1,-1,0,15825,0,29979 +131341,0,1,0,-1,-1,0,44071,0,29981 +131342,0,1,0,-1,-1,0,18042,0,30062 +131343,0,1,0,-1,-1,0,37739,0,30063 +131344,0,1,0,-1,-1,0,33484,0,30064 +131345,0,1,0,-1,-1,0,21633,0,30065 +131346,1,1,0,-1,-1,0,15696,0,30065 +131347,0,1,0,-1,-1,0,15825,0,30146 +131348,0,1,0,-1,-1,0,15829,0,30148 +131349,0,1,0,-1,-1,0,15813,0,30149 +131350,0,1,0,-1,-1,0,42089,0,30150 +131351,0,1,0,-1,-1,0,18046,0,30151 +131352,1,1,0,-1,-1,0,21626,0,30151 +131353,0,1,0,-1,-1,0,18057,0,30235 +131354,0,0,-1,-1,-1,0,483,0,30322 +131355,1,6,0,-1,-1,0,36390,0,30322 +131356,0,0,-1,-1,-1,0,483,0,30323 +131357,1,6,0,-1,-1,0,36391,0,30323 +131358,0,0,-1,-1,-1,0,483,0,30324 +131359,1,6,0,-1,-1,0,36392,0,30324 +131360,0,0,1,60000,-1,0,36532,0,30416 +131361,0,2,0,-1,-1,0,16939,0,30418 +131362,0,1,0,-1,-1,0,9138,0,30504 +131363,0,0,0,-1,-1,0,37020,0,30595 +131364,0,1,0,-1,-1,0,18039,0,30862 +131365,0,1,0,-1,-1,0,15815,0,30863 +131366,0,1,0,-1,-1,0,9333,0,30864 +131367,0,1,0,-1,-1,0,15810,0,30865 +131368,0,1,0,-1,-1,0,28264,0,30945 +131369,0,1,0,-1,-1,0,17493,0,30946 +131370,0,1,0,-1,-1,0,15824,0,30947 +131371,1,1,0,-1,-1,0,21618,0,30947 +131372,0,1,0,-1,-1,0,15831,0,30948 +131373,1,1,0,-1,-1,0,21363,0,30948 +131374,0,1,0,-1,-1,0,14052,0,30949 +131375,0,1,0,-1,-1,0,15814,0,30950 +131376,1,1,0,-1,-1,0,21362,0,30950 +131377,0,1,0,-1,-1,0,28264,0,31035 +131378,0,1,0,-1,-1,0,36430,0,31036 +131379,0,1,0,-1,-1,0,37952,0,31037 +131380,1,1,0,-1,-1,0,21629,0,31037 +131381,0,1,0,-1,-1,0,36428,0,31038 +131382,1,1,0,-1,-1,0,20959,0,31038 +131383,0,1,0,-1,-1,0,34760,0,31040 +131384,0,0,-1,-1,-1,0,38170,0,31124 +131385,0,1,0,-1,-1,0,18049,0,31127 +131386,0,0,0,1000,-1,0,38173,0,31128 +131387,0,0,12,5000,5000,0,38177,0,31129 +131388,0,1,0,-1,-1,0,14798,0,31230 +131389,0,1,0,-1,-1,0,38290,0,31323 +131390,0,1,0,-1,-1,0,14049,0,31326 +131391,1,1,0,-1,-1,0,21628,0,31326 +131392,0,1,0,-1,-1,0,38297,0,31328 +131393,0,1,0,-1,-1,0,14047,0,29982 +131394,0,1,0,-1,-1,0,18044,0,29984 +131395,0,1,0,-1,-1,0,15830,0,29985 +131396,0,1,0,-1,-1,0,26142,0,29986 +131397,0,1,0,-1,-1,0,18035,0,30066 +131398,1,1,0,-1,-1,0,42082,0,30066 +131399,0,1,0,-1,-1,0,28360,0,30067 +131400,0,1,0,-1,-1,0,9335,0,30070 +131401,1,1,0,-1,-1,0,21363,0,30070 +131402,0,1,0,-1,-1,0,42089,0,30152 +131403,1,1,0,-1,-1,0,21629,0,30152 +131404,0,1,0,-1,-1,0,31941,0,30153 +131405,1,1,0,-1,-1,0,21635,0,30153 +131406,0,1,0,-1,-1,0,18046,0,30154 +131407,0,0,-1,0,1000,11,33253,0,30155 +131408,0,0,-1,-1,-1,0,483,0,30156 +131409,1,6,0,-1,-1,0,36210,0,30156 +131410,0,1,0,-1,-1,0,15812,0,30328 +131411,0,1,0,-1,-1,0,15812,0,30329 +131412,1,1,0,-1,-1,0,21630,0,30329 +131413,0,1,0,-1,-1,0,14047,0,30330 +131414,0,1,0,-1,-1,0,14248,0,30331 +131415,0,1,0,0,0,0,21362,0,30422 +131416,0,0,-1,-1,-1,0,36546,0,30425 +131417,0,1,0,-1,-1,0,18050,0,30514 +131418,0,1,0,-1,-1,0,17280,0,30515 +131419,0,1,0,-1,-1,0,9332,0,30599 +131420,0,0,0,-1,-1,0,38214,0,30688 +131421,0,0,0,300000,-1,0,37346,0,30690 +131422,0,1,0,-1,-1,0,18040,0,30868 +131423,0,1,0,-1,-1,0,18039,0,30869 +131424,1,1,0,-1,-1,0,21629,0,30869 +131425,0,1,0,-1,-1,0,18052,0,30870 +131426,0,1,0,-1,-1,0,15819,0,30951 +131427,1,1,0,-1,-1,0,21361,0,30951 +131428,0,1,0,-1,-1,0,14052,0,30952 +131429,0,1,0,-1,-1,0,9333,0,30953 +131430,0,1,0,-1,-1,0,15811,0,30954 +131431,1,1,0,-1,-1,0,21361,0,30954 +131432,0,1,0,-1,-1,0,14049,0,30955 +131433,1,1,0,-1,-1,0,18378,0,30955 +131434,0,1,0,-1,-1,0,14027,0,30956 +131435,1,1,0,-1,-1,0,21363,0,30956 +131436,0,1,0,-1,-1,0,37952,0,31041 +131437,1,1,0,-1,-1,0,21629,0,31041 +131438,0,1,0,-1,-1,0,34760,0,31043 +131439,0,1,0,-1,-1,0,37952,0,31045 +131440,1,1,0,-1,-1,0,21366,0,31045 +131441,0,1,0,-1,-1,0,9336,0,31131 +131442,0,1,0,-1,-1,0,18054,0,31133 +131443,0,1,0,-1,-1,0,18040,0,31329 +131444,1,1,0,-1,-1,0,21363,0,31329 +131445,0,1,0,0,0,0,38305,0,31330 +131446,0,2,0,-1,-1,0,38307,0,31331 +131447,0,2,0,-1,-1,0,38308,0,31332 +131448,0,1,0,0,0,0,15819,0,31333 +131449,1,1,0,-1,-1,0,23217,0,31333 +131450,0,1,0,-1,-1,0,44909,0,31334 +131451,1,1,0,-1,-1,0,38314,0,31334 +131452,0,1,0,-1,-1,0,18058,0,29987 +131453,0,1,0,-1,-1,0,44072,0,29988 +131454,0,1,0,-1,-1,0,18046,0,29989 +131455,0,1,0,-1,-1,0,39988,0,29990 +131456,0,1,0,-1,-1,0,39988,0,29991 +131457,1,1,0,-1,-1,0,21639,0,29991 +131458,0,1,0,-1,-1,0,9334,0,30073 +131459,0,1,0,-1,-1,0,26690,0,30075 +131460,0,1,0,-1,-1,0,14056,0,30076 +131461,1,1,0,-1,-1,0,21364,0,30076 +131462,0,1,0,-1,-1,0,39569,0,30159 +131463,0,1,0,-1,-1,0,18057,0,30160 +131464,0,1,0,-1,-1,0,39569,0,30161 +131465,0,1,0,-1,-1,0,34040,0,30162 +131466,0,1,0,-1,-1,0,9335,0,30333 +131467,1,1,0,-1,-1,0,21620,0,30333 +131468,0,1,0,-1,-1,0,9345,0,30334 +131469,0,1,0,-1,-1,0,14047,0,30335 +131470,0,1,0,0,0,0,14049,0,30336 +131471,1,1,0,-1,-1,0,21363,0,30336 +131472,0,1,0,-1,-1,0,18029,0,30338 +131473,1,1,0,-1,-1,0,21363,0,30338 +131474,0,0,-1,-1,-1,0,36548,0,30426 +131475,0,1,0,-1,-1,0,18050,0,30516 +131476,0,1,0,-1,-1,0,14798,0,30517 +131477,0,1,0,-1,-1,0,14127,0,30518 +131478,0,1,0,-1,-1,0,14248,0,30519 +131479,0,1,0,-1,-1,0,15715,0,30520 +131480,0,1,0,-1,-1,0,14047,0,30521 +131481,0,1,0,-1,-1,0,33141,0,30522 +131482,0,0,0,1800000,-1,0,37360,0,30696 +131483,0,1,0,-1,-1,0,18040,0,30871 +131484,0,1,0,-1,-1,0,18058,0,30872 +131485,0,1,0,-1,-1,0,17320,0,30873 +131486,1,1,0,-1,-1,0,20959,0,30873 +131487,0,1,0,-1,-1,0,28264,0,30957 +131488,0,1,0,-1,-1,0,14055,0,30958 +131489,0,1,0,-1,-1,0,34760,0,31046 +131490,0,1,0,-1,-1,0,36062,0,31047 +131491,1,1,0,-1,-1,0,21628,0,31047 +131492,0,1,0,-1,-1,0,28264,0,31049 +131493,0,1,0,-1,-1,0,28264,0,31050 +131494,0,1,0,-1,-1,0,42076,0,31051 +131495,1,1,0,-1,-1,0,21363,0,31137 +131496,0,1,0,-1,-1,0,18050,0,31138 +131497,1,1,0,-1,-1,0,21619,0,31138 +131498,0,1,0,0,-1,0,9141,0,31139 +131499,0,1,0,-1,-1,0,15715,0,31140 +131500,0,0,0,360000,-1,0,38544,0,31141 +131501,0,1,0,-1,-1,0,14052,0,31240 +131502,0,1,0,-1,-1,0,18046,0,31335 +131503,1,1,0,-1,-1,0,18379,0,31335 +131504,0,1,0,-1,-1,0,34611,0,31336 +131505,1,1,0,-1,-1,0,38319,0,31336 +131506,0,0,-3,3000,-1,0,38318,0,31337 +131507,0,1,0,-1,-1,0,14047,0,31338 +131508,0,1,0,-1,-1,0,13881,0,31339 +131509,0,1,0,-1,-1,0,26142,0,31340 +131510,0,1,0,-1,-1,0,17493,0,29992 +131511,0,1,0,-1,-1,0,34751,0,29993 +131512,0,1,0,-1,-1,0,15819,0,29994 +131513,0,1,0,-1,-1,0,15832,0,29995 +131514,0,2,0,-1,-1,0,36070,0,29996 +131515,1,1,0,-1,-1,0,15812,0,29996 +131516,0,1,0,-1,-1,0,18055,0,30079 +131517,0,1,0,-1,-1,0,18029,0,30080 +131518,1,1,0,-1,-1,0,21626,0,30080 +131519,0,1,0,-1,-1,0,18057,0,30163 +131520,0,1,0,-1,-1,0,26154,0,30164 +131521,1,1,0,-1,-1,0,21637,0,30164 +131522,0,1,0,-1,-1,0,18046,0,30165 +131523,1,1,0,-1,-1,0,21627,0,30165 +131524,0,1,0,-1,-1,0,42089,0,30166 +131525,0,1,0,-1,-1,0,42089,0,30167 +131526,1,1,0,-1,-1,0,20959,0,30167 +131527,0,0,7,5000,5000,0,36310,0,30251 +131528,0,1,0,0,-1,0,9398,0,30252 +131529,0,1,0,-1,-1,0,14254,0,30253 +131530,0,1,0,-1,-1,0,14254,0,30254 +131531,1,1,0,-1,-1,0,21636,0,30254 +131532,0,1,0,-1,-1,0,15825,0,30255 +131533,0,0,0,90000,15000,1141,36432,0,30340 +131534,0,1,0,-1,-1,0,14248,0,30342 +131535,1,1,0,-1,-1,0,21364,0,30342 +131536,0,0,0,120000,120000,1182,42292,0,30343 +131537,0,0,0,120000,120000,1182,42292,0,30344 +131538,0,1,0,-1,-1,0,9343,0,30523 +131539,0,0,0,30000,-1,0,36867,0,30527 +131540,0,0,0,-1,3000,330,37015,0,30609 +131541,0,0,-1,0,1000,11,27094,0,30610 +131542,0,0,0,5000,5000,0,37390,0,30701 +131543,0,1,0,-1,-1,0,37649,0,30787 +131544,0,1,0,-1,-1,0,37651,0,30788 +131545,0,1,0,-1,-1,0,37652,0,30789 +131546,0,0,-1,-1,-1,0,37984,0,30875 +131547,0,0,-1,0,0,0,39409,0,30877 +131548,0,1,0,-1,-1,0,17320,0,30878 +131549,0,1,0,-1,-1,0,15824,0,30879 +131550,0,1,0,-1,-1,0,14047,0,30968 +131551,0,1,0,-1,-1,0,42076,0,31052 +131552,0,1,0,-1,-1,0,34760,0,31053 +131553,0,1,0,-1,-1,0,28264,0,31054 +131554,0,1,0,-1,-1,0,28264,0,31055 +131555,0,1,0,-1,-1,0,34760,0,31056 +131556,0,1,0,-1,-1,0,34760,0,31057 +131557,0,1,0,-1,-1,0,26227,0,31142 +131558,0,0,0,1000,-1,0,39163,0,31144 +131559,0,0,0,30000,-1,0,39223,0,31146 +131560,0,1,0,-1,-1,0,14049,0,31147 +131561,0,1,0,-1,-1,0,34495,0,31342 +131562,1,1,0,-1,-1,0,21630,0,31342 +131563,0,1,0,-1,-1,0,25179,0,31343 +131564,0,0,0,-1,-1,0,38336,0,31344 +131565,0,0,-1,-1,-1,0,35724,0,31346 +131566,0,0,-1,-1,-1,0,38345,0,31347 +131567,0,1,0,-1,-1,0,15814,0,29997 +131568,0,1,0,-1,-1,0,18050,0,30000 +131569,0,1,0,-1,-1,0,15814,0,30001 +131570,1,1,0,-1,-1,0,21361,0,30001 +131571,0,1,0,-1,-1,0,14049,0,30082 +131572,0,1,0,-1,-1,0,18045,0,30084 +131573,0,1,0,-1,-1,0,15817,0,30085 +131574,0,1,0,-1,-1,0,18047,0,30168 +131575,1,1,0,-1,-1,0,21629,0,30168 +131576,0,1,0,-1,-1,0,39569,0,30169 +131577,1,1,0,-1,-1,0,21632,0,30169 +131578,0,1,0,-1,-1,0,18057,0,30170 +131579,1,1,0,-1,-1,0,21628,0,30170 +131580,0,1,0,-1,-1,0,34040,0,30171 +131581,1,1,0,-1,-1,0,21628,0,30171 +131582,0,1,0,-1,-1,0,34040,0,30172 +131583,0,1,0,-1,-1,0,18046,0,30256 +131584,0,0,0,60000,0,0,36314,0,30259 +131585,0,0,0,120000,120000,1182,42292,0,30345 +131586,0,0,0,120000,120000,1182,42292,0,30346 +131587,0,0,0,0,0,0,36444,0,30347 +131588,1,0,-1,0,120000,1153,5720,0,30347 +131589,0,0,0,120000,120000,1182,42292,0,30348 +131590,0,0,0,120000,120000,1182,42292,0,30349 +131591,0,0,0,120000,120000,1182,42292,0,30350 +131592,0,0,0,-1,-1,0,36565,0,30436 +131593,0,0,0,-1,-1,0,36565,0,30437 +131594,0,0,-1,-1,-1,0,3366,0,30438 +131595,0,1,0,-1,-1,0,35875,0,30528 +131596,0,0,0,1000,-1,0,36904,0,30530 +131597,0,1,0,-1,-1,0,18053,0,30531 +131598,0,1,0,-1,-1,0,18053,0,30532 +131599,0,0,0,-1,-1,0,37055,0,30614 +131600,0,0,-1,-1,-1,0,37058,0,30615 +131601,0,0,-1,-1,-1,0,37062,0,30616 +131602,0,0,-1,0,1000,59,34291,0,30703 +131603,0,0,-1,-1,-1,0,37426,0,30704 +131604,0,1,0,-1,-1,0,21638,0,30708 +131605,0,0,-1,-1,-1,0,37678,0,30793 +131606,0,1,0,-1,-1,0,15815,0,30880 +131607,0,1,0,-1,-1,0,15814,0,30881 +131608,0,1,0,-1,-1,0,18039,0,30882 +131609,0,1,0,-1,-1,0,44916,0,30883 +131610,0,1,0,-1,-1,0,39569,0,30884 +131611,1,1,0,-1,-1,0,42056,0,30884 +131612,0,1,0,-1,-1,0,17320,0,30885 +131613,0,1,0,-1,-1,0,42094,0,30969 +131614,0,1,0,-1,-1,0,14054,0,30971 +131615,0,1,0,-1,-1,0,39925,0,30972 +131616,0,1,0,900000,30000,0,14056,0,30973 +131617,0,1,0,-1,-1,0,35074,0,30974 +131618,0,1,0,-1,-1,0,34760,0,31058 +131619,0,1,0,-1,-1,0,28264,0,31059 +131620,1,1,0,-1,-1,0,33491,0,31059 +131621,0,1,0,-1,-1,0,36062,0,31060 +131622,1,1,0,-1,-1,0,21363,0,31060 +131623,0,1,0,-1,-1,0,28264,0,31061 +131624,1,1,0,-1,-1,0,21633,0,31061 +131625,0,1,0,-1,-1,0,15807,0,31148 +131626,0,1,0,-1,-1,0,15715,0,31149 +131627,0,1,0,-1,-1,0,18031,0,31150 +131628,0,1,0,0,-1,0,38174,0,31154 +131629,0,0,-1,-1,-1,0,38202,0,31251 +131630,0,1,0,-1,-1,0,9331,0,31255 +131631,0,0,-3,-1,-1,0,38362,0,31350 +131632,0,1,0,-1,-1,0,14052,0,30003 +131633,0,1,0,-1,-1,0,14055,0,30004 +131634,0,1,0,-1,-1,0,15826,0,30088 +131635,0,1,0,-1,-1,0,9333,0,30089 +131636,0,2,0,-1,-1,0,36111,0,30090 +131637,0,1,0,-1,-1,0,14056,0,30091 +131638,0,1,0,-1,-1,0,18044,0,30092 +131639,0,1,0,-1,-1,0,18057,0,30173 +131640,1,1,0,-1,-1,0,18379,0,30173 +131641,0,0,5,5000,5000,0,32578,0,30175 +131642,0,1,0,-1,-1,0,20959,0,30262 +131643,1,1,0,-1,-1,0,9344,0,30262 +131644,0,1,0,-1,-1,0,9334,0,30263 +131645,1,1,0,-1,-1,0,20959,0,30263 +131646,0,1,0,-1,-1,0,9417,0,30265 +131647,0,0,0,120000,120000,1182,42292,0,30351 +131648,0,0,10,30000,-1,0,35129,0,30353 +131649,0,0,0,30000,-1,0,36460,0,30354 +131650,0,0,-1,0,1000,11,35270,0,30355 +131651,0,0,-1,-1,-1,0,483,0,30443 +131652,1,6,0,-1,-1,0,28568,0,30443 +131653,0,0,-1,-1,-1,0,483,0,30444 +131654,1,6,0,-1,-1,0,35530,0,30444 +131655,0,1,0,-1,-1,0,15817,0,30534 +131656,1,1,0,-1,-1,0,21627,0,30534 +131657,1,1,0,-1,-1,0,18378,0,30536 +131658,0,1,0,-1,-1,0,18038,0,30537 +131659,0,1,0,-1,-1,0,15817,0,30538 +131660,0,0,-1,-1,-1,0,37065,0,30618 +131661,0,1,0,-1,-1,0,38299,0,30619 +131662,1,1,0,120000,-1,0,42082,0,30619 +131663,0,0,0,120000,0,0,38325,0,30620 +131664,0,1,0,-1,-1,0,38326,0,30621 +131665,1,1,0,-1,-1,0,38327,0,30621 +131666,0,1,0,-1,-1,0,18050,0,30709 +131667,0,1,0,-1,-1,0,15813,0,30710 +131668,0,0,0,0,0,0,37435,0,30711 +131669,0,0,0,-1,-1,0,37452,0,30712 +131670,0,1,0,-1,-1,0,17320,0,30886 +131671,0,1,0,-1,-1,0,25179,0,30887 +131672,1,1,0,-1,-1,0,42115,0,30887 +131673,0,1,0,-1,-1,0,39569,0,30888 +131674,0,1,0,-1,-1,0,40680,0,30975 +131675,0,1,0,-1,-1,0,39925,0,30977 +131676,0,1,0,-1,-1,0,39987,0,30978 +131677,0,1,0,-1,-1,0,42094,0,30979 +131678,0,1,0,-1,-1,0,37952,0,31063 +131679,1,1,0,-1,-1,0,21629,0,31063 +131680,0,1,0,-1,-1,0,34760,0,31064 +131681,1,1,0,-1,-1,0,21632,0,31064 +131682,0,1,0,-1,-1,0,33233,0,31065 +131683,1,1,0,-1,-1,0,21635,0,31065 +131684,0,1,0,-1,-1,0,37952,0,31066 +131685,1,1,0,-1,-1,0,21629,0,31066 +131686,0,1,0,-1,-1,0,34760,0,31067 +131687,1,1,0,-1,-1,0,18378,0,31067 +131688,0,1,0,-1,-1,0,9316,0,31258 +131689,0,0,-1,-1,-1,0,483,0,31354 +131690,1,6,0,-1,-1,0,17635,0,31354 +131691,0,0,-1,-1,-1,0,483,0,31355 +131692,1,6,0,-1,-1,0,17637,0,31355 +131693,0,0,-1,-1,-1,0,483,0,31356 +131694,1,6,0,-1,-1,0,17636,0,31356 +131695,0,0,-1,-1,-1,0,483,0,31357 +131696,1,6,0,-1,-1,0,17638,0,31357 +131697,0,1,0,-1,-1,0,18053,0,30008 +131698,1,1,0,-1,-1,0,35126,0,30008 +131699,0,1,0,-1,-1,0,44906,0,30010 +131700,0,1,0,-1,-1,0,36430,0,30011 +131701,0,1,0,-1,-1,0,36428,0,30012 +131702,0,1,0,-1,-1,0,14027,0,30013 +131703,0,1,0,-1,-1,0,15816,0,30014 +131704,0,1,0,-1,-1,0,15820,0,30093 +131705,0,0,0,0,30000,1167,36107,0,30094 +131706,0,1,0,-1,-1,0,44073,0,30095 +131707,0,1,0,-1,-1,0,18379,0,30097 +131708,1,1,0,-1,-1,0,18044,0,30097 +131709,0,1,0,-1,-1,0,14127,0,30268 +131710,0,1,0,-1,-1,0,14054,0,30271 +131711,0,1,0,-1,-1,0,15811,0,30272 +131712,0,1,0,-1,-1,0,15811,0,30273 +131713,1,1,0,-1,-1,0,21631,0,30273 +131714,0,0,-1,0,1000,11,33269,0,30357 +131715,0,0,-1,0,1000,11,33262,0,30358 +131716,0,0,-1,0,1000,11,33255,0,30359 +131717,0,0,0,1500,-1,0,24988,0,30360 +131718,0,0,-1,0,1000,11,33264,0,30361 +131719,0,1,0,-1,-1,0,37536,0,30446 +131720,0,1,0,300000,-1,0,37197,0,30447 +131721,0,1,0,-1,-1,0,37507,0,30448 +131722,0,1,0,300000,30000,1141,37386,0,30449 +131723,0,1,0,300000,-1,0,37173,0,30450 +131724,0,0,0,-1,-1,0,36923,0,30540 +131725,0,1,0,-1,-1,0,14055,0,30541 +131726,0,0,0,14400000,-1,0,36890,0,30542 +131727,0,1,0,-1,-1,0,18041,0,30543 +131728,0,1,0,-1,-1,0,38347,0,30626 +131729,0,1,0,-1,-1,0,42083,0,30627 +131730,0,0,0,1000,-1,0,37475,0,30717 +131731,0,0,0,-1,-1,0,37690,0,30803 +131732,0,1,0,-1,-1,0,26596,0,30804 +131733,1,1,0,-1,-1,0,37817,0,30804 +131734,0,0,0,-1,-1,0,37822,0,30805 +131735,0,1,0,-1,-1,0,28840,0,30891 +131736,0,1,0,-1,-1,0,15825,0,30892 +131737,1,1,0,-1,-1,0,27206,0,30892 +131738,2,1,0,-1,-1,0,27043,0,30892 +131739,0,1,0,-1,-1,0,26690,0,30893 +131740,1,1,0,-1,-1,0,33780,0,30893 +131741,0,1,0,-1,-1,0,23732,0,30894 +131742,0,1,0,-1,-1,0,17320,0,30895 +131743,0,1,0,-1,-1,0,15807,0,30981 +131744,0,1,0,-1,-1,0,36062,0,30983 +131745,1,1,0,-1,-1,0,21637,0,30983 +131746,0,1,0,90000,-1,0,13881,0,30984 +131747,0,1,0,-1,-1,0,18052,0,30985 +131748,0,1,0,-1,-1,0,37952,0,31068 +131749,1,1,0,-1,-1,0,21629,0,31068 +131750,0,1,0,-1,-1,0,36062,0,31069 +131751,1,1,0,-1,-1,0,21629,0,31069 +131752,0,1,0,-1,-1,0,28264,0,31070 +131753,1,1,0,-1,-1,0,21633,0,31070 +131754,0,1,0,-1,-1,0,9334,0,31072 +131755,0,1,0,-1,-1,0,14049,0,31073 +131756,0,0,-1,-1,-1,0,483,0,31358 +131757,1,6,0,-1,-1,0,31080,0,31358 +131758,0,0,-1,-1,-1,0,483,0,31359 +131759,1,6,0,-1,-1,0,28918,0,31359 +131760,0,1,-1,-1,-1,0,38438,0,31360 +131761,1,0,0,-1,-1,0,38444,0,31360 +131762,0,0,-1,-1,-1,0,483,0,31361 +131763,1,6,0,-1,-1,0,35549,0,31361 +131764,0,0,-1,-1,-1,0,483,0,31362 +131765,1,6,0,-1,-1,0,35554,0,31362 +131766,0,1,0,-1,-1,0,18057,0,30015 +131767,1,1,0,-1,-1,0,18379,0,30016 +131768,0,1,0,-1,-1,0,15820,0,30017 +131769,0,1,0,-1,-1,0,18047,0,30018 +131770,1,1,0,-1,-1,0,21628,0,30018 +131771,0,1,0,-1,-1,0,18053,0,30019 +131772,1,1,0,-1,-1,0,18379,0,30019 +131773,0,1,0,-1,-1,0,18040,0,30100 +131774,0,1,0,-1,-1,0,15832,0,30101 +131775,0,1,0,-1,-1,0,15814,0,30103 +131776,0,1,0,-1,-1,0,17367,0,30186 +131777,0,1,0,-1,-1,0,18054,0,30187 +131778,0,1,0,-1,-1,0,33063,0,30188 +131779,1,1,0,-1,-1,0,17367,0,30188 +131780,0,1,0,-1,-1,0,21625,0,30274 +131781,1,1,0,-1,-1,0,9415,0,30274 +131782,2,1,0,-1,-1,0,9329,0,30274 +131783,0,1,0,1500,-1,0,9407,0,30276 +131784,1,1,0,-1,-1,0,21362,0,30276 +131785,0,1,0,-1,-1,0,15807,0,30277 +131786,0,1,0,-1,-1,0,15807,0,30279 +131787,0,1,0,-1,-1,0,15812,0,30362 +131788,0,1,0,-1,-1,0,14798,0,30363 +131789,1,1,0,-1,-1,0,9332,0,30364 +131790,0,1,0,-1,-1,0,13881,0,30366 +131791,0,1,0,-1,-1,0,14127,0,30368 +131792,0,1,0,-1,-1,0,13665,0,30455 +131793,0,0,0,14400000,-1,0,36941,0,30544 +131794,0,0,0,180000,-1,0,38351,0,30629 +131795,0,1,0,-1,-1,0,37468,0,30719 +131796,0,1,0,-1,-1,0,37447,0,30720 +131797,0,1,0,-1,-1,0,37495,0,30721 +131798,0,1,0,-1,-1,0,42124,0,30723 +131799,0,0,-1,-1,-1,0,37834,0,30811 +131800,0,1,0,-1,-1,0,17320,0,30897 +131801,0,1,0,-1,-1,0,42107,0,30898 +131802,1,1,0,-1,-1,0,42095,0,30898 +131803,0,1,0,0,0,0,25179,0,30899 +131804,0,1,0,-1,-1,0,28735,0,30900 +131805,0,1,0,-1,-1,0,17280,0,30987 +131806,0,1,0,-1,-1,0,42077,0,30988 +131807,0,1,0,-1,-1,0,13881,0,31075 +131808,0,1,0,-1,-1,0,9346,0,31076 +131809,0,1,0,-1,-1,0,14056,0,31077 +131810,0,1,0,-1,-1,0,23203,0,31078 +131811,0,1,0,-1,-1,0,18053,0,31272 +131812,0,1,0,-1,-1,0,38448,0,31366 +131813,0,1,0,-1,-1,0,26695,0,30020 +131814,0,1,0,-1,-1,0,44914,0,30021 +131815,0,1,0,-1,-1,0,37738,0,30023 +131816,0,1,0,-1,-1,0,18055,0,30024 +131817,0,1,0,-1,-1,0,15818,0,30104 +131818,0,1,0,-1,-1,0,15808,0,30105 +131819,0,1,0,-1,-1,0,15823,0,30106 +131820,0,1,0,-1,-1,0,23213,0,30107 +131821,0,1,0,-1,-1,0,42110,0,30108 +131822,1,1,0,-1,-1,0,21366,0,30108 +131823,0,0,-1,0,0,0,36281,0,30191 +131824,0,0,-1,0,0,0,36282,0,30193 +131825,0,0,-1,-1,-1,0,483,0,30280 +131826,1,6,0,-1,-1,0,36315,0,30280 +131827,0,0,-1,-1,-1,0,483,0,30281 +131828,1,6,0,-1,-1,0,36316,0,30281 +131829,0,0,-1,-1,-1,0,483,0,30282 +131830,1,6,0,-1,-1,0,36317,0,30282 +131831,0,0,-1,-1,-1,0,483,0,30283 +131832,1,6,0,-1,-1,0,36318,0,30283 +131833,0,1,0,0,0,0,9333,0,30370 +131834,0,1,0,-1,-1,0,14127,0,30371 +131835,0,1,0,-1,-1,0,9333,0,30372 +131836,0,1,0,-1,-1,0,14127,0,30373 +131837,0,1,0,-1,-1,0,14127,0,30374 +131838,1,1,0,-1,-1,0,18378,0,30374 +131839,0,0,-1,0,1000,59,27089,0,30457 +131840,0,0,-1,0,1000,11,27094,0,30458 +131841,0,1,0,-1,-1,0,18057,0,30459 +131842,0,1,0,-1,-1,0,13881,0,30460 +131843,0,1,0,-1,-1,0,13881,0,30461 +131844,0,0,0,0,10000,1167,36652,0,30462 +131845,0,0,0,-1,-1,0,37097,0,30638 +131846,0,1,0,-1,-1,0,14798,0,30725 +131847,0,1,0,-1,-1,0,18045,0,30726 +131848,0,1,0,-1,-1,0,25179,0,30727 +131849,1,1,0,-1,-1,0,21637,0,30727 +131850,0,1,0,-1,-1,0,26225,0,30728 +131851,1,1,0,-1,-1,0,21365,0,30728 +131852,0,1,0,-1,-1,0,14052,0,30729 +131853,0,0,-1,0,1000,11,433,0,30816 +131854,0,0,0,-1,-1,0,37830,0,30818 +131855,0,1,0,-1,-1,0,42113,0,30901 +131856,0,1,0,-1,-1,0,42061,0,30902 +131857,0,1,0,-1,-1,0,26225,0,30904 +131858,0,1,0,-1,-1,0,34509,0,30905 +131859,0,1,0,-1,-1,0,18055,0,30991 +131860,1,1,0,-1,-1,0,42078,0,30991 +131861,0,1,0,-1,-1,0,37952,0,30992 +131862,1,1,0,-1,-1,0,21366,0,30992 +131863,1,1,0,-1,-1,0,21631,0,30993 +131864,0,1,0,-1,-1,0,42093,0,30994 +131865,1,1,0,-1,-1,0,21634,0,30994 +131866,0,1,0,-1,-1,0,28264,0,30995 +131867,0,2,0,-1,-1,0,36111,0,31082 +131868,0,0,0,-1,-1,0,3366,0,31084 +131869,0,1,0,-1,-1,0,21362,0,31173 +131870,0,1,0,-1,-1,0,14056,0,31175 +131871,0,1,0,-1,-1,0,9346,0,31178 +131872,0,1,0,-1,-1,0,18378,0,31276 +131873,0,1,0,-1,-1,0,15806,0,31277 +131874,0,1,0,-1,-1,0,38224,0,31279 +131875,0,0,-1,0,30000,1167,38439,0,31372 +131876,0,0,-1,-1,-1,0,38453,0,31373 +131877,0,1,0,-1,-1,0,9333,0,30026 +131878,0,1,0,-1,-1,0,26154,0,30027 +131879,0,1,0,-1,-1,0,23181,0,30028 +131880,0,1,0,-1,-1,0,18044,0,30029 +131881,0,1,0,-1,-1,0,18044,0,30030 +131882,1,1,0,-1,-1,0,21632,0,30030 +131883,0,1,0,-1,-1,0,18054,0,30109 +131884,0,1,0,-1,-1,0,18045,0,30110 +131885,0,1,0,-1,-1,0,31941,0,30111 +131886,0,1,0,-1,-1,0,18048,0,30112 +131887,0,1,0,-1,-1,0,40443,0,30114 +131888,0,1,0,-1,-1,0,21627,0,30194 +131889,0,0,-1,0,0,0,36283,0,30195 +131890,0,1,0,-1,-1,0,39569,0,30196 +131891,0,0,-1,0,0,0,36284,0,30197 +131892,0,0,-1,0,0,0,36285,0,30198 +131893,0,0,-1,0,0,0,36286,0,30199 +131894,0,1,0,-1,-1,0,18049,0,30284 +131895,0,1,0,-1,-1,0,15811,0,30285 +131896,0,1,0,-1,-1,0,18049,0,30286 +131897,0,1,0,-1,-1,0,14248,0,30287 +131898,0,1,0,-1,-1,0,14089,0,30288 +131899,0,1,0,-1,-1,0,14089,0,30289 +131900,0,1,0,-1,-1,0,18036,0,30377 +131901,0,1,0,-1,-1,0,23203,0,30378 +131902,0,1,0,-1,-1,0,18036,0,30463 +131903,1,1,0,-1,-1,0,20959,0,30463 +131904,0,1,0,-1,-1,0,18032,0,30464 +131905,1,1,0,-1,-1,0,21629,0,30464 +131906,0,1,0,-1,-1,0,18046,0,30465 +131907,1,1,0,-1,-1,0,21641,0,30465 +131908,0,0,-1,-1,-1,0,37096,0,30639 +131909,0,1,0,-1,-1,0,21628,0,30642 +131910,1,1,0,-1,-1,0,42041,0,30642 +131911,0,1,0,-1,-1,0,21644,0,30643 +131912,1,1,0,-1,-1,0,15809,0,30643 +131913,0,1,0,-1,-1,0,14052,0,30644 +131914,0,1,0,-1,-1,0,33485,0,30730 +131915,0,1,0,-1,-1,0,42125,0,30732 +131916,1,1,0,-1,-1,0,40231,0,30732 +131917,0,1,0,-1,-1,0,15820,0,30733 +131918,0,1,0,-1,-1,0,33484,0,30734 +131919,0,1,0,-1,-1,0,18053,0,30735 +131920,0,1,0,-1,-1,0,33782,0,30907 +131921,1,1,0,-1,-1,0,21629,0,30907 +131922,0,1,0,-1,-1,0,42059,0,30908 +131923,1,1,0,-1,-1,0,42060,0,30908 +131924,0,1,0,-1,-1,0,18058,0,30909 +131925,0,1,0,-1,-1,0,42062,0,30910 +131926,0,1,0,-1,-1,0,36062,0,30996 +131927,1,1,0,-1,-1,0,21629,0,30996 +131928,0,1,0,-1,-1,0,14054,0,30998 +131929,0,1,0,-1,-1,0,14049,0,30999 +131930,0,1,0,-1,-1,0,9336,0,31000 +131931,0,0,-1,-1,-1,0,38134,0,31088 +131933,0,1,0,-1,-1,0,14055,0,31280 +131934,0,1,0,-1,-1,0,15826,0,31281 +131935,0,1,0,-1,-1,0,18042,0,31282 +131936,0,1,0,-1,-1,0,14055,0,31283 +131937,0,1,0,-1,-1,0,15808,0,29942 +131938,0,1,0,-1,-1,0,15808,0,29943 +131939,0,1,0,-1,-1,0,28113,0,30031 +131940,0,1,0,-1,-1,0,14054,0,30033 +131941,0,1,0,-1,-1,0,14248,0,30034 +131942,1,1,0,-1,-1,0,34593,0,30034 +131943,0,1,0,-1,-1,0,18044,0,30035 +131944,1,1,0,-1,-1,0,21365,0,30035 +131945,0,1,0,-1,-1,0,34593,0,30116 +131946,0,1,0,-1,-1,0,28325,0,30117 +131947,0,1,0,-1,-1,0,17367,0,30200 +131948,0,1,0,-1,-1,0,18058,0,30201 +131949,0,1,0,-1,-1,0,18057,0,30205 +131950,0,1,0,-1,-1,0,39569,0,30206 +131951,0,1,0,-1,-1,0,14054,0,30290 +131952,0,1,0,-1,-1,0,36331,0,30291 +131953,0,0,0,-1,-1,0,36342,0,30292 +131954,0,0,0,90000,15000,0,36347,0,30293 +131955,1,1,0,-1,-1,0,21632,0,30293 +131956,0,1,0,-1,-1,0,17280,0,30294 +131957,0,1,0,-1,-1,0,15807,0,30295 +131958,0,1,0,-1,-1,0,14798,0,30381 +131959,0,1,0,-1,-1,0,14047,0,30382 +131960,0,1,0,-1,-1,0,18050,0,30383 +131961,0,1,0,-1,-1,0,14089,0,30384 +131962,0,1,0,-1,-1,0,14054,0,30385 +131963,0,0,-1,-1,-1,0,483,0,30469 +131964,1,6,0,-1,-1,0,36665,0,30469 +131965,0,0,-1,-1,-1,0,483,0,30470 +131966,1,6,0,-1,-1,0,36667,0,30470 +131967,0,0,-1,-1,-1,0,483,0,30471 +131968,1,6,0,-1,-1,0,36668,0,30471 +131969,0,0,-1,-1,-1,0,483,0,30472 +131970,1,6,0,-1,-1,0,36669,0,30472 +131971,0,0,-1,-1,-1,0,483,0,30473 +131972,1,6,0,-1,-1,0,36670,0,30473 +131973,0,0,0,-1,-1,0,37172,0,30561 +131974,0,1,0,-1,-1,0,18045,0,30736 +131975,0,1,0,-1,-1,0,36062,0,30737 +131976,0,1,0,-1,-1,0,15816,0,30738 +131977,0,1,0,-1,-1,0,15824,0,30739 +131978,0,0,-1,-1,-1,0,483,0,30826 +131979,1,6,0,-1,-1,0,37855,0,30826 +131980,0,1,0,-1,-1,0,18046,0,30911 +131981,0,1,0,-1,-1,0,26228,0,30912 +131982,1,1,0,-1,-1,0,35836,0,30912 +131983,0,1,0,-1,-1,0,42063,0,30913 +131984,0,1,0,-1,-1,0,17493,0,30914 +131985,0,1,0,-1,-1,0,15816,0,31001 +131986,1,1,0,-1,-1,0,42098,0,31001 +131987,0,1,0,-1,-1,0,36430,0,31002 +131988,0,1,0,-1,-1,0,15831,0,31003 +131989,1,1,0,-1,-1,0,21630,0,31003 +131990,0,1,0,-1,-1,0,15831,0,31004 +131991,0,1,0,-1,-1,0,34509,0,31005 +131992,1,1,0,-1,-1,0,21634,0,31005 +131993,0,1,0,-1,-1,0,15819,0,31006 +131994,1,1,0,-1,-1,0,40680,0,31006 +131995,0,1,0,-1,-1,0,44899,0,31186 +131996,0,1,0,-1,-1,0,9333,0,31187 +131997,0,1,0,-1,-1,0,15811,0,31286 +131998,0,1,0,-1,-1,0,14254,0,31287 +131999,0,1,0,-1,-1,0,9333,0,31288 +132000,1,1,0,-1,-1,0,17746,0,31288 +132001,0,1,0,-1,-1,0,36428,0,31289 +132002,0,1,0,-1,-1,0,14127,0,31290 +132003,0,1,0,-1,-1,0,15826,0,31291 +132004,0,1,0,-1,-1,0,15818,0,29947 +132005,0,1,0,-1,-1,0,14049,0,29948 +132006,0,1,0,-1,-1,0,15818,0,29951 +132007,1,1,0,-1,-1,0,21618,0,29951 +132008,0,0,5,5000,5000,0,36030,0,29952 +132009,0,1,0,-1,-1,0,18044,0,30036 +132010,0,1,0,-1,-1,0,18055,0,30037 +132011,0,1,0,-1,-1,0,33484,0,30038 +132012,0,1,0,-1,-1,0,15818,0,30039 +132013,0,1,0,-1,-1,0,15818,0,30040 +132014,0,1,0,-1,-1,0,17367,0,30123 +132015,1,1,0,-1,-1,0,35168,0,30123 +132016,0,1,0,-1,-1,0,13881,0,30124 +132017,1,1,0,-1,-1,0,28113,0,30124 +132018,0,1,0,-1,-1,0,34040,0,30207 +132019,0,1,0,-1,-1,0,18056,0,30210 +132020,0,1,0,-1,-1,0,18058,0,30211 +132021,0,1,0,-1,-1,0,13881,0,30296 +132022,0,1,0,-1,-1,0,24196,0,30297 +132023,0,1,0,-1,-1,0,33820,0,30298 +132024,1,1,0,-1,-1,0,21630,0,30298 +132025,0,1,0,-1,-1,0,33820,0,30299 +132026,1,1,0,-1,-1,0,21628,0,30299 +132027,0,0,0,90000,0,0,36372,0,30300 +132028,0,0,-1,-1,-1,0,483,0,30474 +132029,1,6,0,-1,-1,0,36672,0,30474 +132030,0,0,10,30000,30000,0,32580,0,30479 +132031,0,1,0,-1,-1,0,9332,0,30568 +132032,0,0,-1,-1,-1,0,37221,0,30651 +132033,0,0,-1,-1,-1,0,37320,0,30652 +132034,0,0,-1,-1,-1,0,37322,0,30653 +132035,0,0,-1,-1,-1,0,37323,0,30654 +132036,0,0,0,10000,10000,0,37136,0,30656 +132037,0,0,0,15000,-1,0,37573,0,30742 +132038,0,1,0,-1,-1,0,34611,0,30832 +132039,0,0,-1,-1,-1,0,483,0,30833 +132040,1,6,0,-1,-1,0,37873,0,30833 +132041,0,1,0,-1,-1,0,15818,0,30835 +132042,0,1,0,-1,-1,0,18055,0,30836 +132043,0,1,0,-1,-1,0,26155,0,30916 +132044,0,1,0,-1,-1,0,15824,0,30917 +132045,0,1,0,-1,-1,0,42110,0,30918 +132046,0,1,0,-1,-1,0,15824,0,30919 +132047,0,1,0,-1,-1,0,28264,0,30920 +132048,0,1,0,-1,-1,0,36062,0,31007 +132049,1,1,0,-1,-1,0,21629,0,31007 +132050,0,1,0,-1,-1,0,28264,0,31008 +132051,0,1,0,-1,-1,0,44906,0,31009 +132052,0,1,0,-1,-1,0,42077,0,31012 +132053,1,1,0,-1,-1,0,21642,0,31012 +132054,0,2,0,-1,-1,0,24585,0,31193 +132055,1,1,0,-1,-1,0,9332,0,31193 +132056,0,1,0,0,-1,0,9407,0,31196 +132057,1,1,0,-1,-1,0,21631,0,31196 +132058,0,1,0,-1,-1,0,18029,0,31292 +132059,1,1,0,-1,-1,0,18379,0,31292 +132060,0,1,0,-1,-1,0,21626,0,31293 +132061,1,1,0,-1,-1,0,9335,0,31293 +132062,0,1,0,-1,-1,0,21638,0,31294 +132063,0,1,0,-1,-1,0,15828,0,31295 +132064,0,1,0,-1,-1,0,33484,0,31297 +132065,0,0,0,1500,-1,0,36027,0,29953 +132066,0,1,0,-1,-1,0,18050,0,29954 +132067,0,1,0,-1,-1,0,15715,0,29955 +132068,0,0,0,1500,-1,0,36028,0,29956 +132069,0,0,0,1500,-1,0,36029,0,29957 +132070,0,0,0,1500,-1,0,36031,0,29958 +132071,0,1,0,-1,-1,0,18055,0,30043 +132072,1,1,0,-1,-1,0,21627,0,30043 +132073,0,1,0,-1,-1,0,18055,0,30044 +132074,0,1,0,-1,-1,0,15815,0,30045 +132075,0,1,0,-1,-1,0,18053,0,30125 +132076,1,1,0,-1,-1,0,42034,0,30125 +132077,0,1,0,-1,-1,0,18057,0,30126 +132078,1,1,0,-1,-1,0,35074,0,30126 +132079,0,1,0,-1,-1,0,15714,0,30127 +132080,0,1,0,-1,-1,0,39569,0,30212 +132081,0,1,0,-1,-1,0,39569,0,30213 +132082,0,1,0,-1,-1,0,39569,0,30214 +132083,0,1,0,-1,-1,0,18057,0,30215 +132084,0,1,0,-1,-1,0,42089,0,30216 +132085,0,1,0,-1,-1,0,18046,0,30217 +132086,1,1,0,-1,-1,0,21631,0,30217 +132087,0,0,-1,-1,-1,0,483,0,30301 +132088,1,6,0,-1,-1,0,36349,0,30301 +132089,0,0,-1,-1,-1,0,483,0,30302 +132090,1,6,0,-1,-1,0,36351,0,30302 +132091,0,0,-1,-1,-1,0,483,0,30303 +132092,1,6,0,-1,-1,0,36352,0,30303 +132093,0,0,-1,-1,-1,0,483,0,30304 +132094,1,6,0,-1,-1,0,36353,0,30304 +132095,0,0,-1,-1,-1,0,483,0,30305 +132096,1,6,0,-1,-1,0,36355,0,30305 +132097,0,1,0,-1,-1,0,28264,0,30395 +132098,0,1,0,-1,-1,0,15825,0,30396 +132099,0,1,0,-1,-1,0,14027,0,30397 +132100,0,0,0,-1,3000,330,36702,0,30480 +132101,0,0,0,-1,-1,0,36587,0,30481 +132102,0,0,-1,-1,-1,0,483,0,30483 +132103,1,6,0,-1,-1,0,36686,0,30483 +132104,0,0,0,-1,-1,0,37236,0,30657 +132105,0,1,0,-8,-8,0,18043,0,30841 +132106,1,0,0,60000,15000,1141,37877,0,30841 +132107,0,0,-1,-1,-1,0,483,0,30842 +132108,1,6,0,-1,-1,0,37882,0,30842 +132109,0,1,0,-1,-1,0,18052,0,30921 +132110,0,1,0,-1,-1,0,28264,0,30922 +132111,0,1,0,-1,-1,0,14055,0,30923 +132112,0,1,0,-1,-1,0,18049,0,30924 +132113,0,1,0,-1,-1,0,18056,0,30925 +132114,0,1,0,-1,-1,0,14248,0,30926 +132115,0,1,0,-1,-1,0,36428,0,31013 +132116,1,1,0,-1,-1,0,21619,0,31013 +132117,0,1,0,-1,-1,0,34760,0,31014 +132118,1,1,0,-1,-1,0,18378,0,31014 +132119,0,1,0,-1,-1,0,18378,0,31015 +132120,0,1,0,-1,-1,0,42077,0,31016 +132121,1,1,0,-1,-1,0,21642,0,31016 +132122,0,1,0,-1,-1,0,34760,0,31017 +132123,1,1,0,-1,-1,0,21364,0,31017 +132124,0,1,0,-1,-1,0,14055,0,31104 +132125,1,1,0,-1,-1,0,39841,0,31104 +132126,0,1,0,-1,-1,0,39841,0,31105 +132127,0,1,0,-1,-1,0,18034,0,31202 +132128,0,0,0,-1,-1,0,29773,0,31300 +132129,0,1,0,-1,-1,0,9332,0,31303 +132130,0,1,0,-1,-1,0,14799,0,29959 +132131,1,1,0,-1,-1,0,21620,0,29959 +132132,0,0,0,1500,-1,0,36034,0,29960 +132133,0,2,0,-1,-1,0,36041,0,29962 +132134,0,1,0,-1,-1,0,15807,0,29964 +132135,0,1,0,-1,-1,0,15818,0,30046 +132136,0,1,0,-1,-1,0,18039,0,30047 +132137,0,1,0,-1,-1,0,31941,0,30048 +132138,1,1,0,-1,-1,0,21641,0,30048 +132139,0,1,0,-1,-1,0,18053,0,30049 +132140,0,1,0,-1,-1,0,26730,0,30050 +132141,0,1,0,-1,-1,0,42089,0,30134 +132142,0,1,0,-1,-1,0,18046,0,30135 +132143,1,1,0,-1,-1,0,21631,0,30135 +132144,0,1,0,-1,-1,0,15814,0,30218 +132145,0,1,0,-1,-1,0,42089,0,30219 +132146,1,1,0,-1,-1,0,21629,0,30219 +132147,0,1,0,-1,-1,0,31941,0,30220 +132148,1,1,0,-1,-1,0,21634,0,30220 +132149,0,1,0,-1,-1,0,18046,0,30221 +132150,1,1,0,-1,-1,0,18379,0,30221 +132151,0,0,-1,-1,-1,0,483,0,30306 +132152,1,6,0,-1,-1,0,36357,0,30306 +132153,0,0,-1,-1,-1,0,483,0,30307 +132154,1,6,0,-1,-1,0,36358,0,30307 +132155,0,0,-1,-1,-1,0,483,0,30308 +132156,1,6,0,-1,-1,0,36359,0,30308 +132157,0,0,-1,0,1000,59,11009,0,30309 +132158,0,1,0,-1,-1,0,18050,0,30398 +132159,0,1,0,-1,-1,0,15809,0,30399 +132160,0,1,0,-1,-1,0,9345,0,30400 +132161,0,1,0,-1,-1,0,15814,0,30401 +132162,0,1,0,-1,-1,0,22778,0,30487 +132163,0,1,0,-1,-1,0,14097,0,30579 +132164,1,1,0,-1,-1,0,37649,0,30579 +132165,0,1,0,300000,-1,0,37247,0,30663 +132166,0,1,0,-1,-1,0,37336,0,30664 +132167,0,1,0,300000,-1,0,18041,0,30665 +132168,1,0,0,120000,-1,0,40402,0,30665 +132169,0,1,0,-1,-1,0,18026,0,30666 +132170,0,1,0,-1,-1,0,17999,0,30667 +132171,0,1,0,-1,-1,0,15820,0,30753 +132172,0,0,0,-1,-1,0,14097,0,30756 +132173,1,0,0,-1,-1,0,37649,0,30756 +132174,0,0,-1,-1,-1,0,483,0,30843 +132175,1,6,0,-1,-1,0,37883,0,30843 +132176,0,0,-1,-1,-1,0,483,0,30844 +132177,1,6,0,-1,-1,0,37884,0,30844 +132178,0,0,-1,-1,-1,0,37889,0,30845 +132179,0,0,-1,-1,-1,0,37891,0,30846 +132180,0,0,0,1800000,-1,0,37896,0,30847 +132181,0,1,0,-1,-1,0,14054,0,30927 +132182,0,1,0,-1,-1,0,17493,0,30928 +132183,0,1,0,-1,-1,0,14798,0,30929 +132184,0,1,0,-1,-1,0,14055,0,30930 +132185,0,1,0,-1,-1,0,28264,0,30931 +132186,0,1,0,-1,-1,0,18056,0,30932 +132187,0,1,0,-1,-1,0,21366,0,31018 +132188,0,1,0,-1,-1,0,42077,0,31019 +132189,1,1,0,-1,-1,0,21642,0,31019 +132190,0,1,0,-1,-1,0,34760,0,31020 +132191,1,1,0,-1,-1,0,21366,0,31020 +132192,0,1,0,-1,-1,0,21631,0,31021 +132193,0,1,0,-1,-1,0,36062,0,31022 +132194,1,1,0,-1,-1,0,21366,0,31022 +132195,0,1,0,-1,-1,0,28264,0,31023 +132196,1,1,0,-1,-1,0,21618,0,31023 +132197,0,1,0,-1,-1,0,14052,0,31106 +132198,1,1,0,-1,-1,0,21362,0,31106 +132199,2,1,0,-1,-1,0,39841,0,31106 +132200,0,1,0,-1,-1,0,14055,0,31107 +132201,1,1,0,-1,-1,0,21362,0,31107 +132202,2,1,0,-1,-1,0,39841,0,31107 +132203,0,0,0,0,120000,1167,38119,0,31108 +132204,0,1,0,-1,-1,0,14052,0,31109 +132205,1,1,0,-1,-1,0,39841,0,31109 +132206,0,1,0,-1,-1,0,14055,0,31110 +132207,1,1,0,-1,-1,0,21362,0,31110 +132208,2,1,0,-1,-1,0,39841,0,31110 +132209,0,1,0,-1,-1,0,14055,0,31111 +132210,0,1,0,-1,-1,0,14089,0,31204 +132211,0,1,0,0,-1,0,33273,0,31304 +132212,1,1,0,-1,-1,0,21366,0,31304 +132213,0,1,0,-1,-1,0,9336,0,31305 +132214,0,1,0,-1,-1,0,33780,0,31306 +132215,0,1,0,-1,-1,0,33250,0,31308 +132216,0,0,0,0,120000,1167,38249,0,31310 +132217,0,1,0,-1,-1,0,18046,0,29965 +132218,0,1,0,-1,-1,0,15812,0,29966 +132219,0,1,0,-1,-1,0,18052,0,29967 +132220,0,1,0,-1,-1,0,15815,0,29968 +132221,0,1,0,-1,-1,0,9343,0,29970 +132222,1,1,0,-1,-1,0,9315,0,29970 +132223,0,1,0,-1,-1,0,37737,0,30051 +132224,0,1,0,-1,-1,0,14056,0,30052 +132225,0,1,0,-1,-1,0,15830,0,30054 +132226,0,1,0,-1,-1,0,14052,0,30055 +132227,0,1,0,-1,-1,0,42089,0,30136 +132228,1,1,0,-1,-1,0,21632,0,30136 +132229,0,1,0,-1,-1,0,31941,0,30137 +132230,1,1,0,-1,-1,0,20959,0,30137 +132231,0,1,0,-1,-1,0,18046,0,30138 +132232,0,1,0,-1,-1,0,15826,0,30139 +132233,1,1,0,-1,-1,0,21628,0,30139 +132234,0,1,0,-1,-1,0,15819,0,30140 +132235,0,1,0,-1,-1,0,18050,0,30224 +132236,0,1,0,-1,-1,0,9142,0,30226 +132237,0,1,0,-1,-1,0,9142,0,30227 +132238,0,1,0,-1,-1,0,15820,0,30311 +132239,1,2,0,-1,-1,0,36479,0,30311 +132240,0,1,0,-1,-1,0,15820,0,30312 +132241,1,2,0,-1,-1,0,36478,0,30312 +132242,0,1,0,-1,-1,0,36385,0,30313 +132243,1,1,0,-1,-1,0,44917,0,30313 +132244,2,0,0,-1,-1,0,36480,0,30313 +132245,0,0,0,30000,-1,0,36481,0,30314 +132246,0,1,0,-1,-1,0,7597,0,30492 +132247,0,1,0,-1,-1,0,7597,0,30494 +132248,0,1,0,-1,-1,0,23990,0,30496 +132249,0,1,0,-1,-1,0,17905,0,30668 +132250,0,0,0,-1,-1,0,37285,0,30672 +132251,0,1,0,-1,-1,0,26694,0,30673 +132252,0,0,-1,-1,-1,0,37898,0,30850 +132253,0,0,0,5000,5000,0,37899,0,30852 +132254,0,0,0,60000,-1,0,37904,0,30853 +132255,0,0,0,60000,-1,0,37906,0,30854 +132256,0,1,0,-1,-1,0,15831,0,30933 +132257,0,1,0,-1,-1,0,15809,0,30934 +132258,0,1,0,-1,-1,0,15825,0,30935 +132259,0,1,0,-1,-1,0,14052,0,30936 +132260,0,1,0,-1,-1,0,14052,0,30937 +132261,0,1,0,-1,-1,0,15810,0,30938 +132262,0,1,0,-1,-1,0,21364,0,31024 +132263,0,1,0,-1,-1,0,37760,0,31025 +132264,0,1,0,-1,-1,0,15819,0,31026 +132265,1,1,0,-1,-1,0,42095,0,31026 +132266,0,1,0,-1,-1,0,15832,0,31027 +132267,0,1,0,-1,-1,0,15832,0,31028 +132268,0,1,0,-1,-1,0,29524,0,31029 +132269,0,1,0,-1,-1,0,14055,0,31112 +132270,1,1,0,-1,-1,0,21619,0,31112 +132271,0,1,0,-1,-1,0,14055,0,31114 +132272,1,1,0,-1,-1,0,21619,0,31114 +132273,0,1,0,-1,-1,0,14127,0,31115 +132274,0,1,0,-1,-1,0,18050,0,31312 +132275,0,1,0,-1,-1,0,18050,0,31313 +132276,0,1,0,-1,-1,0,18050,0,31314 +132277,0,1,0,-1,-1,0,14248,0,31315 +132278,0,0,0,-1,-1,0,38273,0,31316 +132279,0,1,0,-1,-1,0,14027,0,29971 +132280,1,1,0,-1,-1,0,21619,0,29971 +132281,0,1,0,-1,-1,0,34040,0,29972 +132282,0,1,0,-1,-1,0,14052,0,29973 +132283,0,1,0,-1,-1,0,13881,0,29974 +132284,1,1,0,-1,-1,0,18036,0,29974 +132285,0,1,0,-1,-1,0,14056,0,29975 +132286,1,1,0,-1,-1,0,21631,0,29975 +132287,0,1,0,-1,-1,0,33484,0,30056 +132288,0,1,0,-1,-1,0,15817,0,30059 +132289,0,1,0,-1,-1,0,15815,0,30060 +132290,0,1,0,-1,-1,0,15827,0,30141 +132291,1,1,0,-1,-1,0,21632,0,30141 +132292,0,1,0,-1,-1,0,15832,0,30142 +132293,1,1,0,-1,-1,0,21628,0,30142 +132294,0,1,0,-1,-1,0,15812,0,30143 +132295,0,1,0,-1,-1,0,29524,0,30144 +132296,0,1,0,-1,-1,0,15820,0,30145 +132297,0,1,0,-1,-1,0,34040,0,30231 +132298,0,1,0,-1,-1,0,18057,0,30232 +132299,0,1,0,-1,-1,0,34040,0,30233 +132300,0,1,0,-1,-1,0,34040,0,30234 +132301,1,1,0,-1,-1,0,21364,0,30234 +132302,0,1,0,-1,-1,0,36409,0,30316 +132303,1,2,0,-1,-1,0,36479,0,30316 +132304,0,1,0,-1,-1,0,36411,0,30317 +132305,1,1,0,-1,-1,0,36387,0,30317 +132306,2,1,0,-1,-1,0,36488,0,30317 +132307,0,1,0,-1,-1,0,21453,0,30318 +132308,1,1,0,-1,-1,0,36413,0,30318 +132309,2,0,0,-1,-1,0,36412,0,30318 +132310,3,2,0,-1,-1,0,36482,0,30318 +132311,0,0,-1,-1,-1,0,483,0,30321 +132312,1,6,0,-1,-1,0,36389,0,30321 +132313,0,1,0,-1,-1,0,7597,0,30497 +132314,1,1,0,-1,-1,0,18384,0,30497 +132315,2,1,0,-1,-1,0,18379,0,30497 +132316,0,1,0,-1,-1,0,7597,0,30498 +132317,1,1,0,-1,-1,0,15464,0,30498 +132318,2,1,0,-1,-1,0,15715,0,30498 +132319,0,0,-1,0,1000,59,11009,0,30499 +132320,0,1,0,-1,-1,0,14027,0,30855 +132321,0,1,0,-1,-1,0,14254,0,30857 +132322,0,0,-1,30000,-1,0,11009,0,30858 +132323,0,1,0,0,0,0,9346,0,30859 +132324,0,1,0,-1,-1,0,14056,0,30860 +132325,0,1,0,-1,-1,0,15819,0,30939 +132326,0,1,0,-1,-1,0,14049,0,30940 +132327,0,1,0,-1,-1,0,15819,0,31030 +132328,1,1,0,-1,-1,0,42095,0,31030 +132329,0,1,0,-1,-1,0,37762,0,31031 +132330,0,1,0,-1,-1,0,36062,0,31032 +132331,1,1,0,-1,-1,0,21628,0,31032 +132332,0,1,0,-1,-1,0,37763,0,31033 +132333,0,0,-1,-1,-1,0,38156,0,31121 +132334,0,0,-1,-1,-1,0,38157,0,31122 +132335,0,1,0,-1,-1,0,9417,0,32650 +132336,0,1,0,-1,-1,0,18050,0,32651 +132337,0,1,0,-1,-1,0,22852,0,32652 +132338,0,1,0,-1,-1,0,18037,0,32653 +132339,0,0,0,60000,10000,1141,40724,0,32654 +132340,1,1,0,-1,-1,0,40723,0,32654 +132341,0,1,0,0,0,0,14047,0,32655 +132342,0,0,-1,-1,-1,0,483,0,32736 +132343,1,6,0,-1,-1,0,41132,0,32736 +132344,0,0,-1,-1,-1,0,483,0,32737 +132345,1,6,0,-1,-1,0,41133,0,32737 +132346,0,1,0,-1,-1,0,23044,0,31409 +132347,1,1,0,-1,-1,0,15696,0,31409 +132348,0,1,0,-1,-1,0,18036,0,31410 +132349,0,1,0,-1,-1,0,18039,0,31411 +132350,1,1,0,-1,-1,0,21366,0,31411 +132351,0,1,0,-1,-1,0,18032,0,31412 +132352,0,1,0,-1,-1,0,18033,0,31413 +132353,1,1,0,-1,-1,0,21626,0,31413 +132354,0,0,-1,-1,-1,0,483,0,31505 +132355,1,6,0,-1,-1,0,30324,0,31505 +132356,0,0,-1,-1,-1,0,483,0,31506 +132357,1,6,0,-1,-1,0,30357,0,31506 +132358,0,1,0,-1,-1,0,15715,0,31508 +132359,0,1,0,-1,-1,0,15715,0,31509 +132360,0,1,0,-1,-1,0,18039,0,31597 +132361,1,1,0,-1,-1,0,21628,0,31597 +132362,0,1,0,-1,-1,0,9408,0,31598 +132363,1,1,0,-1,-1,0,21618,0,31598 +132364,0,1,0,-1,-1,0,9408,0,31599 +132365,1,1,0,-1,-1,0,21618,0,31599 +132366,0,0,-1,-1,-1,0,483,0,31682 +132367,1,6,0,-1,-1,0,38961,0,31682 +132368,0,1,0,-1,-1,0,14254,0,31683 +132369,0,1,0,-1,-1,0,18050,0,31684 +132370,0,1,0,-1,-1,0,15809,0,31685 +132371,1,1,0,-1,-1,0,21618,0,31685 +132372,0,1,0,-1,-1,0,9342,0,31686 +132373,0,1,0,-1,-1,0,14254,0,31687 +132374,0,1,0,-1,-1,0,15809,0,31782 +132375,1,1,0,-1,-1,0,18378,0,31782 +132376,0,1,0,-1,-1,0,14127,0,31783 +132377,0,1,0,-1,-1,0,14089,0,31784 +132378,0,0,-1,-1,-1,0,483,0,31870 +132379,1,6,0,-1,-1,0,39451,0,31870 +132380,0,0,-1,-1,-1,0,483,0,31871 +132381,1,6,0,-1,-1,0,39455,0,31871 +132382,0,0,-1,-1,-1,0,483,0,31872 +132383,1,6,0,-1,-1,0,39458,0,31872 +132384,0,0,-1,-1,-1,0,483,0,31873 +132385,1,6,0,-1,-1,0,39466,0,31873 +132386,0,1,0,-1,-1,0,14027,0,31964 +132387,0,1,0,-1,-1,0,9336,0,31965 +132388,0,1,0,-1,-1,0,15828,0,31966 +132389,0,1,0,-1,-1,0,7681,0,31967 +132390,1,1,0,-1,-1,0,33830,0,31967 +132391,0,1,0,-1,-1,0,18035,0,31968 +132392,0,1,0,-1,-1,0,9408,0,31969 +132393,0,1,0,-1,-1,0,28360,0,32051 +132394,0,1,0,-1,-1,0,9336,0,32052 +132395,0,1,0,-1,-1,0,42122,0,32053 +132396,0,1,-1,-1,-1,0,9335,0,32054 +132397,0,1,0,-1,-1,0,42122,0,32055 +132398,0,1,0,-1,-1,0,9332,0,32137 +132399,0,1,0,-1,-1,0,21365,0,32138 +132400,0,1,0,-1,-1,0,33020,0,32139 +132401,0,1,0,-1,-1,0,21625,0,32142 +132402,0,0,-1,-1,-1,0,483,0,32305 +132403,1,6,0,-1,-1,0,39735,0,32305 +132404,0,0,-1,-1,-1,0,483,0,32306 +132405,1,6,0,-1,-1,0,39736,0,32306 +132406,0,0,-1,-1,-1,0,483,0,32307 +132407,1,6,0,-1,-1,0,39737,0,32307 +132408,0,0,-1,-1,-1,0,483,0,32308 +132409,1,6,0,-1,-1,0,39738,0,32308 +132410,0,1,0,-1,-1,0,33485,0,32474 +132411,1,1,0,0,-1,0,30645,0,32474 +132412,2,1,0,0,-1,0,40273,0,32474 +132413,3,0,0,3000,-1,0,12883,0,32474 +132414,0,1,0,-1,-1,0,26225,0,32475 +132415,1,1,0,0,-1,0,21631,0,32475 +132416,2,1,0,0,-1,0,30645,0,32475 +132417,3,1,0,0,-1,0,40273,0,32475 +132418,4,0,0,3000,-1,0,12883,0,32475 +132419,0,1,0,-1,-1,0,39569,0,32476 +132420,1,1,0,0,-1,0,30645,0,32476 +132421,2,1,0,0,-1,0,40273,0,32476 +132422,3,0,0,3000,-1,0,12883,0,32476 +132423,0,1,0,-1,-1,0,15824,0,32478 +132424,1,1,0,0,-1,0,30645,0,32478 +132425,2,1,0,0,-1,0,40273,0,32478 +132426,3,0,0,3000,-1,0,12883,0,32478 +132427,0,0,0,180000,-1,0,40530,0,32566 +132428,0,1,0,-1,-1,0,15814,0,32656 +132429,0,0,0,140000,-1,0,40889,0,32657 +132430,0,0,0,120000,20000,1141,40729,0,32658 +132431,0,1,0,-1,-1,0,14049,0,32659 +132432,0,1,0,-1,-1,0,34796,0,32660 +132433,0,1,0,0,-1,0,9332,0,32661 +132434,0,0,-1,-1,-1,0,483,0,32738 +132435,1,6,0,-1,-1,0,41134,0,32738 +132436,0,0,-1,-1,-1,0,483,0,32739 +132437,1,6,0,-1,-1,0,41135,0,32739 +132438,0,0,0,60000,60000,0,41181,0,32741 +132439,0,1,0,-1,-1,0,44898,0,31414 +132440,0,1,0,90000,-1,0,25036,0,31415 +132441,0,1,0,-1,-1,0,14027,0,31416 +132442,0,1,0,300000,0,0,36428,0,31417 +132443,0,1,0,-1,-1,0,14798,0,31418 +132444,0,1,0,-1,-1,0,9336,0,31419 +132445,0,1,0,-1,-1,0,9346,0,31510 +132446,0,1,0,-1,-1,0,15809,0,31511 +132447,0,1,0,-1,-1,0,9336,0,31512 +132448,0,1,0,-1,-1,0,17367,0,31513 +132449,0,1,0,-1,-1,0,15823,0,31514 +132450,0,1,0,-1,-1,0,9346,0,31515 +132451,1,1,0,-1,-1,0,18379,0,31515 +132452,0,0,0,60000,-1,0,38707,0,31606 +132453,0,1,0,900000,10000,1141,15809,0,31688 +132454,0,1,0,-1,-1,0,15809,0,31689 +132455,1,1,0,-1,-1,0,21618,0,31689 +132456,0,1,0,-1,-1,0,21627,0,31690 +132457,1,1,0,-1,-1,0,14799,0,31690 +132458,0,1,0,-1,-1,0,22748,0,31691 +132459,1,1,0,-1,-1,0,18379,0,31691 +132460,0,1,0,-1,-1,0,13881,0,31692 +132461,0,1,0,-1,-1,0,13881,0,31693 +132462,0,1,0,-1,-1,0,15807,0,31786 +132463,0,1,0,-1,-1,0,9345,0,31787 +132464,0,1,0,-1,-1,0,9335,0,31788 +132465,0,1,0,-1,-1,0,14254,0,31789 +132466,0,1,0,1500,-1,0,15809,0,31790 +132467,0,0,-1,-1,-1,0,483,0,31874 +132468,1,6,0,-1,-1,0,39467,0,31874 +132469,0,0,-1,-1,-1,0,483,0,31875 +132470,1,6,0,-1,-1,0,39452,0,31875 +132471,0,0,-1,-1,-1,0,483,0,31876 +132472,1,6,0,-1,-1,0,39463,0,31876 +132473,0,0,-1,-1,-1,0,483,0,31877 +132474,1,6,0,-1,-1,0,39462,0,31877 +132475,0,1,0,-1,-1,0,7680,0,31970 +132476,0,1,0,-1,-1,0,9317,0,31971 +132477,0,1,0,-1,-1,0,9318,0,31972 +132478,0,1,0,-1,-1,0,33063,0,31973 +132479,1,1,0,-1,-1,0,18053,0,31973 +132480,0,1,0,-1,-1,0,18053,0,31974 +132481,0,1,0,-1,-1,0,18056,0,32056 +132482,1,1,0,-1,-1,0,33830,0,32056 +132483,2,1,0,-1,-1,0,21626,0,32056 +132484,0,1,0,-1,-1,0,28360,0,32057 +132485,1,1,0,-1,-1,0,21630,0,32057 +132486,0,1,0,-1,-1,0,23732,0,32058 +132487,1,1,0,-1,-1,0,21635,0,32058 +132488,0,1,0,-1,-1,0,18050,0,32059 +132489,1,1,0,-1,-1,0,21362,0,32059 +132490,0,1,0,-1,-1,0,28360,0,32060 +132491,1,1,0,-1,-1,0,18379,0,32060 +132492,0,1,0,-1,-1,0,21620,0,32143 +132493,1,1,0,-1,-1,0,9345,0,32143 +132494,0,1,0,-1,-1,0,32973,0,32144 +132495,1,1,0,-1,-1,0,15715,0,32144 +132496,0,1,0,-1,-1,0,14047,0,32145 +132497,0,1,0,-1,-1,0,18050,0,32146 +132498,1,1,0,-1,-1,0,21362,0,32146 +132499,0,1,0,-1,-1,0,21362,0,32147 +132500,1,1,0,-1,-1,0,9344,0,32147 +132501,0,0,0,1500,-1,0,39709,0,32233 +132502,0,1,0,-1,-1,0,15824,0,32234 +132503,0,1,0,-1,-1,0,33782,0,32235 +132504,1,0,0,600000,-1,0,47524,0,32235 +132505,0,1,0,-1,-1,0,15810,0,32236 +132506,0,1,0,-1,-1,0,42111,0,32237 +132507,0,0,-1,-1,-1,0,483,0,32309 +132508,1,6,0,-1,-1,0,39739,0,32309 +132509,0,0,-1,-1,-1,0,483,0,32310 +132510,1,6,0,-1,-1,0,39740,0,32310 +132511,0,0,-1,-1,-1,0,483,0,32311 +132512,1,6,0,-1,-1,0,39741,0,32311 +132513,0,0,-1,-1,-1,0,483,0,32312 +132514,1,6,0,-1,-1,0,39742,0,32312 +132515,0,1,0,-1,-1,0,26225,0,32479 +132516,1,1,0,0,-1,0,30645,0,32479 +132517,2,1,0,0,-1,0,40273,0,32479 +132518,3,0,0,3000,-1,0,12883,0,32479 +132519,0,1,0,-1,-1,0,33484,0,32480 +132520,2,1,0,0,-1,0,30645,0,32480 +132521,3,1,0,0,-1,0,40273,0,32480 +132522,4,0,0,3000,-1,0,12883,0,32480 +132523,0,1,0,0,0,0,48403,0,32481 +132524,0,1,0,0,-1,0,9343,0,32482 +132525,0,1,0,-1,-1,0,39569,0,32483 +132526,1,0,0,120000,20000,1141,40396,0,32483 +132527,0,1,0,-1,-1,0,18040,0,32571 +132528,0,1,0,-1,-1,0,18048,0,32573 +132529,0,1,0,-1,-1,0,15814,0,32574 +132530,0,1,0,-1,-1,0,15823,0,32575 +132531,0,1,0,-1,-1,0,33250,0,32662 +132532,1,1,0,-1,-1,0,17995,0,32664 +132533,0,0,-1,0,1000,59,11009,0,32667 +132534,0,1,0,-1,-1,0,14055,0,32743 +132535,0,0,-1,-1,-1,0,483,0,32744 +132536,1,6,0,-1,-1,0,41156,0,32744 +132537,0,0,-1,-1,-1,0,483,0,32745 +132538,1,6,0,-1,-1,0,41157,0,32745 +132539,0,0,-1,-1,-1,0,483,0,32746 +132540,1,6,0,-1,-1,0,41158,0,32746 +132541,0,1,0,-1,-1,0,15812,0,31420 +132542,0,1,0,-1,-1,0,9142,0,31422 +132543,0,1,0,0,-1,0,9344,0,31424 +132544,0,1,0,-1,-1,0,9346,0,31425 +132545,0,1,0,-1,-1,0,9332,0,31516 +132546,0,0,-1,-1,-1,0,38612,0,31517 +132547,0,0,-1,1000,1000,0,38606,0,31518 +132548,0,1,0,-1,-1,0,14248,0,31521 +132549,0,0,0,-1,-1,0,38736,0,31610 +132550,0,1,0,-1,-1,0,18032,0,31613 +132551,0,1,0,-1,-1,0,14056,0,31695 +132552,0,1,0,-1,-1,0,23203,0,31696 +132553,0,1,0,-1,-1,0,15715,0,31791 +132554,0,1,0,-1,-1,0,9334,0,31792 +132555,1,1,0,-1,-1,0,21363,0,31792 +132556,0,1,0,-1,-1,0,14047,0,31794 +132557,0,1,0,-1,-1,0,9336,0,31796 +132558,1,1,0,-1,-1,0,18379,0,31796 +132559,0,1,0,-1,-1,0,15715,0,31797 +132560,0,0,-1,-1,-1,0,483,0,31878 +132561,1,6,0,-1,-1,0,39470,0,31878 +132562,0,0,-1,-1,-1,0,483,0,31879 +132563,1,6,0,-1,-1,0,39471,0,31879 +132564,0,0,0,1500,-1,0,39478,0,31880 +132565,0,0,0,1500,-1,0,39479,0,31881 +132566,0,0,0,-1,-1,0,39480,0,31882 +132567,0,0,0,-1,-1,0,39480,0,31883 +132568,0,0,0,-1,-1,0,39480,0,31884 +132569,0,1,0,-1,-1,0,26142,0,31975 +132570,0,1,0,-1,-1,0,18053,0,31976 +132571,0,1,0,-1,-1,0,17493,0,31977 +132572,0,1,0,-1,-1,0,18050,0,31978 +132573,0,1,0,-1,-1,0,18053,0,31979 +132574,0,1,0,-1,-1,0,18058,0,31980 +132575,0,0,-1,0,3000,79,39625,0,32062 +132576,0,0,-1,0,3000,79,39626,0,32063 +132577,0,1,0,-1,-1,0,21620,0,32148 +132578,1,1,0,-1,-1,0,9317,0,32148 +132579,0,1,0,-1,-1,0,32973,0,32149 +132580,1,1,0,-1,-1,0,18033,0,32149 +132581,0,1,0,-1,-1,0,17371,0,32150 +132582,0,1,0,-1,-1,0,18039,0,32151 +132583,1,1,0,-1,-1,0,21362,0,32151 +132584,0,1,0,-1,-1,0,21362,0,32152 +132585,1,1,0,-1,-1,0,9316,0,32152 +132586,0,1,0,-1,-1,0,18040,0,32238 +132587,0,1,0,-1,-1,0,17493,0,32239 +132588,0,1,0,-1,-1,0,42089,0,32240 +132589,1,1,0,-1,-1,0,21644,0,32240 +132590,0,1,0,-1,-1,0,25179,0,32241 +132591,1,1,0,-1,-1,0,21633,0,32241 +132592,0,1,0,-1,-1,0,39569,0,32242 +132593,0,0,0,-1,3000,330,39798,0,32314 +132594,0,0,0,45000,-1,0,39793,0,32315 +132595,0,0,0,-1,3000,330,39801,0,32316 +132596,0,0,0,-1,3000,330,39800,0,32317 +132597,0,0,0,-1,3000,330,39802,0,32318 +132598,0,0,0,-1,3000,330,39803,0,32319 +132599,0,1,0,300000,-1,0,40458,0,32485 +132600,0,1,0,300000,-1,0,40442,0,32486 +132601,0,1,0,300000,-1,0,40485,0,32487 +132602,0,1,0,300000,-1,0,40482,0,32488 +132603,0,1,0,300000,-1,0,40470,0,32489 +132604,0,1,0,300000,-1,0,40438,0,32490 +132605,0,0,-1,-1,-1,0,40548,0,32576 +132606,0,1,0,-1,-1,0,18040,0,32577 +132607,0,0,-1,-1,120000,1153,41237,0,32578 +132608,0,1,0,-1,-1,0,36062,0,32579 +132609,0,1,0,-1,-1,0,14056,0,32580 +132610,0,0,-1,0,1000,59,27089,0,32668 +132611,0,0,-1,0,1000,11,33725,0,32669 +132612,0,0,-1,-1,-1,0,40757,0,32670 +132613,0,1,0,0,-1,0,9332,0,32671 +132614,1,0,-1,-1,-1,0,40752,0,32671 +132615,0,0,-1,-1,-1,0,40744,0,32672 +132616,0,1,0,-1,-1,0,14049,0,32673 +132617,1,0,-1,-1,-1,0,40749,0,32673 +132618,0,1,0,-1,-1,0,34796,0,32674 +132619,1,0,-1,-1,-1,0,40756,0,32674 +132620,0,0,-1,-1,-1,0,483,0,32747 +132621,1,6,0,-1,-1,0,41160,0,32747 +132622,0,0,-1,-1,-1,0,483,0,32748 +132623,1,6,0,-1,-1,0,41161,0,32748 +132624,0,0,-1,-1,-1,0,483,0,32749 +132625,1,6,0,-1,-1,0,41162,0,32749 +132626,0,0,-1,-1,-1,0,483,0,32750 +132627,1,6,0,-1,-1,0,41163,0,32750 +132628,0,1,0,-1,-1,0,21618,0,31427 +132629,1,1,0,-1,-1,0,15812,0,31427 +132630,0,1,0,-1,-1,0,14798,0,31429 +132631,0,1,0,-1,-1,0,14798,0,31430 +132632,0,1,0,-1,-1,0,14047,0,31431 +132633,1,1,0,-1,-1,0,21625,0,31431 +132634,0,1,0,-1,-1,0,9344,0,31523 +132635,1,1,0,-1,-1,0,21363,0,31523 +132636,0,0,-1,-1,-1,0,38614,0,31524 +132637,0,1,0,-1,-1,0,9316,0,31526 +132638,1,1,0,-1,-1,0,21363,0,31526 +132639,0,1,0,-1,-1,0,15696,0,31614 +132640,1,1,0,-1,-1,0,38522,0,31614 +132641,0,0,0,90000,15000,1141,33662,0,31615 +132642,0,1,0,-1,-1,0,18037,0,31616 +132643,0,0,0,90000,15000,1141,33667,0,31617 +132644,0,1,0,-1,-1,0,18043,0,31618 +132645,0,1,0,-1,-1,0,18029,0,31619 +132646,0,1,0,-1,-1,0,15715,0,31699 +132647,0,1,0,-1,-1,0,33165,0,31700 +132648,1,1,0,-1,-1,0,18379,0,31700 +132649,0,1,0,-1,-1,0,15821,0,31701 +132650,1,1,0,-1,-1,0,21364,0,31701 +132651,0,0,-1,-1,-1,0,39010,0,31702 +132652,0,1,0,-1,-1,0,15807,0,31703 +132653,0,0,0,-1,-1,0,3366,0,31704 +132654,0,1,0,-1,-1,0,14248,0,31798 +132655,0,0,0,-1,-1,0,39480,0,31885 +132656,0,0,0,-1,-1,0,39480,0,31886 +132657,0,0,0,-1,-1,0,39480,0,31887 +132658,0,0,0,-1,-1,0,39480,0,31888 +132659,0,0,0,-1,-1,0,39480,0,31889 +132660,0,1,0,-1,-1,0,33063,0,31981 +132661,1,1,0,-1,-1,0,18053,0,31981 +132662,0,1,0,-1,-1,0,14055,0,31982 +132663,0,1,0,-1,-1,0,28360,0,31983 +132664,0,1,0,-1,-1,0,9336,0,31985 +132665,0,0,-1,0,3000,79,39627,0,32067 +132666,0,0,-1,0,3000,79,39628,0,32068 +132667,0,0,0,-1,-1,0,39640,0,32069 +132668,0,0,-1,-1,-1,0,483,0,32070 +132669,1,6,0,-1,-1,0,39637,0,32070 +132670,0,0,-1,-1,-1,0,483,0,32071 +132671,1,6,0,-1,-1,0,39639,0,32071 +132672,0,1,0,-1,-1,0,9415,0,32153 +132673,0,1,0,-1,-1,0,14248,0,32154 +132674,1,1,0,-1,-1,0,23300,0,32154 +132675,0,1,0,-1,-1,0,14254,0,32155 +132676,0,1,0,-1,-1,0,14127,0,32156 +132677,0,1,0,-1,-1,0,9417,0,32157 +132678,0,1,0,-1,-1,0,17320,0,32243 +132679,1,1,0,-1,-1,0,21630,0,32243 +132680,0,0,0,-1,-1,0,39750,0,32244 +132681,0,1,0,-1,-1,0,14798,0,32245 +132682,0,1,0,-1,-1,0,18058,0,32247 +132683,0,0,0,5000,5000,0,39810,0,32321 +132684,0,1,0,-1,-1,0,15821,0,32323 +132685,0,1,0,-1,-1,0,15815,0,32324 +132686,0,0,0,5000,5000,0,39844,0,32406 +132687,0,1,0,-1,-1,0,33250,0,32407 +132688,0,0,-1,-1,-1,0,39948,0,32408 +132689,0,1,0,300000,-1,0,40463,0,32491 +132690,0,1,0,300000,-1,0,40460,0,32492 +132691,0,1,0,300000,-1,0,40478,0,32493 +132692,0,1,0,-1,-1,0,23730,0,32494 +132693,2,1,0,0,-1,0,30645,0,32494 +132694,3,1,0,0,-1,0,40273,0,32494 +132695,4,0,0,3000,-1,0,12883,0,32494 +132696,0,1,0,-1,-1,0,31941,0,32495 +132697,2,1,0,0,-1,0,30645,0,32495 +132698,3,1,0,0,-1,0,40273,0,32495 +132699,4,0,0,3000,-1,0,12883,0,32495 +132700,0,1,0,-1,-1,0,25179,0,32496 +132701,1,1,0,-1,-1,0,37655,0,32496 +132702,0,1,0,-1,-1,0,15823,0,32581 +132703,0,1,0,-1,-1,0,18040,0,32582 +132704,0,1,0,-1,-1,0,18048,0,32583 +132705,0,1,0,-1,-1,0,18040,0,32584 +132706,0,1,0,-1,-1,0,17320,0,32585 +132707,0,1,0,-1,-1,0,18052,0,32586 +132708,0,1,0,-1,-1,0,15814,0,32675 +132709,1,0,-1,-1,-1,0,40753,0,32675 +132710,0,1,0,0,0,0,14047,0,32676 +132711,1,0,-1,-1,-1,0,40748,0,32676 +132712,0,0,-1,-1,-1,0,40747,0,32677 +132713,0,0,-1,0,0,0,40754,0,32678 +132714,1,1,0,-1,-1,0,17995,0,32678 +132715,0,1,0,-1,-1,0,33250,0,32679 +132716,1,0,-1,-1,-1,0,40755,0,32679 +132717,0,0,-1,-1,-1,0,483,0,32751 +132718,1,6,0,-1,-1,0,41164,0,32751 +132719,0,0,-1,-1,-1,0,483,0,32752 +132720,1,6,0,-1,-1,0,41207,0,32752 +132721,0,0,-1,-1,-1,0,483,0,32753 +132722,1,6,0,-1,-1,0,41208,0,32753 +132723,0,0,-1,-1,-1,0,483,0,32754 +132724,1,6,0,-1,-1,0,41205,0,32754 +132725,0,1,0,-1,-1,0,14799,0,31432 +132726,0,1,0,-1,-1,0,18058,0,31433 +132727,0,1,0,-1,-1,0,15821,0,31434 +132728,0,1,0,-1,-1,0,15821,0,31435 +132729,0,0,-1,60000,0,150,38543,0,31437 +132730,0,1,0,-1,-1,0,15808,0,31527 +132731,0,1,0,-1,-1,0,15715,0,31531 +132732,0,1,0,-1,-1,0,23044,0,31620 +132733,1,1,0,-1,-1,0,18033,0,31620 +132734,0,1,0,-1,-1,0,23044,0,31621 +132735,1,1,0,-1,-1,0,18033,0,31621 +132736,0,1,0,-1,-1,0,9318,0,31622 +132737,0,1,0,-1,-1,0,18042,0,31623 +132738,0,1,0,-1,-1,0,9316,0,31624 +132739,0,0,0,-1,-1,0,39040,0,31705 +132740,0,0,0,60000,60000,0,39219,0,31807 +132741,0,0,0,30000,-1,0,39224,0,31808 +132742,0,0,1,-1,-1,0,39226,0,31809 +132743,0,0,0,-1,-1,0,39481,0,31892 +132744,0,0,0,-1,-1,0,39481,0,31893 +132745,0,0,0,-1,-1,0,39481,0,31894 +132746,0,0,0,-1,-1,0,39481,0,31895 +132747,0,0,0,-1,-1,0,39481,0,31896 +132748,0,0,0,-1,-1,0,39480,0,31897 +132749,0,1,0,-1,-1,0,21436,0,31986 +132750,0,1,0,-1,-1,0,18044,0,31987 +132751,1,1,0,-1,-1,0,33830,0,31987 +132752,2,1,0,-1,-1,0,21364,0,31987 +132753,0,1,0,-1,-1,0,18048,0,31988 +132754,1,1,0,-1,-1,0,21364,0,31988 +132755,0,1,0,-1,-1,0,23593,0,31989 +132756,1,1,0,-1,-1,0,21636,0,31989 +132757,0,1,0,-1,-1,0,18035,0,31990 +132758,1,1,0,-1,-1,0,21618,0,31990 +132759,0,1,0,-1,-1,0,15813,0,32076 +132760,0,1,0,-1,-1,0,18050,0,32077 +132761,1,1,0,-1,-1,0,21363,0,32077 +132762,0,1,0,-1,-1,0,9406,0,32158 +132763,0,1,0,-1,-1,0,18031,0,32159 +132764,1,1,0,-1,-1,0,23300,0,32159 +132765,0,1,0,-1,-1,0,18029,0,32160 +132766,0,1,0,-1,-1,0,15696,0,32161 +132767,0,1,0,-1,-1,0,9408,0,32162 +132768,0,1,0,-1,-1,0,28735,0,32248 +132769,0,1,0,-1,-1,0,15815,0,32251 +132770,0,1,0,-1,-1,0,15829,0,32252 +132771,0,1,0,-1,-1,0,42108,0,32327 +132772,0,1,0,-1,-1,0,17320,0,32328 +132773,0,1,0,-1,-1,0,25179,0,32329 +132774,0,1,0,-1,-1,0,41040,0,32330 +132775,0,0,-1,-1,-1,0,483,0,32411 +132776,1,6,0,-1,-1,0,39963,0,32411 +132777,0,0,-1,-1,-1,0,483,0,32412 +132778,1,6,0,-1,-1,0,39961,0,32412 +132779,0,0,-1,0,60000,24,39965,0,32413 +132780,0,1,0,-1,-1,0,15818,0,32497 +132781,1,1,0,-1,-1,0,40680,0,32497 +132782,0,0,0,1500,-1,0,40405,0,32498 +132783,0,1,0,-1,-1,0,42059,0,32500 +132784,1,1,0,-1,-1,0,18379,0,32500 +132785,2,1,0,-1,-1,0,40971,0,32500 +132786,1,0,0,180000,-1,0,40464,0,32501 +132787,0,1,0,-1,-1,0,17493,0,32587 +132788,0,0,0,1500,-1,0,40549,0,32588 +132789,0,1,0,-1,-1,0,17885,0,32589 +132790,0,1,0,-1,-1,0,18027,0,32590 +132791,0,1,0,-1,-1,0,15820,0,32591 +132792,1,1,0,-1,-1,0,42095,0,32591 +132793,0,0,0,0,5000,1170,40742,0,32680 +132794,0,0,-1,-1,-1,0,40766,0,32681 +132795,0,0,-1,-1,-1,0,40767,0,32682 +132796,0,0,-1,-1,-1,0,40765,0,32683 +132797,0,0,-1,-1,-1,0,40764,0,32684 +132798,0,0,-1,0,1000,11,35270,0,32685 +132799,0,0,-1,-1,-1,0,483,0,32755 +132800,1,6,0,-1,-1,0,41206,0,32755 +132801,0,0,0,900000,-1,0,41234,0,32757 +132802,0,0,-1,-1,-1,0,41233,0,32758 +132803,0,1,0,-1,-1,0,9346,0,31438 +132804,0,1,0,-1,-1,0,15813,0,31439 +132805,0,1,0,-1,-1,0,9336,0,31440 +132806,1,1,0,-1,-1,0,21619,0,31440 +132807,0,1,0,-1,-1,0,18058,0,31442 +132808,0,1,0,-1,-1,0,9342,0,31533 +132809,1,1,0,-1,-1,0,21619,0,31533 +132810,0,0,-1,0,-1,0,38615,0,31535 +132811,0,0,-1,-1,-1,0,38746,0,31536 +132812,0,1,0,-1,-1,0,9346,0,31537 +132813,0,1,0,-1,-1,0,9345,0,31538 +132814,0,1,0,-1,-1,0,18035,0,31625 +132815,0,1,0,-1,-1,0,9318,0,31626 +132816,0,1,0,-1,-1,0,18042,0,31627 +132817,0,1,0,-1,-1,0,9316,0,31628 +132818,0,1,0,-1,-1,0,18035,0,31629 +132819,0,1,0,-1,-1,0,9346,0,31711 +132820,0,1,0,-1,-1,0,9336,0,31712 +132821,0,1,0,-1,-1,0,18058,0,31713 +132822,1,1,0,-1,-1,0,18379,0,31713 +132823,0,1,0,-1,-1,0,14254,0,31715 +132824,0,0,0,0,15000,1167,39238,0,31810 +132825,0,0,0,-1,-1,0,39239,0,31811 +132826,0,0,0,-1,-1,0,39481,0,31898 +132827,0,0,0,-1,-1,0,39481,0,31899 +132828,0,0,0,-1,-1,0,39481,0,31900 +132829,0,0,0,-1,-1,0,39483,0,31901 +132830,0,0,0,-1,-1,0,39483,0,31902 +132831,0,0,0,-1,-1,0,39483,0,31903 +132832,0,0,0,-1,-1,0,39483,0,31904 +132833,0,1,0,-1,-1,0,18047,0,31991 +132834,1,1,0,-1,-1,0,21628,0,31991 +132835,0,1,0,-1,-1,0,18049,0,31992 +132836,0,1,0,-1,-1,0,17367,0,31993 +132837,1,1,0,-1,-1,0,38522,0,31993 +132838,0,0,0,-1,-1,0,39629,0,31994 +132839,0,1,0,-1,-1,0,18058,0,31995 +132840,0,1,0,-1,-1,0,18050,0,32078 +132841,0,0,-1,-1,-1,0,39677,0,32079 +132842,0,1,0,-1,-1,0,15806,0,32080 +132843,0,1,0,-1,-1,0,14052,0,32081 +132844,0,1,0,-1,-1,0,22778,0,32164 +132845,0,1,0,-1,-1,0,18040,0,32255 +132846,0,1,0,-1,-1,0,23732,0,32256 +132847,0,1,0,-1,-1,0,41037,0,32257 +132848,0,1,0,-1,-1,0,17320,0,32258 +132849,0,1,0,-1,-1,0,18058,0,32331 +132850,0,1,0,-1,-1,0,42106,0,32333 +132851,0,1,0,-1,-1,0,39708,0,32334 +132852,0,1,0,-1,-1,0,34751,0,32421 +132853,0,1,0,-1,-1,0,34751,0,32422 +132854,0,0,0,0,10000,1167,40468,0,32503 +132855,0,1,0,-1,-1,0,15828,0,32505 +132856,1,1,0,0,-1,0,40475,0,32505 +132857,0,1,0,-1,-1,0,42099,0,32592 +132858,0,0,-1,-1,-1,0,40558,0,32594 +132859,0,0,-1,0,3000,79,40568,0,32596 +132860,0,0,-1,0,3000,79,40575,0,32597 +132861,0,0,-1,0,3000,79,40572,0,32598 +132862,0,0,-1,0,1000,11,40768,0,32686 +132863,0,0,-1,0,120000,4,28499,0,32762 +132864,0,0,-1,0,120000,4,28495,0,32763 +132865,0,0,-1,0,3000,79,28518,0,32764 +132866,0,1,0,-1,-1,0,18058,0,31444 +132867,1,1,0,-1,-1,0,18379,0,31444 +132868,0,1,0,-1,-1,0,21627,0,31445 +132869,1,1,0,-1,-1,0,14254,0,31445 +132870,0,1,0,-1,-1,0,9331,0,31446 +132871,0,1,0,-1,-1,0,33030,0,31447 +132872,1,1,0,-1,-1,0,21618,0,31447 +132873,0,1,0,-1,-1,0,26155,0,31448 +132874,1,1,0,-1,-1,0,21618,0,31448 +132875,0,0,-1,0,3000,79,38551,0,31449 +132876,0,1,0,-1,-1,0,9345,0,31539 +132877,1,1,0,-1,-1,0,21626,0,31539 +132878,0,1,0,-1,-1,0,9345,0,31540 +132879,0,1,0,-1,-1,0,9332,0,31541 +132880,0,1,0,-1,-1,0,15812,0,31542 +132881,0,1,0,-1,-1,0,23730,0,31543 +132882,1,1,0,-1,-1,0,21633,0,31543 +132883,0,1,0,-1,-1,0,9406,0,31630 +132884,0,1,0,-1,-1,0,18031,0,31631 +132885,1,1,0,-1,-1,0,23300,0,31631 +132886,0,1,0,-1,-1,0,18029,0,31632 +132887,0,1,0,-1,-1,0,15696,0,31633 +132888,0,1,0,-1,-1,0,9408,0,31634 +132889,0,1,0,-1,-1,0,17493,0,31717 +132890,0,1,0,-1,-1,0,15824,0,31718 +132891,0,1,0,-1,-1,0,17493,0,31719 +132892,1,1,0,-1,-1,0,21626,0,31719 +132893,0,0,0,1500,-1,0,39242,0,31815 +132894,0,1,0,-1,-1,0,15808,0,31817 +132895,1,1,0,-1,-1,0,21618,0,31817 +132896,0,1,0,0,-1,0,9345,0,31818 +132897,0,1,0,-1,-1,0,9345,0,31819 +132898,0,0,0,-1,-1,0,39483,0,31905 +132899,0,0,0,-1,-1,0,39483,0,31906 +132900,0,0,0,-1,-1,0,39483,0,31908 +132901,0,0,0,-1,-1,0,39483,0,31909 +132902,0,0,0,-1,-1,0,39484,0,31910 +132903,0,0,0,-1,-1,0,39484,0,31911 +132904,0,1,0,-1,-1,0,15715,0,31996 +132905,0,1,0,-1,-1,0,18055,0,31997 +132906,0,1,0,-1,-1,0,15806,0,31998 +132907,1,1,0,-1,-1,0,32748,0,31998 +132908,0,1,0,-1,-1,0,15810,0,31999 +132909,0,1,0,-1,-1,0,15809,0,32000 +132910,0,1,0,-1,-1,0,18043,0,32084 +132911,1,1,0,-1,-1,0,21632,0,32084 +132912,0,1,0,-1,-1,0,9333,0,32085 +132913,0,1,0,-1,-1,0,18054,0,32086 +132914,0,1,0,-1,-1,0,15817,0,32087 +132915,0,1,0,-1,-1,0,18052,0,32089 +132916,1,1,0,-1,-1,0,23300,0,32169 +132917,0,1,0,-1,-1,0,9334,0,32173 +132918,0,1,0,-1,-1,0,9334,0,32174 +132919,0,1,0,-1,-1,0,18052,0,32259 +132920,0,1,0,-1,-1,0,15821,0,32260 +132921,0,1,0,-1,-1,0,14056,0,32262 +132922,1,2,0,-1,-1,0,40291,0,32262 +132923,0,1,0,-1,-1,0,46939,0,32336 +132924,1,1,0,-1,-1,0,9334,0,32336 +132925,0,1,0,-1,-1,0,18047,0,32337 +132926,0,1,0,-1,-1,0,39569,0,32338 +132927,0,1,0,-1,-1,0,17320,0,32339 +132928,0,1,0,-1,-1,0,25179,0,32340 +132929,1,1,0,-1,-1,0,42100,0,32340 +132930,0,0,-1,0,1000,59,39980,0,32424 +132931,0,0,-1,-1,-1,24,40309,0,32426 +132932,0,1,0,-1,-1,0,15824,0,32510 +132933,0,1,0,-1,-1,0,18043,0,32512 +132934,0,1,0,-1,-1,0,18039,0,32513 +132935,0,0,-1,0,3000,79,40567,0,32599 +132936,0,0,-1,0,3000,79,40573,0,32600 +132937,0,0,-1,0,3000,79,40576,0,32601 +132938,0,0,-1,-1,-1,24,40309,0,32602 +132939,0,0,-1,0,3000,79,28520,0,32765 +132940,0,0,-1,0,3000,79,28519,0,32766 +132941,0,0,-1,0,3000,79,17628,0,32767 +132942,0,0,0,-1,3000,330,41252,0,32768 +132943,0,0,-1,0,3000,79,38552,0,31450 +132944,0,0,-1,0,3000,1153,38553,0,31451 +132945,0,1,0,0,-1,0,14047,0,31452 +132946,0,1,0,-1,-1,0,9336,0,31453 +132947,0,1,0,-1,-1,0,15807,0,31454 +132948,1,1,0,-1,-1,0,21627,0,31454 +132949,0,1,0,-1,-1,0,14052,0,31545 +132950,0,1,0,-1,-1,0,14055,0,31546 +132951,0,1,0,-1,-1,0,14052,0,31547 +132952,1,1,0,-1,-1,0,21364,0,31547 +132953,0,1,0,-1,-1,0,21364,0,31549 +132954,0,1,0,-1,-1,0,9406,0,31635 +132955,0,1,0,-1,-1,0,18031,0,31636 +132956,1,1,0,-1,-1,0,23300,0,31636 +132957,0,1,0,-1,-1,0,18029,0,31637 +132958,0,1,0,-1,-1,0,15696,0,31638 +132959,0,1,0,-1,-1,0,9408,0,31639 +132960,0,1,0,-1,-1,0,15806,0,31723 +132961,0,1,0,-1,-1,0,9344,0,31724 +132962,0,1,0,-1,-1,0,13881,0,31725 +132963,0,1,0,0,-1,0,14254,0,31726 +132964,0,1,0,0,-1,0,15807,0,31727 +132965,0,1,0,-1,-1,0,14047,0,31728 +132966,0,1,0,-1,-1,0,14049,0,31729 +132967,0,1,0,-1,-1,0,33484,0,31821 +132968,0,1,0,-1,-1,0,9330,0,31822 +132969,0,1,0,-1,-1,0,21364,0,31823 +132970,0,0,0,0,15000,1167,39246,0,31825 +132971,0,0,0,-1,-1,0,39484,0,31912 +132972,0,0,0,-1,-1,0,39484,0,31913 +132973,0,0,0,-1,-1,0,39484,0,31915 +132974,0,0,0,-1,-1,0,39484,0,31916 +132975,0,0,0,-1,-1,0,39484,0,31917 +132976,0,1,0,-1,-1,0,14027,0,32001 +132977,0,1,0,-1,-1,0,14049,0,32002 +132978,0,1,0,-1,-1,0,9336,0,32003 +132979,0,1,0,-1,-1,0,18378,0,32004 +132980,0,1,0,-1,-1,0,33020,0,32005 +132981,0,1,0,-1,-1,0,18041,0,32090 +132982,0,1,0,-1,-1,0,24243,0,32091 +132983,0,0,0,-1,-1,0,39677,0,32092 +132984,0,1,0,-1,-1,0,33063,0,32093 +132985,1,1,0,-1,-1,0,18049,0,32093 +132986,0,1,0,-1,-1,0,14798,0,32094 +132987,0,1,0,-1,-1,0,9334,0,32175 +132988,0,1,0,-1,-1,0,9334,0,32176 +132989,0,1,0,-1,-1,0,9334,0,32177 +132990,0,1,0,-1,-1,0,9334,0,32178 +132991,0,1,0,-1,-1,0,9334,0,32179 +132992,0,1,0,-1,-1,0,9334,0,32180 +132993,0,1,0,-1,-1,0,15824,0,32264 +132994,0,1,0,-1,-1,0,15824,0,32265 +132995,0,1,0,-1,-1,0,15815,0,32266 +132996,0,1,0,-1,-1,0,42157,0,32341 +132997,0,1,0,-1,-1,0,14798,0,32342 +132998,1,1,0,-1,-1,0,35075,0,32342 +132999,0,1,0,-1,-1,0,15715,0,32343 +133000,0,1,0,-1,-1,0,42110,0,32344 +133001,1,1,0,-1,-1,0,21641,0,32344 +133002,0,0,-1,-1,-1,0,483,0,32429 +133003,1,6,0,-1,-1,0,39997,0,32429 +133004,0,0,-1,-1,-1,0,483,0,32430 +133005,1,6,0,-1,-1,0,40000,0,32430 +133006,0,0,-1,-1,-1,0,483,0,32431 +133007,1,6,0,-1,-1,0,40001,0,32431 +133008,0,0,-1,-1,-1,0,483,0,32432 +133009,1,6,0,-1,-1,0,40002,0,32432 +133010,0,1,0,-1,-1,0,15696,0,32516 +133011,1,1,0,-1,-1,0,21364,0,32516 +133012,0,1,0,-1,-1,0,17320,0,32517 +133013,1,1,0,-1,-1,0,21644,0,32517 +133014,0,1,0,-1,-1,0,17320,0,32518 +133015,0,1,0,-1,-1,0,18044,0,32609 +133016,0,0,0,600000,600000,1183,40811,0,32694 +133017,0,0,0,600000,600000,1183,40815,0,32695 +133018,0,0,0,60000,60000,0,40817,0,32696 +133019,0,0,0,-1,-1,0,40856,0,32698 +133020,0,1,0,-1,-1,0,41260,0,32770 +133021,0,1,0,-1,-1,0,41262,0,32771 +133022,0,1,0,0,0,0,15696,0,32772 +133023,0,0,-1,-1,-1,0,41267,0,32773 +133024,0,1,0,0,0,0,15715,0,32774 +133025,0,0,-1,60000,-1,1153,41273,0,32775 +133026,0,1,0,-1,-1,0,14254,0,31456 +133027,0,1,0,900000,10000,1141,15809,0,31457 +133028,0,1,0,-1,-1,0,15809,0,31458 +133029,1,1,0,-1,-1,0,21618,0,31458 +133030,0,1,0,-1,-1,0,9342,0,31459 +133031,0,1,0,-1,-1,0,33274,0,31460 +133032,0,1,0,-1,-1,0,18052,0,31461 +133033,0,1,0,-1,-1,0,21620,0,31640 +133034,1,1,0,-1,-1,0,9317,0,31640 +133035,0,1,0,-1,-1,0,32973,0,31641 +133036,1,1,0,-1,-1,0,18033,0,31641 +133037,0,1,0,-1,-1,0,17371,0,31642 +133038,0,1,0,-1,-1,0,18039,0,31643 +133039,1,1,0,-1,-1,0,21362,0,31643 +133040,0,1,0,-1,-1,0,21362,0,31644 +133041,1,1,0,-1,-1,0,9316,0,31644 +133042,0,1,0,-1,-1,0,17371,0,31730 +133043,0,1,0,-1,-1,0,9344,0,31731 +133044,1,1,0,-1,-1,0,21620,0,31731 +133045,0,1,0,-1,-1,0,9316,0,31732 +133046,1,1,0,-1,-1,0,21620,0,31732 +133047,0,1,0,-1,-1,0,9142,0,31733 +133048,0,0,0,30000,-1,0,39264,0,31827 +133049,0,0,0,15000,-1,0,39371,0,31828 +133050,0,0,0,0,3000,330,39315,0,31829 +133051,0,0,0,0,3000,330,39315,0,31830 +133052,0,0,0,0,3000,330,39317,0,31831 +133053,0,0,0,0,3000,330,39317,0,31832 +133054,0,0,0,-1,-1,0,39484,0,31918 +133055,0,1,0,-1,-1,0,14049,0,31920 +133056,0,1,0,-1,-1,0,14047,0,31921 +133057,0,1,0,-1,-1,0,14047,0,31922 +133058,0,1,0,-1,-1,0,17371,0,31923 +133059,1,1,0,-1,-1,0,21629,0,31923 +133060,0,1,0,-1,-1,0,21626,0,32008 +133061,0,1,0,-1,-1,0,21629,0,32009 +133062,1,1,0,-1,-1,0,18054,0,32009 +133063,0,1,0,-1,-1,0,32973,0,32010 +133064,1,1,0,-1,-1,0,14055,0,32010 +133065,0,1,0,-1,-1,0,17280,0,32011 +133066,0,1,0,-1,-1,0,18057,0,32095 +133067,0,1,0,-1,-1,0,14054,0,32096 +133068,0,1,0,-1,-1,0,18050,0,32097 +133069,0,1,0,-1,-1,0,18031,0,32098 +133070,0,1,0,-1,-1,0,18041,0,32099 +133071,0,1,0,-1,-1,0,15816,0,32182 +133072,0,1,0,-1,-1,0,44910,0,32183 +133073,0,1,0,-1,-1,0,15816,0,32184 +133074,0,1,0,-1,-1,0,37542,0,32185 +133075,0,1,0,-1,-1,0,21435,0,32187 +133076,0,1,0,-1,-1,0,15810,0,32269 +133077,0,1,0,-1,-1,0,18058,0,32270 +133078,0,1,0,-1,-1,0,25179,0,32271 +133079,1,1,0,-1,-1,0,21633,0,32271 +133080,0,1,0,-1,-1,0,17320,0,32273 +133081,0,1,0,-1,-1,0,15824,0,32346 +133082,0,1,0,-1,-1,0,15824,0,32347 +133083,1,1,0,-1,-1,0,42109,0,32348 +133084,0,1,0,-1,-1,0,28264,0,32349 +133085,0,1,0,-1,-1,0,18040,0,32350 +133086,1,1,0,-1,-1,0,21635,0,32350 +133087,0,0,-1,-1,-1,0,483,0,32433 +133088,1,6,0,-1,-1,0,40003,0,32433 +133089,0,0,-1,-1,-1,0,483,0,32434 +133090,1,6,0,-1,-1,0,40004,0,32434 +133091,0,0,-1,-1,-1,0,483,0,32435 +133092,1,6,0,-1,-1,0,40005,0,32435 +133093,0,0,-1,-1,-1,0,483,0,32436 +133094,1,6,0,-1,-1,0,40006,0,32436 +133095,0,1,0,-1,-1,0,18044,0,32519 +133096,0,1,0,-1,-1,0,34592,0,32521 +133097,0,1,0,-1,-1,0,14047,0,32776 +133098,0,1,0,-1,-1,0,13881,0,32778 +133099,0,1,0,0,0,0,17896,0,32779 +133100,1,1,0,-1,-1,0,16638,0,32779 +133101,0,1,0,-1,-1,0,14056,0,31462 +133102,0,0,0,1000,-1,0,38554,0,31463 +133103,0,1,0,-1,-1,0,15810,0,31464 +133104,0,1,0,-1,-1,0,18030,0,31465 +133105,0,0,-1,-1,-1,0,38746,0,31645 +133106,0,1,0,-1,-1,0,21620,0,31646 +133107,1,1,0,-1,-1,0,9317,0,31646 +133108,0,1,0,-1,-1,0,32973,0,31647 +133109,1,1,0,-1,-1,0,18033,0,31647 +133110,0,1,0,-1,-1,0,17371,0,31648 +133111,0,1,0,-1,-1,0,18039,0,31649 +133112,1,1,0,-1,-1,0,21362,0,31649 +133113,0,0,-1,-1,-1,0,39094,0,31736 +133114,0,0,0,30000,-1,0,36374,0,31739 +133115,0,0,0,0,3000,330,39318,0,31833 +133116,0,0,0,0,3000,330,39318,0,31834 +133117,0,0,0,0,3000,330,39319,0,31835 +133118,0,0,0,0,3000,330,39319,0,31836 +133119,0,0,-1,-1,-1,0,483,0,31837 +133120,1,6,0,-1,-1,0,39374,0,31837 +133121,0,1,0,-1,-1,0,28360,0,32012 +133122,1,1,0,-1,-1,0,21629,0,32012 +133123,0,1,0,-1,-1,0,21626,0,32013 +133124,1,1,0,-1,-1,0,18049,0,32013 +133125,0,1,0,-1,-1,0,44915,0,32014 +133126,0,1,0,-1,-1,0,23044,0,32015 +133127,1,1,0,-1,-1,0,18037,0,32015 +133128,0,1,0,-1,-1,0,18038,0,32016 +133129,0,1,0,-1,-1,0,23044,0,32100 +133130,1,1,0,-1,-1,0,18034,0,32100 +133131,0,1,0,-1,-1,0,9318,0,32101 +133132,0,1,0,-1,-1,0,18036,0,32102 +133133,0,1,0,-1,-1,0,23044,0,32103 +133134,1,1,0,-1,-1,0,15715,0,32103 +133135,0,1,0,-1,-1,0,9346,0,32104 +133136,0,1,0,-1,-1,0,9334,0,32188 +133137,0,1,0,-1,-1,0,9334,0,32189 +133138,0,1,0,-1,-1,0,37542,0,32190 +133139,0,1,0,0,0,0,9344,0,32191 +133140,0,0,-1,-1,-1,0,483,0,32274 +133141,1,6,0,-1,-1,0,39705,0,32274 +133142,0,1,0,-1,-1,0,17320,0,32275 +133143,0,1,0,-1,-1,0,17493,0,32276 +133144,0,0,-1,-1,-1,0,483,0,32277 +133145,1,6,0,-1,-1,0,39706,0,32277 +133146,0,1,0,-1,-1,0,42095,0,32278 +133147,0,1,0,-1,-1,0,18052,0,32351 +133148,1,1,0,-1,-1,0,18379,0,32351 +133149,0,1,0,-1,-1,0,17493,0,32352 +133150,1,1,0,-1,-1,0,21628,0,32352 +133151,0,1,0,-1,-1,0,18045,0,32353 +133152,1,1,0,-1,-1,0,21366,0,32353 +133153,0,1,0,-1,-1,0,25179,0,32354 +133154,0,0,-1,-1,-1,0,483,0,32437 +133155,1,6,0,-1,-1,0,40020,0,32437 +133156,0,0,-1,-1,-1,0,483,0,32438 +133157,1,6,0,-1,-1,0,40021,0,32438 +133158,0,0,-1,-1,-1,0,483,0,32439 +133159,1,6,0,-1,-1,0,40023,0,32439 +133160,0,0,-1,-1,-1,0,483,0,32440 +133161,1,6,0,-1,-1,0,40024,0,32440 +133162,0,1,0,-1,-1,0,18042,0,32524 +133163,0,1,0,-1,-1,0,23730,0,32525 +133164,0,1,0,-1,-1,0,15818,0,32526 +133165,0,1,0,-1,-1,0,18055,0,32527 +133166,0,1,0,-1,-1,0,18044,0,32528 +133167,1,1,0,-1,-1,0,21626,0,32528 +133168,0,0,0,10000,-1,0,40614,0,32616 +133169,0,0,0,1500,-1,0,40613,0,32617 +133170,0,0,-1,-1,-1,24,40309,0,32618 +133171,0,1,0,-1,-1,0,18039,0,31375 +133172,1,1,0,-1,-1,0,33830,0,31375 +133173,2,1,0,-1,-1,0,21626,0,31375 +133174,0,1,0,-1,-1,0,18045,0,31376 +133175,1,1,0,-1,-1,0,21627,0,31376 +133176,0,1,0,-1,-1,0,17320,0,31377 +133177,1,1,0,-1,-1,0,20959,0,31377 +133178,0,1,0,-1,-1,0,18033,0,31378 +133179,1,1,0,-1,-1,0,21362,0,31378 +133180,0,1,0,-1,-1,0,18045,0,31379 +133181,1,1,0,-1,-1,0,21627,0,31379 +133182,0,1,0,-1,-1,0,18057,0,31470 +133183,0,1,0,-1,-1,0,15820,0,31471 +133184,0,1,0,-1,-1,0,9336,0,31472 +133185,1,1,0,-1,-1,0,21618,0,31472 +133186,0,1,0,-1,-1,0,21362,0,31650 +133187,1,1,0,-1,-1,0,9316,0,31650 +133188,0,0,0,0,10000,1167,38762,0,31652 +133189,0,0,0,-1,-1,0,39105,0,31742 +133190,0,1,0,-1,-1,0,37651,0,31745 +133191,0,1,0,-1,-1,0,14054,0,31747 +133192,0,0,-1,0,120000,4,17534,0,31838 +133193,0,0,-1,0,120000,4,17534,0,31839 +133194,0,0,-1,0,120000,4,17531,0,31840 +133195,0,0,-1,0,120000,4,17531,0,31841 +133196,0,1,0,-1,-1,0,18044,0,32017 +133197,1,1,0,-1,-1,0,21636,0,32017 +133198,0,1,0,-1,-1,0,18034,0,32018 +133199,0,1,0,-1,-1,0,15696,0,32019 +133200,1,1,0,-1,-1,0,21629,0,32019 +133201,0,1,0,-1,-1,0,18033,0,32020 +133202,0,1,0,-1,-1,0,18040,0,32021 +133203,1,1,0,-1,-1,0,38522,0,32021 +133204,0,1,0,-1,-1,0,18041,0,32022 +133205,0,1,0,-1,-1,0,18053,0,32105 +133206,0,1,0,-1,-1,0,9344,0,32106 +133207,0,1,0,-1,-1,0,14054,0,32107 +133208,0,1,0,-1,-1,0,15715,0,32108 +133209,0,1,0,-1,-1,0,14047,0,32109 +133210,0,1,0,-1,-1,0,15714,0,32279 +133211,3,1,0,-1,-1,0,42104,0,32280 +133212,0,0,-1,-1,-1,0,483,0,32281 +133213,1,6,0,-1,-1,0,39710,0,32281 +133214,0,0,-1,-1,-1,0,483,0,32282 +133215,1,6,0,-1,-1,0,39711,0,32282 +133216,0,0,-1,-1,-1,0,483,0,32283 +133217,1,6,0,-1,-1,0,39712,0,32283 +133218,0,1,0,-1,-1,0,18058,0,32361 +133219,0,0,-1,-1,-1,0,483,0,32441 +133220,1,6,0,-1,-1,0,40033,0,32441 +133221,0,0,-1,-1,-1,0,483,0,32442 +133222,1,6,0,-1,-1,0,40034,0,32442 +133223,0,0,-1,-1,-1,0,483,0,32443 +133224,1,6,0,-1,-1,0,40035,0,32443 +133225,0,0,-1,-1,-1,0,483,0,32444 +133226,1,6,0,-1,-1,0,40036,0,32444 +133227,0,1,0,-1,-1,0,18037,0,32531 +133228,1,1,0,-1,-1,0,21618,0,32531 +133229,0,1,0,-1,-1,0,14052,0,32532 +133230,0,1,0,-1,-1,0,14055,0,32533 +133231,0,0,0,300000,0,0,40538,0,32534 +133232,0,1,0,-1,-1,0,18041,0,32535 +133233,0,0,0,1500,-1,0,40634,0,32622 +133234,0,1,0,0,0,0,14027,0,31381 +133235,0,1,0,0,0,0,9343,0,31382 +133236,0,1,0,0,0,0,18040,0,31383 +133237,0,0,0,-1,-1,0,38482,0,31386 +133238,0,1,0,0,-1,0,9344,0,31474 +133239,0,1,0,-1,-1,0,33030,0,31475 +133240,1,1,0,-1,-1,0,21618,0,31475 +133241,0,1,0,-1,-1,0,9142,0,31476 +133242,0,1,0,-1,-1,0,14798,0,31477 +133243,0,1,0,-1,-1,0,9336,0,31478 +133244,0,1,0,-1,-1,0,14047,0,31479 +133245,1,1,0,-1,-1,0,21625,0,31479 +133246,0,0,-1,-1,-1,0,38779,0,31655 +133247,0,1,0,-1,-1,0,14248,0,31657 +133248,0,1,0,-1,-1,0,14027,0,31658 +133249,0,1,0,-1,-1,0,14254,0,31659 +133250,0,1,0,-1,-1,0,15811,0,31748 +133251,0,1,0,-1,-1,0,18035,0,31749 +133252,0,0,0,30000,-1,0,39220,0,31752 +133253,0,0,-1,0,0,0,39403,0,31842 +133254,0,0,-1,0,0,0,39404,0,31843 +133255,0,0,-1,0,0,0,39405,0,31844 +133256,0,0,-1,0,0,0,39406,0,31845 +133257,0,0,-1,0,0,0,39407,0,31846 +133258,0,0,-1,0,0,0,39408,0,31847 +133259,0,1,0,-1,-1,0,18048,0,32023 +133260,0,1,0,-1,-1,0,17371,0,32024 +133261,0,1,0,-1,-1,0,15827,0,32025 +133262,0,1,0,-1,-1,0,9336,0,32026 +133263,0,1,0,-1,-1,0,9336,0,32027 +133264,0,1,0,-1,-1,0,33066,0,32110 +133265,1,1,0,-1,-1,0,14254,0,32110 +133266,0,1,0,-1,-1,0,14047,0,32111 +133267,0,1,0,-1,-1,0,18050,0,32112 +133268,0,1,0,-1,-1,0,18029,0,32113 +133269,1,1,0,-1,-1,0,33830,0,32113 +133270,0,1,0,-1,-1,0,9317,0,32114 +133271,0,1,0,-1,-1,0,18034,0,32115 +133272,0,0,-1,-1,-1,0,483,0,32284 +133273,1,6,0,-1,-1,0,39713,0,32284 +133274,0,0,-1,-1,-1,0,483,0,32285 +133275,1,6,0,-1,-1,0,39714,0,32285 +133276,0,0,-1,-1,-1,0,483,0,32286 +133277,1,6,0,-1,-1,0,39715,0,32286 +133278,0,0,-1,-1,-1,0,483,0,32287 +133279,1,6,0,-1,-1,0,39716,0,32287 +133280,0,1,0,-1,-1,0,18030,0,32363 +133281,0,1,0,-1,-1,0,15824,0,32366 +133282,0,1,0,-1,-1,0,26158,0,32367 +133283,0,0,-1,-1,-1,0,37678,0,32446 +133284,0,0,-1,-1,-1,0,483,0,32447 +133285,1,6,0,-1,-1,0,40060,0,32447 +133286,0,0,0,-1,-1,0,40098,0,32449 +133287,0,1,0,-1,-1,0,41973,0,32450 +133288,0,1,0,0,-1,0,34796,0,32537 +133289,0,1,0,-1,-1,0,14798,0,32538 +133290,1,0,0,1800000,-1,0,12438,0,32538 +133291,0,1,0,-1,-1,0,15812,0,32539 +133292,1,0,0,1800000,-1,0,12438,0,32539 +133293,0,1,0,-1,-1,0,15814,0,32540 +133294,0,1,0,-1,-1,0,18050,0,32541 +133295,0,0,-1,-1,-1,0,483,0,31390 +133296,1,6,0,-1,-1,0,38473,0,31390 +133297,0,0,-1,-1,-1,0,483,0,31391 +133298,1,6,0,-1,-1,0,38475,0,31391 +133299,0,1,0,0,-1,0,14047,0,31481 +133300,0,1,0,-1,-1,0,15812,0,31482 +133301,1,1,0,-1,-1,0,15812,0,31483 +133302,0,1,0,-1,-1,0,9336,0,31484 +133303,1,1,0,-1,-1,0,21618,0,31484 +133304,0,1,0,-1,-1,0,18057,0,31485 +133305,0,1,0,-1,-1,0,14089,0,31660 +133306,0,1,0,-1,-1,0,9334,0,31661 +133307,0,0,-5,5000,5000,0,38780,0,31663 +133308,0,0,-1,-1,-1,0,38790,0,31664 +133309,0,0,0,1500,-1,0,38842,0,31665 +133310,0,0,-1,1000,-1,0,39161,0,31754 +133311,0,1,0,-1,-1,0,9330,0,31756 +133312,0,1,0,-1,-1,0,14798,0,31758 +133313,0,1,0,-1,-1,0,15808,0,31759 +133314,0,0,-1,0,0,0,39410,0,31848 +133315,0,0,-1,0,0,0,39411,0,31849 +133316,0,1,0,-1,-1,0,39421,0,31850 +133317,0,1,0,-1,-1,0,39423,0,31851 +133318,0,0,-1,0,120000,4,17534,0,31852 +133319,0,0,-1,0,120000,4,17534,0,31853 +133320,0,0,0,60000,0,0,39527,0,31946 +133321,0,1,0,-1,-1,0,9336,0,32028 +133322,0,1,0,-1,-1,0,21628,0,32029 +133323,1,1,0,-1,-1,0,18043,0,32029 +133324,0,1,0,-1,-1,0,38501,0,32030 +133325,1,1,0,-1,-1,0,18043,0,32030 +133326,0,1,0,-1,-1,0,18045,0,32031 +133327,0,1,0,-1,-1,0,26154,0,32032 +133328,1,1,0,-1,-1,0,21629,0,32032 +133329,0,1,0,-1,-1,0,18379,0,32033 +133330,1,1,0,-1,-1,0,18034,0,32033 +133331,0,1,0,-1,-1,0,9406,0,32116 +133332,0,1,0,-1,-1,0,9317,0,32117 +133333,0,1,0,-1,-1,0,18035,0,32118 +133334,1,1,0,-1,-1,0,33830,0,32118 +133335,2,1,0,-1,-1,0,21619,0,32118 +133336,0,1,0,-1,-1,0,17371,0,32119 +133337,1,1,0,-1,-1,0,21626,0,32119 +133338,0,1,0,-1,-1,0,9335,0,32120 +133339,0,0,-1,-1,-1,0,483,0,32288 +133340,1,6,0,-1,-1,0,39717,0,32288 +133341,0,0,-1,-1,-1,0,483,0,32289 +133342,1,6,0,-1,-1,0,39718,0,32289 +133343,0,0,-1,-1,-1,0,483,0,32290 +133344,1,6,0,-1,-1,0,39719,0,32290 +133345,0,0,-1,-1,-1,0,483,0,32291 +133346,1,6,0,-1,-1,0,39720,0,32291 +133347,0,1,0,-1,-1,0,41042,0,32368 +133348,0,1,0,-1,-1,0,15810,0,32369 +133349,0,1,0,-1,-1,0,18047,0,32370 +133350,1,1,0,-1,-1,0,21629,0,32370 +133351,0,1,0,-1,-1,0,42120,0,32451 +133352,0,1,0,0,0,0,18029,0,32452 +133353,0,0,-1,0,1000,59,27089,0,32453 +133354,0,0,-1,0,1000,59,22734,0,32455 +133355,0,0,0,5000,-1,0,40160,0,32456 +133356,0,0,0,30000,-1,0,40527,0,32542 +133357,0,2,0,-1,-1,0,21165,0,32719 +133358,0,0,-1,0,1000,11,41030,0,32721 +133359,0,0,-1,0,1000,11,41031,0,32722 +133360,0,0,-1,-1,-1,0,483,0,31392 +133361,1,6,0,-1,-1,0,38476,0,31392 +133362,0,0,-1,-1,-1,0,483,0,31393 +133363,1,6,0,-1,-1,0,38477,0,31393 +133364,0,0,-1,-1,-1,0,483,0,31394 +133365,1,6,0,-1,-1,0,38478,0,31394 +133366,0,0,-1,-1,-1,0,483,0,31395 +133367,1,6,0,-1,-1,0,38479,0,31395 +133368,0,1,0,-1,-1,0,21364,0,31396 +133369,1,1,0,-1,-1,0,18038,0,31396 +133370,0,1,0,-1,-1,0,15820,0,31487 +133371,0,1,0,-1,-1,0,14799,0,31488 +133372,0,1,0,-1,-1,0,22852,0,31490 +133373,0,1,0,-1,-1,0,23731,0,31491 +133374,1,1,0,-1,-1,0,9344,0,31491 +133375,0,1,0,-1,-1,0,18035,0,31584 +133376,1,1,0,-1,-1,0,33830,0,31584 +133377,2,1,0,-1,-1,0,21619,0,31584 +133378,0,1,0,-1,-1,0,17371,0,31585 +133379,1,1,0,-1,-1,0,21626,0,31585 +133380,0,0,-10,30000,-1,0,45257,0,31666 +133381,0,0,0,-1,-1,611,22578,0,31667 +133382,0,0,0,5000,5000,0,38862,0,31668 +133383,0,0,0,1500,-1,0,39181,0,31760 +133384,0,1,0,-1,-1,0,9344,0,31761 +133385,0,1,0,-1,-1,0,9334,0,31762 +133386,0,0,0,120000,120000,0,38782,0,31763 +133387,0,1,0,-1,-1,0,15715,0,31764 +133388,1,1,0,-1,-1,0,18378,0,31764 +133389,0,1,0,-1,-1,0,15715,0,31765 +133390,0,0,-1,0,120000,4,17531,0,31854 +133391,0,0,-1,0,120000,4,17531,0,31855 +133392,0,1,0,-1,-1,0,39438,0,31856 +133393,1,1,0,-1,-1,0,39440,0,31856 +133394,0,1,0,-1,-1,0,39442,0,31857 +133395,0,1,0,-1,-1,0,39444,0,31858 +133396,0,1,0,-1,-1,0,23044,0,32034 +133397,1,1,0,-1,-1,0,14798,0,32034 +133398,0,1,0,-1,-1,0,18053,0,32035 +133399,0,1,0,-1,-1,0,28767,0,32036 +133400,0,1,0,-1,-1,0,14054,0,32037 +133401,0,1,0,-1,-1,0,14055,0,32038 +133402,0,1,0,-1,-1,0,9315,0,32121 +133403,1,1,0,-1,-1,0,21624,0,32121 +133404,0,1,0,-1,-1,0,18040,0,32122 +133405,1,1,0,-1,-1,0,21629,0,32122 +133406,0,1,0,-1,-1,0,18032,0,32123 +133407,1,1,0,-1,-1,0,21363,0,32123 +133408,0,1,0,-1,-1,0,9332,0,32124 +133409,1,1,0,-1,-1,0,32748,0,32124 +133410,0,1,0,-1,-1,0,9331,0,32125 +133411,0,0,-1,-1,-1,0,483,0,32292 +133412,1,6,0,-1,-1,0,39721,0,32292 +133413,0,0,-1,-1,-1,0,483,0,32293 +133414,1,6,0,-1,-1,0,39722,0,32293 +133415,0,0,-1,-1,-1,0,483,0,32294 +133416,1,6,0,-1,-1,0,39723,0,32294 +133417,0,0,-1,-1,-1,0,483,0,32295 +133418,1,6,0,-1,-1,0,39724,0,32295 +133419,0,0,-1,-1,-1,0,483,0,32296 +133420,1,6,0,-1,-1,0,39725,0,32296 +133421,0,1,0,-1,-1,0,42062,0,32374 +133422,0,1,0,-1,-1,0,40407,0,32375 +133423,0,1,0,-1,-1,0,28735,0,32376 +133424,0,1,0,-1,-1,0,29524,0,32377 +133425,0,0,0,-1,-1,0,40164,0,32457 +133426,0,0,0,-1,3000,330,40192,0,32458 +133427,0,1,0,-1,-1,0,30645,0,32461 +133428,1,1,0,0,-1,0,40273,0,32461 +133429,2,0,0,3000,-1,0,12883,0,32461 +133430,0,1,0,-1,-1,0,38501,0,31397 +133431,1,1,0,-1,-1,0,18038,0,31397 +133432,0,1,0,-1,-1,0,18039,0,31400 +133433,0,0,-1,-1,-1,0,483,0,31401 +133434,1,6,0,-1,-1,0,38503,0,31401 +133435,1,1,0,-1,-1,0,9336,0,31492 +133436,0,1,0,-1,-1,0,9318,0,31493 +133437,1,1,0,-1,-1,0,18379,0,31493 +133438,0,1,0,-1,-1,0,9346,0,31494 +133439,1,1,0,-1,-1,0,18379,0,31494 +133440,0,0,-1,-1,-1,0,38613,0,31495 +133441,0,1,0,-1,-1,0,18040,0,31586 +133442,1,1,0,-1,-1,0,21629,0,31586 +133443,0,1,0,-1,-1,0,9315,0,31587 +133444,1,1,0,-1,-1,0,21624,0,31587 +133445,0,1,0,-1,-1,0,18032,0,31588 +133446,1,1,0,-1,-1,0,21363,0,31588 +133447,0,1,0,-1,-1,0,18035,0,31589 +133448,1,1,0,-1,-1,0,33830,0,31589 +133449,2,1,0,-1,-1,0,21619,0,31589 +133450,0,1,0,-1,-1,0,17371,0,31590 +133451,1,1,0,-1,-1,0,21626,0,31590 +133452,0,1,0,-1,-1,0,18040,0,31591 +133453,1,1,0,-1,-1,0,21629,0,31591 +133454,0,0,-1,0,1000,11,35271,0,31672 +133455,0,0,-1,0,1000,11,33264,0,31673 +133456,0,0,-1,-1,-1,0,483,0,31674 +133457,1,6,0,-1,-1,0,38868,0,31674 +133458,0,0,-1,-1,-1,0,483,0,31675 +133459,1,6,0,-1,-1,0,38867,0,31675 +133460,0,0,-1,0,120000,4,38908,0,31676 +133461,0,1,0,-1,-1,0,15715,0,31766 +133462,0,0,-1,-1,-1,0,3366,0,31767 +133463,0,1,0,-1,-1,0,9343,0,31768 +133464,0,0,0,-1,-1,0,39189,0,31769 +133465,0,1,0,-1,-1,0,14248,0,31770 +133466,0,0,0,300000,-1,0,39183,0,31772 +133467,0,1,0,-1,-1,0,39446,0,31859 +133468,0,1,0,-1,-1,0,9336,0,31958 +133469,1,1,0,-1,-1,0,23300,0,32040 +133470,0,1,0,-1,-1,0,9336,0,32044 +133471,0,1,0,-1,-1,0,9332,0,32126 +133472,0,1,0,-1,-1,0,9141,0,32127 +133473,0,1,0,-1,-1,0,17367,0,32128 +133474,1,1,0,-1,-1,0,33830,0,32128 +133475,2,1,0,-1,-1,0,21619,0,32128 +133476,0,1,0,-1,-1,0,18052,0,32129 +133477,1,1,0,-1,-1,0,21626,0,32129 +133478,0,1,0,-1,-1,0,18055,0,32130 +133479,1,1,0,-1,-1,0,21629,0,32130 +133480,0,1,0,-1,-1,0,9343,0,32131 +133481,1,1,0,-1,-1,0,21624,0,32131 +133482,0,0,-1,-1,-1,0,483,0,32297 +133483,1,6,0,-1,-1,0,39727,0,32297 +133484,0,0,-1,-1,-1,0,483,0,32298 +133485,1,6,0,-1,-1,0,39728,0,32298 +133486,0,0,-1,-1,-1,0,483,0,32299 +133487,1,6,0,-1,-1,0,39729,0,32299 +133488,0,0,-1,-1,-1,0,483,0,32300 +133489,1,6,0,-1,-1,0,39730,0,32300 +133490,0,0,-1,-1,-1,0,483,0,32381 +133491,1,6,0,-1,-1,0,39895,0,32381 +133492,0,0,0,1500,-1,0,40319,0,32465 +133493,0,0,0,30000,-1,0,40328,0,32467 +133494,0,0,-1,-1,-1,0,483,0,31402 +133495,1,6,0,-1,-1,0,38504,0,31402 +133496,0,0,3,1000,1000,0,38510,0,31403 +133497,0,1,0,-1,-1,0,18047,0,31406 +133498,1,1,0,-1,-1,0,18379,0,31406 +133499,0,1,0,-1,-1,0,21626,0,31407 +133500,1,1,0,-1,-1,0,18032,0,31407 +133501,0,0,-1,-1,-1,0,483,0,31501 +133502,1,6,0,-1,-1,0,33717,0,31501 +133503,0,1,0,-1,-1,0,9315,0,31592 +133504,1,1,0,-1,-1,0,21624,0,31592 +133505,0,1,0,-1,-1,0,18032,0,31593 +133506,1,1,0,-1,-1,0,21363,0,31593 +133507,0,1,0,-1,-1,0,18039,0,31594 +133508,1,1,0,-1,-1,0,21628,0,31594 +133509,0,1,0,-1,-1,0,18039,0,31595 +133510,1,1,0,-1,-1,0,21628,0,31595 +133511,0,1,0,-1,-1,0,18039,0,31596 +133512,1,1,0,-1,-1,0,21628,0,31596 +133513,0,0,-1,0,120000,4,38929,0,31677 +133514,0,0,0,45000,45000,0,38915,0,31678 +133515,0,0,-1,0,3000,79,38954,0,31679 +133516,0,0,-1,-1,-1,0,483,0,31680 +133517,1,6,0,-1,-1,0,38960,0,31680 +133518,0,0,-1,-1,-1,0,483,0,31681 +133519,1,6,0,-1,-1,0,38962,0,31681 +133520,0,1,0,-1,-1,0,15807,0,31960 +133521,0,1,0,-1,-1,0,15806,0,31961 +133522,1,1,0,-1,-1,0,28539,0,31961 +133523,0,1,0,-1,-1,0,14056,0,31962 +133524,0,1,0,-1,-1,0,15812,0,31963 +133525,0,1,0,-1,-1,0,9336,0,32046 +133526,0,1,0,-1,-1,0,18053,0,32047 +133527,0,1,0,-1,-1,0,18058,0,32048 +133528,0,1,0,-1,-1,0,33066,0,32049 +133529,1,1,0,-1,-1,0,18053,0,32049 +133530,0,1,0,-1,-1,0,14055,0,32050 +133531,0,1,0,-1,-1,0,15714,0,32132 +133532,1,1,0,-1,-1,0,21363,0,32132 +133533,0,1,0,-1,-1,0,9141,0,32133 +133534,0,1,0,-1,-1,0,9331,0,32134 +133535,1,1,0,-1,-1,0,28539,0,32134 +133536,0,1,0,-1,-1,0,9335,0,32135 +133537,0,1,0,-1,-1,0,9335,0,32136 +133538,0,0,-1,-1,-1,0,483,0,32301 +133539,1,6,0,-1,-1,0,39731,0,32301 +133540,0,0,-1,-1,-1,0,483,0,32302 +133541,1,6,0,-1,-1,0,39732,0,32302 +133542,0,0,-1,-1,-1,0,483,0,32303 +133543,1,6,0,-1,-1,0,39733,0,32303 +133544,0,0,-1,-1,-1,0,483,0,32304 +133545,1,6,0,-1,-1,0,39734,0,32304 +133546,0,1,0,-1,-1,0,23730,0,32384 +133547,0,1,0,-1,-1,0,39926,0,32387 +133548,0,1,0,-1,-1,0,15817,0,32471 +133549,1,2,0,-1,-1,0,40393,0,32471 +133550,0,1,0,-1,-1,0,31941,0,32472 +133551,1,1,0,0,-1,0,30645,0,32472 +133552,2,1,0,0,-1,0,40273,0,32472 +133553,3,0,0,3000,-1,0,12883,0,32472 +133554,0,1,0,-1,-1,0,30645,0,32473 +133555,1,1,0,0,-1,0,40273,0,32473 +133556,2,0,0,3000,-1,0,12883,0,32473 +133557,0,0,-1,0,1000,11,40543,0,32563 +133558,0,0,0,-1,-1,0,28226,0,32646 +133559,0,1,0,0,0,0,15809,0,32647 +133560,0,1,0,-1,-1,0,18044,0,34432 +133561,1,1,0,-1,-1,0,20959,0,34432 +133562,0,1,0,-1,-1,0,15715,0,34433 +133563,0,1,0,-1,-1,0,18055,0,34434 +133564,1,1,0,-1,-1,0,21620,0,34434 +133565,0,1,0,-1,-1,0,18044,0,34435 +133566,0,1,0,-1,-1,0,18055,0,34436 +133567,0,1,0,-1,-1,0,21439,0,34529 +133568,0,1,0,-1,-1,0,21439,0,34530 +133569,0,0,0,-1,-1,0,45191,0,34533 +133570,0,1,0,-1,-1,0,9141,0,32815 +133571,0,1,0,-1,-1,0,15714,0,32817 +133572,0,0,-1,0,120000,4,41617,0,32903 +133573,0,0,-1,0,120000,4,41619,0,32904 +133574,0,0,-1,0,120000,4,41620,0,32905 +133575,0,0,12,5000,5000,0,41621,0,32907 +133576,0,1,0,-1,-1,0,15696,0,32992 +133577,0,1,0,-1,-1,0,15696,0,32993 +133578,0,1,0,-1,-1,0,18030,0,32994 +133579,0,1,0,-1,-1,0,15696,0,32995 +133580,0,1,0,-1,-1,0,15696,0,32996 +133581,0,1,0,-1,-1,0,42370,0,33078 +133582,0,0,0,1500,0,0,42365,0,33079 +133583,0,0,-1,1000,-1,0,42383,0,33081 +133584,0,0,-1,-1,-1,0,42390,0,33082 +133585,0,0,-1,10000,-1,0,42391,0,33083 +133586,0,0,0,0,3000,330,42692,0,33189 +133587,0,1,0,-1,-1,0,39987,0,33191 +133588,0,1,0,-1,-1,0,9346,0,33192 +133589,0,1,0,-1,-1,0,15809,0,33298 +133590,1,1,0,-1,-1,0,42098,0,33298 +133591,0,1,0,-1,-1,0,18040,0,33299 +133592,1,1,0,-1,-1,0,21634,0,33299 +133593,0,1,0,-1,-1,0,15819,0,33300 +133594,0,0,0,0,3000,330,42929,0,33302 +133595,0,1,0,-1,-1,0,14054,0,33304 +133596,0,1,0,-1,-1,0,28113,0,33523 +133597,1,1,0,-1,-1,0,14047,0,33523 +133598,0,1,0,-1,-1,0,14047,0,33524 +133599,0,1,0,-1,-1,0,15831,0,33527 +133600,1,1,0,-1,-1,0,42095,0,33527 +133601,0,1,0,-1,-1,0,15815,0,33528 +133602,0,1,0,-1,-1,0,14056,0,33529 +133603,1,1,0,-1,-1,0,39925,0,33529 +133604,0,1,0,-1,-1,0,33820,0,33530 +133605,1,1,0,-1,-1,0,21628,0,33530 +133606,0,1,0,-1,-1,0,24196,0,33698 +133607,0,1,0,-1,-1,0,14127,0,33699 +133608,0,1,0,-1,-1,0,14049,0,33700 +133609,1,1,0,-1,-1,0,32748,0,33700 +133610,0,1,0,-1,-1,0,15812,0,33701 +133611,1,1,0,-1,-1,0,39927,0,33701 +133612,0,1,0,-1,-1,0,14056,0,33702 +133613,1,1,0,-1,-1,0,39927,0,33702 +133614,0,5,0,-1,-1,0,44066,0,33797 +133615,0,1,0,-1,-1,0,43534,0,33799 +133616,1,1,0,-1,-1,0,43533,0,33799 +133617,0,0,0,-1,-1,0,42924,0,33800 +133618,0,1,0,-1,-1,0,18057,0,33882 +133619,0,1,0,-1,-1,0,13881,0,33883 +133620,0,1,0,-1,-1,0,18057,0,33884 +133621,0,1,0,-1,-1,0,18045,0,33885 +133622,1,1,0,-1,-1,0,21631,0,33885 +133623,0,1,0,-1,-1,0,18045,0,33886 +133624,1,1,0,-1,-1,0,21631,0,33886 +133625,0,1,0,-1,-1,0,18031,0,33887 +133626,1,1,0,-1,-1,0,21364,0,33887 +133627,0,0,0,0,3000,330,43900,0,33977 +133628,0,0,-1,-1,-1,0,483,0,34109 +133629,1,6,0,-1,-1,0,43308,0,34109 +133630,0,0,-1,-1,-1,0,44383,0,34110 +133631,0,0,-1,0,600000,1193,44389,0,34113 +133632,0,0,-1,-1,-1,0,483,0,34114 +133633,1,6,0,-1,-1,0,44391,0,34114 +133634,0,0,0,0,3000,330,35028,0,34129 +133635,0,0,-1,0,3000,79,44467,0,34130 +133636,0,1,0,-1,-1,0,39885,0,34244 +133637,0,1,0,-1,-1,0,44853,0,34245 +133638,1,1,0,-1,-1,0,21634,0,34245 +133639,0,1,0,-1,-1,0,39885,0,34247 +133640,0,0,-1,-1,-1,0,44856,0,34248 +133641,0,1,0,-1,-1,0,44979,0,34340 +133642,0,1,0,-1,-1,0,40679,0,34341 +133643,0,1,0,-1,-1,0,33820,0,34342 +133644,0,1,0,-1,-1,0,15826,0,34343 +133645,1,1,0,-1,-1,0,44810,0,34343 +133646,0,1,0,-1,-1,0,24196,0,34344 +133647,0,1,0,-1,-1,0,44983,0,34345 +133648,0,1,0,-1,-1,0,18055,0,34437 +133649,0,1,0,-1,-1,0,18044,0,34438 +133650,1,1,0,-1,-1,0,21634,0,34438 +133651,0,0,-1,0,120000,4,45051,0,34440 +133652,0,1,0,-1,-1,0,42098,0,34441 +133653,0,0,0,1500,-1,0,10696,0,34535 +133654,0,0,-1,0,3000,79,45373,0,34537 +133655,0,0,-5,1000,-1,0,45395,0,34538 +133656,0,0,-5,1000,-1,0,45397,0,34539 +133657,0,1,0,-1,-1,0,43455,0,34540 +133658,0,1,0,-1,-1,0,15714,0,32820 +133659,0,1,0,-1,-1,0,14254,0,32821 +133660,1,1,0,-1,-1,0,18379,0,32821 +133661,0,2,0,-1,-1,0,18112,0,32824 +133662,0,0,0,0,10000,1167,41291,0,32825 +133663,0,0,-1,0,120000,4,41304,0,32909 +133664,0,0,-1,0,120000,4,41306,0,32910 +133665,0,0,-1,-1,-1,0,3366,0,32911 +133666,0,0,0,-1,-1,0,41920,0,32912 +133667,0,0,-1,0,1000,59,11009,0,32913 +133668,0,1,0,-1,-1,0,18032,0,32997 +133669,0,1,0,-1,-1,0,18038,0,32998 +133670,0,1,0,-1,-1,0,18038,0,32999 +133671,0,1,0,-1,-1,0,14803,0,33000 +133672,1,1,0,-1,-1,0,7597,0,33000 +133673,0,0,-1,-1,-1,0,42169,0,33001 +133674,0,0,0,5000,-1,0,42411,0,33088 +133675,0,0,-1,0,1000,11,42417,0,33090 +133676,0,0,0,10000,-1,0,42418,0,33091 +133677,0,0,-1,0,120000,4,28495,0,33092 +133678,0,0,-1,0,120000,4,28499,0,33093 +133679,0,0,-1,-1,-1,0,483,0,33305 +133680,1,6,0,-1,-1,0,42558,0,33305 +133681,0,0,0,-1,-1,0,42924,0,33306 +133682,0,0,-1,-1,-1,0,483,0,33307 +133683,1,6,0,-1,-1,0,42974,0,33307 +133684,0,1,0,-1,-1,0,18039,0,33309 +133685,0,1,0,-1,-1,0,18045,0,33531 +133686,1,1,0,-1,-1,0,21639,0,33531 +133687,0,1,0,-1,-1,0,18036,0,33532 +133688,1,1,0,-1,-1,0,20959,0,33532 +133689,0,1,0,-1,-1,0,28264,0,33533 +133690,0,1,0,-1,-1,0,18052,0,33534 +133691,0,1,0,-1,-1,0,18049,0,33535 +133692,1,1,0,-1,-1,0,21630,0,33535 +133693,0,1,0,-1,-1,0,9336,0,33703 +133694,0,1,0,-1,-1,0,9333,0,33704 +133695,1,1,0,-1,-1,0,39927,0,33704 +133696,0,1,0,-1,-1,0,15806,0,33705 +133697,1,1,0,-1,-1,0,43901,0,33705 +133698,0,1,0,-1,-1,0,21632,0,33706 +133699,1,1,0,-1,-1,0,39927,0,33706 +133700,0,1,0,-1,-1,0,32973,0,33707 +133701,0,1,0,-1,-1,0,39927,0,33708 +133702,0,1,0,-1,-1,0,15806,0,33801 +133703,1,1,0,-1,-1,0,43901,0,33801 +133704,0,0,-1,-1,-1,0,483,0,33804 +133705,1,6,0,-1,-1,0,43676,0,33804 +133706,0,1,0,-1,-1,0,15818,0,33805 +133707,1,1,0,-1,-1,0,39925,0,33805 +133708,0,0,0,30000,-1,0,43873,0,33808 +133709,0,1,0,-1,-1,0,14055,0,33888 +133710,0,1,0,-1,-1,0,14054,0,33889 +133711,0,1,0,-1,-1,0,14055,0,33890 +133712,0,1,0,-1,-1,0,14049,0,33891 +133713,0,1,0,-1,-1,0,14049,0,33892 +133714,0,0,0,3600000,1000,59,44540,0,34140 +133715,0,0,0,-1,3000,330,44655,0,34150 +133716,0,0,0,1000,-1,0,44171,0,34151 +133717,0,0,0,1000,-1,0,44170,0,34152 +133718,0,0,0,1000,-1,0,44168,0,34153 +133719,0,0,0,1000,-1,0,44169,0,34154 +133720,0,0,0,-1,-1,0,44817,0,34250 +133721,0,0,0,-1,-1,0,44012,0,34251 +133722,0,0,0,5000,-1,0,44752,0,34252 +133723,0,0,0,1500,-1,0,44879,0,34253 +133724,0,0,-1,-1,-1,24,44881,0,34255 +133725,0,1,0,-1,-1,0,15811,0,34346 +133726,1,1,0,-1,-1,0,42098,0,34346 +133727,0,1,0,-1,-1,0,15714,0,34347 +133728,0,1,0,-1,-1,0,18032,0,34348 +133729,0,1,-1,-1,-1,0,14089,0,34349 +133730,0,1,0,-1,-1,0,17280,0,34350 +133731,0,1,0,-1,-1,0,15817,0,34443 +133732,1,1,0,-1,-1,0,43219,0,34443 +133733,0,1,0,-1,-1,0,42094,0,34444 +133734,0,1,0,-1,-1,0,18044,0,34445 +133735,1,1,0,-1,-1,0,21363,0,34445 +133736,0,1,0,-1,-1,0,18055,0,34446 +133737,1,1,0,-1,-1,0,21364,0,34446 +133738,0,1,0,-1,-1,0,18055,0,34447 +133739,0,1,0,-1,-1,0,15817,0,34448 +133740,0,1,0,-1,-1,0,45011,0,34541 +133741,0,1,0,-1,-1,0,45011,0,34542 +133742,1,1,0,-1,-1,0,21626,0,34542 +133743,0,1,0,-1,-1,0,32584,0,34543 +133744,1,1,0,-1,-1,0,21366,0,34543 +133745,0,1,0,-1,-1,0,15826,0,32829 +133746,0,1,0,-1,-1,0,36428,0,32830 +133747,0,1,0,-1,-1,0,9344,0,32831 +133748,0,0,0,-1,-1,59,41921,0,32915 +133749,0,0,0,-1,-1,0,41943,0,32917 +133750,0,0,0,-1,-1,0,41944,0,32918 +133751,0,0,0,-1,-1,0,41945,0,32919 +133752,0,1,0,-1,-1,0,18061,0,33003 +133753,1,0,0,120000,20000,1141,18061,0,33003 +133754,0,0,-1,0,1000,11,10256,0,33004 +133755,0,1,0,-1,-1,0,21439,0,33006 +133756,0,0,0,60000,-1,0,42425,0,33095 +133757,0,0,-1,0,-1,0,42436,0,33096 +133758,1,5,-1,-1,-1,0,42533,0,33096 +133759,0,0,0,90000,-1,0,42452,0,33101 +133760,0,1,0,-1,-1,0,31941,0,33203 +133761,0,1,0,-1,-1,0,18050,0,33313 +133762,0,0,-1,0,0,0,43005,0,33315 +133763,0,1,0,-1,-1,0,34040,0,33317 +133764,0,1,0,-1,-1,0,31941,0,33322 +133765,1,1,0,-1,-1,0,21637,0,33322 +133766,0,1,0,-1,-1,0,21626,0,33324 +133767,1,1,0,-1,-1,0,18045,0,33324 +133768,0,1,0,-1,-1,0,18036,0,33325 +133769,0,1,0,-1,-1,0,18052,0,33536 +133770,0,1,0,-1,-1,0,18056,0,33537 +133771,0,1,0,-1,-1,0,15832,0,33538 +133772,0,1,0,-1,-1,0,15819,0,33539 +133773,0,1,0,-1,-1,0,14056,0,33540 +133774,0,1,0,-1,-1,0,39927,0,33709 +133775,0,1,0,-1,-1,0,21364,0,33710 +133776,0,1,0,-1,-1,0,21365,0,33711 +133777,1,1,0,-1,-1,0,18058,0,33711 +133778,0,1,0,-1,-1,0,32973,0,33712 +133779,1,1,0,-1,-1,0,18055,0,33712 +133780,0,1,0,-1,-1,0,28360,0,33713 +133781,0,0,0,0,3000,330,43688,0,33809 +133782,0,1,0,-1,-1,0,9334,0,33893 +133783,0,1,0,-1,-1,0,14054,0,33897 +133784,0,1,0,-1,-1,0,14055,0,33898 +133785,0,0,0,1000,-1,0,44173,0,34155 +133786,0,1,0,-1,-1,0,44683,0,34158 +133787,0,1,0,-1,-1,0,44684,0,34159 +133788,0,0,0,5000,-1,0,44937,0,34257 +133789,0,0,-1,1000,-1,0,45153,0,34258 +133790,0,0,-1,-1,-1,0,483,0,34261 +133791,1,6,0,-1,-1,0,44950,0,34261 +133792,0,0,-1,-1,-1,0,483,0,34262 +133793,1,6,0,-1,-1,0,44953,0,34262 +133794,0,1,0,-1,-1,0,32584,0,34351 +133795,1,1,0,-1,-1,0,18378,0,34351 +133796,0,1,0,-1,-1,0,36068,0,34353 +133797,1,1,0,0,-1,0,30645,0,34353 +133798,2,1,0,0,-1,0,40273,0,34353 +133799,3,0,0,3000,-1,0,12883,0,34353 +133800,0,1,0,-1,-1,0,30645,0,34354 +133801,1,1,0,0,-1,0,40273,0,34354 +133802,2,0,0,3000,-1,0,12883,0,34354 +133803,0,1,0,-1,-1,0,23929,0,34355 +133804,1,1,0,0,-1,0,30645,0,34355 +133805,2,1,0,0,-1,0,40273,0,34355 +133806,3,0,0,3000,-1,0,12883,0,34355 +133807,0,1,0,-1,-1,0,42039,0,34356 +133808,1,1,0,0,-1,0,30645,0,34356 +133809,2,1,0,0,-1,0,40273,0,34356 +133810,3,0,0,3000,-1,0,12883,0,34356 +133811,0,1,0,-1,-1,0,42106,0,34547 +133812,0,1,0,-1,-1,0,15829,0,34549 +133813,1,1,0,-1,-1,0,42098,0,34549 +133814,0,1,0,0,0,0,45216,0,34551 +133815,0,0,0,1500,-1,0,41423,0,32834 +133816,0,0,0,-1,-1,0,41946,0,32920 +133817,0,0,0,5000,-1,0,41921,0,32921 +133818,0,0,-1,-1,-1,0,42222,0,33009 +133819,0,0,-1,-1,-1,0,483,0,33205 +133820,1,6,0,-1,-1,0,42731,0,33205 +133821,0,1,0,-1,-1,0,15815,0,33206 +133822,0,1,0,-1,-1,0,18045,0,33207 +133823,1,1,0,-1,-1,0,20959,0,33207 +133824,0,0,-1,0,3000,79,42735,0,33208 +133825,0,0,-1,-1,-1,0,483,0,33209 +133826,1,6,0,-1,-1,0,42736,0,33209 +133827,0,1,0,-1,-1,0,39987,0,33326 +133828,0,1,0,-1,-1,0,36062,0,33327 +133829,0,1,0,-1,-1,0,15825,0,33328 +133830,0,1,0,-1,-1,0,15832,0,33329 +133831,1,1,0,-1,-1,0,42113,0,33329 +133832,0,1,0,-1,-1,0,40555,0,33331 +133833,0,1,0,-1,-1,0,18036,0,33332 +133834,1,1,0,-1,-1,0,21364,0,33332 +133835,0,1,0,-1,-1,0,36062,0,33552 +133836,0,1,0,-1,-1,0,18036,0,33557 +133837,0,1,0,-1,-1,0,18056,0,33559 +133838,1,1,0,-1,-1,0,21626,0,33559 +133839,0,1,0,-1,-1,0,34040,0,33566 +133840,1,1,0,-1,-1,0,21628,0,33566 +133841,0,1,0,-1,-1,0,26142,0,33714 +133842,1,1,0,-1,-1,0,21365,0,33714 +133843,0,1,0,-1,-1,0,21627,0,33715 +133844,1,1,0,-1,-1,0,13881,0,33715 +133845,0,1,0,-1,-1,0,44887,0,33716 +133846,0,1,0,-1,-1,0,44297,0,33717 +133847,1,1,0,-1,-1,0,18041,0,33717 +133848,0,1,0,-1,-1,0,18043,0,33718 +133849,0,0,0,1500,-1,0,43697,0,33816 +133850,0,0,0,1500,-1,0,43697,0,33817 +133851,0,0,0,1500,-1,0,43698,0,33818 +133852,0,1,0,0,0,0,7823,0,33820 +133853,1,0,0,600000,-1,0,43699,0,33820 +133854,0,1,0,-1,-1,0,14055,0,33899 +133855,0,1,0,-1,-1,0,18046,0,33900 +133856,0,1,0,-1,-1,0,18036,0,33901 +133857,0,1,0,-1,-1,0,18046,0,33902 +133858,0,1,0,-1,-1,0,18041,0,33903 +133859,0,0,0,1500,-1,0,43918,0,33993 +133860,0,1,0,0,0,0,43921,0,33994 +133861,0,1,0,0,0,0,43922,0,33995 +133862,0,1,0,0,0,0,43924,0,33996 +133863,0,0,0,-1,-1,0,44740,0,34161 +133864,1,0,0,180000,180000,1190,44055,0,34162 +133865,1,0,0,180000,180000,1190,44055,0,34163 +133866,0,1,0,-1,-1,0,9333,0,34165 +133867,0,1,0,-1,-1,0,18044,0,34166 +133868,1,1,0,-1,-1,0,21630,0,34166 +133869,0,1,0,-1,-1,0,30645,0,34357 +133870,1,1,0,0,-1,0,40273,0,34357 +133871,2,0,0,3000,-1,0,12883,0,34357 +133872,0,1,0,-1,-1,0,15815,0,34358 +133873,1,1,0,-1,-1,0,40258,0,34358 +133874,0,1,0,-1,-1,0,18052,0,34359 +133875,0,1,0,-1,-1,0,18040,0,34360 +133876,1,1,0,-1,-1,0,20959,0,34360 +133877,0,1,0,-1,-1,0,15815,0,34361 +133878,0,1,0,-1,-1,0,32584,0,34554 +133879,1,1,0,-1,-1,0,21366,0,34554 +133880,0,1,0,-1,-1,0,45011,0,34555 +133881,0,1,0,-1,-1,0,45011,0,34557 +133882,0,1,0,-1,-1,0,15829,0,34558 +133883,0,1,0,-1,-1,0,15810,0,32837 +133884,0,1,0,-1,-1,0,15810,0,32838 +133885,0,0,-1,0,0,0,41443,0,32839 +133886,0,0,-1,0,120000,4,28536,0,32840 +133887,0,0,0,-1,-1,0,41920,0,33016 +133888,0,0,0,-1,-1,0,41921,0,33017 +133889,0,0,0,5000,-1,0,41943,0,33018 +133890,0,0,0,6000,-1,0,42489,0,33108 +133891,0,0,0,120000,-1,0,42521,0,33113 +133892,0,1,0,-1,-1,0,15815,0,33211 +133893,1,1,0,-1,-1,0,39981,0,33211 +133894,0,1,0,-1,-1,0,15812,0,33214 +133895,0,1,0,-1,-1,0,40679,0,33215 +133896,0,1,0,-1,-1,0,36062,0,33216 +133897,1,1,0,-1,-1,0,21644,0,33216 +133898,0,5,-1,-1,-1,0,42775,0,33217 +133899,1,0,0,-1,-1,0,42775,0,33217 +133900,0,1,0,-1,-1,0,18035,0,33333 +133901,1,1,0,-1,-1,0,21627,0,33333 +133902,0,1,0,-1,-1,0,18054,0,33334 +133903,0,1,0,-1,-1,0,44075,0,33354 +133904,1,1,0,-1,-1,0,21626,0,33354 +133905,0,1,0,-1,-1,0,36062,0,33356 +133906,0,1,0,-1,-1,0,18052,0,33577 +133907,0,1,0,-1,-1,0,18049,0,33578 +133908,0,1,0,-1,-1,0,40258,0,33579 +133909,0,1,0,-1,-1,0,18048,0,33719 +133910,1,1,0,-1,-1,0,21640,0,33719 +133911,0,1,0,-1,-1,0,18037,0,33720 +133912,0,1,0,-1,-1,0,18038,0,33721 +133913,1,1,0,-1,-1,0,21365,0,33721 +133914,0,1,0,-1,-1,0,18036,0,33722 +133915,0,1,0,-1,-1,0,18043,0,33723 +133916,1,1,0,-1,-1,0,38522,0,33723 +133917,0,1,0,-1,-1,0,18045,0,33724 +133918,0,0,-1,0,1000,11,1127,0,33822 +133919,0,0,-1,0,1000,11,43706,0,33825 +133920,0,1,0,-1,-1,0,18035,0,33904 +133921,0,1,0,-1,-1,0,18041,0,33905 +133922,0,1,0,-1,-1,0,18035,0,33906 +133923,0,1,0,-1,-1,0,18041,0,33907 +133924,0,1,0,-1,-1,0,18041,0,33908 +133925,0,1,0,0,0,0,43925,0,33997 +133926,0,1,0,0,0,0,43926,0,33998 +133927,0,0,0,-1,3000,330,43927,0,33999 +133928,0,1,0,-1,-1,0,36098,0,34167 +133929,1,1,0,-1,-1,0,40343,0,34167 +133930,0,1,0,-1,-1,0,40933,0,34168 +133931,0,1,0,-1,-1,0,23929,0,34169 +133932,0,1,0,-1,-1,0,29369,0,34170 +133933,0,1,0,-1,-1,0,18052,0,34362 +133934,0,1,0,-1,-1,0,18040,0,34363 +133935,1,1,0,-1,-1,0,21629,0,34363 +133936,0,1,0,-1,-1,0,23929,0,34364 +133937,0,1,0,-1,-1,0,29369,0,34365 +133938,1,1,0,-1,-1,0,35836,0,34365 +133939,0,1,0,-1,-1,0,26142,0,34366 +133940,0,1,0,-1,-1,0,36098,0,34367 +133941,0,1,0,-1,-1,0,32584,0,34559 +133942,1,1,0,-1,-1,0,21365,0,34559 +133943,0,1,0,-1,-1,0,15714,0,34560 +133944,1,1,0,-1,-1,0,28325,0,34560 +133945,0,1,0,-1,-1,0,32584,0,34562 +133946,1,1,0,-1,-1,0,21629,0,34562 +133947,0,1,0,-1,-1,0,45011,0,34563 +133948,0,1,0,-1,-1,0,45011,0,34564 +133949,0,0,-1,0,120000,4,28513,0,32844 +133950,0,0,-1,0,120000,4,28537,0,32845 +133951,0,0,-1,0,120000,4,28511,0,32846 +133952,0,0,-1,0,120000,4,28512,0,32847 +133953,0,0,0,5000,-1,0,41944,0,33019 +133954,0,0,0,5000,-1,0,41945,0,33020 +133955,0,0,0,5000,-1,0,41946,0,33021 +133956,0,0,5,5000,-1,0,42791,0,33022 +133957,0,0,-1,0,1000,11,10256,0,33023 +133958,0,0,-1,-1,-1,0,483,0,33124 +133959,1,6,0,-1,-1,0,42546,0,33124 +133960,0,0,-1,0,1000,11,42760,0,33218 +133961,0,0,0,1800000,-1,0,42753,0,33219 +133962,0,1,0,-1,-1,0,14052,0,33222 +133963,0,0,0,301000,-1,0,42766,0,33223 +133964,0,0,0,0,3000,330,42776,0,33224 +133965,0,0,0,0,3000,330,42777,0,33225 +133966,0,1,0,-1,-1,0,33484,0,33357 +133967,0,1,0,-1,-1,0,18040,0,33386 +133968,1,1,0,-1,-1,0,21630,0,33386 +133969,0,1,0,-1,-1,0,15809,0,33388 +133970,0,1,0,-1,-1,0,14049,0,33389 +133971,1,1,0,-1,-1,0,42098,0,33389 +133972,0,1,0,-1,-1,0,35168,0,33421 +133973,0,1,0,-1,-1,0,15821,0,33432 +133974,1,1,0,-1,-1,0,42098,0,33432 +133975,0,1,0,-1,-1,0,34040,0,33584 +133976,0,1,0,-1,-1,0,31941,0,33585 +133977,0,1,0,-1,-1,0,26154,0,33725 +133978,0,1,0,-1,-1,0,18035,0,33726 +133979,0,1,0,-1,-1,0,15832,0,33727 +133980,0,1,0,-1,-1,0,39927,0,33728 +133981,0,1,0,-1,-1,0,22778,0,33729 +133982,0,1,0,120000,-1,0,40343,0,33828 +133983,1,0,0,120000,-1,0,43710,0,33828 +133984,0,1,0,-1,-1,0,26142,0,33829 +133985,1,0,0,120000,20000,1141,43712,0,33829 +133986,0,0,0,120000,-1,0,43713,0,33830 +133987,0,1,0,-1,-1,0,15831,0,33831 +133988,1,0,0,120000,20000,1141,43716,0,33831 +133989,0,1,0,-1,-1,0,14055,0,33912 +133990,0,1,0,-1,-1,0,14054,0,33913 +133991,0,1,0,-1,-1,0,14055,0,33914 +133992,0,0,-1,-1,-1,0,483,0,34172 +133993,1,6,0,-1,-1,0,35544,0,34172 +133994,0,0,-1,-1,-1,0,483,0,34173 +133995,1,6,0,-1,-1,0,35544,0,34173 +133996,0,0,-1,-1,-1,0,483,0,34174 +133997,1,6,0,-1,-1,0,35539,0,34174 +133998,0,0,-1,-1,-1,0,483,0,34175 +133999,1,6,0,-1,-1,0,35539,0,34175 +134000,0,1,0,-1,-1,0,44751,0,34176 +134001,0,0,0,2000,2000,0,44997,0,34368 +134002,0,1,0,-1,-1,0,40933,0,34369 +134003,0,1,0,-1,-1,0,15831,0,34370 +134004,1,1,0,-1,-1,0,40555,0,34370 +134005,0,1,0,0,0,0,29369,0,34371 +134006,1,1,0,-1,-1,0,21638,0,34371 +134007,0,1,0,-1,-1,0,17320,0,34372 +134008,0,1,0,-1,-1,0,36068,0,34373 +134009,0,1,0,-1,-1,0,45054,0,34470 +134010,1,1,0,-1,-1,0,17493,0,34470 +134011,0,1,0,-1,-1,0,45059,0,34471 +134012,1,0,0,120000,-1,0,45064,0,34471 +134013,2,1,0,-1,-1,0,21643,0,34471 +134014,0,1,0,-1,-1,0,45354,0,34472 +134015,0,1,0,-1,-1,0,45057,0,34473 +134016,0,0,0,1000,0,1170,45072,0,34475 +134017,0,1,0,-1,-1,0,32584,0,34565 +134018,1,1,0,-1,-1,0,21635,0,34565 +134019,0,1,0,-1,-1,0,45011,0,34566 +134020,1,1,0,-1,-1,0,21364,0,34566 +134021,0,1,0,-1,-1,0,15829,0,34570 +134022,1,1,0,-1,-1,0,42098,0,34570 +134023,0,0,-1,0,0,0,41494,0,32849 +134024,0,0,-1,0,0,0,41495,0,32850 +134025,0,0,-1,0,0,0,41497,0,32851 +134026,0,0,-1,0,0,0,41498,0,32852 +134027,0,1,0,-1,-1,0,37542,0,32854 +134028,1,1,0,-1,-1,0,21643,0,32854 +134029,0,0,-1,0,1000,11,10257,0,33024 +134030,0,0,-1,0,1000,11,33253,0,33025 +134031,0,0,-1,0,1000,11,35271,0,33026 +134032,0,-1,0,-1,-1,0,42336,0,33027 +134033,0,0,-1,0,1000,59,44109,0,33028 +134034,0,0,-1,0,1000,59,44110,0,33029 +134035,0,0,0,3600000,-1,0,42551,0,33128 +134036,0,0,-1,1500,-1,0,44436,0,33226 +134037,0,0,0,1000,-1,0,43210,0,33442 +134038,0,1,0,-1,-1,0,18047,0,33446 +134039,1,1,0,-1,-1,0,21627,0,33446 +134040,0,1,0,-1,-1,0,23732,0,33453 +134041,0,1,0,-1,-1,0,26154,0,33463 +134042,1,1,0,-1,-1,0,21638,0,33463 +134043,0,1,0,-1,-1,0,18056,0,33586 +134044,0,1,0,-1,-1,0,18045,0,33587 +134045,0,1,0,-1,-1,0,13881,0,33588 +134046,0,1,0,-1,-1,0,18036,0,33589 +134047,0,1,0,-1,-1,0,15811,0,33590 +134048,0,1,0,-1,-1,0,14054,0,33591 +134049,0,1,0,-1,-1,0,39927,0,33730 +134050,0,1,0,-1,-1,0,39927,0,33731 +134051,0,1,0,-1,-1,0,15806,0,33733 +134052,1,1,0,-1,-1,0,43901,0,33733 +134053,0,1,0,-1,-1,0,15806,0,33734 +134054,1,1,0,-1,-1,0,43901,0,33734 +134055,0,1,0,-1,-1,0,18041,0,33735 +134056,0,1,0,120000,-1,0,15826,0,33832 +134057,1,0,0,180000,180000,1190,44055,0,33832 +134058,0,1,0,-1,-1,0,18056,0,33915 +134059,1,1,0,-1,-1,0,21631,0,33915 +134060,0,1,0,-1,-1,0,18056,0,33916 +134061,1,1,0,-1,-1,0,21631,0,33916 +134062,0,1,0,-1,-1,0,14047,0,33917 +134063,1,1,0,-1,-1,0,21628,0,33917 +134064,0,1,0,0,0,0,18035,0,33918 +134065,1,1,0,-1,-1,0,18379,0,33918 +134066,0,1,0,0,0,0,15810,0,33919 +134067,1,1,0,-1,-1,0,44474,0,33919 +134068,0,1,0,0,0,0,15715,0,33920 +134069,0,1,0,-1,-1,0,43944,0,34008 +134070,0,1,0,-1,-1,0,42111,0,34009 +134071,0,1,0,-1,-1,0,18052,0,34011 +134072,0,1,0,-1,-1,0,18040,0,34012 +134073,1,1,0,-1,-1,0,21634,0,34012 +134074,0,1,0,-1,-1,0,15832,0,34014 +134075,1,1,0,-1,-1,0,43902,0,34014 +134076,0,1,0,-1,-1,0,15817,0,34177 +134077,0,1,0,-1,-1,0,18055,0,34179 +134078,0,1,0,-1,-1,0,23929,0,34181 +134079,0,1,0,-1,-1,0,44751,0,34182 +134080,0,1,0,-1,-1,0,15824,0,34374 +134081,0,1,0,-1,-1,0,29369,0,34375 +134082,1,1,0,-1,-1,0,20959,0,34375 +134083,0,1,0,-1,-1,0,17320,0,34376 +134084,0,1,0,-1,-1,0,40934,0,34377 +134085,0,0,-1,-1,-1,0,45137,0,34477 +134086,0,0,0,1500,-1,0,45082,0,34478 +134087,0,0,0,180000,-1,0,45094,0,34480 +134088,0,0,-1,-1,-1,0,483,0,34481 +134089,1,6,0,-1,-1,0,45061,0,34481 +134090,0,1,0,-1,-1,0,32584,0,34571 +134091,1,1,0,-1,-1,0,21632,0,34571 +134092,0,1,0,-1,-1,0,45011,0,34572 +134093,1,1,0,-1,-1,0,21634,0,34572 +134094,0,1,0,-1,-1,0,45011,0,34574 +134095,0,1,0,-1,-1,0,15829,0,34575 +134096,1,0,0,180000,180000,1190,44055,0,34576 +134097,0,0,-1,-1,-1,0,39145,0,32855 +134098,0,0,0,-1,3000,330,41513,0,32857 +134099,0,0,0,-1,3000,330,41514,0,32858 +134100,0,0,0,-1,3000,330,41515,0,32859 +134101,0,1,0,-1,-1,0,18050,0,32941 +134102,0,1,0,-1,-1,0,15814,0,32942 +134103,0,1,0,-1,-1,0,14049,0,32943 +134104,0,1,0,-1,-1,0,15812,0,32944 +134105,0,0,-1,0,1000,59,44107,0,33030 +134106,0,0,-1,0,1000,59,44111,0,33031 +134107,0,0,-1,0,1000,59,44112,0,33032 +134108,0,0,-1,0,1000,59,44113,0,33033 +134109,0,0,-1,0,1000,59,44114,0,33034 +134110,0,0,-1,0,1000,59,43154,0,33234 +134111,0,0,-1,0,1000,59,34291,0,33236 +134112,0,1,0,-1,-1,0,18041,0,33464 +134113,1,1,0,-1,-1,0,21365,0,33464 +134114,0,1,0,-1,-1,0,44913,0,33465 +134115,1,1,0,-1,-1,0,42109,0,33465 +134116,0,1,0,-1,-1,0,17367,0,33466 +134117,0,1,0,-1,-1,0,42814,0,33467 +134118,0,1,0,-1,-1,0,42070,0,33468 +134119,0,1,0,-1,-1,0,18035,0,33592 +134120,0,1,0,0,0,0,18041,0,33736 +134121,0,1,0,-1,-1,0,15806,0,33737 +134122,1,1,0,-1,-1,0,43901,0,33737 +134123,0,1,0,-1,-1,0,21630,0,33738 +134124,1,1,0,-1,-1,0,18047,0,33738 +134125,0,1,0,-1,-1,0,32973,0,33739 +134126,1,1,0,-1,-1,0,18046,0,33739 +134127,0,1,0,-1,-1,0,17320,0,33740 +134128,0,1,0,-1,-1,0,36098,0,33741 +134129,1,1,0,-1,-1,0,21365,0,33741 +134130,0,0,-1,-1,-1,0,43718,0,33837 +134131,0,1,0,0,0,0,14798,0,33921 +134132,0,1,0,0,0,0,18035,0,33922 +134133,1,1,0,-1,-1,0,18379,0,33922 +134134,0,1,0,0,0,0,14056,0,33923 +134135,0,0,-1,-1,-1,11,43777,0,33924 +134136,0,0,-1,-1,-1,0,483,0,33925 +134137,1,6,0,-1,-1,0,43779,0,33925 +134138,0,1,0,-1,-1,0,15806,0,34015 +134139,1,1,0,-1,-1,0,43901,0,34015 +134140,0,1,0,-1,-1,0,15806,0,34016 +134141,1,1,0,-1,-1,0,43901,0,34016 +134142,0,0,-1,0,1000,59,44107,0,34017 +134143,0,0,-1,0,1000,59,44109,0,34018 +134144,0,0,-1,0,1000,59,44110,0,34019 +134145,0,1,0,-1,-1,0,40933,0,34183 +134146,0,1,0,-1,-1,0,18043,0,34184 +134147,1,1,0,-1,-1,0,21365,0,34184 +134148,0,1,0,-1,-1,0,42078,0,34185 +134149,0,1,0,-1,-1,0,23929,0,34186 +134150,0,1,0,-1,-1,0,42039,0,34188 +134151,1,1,0,-1,-1,0,44756,0,34188 +134152,0,1,0,-1,-1,0,40679,0,34189 +134153,1,1,0,-1,-1,0,15818,0,34189 +134154,0,1,0,-1,-1,0,42093,0,34379 +134155,1,1,0,-1,-1,0,21640,0,34379 +134156,0,1,0,-1,-1,0,17320,0,34380 +134157,1,1,0,-1,-1,0,18378,0,34380 +134158,0,1,0,-1,-1,0,24196,0,34382 +134159,1,1,0,-1,-1,0,34593,0,34382 +134160,0,1,0,-1,-1,0,29369,0,34383 +134161,1,1,0,-1,-1,0,21641,0,34383 +134162,0,0,-1,-1,-1,0,45109,0,34483 +134163,1,0,0,180000,180000,1190,44055,0,34577 +134164,0,1,0,120000,-1,0,15826,0,34578 +134165,1,0,0,180000,180000,1190,44055,0,34578 +134166,0,1,0,120000,-1,0,24196,0,34579 +134167,1,0,0,180000,180000,1190,44055,0,34579 +134168,0,1,0,120000,-1,0,33820,0,34580 +134169,1,0,0,180000,180000,1190,44055,0,34580 +134170,0,0,0,-1,3000,330,41516,0,32860 +134171,0,0,0,-1,3000,330,41517,0,32861 +134172,0,0,0,-1,3000,330,41518,0,32862 +134173,0,1,0,0,0,0,48776,0,32863 +134174,0,0,0,600000,600000,1183,40815,0,32864 +134175,0,1,0,-1,-1,0,15808,0,32945 +134176,0,1,0,-1,-1,0,15808,0,32946 +134177,0,0,-1,0,120000,4,28495,0,32947 +134178,0,0,-1,0,120000,4,28499,0,32948 +134179,0,0,-1,0,1000,59,44115,0,33035 +134180,0,0,-1,0,1000,59,44116,0,33036 +134181,0,0,-1,0,1000,11,27094,0,33246 +134182,0,1,0,-1,-1,0,26225,0,33469 +134183,1,1,0,-1,-1,0,21637,0,33469 +134184,0,1,0,-1,-1,0,18041,0,33471 +134185,1,1,0,-1,-1,0,21365,0,33471 +134186,0,1,0,-1,-1,0,15808,0,33474 +134187,1,1,0,-1,-1,0,40680,0,33474 +134188,0,0,-1,-1,-1,0,483,0,33622 +134189,1,6,0,-1,-1,0,39961,0,33622 +134190,0,1,0,-1,-1,0,21364,0,33742 +134191,1,1,0,-1,-1,0,18036,0,33742 +134192,0,1,0,-1,-1,0,43460,0,33743 +134193,0,1,0,-1,-1,0,44297,0,33744 +134194,1,1,0,-1,-1,0,14055,0,33744 +134195,0,1,0,-1,-1,0,18058,0,33745 +134196,0,1,0,-1,-1,0,23213,0,33746 +134197,0,1,0,-1,-1,0,43725,0,33841 +134198,0,1,0,-1,-1,0,43726,0,33842 +134199,0,1,0,-1,-1,0,43728,0,33843 +134200,0,0,0,1800000,-1,0,43808,0,33927 +134201,0,0,-1,0,1000,59,11009,0,33929 +134202,0,0,-1,0,0,0,43816,0,33930 +134203,0,0,-1,0,0,0,43818,0,33931 +134204,0,0,-1,0,1000,59,44111,0,34020 +134205,0,0,-1,0,1000,59,44112,0,34021 +134206,0,0,-1,0,1000,59,44113,0,34022 +134207,0,0,0,600000,60000,94,43995,0,34029 +134208,0,1,0,0,0,0,14127,0,34033 +134209,1,1,0,-1,-1,0,44001,0,34033 +134210,0,0,-1,30000,-1,0,44755,0,34191 +134211,0,1,0,-1,-1,0,44757,0,34192 +134212,0,1,0,-1,-1,0,36098,0,34193 +134213,1,1,0,-1,-1,0,21641,0,34193 +134214,0,1,0,-1,-1,0,15831,0,34194 +134215,1,1,0,-1,-1,0,40555,0,34194 +134216,0,1,0,-1,-1,0,29369,0,34384 +134217,0,1,0,-1,-1,0,45003,0,34385 +134218,0,1,0,-1,-1,0,23929,0,34386 +134219,0,1,0,-1,-1,0,35168,0,34389 +134220,1,1,0,-1,-1,0,18054,0,34389 +134221,0,1,0,-1,-1,0,32584,0,34487 +134222,1,1,0,-1,-1,0,21635,0,34487 +134223,0,1,0,-1,-1,0,18050,0,34488 +134224,0,0,0,1000,0,1170,45115,0,34489 +134225,0,0,-1,-1,-1,0,483,0,34491 +134226,1,6,0,-1,-1,0,45117,0,34491 +134227,0,0,0,1500,-1,0,45125,0,34492 +134228,0,1,0,-1,-1,0,9336,0,32865 +134229,0,1,0,-1,-1,0,22852,0,32866 +134230,0,1,0,-1,-1,0,9346,0,32867 +134231,0,1,0,-1,-1,0,9336,0,32868 +134232,0,1,0,-1,-1,0,15810,0,32869 +134233,0,1,0,-1,-1,0,15810,0,32870 +134234,0,0,-1,0,0,0,42012,0,32952 +134235,0,1,0,-1,-1,0,42275,0,33040 +134236,0,0,-1,0,1000,59,27089,0,33042 +134237,0,0,-1,0,1000,11,5004,0,33043 +134238,0,0,0,10000,-1,0,42287,0,33044 +134239,0,0,-1,-1,-1,0,483,0,33145 +134240,1,6,0,-1,-1,0,42558,0,33145 +134241,0,0,0,0,3000,330,42568,0,33146 +134242,0,0,0,0,3000,330,42569,0,33147 +134243,0,1,0,-1,-1,0,40933,0,33478 +134244,0,1,0,-1,-1,0,15827,0,33479 +134245,0,1,0,-1,-1,0,18044,0,33480 +134246,1,1,0,-1,-1,0,21627,0,33480 +134247,0,1,0,-1,-1,0,28113,0,33481 +134248,0,1,0,-1,-1,0,15819,0,33482 +134249,1,1,0,-1,-1,0,40680,0,33482 +134250,0,1,0,-1,-1,0,31941,0,33636 +134251,0,1,0,-1,-1,0,9334,0,33640 +134252,0,1,0,-1,-1,0,14055,0,33661 +134253,0,1,0,-1,-1,0,15806,0,33662 +134254,1,1,0,-1,-1,0,43901,0,33662 +134255,0,1,0,-1,-1,0,43902,0,33663 +134256,0,1,0,-1,-1,0,17367,0,33747 +134257,0,1,0,-1,-1,0,18056,0,33748 +134258,1,1,0,-1,-1,0,44300,0,33750 +134259,0,0,-1,-1,-1,0,43724,0,33851 +134260,0,0,-1,0,0,0,43820,0,33932 +134261,0,0,-1,0,0,0,43822,0,33933 +134262,0,0,-1,0,120000,4,28495,0,33934 +134263,0,0,-1,0,120000,4,28499,0,33935 +134264,0,1,0,-1,-1,0,43850,0,33936 +134265,0,1,0,-1,-1,0,43851,0,33937 +134266,0,1,0,-1,-1,0,43852,0,33938 +134267,0,5,0,-1,-1,0,44021,0,34044 +134268,0,1,0,-1,-1,0,15831,0,34195 +134269,0,1,0,-1,-1,0,42095,0,34196 +134270,1,1,0,-1,-1,0,15806,0,34196 +134271,0,1,0,-1,-1,0,15809,0,34197 +134272,1,1,0,-1,-1,0,40226,0,34197 +134273,0,1,0,-1,-1,0,45783,0,34198 +134274,1,1,0,-1,-1,0,42157,0,34198 +134275,0,1,0,-1,-1,0,44759,0,34199 +134276,1,1,0,-1,-1,0,20959,0,34199 +134277,0,0,-1,-1,-1,0,483,0,34200 +134278,1,6,0,-1,-1,0,44359,0,34200 +134279,0,1,0,-1,-1,0,26142,0,34390 +134280,0,1,0,-1,-1,0,26142,0,34391 +134281,0,1,0,-1,-1,0,39925,0,34392 +134282,0,1,0,-1,-1,0,26142,0,34393 +134283,0,1,0,-1,-1,0,42093,0,34395 +134284,1,1,0,-1,-1,0,21633,0,34395 +134285,0,0,0,1500,-1,0,45127,0,34493 +134286,0,0,-1,-1,-1,0,45129,0,34494 +134287,0,0,0,1500,-1,0,45125,0,34495 +134288,0,0,0,30000,-1,0,45136,0,34496 +134289,0,0,-1,-1,-1,0,45133,0,34497 +134290,0,0,0,30000,-1,0,45131,0,34498 +134291,0,1,0,-1,-1,0,14089,0,32781 +134292,0,0,0,1800000,0,0,41301,0,32782 +134293,0,0,-1,0,120000,4,41304,0,32783 +134294,0,0,-1,0,120000,4,41306,0,32784 +134295,0,1,0,-1,-1,0,15807,0,32785 +134296,0,1,0,-1,-1,0,18032,0,32786 +134297,0,1,0,-1,-1,0,34593,0,32871 +134298,0,1,0,0,-1,0,9342,0,32872 +134299,0,0,15,5000,5000,0,41985,0,32960 +134300,0,1,0,-1,-1,0,18039,0,32961 +134301,0,1,0,0,-1,0,9345,0,32962 +134302,0,1,0,-1,-1,0,42122,0,32963 +134303,0,0,0,120000,120000,1182,42292,0,33046 +134304,0,1,0,-1,-1,0,42156,0,33047 +134305,0,0,-1,0,1000,11,35270,0,33048 +134306,0,0,-1,-1,-1,0,483,0,33148 +134307,1,6,0,-1,-1,0,25086,0,33148 +134308,0,0,-1,-1,-1,0,483,0,33149 +134309,1,6,0,-1,-1,0,25083,0,33149 +134310,0,0,-1,-1,-1,0,483,0,33150 +134311,1,6,0,-1,-1,0,25084,0,33150 +134312,0,0,-1,0,1000,11,35270,0,33254 +134313,0,1,0,-1,-1,0,18045,0,33483 +134314,1,1,0,-1,-1,0,21626,0,33483 +134315,0,1,0,-1,-1,0,15811,0,33484 +134316,1,1,0,-1,-1,0,43219,0,33484 +134317,0,1,0,-1,-1,0,18056,0,33489 +134318,0,1,0,-1,-1,0,44077,0,33490 +134319,1,1,0,-1,-1,0,42082,0,33490 +134320,0,1,0,-1,-1,0,15808,0,33491 +134321,0,1,0,-1,-1,0,29524,0,33492 +134322,0,1,0,-1,-1,0,15808,0,33664 +134323,1,1,0,-1,-1,0,39927,0,33664 +134324,0,1,0,-1,-1,0,14049,0,33665 +134325,1,1,0,-1,-1,0,28539,0,33665 +134326,0,1,0,-1,-1,0,15815,0,33666 +134327,1,1,0,-1,-1,0,39927,0,33666 +134328,0,1,0,-1,-1,0,14052,0,33667 +134329,1,1,0,-1,-1,0,39927,0,33667 +134330,0,1,0,-1,-1,0,9336,0,33668 +134331,0,1,0,-1,-1,0,15806,0,33669 +134332,1,1,0,-1,-1,0,43901,0,33669 +134333,0,1,0,-1,-1,0,15806,0,33754 +134334,1,1,0,-1,-1,0,43901,0,33754 +134335,0,1,0,-1,-1,0,15806,0,33756 +134336,1,1,0,-1,-1,0,43901,0,33756 +134337,0,1,0,-1,-1,0,18056,0,33757 +134338,0,1,0,-1,-1,0,24196,0,33758 +134339,0,0,0,-1,-1,0,43723,0,33852 +134340,0,1,0,0,0,0,18050,0,33853 +134341,1,1,0,-1,-1,0,43782,0,33853 +134342,0,1,0,-1,-1,0,43857,0,33939 +134343,0,1,0,-1,-1,0,43858,0,33940 +134344,0,1,0,-1,-1,0,43859,0,33941 +134345,0,1,0,-1,-1,0,43841,0,33942 +134346,0,1,0,-1,-1,0,43844,0,33943 +134347,0,1,0,-1,-1,0,43845,0,33944 +134348,0,0,0,5000,-1,0,44010,0,34046 +134349,0,0,0,12000,-1,0,44029,0,34047 +134350,0,0,0,-1,-1,0,44083,0,34048 +134351,0,1,0,120000,-1,0,24196,0,34049 +134352,1,0,0,180000,180000,1190,44055,0,34049 +134353,0,1,0,120000,-1,0,33820,0,34050 +134354,1,0,0,180000,180000,1190,44055,0,34050 +134355,0,1,0,0,-1,0,9318,0,34059 +134356,0,0,-1,-1,-1,0,483,0,34201 +134357,1,6,0,-1,-1,0,44768,0,34201 +134358,0,1,0,-1,-1,0,36098,0,34202 +134359,1,1,0,-1,-1,0,21365,0,34202 +134360,0,1,0,-1,-1,0,15811,0,34203 +134361,0,1,0,-1,-1,0,18055,0,34204 +134362,0,1,0,-1,-1,0,18044,0,34205 +134363,1,1,0,-1,-1,0,21638,0,34205 +134364,0,1,0,-1,-1,0,23929,0,34396 +134365,0,1,0,-1,-1,0,40933,0,34397 +134366,1,1,0,-1,-1,0,42113,0,34397 +134367,0,1,0,0,0,0,23929,0,34398 +134368,0,1,0,-1,-1,0,23929,0,34399 +134369,0,0,0,30000,-1,0,45135,0,34499 +134370,0,0,-1,-1,-1,0,45149,0,34500 +134371,0,0,-5,1500,-1,0,45171,0,34504 +134372,0,1,0,-1,-1,0,18053,0,32787 +134373,0,1,0,-1,-1,0,18043,0,32788 +134374,1,1,0,-1,-1,0,18378,0,32788 +134375,0,1,0,-1,-1,0,17367,0,32789 +134376,0,1,0,-1,-1,0,15806,0,32790 +134377,0,1,0,-1,-1,0,17367,0,32792 +134378,0,1,0,-1,-1,0,42127,0,32964 +134379,0,0,0,500,-1,0,42118,0,32965 +134380,0,0,0,500,-1,0,42132,0,32966 +134381,0,0,0,500,-1,0,42114,0,32967 +134382,0,0,-1,-1,-1,0,42301,0,33050 +134383,0,0,-1,0,1000,11,33258,0,33052 +134384,0,0,-1,0,1000,11,42309,0,33053 +134385,0,1,0,-1,-1,0,15715,0,33054 +134386,0,1,0,-1,-1,0,14056,0,33055 +134387,0,0,-1,-1,-1,0,483,0,33151 +134388,1,6,0,-1,-1,0,25084,0,33151 +134389,0,0,-1,-1,-1,0,483,0,33152 +134390,1,6,0,-1,-1,0,25080,0,33152 +134391,0,0,-1,-1,-1,0,483,0,33153 +134392,1,6,0,-1,-1,0,25072,0,33153 +134393,0,0,0,1500,-1,0,42609,0,33154 +134394,0,1,0,-1,-1,0,44075,0,33494 +134395,0,1,0,-1,-1,0,15815,0,33496 +134396,1,1,0,-1,-1,0,40680,0,33496 +134397,0,1,0,-1,-1,0,18052,0,33497 +134398,0,1,0,-1,-1,0,18039,0,33498 +134399,1,1,0,-1,-1,0,21629,0,33498 +134400,0,1,0,-1,-1,0,15832,0,33670 +134401,1,1,0,-1,-1,0,43902,0,33670 +134402,1,1,0,-1,-1,0,44835,0,33671 +134403,1,1,0,-1,-1,0,39927,0,33672 +134404,1,1,0,-1,-1,0,39927,0,33673 +134405,0,1,0,-1,-1,0,44301,0,33759 +134406,1,1,0,-1,-1,0,18056,0,33759 +134407,0,1,0,-1,-1,0,18055,0,33760 +134408,0,1,0,-1,-1,0,26142,0,33761 +134409,0,1,0,-1,-1,0,15806,0,33762 +134410,1,1,0,-1,-1,0,43901,0,33762 +134411,0,1,0,-1,-1,0,43455,0,33763 +134412,0,1,0,0,-1,0,9346,0,33764 +134413,0,1,0,-1,-1,0,43840,0,33945 +134414,0,1,0,-1,-1,0,43842,0,33946 +134415,0,1,0,-1,-1,0,43843,0,33947 +134416,0,1,0,-1,-1,0,43854,0,33948 +134417,0,1,0,-1,-1,0,43855,0,33949 +134418,0,1,0,-1,-1,0,43856,0,33950 +134419,0,0,0,0,3000,330,44153,0,34060 +134420,0,0,0,0,3000,330,44151,0,34061 +134421,0,0,-1,0,1000,11,44166,0,34062 +134422,0,0,-1,0,1000,11,5006,0,34063 +134423,0,0,-1,0,1000,11,5007,0,34064 +134424,0,0,-1,0,1000,11,5005,0,34065 +134425,0,1,0,-1,-1,0,18043,0,34206 +134426,1,1,0,-1,-1,0,21365,0,34206 +134427,0,0,-1,1000,-1,0,44769,0,34207 +134428,0,1,0,-1,-1,0,36098,0,34208 +134429,1,1,0,-1,-1,0,21636,0,34208 +134430,0,1,0,-1,-1,0,36098,0,34209 +134431,0,1,0,-1,-1,0,26142,0,34210 +134432,0,1,0,-1,-1,0,18055,0,34401 +134433,1,1,0,-1,-1,0,35075,0,34401 +134434,0,1,0,-1,-1,0,29369,0,34402 +134435,1,1,0,-1,-1,0,21638,0,34402 +134436,0,1,0,-1,-1,0,23929,0,34403 +134437,0,1,0,-1,-1,0,44979,0,34405 +134438,0,1,0,-1,-1,0,24196,0,34406 +134439,0,1,0,-1,-1,0,17367,0,32795 +134440,0,1,0,-1,-1,0,18053,0,32796 +134441,1,1,0,-1,-1,0,18378,0,32796 +134442,0,1,0,-1,-1,0,15807,0,32797 +134443,0,0,-1,-1,-1,0,42340,0,32971 +134444,1,5,-1,-1,-1,0,42336,0,32971 +134445,0,1,0,-1,-1,0,42156,0,32972 +134446,0,1,0,-1,-1,0,18032,0,32973 +134447,0,1,0,-1,-1,0,18038,0,32974 +134448,0,1,0,-1,-1,0,18038,0,32975 +134449,0,1,0,0,0,0,13881,0,33056 +134450,1,1,0,-1,-1,0,25975,0,33056 +134451,0,1,0,0,0,0,15809,0,33057 +134452,0,1,0,-1,-1,0,18033,0,33058 +134453,0,1,0,0,0,0,14248,0,33059 +134454,0,0,-1,-1,-1,0,42323,0,33061 +134455,0,0,-1,-1,-1,0,483,0,33155 +134456,1,6,0,-1,-1,0,42588,0,33155 +134457,0,0,-1,-1,-1,0,483,0,33156 +134458,1,6,0,-1,-1,0,42589,0,33156 +134459,0,0,-1,-1,-1,0,483,0,33157 +134460,1,6,0,-1,-1,0,42590,0,33157 +134461,0,0,-1,-1,-1,0,483,0,33158 +134462,1,6,0,-1,-1,0,42591,0,33158 +134463,0,0,-1,-1,-1,0,483,0,33159 +134464,1,6,0,-1,-1,0,42592,0,33159 +134465,0,1,0,-1,-1,0,7680,0,33266 +134466,0,1,0,-1,-1,0,39987,0,33499 +134467,0,1,0,-1,-1,0,43741,0,33502 +134468,0,1,0,-1,-1,0,43745,0,33503 +134469,0,1,0,-1,-1,0,43743,0,33504 +134470,1,1,0,-1,-1,0,39927,0,33675 +134471,0,1,0,-1,-1,0,33063,0,33676 +134472,1,1,0,-1,-1,0,18057,0,33676 +134473,0,1,0,-1,-1,0,18058,0,33677 +134474,0,1,0,-1,-1,0,26155,0,33678 +134475,0,1,0,-1,-1,0,18056,0,33679 +134476,0,1,0,-1,-1,0,33484,0,33680 +134477,0,1,-1,-1,-1,0,9336,0,33765 +134478,0,1,0,-1,-1,0,43455,0,33766 +134479,1,1,0,-1,-1,0,44001,0,33766 +134480,0,1,0,-1,-1,0,17280,0,33767 +134481,1,1,0,-1,-1,0,33830,0,33767 +134482,2,1,0,-1,-1,0,21619,0,33767 +134483,0,1,0,-1,-1,0,26142,0,33768 +134484,1,1,0,-1,-1,0,21627,0,33768 +134485,0,1,0,-1,-1,0,33233,0,33769 +134486,1,1,0,-1,-1,0,21365,0,33769 +134487,0,0,-1,0,0,150,43732,0,33865 +134488,0,1,0,-1,-1,0,43860,0,33951 +134489,0,1,0,-1,-1,0,43861,0,33952 +134490,0,1,0,-1,-1,0,43862,0,33953 +134491,0,0,-1,-1,-1,0,483,0,33954 +134492,1,6,0,-1,-1,0,43846,0,33954 +134493,0,1,0,0,-1,0,9343,0,34066 +134494,1,1,0,-1,-1,0,26283,0,34066 +134495,0,0,-1,1500,-1,0,44212,0,34068 +134496,0,1,0,-1,-1,0,14055,0,34073 +134497,0,1,0,-1,-1,0,18033,0,34074 +134498,1,1,0,-1,-1,0,21627,0,34074 +134499,0,1,0,-1,-1,0,40226,0,34211 +134500,0,1,0,0,0,0,29369,0,34212 +134501,1,1,0,-1,-1,0,21638,0,34212 +134502,0,1,0,-1,-1,0,39987,0,34213 +134503,0,1,0,-1,-1,0,26158,0,34216 +134504,0,0,-1,-1,-1,0,483,0,34319 +134505,1,6,0,-1,-1,0,44958,0,34319 +134506,0,1,0,-1,-1,0,45011,0,34407 +134507,0,1,0,-1,-1,0,42098,0,34408 +134508,0,1,0,-1,-1,0,18048,0,34409 +134509,1,1,0,-1,-1,0,21632,0,34409 +134510,0,0,-1,0,1000,11,35271,0,34410 +134511,0,0,-1,0,1000,59,45020,0,34411 +134512,0,0,-1,0,1000,59,45019,0,34412 +134513,0,1,0,-1,-1,0,18032,0,32798 +134514,0,1,0,-1,-1,0,18053,0,32799 +134515,0,1,0,-1,-1,0,18042,0,32800 +134516,1,1,0,-1,-1,0,18378,0,32800 +134517,0,1,0,-1,-1,0,17367,0,32801 +134518,0,1,0,-1,-1,0,15806,0,32802 +134519,0,1,0,-1,-1,0,18038,0,32976 +134520,0,1,0,-1,-1,0,18032,0,32977 +134521,0,1,0,-1,-1,0,18038,0,32978 +134522,0,1,0,-1,-1,0,18042,0,32979 +134523,0,1,0,-1,-1,0,18033,0,32980 +134524,0,1,0,-1,-1,0,18042,0,32981 +134525,0,0,-1,1000,-1,0,42436,0,33062 +134526,0,0,0,1000,-1,0,42313,0,33063 +134527,0,1,0,0,0,0,17371,0,33064 +134528,1,1,0,-1,-1,0,21363,0,33064 +134529,0,1,0,0,0,0,18049,0,33065 +134530,0,1,0,0,0,0,15809,0,33066 +134531,0,1,0,0,0,0,14248,0,33067 +134532,0,0,-1,-1,-1,0,483,0,33160 +134533,1,6,0,-1,-1,0,42593,0,33160 +134534,0,0,-1,-1,-1,0,483,0,33165 +134535,1,6,0,-1,-1,0,42620,0,33165 +134536,0,1,0,-1,-1,0,15814,0,33280 +134537,1,1,0,-1,-1,0,39922,0,33280 +134538,0,1,0,-1,-1,0,43752,0,33505 +134539,0,1,0,-1,-1,0,43750,0,33506 +134540,0,1,0,-1,-1,0,43748,0,33507 +134541,0,1,0,-1,-1,0,43736,0,33508 +134542,0,1,0,-1,-1,0,43737,0,33509 +134543,0,1,0,-1,-1,0,43739,0,33510 +134544,0,1,0,0,0,0,14055,0,33681 +134545,0,1,0,-1,-1,0,18056,0,33682 +134546,0,1,0,-1,-1,0,24196,0,33683 +134547,0,1,0,-1,-1,0,33063,0,33684 +134548,1,1,0,-1,-1,0,18056,0,33684 +134549,0,1,0,-1,-1,0,18055,0,33685 +134550,0,1,0,-1,-1,0,18053,0,33770 +134551,1,1,0,-1,-1,0,21625,0,33770 +134552,0,1,0,-1,-1,0,26142,0,33771 +134553,1,1,0,-1,-1,0,21363,0,33771 +134554,0,1,0,-1,-1,0,14127,0,33772 +134555,0,0,-1,0,1000,11,43730,0,33866 +134556,0,0,-1,0,1000,11,45618,0,33867 +134557,0,0,-1,-1,-1,0,483,0,33869 +134558,1,6,0,-1,-1,0,43761,0,33869 +134559,0,0,-1,-1,-1,0,483,0,33870 +134560,1,6,0,-1,-1,0,43707,0,33870 +134561,0,0,-1,0,1000,59,43864,0,33956 +134562,0,1,0,-1,-1,0,18033,0,33957 +134563,1,1,0,-1,-1,0,21627,0,33957 +134564,0,1,0,-1,-1,0,14055,0,33958 +134565,0,1,0,-1,-1,0,14052,0,33959 +134566,0,1,0,-1,-1,0,26142,0,33964 +134567,0,1,0,-1,-1,0,14052,0,34075 +134568,0,5,0,-1,-1,0,44245,0,34077 +134569,0,0,-1,-1,-1,0,483,0,34218 +134570,1,6,0,-1,-1,0,44768,0,34218 +134571,0,0,-1,-1,-1,0,483,0,34221 +134572,1,6,0,-1,-1,0,44794,0,34221 +134573,0,1,0,0,0,0,27867,0,34227 +134574,0,1,0,-1,-1,0,36068,0,34228 +134575,1,1,0,-1,-1,0,44810,0,34228 +134576,0,0,-1,-1,-1,0,483,0,34413 +134577,1,6,0,-1,-1,0,45022,0,34413 +134578,0,0,0,60000,60000,1139,45030,0,34414 +134579,0,1,0,-1,-1,0,9417,0,34416 +134580,0,1,0,-1,-1,0,9331,0,34417 +134581,0,1,0,0,-1,0,9416,0,34418 +134582,0,0,0,1500,-1,0,45174,0,34518 +134583,0,0,0,1500,-1,0,45175,0,34519 +134584,0,1,0,-1,-1,0,17367,0,32804 +134585,0,1,0,-1,-1,0,17367,0,32807 +134586,0,1,0,-1,-1,0,18053,0,32808 +134587,1,1,0,-1,-1,0,18378,0,32808 +134588,0,0,-1,-1,-1,0,42801,0,32895 +134589,0,0,-1,-1,-1,0,42801,0,32896 +134590,0,1,0,-1,-1,0,15696,0,32982 +134591,0,1,0,-1,-1,0,18030,0,32983 +134592,0,1,0,-1,-1,0,15696,0,32984 +134593,0,1,0,-1,-1,0,15696,0,32985 +134594,0,1,0,-1,-1,0,18030,0,32986 +134595,0,1,0,0,0,0,17371,0,33068 +134596,1,1,0,-1,-1,0,21363,0,33068 +134597,0,0,0,10000,-1,0,42325,0,33069 +134598,0,0,-1,-1,-1,0,42338,0,33070 +134599,0,0,0,10000,-1,0,42356,0,33072 +134600,0,0,0,300000,-1,0,42644,0,33166 +134601,0,0,0,61000,-1,0,42642,0,33167 +134602,0,0,-1,-1,-1,0,483,0,33174 +134603,1,6,0,-1,-1,0,42662,0,33174 +134604,0,1,0,-1,-1,0,18045,0,33281 +134605,0,1,0,-1,-1,0,44075,0,33283 +134606,0,1,0,-1,-1,0,13881,0,33285 +134607,0,1,0,-1,-1,0,36098,0,33286 +134608,1,1,0,-1,-1,0,21365,0,33286 +134609,0,1,0,-1,-1,0,18044,0,33287 +134610,0,1,0,-1,-1,0,40258,0,33513 +134611,0,1,0,-1,-1,0,40555,0,33514 +134612,0,1,0,-1,-1,0,42038,0,33515 +134613,0,1,0,-1,-1,0,26142,0,33686 +134614,0,1,0,-1,-1,0,43455,0,33687 +134615,0,1,0,-1,-1,0,43902,0,33688 +134616,0,1,0,-1,-1,0,15806,0,33689 +134617,1,1,0,-1,-1,0,43901,0,33689 +134618,0,1,0,-1,-1,0,18047,0,33690 +134619,1,1,0,-1,-1,0,33830,0,33690 +134620,2,1,0,-1,-1,0,18378,0,33690 +134621,0,1,0,-1,-1,0,26154,0,33691 +134622,1,1,0,-1,-1,0,21630,0,33691 +134623,0,0,-1,-1,-1,0,483,0,33783 +134624,1,6,0,-1,-1,0,43493,0,33783 +134625,0,0,-1,-1,-1,0,43521,0,33784 +134626,0,0,-1,-1,-1,0,483,0,33871 +134627,1,6,0,-1,-1,0,43758,0,33871 +134628,0,0,-1,0,1000,11,43763,0,33872 +134629,0,0,-1,-1,-1,0,483,0,33873 +134630,1,6,0,-1,-1,0,43765,0,33873 +134631,0,0,-1,0,1000,11,43771,0,33874 +134632,0,0,-1,-1,-1,0,483,0,33875 +134633,1,6,0,-1,-1,0,43772,0,33875 +134634,0,1,0,-1,-1,0,14027,0,33876 +134635,0,1,0,-1,-1,0,34040,0,33965 +134636,0,1,0,-1,-1,0,18056,0,33970 +134637,0,0,0,-1,3000,330,44744,0,34092 +134638,0,1,0,0,0,0,44336,0,34094 +134639,0,1,0,-1,-1,0,14829,0,34099 +134640,0,1,0,-1,-1,0,29369,0,34229 +134641,1,1,0,-1,-1,0,35836,0,34229 +134642,0,1,0,-1,-1,0,18056,0,34230 +134643,0,1,0,-1,-1,0,18044,0,34231 +134644,1,1,0,-1,-1,0,21638,0,34231 +134645,0,1,0,-1,-1,0,23929,0,34232 +134646,0,1,0,-1,-1,0,29369,0,34233 +134647,0,1,0,-1,-1,0,15814,0,34329 +134648,0,0,-1,1000,-1,0,44968,0,34330 +134649,0,1,0,-1,-1,0,15813,0,34331 +134650,1,1,0,-1,-1,0,40226,0,34331 +134651,0,1,0,-1,-1,0,42099,0,34332 +134652,0,1,0,-1,-1,0,39885,0,34333 +134653,1,1,0,-1,-1,0,44810,0,34333 +134654,0,1,0,-1,-1,0,9141,0,34419 +134655,0,0,0,20000,20000,1140,45038,0,34420 +134656,0,1,0,-1,-1,0,9332,0,34421 +134657,0,1,0,-1,-1,0,14056,0,34423 +134658,0,1,0,-1,-1,0,13881,0,34424 +134659,0,0,0,-1,-1,0,45048,0,34425 +134660,0,1,0,-1,-1,0,32584,0,34527 +134661,1,1,0,-1,-1,0,18378,0,34527 +134662,0,1,0,-1,-1,0,45011,0,34528 +134663,0,1,0,-1,-1,0,9330,0,32809 +134664,0,1,0,-1,-1,0,9407,0,32810 +134665,0,1,0,-1,-1,0,15715,0,32811 +134666,0,1,0,-1,-1,0,9317,0,32812 +134667,1,1,0,-1,-1,0,21626,0,32812 +134668,0,1,0,-1,-1,0,15714,0,32813 +134669,0,1,0,-1,-1,0,9331,0,32814 +134670,0,0,-1,0,3000,79,41609,0,32898 +134671,0,0,-1,0,3000,79,41610,0,32899 +134672,0,0,-1,0,3000,79,41611,0,32900 +134673,0,0,-1,0,3000,79,41608,0,32901 +134674,0,0,-1,0,120000,4,41618,0,32902 +134675,0,1,0,-1,-1,0,15696,0,32987 +134676,0,1,0,-1,-1,0,18038,0,32988 +134677,0,1,0,-1,-1,0,18032,0,32989 +134678,0,1,0,-1,-1,0,18038,0,32990 +134679,0,1,0,-1,-1,0,18030,0,32991 +134680,0,1,0,-1,-1,0,34128,0,33076 +134681,0,1,0,-1,-1,0,42368,0,33077 +134682,0,0,0,0,3000,330,42667,0,33176 +134683,0,0,0,-1,3000,330,42668,0,33179 +134684,0,0,0,0,3000,330,42668,0,33182 +134685,0,0,0,0,3000,330,42680,0,33183 +134686,0,0,0,0,3000,330,42683,0,33184 +134687,0,0,-1,-1,-1,0,42687,0,33185 +134688,0,0,-1,-1,-1,0,483,0,33186 +134689,1,6,0,-1,-1,0,42688,0,33186 +134690,0,0,0,0,-1,0,42436,0,33288 +134691,1,5,0,-1,-1,0,42533,0,33288 +134692,0,1,0,-1,-1,0,18056,0,33291 +134693,0,1,0,-1,-1,0,13881,0,33293 +134694,1,1,0,-1,-1,0,20959,0,33293 +134695,0,1,0,-1,-1,0,14056,0,33297 +134696,0,1,0,-1,-1,0,31941,0,33518 +134697,0,1,0,-1,-1,0,18045,0,33519 +134698,1,1,0,-1,-1,0,21619,0,33519 +134699,0,1,0,-1,-1,0,18036,0,33520 +134700,1,1,0,-1,-1,0,21364,0,33520 +134701,0,1,0,-1,-1,0,14055,0,33522 +134702,0,1,0,-1,-1,0,31941,0,33692 +134703,1,1,0,-1,-1,0,21640,0,33692 +134704,0,1,0,-1,-1,0,18037,0,33693 +134705,1,1,0,-1,-1,0,21620,0,33693 +134706,0,1,0,-1,-1,0,33820,0,33694 +134707,1,1,0,-1,-1,0,21365,0,33694 +134708,0,1,0,-1,-1,0,14798,0,33695 +134709,0,1,0,-1,-1,0,14055,0,33696 +134710,1,1,0,-1,-1,0,38522,0,33696 +134711,0,1,0,-1,-1,0,17280,0,33697 +134712,0,0,-1,-1,-1,0,483,0,33792 +134713,1,6,0,-1,-1,0,43549,0,33792 +134714,0,1,0,-1,-1,0,15808,0,33877 +134715,0,1,0,-1,-1,0,15808,0,33878 +134716,0,1,0,-1,-1,0,28264,0,33971 +134717,0,1,0,-1,-1,0,28264,0,33972 +134718,0,1,0,-1,-1,0,18055,0,33973 +134719,0,1,0,-1,-1,0,18056,0,33974 +134720,0,0,0,0,3000,330,43899,0,33976 +134721,0,1,0,-1,-1,0,29414,0,34100 +134722,0,0,-1,-1,-1,0,483,0,34103 +134723,1,6,0,-1,-1,0,44343,0,34103 +134724,0,0,-1,-1,-1,0,483,0,34104 +134725,1,6,0,-1,-1,0,44344,0,34104 +134726,0,1,0,-1,-1,0,29414,0,34105 +134727,0,1,0,-1,-1,0,14829,0,34106 +134728,0,1,0,-1,-1,0,9415,0,34107 +134729,0,1,0,-1,-1,0,15827,0,34234 +134730,0,1,0,-1,-1,0,36098,0,34240 +134731,1,1,0,-1,-1,0,21365,0,34240 +134732,0,1,0,-1,-1,0,15821,0,34241 +134733,0,1,0,-1,-1,0,18058,0,34242 +134734,0,1,0,-1,-1,0,44847,0,34243 +134735,1,1,0,-1,-1,0,21640,0,34243 +134736,0,1,0,-1,-1,0,15806,0,34334 +134737,1,1,0,-1,-1,0,43219,0,34334 +134738,2,1,0,-1,-1,0,44972,0,34334 +134739,3,1,0,-1,-1,0,46699,0,34334 +134740,0,1,0,-1,-1,0,44973,0,34335 +134741,1,1,0,-1,-1,0,21631,0,34335 +134742,0,1,0,-1,-1,0,44974,0,34336 +134743,0,1,0,-1,-1,0,44973,0,34337 +134744,0,0,-1,-1,-1,0,44969,0,34338 +134745,0,1,0,-1,-1,0,44853,0,34339 +134746,0,1,0,-1,-1,0,45355,0,34427 +134747,0,0,0,300000,-1,0,45049,0,34428 +134748,0,0,0,90000,15000,1141,45042,0,34429 +134749,0,0,0,300000,-1,0,45052,0,34430 +134750,1,1,0,-1,-1,0,42077,0,34430 +134751,0,0,-1,0,3000,79,40572,0,34641 +134752,0,0,-1,-1,-1,4,45385,0,34646 +134753,0,0,-1,-1,-1,0,45731,0,34861 +134754,0,0,0,1000,-1,0,45732,0,34862 +134755,0,1,0,-1,-1,0,15808,0,34996 +134756,1,1,0,-1,-1,0,43901,0,34996 +134757,0,1,0,-1,-1,0,28735,0,34997 +134758,1,1,0,-1,-1,0,43902,0,34997 +134759,1,1,0,-1,-1,0,44835,0,34998 +134760,1,1,0,-1,-1,0,39927,0,34999 +134761,1,1,0,-1,-1,0,39927,0,35000 +134762,1,1,0,-1,-1,0,44300,0,35089 +134763,0,1,0,-1,-1,0,15808,0,35093 +134764,1,1,0,-1,-1,0,43901,0,35093 +134765,0,0,-1,-1,-1,0,483,0,35190 +134766,1,6,0,-1,-1,0,46109,0,35190 +134767,0,0,-1,-1,-1,0,483,0,35191 +134768,1,6,0,-1,-1,0,46106,0,35191 +134769,0,0,-1,-1,-1,0,483,0,35192 +134770,1,6,0,-1,-1,0,46110,0,35192 +134771,0,0,-1,-1,-1,0,483,0,35193 +134772,1,6,0,-1,-1,0,46112,0,35193 +134773,0,0,-1,-1,-1,0,483,0,35267 +134774,1,6,0,-1,-1,0,39733,0,35267 +134775,0,0,-1,-1,-1,0,483,0,35268 +134776,1,6,0,-1,-1,0,39735,0,35268 +134777,0,0,-1,-1,-1,0,483,0,35269 +134778,1,6,0,-1,-1,0,39734,0,35269 +134779,0,0,-1,-1,-1,0,483,0,35270 +134780,1,6,0,-1,-1,0,39737,0,35270 +134781,0,0,-1,-1,-1,0,483,0,35271 +134782,1,6,0,-1,-1,0,39738,0,35271 +134783,0,1,0,-1,-1,0,18032,0,35365 +134784,1,1,0,-1,-1,0,21363,0,35365 +134785,0,1,0,-1,-1,0,9332,0,35366 +134786,1,1,0,-1,-1,0,32748,0,35366 +134787,0,1,0,-1,-1,0,9331,0,35367 +134788,0,1,0,-1,-1,0,9335,0,35368 +134789,0,1,0,-1,-1,0,9332,0,35369 +134790,0,0,-1,1000,-1,0,46536,0,35458 +134791,0,0,-1,1000,-1,0,46537,0,35459 +134792,0,0,-1,1000,-1,0,46538,0,35460 +134793,0,0,-1,1000,-1,0,46539,0,35461 +134794,0,0,-1,1000,-1,0,46540,0,35462 +134795,0,0,-1,-1,-1,0,483,0,35551 +134796,1,6,0,-1,-1,0,46128,0,35551 +134797,0,0,-1,-1,-1,0,483,0,35552 +134798,1,6,0,-1,-1,0,46130,0,35552 +134799,0,0,-1,-1,-1,0,483,0,35553 +134800,1,6,0,-1,-1,0,46141,0,35553 +134801,0,0,-1,-1,-1,0,483,0,35554 +134802,1,6,0,-1,-1,0,46144,0,35554 +134803,0,0,0,0,3000,330,47977,0,37011 +134804,0,0,0,0,3000,330,48025,0,37012 +134805,0,0,0,600000,60000,94,48041,0,37127 +134806,0,0,0,600000,60000,94,48042,0,37128 +134807,0,0,0,-1,-1,0,50049,0,38165 +134808,0,1,0,-1,-1,0,15811,0,38175 +134809,1,0,0,600000,60000,94,50070,0,38175 +134810,0,1,0,-1,-1,0,9334,0,34665 +134811,0,1,0,-1,-1,0,9334,0,34666 +134812,0,1,0,-1,-1,0,33490,0,34667 +134813,0,1,0,-1,-1,0,33490,0,34670 +134814,0,1,0,-1,-1,0,35338,0,34671 +134815,1,1,0,-1,-1,0,21626,0,34671 +134816,0,0,-1,-1,-1,0,483,0,34872 +134817,1,6,0,-1,-1,0,45765,0,34872 +134818,1,1,0,-1,-1,0,39927,0,35002 +134819,0,1,0,-1,-1,0,33063,0,35003 +134820,1,1,0,-1,-1,0,24196,0,35003 +134821,0,1,0,-1,-1,0,45011,0,35004 +134822,0,1,0,-1,-1,0,33236,0,35005 +134823,0,1,0,-1,-1,0,17493,0,35006 +134824,0,1,0,-1,-1,0,15808,0,35095 +134825,1,1,0,-1,-1,0,43901,0,35095 +134826,0,1,0,-1,-1,0,17493,0,35096 +134827,0,1,0,-1,-1,0,34040,0,35097 +134828,0,1,0,-1,-1,0,44301,0,35098 +134829,1,1,0,-1,-1,0,17493,0,35098 +134830,0,1,0,-1,-1,0,28264,0,35099 +134831,0,1,0,-1,-1,0,26158,0,35100 +134832,0,0,-1,-1,-1,0,483,0,35194 +134833,1,6,0,-1,-1,0,46113,0,35194 +134834,0,0,-1,-1,-1,0,483,0,35195 +134835,1,6,0,-1,-1,0,46114,0,35195 +134836,0,0,-1,-1,-1,0,483,0,35196 +134837,1,6,0,-1,-1,0,46115,0,35196 +134838,0,0,-1,-1,-1,0,483,0,35197 +134839,1,6,0,-1,-1,0,46116,0,35197 +134840,0,0,-1,-1,-1,0,483,0,35273 +134841,1,6,0,-1,-1,0,46353,0,35273 +134842,0,0,0,1800000,0,0,46354,0,35274 +134843,0,0,0,1800000,0,0,46354,0,35275 +134844,0,1,0,-1,-1,0,9141,0,35370 +134845,0,1,0,-1,-1,0,17367,0,35371 +134846,1,1,0,-1,-1,0,33830,0,35371 +134847,2,1,0,-1,-1,0,21363,0,35371 +134848,0,1,0,-1,-1,0,18052,0,35372 +134849,1,1,0,-1,-1,0,21620,0,35372 +134850,0,1,0,-1,-1,0,18055,0,35373 +134851,1,1,0,-1,-1,0,21629,0,35373 +134852,0,1,0,-1,-1,0,9343,0,35374 +134853,1,1,0,-1,-1,0,21624,0,35374 +134854,0,1,0,-1,-1,0,15714,0,35375 +134855,1,1,0,-1,-1,0,21363,0,35375 +134856,0,1,0,-1,-1,0,13881,0,35464 +134857,0,1,0,-1,-1,0,15715,0,35465 +134858,0,1,0,-1,-1,0,9346,0,35466 +134859,0,1,0,-1,-1,0,18035,0,35467 +134860,0,1,0,-1,-1,0,9332,0,35468 +134861,1,1,0,-1,-1,0,32748,0,35468 +134862,0,1,0,-1,-1,0,9318,0,35469 +134863,0,0,-1,-1,-1,0,483,0,35555 +134864,1,6,0,-1,-1,0,46142,0,35555 +134865,0,0,-1,-1,-1,0,483,0,35556 +134866,1,6,0,-1,-1,0,46140,0,35556 +134867,0,0,-1,1000,1000,1197,46661,0,35557 +134868,0,0,-1,0,1000,11,46898,0,35563 +134869,0,0,0,1500,-1,0,48406,0,37297 +134870,0,0,0,1500,-1,0,48408,0,37298 +134871,0,0,-1,0,0,0,47103,0,37311 +134872,0,0,-1,0,0,0,48401,0,37312 +134873,0,0,-1,0,0,0,47103,0,37313 +134874,0,0,-1,-1,-1,0,483,0,38229 +134875,1,6,0,-1,-1,0,50194,0,38229 +134876,0,0,0,900000,-1,0,50247,0,38233 +134877,0,0,0,900000,-1,0,50317,0,38234 +134878,0,1,0,-1,-1,0,9331,0,34674 +134879,0,1,0,0,0,0,18049,0,34675 +134880,0,1,0,0,0,0,34593,0,34676 +134881,0,1,0,-1,-1,0,23213,0,35007 +134882,0,1,0,0,0,0,18056,0,35008 +134883,0,1,0,-1,-1,0,17493,0,35009 +134884,0,1,0,-1,-1,0,34040,0,35010 +134885,0,1,0,-1,-1,0,33063,0,35011 +134886,1,1,0,-1,-1,0,17493,0,35011 +134887,0,1,0,-1,-1,0,28264,0,35012 +134888,0,1,0,-1,-1,0,15808,0,35101 +134889,1,1,0,-1,-1,0,43901,0,35101 +134890,0,1,0,-1,-1,0,44751,0,35102 +134891,0,1,0,-1,-1,0,45783,0,35103 +134892,0,1,0,-1,-1,0,46096,0,35104 +134893,0,1,0,-1,-1,0,46097,0,35105 +134894,0,1,0,-1,-1,0,46098,0,35106 +134895,0,0,-1,-1,-1,0,483,0,35198 +134896,1,6,0,-1,-1,0,46122,0,35198 +134897,0,0,-1,-1,-1,0,483,0,35199 +134898,1,6,0,-1,-1,0,46123,0,35199 +134899,0,0,-1,-1,-1,0,483,0,35200 +134900,1,6,0,-1,-1,0,46124,0,35200 +134901,0,0,-1,-1,-1,0,483,0,35201 +134902,1,6,0,-1,-1,0,46125,0,35201 +134903,0,1,0,0,0,0,18052,0,35282 +134904,0,1,0,0,0,0,18040,0,35283 +134905,1,1,0,-1,-1,0,21628,0,35283 +134906,0,1,0,0,0,0,15815,0,35284 +134907,0,0,-1,0,1000,11,35270,0,35285 +134908,0,0,-1,0,120000,1153,2023,0,35287 +134909,0,1,0,-1,-1,0,9141,0,35376 +134910,0,1,0,-1,-1,0,9331,0,35377 +134911,1,1,0,-1,-1,0,28539,0,35377 +134912,0,1,0,-1,-1,0,9335,0,35378 +134913,0,1,0,-1,-1,0,9335,0,35379 +134914,0,1,0,-1,-1,0,9332,0,35380 +134915,0,1,0,-1,-1,0,9315,0,35470 +134916,1,1,0,-1,-1,0,21624,0,35470 +134917,0,1,0,-1,-1,0,17367,0,35471 +134918,1,1,0,-1,-1,0,33830,0,35471 +134919,2,1,0,-1,-1,0,21363,0,35471 +134920,0,1,0,-1,-1,0,21620,0,35472 +134921,1,1,0,-1,-1,0,9345,0,35472 +134922,0,1,0,-1,-1,0,32973,0,35473 +134923,1,1,0,-1,-1,0,18033,0,35473 +134924,0,0,-1,-1,-1,0,483,0,35564 +134925,1,6,0,-1,-1,0,46684,0,35564 +134926,0,0,-1,0,1000,11,46683,0,35565 +134927,0,0,-1,-1,-1,0,483,0,35566 +134928,1,6,0,-1,-1,0,46688,0,35566 +134929,0,1,0,0,0,0,24196,0,35581 +134930,2,0,0,300000,300000,1203,51582,0,35581 +134931,0,0,0,1500,-1,0,48722,0,37460 +134932,0,0,-1,0,1000,59,42256,0,37488 +134933,0,0,-1,0,1000,59,42255,0,37489 +134934,0,0,-1,0,1000,59,42254,0,37490 +134935,0,0,-1,0,1000,59,43961,0,37491 +134936,0,1,0,-1,-1,0,15821,0,38287 +134937,1,0,0,120000,20000,1141,51955,0,38287 +134938,0,1,0,0,-1,0,18043,0,34677 +134939,1,1,0,-1,-1,0,21628,0,34677 +134940,2,1,0,-1,-1,0,45484,0,34677 +134941,0,1,0,0,-1,0,18054,0,34678 +134942,1,1,0,-1,-1,0,45481,0,34678 +134943,0,1,0,0,-1,0,15817,0,34679 +134944,1,1,0,-1,-1,0,45482,0,34679 +134945,0,1,0,0,-1,0,45483,0,34680 +134946,0,0,0,1000,-1,0,45416,0,34683 +134947,0,0,-1,30000,-1,0,45417,0,34684 +134948,0,1,0,-1,-1,0,26158,0,35013 +134949,0,1,0,-1,-1,0,44751,0,35014 +134950,0,1,0,-1,-1,0,43902,0,35015 +134951,0,1,0,0,0,0,18050,0,35016 +134952,1,1,0,-1,-1,0,46060,0,35016 +134953,0,1,0,-1,-1,0,15808,0,35017 +134954,1,1,0,-1,-1,0,43901,0,35017 +134955,0,1,0,-1,-1,0,21441,0,35018 +134956,0,1,0,-1,-1,0,46088,0,35019 +134957,0,1,0,0,-1,0,14799,0,35107 +134958,0,1,-1,-1,-1,0,15806,0,35108 +134959,0,1,0,-1,-1,0,44751,0,35109 +134960,1,1,0,-1,-1,0,46060,0,35109 +134961,0,1,0,-1,-1,0,15809,0,35110 +134962,1,1,0,-1,-1,0,47041,0,35110 +134963,0,1,0,-1,-1,0,28360,0,35111 +134964,1,1,0,-1,-1,0,33830,0,35111 +134965,2,1,0,-1,-1,0,18379,0,35111 +134966,0,1,0,-1,-1,0,26155,0,35112 +134967,1,1,0,-1,-1,0,21630,0,35112 +134968,0,0,-1,-1,-1,0,483,0,35202 +134969,1,6,0,-1,-1,0,46126,0,35202 +134970,0,0,-1,-1,-1,0,483,0,35203 +134971,1,6,0,-1,-1,0,46127,0,35203 +134972,0,0,-1,-1,-1,0,483,0,35204 +134973,1,6,0,-1,-1,0,46128,0,35204 +134974,0,0,-1,-1,-1,0,483,0,35205 +134975,1,6,0,-1,-1,0,46129,0,35205 +134976,0,0,-1,-1,-1,0,483,0,35206 +134977,1,6,0,-1,-1,0,46130,0,35206 +134978,0,1,0,0,0,0,18052,0,35290 +134979,0,1,0,0,0,0,18040,0,35291 +134980,1,1,0,-1,-1,0,18378,0,35291 +134981,0,1,0,0,0,0,15815,0,35292 +134982,0,0,-1,-1,-1,0,483,0,35294 +134983,1,6,0,-1,-1,0,28578,0,35294 +134984,0,0,-1,-1,-1,0,483,0,35295 +134985,1,6,0,-1,-1,0,28564,0,35295 +134986,0,1,0,-1,-1,0,32973,0,35382 +134987,0,1,0,-1,-1,0,21620,0,35386 +134988,1,1,0,-1,-1,0,9345,0,35386 +134989,0,1,0,-1,-1,0,9331,0,35475 +134990,1,1,0,-1,-1,0,28539,0,35475 +134991,0,1,0,-1,-1,0,9408,0,35476 +134992,1,1,0,-1,-1,0,23300,0,35477 +134993,0,0,0,120000,0,0,46567,0,35485 +134994,0,0,-1,-1,-1,0,483,0,35582 +134995,1,6,0,-1,-1,0,46697,0,35582 +134996,0,1,0,-1,-1,0,46756,0,35674 +134997,1,1,0,-1,-1,0,44909,0,35674 +134998,0,0,0,120000,0,0,46780,0,35693 +134999,0,1,0,-1,-1,0,15828,0,35694 +135000,1,0,0,300000,0,0,46782,0,35694 +135001,0,0,-1,0,1000,59,42263,0,37492 +135002,0,0,-1,0,1000,59,42257,0,37493 +135003,0,0,-1,0,1000,59,43959,0,37494 +135004,0,0,-1,0,1000,59,42264,0,37495 +135005,0,0,-1,0,1000,59,42259,0,37496 +135006,0,1,0,-1,-1,0,17320,0,38288 +135007,1,0,0,120000,-1,0,51954,0,38288 +135008,0,1,0,-1,-1,0,42038,0,38289 +135009,2,0,0,120000,-1,0,51952,0,38289 +135010,0,1,0,-1,-1,0,17280,0,38290 +135011,1,0,0,120000,20000,1141,51953,0,38290 +135012,0,0,-1,1000,-1,0,52009,0,38291 +135013,0,0,-1,0,1000,59,50369,0,38294 +135014,0,0,0,900000,-1,0,50418,0,38299 +135015,0,0,0,1000,-1,0,45418,0,34685 +135016,0,0,0,180000,-1,0,45426,0,34686 +135017,0,0,-1,-1,-1,0,483,0,34689 +135018,1,6,0,-1,-1,0,44794,0,34689 +135019,0,1,0,-1,-1,0,15714,0,34697 +135020,0,1,0,-1,-1,0,15807,0,34698 +135021,1,1,0,-1,-1,0,39922,0,34698 +135022,0,1,0,-1,-1,0,9335,0,34699 +135023,0,1,0,-1,-1,0,15815,0,34887 +135024,1,1,0,-1,-1,0,40680,0,34887 +135025,0,1,0,-1,-1,0,14055,0,34889 +135026,0,1,0,-1,-1,0,18041,0,34890 +135027,1,1,0,-1,-1,0,21634,0,34890 +135028,0,1,0,-1,-1,0,33782,0,34891 +135029,0,1,0,-1,-1,0,15807,0,34892 +135030,0,1,0,-1,-1,0,46090,0,35020 +135031,0,1,0,-1,-1,0,46100,0,35021 +135032,0,1,0,-1,-1,0,33820,0,35022 +135033,1,1,0,-1,-1,0,33830,0,35022 +135034,2,1,0,-1,-1,0,21632,0,35022 +135035,0,1,0,-1,-1,0,42089,0,35023 +135036,1,1,0,-1,-1,0,21366,0,35023 +135037,0,1,0,-1,-1,0,39806,0,35024 +135038,1,1,0,-1,-1,0,35836,0,35024 +135039,0,1,0,-1,-1,0,33236,0,35113 +135040,1,1,0,-1,-1,0,21366,0,35113 +135041,0,1,0,-1,-1,0,18057,0,35114 +135042,1,1,0,-1,-1,0,21363,0,35114 +135043,0,1,0,-1,-1,0,26155,0,35115 +135044,1,1,0,-1,-1,0,21364,0,35115 +135045,0,1,0,0,0,0,14798,0,35129 +135046,1,1,0,-1,-1,0,43782,0,35129 +135047,0,0,-1,-1,-1,0,483,0,35207 +135048,1,6,0,-1,-1,0,46131,0,35207 +135049,0,0,-1,-1,-1,0,483,0,35208 +135050,1,6,0,-1,-1,0,46140,0,35208 +135051,0,0,-1,-1,-1,0,483,0,35209 +135052,1,6,0,-1,-1,0,46141,0,35209 +135053,0,0,-1,-1,-1,0,483,0,35210 +135054,1,6,0,-1,-1,0,46142,0,35210 +135055,0,0,-1,-1,-1,0,483,0,35296 +135056,1,6,0,-1,-1,0,42688,0,35296 +135057,0,0,-1,-1,-1,0,483,0,35297 +135058,1,6,0,-1,-1,0,34008,0,35297 +135059,0,0,-1,-1,-1,0,483,0,35298 +135060,1,6,0,-1,-1,0,27948,0,35298 +135061,0,1,0,-1,-1,0,32973,0,35387 +135062,1,1,0,-1,-1,0,15715,0,35387 +135063,0,1,0,-1,-1,0,14047,0,35388 +135064,0,1,0,-1,-1,0,18050,0,35389 +135065,1,1,0,-1,-1,0,21362,0,35389 +135066,0,1,0,-1,-1,0,21362,0,35390 +135067,1,1,0,-1,-1,0,9344,0,35390 +135068,0,1,0,-1,-1,0,21620,0,35391 +135069,1,1,0,-1,-1,0,9317,0,35391 +135070,0,1,0,-1,-1,0,18033,0,35494 +135071,1,1,0,-1,-1,0,18378,0,35494 +135072,0,1,0,-1,-1,0,9333,0,35495 +135073,0,1,0,-1,-1,0,14248,0,35497 +135074,0,0,-1,-1,-1,0,483,0,35695 +135075,1,6,0,-1,-1,0,46775,0,35695 +135076,0,0,-1,-1,-1,0,483,0,35696 +135077,1,6,0,-1,-1,0,46776,0,35696 +135078,0,0,-1,-1,-1,0,483,0,35697 +135079,1,6,0,-1,-1,0,46777,0,35697 +135080,0,0,-1,-1,-1,0,483,0,35698 +135081,1,6,0,-1,-1,0,46778,0,35698 +135082,0,0,-1,0,1000,59,42260,0,37497 +135083,0,0,-1,0,1000,59,42258,0,37498 +135084,0,0,-1,0,1000,59,42261,0,37499 +135085,0,0,-1,-1,-1,0,483,0,37504 +135086,1,6,0,-1,-1,0,48789,0,37504 +135087,0,0,-1,1000,-1,0,50425,0,38300 +135088,0,0,0,300000,-1,0,50317,0,38301 +135089,0,0,-1,1000,-1,0,50477,0,38308 +135090,0,1,0,-1,-1,0,18036,0,34700 +135091,0,1,0,-1,-1,0,15818,0,34701 +135092,0,1,0,-1,-1,0,21363,0,34702 +135093,1,1,0,-1,-1,0,18032,0,34702 +135094,0,1,0,-1,-1,0,9335,0,34703 +135095,1,1,0,-1,-1,0,43902,0,34703 +135096,0,1,0,0,0,0,15714,0,34704 +135097,0,1,0,-1,-1,0,15810,0,34893 +135098,0,1,0,-1,-1,0,15810,0,34894 +135099,0,1,0,-1,-1,0,43455,0,34895 +135100,0,1,0,-1,-1,0,43460,0,34896 +135101,0,1,0,-1,-1,0,44887,0,34898 +135102,0,1,0,-1,-1,0,25179,0,34900 +135103,0,1,0,-1,-1,0,18041,0,35025 +135104,1,1,0,-1,-1,0,21364,0,35025 +135105,0,1,0,-1,-1,0,31941,0,35026 +135106,1,1,0,-1,-1,0,21634,0,35026 +135107,0,1,0,-1,-1,0,18054,0,35027 +135108,0,1,0,-1,-1,0,18056,0,35028 +135109,1,1,0,-1,-1,0,38522,0,35028 +135110,0,1,0,-1,-1,0,45011,0,35029 +135111,0,1,0,-1,-1,0,34040,0,35030 +135112,0,1,0,0,0,0,18037,0,35130 +135113,1,1,0,-1,-1,0,21628,0,35130 +135114,0,1,0,0,0,0,15812,0,35131 +135115,1,1,0,-1,-1,0,44474,0,35131 +135116,0,1,0,0,0,0,14127,0,35132 +135117,0,1,0,0,0,0,14055,0,35133 +135118,0,1,0,0,0,0,18037,0,35134 +135119,1,1,0,-1,-1,0,21628,0,35134 +135120,0,1,0,0,0,0,15815,0,35135 +135121,0,0,-1,-1,-1,0,483,0,35211 +135122,1,6,0,-1,-1,0,46144,0,35211 +135123,0,0,-1,-1,-1,0,483,0,35212 +135124,1,6,0,-1,-1,0,46132,0,35212 +135125,0,0,-1,-1,-1,0,483,0,35213 +135126,1,6,0,-1,-1,0,46133,0,35213 +135127,0,0,-1,-1,-1,0,483,0,35214 +135128,1,6,0,-1,-1,0,46134,0,35214 +135129,0,0,-1,-1,-1,0,483,0,35299 +135130,1,6,0,-1,-1,0,34007,0,35299 +135131,0,0,-1,-1,-1,0,483,0,35300 +135132,1,6,0,-1,-1,0,35568,0,35300 +135133,0,0,-1,-1,-1,0,483,0,35301 +135134,1,6,0,-1,-1,0,35573,0,35301 +135135,0,0,-1,-1,-1,0,483,0,35302 +135136,1,6,0,-1,-1,0,35559,0,35302 +135137,0,0,-1,-1,-1,0,483,0,35303 +135138,1,6,0,-1,-1,0,35562,0,35303 +135139,0,1,0,-1,-1,0,32973,0,35392 +135140,1,1,0,-1,-1,0,18033,0,35392 +135141,0,1,0,-1,-1,0,17371,0,35393 +135142,0,1,0,-1,-1,0,18039,0,35394 +135143,1,1,0,-1,-1,0,21362,0,35394 +135144,0,1,0,-1,-1,0,21362,0,35395 +135145,1,1,0,-1,-1,0,9316,0,35395 +135146,0,0,-1,1000,-1,0,46461,0,35396 +135147,0,0,-1,1000,-1,0,46462,0,35397 +135148,0,0,-1,-1,-1,0,483,0,35498 +135149,1,6,0,-1,-1,0,46578,0,35498 +135150,0,0,-1,0,60000,24,46590,0,35499 +135151,0,0,-1,-1,-1,0,483,0,35500 +135152,1,6,0,-1,-1,0,46594,0,35500 +135153,0,0,-1,-1,-1,0,483,0,35699 +135154,1,6,0,-1,-1,0,46779,0,35699 +135155,0,0,0,120000,20000,1141,46783,0,35700 +135156,0,1,0,-1,-1,0,17746,0,35702 +135157,1,1,0,-1,-1,0,15826,0,35702 +135158,2,0,0,90000,15000,1141,46784,0,35702 +135159,0,1,0,-1,-1,0,40231,0,35703 +135160,1,0,0,180000,0,0,46785,0,35703 +135161,0,0,-1,0,0,0,48807,0,37567 +135162,0,0,-1,1500,-1,0,48889,0,37582 +135163,0,0,-1,1500,-1,0,48890,0,37583 +135164,0,0,-1,1500,-1,0,48891,0,37584 +135165,0,0,-1,0,1000,59,51010,0,38320 +135166,0,0,-1,-1,-1,0,483,0,38327 +135167,1,6,0,-1,-1,0,50644,0,38327 +135168,0,1,0,-1,-1,0,18032,0,34705 +135169,1,1,0,-1,-1,0,21363,0,34705 +135170,0,1,0,-1,-1,0,18036,0,34707 +135171,1,1,0,-1,-1,0,21364,0,34707 +135172,0,1,0,-1,-1,0,15808,0,34708 +135173,0,1,0,-1,-1,0,14049,0,34712 +135174,0,1,0,0,0,0,45591,0,34776 +135175,0,1,0,-1,-1,0,39806,0,34901 +135176,0,1,0,-1,-1,0,17320,0,34902 +135177,0,1,0,-1,-1,0,26158,0,34903 +135178,0,1,0,-1,-1,0,17493,0,34904 +135179,0,1,0,-1,-1,0,33233,0,34905 +135180,0,1,0,-1,-1,0,18050,0,35031 +135181,0,1,0,-1,-1,0,9333,0,35032 +135182,1,1,0,-1,-1,0,32748,0,35032 +135183,0,1,0,-1,-1,0,15816,0,35033 +135184,1,1,0,-1,-1,0,39927,0,35033 +135185,0,1,0,-1,-1,0,14052,0,35034 +135186,1,1,0,-1,-1,0,39927,0,35034 +135187,0,1,0,-1,-1,0,15808,0,35035 +135188,0,1,0,-1,-1,0,15815,0,35036 +135189,1,1,0,-1,-1,0,39927,0,35036 +135190,0,1,0,-1,-1,0,15811,0,35136 +135191,0,1,0,-1,-1,0,24196,0,35138 +135192,0,1,0,-1,-1,0,17320,0,35139 +135193,1,1,0,-1,-1,0,21366,0,35139 +135194,0,1,0,-1,-1,0,18056,0,35140 +135195,0,0,-1,-1,-1,0,483,0,35215 +135196,1,6,0,-1,-1,0,46135,0,35215 +135197,0,0,-1,-1,-1,0,483,0,35216 +135198,1,6,0,-1,-1,0,46136,0,35216 +135199,0,0,-1,-1,-1,0,483,0,35217 +135200,1,6,0,-1,-1,0,46137,0,35217 +135201,0,0,-1,-1,-1,0,483,0,35218 +135202,1,6,0,-1,-1,0,46138,0,35218 +135203,0,0,-1,-1,-1,0,483,0,35304 +135204,1,6,0,-1,-1,0,31092,0,35304 +135205,0,0,-1,-1,-1,0,483,0,35305 +135206,1,6,0,-1,-1,0,31088,0,35305 +135207,0,0,-1,-1,-1,0,483,0,35306 +135208,1,6,0,-1,-1,0,31089,0,35306 +135209,0,0,-1,-1,-1,0,483,0,35307 +135210,1,6,0,-1,-1,0,31098,0,35307 +135211,0,0,-1,1000,-1,0,46470,0,35398 +135212,0,0,-1,1000,-1,0,46471,0,35399 +135213,0,0,-1,1000,-1,0,46472,0,35400 +135214,0,1,0,-1,-1,0,9406,0,35402 +135215,0,1,0,-1,-1,0,18031,0,35403 +135216,1,1,0,-1,-1,0,23300,0,35403 +135217,0,0,-1,-1,-1,0,483,0,35502 +135218,1,6,0,-1,-1,0,46597,0,35502 +135219,0,0,0,1500,-1,0,46599,0,35504 +135220,0,0,-1,-1,-1,0,483,0,35505 +135221,1,6,0,-1,-1,0,46601,0,35505 +135222,0,1,0,-1,-1,0,15809,0,35507 +135223,0,0,-1,-1,-1,0,483,0,35708 +135224,1,6,0,-1,-1,0,46803,0,35708 +135225,0,0,-1,0,1000,11,46812,0,35710 +135226,0,0,-1,0,0,0,43699,0,35713 +135227,0,0,-1,0,3000,79,46837,0,35716 +135228,0,0,-1,1500,-1,0,48892,0,37585 +135229,0,2,0,-1,-1,0,48956,0,37596 +135230,0,1,0,0,-1,0,14089,0,37597 +135231,0,0,0,0,3000,330,48954,0,37598 +135232,0,0,-1,-1,-1,0,483,0,38328 +135233,1,6,0,-1,-1,0,50647,0,38328 +135234,0,0,-1,0,1000,11,27094,0,38427 +135235,0,0,-1,0,1000,11,35270,0,38428 +135236,0,0,-1,0,1000,59,1137,0,38429 +135237,0,0,-1,0,1000,59,34291,0,38430 +135238,0,0,-1,0,1000,11,44166,0,34780 +135239,0,1,0,-1,-1,0,13881,0,34788 +135240,0,1,0,-1,-1,0,35338,0,34790 +135241,0,1,0,-1,-1,0,18036,0,34791 +135242,0,1,0,-1,-1,0,42107,0,34912 +135243,0,1,0,-1,-1,0,36068,0,34914 +135244,0,1,0,-1,-1,0,15825,0,34916 +135245,0,1,0,-1,-1,0,15808,0,35037 +135246,1,1,0,-1,-1,0,43901,0,35037 +135247,0,1,0,-1,-1,0,15808,0,35038 +135248,1,1,0,-1,-1,0,43901,0,35038 +135249,0,1,0,-1,-1,0,46091,0,35039 +135250,0,1,0,-1,-1,0,46092,0,35040 +135251,0,1,0,-1,-1,0,46095,0,35041 +135252,0,1,0,-1,-1,0,21635,0,35042 +135253,1,1,0,-1,-1,0,39927,0,35042 +135254,0,1,0,-1,-1,0,9333,0,35141 +135255,0,1,0,-1,-1,0,18056,0,35143 +135256,0,1,0,-1,-1,0,33820,0,35144 +135257,0,1,0,-1,-1,0,18045,0,35145 +135258,0,0,-1,-1,-1,0,483,0,35219 +135259,1,6,0,-1,-1,0,46139,0,35219 +135260,0,0,-1,1000,-1,0,46168,0,35223 +135261,0,0,0,0,3000,330,46197,0,35225 +135262,0,0,-1,-1,-1,0,483,0,35308 +135263,1,6,0,-1,-1,0,31434,0,35308 +135264,0,0,-1,-1,-1,0,483,0,35309 +135265,1,6,0,-1,-1,0,31442,0,35309 +135266,0,0,-1,-1,-1,0,483,0,35310 +135267,1,6,0,-1,-1,0,30551,0,35310 +135268,0,0,-1,-1,-1,0,483,0,35311 +135269,1,6,0,-1,-1,0,30552,0,35311 +135270,0,1,0,-1,-1,0,18029,0,35404 +135271,0,1,0,-1,-1,0,15696,0,35405 +135272,0,1,0,-1,-1,0,9408,0,35406 +135273,0,1,0,-1,-1,0,22778,0,35408 +135274,0,1,0,-1,-1,0,14127,0,35508 +135275,0,1,0,-1,-1,0,18034,0,35509 +135276,1,1,0,-1,-1,0,21618,0,35509 +135277,0,0,0,0,3000,330,46628,0,35513 +135278,0,0,-1,0,3000,79,46839,0,35717 +135279,0,0,-1,-1,-1,0,46927,0,35720 +135280,0,0,0,-1,-1,0,46929,0,35721 +135281,0,0,0,-1,-1,0,29820,0,35722 +135282,0,0,-1,1000,-1,0,49007,0,37604 +135283,0,0,0,-1,3000,330,49193,0,37676 +135284,0,0,0,15000,-1,0,49352,0,37710 +135285,0,0,-1,0,1000,59,27089,0,38431 +135286,0,0,-1,0,1000,59,11009,0,38432 +135287,0,0,-1,0,1000,59,50986,0,38466 +135288,0,1,0,-1,-1,0,52172,0,38506 +135289,1,0,0,1500,-1,0,51149,0,38506 +135290,0,0,-1,0,1000,0,50749,0,38518 +135291,0,1,0,-1,-1,0,14047,0,34792 +135292,0,1,0,-1,-1,0,18036,0,34793 +135293,0,1,0,-1,-1,0,15820,0,34794 +135294,1,1,0,-1,-1,0,44756,0,34794 +135295,0,1,0,-1,-1,0,18044,0,34795 +135296,1,1,0,-1,-1,0,20959,0,34795 +135297,0,1,0,-1,-1,0,18044,0,34796 +135298,0,1,0,-1,-1,0,33250,0,34797 +135299,0,1,0,-1,-1,0,33233,0,34917 +135300,0,1,0,-1,-1,0,34760,0,34918 +135301,0,1,0,-1,-1,0,24196,0,34919 +135302,0,1,0,-1,-1,0,39903,0,34921 +135303,0,1,0,-1,-1,0,39903,0,34922 +135304,1,1,0,-1,-1,0,21642,0,34922 +135305,0,1,0,-1,-1,0,18044,0,34923 +135306,0,1,0,-1,-1,0,32973,0,35043 +135307,0,1,0,-1,-1,0,39927,0,35044 +135308,0,1,0,-1,-1,0,39927,0,35045 +135309,0,1,0,-1,-1,0,21630,0,35046 +135310,0,1,0,-1,-1,0,21441,0,35047 +135311,0,1,0,-1,-1,0,18045,0,35147 +135312,0,1,0,-1,-1,0,18056,0,35149 +135313,0,1,0,-1,-1,0,17493,0,35150 +135314,1,1,0,-1,-1,0,21366,0,35150 +135315,0,1,0,-1,-1,0,15811,0,35151 +135316,0,0,0,0,3000,330,46199,0,35226 +135317,0,0,0,30000,-1,0,46203,0,35227 +135318,0,0,-1,20000,20000,1140,46149,0,35230 +135319,0,1,0,-1,-1,0,46273,0,35233 +135320,1,0,0,10000,-1,0,46281,0,35233 +135321,0,1,0,0,0,0,18035,0,35317 +135322,0,1,0,0,0,0,15715,0,35319 +135323,1,1,0,-1,-1,0,23300,0,35413 +135324,0,1,0,-1,-1,0,46632,0,35514 +135325,1,0,0,60000,-1,0,46643,0,35514 +135326,2,1,0,-1,-1,0,21638,0,35514 +135327,0,0,-1,-1,-1,0,483,0,35517 +135328,1,6,0,-1,-1,0,41161,0,35517 +135329,0,0,-1,-1,-1,0,483,0,35518 +135330,1,6,0,-1,-1,0,41205,0,35518 +135331,0,0,-1,-1,-1,0,483,0,35519 +135332,1,6,0,-1,-1,0,41156,0,35519 +135333,0,0,-1,-1,-1,0,35439,0,35728 +135334,0,0,-1,-1,-1,0,35433,0,35729 +135335,0,0,-1,-1,-1,0,35435,0,35730 +135336,0,0,-1,-1,-1,0,35437,0,35731 +135337,0,0,0,0,3000,330,49322,0,37719 +135338,0,1,0,0,0,0,14049,0,34798 +135339,0,1,0,-1,-1,0,15824,0,34799 +135340,0,1,0,-1,-1,0,42098,0,34807 +135341,0,1,0,-1,-1,0,18052,0,34808 +135342,0,1,0,-1,-1,0,25179,0,34924 +135343,0,1,0,-1,-1,0,39806,0,34925 +135344,0,1,0,-1,-1,0,36062,0,34926 +135345,0,1,0,-1,-1,0,42107,0,34927 +135346,0,1,0,-1,-1,0,36068,0,34928 +135347,0,1,0,-1,-1,0,15825,0,34929 +135348,0,1,0,-1,-1,0,21366,0,35048 +135349,1,1,0,-1,-1,0,28360,0,35048 +135350,0,1,0,-1,-1,0,32973,0,35049 +135351,1,1,0,-1,-1,0,17280,0,35049 +135352,0,1,0,-1,-1,0,39569,0,35050 +135353,0,1,0,-1,-1,0,26155,0,35051 +135354,1,1,0,-1,-1,0,21366,0,35051 +135355,0,1,0,-1,-1,0,18378,0,35052 +135356,1,1,0,-1,-1,0,18052,0,35052 +135357,0,1,0,-1,-1,0,44297,0,35053 +135358,1,1,0,-1,-1,0,18046,0,35053 +135359,0,1,0,-1,-1,0,24196,0,35153 +135360,0,1,0,-1,-1,0,17320,0,35154 +135361,1,1,0,-1,-1,0,21366,0,35154 +135362,0,1,0,-1,-1,0,18056,0,35155 +135363,0,1,0,-1,-1,0,9333,0,35156 +135364,0,0,0,-1000,-1,0,46337,0,35237 +135365,0,0,-1,-1,-1,0,483,0,35238 +135366,1,6,0,-1,-1,0,39729,0,35238 +135367,0,0,-1,-1,-1,0,483,0,35239 +135368,1,6,0,-1,-1,0,39731,0,35239 +135369,0,0,-1,-1,-1,0,483,0,35240 +135370,1,6,0,-1,-1,0,39730,0,35240 +135371,0,1,0,-1,-1,0,14054,0,35321 +135372,0,0,-1,-1,-1,0,483,0,35322 +135373,1,6,0,-1,-1,0,46403,0,35322 +135374,0,0,-1,-1,-1,0,483,0,35323 +135375,1,6,0,-1,-1,0,46404,0,35323 +135376,0,1,0,-1,-1,0,18035,0,35324 +135377,0,0,-1,1000,-1,0,46490,0,35417 +135378,0,0,-1,1000,-1,0,46491,0,35418 +135379,0,0,-1,1000,-1,0,46492,0,35419 +135380,0,0,-1,1000,-1,0,46493,0,35420 +135381,0,0,-1,-1,-1,0,483,0,35520 +135382,1,6,0,-1,-1,0,41163,0,35520 +135383,0,0,-1,-1,-1,0,483,0,35521 +135384,1,6,0,-1,-1,0,41164,0,35521 +135385,0,0,-1,-1,-1,0,483,0,35522 +135386,1,6,0,-1,-1,0,41206,0,35522 +135387,0,0,-1,-1,-1,0,483,0,35523 +135388,1,6,0,-1,-1,0,41157,0,35523 +135389,0,1,0,-1,-1,0,18044,0,35733 +135390,0,1,0,-1,-1,0,17619,0,35748 +135391,0,1,0,-1,-1,0,42076,0,35749 +135392,1,1,0,-1,-1,0,17619,0,35749 +135393,0,1,0,-1,-1,0,42077,0,35750 +135394,1,1,0,-1,-1,0,17619,0,35750 +135395,0,1,0,-1,-1,0,33782,0,35751 +135396,1,1,0,-1,-1,0,17619,0,35751 +135397,0,0,-1,60000,-1,0,49357,0,37750 +135398,0,0,-1,60000,-1,0,49357,0,37816 +135399,0,0,0,0,3000,330,49378,0,37827 +135400,0,0,0,0,3000,330,49379,0,37828 +135401,0,0,0,3600000,-1,0,49844,0,37863 +135402,0,0,0,120000,120000,1182,42292,0,37864 +135403,0,0,0,0,3000,330,51412,0,38576 +135404,0,0,-1,1000,-1,0,51510,0,38577 +135405,0,0,0,900000,-1,0,51640,0,38578 +135406,0,1,0,-1,-1,0,51414,0,38579 +135407,0,0,0,900000,-1,0,50317,0,38582 +135408,0,1,0,-1,-1,0,15815,0,34809 +135409,1,1,0,-1,-1,0,40680,0,34809 +135410,0,1,0,-1,-1,0,25179,0,34930 +135411,1,1,0,-1,-1,0,21641,0,34930 +135412,0,1,0,-1,-1,0,39806,0,34931 +135413,1,1,0,-1,-1,0,21640,0,34931 +135414,0,1,0,-1,-1,0,36062,0,34932 +135415,1,1,0,-1,-1,0,21633,0,34932 +135416,0,1,0,-1,-1,0,33233,0,34933 +135417,0,1,0,-1,-1,0,33233,0,34934 +135418,0,1,0,-1,-1,0,36062,0,35054 +135419,0,1,0,-1,-1,0,32584,0,35055 +135420,1,1,0,-1,-1,0,35836,0,35055 +135421,0,1,0,-1,-1,0,18042,0,35056 +135422,0,1,0,-1,-1,0,18044,0,35057 +135423,1,1,0,-1,-1,0,21634,0,35057 +135424,0,1,0,-1,-1,0,15808,0,35058 +135425,1,1,0,-1,-1,0,43901,0,35058 +135426,0,1,0,-1,-1,0,18042,0,35059 +135427,0,1,0,-1,-1,0,18056,0,35158 +135428,0,1,0,-1,-1,0,33820,0,35159 +135429,0,1,0,-1,-1,0,18045,0,35160 +135430,0,1,0,-1,-1,0,18045,0,35162 +135431,0,0,-1,-1,-1,0,483,0,35241 +135432,1,6,0,-1,-1,0,39732,0,35241 +135433,0,0,-1,-1,-1,0,483,0,35242 +135434,1,6,0,-1,-1,0,39728,0,35242 +135435,0,0,-1,-1,-1,0,483,0,35243 +135436,1,6,0,-1,-1,0,39727,0,35243 +135437,0,0,-1,-1,-1,0,483,0,35244 +135438,1,6,0,-1,-1,0,39705,0,35244 +135439,0,0,-1,-1,-1,0,483,0,35325 +135440,1,6,0,-1,-1,0,46405,0,35325 +135441,1,0,0,180000,180000,1190,44055,0,35326 +135442,1,0,0,180000,180000,1190,44055,0,35327 +135443,0,1,0,-1,-1,0,33063,0,35328 +135444,1,1,0,-1,-1,0,18049,0,35328 +135445,0,1,0,-1,-1,0,13881,0,35329 +135446,0,1,0,-1,-1,0,18055,0,35330 +135447,0,0,-1,1000,-1,0,46494,0,35421 +135448,0,0,-1,1000,-1,0,46495,0,35422 +135449,0,0,-1,1000,-1,0,46496,0,35423 +135450,0,0,-1,1000,-1,0,46497,0,35424 +135451,0,0,-1,1000,-1,0,46498,0,35425 +135452,0,0,-1,1000,-1,0,46499,0,35426 +135453,0,0,-1,-1,-1,0,483,0,35524 +135454,1,6,0,-1,-1,0,41162,0,35524 +135455,0,0,-1,-1,-1,0,483,0,35525 +135456,1,6,0,-1,-1,0,41208,0,35525 +135457,0,0,-1,-1,-1,0,483,0,35526 +135458,1,6,0,-1,-1,0,41207,0,35526 +135459,0,0,-1,-1,-1,0,483,0,35527 +135460,1,6,0,-1,-1,0,41158,0,35527 +135461,0,0,-1,-1,-1,0,483,0,35752 +135462,1,6,0,-1,-1,0,47046,0,35752 +135463,0,0,-1,-1,-1,0,483,0,35753 +135464,1,6,0,-1,-1,0,47048,0,35753 +135465,0,0,-1,-1,-1,0,483,0,35754 +135466,1,6,0,-1,-1,0,47049,0,35754 +135467,0,0,-1,-1,-1,0,483,0,35755 +135468,1,6,0,-1,-1,0,47050,0,35755 +135469,0,0,0,120000,120000,1182,42292,0,37865 +135470,0,0,0,-1,-1,0,41920,0,37892 +135471,0,0,0,-1,-1,0,41921,0,37893 +135472,0,0,0,5000,-1,0,41943,0,37894 +135473,0,0,0,5000,-1,0,41946,0,37895 +135474,0,0,-1,1000,1000,1197,51661,0,38626 +135475,0,0,0,1500,-1,0,51716,0,38628 +135476,0,0,-1,3000,0,0,52195,0,39149 +135477,0,0,-1,60000,-1,0,52845,0,39476 +135478,0,0,-1,60000,-1,0,52845,0,39477 +135479,0,0,-1,-1,-1,0,45819,0,34599 +135480,0,1,0,-1,-1,0,18035,0,34602 +135481,0,0,-1,-1,-1,0,45694,0,34832 +135482,0,0,0,5000,-1,0,46747,0,34833 +135483,0,1,0,-1,-1,0,28264,0,34935 +135484,0,1,0,-1,-1,0,34760,0,34936 +135485,0,1,0,-1,-1,0,33233,0,34937 +135486,0,1,0,-1,-1,0,28264,0,34938 +135487,0,1,0,-1,-1,0,34061,0,34939 +135488,0,1,0,-1,-1,0,18047,0,35060 +135489,1,1,0,-1,-1,0,38522,0,35060 +135490,0,1,0,-1,-1,0,33820,0,35061 +135491,0,1,0,-1,-1,0,42089,0,35062 +135492,0,1,0,-1,-1,0,18038,0,35063 +135493,0,1,0,-1,-1,0,42107,0,35064 +135494,0,1,0,-1,-1,0,18056,0,35164 +135495,0,1,0,-1,-1,0,17493,0,35165 +135496,1,1,0,-1,-1,0,21366,0,35165 +135497,0,1,0,-1,-1,0,9336,0,35166 +135498,0,1,0,-1,-1,0,18052,0,35168 +135499,0,0,-1,-1,-1,0,483,0,35245 +135500,1,6,0,-1,-1,0,39712,0,35245 +135501,0,0,-1,-1,-1,0,483,0,35246 +135502,1,6,0,-1,-1,0,39706,0,35246 +135503,0,0,-1,-1,-1,0,483,0,35247 +135504,1,6,0,-1,-1,0,39714,0,35247 +135505,0,0,-1,-1,-1,0,483,0,35248 +135506,1,6,0,-1,-1,0,39711,0,35248 +135507,0,1,0,-1,-1,0,18049,0,35331 +135508,0,1,0,-1,-1,0,13881,0,35332 +135509,0,1,0,-1,-1,0,9318,0,35333 +135510,0,1,0,-1,-1,0,18042,0,35334 +135511,0,1,0,-1,-1,0,23044,0,35335 +135512,1,1,0,-1,-1,0,18033,0,35335 +135513,0,1,0,-1,-1,0,9316,0,35336 +135514,0,0,-1,1000,-1,0,46500,0,35427 +135515,0,0,-1,1000,-1,0,46501,0,35428 +135516,0,0,-1,1000,-1,0,46502,0,35429 +135517,0,0,-1,1000,-1,0,46503,0,35430 +135518,0,0,-1,1000,-1,0,46504,0,35431 +135519,0,0,-1,1000,-1,0,46505,0,35432 +135520,0,0,-1,-1,-1,0,483,0,35528 +135521,1,6,0,-1,-1,0,41160,0,35528 +135522,0,0,-1,-1,-1,0,483,0,35529 +135523,1,6,0,-1,-1,0,41134,0,35529 +135524,0,0,-1,-1,-1,0,483,0,35530 +135525,1,6,0,-1,-1,0,41135,0,35530 +135526,0,0,-1,-1,-1,0,483,0,35531 +135527,1,6,0,-1,-1,0,41132,0,35531 +135528,0,0,-1,-1,-1,0,483,0,35756 +135529,1,6,0,-1,-1,0,47051,0,35756 +135530,0,0,0,5000,-1,0,41945,0,37896 +135531,0,0,0,5000,-1,0,41944,0,37897 +135532,0,0,-1,0,1000,59,42256,0,37898 +135533,0,0,-1,0,1000,59,42255,0,37899 +135534,0,0,-1,0,1000,59,42254,0,37900 +135535,0,0,0,1500,-1,0,53082,0,39656 +135536,0,1,-1,-1,-1,0,9334,0,34603 +135537,0,1,0,-1,-1,0,45309,0,34604 +135538,0,1,0,-1,-1,0,33820,0,34605 +135539,0,1,0,-1,-1,0,14089,0,34606 +135540,0,1,0,-1,-1,0,14055,0,34607 +135541,0,1,0,-1,-1,0,40107,0,34608 +135542,0,0,-1,-1,-1,0,483,0,34834 +135543,1,6,0,-1,-1,0,45695,0,34834 +135544,0,0,-1,-1,-1,0,45697,0,34836 +135545,0,1,0,-1,-1,0,26158,0,34945 +135546,0,1,0,-1,-1,0,18054,0,34946 +135547,0,1,0,0,-1,0,9345,0,35065 +135548,1,1,0,-1,-1,0,42056,0,35065 +135549,0,1,0,-1,-1,0,39927,0,35066 +135550,0,1,0,-1,-1,0,22778,0,35067 +135551,0,1,0,-1,-1,0,39927,0,35068 +135552,0,1,0,-1,-1,0,39927,0,35069 +135553,0,1,0,-1,-1,0,18033,0,35169 +135554,1,1,0,-1,-1,0,18378,0,35169 +135555,0,1,0,-1,-1,0,14798,0,35170 +135556,0,1,0,-1,-1,0,15807,0,35171 +135557,0,1,0,-1,-1,0,14798,0,35173 +135558,0,0,-1,-1,-1,0,483,0,35249 +135559,1,6,0,-1,-1,0,39713,0,35249 +135560,0,0,-1,-1,-1,0,483,0,35250 +135561,1,6,0,-1,-1,0,39710,0,35250 +135562,0,0,-1,-1,-1,0,483,0,35251 +135563,1,6,0,-1,-1,0,39741,0,35251 +135564,0,0,-1,-1,-1,0,483,0,35252 +135565,1,6,0,-1,-1,0,39739,0,35252 +135566,0,1,0,-1,-1,0,18035,0,35337 +135567,0,1,0,-1,-1,0,23044,0,35338 +135568,1,1,0,-1,-1,0,15715,0,35338 +135569,0,1,0,-1,-1,0,9346,0,35339 +135570,0,1,0,-1,-1,0,18053,0,35340 +135571,0,1,0,-1,-1,0,9344,0,35341 +135572,0,1,0,-1,-1,0,14054,0,35342 +135573,0,0,-1,1000,-1,0,46506,0,35433 +135574,0,0,-1,1000,-1,0,46507,0,35434 +135575,0,0,-1,1000,-1,0,46508,0,35435 +135576,0,0,-1,1000,-1,0,46509,0,35436 +135577,0,0,-1,1000,-1,0,46510,0,35437 +135578,0,0,-1,1000,-1,0,46511,0,35438 +135579,0,0,-1,-1,-1,0,483,0,35532 +135580,1,6,0,-1,-1,0,41133,0,35532 +135581,0,0,-1,-1,-1,0,483,0,35533 +135582,1,6,0,-1,-1,0,46126,0,35533 +135583,0,0,-1,-1,-1,0,483,0,35534 +135584,1,6,0,-1,-1,0,46124,0,35534 +135585,0,0,-1,-1,-1,0,483,0,35535 +135586,1,6,0,-1,-1,0,46127,0,35535 +135587,0,0,-1,-1,-1,0,483,0,35536 +135588,1,6,0,-1,-1,0,46122,0,35536 +135589,0,0,-1,-1,-1,0,483,0,35762 +135590,1,6,0,-1,-1,0,47055,0,35762 +135591,0,0,-1,-1,-1,0,483,0,35763 +135592,1,6,0,-1,-1,0,47056,0,35763 +135593,0,0,-1,-1,-1,0,483,0,35764 +135594,1,6,0,-1,-1,0,47054,0,35764 +135595,0,0,-1,-1,-1,0,483,0,35765 +135596,1,6,0,-1,-1,0,47053,0,35765 +135597,0,0,-1,0,1000,59,43961,0,37901 +135598,0,0,-1,0,1000,59,42263,0,37902 +135599,0,0,-1,0,1000,59,42257,0,37903 +135600,0,0,-1,0,1000,59,43959,0,37904 +135601,0,0,-1,0,1000,59,42264,0,37905 +135602,0,1,0,-1,-1,0,15808,0,34609 +135603,1,1,0,-1,-1,0,40680,0,34609 +135604,0,1,0,-1,-1,0,28767,0,34610 +135605,0,1,0,-1,-1,0,42040,0,34611 +135606,0,1,0,-1,-1,0,18036,0,34612 +135607,1,1,0,-1,-1,0,21365,0,34612 +135608,0,1,0,-1,-1,0,15816,0,34613 +135609,0,1,0,-1,-1,0,42063,0,34847 +135610,2,1,0,0,-1,0,30645,0,34847 +135611,3,1,0,0,-1,0,40273,0,34847 +135612,4,0,0,3000,-1,0,12883,0,34847 +135613,0,1,0,-1,-1,0,18049,0,34947 +135614,0,1,0,-1,-1,0,15810,0,34949 +135615,0,1,0,-1,-1,0,15810,0,34950 +135616,0,1,0,-1,-1,0,15810,0,34951 +135617,0,1,0,-1,-1,0,15810,0,34952 +135618,0,1,0,-1,-1,0,15808,0,35071 +135619,1,1,0,-1,-1,0,43901,0,35071 +135620,0,1,0,-1,-1,0,15808,0,35072 +135621,1,1,0,-1,-1,0,43901,0,35072 +135622,0,1,0,-1,-1,0,18045,0,35073 +135623,0,1,0,0,0,0,18045,0,35074 +135624,0,1,0,-1,-1,0,21441,0,35075 +135625,0,1,0,-1,-1,0,15808,0,35076 +135626,1,1,0,-1,-1,0,43901,0,35076 +135627,0,1,0,-1,-1,0,18040,0,35174 +135628,0,1,0,-1,-1,0,18037,0,35175 +135629,0,1,0,-1,-1,0,18037,0,35177 +135630,0,1,0,-1,-1,0,14798,0,35179 +135631,0,0,-1,-1,-1,0,483,0,35253 +135632,1,6,0,-1,-1,0,39742,0,35253 +135633,0,0,-1,-1,-1,0,483,0,35254 +135634,1,6,0,-1,-1,0,39740,0,35254 +135635,0,0,-1,-1,-1,0,483,0,35255 +135636,1,6,0,-1,-1,0,39719,0,35255 +135637,0,0,-1,-1,-1,0,483,0,35256 +135638,1,6,0,-1,-1,0,39722,0,35256 +135639,0,1,0,-1,-1,0,15715,0,35343 +135640,0,1,0,-1,-1,0,14047,0,35344 +135641,0,1,0,-1,-1,0,33066,0,35345 +135642,1,1,0,-1,-1,0,14254,0,35345 +135643,0,1,0,-1,-1,0,14047,0,35346 +135644,0,1,0,-1,-1,0,18050,0,35347 +135645,0,0,-1,1000,-1,0,46512,0,35439 +135646,0,0,-1,1000,-1,0,46513,0,35440 +135647,0,0,-1,1000,-1,0,46514,0,35441 +135648,0,0,-1,1000,-1,0,46515,0,35442 +135649,0,0,-1,1000,-1,0,46516,0,35443 +135650,0,0,-1,1000,-1,0,46517,0,35444 +135651,0,0,-1,-1,-1,0,483,0,35537 +135652,1,6,0,-1,-1,0,46125,0,35537 +135653,0,0,-1,-1,-1,0,483,0,35538 +135654,1,6,0,-1,-1,0,46123,0,35538 +135655,0,0,-1,-1,-1,0,483,0,35539 +135656,1,6,0,-1,-1,0,46138,0,35539 +135657,0,0,-1,-1,-1,0,483,0,35540 +135658,1,6,0,-1,-1,0,46137,0,35540 +135659,0,0,-1,-1,-1,0,483,0,35766 +135660,1,6,0,-1,-1,0,47054,0,35766 +135661,0,0,-1,-1,-1,0,483,0,35767 +135662,1,6,0,-1,-1,0,47055,0,35767 +135663,0,0,-1,-1,-1,0,483,0,35768 +135664,1,6,0,-1,-1,0,47056,0,35768 +135665,0,0,-1,-1,-1,0,483,0,35769 +135666,1,6,0,-1,-1,0,47053,0,35769 +135667,0,1,0,-1,-1,0,17619,0,35770 +135668,0,0,-1,0,1000,59,42259,0,37906 +135669,0,0,-1,0,1000,59,42260,0,37907 +135670,0,0,-1,0,1000,59,42258,0,37908 +135671,0,0,-1,0,1000,59,42261,0,37909 +135672,0,0,-1,-1,-1,0,483,0,37915 +135673,1,6,0,-1,-1,0,49677,0,37915 +135674,0,1,0,-1,-1,0,15830,0,34614 +135675,0,1,0,180000,10000,0,14049,0,34616 +135676,0,1,0,-1,-1,0,9331,0,34622 +135677,0,1,0,-1,-1,0,18034,0,34625 +135678,0,0,0,30000,-1,0,45257,0,34626 +135679,0,0,-1,1500,-1,0,45729,0,34850 +135680,0,0,0,1500,-1,0,45890,0,34955 +135681,0,1,0,0,-1,0,18030,0,34985 +135682,0,1,0,-1,-1,0,18056,0,34986 +135683,0,1,0,-1,-1,0,44751,0,34987 +135684,0,1,0,-1,-1,0,15808,0,34988 +135685,1,1,0,-1,-1,0,43901,0,34988 +135686,0,1,0,-1,-1,0,43902,0,34989 +135687,0,1,0,-1,-1,0,21366,0,35077 +135688,1,1,0,-1,-1,0,23593,0,35077 +135689,0,1,0,-1,-1,0,32973,0,35078 +135690,1,1,0,-1,-1,0,36062,0,35078 +135691,0,1,0,-1,-1,0,39903,0,35079 +135692,0,1,0,-1,-1,0,26690,0,35080 +135693,1,1,0,-1,-1,0,21366,0,35080 +135694,0,1,0,-1,-1,0,21630,0,35081 +135695,1,1,0,-1,-1,0,18040,0,35081 +135696,0,1,0,-1,-1,0,44759,0,35082 +135697,0,1,0,-1,-1,0,14054,0,35180 +135698,1,1,0,-1,-1,0,21630,0,35180 +135699,0,1,0,-1,-1,0,40342,0,35181 +135700,2,1,0,0,-1,0,30645,0,35181 +135701,3,1,0,0,-1,0,40273,0,35181 +135702,4,0,0,3000,-1,0,12883,0,35181 +135703,0,1,0,-1,-1,0,23730,0,35182 +135704,2,1,0,0,-1,0,30645,0,35182 +135705,3,1,0,0,-1,0,40273,0,35182 +135706,4,0,0,3000,-1,0,12883,0,35182 +135707,0,1,0,-1,-1,0,29369,0,35183 +135708,1,1,0,0,-1,0,30645,0,35183 +135709,2,1,0,0,-1,0,40273,0,35183 +135710,3,0,0,3000,-1,0,12883,0,35183 +135711,0,1,0,-1,-1,0,29369,0,35184 +135712,1,1,0,0,-1,0,21642,0,35184 +135713,2,1,0,0,-1,0,30645,0,35184 +135714,3,1,0,0,-1,0,40273,0,35184 +135715,4,0,0,3000,-1,0,12883,0,35184 +135716,0,0,-1,-1,-1,0,483,0,35257 +135717,1,6,0,-1,-1,0,39725,0,35257 +135718,0,0,-1,-1,-1,0,483,0,35258 +135719,1,6,0,-1,-1,0,39724,0,35258 +135720,0,0,-1,-1,-1,0,483,0,35259 +135721,1,6,0,-1,-1,0,39721,0,35259 +135722,0,0,-1,-1,-1,0,483,0,35260 +135723,1,6,0,-1,-1,0,39720,0,35260 +135724,0,0,-1,-1,-1,0,483,0,35261 +135725,1,6,0,-1,-1,0,39723,0,35261 +135726,0,0,0,1500,-1,0,46425,0,35349 +135727,0,0,0,1500,-1,0,46426,0,35350 +135728,0,0,0,-1,3000,330,46428,0,35351 +135729,0,1,0,-1,-1,0,18029,0,35356 +135730,1,1,0,-1,-1,0,33830,0,35356 +135731,0,1,0,-1,-1,0,9317,0,35357 +135732,0,1,0,-1,-1,0,18034,0,35358 +135733,0,0,-1,1000,-1,0,46518,0,35445 +135734,0,0,-1,1000,-1,0,46519,0,35446 +135735,0,0,-1,1000,-1,0,46520,0,35447 +135736,0,0,-1,1000,-1,0,46522,0,35448 +135737,0,0,-1,1000,-1,0,46524,0,35449 +135738,0,0,-1,1000,-1,0,46525,0,35450 +135739,0,0,-1,1000,-1,0,46526,0,35451 +135740,0,0,-1,-1,-1,0,483,0,35541 +135741,1,6,0,-1,-1,0,46133,0,35541 +135742,0,0,-1,-1,-1,0,483,0,35542 +135743,1,6,0,-1,-1,0,46134,0,35542 +135744,0,0,-1,-1,-1,0,483,0,35543 +135745,1,6,0,-1,-1,0,46134,0,35543 +135746,0,0,-1,-1,-1,0,483,0,35544 +135747,1,6,0,-1,-1,0,46129,0,35544 +135748,0,0,-1,-1,-1,0,483,0,35545 +135749,1,6,0,-1,-1,0,46136,0,35545 +135750,0,1,0,-1,-1,0,17619,0,35771 +135751,0,1,0,-1,-1,0,17619,0,35772 +135752,1,0,0,-1,-1,0,42077,0,35772 +135753,0,1,0,-1,-1,0,17619,0,35773 +135754,0,0,0,60000,60000,0,47129,0,35828 +135755,0,0,0,0,3000,330,48027,0,35906 +135756,0,1,0,0,0,0,14127,0,37928 +135757,0,1,0,0,0,0,18037,0,37929 +135758,0,1,0,-1,-1,0,50200,0,37934 +135759,0,0,0,1500,-1,0,49964,0,38050 +135760,0,1,0,-1,-1,0,15811,0,34990 +135761,1,1,0,-1,-1,0,39927,0,34990 +135762,0,1,0,-1,-1,0,9333,0,34991 +135763,1,1,0,-1,-1,0,28539,0,34991 +135764,0,1,0,-1,-1,0,15818,0,34992 +135765,1,1,0,-1,-1,0,39927,0,34992 +135766,0,1,0,-1,-1,0,15819,0,34993 +135767,1,1,0,-1,-1,0,39927,0,34993 +135768,0,1,0,-1,-1,0,15808,0,34994 +135769,0,1,0,-1,-1,0,15808,0,34995 +135770,1,1,0,-1,-1,0,43901,0,34995 +135771,0,1,0,-1,-1,0,44297,0,35083 +135772,1,1,0,-1,-1,0,18057,0,35083 +135773,0,1,0,-1,-1,0,45011,0,35084 +135774,0,1,0,-1,-1,0,46051,0,35085 +135775,0,1,0,-1,-1,0,18054,0,35086 +135776,0,1,0,-1,-1,0,28360,0,35087 +135777,0,1,0,-1,-1,0,40342,0,35185 +135778,1,1,0,0,-1,0,30645,0,35185 +135779,2,1,0,0,-1,0,40273,0,35185 +135780,3,0,0,3000,-1,0,12883,0,35185 +135781,0,0,-1,-1,-1,0,483,0,35186 +135782,1,6,0,-1,-1,0,46111,0,35186 +135783,0,0,-1,-1,-1,0,483,0,35187 +135784,1,6,0,-1,-1,0,46107,0,35187 +135785,0,0,-1,-1,-1,0,483,0,35189 +135786,1,6,0,-1,-1,0,46108,0,35189 +135787,0,0,-1,-1,-1,0,483,0,35262 +135788,1,6,0,-1,-1,0,39717,0,35262 +135789,0,0,-1,-1,-1,0,483,0,35263 +135790,1,6,0,-1,-1,0,39715,0,35263 +135791,0,0,-1,-1,-1,0,483,0,35264 +135792,1,6,0,-1,-1,0,39716,0,35264 +135793,0,0,-1,-1,-1,0,483,0,35265 +135794,1,6,0,-1,-1,0,39718,0,35265 +135795,0,0,-1,-1,-1,0,483,0,35266 +135796,1,6,0,-1,-1,0,39736,0,35266 +135797,0,1,0,-1,-1,0,9406,0,35359 +135798,0,1,0,-1,-1,0,9318,0,35360 +135799,0,1,0,-1,-1,0,18035,0,35361 +135800,1,1,0,-1,-1,0,33830,0,35361 +135801,2,1,0,-1,-1,0,21619,0,35361 +135802,0,1,0,-1,-1,0,17371,0,35362 +135803,1,1,0,-1,-1,0,21626,0,35362 +135804,0,1,0,-1,-1,0,18040,0,35363 +135805,1,1,0,-1,-1,0,21629,0,35363 +135806,0,1,0,-1,-1,0,9315,0,35364 +135807,1,1,0,-1,-1,0,21624,0,35364 +135808,0,0,-1,1000,-1,0,46527,0,35452 +135809,0,0,-1,1000,-1,0,46529,0,35453 +135810,0,0,-1,1000,-1,0,46531,0,35454 +135811,0,0,-1,1000,-1,0,46532,0,35455 +135812,0,0,-1,1000,-1,0,46533,0,35456 +135813,0,0,-1,1000,-1,0,46535,0,35457 +135814,0,0,-1,-1,-1,0,483,0,35546 +135815,1,6,0,-1,-1,0,46132,0,35546 +135816,0,0,-1,-1,-1,0,483,0,35547 +135817,1,6,0,-1,-1,0,46132,0,35547 +135818,0,0,-1,-1,-1,0,483,0,35548 +135819,1,6,0,-1,-1,0,46131,0,35548 +135820,0,0,-1,-1,-1,0,483,0,35549 +135821,1,6,0,-1,-1,0,46139,0,35549 +135822,0,0,-1,-1,-1,0,483,0,35550 +135823,1,6,0,-1,-1,0,46135,0,35550 +135824,0,1,0,-1,-1,0,15809,0,36737 +135825,1,1,0,-1,-1,0,47041,0,36737 +135826,0,0,0,-1,-1,0,47371,0,36748 +135827,1,5,0,-1,-1,0,47331,0,36748 +135828,0,1,0,-1,-1,0,50009,0,38089 +136389,0,0,0,0,3000,330,348459,0,184865 +136398,1,6,0,-1,-1,0,2137,0,3094 +136399,1,6,0,-1,-1,0,2138,0,3095 +136400,1,6,0,-1,-1,0,5573,0,1136 +136401,1,6,0,-1,-1,0,498,0,1138 +136402,1,6,0,0,0,0,3599,0,1029 +136403,1,6,0,0,0,0,370,0,1049 +136404,1,6,0,0,0,0,344,0,1030 +136405,1,6,0,0,0,0,315,0,1031 +136406,1,6,0,0,0,0,5730,0,1032 +136407,1,6,0,0,0,0,365,0,1034 +136408,1,6,0,0,0,0,2011,0,1603 +136409,1,6,0,-1,-1,0,695,0,1231 +136410,1,6,0,-1,-1,0,696,0,1232 +136411,1,6,0,-1,-1,0,5782,0,1238 +136412,1,6,0,-1,-1,0,89,0,1681 +136413,1,6,0,-1,-1,0,2060,0,3118 +136414,1,6,0,-1,-1,0,3862,0,4355 +136415,1,6,0,0,0,0,915,0,3129 +136416,1,6,0,-1,-1,0,2156,0,2404 +136417,1,6,0,-1,-1,0,6075,0,1108 +136418,1,6,0,-1,-1,0,5144,0,1559 +136419,1,6,0,-1,-1,0,970,0,1641 +136420,1,6,0,-1,-1,0,5138,0,1239 +136421,1,6,0,-1,-1,0,705,0,1243 +136422,1,6,0,-1,-1,0,707,0,1245 +136423,1,6,0,-1,-1,0,5697,0,1246 +136424,1,6,0,-1,-1,0,132,0,1250 +136425,1,6,0,-1,-1,0,837,0,1554 +136426,1,6,0,-1,-1,0,1090,0,1676 +136427,1,6,0,-1,-1,0,172,0,4211 +136428,1,6,0,0,0,0,556,0,4170 +136429,1,6,0,-1,-1,0,3513,0,3874 +136430,1,6,0,-1,-1,0,2403,0,2601 +136431,1,6,0,-1,-1,0,605,0,1109 +136432,1,6,0,-1,-1,0,700,0,1111 +136433,1,6,0,-1,-1,0,588,0,1086 +136434,1,6,0,-1,-1,0,639,0,1141 +136435,1,6,0,-1,-1,0,6064,0,1648 +136436,1,6,0,-1,-1,0,765,0,1568 +136437,1,6,0,-1,-1,0,990,0,1655 +136438,1,6,0,-1,-1,0,2010,0,1657 +136439,1,6,0,-1,-1,0,116,0,3090 +136440,1,6,0,-1,-1,0,3172,0,3393 +136441,1,6,0,-1,-1,0,3174,0,3394 +136442,1,6,0,-1,-1,0,642,0,1144 +136443,1,6,0,-1,-1,0,7328,0,1146 +136444,1,6,0,-1,-1,0,645,0,1149 +136445,1,6,0,-1,-1,0,1152,0,1150 +136446,1,6,0,-1,-1,0,475,0,976 +136447,1,6,0,-1,-1,0,491,0,985 +136448,1,6,0,0,0,0,2617,0,1619 +136449,1,6,0,-1,-1,0,1456,0,3146 +136450,1,6,0,-1,-1,0,6146,0,3092 +136451,1,6,0,0,0,0,544,0,1052 +136452,1,6,0,0,0,0,2008,0,1035 +136453,1,6,0,0,0,0,529,0,1037 +136454,0,1,0,-1,-1,0,9394,0,1929 +136455,1,6,0,0,0,0,2616,0,1597 +136456,1,6,0,-1,-1,0,1430,0,1877 +136457,1,6,0,-1,-1,0,2121,0,3093 +136458,1,6,0,0,0,0,6378,0,4183 +136459,1,6,0,0,0,0,966,0,4185 +136460,1,6,0,0,0,0,913,0,3130 +136461,1,6,0,-1,-1,0,2543,0,728 +136462,1,6,0,-1,-1,0,589,0,1087 +136463,1,6,0,-1,-1,0,6074,0,1088 +136464,0,1,0,-1,-1,0,21625,0,2043 +136465,1,6,0,-1,-1,0,693,0,1229 +136466,1,6,0,-1,-1,0,1026,0,1534 +136467,1,6,0,-1,-1,0,28609,0,967 +136468,1,6,0,-1,-1,0,2136,0,968 +136469,1,6,0,-1,-1,0,7300,0,974 +136470,1,6,0,-1,-1,0,3336,0,3612 +136471,1,6,0,-1,-1,0,2389,0,2598 +136472,1,6,0,-1,-1,0,6230,0,4216 +136473,1,6,0,-1,-1,0,2545,0,2698 +136474,1,6,0,-1,-1,0,5500,0,1224 +136475,1,6,0,-1,-1,0,6207,0,1228 +136476,1,6,0,-1,-1,0,2158,0,2406 +136477,1,6,0,-1,-1,0,2163,0,2407 +136478,1,6,0,-1,-1,0,2164,0,2408 +136479,1,6,0,-1,-1,0,2169,0,2409 +136480,0,1,0,-1,-1,0,9392,0,3308 +136481,1,6,0,0,0,0,2608,0,3127 +136482,0,1,0,-1,-1,0,9394,0,1304 +136483,1,6,0,-1,-1,0,591,0,1091 +136484,1,6,0,-1,-1,0,2052,0,1092 +136485,1,6,0,-1,-1,0,113,0,975 +136486,1,6,0,0,0,0,545,0,1053 +136487,1,6,0,0,0,0,939,0,4179 +136488,1,6,0,-1,-1,0,1086,0,3139 +136489,1,6,0,-1,-1,0,3700,0,4217 +136490,1,6,0,0,0,0,6391,0,4171 +136491,1,6,0,0,0,0,547,0,1057 +136492,1,6,0,0,0,0,550,0,1061 +136493,1,6,0,-1,-1,0,1058,0,1334 +136494,1,6,0,-1,-1,0,145,0,992 +136495,1,6,0,-1,-1,0,1244,0,1112 +136496,1,6,0,-1,-1,0,130,0,3096 +136497,1,6,0,-1,-1,0,648,0,1536 +136498,1,6,0,-1,-1,0,3230,0,2553 +136499,1,6,0,-1,-1,0,6078,0,1105 +136500,1,6,0,0,0,0,332,0,1038 +136501,1,6,0,-1,-1,0,7302,0,994 +136502,1,6,0,-1,-1,0,512,0,1004 +136503,1,6,0,-1,-1,0,865,0,1571 +136504,1,6,0,0,0,0,901,0,1589 +136506,1,6,0,-1,-1,0,139,0,1084 +136507,1,6,0,-1,-1,0,2096,0,1085 +136508,1,6,0,-1,-1,0,528,0,1089 +136509,1,6,0,-1,-1,0,5704,0,3114 +136510,1,6,0,-1,-1,0,6065,0,3119 +136511,1,6,0,-1,-1,0,984,0,3120 +136512,1,6,0,-1,-1,0,1706,0,3121 +136513,1,6,0,0,0,0,923,0,3132 +136514,1,6,0,-1,-1,0,6077,0,1101 +136515,1,6,0,-1,-1,0,114,0,966 +136518,1,6,0,-1,-1,0,6066,0,1651 +136519,0,1,0,-1,-1,0,9416,0,2954 +136520,1,6,0,-1,-1,0,5505,0,3097 +136521,1,6,0,-1,-1,0,2667,0,2881 +136522,1,6,0,-1,-1,0,205,0,986 +136523,1,6,0,-1,-1,0,122,0,989 +136524,1,6,0,-1,-1,0,2782,0,1093 +136525,1,6,0,-1,-1,0,527,0,1095 +136526,1,6,0,-1,-1,0,594,0,1096 +136527,1,6,0,-1,-1,0,597,0,1099 +136528,1,6,0,-1,-1,0,598,0,1100 +136529,1,6,0,-1,-1,0,339,0,1339 +136530,1,6,0,-1,-1,0,8921,0,1341 +136531,1,6,0,-1,-1,0,992,0,1658 +136532,0,1,0,-1,-1,0,9415,0,1659 +136533,1,6,0,-1,-1,0,770,0,1328 +136534,1,6,0,-1,-1,0,246,0,3098 +136535,1,6,0,-1,-1,0,3507,0,3872 +136536,1,6,0,-1,-1,0,3511,0,3873 +136537,1,6,0,0,0,0,905,0,1591 +136538,1,6,0,0,0,0,325,0,1048 +136539,1,6,0,-1,-1,0,857,0,1567 +136540,1,6,0,-1,-1,0,8924,0,1886 +136541,1,6,0,-1,-1,0,3497,0,3868 +136542,1,6,0,-1,-1,0,1245,0,3123 +136543,1,6,0,-1,-1,0,1006,0,3124 +136544,1,6,0,0,0,0,6363,0,3125 +136545,1,6,0,0,0,0,2606,0,3126 +136546,1,6,0,-1,-1,0,3370,0,3678 +136547,1,6,0,-1,-1,0,3371,0,3679 +136548,0,1,0,-1,-1,0,9415,0,4042 +136549,1,6,0,-1,-1,0,5195,0,4225 +136550,1,6,0,0,0,0,421,0,4189 +136551,1,6,0,-1,-1,0,2333,0,3396 +136552,1,6,0,-1,-1,0,3398,0,3735 +136553,1,6,0,-1,-1,0,3399,0,3736 +136554,1,6,0,-1,-1,0,3400,0,3737 +136555,1,6,0,-1,-1,0,6780,0,4226 +136556,1,6,0,-1,-1,0,3858,0,4351 +136557,1,6,0,-1,-1,0,3863,0,4353 +136558,0,1,0,-1,-1,0,9393,0,3764 +136559,0,1,0,-1,-1,0,9393,0,3229 +136560,1,6,0,-1,-1,0,3849,0,4347 +136561,1,6,0,-1,-1,0,2334,0,2554 +136562,1,6,0,-1,-1,0,1042,0,4164 +136563,1,6,0,-1,-1,0,5244,0,5083 +136564,1,6,0,0,0,0,6390,0,5702 +136565,0,1,0,-1,-1,0,9397,0,5195 +136566,1,6,0,-1,-1,0,3747,0,4280 +136567,1,6,0,-1,-1,0,976,0,4281 +136568,1,6,0,0,0,0,131,0,5704 +136569,1,6,0,0,0,0,6377,0,5705 +136570,1,6,0,0,0,0,6364,0,5706 +136571,1,6,0,-1,-1,0,6208,0,3140 +136572,1,6,0,-1,-1,0,3297,0,3608 +136575,0,1,0,-1,-1,0,9393,0,2583 +136576,1,6,0,-1,-1,0,5229,0,5161 +136577,1,6,0,-1,-1,0,6756,0,5163 +136578,1,6,0,-1,-1,0,6076,0,3115 +136579,1,6,0,-1,-1,0,4508,0,4597 +136580,1,6,0,-1,-1,0,5645,0,5679 +136581,1,6,0,-1,-1,0,3870,0,6401 +136582,1,6,0,-1,-1,0,6377,0,3112 +136583,1,6,0,-1,-1,0,17,0,3113 +136584,1,6,0,-1,-1,0,3944,0,4411 +136586,1,6,0,-1,-1,0,1036,0,4163 +136587,1,6,0,-1,-1,0,3847,0,4345 +136588,1,6,0,-1,-1,0,6205,0,4212 +136589,1,6,0,0,0,0,5391,0,4180 +136590,0,1,0,0,-1,0,9416,0,4743 +136591,1,6,0,0,0,0,6196,0,5707 +136592,0,1,0,-1,-1,0,9395,0,6191 +136593,1,6,0,-1,-1,0,6219,0,5728 +136594,1,6,0,-1,-1,0,6213,0,4202 +136595,1,6,0,-1,-1,0,592,0,3116 +136596,1,6,0,-1,-1,0,3868,0,4348 +136597,1,6,0,-1,-1,0,3325,0,3610 +136598,1,6,0,-1,-1,0,3372,0,3680 +136599,1,6,0,-1,-1,0,3373,0,3681 +136600,1,6,0,-1,-1,0,2335,0,2555 +136601,1,6,0,0,0,0,909,0,4182 +136602,1,6,0,-1,-1,0,2671,0,5577 +136603,1,6,0,0,0,0,324,0,5698 +136604,1,6,0,0,0,0,2645,0,5699 +136605,1,6,0,0,0,0,6375,0,5700 +136606,1,6,0,0,0,0,6495,0,5701 +136607,1,6,0,-1,-1,0,689,0,3141 +136608,1,6,0,-1,-1,0,1455,0,3144 +136609,0,1,0,-1,-1,0,9416,0,2234 +136610,1,6,0,0,0,0,549,0,4176 +136611,1,6,0,0,0,0,530,0,4177 +136612,1,6,0,0,0,0,943,0,4178 +136613,0,1,0,-1,-1,0,9345,0,4134 +136614,1,6,0,-1,-1,0,587,0,4141 +136615,1,6,0,-1,-1,0,28272,0,4142 +136616,1,6,0,-1,-1,0,597,0,4143 +136617,1,6,0,-1,-1,0,3779,0,4301 +136618,1,6,0,-1,-1,0,755,0,4198 +136619,1,6,0,-1,-1,0,3698,0,4199 +136620,1,6,0,-1,-1,0,3856,0,4350 +136621,1,6,0,-1,-1,0,6129,0,4152 +136622,1,6,0,-1,-1,0,5145,0,4153 +136623,1,6,0,-1,-1,0,5740,0,4215 +136624,1,6,0,-1,-1,0,3758,0,4292 +136625,1,6,0,-1,-1,0,2673,0,5578 +136626,1,6,0,-1,-1,0,3377,0,3683 +136627,1,6,0,0,0,0,6343,0,5703 +136628,1,6,0,-1,-1,0,2547,0,2699 +136629,1,6,0,-1,-1,0,5169,0,5126 +136630,1,6,0,-1,-1,0,5264,0,5127 +136631,1,6,0,-1,-1,0,990,0,4147 +136632,1,6,0,-1,-1,0,3376,0,3682 +136633,1,6,0,-1,-1,0,8926,0,4228 +136634,1,6,0,-1,-1,0,3627,0,4229 +136635,1,6,0,-1,-1,0,6705,0,5789 +136636,1,6,0,-1,-1,0,7755,0,6330 +136637,1,6,0,-1,-1,0,5699,0,4218 +136638,1,6,0,-1,-1,0,3140,0,4161 +136639,1,6,0,-1,-1,0,6139,0,4162 +136640,1,6,0,-1,-1,0,1088,0,3138 +136641,1,6,0,-1,-1,0,3972,0,4417 +136642,1,6,0,0,0,0,6392,0,4181 +136643,1,6,0,-1,-1,0,2336,0,2556 +136644,1,6,0,-1,-1,0,7325,0,6132 +136645,1,6,0,-1,-1,0,6702,0,5786 +136646,1,6,0,-1,-1,0,5592,0,5685 +136647,1,6,0,0,0,0,546,0,5709 +136648,1,6,0,0,0,0,6376,0,5710 +136649,1,6,0,0,0,0,1945,0,5708 +136650,1,6,0,-1,-1,0,2090,0,3088 +136651,1,6,0,-1,-1,0,6209,0,4220 +136652,1,6,0,-1,-1,0,2970,0,4221 +136653,1,6,0,-1,-1,0,5177,0,5142 +136654,1,6,0,-1,-1,0,593,0,4267 +136655,0,1,0,-1,-1,0,9394,0,4767 +136656,1,6,0,-1,-1,0,1034,0,5666 +136657,1,6,0,-1,-1,0,94,0,5667 +136658,1,6,0,-1,-1,0,2157,0,2405 +136659,1,6,0,-1,-1,0,5234,0,5153 +136660,1,6,0,-1,-1,0,3872,0,4354 +136661,1,6,0,-1,-1,0,6146,0,4154 +136662,1,6,0,-1,-1,0,6148,0,4155 +136663,1,6,0,-1,-1,0,1152,0,4156 +136664,1,6,0,0,0,0,6058,0,5715 +136665,1,6,0,0,0,0,5675,0,3133 +136666,1,6,0,-1,-1,0,702,0,3134 +136667,1,6,0,-1,-1,0,3295,0,2883 +136668,1,6,0,-1,-1,0,8936,0,5141 +136669,1,6,0,-1,-1,0,5268,0,5129 +136670,1,6,0,-1,-1,0,4942,0,4624 +136671,1,6,0,-1,-1,0,4094,0,4609 +136672,1,6,0,-1,-1,0,1014,0,4206 +136673,0,1,0,-1,-1,0,9140,0,2167 +136674,1,6,0,-1,-1,0,7320,0,3099 +136675,1,6,0,-1,-1,0,6141,0,3100 +136676,1,6,0,-1,-1,0,988,0,4282 +136677,1,6,0,-1,-1,0,2937,0,4283 +136678,1,6,0,-1,-1,0,3472,0,4165 +136679,1,6,0,-1,-1,0,1022,0,4166 +136680,1,6,0,-1,-1,0,2812,0,4167 +136681,1,6,0,0,0,0,2484,0,4168 +136682,1,6,0,0,0,0,554,0,4169 +136683,1,6,0,-1,-1,0,3968,0,4416 +136684,1,6,0,-1,-1,0,604,0,4157 +136685,1,6,0,-1,-1,0,3175,0,3395 +136686,1,6,0,-1,-1,0,3762,0,4293 +136687,0,1,0,-1,-1,0,9397,0,5970 +136688,1,6,0,-1,-1,0,7149,0,5973 +136689,1,6,0,-1,-1,0,1941,0,5727 +136690,1,6,0,-1,-1,0,7754,0,6329 +136691,1,6,0,-1,-1,0,7752,0,6326 +136692,1,6,0,-1,-1,0,2120,0,3089 +136693,1,6,0,-1,-1,0,3334,0,3611 +136694,1,6,0,-1,-1,0,3330,0,2882 +136695,1,6,0,-1,-1,0,8936,0,4222 +136696,1,6,0,-1,-1,0,776,0,4223 +136697,1,6,0,-1,-1,0,2055,0,4268 +136698,1,6,0,-1,-1,0,6392,0,4158 +136699,1,6,0,-1,-1,0,3954,0,4412 +136700,1,6,0,-1,-1,0,3959,0,4413 +136701,1,6,0,-1,-1,0,3960,0,4414 +136702,1,6,0,-1,-1,0,3767,0,4294 +136703,1,6,0,-1,-1,0,7153,0,4295 +136704,1,6,0,-1,-1,0,3321,0,3609 +136705,1,6,0,-1,-1,0,3450,0,3830 +136706,0,1,0,-1,-1,0,9394,0,3309 +136707,1,6,0,-1,-1,0,6202,0,4210 +136708,1,6,0,0,0,0,5388,0,5711 +136709,1,6,0,-1,-1,0,3188,0,6211 +136710,1,6,0,-1,-1,0,3500,0,3869 +136711,1,6,0,-1,-1,0,3504,0,3870 +136712,1,6,0,-1,-1,0,3769,0,4296 +136713,1,6,0,-1,-1,0,3775,0,4298 +136714,0,1,0,-1,-1,0,9396,0,3752 +136715,1,6,0,-1,-1,0,6414,0,5484 +136716,1,6,0,0,0,0,2609,0,4173 +136717,1,6,0,-1,-1,0,699,0,5719 +136718,1,6,0,-1,-1,0,6215,0,5729 +136719,1,6,0,-1,-1,0,774,0,5730 +136720,0,1,0,-1,-1,0,9417,0,2280 +136721,1,6,0,-1,-1,0,3505,0,3871 +136722,1,6,0,-1,-1,0,6415,0,5485 +136723,1,6,0,-1,-1,0,3933,0,4409 +136724,1,6,0,-1,-1,0,603,0,4207 +136725,1,6,0,-1,-1,0,1707,0,4208 +136726,1,6,0,-1,-1,0,6229,0,4209 +136727,1,6,0,-1,-1,0,1094,0,4200 +136728,1,6,0,-1,-1,0,126,0,4201 +136729,1,6,0,-1,-1,0,1714,0,5724 +136730,1,6,0,-1,-1,0,6223,0,5725 +136731,1,6,0,-1,-1,0,5701,0,5726 +136732,1,6,0,-1,-1,0,6617,0,5640 +136733,1,6,0,-1,-1,0,3493,0,3866 +136734,1,6,0,-1,-1,0,1460,0,3091 +136735,1,6,0,0,0,0,5734,0,4188 +136736,1,6,0,-1,-1,0,3940,0,4410 +136738,1,6,0,0,0,0,6344,0,4172 +136739,1,6,0,-1,-1,0,18540,0,4213 +136740,1,6,0,-1,-1,0,6501,0,5528 +136741,1,6,0,-1,-1,0,6739,0,5670 +136742,1,6,0,-1,-1,0,6739,0,5671 +136743,1,6,0,-1,-1,0,6619,0,5641 +136744,1,6,0,-1,-1,0,1020,0,5683 +136745,1,6,0,-1,-1,0,1108,0,5720 +136746,1,6,0,-1,-1,0,28270,0,4144 +136747,1,6,0,-1,-1,0,759,0,4145 +136748,1,6,0,-1,-1,0,6413,0,5483 +136749,1,6,0,-1,-1,0,6135,0,4149 +136750,1,6,0,-1,-1,0,6127,0,4150 +136751,0,1,0,-1,-1,0,9396,0,6631 +136752,1,6,0,-1,-1,0,6688,0,5772 +136753,1,6,0,-1,-1,0,6692,0,5773 +136754,1,6,0,-1,-1,0,7213,0,6039 +136755,0,1,0,-1,-1,0,9397,0,6801 +136756,0,1,0,0,-1,0,9331,0,6723 +136757,1,6,0,-1,-1,0,8780,0,7092 +136758,1,6,0,-1,-1,0,8778,0,7093 +136759,1,6,0,-1,-1,0,7255,0,6053 +136760,1,6,0,-1,-1,0,7256,0,6054 +136761,1,6,0,-1,-1,0,10554,0,8399 +136762,1,6,0,0,0,0,131,0,9058 +136763,1,6,0,-1,-1,0,1069,0,8779 +136764,1,6,0,-1,-1,0,3140,0,8835 +136765,1,6,0,-1,-1,0,1460,0,8802 +136766,1,6,0,-1,-1,0,996,0,9019 +136767,1,6,0,-1,-1,0,10544,0,8404 +136768,1,6,0,-1,-1,0,5178,0,5149 +136769,1,6,0,-1,-1,0,5187,0,5150 +136770,1,6,0,-1,-1,0,7893,0,6391 +136771,0,1,0,-1,-1,0,9343,0,7691 +136772,1,6,0,-1,-1,0,5177,0,8744 +136773,1,6,0,-1,-1,0,5186,0,8745 +136774,1,6,0,-1,-1,0,9818,0,7981 +136775,1,6,0,-1,-1,0,5143,0,8837 +136776,1,6,0,-1,-1,0,5179,0,8788 +136777,0,1,0,-1,-1,0,9395,0,6263 +136778,1,6,0,-1,-1,0,604,0,8805 +136779,1,6,0,-1,-1,0,475,0,8806 +136780,1,6,0,-1,-1,0,10,0,8808 +136781,1,6,0,-1,-1,0,10564,0,8400 +136782,1,6,0,-1,-1,0,6695,0,5775 +136783,1,6,0,-1,-1,0,10490,0,8384 +136784,1,6,0,-1,-1,0,9957,0,7994 +136785,1,6,0,-1,-1,0,9269,0,7560 +136786,1,6,0,-1,-1,0,9995,0,7992 +136787,1,6,0,-1,-1,0,1088,0,9212 +136788,1,6,0,-1,-1,0,1088,0,9213 +136789,1,6,0,0,0,0,1075,0,5154 +136790,1,6,0,-1,-1,0,5265,0,5131 +136791,1,6,0,-1,-1,0,5266,0,5132 +136792,1,6,0,-1,-1,0,5188,0,5152 +136793,1,6,0,-1,-1,0,2139,0,4148 +136794,0,1,0,-1,-1,0,9393,0,6392 +136795,1,6,0,-1,-1,0,972,0,4272 +136796,1,6,0,-1,-1,0,2054,0,4273 +136797,1,6,0,-1,-1,0,9945,0,7983 +136798,1,6,0,-1,-1,0,2090,0,8797 +136799,1,6,0,-1,-1,0,7639,0,6274 +136800,1,6,0,-1,-1,0,697,0,6544 +136801,1,6,0,-1,-1,0,10525,0,8395 +136802,0,1,0,-1,-1,0,9395,0,6341 +136803,1,6,0,-1,-1,0,5234,0,8799 +136804,1,6,0,-1,-1,0,5601,0,5661 +136805,1,6,0,-1,-1,0,5602,0,5662 +136806,1,6,0,0,0,0,548,0,9054 +136807,1,6,0,0,0,0,905,0,9185 +136808,1,6,0,-1,-1,0,2970,0,9230 +136809,1,6,0,0,0,0,6346,0,5713 +136810,1,6,0,-1,-1,0,1038,0,5684 +136811,1,6,0,-1,-1,0,2362,0,5721 +136812,1,6,0,-1,-1,0,6226,0,5722 +136813,1,6,0,0,0,0,782,0,5148 +136814,1,6,0,-1,-1,0,6686,0,5771 +136815,0,1,0,-1,-1,0,9394,0,6791 +136816,1,6,0,-1,-1,0,6141,0,8872 +136817,0,1,0,-1,-1,0,9393,0,6482 +136818,1,6,0,-1,-1,0,9937,0,7995 +136819,1,6,0,0,0,0,3599,0,9059 +136820,1,6,0,-1,-1,0,1006,0,8998 +136821,1,6,0,-1,-1,0,6223,0,9216 +136822,1,6,0,-1,-1,0,709,0,9217 +136823,1,6,0,-1,-1,0,6412,0,5482 +136824,1,6,0,-1,-1,0,7955,0,6476 +136825,1,6,0,0,0,0,5730,0,9043 +136826,1,6,0,-1,-1,0,5602,0,8930 +136827,1,6,0,-1,-1,0,5615,0,8939 +136828,1,6,0,-1,-1,0,6222,0,9201 +136829,1,6,0,-1,-1,0,693,0,9202 +136830,0,1,0,-1,-1,0,9343,0,6688 +136831,1,6,0,-1,-1,0,1006,0,8999 +136832,1,6,0,-1,-1,0,1006,0,9000 +136833,1,6,0,-1,-1,0,2060,0,9002 +136834,1,6,0,-1,-1,0,5599,0,8918 +136835,0,1,0,0,-1,0,7679,0,9641 +136836,1,6,0,-1,-1,0,6064,0,8979 +136837,1,6,0,-1,-1,0,6064,0,8980 +136838,1,6,0,0,0,0,945,0,9141 +136839,1,6,0,-1,-1,0,5782,0,9195 +136840,1,6,0,-1,-1,0,5782,0,9196 +136841,0,1,0,-1,-1,0,9394,0,4476 +136842,1,6,0,-1,-1,0,5196,0,5159 +136843,1,6,0,-1,-1,0,5189,0,5160 +136844,0,1,0,-1,-1,0,9398,0,6908 +136845,1,6,0,-1,-1,0,7633,0,6272 +136846,1,6,0,-1,-1,0,7636,0,6273 +136847,0,1,0,-1,-1,0,9395,0,6428 +136848,1,6,0,-1,-1,0,6651,0,5657 +136849,1,6,0,-1,-1,0,6780,0,8793 +136850,1,6,0,-1,-1,0,6778,0,8794 +136851,1,6,0,-1,-1,0,9853,0,8795 +136852,1,6,0,-1,-1,0,1086,0,9223 +136853,1,6,0,-1,-1,0,695,0,9193 +136854,1,6,0,-1,-1,0,6074,0,8960 +136855,1,6,0,-1,-1,0,6074,0,8961 +136856,1,6,0,-1,-1,0,552,0,4287 +136857,1,6,0,-1,-1,0,2783,0,4288 +136858,1,6,0,-1,-1,0,5186,0,5145 +136859,1,6,0,-1,-1,0,604,0,5146 +136860,1,6,0,-1,-1,0,1004,0,4271 +136861,1,6,0,0,0,0,2607,0,5696 +136862,1,6,0,-1,-1,0,7322,0,8884 +136863,1,6,0,-1,-1,0,10520,0,8386 +136864,1,6,0,-1,-1,0,6141,0,8895 +136865,0,1,0,-1,-1,0,9395,0,5310 +136866,1,6,0,-1,-1,0,604,0,8882 +136867,1,6,0,-1,-1,0,2138,0,8878 +136868,1,6,0,-1,-1,0,6618,0,5643 +136869,1,6,0,-1,-1,0,5504,0,5644 +136870,1,6,0,-1,-1,0,8604,0,6891 +136871,1,6,0,-1,-1,0,6129,0,8871 +136872,1,6,0,-1,-1,0,7443,0,6342 +136873,1,6,0,-1,-1,0,7451,0,6343 +136874,1,6,0,-1,-1,0,6624,0,5642 +136875,1,6,0,-1,-1,0,606,0,8962 +136876,1,6,0,-1,-1,0,2060,0,9003 +136877,1,6,0,-1,-1,0,2060,0,9014 +136878,1,6,0,-1,-1,0,1062,0,5147 +136879,1,6,0,-1,-1,0,712,0,6623 +136880,1,6,0,-1,-1,0,11468,0,9297 +136881,1,6,0,-1,-1,0,879,0,5672 +136882,1,6,0,-1,-1,0,5502,0,5676 +136883,1,6,0,-1,-1,0,7221,0,6044 +136884,1,6,0,-1,-1,0,7451,0,6222 +136885,1,6,0,-1,-1,0,7776,0,6346 +136886,1,6,0,-1,-1,0,636,0,5658 +136887,1,6,0,-1,-1,0,1052,0,5660 +136888,1,6,0,-1,-1,0,700,0,8809 +136889,1,6,0,-1,-1,0,28609,0,8811 +136890,1,6,0,-1,-1,0,9997,0,8029 +136891,1,6,0,-1,-1,0,1244,0,8954 +136892,0,1,0,-1,-1,0,9395,0,10700 +136893,1,6,0,0,0,0,945,0,9139 +136894,1,6,0,0,0,0,945,0,9140 +136895,1,6,0,0,0,0,945,0,9142 +136896,1,6,0,0,0,0,467,0,5139 +136897,0,1,0,-1,-1,0,9394,0,4321 +136898,1,6,0,-1,-1,0,709,0,9218 +136899,1,6,0,-1,-1,0,7643,0,6275 +136900,1,6,0,-1,-1,0,8322,0,6710 +136901,1,6,0,-1,-1,0,8926,0,8796 +136902,0,1,0,-1,-1,0,9396,0,6405 +136903,1,6,0,-1,-1,0,3140,0,8814 +136904,1,6,0,0,0,0,899,0,9062 +136905,1,6,0,0,0,0,945,0,9166 +136906,1,6,0,-1,-1,0,7892,0,6390 +136907,0,1,0,-1,-1,0,9416,0,5016 +136908,1,6,0,-1,-1,0,6419,0,5489 +136909,1,6,0,-1,-1,0,740,0,8801 +136910,1,6,0,-1,-1,0,9852,0,8773 +136911,1,6,0,-1,-1,0,9813,0,7979 +136912,1,6,0,-1,-1,0,9814,0,7980 +136913,1,6,0,-1,-1,0,7443,0,6221 +136914,0,1,0,-1,-1,0,9394,0,6282 +136915,1,6,0,0,0,0,2484,0,9041 +136916,1,6,0,-1,-1,0,7259,0,6057 +136917,1,6,0,-1,-1,0,996,0,9033 +136918,1,6,0,-1,-1,0,639,0,8909 +136919,1,6,0,-1,-1,0,639,0,8912 +136920,1,6,0,-1,-1,0,7786,0,6348 +136921,1,6,0,-1,-1,0,5180,0,5156 +136922,1,6,0,-1,-1,0,740,0,5158 +136923,1,6,0,-1,-1,0,691,0,6988 +136924,1,6,0,-1,-1,0,8339,0,6716 +136925,1,6,0,-1,-1,0,8795,0,7085 +136926,1,6,0,-1,-1,0,8240,0,6663 +136927,1,6,0,-1,-1,0,8367,0,6735 +136928,1,6,0,-1,-1,0,10533,0,8397 +136929,1,6,0,-1,-1,0,10,0,8873 +136930,1,6,0,-1,-1,0,28609,0,8876 +136931,1,6,0,-1,-1,0,7782,0,6347 +136932,1,6,0,-1,-1,0,7827,0,6368 +136933,1,6,0,-1,-1,0,12063,0,10304 +136934,1,6,0,-1,-1,0,12059,0,10301 +136935,0,1,0,-1,-1,0,9331,0,9416 +136936,1,6,0,0,0,0,545,0,9052 +136937,1,6,0,-1,-1,0,6416,0,5486 +136938,1,6,0,-1,-1,0,6778,0,8767 +136939,1,6,0,-1,-1,0,2090,0,8771 +136940,1,6,0,-1,-1,0,8936,0,8772 +136941,0,1,0,-1,-1,0,9397,0,6465 +136942,1,6,0,-1,-1,0,709,0,9219 +136943,0,1,0,-1,-1,0,9394,0,6998 +136944,1,6,0,-1,-1,0,5394,0,6650 +136945,1,6,0,-1,-1,0,113,0,8815 +136946,1,6,0,-1,-1,0,3449,0,6068 +136947,1,6,0,-1,-1,0,7859,0,6375 +136948,1,6,0,-1,-1,0,7828,0,6369 +136949,1,6,0,-1,-1,0,11643,0,9367 +136950,1,6,0,-1,-1,0,5143,0,8804 +136951,1,6,0,-1,-1,0,5143,0,8822 +136952,1,6,0,-1,-1,0,3140,0,8824 +136953,1,6,0,-1,-1,0,10550,0,8388 +136954,1,6,0,-1,-1,0,1006,0,9024 +136955,1,6,0,-1,-1,0,1006,0,9025 +136956,1,6,0,-1,-1,0,7863,0,6376 +136957,1,6,0,-1,-1,0,2878,0,5677 +136958,1,6,0,-1,-1,0,1073,0,4274 +136959,1,6,0,-1,-1,0,606,0,4275 +136960,1,6,0,-1,-1,0,998,0,4276 +136961,1,6,0,-1,-1,0,2767,0,4279 +136962,1,6,0,-1,-1,0,5232,0,5155 +136963,1,6,0,-1,-1,0,6229,0,9220 +136964,1,6,0,-1,-1,0,9197,0,7450 +136965,1,6,0,-1,-1,0,7954,0,6475 +136966,1,6,0,-1,-1,0,1152,0,8817 +136967,1,6,0,-1,-1,0,10560,0,8389 +136968,1,6,0,-1,-1,0,10562,0,8390 +136969,1,6,0,-1,-1,0,355,0,6621 +136970,1,6,0,-1,-1,0,8782,0,7091 +136971,1,6,0,-1,-1,0,9064,0,7288 +136972,1,6,0,-1,-1,0,9070,0,7289 +136973,1,6,0,-1,-1,0,2090,0,8906 +136974,1,6,0,-1,-1,0,8921,0,8907 +136975,1,6,0,-1,-1,0,5627,0,5682 +136976,0,1,0,-1,-1,0,9417,0,6324 +136977,1,6,0,-1,-1,0,7751,0,6325 +136978,1,6,0,-1,-1,0,596,0,4269 +136979,1,6,0,-1,-1,0,6131,0,8879 +136980,1,6,0,-1,-1,0,5143,0,8880 +136981,1,6,0,-1,-1,0,604,0,8821 +136982,1,6,0,-1,-1,0,1461,0,8883 +136983,1,6,0,-1,-1,0,8607,0,6892 +136984,1,6,0,-1,-1,0,9820,0,7982 +136985,1,6,0,-1,-1,0,8071,0,6648 +136986,1,6,0,-1,-1,0,3599,0,6649 +136987,1,6,0,-1,-1,0,1036,0,6133 +136988,1,6,0,-1,-1,0,3140,0,8877 +136989,1,6,0,-1,-1,0,1953,0,5647 +136990,1,6,0,-1,-1,0,7301,0,5648 +136991,0,1,0,-1,-1,0,9398,0,6744 +136992,1,6,0,-1,-1,0,5143,0,8898 +136993,1,6,0,-1,-1,0,28609,0,8899 +136994,1,6,0,-1,-1,0,10005,0,7993 +136995,1,6,0,-1,-1,0,6703,0,5787 +136996,1,6,0,-1,-1,0,2090,0,8778 +136997,1,6,0,-1,-1,0,8238,0,6661 +136998,1,6,0,-1,-1,0,8243,0,6672 +136999,1,6,0,-1,-1,0,759,0,8889 +137000,1,6,0,-1,-1,0,7320,0,8891 +137001,1,6,0,-1,-1,0,6127,0,8892 +137002,1,6,0,-1,-1,0,604,0,8894 +137003,1,6,0,-1,-1,0,7630,0,6270 +137004,1,6,0,-1,-1,0,7629,0,6271 +137005,1,6,0,-1,-1,0,8793,0,7084 +137006,1,6,0,-1,-1,0,7257,0,6055 +137007,1,6,0,-1,-1,0,5506,0,5650 +137008,1,6,0,-1,-1,0,740,0,8775 +137009,1,6,0,-1,-1,0,5740,0,9204 +137010,1,6,0,-1,-1,0,5614,0,5673 +137011,1,6,0,-1,-1,0,6060,0,4284 +137012,1,6,0,-1,-1,0,2791,0,4285 +137013,1,6,0,-1,-1,0,6063,0,4270 +137014,1,6,0,-1,-1,0,5599,0,5680 +137015,0,1,0,-1,-1,0,9335,0,6641 +137016,1,6,0,-1,-1,0,6146,0,8886 +137017,1,6,0,-1,-1,0,28609,0,8887 +137018,1,6,0,-1,-1,0,113,0,8888 +137019,0,1,0,-1,-1,0,9395,0,8250 +137020,0,1,0,-1,-1,0,9346,0,8251 +137021,1,6,0,-1,-1,0,9939,0,7976 +137022,1,6,0,-1,-1,0,8789,0,7087 +137023,1,6,0,-1,-1,0,8802,0,7088 +137024,1,6,0,-1,-1,0,8784,0,7090 +137025,1,6,0,-1,-1,0,8786,0,7089 +137026,0,1,0,-1,-1,0,9331,0,6905 +137027,1,6,0,-1,-1,0,2060,0,9018 +137028,1,6,0,0,0,0,131,0,9057 +137029,1,6,0,-1,-1,0,5740,0,9205 +137030,1,6,0,-1,-1,0,8921,0,8780 +137031,1,6,0,-1,-1,0,139,0,8955 +137032,1,6,0,-1,-1,0,606,0,8958 +137033,1,6,0,-1,-1,0,602,0,8965 +137034,1,6,0,-1,-1,0,706,0,1244 +137035,1,6,0,-1,-1,0,6063,0,8992 +137036,1,6,0,-1,-1,0,6063,0,8993 +137037,1,6,0,-1,-1,0,2791,0,9006 +137038,1,6,0,-1,-1,0,12066,0,10312 +137039,1,6,0,-1,-1,0,7322,0,8842 +137040,1,6,0,-1,-1,0,5145,0,8826 +137041,1,6,0,-1,-1,0,7322,0,8828 +137042,1,6,0,-1,-1,0,8921,0,8757 +137043,1,6,0,-1,-1,0,8936,0,8791 +137044,1,6,0,-1,-1,0,6141,0,8857 +137045,1,6,0,-1,-1,0,5179,0,8789 +137046,0,1,0,-1,-1,0,9342,0,8112 +137047,1,6,0,-1,-1,0,9811,0,7978 +137048,0,1,0,-1,-1,0,9396,0,10751 +137049,1,6,0,-1,-1,0,12064,0,10311 +137050,0,1,0,-1,-1,0,9334,0,10631 +137051,1,6,0,-1,-1,0,13868,0,11205 +137052,0,1,0,-1,-1,0,14047,0,10808 +137053,1,6,0,-1,-1,0,13464,0,11081 +137054,1,6,0,0,0,0,131,0,9089 +137055,1,6,0,0,0,0,131,0,9090 +137056,1,6,0,-1,-1,0,5602,0,8942 +137057,1,6,0,-1,-1,0,639,0,8922 +137058,1,6,0,-1,-1,0,12607,0,10603 +137059,1,6,0,0,0,0,2866,0,4186 +137060,0,1,0,0,-1,0,9394,0,9433 +137061,0,1,0,-1,-1,0,9392,0,10554 +137062,0,1,0,-1,-1,0,9394,0,9491 +137063,1,6,0,-1,-1,0,113,0,8829 +137064,1,6,0,-1,-1,0,28609,0,8830 +137065,1,6,0,-1,-1,0,639,0,8931 +137066,1,6,0,-1,-1,0,602,0,8963 +137067,1,6,0,-1,-1,0,11453,0,9293 +137068,1,6,0,-1,-1,0,9980,0,7987 +137069,1,6,0,-1,-1,0,10516,0,8409 +137070,1,6,0,-1,-1,0,1006,0,8997 +137071,1,6,0,-1,-1,0,2138,0,8859 +137072,0,1,0,-1,-1,0,9343,0,7711 +137073,1,6,0,-1,-1,0,10013,0,8030 +137074,0,1,0,-1,-1,0,9416,0,10545 +137075,1,6,0,0,0,0,915,0,9072 +137076,1,6,0,0,0,0,915,0,9073 +137077,1,6,0,-1,-1,0,13646,0,11163 +137078,1,6,0,0,0,0,951,0,9157 +137079,0,1,0,-1,-1,0,9346,0,10843 +137080,1,6,0,-1,-1,0,13933,0,11224 +137081,1,6,0,0,0,0,3599,0,9039 +137082,1,6,0,0,0,0,923,0,9131 +137083,1,6,0,0,0,0,951,0,9132 +137084,1,6,0,0,0,0,951,0,9134 +137085,1,6,0,-1,-1,0,996,0,8988 +137086,1,6,0,0,0,0,548,0,9075 +137087,0,1,0,-1,-1,0,9417,0,10802 +137088,1,6,0,0,0,0,905,0,9069 +137089,1,6,0,-1,-1,0,12062,0,10303 +137090,1,6,0,-1,-1,0,759,0,8861 +137091,1,6,0,-1,-1,0,6146,0,8864 +137092,1,6,0,-1,-1,0,6780,0,8784 +137093,1,6,0,-1,-1,0,2090,0,8785 +137094,1,6,0,-1,-1,0,740,0,8786 +137095,1,6,0,-1,-1,0,13841,0,11203 +137096,1,6,0,0,0,0,6365,0,5712 +137097,1,6,0,-1,-1,0,2096,0,8967 +137098,1,6,0,-1,-1,0,3747,0,8968 +137099,1,6,0,-1,-1,0,2060,0,9015 +137100,1,6,0,-1,-1,0,8366,0,6734 +137101,1,6,0,-1,-1,0,639,0,8921 +137102,1,6,0,-1,-1,0,10,0,8896 +137103,1,6,0,0,0,0,905,0,9066 +137104,1,6,0,0,0,0,905,0,9067 +137105,1,6,0,-1,-1,0,602,0,8966 +137106,0,1,0,-1,-1,0,21618,0,9450 +137107,1,6,0,-1,-1,0,5740,0,9221 +137108,1,6,0,-1,-1,0,5740,0,9222 +137109,1,6,0,-1,-1,0,8936,0,8800 +137110,1,6,0,-1,-1,0,28609,0,8874 +137111,1,6,0,0,0,0,943,0,9169 +137112,1,6,0,0,0,0,943,0,9127 +137113,1,6,0,0,0,0,943,0,9128 +137114,1,6,0,-1,-1,0,9952,0,7985 +137115,1,6,0,-1,-1,0,9972,0,7986 +137116,1,6,0,0,0,0,421,0,9085 +137117,1,6,0,0,0,0,945,0,9137 +137118,1,6,0,-1,-1,0,3844,0,4346 +137119,1,6,0,0,0,0,2610,0,4174 +137120,1,6,0,0,0,0,951,0,4184 +137121,1,6,0,-1,-1,0,9202,0,7451 +137122,0,1,0,-1,-1,0,9396,0,10574 +137123,1,6,0,0,0,0,923,0,9081 +137124,1,6,0,-1,-1,0,5627,0,8938 +137125,1,6,0,-1,-1,0,639,0,8940 +137126,1,6,0,-1,-1,0,6074,0,8976 +137127,1,6,0,-1,-1,0,6077,0,8977 +137128,1,6,0,-1,-1,0,12587,0,10601 +137129,0,1,0,-1,-1,0,9415,0,11123 +137130,0,1,0,-1,-1,0,9397,0,4463 +137131,1,6,0,-1,-1,0,10844,0,8547 +137132,1,6,0,0,0,0,951,0,9156 +137133,1,6,0,-1,-1,0,28609,0,8847 +137134,1,6,0,-1,-1,0,6146,0,8848 +137135,0,1,0,-1,-1,0,9415,0,9407 +137136,0,1,0,-1,-1,0,9335,0,9411 +137137,0,1,0,-1,-1,0,9395,0,9658 +137138,0,1,0,0,-1,0,9398,0,10766 +137139,1,6,0,0,0,0,315,0,9040 +137140,1,6,0,-1,-1,0,9966,0,7991 +137141,1,6,0,-1,-1,0,5196,0,8900 +137142,0,1,0,-1,-1,0,9344,0,9415 +137143,1,6,0,-1,-1,0,996,0,9009 +137144,1,6,0,-1,-1,0,6063,0,8972 +137145,1,6,0,-1,-1,0,10009,0,8028 +137146,1,6,0,0,0,0,951,0,9135 +137147,1,6,0,-1,-1,0,688,0,6516 +137148,1,6,0,0,0,0,3599,0,9038 +137149,1,6,0,-1,-1,0,7320,0,8865 +137150,1,6,0,-1,-1,0,113,0,8866 +137151,1,6,0,-1,-1,0,7322,0,8867 +137152,1,6,0,-1,-1,0,7935,0,6454 +137153,1,6,0,-1,-1,0,778,0,8764 +137154,0,1,0,-1,-1,0,9330,0,10403 +137155,0,1,0,-1,-1,0,21620,0,10632 +137156,0,1,0,-1,-1,0,9415,0,10634 +137157,1,6,0,-1,-1,0,709,0,4214 +137158,1,6,0,0,0,0,905,0,9070 +137159,0,1,0,-1,-1,0,18378,0,10764 +137160,1,6,0,-1,-1,0,5145,0,8885 +137161,1,6,0,-1,-1,0,2138,0,8841 +137162,0,1,0,-1,-1,0,9393,0,10553 +137163,1,6,0,0,0,0,951,0,9096 +137164,1,6,0,0,0,0,951,0,9097 +137165,0,1,0,-1,-1,0,9417,0,9636 +137166,1,6,0,-1,-1,0,996,0,9010 +137167,1,6,0,0,0,0,370,0,9048 +137168,1,6,0,-1,-1,0,6060,0,8983 +137169,1,6,0,-1,-1,0,8936,0,8781 +137170,0,1,0,-1,-1,0,9395,0,8246 +137171,1,6,0,-1,-1,0,11458,0,9294 +137172,1,6,0,-1,-1,0,11466,0,9296 +137173,1,6,0,0,0,0,421,0,9086 +137174,1,6,0,0,0,0,943,0,9125 +137175,1,6,0,0,0,0,943,0,9126 +137176,1,6,0,-1,-1,0,9208,0,7453 +137177,1,6,0,-1,-1,0,13522,0,11098 +137178,1,6,0,-1,-1,0,10,0,5649 +137179,1,6,0,-1,-1,0,6127,0,8868 +137180,1,6,0,-1,-1,0,1006,0,9026 +137181,1,6,0,-1,-1,0,1006,0,9027 +137182,1,6,0,-1,-1,0,2812,0,8945 +137183,1,6,0,-1,-1,0,8921,0,8761 +137184,1,6,0,-1,-1,0,11456,0,10644 +137185,1,6,0,-1,-1,0,13687,0,11167 +137186,1,6,0,0,0,0,943,0,9176 +137187,1,6,0,0,0,0,945,0,9181 +137188,1,6,0,-1,-1,0,12086,0,10463 +137189,0,1,0,-1,-1,0,9417,0,10771 +137190,1,6,0,-1,-1,0,980,0,9194 +137191,1,6,0,-1,-1,0,12087,0,10322 +137192,1,6,0,-1,-1,0,12090,0,10324 +137193,1,6,0,-1,-1,0,6077,0,8978 +137194,1,6,0,0,0,0,945,0,9102 +137195,1,6,0,0,0,0,945,0,9105 +137196,1,6,0,-1,-1,0,9513,0,7678 +137197,1,6,0,-1,-1,0,7766,0,6344 +137198,1,6,0,-1,-1,0,10509,0,8385 +137199,1,6,0,-1,-1,0,6141,0,8832 +137200,1,6,0,-1,-1,0,10,0,8833 +137201,1,6,0,-1,-1,0,604,0,8834 +137202,1,6,0,-1,-1,0,8926,0,8777 +137203,0,1,0,-1,-1,0,9397,0,9634 +137204,1,6,0,-1,-1,0,5145,0,8849 +137205,1,6,0,-1,-1,0,6127,0,8850 +137206,1,6,0,-1,-1,0,3971,0,7742 +137207,1,6,0,-1,-1,0,3494,0,10858 +137208,1,6,0,0,0,0,915,0,9094 +137209,1,6,0,-1,-1,0,6063,0,8996 +137210,1,6,0,0,0,0,899,0,9064 +137211,1,6,0,-1,-1,0,5615,0,8929 +137212,1,6,0,-1,-1,0,1034,0,8946 +137213,1,6,0,0,0,0,943,0,9123 +137214,1,6,0,-1,-1,0,639,0,8919 +137215,1,6,0,-1,-1,0,639,0,8920 +137216,1,6,0,0,0,0,951,0,9183 +137217,1,6,0,-1,-1,0,5740,0,9203 +137218,1,6,0,0,0,0,324,0,9044 +137219,1,6,0,0,0,0,943,0,9145 +137220,1,6,0,0,0,0,943,0,9146 +137221,1,6,0,0,0,0,945,0,9100 +137222,1,6,0,-1,-1,0,5615,0,8947 +137223,1,6,0,0,0,0,951,0,9160 +137224,1,6,0,-1,-1,0,11477,0,9300 +137225,1,6,0,0,0,0,548,0,9074 +137226,1,6,0,-1,-1,0,7258,0,6056 +137227,0,1,0,0,-1,0,9396,0,10769 +137228,0,1,0,0,0,0,9342,0,10770 +137229,1,6,0,-1,-1,0,13898,0,11207 +137230,1,6,0,0,0,0,545,0,9051 +137231,0,1,0,-1,-1,0,21618,0,10765 +137232,1,6,0,-1,-1,0,2791,0,9005 +137233,1,6,0,0,0,0,548,0,9055 +137234,1,6,0,0,0,0,548,0,9056 +137235,1,6,0,0,0,0,945,0,9101 +137236,1,6,0,-1,-1,0,9195,0,7449 +137237,1,6,0,0,0,0,548,0,9184 +137238,1,6,0,-1,-1,0,996,0,8986 +137239,1,6,0,0,0,0,951,0,9161 +137240,1,6,0,-1,-1,0,6778,0,8774 +137241,1,6,0,0,0,0,923,0,9078 +137242,1,6,0,0,0,0,923,0,9080 +137243,1,6,0,0,0,0,923,0,9082 +137244,1,6,0,0,0,0,923,0,9083 +137245,1,6,0,0,0,0,421,0,9084 +137246,1,6,0,-1,-1,0,8936,0,8759 +137247,1,6,0,-1,-1,0,12091,0,10325 +137248,1,6,0,-1,-1,0,12093,0,10326 +137249,1,6,0,-1,-1,0,9148,0,7363 +137250,1,6,0,0,0,0,131,0,9091 +137251,0,1,0,-1,-1,0,9396,0,10048 +137252,1,6,0,-1,-1,0,6063,0,8994 +137253,1,6,0,0,0,0,915,0,9071 +137254,1,6,0,-1,-1,0,6063,0,8971 +137255,1,6,0,-1,-1,0,6063,0,8970 +137256,1,6,0,-1,-1,0,1006,0,8975 +137257,1,6,0,-1,-1,0,543,0,8897 +137258,1,6,0,-1,-1,0,996,0,9031 +137259,1,6,0,-1,-1,0,996,0,9032 +137260,1,6,0,-1,-1,0,8936,0,8756 +137261,1,6,0,-1,-1,0,639,0,8914 +137262,1,6,0,-1,-1,0,9979,0,7988 +137263,1,6,0,-1,-1,0,10,0,8858 +137264,1,6,0,-1,-1,0,8936,0,8765 +137265,0,1,0,-1,-1,0,9394,0,6697 +137266,1,6,0,-1,-1,0,10,0,8818 +137267,1,6,0,-1,-1,0,28609,0,8819 +137268,1,6,0,-1,-1,0,543,0,8820 +137269,0,1,0,0,-1,0,9395,0,7731 +137270,1,6,0,-1,-1,0,5179,0,8787 +137271,0,1,0,-1,-1,0,21628,0,10833 +137272,1,6,0,-1,-1,0,13655,0,11165 +137273,0,1,0,90000,-1,0,21362,0,10835 +137274,1,6,0,0,0,0,131,0,9092 +137275,1,6,0,0,0,0,945,0,9180 +137276,1,6,0,-1,-1,0,12060,0,10302 +137277,1,6,0,-1,-1,0,12614,0,10604 +137278,1,6,0,-1,-1,0,5234,0,8902 +137279,1,6,0,-1,-1,0,8926,0,8904 +137280,1,6,0,-1,-1,0,8936,0,8905 +137281,1,6,0,-1,-1,0,996,0,9008 +137282,1,6,0,-1,-1,0,5234,0,8776 +137283,1,6,0,-1,-1,0,6219,0,9231 +137284,0,1,0,-1,-1,0,14799,0,9429 +137285,1,6,0,-1,-1,0,1461,0,8852 +137286,1,6,0,-1,-1,0,113,0,8854 +137287,1,6,0,-1,-1,0,7322,0,8856 +137288,1,6,0,-1,-1,0,11473,0,9302 +137289,1,6,0,-1,-1,0,11479,0,9304 +137290,1,6,0,0,0,0,421,0,9087 +137291,1,6,0,-1,-1,0,8926,0,8903 +137292,1,6,0,-1,-1,0,1152,0,8908 +137293,1,6,0,-1,-1,0,9273,0,7561 +137294,1,6,0,-1,-1,0,996,0,4286 +137295,1,6,0,-1,-1,0,8368,0,6736 +137296,1,6,0,-1,-1,0,13536,0,11101 +137297,1,6,0,-1,-1,0,9149,0,7364 +137298,0,1,0,-1,-1,0,9346,0,9649 +137299,1,6,0,0,0,0,915,0,9095 +137300,1,6,0,0,0,0,951,0,9098 +137301,1,6,0,-1,-1,0,3472,0,8933 +137302,1,6,0,-1,-1,0,639,0,8934 +137303,1,6,0,-1,-1,0,996,0,9007 +137304,1,6,0,-1,-1,0,12615,0,10605 +137305,1,6,0,-1,-1,0,12616,0,10606 +137306,1,6,0,-1,-1,0,12620,0,10608 +137307,0,1,0,-1,-1,0,9342,0,10008 +137308,1,6,0,-1,-1,0,755,0,9198 +137309,1,6,0,-1,-1,0,6213,0,9208 +137310,1,6,0,-1,-1,0,6213,0,9209 +137311,1,6,0,-1,-1,0,996,0,8991 +137312,0,1,0,-1,-1,0,9334,0,9396 +137313,1,6,0,-1,-1,0,6226,0,9229 +137314,1,6,0,0,0,0,943,0,9147 +137315,1,6,0,-1,-1,0,1088,0,9226 +137316,1,6,0,-1,-1,0,6226,0,9227 +137317,1,6,0,0,0,0,945,0,9162 +137318,1,6,0,0,0,0,945,0,9163 +137319,0,1,0,-1,-1,0,9343,0,10629 +137320,0,1,0,-1,-1,0,14799,0,10630 +137321,1,6,0,-1,-1,0,12597,0,10602 +137322,1,6,0,-1,-1,0,12047,0,10316 +137323,1,6,0,-1,-1,0,12084,0,10320 +137324,1,6,0,0,0,0,945,0,4175 +137325,1,6,0,-1,-1,0,3773,0,4299 +137326,1,6,0,-1,-1,0,10568,0,8401 +137327,1,6,0,-1,-1,0,13689,0,11168 +137328,1,6,0,-1,-1,0,2060,0,9016 +137329,1,6,0,-1,-1,0,639,0,8913 +137330,1,6,0,-1,-1,0,639,0,8916 +137331,0,1,0,-1,-1,0,9393,0,10705 +137332,0,1,0,-1,-1,0,9336,0,9650 +137333,1,6,0,0,0,0,3599,0,9047 +137334,1,6,0,-1,-1,0,28609,0,8825 +137335,1,6,0,0,0,0,923,0,9188 +137336,1,6,0,-1,-1,0,689,0,9200 +137337,1,6,0,-1,-1,0,6213,0,9207 +137338,1,6,0,-1,-1,0,9964,0,7989 +137339,1,6,0,-1,-1,0,996,0,9021 +137340,1,6,0,0,0,0,529,0,9037 +137341,1,6,0,-1,-1,0,12078,0,10315 +137342,1,6,0,-1,-1,0,12080,0,10317 +137343,1,6,0,-1,-1,0,5179,0,5151 +137344,1,6,0,-1,-1,0,16645,0,12685 +137345,0,1,0,-1,-1,0,9393,0,12295 +137346,1,6,0,-1,-1,0,1714,0,9191 +137347,1,6,0,-1,-1,0,172,0,9192 +137348,1,6,0,0,0,0,923,0,9129 +137349,1,6,0,0,0,0,899,0,9063 +137350,1,6,0,-1,-1,0,2791,0,8981 +137351,1,6,0,-1,-1,0,2791,0,8982 +137352,1,6,0,-1,-1,0,10529,0,8403 +137353,1,6,0,-1,-1,0,10546,0,8405 +137354,1,6,0,-1,-1,0,3140,0,8851 +137355,1,6,0,-1,-1,0,3495,0,3867 +137356,1,6,0,-1,-1,0,9970,0,7990 +137357,1,6,0,-1,-1,0,7953,0,6474 +137358,1,6,0,-1,-1,0,10572,0,8407 +137359,1,6,0,0,0,0,943,0,9171 +137360,1,6,0,0,0,0,943,0,9174 +137361,1,6,0,0,0,0,945,0,9177 +137362,0,1,0,-1,-1,0,9140,0,10846 +137363,0,1,0,-1,-1,0,9415,0,6685 +137364,1,6,0,0,0,0,899,0,1588 +137365,1,6,0,0,0,0,945,0,9168 +137366,1,6,0,0,0,0,943,0,9170 +137367,0,1,0,-1,-1,0,21631,0,9469 +137368,1,6,0,-1,-1,0,11454,0,10713 +137369,1,6,0,-1,-1,0,639,0,8943 +137370,1,6,0,0,0,0,1075,0,8782 +137371,1,6,0,0,0,0,951,0,9150 +137372,1,6,0,0,0,0,951,0,9152 +137373,1,6,0,0,0,0,945,0,9165 +137374,1,6,0,-1,-1,0,6076,0,8969 +137375,1,6,0,0,0,0,3599,0,9045 +137376,1,6,0,0,0,0,3599,0,9046 +137377,1,6,0,0,0,0,951,0,9158 +137378,1,6,0,0,0,0,951,0,9159 +137379,1,6,0,-1,-1,0,759,0,8840 +137380,1,6,0,-1,-1,0,3765,0,7360 +137381,1,6,0,-1,-1,0,9146,0,7361 +137382,1,6,0,-1,-1,0,9147,0,7362 +137383,1,6,0,-1,-1,0,3854,0,7114 +137384,1,6,0,0,0,0,945,0,9178 +137385,0,1,0,-1,-1,0,9417,0,8110 +137386,1,6,0,0,0,0,959,0,5716 +137387,1,6,0,0,0,0,923,0,9079 +137388,1,6,0,-1,-1,0,2053,0,1102 +137389,1,1,0,-1,-1,0,9344,0,11750 +137390,1,6,0,-1,-1,0,16744,0,12726 +137391,1,6,0,-1,-1,0,16745,0,12727 +137392,1,6,0,-1,-1,0,6129,0,8853 +137393,1,6,0,-1,-1,0,11480,0,9305 +137394,1,6,0,0,0,0,2871,0,1063 +137395,1,6,0,-1,-1,0,6222,0,4203 +137396,0,1,0,-1,-1,0,9393,0,10637 +137397,0,1,0,-1,-1,0,9408,0,12604 +137398,0,1,0,-1,-1,0,21362,0,9430 +137399,1,6,0,-1,-1,0,17560,0,13483 +137400,1,6,0,-1,-1,0,15910,0,12240 +137401,0,1,0,-1,-1,0,9345,0,11625 +137402,1,1,0,-1,-1,0,9346,0,11808 +137403,1,6,0,-1,-1,0,13380,0,11038 +137404,1,6,0,-1,-1,0,12081,0,10318 +137405,1,6,0,-1,-1,0,3140,0,8890 +137406,1,6,0,-1,-1,0,18247,0,13949 +137407,1,6,0,-1,-1,0,18418,0,14482 +137408,1,6,0,-1,-1,0,18419,0,14483 +137409,1,6,0,-1,-1,0,18420,0,14484 +137410,1,6,0,-1,-1,0,18423,0,14488 +137411,1,6,0,-1,-1,0,18414,0,14478 +137412,1,6,0,-1,-1,0,16985,0,12830 +137413,1,6,0,-1,-1,0,3928,0,4408 +137414,1,6,0,0,0,0,5394,0,5697 +137415,1,6,0,-1,-1,0,9950,0,7984 +137416,1,6,0,-1,-1,0,17561,0,13484 +137417,1,6,0,-1,-1,0,18415,0,14479 +137418,1,6,0,-1,-1,0,18416,0,14480 +137419,1,6,0,-1,-1,0,16986,0,12831 +137420,1,6,0,-1,-1,0,16988,0,12833 +137421,0,1,0,-1,-1,0,9343,0,11865 +137422,1,6,0,-1,-1,0,16654,0,12695 +137423,1,6,0,-1,-1,0,15292,0,11610 +137424,1,6,0,-1,-1,0,15294,0,11611 +137425,1,6,0,-1,-1,0,6131,0,3101 +137426,1,6,0,0,0,0,945,0,9182 +137427,1,6,0,-1,-1,0,15293,0,11614 +137428,1,6,0,-1,-1,0,11472,0,9298 +137429,1,6,0,-1,-1,0,2812,0,8935 +137430,1,6,0,-1,-1,0,996,0,9034 +137431,1,6,0,-1,-1,0,13419,0,11039 +137432,1,6,0,0,0,0,951,0,9151 +137433,1,1,0,-1,-1,0,9329,0,10803 +137434,1,6,0,-1,-1,0,13846,0,11204 +137435,1,6,0,-1,-1,0,18455,0,14510 +137436,1,6,0,-1,-1,0,16725,0,12713 +137437,1,6,0,-1,-1,0,15296,0,11612 +137438,1,6,0,-1,-1,0,755,0,9199 +137439,1,6,0,-1,-1,0,16746,0,12728 +137440,1,6,0,-1,-1,0,600,0,3122 +137441,1,6,0,-1,-1,0,12056,0,10300 +137442,1,6,0,-1,-1,0,2542,0,2697 +137443,1,6,0,-1,-1,0,15633,0,11827 +137444,0,1,0,-1,-1,0,9393,0,3748 +137445,1,6,0,-1,-1,0,2006,0,1090 +137446,0,1,0,-1,-1,0,9396,0,14433 +137447,0,1,0,-1,-1,0,9395,0,14436 +137448,1,6,0,-1,-1,0,18245,0,13947 +137449,1,6,0,-1,-1,0,17566,0,13489 +137450,0,1,0,-1,-1,0,9394,0,13099 +137451,1,6,0,-1,-1,0,15973,0,12261 +137452,1,6,0,0,0,0,548,0,9077 +137453,1,6,0,-1,-1,0,543,0,8843 +137454,1,6,0,0,0,0,2870,0,1036 +137455,0,1,0,-1,-1,0,14248,0,10807 +137456,0,1,0,0,-1,0,9417,0,10829 +137457,1,6,0,0,0,0,951,0,9099 +137458,1,6,0,-1,-1,0,17555,0,13479 +137459,1,6,0,-1,-1,0,16990,0,12834 +137460,0,1,0,-1,-1,0,9393,0,14429 +137461,1,6,0,-1,-1,0,16973,0,12824 +137462,1,6,0,-1,-1,0,16991,0,12835 +137463,1,6,0,-1,-1,0,16667,0,12696 +137464,1,6,0,-1,-1,0,16660,0,12698 +137465,1,6,0,-1,-1,0,16992,0,12836 +137466,0,1,0,-1,-1,0,9345,0,9653 +137467,1,6,0,-1,-1,0,6778,0,8901 +137468,1,6,0,-1,-1,0,2060,0,9001 +137469,1,6,0,-1,-1,0,10531,0,8387 +137470,1,6,0,-1,-1,0,6134,0,980 +137471,0,1,0,-1,-1,0,9395,0,6632 +137472,1,6,0,-1,-1,0,12624,0,10609 +137473,0,1,0,-1,-1,0,9417,0,6903 +137474,0,1,0,-1,-1,0,9344,0,10742 +137475,1,6,0,-1,-1,0,17557,0,13481 +137476,1,6,0,-1,-1,0,17559,0,13482 +137477,1,6,0,-1,-1,0,18238,0,13939 +137478,1,6,0,-1,-1,0,16978,0,12825 +137479,1,6,0,-1,-1,0,17571,0,13491 +137480,1,6,0,-1,-1,0,16659,0,12702 +137481,1,6,0,-1,-1,0,2893,0,1332 +137482,1,6,0,-1,-1,0,8921,0,8798 +137483,1,6,0,-1,-1,0,10574,0,8408 +137484,1,6,0,-1,-1,0,16993,0,12837 +137485,1,6,0,-1,-1,0,5145,0,8862 +137486,1,6,0,-1,-1,0,6417,0,5487 +137487,0,1,0,-1,-1,0,9417,0,12626 +137488,0,1,0,-1,-1,0,18379,0,10801 +137489,1,6,0,-1,-1,0,8797,0,7086 +137490,1,6,0,-1,-1,0,15628,0,11828 +137491,0,1,0,-1,-1,0,9331,0,11749 +137492,1,1,0,-1,-1,0,21618,0,11749 +137493,1,6,0,-1,-1,0,639,0,8911 +137494,0,1,0,-1,-1,0,9395,0,8253 +137495,1,6,0,0,0,0,943,0,9148 +137496,1,6,0,-1,-1,0,770,0,8790 +137497,1,6,0,0,0,0,945,0,9104 +137498,1,6,0,-1,-1,0,6778,0,8783 +137499,1,6,0,-1,-1,0,8926,0,8763 +137500,1,6,0,-1,-1,0,5267,0,5130 +137501,1,6,0,-1,-1,0,3498,0,12164 +137502,1,6,0,-1,-1,0,17637,0,13521 +137503,1,6,0,-1,-1,0,17638,0,13522 +137504,1,6,0,-1,-1,0,3957,0,13308 +137505,1,6,0,-1,-1,0,3979,0,13310 +137506,0,1,0,-1,-1,0,9346,0,11935 +137507,1,6,0,-1,-1,0,604,0,8813 +137508,1,6,0,-1,-1,0,639,0,8915 +137509,0,1,0,-1,-1,0,14027,0,11728 +137510,1,6,0,-1,-1,0,28609,0,8875 +137511,1,6,0,-1,-1,0,16662,0,12704 +137512,1,6,0,0,0,0,545,0,9049 +137513,1,6,0,-1,-1,0,3492,0,12162 +137514,0,1,0,-1,-1,0,9415,0,11911 +137515,1,6,0,-1,-1,0,16644,0,12684 +137516,1,6,0,-1,-1,0,17564,0,13487 +137517,0,1,0,-1,-1,0,9394,0,14432 +137518,1,6,0,-1,-1,0,639,0,8910 +137519,1,6,0,-1,-1,0,707,0,9190 +137520,1,6,0,-1,-1,0,205,0,8810 +137521,1,6,0,-1,-1,0,16663,0,12705 +137522,1,6,0,-1,-1,0,5138,0,9211 +137523,1,6,0,0,0,0,945,0,9167 +137524,1,6,0,0,0,0,943,0,9175 +137525,1,6,0,0,0,0,915,0,9093 +137526,1,6,0,-1,-1,0,996,0,8989 +137527,1,6,0,-1,-1,0,16650,0,12691 +137528,1,6,0,-1,-1,0,16651,0,12692 +137529,1,6,0,-1,-1,0,16652,0,12693 +137530,1,6,0,-1,-1,0,16653,0,12694 +137531,1,6,0,-1,-1,0,16726,0,12714 +137532,1,6,0,-1,-1,0,16730,0,12715 +137533,1,6,0,-1,-1,0,996,0,8990 +137534,1,6,0,-1,-1,0,18448,0,14507 +137535,1,6,0,-1,-1,0,16647,0,12688 +137536,1,6,0,-1,-1,0,3451,0,3831 +137537,1,6,0,-1,-1,0,8921,0,8768 +137538,1,6,0,-1,-1,0,15861,0,12231 +137539,1,6,0,-1,-1,0,996,0,9035 +137540,0,1,0,-1,-1,0,9334,0,11726 +137541,1,6,0,-1,-1,0,15295,0,11615 +137542,1,6,0,-1,-1,0,851,0,4146 +137543,1,6,0,-1,-1,0,13653,0,11164 +137544,1,6,0,-1,-1,0,13947,0,11226 +137545,1,6,0,-1,-1,0,12089,0,10323 +137546,1,6,0,-1,-1,0,9933,0,7975 +137547,1,6,0,-1,-1,0,16971,0,12823 +137548,1,6,0,-1,-1,0,16643,0,12683 +137549,1,6,0,-1,-1,0,15935,0,12226 +137550,1,6,0,-1,-1,0,15856,0,12229 +137551,1,6,0,0,0,0,945,0,9103 +137552,1,6,0,-1,-1,0,7222,0,6045 +137553,1,6,0,-1,-1,0,6693,0,5774 +137554,1,6,0,-1,-1,0,8895,0,7192 +137555,1,6,0,-1,-1,0,602,0,4266 +137556,1,6,0,-1,-1,0,7133,0,5972 +137557,1,6,0,-1,-1,0,6069,0,4277 +137558,1,6,0,-1,-1,0,996,0,9022 +137559,1,6,0,-1,-1,0,17632,0,13517 +137560,1,6,0,-1,-1,0,17634,0,13518 +137561,1,6,0,-1,-1,0,18246,0,13948 +137562,1,6,0,-1,-1,0,18456,0,14512 +137563,1,6,0,-1,-1,0,18458,0,14514 +137564,1,6,0,-1,-1,0,3496,0,12163 +137565,1,6,0,-1,-1,0,17553,0,13477 +137566,1,6,0,-1,-1,0,16646,0,12687 +137567,1,6,0,-1,-1,0,16648,0,12689 +137568,1,6,0,-1,-1,0,15906,0,12239 +137569,1,6,0,-1,-1,0,604,0,8855 +137570,1,6,0,-1,-1,0,2138,0,8823 +137571,1,6,0,-1,-1,0,16741,0,12720 +137572,1,6,0,-1,-1,0,6217,0,5723 +137573,1,6,0,0,0,0,370,0,9050 +137574,1,6,0,-1,-1,0,2060,0,9013 +137575,1,6,0,-1,-1,0,2791,0,9004 +137576,0,1,0,-1,-1,0,9141,0,11677 +137577,1,6,0,-1,-1,0,12083,0,10319 +137578,1,6,0,-1,-1,0,17562,0,13485 +137579,1,6,0,-1,-1,0,18452,0,14509 +137580,1,6,0,-1,-1,0,11476,0,9301 +137581,1,1,0,-1,-1,0,21625,0,11842 +137582,1,6,0,-1,-1,0,16664,0,12706 +137583,1,6,0,0,0,0,923,0,9130 +137584,0,1,0,-1,-1,0,9331,0,11814 +137585,1,6,0,-1,-1,0,1454,0,3143 +137586,1,6,0,-1,-1,0,15596,0,11813 +137587,1,6,0,-1,-1,0,18242,0,13943 +137588,1,6,0,-1,-1,0,18450,0,14505 +137589,1,6,0,-1,-1,0,18451,0,14506 +137590,1,6,0,-1,-1,0,602,0,8964 +137591,1,6,0,-1,-1,0,3472,0,8941 +137592,1,6,0,-1,-1,0,996,0,9020 +137593,1,6,0,-1,-1,0,996,0,8987 +137594,0,1,0,-1,-1,0,9416,0,11908 +137595,0,1,0,-1,-1,0,17371,0,10842 +137596,1,6,0,0,0,0,905,0,9068 +137597,1,6,0,-1,-1,0,3397,0,3734 +137598,1,6,0,-1,-1,0,16980,0,12826 +137599,1,6,0,-1,-1,0,16983,0,12827 +137600,1,6,0,-1,-1,0,16984,0,12828 +137601,1,6,0,-1,-1,0,16728,0,12716 +137602,1,6,0,-1,-1,0,16729,0,12717 +137603,1,6,0,-1,-1,0,16960,0,12816 +137604,1,6,0,-1,-1,0,16965,0,12817 +137605,1,6,0,-1,-1,0,16970,0,12821 +137606,1,6,0,-1,-1,0,18243,0,13945 +137607,1,6,0,-1,-1,0,18411,0,14474 +137608,1,6,0,-1,-1,0,7793,0,6349 +137609,1,6,0,-1,-1,0,19088,0,15762 +137610,1,6,0,-1,-1,0,19792,0,16043 +137611,1,6,0,-1,-1,0,3857,0,14630 +137612,0,1,0,-1,-1,0,21618,0,11783 +137613,1,1,0,-1,-1,0,17371,0,11783 +137614,1,6,0,-1,-1,0,18412,0,14476 +137615,1,1,0,-1,-1,0,15810,0,16567 +137616,1,6,0,-1,-1,0,21562,0,17413 +137617,1,6,0,-1,-1,0,19082,0,15756 +137618,1,6,0,-1,-1,0,19833,0,16056 +137619,1,6,0,-1,-1,0,6518,0,5543 +137620,1,6,0,0,0,0,548,0,9076 +137621,1,6,0,-1,-1,0,19049,0,15725 +137622,0,1,0,0,-1,0,9394,0,13106 +137623,0,1,0,-1,-1,0,9393,0,14399 +137624,1,6,0,-1,-1,0,19814,0,16046 +137625,1,6,0,-1,-1,0,19795,0,16047 +137626,1,6,0,-1,-1,0,20855,0,17025 +137627,0,1,0,-1,-1,0,9395,0,12050 +137628,0,1,0,-1,-1,0,9331,0,11743 +137629,0,1,0,-1,-1,0,9396,0,14464 +137630,0,1,0,-1,-1,0,9331,0,16681 +137631,1,6,0,-1,-1,0,19796,0,16048 +137632,1,6,0,-1,-1,0,19076,0,15749 +137633,1,6,0,-1,-1,0,19072,0,15745 +137634,1,6,0,-1,-1,0,19073,0,15746 +137635,1,6,0,-1,-1,0,19089,0,15763 +137636,0,1,0,-1,-1,0,9416,0,15707 +137637,0,1,0,-1,-1,0,9415,0,15104 +137638,1,6,0,-1,-1,0,19078,0,15752 +137639,1,6,0,-1,-1,0,3869,0,14627 +137640,1,6,0,-1,-1,0,19091,0,15765 +137641,1,6,0,-1,-1,0,1457,0,4219 +137642,1,6,0,-1,-1,0,3778,0,14635 +137643,1,6,0,-1,-1,0,17565,0,13488 +137644,1,6,0,-1,-1,0,19097,0,15772 +137645,1,6,0,-1,-1,0,20011,0,16251 +137646,1,6,0,-1,-1,0,4096,0,13287 +137647,0,1,0,-1,-1,0,9394,0,14449 +137648,1,6,0,-1,-1,0,18438,0,14491 +137649,1,6,0,-1,-1,0,18437,0,14492 +137650,1,6,0,-1,-1,0,18436,0,14493 +137651,1,6,0,-1,-1,0,18405,0,14468 +137652,0,1,0,-1,-1,0,9393,0,14407 +137653,1,6,0,-1,-1,0,19100,0,15774 +137654,1,6,0,-1,-1,0,19102,0,15776 +137655,1,1,0,-1,-1,0,15806,0,16845 +137656,1,6,0,-1,-1,0,17570,0,13490 +137657,1,6,0,-1,-1,0,17572,0,13492 +137658,1,6,0,-1,-1,0,15865,0,12233 +137659,0,1,0,-1,-1,0,9395,0,14447 +137660,1,6,0,-1,-1,0,18439,0,14494 +137661,0,1,0,-1,-1,0,9397,0,14465 +137662,1,6,0,-1,-1,0,18403,0,14466 +137663,1,6,0,-1,-1,0,13612,0,11150 +137664,1,6,0,-1,-1,0,17575,0,13495 +137665,1,6,0,-1,-1,0,17576,0,13496 +137666,1,6,0,-1,-1,0,19103,0,15777 +137667,0,1,0,-1,-1,0,9330,0,16676 +137668,0,1,0,-1,-1,0,9142,0,16679 +137669,0,1,0,-1,-1,0,9141,0,16680 +137670,1,1,0,-1,-1,0,14027,0,16852 +137671,0,1,0,-1,-1,0,9396,0,14404 +137672,1,6,0,0,0,0,1075,0,8769 +137673,1,6,0,-1,-1,0,8926,0,8770 +137674,1,6,0,-1,-1,0,18445,0,14499 +137675,1,6,0,-1,-1,0,18406,0,14469 +137676,1,6,0,-1,-1,0,17577,0,13497 +137677,1,6,0,-1,-1,0,18441,0,14495 +137678,1,6,0,-1,-1,0,19052,0,15728 +137679,0,1,0,-1,-1,0,9334,0,16677 +137680,0,1,0,-1,-1,0,15806,0,16678 +137681,1,1,0,-1,-1,0,15807,0,16848 +137682,0,1,0,-1,-1,0,14089,0,16849 +137683,1,6,0,-1,-1,0,19060,0,15733 +137684,1,6,0,-1,-1,0,19061,0,15734 +137685,1,6,0,-1,-1,0,19062,0,15735 +137686,1,6,0,-1,-1,0,19079,0,15753 +137687,1,6,0,-1,-1,0,16656,0,12697 +137688,1,6,0,-1,-1,0,16661,0,12703 +137689,1,6,0,-1,-1,0,16724,0,12711 +137690,0,1,0,-1,-1,0,9395,0,14398 +137691,0,1,0,-1,-1,0,9392,0,14423 +137692,1,6,0,-1,-1,0,17574,0,13494 +137693,0,1,0,-1,-1,0,9395,0,14379 +137694,1,6,0,-1,-1,0,18407,0,14470 +137695,1,6,0,-1,-1,0,19050,0,15726 +137696,1,6,0,-1,-1,0,20874,0,17051 +137697,1,6,0,-1,-1,0,20873,0,17053 +137698,1,6,0,-1,-1,0,19063,0,15737 +137699,1,1,0,-1,-1,0,15810,0,16465 +137700,1,6,0,-1,-1,0,2893,0,8760 +137701,0,1,0,-1,-1,0,9396,0,14451 +137702,1,6,0,-1,-1,0,12075,0,10314 +137703,1,6,0,-1,-1,0,4097,0,13288 +137704,0,1,0,-1,-1,0,14799,0,13181 +137705,1,6,0,-1,-1,0,18409,0,14472 +137706,1,6,0,-1,-1,0,19051,0,15727 +137707,0,1,0,-1,-1,0,9392,0,14406 +137708,0,1,0,-1,-1,0,9393,0,14413 +137709,2,1,0,-1,-1,0,9335,0,16571 +137710,1,6,0,-1,-1,0,18239,0,13940 +137711,0,1,0,-1,-1,0,9408,0,12556 +137712,0,1,0,-1,-1,0,9395,0,14405 +137713,1,6,0,-1,-1,0,13931,0,11223 +137714,0,1,0,-1,-1,0,9394,0,14403 +137715,0,1,0,-1,-1,0,9394,0,14431 +137716,0,1,0,-1,-1,0,9393,0,11936 +137717,0,1,0,-1,-1,0,9393,0,14025 +137718,1,6,0,-1,-1,0,18434,0,14490 +137719,0,1,0,-1,-1,0,9394,0,14414 +137720,1,6,0,-1,-1,0,18442,0,14496 +137721,1,6,0,-1,-1,0,18440,0,14497 +137722,0,1,0,-1,-1,0,9334,0,16850 +137723,1,1,0,-1,-1,0,14027,0,16851 +137724,1,6,0,-1,-1,0,19081,0,15755 +137725,0,1,0,-1,-1,0,9335,0,16674 +137726,1,6,0,-1,-1,0,13945,0,11225 +137727,1,6,0,-1,-1,0,3969,0,13311 +137728,1,6,0,-1,-1,0,18244,0,13946 +137729,0,1,0,-1,-1,0,9397,0,15791 +137730,0,1,0,-1,-1,0,9336,0,16935 +137731,1,6,0,-1,-1,0,19075,0,15748 +137732,1,6,0,-1,-1,0,17578,0,13499 +137733,1,6,0,-1,-1,0,18404,0,14467 +137734,0,1,0,-1,-1,0,9396,0,14456 +137735,1,6,0,-1,-1,0,3454,0,14634 +137736,0,1,0,-1,-1,0,9394,0,14148 +137737,1,6,0,-1,-1,0,19819,0,16052 +137738,1,6,0,-1,-1,0,19830,0,16054 +137739,1,6,0,-1,-1,0,19092,0,15768 +137740,1,6,0,-1,-1,0,19093,0,15769 +137741,0,1,0,-1,-1,0,9394,0,14428 +137742,0,1,0,-1,-1,0,9335,0,16675 +137743,1,6,0,-1,-1,0,19084,0,15758 +137744,1,6,0,-1,-1,0,19085,0,15759 +137745,1,6,0,-1,-1,0,19086,0,15760 +137746,1,6,0,-1,-1,0,19048,0,15724 +137747,0,1,0,-1,-1,0,14055,0,12462 +137748,0,1,0,-1,-1,0,21623,0,11722 +137749,1,1,0,-1,-1,0,9408,0,11722 +137750,1,6,0,-1,-1,0,3503,0,6047 +137751,0,1,0,-1,-1,0,9331,0,11731 +137752,0,1,0,-1,-1,0,9396,0,14454 +137753,1,6,0,-1,-1,0,17187,0,12958 +137754,1,6,0,-1,-1,0,19054,0,15730 +137755,1,6,0,-1,-1,0,19059,0,15732 +137756,1,6,0,-1,-1,0,19799,0,16049 +137757,1,6,0,-1,-1,0,19800,0,16051 +137758,1,6,0,-1,-1,0,19793,0,16044 +137759,1,6,0,-1,-1,0,19794,0,16045 +137760,1,6,0,-1,-1,0,19087,0,15761 +137761,0,1,0,-1,-1,0,9140,0,11730 +137762,1,6,0,-1,-1,0,20017,0,16217 +137763,1,6,0,-1,-1,0,20036,0,16249 +137764,1,6,0,-1,-1,0,16969,0,12819 +137765,0,1,0,-1,-1,0,9397,0,10654 +137766,1,6,0,-1,-1,0,16731,0,12718 +137767,1,6,0,-1,-1,0,16995,0,12839 +137768,1,6,0,-1,-1,0,20030,0,16247 +137769,1,6,0,-1,-1,0,21931,0,17725 +137770,1,6,0,-1,-1,0,22866,0,18414 +137771,0,1,0,-1,-1,0,9394,0,14371 +137772,1,6,0,-1,-1,0,20876,0,17052 +137773,1,6,0,-1,-1,0,21560,0,17412 +137774,1,6,0,-1,-1,0,20853,0,17022 +137775,1,6,0,-1,-1,0,18410,0,14473 +137776,1,6,0,-1,-1,0,19095,0,15771 +137777,1,6,0,-1,-1,0,22704,0,18235 +137778,1,6,0,-1,-1,0,20035,0,16255 +137779,1,6,0,-1,-1,0,19055,0,15731 +137780,1,6,0,-1,-1,0,17556,0,13480 +137781,1,6,0,-1,-1,0,17635,0,13519 +137782,1,1,0,-1,-1,0,9142,0,16530 +137783,1,1,0,-1,-1,0,9141,0,16531 +137784,1,6,0,-1,-1,0,18457,0,14513 +137785,1,6,0,-1,-1,0,23507,0,19027 +137786,1,6,0,-1,-1,0,23664,0,19216 +137787,1,6,0,-1,-1,0,23069,0,18650 +137788,1,6,0,-1,-1,0,19071,0,15744 +137789,1,6,0,-1,-1,0,20897,0,17060 +137790,1,6,0,-1,-1,0,20028,0,16242 +137791,1,6,0,-1,-1,0,19825,0,16053 +137792,1,6,0,-1,-1,0,21564,0,17414 +137793,0,1,0,-1,-1,0,15810,0,16565 +137794,1,6,0,-1,-1,0,19066,0,15740 +137795,1,6,0,-1,-1,0,19067,0,15741 +137796,1,6,0,-1,-1,0,20013,0,16244 +137797,1,6,0,-1,-1,0,996,0,9012 +137798,1,6,0,-1,-1,0,15855,0,12228 +137799,1,6,0,-1,-1,0,22926,0,18517 +137800,1,6,0,-1,-1,0,15863,0,12232 +137801,1,6,0,-1,-1,0,22921,0,18514 +137802,1,6,0,-1,-1,0,22922,0,18515 +137803,1,6,0,-1,-1,0,22793,0,18290 +137804,1,1,0,-1,-1,0,9141,0,16401 +137805,1,6,0,-1,-1,0,22749,0,18259 +137806,1,6,0,-1,-1,0,19104,0,15779 +137807,1,6,0,-1,-1,0,22928,0,18519 +137808,1,6,0,-1,-1,0,21850,0,17683 +137809,2,1,0,-1,-1,0,14027,0,16527 +137810,1,6,0,-1,-1,0,22868,0,18416 +137811,1,6,0,-1,-1,0,19053,0,15729 +137812,1,6,0,-1,-1,0,19074,0,15747 +137813,1,6,0,-1,-1,0,16642,0,12682 +137814,1,6,0,-1,-1,0,9072,0,7290 +137815,1,6,0,-1,-1,0,19107,0,15781 +137816,1,1,0,-1,-1,0,9334,0,16936 +137817,1,6,0,-1,-1,0,9513,0,18160 +137818,1,6,0,-1,-1,0,15933,0,16110 +137819,1,6,0,-1,-1,0,15915,0,16111 +137820,1,6,0,-1,-1,0,3699,0,4204 +137821,1,6,0,-1,-1,0,2941,0,4205 +137822,1,6,0,-1,-1,0,16655,0,12699 +137823,1,6,0,-1,-1,0,18446,0,14500 +137824,1,6,0,-1,-1,0,20029,0,16223 +137825,1,6,0,-1,-1,0,20051,0,16243 +137826,1,6,0,-1,-1,0,21923,0,17709 +137827,1,6,0,-1,-1,0,22923,0,18516 +137828,1,6,0,-1,-1,0,7322,0,4151 +137829,1,6,0,0,0,0,548,0,1058 +137830,1,1,0,-1,-1,0,14089,0,16939 +137831,1,6,0,-1,-1,0,19098,0,15773 +137832,1,6,0,-1,-1,0,19065,0,15739 +137833,0,1,0,-1,-1,0,9393,0,16740 +137834,1,6,0,-1,-1,0,19801,0,16665 +137835,1,6,0,-1,-1,0,19790,0,16041 +137836,1,6,0,-1,-1,0,19791,0,16042 +137837,1,1,0,-1,-1,0,15806,0,16462 +137838,1,6,0,-1,-1,0,23800,0,19445 +137839,1,6,0,-1,-1,0,22727,0,18252 +137840,1,6,0,-1,-1,0,7929,0,16112 +137841,0,1,0,-1,-1,0,18049,0,17750 +137842,1,6,0,-1,-1,0,19831,0,16055 +137843,1,6,0,-1,-1,0,20008,0,16214 +137844,1,6,0,-1,-1,0,20626,0,16767 +137845,1,1,0,-1,-1,0,15810,0,16566 +137846,1,6,0,-1,-1,0,22870,0,18418 +137847,0,1,0,-1,-1,0,9416,0,15119 +137848,0,1,0,-1,-1,0,15810,0,16466 +137849,1,1,0,-1,-1,0,15810,0,16467 +137850,1,1,0,-1,-1,0,9336,0,16846 +137851,1,6,0,-1,-1,0,16657,0,12700 +137852,1,6,0,-1,-1,0,22867,0,18415 +137853,1,6,0,-1,-1,0,18408,0,14471 +137854,1,6,0,-1,-1,0,19083,0,15757 +137855,1,6,0,-1,-1,0,19094,0,15770 +137856,1,6,0,-1,-1,0,21143,0,17200 +137857,1,6,0,-1,-1,0,21144,0,17201 +137858,1,6,0,-1,-1,0,20023,0,16245 +137859,1,6,0,-1,-1,0,20010,0,16246 +137860,1,6,0,-1,-1,0,6063,0,8995 +137861,0,1,0,-1,-1,0,9395,0,15812 +137862,1,6,0,-1,-1,0,23665,0,19217 +137863,1,6,0,-1,-1,0,23666,0,19219 +137864,1,6,0,-1,-1,0,23129,0,18661 +137865,1,6,0,-1,-1,0,996,0,9029 +137866,1,1,0,-1,-1,0,15806,0,16468 +137867,1,6,0,-1,-1,0,19101,0,15775 +137868,1,6,0,-1,-1,0,20872,0,17049 +137869,1,6,0,-1,-1,0,21913,0,17706 +137870,1,6,0,-1,-1,0,23802,0,19447 +137871,1,6,0,-1,-1,0,22732,0,18257 +137872,0,1,0,-1,-1,0,9396,0,15824 +137873,0,1,0,-1,-1,0,9394,0,14410 +137874,1,6,0,-1,-1,0,19064,0,15738 +137875,1,1,0,-1,-1,0,15806,0,16568 +137876,1,6,0,-1,-1,0,20890,0,17059 +137877,1,6,0,-1,-1,0,18560,0,14526 +137878,1,1,0,-1,-1,0,9329,0,17063 +137879,1,6,0,-1,-1,0,10840,0,16113 +137880,0,1,0,-1,-1,0,9343,0,17748 +137881,1,6,0,-1,-1,0,16967,0,12818 +137882,1,6,0,-1,-1,0,1034,0,8936 +137883,1,6,0,-1,-1,0,639,0,8937 +137884,1,6,0,-1,-1,0,20848,0,17017 +137885,1,6,0,-1,-1,0,20849,0,17018 +137886,1,6,0,-1,-1,0,20025,0,16253 +137887,2,1,0,-1,-1,0,14027,0,16426 +137888,1,6,0,-1,-1,0,23028,0,18600 +137889,1,6,0,-1,-1,0,21945,0,17724 +137890,1,6,0,-1,-1,0,25292,0,21290 +137891,1,6,0,-1,-1,0,16987,0,12832 +137892,1,6,0,-1,-1,0,23632,0,19203 +137893,1,6,0,-1,-1,0,24399,0,20040 +137894,0,1,0,-1,-1,0,9393,0,14401 +137895,1,6,0,-1,-1,0,6778,0,4230 +137896,1,6,0,-1,-1,0,23787,0,19442 +137897,1,6,0,-1,-1,0,23636,0,19206 +137898,1,6,0,-1,-1,0,18413,0,14477 +137899,1,6,0,-1,-1,0,18421,0,14485 +137900,1,6,0,-1,-1,0,23628,0,19202 +137901,1,6,0,-1,-1,0,20009,0,16218 +137902,2,1,0,-1,-1,0,14049,0,16938 +137903,2,1,0,-1,-1,0,9335,0,16463 +137904,1,6,0,-1,-1,0,24367,0,20013 +137905,1,1,0,-1,-1,0,9331,0,20199 +137906,1,6,0,-1,-1,0,22711,0,18239 +137907,1,6,0,-1,-1,0,20031,0,16250 +137908,1,6,0,-1,-1,0,16742,0,12725 +137909,1,6,0,-1,-1,0,23652,0,19211 +137910,1,6,0,-1,-1,0,23653,0,19212 +137911,1,6,0,-1,-1,0,23081,0,18657 +137912,1,6,0,-1,-1,0,25316,0,21287 +137913,1,6,0,-1,-1,0,25290,0,21288 +137914,1,6,0,-1,-1,0,25297,0,21294 +137915,1,6,0,-1,-1,0,21161,0,18592 +137916,1,6,0,-1,-1,0,20020,0,16215 +137917,0,1,0,-1,-1,0,9396,0,4121 +137918,1,6,0,-1,-1,0,23708,0,19331 +137919,1,1,0,-1,-1,0,9141,0,20200 +137920,1,6,0,-1,-1,0,23638,0,19208 +137921,1,6,0,-1,-1,0,23639,0,19209 +137922,1,6,0,-1,-1,0,23650,0,19210 +137923,1,1,0,-1,-1,0,15806,0,16569 +137924,1,6,0,-1,-1,0,2548,0,2700 +137925,1,6,0,-1,-1,0,25315,0,21285 +137926,1,6,0,-1,-1,0,20024,0,16220 +137927,1,6,0,-1,-1,0,20016,0,16222 +137928,1,6,0,-1,-1,0,23709,0,19332 +137929,1,6,0,-1,-1,0,23710,0,19333 +137930,1,1,0,-1,-1,0,9331,0,20154 +137931,1,1,0,-1,-1,0,9329,0,20155 +137932,1,6,0,-1,-1,0,24356,0,20000 +137933,1,6,0,-1,-1,0,24357,0,20001 +137934,1,6,0,-1,-1,0,23637,0,19207 +137935,1,6,0,-1,-1,0,23667,0,19220 +137936,1,6,0,-1,-1,0,23077,0,18652 +137937,1,6,0,-1,-1,0,22761,0,18267 +137938,1,6,0,-1,-1,0,22902,0,18487 +137939,1,6,0,-1,-1,0,24091,0,19764 +137940,1,1,0,-1,-1,0,9141,0,20122 +137941,1,6,0,-1,-1,0,25357,0,21291 +137942,1,6,0,-1,-1,0,25361,0,21292 +137943,1,6,0,-1,-1,0,12068,0,10313 +137944,1,6,0,-1,-1,0,12085,0,10321 +137945,1,6,0,-1,-1,0,23705,0,19328 +137946,1,6,0,-1,-1,0,13617,0,11151 +137947,1,6,0,-1,-1,0,2795,0,2889 +137948,1,6,0,-1,-1,0,17552,0,13476 +137949,1,6,0,-1,-1,0,21940,0,17720 +137950,1,1,0,-1,-1,0,9332,0,21204 +137951,1,1,0,-1,-1,0,9335,0,19831 +137952,1,6,0,-1,-1,0,23067,0,18649 +137953,1,6,0,-1,-1,0,24093,0,19766 +137954,1,6,0,-1,-1,0,23703,0,19326 +137955,1,6,0,-1,-1,0,19068,0,20253 +137956,1,1,0,-1,-1,0,15809,0,16847 +137957,1,6,0,-1,-1,0,3873,0,10728 +137958,1,6,0,-1,-1,0,7753,0,6328 +137959,1,6,0,-1,-1,0,24368,0,20014 +137960,1,6,0,-1,-1,0,18444,0,14498 +137961,1,6,0,-1,-1,0,23078,0,18653 +137962,1,6,0,-1,-1,0,23079,0,18655 +137963,0,1,0,-1,-1,0,9141,0,9426 +137964,1,6,0,-1,-1,0,23190,0,18731 +137965,1,6,0,-1,-1,0,17554,0,13478 +137966,0,1,0,-1,-1,0,9417,0,17737 +137967,0,1,0,-1,-1,0,14049,0,16941 +137968,1,6,0,-1,-1,0,639,0,8944 +137969,1,6,0,-1,-1,0,20033,0,16248 +137970,1,1,0,-1,-1,0,9332,0,19377 +137971,1,1,0,-1,-1,0,9330,0,21201 +137972,1,1,0,-1,-1,0,9330,0,21202 +137973,1,1,0,-1,-1,0,9331,0,21203 +137974,1,6,0,-1,-1,0,17579,0,13500 +137975,1,6,0,-1,-1,0,9207,0,7452 +137976,1,1,0,-1,-1,0,15810,0,16942 +137977,1,6,0,-1,-1,0,24418,0,20075 +137978,1,6,0,-1,-1,0,1735,0,5162 +137979,1,6,0,-1,-1,0,24123,0,19771 +137980,1,6,0,-1,-1,0,24125,0,19773 +137981,1,6,0,-1,-1,0,3851,0,4349 +137982,1,6,0,-1,-1,0,25288,0,21299 +137983,1,6,0,-1,-1,0,17580,0,13501 +137984,1,6,0,-1,-1,0,980,0,3142 +137985,1,6,0,-1,-1,0,19080,0,20254 +137986,1,6,0,-1,-1,0,23096,0,18654 +137987,1,6,0,-1,-1,0,22757,0,18264 +137988,1,6,0,-1,-1,0,22869,0,18417 +137989,1,6,0,-1,-1,0,543,0,1574 +137990,1,6,0,-1,-1,0,19106,0,15780 +137991,1,6,0,-1,-1,0,23704,0,19327 +137992,1,6,0,-1,-1,0,23706,0,19329 +137993,1,6,0,-1,-1,0,22927,0,18518 +137994,1,6,0,-1,-1,0,23399,0,18949 +137995,1,6,0,-1,-1,0,25311,0,21283 +137996,0,1,0,0,0,0,18036,0,17740 +137997,1,1,0,-1,-1,0,9334,0,16940 +137998,1,6,0,-1,-1,0,24121,0,19769 +137999,1,6,0,-1,-1,0,24122,0,19770 +138000,0,1,0,-1,-1,0,9394,0,3565 +138001,1,6,0,-1,-1,0,19068,0,15742 +138002,1,6,0,-1,-1,0,19070,0,15743 +138003,1,6,0,-1,-1,0,24901,0,20546 +138004,1,6,0,-1,-1,0,24703,0,20382 +138005,1,1,0,-1,-1,0,9142,0,16403 +138006,1,6,0,-1,-1,0,19077,0,15751 +138007,1,6,0,-1,-1,0,21943,0,17722 +138008,1,6,0,-1,-1,0,23066,0,18647 +138009,1,6,0,-1,-1,0,23068,0,18648 +138010,1,1,0,-1,-1,0,9331,0,19621 +138011,1,6,0,-1,-1,0,2090,0,8762 +138012,1,6,0,-1,-1,0,543,0,8869 +138013,1,6,0,-1,-1,0,6392,0,8881 +138014,1,6,0,-1,-1,0,18447,0,14501 +138015,1,6,0,-1,-1,0,18454,0,14511 +138016,1,6,0,-1,-1,0,25304,0,21214 +138017,1,6,0,-1,-1,0,25954,0,21219 +138018,1,6,0,-1,-1,0,19090,0,15764 +138019,1,6,0,-1,-1,0,21849,0,17682 +138020,1,6,0,-1,-1,0,22759,0,18265 +138021,1,6,0,-1,-1,0,3952,0,14639 +138022,1,6,0,-1,-1,0,18240,0,13942 +138023,1,6,0,-1,-1,0,23082,0,18658 +138024,1,6,0,-1,-1,0,6704,0,5788 +138025,1,6,0,-1,-1,0,25073,0,20727 +138026,1,6,0,-1,-1,0,25082,0,20733 +138027,1,6,0,-1,-1,0,25084,0,20735 +138028,0,1,0,-1,-1,0,9393,0,1832 +138029,0,1,0,-1,-1,0,9417,0,17755 +138030,1,1,0,-1,-1,0,9336,0,16937 +138031,1,6,0,-1,-1,0,22480,0,18046 +138032,1,1,0,-1,-1,0,9331,0,20051 +138033,1,1,0,-1,-1,0,9141,0,20156 +138034,1,6,0,-1,-1,0,24902,0,20548 +138035,1,6,0,-1,-1,0,5143,0,4159 +138036,1,6,0,-1,-1,0,25291,0,21289 +138037,1,6,0,-1,-1,0,996,0,9011 +138038,1,6,0,-1,-1,0,24912,0,20553 +138039,1,6,0,-1,-1,0,13817,0,11202 +138040,1,6,0,-1,-1,0,26443,0,21737 +138041,1,6,0,-1,-1,0,25124,0,20758 +138042,1,6,0,-1,-1,0,25659,0,21025 +138043,1,6,0,-1,-1,0,25125,0,20752 +138044,1,6,0,-1,-1,0,25126,0,20753 +138045,1,6,0,-1,-1,0,25127,0,20754 +138046,1,6,0,-1,-1,0,25083,0,20734 +138047,1,6,0,-1,-1,0,25298,0,21295 +138048,1,6,0,-1,-1,0,25299,0,21296 +138049,1,6,0,-1,-1,0,25289,0,21298 +138050,1,6,0,-1,-1,0,2060,0,9017 +138051,1,6,0,-1,-1,0,26279,0,21548 +138052,1,6,0,-1,-1,0,26420,0,21727 +138053,1,6,0,-1,-1,0,26421,0,21728 +138054,1,6,0,-1,-1,0,26423,0,21730 +138055,1,6,0,-1,-1,0,27587,0,22222 +138056,1,6,0,-1,-1,0,26086,0,21369 +138057,1,6,0,-1,-1,0,25146,0,20761 +138058,1,6,0,-1,-1,0,28480,0,22774 +138059,1,6,0,-1,-1,0,24846,0,20506 +138060,1,6,0,-1,-1,0,26417,0,21725 +138061,1,6,0,-1,-1,0,26418,0,21726 +138062,2,1,0,-1,-1,0,15808,0,21366 +138063,2,1,0,-1,-1,0,15807,0,22060 +138064,1,1,0,-1,-1,0,15807,0,22061 +138065,1,6,0,-1,-1,0,25124,0,20751 +138066,1,6,0,-1,-1,0,25347,0,21302 +138067,1,6,0,-1,-1,0,10570,0,8402 +138068,1,6,0,-1,-1,0,23662,0,19215 +138069,1,1,0,-1,-1,0,14027,0,23279 +138070,1,6,0,-1,-1,0,25302,0,21303 +138071,1,6,0,-1,-1,0,25294,0,21304 +138072,1,6,0,-1,-1,0,25295,0,21306 +138073,1,6,0,-1,-1,0,26407,0,21723 +138074,1,6,0,-1,-1,0,24914,0,20554 +138075,1,1,0,-1,-1,0,14049,0,23067 +138076,4,1,0,-1,-1,0,31796,0,22630 +138077,3,1,0,-1,-1,0,31796,0,22631 +138078,4,1,0,-1,-1,0,31796,0,22632 +138079,0,1,0,-1,-1,0,9334,0,20055 +138080,1,6,0,0,0,0,529,0,9053 +138081,1,6,0,0,0,0,943,0,9124 +138082,1,6,0,-1,-1,0,26424,0,21731 +138083,1,6,0,-1,-1,0,27590,0,22221 +138084,1,6,0,-1,-1,0,27683,0,22393 +138085,0,1,0,-1,-1,0,9334,0,23278 +138086,1,6,0,-1,-1,0,24903,0,20547 +138087,1,6,0,-1,-1,0,28462,0,22767 +138088,1,6,0,-1,-1,0,28474,0,22769 +138089,1,6,0,-1,-1,0,28482,0,22772 +138090,1,6,0,-1,-1,0,28220,0,22694 +138091,1,1,0,-1,-1,0,14027,0,23306 +138092,1,1,0,-1,-1,0,14027,0,23251 +138093,1,1,0,-1,-1,0,9329,0,20121 +138094,1,6,0,-1,-1,0,24847,0,20507 +138095,1,6,0,-1,-1,0,24848,0,20508 +138096,1,6,0,-1,-1,0,23707,0,19330 +138097,1,6,0,0,0,0,951,0,9136 +138098,1,6,0,0,0,0,945,0,9143 +138099,2,1,0,-1,-1,0,9335,0,22013 +138100,1,6,0,0,0,0,945,0,9164 +138101,1,6,0,-1,-1,0,30021,0,23689 +138102,1,6,0,-1,-1,0,27660,0,22309 +138103,1,6,0,-1,-1,0,27724,0,22310 +138104,1,6,0,-1,-1,0,25300,0,21300 +138105,1,6,0,-1,-1,0,24850,0,20510 +138106,1,6,0,-1,-1,0,24851,0,20511 +138107,1,6,0,-1,-1,0,24366,0,20012 +138108,0,1,0,-1,-1,0,9330,0,22015 +138109,0,1,0,-1,-1,0,9329,0,22016 +138110,2,1,0,-1,-1,0,14049,0,22438 +138111,1,1,0,-1,-1,0,14049,0,21365 +138112,2,1,0,-1,-1,0,15812,0,21370 +138113,1,6,0,-1,-1,0,28243,0,22704 +138114,1,6,0,-1,-1,0,16658,0,12701 +138115,1,1,0,-1,-1,0,9329,0,20202 +138116,1,6,0,-1,-1,0,24136,0,19776 +138117,1,6,0,-1,-1,0,25309,0,21282 +138118,3,1,0,-1,-1,0,9336,0,22442 +138119,1,6,0,-1,-1,0,26442,0,21738 +138120,1,6,0,-1,-1,0,20012,0,16219 +138121,1,6,0,-1,-1,0,1006,0,9028 +138122,1,6,0,-1,-1,0,24137,0,19777 +138123,1,6,0,-1,-1,0,1088,0,9215 +138124,1,6,0,-1,-1,0,25072,0,20726 +138125,1,1,0,-1,-1,0,15806,0,21367 +138126,1,6,0,-1,-1,0,25306,0,21279 +138127,1,6,0,-1,-1,0,25345,0,21280 +138128,1,6,0,-1,-1,0,28609,0,22890 +138129,1,6,0,-1,-1,0,24092,0,19765 +138130,1,6,0,-1,-1,0,24913,0,20555 +138131,1,6,0,-1,-1,0,27586,0,22219 +138132,1,6,0,-1,-1,0,26422,0,21729 +138133,0,1,0,-1,-1,0,14027,0,21402 +138134,1,1,0,-1,-1,0,9332,0,21403 +138135,1,6,0,-1,-1,0,28244,0,22705 +138136,2,1,0,-1,-1,0,9333,0,21368 +138137,1,1,0,-1,-1,0,9329,0,20091 +138138,1,1,0,-1,-1,0,9141,0,20092 +138139,0,1,0,-1,-1,0,14089,0,22017 +138140,0,1,0,-1,-1,0,9334,0,21596 +138141,1,1,0,-1,-1,0,14027,0,21205 +138142,1,6,0,-1,-1,0,26425,0,21732 +138143,1,6,0,-1,-1,0,26426,0,21733 +138144,1,6,0,-1,-1,0,26428,0,21735 +138145,1,6,0,-1,-1,0,31018,0,24101 +138146,1,6,0,-1,-1,0,27830,0,22390 +138147,1,1,0,-1,-1,0,9334,0,19832 +138148,1,6,0,-1,-1,0,24365,0,20011 +138149,1,6,0,-1,-1,0,24141,0,19781 +138150,1,6,0,-1,-1,0,27585,0,22209 +138151,1,1,0,-1,-1,0,9331,0,20050 +138152,1,6,0,-1,-1,0,26085,0,21358 +138153,1,6,0,-1,-1,0,25128,0,20755 +138154,1,6,0,-1,-1,0,25129,0,20756 +138155,1,6,0,-1,-1,0,27589,0,22220 +138156,1,6,0,-1,-1,0,28219,0,22692 +138157,1,6,0,-1,-1,0,24138,0,19778 +138158,1,6,0,-1,-1,0,24139,0,19779 +138159,1,6,0,-1,-1,0,25296,0,21307 +138160,1,1,0,-1,-1,0,9417,0,20647 +138161,1,6,0,-1,-1,0,25307,0,21281 +138162,1,6,0,-1,-1,0,28242,0,22703 +138163,1,6,0,-1,-1,0,28461,0,22766 +138164,1,6,0,-1,-1,0,24124,0,19772 +138165,1,6,0,-1,-1,0,26403,0,21722 +138166,1,6,0,-1,-1,0,26416,0,21724 +138167,0,1,0,-1,-1,0,15811,0,22961 +138168,0,0,-50,30000,-1,0,45440,0,22728 +138169,1,6,0,-1,-1,0,28327,0,22729 +138170,1,6,0,-1,-1,0,28610,0,22891 +138171,1,6,0,-1,-1,0,28463,0,22768 +138172,1,6,0,-1,-1,0,28473,0,22770 +138173,1,6,0,-1,-1,0,28472,0,22771 +138174,1,6,0,-1,-1,0,28271,0,22739 +138175,1,6,0,-1,-1,0,9942,0,7977 +138176,1,6,0,-1,-1,0,27588,0,22214 +138177,1,6,0,-1,-1,0,26277,0,21547 +138178,1,1,0,-1,-1,0,9331,0,21401 +138179,1,6,0,-1,-1,0,25704,0,21099 +138180,1,6,0,-1,-1,0,25130,0,20757 +138181,1,6,0,-1,-1,0,25074,0,20728 +138182,1,6,0,-1,-1,0,25081,0,20732 +138183,1,1,0,-1,-1,0,9331,0,23293 +138184,3,1,0,-1,-1,0,14052,0,23039 +138185,1,6,0,-1,-1,0,31016,0,24102 +138186,1,1,0,-1,-1,0,14027,0,23252 +138187,1,6,0,-1,-1,0,27832,0,22389 +138188,1,6,0,-1,-1,0,27725,0,22312 +138189,1,6,0,-1,-1,0,29228,0,23320 +138190,3,1,0,-1,-1,0,14052,0,22436 +138191,2,1,0,-1,-1,0,15814,0,22437 +138192,1,6,0,-1,-1,0,28208,0,22685 +138193,1,6,0,-1,-1,0,28222,0,22696 +138194,1,6,0,-1,-1,0,28223,0,22697 +138195,1,1,0,-1,-1,0,15808,0,22439 +138196,0,1,0,-1,-1,0,14049,0,21635 +138197,1,1,0,-1,-1,0,9331,0,22874 +138198,1,1,0,-1,-1,0,15810,0,22440 +138199,2,1,0,-1,-1,0,15807,0,22441 +138200,1,1,0,-1,-1,0,15806,0,22443 +138201,1,6,0,-1,-1,0,27658,0,22307 +138202,0,1,0,-1,-1,0,9334,0,22843 +138203,1,1,0,-1,-1,0,14027,0,23307 +138204,1,1,0,-1,-1,0,9331,0,22875 +138205,1,1,0,-1,-1,0,9331,0,23292 +138206,4,1,0,-1,-1,0,31796,0,22589 +138207,1,6,0,-1,-1,0,28210,0,22683 +138208,1,6,0,-1,-1,0,28205,0,22684 +138209,1,6,0,-1,-1,0,28207,0,22686 +138210,1,6,0,-1,-1,0,28221,0,22695 +138211,1,6,0,-1,-1,0,28224,0,22698 +138212,1,1,0,-1,-1,0,14027,0,22862 +138213,1,6,0,-1,-1,0,27829,0,22388 +138214,1,1,0,-1,-1,0,21361,0,22242 +138215,1,6,0,-1,-1,0,28612,0,22897 +138216,0,1,0,-1,-1,0,9331,0,22010 +138217,0,1,0,-1,-1,0,9331,0,22011 +138219,1,6,0,-1,-1,0,3453,0,3832 +138220,1,6,0,-1,-1,0,17636,0,13520 +138221,1,6,0,-1,-1,0,18241,0,13941 +138222,1,6,0,-1,-1,0,18417,0,14481 +138223,1,6,0,-1,-1,0,19080,0,15754 +138224,1,6,0,-1,-1,0,19815,0,16050 +138225,1,6,0,-1,-1,0,15853,0,12227 +138226,1,6,0,-1,-1,0,16649,0,12690 +138227,1,6,0,-1,-1,0,16665,0,12707 +138228,1,6,0,-1,-1,0,16732,0,12719 +138229,1,6,0,-1,-1,0,16994,0,12838 +138230,1,6,0,-1,-1,0,3939,0,13309 +138231,1,6,0,-1,-1,0,17563,0,13486 +138232,1,6,0,-1,-1,0,17573,0,13493 +138233,1,6,0,-1,-1,0,18422,0,14486 +138234,1,6,0,-1,-1,0,20014,0,16216 +138235,1,6,0,-1,-1,0,20026,0,16221 +138236,1,6,0,-1,-1,0,20854,0,17023 +138237,1,6,0,-1,-1,0,22750,0,18260 +138238,1,6,0,-1,-1,0,23799,0,19444 +138239,1,6,0,-1,-1,0,23801,0,19446 +138240,1,6,0,-1,-1,0,18424,0,14489 +138241,1,6,0,-1,-1,0,18449,0,14504 +138242,1,6,0,-1,-1,0,18453,0,14508 +138243,1,6,0,-1,-1,0,20015,0,16224 +138244,1,6,0,-1,-1,0,20034,0,16252 +138245,1,6,0,-1,-1,0,20032,0,16254 +138246,1,6,0,-1,-1,0,20916,0,17062 +138247,1,6,0,-1,-1,0,22797,0,18291 +138248,1,6,0,-1,-1,0,22795,0,18292 +138249,1,6,0,-1,-1,0,23071,0,18651 +138250,1,6,0,-1,-1,0,23080,0,18656 +138251,1,6,0,-1,-1,0,23629,0,19204 +138252,1,6,0,-1,-1,0,23633,0,19205 +138253,1,6,0,-1,-1,0,23663,0,19218 +138254,1,6,0,-1,-1,0,23803,0,19448 +138255,1,6,0,-1,-1,0,23804,0,19449 +138256,0,1,0,-1,-1,0,9334,0,20158 +138257,1,6,0,-1,-1,0,2549,0,2701 +138258,1,6,0,-1,-1,0,647,0,1151 +138259,1,6,0,-1,-1,0,4987,0,1139 +138260,1,6,0,0,0,0,526,0,1033 +138261,1,6,0,-1,-1,0,8925,0,1882 +138262,1,6,0,-1,-1,0,1461,0,3102 +138263,1,6,0,-1,-1,0,6418,0,5488 +138264,1,6,0,-1,-1,0,5615,0,5674 +138265,1,6,0,-1,-1,0,7153,0,5974 +138266,1,6,0,-1,-1,0,11464,0,9295 +138267,1,6,0,-1,-1,0,11459,0,9303 +138268,1,6,0,-1,-1,0,12259,0,10424 +138269,1,6,0,-1,-1,0,13882,0,11206 +138270,1,6,0,-1,-1,0,13915,0,11208 +138271,1,6,0,-1,-1,0,24140,0,19780 +138272,1,6,0,-1,-1,0,24849,0,20509 +138273,1,6,0,-1,-1,0,24940,0,20576 +138274,1,6,0,-1,-1,0,25078,0,20729 +138275,1,6,0,-1,-1,0,25079,0,20730 +138276,1,6,0,-1,-1,0,25080,0,20731 +138277,1,6,0,-1,-1,0,25086,0,20736 +138278,1,6,0,-1,-1,0,25314,0,21284 +138279,1,6,0,-1,-1,0,25359,0,21293 +138280,1,6,0,-1,-1,0,25286,0,21297 +138281,1,6,0,-1,-1,0,26087,0,21371 +138282,1,6,0,-1,-1,0,26427,0,21734 +138283,1,6,0,-1,-1,0,27659,0,22308 +138284,1,6,0,-1,-1,0,27837,0,22392 +138285,1,6,0,-1,-1,0,28209,0,22687 +138286,1,6,0,-1,-1,0,28481,0,22773 +138287,1,6,0,-1,-1,0,3966,0,4415 +138288,1,6,0,-1,-1,0,7224,0,6046 +138289,1,6,0,-1,-1,0,7771,0,6345 +138290,1,6,0,-1,-1,0,7867,0,6377 +138291,1,6,0,-1,-1,0,3772,0,7613 +138292,1,6,0,-1,-1,0,10542,0,8398 +138293,1,6,0,-1,-1,0,1126,0,8743 +138294,1,6,0,-1,-1,0,1122,0,9214 +138295,1,6,0,-1,-1,0,1088,0,9225 +138296,1,6,0,-1,-1,0,6226,0,9228 +138297,1,6,0,-1,-1,0,12617,0,10607 +138298,1,6,0,-1,-1,0,13620,0,11152 +138299,1,6,0,-1,-1,0,13698,0,11166 +138300,1,6,0,-1,-1,0,3777,0,4300 +138301,1,6,0,-1,-1,0,3860,0,4352 +138302,1,6,0,-1,-1,0,3864,0,4356 +138303,1,6,0,-1,-1,0,10566,0,8406 +138304,1,6,0,0,0,0,1075,0,8792 +138305,1,6,0,-1,-1,0,604,0,8807 +138306,1,6,0,-1,-1,0,5143,0,8812 +138307,1,6,0,-1,-1,0,7322,0,8816 +138308,1,6,0,-1,-1,0,205,0,8844 +138309,1,6,0,-1,-1,0,3140,0,8860 +138310,1,6,0,-1,-1,0,604,0,8863 +138311,1,6,0,-1,-1,0,205,0,8893 +138312,1,6,0,-1,-1,0,639,0,8917 +138313,1,6,0,-1,-1,0,1006,0,8974 +138314,1,6,0,-1,-1,0,996,0,9023 +138315,1,6,0,0,0,0,899,0,9065 +138316,1,6,0,0,0,0,951,0,9133 +138317,1,6,0,0,0,0,945,0,9138 +138318,1,6,0,-1,-1,0,3515,0,3875 +138319,1,6,0,-1,-1,0,3771,0,4297 +138328,0,0,0,-1,-1,0,348699,0,184871 +138372,0,0,-1,-1,3600000,1928,349858,0,184937 +138373,0,0,0,-1,-1,0,349863,0,184938 +138404,2,5,0,-1,-1,0,38132,0,31088 +138415,0,0,-50,0,120000,24,351355,0,185848 +138416,0,0,-50,0,120000,24,351357,0,185849 +138417,0,0,-50,0,120000,24,351358,0,185850 +138418,0,0,-50,0,120000,24,351359,0,185851 +138419,0,0,-50,0,120000,24,351360,0,185852 +138429,0,0,-1,-1,-1,0,483,0,185922 +138430,1,6,0,-1,-1,0,351766,0,185922 +138431,0,0,-1,-1,-1,0,483,0,185923 +138432,1,6,0,-1,-1,0,351768,0,185923 +138433,0,0,-1,-1,-1,0,483,0,185924 +138434,1,6,0,-1,-1,0,351769,0,185924 +138435,0,0,-1,-1,-1,0,483,0,185925 +138436,1,6,0,-1,-1,0,351770,0,185925 +138437,0,0,-1,-1,-1,0,483,0,185926 +138438,1,6,0,-1,-1,0,351771,0,185926 +138457,0,0,-1,-1,-1,0,352055,0,185956 +138462,0,0,0,-1,-1,0,352164,0,185964 +138469,0,1,0,-1,-1,0,352334,0,185985 +138472,0,1,0,-1,-1,0,352338,0,185987 +138473,0,0,0,600000,0,0,352340,0,185988 +138484,0,1,0,-1,-1,0,352504,0,186052 +138485,0,1,0,-1,-1,0,352574,0,186053 +138486,0,1,0,-1,-1,0,352508,0,186054 +138488,0,1,0,-1,-1,0,352512,0,186065 +138489,0,1,0,-1,-1,0,352513,0,186066 +138490,0,1,0,-1,-1,0,352580,0,186067 +138491,0,1,0,-1,-1,0,352515,0,186069 +138492,0,1,0,-1,-1,0,352516,0,186071 +138493,0,1,0,-1,-1,0,352517,0,186072 +138494,0,1,0,-1,-1,0,352522,0,186073 +138495,0,1,0,-1,-1,0,4070,0,185986 +138496,1,1,0,-1,-1,0,352341,0,185988 +138498,0,1,0,-1,-1,0,9342,0,186023 +138500,0,1,0,-1,-1,0,352511,0,186060 +138512,0,1,0,-1,-1,0,352511,0,186163 +138805,0,0,-1,-1,-1,0,483,0,186683 +138806,1,6,0,-1,-1,0,27927,0,186683 +138979,0,0,-1,-1,-1,0,483,0,187048 +138980,1,6,0,-1,-1,0,351769,0,187048 +138981,0,0,-1,-1,-1,0,483,0,187049 +138982,1,6,0,-1,-1,0,351768,0,187049 +139011,0,5,0,-1,-1,0,356105,0,187129 +139012,0,5,0,-1,-1,0,356105,0,187130 diff --git a/HermesProxy/CSV/ItemIdToDisplayId1.csv b/HermesProxy/CSV/ItemIdToDisplayId1.csv new file mode 100644 index 00000000..cecb99f1 --- /dev/null +++ b/HermesProxy/CSV/ItemIdToDisplayId1.csv @@ -0,0 +1,17531 @@ +Entry,DisplayId +25,1542 +35,472 +36,5194 +37,14029 +38,9891 +39,9892 +40,10141 +41,4553 +42,4562 +43,10272 +44,9937 +45,3265 +46,4528 +47,9915 +48,9913 +49,9906 +50,4535 +51,9946 +52,9945 +53,9944 +54,4541 +55,9929 +56,12647 +57,12645 +58,4499 +59,3261 +60,16891 +61,16953 +77,2645 +79,16847 +80,16854 +85,16883 +86,4525 +87,261 +88,374 +89,7848 +90,4519 +91,368 +92,249 +93,369 +94,4522 +95,242 +97,12662 +98,4524 +99,257 +100,372 +101,373 +102,4523 +103,5901 +104,370 +105,371 +113,365 +114,245 +115,4517 +117,2473 +118,15710 +119,5702 +120,10006 +121,10008 +122,4538 +123,383 +124,3268 +125,3269 +126,4543 +127,9996 +128,396 +129,9977 +130,4572 +131,4542 +132,295 +133,7912 +134,387 +135,386 +136,311 +137,4540 +138,9346 +139,9988 +140,9992 +141,4507 +143,2080 +146,4544 +147,9975 +148,9976 +149,4569 +150,392 +151,393 +152,4570 +153,10050 +154,10058 +155,4571 +156,394 +157,395 +159,18084 +182,7038 +184,362 +193,16579 +194,16580 +195,16582 +200,16777 +201,16778 +202,16780 +203,16779 +209,17140 +210,14444 +236,14278 +237,14476 +238,14474 +239,14475 +285,16101 +286,10400 +287,12745 +414,21904 +422,6352 +527,7090 +537,6629 +555,11206 +556,6625 +647,20190 +710,16936 +711,16581 +714,14445 +718,6986 +719,16970 +720,2368 +723,7369 +724,6385 +725,6671 +727,26577 +728,1102 +729,7407 +730,7394 +731,8802 +732,7395 +733,6428 +734,7093 +735,7093 +737,926 +738,1297 +739,11994 +740,11998 +741,7391 +742,928 +743,929 +744,18059 +745,1102 +746,3865 +748,1102 +750,1116 +751,1515 +752,1272 +753,20094 +754,20218 +755,6677 +756,6264 +761,1208 +763,17007 +765,18088 +766,19621 +767,20443 +768,5012 +769,6348 +770,6630 +771,1225 +772,7066 +773,7137 +774,7353 +776,6452 +777,959 +778,6259 +779,7714 +780,6628 +781,19644 +782,1329 +783,6687 +784,1438 +785,7341 +786,7391 +787,24697 +788,5750 +789,19699 +790,19401 +791,20334 +792,16855 +793,14449 +794,14450 +795,14154 +796,22973 +797,17068 +798,22972 +799,2106 +804,2588 +805,2586 +806,2585 +807,7356 +808,7353 +809,20033 +810,19726 +811,19137 +812,20257 +813,6618 +814,18084 +816,6472 +818,7413 +820,6470 +821,17102 +823,7014 +826,19271 +827,3498 +828,2584 +829,1272 +832,6847 +833,22978 +835,1007 +836,1007 +837,14466 +838,14468 +839,14467 +840,16821 +841,1270 +842,7015 +843,14470 +844,2101 +845,9640 +846,14472 +847,1019 +848,697 +849,6869 +850,6871 +851,22077 +852,8287 +853,22102 +854,22147 +855,1281 +856,1025 +857,4056 +858,15711 +859,9880 +860,3443 +862,18397 +863,19213 +864,26579 +865,5212 +866,20357 +867,17180 +868,19713 +869,5163 +870,33458 +871,19235 +872,19242 +873,20298 +875,6423 +876,1680 +877,7099 +878,9200 +880,20382 +883,7088 +884,6368 +885,14036 +886,20093 +887,6680 +888,17182 +889,3022 +890,20386 +892,16950 +893,959 +894,6642 +895,7103 +896,959 +897,17011 +898,959 +899,6459 +900,7014 +901,7014 +902,7014 +903,7014 +905,1057 +906,1058 +907,6480 +908,6545 +909,6557 +910,3024 +911,28628 +913,20170 +914,2829 +915,1272 +916,7589 +917,1080 +918,1283 +920,19703 +921,7588 +922,22097 +923,22080 +924,22131 +925,4351 +926,22108 +927,22106 +928,22151 +929,15712 +930,1283 +931,1183 +932,6430 +933,1282 +934,19405 +935,8274 +936,5215 +937,20329 +938,7601 +939,7588 +940,16676 +941,6513 +942,9835 +943,20256 +944,20253 +945,859 +948,859 +951,1093 +954,3331 +955,2616 +956,7084 +957,7286 +958,7084 +960,7084 +961,6387 +962,6385 +964,9744 +965,981 +966,1103 +967,1103 +968,1103 +973,1103 +974,1103 +975,1103 +976,1103 +980,1103 +981,1399 +983,4878 +985,1103 +986,1103 +989,1103 +992,1103 +994,1103 +996,3453 +997,859 +1002,1103 +1004,1103 +1006,224 +1008,1550 +1009,8583 +1010,20440 +1011,19273 +1013,1236 +1014,1183 +1015,6348 +1016,6619 +1017,1116 +1018,1121 +1019,1272 +1020,13552 +1021,13551 +1022,15299 +1023,15297 +1024,15304 +1025,15302 +1026,15305 +1027,15294 +1028,13275 +1029,5563 +1030,5563 +1031,5563 +1032,5563 +1033,5563 +1034,5563 +1035,5563 +1036,5563 +1037,5563 +1038,5563 +1041,16208 +1042,7015 +1043,7015 +1044,7015 +1046,6596 +1047,6595 +1048,5563 +1049,5563 +1052,5563 +1053,5563 +1057,5563 +1058,5563 +1061,5563 +1063,5563 +1072,18080 +1074,6619 +1075,7236 +1076,6012 +1077,9836 +1078,811 +1080,25475 +1081,7345 +1082,6406 +1083,7133 +1084,1143 +1085,1143 +1086,1143 +1087,1143 +1088,1143 +1089,1143 +1090,1143 +1091,1143 +1092,1143 +1093,1143 +1095,1143 +1096,1143 +1099,1143 +1100,1143 +1101,1143 +1102,1143 +1105,1143 +1108,1143 +1109,1143 +1111,1143 +1112,1143 +1113,6413 +1114,6343 +1115,7097 +1116,6011 +1117,7453 +1119,18077 +1121,703 +1122,6494 +1123,6494 +1124,6494 +1125,6494 +1127,1816 +1128,1150 +1129,7129 +1130,1288 +1131,9557 +1132,16208 +1133,16207 +1134,16207 +1136,1155 +1138,1155 +1139,1155 +1141,1155 +1144,1155 +1146,1155 +1149,1155 +1150,1155 +1151,1155 +1154,6833 +1155,20327 +1156,9839 +1157,5066 +1158,19643 +1159,4994 +1161,1544 +1162,13219 +1163,13218 +1164,634 +1165,6422 +1166,2208 +1167,18506 +1168,30993 +1169,18816 +1170,8647 +1171,12707 +1172,12313 +1173,6777 +1174,6956 +1175,6659 +1176,6412 +1177,6400 +1178,6336 +1179,18090 +1180,1093 +1181,2616 +1182,6852 +1183,16927 +1184,6510 +1186,6503 +1187,6415 +1189,963 +1190,15120 +1191,1816 +1192,13277 +1193,27782 +1194,22093 +1195,7495 +1196,22114 +1197,5226 +1198,22095 +1199,6014 +1200,18663 +1201,2161 +1202,2329 +1203,2594 +1204,1644 +1205,18078 +1206,7393 +1207,5223 +1208,2616 +1210,7401 +1211,14260 +1212,2637 +1213,3613 +1214,19625 +1215,16942 +1216,9559 +1217,7280 +1218,5527 +1219,20122 +1220,19232 +1221,568 +1222,6002 +1224,1246 +1228,1246 +1229,1246 +1231,1246 +1232,1246 +1238,1246 +1239,1246 +1243,1246 +1244,1246 +1245,1246 +1246,1246 +1250,1246 +1251,11907 +1252,2616 +1253,6707 +1254,24380 +1255,1262 +1256,7078 +1257,1656 +1258,6511 +1259,30392 +1260,1310 +1261,6009 +1262,7923 +1263,22215 +1264,5530 +1265,20156 +1266,4909 +1267,6359 +1268,2357 +1269,6367 +1270,23113 +1272,3396 +1273,12723 +1274,6661 +1275,1019 +1276,2210 +1279,13255 +1280,15298 +1281,3337 +1282,15324 +1283,811 +1284,7914 +1287,6447 +1288,4826 +1292,8466 +1293,3034 +1294,3035 +1296,5195 +1297,19035 +1298,6305 +1299,16717 +1300,20391 +1302,17174 +1303,6871 +1304,16818 +1306,11387 +1307,811 +1309,12334 +1310,16971 +1311,8513 +1312,8576 +1313,6458 +1314,17179 +1315,6524 +1317,20377 +1318,19290 +1319,14437 +1321,6335 +1322,6373 +1323,1301 +1324,7196 +1325,6524 +1326,2661 +1327,3093 +1328,1317 +1332,1317 +1334,1317 +1335,1317 +1339,1317 +1341,1317 +1349,7918 +1350,6358 +1351,16897 +1352,7013 +1353,3031 +1354,8776 +1355,23014 +1356,924 +1357,1322 +1358,7593 +1359,6751 +1360,7000 +1361,7594 +1362,7595 +1363,13223 +1364,14339 +1366,14338 +1367,14354 +1368,17184 +1369,14335 +1370,14336 +1371,5495 +1372,23054 +1374,16659 +1376,23090 +1377,16657 +1378,16656 +1379,5494 +1380,12426 +1381,3023 +1382,19636 +1383,8495 +1384,1546 +1385,8593 +1386,19247 +1387,20087 +1388,20450 +1389,8575 +1391,20410 +1392,3642 +1394,5204 +1395,9924 +1396,3260 +1397,3587 +1398,1357 +1399,6395 +1400,6418 +1401,18088 +1402,6334 +1403,6499 +1404,6499 +1405,5540 +1406,5638 +1407,3032 +1408,3033 +1409,3032 +1410,3032 +1411,20442 +1412,20074 +1413,1547 +1414,19525 +1415,19613 +1416,8495 +1417,8501 +1418,14344 +1419,14353 +1420,4471 +1421,23083 +1422,14345 +1423,14346 +1424,7836 +1425,14190 +1427,16798 +1429,23130 +1430,16797 +1431,16796 +1432,2539 +1433,16795 +1434,6383 +1435,2960 +1436,17144 +1438,25943 +1440,8570 +1443,6522 +1444,6504 +1445,10167 +1446,6841 +1447,14438 +1448,6842 +1449,9823 +1450,1026 +1451,1249 +1453,9825 +1454,8457 +1455,22214 +1457,19683 +1458,8601 +1459,19136 +1460,20109 +1461,19375 +1462,9846 +1464,6627 +1465,20594 +1467,1361 +1468,6697 +1469,20154 +1470,1025 +1472,6508 +1473,20402 +1475,6693 +1476,6619 +1477,3331 +1478,1093 +1479,16710 +1480,9381 +1481,25595 +1482,20089 +1483,9117 +1484,9122 +1485,7464 +1486,9889 +1487,6344 +1488,12960 +1489,8676 +1490,6502 +1491,9836 +1492,1301 +1493,5165 +1495,16553 +1497,23094 +1498,14348 +1499,16552 +1500,2539 +1501,16551 +1502,16947 +1503,14846 +1504,17024 +1505,23076 +1506,17077 +1507,17156 +1508,2563 +1509,18466 +1510,19775 +1511,20173 +1512,19226 +1513,20092 +1514,19533 +1515,20421 +1516,8498 +1518,9825 +1519,1438 +1520,1656 +1521,19306 +1522,22239 +1523,5534 +1524,959 +1527,1442 +1528,1443 +1529,1262 +1532,7104 +1533,6358 +1534,1155 +1535,1787 +1536,1155 +1537,1183 +1539,20395 +1544,6498 +1545,2539 +1547,21551 +1554,1103 +1557,18456 +1559,1103 +1560,16856 +1561,12671 +1566,20078 +1567,1103 +1568,1103 +1571,1103 +1574,1103 +1588,5563 +1589,5563 +1591,5563 +1596,18096 +1597,5563 +1598,1464 +1599,1301 +1602,8489 +1603,5563 +1604,20188 +1607,20272 +1608,19743 +1612,6368 +1613,28470 +1619,5563 +1622,6501 +1623,3568 +1624,15340 +1625,26586 +1630,6552 +1637,1102 +1638,6623 +1639,5128 +1640,8526 +1641,1143 +1645,18060 +1648,1143 +1649,1483 +1651,1143 +1652,12642 +1654,7356 +1655,1143 +1656,1102 +1657,1143 +1658,1143 +1659,1795 +1663,1322 +1664,18289 +1672,7095 +1676,1143 +1677,8678 +1678,11269 +1679,5137 +1680,19304 +1681,1246 +1684,13256 +1685,1285 +1686,18096 +1687,1496 +1688,18092 +1689,7354 +1690,1007 +1691,6360 +1692,959 +1693,6655 +1694,6655 +1695,6655 +1696,1498 +1697,6630 +1698,1498 +1699,6665 +1700,7264 +1701,1498 +1702,6349 +1703,6349 +1704,1504 +1705,7380 +1706,6614 +1707,21905 +1708,18114 +1710,15713 +1711,1093 +1712,2616 +1713,23949 +1714,9858 +1715,8683 +1716,16667 +1717,12960 +1718,17137 +1719,7429 +1720,21460 +1721,8581 +1722,15467 +1724,2592 +1725,2592 +1726,20749 +1727,12827 +1728,19997 +1729,2588 +1730,6902 +1731,6903 +1732,6904 +1733,15272 +1734,6905 +1735,687 +1736,6906 +1737,977 +1738,6902 +1739,6903 +1740,6904 +1741,15065 +1742,6905 +1743,687 +1744,6914 +1745,977 +1746,6902 +1747,6903 +1748,6904 +1749,15074 +1750,6905 +1751,687 +1752,6914 +1753,977 +1754,6902 +1755,6903 +1756,6904 +1757,15181 +1758,6905 +1759,687 +1760,6914 +1761,977 +1764,7578 +1766,23095 +1767,14065 +1768,14064 +1769,16786 +1770,14378 +1772,3757 +1774,23093 +1775,14370 +1776,12930 +1777,14371 +1778,14377 +1780,16820 +1782,23102 +1783,14373 +1784,14374 +1785,14121 +1786,14376 +1787,14360 +1788,16990 +1789,3653 +1790,23050 +1791,972 +1792,6731 +1793,14361 +1794,14272 +1795,16935 +1796,16992 +1797,17015 +1798,23058 +1799,17066 +1800,16967 +1801,15002 +1802,16895 +1803,16945 +1804,16998 +1805,17022 +1806,23072 +1807,17072 +1808,16977 +1809,14205 +1810,14418 +1811,20037 +1812,19245 +1813,20413 +1814,19534 +1815,5217 +1816,8495 +1817,20164 +1818,20183 +1819,14039 +1820,19535 +1821,5151 +1822,20385 +1823,6794 +1824,19292 +1825,19784 +1826,8587 +1827,8482 +1828,19369 +1829,15591 +1830,4129 +1831,20361 +1832,16845 +1835,14443 +1836,14249 +1839,17126 +1840,17170 +1843,14469 +1844,14471 +1845,6864 +1846,13617 +1849,16914 +1850,14282 +1851,6340 +1852,6985 +1853,10410 +1854,6497 +1875,8604 +1877,1317 +1878,1317 +1880,1317 +1882,1317 +1886,1317 +1893,19234 +1894,3029 +1895,7488 +1896,7487 +1897,7485 +1899,7483 +1900,7492 +1901,7440 +1902,7441 +1903,7439 +1904,7429 +1905,7428 +1906,12236 +1907,10654 +1908,1600 +1909,7426 +1910,7493 +1911,7494 +1912,6509 +1913,5009 +1914,6505 +1915,1183 +1917,20435 +1918,6706 +1922,1283 +1923,1625 +1924,2618 +1925,20114 +1926,5225 +1927,19276 +1928,20415 +1929,16848 +1930,23067 +1931,1645 +1933,20418 +1934,6774 +1935,20471 +1936,20399 +1937,5040 +1938,8565 +1939,18084 +1940,18084 +1941,8383 +1942,18080 +1943,697 +1944,17062 +1945,17189 +1946,20919 +1948,1661 +1950,7352 +1951,8279 +1955,6907 +1956,7236 +1957,1684 +1958,1515 +1959,14038 +1960,6832 +1961,1685 +1962,6565 +1963,7350 +1965,3846 +1968,1695 +1969,7001 +1970,1805 +1971,7128 +1972,924 +1973,6506 +1974,16901 +1975,20179 +1976,8590 +1977,1244 +1978,12813 +1979,18793 +1980,9840 +1981,8668 +1982,20191 +1983,7490 +1984,1705 +1985,1706 +1986,20638 +1987,7155 +1988,25892 +1990,5533 +1991,18269 +1992,21612 +1993,14436 +1994,19129 +1995,1496 +1996,9840 +1997,16670 +1998,20356 +1999,1330 +2000,20251 +2002,3337 +2003,1244 +2004,7138 +2005,7270 +2006,7270 +2007,7270 +2008,7270 +2011,20120 +2012,6507 +2013,20373 +2014,5176 +2015,19255 +2016,1727 +2017,6738 +2018,20088 +2020,20492 +2021,18650 +2023,7481 +2024,22096 +2025,22115 +2026,8593 +2027,22079 +2028,22119 +2029,19281 +2030,22146 +2032,16887 +2033,10711 +2034,12699 +2035,5161 +2036,17054 +2037,11447 +2038,13248 +2039,6012 +2040,18399 +2041,8703 +2042,20379 +2043,6011 +2044,19220 +2045,13537 +2046,22226 +2047,8473 +2048,19770 +2050,7355 +2051,1755 +2052,1755 +2053,1757 +2054,19299 +2055,8579 +2056,1758 +2057,20175 +2058,19611 +2059,22991 +2060,1762 +2064,19650 +2065,20212 +2066,19203 +2067,20431 +2069,16868 +2070,6353 +2071,18084 +2072,20363 +2073,19134 +2074,20168 +2075,5218 +2077,28578 +2078,20157 +2079,19637 +2080,19400 +2081,6537 +2082,2588 +2084,20152 +2085,1116 +2087,17095 +2088,6455 +2089,20407 +2091,6396 +2092,6442 +2098,28718 +2099,28636 +2100,8258 +2101,21328 +2102,1816 +2103,26499 +2104,5999 +2105,10005 +2106,1818 +2107,845 +2108,8662 +2109,977 +2110,12674 +2112,14279 +2113,924 +2114,16654 +2115,3237 +2117,16576 +2119,16969 +2120,8969 +2121,16575 +2122,14425 +2123,14426 +2124,14427 +2125,17176 +2126,14429 +2127,14430 +2128,2380 +2129,18662 +2130,22118 +2131,22075 +2132,22149 +2133,18480 +2134,22101 +2136,18085 +2137,6437 +2138,6460 +2139,22135 +2140,6440 +2141,8655 +2142,17117 +2143,2355 +2144,3602 +2145,14480 +2146,14481 +2147,7419 +2148,6926 +2149,6972 +2150,6973 +2151,6975 +2152,2989 +2153,8683 +2154,1143 +2156,16858 +2158,14478 +2159,14479 +2160,14477 +2161,1143 +2162,963 +2163,20291 +2164,20312 +2165,23054 +2166,685 +2167,17178 +2168,16713 +2169,20347 +2170,3127 +2172,9895 +2173,28227 +2175,8534 +2176,1926 +2177,1927 +2178,7482 +2179,7420 +2180,7486 +2181,7489 +2182,7438 +2183,7427 +2184,7434 +2186,4545 +2187,3019 +2188,3020 +2189,1938 +2191,7087 +2194,8567 +2195,6432 +2196,7462 +2197,7443 +2198,7465 +2199,7474 +2200,7466 +2201,7473 +2202,7463 +2203,8506 +2204,20038 +2205,20153 +2206,6445 +2207,22137 +2208,22142 +2209,22139 +2210,2552 +2211,18656 +2212,2553 +2213,18673 +2214,17884 +2215,18670 +2216,18486 +2217,18665 +2218,20451 +2219,18485 +2220,18729 +2221,18484 +2222,2559 +2223,1102 +2224,6432 +2225,20470 +2226,20372 +2227,22219 +2230,6930 +2231,16671 +2232,4272 +2233,18489 +2234,8677 +2235,20598 +2236,20345 +2237,2628 +2238,16842 +2239,2854 +2240,23061 +2241,15248 +2243,19729 +2244,8090 +2245,15506 +2246,9841 +2249,2632 +2250,7113 +2251,7368 +2252,7167 +2254,19612 +2255,2057 +2256,5221 +2257,20429 +2258,4260 +2259,19623 +2260,8470 +2262,9840 +2263,5170 +2264,12830 +2265,19297 +2266,20427 +2267,5208 +2268,20213 +2271,20346 +2273,16114 +2274,6883 +2275,13279 +2276,16996 +2277,3173 +2278,17190 +2280,20370 +2281,19297 +2282,20211 +2283,16831 +2284,23132 +2287,2474 +2288,18084 +2289,3331 +2290,2616 +2291,19305 +2292,19037 +2295,1225 +2296,10377 +2299,19389 +2300,9502 +2302,4713 +2303,9500 +2304,7450 +2305,18127 +2306,3709 +2307,17163 +2308,23028 +2309,13864 +2310,23025 +2311,17233 +2312,5406 +2313,7451 +2314,9531 +2315,9530 +2316,23021 +2317,17214 +2318,7382 +2319,7388 +2320,4752 +2321,7363 +2322,6644 +2323,6644 +2324,18114 +2325,15732 +2326,16905 +2327,17172 +2361,8690 +2362,18730 +2363,6708 +2364,14459 +2366,14458 +2367,14162 +2369,14457 +2370,16871 +2371,17114 +2372,18478 +2373,17158 +2374,17002 +2375,17051 +2376,18672 +2377,18509 +2378,7251 +2379,2215 +2380,6902 +2381,2217 +2382,7269 +2383,6903 +2384,6904 +2385,6905 +2386,2222 +2387,6902 +2388,2228 +2389,6952 +2390,6953 +2391,6954 +2392,2265 +2393,6902 +2394,2217 +2395,6903 +2396,6904 +2397,6955 +2398,2269 +2399,6902 +2400,2270 +2401,6952 +2402,6953 +2403,6954 +2404,1102 +2405,1102 +2406,15274 +2407,1102 +2408,15274 +2409,15274 +2410,12312 +2411,13108 +2412,1007 +2413,13108 +2414,13108 +2415,13108 +2417,8634 +2418,2969 +2419,6819 +2420,6820 +2421,6821 +2422,6822 +2423,8642 +2424,6853 +2425,2976 +2426,6854 +2427,6855 +2428,6856 +2429,14484 +2431,14483 +2432,1861 +2434,14482 +2435,16769 +2437,16770 +2438,16772 +2440,16771 +2441,18468 +2442,2324 +2443,18477 +2444,18516 +2445,18749 +2446,18733 +2447,7396 +2448,18732 +2449,1464 +2450,7406 +2451,18772 +2452,7241 +2453,7337 +2454,15733 +2455,15715 +2456,2345 +2457,15738 +2458,15792 +2459,15742 +2460,6373 +2461,2357 +2462,1805 +2463,16900 +2464,11558 +2465,17031 +2466,6368 +2467,17165 +2468,17020 +2469,17027 +2470,14496 +2471,14492 +2472,14495 +2473,14295 +2474,14493 +2475,2686 +2476,2376 +2477,23527 +2478,1805 +2479,8512 +2480,19601 +2481,16155 +2482,8488 +2483,19243 +2484,6442 +2485,5219 +2486,19627 +2487,20448 +2488,22078 +2489,22094 +2490,8488 +2491,22112 +2492,12992 +2493,22121 +2494,22136 +2495,7310 +2496,2398 +2497,2399 +2498,19299 +2499,8511 +2500,19626 +2501,19614 +2502,6444 +2503,20436 +2504,8106 +2505,20723 +2506,20722 +2507,20714 +2508,6606 +2509,6607 +2510,6594 +2511,20728 +2512,5996 +2513,5998 +2514,5996 +2515,5996 +2516,5998 +2517,5996 +2518,5998 +2519,5998 +2520,22085 +2521,22084 +2522,8485 +2523,22216 +2524,8803 +2525,22133 +2526,22141 +2527,22150 +2528,22081 +2529,22098 +2530,22105 +2531,22111 +2532,22120 +2533,22134 +2534,22140 +2535,20389 +2536,6630 +2545,3043 +2546,6981 +2547,6905 +2548,7922 +2549,20330 +2550,8106 +2551,10671 +2552,6593 +2553,15274 +2554,6270 +2555,15274 +2556,1301 +2557,2466 +2558,7442 +2559,2469 +2560,1143 +2561,1310 +2562,6488 +2563,6396 +2564,4485 +2565,6555 +2566,16666 +2567,20590 +2568,17125 +2569,17120 +2570,23122 +2571,2486 +2572,12687 +2573,2489 +2574,2490 +2575,10840 +2576,10834 +2577,10845 +2578,10891 +2579,12864 +2580,23133 +2581,11908 +2582,12394 +2583,13524 +2584,23144 +2585,12669 +2586,22033 +2587,10892 +2588,13253 +2589,7383 +2590,18597 +2591,1329 +2592,7418 +2593,6373 +2594,18115 +2595,7921 +2596,18085 +2598,15274 +2599,1102 +2600,1102 +2601,15274 +2602,1102 +2604,7349 +2605,6373 +2606,2515 +2607,2516 +2608,6703 +2609,2637 +2610,6396 +2611,18107 +2612,12704 +2613,12661 +2614,16614 +2615,12655 +2616,12701 +2617,12654 +2618,12702 +2619,3029 +2620,15284 +2621,15295 +2622,13244 +2623,15336 +2624,15547 +2625,12931 +2628,3048 +2629,6710 +2632,20473 +2633,2533 +2634,7283 +2635,6902 +2636,2551 +2637,924 +2638,924 +2639,2571 +2640,7166 +2642,6903 +2643,6904 +2644,15082 +2645,6905 +2646,2217 +2647,6906 +2648,2215 +2649,6902 +2650,6903 +2651,6904 +2652,15164 +2653,6905 +2654,2217 +2655,6914 +2656,2215 +2657,981 +2658,18103 +2659,18105 +2660,18104 +2661,18106 +2662,21712 +2663,1816 +2664,20441 +2665,6396 +2666,7923 +2667,2599 +2668,6630 +2669,6651 +2671,6655 +2672,6680 +2673,25467 +2674,22193 +2675,8743 +2676,7241 +2677,2473 +2678,1443 +2679,2474 +2680,25468 +2681,2474 +2682,2627 +2683,6345 +2684,25468 +2685,2473 +2686,18117 +2687,21327 +2688,6417 +2690,28201 +2691,6903 +2692,1443 +2693,1443 +2694,28250 +2695,7432 +2696,7922 +2697,1102 +2698,1102 +2699,1102 +2700,1102 +2701,1102 +2702,7158 +2703,24596 +2704,24594 +2705,24595 +2706,7454 +2707,7456 +2708,7448 +2709,7455 +2710,7447 +2711,7433 +2712,7916 +2713,28952 +2714,7461 +2715,7460 +2716,7446 +2717,7445 +2718,7457 +2719,6710 +2720,1102 +2721,16826 +2722,1102 +2723,18079 +2724,1323 +2725,7629 +2728,7629 +2730,7629 +2732,7629 +2734,7629 +2735,7629 +2738,7629 +2740,7629 +2742,7629 +2744,7629 +2745,7629 +2748,7629 +2749,7629 +2750,7629 +2751,7629 +2754,20117 +2755,2757 +2756,7596 +2757,7596 +2758,7596 +2759,7596 +2760,6430 +2763,6437 +2764,6444 +2765,20383 +2766,6445 +2770,4681 +2771,4690 +2772,4689 +2773,2786 +2774,20654 +2775,18107 +2776,4681 +2777,2787 +2778,20654 +2779,2788 +2780,20712 +2781,20979 +2782,20671 +2783,20717 +2784,2793 +2785,20668 +2786,20718 +2787,20534 +2788,18115 +2789,6707 +2790,6707 +2791,6707 +2792,6707 +2793,1143 +2794,1143 +2795,1143 +2797,3422 +2798,4689 +2799,7129 +2800,21114 +2801,5193 +2802,6484 +2803,6514 +2804,6502 +2805,23084 +2806,1244 +2807,9118 +2808,3947 +2809,7476 +2810,7479 +2811,7308 +2812,6448 +2813,7478 +2814,3151 +2815,8467 +2816,19669 +2817,17103 +2818,1963 +2819,6443 +2820,6540 +2821,19633 +2822,20091 +2823,19236 +2824,20554 +2825,20552 +2826,6497 +2827,7431 +2828,7105 +2829,2853 +2830,2853 +2831,2853 +2832,811 +2833,7139 +2834,3152 +2835,4714 +2836,4715 +2837,924 +2838,4716 +2839,924 +2840,7391 +2841,7390 +2842,7355 +2843,18074 +2844,2861 +2845,14035 +2846,3225 +2847,4805 +2848,5198 +2849,19929 +2850,3855 +2851,23529 +2852,13095 +2853,6966 +2854,25851 +2855,7207 +2856,2868 +2857,25852 +2858,2873 +2859,2874 +2862,24673 +2863,24674 +2864,25848 +2865,4333 +2866,23530 +2867,23532 +2868,23533 +2869,9403 +2870,23540 +2871,24675 +2872,2885 +2874,3020 +2875,11990 +2876,6660 +2877,20151 +2878,8456 +2879,13109 +2880,7417 +2881,15274 +2882,15274 +2883,15274 +2884,26367 +2885,3048 +2886,2904 +2887,6687 +2888,21327 +2889,811 +2890,6684 +2891,3021 +2892,13707 +2893,13707 +2894,18117 +2895,2947 +2896,2947 +2898,2967 +2899,16949 +2900,18528 +2901,6568 +2902,23099 +2903,8107 +2904,20732 +2905,23032 +2906,2922 +2907,19227 +2908,20605 +2909,2925 +2910,6931 +2911,9898 +2912,20320 +2913,16828 +2915,19664 +2916,2934 +2917,9850 +2918,13274 +2919,6526 +2920,6556 +2921,6485 +2922,6564 +2923,6550 +2924,6350 +2925,3124 +2926,7038 +2927,2947 +2928,6371 +2929,7414 +2930,6400 +2931,7385 +2932,7415 +2933,9845 +2934,7400 +2939,3004 +2940,1769 +2941,20359 +2942,3007 +2943,21600 +2944,21598 +2945,16754 +2946,16752 +2947,16754 +2948,6515 +2949,16989 +2950,20378 +2951,9851 +2953,23077 +2954,14615 +2955,16545 +2956,3031 +2957,14499 +2958,14498 +2959,14525 +2960,14497 +2961,17093 +2962,17160 +2963,16980 +2964,17175 +2965,22677 +2966,7193 +2967,22673 +2968,22676 +2969,14524 +2970,14529 +2971,14531 +2972,14528 +2973,14539 +2974,14537 +2975,14534 +2976,14536 +2977,22689 +2978,22693 +2979,22690 +2980,12450 +2981,14549 +2982,14554 +2983,14552 +2984,16789 +2985,9739 +2986,11369 +2987,11373 +2988,14411 +2989,25769 +2990,25768 +2991,25765 +2992,16731 +2993,13252 +2994,13217 +2995,13273 +2996,7331 +2997,10044 +2998,6562 +2999,7259 +3000,16888 +3001,18087 +3002,6338 +3003,6492 +3004,6551 +3005,6553 +3006,6521 +3007,6832 +3008,23080 +3010,6371 +3011,13259 +3012,3331 +3013,1093 +3014,7040 +3015,18109 +3016,7139 +3017,811 +3018,23027 +3019,12682 +3020,21294 +3021,20673 +3022,16534 +3023,20727 +3024,20726 +3025,20725 +3026,20675 +3027,20670 +3028,8104 +3029,5996 +3030,26497 +3031,5996 +3032,5998 +3033,5998 +3034,5998 +3035,3225 +3036,5392 +3037,20653 +3039,20672 +3040,20740 +3041,20729 +3042,20734 +3044,3191 +3045,25778 +3046,13276 +3047,25782 +3048,11525 +3049,25780 +3050,3058 +3051,6901 +3052,13283 +3053,3293 +3054,6898 +3055,8665 +3056,16954 +3057,16984 +3058,17055 +3059,13252 +3060,6730 +3061,9112 +3062,3206 +3063,13250 +3064,3205 +3065,27547 +3066,27550 +3067,3217 +3068,16824 +3069,27554 +3070,15149 +3071,19209 +3072,16694 +3073,16846 +3074,12420 +3075,15322 +3076,4873 +3077,13542 +3078,20669 +3079,20738 +3080,7066 +3081,7185 +3082,2853 +3083,7215 +3084,7072 +3085,7922 +3086,7922 +3087,18115 +3088,1317 +3089,1103 +3090,1103 +3091,1103 +3092,1103 +3093,1103 +3094,1103 +3095,1103 +3096,1103 +3097,1103 +3098,1103 +3099,1103 +3100,1103 +3101,1103 +3102,1103 +3103,8588 +3107,20779 +3108,20773 +3109,16753 +3110,7723 +3111,20777 +3113,1143 +3114,1143 +3115,1143 +3116,1143 +3117,7138 +3118,1143 +3119,1143 +3120,1143 +3121,1143 +3122,1143 +3123,1143 +3124,1143 +3125,5563 +3126,5563 +3127,5563 +3128,16755 +3129,5563 +3130,5563 +3131,16760 +3132,5563 +3133,5563 +3134,1246 +3135,20782 +3136,16758 +3137,20783 +3138,1246 +3139,1246 +3140,1246 +3141,1246 +3142,1246 +3143,1246 +3144,1246 +3145,3288 +3146,1246 +3147,3289 +3148,7849 +3149,3291 +3150,3292 +3151,3293 +3152,17177 +3153,23128 +3154,18340 +3155,3331 +3156,7132 +3157,7083 +3158,10412 +3159,6832 +3160,3304 +3161,16696 +3162,3233 +3163,2853 +3164,7357 +3165,983 +3166,12965 +3167,6699 +3168,6629 +3169,6002 +3170,6666 +3171,3429 +3172,7330 +3173,25466 +3174,6690 +3175,11164 +3176,3307 +3177,6651 +3179,28257 +3180,6658 +3181,6678 +3182,18597 +3183,6669 +3184,20396 +3185,20362 +3186,26576 +3187,20573 +3188,20072 +3189,8525 +3190,6799 +3191,11165 +3192,26590 +3193,19545 +3194,19622 +3195,8499 +3196,26585 +3197,20184 +3198,8585 +3199,19372 +3200,17004 +3201,19283 +3202,10216 +3203,5228 +3204,3606 +3205,14410 +3206,20186 +3207,14535 +3208,5232 +3209,20250 +3210,19275 +3211,25766 +3212,25779 +3213,6953 +3214,22674 +3215,6899 +3216,18121 +3217,16787 +3218,7208 +3219,3396 +3220,25469 +3221,3396 +3222,20607 +3223,19624 +3224,16926 +3225,6437 +3226,6832 +3227,20381 +3228,10402 +3229,9917 +3230,17166 +3231,10166 +3232,3409 +3233,3410 +3234,963 +3235,9840 +3236,3152 +3237,3152 +3238,3411 +3239,24683 +3240,24684 +3241,24685 +3242,3413 +3243,3414 +3244,7017 +3245,7018 +3246,7019 +3247,6961 +3248,1102 +3249,6632 +3250,1301 +3251,8452 +3252,3029 +3253,3422 +3254,2885 +3255,3426 +3256,3427 +3257,3427 +3258,5283 +3259,11164 +3260,16612 +3261,23143 +3262,21052 +3263,3432 +3264,11489 +3265,6669 +3266,3433 +3267,20176 +3268,6432 +3269,19772 +3270,16585 +3271,3396 +3272,3442 +3273,2967 +3274,16587 +3275,16586 +3276,18490 +3277,20444 +3278,3447 +3279,26927 +3280,26928 +3281,27175 +3282,26932 +3283,26933 +3284,27993 +3285,27994 +3286,27995 +3287,28591 +3288,27996 +3289,14514 +3290,14509 +3291,14511 +3292,14513 +3293,19281 +3294,5203 +3295,3434 +3296,6442 +3297,3427 +3298,3410 +3299,6002 +3300,6682 +3301,6002 +3302,26944 +3303,26945 +3304,28997 +3305,26948 +3306,26949 +3307,11060 +3308,16592 +3309,16591 +3310,16590 +3311,14544 +3312,14545 +3313,28047 +3314,14546 +3315,14547 +3316,3486 +3317,3486 +3318,3487 +3319,5007 +3320,4506 +3321,4016 +3322,23015 +3323,16906 +3324,21457 +3325,19252 +3326,3502 +3327,20434 +3328,16655 +3329,5204 +3330,12971 +3331,15196 +3332,6987 +3333,6832 +3334,7495 +3335,3509 +3336,20341 +3337,7111 +3338,7094 +3339,6371 +3340,7148 +3341,6920 +3342,7843 +3343,1183 +3344,4511 +3345,15912 +3346,7495 +3347,568 +3348,6646 +3349,3565 +3350,7444 +3351,7468 +3352,3568 +3353,6502 +3354,6502 +3355,6524 +3356,7346 +3357,7381 +3358,6661 +3360,3573 +3361,7477 +3362,7449 +3363,16663 +3364,7484 +3365,16664 +3366,7491 +3367,7464 +3368,7459 +3369,6396 +3370,7881 +3371,18077 +3372,18077 +3373,16804 +3374,16554 +3375,16555 +3376,16819 +3377,14111 +3378,16807 +3379,16806 +3380,16784 +3381,16913 +3382,15734 +3383,15745 +3384,292 +3385,15716 +3386,15750 +3387,24213 +3388,15770 +3389,15773 +3390,15787 +3391,15789 +3392,21310 +3393,1301 +3394,1301 +3395,1301 +3396,1301 +3397,6629 +3399,6627 +3400,20110 +3401,6628 +3402,6691 +3403,1225 +3404,7338 +3405,7210 +3406,19567 +3407,1659 +3408,7217 +3409,7186 +3410,7089 +3411,19528 +3412,18597 +3413,20589 +3414,6796 +3415,20339 +3416,12971 +3417,20174 +3418,7287 +3419,6549 +3420,6483 +3421,6560 +3422,6479 +3423,6489 +3424,6487 +3425,7292 +3426,16610 +3427,7905 +3428,10892 +3429,4532 +3430,6612 +3431,17092 +3432,7437 +3433,7480 +3434,6371 +3435,3708 +3436,2539 +3437,6875 +3438,3026 +3439,3709 +3440,6806 +3441,2947 +3442,4500 +3443,8495 +3444,8698 +3445,20599 +3446,20419 +3447,6880 +3448,1464 +3449,23127 +3450,18659 +3451,6541 +3452,5120 +3453,16907 +3454,3755 +3455,20015 +3456,15798 +3457,16850 +3458,6982 +3459,2563 +3460,18115 +3461,12672 +3462,28607 +3463,20772 +3464,26497 +3465,5998 +3466,7408 +3467,6714 +3468,3411 +3469,23528 +3470,24678 +3471,13090 +3472,25850 +3473,25849 +3474,9390 +3475,23421 +3476,20898 +3477,2885 +3478,24679 +3480,23531 +3481,9407 +3482,9404 +3483,9406 +3484,9412 +3485,9414 +3486,24680 +3487,20196 +3488,8516 +3489,8496 +3490,6445 +3491,5211 +3492,3780 +3493,20664 +3494,7430 +3495,3788 +3496,16452 +3497,3788 +3498,9657 +3499,6710 +3500,1046 +3501,6643 +3502,17459 +3503,1323 +3504,6270 +3505,6012 +3506,7171 +3507,983 +3508,7175 +3509,7043 +3510,7110 +3511,23020 +3513,7085 +3514,2853 +3515,7030 +3516,7038 +3517,7921 +3518,1096 +3519,1323 +3520,7921 +3521,1323 +3522,7421 +3523,7422 +3524,6834 +3525,6835 +3526,6836 +3527,7424 +3528,6764 +3529,12906 +3530,11909 +3531,11910 +3532,6766 +3533,6762 +3534,6765 +3535,6763 +3536,13564 +3537,6722 +3538,6743 +3539,6724 +3540,6745 +3541,6720 +3542,6741 +3543,6723 +3544,6744 +3545,6721 +3546,6742 +3547,6784 +3548,6786 +3549,6785 +3550,1310 +3551,1310 +3552,1310 +3553,1310 +3554,7077 +3555,16615 +3556,16544 +3557,3864 +3558,16528 +3559,11626 +3560,20715 +3561,23135 +3562,16910 +3563,3179 +3564,7924 +3565,14127 +3566,17101 +3567,6601 +3568,1244 +3569,18122 +3570,5197 +3571,19546 +3572,5151 +3573,21321 +3574,1816 +3575,7376 +3576,18086 +3577,7352 +3578,9380 +3580,6713 +3581,20414 +3582,23085 +3583,16948 +3584,7038 +3585,16876 +3586,19231 +3587,16773 +3588,16774 +3589,16788 +3590,16816 +3591,16834 +3592,3645 +3593,16835 +3594,3740 +3595,16583 +3596,16584 +3597,16782 +3598,3895 +3599,16832 +3600,16929 +3601,7263 +3602,16577 +3603,16930 +3604,2584 +3605,21332 +3606,14456 +3607,14161 +3608,15274 +3609,15274 +3610,15274 +3611,15274 +3612,15274 +3613,7282 +3614,6669 +3615,7038 +3616,6521 +3617,7197 +3618,7135 +3619,9515 +3620,7104 +3621,7150 +3622,6371 +3623,7038 +3624,7038 +3625,7141 +3626,7038 +3627,3671 +3628,3913 +3629,6538 +3630,3914 +3631,7042 +3632,3916 +3633,3914 +3634,3917 +3635,3916 +3636,7043 +3637,3918 +3638,7089 +3639,7612 +3640,3920 +3641,14423 +3642,14510 +3643,14342 +3644,16595 +3645,16915 +3646,3740 +3647,14566 +3648,18492 +3649,18512 +3650,18655 +3651,2052 +3652,18488 +3653,1673 +3654,18657 +3655,18696 +3656,18702 +3657,2757 +3658,1317 +3659,1103 +3660,8731 +3661,18530 +3662,22194 +3663,6347 +3664,6347 +3665,18053 +3666,6342 +3667,6350 +3668,1323 +3669,2637 +3670,6668 +3671,7102 +3672,7141 +3673,6616 +3674,6638 +3675,12994 +3676,6690 +3677,1102 +3678,1102 +3679,1102 +3680,1102 +3681,1102 +3682,1102 +3683,1102 +3684,7198 +3685,18050 +3686,7092 +3687,3092 +3688,7051 +3689,7050 +3690,7052 +3691,7053 +3692,7100 +3693,7147 +3694,6534 +3695,6535 +3696,7475 +3697,6531 +3698,6532 +3699,7467 +3701,6639 +3702,4045 +3703,18102 +3704,6713 +3705,6002 +3706,7015 +3707,7015 +3708,10275 +3710,10275 +3711,4049 +3712,25472 +3713,1443 +3714,7291 +3715,7059 +3716,9585 +3717,7219 +3718,1323 +3719,23040 +3720,7294 +3721,3031 +3722,6655 +3723,6630 +3724,6651 +3725,6656 +3726,22194 +3727,6327 +3728,6419 +3729,6414 +3730,6350 +3731,25466 +3732,15339 +3733,4085 +3734,1102 +3735,1102 +3736,1102 +3737,1102 +3738,20374 +3739,16132 +3740,22226 +3741,17164 +3742,20667 +3743,6275 +3744,1399 +3745,7218 +3746,1244 +3747,11167 +3748,10169 +3749,23118 +3750,8732 +3751,3083 +3752,8666 +3753,17129 +3754,17186 +3755,19228 +3756,6529 +3757,6530 +3758,6902 +3759,16944 +3760,963 +3761,18769 +3762,1244 +3763,6272 +3764,3750 +3765,6971 +3766,19569 +3767,4110 +3768,6326 +3769,6620 +3770,6350 +3771,4113 +3772,18079 +3773,18084 +3774,26366 +3775,13708 +3776,2947 +3777,6371 +3778,20660 +3779,19287 +3780,20717 +3781,20150 +3782,19532 +3783,20216 +3784,20350 +3785,8480 +3786,6468 +3787,19694 +3788,6563 +3789,6554 +3790,3331 +3791,6552 +3792,12424 +3793,6190 +3794,16571 +3795,23120 +3796,16569 +3797,14711 +3798,14091 +3799,16568 +3800,19042 +3801,19043 +3802,14803 +3803,23036 +3804,19044 +3805,19041 +3806,11270 +3807,19040 +3808,6902 +3809,6903 +3810,6904 +3811,15121 +3812,6905 +3813,687 +3814,6914 +3815,977 +3816,4130 +3817,18481 +3818,18169 +3819,7364 +3820,18089 +3821,19497 +3822,20180 +3823,2354 +3824,17469 +3825,15790 +3826,15793 +3827,15717 +3828,4137 +3829,15794 +3830,1301 +3831,1301 +3832,15274 +3833,23089 +3834,16839 +3835,9417 +3836,25658 +3837,15333 +3838,7089 +3839,7186 +3840,9422 +3841,9424 +3842,9415 +3843,9242 +3844,13088 +3845,9425 +3846,23537 +3847,9426 +3848,6434 +3849,5153 +3850,20215 +3851,19647 +3852,15468 +3853,7324 +3854,20252 +3855,8528 +3856,8533 +3857,7340 +3858,20661 +3859,7392 +3860,20659 +3861,7356 +3862,20951 +3863,11205 +3864,7339 +3865,6474 +3866,15274 +3867,15274 +3868,15274 +3869,15274 +3870,15274 +3871,1102 +3872,15274 +3873,15274 +3874,15274 +3875,1102 +3876,1151 +3877,7266 +3878,1262 +3879,7230 +3880,5689 +3881,7038 +3882,19531 +3883,13228 +3884,13249 +3885,13278 +3886,13539 +3887,13249 +3888,13278 +3889,15908 +3890,17204 +3891,15318 +3892,16775 +3893,21308 +3894,15320 +3895,6262 +3897,7110 +3898,1102 +3899,6672 +3900,18078 +3901,7048 +3902,20412 +3904,1310 +3905,1310 +3906,7036 +3907,7100 +3908,7100 +3909,7063 +3910,7171 +3911,7205 +3912,7257 +3913,6554 +3914,1283 +3915,7054 +3916,18075 +3917,6546 +3918,6614 +3919,7168 +3920,7047 +3921,3093 +3922,4280 +3923,7284 +3924,7161 +3925,7151 +3926,4284 +3927,6425 +3928,15714 +3929,7162 +3930,4287 +3931,959 +3932,12333 +3933,7312 +3934,4291 +3935,4800 +3936,16722 +3937,16721 +3938,16724 +3939,23101 +3940,16720 +3941,16719 +3942,14396 +3943,16718 +3944,16704 +3945,16703 +3946,9894 +3947,16707 +3948,16702 +3949,16701 +3950,16706 +3951,16700 +3952,14414 +3953,16712 +3954,16714 +3955,23124 +3956,16711 +3957,16709 +3958,16715 +3959,16708 +3960,6430 +3961,16943 +3962,18419 +3963,17021 +3964,23070 +3965,17188 +3966,17155 +3967,17196 +3968,17105 +3969,14408 +3970,16994 +3971,17171 +3972,23065 +3973,17069 +3974,16972 +3975,4486 +3976,11138 +3977,16941 +3978,16995 +3979,17019 +3980,23068 +3981,17070 +3982,16975 +3983,14421 +3984,9925 +3985,16829 +3986,18814 +3987,18774 +3988,18813 +3989,18472 +3990,17885 +3991,18474 +3992,6946 +3993,6947 +3994,6948 +3995,15068 +3996,6949 +3997,4339 +3998,10170 +3999,8672 +4000,6964 +4001,6965 +4002,6966 +4003,15106 +4004,6967 +4005,4333 +4006,28392 +4007,11565 +4008,6958 +4009,6997 +4010,6998 +4011,15239 +4012,6999 +4013,4346 +4014,9038 +4015,12966 +4016,1288 +4017,20225 +4018,20195 +4019,8478 +4020,19374 +4021,19716 +4022,19526 +4023,4119 +4024,20309 +4025,20550 +4026,20721 +4027,7069 +4028,7065 +4029,3427 +4030,6381 +4031,6515 +4032,6548 +4033,6496 +4034,7261 +4035,16643 +4036,4607 +4037,14989 +4038,27557 +4039,15298 +4040,14623 +4041,15287 +4042,14661 +4043,14652 +4044,14659 +4045,14680 +4046,14685 +4047,14679 +4048,17199 +4049,14601 +4050,17141 +4051,17161 +4052,21304 +4053,6629 +4054,17149 +4055,3036 +4056,811 +4057,16890 +4058,14674 +4059,14673 +4060,14675 +4061,17008 +4062,17147 +4063,17181 +4064,18487 +4065,18699 +4066,4403 +4067,6272 +4068,26325 +4069,26085 +4070,18771 +4071,25801 +4072,25802 +4073,25804 +4074,25809 +4075,25811 +4076,25810 +4077,25825 +4078,25904 +4079,25896 +4080,15290 +4082,26074 +4083,26075 +4084,3409 +4085,7155 +4086,20736 +4087,4426 +4088,28520 +4089,6592 +4090,18496 +4091,20380 +4092,4433 +4093,6665 +4094,7264 +4095,7302 +4096,18096 +4097,6630 +4098,4435 +4099,29087 +4100,3093 +4101,3093 +4102,3093 +4103,6708 +4104,6646 +4105,6658 +4106,7279 +4107,4438 +4108,4439 +4109,16983 +4110,20555 +4111,8095 +4112,9852 +4113,23123 +4114,15246 +4115,17888 +4116,20223 +4117,16830 +4118,6976 +4119,17100 +4120,16695 +4121,14323 +4122,3498 +4123,6919 +4124,21293 +4125,21605 +4126,19217 +4127,20662 +4128,18269 +4129,4458 +4130,6562 +4131,17115 +4132,6884 +4133,4462 +4134,20294 +4135,6486 +4136,6885 +4137,4835 +4138,8638 +4139,16822 +4140,4869 +4141,1103 +4142,1103 +4143,1103 +4144,1103 +4145,1103 +4146,1103 +4147,1103 +4148,1103 +4149,1103 +4150,1103 +4151,1103 +4152,1103 +4153,1103 +4154,1103 +4155,1103 +4156,1103 +4157,1103 +4158,1103 +4159,1103 +4160,1103 +4161,1103 +4162,1103 +4163,1155 +4164,1155 +4165,1155 +4166,1155 +4167,1155 +4168,5563 +4169,5563 +4170,5563 +4171,5563 +4172,5563 +4173,5563 +4174,5563 +4175,5563 +4176,5563 +4177,5563 +4178,5563 +4179,5563 +4180,5563 +4181,5563 +4182,5563 +4183,5563 +4184,5563 +4185,5563 +4186,5563 +4187,5563 +4188,5563 +4189,5563 +4190,8660 +4191,4497 +4192,4919 +4193,13550 +4194,4494 +4195,4493 +4196,4483 +4197,12980 +4198,1246 +4199,1246 +4200,1246 +4201,1246 +4202,1246 +4203,1246 +4204,1246 +4205,1246 +4206,1246 +4207,1246 +4208,1246 +4209,1246 +4210,1246 +4211,1246 +4212,1246 +4213,1246 +4214,1246 +4215,1246 +4216,1246 +4217,1246 +4218,1246 +4219,1246 +4220,1246 +4221,1246 +4222,1317 +4223,1317 +4224,1317 +4225,1317 +4226,1317 +4227,1317 +4228,1317 +4229,1317 +4230,1317 +4231,5086 +4232,21463 +4233,7112 +4234,7410 +4235,11164 +4236,3164 +4237,9501 +4238,3410 +4239,9503 +4240,4584 +4241,8442 +4242,9505 +4243,9511 +4244,18458 +4245,3337 +4246,9513 +4247,2362 +4248,9526 +4249,12464 +4250,17237 +4251,11274 +4252,12403 +4253,27881 +4254,9543 +4255,9532 +4256,9545 +4257,17224 +4258,9538 +4259,9546 +4260,9550 +4261,16794 +4262,17218 +4263,18668 +4264,17111 +4265,7452 +4266,1143 +4267,1143 +4268,1143 +4269,1143 +4270,1143 +4271,1143 +4272,1143 +4273,1143 +4274,1143 +4275,1143 +4276,1143 +4277,1143 +4278,7148 +4279,1143 +4280,1143 +4281,1143 +4282,1143 +4283,1143 +4284,1143 +4285,1143 +4286,1143 +4287,1143 +4288,1143 +4289,6396 +4290,4400 +4291,12105 +4292,1102 +4293,1102 +4294,1102 +4295,1102 +4296,15274 +4297,15274 +4298,1102 +4299,1102 +4300,1102 +4301,1102 +4302,3006 +4303,19615 +4304,8711 +4305,7333 +4306,7717 +4307,6295 +4308,8089 +4309,12395 +4310,12865 +4311,23117 +4312,14403 +4313,4615 +4314,9997 +4315,17135 +4316,6297 +4317,12399 +4318,6291 +4319,17130 +4320,4301 +4321,17138 +4322,15314 +4323,15319 +4324,17128 +4325,4631 +4326,15076 +4327,15273 +4328,17136 +4329,6315 +4330,7906 +4331,13195 +4332,7902 +4333,15858 +4334,7903 +4335,7904 +4336,13055 +4337,18597 +4338,7384 +4339,7332 +4340,18079 +4341,6373 +4342,6389 +4343,12388 +4344,12802 +4345,15274 +4346,15274 +4347,15274 +4348,15274 +4349,15274 +4350,15274 +4351,15274 +4352,15274 +4353,15274 +4354,6270 +4355,1102 +4356,15274 +4357,7137 +4358,18062 +4359,10700 +4360,25483 +4361,18174 +4362,6600 +4363,7839 +4364,6396 +4365,18062 +4366,7918 +4367,6393 +4368,13236 +4369,20743 +4370,7624 +4371,19482 +4372,6594 +4373,26619 +4374,25483 +4375,7840 +4376,7841 +4377,31325 +4378,18062 +4379,15835 +4380,7626 +4381,22293 +4382,20624 +4383,8257 +4384,7361 +4385,22422 +4386,7841 +4387,7377 +4388,7358 +4389,7371 +4390,25482 +4391,21652 +4392,9151 +4393,13215 +4394,7624 +4395,7367 +4396,21632 +4397,7841 +4398,6393 +4399,7375 +4400,7375 +4401,16536 +4402,1438 +4403,7397 +4404,7404 +4405,7326 +4406,7326 +4407,7326 +4408,15274 +4409,15274 +4410,15274 +4411,1102 +4412,15274 +4413,15274 +4414,15274 +4415,1102 +4416,15274 +4417,15274 +4418,6342 +4419,2616 +4421,1093 +4422,1093 +4424,2616 +4425,3331 +4426,3331 +4427,6270 +4428,6699 +4429,3093 +4430,9853 +4431,6614 +4432,7798 +4433,4435 +4434,4365 +4435,6614 +4436,9912 +4437,20390 +4438,6977 +4439,6795 +4440,7246 +4441,18078 +4442,2563 +4443,11327 +4444,18694 +4445,19398 +4446,20369 +4447,23019 +4448,4723 +4449,20439 +4450,7184 +4451,7298 +4452,6521 +4453,7248 +4454,20592 +4455,14261 +4456,17231 +4457,6327 +4458,7245 +4459,18072 +4460,568 +4461,7399 +4462,23098 +4463,9916 +4464,7002 +4465,6844 +4466,7249 +4467,7244 +4468,7239 +4469,7216 +4470,21102 +4471,4720 +4472,2616 +4473,7118 +4474,12883 +4475,6645 +4476,12650 +4477,17887 +4478,4744 +4479,6337 +4480,6424 +4481,6346 +4482,7234 +4483,6709 +4484,6712 +4485,6711 +4486,6640 +4487,7047 +4488,7047 +4489,7152 +4490,3426 +4491,12289 +4492,7119 +4493,7120 +4494,7233 +4495,9658 +4496,8271 +4497,1183 +4498,2585 +4499,1183 +4500,6430 +4501,6430 +4502,7221 +4503,3429 +4504,15183 +4505,16791 +4506,6510 +4507,18653 +4508,8639 +4509,17185 +4510,7041 +4511,19783 +4512,1504 +4513,6693 +4514,4771 +4515,1310 +4516,7038 +4517,7038 +4518,2616 +4519,2616 +4520,2616 +4521,7024 +4522,7289 +4523,7098 +4524,7037 +4525,7278 +4526,7202 +4527,1659 +4528,7261 +4529,4775 +4530,7277 +4531,6564 +4532,4777 +4533,4435 +4534,6996 +4535,9838 +4536,6410 +4537,6420 +4538,4781 +4539,7856 +4540,6399 +4541,6343 +4542,6344 +4543,21313 +4544,6399 +4545,16892 +4546,6338 +4547,21016 +4548,3151 +4549,9834 +4550,9832 +4551,3918 +4552,4719 +4553,4722 +4554,4721 +4555,20915 +4556,20914 +4557,28258 +4558,8381 +4559,6521 +4560,4788 +4561,19299 +4562,8531 +4563,4609 +4564,6813 +4565,6433 +4566,20420 +4567,20111 +4568,22478 +4569,19778 +4570,8586 +4571,20430 +4573,1244 +4575,20401 +4576,20674 +4577,6592 +4578,6641 +4579,6644 +4580,959 +4581,6679 +4582,18095 +4583,6698 +4584,6669 +4585,6619 +4586,6628 +4587,11208 +4588,4807 +4589,11207 +4590,6636 +4591,6492 +4592,24702 +4593,24710 +4594,4823 +4595,18078 +4596,15736 +4597,15274 +4598,18063 +4599,6350 +4600,18119 +4601,6413 +4602,6402 +4603,4811 +4604,15852 +4605,15853 +4606,15854 +4607,6355 +4608,15855 +4609,1301 +4610,6393 +4611,13103 +4612,4826 +4613,20913 +4614,9859 +4615,4829 +4616,6589 +4620,3093 +4621,7025 +4622,4435 +4623,24215 +4624,1301 +4625,19495 +4626,4717 +4627,7157 +4628,7060 +4629,7925 +4630,7064 +4631,7264 +4632,9632 +4633,9632 +4634,9632 +4635,4841 +4636,9632 +4637,9632 +4638,9632 +4639,7078 +4640,4681 +4641,3146 +4643,15079 +4644,7269 +4645,4829 +4646,2516 +4647,7293 +4648,7247 +4649,811 +4650,811 +4652,18789 +4653,6944 +4654,7177 +4655,22193 +4656,6402 +4657,6832 +4658,25945 +4659,11131 +4660,6322 +4661,27551 +4662,15061 +4663,9907 +4664,2563 +4665,23015 +4666,16911 +4667,6832 +4668,26979 +4669,26930 +4670,3396 +4671,25657 +4672,14515 +4673,2563 +4674,27997 +4675,16911 +4676,6991 +4677,25950 +4678,22692 +4679,6832 +4680,26981 +4681,26947 +4682,3396 +4683,23113 +4684,14530 +4685,3396 +4686,23137 +4687,16594 +4688,2563 +4689,23041 +4690,14533 +4691,2563 +4692,28049 +4693,29632 +4694,25770 +4695,26048 +4696,18495 +4697,25767 +4698,14550 +4699,14555 +4700,14232 +4701,23044 +4702,7096 +4703,7064 +4704,6567 +4705,25783 +4706,25979 +4707,25781 +4708,27545 +4709,8098 +4710,23029 +4711,26047 +4712,25803 +4713,23140 +4714,4557 +4715,23024 +4716,26016 +4717,25813 +4718,16652 +4719,18131 +4720,14624 +4721,17193 +4722,23045 +4723,14332 +4724,21302 +4725,25897 +4726,25900 +4727,25895 +4728,7004 +4729,14649 +4730,6261 +4731,14677 +4732,23031 +4733,26078 +4734,11638 +4735,23125 +4736,14686 +4737,17192 +4738,16921 +4739,2599 +4740,19572 +4741,4912 +4742,7169 +4743,6546 +4744,16925 +4745,7005 +4746,12718 +4747,6414 +4748,6414 +4749,6414 +4750,6566 +4751,7266 +4752,19528 +4753,19529 +4754,18083 +4755,18102 +4756,6685 +4757,18053 +4758,6669 +4759,7202 +4760,6566 +4761,4339 +4762,6566 +4763,3186 +4764,6716 +4765,7313 +4766,7314 +4767,3528 +4768,16946 +4769,11207 +4770,7061 +4771,23012 +4772,23075 +4773,6843 +4774,6934 +4775,6633 +4776,19567 +4777,19538 +4778,6808 +4779,6652 +4780,6664 +4781,8702 +4782,16812 +4783,7276 +4784,4719 +4785,6277 +4786,16833 +4787,22927 +4788,4024 +4789,6777 +4790,15165 +4791,6374 +4792,23131 +4793,15247 +4794,6787 +4795,6756 +4796,6758 +4797,15161 +4798,15206 +4799,23087 +4800,697 +4801,1496 +4802,6671 +4803,6630 +4804,7142 +4805,7126 +4806,6646 +4807,6427 +4808,8039 +4809,7287 +4810,19911 +4811,6781 +4812,6879 +4813,15593 +4814,7048 +4815,6935 +4816,4978 +4817,7319 +4818,20155 +4819,4110 +4820,18511 +4821,3445 +4822,4983 +4823,4984 +4824,8459 +4825,8461 +4826,19224 +4827,16865 +4828,16792 +4829,9912 +4830,17153 +4831,17154 +4832,22428 +4833,6929 +4834,7234 +4835,6912 +4836,21601 +4837,21611 +4838,21606 +4839,7086 +4840,13908 +4841,7145 +4842,6421 +4843,7026 +4844,7189 +4845,7106 +4846,7072 +4847,7159 +4848,8802 +4849,2599 +4850,7047 +4851,7047 +4852,6378 +4853,15330 +4854,23103 +4855,5093 +4856,5094 +4857,5115 +4858,5116 +4859,6484 +4860,4433 +4861,5243 +4862,7229 +4863,7602 +4864,7102 +4865,7086 +4866,9090 +4867,6619 +4868,6427 +4869,3146 +4870,7067 +4871,12643 +4872,1504 +4873,4714 +4874,6631 +4875,6668 +4876,6615 +4877,6701 +4878,6617 +4879,6700 +4880,2868 +4881,3093 +4882,8903 +4883,3093 +4884,7252 +4885,7156 +4886,6694 +4887,7110 +4888,3788 +4889,2599 +4890,18047 +4891,4841 +4892,7112 +4893,3672 +4894,3759 +4895,7089 +4896,5287 +4897,6694 +4898,5283 +4899,10672 +4900,5289 +4901,5290 +4902,6098 +4903,7122 +4904,2533 +4905,3146 +4906,8308 +4907,8701 +4908,17169 +4909,7560 +4910,6969 +4911,18522 +4912,6109 +4913,9920 +4914,17075 +4915,16802 +4916,16800 +4917,5337 +4918,1183 +4919,16799 +4920,23007 +4921,9671 +4922,2967 +4923,8498 +4924,19634 +4925,6457 +4926,18116 +4927,8382 +4928,17017 +4929,17097 +4930,1168 +4931,7603 +4932,20013 +4933,15211 +4934,5394 +4935,7007 +4936,16880 +4937,18510 +4938,20423 +4939,20112 +4940,17074 +4941,1805 +4942,16997 +4943,8691 +4944,23116 +4945,7099 +4946,6876 +4947,20603 +4948,5009 +4949,19214 +4950,5411 +4951,16938 +4952,18099 +4953,18117 +4954,16932 +4955,5414 +4956,6566 +4957,1168 +4958,15244 +4959,16760 +4960,5998 +4961,20426 +4962,5418 +4963,23071 +4964,19544 +4965,8490 +4966,7163 +4967,5422 +4968,9925 +4969,6915 +4970,16968 +4971,8572 +4972,6876 +4973,17014 +4974,3006 +4975,18491 +4976,28287 +4977,20009 +4978,19741 +4979,5434 +4980,5435 +4981,1281 +4982,10411 +4983,19596 +4984,21609 +4985,6109 +4986,6521 +4987,20083 +4988,9834 +4989,16673 +4990,16934 +4991,5175 +4992,5567 +4993,7469 +4994,5569 +4995,5567 +4996,6798 +4997,1102 +4998,9834 +4999,14433 +5000,9835 +5001,9834 +5002,6539 +5003,9854 +5004,9857 +5005,9658 +5006,7152 +5007,6478 +5008,9843 +5009,9840 +5010,3453 +5011,9851 +5012,7127 +5013,6376 +5014,6429 +5015,6429 +5016,16849 +5017,1150 +5018,7290 +5019,7256 +5020,4287 +5021,18062 +5022,12904 +5023,12904 +5024,6340 +5025,12904 +5026,9518 +5027,1282 +5028,24742 +5029,9860 +5030,7070 +5038,7267 +5040,20321 +5041,6423 +5042,6405 +5043,6404 +5044,6329 +5045,6411 +5046,6394 +5047,6330 +5048,6330 +5049,6405 +5050,8902 +5051,7107 +5052,6705 +5053,20406 +5054,9167 +5055,7048 +5056,1464 +5057,6390 +5058,18050 +5059,7108 +5060,7411 +5061,7260 +5062,9826 +5063,7154 +5064,7288 +5065,6013 +5066,6377 +5067,7235 +5068,6371 +5069,6097 +5071,18356 +5072,7101 +5073,7101 +5074,7101 +5075,7045 +5076,7242 +5077,7268 +5078,7271 +5079,6492 +5080,1134 +5081,4584 +5082,7412 +5083,1102 +5084,7038 +5085,7209 +5086,7295 +5087,6633 +5088,7073 +5089,9660 +5090,7908 +5091,5805 +5092,6101 +5093,20392 +5094,5808 +5095,24704 +5096,7204 +5097,6851 +5098,17460 +5099,7144 +5100,7086 +5101,6666 +5102,8007 +5103,11207 +5104,7142 +5105,7300 +5106,15308 +5107,16557 +5108,16882 +5109,16589 +5110,12656 +5111,18133 +5112,20491 +5113,6565 +5114,6627 +5115,18072 +5116,19571 +5117,19570 +5118,6657 +5119,18095 +5120,18096 +5121,6646 +5122,6702 +5123,6701 +5124,6002 +5125,6628 +5126,6270 +5127,6270 +5128,568 +5129,6270 +5130,6270 +5131,6270 +5132,6270 +5133,1438 +5134,7231 +5135,6651 +5136,6704 +5137,1504 +5138,15525 +5139,1317 +5140,32819 +5141,1317 +5142,1317 +5143,7262 +5144,1317 +5145,1317 +5146,1317 +5147,1317 +5148,1317 +5149,1317 +5150,1317 +5151,1317 +5152,1317 +5153,1317 +5154,1317 +5155,1317 +5156,1317 +5157,1317 +5158,1317 +5159,1317 +5160,1317 +5161,1317 +5162,1317 +5163,1317 +5164,8284 +5165,19799 +5166,4045 +5167,18047 +5168,7273 +5169,7274 +5170,5283 +5171,6521 +5172,6354 +5173,7328 +5174,7187 +5175,7299 +5176,7299 +5177,7299 +5178,7299 +5179,5283 +5180,6494 +5181,23142 +5182,8000 +5183,21607 +5184,7124 +5185,8545 +5186,7125 +5187,8600 +5188,7125 +5189,7130 +5190,7240 +5191,7311 +5192,5144 +5193,22998 +5194,19296 +5195,16966 +5196,13913 +5197,20953 +5198,21011 +5199,1978 +5200,5949 +5201,20340 +5202,12803 +5203,6669 +5204,7046 +5205,6416 +5206,6331 +5207,20903 +5208,20829 +5209,6099 +5210,20787 +5211,20852 +5212,6081 +5213,20907 +5214,21020 +5215,20815 +5216,20790 +5217,3422 +5218,3422 +5219,7149 +5220,7134 +5221,7164 +5222,6001 +5223,1262 +5226,6001 +5227,1262 +5228,6007 +5229,6007 +5230,6008 +5231,6008 +5232,6009 +5233,6017 +5234,6016 +5235,6081 +5236,20916 +5237,13709 +5238,20787 +5239,20776 +5240,6101 +5241,6097 +5242,6093 +5243,12601 +5244,21024 +5245,21019 +5246,6093 +5247,20828 +5248,21023 +5249,20793 +5250,6140 +5251,8752 +5252,20825 +5253,20801 +5254,10179 +5255,8472 +5256,19673 +5257,23000 +5258,6231 +5259,6232 +5260,6233 +5261,6234 +5262,6235 +5263,6238 +5264,6244 +5265,18117 +5266,9837 +5267,3363 +5268,16363 +5269,2885 +5270,15857 +5271,19488 +5272,6927 +5273,13988 +5274,17135 +5275,7545 +5276,5010 +5277,5542 +5278,6434 +5279,20411 +5280,6441 +5281,6443 +5282,6447 +5283,6448 +5284,6454 +5285,6469 +5286,7508 +5287,3385 +5288,5128 +5289,3797 +5291,5224 +5292,2777 +5293,6799 +5294,9587 +5295,9587 +5296,9587 +5297,9587 +5298,9587 +5299,17223 +5300,5527 +5301,3879 +5302,18451 +5303,2840 +5304,5098 +5305,7526 +5306,7524 +5307,13300 +5308,7530 +5309,7531 +5310,7533 +5311,17159 +5312,7540 +5313,7544 +5314,23012 +5315,28200 +5316,16870 +5317,8658 +5318,22225 +5319,7553 +5320,7554 +5321,20014 +5322,19611 +5323,7557 +5324,8568 +5325,7559 +5326,6097 +5327,16958 +5328,7563 +5329,8289 +5330,18061 +5331,7425 +5332,8289 +5333,13990 +5334,18079 +5335,1183 +5336,9849 +5337,19899 +5338,7572 +5339,7573 +5340,20417 +5341,8717 +5342,18099 +5343,23088 +5344,8485 +5345,8602 +5346,20719 +5347,21022 +5348,3331 +5349,6342 +5350,18081 +5351,6011 +5352,7637 +5353,7630 +5354,8919 +5355,7662 +5356,20834 +5357,1685 +5358,13282 +5359,7798 +5360,7697 +5361,6651 +5362,1504 +5363,7717 +5364,4718 +5365,6700 +5366,6554 +5367,4717 +5368,7718 +5369,7251 +5370,7716 +5371,6652 +5372,8051 +5373,15026 +5374,7719 +5375,8119 +5376,7268 +5377,7714 +5378,14964 +5379,20781 +5380,7726 +5381,7733 +5382,7735 +5383,7164 +5384,7737 +5385,8007 +5386,7740 +5387,23108 +5388,7741 +5389,7742 +5390,7744 +5391,7791 +5392,6432 +5393,5108 +5394,7823 +5395,18671 +5396,13824 +5397,7828 +5398,16951 +5399,7835 +5400,1150 +5401,1150 +5402,1150 +5403,1150 +5404,6729 +5405,23105 +5406,6007 +5407,6007 +5408,6008 +5409,6008 +5410,7867 +5411,7866 +5412,6492 +5413,7886 +5414,6683 +5415,7866 +5416,7866 +5417,7888 +5418,7889 +5419,17002 +5420,8635 +5421,7899 +5422,16974 +5423,19221 +5424,7928 +5425,7932 +5426,19396 +5427,8118 +5428,8117 +5429,8121 +5430,8120 +5431,18058 +5432,8114 +5433,6358 +5434,7723 +5435,8115 +5436,7723 +5437,1442 +5438,3788 +5439,21318 +5440,3788 +5441,1816 +5442,7951 +5443,18523 +5444,15089 +5445,9865 +5446,7954 +5447,7954 +5448,7954 +5449,7954 +5450,7954 +5451,7954 +5453,7954 +5454,7954 +5455,7957 +5456,7956 +5457,1496 +5458,9908 +5459,7965 +5460,7976 +5461,9659 +5462,7982 +5463,7984 +5464,8033 +5465,7345 +5466,7987 +5467,6680 +5468,7988 +5469,1116 +5470,7989 +5471,7990 +5472,25473 +5473,7994 +5474,25481 +5475,8951 +5476,7996 +5477,6406 +5478,557 +5479,8088 +5480,25475 +5481,7999 +5482,811 +5483,811 +5484,811 +5485,1102 +5486,1102 +5487,1102 +5488,1102 +5489,1102 +5490,8009 +5491,2839 +5493,13120 +5494,8014 +5495,8011 +5498,12309 +5500,12310 +5502,8016 +5503,22193 +5504,22193 +5505,7152 +5506,1504 +5507,7365 +5508,8025 +5509,8026 +5510,8026 +5511,8026 +5512,8026 +5513,7393 +5514,6851 +5515,7985 +5516,8028 +5517,16454 +5518,8902 +5519,8032 +5520,8040 +5521,8042 +5522,21610 +5523,7177 +5524,16212 +5525,8048 +5526,8049 +5527,7177 +5528,1102 +5529,6371 +5530,8052 +5531,7141 +5532,8078 +5533,9129 +5534,7416 +5535,8093 +5536,8094 +5537,3486 +5538,8096 +5539,8097 +5540,6439 +5541,19801 +5542,23131 +5543,15274 +5544,7741 +5545,5290 +5546,10673 +5547,8122 +5548,3187 +5549,6432 +5550,6592 +5551,5066 +5552,5509 +5553,5194 +5554,5533 +5555,5140 +5556,1628 +5557,5638 +5558,2388 +5559,16762 +5560,6097 +5561,8127 +5562,8132 +5563,8132 +5564,8132 +5565,6504 +5566,7999 +5567,8233 +5568,5998 +5569,7415 +5570,18050 +5571,1281 +5572,1277 +5573,3565 +5574,8269 +5575,3568 +5576,1183 +5577,15274 +5578,15274 +5579,19544 +5580,19777 +5581,20446 +5582,8283 +5583,8284 +5584,18096 +5585,6492 +5586,1547 +5587,19648 +5588,7976 +5589,8292 +5590,16918 +5591,23055 +5592,8295 +5593,8296 +5594,7649 +5595,8298 +5596,20720 +5597,8376 +5598,8377 +5599,8378 +5600,8379 +5601,18053 +5602,18597 +5603,8384 +5604,28159 +5605,3550 +5606,16817 +5607,8399 +5608,15278 +5609,6755 +5610,23115 +5611,8436 +5612,17010 +5613,20384 +5614,20182 +5615,20121 +5616,20376 +5617,6718 +5618,15032 +5619,8518 +5620,7206 +5621,8543 +5622,14432 +5623,8547 +5624,15905 +5625,13247 +5626,19246 +5627,20354 +5628,6639 +5629,8450 +5630,8449 +5631,15741 +5632,4133 +5633,15791 +5634,8453 +5635,1496 +5636,19568 +5637,2460 +5638,8471 +5639,8523 +5640,1301 +5641,1301 +5642,1301 +5643,1301 +5644,1103 +5645,8544 +5646,21672 +5647,1103 +5648,1103 +5649,1103 +5650,1103 +5651,8555 +5652,8556 +5653,8557 +5654,2947 +5655,13108 +5656,13108 +5657,6270 +5658,1155 +5659,8560 +5660,1155 +5661,1155 +5662,1155 +5663,16208 +5664,8562 +5665,16207 +5666,1155 +5667,1155 +5668,16208 +5669,2480 +5670,1155 +5671,1155 +5672,1155 +5673,1155 +5674,1155 +5675,8564 +5676,1155 +5677,1155 +5678,1155 +5679,1155 +5680,1155 +5681,8283 +5682,1155 +5683,1155 +5684,1155 +5685,1155 +5686,7164 +5687,6554 +5688,8616 +5689,8737 +5690,7737 +5691,8735 +5692,8622 +5693,8622 +5694,8625 +5695,8625 +5696,5563 +5697,5563 +5698,5563 +5699,5563 +5700,5563 +5701,5563 +5702,5563 +5703,5563 +5704,5563 +5705,5563 +5706,5563 +5707,5563 +5708,5563 +5709,5563 +5710,5563 +5711,5563 +5712,5563 +5713,5563 +5714,5563 +5715,5563 +5716,5563 +5717,8623 +5718,8624 +5719,1246 +5720,1246 +5721,1246 +5722,1246 +5723,1246 +5724,1246 +5725,1246 +5726,1246 +5727,1246 +5728,1246 +5729,1246 +5730,1317 +5731,8626 +5732,8627 +5733,7340 +5734,8628 +5735,3411 +5736,8629 +5737,8630 +5738,8631 +5739,12368 +5740,8733 +5741,4719 +5742,20569 +5743,9842 +5744,8279 +5745,8745 +5746,8746 +5747,8747 +5748,20713 +5749,19291 +5750,8749 +5751,23078 +5752,20596 +5753,8753 +5754,7093 +5755,8719 +5756,20591 +5757,8803 +5758,9632 +5759,9632 +5760,9632 +5761,19544 +5762,12998 +5763,8859 +5764,8860 +5765,8861 +5766,12397 +5767,16611 +5768,16037 +5769,1097 +5770,12695 +5771,1102 +5772,1102 +5773,15274 +5774,15274 +5775,15274 +5776,20449 +5777,8899 +5778,5404 +5779,20084 +5780,8905 +5781,8908 +5782,22393 +5783,8912 +5784,8913 +5785,8914 +5786,1102 +5787,1102 +5788,1102 +5789,1102 +5790,8040 +5791,8040 +5792,8918 +5793,8917 +5794,8922 +5795,8923 +5796,10043 +5797,9110 +5798,8926 +5799,8927 +5800,8928 +5801,13715 +5802,8931 +5803,8932 +5804,4435 +5805,4045 +5806,8935 +5807,3093 +5808,8940 +5809,8940 +5810,8942 +5811,8952 +5812,12694 +5813,9055 +5814,16899 +5815,9057 +5816,9058 +5817,9060 +5818,21026 +5819,15810 +5820,9077 +5821,16982 +5822,9082 +5823,15856 +5824,9106 +5825,9305 +5826,7629 +5827,4435 +5828,6012 +5829,6633 +5830,15706 +5831,7038 +5832,7038 +5833,9116 +5834,9124 +5835,18078 +5836,12644 +5837,9134 +5838,9144 +5839,9135 +5840,20952 +5841,3422 +5842,18107 +5843,3596 +5844,9147 +5845,6350 +5846,9148 +5847,9150 +5848,7126 +5849,9151 +5850,9152 +5851,9154 +5852,9155 +5853,9158 +5854,9157 +5855,4045 +5856,16751 +5857,9162 +5858,9161 +5859,9163 +5860,9164 +5861,9165 +5862,9166 +5863,16161 +5864,17343 +5865,9166 +5866,9116 +5867,9208 +5868,9207 +5869,9209 +5870,22671 +5871,7296 +5872,17343 +5873,17343 +5874,17343 +5875,17343 +5876,6624 +5877,9284 +5878,8932 +5879,9285 +5880,9288 +5881,9289 +5882,9467 +5883,9291 +5884,9292 +5896,9310 +5897,9319 +5916,7737 +5917,811 +5918,3914 +5919,9354 +5936,9365 +5937,9345 +5938,7345 +5939,9374 +5940,2916 +5941,4339 +5942,9377 +5943,9378 +5944,7554 +5945,9396 +5946,9148 +5947,9397 +5948,9148 +5949,9135 +5950,9429 +5951,9430 +5952,13531 +5953,15804 +5954,9465 +5956,8568 +5957,9499 +5958,9514 +5959,2885 +5960,9152 +5961,12402 +5962,9535 +5963,17212 +5964,9544 +5965,23033 +5966,9549 +5967,9552 +5968,6777 +5969,23059 +5970,19128 +5971,23026 +5972,15274 +5973,1102 +5974,15274 +5975,9584 +5976,20621 +5996,4836 +5997,15732 +5998,4435 +6016,4045 +6036,6475 +6037,20656 +6038,9633 +6039,1301 +6040,9634 +6041,9635 +6042,9637 +6043,7261 +6044,15274 +6045,15274 +6046,15274 +6047,1102 +6048,15774 +6049,9639 +6050,9058 +6051,15747 +6052,4135 +6053,1301 +6054,1301 +6055,1301 +6056,1301 +6057,1301 +6058,8419 +6059,9930 +6060,16588 +6061,9644 +6062,16805 +6063,6954 +6064,16265 +6065,9663 +6066,9666 +6067,9668 +6068,1301 +6069,7407 +6070,17173 +6071,6563 +6072,9666 +6073,9666 +6074,9711 +6075,9725 +6076,16843 +6077,9728 +6078,18664 +6079,9730 +6080,8917 +6081,9733 +6082,9734 +6083,9737 +6084,9738 +6085,11368 +6086,9741 +6087,9742 +6088,19805 +6089,18117 +6090,10453 +6091,9822 +6092,16981 +6093,19646 +6094,19390 +6095,11548 +6096,2163 +6097,2470 +6098,12679 +6116,12648 +6121,9984 +6123,12683 +6124,9987 +6125,9995 +6126,10002 +6127,10003 +6130,17462 +6131,10244 +6132,1155 +6133,1155 +6136,10112 +6144,12680 +6145,7570 +6146,10190 +6147,9508 +6148,16853 +6149,15718 +6150,10301 +6166,10345 +6167,6423 +6168,9157 +6169,6678 +6170,10353 +6171,9374 +6172,12927 +6173,16809 +6174,13583 +6175,10365 +6176,3725 +6177,6934 +6178,8928 +6179,15166 +6180,11563 +6181,4262 +6182,12312 +6183,12311 +6184,10399 +6185,23008 +6186,20119 +6187,18658 +6188,10434 +6189,10448 +6190,10449 +6191,10454 +6192,9666 +6193,10481 +6194,19404 +6195,12944 +6196,6794 +6197,2644 +6198,10529 +6199,10530 +6200,10532 +6201,9510 +6202,10535 +6203,18669 +6204,13266 +6205,7495 +6206,14040 +6207,6710 +6208,6710 +6209,6710 +6210,6710 +6211,1301 +6212,10546 +6213,4717 +6214,10642 +6215,10654 +6216,7414 +6217,21205 +6218,21207 +6219,7494 +6220,20536 +6222,11431 +6223,10721 +6224,5176 +6225,10814 +6226,12652 +6227,10815 +6228,10816 +6229,10817 +6230,21095 +6231,21094 +6232,10820 +6233,10821 +6234,10822 +6235,10823 +6236,10824 +6237,10825 +6238,12389 +6239,12400 +6240,12387 +6241,17123 +6242,12386 +6243,12393 +6244,10913 +6245,7289 +6246,10920 +6247,10921 +6248,6400 +6249,10922 +6250,10923 +6251,3124 +6252,6400 +6253,10924 +6254,10968 +6255,6590 +6256,20730 +6257,11012 +6258,6427 +6259,4045 +6260,1656 +6261,15736 +6262,7152 +6263,11182 +6264,12716 +6265,6689 +6266,16560 +6267,16561 +6268,17098 +6269,17152 +6270,1102 +6271,15274 +6272,1102 +6273,1102 +6274,1102 +6275,1102 +6276,6639 +6277,11160 +6278,11161 +6279,3093 +6280,3093 +6281,4262 +6282,11166 +6283,2757 +6284,11180 +6285,11181 +6286,6694 +6287,11183 +6288,11185 +6289,24702 +6290,18536 +6291,18535 +6292,24701 +6293,11199 +6294,24701 +6295,24701 +6296,6691 +6297,7741 +6298,6666 +6299,24696 +6300,6628 +6301,6375 +6302,4433 +6303,24697 +6304,7629 +6305,7629 +6306,7629 +6307,18113 +6308,24710 +6309,24712 +6310,24712 +6311,24712 +6312,3422 +6313,3422 +6314,23082 +6315,11247 +6316,11268 +6317,4813 +6318,20335 +6319,11253 +6320,18700 +6321,14433 +6322,11259 +6323,21051 +6324,12696 +6325,811 +6326,811 +6327,11271 +6328,1102 +6329,1102 +6330,1102 +6331,20333 +6332,9837 +6333,20604 +6334,11289 +6335,11330 +6336,3057 +6337,3058 +6338,21208 +6339,21208 +6340,23027 +6341,11410 +6342,11431 +6343,11431 +6344,11431 +6345,11431 +6346,11431 +6347,11431 +6348,11431 +6349,11431 +6350,6885 +6351,9151 +6352,9822 +6353,12331 +6354,12332 +6355,12331 +6356,12331 +6357,8928 +6358,9150 +6359,11451 +6360,11453 +6361,24709 +6362,4823 +6363,24712 +6364,24712 +6365,20618 +6366,20731 +6367,20619 +6368,1102 +6369,1102 +6370,18114 +6371,15771 +6372,15748 +6373,15788 +6374,6371 +6375,11431 +6376,11431 +6377,11431 +6378,23139 +6379,16922 +6380,1673 +6381,27549 +6382,16916 +6383,18483 +6384,11518 +6385,11519 +6386,25805 +6387,25800 +6388,25806 +6389,15517 +6390,15274 +6391,15274 +6392,11533 +6393,16642 +6394,11571 +6395,13677 +6396,14602 +6397,14603 +6398,17118 +6399,14599 +6400,11559 +6401,1102 +6402,25812 +6403,25808 +6404,25815 +6405,14625 +6406,14617 +6407,14618 +6408,17061 +6409,17121 +6410,17009 +6411,25882 +6412,25883 +6413,25886 +6414,9846 +6415,12653 +6416,14651 +6417,23091 +6418,14656 +6419,14676 +6420,14672 +6421,14671 +6422,21297 +6423,26077 +6424,26082 +6425,26076 +6426,26073 +6427,12676 +6428,14684 +6429,15910 +6430,18471 +6431,16986 +6432,23039 +6433,21291 +6434,18690 +6435,11766 +6436,6521 +6437,11780 +6438,11791 +6439,11791 +6440,12643 +6441,11825 +6442,15027 +6443,11164 +6444,11889 +6445,6629 +6446,2593 +6447,22805 +6448,20349 +6449,23001 +6450,8603 +6451,11926 +6452,2885 +6453,2885 +6454,8117 +6455,18706 +6456,2885 +6457,3257 +6458,11932 +6459,11935 +6460,11945 +6461,11946 +6462,11449 +6463,9846 +6464,12926 +6465,12693 +6466,23010 +6467,11952 +6468,11960 +6469,20652 +6470,8913 +6471,3668 +6472,24741 +6473,17091 +6474,1102 +6475,1102 +6476,15274 +6477,11997 +6478,11999 +6479,12018 +6480,9541 +6481,12068 +6482,12070 +6486,10043 +6487,20931 +6488,12221 +6489,7798 +6490,7798 +6491,7798 +6492,7798 +6493,7798 +6494,7798 +6495,7798 +6496,7798 +6497,7798 +6498,12222 +6499,12222 +6500,12222 +6501,12222 +6502,12282 +6503,12670 +6504,20116 +6505,12286 +6506,22680 +6507,22679 +6508,25948 +6509,22678 +6510,22682 +6511,16698 +6512,16813 +6513,16565 +6514,23104 +6515,16562 +6516,12328 +6517,17124 +6518,16991 +6519,8437 +6520,23052 +6521,6717 +6522,11451 +6523,14259 +6524,12370 +6525,12371 +6526,12372 +6527,12422 +6528,16567 +6529,12410 +6530,18097 +6531,19110 +6532,12423 +6533,12425 +6534,12434 +6535,12435 +6536,14739 +6537,12439 +6538,16522 +6539,14735 +6540,14738 +6541,14737 +6542,15267 +6543,14736 +6544,12328 +6545,25755 +6546,25759 +6547,25756 +6548,25757 +6549,25953 +6550,25758 +6551,6931 +6552,14731 +6553,14730 +6554,14729 +6555,23006 +6556,14728 +6557,19184 +6558,17113 +6559,2210 +6560,25955 +6561,14551 +6562,16881 +6563,14750 +6564,23109 +6565,16793 +6566,16470 +6567,14748 +6568,14746 +6569,18120 +6570,14752 +6571,18493 +6572,18701 +6573,25760 +6574,12456 +6575,25967 +6576,25762 +6577,25761 +6578,12453 +6579,25764 +6580,25763 +6581,17127 +6582,14759 +6583,3657 +6584,14758 +6585,23053 +6586,14755 +6587,14757 +6588,17195 +6589,9833 +6590,25793 +6591,25797 +6592,25798 +6593,25993 +6594,25795 +6595,25794 +6596,25796 +6597,25799 +6598,18449 +6599,26014 +6600,14774 +6601,14769 +6602,17167 +6603,14773 +6604,23022 +6605,14775 +6607,14776 +6608,27542 +6609,16862 +6610,16878 +6611,16866 +6612,19921 +6613,16869 +6614,23138 +6615,16864 +6616,16863 +6617,4904 +6618,8043 +6619,12547 +6620,7798 +6621,12556 +6622,21554 +6623,12328 +6624,12565 +6625,12567 +6626,12567 +6627,12595 +6628,16952 +6629,23141 +6630,6274 +6631,20336 +6632,15156 +6633,12610 +6634,6381 +6635,6400 +6636,12621 +6637,6340 +6638,6340 +6639,18107 +6640,12625 +6641,20167 +6642,12632 +6643,18535 +6644,24697 +6645,24694 +6646,24704 +6647,24711 +6648,12328 +6649,12328 +6650,12328 +6651,18652 +6652,12735 +6653,12992 +6654,12738 +6655,12736 +6656,12746 +6657,12780 +6658,12643 +6659,12777 +6660,13001 +6661,1102 +6662,11462 +6663,15274 +6664,12782 +6665,12783 +6666,12784 +6667,23110 +6668,12788 +6669,9833 +6670,12794 +6671,12795 +6672,15274 +6673,9832 +6674,9832 +6675,12804 +6676,12805 +6677,21018 +6678,14434 +6679,22241 +6680,12857 +6681,20593 +6682,12858 +6683,12863 +6684,12866 +6685,11473 +6686,15492 +6687,22217 +6688,17277 +6689,20325 +6690,17142 +6691,12880 +6692,25597 +6693,6486 +6694,18454 +6695,9852 +6696,20650 +6697,5116 +6698,9834 +6707,9834 +6708,9834 +6709,12924 +6710,1102 +6711,9834 +6712,12925 +6713,12928 +6714,18062 +6715,7064 +6716,15274 +6717,8931 +6718,7411 +6719,17134 +6720,28984 +6721,12934 +6722,12935 +6723,4841 +6724,9834 +6725,18469 +6726,16716 +6727,17067 +6728,9834 +6729,20821 +6730,12944 +6731,12945 +6732,12943 +6733,12948 +6734,15274 +6735,15274 +6736,15274 +6737,16852 +6738,19126 +6739,20666 +6740,12977 +6741,20177 +6742,12981 +6743,12984 +6744,16956 +6745,23069 +6746,18507 +6747,12986 +6748,9836 +6749,9823 +6750,12987 +6751,23126 +6752,16988 +6753,12989 +6754,1183 +6755,12991 +6756,12991 +6757,9837 +6766,13002 +6767,12863 +6773,13011 +6774,13012 +6775,13005 +6776,13005 +6777,13006 +6778,13005 +6779,13005 +6780,13023 +6781,18100 +6782,13024 +6783,13025 +6784,13026 +6785,7637 +6786,13043 +6787,13046 +6788,17122 +6789,23096 +6790,6012 +6791,17227 +6792,13052 +6793,13053 +6794,17187 +6795,13056 +6796,13057 +6797,21014 +6798,13060 +6799,13061 +6800,13063 +6801,13077 +6802,20010 +6803,15430 +6804,19707 +6805,13082 +6806,13084 +6807,557 +6808,13063 +6809,7425 +6810,13085 +6811,13086 +6812,13100 +6826,6658 +6827,13110 +6828,18476 +6829,20075 +6830,18607 +6831,20292 +6832,23097 +6833,13115 +6834,13116 +6835,13117 +6836,16368 +6837,13119 +6838,9396 +6839,13121 +6840,13122 +6841,4984 +6842,7798 +6843,7922 +6844,18060 +6845,13124 +6846,13125 +6847,13125 +6848,13918 +6849,18054 +6850,13128 +6851,19800 +6852,13129 +6866,13144 +6886,16752 +6887,4811 +6888,18052 +6889,18046 +6890,4113 +6891,811 +6892,1102 +6893,13290 +6894,13291 +6895,13292 +6896,30610 +6897,12547 +6898,21597 +6899,21597 +6900,13337 +6901,23002 +6902,17001 +6903,13357 +6904,20575 +6905,22222 +6906,13361 +6907,16903 +6908,16723 +6909,20185 +6910,13365 +6911,16931 +6912,13370 +6913,13458 +6914,1695 +6915,6564 +6916,13005 +6926,13430 +6927,13433 +6928,13085 +6929,7798 +6930,13435 +6931,2757 +6946,13455 +6947,13710 +6948,6418 +6949,13710 +6950,13710 +6951,13709 +6952,7169 +6953,13466 +6966,19135 +6967,20162 +6968,19771 +6969,20400 +6970,21475 +6971,15327 +6972,22480 +6973,22481 +6974,22482 +6975,22734 +6976,25079 +6977,22731 +6978,19133 +6979,19274 +6980,20601 +6981,20606 +6982,19652 +6983,19773 +6984,20159 +6985,20163 +6986,19495 +6987,6628 +6988,12328 +6989,1150 +6990,13490 +6991,9116 +6992,13493 +6993,13494 +6994,13495 +6995,13703 +6996,13497 +6997,7798 +6998,13500 +6999,2757 +7000,16919 +7001,20824 +7002,4743 +7003,13508 +7004,15042 +7005,6440 +7006,2757 +7007,6340 +7026,17119 +7027,17148 +7046,13649 +7047,17146 +7048,15283 +7049,17143 +7050,15863 +7051,8721 +7052,13664 +7053,23092 +7054,17133 +7055,17112 +7056,15243 +7057,28729 +7058,13671 +7059,13672 +7060,17132 +7061,13678 +7062,13679 +7063,12675 +7064,13681 +7065,13684 +7067,13686 +7068,20874 +7069,23755 +7070,4136 +7071,13692 +7072,3668 +7073,6002 +7074,7048 +7075,8560 +7076,23754 +7077,21583 +7078,23287 +7079,8025 +7080,13689 +7081,13687 +7082,23284 +7083,7279 +7084,15274 +7085,15274 +7086,15274 +7087,1102 +7088,1102 +7089,1102 +7090,15274 +7091,15274 +7092,15274 +7093,15274 +7094,13711 +7095,16810 +7096,19573 +7097,2474 +7098,3429 +7099,13713 +7100,13715 +7101,13714 +7106,16959 +7107,13758 +7108,18661 +7109,18508 +7110,8720 +7111,14986 +7112,14657 +7113,14678 +7114,1102 +7115,19204 +7116,20602 +7117,19776 +7118,20161 +7119,15507 +7120,22730 +7126,13783 +7127,7171 +7128,13785 +7129,13484 +7130,15288 +7131,13799 +7132,3541 +7133,13011 +7134,13799 +7135,13806 +7146,8735 +7148,31201 +7166,13848 +7170,13853 +7171,13585 +7187,16999 +7188,13863 +7189,20622 +7190,20623 +7191,16367 +7192,1102 +7206,18059 +7207,18057 +7208,13885 +7209,13884 +7226,13903 +7227,13905 +7228,13906 +7229,11563 +7230,19610 +7231,7695 +7247,11449 +7248,8801 +7249,7162 +7266,11181 +7267,18597 +7268,18059 +7269,18057 +7270,13992 +7271,13998 +7272,7143 +7273,14000 +7274,11181 +7275,12328 +7276,23035 +7277,14001 +7278,21330 +7279,1816 +7280,17232 +7281,14002 +7282,3248 +7283,23010 +7284,3992 +7285,14004 +7286,6646 +7287,6629 +7288,1102 +7289,1102 +7290,1102 +7291,1695 +7292,14006 +7293,14007 +7294,14008 +7295,6645 +7296,14019 +7297,21604 +7298,20425 +7299,22021 +7306,14023 +7307,18098 +7308,12328 +7309,8927 +7326,19132 +7327,20398 +7328,19649 +7329,20160 +7330,2632 +7331,26046 +7332,15003 +7333,7276 +7334,16523 +7335,12482 +7336,14069 +7337,24646 +7338,9833 +7339,9835 +7340,9832 +7341,9837 +7342,14432 +7343,7602 +7344,21604 +7345,14305 +7346,14306 +7347,14307 +7348,6735 +7349,17230 +7350,16566 +7351,16563 +7352,14316 +7353,16599 +7354,16605 +7355,16604 +7356,23100 +7357,15906 +7358,2057 +7359,17225 +7360,15274 +7361,1102 +7362,1102 +7363,1102 +7364,1102 +7365,14326 +7366,16601 +7367,16606 +7368,16600 +7369,16607 +7370,16603 +7371,21322 +7372,2585 +7373,14777 +7374,14781 +7375,25674 +7376,18062 +7377,23030 +7378,14803 +7386,14831 +7387,14832 +7388,9134 +7389,3426 +7390,17215 +7391,28734 +7392,6646 +7406,6755 +7407,21900 +7408,11270 +7409,19043 +7410,14803 +7411,23043 +7412,21902 +7413,21298 +7414,21901 +7415,14950 +7416,26032 +7417,26030 +7418,26034 +7419,26043 +7420,30091 +7421,26036 +7422,26037 +7423,26039 +7424,26040 +7425,3920 +7426,9832 +7427,9853 +7428,26371 +7429,14646 +7430,14990 +7431,14644 +7432,16825 +7433,16651 +7434,14645 +7435,14589 +7436,15175 +7437,14647 +7438,14648 +7439,14995 +7440,15001 +7441,21311 +7442,14993 +7443,15000 +7444,14996 +7445,5414 +7446,23062 +7447,14997 +7448,14999 +7449,15274 +7450,1102 +7451,1102 +7452,1102 +7453,1102 +7454,25862 +7455,25868 +7456,30092 +7457,25865 +7458,25860 +7459,25872 +7460,26064 +7461,25861 +7462,25866 +7463,4403 +7464,11180 +7465,26065 +7466,9832 +7467,9853 +7468,15005 +7469,15015 +7470,15911 +7471,15008 +7472,13051 +7473,15014 +7474,15178 +7475,15410 +7476,15012 +7477,17099 +7478,15020 +7479,15307 +7480,15018 +7481,15017 +7482,17194 +7483,23057 +7484,15023 +7485,15016 +7486,22559 +7487,25820 +7488,25824 +7489,25819 +7490,25817 +7491,25822 +7492,26018 +7493,25818 +7494,25821 +7495,18451 +7496,18697 +7497,9850 +7498,13025 +7499,15123 +7500,8031 +7506,15150 +7507,22923 +7508,22923 +7509,22958 +7510,15201 +7511,15223 +7512,15232 +7513,25078 +7514,25076 +7515,25072 +7516,15274 +7517,15398 +7518,15400 +7519,15401 +7520,15909 +7521,15405 +7522,15409 +7523,15402 +7524,15406 +7525,15407 +7526,16838 +7527,17094 +7528,15416 +7529,21292 +7530,15415 +7531,15412 +7532,15417 +7533,23016 +7534,15413 +7535,15411 +7536,26099 +7537,18775 +7538,26087 +7539,3193 +7540,26098 +7541,26089 +7542,26090 +7543,26091 +7544,26097 +7545,26088 +7546,6926 +7547,9846 +7548,15420 +7549,14437 +7550,9854 +7551,15421 +7552,9832 +7553,15422 +7554,15424 +7555,6098 +7556,21598 +7557,15427 +7558,15428 +7559,11919 +7560,1102 +7561,1102 +7566,16204 +7567,15471 +7568,7098 +7569,16203 +7586,7245 +7587,15510 +7606,15721 +7607,20920 +7608,18494 +7609,15564 +7610,21596 +7611,15561 +7612,15576 +7613,1102 +7626,15583 +7627,15590 +7628,13125 +7629,362 +7646,11448 +7666,15685 +7667,8752 +7668,4049 +7669,7045 +7670,1659 +7671,18707 +7672,6014 +7673,9854 +7674,15692 +7675,9717 +7676,18091 +7678,1102 +7679,7886 +7680,3563 +7681,18519 +7682,6555 +7683,15720 +7684,15800 +7685,15725 +7686,9834 +7687,15726 +7688,15731 +7689,20172 +7690,15753 +7691,16823 +7706,15786 +7707,15795 +7708,20825 +7709,15824 +7710,20360 +7711,12673 +7712,4488 +7713,15806 +7714,20318 +7715,9725 +7716,15685 +7717,22221 +7718,15809 +7719,15811 +7720,16224 +7721,19735 +7722,6522 +7723,21252 +7724,16223 +7725,15817 +7726,18751 +7727,17197 +7728,19109 +7729,15821 +7730,15466 +7731,15420 +7733,15828 +7734,3410 +7735,13489 +7736,5224 +7737,1246 +7738,16815 +7739,15866 +7740,7366 +7741,15867 +7742,1102 +7746,7899 +7747,18792 +7748,4405 +7749,21595 +7750,13673 +7751,15886 +7752,19670 +7753,19371 +7754,15889 +7755,15890 +7756,15894 +7757,20316 +7758,22238 +7759,15897 +7760,21404 +7761,19210 +7766,29438 +7767,29434 +7768,29436 +7769,29439 +7770,29435 +7771,29437 +7786,15938 +7787,18455 +7806,15963 +7807,15964 +7808,15965 +7809,15966 +7810,15794 +7811,4836 +7812,4829 +7813,1659 +7826,15990 +7846,7886 +7847,1438 +7848,18500 +7866,16023 +7867,16024 +7868,9288 +7869,16028 +7870,18721 +7871,6357 +7872,7411 +7886,4049 +7887,16052 +7888,9854 +7906,16283 +7907,16065 +7908,1134 +7909,13496 +7910,4777 +7911,20657 +7912,4719 +7913,16081 +7914,16080 +7915,16084 +7916,16086 +7917,16087 +7918,16089 +7919,16091 +7920,3409 +7921,16092 +7922,16093 +7923,16100 +7924,6985 +7925,16102 +7926,16103 +7927,16105 +7928,16106 +7929,23538 +7930,16109 +7931,16110 +7932,16111 +7933,16113 +7934,16115 +7935,16117 +7936,16118 +7937,16119 +7938,16124 +7939,24393 +7941,16126 +7942,5639 +7943,16128 +7944,20221 +7945,5223 +7946,15887 +7947,16130 +7948,16131 +7949,16133 +7950,16134 +7951,17183 +7952,16136 +7953,16137 +7954,19748 +7955,20071 +7956,16146 +7957,16147 +7958,19272 +7959,22234 +7960,23264 +7961,25053 +7963,16184 +7964,24676 +7965,24686 +7966,24681 +7967,16189 +7968,16190 +7969,16205 +7970,16206 +7971,16209 +7972,16210 +7973,16211 +7974,22193 +7975,15274 +7976,1102 +7977,1102 +7978,15274 +7979,15274 +7980,15274 +7981,15274 +7982,15274 +7983,15274 +7984,15274 +7985,15274 +7986,15274 +7987,15274 +7988,15274 +7989,15274 +7990,15274 +7991,1102 +7992,15274 +7993,15274 +7994,15274 +7995,811 +7996,16548 +7997,15308 +8006,20326 +8007,6496 +8008,7045 +8009,17923 +8026,18722 +8027,18718 +8028,1102 +8029,15274 +8030,1301 +8046,6672 +8047,18719 +8048,16300 +8049,6539 +8050,6851 +8051,16299 +8052,17922 +8053,12410 +8066,16303 +8067,5998 +8068,5998 +8069,5998 +8070,3029 +8071,6093 +8072,9154 +8073,16321 +8074,16322 +8075,6399 +8076,21203 +8077,18078 +8078,18080 +8079,21794 +8080,28398 +8081,28399 +8082,28404 +8083,9388 +8084,28401 +8085,28402 +8086,28403 +8087,9731 +8088,28395 +8089,28396 +8090,25829 +8091,28397 +8092,15340 +8093,25833 +8094,28394 +8095,16325 +8106,16631 +8107,16634 +8108,16636 +8109,23107 +8110,16633 +8111,16637 +8112,16632 +8113,19901 +8114,21459 +8115,16638 +8116,16920 +8117,14701 +8118,14700 +8119,28737 +8120,23038 +8121,14698 +8122,21300 +8123,14697 +8124,14696 +8125,26103 +8126,26105 +8127,26118 +8128,26107 +8129,26108 +8130,26109 +8131,26115 +8132,26110 +8133,26114 +8134,26120 +8135,27339 +8136,1438 +8137,27329 +8138,27330 +8139,27331 +8140,27332 +8141,27334 +8142,27338 +8143,27335 +8144,27336 +8146,3146 +8147,16453 +8148,9660 +8149,16456 +8150,6396 +8151,1249 +8152,2533 +8153,7346 +8154,2874 +8155,16464 +8156,27345 +8157,27340 +8158,27341 +8159,27342 +8160,27343 +8161,27347 +8162,27344 +8163,27346 +8164,1069 +8165,22838 +8167,21363 +8168,19531 +8169,8952 +8170,16474 +8171,8794 +8172,7354 +8173,26389 +8174,17213 +8175,16482 +8176,16483 +8177,18354 +8178,26591 +8179,18343 +8180,18350 +8181,20728 +8182,20741 +8183,18355 +8184,18346 +8185,16487 +8186,20851 +8187,16488 +8188,20735 +8189,11598 +8190,20081 +8191,16492 +8192,16497 +8193,17151 +8194,19721 +8195,23049 +8196,26572 +8197,16505 +8198,16506 +8199,18342 +8200,16508 +8201,25711 +8202,16510 +8203,16513 +8204,16515 +8205,16516 +8206,16517 +8207,16519 +8208,16520 +8209,16521 +8210,25691 +8211,25689 +8212,18935 +8213,4389 +8214,25693 +8215,23081 +8216,24297 +8217,21331 +8218,1281 +8223,20073 +8224,22232 +8225,20076 +8226,16539 +8243,16547 +8244,18704 +8245,17211 +8246,16766 +8247,17229 +8248,17238 +8249,17216 +8250,17234 +8251,16764 +8252,17236 +8253,17228 +8254,18728 +8255,15411 +8256,17258 +8257,17259 +8258,18470 +8259,23063 +8260,17263 +8261,17321 +8262,17265 +8263,17267 +8264,28451 +8265,26204 +8266,26228 +8267,28726 +8268,26210 +8269,28667 +8270,26220 +8271,21694 +8272,26217 +8273,27373 +8274,27372 +8275,26232 +8276,27374 +8277,27375 +8278,27376 +8279,27379 +8280,27377 +8281,27378 +8282,18790 +8283,17251 +8284,17256 +8285,17262 +8286,13984 +8287,17255 +8288,17271 +8289,17252 +8290,17276 +8291,17261 +8292,17274 +8293,17318 +8294,17317 +8295,17316 +8296,17312 +8297,23066 +8298,17314 +8299,17269 +8300,17313 +8301,17319 +8302,26313 +8303,26314 +8304,26323 +8305,26316 +8306,26312 +8307,26310 +8308,26315 +8309,26317 +8310,26321 +8311,27394 +8312,27389 +8313,26324 +8314,27390 +8315,27391 +8316,27392 +8317,27395 +8318,27393 +8319,27396 +8320,27571 +8343,12105 +8344,16464 +8345,28987 +8346,16678 +8347,16731 +8348,17226 +8349,8660 +8350,224 +8363,16456 +8364,1208 +8365,1208 +8366,1208 +8367,16729 +8368,21470 +8383,7798 +8384,1102 +8385,1102 +8386,15274 +8387,15274 +8388,1102 +8389,15274 +8390,15274 +8391,1116 +8392,1438 +8393,16776 +8394,10923 +8395,15274 +8396,3759 +8397,15274 +8398,15274 +8399,15274 +8400,15274 +8401,15274 +8402,15274 +8403,1102 +8404,1102 +8405,1102 +8406,1102 +8407,1102 +8408,1102 +8409,1102 +8410,16801 +8411,18114 +8412,16803 +8423,16836 +8424,16837 +8425,6703 +8426,19570 +8427,16860 +8428,16861 +8429,6703 +8430,18071 +8431,7403 +8432,16325 +8443,18725 +8444,7737 +8463,16161 +8483,18085 +8484,18574 +8485,20629 +8486,20629 +8487,20629 +8488,20629 +8489,20629 +8490,20629 +8491,20629 +8492,17292 +8493,17288 +8494,17292 +8495,17292 +8496,17292 +8497,17284 +8498,20655 +8499,20655 +8500,19091 +8501,19091 +8502,12333 +8503,12333 +8504,12334 +8505,12334 +8506,17329 +8507,17329 +8508,11863 +8523,2592 +8524,14993 +8525,7798 +8526,17391 +8527,2592 +8528,17397 +8529,17403 +8543,15851 +8544,17457 +8545,17458 +8546,6412 +8547,6270 +8548,17461 +8563,17785 +8564,18047 +8583,17786 +8584,18717 +8585,15718 +8586,17494 +8587,18723 +8588,17494 +8589,17494 +8590,17494 +8591,17494 +8592,17494 +8593,14326 +8594,7695 +8595,17785 +8603,15734 +8623,18632 +8624,17599 +8625,17600 +8626,17602 +8627,17606 +8628,17606 +8629,17606 +8630,17607 +8631,17608 +8632,17608 +8633,17607 +8643,18050 +8644,18050 +8645,18049 +8646,18049 +8647,12331 +8663,17655 +8683,6410 +8684,18079 +8685,8381 +8686,17685 +8687,7744 +8688,6511 +8703,17776 +8704,18632 +8705,18632 +8707,8923 +8708,17788 +8723,3918 +8724,17809 +8743,1317 +8744,1317 +8745,1317 +8746,18416 +8747,21298 +8748,28389 +8749,18414 +8750,21312 +8751,28393 +8752,28391 +8753,18418 +8754,18422 +8755,28847 +8756,1317 +8757,1317 +8758,1317 +8759,1317 +8760,1317 +8761,1317 +8762,1317 +8763,1317 +8764,1317 +8765,1317 +8766,926 +8768,1317 +8769,1317 +8770,1317 +8771,1317 +8772,1317 +8773,1317 +8774,1317 +8775,1317 +8776,1317 +8777,1317 +8778,1317 +8779,1317 +8780,1317 +8781,1317 +8782,1317 +8783,1317 +8784,1317 +8785,1317 +8786,1317 +8787,1317 +8788,1317 +8789,1317 +8790,1317 +8791,1317 +8792,1317 +8793,1317 +8794,1317 +8795,1317 +8796,1317 +8797,1317 +8798,1317 +8799,1317 +8800,1317 +8801,1317 +8802,1103 +8803,1103 +8804,1103 +8805,1103 +8806,1103 +8807,1103 +8808,1103 +8809,1103 +8810,1103 +8811,1103 +8812,1103 +8813,1103 +8814,1103 +8815,1103 +8816,1103 +8818,1103 +8819,1103 +8820,1103 +8821,1103 +8822,1103 +8823,1103 +8824,1103 +8825,1103 +8826,1103 +8827,1249 +8828,1103 +8829,1103 +8830,1103 +8831,19493 +8832,1103 +8833,1103 +8834,1103 +8835,1103 +8836,19498 +8837,1103 +8838,19492 +8839,19496 +8840,1103 +8841,1103 +8842,1103 +8843,1103 +8844,1103 +8845,17871 +8846,19494 +8847,1103 +8848,1103 +8849,1103 +8850,1103 +8851,1103 +8852,1103 +8853,1103 +8854,1103 +8855,1103 +8856,1103 +8857,1103 +8858,1103 +8859,1103 +8860,1103 +8861,1103 +8862,1103 +8863,1103 +8864,1103 +8865,1103 +8866,1103 +8867,1103 +8868,1103 +8869,1103 +8870,1103 +8871,1103 +8872,1103 +8873,1103 +8874,1103 +8875,1103 +8876,1103 +8877,1103 +8878,1103 +8879,1103 +8880,1103 +8881,1103 +8882,1103 +8883,1103 +8884,1103 +8885,1103 +8886,1103 +8887,1103 +8888,1103 +8889,1103 +8890,1103 +8891,1103 +8892,1103 +8893,1103 +8894,1103 +8895,1103 +8896,1103 +8897,1103 +8898,1103 +8899,1103 +8900,1317 +8901,1317 +8902,1317 +8903,1317 +8904,1317 +8905,1317 +8906,1317 +8907,1317 +8909,1155 +8910,1155 +8911,1155 +8912,1155 +8913,1155 +8914,1155 +8915,1155 +8916,1155 +8917,1155 +8918,1155 +8919,1155 +8920,1155 +8921,1155 +8922,1155 +8923,1288 +8924,6379 +8925,18077 +8926,13710 +8927,13710 +8928,13710 +8929,1155 +8930,1155 +8931,1155 +8932,21906 +8933,1155 +8934,1155 +8935,1155 +8936,1155 +8937,1155 +8938,1155 +8939,1155 +8940,1155 +8941,1155 +8942,1155 +8943,1155 +8944,1155 +8945,1155 +8947,1155 +8948,17880 +8949,17882 +8950,6342 +8951,17883 +8952,4112 +8953,17881 +8954,1143 +8955,1143 +8956,2351 +8957,24718 +8958,1143 +8959,24718 +8960,1143 +8961,1143 +8962,1143 +8963,1143 +8964,1143 +8965,1143 +8966,1143 +8967,1143 +8968,1143 +8969,1143 +8971,1143 +8972,1143 +8973,7373 +8974,1143 +8975,1143 +8976,1143 +8977,1143 +8978,1143 +8980,1143 +8981,1143 +8983,1143 +8984,13707 +8985,13707 +8986,1143 +8987,1143 +8988,1143 +8989,1143 +8990,1143 +8991,1143 +8992,1143 +8993,1143 +8994,1143 +8995,1143 +8996,1143 +8997,1143 +8998,1143 +8999,1143 +9000,1143 +9001,1143 +9002,1143 +9003,1143 +9004,1143 +9005,1143 +9006,1143 +9007,1143 +9008,1143 +9009,1143 +9010,1143 +9011,1143 +9012,1143 +9013,1143 +9014,1143 +9015,1143 +9016,1143 +9017,1143 +9018,1143 +9019,1143 +9020,1143 +9021,1143 +9022,1143 +9023,1143 +9024,1143 +9025,1143 +9026,1143 +9027,1143 +9028,1143 +9029,1143 +9030,926 +9031,1143 +9032,1143 +9033,1143 +9034,1143 +9035,1143 +9036,1215 +9037,5563 +9039,5563 +9040,5563 +9041,5563 +9043,5563 +9044,5563 +9046,5563 +9047,5563 +9048,5563 +9049,5563 +9050,5563 +9051,5563 +9052,5563 +9053,5563 +9054,5563 +9055,5563 +9056,5563 +9057,5563 +9058,5563 +9059,5563 +9060,7397 +9061,7921 +9062,5563 +9063,5563 +9064,5563 +9065,5563 +9066,5563 +9067,5563 +9068,5563 +9069,5563 +9070,5563 +9071,5563 +9072,5563 +9073,5563 +9074,5563 +9075,5563 +9076,5563 +9077,5563 +9078,5563 +9079,5563 +9080,5563 +9081,5563 +9082,5563 +9083,5563 +9084,5563 +9085,5563 +9086,5563 +9087,5563 +9088,17889 +9089,5563 +9090,5563 +9091,5563 +9092,5563 +9093,5563 +9094,5563 +9095,5563 +9096,5563 +9097,5563 +9098,5563 +9099,5563 +9100,5563 +9101,5563 +9102,5563 +9103,5563 +9104,5563 +9105,5563 +9123,5563 +9124,5563 +9125,5563 +9126,5563 +9127,5563 +9128,5563 +9129,5563 +9130,5563 +9131,5563 +9132,5563 +9133,5563 +9134,5563 +9135,5563 +9136,5563 +9137,5563 +9138,5563 +9139,5563 +9140,5563 +9141,5563 +9142,5563 +9143,5563 +9144,17893 +9145,5563 +9146,5563 +9147,5563 +9148,5563 +9149,8025 +9150,5563 +9151,5563 +9152,5563 +9153,7629 +9154,15714 +9155,17896 +9156,5563 +9157,5563 +9158,5563 +9159,5563 +9160,5563 +9161,5563 +9162,5563 +9164,5563 +9165,5563 +9166,5563 +9167,5563 +9168,5563 +9169,5563 +9170,5563 +9171,5563 +9172,17898 +9173,17899 +9174,5563 +9175,5563 +9176,5563 +9177,5563 +9178,5563 +9179,3664 +9180,5563 +9181,5563 +9182,5563 +9183,5563 +9184,5563 +9185,5563 +9186,13709 +9187,17902 +9188,5563 +9189,17911 +9190,1246 +9191,1246 +9192,1246 +9193,1246 +9194,1246 +9195,1246 +9197,4134 +9198,1246 +9199,1246 +9200,1246 +9201,1246 +9202,1246 +9203,1246 +9204,1246 +9205,1246 +9206,17904 +9207,1246 +9208,1246 +9209,1246 +9210,9731 +9211,1246 +9212,1246 +9214,1246 +9215,1246 +9216,1246 +9217,1246 +9218,1246 +9219,1246 +9221,1246 +9222,1246 +9223,1246 +9224,16325 +9225,1246 +9226,1246 +9227,1246 +9228,1246 +9229,1246 +9230,1246 +9231,1246 +9233,15714 +9234,1399 +9235,3018 +9236,3029 +9237,18093 +9238,8923 +9240,17916 +9241,17916 +9242,18204 +9243,17918 +9244,7922 +9245,18080 +9246,7038 +9247,3668 +9248,18720 +9249,6709 +9250,811 +9251,7695 +9252,7798 +9253,8927 +9254,1322 +9255,6688 +9256,18021 +9257,18022 +9258,1659 +9259,9860 +9260,18059 +9261,4690 +9262,17957 +9263,8556 +9264,24216 +9265,13100 +9266,3331 +9275,13025 +9276,12332 +9277,17922 +9278,18215 +9279,7355 +9280,7355 +9281,7355 +9282,7355 +9283,18057 +9284,18057 +9285,27362 +9286,27356 +9287,27358 +9288,27359 +9289,27357 +9290,25839 +9291,27360 +9292,27361 +9293,15274 +9294,15274 +9295,15274 +9296,6270 +9297,15274 +9298,15274 +9299,18010 +9300,1301 +9301,15274 +9302,6270 +9303,1301 +9304,1301 +9305,1301 +9306,18026 +9307,6506 +9308,18716 +9309,8931 +9311,7798 +9312,18066 +9313,18067 +9314,18068 +9315,18070 +9316,7355 +9317,18069 +9318,8733 +9319,25592 +9320,7150 +9321,1288 +9322,8940 +9323,2616 +9324,15770 +9325,8556 +9326,13490 +9327,7356 +9328,18155 +9329,3029 +9330,18158 +9331,18164 +9332,18170 +9333,18172 +9334,18173 +9335,7161 +9336,18174 +9355,9835 +9356,18192 +9357,3233 +9358,18193 +9359,19756 +9360,18059 +9361,18059 +9362,224 +9363,18499 +9364,18057 +9365,18649 +9366,18256 +9367,15274 +9368,9837 +9369,3668 +9370,1093 +9371,16209 +9372,20616 +9375,21295 +9378,18257 +9379,20032 +9380,20031 +9381,21025 +9382,28734 +9383,18328 +9384,18264 +9385,20249 +9386,18268 +9387,18430 +9388,18427 +9389,18433 +9390,19056 +9391,18269 +9392,18270 +9393,11410 +9394,21301 +9395,18271 +9396,18274 +9397,22996 +9398,18361 +9399,26498 +9400,20553 +9401,7485 +9402,21403 +9403,18824 +9404,18826 +9405,18283 +9406,18284 +9407,12345 +9408,20274 +9409,18352 +9410,29000 +9411,6480 +9412,18298 +9413,19620 +9414,18434 +9415,18347 +9416,22233 +9417,18308 +9418,20193 +9419,18312 +9420,18322 +9421,8026 +9422,20663 +9423,18324 +9424,18325 +9425,22220 +9426,20556 +9427,22051 +9428,18331 +9429,18376 +9430,18333 +9431,18334 +9432,18378 +9433,18337 +9434,18338 +9435,18339 +9436,18359 +9437,3563 +9438,18712 +9439,11164 +9440,3563 +9441,11164 +9442,18712 +9443,6703 +9444,8296 +9445,18364 +9446,16538 +9447,18365 +9448,18366 +9449,19645 +9450,18367 +9451,926 +9452,20323 +9453,20595 +9454,14749 +9455,18371 +9456,18372 +9457,18373 +9458,18374 +9459,19298 +9460,13998 +9461,3258 +9462,9151 +9463,18021 +9464,7495 +9465,18377 +9466,18379 +9467,20311 +9468,11205 +9469,18382 +9470,18689 +9471,7425 +9472,13025 +9473,18386 +9474,18387 +9475,22209 +9476,18389 +9477,21514 +9478,25598 +9479,18392 +9480,22235 +9481,19309 +9482,20269 +9483,20786 +9484,22426 +9485,18403 +9486,19295 +9487,18405 +9488,18406 +9489,18408 +9490,18409 +9491,14765 +9492,18415 +9507,18426 +9508,18428 +9509,18429 +9510,18431 +9511,20029 +9512,22988 +9513,18438 +9514,20424 +9515,32153 +9516,18440 +9517,20348 +9518,18443 +9519,18444 +9520,20574 +9521,19307 +9522,18447 +9523,17898 +9527,20300 +9528,18473 +9529,12331 +9530,13122 +9531,18497 +9532,12331 +9533,224 +9534,18498 +9535,28169 +9536,18901 +9537,18499 +9538,224 +9539,12925 +9540,14006 +9541,16028 +9542,3093 +9543,22443 +9544,7629 +9545,6015 +9546,1301 +9547,7798 +9548,3093 +9550,22443 +9551,6015 +9552,7798 +9553,7798 +9554,18500 +9555,3093 +9556,22443 +9557,6015 +9558,7629 +9559,1301 +9560,7798 +9561,18500 +9562,18500 +9563,22443 +9564,18500 +9565,7798 +9566,22443 +9567,6015 +9568,7798 +9569,1301 +9570,3093 +9571,3093 +9572,3669 +9573,7629 +9574,1301 +9575,18500 +9576,3093 +9577,7629 +9578,1301 +9579,7798 +9580,6015 +9581,7798 +9587,21202 +9588,224 +9589,18514 +9590,929 +9591,18517 +9592,18519 +9593,18524 +9594,18094 +9595,18525 +9596,18526 +9597,18527 +9598,19011 +9599,26948 +9600,18911 +9601,28142 +9602,20069 +9603,20432 +9604,18531 +9605,23134 +9606,18532 +9607,18533 +9608,7494 +9609,18991 +9618,18532 +9619,18532 +9620,18532 +9621,18532 +9622,14432 +9623,18883 +9624,28195 +9625,28317 +9626,19302 +9627,11410 +9628,2593 +9629,18568 +9630,4440 +9631,28339 +9632,28283 +9633,28281 +9634,18998 +9635,18915 +9636,4446 +9637,28252 +9638,28118 +9639,18572 +9640,18573 +9641,9854 +9642,9832 +9643,18822 +9644,18575 +9645,18906 +9646,28172 +9647,18577 +9648,28097 +9649,28294 +9650,28279 +9651,18578 +9652,17150 +9653,18579 +9654,28307 +9655,9833 +9656,18580 +9657,28426 +9658,19913 +9659,18583 +9660,28299 +9661,20900 +9662,28295 +9663,28315 +9664,18584 +9665,18586 +9666,28300 +9678,5233 +9679,22223 +9680,20475 +9681,7980 +9682,28284 +9683,20289 +9684,19130 +9685,19311 +9686,19746 +9687,28328 +9698,17186 +9699,28326 +9700,18633 +9701,18634 +9702,18635 +9703,28297 +9704,28296 +9705,17231 +9706,20975 +9718,13488 +9719,13488 +9738,1262 +9739,1262 +9740,1262 +9741,1262 +9742,14710 +9743,27532 +9744,14705 +9745,27533 +9746,14706 +9747,14711 +9748,18883 +9749,27529 +9750,19034 +9751,19033 +9752,17169 +9753,18469 +9754,23034 +9755,19032 +9756,19030 +9757,19029 +9758,22683 +9759,22684 +9760,22685 +9761,25960 +9762,22686 +9763,22687 +9764,18823 +9765,22688 +9766,25947 +9767,25946 +9768,25939 +9769,28023 +9770,23106 +9771,25941 +9772,25942 +9773,25944 +9774,25949 +9775,28177 +9776,16981 +9777,28427 +9778,20826 +9779,28433 +9780,28428 +9781,28431 +9782,28430 +9783,13011 +9784,6987 +9785,25776 +9786,25978 +9787,13484 +9788,25775 +9789,3541 +9790,18657 +9791,27751 +9792,16881 +9793,14736 +9794,27752 +9795,27753 +9796,27754 +9797,27755 +9798,18120 +9799,28477 +9800,27756 +9801,6760 +9802,27761 +9803,27760 +9804,1685 +9805,23108 +9806,2358 +9807,27759 +9808,691 +9809,27758 +9810,6869 +9811,25772 +9812,25975 +9813,25773 +9814,25771 +9815,697 +9816,26121 +9817,25774 +9818,1019 +9819,27860 +9820,27861 +9821,27857 +9822,27858 +9823,10508 +9824,27855 +9825,27853 +9826,27856 +9827,14936 +9828,11581 +9829,28482 +9830,6274 +9831,27768 +9832,27766 +9833,6772 +9834,27764 +9835,11580 +9836,27769 +9837,27783 +9838,27779 +9839,27778 +9840,27777 +9841,27770 +9842,27776 +9843,26060 +9844,28424 +9845,28423 +9846,28418 +9847,15236 +9848,28422 +9849,16638 +9850,12980 +9851,28419 +9852,28425 +9853,28421 +9854,14068 +9855,11956 +9856,28734 +9857,18930 +9858,18488 +9859,26550 +9860,23004 +9861,18929 +9862,14635 +9863,8098 +9864,25980 +9865,25786 +9866,25787 +9867,26251 +9868,25788 +9869,25784 +9870,25991 +9871,26249 +9872,25790 +9873,25988 +9874,28064 +9875,26470 +9876,28088 +9877,28065 +9878,28067 +9879,28057 +9880,28062 +9881,28068 +9882,21603 +9883,28061 +9884,28074 +9885,18904 +9886,3606 +9887,18903 +9888,20873 +9889,18921 +9890,23023 +9891,17129 +9892,18912 +9893,27807 +9894,3169 +9895,27787 +9896,27788 +9897,27784 +9898,27794 +9899,25911 +9900,27791 +9901,27792 +9902,27789 +9903,26163 +9904,27790 +9905,28411 +9906,28415 +9907,11548 +9908,28412 +9909,28410 +9910,28413 +9911,28416 +9912,28409 +9913,28417 +9914,18714 +9915,28414 +9916,17115 +9917,18937 +9918,25940 +9919,23073 +9920,18936 +9921,19010 +9922,18935 +9923,18939 +9924,18934 +9925,18938 +9926,25930 +9927,25931 +9928,25932 +9929,25938 +9930,25933 +9931,25928 +9932,25937 +9933,25934 +9934,25935 +9935,18819 +9936,28010 +9937,16936 +9938,15040 +9939,17130 +9940,27799 +9941,27796 +9942,14613 +9943,27800 +9944,27801 +9945,13664 +9946,28972 +9947,14702 +9948,18944 +9949,18945 +9950,18943 +9951,23018 +9952,18946 +9953,11275 +9954,18947 +9955,18951 +9956,26181 +9957,26183 +9958,26234 +9959,26202 +9960,26185 +9961,26180 +9962,26188 +9963,26200 +9964,26191 +9965,26194 +9966,27348 +9967,27351 +9968,27352 +9969,27511 +9970,27354 +9971,27355 +9972,27350 +9973,27349 +9974,18815 +9978,21296 +9998,24352 +9999,24354 +10000,6338 +10001,19141 +10002,19061 +10003,18835 +10004,24951 +10005,6338 +10007,19114 +10008,18861 +10009,16764 +10010,15015 +10011,18889 +10018,19111 +10019,18999 +10020,18886 +10021,18949 +10022,16065 +10023,19055 +10024,18860 +10025,19060 +10026,21154 +10027,18865 +10028,18866 +10029,19113 +10030,18872 +10031,19051 +10032,18877 +10033,18879 +10034,13115 +10035,13117 +10036,13116 +10038,18882 +10039,13051 +10040,13119 +10041,19000 +10042,14606 +10043,20209 +10044,18933 +10045,14450 +10046,16853 +10047,19009 +10048,18914 +10049,20472 +10050,1282 +10051,4056 +10052,18916 +10053,19142 +10054,18924 +10055,18923 +10056,18925 +10057,28158 +10058,28151 +10059,28124 +10060,28125 +10061,28131 +10062,29002 +10063,28123 +10064,28140 +10065,28165 +10066,28155 +10067,19019 +10068,19013 +10069,19014 +10070,19012 +10071,23060 +10072,19017 +10073,21309 +10074,19018 +10075,19020 +10076,19725 +10077,26327 +10078,20972 +10079,26331 +10080,26328 +10081,19718 +10082,26326 +10083,26330 +10084,19720 +10085,26329 +10086,27363 +10087,27364 +10088,27365 +10089,27370 +10090,27366 +10091,27367 +10092,27371 +10093,27432 +10094,27368 +10095,27600 +10096,27601 +10097,27606 +10098,27607 +10099,27602 +10100,27605 +10101,27598 +10102,27609 +10103,27614 +10104,27599 +10105,27716 +10106,27718 +10107,27719 +10108,27721 +10109,27717 +10110,27726 +10111,28590 +10112,27731 +10113,27733 +10118,26291 +10119,26297 +10120,26304 +10121,26293 +10122,26295 +10123,26303 +10124,19708 +10125,26301 +10126,26289 +10127,27426 +10128,27427 +10129,27428 +10130,27429 +10131,27425 +10132,19759 +10133,27430 +10134,27431 +10135,27628 +10136,27630 +10137,27633 +10138,27631 +10139,28852 +10140,27639 +10141,27629 +10142,27640 +10143,27645 +10144,27647 +10145,18974 +10146,27741 +10147,27740 +10148,27743 +10149,27745 +10150,27746 +10151,27739 +10152,18962 +10153,27748 +10154,26127 +10155,26129 +10156,26122 +10157,26123 +10158,26152 +10159,26141 +10160,26139 +10161,26125 +10162,26130 +10163,23490 +10164,27407 +10165,29014 +10166,27411 +10167,27405 +10168,27408 +10169,27413 +10170,27414 +10171,27406 +10172,28109 +10173,28082 +10174,23136 +10175,28853 +10176,28083 +10177,28084 +10178,28112 +10179,28080 +10180,28079 +10181,28078 +10182,19002 +10183,6762 +10184,4382 +10185,23042 +10186,19005 +10187,27809 +10188,17137 +10189,19008 +10190,19001 +10191,26155 +10192,26160 +10193,26156 +10194,26173 +10195,26176 +10196,26162 +10197,26158 +10198,26172 +10199,26163 +10200,26164 +10201,27400 +10202,27402 +10203,27397 +10204,27388 +10205,27398 +10206,27399 +10207,27404 +10208,27401 +10209,27403 +10210,27867 +10211,24291 +10212,15214 +10213,27870 +10214,27868 +10215,28992 +10216,27842 +10217,25198 +10218,27866 +10219,28851 +10220,18977 +10221,18980 +10222,18979 +10223,18978 +10224,23048 +10225,18981 +10226,18985 +10227,18982 +10228,18983 +10229,26265 +10230,26267 +10231,26278 +10232,26269 +10233,26270 +10234,26264 +10235,26274 +10236,26272 +10237,26273 +10238,27380 +10239,27385 +10240,27384 +10241,27387 +10242,27381 +10243,27382 +10244,27383 +10245,27386 +10246,27821 +10247,4272 +10248,16892 +10249,26126 +10250,27824 +10251,16642 +10252,27822 +10253,27823 +10254,28479 +10255,27830 +10256,27847 +10257,27844 +10258,27850 +10259,27846 +10260,27845 +10261,29051 +10262,27843 +10263,27849 +10264,8664 +10265,26239 +10266,26241 +10267,26259 +10268,26244 +10269,26245 +10270,26237 +10271,27806 +10272,27804 +10273,26248 +10274,27805 +10275,27416 +10276,27419 +10277,29003 +10278,27418 +10279,27423 +10280,13206 +10281,27422 +10282,27420 +10283,7357 +10285,18597 +10286,18953 +10287,16470 +10288,18976 +10289,27862 +10290,983 +10298,9832 +10299,9853 +10300,15274 +10301,15274 +10302,15274 +10303,15274 +10304,15274 +10305,1093 +10306,2616 +10307,1093 +10308,2616 +10309,3331 +10310,3331 +10311,1102 +10312,15274 +10313,15274 +10314,1102 +10315,15274 +10316,15274 +10317,1102 +10318,1102 +10319,15274 +10320,15274 +10321,1102 +10322,15274 +10323,1102 +10324,15274 +10325,1102 +10326,1102 +10327,13121 +10328,19049 +10329,27951 +10330,3519 +10331,15816 +10332,28383 +10333,28382 +10338,8942 +10358,28156 +10359,19917 +10360,19089 +10361,19089 +10362,20910 +10363,26283 +10364,27415 +10365,27803 +10366,20831 +10367,20971 +10368,26351 +10369,26352 +10370,26353 +10371,26354 +10372,26365 +10373,26355 +10374,26364 +10375,26363 +10376,26333 +10377,26362 +10378,26332 +10379,27749 +10380,26334 +10381,26335 +10382,26336 +10383,26337 +10384,19844 +10385,26341 +10386,26339 +10387,26340 +10388,26257 +10389,19843 +10390,26342 +10391,26360 +10392,19089 +10393,19092 +10394,15798 +10398,19115 +10399,9123 +10400,27947 +10401,27946 +10402,21903 +10403,14389 +10404,27854 +10405,17195 +10406,28173 +10407,25777 +10408,27774 +10409,27771 +10410,28385 +10411,27949 +10412,28384 +10413,19125 +10414,17460 +10418,19149 +10420,2853 +10421,977 +10423,19201 +10424,15274 +10438,12331 +10439,19222 +10440,19222 +10441,19223 +10442,7148 +10443,3093 +10444,19225 +10445,12925 +10446,19239 +10447,3920 +10450,19530 +10454,6513 +10455,6513 +10456,2588 +10457,19284 +10458,7697 +10459,10377 +10460,19312 +10461,19314 +10462,19313 +10463,15274 +10464,19315 +10465,18050 +10466,19316 +10467,1283 +10478,1659 +10479,1283 +10498,19394 +10499,19397 +10500,19399 +10501,19402 +10502,19409 +10503,22423 +10504,19563 +10505,31324 +10506,23161 +10507,18062 +10508,18298 +10509,7050 +10510,20744 +10511,19421 +10512,19422 +10513,19422 +10514,7889 +10515,19461 +10518,23129 +10538,18203 +10539,19830 +10540,19831 +10541,19832 +10542,20813 +10543,20814 +10544,19782 +10545,22420 +10546,7326 +10547,6472 +10548,7326 +10549,19951 +10550,19994 +10551,19459 +10552,19462 +10553,19919 +10554,19918 +10555,6478 +10556,19316 +10558,19477 +10559,19487 +10560,19479 +10561,20620 +10562,25484 +10563,7629 +10564,7629 +10565,7629 +10566,7629 +10567,20649 +10568,19500 +10569,14006 +10570,28796 +10571,19501 +10572,28747 +10573,20149 +10574,19903 +10575,19502 +10576,21632 +10577,7397 +10578,19993 +10579,5996 +10580,19504 +10581,19506 +10582,28654 +10583,28808 +10584,28685 +10585,19507 +10586,7888 +10587,20627 +10588,23166 +10589,20220 +10590,7074 +10591,19519 +10592,19520 +10593,6673 +10594,15692 +10595,16190 +10596,19411 +10597,15706 +10598,7135 +10599,11932 +10600,9150 +10601,15274 +10602,1102 +10603,15274 +10604,15274 +10605,1102 +10606,15274 +10607,1102 +10608,1102 +10609,1102 +10610,19547 +10611,19549 +10612,19550 +10613,19551 +10614,19552 +10615,19553 +10616,19555 +10617,19556 +10618,6436 +10619,19557 +10620,20658 +10621,1301 +10622,19562 +10623,18391 +10624,25604 +10625,20315 +10626,19617 +10627,20259 +10628,20189 +10629,19950 +10630,22928 +10631,28800 +10632,28711 +10633,19900 +10634,9832 +10635,28230 +10636,12415 +10637,14152 +10638,28209 +10639,19566 +10640,2885 +10641,18168 +10642,17893 +10643,3029 +10644,1301 +10645,20626 +10646,20535 +10647,17883 +10648,7744 +10649,19223 +10650,6685 +10651,7050 +10652,22213 +10653,9174 +10654,19949 +10655,20210 +10656,28069 +10657,19991 +10658,28238 +10659,2516 +10660,22484 +10661,20220 +10662,19527 +10663,19576 +10664,7798 +10678,3024 +10679,3024 +10680,3024 +10681,3024 +10682,20219 +10683,19595 +10684,19606 +10685,19599 +10686,20820 +10687,18077 +10688,18077 +10689,18077 +10690,18077 +10691,15736 +10692,15737 +10693,15733 +10694,15734 +10695,12925 +10696,22229 +10697,20570 +10698,20275 +10699,12866 +10700,18832 +10701,28263 +10702,28273 +10703,20297 +10704,28267 +10705,19915 +10706,28336 +10707,19742 +10708,19786 +10709,28291 +10710,9834 +10711,9854 +10712,2533 +10713,6270 +10714,13496 +10715,18155 +10716,20625 +10717,19658 +10718,7842 +10719,16536 +10720,19662 +10721,14832 +10722,19663 +10723,19507 +10724,19665 +10725,19666 +10726,19667 +10727,20539 +10728,1102 +10738,11448 +10739,15422 +10740,28310 +10741,28212 +10742,19710 +10743,28143 +10744,19130 +10745,28330 +10746,28343 +10747,19992 +10748,4385 +10749,19728 +10750,20569 +10751,19920 +10752,19745 +10753,19762 +10754,19763 +10755,19764 +10756,19766 +10757,19767 +10758,19779 +10759,13122 +10760,28683 +10761,20572 +10762,19953 +10763,28783 +10764,28710 +10765,28688 +10766,21027 +10767,20974 +10768,28684 +10769,19785 +10770,19786 +10771,19910 +10772,8466 +10773,15692 +10774,28744 +10775,28694 +10776,22994 +10777,28595 +10778,1399 +10779,16452 +10780,9837 +10781,18470 +10782,19930 +10783,19995 +10784,19793 +10785,14776 +10786,19794 +10787,19796 +10788,19996 +10789,1134 +10790,3032 +10791,5567 +10792,7744 +10793,7744 +10794,7744 +10795,9834 +10796,21602 +10797,20030 +10798,28640 +10799,22242 +10800,19806 +10801,19912 +10802,18968 +10803,20035 +10804,19892 +10805,19127 +10806,19810 +10807,19812 +10808,19813 +10818,3331 +10819,19529 +10820,19932 +10821,28298 +10822,20655 +10823,20086 +10824,9859 +10825,19835 +10826,20293 +10827,28205 +10828,20273 +10829,6494 +10830,25482 +10831,6506 +10832,1246 +10833,19838 +10834,15692 +10835,19840 +10836,20788 +10837,19841 +10838,19869 +10839,16062 +10840,16062 +10841,19873 +10842,22427 +10843,22995 +10844,20258 +10845,19893 +10846,19898 +10847,20571 +10858,1102 +10878,20036 +10898,20095 +10918,13708 +10919,20476 +10920,13708 +10921,13708 +10922,13708 +10938,20608 +10939,20609 +10940,20611 +10958,15658 +10959,20342 +10978,20612 +10998,20610 +10999,20433 +11000,13885 +11018,2480 +11019,20502 +11020,20503 +11021,20504 +11022,20505 +11023,17284 +11024,23217 +11025,20507 +11026,17284 +11027,17284 +11038,11431 +11039,11431 +11040,1442 +11041,20537 +11042,20538 +11058,20558 +11078,4287 +11079,20597 +11080,20597 +11081,11431 +11082,20613 +11083,20614 +11084,20615 +11085,4287 +11086,20031 +11087,20640 +11098,11431 +11099,4691 +11101,11431 +11102,20692 +11103,3093 +11104,6562 +11105,20710 +11106,20711 +11107,20709 +11108,4110 +11109,7087 +11110,18047 +11111,20692 +11112,20733 +11113,11448 +11114,6668 +11115,4287 +11116,1317 +11118,20769 +11119,21973 +11120,28262 +11121,20094 +11122,21115 +11123,14590 +11124,28196 +11125,2247 +11126,20774 +11127,20775 +11128,21206 +11129,20784 +11130,21206 +11131,20789 +11132,20791 +11133,20797 +11134,20794 +11135,20795 +11136,20796 +11137,20798 +11138,20799 +11139,20800 +11140,20802 +11141,20803 +11142,9167 +11143,20818 +11144,21209 +11145,21209 +11146,9167 +11147,3426 +11148,7629 +11149,6672 +11150,11431 +11151,11431 +11152,11431 +11162,20872 +11163,11431 +11164,11431 +11165,11431 +11166,11431 +11167,11431 +11168,11431 +11169,21032 +11170,21373 +11171,8560 +11172,20893 +11173,20894 +11174,20895 +11175,20896 +11176,20899 +11177,20901 +11178,20902 +11179,20912 +11184,6614 +11185,7393 +11186,20977 +11187,25939 +11188,20978 +11189,28178 +11190,28188 +11191,28167 +11192,4685 +11193,19002 +11194,28237 +11195,28185 +11196,9859 +11197,20983 +11198,20984 +11199,20985 +11200,20986 +11201,20987 +11202,11431 +11203,11431 +11204,11431 +11205,11431 +11206,11431 +11207,11431 +11208,11431 +11222,9666 +11223,11431 +11224,11431 +11225,11431 +11226,11431 +11227,6748 +11228,19502 +11229,28306 +11230,20995 +11231,19502 +11242,18169 +11243,15788 +11262,28337 +11263,25077 +11264,19635 +11265,28629 +11266,21072 +11267,21072 +11268,3920 +11269,8560 +11270,7744 +11282,7744 +11283,7744 +11284,19422 +11285,21091 +11286,21092 +11287,21096 +11288,21097 +11289,21098 +11290,21101 +11291,7290 +11302,6515 +11303,8104 +11304,20550 +11305,21111 +11306,20713 +11307,21112 +11308,21113 +11309,7050 +11310,5116 +11311,28731 +11312,8927 +11313,1310 +11314,21462 +11315,21149 +11316,13489 +11317,21159 +11318,21164 +11319,21175 +11320,21189 +11321,21192 +11322,21193 +11323,21194 +11324,19595 +11325,18099 +11342,21238 +11343,21251 +11362,21329 +11363,1816 +11364,21338 +11365,21341 +11366,7649 +11367,7726 +11368,16065 +11369,21751 +11370,4691 +11371,7389 +11382,7051 +11383,21362 +11384,7350 +11385,21363 +11386,9292 +11387,3422 +11388,2885 +11389,21364 +11390,6002 +11391,18517 +11392,3307 +11393,7103 +11394,1438 +11395,21365 +11402,21366 +11403,6651 +11404,1504 +11405,21367 +11406,8794 +11407,7170 +11408,21368 +11409,2376 +11410,1496 +11411,6569 +11412,4136 +11413,4136 +11414,7354 +11415,21369 +11416,6631 +11417,4433 +11418,7251 +11419,18047 +11420,21370 +11422,21374 +11423,21375 +11424,21376 +11442,16028 +11443,2376 +11444,2376 +11445,21402 +11446,7695 +11462,21411 +11463,1244 +11464,20219 +11465,20219 +11466,1093 +11467,18725 +11468,1281 +11469,14601 +11470,7695 +11471,20692 +11472,2599 +11473,21414 +11474,18047 +11475,28181 +11476,7112 +11477,21415 +11478,8952 +11479,21416 +11480,3164 +11482,21431 +11502,28217 +11503,21458 +11504,1116 +11505,21461 +11506,21144 +11507,21463 +11508,22034 +11509,1438 +11510,30111 +11511,21469 +11512,21470 +11513,19239 +11514,21471 +11515,21472 +11516,21473 +11522,21608 +11542,21514 +11562,2516 +11563,13496 +11564,4777 +11565,7401 +11566,6496 +11567,1262 +11568,8631 +11569,2599 +11570,1275 +11582,21531 +11583,6410 +11584,6410 +11585,21539 +11586,21540 +11587,21541 +11588,21552 +11589,21553 +11590,7842 +11591,21555 +11602,4287 +11603,23270 +11604,21580 +11605,21574 +11606,21577 +11607,22218 +11608,25046 +11609,21584 +11610,1102 +11611,1102 +11612,1102 +11613,3426 +11614,15274 +11615,15274 +11616,7629 +11617,21586 +11622,22651 +11623,26137 +11624,28788 +11625,21595 +11626,26278 +11627,28658 +11628,28780 +11629,28781 +11630,2418 +11631,21613 +11632,28725 +11633,21898 +11634,28741 +11635,28779 +11642,22651 +11643,22651 +11644,22651 +11645,22651 +11662,28642 +11663,4775 +11664,4775 +11665,17263 +11666,4775 +11667,4775 +11668,21402 +11669,9837 +11670,4775 +11671,4775 +11672,4775 +11673,4775 +11674,21651 +11675,18979 +11676,4775 +11677,28381 +11678,21578 +11679,28820 +11682,21673 +11683,4775 +11684,23618 +11685,28704 +11686,28763 +11702,28765 +11703,28686 +11722,28721 +11723,21692 +11724,7918 +11725,10530 +11726,28724 +11727,1143 +11728,21694 +11729,28826 +11730,28723 +11731,28666 +11732,1246 +11733,7139 +11734,1103 +11735,21701 +11736,8093 +11737,1134 +11742,20709 +11743,21714 +11744,21715 +11745,28740 +11746,21717 +11747,21719 +11748,28807 +11749,28722 +11750,21723 +11751,21724 +11752,17974 +11753,7986 +11754,22652 +11755,21725 +11762,21752 +11763,19132 +11764,21753 +11765,28806 +11766,21755 +11767,21754 +11768,28785 +11782,21771 +11783,28696 +11784,21773 +11785,18814 +11786,21775 +11787,28669 +11802,19843 +11803,21793 +11804,21794 +11805,28821 +11807,28825 +11808,28268 +11809,22031 +11810,19767 +11811,21804 +11812,22997 +11813,11431 +11814,21805 +11815,6337 +11816,22212 +11817,21809 +11818,21807 +11819,18725 +11820,28819 +11821,28623 +11822,28660 +11823,28728 +11824,9847 +11825,21833 +11826,9730 +11827,15274 +11828,15274 +11829,2480 +11830,21834 +11831,21835 +11832,19764 +11833,21836 +11834,9518 +11835,10923 +11837,1438 +11838,22032 +11839,21839 +11840,21842 +11841,28720 +11842,28792 +11843,7798 +11844,1301 +11845,1183 +11846,21845 +11847,28071 +11848,28170 +11849,9644 +11850,23128 +11851,28249 +11852,19575 +11853,28241 +11854,28245 +11855,7494 +11856,28312 +11857,28345 +11858,28260 +11859,21853 +11860,28108 +11861,28171 +11862,6486 +11863,21855 +11864,25632 +11865,16766 +11866,28219 +11867,28332 +11868,9840 +11869,9849 +11870,28226 +11871,28253 +11872,28164 +11873,28325 +11874,28313 +11875,28305 +11876,28233 +11882,27770 +11883,1281 +11884,14649 +11885,12738 +11886,7695 +11887,20709 +11888,28342 +11889,28304 +11902,22227 +11903,20629 +11904,21936 +11905,22753 +11906,28075 +11907,28073 +11908,28063 +11909,17121 +11910,28076 +11911,28198 +11912,8928 +11913,28132 +11914,20791 +11915,18750 +11916,28254 +11917,28255 +11918,28186 +11919,28136 +11920,28679 +11921,25625 +11922,25609 +11923,21956 +11924,28814 +11925,28762 +11926,28712 +11927,21961 +11928,21962 +11929,28736 +11930,21965 +11931,28719 +11932,21968 +11933,28784 +11934,28733 +11935,28795 +11936,28242 +11937,1168 +11938,4056 +11939,14432 +11940,9657 +11941,7798 +11942,7629 +11943,7744 +11944,21970 +11945,9840 +11946,9854 +11947,21971 +11948,20791 +11949,21972 +11950,21973 +11951,21974 +11952,21975 +11953,20791 +11954,21976 +11955,21977 +11962,17229 +11963,28232 +11964,28203 +11965,9837 +11966,1168 +11967,9835 +11968,9836 +11969,9839 +11970,9842 +11971,9840 +11972,4284 +11973,224 +11974,3666 +11975,9835 +11976,9834 +11977,9833 +11978,9834 +11979,9836 +11980,9837 +11981,3666 +11982,9823 +11983,9837 +11984,9832 +11985,9847 +11986,9849 +11987,9840 +11988,9833 +11989,9847 +11990,9834 +11991,3666 +11992,9839 +11993,9836 +11994,9832 +11995,9837 +11996,9823 +11997,9847 +11998,3666 +11999,4284 +12000,28207 +12001,3666 +12002,9834 +12003,18115 +12004,3666 +12005,3666 +12006,9833 +12007,4284 +12008,224 +12009,9837 +12010,9834 +12011,9833 +12012,9847 +12013,9836 +12014,9835 +12015,9833 +12016,9847 +12017,9839 +12018,28135 +12019,6539 +12020,9860 +12021,23483 +12022,9658 +12023,9853 +12024,9859 +12025,9852 +12026,9657 +12027,9858 +12028,9857 +12029,6539 +12030,15420 +12031,9859 +12032,15420 +12033,22020 +12034,9859 +12035,15420 +12036,9860 +12037,25480 +12038,224 +12039,9657 +12040,6539 +12041,28429 +12042,9852 +12043,9857 +12044,9859 +12045,15420 +12046,6539 +12047,9852 +12048,9657 +12049,28244 +12050,4272 +12051,28090 +12052,9837 +12053,3666 +12054,9834 +12055,9840 +12056,9832 +12057,9836 +12058,3666 +12059,4841 +12060,6270 +12061,28086 +12062,25611 +12063,22031 +12064,22036 +12065,22037 +12066,28251 +12082,28176 +12083,28190 +12102,9840 +12103,23717 +12104,28095 +12105,28234 +12106,28089 +12107,28182 +12108,28070 +12109,21771 +12110,28240 +12111,28202 +12112,28139 +12113,28210 +12114,28222 +12115,28224 +12122,2593 +12142,8090 +12143,22071 +12144,22299 +12162,1102 +12163,1102 +12164,1102 +12182,22178 +12183,22180 +12184,25467 +12185,35174 +12186,22185 +12187,15897 +12188,15897 +12189,15897 +12190,17403 +12191,22192 +12192,16028 +12202,2599 +12203,25466 +12204,25472 +12205,22193 +12206,22193 +12207,18052 +12208,2599 +12209,22194 +12210,20803 +12211,22196 +12212,21473 +12213,22197 +12214,22198 +12215,22198 +12216,22196 +12217,21473 +12218,6353 +12219,19330 +12220,7025 +12223,6704 +12224,22200 +12225,20618 +12226,811 +12227,1102 +12228,1301 +12229,1301 +12230,22202 +12231,1301 +12232,1301 +12233,1301 +12234,22203 +12235,22204 +12236,22205 +12237,22193 +12238,33571 +12239,1301 +12240,1301 +12241,1659 +12242,22207 +12243,5290 +12244,15897 +12245,15897 +12247,22247 +12248,22248 +12249,22249 +12250,22250 +12251,22252 +12252,28699 +12253,28690 +12254,23079 +12255,4765 +12256,16764 +12257,28777 +12258,22256 +12259,4119 +12260,22258 +12261,15274 +12262,22271 +12263,22271 +12264,20629 +12282,22291 +12283,7050 +12284,22293 +12285,18607 +12286,22299 +12287,22303 +12288,8381 +12289,22304 +12290,22319 +12291,6703 +12292,7913 +12293,7331 +12294,22598 +12295,28204 +12296,28248 +12297,22366 +12298,22367 +12299,28221 +12300,6506 +12301,22377 +12302,17608 +12303,17608 +12304,22378 +12322,22391 +12323,7366 +12324,7366 +12325,17607 +12326,17607 +12327,17607 +12328,22394 +12329,22395 +12330,16208 +12331,22402 +12332,22403 +12334,6563 +12335,6496 +12336,2516 +12337,6006 +12338,22411 +12339,18721 +12341,22414 +12342,16206 +12343,6417 +12344,22415 +12345,19595 +12346,22416 +12347,22417 +12348,22319 +12349,15773 +12350,22429 +12351,16207 +12352,7366 +12353,13108 +12354,25132 +12355,19462 +12356,22436 +12358,22443 +12359,22444 +12360,14993 +12361,1659 +12363,18707 +12364,6851 +12365,23148 +12366,21366 +12367,22464 +12368,12332 +12369,10275 +12382,22477 +12383,19528 +12384,22483 +12385,22485 +12402,18050 +12403,22492 +12404,24677 +12405,25751 +12406,22550 +12408,25753 +12409,25752 +12410,25856 +12411,22484 +12412,20220 +12414,22951 +12415,25742 +12416,25740 +12417,25826 +12418,25744 +12419,25741 +12420,25745 +12421,22563 +12422,25749 +12424,24514 +12425,24511 +12426,24513 +12427,24510 +12428,24509 +12429,24506 +12430,19800 +12431,19800 +12432,19800 +12433,19800 +12434,19800 +12435,19800 +12436,19800 +12437,8928 +12438,3029 +12440,11947 +12442,22617 +12443,22618 +12444,16283 +12445,11448 +12446,28060 +12447,20723 +12448,28206 +12449,28235 +12450,22634 +12451,22636 +12452,22635 +12453,22637 +12454,22638 +12455,22639 +12456,22640 +12457,22641 +12458,22642 +12459,22634 +12460,22643 +12461,22645 +12462,28272 +12463,20198 +12464,28680 +12465,22989 +12466,28190 +12467,6504 +12468,6097 +12469,22654 +12470,22656 +12471,18437 +12472,7841 +12482,22672 +12502,22695 +12522,28077 +12523,20726 +12524,22716 +12525,9151 +12526,9666 +12527,21952 +12528,28673 +12529,22717 +12530,18047 +12531,22721 +12532,22722 +12533,18125 +12534,9666 +12535,22733 +12542,26053 +12543,9837 +12544,9837 +12545,9837 +12546,28637 +12547,28797 +12548,9837 +12549,15501 +12550,28824 +12551,28695 +12552,23111 +12553,28670 +12554,28771 +12555,27829 +12556,22779 +12557,28727 +12558,22765 +12562,3331 +12563,5567 +12564,22771 +12565,20629 +12566,21673 +12567,22785 +12582,28789 +12583,22792 +12584,31966 +12585,6418 +12586,22793 +12587,22794 +12588,22795 +12589,21796 +12590,25613 +12591,22802 +12592,22906 +12593,22814 +12602,23419 +12603,8725 +12604,22833 +12605,24107 +12606,22837 +12607,22838 +12608,28693 +12609,22843 +12610,23490 +12611,23486 +12612,23491 +12613,19730 +12614,23485 +12615,22860 +12616,22861 +12617,22869 +12618,25746 +12619,22882 +12620,22886 +12621,22885 +12622,2599 +12623,2599 +12624,25754 +12625,25827 +12626,14618 +12627,6338 +12628,22892 +12629,22893 +12630,1310 +12631,25747 +12632,25835 +12633,22901 +12634,22907 +12635,7798 +12636,22908 +12637,22910 +12638,22911 +12639,25750 +12640,22920 +12641,25748 +12642,1695 +12643,24687 +12644,24682 +12645,22924 +12646,7393 +12647,4777 +12648,7045 +12649,6851 +12650,22926 +12651,22929 +12652,7649 +12653,28813 +12654,22931 +12655,22445 +12662,22952 +12663,22953 +12682,15274 +12683,15274 +12684,15274 +12685,15274 +12687,1102 +12688,1102 +12689,15274 +12690,1102 +12691,15274 +12692,15274 +12693,15274 +12694,15274 +12695,15274 +12696,1102 +12697,15274 +12698,1102 +12699,1102 +12700,1102 +12701,1102 +12702,15274 +12703,1102 +12704,15274 +12705,1102 +12706,1102 +12707,1102 +12708,11449 +12709,22977 +12710,22979 +12711,1102 +12712,15794 +12713,15274 +12714,1102 +12715,1102 +12716,1102 +12717,6270 +12718,1102 +12719,1102 +12720,1102 +12721,23713 +12722,23714 +12723,23715 +12724,23146 +12725,6270 +12726,6270 +12727,6270 +12728,1102 +12729,2533 +12730,4110 +12731,23150 +12732,19497 +12733,1116 +12734,7403 +12735,21416 +12736,21473 +12737,1442 +12738,13290 +12739,21807 +12740,20220 +12741,22484 +12742,23171 +12743,23171 +12744,23172 +12745,23172 +12746,23173 +12747,23173 +12748,23174 +12749,23174 +12750,23175 +12751,23177 +12752,23197 +12753,19316 +12754,23198 +12755,22906 +12756,23199 +12757,23200 +12762,23201 +12763,26735 +12764,23224 +12765,23201 +12766,23201 +12768,23201 +12769,25600 +12770,23229 +12771,22429 +12772,23230 +12773,23234 +12774,23236 +12775,23434 +12776,23240 +12777,23241 +12778,9126 +12779,23243 +12780,16161 +12781,23244 +12782,24255 +12783,23248 +12784,23904 +12785,3116 +12786,23253 +12787,23254 +12788,23255 +12789,17514 +12790,24813 +12791,23262 +12792,23267 +12793,23266 +12794,7438 +12795,23271 +12796,25047 +12797,23274 +12798,28849 +12799,6496 +12800,4775 +12801,23281 +12802,23283 +12803,23285 +12804,23286 +12805,23727 +12806,23289 +12807,6748 +12808,23291 +12809,21072 +12810,23292 +12811,23293 +12812,23294 +12813,1288 +12814,18080 +12815,23295 +12816,15274 +12817,1102 +12818,1102 +12819,1102 +12820,15787 +12821,1102 +12822,2885 +12823,1102 +12824,15274 +12825,15274 +12826,15274 +12827,15274 +12828,15274 +12829,7918 +12830,1102 +12831,1102 +12832,1102 +12833,1102 +12834,1102 +12835,1102 +12836,1102 +12837,1102 +12838,1102 +12839,1102 +12840,23722 +12841,23720 +12842,1155 +12843,23721 +12844,23717 +12845,9857 +12846,23716 +12847,23315 +12848,23315 +12849,20342 +12850,23316 +12851,23316 +12852,23317 +12853,23317 +12854,23318 +12855,23318 +12856,23319 +12857,23319 +12858,23320 +12859,23320 +12860,23177 +12861,23175 +12862,23321 +12863,23321 +12864,23322 +12865,23322 +12866,23323 +12867,23323 +12868,23324 +12869,23324 +12870,6533 +12871,23332 +12882,23355 +12883,23357 +12884,23358 +12885,2622 +12886,23370 +12887,23371 +12888,23371 +12889,23379 +12890,12274 +12891,23383 +12892,23386 +12893,23387 +12894,224 +12895,28335 +12896,23398 +12897,23398 +12898,23398 +12899,23398 +12900,1103 +12901,23401 +12902,23405 +12903,23473 +12904,23411 +12905,28605 +12906,2357 +12907,18059 +12922,18057 +12923,23432 +12924,6623 +12925,23436 +12926,23435 +12927,28630 +12928,23440 +12929,9658 +12930,8232 +12931,23445 +12932,23446 +12933,23447 +12934,23448 +12935,28625 +12936,22752 +12937,2388 +12938,15788 +12939,25647 +12940,25648 +12941,23455 +12942,23458 +12943,23465 +12944,23472 +12945,23473 +12946,23475 +12947,23496 +12949,23508 +12950,23509 +12951,3243 +12952,23519 +12953,15327 +12954,1134 +12955,23521 +12956,23527 +12957,23526 +12958,1301 +12959,23539 +12960,23544 +12961,23545 +12962,23546 +12963,23547 +12964,23548 +12965,23551 +12966,23552 +12967,23553 +12968,23554 +12969,23557 +12970,26387 +12971,23561 +12972,23561 +12973,23562 +12974,28676 +12975,28804 +12976,8272 +12977,16642 +12978,28448 +12979,28661 +12980,23568 +12981,23569 +12982,28452 +12983,28809 +12984,28738 +12985,28812 +12986,7480 +12987,28648 +12988,28375 +12989,28758 +12990,28810 +12991,23573 +12992,20071 +12993,23574 +12994,27778 +12995,23575 +12996,24646 +12997,28811 +12998,28651 +12999,28370 +13000,28701 +13001,9833 +13002,4841 +13003,28794 +13004,28631 +13005,28951 +13006,28799 +13007,28616 +13008,28646 +13009,28700 +13010,28438 +13011,28372 +13012,28596 +13013,28643 +13014,25594 +13015,28748 +13016,28791 +13017,25599 +13018,23228 +13019,28772 +13020,25602 +13021,28801 +13022,28766 +13023,25606 +13024,28671 +13025,28706 +13026,28776 +13027,28689 +13028,28681 +13029,24122 +13030,28647 +13031,28803 +13032,25639 +13033,28594 +13034,28708 +13035,25640 +13036,25641 +13037,22929 +13038,25607 +13039,25608 +13040,22929 +13041,28768 +13042,28678 +13043,28675 +13044,28714 +13045,25627 +13046,28677 +13047,25626 +13048,25623 +13049,28707 +13050,23586 +13051,28598 +13052,28624 +13053,28717 +13054,28764 +13055,18388 +13056,12562 +13057,25630 +13058,28790 +13059,25633 +13060,28672 +13061,23590 +13062,28633 +13063,28697 +13064,28787 +13065,28626 +13066,28351 +13067,28355 +13068,28362 +13069,23594 +13070,28353 +13071,28354 +13072,28352 +13073,28360 +13074,21961 +13075,28716 +13076,28357 +13077,28364 +13078,23601 +13079,28742 +13080,23604 +13081,18790 +13082,25134 +13083,25133 +13084,6497 +13085,9657 +13086,23606 +13087,9860 +13088,6522 +13089,6497 +13090,23605 +13091,23717 +13092,23607 +13093,28682 +13094,26537 +13095,9834 +13096,23629 +13097,9839 +13098,23608 +13099,28617 +13100,28645 +13101,28597 +13102,28974 +13103,28612 +13104,23617 +13105,28657 +13106,28656 +13107,28619 +13108,28614 +13109,28609 +13110,28368 +13111,28664 +13112,28601 +13113,28739 +13114,17031 +13115,28745 +13116,28709 +13117,28802 +13118,28369 +13119,28735 +13120,28373 +13121,28602 +13122,28652 +13123,28663 +13124,28441 +13125,28439 +13126,28434 +13127,28440 +13128,28662 +13129,28437 +13130,28447 +13131,28444 +13132,28443 +13133,28665 +13134,28435 +13135,28668 +13136,21071 +13137,28786 +13138,28634 +13139,28769 +13140,7827 +13141,9860 +13142,23628 +13143,23629 +13144,28649 +13145,28356 +13146,28743 +13147,23639 +13148,25631 +13149,1103 +13150,23656 +13151,1317 +13152,1134 +13153,7139 +13154,6672 +13155,23658 +13156,2516 +13157,23659 +13158,1155 +13159,6371 +13160,23669 +13161,23673 +13162,23675 +13163,23683 +13164,6006 +13165,23692 +13166,23704 +13167,25180 +13168,23559 +13169,23710 +13170,28713 +13171,24060 +13172,11449 +13173,23723 +13174,23725 +13175,25603 +13176,23726 +13177,6494 +13178,23728 +13179,23730 +13180,23731 +13181,23732 +13182,23734 +13183,24740 +13184,23736 +13185,23737 +13186,21673 +13187,21673 +13188,21673 +13189,21673 +13190,23739 +13191,19547 +13192,15791 +13193,22191 +13194,23740 +13195,23741 +13196,23741 +13197,23740 +13198,23742 +13199,28436 +13202,1103 +13203,23747 +13204,25619 +13205,23750 +13206,23753 +13207,1310 +13208,23760 +13209,23763 +13210,23765 +13211,23769 +13212,23766 +13213,16209 +13214,23775 +13216,23777 +13217,28830 +13218,23791 +13219,23497 +13220,23792 +13221,23797 +13222,23798 +13223,1283 +13242,23824 +13243,25133 +13244,23827 +13245,23835 +13246,23836 +13247,12333 +13248,8257 +13249,23837 +13250,23842 +13251,23843 +13252,23844 +13253,23846 +13254,23847 +13255,23849 +13257,23852 +13258,23853 +13259,23856 +13260,23861 +13261,23867 +13262,23875 +13282,18905 +13283,23435 +13284,23901 +13285,23908 +13286,23909 +13287,1102 +13288,1102 +13289,23914 +13290,23917 +13291,23918 +13292,23919 +13293,23920 +13302,4287 +13303,4287 +13304,4287 +13305,4287 +13306,4287 +13307,4287 +13308,1102 +13309,1102 +13310,1102 +13311,1102 +13312,23948 +13313,1103 +13314,24760 +13315,23955 +13316,23969 +13317,17494 +13318,23976 +13319,23977 +13320,23982 +13321,17785 +13322,17785 +13323,17785 +13324,17785 +13325,17785 +13326,17785 +13327,17785 +13328,17343 +13329,17343 +13330,23991 +13331,17786 +13332,17786 +13333,17786 +13334,17786 +13335,24011 +13336,24014 +13337,24015 +13338,21513 +13339,24016 +13340,24013 +13341,6536 +13342,24020 +13343,24019 +13344,29001 +13345,24022 +13346,24025 +13347,6506 +13348,24049 +13349,24033 +13350,22924 +13351,24036 +13352,24037 +13353,24039 +13354,24044 +13356,24057 +13357,24058 +13358,18971 +13359,24045 +13360,24046 +13361,25036 +13362,3024 +13363,1301 +13364,4110 +13365,24051 +13366,24052 +13367,24053 +13368,25614 +13369,24054 +13370,24059 +13371,24061 +13372,24063 +13373,1225 +13374,24064 +13375,23825 +13376,24065 +13377,2418 +13378,24066 +13379,2618 +13380,18298 +13381,24068 +13382,7888 +13383,24070 +13384,24071 +13385,24072 +13386,24073 +13387,24074 +13388,25049 +13389,25050 +13390,24292 +13391,25051 +13392,24087 +13393,25629 +13394,24102 +13395,29009 +13396,24106 +13397,24108 +13398,9653 +13399,24109 +13400,24110 +13401,24111 +13402,33114 +13403,24113 +13404,28798 +13405,24115 +13406,24116 +13407,24117 +13408,24119 +13409,24120 +13422,24131 +13423,24132 +13442,19547 +13443,24151 +13444,21672 +13445,16321 +13446,24152 +13447,24211 +13448,18010 +13450,24153 +13451,24154 +13452,16836 +13453,24212 +13454,17898 +13455,17974 +13456,15794 +13457,15741 +13458,23739 +13459,17469 +13460,15747 +13461,17403 +13462,24156 +13463,24689 +13464,24690 +13465,24692 +13466,24693 +13467,24691 +13468,24688 +13469,3486 +13470,14023 +13471,16065 +13473,23715 +13474,13060 +13475,224 +13476,15274 +13477,1301 +13478,1301 +13479,15274 +13480,1301 +13481,15274 +13482,15274 +13483,15274 +13484,15274 +13485,15274 +13486,15274 +13487,15274 +13488,15274 +13489,15274 +13490,15274 +13491,15274 +13492,15274 +13493,15274 +13494,15274 +13495,15274 +13496,15274 +13497,15274 +13498,24162 +13499,15274 +13500,15274 +13501,15274 +13502,24164 +13503,3667 +13504,24167 +13505,24166 +13506,26865 +13507,7743 +13508,1504 +13509,7247 +13510,24213 +13511,21531 +13512,19547 +13513,22191 +13514,24169 +13515,1236 +13517,1301 +13518,15274 +13519,15274 +13520,15274 +13521,15274 +13522,15274 +13523,15741 +13524,24176 +13525,24177 +13526,24178 +13527,24179 +13528,24180 +13529,4107 +13530,24181 +13531,24182 +13532,24183 +13533,24185 +13534,24186 +13535,24189 +13536,24188 +13537,24190 +13538,24193 +13539,24194 +13542,12925 +13543,19595 +13544,24220 +13545,24221 +13546,4809 +13562,24231 +13582,24252 +13583,24251 +13584,34364 +13585,6672 +13586,15897 +13602,21610 +13603,21610 +13604,24281 +13605,24282 +13606,24283 +13607,24284 +13608,24285 +13609,24293 +13610,24294 +13611,24295 +13612,24296 +13622,24343 +13623,24342 +13624,6672 +13625,24351 +13626,3486 +13627,24366 +13628,24367 +13629,24368 +13630,24369 +13631,19804 +13632,24370 +13642,9632 +13643,9632 +13644,9632 +13645,9632 +13646,9632 +13647,9632 +13648,9632 +13649,9632 +13650,9632 +13651,9632 +13652,9632 +13653,9632 +13654,9632 +13655,9632 +13656,9632 +13657,9632 +13658,9632 +13659,9632 +13660,9632 +13661,9632 +13662,9632 +13663,9632 +13664,9632 +13665,9632 +13666,9632 +13667,9632 +13668,9632 +13669,9632 +13670,9632 +13671,9632 +13672,9632 +13673,9632 +13674,9632 +13675,9632 +13676,9632 +13677,9632 +13678,9632 +13679,9632 +13680,9632 +13681,9632 +13682,9632 +13683,9632 +13684,9632 +13685,9632 +13686,9632 +13687,9632 +13688,9632 +13689,9632 +13690,9632 +13691,9632 +13692,9632 +13693,9632 +13694,9632 +13695,9632 +13696,9632 +13697,9632 +13698,24394 +13699,24380 +13700,24380 +13701,24380 +13702,19498 +13703,24415 +13704,22071 +13705,24445 +13706,24446 +13707,24452 +13708,24461 +13709,24473 +13710,15897 +13711,15897 +13712,15897 +13713,15897 +13714,15897 +13715,15897 +13716,15897 +13717,15897 +13718,24478 +13719,24479 +13720,24480 +13721,24483 +13722,24489 +13723,24490 +13724,21203 +13725,24496 +13726,24497 +13727,24497 +13728,24497 +13729,24563 +13730,24564 +13731,23294 +13732,24563 +13733,24564 +13734,23294 +13735,24563 +13736,24564 +13737,23294 +13738,24562 +13739,24562 +13740,24562 +13741,24561 +13742,24560 +13743,24559 +13744,24559 +13745,24559 +13746,24560 +13747,24560 +13748,24561 +13749,24561 +13750,24499 +13751,24503 +13753,24517 +13754,7176 +13755,18537 +13756,4813 +13757,24522 +13758,4809 +13759,24713 +13760,24716 +13761,11448 +13762,24546 +13763,24546 +13764,24546 +13765,24547 +13766,24547 +13767,24547 +13768,24548 +13769,24548 +13770,24548 +13771,24550 +13772,24550 +13773,24550 +13774,24551 +13775,24551 +13776,24551 +13777,24552 +13778,24552 +13779,24552 +13780,24553 +13781,24553 +13782,24553 +13783,24554 +13784,24554 +13785,24554 +13786,24555 +13787,24555 +13788,24555 +13789,24556 +13790,24556 +13791,24556 +13792,24557 +13793,24557 +13794,24557 +13795,24558 +13796,24558 +13797,24558 +13798,24565 +13799,24565 +13800,24565 +13801,24566 +13802,24566 +13803,24566 +13804,6638 +13805,6638 +13806,6638 +13807,24567 +13808,24567 +13809,24567 +13810,24568 +13811,6502 +13812,24569 +13813,24570 +13814,24571 +13815,24572 +13816,20225 +13817,20195 +13818,8478 +13819,19374 +13820,19716 +13821,28691 +13822,4119 +13823,20309 +13824,20550 +13825,20721 +13842,18705 +13843,18705 +13844,18705 +13845,18705 +13846,18705 +13847,18705 +13848,18705 +13849,18705 +13850,24592 +13851,21327 +13852,16065 +13853,22193 +13854,24594 +13855,24595 +13856,25235 +13857,25207 +13858,24601 +13859,24596 +13860,25232 +13861,24597 +13862,24597 +13863,25231 +13864,25233 +13865,25208 +13866,25230 +13867,25236 +13868,24612 +13869,24610 +13870,24616 +13871,24615 +13872,929 +13873,13824 +13874,8928 +13875,12331 +13876,16364 +13877,16364 +13878,16364 +13879,16364 +13880,16364 +13881,4809 +13882,16364 +13883,16364 +13884,16364 +13885,16364 +13886,16364 +13887,16364 +13888,24629 +13889,24719 +13890,4823 +13891,4809 +13892,25456 +13893,11932 +13894,24634 +13895,24644 +13896,24643 +13897,24641 +13898,24645 +13899,24639 +13900,24642 +13901,18705 +13902,18705 +13903,18705 +13904,18705 +13905,18705 +13906,18705 +13907,24629 +13908,24629 +13909,24629 +13910,24629 +13911,24629 +13912,24629 +13913,24629 +13914,24715 +13915,24715 +13916,24715 +13917,24715 +13918,12331 +13920,22838 +13922,24695 +13923,24720 +13924,24721 +13925,24729 +13926,24730 +13927,7176 +13928,18537 +13929,4813 +13930,4809 +13931,24733 +13932,24716 +13933,24733 +13934,22194 +13935,24719 +13936,25659 +13937,24771 +13938,24743 +13939,1301 +13940,1301 +13941,1301 +13942,1301 +13943,1301 +13944,28632 +13945,1301 +13946,1301 +13947,1301 +13948,1301 +13949,1301 +13950,24748 +13951,24749 +13952,28782 +13953,24756 +13954,28627 +13955,24777 +13956,24762 +13957,24768 +13958,24767 +13959,30535 +13960,19785 +13961,24772 +13962,30391 +13963,29016 +13964,24775 +13965,24776 +13966,24778 +13967,28604 +13968,24784 +13969,24793 +13982,26676 +13983,24816 +13984,26679 +13986,26680 +14002,22831 +14022,26622 +14024,20592 +14025,25881 +14042,24893 +14043,24896 +14044,23422 +14045,24895 +14046,19595 +14047,24897 +14048,24898 +14062,17786 +14082,24919 +14083,24923 +14084,24924 +14085,24925 +14086,25871 +14087,25864 +14088,23132 +14089,25867 +14090,7533 +14091,25869 +14092,24926 +14093,25863 +14094,25873 +14095,25874 +14096,25880 +14097,25876 +14098,25875 +14099,14431 +14100,15820 +14101,16779 +14102,16586 +14103,24928 +14104,24927 +14105,24930 +14106,24932 +14107,13679 +14108,24935 +14109,25877 +14110,25879 +14111,24933 +14112,24934 +14113,25858 +14114,25857 +14115,14541 +14116,25855 +14117,14542 +14118,24931 +14119,11421 +14120,16531 +14121,17462 +14122,16664 +14123,25916 +14124,16657 +14125,16656 +14126,5394 +14127,15201 +14128,24945 +14129,25929 +14130,24942 +14131,25915 +14132,24943 +14133,25952 +14134,24946 +14136,25834 +14137,17252 +14138,25228 +14139,24966 +14140,28414 +14141,25571 +14142,24977 +14143,24978 +14144,11166 +14145,24981 +14146,24986 +14147,24982 +14148,24983 +14149,24985 +14150,24988 +14151,24990 +14152,25205 +14153,25201 +14154,25203 +14155,21586 +14156,20342 +14157,8374 +14158,9996 +14159,25893 +14160,16907 +14161,23101 +14162,11144 +14163,25894 +14164,14431 +14165,25890 +14166,28050 +14167,28054 +14168,28056 +14169,25859 +14170,28055 +14171,13679 +14172,28098 +14173,28051 +14174,19950 +14175,28052 +14176,9184 +14177,25970 +14178,26302 +14179,23109 +14180,26023 +14181,25971 +14182,19991 +14183,25974 +14184,25976 +14185,25969 +14186,25986 +14187,14640 +14188,23138 +14189,15283 +14190,25984 +14191,25987 +14192,25989 +14193,18887 +14194,28730 +14195,14645 +14196,26008 +14197,26004 +14198,26006 +14199,26007 +14200,15293 +14201,26012 +14202,26049 +14203,16719 +14204,26011 +14205,26005 +14206,25970 +14207,26021 +14208,26308 +14209,26022 +14210,26015 +14211,26020 +14212,28729 +14213,26017 +14214,9184 +14215,25973 +14216,26051 +14217,24113 +14218,16721 +14219,26045 +14220,26044 +14221,26042 +14222,26050 +14223,26054 +14224,26052 +14225,26053 +14226,26055 +14227,18597 +14228,26059 +14229,26057 +14230,26063 +14231,26062 +14232,26068 +14233,26061 +14234,26067 +14235,26058 +14236,26066 +14237,16599 +14238,26100 +14239,26101 +14240,16604 +14241,26102 +14242,16600 +14243,26104 +14244,28991 +14245,24624 +14246,26309 +14247,26116 +14248,14647 +14249,14646 +14250,26117 +14251,26112 +14252,18992 +14253,26113 +14254,26119 +14255,26111 +14256,25028 +14257,18887 +14258,26190 +14259,26186 +14260,26187 +14261,26189 +14262,26193 +14263,15308 +14264,26196 +14265,26198 +14266,26195 +14267,26192 +14268,17262 +14269,26145 +14270,23031 +14271,26307 +14272,26143 +14273,26147 +14274,26144 +14275,26142 +14276,26138 +14277,26311 +14278,27928 +14279,14618 +14280,26137 +14281,26128 +14282,26132 +14283,26124 +14284,26131 +14285,26134 +14286,26136 +14287,27927 +14288,26203 +14289,25098 +14290,26206 +14291,26205 +14292,26215 +14293,26214 +14294,26208 +14295,26212 +14296,26213 +14297,26211 +14298,26281 +14299,26268 +14300,26271 +14301,26266 +14302,26275 +14303,18834 +14304,26280 +14305,26282 +14306,26279 +14307,26277 +14308,26256 +14309,26252 +14310,26261 +14311,26253 +14312,26255 +14313,26262 +14314,26258 +14315,26260 +14316,26263 +14317,26254 +14318,26288 +14319,26285 +14320,26287 +14321,26299 +14322,26292 +14323,26290 +14324,26300 +14325,26298 +14326,28993 +14327,26284 +14328,26219 +14329,26225 +14330,26216 +14331,26227 +14332,26224 +14333,26222 +14334,26223 +14335,26229 +14336,26226 +14337,26221 +14338,25038 +14339,15794 +14340,25039 +14341,25048 +14342,25052 +14343,25054 +14344,25055 +14363,16591 +14364,16802 +14365,25884 +14366,16805 +14367,25885 +14368,25887 +14369,25888 +14370,10079 +14371,25889 +14372,25954 +14373,25957 +14374,25966 +14375,25959 +14376,25958 +14377,25961 +14378,25965 +14379,25968 +14380,25956 +14381,6430 +14382,17251 +14383,17262 +14384,17256 +14385,13984 +14386,17274 +14387,17255 +14388,17252 +14389,17271 +14390,17261 +14391,20173 +14392,20385 +14393,2552 +14394,20550 +14395,7139 +14396,1246 +14397,27872 +14398,26003 +14399,25995 +14400,25997 +14401,25996 +14402,25994 +14403,25999 +14404,12973 +14405,27873 +14406,25998 +14407,26028 +14408,26026 +14409,26027 +14410,26033 +14411,26029 +14412,26035 +14413,26038 +14414,26024 +14415,11166 +14416,26025 +14417,26084 +14418,26086 +14419,26079 +14420,26080 +14421,26093 +14422,26081 +14423,26096 +14424,26083 +14425,26092 +14426,16781 +14427,26161 +14428,26153 +14429,26151 +14430,26175 +14431,26154 +14432,4904 +14433,26159 +14434,26174 +14435,26149 +14436,26150 +14437,16631 +14438,16634 +14439,16636 +14440,26201 +14441,26305 +14442,16633 +14443,16637 +14444,16632 +14445,19901 +14446,21459 +14447,26171 +14448,26168 +14449,26170 +14450,26184 +14451,18423 +14452,26182 +14453,26157 +14454,26169 +14455,26178 +14456,26240 +14457,26235 +14458,26231 +14459,26233 +14460,26243 +14461,26236 +14462,26238 +14463,26247 +14464,27228 +14465,26230 +14466,15274 +14467,15274 +14468,1102 +14469,1102 +14470,15274 +14471,15274 +14472,1102 +14473,15274 +14474,15274 +14475,3367 +14476,15274 +14477,15274 +14478,15274 +14479,15274 +14480,15274 +14481,1102 +14482,15274 +14483,1102 +14484,15274 +14485,15274 +14486,1102 +14487,25096 +14488,811 +14489,15274 +14490,15274 +14491,15274 +14492,15274 +14493,6270 +14494,15274 +14495,15274 +14496,15274 +14497,1102 +14498,15274 +14499,15274 +14500,15274 +14501,1102 +14502,28757 +14503,25104 +14504,15274 +14505,15274 +14506,15274 +14507,1102 +14508,15274 +14509,1102 +14510,1102 +14511,1102 +14512,1102 +14513,1102 +14514,1102 +14522,25111 +14523,25118 +14524,25120 +14525,25116 +14526,1102 +14527,25139 +14528,25138 +14529,25146 +14530,25147 +14531,25148 +14532,25152 +14533,25153 +14534,25154 +14535,25155 +14536,25157 +14537,25160 +14538,28705 +14539,25166 +14540,3422 +14541,25649 +14542,11449 +14543,28703 +14544,22952 +14545,25169 +14546,5766 +14547,25171 +14548,28817 +14549,28276 +14550,28274 +14551,28280 +14552,28282 +14553,28386 +14554,25343 +14555,25612 +14557,6338 +14558,9857 +14559,27520 +14560,27524 +14561,17014 +14562,27518 +14563,27525 +14564,27519 +14565,27522 +14566,27523 +14567,27668 +14568,16997 +14569,13355 +14570,27669 +14571,27673 +14572,27672 +14573,27667 +14574,27670 +14575,25620 +14576,25173 +14577,28715 +14578,27963 +14579,27965 +14580,27964 +14581,27962 +14582,27584 +14583,27966 +14584,27968 +14585,27967 +14586,25180 +14587,10179 +14588,27976 +14589,9169 +14590,14770 +14591,21311 +14592,27979 +14593,27980 +14594,27977 +14595,27975 +14596,27978 +14597,6272 +14598,27983 +14599,27982 +14600,27985 +14601,14995 +14602,27986 +14603,27988 +14604,27987 +14605,27984 +14606,15000 +14607,27981 +14608,18487 +14609,18488 +14610,25184 +14611,25222 +14612,25223 +14613,6505 +14614,25219 +14615,25221 +14616,25220 +14617,25193 +14618,25197 +14619,13806 +14620,25225 +14621,25227 +14622,25224 +14623,25226 +14624,24102 +14625,23520 +14626,25245 +14627,1102 +14628,25246 +14629,4607 +14630,1102 +14631,18863 +14632,25255 +14633,25247 +14634,15274 +14635,1102 +14636,25248 +14637,25249 +14638,26966 +14639,1102 +14640,25253 +14641,11571 +14642,25260 +14643,5509 +14644,18204 +14645,22464 +14646,18499 +14647,18499 +14648,18499 +14649,18499 +14650,18499 +14651,18499 +14652,27579 +14653,18944 +14654,27582 +14655,27576 +14656,27584 +14657,27577 +14658,27581 +14659,27578 +14660,27580 +14661,27566 +14662,27568 +14663,27565 +14664,27564 +14665,27573 +14666,27567 +14667,27572 +14668,27570 +14669,27569 +14670,27649 +14671,18944 +14672,27582 +14673,27653 +14674,27579 +14675,27648 +14676,21299 +14677,27651 +14678,27652 +14679,25271 +14680,18470 +14681,17258 +14682,17259 +14683,27573 +14684,15411 +14685,17263 +14686,17321 +14687,17265 +14688,17267 +14691,18492 +14696,2633 +14706,5417 +14707,25278 +14722,26983 +14723,26982 +14724,26958 +14725,26987 +14726,26985 +14727,26986 +14728,26988 +14729,23835 +14730,26984 +14742,27009 +14743,27007 +14744,27010 +14745,27011 +14746,27008 +14747,27012 +14748,27013 +14749,27014 +14750,27026 +14751,27034 +14752,27033 +14753,27191 +14754,27027 +14755,27029 +14756,27035 +14757,27028 +14758,27030 +14759,27048 +14760,27049 +14761,27046 +14762,27047 +14763,27051 +14764,27053 +14765,27052 +14766,27050 +14767,27054 +14768,27092 +14769,27093 +14770,27091 +14771,26141 +14772,29007 +14773,27094 +14774,28175 +14775,27097 +14776,27096 +14777,27099 +14778,21756 +14779,27147 +14780,20833 +14781,27152 +14782,27148 +14783,27146 +14784,27149 +14785,27151 +14786,27150 +14787,16079 +14788,27154 +14789,27155 +14790,27162 +14791,27161 +14792,27156 +14793,27159 +14794,27158 +14795,26115 +14796,27157 +14797,27160 +14798,27194 +14799,27192 +14800,27202 +14801,27197 +14802,27196 +14803,27185 +14804,30800 +14805,27195 +14806,23490 +14807,27193 +14808,27137 +14809,27827 +14810,27136 +14811,27138 +14812,27145 +14813,27143 +14814,28986 +14815,27536 +14816,27140 +14817,27142 +14818,25362 +14820,25364 +14821,26811 +14822,25365 +14823,25366 +14824,25367 +14825,25134 +14826,26812 +14827,26810 +14828,26813 +14829,26814 +14830,26818 +14831,27182 +14832,26815 +14833,29015 +14834,26685 +14835,26687 +14836,25377 +14837,25378 +14838,26686 +14839,26690 +14840,26691 +14841,26688 +14842,26693 +14843,26692 +14844,26820 +14845,25382 +14846,27190 +14847,26819 +14848,26822 +14849,27186 +14850,26824 +14851,26825 +14852,11925 +14853,26821 +14854,26846 +14855,26847 +14856,26848 +14857,26850 +14858,28985 +14859,26849 +14860,27876 +14861,19760 +14862,26880 +14863,26881 +14864,26879 +14865,26883 +14866,27180 +14867,26884 +14868,26885 +14869,26878 +14870,25410 +14871,25411 +14872,15692 +14873,25437 +14874,25441 +14875,25470 +14876,25471 +14877,25474 +14878,9055 +14879,25496 +14880,25499 +14881,25503 +14882,25504 +14883,25506 +14884,25507 +14885,25508 +14886,25509 +14887,25510 +14888,25511 +14889,25513 +14890,25514 +14891,25515 +14892,25516 +14893,25533 +14894,25542 +14895,26654 +14896,26652 +14897,27838 +14898,26650 +14899,26656 +14900,26651 +14901,26655 +14902,23847 +14903,26646 +14904,27899 +14905,27901 +14906,27902 +14907,27906 +14908,27900 +14909,27904 +14910,27903 +14911,27905 +14912,11925 +14913,26799 +14914,26794 +14915,26795 +14916,22805 +14917,26798 +14918,26792 +14919,27839 +14920,26800 +14921,26797 +14922,26874 +14923,26869 +14924,26871 +14925,28015 +14926,26872 +14927,26870 +14928,26873 +14929,26875 +14930,20974 +14931,27932 +14932,27829 +14933,27934 +14934,27935 +14935,27942 +14936,27938 +14937,27940 +14938,27933 +14939,26636 +14940,26643 +14941,26454 +14942,26640 +14943,26634 +14944,27512 +14945,26641 +14946,26645 +14947,23825 +14948,26838 +14949,28996 +14950,26836 +14951,26842 +14952,26257 +14953,26840 +14954,26844 +14955,26843 +14956,26837 +14957,26833 +14958,26827 +14959,26830 +14960,26828 +14961,27835 +14962,26831 +14963,26834 +14964,23419 +14965,26829 +14966,26859 +14967,27833 +14968,26856 +14969,28024 +14970,26861 +14971,26864 +14972,26862 +14973,26868 +14974,26857 +14975,26890 +14976,26888 +14977,26889 +14978,27832 +14979,26893 +14980,26891 +14981,26894 +14982,26911 +14983,26887 +15002,25593 +15003,28007 +15004,7537 +15005,17017 +15006,18508 +15007,28011 +15008,28009 +15009,28008 +15010,9536 +15011,27668 +15012,14276 +15013,27989 +15014,28579 +15015,23050 +15016,27990 +15017,27991 +15018,3390 +15019,27667 +15042,25661 +15043,25662 +15044,25807 +15045,25671 +15046,25673 +15047,25675 +15048,25676 +15049,25677 +15050,27943 +15051,27945 +15052,27944 +15053,25682 +15054,25683 +15055,25685 +15056,8682 +15057,25686 +15058,25687 +15059,25688 +15060,25694 +15061,25695 +15062,26071 +15063,26072 +15064,12368 +15065,14547 +15066,25699 +15067,25700 +15068,19012 +15069,25701 +15070,25702 +15071,25703 +15072,25705 +15073,25709 +15074,25706 +15075,25704 +15076,25710 +15077,25720 +15078,25718 +15079,25714 +15080,28976 +15081,25713 +15082,25719 +15083,25724 +15084,25726 +15085,25721 +15086,25729 +15087,25722 +15088,25728 +15090,25731 +15091,25735 +15092,25736 +15093,25737 +15094,25739 +15095,25732 +15096,25734 +15102,2885 +15103,2885 +15104,28432 +15105,28231 +15106,28236 +15107,25072 +15108,25072 +15109,28225 +15110,27880 +15111,1981 +15112,27879 +15113,2211 +15114,27514 +15115,27878 +15116,11274 +15117,1978 +15118,27877 +15119,26177 +15120,27887 +15121,1966 +15122,27888 +15123,18449 +15124,27693 +15125,27881 +15126,27884 +15127,6775 +15128,27882 +15129,27886 +15130,9548 +15131,27710 +15132,27706 +15133,27720 +15134,27711 +15135,28563 +15136,27708 +15137,27715 +15138,25921 +15139,27712 +15140,27713 +15141,27943 +15142,27685 +15143,3652 +15144,27689 +15145,27690 +15146,27687 +15147,27686 +15148,27684 +15149,3846 +15150,27688 +15151,3442 +15152,27725 +15153,23048 +15154,27724 +15155,27722 +15156,27734 +15157,27723 +15158,27732 +15159,27728 +15160,27727 +15161,18980 +15162,27916 +15163,27922 +15164,27914 +15165,22253 +15166,27921 +15167,28979 +15168,17153 +15169,27920 +15170,27586 +15171,11832 +15172,27589 +15173,27593 +15174,27591 +15175,27907 +15176,14697 +15177,27592 +15178,27590 +15179,27663 +15180,27560 +15181,27562 +15182,28584 +15183,24159 +15184,27661 +15185,27666 +15186,27662 +15187,27664 +15188,27632 +15189,27634 +15190,23051 +15191,18980 +15192,27635 +15193,28022 +15194,28019 +15195,28018 +15196,31254 +15197,31255 +15198,31253 +15199,31252 +15200,30797 +15202,7834 +15203,28189 +15204,28218 +15205,28229 +15206,28197 +15207,26322 +15208,20614 +15209,1168 +15210,28544 +15211,28567 +15212,28527 +15213,28570 +15214,28561 +15215,28528 +15216,28530 +15217,28458 +15218,28346 +15219,13078 +15220,28316 +15221,28552 +15222,28314 +15223,28571 +15224,28318 +15225,28521 +15226,28531 +15227,28508 +15228,28512 +15229,19735 +15230,28539 +15231,28469 +15232,28542 +15233,28525 +15234,5640 +15235,28341 +15236,28566 +15237,28338 +15238,28459 +15239,28523 +15240,28504 +15241,20414 +15242,28568 +15243,28348 +15244,3175 +15245,6448 +15246,20299 +15247,28327 +15248,28535 +15249,20080 +15250,28536 +15251,28546 +15252,28465 +15253,28321 +15254,28347 +15255,28529 +15256,28576 +15257,26589 +15258,28517 +15259,28548 +15260,28468 +15261,28524 +15262,28540 +15263,28534 +15264,28311 +15265,28499 +15266,28526 +15267,28674 +15268,28460 +15269,28573 +15270,28533 +15271,28334 +15272,28541 +15273,28349 +15274,22144 +15275,28467 +15276,28580 +15277,29448 +15278,28502 +15279,28569 +15280,28457 +15281,28538 +15282,28518 +15283,28577 +15284,28572 +15285,28308 +15286,28575 +15287,28344 +15288,28322 +15289,28309 +15290,29447 +15291,28543 +15292,29449 +15293,29449 +15294,28515 +15295,28547 +15296,28545 +15297,28013 +15298,28017 +15299,23054 +15300,12415 +15301,28016 +15302,28012 +15303,28014 +15304,12369 +15305,28039 +15306,28045 +15307,20826 +15308,17114 +15309,28042 +15310,28046 +15311,11382 +15312,14522 +15313,9527 +15314,1168 +15322,6591 +15323,28557 +15324,28331 +15325,8258 +15326,26358 +15327,26361 +15328,4287 +15329,27998 +15330,27999 +15331,28001 +15332,18493 +15333,28006 +15334,28005 +15335,28093 +15336,28003 +15337,27683 +15338,28002 +15339,27680 +15340,27679 +15341,27678 +15342,28583 +15343,27677 +15344,27681 +15345,27682 +15346,27683 +15347,27674 +15348,27675 +15349,11953 +15350,27702 +15351,27699 +15352,28269 +15353,29134 +15354,27700 +15355,27701 +15356,18284 +15357,27703 +15358,27704 +15359,27956 +15360,27954 +15361,27958 +15362,27957 +15363,27959 +15364,27960 +15365,27955 +15366,17155 +15367,28026 +15368,12830 +15369,17231 +15370,27969 +15371,27974 +15372,27970 +15373,27973 +15374,17153 +15375,19008 +15376,27971 +15377,27972 +15378,14702 +15379,15412 +15380,15413 +15381,17094 +15382,23018 +15383,15415 +15384,23544 +15385,27555 +15386,27553 +15387,27655 +15388,27654 +15389,13343 +15390,27656 +15391,27660 +15392,27658 +15393,27657 +15394,32816 +15395,17190 +15396,26602 +15397,10654 +15398,28246 +15399,28149 +15400,28130 +15401,28183 +15402,28223 +15403,28243 +15404,8295 +15405,9529 +15406,28138 +15407,6660 +15408,568 +15409,7127 +15410,20914 +15411,23716 +15412,21363 +15413,26373 +15414,26374 +15415,26375 +15416,20914 +15417,21366 +15418,27412 +15419,7170 +15420,19572 +15421,26681 +15422,26378 +15423,7374 +15424,3243 +15425,28033 +15426,28031 +15427,23048 +15428,28030 +15429,28034 +15430,28035 +15431,28029 +15432,28037 +15433,28028 +15434,27616 +15435,27617 +15436,27608 +15437,26271 +15438,29013 +15439,28850 +15440,27615 +15441,27618 +15442,27610 +15443,28199 +15444,28228 +15445,28191 +15446,26381 +15447,26382 +15448,25469 +15449,16850 +15450,28147 +15451,2922 +15452,28168 +15453,28247 +15454,26383 +15455,28323 +15456,17155 +15457,26012 +15458,28192 +15459,28275 +15460,26385 +15461,26086 +15462,28286 +15463,28288 +15464,28096 +15465,28216 +15466,28269 +15467,23728 +15468,28303 +15469,28302 +15470,28290 +15471,28266 +15472,26937 +15473,26939 +15474,26938 +15475,26980 +15476,28998 +15477,26941 +15478,3931 +15479,26936 +15480,26953 +15481,26956 +15482,26952 +15483,26958 +15484,26954 +15485,26955 +15486,26959 +15487,26957 +15488,27004 +15489,27001 +15490,27006 +15491,27000 +15492,27029 +15493,26998 +15494,23750 +15495,27005 +15496,27003 +15497,27127 +15498,27541 +15499,26993 +15500,26990 +15501,26991 +15502,26994 +15503,26995 +15504,26855 +15505,26997 +15506,26970 +15507,26971 +15508,26977 +15509,26973 +15510,26969 +15511,26974 +15512,26978 +15513,26975 +15514,26972 +15515,26960 +15516,26964 +15517,24793 +15518,26961 +15519,26962 +15520,26963 +15521,26968 +15522,18775 +15523,26965 +15524,27081 +15525,27540 +15526,27082 +15527,27075 +15528,27079 +15529,27076 +15530,27084 +15531,27080 +15532,27074 +15533,27083 +15534,27037 +15535,27038 +15536,27039 +15537,27040 +15538,27041 +15539,27045 +15540,27042 +15541,27043 +15542,27044 +15543,26060 +15544,27022 +15545,27017 +15546,27018 +15547,26951 +15548,27019 +15549,27016 +15550,30091 +15551,27020 +15552,27024 +15553,27023 +15554,27068 +15555,27065 +15556,27066 +15557,27067 +15558,27073 +15559,27072 +15560,27069 +15561,27070 +15562,27071 +15563,20973 +15564,26388 +15565,27059 +15566,27058 +15567,27063 +15568,27062 +15569,27064 +15570,27060 +15571,27057 +15572,30092 +15573,27061 +15574,25872 +15575,27110 +15576,27115 +15577,27111 +15578,27112 +15579,25910 +15580,15517 +15581,27113 +15582,27114 +15583,27116 +15584,25911 +15585,28289 +15586,19495 +15587,28292 +15588,28265 +15589,27891 +15590,27895 +15591,27889 +15592,27896 +15593,27898 +15594,27108 +15595,27892 +15596,27890 +15597,27893 +15598,27894 +15599,27120 +15600,27122 +15601,27118 +15602,27124 +15603,27082 +15604,27126 +15605,27119 +15606,27117 +15607,27121 +15608,27123 +15609,27322 +15610,27324 +15611,27325 +15612,27326 +15613,27323 +15614,27328 +15615,26098 +15616,27327 +15617,26091 +15618,26099 +15619,27127 +15620,27128 +15621,27135 +15622,27129 +15623,28977 +15624,28565 +15625,31382 +15626,27132 +15627,27133 +15628,27134 +15629,27208 +15630,27215 +15631,27212 +15632,27220 +15633,27222 +15634,26330 +15635,27825 +15636,27206 +15637,27214 +15638,27218 +15639,27170 +15640,27171 +15641,27169 +15642,27173 +15643,27176 +15644,29006 +15645,27178 +15646,27174 +15647,27177 +15648,27179 +15649,27286 +15650,27290 +15651,27293 +15652,27292 +15653,27287 +15654,27285 +15655,27289 +15656,27291 +15657,27294 +15658,27301 +15659,27296 +15660,27297 +15661,27304 +15662,27299 +15663,27295 +15664,27306 +15665,27300 +15666,27302 +15667,27305 +15668,27314 +15669,27315 +15670,27908 +15671,26141 +15672,27317 +15673,27313 +15674,27318 +15675,26152 +15676,27319 +15677,27320 +15678,27312 +15679,27307 +15680,27308 +15681,26259 +15682,27309 +15683,27310 +15684,27151 +15685,27311 +15686,16079 +15687,26120 +15688,1443 +15689,26391 +15690,9860 +15691,26411 +15692,26412 +15693,28020 +15694,27288 +15695,26413 +15696,3426 +15697,26415 +15698,26419 +15699,26420 +15702,6486 +15703,26431 +15704,4841 +15705,26432 +15706,26433 +15707,26435 +15708,26436 +15709,26437 +15710,20614 +15722,21794 +15723,19873 +15724,1102 +15725,1102 +15726,1102 +15727,1102 +15728,15274 +15729,1102 +15730,1102 +15731,15274 +15732,15274 +15733,1102 +15734,1102 +15735,1102 +15736,26459 +15737,15274 +15738,1102 +15739,15274 +15740,1102 +15741,1102 +15742,1102 +15743,1102 +15744,15274 +15745,15274 +15746,15274 +15747,15274 +15748,1102 +15749,15274 +15750,26460 +15751,1102 +15752,6270 +15753,1102 +15754,1102 +15755,15274 +15756,1102 +15757,15274 +15758,1102 +15759,1102 +15760,1102 +15761,15274 +15762,1102 +15763,1102 +15764,1102 +15765,15274 +15766,22651 +15767,23740 +15768,15274 +15769,1102 +15770,1102 +15771,1102 +15772,6270 +15773,15274 +15774,1102 +15775,15274 +15776,15274 +15777,15274 +15778,26461 +15779,15274 +15780,1102 +15781,6270 +15782,26463 +15783,26464 +15784,26465 +15785,18136 +15786,26466 +15787,26467 +15788,15274 +15789,26468 +15790,8093 +15791,26470 +15792,26472 +15793,26474 +15794,12413 +15795,26473 +15796,26475 +15797,26476 +15798,7054 +15799,4841 +15800,26477 +15801,26479 +15802,17256 +15803,1246 +15804,25958 +15805,26491 +15806,26494 +15807,10671 +15808,10671 +15809,28911 +15810,26500 +15811,5636 +15812,26501 +15813,26502 +15814,26503 +15815,23042 +15822,26504 +15823,26512 +15824,26513 +15825,26514 +15826,21845 +15827,26515 +15842,8545 +15843,26531 +15844,8545 +15845,26531 +15846,18632 +15847,1317 +15848,8928 +15849,2885 +15850,26533 +15851,26534 +15852,11947 +15853,26535 +15854,26536 +15855,26537 +15856,9657 +15857,26539 +15858,26540 +15859,26541 +15860,26542 +15861,26543 +15862,26545 +15863,5207 +15864,3658 +15865,26548 +15866,26549 +15867,26551 +15868,16065 +15869,8031 +15870,22477 +15871,22071 +15872,13885 +15873,18119 +15874,26552 +15875,7856 +15876,26381 +15877,26571 +15878,4287 +15879,1769 +15880,7164 +15881,6706 +15882,26582 +15883,26583 +15884,8093 +15885,26584 +15886,1262 +15887,26921 +15888,20909 +15889,18811 +15890,26855 +15891,23825 +15892,27036 +15893,27527 +15894,18483 +15895,28449 +15902,12333 +15903,26593 +15904,26596 +15905,26592 +15906,26592 +15907,26594 +15908,26595 +15909,26597 +15910,26598 +15912,28471 +15918,28472 +15924,22193 +15925,28462 +15926,28464 +15927,27556 +15928,28466 +15929,27558 +15930,27563 +15931,27575 +15932,28473 +15933,27851 +15934,28481 +15935,27863 +15936,28475 +15937,28455 +15938,28480 +15939,27612 +15940,28476 +15941,27650 +15942,28478 +15943,27588 +15944,28483 +15945,28488 +15946,28487 +15947,28489 +15962,28492 +15963,28491 +15964,28493 +15965,28490 +15966,27874 +15967,28486 +15968,28484 +15969,28503 +15970,28554 +15971,24014 +15972,28562 +15973,28551 +15974,5072 +15975,28514 +15976,28555 +15977,28025 +15978,28513 +15979,18289 +15980,28505 +15981,28553 +15982,28510 +15983,28516 +15984,27929 +15985,28500 +15986,20384 +15987,28501 +15988,15884 +15989,28511 +15990,27055 +15991,18775 +15992,6379 +15993,25482 +15994,26611 +15995,26616 +15996,26612 +15997,26613 +15998,3029 +15999,26614 +16000,19481 +16001,26615 +16002,26615 +16003,26615 +16004,26737 +16005,7626 +16006,26618 +16007,24721 +16008,26621 +16009,6497 +16022,21632 +16023,7913 +16024,26653 +16025,26653 +16026,28120 +16027,26658 +16028,26659 +16029,26753 +16030,26752 +16031,26662 +16033,26664 +16034,26665 +16035,26668 +16036,26667 +16037,26669 +16038,26670 +16039,26674 +16040,27453 +16041,1102 +16042,1102 +16043,15274 +16044,15274 +16045,15274 +16046,1301 +16047,1301 +16048,15274 +16049,15274 +16050,1301 +16051,15274 +16052,15274 +16053,15274 +16054,15274 +16055,15274 +16056,15274 +16057,19595 +16058,26001 +16059,26683 +16060,10834 +16061,28729 +16062,28730 +16063,16601 +16064,25981 +16065,28734 +16066,14895 +16067,22415 +16068,9632 +16069,9632 +16070,9632 +16071,9632 +16072,1155 +16073,1134 +16074,9632 +16075,9632 +16076,9632 +16077,9632 +16078,9632 +16079,9632 +16080,9632 +16081,9632 +16082,1134 +16083,1155 +16084,1155 +16085,1134 +16086,7899 +16102,7899 +16103,7899 +16104,7899 +16105,7899 +16106,7899 +16107,7899 +16108,7899 +16109,9632 +16110,1301 +16111,1301 +16112,8117 +16113,8117 +16114,7867 +16115,8928 +16116,25910 +16117,16601 +16118,16719 +16119,16604 +16120,28730 +16121,15293 +16122,28729 +16123,6539 +16124,6539 +16125,6539 +16126,28730 +16127,16604 +16129,14895 +16131,25981 +16132,16604 +16134,13670 +16135,28734 +16136,28730 +16137,16604 +16138,15293 +16139,21298 +16140,21298 +16141,30091 +16142,25861 +16143,25847 +16144,14950 +16145,28730 +16146,15293 +16147,28729 +16148,14950 +16149,25847 +16150,11956 +16151,28734 +16152,28730 +16153,16604 +16154,28729 +16155,11956 +16156,21298 +16157,14895 +16158,25861 +16159,30091 +16160,19727 +16161,19678 +16162,19727 +16163,25784 +16164,25788 +16165,26039 +16166,33395 +16167,26732 +16168,26735 +16169,26736 +16170,26734 +16171,26733 +16172,19678 +16173,9632 +16174,9632 +16175,9632 +16176,9632 +16177,9632 +16178,9632 +16179,9632 +16180,9632 +16181,9632 +16182,9632 +16183,9632 +16184,9632 +16185,9632 +16186,9632 +16187,9632 +16188,9632 +16189,3018 +16190,4045 +16191,26754 +16192,7886 +16202,26771 +16203,26772 +16204,26773 +16205,26774 +16206,26776 +16207,26775 +16208,7287 +16209,3029 +16210,11448 +16211,15897 +16212,9465 +16213,15897 +16214,7798 +16215,7798 +16216,7798 +16217,7798 +16218,7798 +16219,7798 +16220,7798 +16221,7798 +16222,7798 +16223,7798 +16224,7798 +16242,7798 +16243,7798 +16244,7798 +16245,7798 +16246,7798 +16247,7798 +16248,7798 +16249,7798 +16250,7798 +16251,7798 +16252,7798 +16253,7798 +16254,7798 +16255,7798 +16262,6349 +16263,3023 +16282,7382 +16283,1168 +16302,1246 +16303,26924 +16304,26925 +16305,7266 +16306,2376 +16307,8927 +16308,26926 +16309,26950 +16310,3023 +16311,26976 +16312,7119 +16313,27056 +16314,1236 +16315,27087 +16316,1246 +16317,1246 +16318,1246 +16319,1246 +16320,1246 +16321,1246 +16322,1246 +16323,1246 +16324,1246 +16325,1246 +16326,1246 +16327,1246 +16328,1246 +16329,1246 +16330,1246 +16331,1246 +16332,27086 +16333,7099 +16335,30797 +16336,27087 +16337,27087 +16338,13108 +16339,25132 +16341,27088 +16342,27087 +16343,16208 +16344,16208 +16345,31997 +16346,1246 +16347,1246 +16348,1246 +16349,1246 +16350,1246 +16351,1246 +16352,1246 +16353,1246 +16354,1246 +16355,1246 +16356,1246 +16357,1246 +16358,1246 +16359,1246 +16360,1246 +16361,1246 +16362,1246 +16363,1246 +16364,1246 +16365,1246 +16366,1246 +16367,27163 +16368,1246 +16369,31063 +16370,27165 +16371,1246 +16372,1246 +16373,1246 +16374,1246 +16375,1246 +16376,1246 +16377,1246 +16378,1246 +16379,1246 +16380,1246 +16381,1246 +16382,1246 +16383,1246 +16384,1246 +16385,1246 +16386,1246 +16387,1246 +16388,1246 +16389,1246 +16390,1246 +16391,31064 +16392,31068 +16393,31070 +16394,27204 +16395,27204 +16396,31075 +16397,31071 +16398,27209 +16399,27209 +16400,27211 +16401,31244 +16402,27217 +16403,31245 +16404,27223 +16405,26752 +16406,31086 +16407,27226 +16408,27227 +16409,31082 +16410,30321 +16411,27226 +16412,27223 +16413,31057 +16414,27230 +16415,27231 +16416,27232 +16417,31072 +16418,31077 +16419,31073 +16420,31076 +16421,31074 +16422,27235 +16423,27236 +16424,27234 +16425,31241 +16426,31242 +16427,31247 +16428,31246 +16429,28934 +16430,31083 +16431,26659 +16432,26662 +16433,30315 +16434,30316 +16435,31084 +16436,31085 +16437,33009 +16438,30338 +16439,30340 +16440,32988 +16441,32978 +16442,28715 +16443,32981 +16444,33004 +16445,30331 +16446,30333 +16447,30332 +16448,30334 +16449,30328 +16450,30329 +16451,30330 +16452,30327 +16453,30327 +16454,30334 +16455,30330 +16456,30329 +16457,30328 +16458,30332 +16459,30333 +16460,30331 +16461,30324 +16462,32095 +16463,32098 +16464,30325 +16465,32093 +16466,32094 +16467,32097 +16468,32092 +16469,30320 +16470,30322 +16471,30321 +16472,30319 +16473,30315 +16474,30316 +16475,30317 +16476,30318 +16477,30315 +16478,30316 +16479,30317 +16480,30318 +16481,30320 +16482,30322 +16483,30319 +16484,30321 +16485,31097 +16486,27255 +16487,31098 +16488,27257 +16489,31099 +16490,26144 +16491,31102 +16492,31100 +16493,27262 +16494,27263 +16495,27264 +16496,27265 +16497,30801 +16498,31035 +16499,31036 +16500,27264 +16501,28935 +16502,27267 +16503,28106 +16504,31037 +16505,31039 +16506,30358 +16507,31038 +16508,31040 +16509,31050 +16510,31051 +16511,27272 +16512,27273 +16513,27274 +16514,30071 +16515,31052 +16516,31049 +16517,27277 +16518,31183 +16519,27279 +16520,27280 +16521,30072 +16522,31185 +16523,31186 +16524,30382 +16525,31048 +16526,31184 +16527,30367 +16528,31047 +16529,27280 +16530,31182 +16531,31181 +16532,27277 +16533,32999 +16534,32998 +16535,33085 +16536,33089 +16537,30346 +16538,30345 +16539,32996 +16540,32997 +16541,30373 +16542,30374 +16543,30375 +16544,30928 +16545,30370 +16546,30369 +16547,30372 +16548,30371 +16549,32110 +16550,32134 +16551,32129 +16552,32108 +16553,30353 +16554,32106 +16555,32107 +16556,30354 +16557,30354 +16558,32114 +16559,30353 +16560,32113 +16561,32132 +16562,32131 +16563,32115 +16564,32112 +16565,32122 +16566,32135 +16567,32120 +16568,32125 +16569,32124 +16570,30362 +16571,32119 +16572,30364 +16573,32126 +16574,32100 +16575,30364 +16576,30362 +16577,32103 +16578,32133 +16579,32127 +16580,32128 +16581,6688 +16582,27451 +16583,27454 +16602,27471 +16603,6689 +16604,27472 +16605,27473 +16606,27477 +16607,27479 +16608,16947 +16622,27492 +16623,9857 +16642,7596 +16643,7596 +16644,7596 +16645,7629 +16646,7629 +16647,7629 +16648,7629 +16649,7629 +16650,7629 +16651,7629 +16652,7629 +16653,7629 +16654,7629 +16655,7629 +16656,7629 +16658,27514 +16659,28270 +16660,27517 +16661,27521 +16662,22652 +16663,16325 +16664,26289 +16665,1317 +16666,31416 +16667,31117 +16668,31415 +16669,30925 +16670,31412 +16671,31411 +16672,31414 +16673,31413 +16674,31402 +16675,31408 +16676,31406 +16677,31410 +16678,31403 +16679,31409 +16680,31404 +16681,31405 +16682,29594 +16683,29597 +16684,29593 +16685,29596 +16686,31087 +16687,29273 +16688,29591 +16689,30211 +16690,30422 +16691,30430 +16692,30427 +16693,31104 +16694,30424 +16695,31103 +16696,30425 +16697,30426 +16698,31263 +16699,29797 +16700,29792 +16701,29798 +16702,29793 +16703,29795 +16704,29799 +16705,29800 +16706,29974 +16707,28180 +16708,28179 +16709,28161 +16710,24190 +16711,28162 +16712,28166 +16713,28177 +16714,29977 +16715,29981 +16716,29976 +16717,29979 +16718,30412 +16719,29975 +16720,31228 +16721,28160 +16722,29968 +16723,29966 +16724,29970 +16725,29967 +16726,29969 +16727,31207 +16728,29972 +16729,29971 +16730,29958 +16731,31284 +16732,29963 +16733,29964 +16734,29960 +16735,29961 +16736,29959 +16737,29962 +16738,27910 +16739,27911 +16740,27912 +16741,27913 +16742,27953 +16743,10301 +16744,15773 +16745,11449 +16746,15274 +16747,7842 +16748,7418 +16762,24037 +16763,3023 +16764,3023 +16765,3023 +16766,24733 +16767,1102 +16768,28187 +16769,28194 +16782,27227 +16783,1093 +16784,6614 +16785,18010 +16786,1504 +16787,28261 +16788,28407 +16789,28408 +16790,24153 +16791,26168 +16792,6794 +16793,28454 +16794,23729 +16795,31517 +16796,30582 +16797,30586 +16798,30581 +16799,30584 +16800,30587 +16801,30585 +16802,30583 +16803,31975 +16804,31970 +16805,31971 +16806,31969 +16807,31974 +16808,31987 +16809,31973 +16810,31972 +16811,31718 +16812,30620 +16813,31371 +16814,28198 +16815,31490 +16816,30623 +16817,30621 +16818,34046 +16819,30617 +16820,31105 +16821,31514 +16822,31340 +16823,31504 +16824,31109 +16825,31106 +16826,31503 +16827,31339 +16828,31722 +16829,31724 +16830,31725 +16831,31726 +16832,33653 +16833,31797 +16834,32790 +16835,31729 +16836,32016 +16837,31830 +16838,31829 +16839,31834 +16840,31831 +16841,31832 +16842,31835 +16843,31836 +16844,31833 +16845,32022 +16846,32028 +16847,32029 +16848,32030 +16849,32040 +16850,32021 +16851,32019 +16852,32024 +16853,31505 +16854,31506 +16855,31352 +16856,31510 +16857,31509 +16858,31353 +16859,31354 +16860,31507 +16861,31020 +16862,31025 +16863,31022 +16864,31019 +16865,31021 +16866,31260 +16867,31023 +16868,31024 +16869,28497 +16870,28497 +16871,28497 +16872,28497 +16873,28522 +16882,15692 +16883,15692 +16884,15590 +16885,15590 +16886,28586 +16887,28588 +16888,26584 +16889,28592 +16890,28593 +16891,28608 +16892,6009 +16893,6009 +16894,28610 +16895,6009 +16896,6009 +16897,30536 +16898,30542 +16899,34016 +16900,33655 +16901,30540 +16902,30546 +16903,30541 +16904,30548 +16905,33650 +16906,31111 +16907,33651 +16908,33743 +16909,31115 +16910,31110 +16911,31127 +16912,34044 +16913,34041 +16914,34218 +16915,34039 +16916,34038 +16917,34254 +16918,34045 +16919,34055 +16920,34051 +16921,34233 +16922,34049 +16923,34047 +16924,34048 +16925,34053 +16926,34052 +16927,34015 +16928,34013 +16929,34369 +16930,29857 +16931,34014 +16932,34022 +16933,34011 +16934,34012 +16935,33666 +16936,33665 +16937,34091 +16938,33672 +16939,34367 +16940,33668 +16941,34269 +16942,33667 +16943,34079 +16944,34078 +16945,34255 +16946,34084 +16947,34217 +16948,34082 +16949,34083 +16950,34081 +16951,33634 +16952,33633 +16953,34258 +16954,33637 +16955,34216 +16956,33636 +16957,33639 +16958,33635 +16959,33982 +16960,33990 +16961,34253 +16962,33986 +16963,34215 +16964,33984 +16965,33989 +16966,33983 +16967,24715 +16968,24702 +16969,18535 +16970,28622 +16971,16211 +16972,6748 +16973,17898 +16974,28732 +16975,28746 +16976,10365 +16977,28749 +16978,28750 +16979,28754 +16980,28756 +16981,16664 +16982,28770 +16983,28856 +16984,28760 +16985,26026 +16986,28288 +16987,28767 +16988,28773 +16989,28774 +16990,28775 +16991,25147 +16992,28786 +16993,28818 +16994,28822 +16995,28823 +16996,28827 +16997,28828 +16998,28829 +16999,28830 +17000,24022 +17001,28831 +17002,28834 +17003,28835 +17004,28836 +17005,28837 +17006,26995 +17007,28838 +17008,1301 +17009,14023 +17010,28840 +17011,28841 +17012,28842 +17013,28843 +17014,28844 +17015,28848 +17016,23276 +17017,1102 +17018,1102 +17019,13123 +17020,28854 +17021,28855 +17022,1102 +17023,1102 +17024,28857 +17025,1102 +17026,28858 +17027,28859 +17028,28860 +17029,28861 +17030,18725 +17031,20984 +17032,28862 +17033,28863 +17034,7287 +17035,7287 +17036,7287 +17037,7287 +17038,7287 +17039,28869 +17040,28866 +17041,28867 +17042,28870 +17043,28871 +17044,23716 +17045,28682 +17046,28873 +17047,12473 +17048,18119 +17049,6270 +17050,28990 +17051,6270 +17052,6270 +17053,6270 +17054,28876 +17055,15887 +17056,28877 +17057,28878 +17058,15773 +17059,6270 +17060,6270 +17061,28891 +17062,1102 +17063,9840 +17064,26374 +17065,4841 +17066,34110 +17067,29717 +17068,29161 +17069,30927 +17070,29706 +17071,34111 +17072,29163 +17073,32162 +17074,29176 +17075,32197 +17076,32199 +17077,29195 +17078,29719 +17082,29722 +17102,29824 +17103,29677 +17104,32200 +17105,34109 +17106,29702 +17107,29827 +17108,23728 +17109,9858 +17110,29697 +17111,6484 +17112,29171 +17113,29703 +17114,20784 +17115,9649 +17116,9649 +17117,2618 +17118,28999 +17119,29036 +17122,29050 +17123,29066 +17124,17655 +17125,8918 +17126,7726 +17142,29097 +17162,2760 +17163,29131 +17182,29698 +17183,2208 +17184,18480 +17185,18509 +17186,18506 +17187,27782 +17188,18468 +17189,18477 +17190,18516 +17191,29730 +17192,2324 +17193,29699 +17194,29164 +17195,29165 +17196,18079 +17197,29166 +17198,29172 +17199,29173 +17200,811 +17201,811 +17202,29169 +17203,29174 +17204,29175 +17222,29193 +17223,29191 +17224,7365 +17242,13290 +17262,13290 +17282,29276 +17283,6249 +17302,29444 +17303,29442 +17304,29440 +17305,29441 +17306,15711 +17307,29443 +17308,29445 +17309,29311 +17310,21672 +17322,24730 +17323,29312 +17324,29312 +17325,29312 +17326,22024 +17327,25475 +17328,25467 +17329,29315 +17330,29314 +17331,29317 +17332,29316 +17333,21672 +17342,1121 +17343,15897 +17344,29331 +17345,6703 +17346,29351 +17347,23475 +17348,15771 +17349,29352 +17351,29353 +17352,29354 +17353,1096 +17354,29355 +17355,3093 +17362,29312 +17382,29397 +17383,29408 +17384,23475 +17402,18117 +17403,18080 +17404,19873 +17405,18091 +17406,6425 +17407,1041 +17408,25469 +17409,29450 +17411,29451 +17412,1143 +17413,1143 +17414,1143 +17422,29468 +17423,26571 +17442,1096 +17462,29495 +17463,29496 +17482,29550 +17502,9310 +17503,19462 +17504,29571 +17505,29312 +17506,29312 +17507,29312 +17508,4405 +17522,11449 +17523,29630 +17542,7913 +17562,31059 +17563,27165 +17564,31060 +17565,27163 +17566,30341 +17567,30385 +17568,31053 +17569,31066 +17570,27258 +17571,31032 +17572,27260 +17573,30381 +17574,27257 +17575,27255 +17576,31026 +17577,27256 +17578,32979 +17579,33007 +17580,33002 +17581,33001 +17582,30338 +17583,33006 +17584,32995 +17585,30340 +17586,33076 +17587,30345 +17588,33077 +17589,30346 +17590,33088 +17591,33071 +17592,33079 +17593,30380 +17594,31061 +17595,27165 +17596,31062 +17597,27163 +17598,31065 +17599,25198 +17600,31058 +17601,31067 +17602,32980 +17603,32991 +17604,33005 +17605,32984 +17606,30338 +17607,32992 +17608,32990 +17609,30340 +17610,31030 +17611,31033 +17612,30351 +17613,31031 +17614,27257 +17615,27255 +17616,31027 +17617,31028 +17618,33080 +17619,30345 +17620,33081 +17621,30346 +17622,33083 +17623,33082 +17624,33084 +17625,26021 +17626,29653 +17642,29671 +17643,29671 +17662,8928 +17682,1317 +17683,1317 +17684,29731 +17685,29692 +17686,20555 +17687,8095 +17688,29693 +17689,10301 +17690,31475 +17691,31480 +17692,4284 +17693,22429 +17694,4284 +17695,16572 +17696,29724 +17702,29948 +17703,29691 +17704,29759 +17705,29769 +17706,15274 +17707,29842 +17708,4136 +17709,1301 +17710,29872 +17711,29880 +17712,29903 +17713,23629 +17714,29890 +17715,29894 +17716,29895 +17717,4427 +17718,29896 +17719,29897 +17720,15274 +17721,29898 +17722,1102 +17723,29901 +17724,1102 +17725,11431 +17726,29902 +17727,24053 +17728,30172 +17730,29907 +17731,3331 +17732,29908 +17733,29910 +17734,29911 +17735,1103 +17736,29912 +17737,29914 +17738,29915 +17739,29916 +17740,29941 +17741,29918 +17742,29919 +17743,22391 +17744,29922 +17745,29924 +17746,29925 +17747,6624 +17748,29927 +17749,29928 +17750,29929 +17751,29930 +17752,29931 +17753,29932 +17754,29934 +17755,14456 +17756,6688 +17757,13024 +17758,29935 +17759,23716 +17760,19492 +17761,4777 +17762,6851 +17763,18707 +17764,1659 +17765,6496 +17766,29939 +17767,29942 +17768,23608 +17769,29944 +17770,30957 +17771,29946 +17772,15420 +17773,15420 +17774,29947 +17775,29951 +17776,29952 +17777,29953 +17778,29954 +17779,29955 +17780,29957 +17781,7798 +17782,6494 +17783,6494 +17802,30606 +17822,1322 +17823,7629 +17824,9632 +17825,9632 +17826,9632 +17827,7899 +17828,7899 +17829,7899 +17830,7899 +17831,9632 +17832,9632 +17833,9632 +17834,9632 +17835,9632 +17836,9632 +17837,9632 +17838,9632 +17839,9632 +17840,9632 +17841,9632 +17842,9632 +17843,9632 +17844,9632 +17845,9632 +17846,9632 +17847,9632 +17848,9632 +17849,23520 +17850,6748 +17851,9632 +17852,9632 +17853,9632 +17854,9632 +17855,9632 +17856,9632 +17857,9632 +17858,9632 +17859,9632 +17860,9632 +17861,9632 +17862,9632 +17882,7899 +17883,7899 +17884,7899 +17885,7899 +17886,7899 +17887,7899 +17888,7899 +17889,7899 +17890,7899 +17891,7899 +17892,7899 +17893,7899 +17894,7899 +17895,7899 +17896,7899 +17897,7899 +17898,7899 +17899,7899 +17900,31480 +17901,31481 +17902,31482 +17903,31483 +17904,31484 +17905,31475 +17906,31476 +17907,31477 +17908,31478 +17909,31479 +17910,9632 +17911,9632 +17922,30171 +17942,30255 +17943,29910 +17962,2588 +17963,3568 +17964,1282 +17965,1168 +17966,30271 +17967,20914 +17968,20914 +17969,4056 +17982,28682 +18002,30294 +18022,28830 +18023,4006 +18042,30433 +18043,2373 +18044,30436 +18045,30437 +18046,1301 +18047,30439 +18048,30440 +18062,30455 +18063,24011 +18082,30472 +18083,30474 +18102,14617 +18103,24022 +18104,30492 +18105,30494 +18106,12206 +18122,30516 +18123,30517 +18142,19540 +18143,30532 +18144,13806 +18145,23358 +18146,30533 +18147,3422 +18148,7741 +18149,24572 +18151,8547 +18153,30534 +18154,30658 +18155,30534 +18156,30534 +18157,30534 +18158,30534 +18159,30534 +18160,1102 +18161,9992 +18162,9992 +18163,9992 +18164,9992 +18165,9992 +18166,30559 +18167,16539 +18168,30561 +18169,30562 +18170,30563 +18171,30564 +18172,30565 +18173,30566 +18182,30567 +18202,30594 +18203,30595 +18204,30577 +18205,16132 +18206,6349 +18207,30593 +18208,15273 +18209,26618 +18222,30600 +18223,30601 +18224,6501 +18225,30602 +18226,18010 +18227,20628 +18228,30603 +18229,12547 +18230,12410 +18231,30605 +18232,19503 +18233,18170 +18234,24154 +18235,1301 +18236,13433 +18237,21368 +18238,15753 +18239,1102 +18240,292 +18241,30608 +18242,17606 +18243,17785 +18244,17343 +18245,16208 +18246,17494 +18247,29447 +18248,17786 +18249,20802 +18250,22071 +18251,30647 +18252,6270 +18253,24217 +18254,26733 +18255,21974 +18256,18077 +18257,6270 +18258,30611 +18259,7798 +18260,7798 +18261,1103 +18262,21072 +18263,27972 +18264,6270 +18265,6270 +18266,7737 +18267,1301 +18268,3118 +18269,18119 +18282,31210 +18283,7326 +18284,18115 +18285,2516 +18286,30634 +18287,18080 +18288,7921 +18289,9860 +18290,6270 +18291,6270 +18292,6270 +18293,30638 +18294,3665 +18295,30639 +18296,30643 +18297,30650 +18298,30654 +18299,17889 +18300,21845 +18301,30660 +18302,30661 +18303,4403 +18304,30663 +18305,30671 +18306,30669 +18307,30667 +18308,30670 +18309,30672 +18310,30673 +18311,28511 +18312,30675 +18313,30677 +18314,24646 +18315,28812 +18316,24122 +18317,9853 +18318,30679 +18319,30680 +18320,30681 +18321,30915 +18322,6779 +18323,30683 +18324,13360 +18325,30685 +18326,30686 +18327,30688 +18328,30689 +18329,30690 +18330,30690 +18331,30690 +18332,12547 +18333,6672 +18334,1317 +18335,30690 +18336,30691 +18337,30693 +18338,21016 +18339,30703 +18340,30696 +18341,30697 +18342,7559 +18343,9836 +18344,25706 +18345,9840 +18346,30698 +18347,30699 +18348,30994 +18349,30702 +18350,15217 +18351,30704 +18352,30706 +18353,30711 +18354,1399 +18355,15420 +18356,1246 +18357,1103 +18358,7139 +18359,1317 +18360,8093 +18361,12547 +18362,1155 +18363,6672 +18364,1134 +18365,5780 +18366,30721 +18367,30720 +18368,30719 +18369,16710 +18370,30722 +18371,30723 +18372,30724 +18373,17099 +18374,18971 +18375,30727 +18376,30728 +18377,30729 +18378,30730 +18379,30736 +18380,30737 +18381,30738 +18382,30739 +18383,30740 +18384,30743 +18385,30744 +18386,21964 +18387,13656 +18388,30747 +18389,15247 +18390,18935 +18391,30749 +18392,6443 +18393,30751 +18394,30753 +18395,9842 +18396,30754 +18397,9859 +18398,9832 +18399,28812 +18400,26001 +18401,1317 +18402,29697 +18403,26391 +18404,9860 +18405,30763 +18406,30764 +18407,17216 +18408,30772 +18409,30774 +18410,30778 +18411,31732 +18412,30780 +18413,30783 +18414,1096 +18415,6270 +18416,6270 +18417,6270 +18418,6270 +18419,30791 +18420,30792 +18421,30793 +18422,30794 +18423,30794 +18424,30795 +18425,30796 +18426,18597 +18427,27088 +18428,30797 +18429,27273 +18430,27273 +18432,27277 +18434,27262 +18435,30801 +18436,27262 +18437,27255 +18438,23521 +18440,27087 +18441,27087 +18442,30799 +18443,30799 +18444,30799 +18445,27223 +18447,27223 +18448,31248 +18449,31248 +18450,30802 +18451,30803 +18452,30804 +18453,30804 +18454,30805 +18455,30805 +18456,30806 +18457,30806 +18458,26103 +18459,30807 +18460,30809 +18461,27088 +18462,30813 +18463,30814 +18464,9849 +18465,29712 +18466,29712 +18467,29712 +18468,29712 +18469,29712 +18470,29712 +18471,29712 +18472,29712 +18473,29712 +18475,15399 +18476,30817 +18477,17142 +18478,30819 +18479,30820 +18480,30821 +18481,5233 +18482,8106 +18483,25076 +18484,30822 +18485,20900 +18486,30824 +18487,1102 +18488,6511 +18489,20797 +18490,33293 +18491,30827 +18492,30828 +18493,30829 +18494,30830 +18495,30831 +18496,30832 +18497,30833 +18498,30834 +18499,30835 +18500,9823 +18501,21472 +18502,30836 +18503,30837 +18504,30839 +18505,30838 +18506,9080 +18507,19921 +18508,30848 +18509,30849 +18510,30850 +18511,30851 +18512,30852 +18513,20797 +18514,6270 +18515,6270 +18516,6270 +18517,1096 +18518,1096 +18519,1096 +18520,30853 +18521,30854 +18522,23897 +18523,30855 +18524,30857 +18525,30859 +18526,30860 +18527,30862 +18528,30864 +18529,30865 +18530,30866 +18531,30867 +18532,30868 +18533,30869 +18534,30870 +18535,30872 +18536,30875 +18537,21072 +18538,30881 +18539,18721 +18540,18721 +18541,30882 +18542,30886 +18543,30661 +18544,30893 +18545,24615 +18546,30889 +18547,30894 +18562,24673 +18563,30912 +18564,30912 +18565,20784 +18566,30913 +18567,30916 +18582,30936 +18583,30934 +18584,30935 +18585,9839 +18586,9823 +18587,31203 +18588,18063 +18589,20872 +18590,15788 +18591,30952 +18592,1102 +18593,30953 +18594,30999 +18595,7050 +18596,30956 +18597,30959 +18598,30959 +18599,36684 +18600,1103 +18601,6689 +18602,30875 +18603,3663 +18604,6688 +18605,6689 +18606,31256 +18607,31257 +18608,31347 +18609,31346 +18610,5139 +18611,9975 +18612,6845 +18622,21072 +18623,21072 +18624,21072 +18625,8560 +18626,20874 +18627,31168 +18628,30953 +18629,19239 +18630,31170 +18631,30995 +18632,16837 +18633,30996 +18634,31199 +18635,30997 +18636,7064 +18637,31204 +18638,31198 +18639,31200 +18640,24591 +18641,18062 +18642,8927 +18643,7629 +18644,31016 +18645,31202 +18646,31029 +18647,1301 +18648,1301 +18649,1301 +18650,1102 +18651,1102 +18652,1301 +18653,15274 +18654,15274 +18655,15274 +18656,1301 +18657,15274 +18658,15274 +18659,31034 +18660,31205 +18661,15274 +18662,34892 +18663,7155 +18664,31095 +18665,31096 +18666,7899 +18667,7899 +18668,7899 +18669,7899 +18670,2616 +18671,31119 +18672,31120 +18673,31121 +18674,9836 +18675,4742 +18676,31122 +18677,15148 +18678,9853 +18679,28831 +18680,30926 +18681,10177 +18682,10006 +18683,31126 +18684,9840 +18685,16325 +18686,31130 +18687,13123 +18688,7155 +18689,31131 +18690,25226 +18691,15420 +18692,31133 +18693,31136 +18694,7002 +18695,31138 +18696,18790 +18697,31140 +18698,21958 +18699,31142 +18700,27048 +18701,28733 +18702,31143 +18703,31144 +18704,31145 +18705,31146 +18706,31147 +18707,31148 +18708,31150 +18709,31151 +18710,31159 +18711,31160 +18712,31161 +18713,31338 +18714,31162 +18715,31163 +18716,31166 +18717,23239 +18718,31167 +18719,3422 +18720,13672 +18721,31171 +18722,31173 +18723,6539 +18724,31146 +18725,31174 +18726,31175 +18727,31177 +18728,9657 +18729,31240 +18730,31180 +18731,1301 +18734,31351 +18735,31188 +18736,16133 +18737,31189 +18738,31239 +18739,31191 +18740,31192 +18741,31193 +18742,31194 +18743,15163 +18744,31196 +18745,2311 +18746,31208 +18747,27231 +18749,1695 +18752,31211 +18753,31212 +18754,31213 +18755,31237 +18756,31216 +18757,31217 +18758,20574 +18759,31219 +18760,9839 +18761,31677 +18762,31223 +18763,31224 +18764,31225 +18765,31226 +18766,17608 +18767,17608 +18768,17608 +18769,7139 +18770,7139 +18771,7139 +18772,17785 +18773,17785 +18774,17785 +18775,7087 +18776,25132 +18777,25132 +18778,25132 +18779,24153 +18780,24153 +18781,31238 +18782,31238 +18783,8628 +18784,8628 +18785,17343 +18786,17343 +18787,17343 +18788,17494 +18789,17494 +18790,17494 +18791,17786 +18792,31350 +18793,29448 +18794,29447 +18795,29448 +18796,16208 +18797,16207 +18798,16207 +18799,6014 +18800,31258 +18801,31250 +18802,16325 +18803,31265 +18804,6430 +18805,33626 +18806,31271 +18807,31268 +18808,31276 +18809,31278 +18810,16526 +18811,24159 +18812,31280 +18813,9823 +18814,1399 +18815,31282 +18816,33615 +18817,31286 +18818,8093 +18819,31211 +18820,31287 +18821,9835 +18822,34112 +18823,31290 +18824,31295 +18825,31733 +18826,31746 +18827,31956 +18828,31957 +18829,31468 +18830,31302 +18831,31958 +18832,31309 +18833,31759 +18834,31306 +18835,31748 +18836,31757 +18837,31749 +18838,31379 +18839,29352 +18840,31381 +18841,29354 +18842,34114 +18843,32033 +18844,31754 +18845,31306 +18846,31306 +18847,32032 +18848,31752 +18849,31306 +18850,31306 +18851,31306 +18852,31306 +18853,31306 +18854,31318 +18855,31758 +18856,31318 +18857,31318 +18858,31318 +18859,31318 +18860,31747 +18861,31320 +18862,31318 +18863,31318 +18864,31318 +18865,31955 +18866,31751 +18867,31954 +18868,31750 +18869,31761 +18870,31327 +18871,31766 +18872,31331 +18873,31764 +18874,31765 +18875,31333 +18876,31996 +18877,31998 +18878,31337 +18879,9836 +18880,14023 +18881,29698 +18882,29170 +18902,17608 +18904,20625 +18922,7956 +18942,31376 +18943,7718 +18944,23436 +18945,20614 +18946,3920 +18947,6683 +18948,31385 +18949,1102 +18950,31386 +18951,31387 +18952,7235 +18953,31388 +18954,31388 +18955,31388 +18956,31391 +18957,31400 +18958,18021 +18959,31401 +18960,19478 +18961,29351 +18962,1438 +18963,18051 +18964,18048 +18965,18051 +18966,18051 +18967,18048 +18968,9836 +18969,7347 +18970,26537 +18971,9837 +18972,7347 +18982,9840 +18983,31419 +18984,31423 +18985,31424 +18986,31425 +18987,16161 +19002,31434 +19003,31434 +19014,22893 +19015,5027 +19016,20784 +19017,30913 +19018,20872 +19019,30606 +19020,1301 +19022,20619 +19023,18098 +19024,31499 +19025,31500 +19026,18070 +19027,1102 +19028,15966 +19029,31511 +19030,17343 +19031,31527 +19032,31528 +19033,31515 +19034,31516 +19035,12333 +19036,31521 +19037,31523 +19038,224 +19039,31675 +19040,31526 +19041,31529 +19042,31531 +19043,31532 +19044,34506 +19045,31256 +19046,31257 +19047,31534 +19048,31538 +19049,34505 +19050,36269 +19051,31565 +19052,34504 +19053,31553 +19054,27454 +19055,6564 +19056,31557 +19057,31564 +19058,31566 +19059,31828 +19060,21203 +19061,6344 +19062,6413 +19064,22477 +19065,31576 +19066,25147 +19067,17458 +19068,11926 +19069,7741 +19070,3233 +19071,31577 +19082,23211 +19083,26468 +19084,27197 +19085,31592 +19086,15042 +19087,31598 +19088,31599 +19089,30839 +19090,14686 +19091,31597 +19092,31600 +19093,31601 +19094,31602 +19095,31603 +19096,9859 +19097,31604 +19098,9857 +19099,31605 +19100,31606 +19101,31608 +19102,31610 +19103,31611 +19104,31612 +19105,33462 +19106,31613 +19107,32146 +19108,15238 +19109,31616 +19110,31617 +19111,31618 +19112,31619 +19113,31620 +19114,31622 +19115,31623 +19116,31625 +19117,31626 +19118,31628 +19119,31630 +19120,31631 +19121,31632 +19122,31633 +19123,31634 +19124,31635 +19125,27137 +19126,31638 +19127,31639 +19128,31641 +19129,31644 +19130,31645 +19131,31649 +19132,31650 +19133,31651 +19134,31652 +19135,14618 +19136,31653 +19137,31654 +19138,31655 +19139,27664 +19140,31657 +19141,7418 +19142,23321 +19143,31660 +19144,31662 +19145,31663 +19146,6763 +19147,31664 +19148,31671 +19149,31672 +19150,26420 +19151,26420 +19152,26420 +19153,7242 +19154,7242 +19155,7242 +19156,31673 +19157,31680 +19158,29698 +19159,31633 +19160,31676 +19162,31681 +19163,31682 +19164,31683 +19165,31685 +19166,31686 +19167,31720 +19168,31692 +19169,31735 +19170,31822 +19182,31745 +19183,2596 +19184,31721 +19185,31721 +19186,31721 +19187,31721 +19188,31721 +19189,31721 +19190,31721 +19191,31721 +19192,31721 +19193,31721 +19194,31721 +19195,31721 +19196,31721 +19197,31721 +19198,31721 +19199,31721 +19200,31721 +19201,31721 +19202,1301 +19203,1301 +19204,1301 +19205,1301 +19206,1301 +19207,1301 +19208,1301 +19209,1301 +19210,1301 +19211,1301 +19212,1301 +19213,23714 +19214,31740 +19215,1301 +19216,1301 +19217,1301 +19218,1301 +19219,1301 +19220,1301 +19221,18119 +19222,18102 +19223,31742 +19224,22200 +19225,15964 +19226,6592 +19227,31756 +19228,31755 +19229,3331 +19230,31756 +19231,31756 +19232,31756 +19233,31756 +19234,31756 +19235,31756 +19236,31756 +19237,3331 +19238,3331 +19239,3331 +19240,3331 +19241,3331 +19242,3331 +19243,3331 +19244,3331 +19245,3331 +19246,3331 +19247,3331 +19248,3331 +19249,3331 +19250,3331 +19251,3331 +19252,3331 +19253,3331 +19254,3331 +19255,3331 +19256,3331 +19257,31755 +19258,31760 +19259,31760 +19260,31760 +19261,31760 +19262,31760 +19263,31760 +19264,31760 +19265,31760 +19266,3331 +19267,31755 +19268,31762 +19269,31762 +19270,31762 +19271,31762 +19272,31762 +19273,31762 +19274,31762 +19275,31762 +19276,31767 +19277,31755 +19278,31767 +19279,31767 +19280,31767 +19281,31767 +19282,31767 +19283,31767 +19284,31767 +19286,26613 +19287,31768 +19288,31769 +19289,31770 +19290,31771 +19291,17329 +19292,31777 +19293,7462 +19295,31779 +19296,31783 +19297,1283 +19298,8270 +19299,18115 +19300,21794 +19301,21203 +19302,31800 +19303,9657 +19304,31803 +19305,31802 +19306,31804 +19307,25147 +19308,31805 +19309,24039 +19310,31806 +19311,23322 +19312,31807 +19313,31808 +19314,31808 +19315,31809 +19316,31814 +19317,31813 +19318,18080 +19319,21712 +19320,1816 +19321,31815 +19322,20219 +19323,31817 +19324,31820 +19325,31616 +19326,1102 +19327,1102 +19328,1102 +19329,1102 +19330,1102 +19331,1102 +19332,1102 +19333,1102 +19334,31999 +19335,31862 +19336,31838 +19337,31848 +19338,7798 +19339,31840 +19340,31841 +19341,31843 +19342,31846 +19343,31847 +19344,31845 +19345,31844 +19346,31864 +19347,31865 +19348,31851 +19349,31852 +19350,32080 +19351,31866 +19352,31867 +19353,31857 +19354,31858 +19355,31964 +19356,31960 +19357,31878 +19358,31877 +19360,31863 +19361,32763 +19362,31869 +19363,31870 +19364,32000 +19365,31880 +19366,31953 +19367,32774 +19368,31876 +19369,31888 +19370,18865 +19371,31889 +19372,32493 +19373,31194 +19374,31892 +19375,31898 +19376,31498 +19377,31899 +19378,28891 +19379,31901 +19380,31902 +19381,31904 +19382,31906 +19383,31907 +19384,31908 +19385,31911 +19386,31912 +19387,31914 +19388,31915 +19389,32082 +19390,31919 +19391,31921 +19392,31924 +19393,31925 +19394,31926 +19395,20978 +19396,31927 +19397,31905 +19398,23422 +19399,31930 +19400,31931 +19401,31932 +19402,31933 +19403,31800 +19404,31935 +19405,31934 +19406,31936 +19407,18858 +19422,31961 +19423,3331 +19424,3331 +19425,18721 +19426,31603 +19427,31808 +19428,31808 +19430,16879 +19431,31967 +19432,31576 +19433,31968 +19434,28733 +19435,31977 +19436,31978 +19437,31982 +19438,31985 +19439,31986 +19440,21845 +19441,5287 +19442,1301 +19443,3331 +19444,7798 +19445,7798 +19446,7798 +19447,7798 +19448,7798 +19449,7798 +19450,18173 +19451,3331 +19452,3331 +19453,3331 +19454,3331 +19455,31721 +19456,31808 +19457,31808 +19462,18051 +19482,31995 +19483,1103 +19484,6672 +19485,10814 +19486,10815 +19487,10816 +19488,10817 +19489,31239 +19490,30926 +19491,32008 +19502,31808 +19503,31808 +19504,31808 +19505,32031 +19506,32026 +19507,32034 +19508,32036 +19509,32038 +19510,29697 +19511,29697 +19512,29697 +19513,29697 +19514,9832 +19515,9832 +19516,9832 +19517,9832 +19518,30661 +19519,30661 +19520,30661 +19521,30661 +19522,28812 +19523,28812 +19524,28812 +19525,28812 +19526,32066 +19527,32069 +19528,32070 +19529,28042 +19530,32067 +19531,32068 +19532,32071 +19533,32072 +19534,32008 +19535,32008 +19536,32008 +19537,32008 +19538,32073 +19539,32073 +19540,32073 +19541,32073 +19542,32074 +19543,32074 +19544,32074 +19545,32074 +19546,32075 +19547,32075 +19548,32075 +19549,32075 +19550,32076 +19551,32076 +19552,32076 +19553,32076 +19554,32077 +19555,32077 +19556,32077 +19557,32077 +19558,32079 +19559,32079 +19560,32079 +19561,32079 +19562,32081 +19563,32081 +19564,32081 +19565,32081 +19566,20330 +19567,20330 +19568,20330 +19569,20330 +19570,18289 +19571,18289 +19572,18289 +19573,18289 +19574,32713 +19575,32714 +19576,32715 +19577,32716 +19578,32088 +19579,32713 +19580,32088 +19581,32088 +19582,32089 +19583,32089 +19584,32089 +19585,32714 +19586,32715 +19587,32090 +19588,32716 +19589,32090 +19590,32090 +19591,32713 +19592,32714 +19593,32715 +19594,32716 +19595,32091 +19596,32091 +19597,32091 +19598,32713 +19599,32714 +19600,32715 +19601,32716 +19602,32713 +19603,32714 +19604,32715 +19605,32716 +19606,32713 +19607,32714 +19608,32715 +19609,32716 +19610,32713 +19611,32714 +19612,32715 +19613,32716 +19614,32713 +19615,32714 +19616,32715 +19617,32716 +19618,32713 +19619,32714 +19620,32715 +19621,32716 +19622,31808 +19623,32140 +19642,7744 +19662,31721 +19682,32154 +19683,32155 +19684,32770 +19685,32157 +19686,32159 +19687,32158 +19688,25682 +19689,32160 +19690,32163 +19691,32165 +19692,32164 +19693,32166 +19694,32167 +19695,32168 +19696,21203 +19697,32171 +19698,32301 +19699,32279 +19700,32278 +19701,32276 +19702,32282 +19703,32283 +19704,32280 +19705,32281 +19706,32277 +19707,32553 +19708,32547 +19709,32555 +19710,32551 +19711,32550 +19712,32552 +19713,32548 +19714,32554 +19715,32549 +19716,32252 +19717,32253 +19718,32254 +19719,32255 +19720,7046 +19721,32256 +19722,32257 +19723,32258 +19724,32259 +19725,11449 +19726,18087 +19727,32189 +19742,32192 +19743,32193 +19762,32216 +19763,32217 +19764,1301 +19765,1301 +19766,1301 +19767,26371 +19768,32230 +19769,1301 +19770,1301 +19771,1301 +19772,1301 +19773,1301 +19774,22652 +19775,32231 +19776,1301 +19777,1301 +19778,1301 +19779,1301 +19780,1301 +19781,1301 +19782,32233 +19783,32234 +19784,32235 +19785,32242 +19786,32237 +19787,32238 +19788,32239 +19789,32240 +19790,32241 +19802,32260 +19803,24521 +19804,24694 +19805,18535 +19806,32261 +19807,28622 +19808,32262 +19809,31721 +19810,31808 +19811,31721 +19812,20984 +19813,2622 +19814,2622 +19815,2622 +19816,2622 +19817,2622 +19818,2622 +19819,2622 +19820,2622 +19821,2622 +19822,32415 +19823,32416 +19824,32417 +19825,32263 +19826,32264 +19827,32265 +19828,32748 +19829,32750 +19830,32749 +19831,32270 +19832,32272 +19833,28806 +19834,32273 +19835,32274 +19836,32275 +19837,28827 +19838,32285 +19839,32286 +19840,32287 +19841,32567 +19842,32289 +19843,32290 +19844,32544 +19845,32292 +19846,32290 +19847,32544 +19848,32290 +19849,32566 +19850,21586 +19851,20342 +19852,34718 +19853,32577 +19854,32603 +19855,32296 +19856,32297 +19857,32298 +19858,32300 +19859,32575 +19861,32595 +19862,32561 +19863,32305 +19864,32314 +19865,32722 +19866,32722 +19867,32581 +19868,32570 +19869,32340 +19870,32320 +19871,32321 +19872,17494 +19873,32323 +19874,32604 +19875,32413 +19876,32326 +19877,32405 +19878,32409 +19879,32332 +19880,32333 +19881,18136 +19882,13061 +19883,25147 +19884,32613 +19885,32335 +19886,32734 +19887,32337 +19888,32339 +19889,32772 +19890,32588 +19891,32344 +19892,32406 +19893,32347 +19894,32348 +19895,32401 +19896,32776 +19897,32563 +19898,32353 +19899,32407 +19900,34507 +19901,32356 +19902,17607 +19903,32576 +19904,32360 +19905,32347 +19906,32773 +19907,32371 +19908,32600 +19909,32612 +19910,32615 +19911,32376 +19912,32323 +19913,32379 +19914,21586 +19915,32560 +19916,11958 +19917,32382 +19918,32782 +19919,32389 +19920,32305 +19921,26535 +19922,32784 +19923,32395 +19924,32397 +19925,32353 +19926,32400 +19927,32582 +19928,32404 +19929,32410 +19930,32745 +19931,9731 +19932,32414 +19933,33178 +19934,6651 +19935,21365 +19936,21365 +19937,6651 +19938,1438 +19939,26865 +19940,32425 +19941,30532 +19942,32426 +19943,32427 +19944,32450 +19945,21701 +19946,32430 +19947,20625 +19948,32431 +19949,32431 +19950,32431 +19951,32326 +19952,32326 +19953,32326 +19954,32326 +19955,32326 +19956,32326 +19957,32326 +19958,32326 +19959,32326 +19960,32432 +19961,32780 +19962,36762 +19963,32446 +19964,32438 +19965,32439 +19966,32766 +19967,32584 +19968,32443 +19969,32449 +19970,20619 +19971,32452 +19972,16548 +19973,11926 +19974,17288 +19975,4810 +19978,7695 +19979,8233 +19980,6451 +19981,32490 +19982,32503 +19983,32507 +19984,32731 +19986,21701 +19987,32511 +19988,32514 +19989,32515 +19990,9657 +19991,1504 +19992,13806 +19993,32571 +19994,24568 +19995,31516 +19996,32521 +19997,18099 +19998,32536 +19999,26614 +20000,1325 +20001,1325 +20002,17403 +20003,32538 +20004,29353 +20005,32539 +20006,32678 +20007,32543 +20008,3663 +20009,1103 +20010,1246 +20011,1301 +20012,1301 +20013,1301 +20014,1301 +20015,19567 +20016,4807 +20017,8232 +20018,7169 +20019,959 +20020,7918 +20021,9849 +20022,13885 +20023,7798 +20024,4045 +20025,292 +20026,6680 +20027,1438 +20028,28854 +20029,32557 +20030,4772 +20031,22979 +20032,12675 +20033,32564 +20034,32565 +20035,32592 +20036,7122 +20037,18707 +20038,32570 +20039,32599 +20040,1301 +20041,32644 +20042,32644 +20043,34241 +20044,34241 +20045,34244 +20046,34244 +20047,34244 +20048,32822 +20049,32822 +20050,34242 +20051,34242 +20052,34247 +20053,34248 +20054,34240 +20055,34243 +20056,34249 +20057,34245 +20058,34245 +20059,18971 +20060,18971 +20061,32740 +20062,21203 +20063,6413 +20064,6344 +20065,17458 +20066,25147 +20067,11926 +20068,23140 +20069,32677 +20070,32648 +20071,6502 +20072,6502 +20073,23140 +20074,32650 +20075,1102 +20076,32657 +20077,32656 +20078,32658 +20079,17896 +20080,24211 +20081,24156 +20082,32685 +20083,32717 +20084,1007 +20085,35016 +20086,32693 +20087,32691 +20088,34241 +20089,34241 +20090,34392 +20091,34242 +20092,34242 +20093,34393 +20094,34240 +20095,34240 +20096,34240 +20097,34244 +20098,34244 +20099,34244 +20100,34248 +20101,34248 +20102,34248 +20103,34244 +20104,34244 +20105,34244 +20106,32644 +20107,32644 +20108,32644 +20109,32822 +20110,32822 +20111,32822 +20112,34247 +20113,34247 +20114,34247 +20115,34244 +20116,34244 +20117,34244 +20118,34241 +20119,34241 +20120,34392 +20121,34242 +20122,34242 +20123,34393 +20124,32644 +20125,32644 +20126,34394 +20127,32822 +20128,32822 +20129,34395 +20130,18059 +20131,32694 +20132,32695 +20134,32735 +20135,29859 +20136,29858 +20137,29860 +20138,29865 +20139,25226 +20140,29867 +20141,29863 +20142,29864 +20143,4841 +20144,26537 +20145,27088 +20146,31210 +20149,31721 +20150,34241 +20151,34241 +20152,34392 +20153,34241 +20154,34242 +20155,34242 +20156,34242 +20157,34393 +20158,34243 +20159,34240 +20160,34240 +20161,34240 +20162,34240 +20163,34244 +20164,34244 +20165,34244 +20166,34244 +20167,34248 +20168,34248 +20169,34248 +20170,34248 +20171,34244 +20172,34244 +20173,34244 +20174,34244 +20175,18971 +20176,32740 +20177,32644 +20178,32644 +20179,32644 +20180,32644 +20181,32822 +20182,32822 +20183,32822 +20184,32739 +20185,32822 +20186,34247 +20187,34247 +20188,34247 +20189,34247 +20190,34244 +20191,34244 +20192,34244 +20193,34244 +20194,18971 +20195,34241 +20196,34241 +20197,34392 +20198,34241 +20199,34242 +20200,34242 +20201,34393 +20202,34242 +20203,34249 +20204,32644 +20205,32644 +20206,32644 +20207,34394 +20208,32822 +20209,32822 +20210,34395 +20211,32822 +20212,34245 +20213,32718 +20214,32648 +20215,32721 +20216,32720 +20217,32724 +20218,32726 +20219,32727 +20220,32677 +20221,32728 +20222,21203 +20223,6413 +20224,6344 +20225,21203 +20226,6413 +20227,6344 +20228,7242 +20229,7242 +20230,7242 +20231,26420 +20232,17458 +20233,26420 +20234,25147 +20235,11926 +20236,26420 +20237,17458 +20238,31721 +20239,29859 +20240,29858 +20241,27088 +20242,29860 +20243,25147 +20244,11926 +20245,31210 +20246,29865 +20247,25226 +20248,4841 +20249,29867 +20250,26537 +20251,29863 +20252,29864 +20253,1102 +20254,1102 +20255,32732 +20256,32746 +20257,32751 +20258,32587 +20259,32752 +20260,32753 +20261,30749 +20262,32755 +20263,32900 +20264,32757 +20265,32758 +20266,32756 +20267,28177 +20268,28162 +20269,24190 +20270,28180 +20271,28166 +20272,28161 +20273,28179 +20274,28160 +20275,23716 +20276,23553 +20277,9837 +20278,28827 +20279,23262 +20280,31721 +20281,29859 +20282,29858 +20283,27088 +20284,29860 +20285,31210 +20286,29865 +20287,25226 +20288,4841 +20289,29867 +20290,26537 +20291,29863 +20292,29864 +20295,32760 +20296,32762 +20297,28177 +20298,28162 +20299,28827 +20300,24190 +20301,28180 +20302,23553 +20303,23262 +20304,28166 +20305,23716 +20306,28161 +20307,9837 +20308,28179 +20309,28160 +20310,13002 +20311,28177 +20312,28162 +20313,28827 +20314,24190 +20315,28180 +20316,23553 +20317,23262 +20318,28166 +20319,23716 +20320,28161 +20321,9837 +20322,28179 +20323,28160 +20324,29596 +20325,29597 +20326,29594 +20327,31087 +20328,29593 +20329,29273 +20330,30211 +20331,29591 +20332,23717 +20333,24022 +20334,30870 +20335,28828 +20336,26681 +20337,32768 +20338,29596 +20339,29597 +20340,29594 +20341,31087 +20342,29593 +20343,29273 +20344,30211 +20345,23717 +20346,24022 +20347,29591 +20348,26681 +20349,30870 +20350,28828 +20351,29596 +20352,29597 +20353,29594 +20354,31087 +20355,29593 +20356,29273 +20357,30211 +20358,23717 +20359,24022 +20360,29591 +20361,26681 +20362,30870 +20363,28828 +20364,9632 +20367,32781 +20368,30926 +20369,32890 +20370,20256 +20371,18050 +20372,20256 +20373,7987 +20374,7987 +20375,7229 +20376,3671 +20377,1151 +20378,22443 +20379,2593 +20380,32818 +20381,21363 +20382,1102 +20383,20931 +20384,32820 +20385,4808 +20387,2533 +20388,15963 +20389,16837 +20390,15964 +20391,32956 +20392,32957 +20393,32838 +20394,4844 +20395,3154 +20396,8092 +20397,32827 +20398,32827 +20399,32827 +20400,32830 +20401,11184 +20402,32831 +20403,32233 +20404,7629 +20405,7694 +20406,33129 +20407,32841 +20408,33073 +20409,32827 +20410,32827 +20411,32827 +20412,32837 +20413,32827 +20414,32827 +20415,1246 +20416,32933 +20417,25504 +20418,32933 +20419,32933 +20420,32933 +20422,9285 +20423,2627 +20424,22193 +20425,20330 +20426,30661 +20427,28042 +20428,32072 +20429,29697 +20430,32076 +20431,28812 +20432,32923 +20433,32923 +20434,18289 +20435,32923 +20436,32923 +20437,32079 +20438,32081 +20439,9832 +20440,32077 +20441,32074 +20442,32008 +20443,32075 +20444,32073 +20445,26537 +20446,26537 +20447,32932 +20448,32932 +20449,32932 +20450,32931 +20451,23629 +20452,32650 +20453,20627 +20454,30603 +20455,32845 +20456,1037 +20457,10923 +20458,10923 +20459,10923 +20460,32846 +20461,32847 +20462,32849 +20463,7221 +20464,32850 +20465,32851 +20466,9840 +20467,2247 +20468,32858 +20469,20709 +20475,7401 +20476,32871 +20477,32874 +20478,32872 +20479,32876 +20480,32877 +20481,32875 +20485,32879 +20487,31163 +20488,31338 +20489,32880 +20490,26732 +20491,26732 +20492,15964 +20493,15964 +20494,32884 +20495,32884 +20496,15965 +20497,15965 +20498,32885 +20499,22838 +20500,32886 +20501,32887 +20502,32888 +20503,7143 +20504,33033 +20505,31905 +20506,1102 +20507,1102 +20508,1102 +20509,1102 +20510,1102 +20511,1102 +20512,24730 +20513,2667 +20514,32895 +20515,32894 +20516,6410 +20517,32903 +20518,3331 +20519,33070 +20520,32905 +20521,32908 +20522,32909 +20524,32910 +20525,32912 +20530,33150 +20531,2616 +20534,30690 +20536,33087 +20537,18863 +20538,32927 +20539,32928 +20540,1093 +20541,7694 +20545,7694 +20546,6270 +20547,6270 +20548,6270 +20549,32946 +20550,32945 +20551,33195 +20552,7694 +20553,6270 +20554,6270 +20555,6270 +20556,24014 +20557,32955 +20558,20219 +20559,33023 +20560,33022 +20561,32958 +20562,32959 +20563,32961 +20564,32963 +20565,32964 +20566,32965 +20567,32966 +20568,32967 +20569,32968 +20570,32969 +20571,32971 +20572,32970 +20573,32972 +20574,32973 +20575,32974 +20576,1102 +20577,33097 +20578,33095 +20579,33096 +20580,33017 +20581,33015 +20582,33018 +20583,32959 +20584,32957 +20585,32964 +20586,32961 +20587,32968 +20588,32971 +20589,32966 +20590,32973 +20591,32958 +20592,32956 +20593,32965 +20594,32963 +20595,32969 +20596,32970 +20597,32967 +20598,32972 +20599,33020 +20600,31576 +20601,1285 +20602,17329 +20603,31783 +20604,33021 +20605,18049 +20606,19529 +20607,19528 +20608,19570 +20609,33025 +20610,6492 +20611,6651 +20612,33026 +20613,7290 +20614,16210 +20615,33028 +20616,18378 +20617,33029 +20618,33031 +20619,33034 +20620,20894 +20621,33036 +20622,31907 +20623,33161 +20624,31664 +20625,33040 +20626,16892 +20627,33042 +20628,33162 +20629,33045 +20630,33047 +20631,33049 +20632,9834 +20633,33051 +20634,30845 +20635,33054 +20636,1262 +20637,33056 +20638,33057 +20639,33059 +20640,34495 +20641,18863 +20642,33062 +20643,35629 +20644,33064 +20645,6539 +20646,33068 +20647,33069 +20648,33072 +20649,31604 +20650,33092 +20651,18050 +20652,33098 +20653,33100 +20654,18368 +20655,33101 +20656,33105 +20657,33107 +20658,33112 +20659,33110 +20660,33113 +20661,33132 +20662,33117 +20663,28547 +20664,16767 +20665,33119 +20666,33120 +20667,33121 +20668,33122 +20669,33123 +20670,27137 +20671,33124 +20672,33125 +20673,33126 +20674,33127 +20675,33128 +20676,7695 +20677,7695 +20678,7695 +20679,7695 +20680,26919 +20681,33131 +20682,24087 +20683,33133 +20684,33134 +20685,33135 +20686,33136 +20687,33137 +20688,33138 +20689,33139 +20690,33141 +20691,26137 +20692,963 +20693,33142 +20694,24122 +20695,9852 +20696,33143 +20697,33144 +20698,33145 +20699,33146 +20700,33146 +20701,33147 +20702,33147 +20703,33148 +20704,33148 +20705,33149 +20708,12331 +20709,18102 +20710,33152 +20711,33152 +20712,33154 +20713,33154 +20714,33155 +20715,33155 +20716,33160 +20717,33160 +20718,33163 +20719,33170 +20720,21620 +20721,26391 +20722,31237 +20723,33171 +20724,33172 +20725,33448 +20726,7798 +20727,7798 +20728,7798 +20729,7798 +20730,7798 +20731,7798 +20732,7798 +20733,7798 +20734,7798 +20735,7798 +20736,7798 +20737,33177 +20738,33181 +20739,31500 +20740,33188 +20741,7299 +20742,33191 +20744,33194 +20745,33453 +20746,33450 +20747,33454 +20748,33455 +20749,33452 +20750,33451 +20752,11431 +20753,11431 +20754,11431 +20755,7798 +20756,7798 +20757,7798 +20758,11431 +20761,1102 +20763,33200 +20766,33201 +20767,33201 +20768,33204 +20769,33202 +20770,33203 +20800,33207 +20801,33208 +20802,33209 +20803,5567 +20805,33211 +20806,1102 +20807,1102 +20808,33211 +20809,33211 +20810,16065 +20814,26361 +20834,7365 +20844,13707 +20858,34162 +20859,34159 +20860,34161 +20861,34156 +20862,34158 +20863,34157 +20864,34155 +20865,34160 +20866,34140 +20867,34153 +20868,34228 +20869,34136 +20870,34151 +20871,34152 +20872,34154 +20873,34138 +20874,34150 +20875,34145 +20876,34143 +20877,34148 +20878,34146 +20879,34144 +20881,34147 +20882,34149 +20883,32253 +20884,34168 +20885,34169 +20886,34170 +20887,32253 +20888,34167 +20889,32253 +20890,34171 +20908,33261 +20926,32253 +20927,34172 +20928,34164 +20929,34174 +20930,32253 +20931,34173 +20932,34166 +20933,34175 +20936,32253 +20937,32253 +20939,1102 +20940,1102 +20941,1102 +20942,1102 +20943,1102 +20944,1102 +20945,1102 +20946,1102 +20947,1102 +20948,1102 +20949,33285 +20951,33286 +21023,25468 +21024,25472 +21025,12547 +21027,4112 +21028,4112 +21029,31238 +21030,6342 +21031,26733 +21032,7649 +21033,26731 +21037,33399 +21038,29169 +21039,33401 +21040,33402 +21041,21202 +21042,30271 +21043,3020 +21071,24719 +21072,24719 +21099,1102 +21100,34104 +21101,33422 +21102,33421 +21103,33423 +21104,33423 +21105,33423 +21106,33423 +21107,33423 +21108,33423 +21109,33423 +21110,33423 +21111,1246 +21112,32426 +21113,12331 +21114,18099 +21115,6502 +21116,6502 +21117,6502 +21118,6502 +21119,6502 +21120,6502 +21121,33424 +21122,33425 +21123,33426 +21124,33428 +21125,33429 +21126,34513 +21127,33431 +21128,33429 +21129,33434 +21130,1134 +21131,33211 +21132,33211 +21133,33211 +21134,33435 +21135,26358 +21136,33436 +21137,6614 +21138,20977 +21139,6663 +21140,1102 +21141,20977 +21142,16065 +21143,24154 +21144,23295 +21145,9731 +21146,33456 +21147,33456 +21148,33456 +21149,33456 +21150,12331 +21151,18099 +21152,33457 +21153,28622 +21154,34096 +21155,33460 +21156,20342 +21157,34093 +21158,1102 +21159,1102 +21160,1102 +21161,1102 +21162,9150 +21163,7135 +21164,4823 +21165,1102 +21166,1102 +21167,1102 +21168,33467 +21171,33469 +21173,33470 +21174,33470 +21175,33518 +21176,33967 +21177,34177 +21178,33519 +21179,23608 +21180,33520 +21181,33522 +21182,26001 +21183,33527 +21184,33528 +21185,33529 +21186,33530 +21187,33531 +21188,33533 +21189,31908 +21190,31498 +21191,33535 +21192,33536 +21193,20342 +21194,20342 +21195,20342 +21196,33537 +21197,33537 +21198,33537 +21199,33537 +21200,33537 +21201,33537 +21202,33537 +21203,33537 +21204,33537 +21205,33537 +21206,33537 +21207,33537 +21208,33537 +21209,33537 +21210,33537 +21211,2593 +21212,29165 +21213,29165 +21214,1103 +21215,33681 +21216,29902 +21217,28622 +21218,33969 +21219,1301 +21220,33540 +21221,33541 +21222,33542 +21223,33543 +21224,33544 +21225,33545 +21226,33546 +21227,7741 +21228,30952 +21229,32745 +21230,33547 +21232,33549 +21235,33551 +21236,6343 +21237,33572 +21238,33555 +21240,29331 +21241,24570 +21242,34178 +21243,7176 +21244,34142 +21245,1102 +21246,1102 +21247,1102 +21248,1102 +21249,1102 +21250,1102 +21251,1102 +21252,1102 +21253,1102 +21254,33555 +21255,1102 +21256,1102 +21257,1102 +21258,1102 +21259,1102 +21260,1102 +21261,1102 +21262,1102 +21263,1102 +21264,1102 +21265,1102 +21267,18060 +21268,33830 +21269,34137 +21270,33535 +21272,34139 +21273,34134 +21274,9632 +21275,34135 +21276,33567 +21277,34050 +21278,4318 +21279,1103 +21280,1103 +21281,1246 +21282,1246 +21283,1246 +21284,1143 +21285,1143 +21286,33578 +21287,1143 +21288,1155 +21289,1155 +21290,1155 +21291,33585 +21292,33585 +21293,33585 +21294,1317 +21295,1317 +21296,1317 +21297,3426 +21298,3426 +21299,3426 +21300,1134 +21301,33588 +21302,1134 +21303,1134 +21304,12547 +21305,29902 +21306,12547 +21307,12547 +21308,33589 +21309,21202 +21310,33535 +21311,33590 +21312,33591 +21313,20342 +21314,3019 +21315,362 +21316,33604 +21317,33598 +21318,18271 +21319,33599 +21320,33601 +21321,33971 +21322,33603 +21323,33970 +21324,33972 +21325,26461 +21326,33702 +21327,33535 +21328,6620 +21329,34486 +21330,34256 +21331,33709 +21332,33713 +21333,33714 +21334,34061 +21335,34018 +21336,33618 +21337,34351 +21338,33625 +21339,33624 +21340,33940 +21341,33941 +21342,33942 +21343,37266 +21344,33641 +21345,34020 +21346,33643 +21347,34370 +21348,34348 +21349,33647 +21350,34021 +21351,34063 +21352,33652 +21353,34609 +21354,34037 +21355,33661 +21356,33662 +21357,34086 +21358,1102 +21359,33673 +21360,34608 +21361,34077 +21362,33678 +21363,33535 +21364,34087 +21365,33690 +21366,34221 +21367,34904 +21368,33700 +21369,1102 +21370,33691 +21371,6270 +21372,34222 +21373,33696 +21374,33697 +21375,33701 +21376,34056 +21377,31500 +21378,1102 +21379,1102 +21380,1102 +21381,1102 +21382,1102 +21383,1399 +21384,1102 +21385,1102 +21387,34487 +21388,33708 +21389,33705 +21390,33706 +21391,34257 +21392,33727 +21393,33856 +21394,24013 +21395,33839 +21396,33856 +21397,33730 +21398,33731 +21399,33856 +21400,33732 +21401,33727 +21402,33856 +21403,33733 +21404,33734 +21405,33856 +21406,33735 +21407,33731 +21408,33856 +21409,33736 +21410,33731 +21411,33856 +21412,33737 +21413,33839 +21414,33856 +21415,33144 +21416,33734 +21417,33856 +21418,26202 +21419,33779 +21420,33766 +21421,33767 +21422,33768 +21423,33770 +21424,33770 +21425,33771 +21426,33772 +21427,33775 +21428,33776 +21429,33780 +21430,33781 +21431,33782 +21432,33783 +21433,33784 +21434,33785 +21435,33787 +21436,33786 +21437,33788 +21438,33789 +21439,33791 +21440,33792 +21441,33793 +21442,33794 +21443,33796 +21444,33799 +21445,33793 +21446,33802 +21447,33767 +21448,33803 +21449,33804 +21450,33806 +21451,33807 +21452,33809 +21453,33810 +21454,33812 +21455,33880 +21456,33814 +21457,33818 +21458,33819 +21459,33828 +21460,33822 +21461,33823 +21462,19128 +21463,33824 +21464,33825 +21465,33835 +21466,33838 +21467,33840 +21468,33841 +21469,33842 +21470,28951 +21471,33845 +21472,33848 +21473,33973 +21474,33852 +21475,33853 +21476,33854 +21477,33855 +21478,33857 +21479,33903 +21480,29833 +21481,22757 +21482,33863 +21483,33864 +21484,33901 +21485,33867 +21486,33868 +21487,33870 +21488,33849 +21489,33873 +21490,33876 +21491,33879 +21492,33882 +21493,31166 +21494,33885 +21495,33888 +21496,33889 +21497,33892 +21498,33894 +21499,33895 +21500,14174 +21501,33897 +21502,33902 +21503,33905 +21504,33906 +21505,33906 +21506,33906 +21507,33906 +21508,33907 +21509,12333 +21510,12333 +21511,12333 +21512,12333 +21513,12333 +21514,1102 +21515,33911 +21516,33422 +21517,34353 +21518,33422 +21519,18087 +21520,31866 +21521,33994 +21522,33992 +21523,33991 +21524,33998 +21525,33999 +21526,31616 +21527,33980 +21528,21202 +21529,31899 +21530,34031 +21531,34034 +21532,28627 +21533,34035 +21534,34036 +21535,20952 +21536,24730 +21537,34059 +21538,34094 +21539,34095 +21540,21469 +21541,34097 +21542,34099 +21543,34100 +21544,34098 +21545,11449 +21546,24214 +21547,15274 +21548,1102 +21549,34101 +21550,34115 +21551,34105 +21552,4811 +21553,34106 +21554,34107 +21555,31954 +21557,34281 +21558,34279 +21559,34280 +21560,34282 +21561,34283 +21562,34284 +21563,31800 +21564,34116 +21565,34188 +21566,34188 +21567,7248 +21568,7248 +21569,31401 +21570,34121 +21571,34271 +21572,34127 +21573,34128 +21574,34272 +21575,34273 +21576,34275 +21577,34276 +21578,34277 +21579,34132 +21580,34133 +21581,34165 +21582,34176 +21583,34179 +21584,34181 +21585,34183 +21586,34184 +21587,34185 +21588,34186 +21589,34285 +21590,34286 +21591,34287 +21592,34289 +21593,34290 +21594,34187 +21595,34291 +21596,34189 +21597,34190 +21598,34191 +21599,34193 +21600,34195 +21601,33808 +21602,34197 +21603,34198 +21604,34199 +21605,34260 +21606,34202 +21607,34203 +21608,34204 +21609,34205 +21610,34206 +21611,34207 +21612,34208 +21613,34210 +21614,34606 +21615,30670 +21616,34223 +21617,34226 +21618,34227 +21619,34230 +21620,33808 +21621,34231 +21622,34232 +21623,34235 +21624,34236 +21625,34237 +21626,34238 +21627,34239 +21628,9632 +21629,9632 +21630,9632 +21631,9632 +21632,9632 +21633,9632 +21634,9632 +21635,34250 +21636,9632 +21637,9632 +21638,9632 +21639,34252 +21640,18721 +21641,9632 +21642,9632 +21643,9632 +21644,9632 +21645,34259 +21646,9632 +21647,34261 +21648,34263 +21649,9632 +21650,34264 +21651,34266 +21652,34268 +21653,9632 +21655,9632 +21656,9632 +21657,9632 +21658,9632 +21659,9632 +21660,9632 +21661,9632 +21662,9632 +21663,34270 +21664,34274 +21665,34278 +21666,34288 +21667,34292 +21668,32760 +21669,34711 +21670,33851 +21671,34294 +21672,34295 +21673,34296 +21674,34298 +21675,34299 +21676,34302 +21677,33808 +21678,34303 +21679,34304 +21680,34305 +21681,33864 +21682,34306 +21683,34310 +21684,34312 +21685,33871 +21686,34314 +21687,28733 +21688,34315 +21689,34317 +21690,34318 +21691,34319 +21692,34320 +21693,34607 +21694,34323 +21695,33855 +21696,34325 +21697,18948 +21698,34326 +21699,34419 +21700,34204 +21701,34329 +21702,31889 +21703,34331 +21704,34332 +21705,34333 +21706,34334 +21707,33855 +21708,34335 +21709,34336 +21710,34337 +21711,34342 +21712,34274 +21713,34365 +21714,34354 +21715,34339 +21716,34356 +21717,34357 +21718,34358 +21719,34359 +21720,34360 +21721,15794 +21722,15274 +21723,15274 +21724,15274 +21725,15274 +21726,15274 +21727,15274 +21728,15274 +21729,15274 +21730,15274 +21731,15274 +21732,15274 +21733,15274 +21734,15274 +21735,15274 +21736,24011 +21737,15274 +21738,15274 +21739,34342 +21740,1102 +21741,6270 +21742,1096 +21743,15274 +21744,34359 +21745,24730 +21746,34361 +21747,34363 +21749,1102 +21750,1102 +21751,1102 +21761,34378 +21762,34378 +21782,31808 +21794,34304 +21795,34391 +21796,34399 +21800,34484 +21801,35017 +21802,34478 +21803,35222 +21804,36715 +21805,34482 +21806,34474 +21809,32008 +21810,34479 +21811,14005 +21812,18721 +21813,34655 +21814,34483 +21815,34508 +21816,34654 +21817,34654 +21818,34654 +21819,34654 +21820,34654 +21821,34654 +21822,34654 +21823,34654 +21829,34537 +21830,6405 +21831,23146 +21833,34536 +21836,31800 +21837,34468 +21838,34469 +21839,34485 +21856,34481 +21857,33940 +21888,29736 +21889,34466 +21890,34467 +21891,34471 +21920,34656 +21921,34656 +21923,22614 +21925,34656 +21926,34656 +21928,16452 +21930,15589 +21935,24211 +21936,15794 +21937,15788 +21938,5292 +21939,20892 +21946,34872 +21960,13082 +21962,12310 +21963,12310 +21964,12310 +21975,34538 +21979,34538 +21980,34538 +21981,34538 +21982,32326 +21983,34874 +21984,34868 +21985,30952 +21986,34874 +21987,7148 +21988,18716 +21989,13688 +21994,34610 +21995,34611 +21996,34612 +21997,34617 +21998,34613 +21999,34614 +22000,34615 +22001,34616 +22002,34699 +22003,34684 +22004,34685 +22005,34700 +22006,34686 +22007,34687 +22008,34688 +22009,34689 +22010,34646 +22011,34647 +22013,34649 +22014,34867 +22015,34650 +22016,34651 +22017,34652 +22020,7899 +22021,7899 +22022,7899 +22023,7899 +22024,7899 +22025,7899 +22026,7899 +22027,7899 +22028,7899 +22029,7899 +22030,7899 +22031,7899 +22032,7899 +22033,7899 +22034,7899 +22035,7899 +22036,7899 +22037,7899 +22038,7899 +22039,7899 +22040,7899 +22041,7899 +22042,7899 +22043,7899 +22045,9632 +22046,34870 +22047,34871 +22048,34869 +22049,34865 +22057,34866 +22058,34508 +22059,34508 +22060,34645 +22061,34648 +22062,34599 +22063,34601 +22064,34782 +22065,34602 +22066,34600 +22067,34598 +22068,34597 +22069,34596 +22070,34620 +22071,34621 +22072,34622 +22073,34623 +22074,34624 +22075,34625 +22076,34626 +22077,34627 +22078,34628 +22079,34629 +22080,34630 +22081,34631 +22082,34632 +22083,34633 +22084,34634 +22085,34635 +22086,34520 +22087,34521 +22088,34522 +22089,34519 +22090,34523 +22091,34524 +22092,34525 +22093,34526 +22094,34863 +22095,34691 +22096,34692 +22097,34693 +22098,34694 +22099,34695 +22100,34696 +22101,34697 +22102,34698 +22106,34637 +22107,34638 +22108,34641 +22109,34639 +22110,34640 +22111,34642 +22112,34643 +22113,34644 +22114,18050 +22115,34873 +22117,34754 +22119,34753 +22120,34752 +22121,34751 +22122,34755 +22123,34751 +22130,7045 +22131,34679 +22132,34677 +22133,34676 +22134,34682 +22135,34681 +22136,34677 +22137,20709 +22138,34509 +22139,34510 +22140,34736 +22141,34736 +22142,34736 +22143,34736 +22144,34736 +22145,34736 +22149,1399 +22150,1399 +22151,3665 +22152,2584 +22154,34538 +22155,34538 +22156,34538 +22157,34538 +22158,34538 +22159,34542 +22160,34542 +22161,34542 +22162,34542 +22163,34542 +22164,34538 +22165,34538 +22166,34538 +22167,34674 +22168,34674 +22169,34674 +22170,34542 +22171,34542 +22172,34542 +22173,18079 +22174,34748 +22175,6342 +22176,21203 +22177,7328 +22178,34542 +22191,34515 +22192,15713 +22193,15791 +22194,34516 +22195,36968 +22196,34518 +22197,36967 +22198,34533 +22199,34534 +22200,34535 +22201,18721 +22202,34543 +22203,20769 +22204,34549 +22205,34550 +22206,34553 +22207,34555 +22208,34556 +22209,1301 +22210,34557 +22211,34557 +22212,34558 +22213,34559 +22214,1301 +22215,34560 +22216,5287 +22217,5287 +22218,34561 +22219,1301 +22220,6270 +22221,1301 +22222,6270 +22223,34564 +22224,9731 +22225,35922 +22226,3233 +22227,34572 +22228,34573 +22229,35024 +22230,23081 +22231,34593 +22232,34577 +22233,12333 +22234,34579 +22235,34535 +22236,34581 +22237,34584 +22238,34582 +22239,34583 +22240,34585 +22241,34590 +22242,34594 +22243,1281 +22244,20913 +22245,34595 +22246,34780 +22247,34605 +22248,34796 +22249,34778 +22250,34797 +22251,34779 +22252,34798 +22253,31138 +22254,34636 +22255,9834 +22256,30774 +22257,31655 +22258,983 +22259,34653 +22260,34653 +22261,8928 +22262,34674 +22263,34674 +22264,34656 +22265,34656 +22266,6555 +22267,34690 +22268,23713 +22269,24013 +22270,34708 +22271,34710 +22272,34714 +22273,34715 +22274,34717 +22275,6762 +22276,34726 +22277,34734 +22278,34725 +22279,34727 +22280,34728 +22281,34732 +22282,34733 +22283,2588 +22284,34737 +22285,34738 +22286,34739 +22287,34740 +22288,11448 +22289,34741 +22290,34742 +22291,11449 +22292,11449 +22293,34745 +22294,34746 +22295,19595 +22296,6524 +22297,34747 +22298,1143 +22299,34749 +22300,34750 +22301,34799 +22302,34781 +22303,34788 +22304,34789 +22305,34791 +22306,34790 +22307,811 +22308,1102 +22309,15274 +22310,1102 +22311,34792 +22312,811 +22313,34793 +22314,34794 +22315,6798 +22316,34795 +22317,23742 +22318,34800 +22319,34802 +22320,2593 +22321,6006 +22322,5199 +22324,26733 +22325,14389 +22326,26001 +22327,9857 +22328,21961 +22329,34807 +22330,34808 +22331,24569 +22332,34810 +22333,2440 +22334,9837 +22335,34891 +22336,18790 +22337,34812 +22338,2480 +22339,31616 +22340,9852 +22341,34820 +22342,24354 +22343,33154 +22344,1588 +22345,34958 +22346,34822 +22347,22929 +22348,35010 +22349,35307 +22350,35347 +22351,35354 +22352,35337 +22353,35336 +22354,35338 +22355,35334 +22356,35340 +22357,35335 +22358,35339 +22359,35345 +22360,35344 +22361,35346 +22362,35348 +22363,35342 +22364,35343 +22365,35341 +22366,35353 +22367,35351 +22368,35356 +22369,35350 +22370,35349 +22371,35352 +22372,35355 +22373,35300 +22374,35298 +22375,35301 +22376,35299 +22377,34849 +22378,34850 +22379,34859 +22380,34860 +22381,2637 +22382,30952 +22383,36970 +22384,36969 +22385,34890 +22386,3486 +22387,13291 +22388,6270 +22389,6270 +22390,6270 +22391,34891 +22392,7798 +22393,1143 +22394,34894 +22395,34957 +22396,34956 +22397,34955 +22398,34954 +22399,34953 +22400,34961 +22401,34960 +22402,34959 +22403,9858 +22404,34896 +22405,34897 +22406,20384 +22407,34898 +22408,34899 +22409,34900 +22410,34901 +22411,34902 +22412,15014 +22416,35049 +22417,35051 +22418,35447 +22419,35177 +22420,35067 +22421,35050 +22422,35058 +22423,35044 +22424,35619 +22425,35618 +22426,35615 +22427,35616 +22428,36972 +22429,35617 +22430,35613 +22431,35614 +22432,34923 +22433,24022 +22434,34936 +22435,34925 +22436,35415 +22437,35413 +22438,35601 +22439,35611 +22440,35409 +22441,35411 +22442,35410 +22443,35416 +22444,34924 +22458,18289 +22464,35752 +22465,35754 +22466,37056 +22467,35751 +22468,35746 +22469,35748 +22470,35747 +22471,35753 +22472,9653 +22476,35054 +22477,35065 +22478,35132 +22479,35064 +22480,36351 +22481,35055 +22482,36349 +22483,35053 +22484,18021 +22485,20220 +22486,10365 +22488,35159 +22489,35161 +22490,35162 +22491,35160 +22492,35173 +22493,35167 +22494,35164 +22495,35158 +22496,35523 +22497,35522 +22498,36440 +22499,35326 +22500,35525 +22501,35521 +22502,35519 +22503,35677 +22504,35185 +22505,35184 +22506,35182 +22507,35187 +22508,35186 +22509,35183 +22510,35179 +22511,35180 +22512,36354 +22513,35154 +22514,35155 +22515,35149 +22516,35148 +22517,35145 +22518,35143 +22519,35144 +22520,31577 +22523,35274 +22524,35273 +22525,35014 +22526,13806 +22527,18514 +22528,22924 +22529,35015 +22568,634 +22584,7899 +22585,7899 +22586,7899 +22587,7899 +22588,7899 +22589,35632 +22593,30953 +22595,35025 +22596,35031 +22600,16065 +22601,16065 +22602,16065 +22603,16065 +22604,16065 +22605,16065 +22606,16065 +22607,16065 +22608,16065 +22609,16065 +22610,16065 +22611,16065 +22612,16065 +22613,16065 +22614,16065 +22615,16065 +22616,16065 +22617,16065 +22618,16065 +22619,16065 +22620,16065 +22621,16065 +22622,16065 +22623,16065 +22624,16065 +22625,16065 +22626,16065 +22630,35631 +22631,35634 +22632,35633 +22635,35045 +22636,35046 +22637,32745 +22638,35048 +22648,33211 +22649,33211 +22650,33211 +22651,35069 +22652,35302 +22654,35286 +22655,35283 +22656,35071 +22657,6543 +22658,35076 +22659,6543 +22660,35077 +22661,35290 +22662,35303 +22663,35287 +22664,36436 +22665,36435 +22666,36437 +22667,35090 +22668,35091 +22669,35276 +22670,35277 +22671,35275 +22672,35069 +22673,35093 +22676,35093 +22678,24730 +22679,21202 +22680,3666 +22681,24569 +22682,35465 +22683,1301 +22684,1301 +22685,1301 +22686,1301 +22687,1301 +22688,35094 +22689,35095 +22690,35096 +22691,35097 +22692,1301 +22694,1301 +22695,1301 +22696,1301 +22697,1301 +22698,1301 +22699,35278 +22700,35282 +22701,35289 +22702,36438 +22703,1301 +22704,1301 +22705,1301 +22707,31616 +22708,31616 +22709,35112 +22711,35114 +22712,35115 +22713,35116 +22714,35118 +22715,35119 +22716,35120 +22718,36630 +22719,1588 +22720,35125 +22721,24022 +22722,30661 +22723,3018 +22724,35129 +22725,9842 +22726,35130 +22727,33566 +22728,35133 +22729,1301 +22730,35138 +22731,35139 +22732,34303 +22733,35140 +22734,35141 +22736,35152 +22737,29948 +22738,35151 +22739,1103 +22740,35157 +22741,18962 +22742,35169 +22743,4511 +22744,19950 +22745,36971 +22746,1282 +22747,32927 +22748,35093 +22749,35157 +22750,18962 +22752,32927 +22753,35175 +22754,17403 +22756,35207 +22757,35206 +22758,35209 +22759,35211 +22760,35214 +22761,35213 +22762,35216 +22763,35217 +22764,35219 +22765,811 +22766,1301 +22767,1301 +22768,1301 +22769,1301 +22770,1301 +22771,1301 +22772,1301 +22773,1301 +22774,1301 +22780,18050 +22781,35224 +22798,35239 +22799,35240 +22800,35241 +22801,35242 +22802,35819 +22803,35244 +22804,35709 +22805,35247 +22806,35247 +22807,36371 +22808,35250 +22809,36518 +22810,35370 +22811,35870 +22812,35253 +22813,35255 +22814,35256 +22815,35371 +22816,35258 +22817,35259 +22818,35577 +22819,35573 +22820,35262 +22821,35263 +22843,31181 +22852,27263 +22855,31026 +22856,31035 +22857,31183 +22858,31050 +22859,31027 +22860,31097 +22862,31182 +22863,27265 +22864,31036 +22865,27256 +22867,27279 +22868,31051 +22869,31028 +22870,31098 +22872,27274 +22873,31052 +22874,31048 +22875,30367 +22876,31185 +22877,31037 +22878,27267 +22879,31039 +22880,31040 +22881,31032 +22882,31033 +22883,26144 +22884,27260 +22885,30351 +22886,31102 +22887,31186 +22890,1103 +22891,1103 +22892,7122 +22895,35639 +22897,1103 +22930,3033 +22932,3032 +22933,20661 +22935,19763 +22936,35310 +22937,35817 +22938,35312 +22939,35313 +22940,35324 +22941,35325 +22942,35642 +22943,35358 +22944,3029 +22945,13430 +22946,7695 +22947,35359 +22948,7629 +22949,18021 +22950,6006 +22954,35361 +22960,35366 +22961,35367 +22967,36434 +22968,35369 +22970,3033 +22972,13430 +22973,3029 +22974,7695 +22975,7629 +22977,3032 +22981,35373 +22983,36424 +22988,35710 +22994,35383 +22999,35396 +23000,35398 +23001,35400 +23002,35406 +23004,34953 +23005,34956 +23006,34959 +23007,35405 +23008,811 +23009,35262 +23010,811 +23011,811 +23012,811 +23013,811 +23014,36376 +23015,35407 +23016,811 +23017,35408 +23018,35313 +23019,35419 +23020,35421 +23021,35422 +23022,22611 +23023,35358 +23024,16065 +23025,35423 +23027,35429 +23028,31616 +23029,35813 +23030,35430 +23031,35431 +23032,35432 +23033,36433 +23034,35434 +23035,36432 +23036,35437 +23037,35438 +23038,35423 +23039,35259 +23040,35439 +23041,35442 +23042,35439 +23043,35576 +23044,35246 +23045,35444 +23046,35445 +23047,35429 +23048,35816 +23049,35792 +23050,35446 +23053,35359 +23054,36378 +23055,1013 +23056,35574 +23057,35358 +23058,35437 +23059,35472 +23060,35472 +23061,35472 +23062,35472 +23063,35472 +23064,35472 +23065,35472 +23066,35472 +23067,35472 +23068,35508 +23069,36370 +23070,35514 +23071,36478 +23072,36279 +23073,6720 +23075,35654 +23078,35550 +23081,36479 +23082,35542 +23083,15788 +23084,35545 +23085,35544 +23086,35546 +23087,36077 +23088,35554 +23089,36480 +23090,35555 +23091,35556 +23092,35557 +23093,36481 +23122,24674 +23123,35562 +23124,35563 +23125,18172 +23126,35564 +23127,35565 +23128,35569 +23129,30833 +23132,35571 +23139,2456 +23156,28647 +23160,26736 +23161,21845 +23162,11448 +23163,35583 +23164,18114 +23168,35589 +23169,9853 +23170,18339 +23171,28804 +23172,6410 +23173,28648 +23175,26732 +23176,35592 +23177,35593 +23178,22994 +23179,30562 +23180,35595 +23181,35596 +23182,30562 +23183,35596 +23184,35595 +23192,15817 +23193,24011 +23194,35274 +23195,35620 +23196,35621 +23197,34954 +23198,34955 +23199,34957 +23200,34956 +23201,34960 +23203,34961 +23206,35649 +23211,35657 +23215,3568 +23219,30535 +23220,36369 +23221,35643 +23224,6404 +23226,35713 +23227,811 +23237,35423 +23238,35719 +23242,35818 +23243,31049 +23244,30071 +23245,35738 +23246,35744 +23247,35745 +23250,36448 +23251,31184 +23252,31047 +23253,28106 +23254,28935 +23255,27258 +23256,30381 +23257,30358 +23258,31038 +23259,30072 +23260,30382 +23261,31030 +23262,31031 +23263,31099 +23264,31100 +23271,12333 +23272,30315 +23273,31084 +23274,30321 +23275,31082 +23276,30316 +23277,31085 +23278,36006 +23279,35798 +23280,36003 +23281,36004 +23282,31060 +23283,36007 +23284,31075 +23285,31068 +23286,35808 +23287,26752 +23288,36010 +23289,36008 +23290,36013 +23291,31063 +23292,35799 +23293,35800 +23294,35805 +23295,27235 +23296,30385 +23297,36017 +23298,36015 +23299,36014 +23300,31083 +23301,35809 +23302,36018 +23303,36021 +23304,36022 +23305,36024 +23306,35801 +23307,35802 +23308,35806 +23309,35807 +23310,36040 +23311,36027 +23312,36669 +23313,36044 +23314,35810 +23315,35811 +23316,36042 +23317,36038 +23318,36041 +23319,27231 +23320,33585 +23323,36782 +23324,35935 +23325,35830 +23326,35831 +23327,6399 +23328,35839 +23356,35878 +23360,3486 +23369,35899 +23379,7025 +23418,20535 +23435,6342 +23451,36045 +23452,36265 +23453,36266 +23454,36064 +23455,36065 +23456,36066 +23464,36078 +23465,36079 +23466,36080 +23467,36081 +23468,36267 +23469,36268 +23545,36276 +23547,36277 +23548,36275 +23549,36274 +23557,34484 +23558,36290 +23567,27454 +23570,36338 +23577,36377 +23578,21672 +23579,24152 +23582,36381 +23583,36382 +23656,34744 +23663,34203 +23664,36425 +23665,36426 +23666,36430 +23667,36429 +23668,22985 +23683,26732 +23684,32426 +23689,8117 +23690,12547 +23696,15788 +23698,24211 +23699,36460 +23700,31256 +23701,31257 +23705,37060 +23709,37061 +23710,36469 +23712,36470 +23713,18048 +23714,34282 +23715,18114 +23716,36471 +23718,2638 +23719,16836 +23720,36474 +23721,36475 +23722,20894 +23725,7899 +23727,7899 +23728,7899 +23743,35247 +23794,24211 +23795,17896 +23796,24156 +24071,36741 +24101,12547 +24102,36765 +24222,30724 +24231,6371 +24232,10301 +24281,18072 +24282,1588 +24283,7397 +24358,31664 \ No newline at end of file diff --git a/HermesProxy/CSV/ItemIdToDisplayId2.csv b/HermesProxy/CSV/ItemIdToDisplayId2.csv new file mode 100644 index 00000000..4d4950f2 --- /dev/null +++ b/HermesProxy/CSV/ItemIdToDisplayId2.csv @@ -0,0 +1,30397 @@ +Entry,DisplayId +17,7016 +25,1542 +35,472 +36,5194 +37,14029 +38,9891 +39,9892 +40,10141 +41,4553 +42,4562 +43,9938 +44,9937 +45,3265 +46,4528 +47,9915 +48,9913 +49,9906 +50,4535 +51,9946 +52,9945 +53,9944 +54,4541 +55,9929 +56,12647 +57,12645 +58,4499 +59,3261 +60,16891 +61,16953 +77,2645 +79,16847 +80,16854 +85,16883 +86,4525 +87,261 +88,374 +89,7848 +90,4519 +91,368 +92,249 +93,369 +94,4522 +95,242 +97,12662 +98,4524 +99,257 +100,372 +101,373 +102,4523 +103,5901 +104,370 +105,371 +113,365 +114,245 +115,4517 +117,2473 +118,15710 +119,5702 +120,10006 +121,10008 +122,4538 +123,383 +124,3268 +125,3269 +126,4543 +127,9996 +128,396 +129,9977 +130,4572 +131,4542 +132,295 +133,7912 +134,387 +135,386 +136,311 +137,4540 +138,9346 +139,9988 +140,9992 +141,4507 +143,2080 +146,4544 +147,9975 +148,9976 +149,4569 +150,392 +151,393 +152,4570 +153,10050 +154,10058 +155,4571 +156,394 +157,395 +159,18084 +182,7038 +184,362 +192,5279 +193,16579 +194,16580 +195,16582 +200,16777 +201,16778 +202,16780 +203,16779 +209,17140 +210,14444 +236,14278 +237,14476 +238,14474 +239,14475 +285,16101 +286,10400 +287,12745 +414,21904 +422,6352 +527,7090 +537,6629 +555,11206 +556,6625 +647,20190 +710,16936 +711,16581 +714,14445 +718,6986 +719,16970 +720,2368 +723,7369 +724,6385 +725,6671 +727,26577 +728,1102 +729,7407 +730,7394 +731,8802 +732,7395 +733,6428 +734,7093 +735,7093 +737,926 +738,1297 +739,11994 +740,11998 +741,7391 +742,928 +743,929 +744,18059 +745,1102 +746,3865 +748,1102 +750,1116 +751,1515 +752,1272 +753,20094 +754,20218 +755,6677 +756,6264 +759,942 +761,1208 +763,17007 +765,18088 +766,19621 +767,20443 +768,5012 +769,6348 +770,6630 +771,1225 +772,7066 +773,7137 +774,6663 +776,6452 +777,959 +778,6259 +779,7714 +780,6628 +781,19644 +782,1329 +783,6687 +784,1438 +785,7341 +786,7391 +787,24697 +788,5750 +789,19699 +790,19401 +791,20334 +792,16855 +793,14449 +794,14450 +795,14154 +796,22973 +797,17068 +798,22972 +799,2106 +804,2588 +805,2586 +806,2585 +807,7356 +808,7353 +809,20033 +810,19726 +811,19137 +812,20257 +813,6618 +814,18084 +816,6472 +818,6613 +820,6470 +821,17102 +823,7014 +826,19271 +827,3498 +828,2584 +829,1272 +832,6847 +833,22978 +835,1007 +836,1007 +837,14466 +838,14468 +839,14467 +840,16821 +841,1270 +842,7015 +843,14470 +844,2101 +845,9640 +846,14472 +847,1019 +848,697 +849,6869 +850,6871 +851,22077 +852,8287 +853,22102 +854,22147 +855,1281 +856,1025 +857,4056 +858,15711 +859,9880 +860,3443 +862,18397 +863,19213 +864,26579 +865,5212 +866,20357 +867,17180 +868,19713 +869,5163 +870,33458 +871,19235 +872,19242 +873,20298 +875,6423 +876,1680 +877,7099 +878,9200 +880,20382 +883,7088 +884,6368 +885,8494 +886,20093 +887,6680 +888,17182 +889,3022 +890,20386 +892,16950 +893,959 +894,6642 +895,7103 +896,959 +897,17011 +898,959 +899,6459 +900,7014 +901,7014 +902,7014 +903,7014 +905,1057 +906,1058 +907,6480 +908,6545 +909,6557 +910,3024 +911,28628 +913,20170 +914,2829 +915,1272 +916,7589 +917,1080 +918,1283 +920,19703 +921,7588 +922,22097 +923,22080 +924,22131 +925,4351 +926,22108 +927,22106 +928,22151 +929,15712 +930,1283 +931,1183 +932,6430 +933,1282 +934,19405 +935,8274 +936,5215 +937,20329 +938,7601 +939,7588 +940,16676 +941,6513 +942,9835 +943,20256 +944,20253 +945,859 +948,859 +951,1093 +954,3331 +955,2616 +956,7084 +957,7286 +958,7084 +960,7084 +961,6387 +962,6385 +964,9744 +965,981 +966,1103 +967,1103 +968,1103 +973,1103 +974,1103 +975,1103 +976,1103 +980,1103 +981,1399 +983,4878 +985,1103 +986,1103 +989,1103 +992,1103 +994,1103 +996,3453 +997,859 +1002,1103 +1004,1103 +1006,224 +1008,1550 +1009,8583 +1010,20440 +1011,19273 +1013,1236 +1014,1183 +1015,6348 +1016,6619 +1017,1116 +1018,1121 +1019,1272 +1020,13552 +1021,13551 +1022,15299 +1023,15297 +1024,15304 +1025,15302 +1026,15305 +1027,15294 +1028,13275 +1029,5563 +1030,5563 +1031,5563 +1032,5563 +1033,5563 +1034,5563 +1035,5563 +1036,5563 +1037,5563 +1038,5563 +1041,16208 +1042,7015 +1043,7015 +1044,7015 +1046,6596 +1047,6595 +1048,5563 +1049,5563 +1052,5563 +1053,5563 +1057,5563 +1058,5563 +1061,5563 +1063,5563 +1072,18080 +1074,6619 +1075,7236 +1076,6012 +1077,9836 +1078,811 +1080,25475 +1081,7345 +1082,6406 +1083,7133 +1084,1143 +1085,1143 +1086,1143 +1087,1143 +1088,1143 +1089,1143 +1090,1143 +1091,1143 +1092,1143 +1093,1143 +1095,1143 +1096,1143 +1099,1143 +1100,1143 +1101,1143 +1102,1143 +1105,1143 +1108,1143 +1109,1143 +1111,1143 +1112,1143 +1113,6413 +1114,6343 +1115,7097 +1116,6011 +1117,7453 +1119,18077 +1121,703 +1122,6494 +1123,6494 +1124,6494 +1125,6494 +1127,1816 +1128,1150 +1129,7129 +1130,1288 +1131,9557 +1132,16208 +1133,16207 +1134,16207 +1136,1155 +1138,1155 +1139,1155 +1141,1155 +1144,1155 +1146,1155 +1149,1155 +1150,1155 +1151,1155 +1154,6833 +1155,20327 +1156,9839 +1157,5066 +1158,19643 +1159,4994 +1161,1544 +1162,13219 +1163,13218 +1164,49933 +1165,6422 +1166,2208 +1167,18506 +1168,30993 +1169,18816 +1170,8647 +1171,12707 +1172,12313 +1173,6777 +1174,6956 +1175,6659 +1176,6412 +1177,6400 +1178,6336 +1179,18090 +1180,1093 +1181,2616 +1182,6852 +1183,16927 +1184,6510 +1186,6503 +1187,6415 +1189,963 +1190,15120 +1191,1816 +1192,13277 +1193,27782 +1194,22093 +1195,7495 +1196,22114 +1197,5226 +1198,22095 +1199,6014 +1200,18663 +1201,2161 +1202,2329 +1203,2594 +1204,1644 +1205,18078 +1206,7393 +1207,5223 +1208,2616 +1210,7401 +1211,14260 +1212,2637 +1213,3613 +1214,19625 +1215,16942 +1216,9559 +1217,7280 +1218,5527 +1219,20122 +1220,19232 +1221,568 +1222,6002 +1224,1246 +1228,1246 +1229,1246 +1231,1246 +1232,1246 +1238,1246 +1239,1246 +1243,1246 +1244,1246 +1245,1246 +1246,1246 +1250,1246 +1251,11907 +1252,2616 +1253,6707 +1254,24380 +1255,1262 +1256,7078 +1257,1656 +1258,6511 +1259,30392 +1260,1310 +1261,6009 +1262,7923 +1263,22215 +1264,5530 +1265,20156 +1266,4909 +1267,6359 +1268,2357 +1269,6367 +1270,23113 +1272,3396 +1273,12723 +1274,6661 +1275,1019 +1276,2210 +1279,13255 +1280,15298 +1281,3337 +1282,15324 +1283,811 +1284,7914 +1287,6447 +1288,4826 +1292,8466 +1293,3034 +1294,3035 +1296,5195 +1297,19035 +1298,6305 +1299,16717 +1300,20391 +1302,17174 +1303,6871 +1304,16818 +1306,11387 +1307,811 +1309,12334 +1310,16971 +1311,8513 +1312,8576 +1313,6458 +1314,17179 +1315,6524 +1317,20377 +1318,19290 +1319,14437 +1321,6335 +1322,6373 +1323,1301 +1324,7196 +1325,6524 +1326,2661 +1327,3093 +1328,1317 +1332,1317 +1334,1317 +1335,1317 +1339,1317 +1341,1317 +1349,7918 +1350,6358 +1351,16897 +1352,7013 +1353,3031 +1354,8776 +1355,23014 +1356,924 +1357,1322 +1358,7593 +1359,6751 +1360,7000 +1361,7594 +1362,7595 +1363,13223 +1364,14339 +1366,14338 +1367,14354 +1368,17184 +1369,14335 +1370,14336 +1371,5495 +1372,23054 +1374,16659 +1376,23090 +1377,16657 +1378,16656 +1379,5494 +1380,12426 +1381,3023 +1382,19636 +1383,8495 +1384,1546 +1385,8593 +1386,19247 +1387,20087 +1388,20450 +1389,8575 +1391,20410 +1392,3642 +1394,5203 +1395,9924 +1396,3260 +1397,3587 +1398,1357 +1399,6395 +1400,6418 +1401,18088 +1402,6334 +1403,6499 +1404,6499 +1405,5540 +1406,5638 +1407,3032 +1408,3033 +1409,3032 +1410,3032 +1411,20442 +1412,20074 +1413,1547 +1414,19525 +1415,19613 +1416,8495 +1417,8501 +1418,14344 +1419,14353 +1420,4471 +1421,23083 +1422,14345 +1423,14346 +1424,7836 +1425,14190 +1427,16798 +1429,23130 +1430,16797 +1431,16796 +1432,2539 +1433,16795 +1434,6383 +1435,2960 +1436,17144 +1438,25943 +1440,8570 +1443,6522 +1444,6504 +1445,10167 +1446,6841 +1447,14438 +1448,6842 +1449,9823 +1450,1026 +1451,1249 +1453,9825 +1454,8457 +1455,22214 +1457,19683 +1458,8601 +1459,19136 +1460,20109 +1461,19375 +1462,9846 +1464,6627 +1465,20594 +1467,1361 +1468,6697 +1469,20154 +1470,1025 +1472,6508 +1473,20402 +1475,6693 +1476,6619 +1477,3331 +1478,1093 +1479,16710 +1480,9381 +1481,25595 +1482,20089 +1483,9117 +1484,9122 +1485,7464 +1486,9889 +1487,6344 +1488,12960 +1489,8676 +1490,6502 +1491,9836 +1492,1301 +1493,5165 +1495,16553 +1497,23094 +1498,14348 +1499,16552 +1500,37388 +1501,16551 +1502,16947 +1503,14846 +1504,17024 +1505,23076 +1506,17077 +1507,17156 +1508,2563 +1509,18466 +1510,19775 +1511,20173 +1512,19226 +1513,20092 +1514,19533 +1515,20421 +1516,8498 +1518,9825 +1519,1438 +1520,1656 +1521,19306 +1522,22239 +1523,5534 +1524,959 +1527,1442 +1528,1443 +1529,1262 +1532,7104 +1533,6358 +1534,1155 +1535,1787 +1536,1155 +1537,1183 +1539,20395 +1544,6498 +1545,2539 +1547,21551 +1554,1103 +1557,18456 +1559,1103 +1560,16856 +1561,12671 +1566,20078 +1567,1103 +1568,1103 +1571,1103 +1574,1103 +1588,5563 +1589,5563 +1591,5563 +1596,18096 +1597,5563 +1598,1464 +1599,1301 +1602,8489 +1603,5563 +1604,20188 +1607,20272 +1608,19743 +1612,6368 +1613,28470 +1619,5563 +1622,6501 +1623,3568 +1624,15340 +1625,26586 +1630,6552 +1637,1102 +1638,6623 +1639,5128 +1640,8526 +1641,1143 +1645,18060 +1648,1143 +1649,1483 +1651,1143 +1652,12642 +1654,7356 +1655,1143 +1656,1102 +1657,1143 +1658,1143 +1659,1795 +1663,1322 +1664,18289 +1672,7095 +1676,1143 +1677,8678 +1678,11269 +1679,5137 +1680,19304 +1681,1246 +1684,13256 +1685,1285 +1686,18096 +1687,1496 +1688,18092 +1689,7354 +1690,1007 +1691,6360 +1692,959 +1693,6655 +1694,6655 +1695,6655 +1696,1498 +1697,6630 +1698,1498 +1699,6665 +1700,7264 +1701,1498 +1702,6349 +1703,6349 +1704,1504 +1705,7380 +1706,6614 +1707,21905 +1708,18114 +1710,15713 +1711,1093 +1712,2616 +1713,23949 +1714,9858 +1715,8683 +1716,16667 +1717,12960 +1718,17137 +1719,7429 +1720,21460 +1721,8581 +1722,15467 +1724,2592 +1725,2592 +1726,20749 +1727,5166 +1728,19997 +1729,2588 +1730,6902 +1731,6903 +1732,6904 +1733,15272 +1734,6905 +1735,687 +1736,6906 +1737,977 +1738,6902 +1739,6903 +1740,6904 +1741,15065 +1742,6905 +1743,687 +1744,6914 +1745,977 +1746,6902 +1747,6903 +1748,6904 +1749,15074 +1750,6905 +1751,687 +1752,6914 +1753,977 +1754,6902 +1755,6903 +1756,6904 +1757,15181 +1758,6905 +1759,687 +1760,6914 +1761,977 +1764,7578 +1766,23095 +1767,14065 +1768,14064 +1769,16786 +1770,14378 +1772,3757 +1774,23093 +1775,14370 +1776,12930 +1777,14371 +1778,14377 +1780,16820 +1782,23102 +1783,14373 +1784,14374 +1785,14121 +1786,14376 +1787,14360 +1788,16990 +1789,3653 +1790,23050 +1791,972 +1792,6731 +1793,14361 +1794,14272 +1795,16935 +1796,16992 +1797,17015 +1798,23058 +1799,17066 +1800,16967 +1801,15002 +1802,16895 +1803,16945 +1804,16998 +1805,17022 +1806,23072 +1807,17072 +1808,16977 +1809,14205 +1810,14418 +1811,20037 +1812,19245 +1813,20413 +1814,19534 +1815,5217 +1816,8495 +1817,20164 +1818,20183 +1819,14039 +1820,19535 +1821,5151 +1822,20385 +1823,6794 +1824,19292 +1825,19784 +1826,8587 +1827,8482 +1828,19369 +1829,15591 +1830,4129 +1831,20361 +1832,16845 +1835,14443 +1836,14249 +1839,17126 +1840,17170 +1843,14469 +1844,14471 +1845,6864 +1846,13617 +1849,16914 +1850,14282 +1851,6340 +1852,6985 +1853,10410 +1854,6497 +1875,8604 +1877,1317 +1878,1317 +1880,1317 +1882,1317 +1886,1317 +1893,19234 +1894,3029 +1895,7488 +1896,7487 +1897,7485 +1899,7483 +1900,7492 +1901,7440 +1902,7441 +1903,7439 +1904,7429 +1905,7428 +1906,12236 +1907,10654 +1908,1600 +1909,7426 +1910,7493 +1911,7494 +1912,6509 +1913,5009 +1914,6505 +1915,1183 +1917,20435 +1918,6706 +1922,1283 +1923,1625 +1924,2618 +1925,20114 +1926,5218 +1927,19276 +1928,20415 +1929,16848 +1930,23067 +1931,1645 +1933,20418 +1934,6774 +1935,20471 +1936,20399 +1937,5040 +1938,8565 +1939,18084 +1940,18084 +1941,8383 +1942,18080 +1943,697 +1944,17062 +1945,17189 +1946,20919 +1948,1661 +1950,7352 +1951,8279 +1955,6907 +1956,7236 +1957,1684 +1958,1759 +1959,14038 +1960,6832 +1961,1685 +1962,6565 +1963,7350 +1965,3846 +1968,1695 +1969,7001 +1970,1805 +1971,7128 +1972,924 +1973,6506 +1974,16901 +1975,20179 +1976,8590 +1977,1244 +1978,12813 +1979,18793 +1980,9840 +1981,8668 +1982,20191 +1983,7490 +1984,1705 +1985,1706 +1986,20638 +1987,7155 +1988,25892 +1990,5533 +1991,18269 +1992,21612 +1993,14436 +1994,19129 +1995,1496 +1996,9840 +1997,16670 +1998,20356 +1999,1330 +2000,20251 +2002,3337 +2003,1244 +2004,7138 +2005,7270 +2006,7270 +2007,7270 +2008,7270 +2011,20120 +2012,6507 +2013,20373 +2014,5176 +2015,19255 +2016,1727 +2017,6738 +2018,20088 +2020,20492 +2021,18650 +2023,7481 +2024,22096 +2025,22115 +2026,8593 +2027,22079 +2028,22119 +2029,19281 +2030,22146 +2032,16887 +2033,10711 +2034,12699 +2035,5161 +2036,17054 +2037,11447 +2038,13248 +2039,6012 +2040,18399 +2041,8703 +2042,20379 +2043,6011 +2044,19220 +2045,13537 +2046,22226 +2047,8473 +2048,19770 +2050,7355 +2051,1755 +2052,1755 +2053,1757 +2054,19299 +2055,8579 +2056,1758 +2057,20175 +2058,19611 +2059,22991 +2060,1762 +2064,19650 +2065,20212 +2066,19203 +2067,20431 +2069,16868 +2070,6353 +2071,18084 +2072,20363 +2073,19134 +2074,20168 +2075,5218 +2077,28578 +2078,20157 +2079,19637 +2080,19400 +2081,6537 +2082,2588 +2084,20152 +2085,1116 +2087,17095 +2088,6455 +2089,20407 +2091,6396 +2092,6442 +2098,28718 +2099,28636 +2100,8258 +2101,21328 +2102,1816 +2103,26499 +2104,5999 +2105,10005 +2106,1818 +2107,845 +2108,8662 +2109,977 +2110,12674 +2112,14279 +2113,924 +2114,16654 +2115,3237 +2117,16576 +2119,16969 +2120,8969 +2121,16575 +2122,14425 +2123,14426 +2124,14427 +2125,17176 +2126,14429 +2127,14430 +2128,2380 +2129,18662 +2130,22118 +2131,22075 +2132,22149 +2133,18480 +2134,22101 +2136,18085 +2137,6437 +2138,6460 +2139,22135 +2140,6440 +2141,8655 +2142,17117 +2143,2355 +2144,3602 +2145,14480 +2146,14481 +2147,7419 +2148,6926 +2149,6972 +2150,6973 +2151,6975 +2152,2989 +2153,8683 +2154,1143 +2156,16858 +2158,14478 +2159,14479 +2160,14477 +2161,1143 +2162,963 +2163,20291 +2164,20312 +2165,23054 +2166,685 +2167,17178 +2168,16713 +2169,20347 +2170,3127 +2172,9895 +2173,28227 +2175,8534 +2176,1926 +2177,1927 +2178,7482 +2179,7420 +2180,7486 +2181,7489 +2182,7438 +2183,7427 +2184,7434 +2186,4545 +2187,3019 +2188,3020 +2189,1938 +2191,7087 +2194,8567 +2195,6432 +2196,7462 +2197,7443 +2198,7465 +2199,7474 +2200,7466 +2201,7473 +2202,7463 +2203,8506 +2204,20038 +2205,20153 +2206,6445 +2207,22137 +2208,22142 +2209,22139 +2210,2552 +2211,18656 +2212,2553 +2213,18673 +2214,17884 +2215,18670 +2216,18486 +2217,18665 +2218,20451 +2219,18485 +2220,18729 +2221,18484 +2222,2559 +2223,1102 +2224,6432 +2225,20470 +2226,20372 +2227,22219 +2230,6930 +2231,16671 +2232,4272 +2233,18489 +2234,8677 +2235,20598 +2236,20345 +2237,2628 +2238,16842 +2239,2854 +2240,23061 +2241,15248 +2243,19729 +2244,8090 +2245,15506 +2246,9841 +2248,1184 +2249,2632 +2250,7113 +2251,7368 +2252,7167 +2254,19612 +2255,2057 +2256,5221 +2257,20429 +2258,4260 +2259,19623 +2260,8470 +2262,9840 +2263,5170 +2264,12830 +2265,19297 +2266,20427 +2267,5208 +2268,20213 +2271,20346 +2273,16114 +2274,6883 +2275,13279 +2276,16996 +2277,3173 +2278,17190 +2280,20370 +2281,19297 +2282,20211 +2283,16831 +2284,23132 +2287,2474 +2288,18084 +2289,3331 +2290,2616 +2291,19305 +2292,19037 +2295,1225 +2296,10377 +2299,19389 +2300,9502 +2301,2083 +2302,4713 +2303,9500 +2304,7450 +2305,18127 +2306,3709 +2307,17163 +2308,23028 +2309,13864 +2310,23025 +2311,17233 +2312,5406 +2313,7451 +2314,9531 +2315,9530 +2316,23021 +2317,17214 +2318,7382 +2319,7388 +2320,4752 +2321,7363 +2322,6644 +2323,6644 +2324,18114 +2325,15732 +2326,16905 +2327,17172 +2361,8690 +2362,18730 +2363,6708 +2364,14459 +2366,14458 +2367,14162 +2369,14457 +2370,16871 +2371,17114 +2372,18478 +2373,17158 +2374,17002 +2375,17051 +2376,18672 +2377,18509 +2378,7251 +2379,2215 +2380,6902 +2381,2217 +2382,7269 +2383,6903 +2384,6904 +2385,6905 +2386,2222 +2387,6902 +2388,2228 +2389,6952 +2390,6953 +2391,6954 +2392,2265 +2393,6902 +2394,2217 +2395,6903 +2396,6904 +2397,6955 +2398,2269 +2399,6902 +2400,2270 +2401,6952 +2402,6953 +2403,6954 +2404,1102 +2405,1102 +2406,15274 +2407,1102 +2408,15274 +2409,15274 +2410,12312 +2411,13108 +2412,1007 +2413,13108 +2414,13108 +2415,13108 +2417,8634 +2418,2969 +2419,6819 +2420,6820 +2421,6821 +2422,6822 +2423,8642 +2424,6853 +2425,2976 +2426,6854 +2427,6855 +2428,6856 +2429,14484 +2431,14483 +2432,1861 +2434,14482 +2435,16769 +2437,16770 +2438,16772 +2440,16771 +2441,18468 +2442,2324 +2443,18477 +2444,18516 +2445,18749 +2446,18733 +2447,7396 +2448,18732 +2449,1464 +2450,7406 +2451,18772 +2452,7241 +2453,7337 +2454,15733 +2455,15715 +2456,2345 +2457,15738 +2458,15792 +2459,15742 +2460,6373 +2461,2357 +2462,1805 +2463,16900 +2464,11558 +2465,17031 +2466,6368 +2467,17165 +2468,17020 +2469,17027 +2470,14496 +2471,14492 +2472,14495 +2473,14295 +2474,14493 +2475,2686 +2476,2376 +2477,23527 +2478,1805 +2479,8512 +2480,19601 +2481,16155 +2482,8488 +2483,19243 +2484,6442 +2485,5219 +2486,19627 +2487,20448 +2488,22078 +2489,22094 +2490,8488 +2491,22112 +2492,12992 +2493,22121 +2494,22136 +2495,7310 +2496,2398 +2497,2399 +2498,19299 +2499,8511 +2500,19626 +2501,19614 +2502,6444 +2503,20436 +2504,8106 +2505,20723 +2506,20722 +2507,20714 +2508,6606 +2509,6607 +2510,6594 +2511,20728 +2512,5996 +2513,5998 +2514,5996 +2515,5996 +2516,5998 +2517,5996 +2518,5998 +2519,5998 +2520,22085 +2521,22084 +2522,8485 +2523,22216 +2524,8803 +2525,22133 +2526,22141 +2527,22150 +2528,22081 +2529,22098 +2530,22105 +2531,22111 +2532,22120 +2533,22134 +2534,22140 +2535,20389 +2536,6630 +2543,704 +2545,3043 +2546,6981 +2547,6905 +2548,7922 +2549,20330 +2550,8106 +2551,10671 +2552,6593 +2553,15274 +2554,6270 +2555,15274 +2556,1301 +2557,2466 +2558,7442 +2559,2469 +2560,1143 +2561,1310 +2562,6488 +2563,6396 +2564,4485 +2565,6555 +2566,16666 +2567,20590 +2568,17125 +2569,17120 +2570,23122 +2571,2486 +2572,12687 +2573,2489 +2574,2490 +2575,10840 +2576,10834 +2577,10845 +2578,10891 +2579,12864 +2580,23133 +2581,11908 +2582,12394 +2583,13524 +2584,23144 +2585,12669 +2586,22033 +2587,10892 +2588,13253 +2589,7383 +2590,18597 +2591,1329 +2592,7418 +2593,6373 +2594,18115 +2595,7921 +2596,18085 +2598,15274 +2599,1102 +2600,1102 +2601,15274 +2602,1102 +2604,7349 +2605,6373 +2606,2515 +2607,2516 +2608,6703 +2609,2637 +2610,6396 +2611,18107 +2612,12704 +2613,12661 +2614,16614 +2615,12655 +2616,12701 +2617,12654 +2618,12702 +2619,3029 +2620,15284 +2621,15295 +2622,13244 +2623,15336 +2624,15547 +2625,12931 +2628,3048 +2629,6710 +2632,20473 +2633,2533 +2634,7283 +2635,6902 +2636,2551 +2637,924 +2638,924 +2639,2571 +2640,7166 +2642,6903 +2643,6904 +2644,15082 +2645,6905 +2646,2217 +2647,6906 +2648,2215 +2649,6902 +2650,6903 +2651,6904 +2652,15164 +2653,6905 +2654,2217 +2655,6914 +2656,2215 +2657,981 +2658,18103 +2659,18105 +2660,18104 +2661,18106 +2662,21712 +2663,1816 +2664,20441 +2665,6396 +2666,7923 +2667,2599 +2668,6630 +2669,6651 +2671,6655 +2672,6680 +2673,25467 +2674,22193 +2675,8743 +2676,7241 +2677,2473 +2678,1443 +2679,2474 +2680,25468 +2681,2474 +2682,2627 +2683,6345 +2684,25468 +2685,2473 +2686,18117 +2687,21327 +2688,6417 +2690,28201 +2691,6903 +2692,1443 +2693,1443 +2694,28250 +2695,7432 +2696,7922 +2697,1102 +2698,1102 +2699,1102 +2700,1102 +2701,1102 +2702,7158 +2703,24596 +2704,24594 +2705,24595 +2706,7454 +2707,7456 +2708,7448 +2709,7455 +2710,7447 +2711,7433 +2712,7916 +2713,28952 +2714,7461 +2715,7460 +2716,7446 +2717,7445 +2718,7457 +2719,6710 +2720,1102 +2721,16826 +2722,1102 +2723,18079 +2724,1323 +2725,7629 +2728,7629 +2730,7629 +2732,7629 +2734,7629 +2735,7629 +2738,7629 +2740,7629 +2742,7629 +2744,7629 +2745,7629 +2748,7629 +2749,7629 +2750,7629 +2751,7629 +2754,20117 +2755,2757 +2756,7596 +2757,7596 +2758,7596 +2759,7596 +2760,6430 +2761,2760 +2762,2760 +2763,6437 +2764,6444 +2765,20383 +2766,6445 +2767,1695 +2770,4681 +2771,4690 +2772,4689 +2773,2786 +2774,20654 +2775,18107 +2776,41755 +2777,2787 +2778,20654 +2779,2788 +2780,20712 +2781,20979 +2782,20671 +2783,20717 +2784,2793 +2785,20668 +2786,20718 +2787,20534 +2788,18115 +2789,6707 +2790,6707 +2791,6707 +2792,6707 +2793,1143 +2794,1143 +2795,1143 +2797,3422 +2798,4689 +2799,7129 +2800,21114 +2801,5193 +2802,6484 +2803,6514 +2804,6502 +2805,23084 +2806,1244 +2807,9118 +2808,3947 +2809,7476 +2810,7479 +2811,7308 +2812,6448 +2813,7478 +2814,3151 +2815,8465 +2816,19669 +2817,17103 +2818,1963 +2819,6443 +2820,6540 +2821,19633 +2822,20091 +2823,19236 +2824,20554 +2825,20552 +2826,6497 +2827,7431 +2828,7105 +2829,2853 +2830,2853 +2831,2853 +2832,811 +2833,7139 +2834,3152 +2835,4714 +2836,4715 +2837,924 +2838,4716 +2839,924 +2840,7391 +2841,7390 +2842,7355 +2843,18074 +2844,2861 +2845,14035 +2846,3225 +2847,4805 +2848,5198 +2849,19929 +2850,3855 +2851,23529 +2852,13095 +2853,6966 +2854,25851 +2855,7207 +2856,2868 +2857,25852 +2858,2873 +2859,2874 +2862,24673 +2863,24674 +2864,25848 +2865,4333 +2866,23530 +2867,23532 +2868,23533 +2869,9403 +2870,23540 +2871,24675 +2872,2885 +2874,3020 +2875,11990 +2876,6660 +2877,20151 +2878,8469 +2879,13109 +2880,7417 +2881,15274 +2882,15274 +2883,15274 +2884,26367 +2885,3048 +2886,2904 +2887,6687 +2888,21327 +2889,811 +2890,6684 +2891,3021 +2892,13707 +2893,13707 +2894,18117 +2895,2947 +2896,2947 +2898,2967 +2899,16949 +2900,18528 +2901,6568 +2902,23099 +2903,8107 +2904,20732 +2905,23032 +2906,2922 +2907,19227 +2908,20605 +2909,2925 +2910,6931 +2911,9898 +2912,20320 +2913,16828 +2915,19664 +2916,2934 +2917,9850 +2918,13274 +2919,6526 +2920,6556 +2921,6485 +2922,6564 +2923,6550 +2924,6350 +2925,3124 +2926,7038 +2927,2947 +2928,6371 +2929,7414 +2930,6400 +2931,7385 +2932,7415 +2933,9845 +2934,7400 +2935,3004 +2936,3004 +2937,3004 +2939,3004 +2940,1769 +2941,20359 +2942,3007 +2943,21600 +2944,21598 +2945,16754 +2946,16752 +2947,16754 +2948,6515 +2949,16989 +2950,20378 +2951,9851 +2952,3040 +2953,23077 +2954,14615 +2955,16545 +2956,3031 +2957,14499 +2958,14498 +2959,14525 +2960,14497 +2961,17093 +2962,17160 +2963,16980 +2964,17175 +2965,22677 +2966,7193 +2967,22673 +2968,22676 +2969,14524 +2970,14529 +2971,14531 +2972,14528 +2973,14539 +2974,14537 +2975,14534 +2976,14536 +2977,22689 +2978,22693 +2979,22690 +2980,12450 +2981,14549 +2982,14554 +2983,14552 +2984,16789 +2985,9739 +2986,11369 +2987,11373 +2988,14411 +2989,25769 +2990,25768 +2991,25765 +2992,16731 +2993,13252 +2994,13217 +2995,13273 +2996,7331 +2997,10044 +2998,6562 +2999,7259 +3000,16888 +3001,18087 +3002,6338 +3003,6492 +3004,6551 +3005,6553 +3006,6521 +3007,6832 +3008,23080 +3010,6371 +3011,13259 +3012,3331 +3013,1093 +3014,7040 +3015,18109 +3016,7139 +3017,811 +3018,23027 +3019,12682 +3020,21294 +3021,20673 +3022,16534 +3023,20727 +3024,20726 +3025,20725 +3026,20675 +3027,20670 +3028,8104 +3029,5996 +3030,26497 +3031,5996 +3032,5998 +3033,5998 +3034,5998 +3035,3225 +3036,5392 +3037,20653 +3038,3185 +3039,20672 +3040,20740 +3041,20729 +3042,20734 +3043,2414 +3044,3191 +3045,25778 +3046,13276 +3047,25782 +3048,11525 +3049,25780 +3050,3058 +3051,6901 +3052,13283 +3053,3293 +3054,6898 +3055,8665 +3056,16954 +3057,16984 +3058,17055 +3059,13252 +3060,6730 +3061,9112 +3062,3206 +3063,13250 +3064,3205 +3065,27547 +3066,27550 +3067,3217 +3068,16824 +3069,27554 +3070,15149 +3071,19209 +3072,16694 +3073,16846 +3074,12420 +3075,15322 +3076,4873 +3077,13542 +3078,20669 +3079,20738 +3080,7066 +3081,7185 +3082,2853 +3083,7215 +3084,7072 +3085,7922 +3086,7922 +3087,18115 +3088,1317 +3089,1103 +3090,1103 +3091,1103 +3092,1103 +3093,1103 +3094,1103 +3095,1103 +3096,1103 +3097,1103 +3098,1103 +3099,1103 +3100,1103 +3101,1103 +3102,1103 +3103,8588 +3104,3155 +3105,3155 +3106,3155 +3107,20779 +3108,20773 +3109,16753 +3110,7723 +3111,20777 +3112,1143 +3113,1143 +3114,1143 +3115,1143 +3116,1143 +3117,7138 +3118,1143 +3119,1143 +3120,1143 +3121,1143 +3122,1143 +3123,1143 +3124,1143 +3125,5563 +3126,5563 +3127,5563 +3128,16755 +3129,5563 +3130,5563 +3131,16760 +3132,5563 +3133,5563 +3134,1246 +3135,20782 +3136,35701 +3137,20783 +3138,1246 +3139,1246 +3140,1246 +3141,1246 +3142,1246 +3143,1246 +3144,1246 +3145,3288 +3146,1246 +3147,3289 +3148,7849 +3149,3291 +3150,3292 +3151,3293 +3152,17177 +3153,23128 +3154,18340 +3155,3331 +3156,7132 +3157,7083 +3158,10412 +3159,6832 +3160,3304 +3161,16696 +3162,3233 +3163,2853 +3164,7357 +3165,983 +3166,12965 +3167,6699 +3168,6629 +3169,6002 +3170,6666 +3171,3429 +3172,7330 +3173,25466 +3174,6690 +3175,11164 +3176,3307 +3177,6651 +3179,28257 +3180,6658 +3181,6678 +3182,18597 +3183,6669 +3184,20396 +3185,20362 +3186,26576 +3187,20573 +3188,20072 +3189,8525 +3190,6799 +3191,11165 +3192,26590 +3193,19545 +3194,19622 +3195,8499 +3196,26585 +3197,20184 +3198,8585 +3199,19372 +3200,17004 +3201,19283 +3202,10216 +3203,5228 +3204,3606 +3205,14410 +3206,20186 +3207,14535 +3208,5232 +3209,20250 +3210,19275 +3211,25766 +3212,25779 +3213,6953 +3214,22674 +3215,6899 +3216,18121 +3217,16787 +3218,7208 +3219,3396 +3220,25469 +3221,3396 +3222,20607 +3223,19624 +3224,16926 +3225,6437 +3226,6832 +3227,20381 +3228,10402 +3229,9917 +3230,17166 +3231,10166 +3232,3409 +3233,3410 +3234,963 +3235,9840 +3236,3152 +3237,3152 +3238,3411 +3239,24683 +3240,24684 +3241,24685 +3242,3413 +3243,3414 +3244,7017 +3245,7018 +3246,7019 +3247,6961 +3248,1102 +3249,6632 +3250,1301 +3251,8452 +3252,3029 +3253,3422 +3254,2885 +3255,3426 +3256,3427 +3257,3427 +3258,5283 +3259,11164 +3260,16612 +3261,23143 +3262,21052 +3263,3432 +3264,11489 +3265,6669 +3266,3433 +3267,20176 +3268,6432 +3269,19772 +3270,16585 +3271,3396 +3272,3442 +3273,2967 +3274,16587 +3275,16586 +3276,18490 +3277,20444 +3278,3447 +3279,26927 +3280,26928 +3281,27175 +3282,26932 +3283,26933 +3284,27993 +3285,27994 +3286,27995 +3287,28591 +3288,27996 +3289,14514 +3290,14509 +3291,14511 +3292,14513 +3293,19281 +3294,5203 +3295,3434 +3296,6442 +3297,3427 +3298,3410 +3299,6002 +3300,6682 +3301,6002 +3302,26944 +3303,26945 +3304,28997 +3305,26948 +3306,26949 +3307,11060 +3308,16592 +3309,16591 +3310,16590 +3311,14544 +3312,14545 +3313,28047 +3314,14546 +3315,14547 +3316,3486 +3317,3486 +3318,3487 +3319,5007 +3320,4506 +3321,4016 +3322,23015 +3323,16906 +3324,21457 +3325,19252 +3326,3502 +3327,20434 +3328,16655 +3329,5204 +3330,12971 +3331,15196 +3332,6987 +3333,6832 +3334,7495 +3335,3509 +3336,20341 +3337,7111 +3338,7094 +3339,6371 +3340,7148 +3341,6920 +3342,7843 +3343,1183 +3344,4511 +3345,15912 +3346,7495 +3347,568 +3348,6646 +3349,3565 +3350,7444 +3351,7468 +3352,3568 +3353,6502 +3354,6502 +3355,6524 +3356,7346 +3357,7381 +3358,6661 +3359,1115 +3360,3573 +3361,7477 +3362,7449 +3363,16663 +3364,7484 +3365,16664 +3366,7491 +3367,7464 +3368,7459 +3369,6396 +3370,7881 +3371,18077 +3372,18077 +3373,16804 +3374,16554 +3375,16555 +3376,16819 +3377,14111 +3378,16807 +3379,16806 +3380,16784 +3381,16913 +3382,15734 +3383,15745 +3384,292 +3385,15716 +3386,15750 +3387,24213 +3388,15770 +3389,15773 +3390,15787 +3391,15789 +3392,21310 +3393,1301 +3394,1301 +3395,1301 +3396,1301 +3397,6629 +3398,3746 +3399,6627 +3400,20110 +3401,6628 +3402,6691 +3403,1225 +3404,7338 +3405,7210 +3406,19567 +3407,1659 +3408,7217 +3409,7186 +3410,7089 +3411,19528 +3412,18597 +3413,20589 +3414,5198 +3415,20339 +3416,12971 +3417,20174 +3418,7287 +3419,6549 +3420,6483 +3421,6560 +3422,6479 +3423,6489 +3424,6487 +3425,7292 +3426,16610 +3427,7905 +3428,10892 +3429,4532 +3430,6612 +3431,17092 +3432,7437 +3433,7480 +3434,6371 +3435,3708 +3436,2539 +3437,6875 +3438,3026 +3439,3709 +3440,6806 +3441,2947 +3442,4500 +3443,8495 +3444,8698 +3445,20599 +3446,20419 +3447,6880 +3448,1464 +3449,23127 +3450,18659 +3451,6541 +3452,5120 +3453,16907 +3454,3755 +3455,20015 +3456,15798 +3457,16850 +3458,6982 +3459,2563 +3460,18115 +3461,12672 +3462,28607 +3463,20772 +3464,26497 +3465,5998 +3466,7408 +3467,6714 +3468,3411 +3469,23528 +3470,24678 +3471,13090 +3472,25850 +3473,25849 +3474,9390 +3475,23421 +3476,20898 +3477,2885 +3478,24679 +3479,3760 +3480,23531 +3481,9407 +3482,9404 +3483,9406 +3484,9412 +3485,9414 +3486,24680 +3487,20196 +3488,8516 +3489,8496 +3490,6445 +3491,5211 +3492,3780 +3493,20664 +3494,7430 +3495,3788 +3496,16452 +3497,3788 +3498,9657 +3499,6710 +3500,1046 +3501,6643 +3502,17459 +3503,1323 +3504,6270 +3505,6012 +3506,7171 +3507,983 +3508,7175 +3509,7043 +3510,7110 +3511,23020 +3512,1096 +3513,7085 +3514,2853 +3515,7030 +3516,7038 +3517,7921 +3518,1096 +3519,1323 +3520,7921 +3521,1323 +3522,7421 +3523,7422 +3524,6834 +3525,6835 +3526,6836 +3527,7424 +3528,6764 +3529,12906 +3530,11909 +3531,11910 +3532,6766 +3533,6762 +3534,6765 +3535,6763 +3536,13564 +3537,6722 +3538,6743 +3539,6724 +3540,6745 +3541,6720 +3542,6741 +3543,6723 +3544,6744 +3545,6721 +3546,6742 +3547,6784 +3548,6786 +3549,6785 +3550,1310 +3551,1310 +3552,1310 +3553,1310 +3554,7077 +3555,16615 +3556,16544 +3557,3864 +3558,16528 +3559,11626 +3560,20715 +3561,23135 +3562,16910 +3563,3179 +3564,7924 +3565,14127 +3566,17101 +3567,6601 +3568,1244 +3569,18122 +3570,8100 +3571,19546 +3572,5151 +3573,21321 +3574,1816 +3575,7376 +3576,18086 +3577,7352 +3578,9380 +3579,3747 +3580,6713 +3581,20414 +3582,23085 +3583,16948 +3584,7038 +3585,16876 +3586,19231 +3587,16773 +3588,16774 +3589,16788 +3590,16816 +3591,16834 +3592,3645 +3593,16835 +3594,3740 +3595,16583 +3596,16584 +3597,16782 +3598,3895 +3599,16832 +3600,16929 +3601,7263 +3602,16577 +3603,16930 +3604,2584 +3605,21332 +3606,14456 +3607,14161 +3608,15274 +3609,15274 +3610,15274 +3611,15274 +3612,15274 +3613,7282 +3614,6669 +3615,7038 +3616,6521 +3617,7197 +3618,7135 +3619,9515 +3620,7104 +3621,7150 +3622,6371 +3623,7038 +3624,7038 +3625,7141 +3626,7038 +3627,3671 +3628,3913 +3629,6538 +3630,3914 +3631,7042 +3632,3916 +3633,3914 +3634,3917 +3635,3916 +3636,7043 +3637,3918 +3638,7089 +3639,7612 +3640,3920 +3641,14423 +3642,14510 +3643,14342 +3644,16595 +3645,16915 +3646,3740 +3647,14566 +3648,18492 +3649,18512 +3650,18655 +3651,2052 +3652,18488 +3653,1673 +3654,18657 +3655,18696 +3656,18702 +3657,2757 +3658,1317 +3659,1103 +3660,8731 +3661,18530 +3662,22194 +3663,6347 +3664,6347 +3665,18053 +3666,6342 +3667,6350 +3668,1323 +3669,2637 +3670,6668 +3671,7102 +3672,7141 +3673,6616 +3674,6638 +3675,12994 +3676,6690 +3677,1102 +3678,1102 +3679,1102 +3680,1102 +3681,1102 +3682,1102 +3683,1102 +3684,7198 +3685,18050 +3686,7092 +3687,3092 +3688,7051 +3689,7050 +3690,7052 +3691,7053 +3692,7100 +3693,7147 +3694,6534 +3695,6535 +3696,7475 +3697,6531 +3698,6532 +3699,7467 +3700,2945 +3701,6639 +3702,4045 +3703,18102 +3704,6713 +3705,6002 +3706,7015 +3707,7015 +3708,10275 +3709,2945 +3710,10275 +3711,4049 +3712,25472 +3713,1443 +3714,7291 +3715,7059 +3716,9585 +3717,7219 +3718,1323 +3719,23040 +3720,7294 +3721,3031 +3722,6655 +3723,6630 +3724,6651 +3725,6656 +3726,22194 +3727,6327 +3728,6419 +3729,6414 +3730,6350 +3731,25466 +3732,15339 +3733,4085 +3734,1102 +3735,1102 +3736,1102 +3737,1102 +3738,20374 +3739,16132 +3740,22226 +3741,17164 +3742,20667 +3743,6275 +3744,1399 +3745,7218 +3746,1244 +3747,11167 +3748,10169 +3749,23118 +3750,8732 +3751,3083 +3752,8666 +3753,17129 +3754,17186 +3755,19228 +3756,6529 +3757,6530 +3758,6902 +3759,16944 +3760,963 +3761,18769 +3762,1244 +3763,6272 +3764,3750 +3765,6971 +3766,19569 +3767,4110 +3768,6326 +3769,6620 +3770,6350 +3771,4113 +3772,18079 +3773,18084 +3774,26366 +3775,13708 +3776,13708 +3777,6371 +3778,20660 +3779,19287 +3780,20717 +3781,20150 +3782,19532 +3783,20216 +3784,20350 +3785,8480 +3786,6468 +3787,19694 +3788,6563 +3789,6554 +3790,3331 +3791,6552 +3792,12424 +3793,6190 +3794,16571 +3795,23120 +3796,16569 +3797,14711 +3798,14091 +3799,16568 +3800,19042 +3801,19043 +3802,14803 +3803,23036 +3804,19044 +3805,19041 +3806,11270 +3807,19040 +3808,6902 +3809,6903 +3810,6904 +3811,15121 +3812,6905 +3813,687 +3814,6914 +3815,977 +3816,4130 +3817,18481 +3818,18169 +3819,7364 +3820,18089 +3821,19497 +3822,20180 +3823,2354 +3824,17469 +3825,15790 +3826,15793 +3827,15717 +3828,4137 +3829,15794 +3830,1301 +3831,1301 +3832,15274 +3833,23089 +3834,16839 +3835,9417 +3836,25658 +3837,15333 +3838,7089 +3839,7186 +3840,9422 +3841,9424 +3842,9415 +3843,9242 +3844,13088 +3845,9425 +3846,23537 +3847,9426 +3848,6434 +3849,5153 +3850,20215 +3851,19647 +3852,15468 +3853,7324 +3854,20252 +3855,8528 +3856,8533 +3857,7340 +3858,20661 +3859,7392 +3860,20659 +3861,7356 +3862,20951 +3863,11205 +3864,7339 +3865,6474 +3866,15274 +3867,15274 +3868,15274 +3869,15274 +3870,15274 +3871,1102 +3872,15274 +3873,15274 +3874,15274 +3875,1102 +3876,1151 +3877,7266 +3878,1262 +3879,7230 +3880,5689 +3881,7038 +3882,19531 +3883,13228 +3884,13249 +3885,13278 +3886,13539 +3887,13249 +3888,13278 +3889,15908 +3890,17204 +3891,15318 +3892,16775 +3893,21308 +3894,15320 +3895,6262 +3896,3749 +3897,7110 +3898,1102 +3899,6672 +3900,18078 +3901,7048 +3902,20412 +3903,4258 +3904,1310 +3905,1310 +3906,7036 +3907,7100 +3908,7100 +3909,7063 +3910,7171 +3911,7205 +3912,7257 +3913,6554 +3914,1283 +3915,7054 +3916,18075 +3917,6546 +3918,6614 +3919,7168 +3920,7047 +3921,3093 +3922,4280 +3923,7284 +3924,7161 +3925,7151 +3926,4284 +3927,6425 +3928,15714 +3929,7162 +3930,4287 +3931,959 +3932,12333 +3933,7312 +3934,4291 +3935,7311 +3936,16722 +3937,16721 +3938,16724 +3939,23101 +3940,16720 +3941,16719 +3942,14396 +3943,16718 +3944,16704 +3945,16703 +3946,9894 +3947,16707 +3948,16702 +3949,16701 +3950,16706 +3951,16700 +3952,14414 +3953,16712 +3954,16714 +3955,23124 +3956,16711 +3957,16709 +3958,16715 +3959,16708 +3960,6430 +3961,16943 +3962,18419 +3963,17021 +3964,23070 +3965,17188 +3966,17155 +3967,17196 +3968,17105 +3969,14408 +3970,16994 +3971,17171 +3972,23065 +3973,17069 +3974,16972 +3975,4486 +3976,11138 +3977,16941 +3978,16995 +3979,17019 +3980,23068 +3981,17070 +3982,16975 +3983,14421 +3984,9925 +3985,16829 +3986,18814 +3987,18774 +3988,18813 +3989,18472 +3990,17885 +3991,18474 +3992,6946 +3993,6947 +3994,6948 +3995,15068 +3996,6949 +3997,4339 +3998,10170 +3999,8672 +4000,6964 +4001,6965 +4002,6966 +4003,15106 +4004,6967 +4005,4333 +4006,28392 +4007,11565 +4008,6958 +4009,6997 +4010,6998 +4011,15239 +4012,6999 +4013,4346 +4014,9038 +4015,12966 +4016,1288 +4017,20225 +4018,20195 +4019,8478 +4020,19374 +4021,19716 +4022,19526 +4023,4119 +4024,20309 +4025,20550 +4026,20721 +4027,7069 +4028,7065 +4029,3427 +4030,6381 +4031,6515 +4032,6548 +4033,6496 +4034,7261 +4035,16643 +4036,4607 +4037,14989 +4038,27557 +4039,15298 +4040,14623 +4041,15287 +4042,14661 +4043,14652 +4044,14659 +4045,14680 +4046,14685 +4047,14679 +4048,17199 +4049,14601 +4050,17141 +4051,17161 +4052,21304 +4053,6629 +4054,17149 +4055,3036 +4056,811 +4057,16890 +4058,14674 +4059,14673 +4060,14675 +4061,17008 +4062,17147 +4063,17181 +4064,18487 +4065,18699 +4066,4403 +4067,6272 +4068,26325 +4069,26085 +4070,18771 +4071,25801 +4072,25802 +4073,25804 +4074,25809 +4075,25811 +4076,25810 +4077,25825 +4078,25904 +4079,25896 +4080,15290 +4081,4419 +4082,26074 +4083,26075 +4084,3409 +4085,7155 +4086,20736 +4087,4426 +4088,28520 +4089,6592 +4090,18496 +4091,20380 +4092,4433 +4093,6665 +4094,7264 +4095,7302 +4096,18096 +4097,6630 +4098,4435 +4099,29087 +4100,3093 +4101,3093 +4102,3093 +4103,6708 +4104,6646 +4105,6658 +4106,7279 +4107,4438 +4108,4439 +4109,16983 +4110,20555 +4111,8095 +4112,9852 +4113,23123 +4114,15246 +4115,17888 +4116,20223 +4117,16830 +4118,6976 +4119,17100 +4120,16695 +4121,14323 +4122,3498 +4123,6919 +4124,21293 +4125,21605 +4126,19217 +4127,20662 +4128,18269 +4129,4458 +4130,6562 +4131,17115 +4132,6884 +4133,4462 +4134,20294 +4135,6486 +4136,6885 +4137,4835 +4138,8638 +4139,16822 +4140,4869 +4141,1103 +4142,1103 +4143,1103 +4144,1103 +4145,1103 +4146,1103 +4147,1103 +4148,1103 +4149,1103 +4150,1103 +4151,1103 +4152,1103 +4153,1103 +4154,1103 +4155,1103 +4156,1103 +4157,1103 +4158,1103 +4159,1103 +4160,1103 +4161,1103 +4162,1103 +4163,1155 +4164,1155 +4165,1155 +4166,1155 +4167,1155 +4168,5563 +4169,5563 +4170,5563 +4171,5563 +4172,5563 +4173,5563 +4174,5563 +4175,5563 +4176,5563 +4177,5563 +4178,5563 +4179,5563 +4180,5563 +4181,5563 +4182,5563 +4183,5563 +4184,5563 +4185,5563 +4186,5563 +4187,5563 +4188,5563 +4189,5563 +4190,8660 +4191,4497 +4192,4919 +4193,13550 +4194,4494 +4195,4493 +4196,4483 +4197,12980 +4198,1246 +4199,1246 +4200,1246 +4201,1246 +4202,1246 +4203,1246 +4204,1246 +4205,1246 +4206,1246 +4207,1246 +4208,1246 +4209,1246 +4210,1246 +4211,1246 +4212,1246 +4213,1246 +4214,1246 +4215,1246 +4216,1246 +4217,1246 +4218,1246 +4219,1246 +4220,1246 +4221,1246 +4222,1317 +4223,1317 +4224,1317 +4225,1317 +4226,1317 +4227,1317 +4228,1317 +4229,1317 +4230,1317 +4231,5086 +4232,21463 +4233,7112 +4234,7410 +4235,11164 +4236,3164 +4237,9501 +4238,3410 +4239,9503 +4240,4584 +4241,8442 +4242,9505 +4243,9511 +4244,18458 +4245,3337 +4246,9513 +4247,2362 +4248,9526 +4249,12464 +4250,17237 +4251,11274 +4252,12403 +4253,27881 +4254,9543 +4255,9532 +4256,9545 +4257,17224 +4258,9538 +4259,9546 +4260,9550 +4261,16794 +4262,17218 +4263,18668 +4264,17111 +4265,7452 +4266,1143 +4267,1143 +4268,1143 +4269,1143 +4270,1143 +4271,1143 +4272,1143 +4273,1143 +4274,1143 +4275,1143 +4276,1143 +4277,1143 +4278,7148 +4279,1143 +4280,1143 +4281,1143 +4282,1143 +4283,1143 +4284,1143 +4285,1143 +4286,1143 +4287,1143 +4288,1143 +4289,6396 +4290,4400 +4291,12105 +4292,1102 +4293,1102 +4294,1102 +4295,1102 +4296,15274 +4297,15274 +4298,1102 +4299,1102 +4300,1102 +4301,1102 +4302,3006 +4303,19615 +4304,8711 +4305,7333 +4306,7717 +4307,6295 +4308,8089 +4309,12395 +4310,12865 +4311,23117 +4312,14403 +4313,4615 +4314,9997 +4315,17135 +4316,6297 +4317,12399 +4318,6291 +4319,17130 +4320,4301 +4321,17138 +4322,15314 +4323,15319 +4324,17128 +4325,4631 +4326,15076 +4327,15273 +4328,17136 +4329,6315 +4330,7906 +4331,13195 +4332,7902 +4333,15858 +4334,7903 +4335,7904 +4336,13055 +4337,18597 +4338,7384 +4339,7332 +4340,18079 +4341,6373 +4342,6389 +4343,12388 +4344,12802 +4345,15274 +4346,15274 +4347,15274 +4348,15274 +4349,15274 +4350,15274 +4351,15274 +4352,15274 +4353,15274 +4354,6270 +4355,1102 +4356,15274 +4357,7137 +4358,18062 +4359,10700 +4360,25483 +4361,18174 +4362,6600 +4363,7839 +4364,6396 +4365,18062 +4366,7918 +4367,6393 +4368,13236 +4369,20743 +4370,7624 +4371,19482 +4372,6594 +4373,26619 +4374,25483 +4375,7840 +4376,7841 +4377,31325 +4378,18062 +4379,15835 +4380,7626 +4381,22293 +4382,20624 +4383,8257 +4384,7361 +4385,22422 +4386,7841 +4387,7377 +4388,7358 +4389,7371 +4390,25482 +4391,21652 +4392,9151 +4393,13215 +4394,7624 +4395,7367 +4396,21632 +4397,7841 +4398,6393 +4399,7375 +4400,7375 +4401,16536 +4402,1438 +4403,7397 +4404,7404 +4405,7326 +4406,7326 +4407,7326 +4408,15274 +4409,15274 +4410,15274 +4411,1102 +4412,15274 +4413,15274 +4414,15274 +4415,1102 +4416,15274 +4417,15274 +4418,6342 +4419,2616 +4420,1097 +4421,1093 +4422,1093 +4423,1097 +4424,2616 +4425,3331 +4426,3331 +4427,6270 +4428,6699 +4429,3093 +4430,9853 +4431,6614 +4432,7798 +4433,4435 +4434,4365 +4435,6614 +4436,9912 +4437,20390 +4438,6977 +4439,6795 +4440,7246 +4441,18078 +4442,2563 +4443,11327 +4444,18694 +4445,19398 +4446,20369 +4447,23019 +4448,4723 +4449,20439 +4450,7184 +4451,7298 +4452,6521 +4453,7248 +4454,20592 +4455,14261 +4456,17231 +4457,6327 +4458,7245 +4459,18072 +4460,568 +4461,7399 +4462,23098 +4463,9916 +4464,7002 +4465,6844 +4466,7249 +4467,7244 +4468,7239 +4469,7216 +4470,21102 +4471,4720 +4472,2616 +4473,7118 +4474,12883 +4475,6645 +4476,12650 +4477,17887 +4478,4744 +4479,6337 +4480,6424 +4481,6346 +4482,7234 +4483,6709 +4484,6712 +4485,6711 +4486,6640 +4487,7047 +4488,7047 +4489,7152 +4490,3426 +4491,12289 +4492,7119 +4493,7120 +4494,7233 +4495,9658 +4496,8271 +4497,1183 +4498,2585 +4499,1183 +4500,6430 +4501,6430 +4502,7221 +4503,3429 +4504,15183 +4505,16791 +4506,6510 +4507,18653 +4508,8639 +4509,17185 +4510,7041 +4511,19783 +4512,1504 +4513,6693 +4514,4771 +4515,1310 +4516,7038 +4517,7038 +4518,2616 +4519,2616 +4520,2616 +4521,7024 +4522,7289 +4523,7098 +4524,7037 +4525,7278 +4526,7202 +4527,1659 +4528,7261 +4529,4775 +4530,7277 +4531,6564 +4532,4777 +4533,4435 +4534,6996 +4535,9838 +4536,6410 +4537,6420 +4538,4781 +4539,7856 +4540,6399 +4541,6343 +4542,6344 +4543,21313 +4544,6399 +4545,16892 +4546,6338 +4547,21016 +4548,3151 +4549,9834 +4550,9832 +4551,3918 +4552,4719 +4553,4722 +4554,4721 +4555,20915 +4556,20914 +4557,28258 +4558,8381 +4559,6521 +4560,4788 +4561,19299 +4562,8531 +4563,4609 +4564,6813 +4565,6433 +4566,20420 +4567,20111 +4568,22478 +4569,19778 +4570,8586 +4571,20430 +4572,4282 +4573,1244 +4574,4202 +4575,20401 +4576,20674 +4577,6592 +4578,6641 +4579,6644 +4580,959 +4581,6679 +4582,18095 +4583,6698 +4584,6669 +4585,6619 +4586,6628 +4587,11208 +4588,4807 +4589,11207 +4590,6636 +4591,6492 +4592,24702 +4593,24710 +4594,4823 +4595,18078 +4596,15736 +4597,15274 +4598,18063 +4599,6350 +4600,18119 +4601,6413 +4602,6402 +4603,4811 +4604,15852 +4605,15853 +4606,15854 +4607,6355 +4608,15855 +4609,1301 +4610,6393 +4611,13103 +4612,4826 +4613,20913 +4614,9859 +4615,4829 +4616,6589 +4617,4831 +4618,4832 +4619,4833 +4620,3093 +4621,7025 +4622,4435 +4623,24215 +4624,1301 +4625,19495 +4626,4717 +4627,7157 +4628,7060 +4629,7925 +4630,7064 +4631,7264 +4632,9632 +4633,9632 +4634,9632 +4635,4841 +4636,9632 +4637,9632 +4638,9632 +4639,7078 +4640,4681 +4641,3146 +4642,4843 +4643,15079 +4644,7269 +4645,4829 +4646,2516 +4647,7293 +4648,7247 +4649,811 +4650,811 +4651,4742 +4652,18789 +4653,6944 +4654,7177 +4655,22193 +4656,6402 +4657,6832 +4658,25945 +4659,11131 +4660,6322 +4661,27551 +4662,15061 +4663,9907 +4664,2563 +4665,23015 +4666,16911 +4667,6832 +4668,26979 +4669,26930 +4670,3396 +4671,25657 +4672,14515 +4673,2563 +4674,27997 +4675,16911 +4676,6991 +4677,25950 +4678,22692 +4679,6832 +4680,26981 +4681,26947 +4682,3396 +4683,23113 +4684,14530 +4685,3396 +4686,23137 +4687,16594 +4688,2563 +4689,23041 +4690,14533 +4691,2563 +4692,28049 +4693,29632 +4694,25770 +4695,26048 +4696,18495 +4697,25767 +4698,14550 +4699,14555 +4700,14232 +4701,23044 +4702,7096 +4703,7064 +4704,6567 +4705,25783 +4706,25979 +4707,25781 +4708,27545 +4709,8098 +4710,23029 +4711,26047 +4712,25803 +4713,23140 +4714,4557 +4715,23024 +4716,26016 +4717,25813 +4718,16652 +4719,18131 +4720,14624 +4721,17193 +4722,23045 +4723,14332 +4724,21302 +4725,25897 +4726,25900 +4727,25895 +4728,7004 +4729,14649 +4730,6261 +4731,14677 +4732,23031 +4733,26078 +4734,11638 +4735,23125 +4736,14686 +4737,17192 +4738,16921 +4739,2599 +4740,19572 +4741,4912 +4742,7169 +4743,6546 +4744,16925 +4745,7005 +4746,12718 +4747,6414 +4748,6414 +4749,6414 +4750,6566 +4751,7266 +4752,19528 +4753,19529 +4754,18083 +4755,18102 +4756,6685 +4757,18053 +4758,6669 +4759,7202 +4760,6566 +4761,4339 +4762,6566 +4763,3186 +4764,6716 +4765,7313 +4766,5154 +4767,3528 +4768,16946 +4769,11207 +4770,7061 +4771,23012 +4772,23075 +4773,6843 +4774,6934 +4775,6633 +4776,19567 +4777,19538 +4778,6808 +4779,6652 +4780,6664 +4781,8702 +4782,16812 +4783,7276 +4784,4719 +4785,6277 +4786,16833 +4787,22927 +4788,4024 +4789,6777 +4790,15165 +4791,6374 +4792,23131 +4793,15247 +4794,6787 +4795,6756 +4796,6758 +4797,15161 +4798,15206 +4799,23087 +4800,697 +4801,1496 +4802,6671 +4803,6630 +4804,7142 +4805,7126 +4806,6646 +4807,6427 +4808,8039 +4809,7287 +4810,19911 +4811,6781 +4812,6879 +4813,15593 +4814,7048 +4815,6935 +4816,4978 +4817,7319 +4818,20155 +4819,4110 +4820,18511 +4821,3445 +4822,4983 +4823,4984 +4824,8459 +4825,8461 +4826,19224 +4827,16865 +4828,16792 +4829,9912 +4830,17153 +4831,17154 +4832,22428 +4833,6929 +4834,7234 +4835,6912 +4836,21601 +4837,21611 +4838,21606 +4839,7086 +4840,13908 +4841,7145 +4842,6421 +4843,7026 +4844,7189 +4845,7106 +4846,7072 +4847,7159 +4848,8802 +4849,2599 +4850,7047 +4851,7047 +4852,6378 +4853,15330 +4854,23103 +4855,5093 +4856,5094 +4857,5115 +4858,5116 +4859,6484 +4860,4433 +4861,5243 +4862,7229 +4863,7602 +4864,7102 +4865,7086 +4866,9090 +4867,6619 +4868,6427 +4869,3146 +4870,7067 +4871,12643 +4872,1504 +4873,4714 +4874,6631 +4875,6668 +4876,6615 +4877,6701 +4878,6617 +4879,6700 +4880,2868 +4881,3093 +4882,8903 +4883,3093 +4884,7252 +4885,7156 +4886,6694 +4887,7110 +4888,3788 +4889,2599 +4890,18047 +4891,4841 +4892,7112 +4893,3672 +4894,3759 +4895,7089 +4896,5287 +4897,6694 +4898,5283 +4899,10672 +4900,5289 +4901,5290 +4902,6098 +4903,7122 +4904,2533 +4905,3146 +4906,8308 +4907,8701 +4908,17169 +4909,7560 +4910,6969 +4911,18522 +4912,6109 +4913,9920 +4914,17075 +4915,16802 +4916,16800 +4917,5337 +4918,1183 +4919,16799 +4920,23007 +4921,9671 +4922,2967 +4923,8498 +4924,19634 +4925,6457 +4926,18116 +4927,8382 +4928,17017 +4929,17097 +4930,1168 +4931,7603 +4932,20013 +4933,15211 +4934,5394 +4935,7007 +4936,16880 +4937,18510 +4938,20423 +4939,20112 +4940,17074 +4941,1805 +4942,16997 +4943,8691 +4944,23116 +4945,7099 +4946,6876 +4947,20603 +4948,5009 +4949,19214 +4950,5411 +4951,16938 +4952,18099 +4953,18117 +4954,16932 +4955,5414 +4956,6566 +4957,1168 +4958,15244 +4959,16760 +4960,5998 +4961,20426 +4962,5418 +4963,23071 +4964,19544 +4965,8490 +4966,7163 +4967,5422 +4968,9925 +4969,6915 +4970,16968 +4971,8572 +4972,6876 +4973,17014 +4974,3006 +4975,18491 +4976,28287 +4977,20009 +4978,19741 +4979,5434 +4980,5435 +4981,1281 +4982,10411 +4983,19596 +4984,21609 +4985,6109 +4986,6521 +4987,20083 +4988,9834 +4989,16673 +4990,16934 +4991,5175 +4992,5567 +4993,7469 +4994,5569 +4995,5567 +4996,6798 +4997,1102 +4998,9834 +4999,14433 +5000,9835 +5001,9834 +5002,6539 +5003,9854 +5004,9857 +5005,9658 +5006,7152 +5007,6478 +5008,9843 +5009,9840 +5010,3453 +5011,9851 +5012,7127 +5013,6376 +5014,6429 +5015,6429 +5016,16849 +5017,1150 +5018,7290 +5019,7256 +5020,4287 +5021,18062 +5022,12904 +5023,12904 +5024,6340 +5025,12904 +5026,9518 +5027,1282 +5028,24742 +5029,9860 +5030,7070 +5031,5536 +5032,5125 +5033,5125 +5034,5125 +5035,5125 +5036,5536 +5037,5125 +5038,7267 +5039,5125 +5040,20321 +5041,6423 +5042,6405 +5043,6404 +5044,6329 +5045,6411 +5046,6394 +5047,6330 +5048,6330 +5049,6405 +5050,8902 +5051,7107 +5052,6705 +5053,20406 +5054,9167 +5055,7048 +5056,1464 +5057,6390 +5058,18050 +5059,7108 +5060,7411 +5061,7260 +5062,9826 +5063,7154 +5064,7288 +5065,6013 +5066,6377 +5067,7235 +5068,6371 +5069,6097 +5070,5291 +5071,18356 +5072,7101 +5073,7101 +5074,7101 +5075,7045 +5076,7242 +5077,7268 +5078,7271 +5079,6492 +5080,1134 +5081,4584 +5082,7412 +5083,1102 +5084,7038 +5085,7209 +5086,7295 +5087,6633 +5088,7073 +5089,9660 +5090,7908 +5091,5805 +5092,6101 +5093,20392 +5094,5808 +5095,24704 +5096,7204 +5097,6851 +5098,17460 +5099,7144 +5100,7086 +5101,6666 +5102,8007 +5103,11207 +5104,7142 +5105,7300 +5106,15308 +5107,16557 +5108,16882 +5109,16589 +5110,12656 +5111,18133 +5112,20491 +5113,6565 +5114,6627 +5115,18072 +5116,19571 +5117,19570 +5118,6657 +5119,18095 +5120,18096 +5121,6646 +5122,6702 +5123,6701 +5124,6002 +5125,6628 +5126,6270 +5127,6270 +5128,568 +5129,6270 +5130,6270 +5131,6270 +5132,6270 +5133,1438 +5134,7231 +5135,6651 +5136,6704 +5137,1504 +5138,15525 +5139,1317 +5140,32819 +5141,1317 +5142,1317 +5143,7262 +5144,1317 +5145,1317 +5146,1317 +5147,1317 +5148,1317 +5149,1317 +5150,1317 +5151,1317 +5152,1317 +5153,1317 +5154,1317 +5155,1317 +5156,1317 +5157,1317 +5158,1317 +5159,1317 +5160,1317 +5161,1317 +5162,1317 +5163,1317 +5164,8284 +5165,19799 +5166,4045 +5167,18047 +5168,7273 +5169,7274 +5170,5283 +5171,6521 +5172,6354 +5173,7328 +5174,7187 +5175,7299 +5176,7299 +5177,7299 +5178,7299 +5179,5283 +5180,6494 +5181,23142 +5182,8000 +5183,21607 +5184,7124 +5185,8545 +5186,7125 +5187,8600 +5188,7125 +5189,7130 +5190,7240 +5191,7311 +5192,5144 +5193,22998 +5194,19296 +5195,16966 +5196,13913 +5197,20953 +5198,21011 +5199,1978 +5200,5949 +5201,20340 +5202,12803 +5203,6669 +5204,7046 +5205,6416 +5206,6331 +5207,20903 +5208,20829 +5209,6099 +5210,20787 +5211,20852 +5212,6081 +5213,20907 +5214,21020 +5215,20815 +5216,20790 +5217,3422 +5218,3422 +5219,7149 +5220,7134 +5221,7164 +5222,6001 +5223,1262 +5224,6000 +5225,6000 +5226,6001 +5227,1262 +5228,6007 +5229,6007 +5230,6008 +5231,6008 +5232,6009 +5233,6017 +5234,6016 +5235,6081 +5236,20916 +5237,13709 +5238,20787 +5239,20776 +5240,6101 +5241,6097 +5242,6093 +5243,12601 +5244,21024 +5245,21019 +5246,6093 +5247,20828 +5248,21023 +5249,20793 +5250,6140 +5251,8752 +5252,20825 +5253,20801 +5254,10179 +5255,8472 +5256,19673 +5257,23000 +5258,6231 +5259,6232 +5260,6233 +5261,6234 +5262,6235 +5263,6238 +5264,6244 +5265,18117 +5266,9837 +5267,3363 +5268,16363 +5269,2885 +5270,15857 +5271,19488 +5272,6927 +5273,13988 +5274,17135 +5275,7545 +5276,5010 +5277,5542 +5278,6434 +5279,20411 +5280,6441 +5281,6443 +5282,6447 +5283,6448 +5284,6454 +5285,6469 +5286,7508 +5287,3385 +5288,5128 +5289,3797 +5290,4441 +5291,5224 +5292,2777 +5293,6799 +5294,9587 +5295,9587 +5296,9587 +5297,9587 +5298,9587 +5299,17223 +5300,5527 +5301,3879 +5302,18451 +5303,2840 +5304,5098 +5305,7526 +5306,7524 +5307,13300 +5308,7530 +5309,7531 +5310,7533 +5311,17159 +5312,7540 +5313,7544 +5314,23012 +5315,28200 +5316,16870 +5317,8658 +5318,22225 +5319,7553 +5320,7554 +5321,20014 +5322,19611 +5323,7557 +5324,8576 +5325,7559 +5326,6097 +5327,16958 +5328,7563 +5329,8289 +5330,18061 +5331,7425 +5332,8289 +5333,13990 +5334,18079 +5335,1183 +5336,9849 +5337,19899 +5338,7572 +5339,7573 +5340,20417 +5341,8717 +5342,18099 +5343,23088 +5344,8485 +5345,8602 +5346,20719 +5347,21022 +5348,3331 +5349,6342 +5350,18081 +5351,6011 +5352,7637 +5353,7630 +5354,8919 +5355,7662 +5356,20834 +5357,1685 +5358,13282 +5359,7798 +5360,7697 +5361,6651 +5362,1504 +5363,7717 +5364,4718 +5365,6700 +5366,6554 +5367,4717 +5368,7718 +5369,7251 +5370,7716 +5371,6652 +5372,8051 +5373,15026 +5374,7719 +5375,8119 +5376,7268 +5377,7714 +5378,14964 +5379,20781 +5380,7726 +5381,7733 +5382,7735 +5383,7164 +5384,7737 +5385,8007 +5386,7740 +5387,23108 +5388,7741 +5389,7742 +5390,7744 +5391,7791 +5392,6432 +5393,5108 +5394,7823 +5395,18671 +5396,13824 +5397,7828 +5398,16951 +5399,7835 +5400,1150 +5401,1150 +5402,1150 +5403,1150 +5404,6729 +5405,23105 +5406,6007 +5407,6007 +5408,6008 +5409,6008 +5410,7867 +5411,7866 +5412,6492 +5413,7886 +5414,6683 +5415,7866 +5416,7866 +5417,7888 +5418,7889 +5419,17002 +5420,8635 +5421,7899 +5422,16974 +5423,19221 +5424,7928 +5425,7932 +5426,19396 +5427,8118 +5428,8117 +5429,8121 +5430,8120 +5431,18058 +5432,8114 +5433,6358 +5434,7723 +5435,8115 +5436,7723 +5437,1442 +5438,3788 +5439,21318 +5440,3788 +5441,1816 +5442,7951 +5443,18523 +5444,15089 +5445,9865 +5446,7954 +5447,7954 +5448,7954 +5449,7954 +5450,7954 +5451,7954 +5452,7954 +5453,7954 +5454,7954 +5455,7957 +5456,7956 +5457,1496 +5458,9908 +5459,5014 +5460,7976 +5461,9659 +5462,7982 +5463,7984 +5464,8033 +5465,7345 +5466,7987 +5467,6680 +5468,7988 +5469,1116 +5470,7989 +5471,7990 +5472,25473 +5473,7994 +5474,25481 +5475,8951 +5476,7996 +5477,6406 +5478,557 +5479,8088 +5480,25475 +5481,7999 +5482,811 +5483,811 +5484,811 +5485,1102 +5486,1102 +5487,1102 +5488,1102 +5489,1102 +5490,8009 +5491,2839 +5493,13120 +5494,8014 +5495,8011 +5497,8018 +5498,12309 +5500,12310 +5501,7380 +5502,8016 +5503,22193 +5504,22193 +5505,7152 +5506,1504 +5507,7365 +5508,8025 +5509,8026 +5510,8026 +5511,8026 +5512,8026 +5513,7393 +5514,6851 +5515,7985 +5516,8028 +5517,16454 +5518,8902 +5519,8032 +5520,8040 +5521,8042 +5522,21610 +5523,7177 +5524,16212 +5525,8048 +5526,8049 +5527,7177 +5528,1102 +5529,6371 +5530,44344 +5531,7141 +5532,8078 +5533,9129 +5534,7416 +5535,8093 +5536,8094 +5537,3486 +5538,8096 +5539,8097 +5540,6439 +5541,19801 +5542,23131 +5543,15274 +5544,7741 +5545,5290 +5546,10673 +5547,8122 +5548,3187 +5549,6432 +5550,6592 +5551,5066 +5552,5509 +5553,5194 +5554,47303 +5555,47449 +5556,1628 +5557,5638 +5558,2388 +5559,16762 +5560,6097 +5561,8127 +5562,8132 +5563,8132 +5564,8132 +5565,6504 +5566,7999 +5567,8233 +5568,5998 +5569,7415 +5570,18050 +5571,1281 +5572,1277 +5573,3565 +5574,8269 +5575,3568 +5576,1183 +5577,15274 +5578,15274 +5579,19544 +5580,19777 +5581,20446 +5582,8283 +5583,8284 +5584,18096 +5585,6492 +5586,1547 +5587,19648 +5588,7976 +5589,8292 +5590,16918 +5591,23055 +5592,8295 +5593,8296 +5594,7649 +5595,8298 +5596,20720 +5597,8376 +5598,8377 +5599,8378 +5600,8379 +5601,18053 +5602,18597 +5603,8384 +5604,28159 +5605,3550 +5606,16817 +5607,8399 +5608,15278 +5609,6755 +5610,23115 +5611,8436 +5612,17010 +5613,20384 +5614,20182 +5615,20121 +5616,20376 +5617,6718 +5618,15032 +5619,8518 +5620,7206 +5621,8543 +5622,14432 +5623,8547 +5624,15905 +5625,13247 +5626,19246 +5627,20354 +5628,6639 +5629,8450 +5630,8449 +5631,15741 +5632,4133 +5633,15791 +5634,8453 +5635,1496 +5636,19568 +5637,2460 +5638,8471 +5639,8523 +5640,1301 +5641,1301 +5642,1301 +5643,1301 +5644,1103 +5645,8544 +5646,21672 +5647,1103 +5648,1103 +5649,1103 +5650,1103 +5651,8555 +5652,8556 +5653,8557 +5654,2947 +5655,13108 +5656,13108 +5657,6270 +5658,1155 +5659,8560 +5660,1155 +5661,1155 +5662,1155 +5663,16208 +5664,8562 +5665,16207 +5666,1155 +5667,1155 +5668,16208 +5669,2480 +5670,1155 +5671,1155 +5672,1155 +5673,1155 +5674,1155 +5675,8564 +5676,1155 +5677,1155 +5678,1155 +5679,1155 +5680,1155 +5681,8283 +5682,1155 +5683,1155 +5684,1155 +5685,1155 +5686,7164 +5687,6554 +5688,8616 +5689,8737 +5690,7737 +5691,8735 +5692,8622 +5693,8622 +5694,8625 +5695,8625 +5696,5563 +5697,5563 +5698,5563 +5699,5563 +5700,5563 +5701,5563 +5702,5563 +5703,5563 +5704,5563 +5705,5563 +5706,5563 +5707,5563 +5708,5563 +5709,5563 +5710,5563 +5711,5563 +5712,5563 +5713,5563 +5714,5563 +5715,5563 +5716,5563 +5717,8623 +5718,8624 +5719,1246 +5720,1246 +5721,1246 +5722,1246 +5723,1246 +5724,1246 +5725,1246 +5726,1246 +5727,1246 +5728,1246 +5729,1246 +5730,1317 +5731,8626 +5732,8627 +5733,7340 +5734,8628 +5735,3411 +5736,8629 +5737,8630 +5738,8631 +5739,12368 +5740,8733 +5741,4719 +5742,20569 +5743,9842 +5744,8279 +5745,8745 +5746,8746 +5747,8747 +5748,20713 +5749,19291 +5750,8749 +5751,23078 +5752,20596 +5753,8753 +5754,7093 +5755,8719 +5756,20591 +5757,8803 +5758,9632 +5759,9632 +5760,9632 +5761,19544 +5762,12998 +5763,8859 +5764,8860 +5765,8861 +5766,12397 +5767,16611 +5768,16037 +5769,1097 +5770,12695 +5771,1102 +5772,1102 +5773,15274 +5774,15274 +5775,15274 +5776,20449 +5777,8899 +5778,5404 +5779,20084 +5780,8905 +5781,8908 +5782,22393 +5783,8912 +5784,8913 +5785,8914 +5786,1102 +5787,1102 +5788,1102 +5789,1102 +5790,8040 +5791,8040 +5792,8918 +5793,8917 +5794,8922 +5795,8923 +5796,10043 +5797,9110 +5798,8926 +5799,8927 +5800,8928 +5801,13715 +5802,8931 +5803,8932 +5804,4435 +5805,4045 +5806,8935 +5807,3093 +5808,8940 +5809,8940 +5810,8942 +5811,8952 +5812,12694 +5813,9055 +5814,16899 +5815,9057 +5816,9058 +5817,9060 +5818,21026 +5819,15810 +5820,9077 +5821,16982 +5822,9082 +5823,15856 +5824,9106 +5825,9305 +5826,7629 +5827,4435 +5828,6012 +5829,6633 +5830,15706 +5831,7038 +5832,7038 +5833,9116 +5834,9124 +5835,18078 +5836,12644 +5837,9134 +5838,9144 +5839,9135 +5840,20952 +5841,3422 +5842,18107 +5843,3596 +5844,9147 +5845,6350 +5846,9148 +5847,9150 +5848,7126 +5849,9151 +5850,9152 +5851,9154 +5852,9155 +5853,9158 +5854,9157 +5855,4045 +5856,16751 +5857,9162 +5858,9161 +5859,9163 +5860,9164 +5861,9165 +5862,9166 +5863,16161 +5864,17343 +5865,9166 +5866,9116 +5867,9208 +5868,9207 +5869,9209 +5870,22671 +5871,7296 +5872,17343 +5873,17343 +5874,17343 +5875,17343 +5876,6624 +5877,9284 +5878,8932 +5879,9285 +5880,9288 +5881,9289 +5882,9467 +5883,9291 +5884,9292 +5896,9310 +5897,9319 +5916,7737 +5917,811 +5918,3914 +5919,9354 +5936,9365 +5937,9345 +5938,7345 +5939,9374 +5940,2916 +5941,4339 +5942,9377 +5943,9378 +5944,7554 +5945,9396 +5946,9148 +5947,9397 +5948,9148 +5949,9135 +5950,9429 +5951,9430 +5952,13531 +5953,15804 +5954,9465 +5956,8568 +5957,9499 +5958,9514 +5959,2885 +5960,9152 +5961,12402 +5962,9535 +5963,17212 +5964,9544 +5965,23033 +5966,9549 +5967,9552 +5968,6777 +5969,23059 +5970,19128 +5971,23026 +5972,15274 +5973,1102 +5974,15274 +5975,9584 +5976,20621 +5996,4836 +5997,15732 +5998,4435 +6016,4045 +6036,6475 +6037,20656 +6038,9633 +6039,1301 +6040,9634 +6041,9635 +6042,9637 +6043,7261 +6044,15274 +6045,15274 +6046,15274 +6047,1102 +6048,15774 +6049,9639 +6050,9058 +6051,15747 +6052,4135 +6053,1301 +6054,1301 +6055,1301 +6056,1301 +6057,1301 +6058,8419 +6059,9930 +6060,16588 +6061,9644 +6062,16805 +6063,6954 +6064,16265 +6065,9663 +6066,9666 +6067,9668 +6068,1301 +6069,7407 +6070,17173 +6071,6563 +6072,9666 +6073,9666 +6074,9711 +6075,9725 +6076,16843 +6077,9728 +6078,18664 +6079,9730 +6080,8917 +6081,9733 +6082,47459 +6083,9737 +6084,9738 +6085,11368 +6086,9741 +6087,9742 +6088,19805 +6089,18117 +6090,10453 +6091,9822 +6092,16981 +6093,19646 +6094,19390 +6095,11548 +6096,2163 +6097,2470 +6098,12679 +6116,12648 +6117,9972 +6118,9974 +6119,12681 +6120,9983 +6121,9984 +6122,9985 +6123,12683 +6124,9987 +6125,9995 +6126,10002 +6127,10003 +6128,10028 +6129,12646 +6130,17462 +6131,10244 +6132,1155 +6133,1155 +6134,10108 +6135,10109 +6136,10112 +6137,10114 +6138,10115 +6139,12684 +6140,12649 +6141,9913 +6142,10126 +6143,9915 +6144,12680 +6145,7570 +6146,10190 +6147,9508 +6148,16853 +6149,15718 +6150,10301 +6166,10345 +6167,6423 +6168,9157 +6169,6678 +6170,10353 +6171,9374 +6172,12927 +6173,16809 +6174,13583 +6175,10365 +6176,3725 +6177,6934 +6178,8928 +6179,15166 +6180,11563 +6181,4262 +6182,12312 +6183,12311 +6184,10399 +6185,23008 +6186,20119 +6187,18658 +6188,10434 +6189,10448 +6190,10449 +6191,10454 +6192,9666 +6193,10481 +6194,19404 +6195,12944 +6196,6794 +6197,2644 +6198,10529 +6199,10530 +6200,10532 +6201,9510 +6202,10535 +6203,18669 +6204,13266 +6205,7495 +6206,14040 +6207,6710 +6208,6710 +6209,6710 +6210,6710 +6211,1301 +6212,10546 +6213,4717 +6214,10642 +6215,10654 +6216,7414 +6217,21205 +6218,21207 +6219,7494 +6220,20536 +6221,11431 +6222,11431 +6223,10721 +6224,5176 +6225,10814 +6226,12652 +6227,10815 +6228,10816 +6229,10817 +6230,21095 +6231,21094 +6232,10820 +6233,10821 +6234,10822 +6235,10823 +6236,10824 +6237,10825 +6238,12389 +6239,12400 +6240,12387 +6241,17123 +6242,12386 +6243,12393 +6244,10913 +6245,7289 +6246,10920 +6247,10921 +6248,6400 +6249,10922 +6250,10923 +6251,3124 +6252,6400 +6253,10924 +6254,10968 +6255,6590 +6256,20730 +6257,11012 +6258,6427 +6259,4045 +6260,1656 +6261,15736 +6262,7152 +6263,11182 +6264,12716 +6265,6689 +6266,16560 +6267,16561 +6268,17098 +6269,17152 +6270,1102 +6271,15274 +6272,1102 +6273,1102 +6274,1102 +6275,1102 +6276,6639 +6277,11160 +6278,11161 +6279,3093 +6280,3093 +6281,4262 +6282,11166 +6283,2757 +6284,11180 +6285,11181 +6286,6694 +6287,11183 +6288,11185 +6289,24702 +6290,18536 +6291,18535 +6292,24701 +6293,11199 +6294,24701 +6295,24701 +6296,6691 +6297,7741 +6298,6666 +6299,24696 +6300,6628 +6301,6375 +6302,4433 +6303,24697 +6304,7629 +6305,7629 +6306,7629 +6307,18113 +6308,24710 +6309,24712 +6310,24712 +6311,24712 +6312,3422 +6313,3422 +6314,23082 +6315,11247 +6316,11268 +6317,4813 +6318,20335 +6319,11253 +6320,18700 +6321,14433 +6322,11259 +6323,21051 +6324,12696 +6325,811 +6326,811 +6327,11271 +6328,1102 +6329,1102 +6330,1102 +6331,20333 +6332,9837 +6333,20604 +6334,11289 +6335,11330 +6336,3057 +6337,3058 +6338,21208 +6339,21208 +6340,23027 +6341,11410 +6342,11431 +6343,11431 +6344,11431 +6345,11431 +6346,11431 +6347,11431 +6348,11431 +6349,11431 +6350,6885 +6351,9151 +6352,9822 +6353,12331 +6354,12332 +6355,12331 +6356,12331 +6357,8928 +6358,9150 +6359,11451 +6360,11453 +6361,24709 +6362,4823 +6363,24712 +6364,24712 +6365,20618 +6366,20731 +6367,20619 +6368,1102 +6369,1102 +6370,18114 +6371,15771 +6372,15748 +6373,15788 +6374,6371 +6375,11431 +6376,11431 +6377,11431 +6378,23139 +6379,16922 +6380,1673 +6381,27549 +6382,16916 +6383,18483 +6384,11518 +6385,11519 +6386,25805 +6387,25800 +6388,25806 +6389,15517 +6390,15274 +6391,15274 +6392,11533 +6393,16642 +6394,11571 +6395,13677 +6396,14602 +6397,14603 +6398,17118 +6399,14599 +6400,11559 +6401,1102 +6402,25812 +6403,25808 +6404,25815 +6405,14625 +6406,14617 +6407,14618 +6408,17061 +6409,17121 +6410,17009 +6411,25882 +6412,25883 +6413,25886 +6414,9846 +6415,12653 +6416,14651 +6417,23091 +6418,14656 +6419,14676 +6420,14672 +6421,14671 +6422,21297 +6423,26077 +6424,26082 +6425,26076 +6426,26073 +6427,12676 +6428,14684 +6429,15910 +6430,18471 +6431,16986 +6432,23039 +6433,21291 +6434,18690 +6435,11766 +6436,6521 +6437,11780 +6438,11791 +6439,11791 +6440,12643 +6441,11825 +6442,15027 +6443,11164 +6444,11889 +6445,6629 +6446,2593 +6447,22805 +6448,20349 +6449,23001 +6450,8603 +6451,11926 +6452,2885 +6453,2885 +6454,8117 +6455,18706 +6456,2885 +6457,3257 +6458,11932 +6459,11935 +6460,11945 +6461,11946 +6462,11449 +6463,9846 +6464,12926 +6465,12693 +6466,23010 +6467,11952 +6468,11960 +6469,20652 +6470,8913 +6471,3668 +6472,24741 +6473,17091 +6474,1102 +6475,1102 +6476,15274 +6477,11997 +6478,11999 +6479,12018 +6480,9541 +6481,12068 +6482,12070 +6486,10043 +6487,20931 +6488,12221 +6489,7798 +6490,7798 +6491,7798 +6492,7798 +6493,7798 +6494,7798 +6495,7798 +6496,7798 +6497,7798 +6498,12222 +6499,12222 +6500,12222 +6501,12222 +6502,12282 +6503,12670 +6504,20116 +6505,12286 +6506,22680 +6507,22679 +6508,25948 +6509,22678 +6510,22682 +6511,16698 +6512,16813 +6513,16565 +6514,23104 +6515,16562 +6516,12328 +6517,17124 +6518,16991 +6519,8437 +6520,23052 +6521,6717 +6522,11451 +6523,14259 +6524,12370 +6525,12371 +6526,12372 +6527,12422 +6528,16567 +6529,12410 +6530,18098 +6531,19110 +6532,12423 +6533,12425 +6534,12434 +6535,12435 +6536,14739 +6537,12439 +6538,16522 +6539,14735 +6540,14738 +6541,14737 +6542,15267 +6543,14736 +6544,12328 +6545,25755 +6546,25759 +6547,25756 +6548,25757 +6549,25953 +6550,25758 +6551,6931 +6552,14731 +6553,14730 +6554,14729 +6555,23006 +6556,14728 +6557,19184 +6558,17113 +6559,2210 +6560,25955 +6561,14551 +6562,16881 +6563,14750 +6564,23109 +6565,16793 +6566,16470 +6567,14748 +6568,14746 +6569,18120 +6570,14752 +6571,18493 +6572,18701 +6573,25760 +6574,12456 +6575,25967 +6576,25762 +6577,25761 +6578,12453 +6579,25764 +6580,25763 +6581,17127 +6582,14759 +6583,3657 +6584,14758 +6585,23053 +6586,14755 +6587,14757 +6588,17195 +6589,9833 +6590,25793 +6591,25797 +6592,25798 +6593,25993 +6594,25795 +6595,25794 +6596,25796 +6597,25799 +6598,18449 +6599,26014 +6600,14774 +6601,14769 +6602,17167 +6603,14773 +6604,23022 +6605,14775 +6606,12503 +6607,14776 +6608,27542 +6609,16862 +6610,16878 +6611,16866 +6612,19921 +6613,16869 +6614,23138 +6615,16864 +6616,16863 +6617,4904 +6618,8043 +6619,12547 +6620,7798 +6621,12556 +6622,21554 +6623,12328 +6624,12565 +6625,12567 +6626,12567 +6627,12595 +6628,16952 +6629,23141 +6630,6274 +6631,20336 +6632,15156 +6633,12610 +6634,6381 +6635,6400 +6636,12621 +6637,6340 +6638,6340 +6639,18107 +6640,12625 +6641,20167 +6642,12632 +6643,18535 +6644,24697 +6645,24694 +6646,24704 +6647,24711 +6648,12328 +6649,12328 +6650,12328 +6651,18652 +6652,12735 +6653,12992 +6654,12738 +6655,12736 +6656,12746 +6657,12780 +6658,12643 +6659,12777 +6660,13001 +6661,1102 +6662,11462 +6663,15274 +6664,12782 +6665,12783 +6666,12784 +6667,23110 +6668,12788 +6669,9833 +6670,12794 +6671,12795 +6672,15274 +6673,9832 +6674,9832 +6675,12804 +6676,12805 +6677,21018 +6678,14434 +6679,22241 +6680,12857 +6681,20593 +6682,12858 +6683,12863 +6684,12866 +6685,11473 +6686,15492 +6687,22217 +6688,17277 +6689,20325 +6690,17142 +6691,12880 +6692,25597 +6693,6486 +6694,18454 +6695,9852 +6696,20650 +6697,5116 +6698,9834 +6706,9834 +6707,9834 +6708,9834 +6709,12924 +6710,1102 +6711,9834 +6712,12925 +6713,12928 +6714,18062 +6715,7064 +6716,15274 +6717,8931 +6718,7411 +6719,17134 +6720,28984 +6721,12934 +6722,12935 +6723,4841 +6724,9834 +6725,18469 +6726,16716 +6727,17067 +6728,9834 +6729,20821 +6730,12944 +6731,12945 +6732,12943 +6733,12948 +6734,15274 +6735,15274 +6736,15274 +6737,16852 +6738,19126 +6739,20666 +6740,12977 +6741,20177 +6742,12981 +6743,12984 +6744,16956 +6745,23069 +6746,18507 +6747,12986 +6748,9836 +6749,9823 +6750,12987 +6751,23126 +6752,16988 +6753,12989 +6754,1183 +6755,12991 +6756,12991 +6757,9837 +6766,13002 +6767,12863 +6768,13005 +6769,13005 +6770,13006 +6771,13005 +6772,13005 +6773,13011 +6774,13012 +6775,13005 +6776,13005 +6777,13006 +6778,13005 +6779,13005 +6780,13023 +6781,18100 +6782,13024 +6783,13025 +6784,13026 +6785,7637 +6786,13043 +6787,13046 +6788,17122 +6789,23096 +6790,6012 +6791,17227 +6792,13052 +6793,13053 +6794,17187 +6795,13056 +6796,13057 +6797,21014 +6798,13060 +6799,13061 +6800,13063 +6801,13077 +6802,20010 +6803,15430 +6804,19707 +6805,13082 +6806,13084 +6807,557 +6808,13063 +6809,7425 +6810,13085 +6811,13086 +6812,13100 +6826,6658 +6827,13110 +6828,18476 +6829,20075 +6830,18607 +6831,20292 +6832,23097 +6833,13115 +6834,13116 +6835,13117 +6836,16368 +6837,13119 +6838,9396 +6839,13121 +6840,13122 +6841,4984 +6842,7798 +6843,7922 +6844,18060 +6845,13124 +6846,13125 +6847,13125 +6848,13918 +6849,18054 +6850,13128 +6851,19800 +6852,13129 +6866,13144 +6886,16752 +6887,4811 +6888,18052 +6889,18046 +6890,4113 +6891,811 +6892,1102 +6893,13290 +6894,13291 +6895,13292 +6896,30610 +6897,12547 +6898,21597 +6899,21597 +6900,13337 +6901,23002 +6902,17001 +6903,13357 +6904,20575 +6905,22222 +6906,13361 +6907,16903 +6908,16723 +6909,20185 +6910,13365 +6911,16931 +6912,13370 +6913,13458 +6914,1695 +6915,6564 +6916,13005 +6926,13430 +6927,13433 +6928,13085 +6929,7798 +6930,13435 +6931,2757 +6946,13455 +6947,13710 +6948,6418 +6949,13710 +6950,13710 +6951,13709 +6952,7169 +6953,13466 +6966,19135 +6967,20162 +6968,19771 +6969,20400 +6970,21475 +6971,15327 +6972,22480 +6973,22481 +6974,22482 +6975,22734 +6976,25079 +6977,22731 +6978,19133 +6979,19274 +6980,20601 +6981,20606 +6982,19652 +6983,19773 +6984,20159 +6985,20163 +6986,19495 +6987,6628 +6988,12328 +6989,1150 +6990,13490 +6991,9116 +6992,13493 +6993,13494 +6994,13495 +6995,13703 +6996,13497 +6997,7798 +6998,13500 +6999,2757 +7000,16919 +7001,20824 +7002,4743 +7003,13508 +7004,15042 +7005,6440 +7006,2757 +7007,6340 +7026,17119 +7027,17148 +7046,13649 +7047,17146 +7048,15283 +7049,17143 +7050,15863 +7051,8721 +7052,13664 +7053,23092 +7054,17133 +7055,17112 +7056,15243 +7057,28729 +7058,13671 +7059,13672 +7060,17132 +7061,13678 +7062,13679 +7063,12675 +7064,13681 +7065,13684 +7066,13685 +7067,13686 +7068,20874 +7069,23755 +7070,4136 +7071,13692 +7072,3668 +7073,6002 +7074,7048 +7075,8560 +7076,23754 +7077,21583 +7078,23287 +7079,8025 +7080,13689 +7081,13687 +7082,23284 +7083,7279 +7084,15274 +7085,15274 +7086,15274 +7087,1102 +7088,1102 +7089,1102 +7090,15274 +7091,15274 +7092,15274 +7093,15274 +7094,13711 +7095,16810 +7096,19573 +7097,2474 +7098,3429 +7099,13713 +7100,13715 +7101,13714 +7106,16959 +7107,13758 +7108,18661 +7109,18508 +7110,8720 +7111,14986 +7112,14657 +7113,14678 +7114,1102 +7115,19204 +7116,20602 +7117,19776 +7118,20161 +7119,15507 +7120,22730 +7126,13783 +7127,7171 +7128,13785 +7129,13484 +7130,15288 +7131,13799 +7132,3541 +7133,13011 +7134,13799 +7135,13806 +7146,8735 +7147,13829 +7148,31201 +7166,13848 +7167,6471 +7168,13849 +7169,13848 +7170,13853 +7171,13585 +7186,6081 +7187,16999 +7188,13863 +7189,20622 +7190,20623 +7191,16367 +7192,1102 +7206,18059 +7207,18057 +7208,13885 +7209,13884 +7226,13903 +7227,13905 +7228,13906 +7229,11563 +7230,19610 +7231,7695 +7246,12925 +7247,11449 +7248,8801 +7249,7162 +7266,11181 +7267,18597 +7268,18059 +7269,18057 +7270,13992 +7271,13998 +7272,7143 +7273,14000 +7274,11181 +7275,12328 +7276,23035 +7277,14001 +7278,21330 +7279,1816 +7280,17232 +7281,14002 +7282,3248 +7283,23010 +7284,3992 +7285,14004 +7286,6646 +7287,6629 +7288,1102 +7289,1102 +7290,1102 +7291,1695 +7292,14006 +7293,14007 +7294,14008 +7295,6645 +7296,14019 +7297,21604 +7298,20425 +7299,22021 +7306,14023 +7307,18098 +7308,12328 +7309,8927 +7326,19132 +7327,20398 +7328,19649 +7329,20160 +7330,2632 +7331,26046 +7332,15003 +7333,7276 +7334,16523 +7335,12482 +7336,14069 +7337,24646 +7338,9833 +7339,9835 +7340,9832 +7341,9837 +7342,14432 +7343,7602 +7344,21604 +7345,14305 +7346,14306 +7347,14307 +7348,6735 +7349,17230 +7350,16566 +7351,16563 +7352,14316 +7353,16599 +7354,16605 +7355,16604 +7356,23100 +7357,15906 +7358,2057 +7359,17225 +7360,15274 +7361,1102 +7362,1102 +7363,1102 +7364,1102 +7365,14326 +7366,16601 +7367,16606 +7368,16600 +7369,16607 +7370,16603 +7371,21322 +7372,2585 +7373,14777 +7374,14781 +7375,25674 +7376,18062 +7377,23030 +7378,14803 +7386,14831 +7387,14832 +7388,9134 +7389,3426 +7390,17215 +7391,28734 +7392,6646 +7406,6755 +7407,21900 +7408,11270 +7409,19043 +7410,14803 +7411,23043 +7412,21902 +7413,21298 +7414,21901 +7415,14950 +7416,26032 +7417,26030 +7418,26034 +7419,26043 +7420,30091 +7421,26036 +7422,26037 +7423,26039 +7424,26040 +7425,3920 +7426,9832 +7427,9853 +7428,26371 +7429,14646 +7430,14990 +7431,14644 +7432,16825 +7433,16651 +7434,14645 +7435,14589 +7436,15175 +7437,14647 +7438,14648 +7439,14995 +7440,15001 +7441,21311 +7442,14993 +7443,15000 +7444,14996 +7445,5414 +7446,23062 +7447,14997 +7448,14999 +7449,15274 +7450,1102 +7451,1102 +7452,1102 +7453,1102 +7454,25862 +7455,25868 +7456,30092 +7457,25865 +7458,25860 +7459,25872 +7460,26064 +7461,25861 +7462,25866 +7463,4403 +7464,11180 +7465,26065 +7466,9832 +7467,9853 +7468,15005 +7469,15015 +7470,15911 +7471,15008 +7472,13051 +7473,15014 +7474,15178 +7475,15410 +7476,15012 +7477,17099 +7478,15020 +7479,15307 +7480,15018 +7481,15017 +7482,17194 +7483,23057 +7484,15023 +7485,15016 +7486,22559 +7487,25820 +7488,25824 +7489,25819 +7490,25817 +7491,25822 +7492,26018 +7493,25818 +7494,25821 +7495,18451 +7496,18697 +7497,9850 +7498,13025 +7499,15123 +7500,8031 +7506,15150 +7507,22923 +7508,22923 +7509,22958 +7510,15201 +7511,15223 +7512,15232 +7513,25078 +7514,25076 +7515,25072 +7516,15274 +7517,15398 +7518,15400 +7519,15401 +7520,15909 +7521,15405 +7522,15409 +7523,15402 +7524,15406 +7525,15407 +7526,16838 +7527,17094 +7528,15416 +7529,21292 +7530,15415 +7531,15412 +7532,15417 +7533,23016 +7534,15413 +7535,15411 +7536,26099 +7537,18775 +7538,26087 +7539,3193 +7540,26098 +7541,26089 +7542,26090 +7543,26091 +7544,26097 +7545,26088 +7546,6926 +7547,9846 +7548,15420 +7549,14437 +7550,9854 +7551,15421 +7552,9832 +7553,15422 +7554,15424 +7555,6098 +7556,21598 +7557,15427 +7558,15428 +7559,11919 +7560,1102 +7561,1102 +7566,16204 +7567,15471 +7568,7098 +7569,16203 +7586,7245 +7587,15510 +7606,15721 +7607,20920 +7608,18494 +7609,15564 +7610,21596 +7611,15561 +7612,15576 +7613,1102 +7626,15583 +7627,15590 +7628,13125 +7629,362 +7646,11448 +7666,15685 +7667,8752 +7668,4049 +7669,7045 +7670,1659 +7671,18707 +7672,6014 +7673,9854 +7674,15692 +7675,9717 +7676,18091 +7677,15704 +7678,1102 +7679,7886 +7680,3563 +7681,18519 +7682,6555 +7683,15720 +7684,15800 +7685,15725 +7686,9834 +7687,15726 +7688,15731 +7689,20172 +7690,15753 +7691,16823 +7706,15786 +7707,15795 +7708,20825 +7709,15824 +7710,20360 +7711,12673 +7712,4488 +7713,15806 +7714,20318 +7715,9725 +7716,15685 +7717,22221 +7718,15809 +7719,15811 +7720,16224 +7721,19735 +7722,6522 +7723,21252 +7724,16223 +7725,15817 +7726,18751 +7727,17197 +7728,19109 +7729,15821 +7730,15466 +7731,15420 +7732,15825 +7733,15828 +7734,3410 +7735,13489 +7736,5224 +7737,1246 +7738,16815 +7739,15866 +7740,7366 +7741,15867 +7742,1102 +7746,7899 +7747,18792 +7748,4405 +7749,21595 +7750,13673 +7751,15886 +7752,19670 +7753,19371 +7754,15889 +7755,15890 +7756,15894 +7757,20316 +7758,22238 +7759,15897 +7760,21404 +7761,19210 +7766,29438 +7767,29434 +7768,29436 +7769,29439 +7770,29435 +7771,29437 +7786,15938 +7787,18455 +7806,15963 +7807,15964 +7808,15965 +7809,15966 +7810,15794 +7811,4836 +7812,4829 +7813,1659 +7826,15990 +7846,7886 +7847,1438 +7848,18500 +7866,16023 +7867,16024 +7868,9288 +7869,16028 +7870,18721 +7871,6357 +7872,7411 +7886,4049 +7887,16052 +7888,9854 +7906,16283 +7907,16065 +7908,1134 +7909,13496 +7910,4777 +7911,20657 +7912,4719 +7913,16081 +7914,16080 +7915,16084 +7916,16086 +7917,16087 +7918,16089 +7919,16091 +7920,3409 +7921,16092 +7922,16093 +7923,16100 +7924,6985 +7925,16102 +7926,16103 +7927,16105 +7928,16106 +7929,23538 +7930,16109 +7931,16110 +7932,16111 +7933,16113 +7934,16115 +7935,16117 +7936,16118 +7937,16119 +7938,16124 +7939,24393 +7940,8533 +7941,16126 +7942,5639 +7943,16128 +7944,20221 +7945,5223 +7946,15887 +7947,16130 +7948,16131 +7949,16133 +7950,16134 +7951,17183 +7952,16136 +7953,16137 +7954,19748 +7955,20071 +7956,16146 +7957,16147 +7958,19272 +7959,22234 +7960,23264 +7961,25053 +7962,2460 +7963,16184 +7964,24676 +7965,24686 +7966,24681 +7967,16189 +7968,16190 +7969,16205 +7970,16206 +7971,16209 +7972,16210 +7973,16211 +7974,22193 +7975,15274 +7976,1102 +7977,1102 +7978,15274 +7979,15274 +7980,15274 +7981,15274 +7982,15274 +7983,15274 +7984,15274 +7985,15274 +7986,15274 +7987,15274 +7988,15274 +7989,15274 +7990,15274 +7991,1102 +7992,15274 +7993,15274 +7994,15274 +7995,811 +7996,16548 +7997,41844 +8006,20326 +8007,6496 +8008,7045 +8009,17923 +8026,18722 +8027,18718 +8028,1102 +8029,15274 +8030,1301 +8046,6672 +8047,18719 +8048,16300 +8049,6539 +8050,6851 +8051,16299 +8052,17922 +8053,12410 +8066,16303 +8067,5998 +8068,5998 +8069,5998 +8070,3029 +8071,6093 +8072,9154 +8073,16321 +8074,16322 +8075,6399 +8076,21203 +8077,18078 +8078,18080 +8079,21794 +8080,28398 +8081,28399 +8082,28404 +8083,9388 +8084,28401 +8085,28402 +8086,28403 +8087,9731 +8088,28395 +8089,28396 +8090,25829 +8091,28397 +8092,15340 +8093,25833 +8094,28394 +8095,16325 +8106,16631 +8107,16634 +8108,16636 +8109,23107 +8110,16633 +8111,16637 +8112,16632 +8113,19901 +8114,21459 +8115,16638 +8116,16920 +8117,14701 +8118,14700 +8119,28737 +8120,23038 +8121,14698 +8122,21300 +8123,14697 +8124,14696 +8125,26103 +8126,26105 +8127,26118 +8128,26107 +8129,26108 +8130,26109 +8131,26115 +8132,26110 +8133,26114 +8134,26120 +8135,27339 +8136,1438 +8137,27329 +8138,27330 +8139,27331 +8140,27332 +8141,27334 +8142,27338 +8143,27335 +8144,27336 +8146,3146 +8147,16453 +8148,9660 +8149,16456 +8150,6396 +8151,1249 +8152,2533 +8153,7346 +8154,2874 +8155,16464 +8156,27345 +8157,27340 +8158,27341 +8159,27342 +8160,27343 +8161,27347 +8162,27344 +8163,27346 +8164,1069 +8165,22838 +8166,4433 +8167,21363 +8168,19531 +8169,8952 +8170,16474 +8171,8794 +8172,7354 +8173,26389 +8174,17213 +8175,16482 +8176,16483 +8177,18354 +8178,26591 +8179,18343 +8180,18350 +8181,20728 +8182,20741 +8183,18355 +8184,18346 +8185,16487 +8186,20851 +8187,16488 +8188,20735 +8189,11598 +8190,20081 +8191,16492 +8192,16497 +8193,17151 +8194,19721 +8195,23049 +8196,26572 +8197,16505 +8198,16506 +8199,18342 +8200,16508 +8201,25711 +8202,16510 +8203,16513 +8204,16515 +8205,16516 +8206,16517 +8207,16519 +8208,16520 +8209,16521 +8210,25691 +8211,25689 +8212,18935 +8213,4389 +8214,25693 +8215,23081 +8216,24297 +8217,21331 +8218,1281 +8223,20073 +8224,22232 +8225,20076 +8226,16539 +8243,16547 +8244,18704 +8245,17211 +8246,16766 +8247,17229 +8248,17238 +8249,17216 +8250,17234 +8251,16764 +8252,17236 +8253,17228 +8254,18728 +8255,15411 +8256,17258 +8257,17259 +8258,18470 +8259,23063 +8260,17263 +8261,17321 +8262,17265 +8263,17267 +8264,28451 +8265,26204 +8266,26228 +8267,28726 +8268,26210 +8269,28667 +8270,26220 +8271,21694 +8272,26217 +8273,27373 +8274,27372 +8275,26232 +8276,27374 +8277,27375 +8278,27376 +8279,27379 +8280,27377 +8281,27378 +8282,18790 +8283,17251 +8284,17256 +8285,17262 +8286,13984 +8287,17255 +8288,17271 +8289,17252 +8290,17276 +8291,17261 +8292,17274 +8293,17318 +8294,17317 +8295,17316 +8296,17312 +8297,23066 +8298,17314 +8299,17269 +8300,17313 +8301,17319 +8302,26313 +8303,26314 +8304,26323 +8305,26316 +8306,26312 +8307,26310 +8308,26315 +8309,26317 +8310,26321 +8311,27394 +8312,27389 +8313,26324 +8314,27390 +8315,27391 +8316,27392 +8317,27395 +8318,27393 +8319,27396 +8320,27571 +8323,16598 +8343,12105 +8344,16464 +8345,45176 +8346,16678 +8347,16731 +8348,17226 +8349,8660 +8350,224 +8363,16456 +8364,1208 +8365,1208 +8366,1208 +8367,16729 +8368,21470 +8383,7798 +8384,1102 +8385,1102 +8386,15274 +8387,15274 +8388,1102 +8389,15274 +8390,15274 +8391,1116 +8392,1438 +8393,16776 +8394,10923 +8395,15274 +8396,3759 +8397,15274 +8398,15274 +8399,15274 +8400,15274 +8401,15274 +8402,15274 +8403,1102 +8404,1102 +8405,1102 +8406,1102 +8407,1102 +8408,1102 +8409,1102 +8410,16801 +8411,18114 +8412,16803 +8423,16836 +8424,16837 +8425,6703 +8426,19570 +8427,16860 +8428,16861 +8429,6703 +8430,18071 +8431,7403 +8432,16325 +8443,18725 +8444,7737 +8463,16161 +8483,18085 +8484,18574 +8485,20629 +8486,20629 +8487,20629 +8488,20629 +8489,20629 +8490,20629 +8491,20629 +8492,17292 +8493,17288 +8494,17292 +8495,17292 +8496,17292 +8497,17284 +8498,44666 +8499,20655 +8500,19091 +8501,19091 +8502,12333 +8503,12333 +8504,12334 +8505,12334 +8506,17329 +8507,17329 +8508,11863 +8523,2592 +8524,14993 +8525,7798 +8526,17391 +8527,2592 +8528,17397 +8529,17403 +8543,15851 +8544,17457 +8545,17458 +8546,6412 +8547,6270 +8548,17461 +8563,17785 +8564,18047 +8583,17786 +8584,18717 +8585,15718 +8586,17494 +8587,18723 +8588,17494 +8589,17494 +8590,17494 +8591,17494 +8592,17494 +8593,14326 +8594,7695 +8595,17785 +8603,15734 +8623,18632 +8624,17599 +8625,17600 +8626,17602 +8627,17606 +8628,17606 +8629,17606 +8630,17607 +8631,17608 +8632,17608 +8633,17607 +8643,18050 +8644,18050 +8645,18049 +8646,18049 +8647,12331 +8663,17655 +8683,6410 +8684,18079 +8685,8381 +8686,17685 +8687,7744 +8688,6511 +8703,17776 +8704,18632 +8705,18632 +8706,7841 +8707,8923 +8708,17788 +8723,3918 +8724,17809 +8743,1317 +8744,1317 +8745,1317 +8746,18416 +8747,21298 +8748,28389 +8749,18414 +8750,21312 +8751,28393 +8752,28391 +8753,18418 +8754,18422 +8755,28847 +8756,1317 +8757,1317 +8758,1317 +8759,1317 +8760,1317 +8761,1317 +8762,1317 +8763,1317 +8764,1317 +8765,1317 +8766,926 +8767,1317 +8768,1317 +8769,1317 +8770,1317 +8771,1317 +8772,1317 +8773,1317 +8774,1317 +8775,1317 +8776,1317 +8777,1317 +8778,1317 +8779,1317 +8780,1317 +8781,1317 +8782,1317 +8783,1317 +8784,1317 +8785,1317 +8786,1317 +8787,1317 +8788,1317 +8789,1317 +8790,1317 +8791,1317 +8792,1317 +8793,1317 +8794,1317 +8795,1317 +8796,1317 +8797,1317 +8798,1317 +8799,1317 +8800,1317 +8801,1317 +8802,1103 +8803,1103 +8804,1103 +8805,1103 +8806,1103 +8807,1103 +8808,1103 +8809,1103 +8810,1103 +8811,1103 +8812,1103 +8813,1103 +8814,1103 +8815,1103 +8816,1103 +8817,1103 +8818,1103 +8819,1103 +8820,1103 +8821,1103 +8822,1103 +8823,1103 +8824,1103 +8825,1103 +8826,1103 +8827,48394 +8828,1103 +8829,1103 +8830,1103 +8831,19493 +8832,1103 +8833,1103 +8834,1103 +8835,1103 +8836,19498 +8837,1103 +8838,19492 +8839,19496 +8840,1103 +8841,1103 +8842,1103 +8843,1103 +8844,1103 +8845,17871 +8846,19494 +8847,1103 +8848,1103 +8849,1103 +8850,1103 +8851,1103 +8852,1103 +8853,1103 +8854,1103 +8855,1103 +8856,1103 +8857,1103 +8858,1103 +8859,1103 +8860,1103 +8861,1103 +8862,1103 +8863,1103 +8864,1103 +8865,1103 +8866,1103 +8867,1103 +8868,1103 +8869,1103 +8870,1103 +8871,1103 +8872,1103 +8873,1103 +8874,1103 +8875,1103 +8876,1103 +8877,1103 +8878,1103 +8879,1103 +8880,1103 +8881,1103 +8882,1103 +8883,1103 +8884,1103 +8885,1103 +8886,1103 +8887,1103 +8888,1103 +8889,1103 +8890,1103 +8891,1103 +8892,1103 +8893,1103 +8894,1103 +8895,1103 +8896,1103 +8897,1103 +8898,1103 +8899,1103 +8900,1317 +8901,1317 +8902,1317 +8903,1317 +8904,1317 +8905,1317 +8906,1317 +8907,1317 +8908,1155 +8909,1155 +8910,1155 +8911,1155 +8912,1155 +8913,1155 +8914,1155 +8915,1155 +8916,1155 +8917,1155 +8918,1155 +8919,1155 +8920,1155 +8921,1155 +8922,1155 +8923,1288 +8924,6379 +8925,18077 +8926,13710 +8927,13710 +8928,13710 +8929,1155 +8930,1155 +8931,1155 +8932,21906 +8933,1155 +8934,1155 +8935,1155 +8936,1155 +8937,1155 +8938,1155 +8939,1155 +8940,1155 +8941,1155 +8942,1155 +8943,1155 +8944,1155 +8945,1155 +8946,1155 +8947,1155 +8948,17880 +8949,17882 +8950,6342 +8951,17883 +8952,4112 +8953,17881 +8954,1143 +8955,1143 +8956,2351 +8957,24718 +8958,1143 +8959,24718 +8960,1143 +8961,1143 +8962,1143 +8963,1143 +8964,1143 +8965,1143 +8966,1143 +8967,1143 +8968,1143 +8969,1143 +8970,1143 +8971,1143 +8972,1143 +8973,7373 +8974,1143 +8975,1143 +8976,1143 +8977,1143 +8978,1143 +8979,1143 +8980,1143 +8981,1143 +8982,1143 +8983,1143 +8984,13707 +8985,13707 +8986,1143 +8987,1143 +8988,1143 +8989,1143 +8990,1143 +8991,1143 +8992,1143 +8993,1143 +8994,1143 +8995,1143 +8996,1143 +8997,1143 +8998,1143 +8999,1143 +9000,1143 +9001,1143 +9002,1143 +9003,1143 +9004,1143 +9005,1143 +9006,1143 +9007,1143 +9008,1143 +9009,1143 +9010,1143 +9011,1143 +9012,1143 +9013,1143 +9014,1143 +9015,1143 +9016,1143 +9017,1143 +9018,1143 +9019,1143 +9020,1143 +9021,1143 +9022,1143 +9023,1143 +9024,1143 +9025,1143 +9026,1143 +9027,1143 +9028,1143 +9029,1143 +9030,926 +9031,1143 +9032,1143 +9033,1143 +9034,1143 +9035,1143 +9036,1215 +9037,5563 +9038,5563 +9039,5563 +9040,5563 +9041,5563 +9042,7430 +9043,5563 +9044,5563 +9045,5563 +9046,5563 +9047,5563 +9048,5563 +9049,5563 +9050,5563 +9051,5563 +9052,5563 +9053,5563 +9054,5563 +9055,5563 +9056,5563 +9057,5563 +9058,5563 +9059,5563 +9060,7397 +9061,7921 +9062,5563 +9063,5563 +9064,5563 +9065,5563 +9066,5563 +9067,5563 +9068,5563 +9069,5563 +9070,5563 +9071,5563 +9072,5563 +9073,5563 +9074,5563 +9075,5563 +9076,5563 +9077,5563 +9078,5563 +9079,5563 +9080,5563 +9081,5563 +9082,5563 +9083,5563 +9084,5563 +9085,5563 +9086,5563 +9087,5563 +9088,17889 +9089,5563 +9090,5563 +9091,5563 +9092,5563 +9093,5563 +9094,5563 +9095,5563 +9096,5563 +9097,5563 +9098,5563 +9099,5563 +9100,5563 +9101,5563 +9102,5563 +9103,5563 +9104,5563 +9105,5563 +9123,5563 +9124,5563 +9125,5563 +9126,5563 +9127,5563 +9128,5563 +9129,5563 +9130,5563 +9131,5563 +9132,5563 +9133,5563 +9134,5563 +9135,5563 +9136,5563 +9137,5563 +9138,5563 +9139,5563 +9140,5563 +9141,5563 +9142,5563 +9143,5563 +9144,17893 +9145,5563 +9146,5563 +9147,5563 +9148,5563 +9149,8025 +9150,5563 +9151,5563 +9152,5563 +9153,7629 +9154,15714 +9155,17896 +9156,5563 +9157,5563 +9158,5563 +9159,5563 +9160,5563 +9161,5563 +9162,5563 +9163,5563 +9164,5563 +9165,5563 +9166,5563 +9167,5563 +9168,5563 +9169,5563 +9170,5563 +9171,5563 +9172,17898 +9173,17899 +9174,5563 +9175,5563 +9176,5563 +9177,5563 +9178,5563 +9179,3664 +9180,5563 +9181,5563 +9182,5563 +9183,5563 +9184,5563 +9185,5563 +9186,13709 +9187,17902 +9188,5563 +9189,17911 +9190,1246 +9191,1246 +9192,1246 +9193,1246 +9194,1246 +9195,1246 +9196,1246 +9197,4134 +9198,1246 +9199,1246 +9200,1246 +9201,1246 +9202,1246 +9203,1246 +9204,1246 +9205,1246 +9206,17904 +9207,1246 +9208,1246 +9209,1246 +9210,9731 +9211,1246 +9212,1246 +9213,1246 +9214,1246 +9215,1246 +9216,1246 +9217,1246 +9218,1246 +9219,1246 +9220,1246 +9221,1246 +9222,1246 +9223,1246 +9224,16325 +9225,1246 +9226,1246 +9227,1246 +9228,1246 +9229,1246 +9230,1246 +9231,1246 +9232,17904 +9233,15714 +9234,1399 +9235,3018 +9236,3029 +9237,18093 +9238,8923 +9239,17914 +9240,17916 +9241,17916 +9242,18204 +9243,17918 +9244,7922 +9245,18080 +9246,7038 +9247,3668 +9248,18720 +9249,6709 +9250,811 +9251,7695 +9252,7798 +9253,8927 +9254,1322 +9255,6688 +9256,18021 +9257,18022 +9258,1659 +9259,9860 +9260,18059 +9261,4690 +9262,17957 +9263,8556 +9264,24216 +9265,13100 +9266,3331 +9275,13025 +9276,12332 +9277,17922 +9278,18215 +9279,40635 +9280,40636 +9281,40634 +9282,40632 +9283,18057 +9284,18057 +9285,27362 +9286,27356 +9287,27358 +9288,27359 +9289,27357 +9290,25839 +9291,27360 +9292,27361 +9293,15274 +9294,15274 +9295,15274 +9296,6270 +9297,15274 +9298,15274 +9299,18010 +9300,1301 +9301,15274 +9302,6270 +9303,1301 +9304,1301 +9305,1301 +9306,18026 +9307,6506 +9308,18716 +9309,8931 +9310,18724 +9311,7798 +9312,18066 +9313,18067 +9314,18068 +9315,18070 +9316,40633 +9317,18069 +9318,8733 +9319,25592 +9320,7150 +9321,1288 +9322,8940 +9323,2616 +9324,15770 +9325,8556 +9326,13490 +9327,7356 +9328,18155 +9329,3029 +9330,18158 +9331,18164 +9332,18170 +9333,18172 +9334,18173 +9335,7161 +9336,18174 +9355,9835 +9356,18192 +9357,3233 +9358,18193 +9359,19756 +9360,18059 +9361,18059 +9362,224 +9363,18499 +9364,18057 +9365,18649 +9366,18256 +9367,15274 +9368,9837 +9369,3668 +9370,1093 +9371,16209 +9372,45946 +9375,21295 +9376,18254 +9377,18255 +9378,18257 +9379,20032 +9380,20031 +9381,21025 +9382,28734 +9383,18328 +9384,18264 +9385,20249 +9386,18268 +9387,18430 +9388,18427 +9389,18433 +9390,19056 +9391,18269 +9392,18270 +9393,11410 +9394,21301 +9395,18271 +9396,18274 +9397,22996 +9398,18361 +9399,26498 +9400,20553 +9401,7485 +9402,21403 +9403,18824 +9404,18826 +9405,18283 +9406,18284 +9407,12345 +9408,20274 +9409,18352 +9410,29000 +9411,6480 +9412,18298 +9413,19620 +9414,18434 +9415,18347 +9416,22233 +9417,18308 +9418,20193 +9419,18312 +9420,18322 +9421,8026 +9422,20663 +9423,18324 +9424,18325 +9425,22220 +9426,20556 +9427,22051 +9428,18331 +9429,18376 +9430,18333 +9431,18334 +9432,18378 +9433,18337 +9434,18338 +9435,18339 +9436,18359 +9437,3563 +9438,18712 +9439,11164 +9440,3563 +9441,11164 +9442,18712 +9443,6703 +9444,8296 +9445,18364 +9446,16538 +9447,18365 +9448,18366 +9449,19645 +9450,18367 +9451,926 +9452,20323 +9453,20595 +9454,14749 +9455,18371 +9456,18372 +9457,18373 +9458,18374 +9459,19298 +9460,13998 +9461,3258 +9462,9151 +9463,18021 +9464,7495 +9465,18377 +9466,18379 +9467,20311 +9468,11205 +9469,18382 +9470,18689 +9471,7425 +9472,13025 +9473,18386 +9474,18387 +9475,22209 +9476,18389 +9477,21514 +9478,25598 +9479,18392 +9480,22235 +9481,19309 +9482,20269 +9483,20786 +9484,22426 +9485,18403 +9486,19295 +9487,18405 +9488,18406 +9489,18408 +9490,18409 +9491,14765 +9492,18415 +9507,18426 +9508,18428 +9509,18429 +9510,18431 +9511,20029 +9512,22988 +9513,18438 +9514,20424 +9515,32153 +9516,18440 +9517,20348 +9518,18443 +9519,18444 +9520,20574 +9521,19307 +9522,18447 +9523,17898 +9527,20300 +9528,18473 +9529,12331 +9530,13122 +9531,18497 +9532,12331 +9533,224 +9534,18498 +9535,28169 +9536,18901 +9537,18499 +9538,224 +9539,12925 +9540,14006 +9541,16028 +9542,3093 +9543,22443 +9544,7629 +9545,6015 +9546,1301 +9547,7798 +9548,3093 +9549,3669 +9550,22443 +9551,6015 +9552,7798 +9553,7798 +9554,18500 +9555,3093 +9556,22443 +9557,6015 +9558,7629 +9559,1301 +9560,7798 +9561,18500 +9562,18500 +9563,22443 +9564,18500 +9565,7798 +9566,22443 +9567,6015 +9568,7798 +9569,1301 +9570,3093 +9571,3093 +9572,3669 +9573,7629 +9574,1301 +9575,18500 +9576,3093 +9577,7629 +9578,1301 +9579,7798 +9580,6015 +9581,7798 +9587,21202 +9588,224 +9589,18514 +9590,929 +9591,18517 +9592,18519 +9593,18524 +9594,18094 +9595,18525 +9596,18526 +9597,18527 +9598,19011 +9599,26948 +9600,18911 +9601,28142 +9602,20069 +9603,20432 +9604,18531 +9605,23134 +9606,18532 +9607,18533 +9608,7494 +9609,18991 +9618,18532 +9619,18532 +9620,18532 +9621,18532 +9622,14432 +9623,18883 +9624,28195 +9625,28317 +9626,19302 +9627,11410 +9628,2593 +9629,18568 +9630,4440 +9631,28339 +9632,28283 +9633,28281 +9634,18998 +9635,18915 +9636,4446 +9637,28252 +9638,28118 +9639,28194 +9640,18573 +9641,9854 +9642,9832 +9643,18822 +9644,18575 +9645,18906 +9646,28172 +9647,18577 +9648,28097 +9649,28294 +9650,28279 +9651,18578 +9652,17150 +9653,18579 +9654,28307 +9655,9833 +9656,18580 +9657,28426 +9658,19913 +9659,18583 +9660,28299 +9661,20900 +9662,28295 +9663,28315 +9664,18584 +9665,18586 +9666,28300 +9678,5233 +9679,22223 +9680,20475 +9681,7980 +9682,28284 +9683,20289 +9684,19130 +9685,19311 +9686,19746 +9687,28328 +9698,17186 +9699,28326 +9700,18633 +9701,18634 +9702,18635 +9703,28297 +9704,28296 +9705,17231 +9706,20975 +9718,13488 +9719,13488 +9738,1262 +9739,1262 +9740,1262 +9741,1262 +9742,14710 +9743,27532 +9744,14705 +9745,27533 +9746,14706 +9747,14711 +9748,18883 +9749,27529 +9750,19034 +9751,19033 +9752,17169 +9753,18469 +9754,23034 +9755,19032 +9756,19030 +9757,19029 +9758,22683 +9759,22684 +9760,22685 +9761,25960 +9762,22686 +9763,22687 +9764,18823 +9765,22688 +9766,25947 +9767,25946 +9768,25939 +9769,28023 +9770,23106 +9771,25941 +9772,25942 +9773,25944 +9774,25949 +9775,28177 +9776,16981 +9777,28427 +9778,20826 +9779,28433 +9780,28428 +9781,28431 +9782,28430 +9783,13011 +9784,6987 +9785,25776 +9786,25978 +9787,13484 +9788,25775 +9789,3541 +9790,18657 +9791,27751 +9792,16881 +9793,14736 +9794,27752 +9795,27753 +9796,27754 +9797,27755 +9798,18120 +9799,28477 +9800,27756 +9801,6760 +9802,27761 +9803,27760 +9804,1685 +9805,23108 +9806,2358 +9807,27759 +9808,691 +9809,27758 +9810,6869 +9811,25772 +9812,25975 +9813,25773 +9814,25771 +9815,697 +9816,26121 +9817,25774 +9818,1019 +9819,27860 +9820,27861 +9821,27857 +9822,27858 +9823,10508 +9824,27855 +9825,27853 +9826,27856 +9827,14936 +9828,11581 +9829,28482 +9830,6274 +9831,27768 +9832,27766 +9833,6772 +9834,27764 +9835,11580 +9836,27769 +9837,27783 +9838,27779 +9839,27778 +9840,27777 +9841,27770 +9842,27776 +9843,26060 +9844,28424 +9845,28423 +9846,28418 +9847,15236 +9848,28422 +9849,16638 +9850,12980 +9851,28419 +9852,28425 +9853,28421 +9854,14068 +9855,11956 +9856,28734 +9857,18930 +9858,18488 +9859,26550 +9860,23004 +9861,18929 +9862,14635 +9863,8098 +9864,25980 +9865,25786 +9866,25787 +9867,26251 +9868,25788 +9869,25784 +9870,25991 +9871,26249 +9872,25790 +9873,25988 +9874,28064 +9875,26470 +9876,28088 +9877,28065 +9878,28067 +9879,28057 +9880,28062 +9881,28068 +9882,21603 +9883,28061 +9884,28074 +9885,18904 +9886,3606 +9887,18903 +9888,20873 +9889,18921 +9890,23023 +9891,17129 +9892,18912 +9893,27807 +9894,3169 +9895,27787 +9896,27788 +9897,27784 +9898,27794 +9899,25911 +9900,27791 +9901,27792 +9902,27789 +9903,26163 +9904,27790 +9905,28411 +9906,28415 +9907,11548 +9908,28412 +9909,28410 +9910,28413 +9911,28416 +9912,28409 +9913,28417 +9914,18714 +9915,28414 +9916,17115 +9917,18937 +9918,25940 +9919,23073 +9920,18936 +9921,19010 +9922,18935 +9923,18939 +9924,18934 +9925,18938 +9926,25930 +9927,25931 +9928,25932 +9929,25938 +9930,25933 +9931,25928 +9932,25937 +9933,25934 +9934,25935 +9935,18819 +9936,28010 +9937,16936 +9938,15040 +9939,17130 +9940,27799 +9941,27796 +9942,14613 +9943,27800 +9944,27801 +9945,13664 +9946,28972 +9947,14702 +9948,18944 +9949,18945 +9950,18943 +9951,23018 +9952,18946 +9953,11275 +9954,18947 +9955,18951 +9956,26181 +9957,26183 +9958,26234 +9959,26202 +9960,26185 +9961,26180 +9962,26188 +9963,26200 +9964,26191 +9965,26194 +9966,27348 +9967,27351 +9968,27352 +9969,27511 +9970,27354 +9971,27355 +9972,27350 +9973,27349 +9974,18815 +9978,21296 +9998,24352 +9999,24354 +10000,6338 +10001,19141 +10002,19061 +10003,18835 +10004,24951 +10005,6338 +10006,18837 +10007,19114 +10008,41463 +10009,16764 +10010,15015 +10011,18889 +10018,19111 +10019,18999 +10020,18886 +10021,18949 +10022,16065 +10023,19055 +10024,18860 +10025,41842 +10026,21154 +10027,18865 +10028,18866 +10029,19113 +10030,18872 +10031,19051 +10032,18877 +10033,18879 +10034,13115 +10035,13117 +10036,13116 +10037,18861 +10038,18882 +10039,13051 +10040,13119 +10041,19000 +10042,14606 +10043,20209 +10044,18933 +10045,14450 +10046,16853 +10047,19009 +10048,18914 +10049,20472 +10050,1282 +10051,4056 +10052,18916 +10053,19142 +10054,18924 +10055,18923 +10056,18925 +10057,28158 +10058,28151 +10059,28124 +10060,28125 +10061,44716 +10062,29002 +10063,28123 +10064,28140 +10065,28165 +10066,28155 +10067,19019 +10068,19013 +10069,19014 +10070,19012 +10071,23060 +10072,19017 +10073,21309 +10074,19018 +10075,19020 +10076,19725 +10077,26327 +10078,20972 +10079,26331 +10080,26328 +10081,19718 +10082,26326 +10083,26330 +10084,19720 +10085,26329 +10086,27363 +10087,27364 +10088,27365 +10089,27370 +10090,27366 +10091,27367 +10092,27371 +10093,27432 +10094,27368 +10095,27600 +10096,27601 +10097,27606 +10098,27607 +10099,27602 +10100,27605 +10101,27598 +10102,27609 +10103,27614 +10104,27599 +10105,27716 +10106,27718 +10107,27719 +10108,27721 +10109,27717 +10110,27726 +10111,28590 +10112,27731 +10113,27733 +10118,26291 +10119,26297 +10120,26304 +10121,26293 +10122,26295 +10123,26303 +10124,19708 +10125,26301 +10126,26289 +10127,27426 +10128,27427 +10129,27428 +10130,27429 +10131,27425 +10132,19759 +10133,27430 +10134,27431 +10135,27628 +10136,27630 +10137,27633 +10138,27631 +10139,28852 +10140,27639 +10141,27629 +10142,27640 +10143,27645 +10144,27647 +10145,18974 +10146,27741 +10147,27740 +10148,27743 +10149,27745 +10150,27746 +10151,27739 +10152,18962 +10153,27748 +10154,26127 +10155,26129 +10156,26122 +10157,26123 +10158,26152 +10159,26141 +10160,26139 +10161,26125 +10162,26130 +10163,23490 +10164,27407 +10165,29014 +10166,27411 +10167,27405 +10168,27408 +10169,27413 +10170,27414 +10171,27406 +10172,28109 +10173,28082 +10174,23136 +10175,44717 +10176,28083 +10177,28084 +10178,28112 +10179,28080 +10180,28079 +10181,28078 +10182,19002 +10183,6762 +10184,4382 +10185,23042 +10186,19005 +10187,27809 +10188,17137 +10189,19008 +10190,19001 +10191,26155 +10192,26160 +10193,26156 +10194,26173 +10195,26176 +10196,26162 +10197,26158 +10198,26172 +10199,26163 +10200,26164 +10201,27400 +10202,27402 +10203,27397 +10204,27388 +10205,27398 +10206,27399 +10207,27404 +10208,27401 +10209,27403 +10210,27867 +10211,24291 +10212,15214 +10213,27870 +10214,27868 +10215,28992 +10216,27842 +10217,25198 +10218,27866 +10219,28851 +10220,18977 +10221,18980 +10222,18979 +10223,18978 +10224,23048 +10225,18981 +10226,18985 +10227,18982 +10228,18983 +10229,26265 +10230,26267 +10231,26278 +10232,26269 +10233,26270 +10234,26264 +10235,26274 +10236,26272 +10237,26273 +10238,27380 +10239,27385 +10240,27384 +10241,27387 +10242,27381 +10243,27382 +10244,27383 +10245,27386 +10246,27821 +10247,4272 +10248,16892 +10249,26126 +10250,27824 +10251,16642 +10252,27822 +10253,27823 +10254,28479 +10255,27830 +10256,27847 +10257,27844 +10258,27850 +10259,27846 +10260,27845 +10261,29051 +10262,27843 +10263,27849 +10264,8664 +10265,26239 +10266,26241 +10267,26259 +10268,26244 +10269,26245 +10270,26237 +10271,27806 +10272,27804 +10273,26248 +10274,27805 +10275,27416 +10276,27419 +10277,29003 +10278,27418 +10279,27423 +10280,13206 +10281,27422 +10282,27420 +10283,7357 +10284,12105 +10285,18597 +10286,18953 +10287,16470 +10288,18976 +10289,27862 +10290,983 +10298,9832 +10299,9853 +10300,15274 +10301,15274 +10302,15274 +10303,15274 +10304,15274 +10305,1093 +10306,2616 +10307,1093 +10308,2616 +10309,3331 +10310,3331 +10311,1102 +10312,15274 +10313,15274 +10314,1102 +10315,15274 +10316,15274 +10317,1102 +10318,1102 +10319,15274 +10320,15274 +10321,1102 +10322,15274 +10323,1102 +10324,15274 +10325,1102 +10326,1102 +10327,13121 +10328,19049 +10329,27951 +10330,3519 +10331,15816 +10332,28383 +10333,28382 +10338,8942 +10358,28156 +10359,19917 +10360,19089 +10361,19089 +10362,20910 +10363,26283 +10364,27415 +10365,27803 +10366,20831 +10367,20971 +10368,26351 +10369,26352 +10370,26353 +10371,26354 +10372,26365 +10373,26355 +10374,26364 +10375,26363 +10376,26333 +10377,26362 +10378,26332 +10379,27749 +10380,26334 +10381,26335 +10382,26336 +10383,26337 +10384,19844 +10385,26341 +10386,26339 +10387,26340 +10388,26257 +10389,19843 +10390,26342 +10391,26360 +10392,19089 +10393,19092 +10394,15798 +10398,19115 +10399,9123 +10400,27947 +10401,27946 +10402,21903 +10403,14389 +10404,27854 +10405,17195 +10406,28173 +10407,25777 +10408,27774 +10409,27771 +10410,28385 +10411,27949 +10412,28384 +10413,19125 +10414,17460 +10418,19149 +10419,9711 +10420,2853 +10421,977 +10422,9415 +10423,19201 +10424,15274 +10438,12331 +10439,19222 +10440,19222 +10441,19223 +10442,7148 +10443,3093 +10444,19225 +10445,12925 +10446,19239 +10447,3920 +10448,17917 +10449,17917 +10450,19530 +10451,17917 +10452,19254 +10453,17917 +10454,6513 +10455,6513 +10456,2588 +10457,19284 +10458,7697 +10459,10377 +10460,19312 +10461,19314 +10462,19313 +10463,15274 +10464,19315 +10465,18050 +10466,19316 +10467,1283 +10478,1659 +10479,1283 +10498,19394 +10499,19397 +10500,19399 +10501,19402 +10502,19409 +10503,22423 +10504,19563 +10505,31324 +10506,23161 +10507,18062 +10508,18298 +10509,7050 +10510,20744 +10511,19421 +10512,19422 +10513,19422 +10514,7889 +10515,19461 +10518,23129 +10538,18203 +10539,19830 +10540,19831 +10541,19832 +10542,20813 +10543,20814 +10544,19782 +10545,22420 +10546,7326 +10547,6472 +10548,7326 +10549,19951 +10550,19994 +10551,19459 +10552,19462 +10553,19919 +10554,19918 +10555,6478 +10556,19316 +10558,19477 +10559,19487 +10560,19479 +10561,20620 +10562,25484 +10563,7629 +10564,7629 +10565,7629 +10566,7629 +10567,20649 +10568,19500 +10569,14006 +10570,28796 +10571,19501 +10572,28747 +10573,20149 +10574,19903 +10575,19502 +10576,21632 +10577,7397 +10578,19993 +10579,5996 +10580,19504 +10581,19506 +10582,28654 +10583,28808 +10584,28685 +10585,19507 +10586,7888 +10587,20627 +10588,23166 +10589,20220 +10590,7074 +10591,19519 +10592,19520 +10593,6673 +10594,15692 +10595,16190 +10596,19411 +10597,15706 +10598,7135 +10599,11932 +10600,9150 +10601,15274 +10602,1102 +10603,15274 +10604,15274 +10605,1102 +10606,15274 +10607,1102 +10608,1102 +10609,1102 +10610,19547 +10611,19549 +10612,19550 +10613,19551 +10614,19552 +10615,19553 +10616,19555 +10617,19556 +10618,6436 +10619,19557 +10620,20658 +10621,1301 +10622,19562 +10623,18391 +10624,25604 +10625,20315 +10626,19617 +10627,20259 +10628,20189 +10629,19950 +10630,22928 +10631,28800 +10632,28711 +10633,19900 +10634,9832 +10635,28230 +10636,12415 +10637,14152 +10638,28209 +10639,19566 +10640,2885 +10641,18168 +10642,17893 +10643,3029 +10644,1301 +10645,20626 +10646,20535 +10647,17883 +10648,7744 +10649,19223 +10650,6685 +10651,7050 +10652,22213 +10653,9174 +10654,19949 +10655,20210 +10656,28069 +10657,19991 +10658,28238 +10659,2516 +10660,22484 +10661,20220 +10662,19527 +10663,19576 +10664,7798 +10678,3024 +10679,3024 +10680,3024 +10681,3024 +10682,20219 +10683,19595 +10684,19606 +10685,19599 +10686,20820 +10687,18077 +10688,18077 +10689,18077 +10690,18077 +10691,15736 +10692,15737 +10693,15733 +10694,15734 +10695,12925 +10696,22229 +10697,20570 +10698,20275 +10699,12866 +10700,18832 +10701,28263 +10702,28273 +10703,20297 +10704,28267 +10705,19915 +10706,28336 +10707,19742 +10708,19786 +10709,28291 +10710,9834 +10711,9854 +10712,2533 +10713,6270 +10714,13496 +10715,18155 +10716,20625 +10717,19658 +10718,7842 +10719,16536 +10720,19662 +10721,14832 +10722,19663 +10723,19507 +10724,19665 +10725,19666 +10726,19667 +10727,20539 +10728,1102 +10738,11448 +10739,15422 +10740,28310 +10741,42881 +10742,19710 +10743,28143 +10744,19130 +10745,28330 +10746,28343 +10747,19992 +10748,4385 +10749,19728 +10750,20569 +10751,19920 +10752,19745 +10753,19762 +10754,19763 +10755,19764 +10756,19766 +10757,19767 +10758,19779 +10759,13122 +10760,28683 +10761,20572 +10762,19953 +10763,28783 +10764,28710 +10765,28688 +10766,21027 +10767,20974 +10768,28684 +10769,19785 +10770,19786 +10771,19910 +10772,8466 +10773,15692 +10774,28744 +10775,28694 +10776,22994 +10777,28595 +10778,1399 +10779,16452 +10780,9837 +10781,18470 +10782,19930 +10783,19995 +10784,19793 +10785,14776 +10786,19794 +10787,19796 +10788,19996 +10789,1134 +10790,3032 +10791,5567 +10792,7744 +10793,7744 +10794,7744 +10795,9834 +10796,21602 +10797,20030 +10798,28640 +10799,22242 +10800,19806 +10801,19912 +10802,18968 +10803,20035 +10804,19892 +10805,19127 +10806,19810 +10807,19812 +10808,19813 +10818,3331 +10819,19529 +10820,19932 +10821,28298 +10822,51621 +10823,20086 +10824,9859 +10825,19835 +10826,20293 +10827,28205 +10828,20273 +10829,6494 +10830,25482 +10831,6506 +10832,1246 +10833,19838 +10834,15692 +10835,19840 +10836,20788 +10837,19841 +10838,19869 +10839,16062 +10840,16062 +10841,19873 +10842,22427 +10843,22995 +10844,20258 +10845,19893 +10846,19898 +10847,20571 +10858,1102 +10878,20036 +10898,20095 +10918,37278 +10919,20476 +10920,37278 +10921,37278 +10922,37278 +10938,20608 +10939,20609 +10940,20611 +10958,15658 +10959,20342 +10978,32878 +10998,20610 +10999,20433 +11000,13885 +11018,2480 +11019,20502 +11020,20503 +11021,20504 +11022,20505 +11023,17284 +11024,23217 +11025,20507 +11026,17284 +11027,17284 +11038,11431 +11039,11431 +11040,1442 +11041,20537 +11042,20538 +11058,20558 +11078,4287 +11079,20597 +11080,20597 +11081,11431 +11082,20613 +11083,20614 +11084,35425 +11085,4287 +11086,20031 +11087,20640 +11098,11431 +11099,4691 +11100,4287 +11101,11431 +11102,20692 +11103,3093 +11104,6562 +11105,20710 +11106,20711 +11107,20709 +11108,4110 +11109,7087 +11110,18047 +11111,20692 +11112,20733 +11113,11448 +11114,6668 +11115,4287 +11116,1317 +11118,20769 +11119,21973 +11120,28262 +11121,20094 +11122,21115 +11123,14590 +11124,28196 +11125,2247 +11126,20774 +11127,20775 +11128,21206 +11129,20784 +11130,21206 +11131,20789 +11132,20791 +11133,20797 +11134,20794 +11135,20795 +11136,20796 +11137,20798 +11138,39179 +11139,20784 +11140,20802 +11141,20803 +11142,9167 +11143,20818 +11144,21209 +11145,21209 +11146,9167 +11147,3426 +11148,7629 +11149,6672 +11150,11431 +11151,11431 +11152,11431 +11162,20872 +11163,11431 +11164,11431 +11165,11431 +11166,11431 +11167,11431 +11168,11431 +11169,21032 +11170,21373 +11171,8560 +11172,20893 +11173,20894 +11174,20895 +11175,20896 +11176,20899 +11177,21472 +11178,36271 +11179,20912 +11182,20976 +11183,20976 +11184,6614 +11185,7393 +11186,20977 +11187,25939 +11188,20978 +11189,28178 +11190,28188 +11191,28167 +11192,4685 +11193,19002 +11194,28237 +11195,28185 +11196,9859 +11197,20983 +11198,20984 +11199,20985 +11200,20986 +11201,20987 +11202,11431 +11203,11431 +11204,11431 +11205,11431 +11206,11431 +11207,11431 +11208,11431 +11222,9666 +11223,11431 +11224,11431 +11225,11431 +11226,11431 +11227,6748 +11228,19502 +11229,28306 +11230,20995 +11231,19502 +11242,18169 +11243,15788 +11262,28337 +11263,25077 +11264,19635 +11265,28629 +11266,21072 +11267,21072 +11268,3920 +11269,8560 +11270,7744 +11282,7744 +11283,7744 +11284,19422 +11285,21091 +11286,21092 +11287,21096 +11288,21097 +11289,21098 +11290,21101 +11291,7290 +11302,6515 +11303,8104 +11304,20550 +11305,21111 +11306,20713 +11307,21112 +11308,21113 +11309,7050 +11310,5116 +11311,28731 +11312,8927 +11313,1310 +11314,21462 +11315,21149 +11316,13489 +11317,21159 +11318,21164 +11319,21175 +11320,21189 +11321,21192 +11322,21193 +11323,21194 +11324,19595 +11325,18099 +11342,21238 +11343,21251 +11344,21256 +11345,17212 +11362,21329 +11363,1816 +11364,21338 +11365,21341 +11366,7649 +11367,7726 +11368,16065 +11369,21751 +11370,4691 +11371,7389 +11382,7051 +11383,21362 +11384,7350 +11385,21363 +11386,9292 +11387,3422 +11388,2885 +11389,21364 +11390,6002 +11391,18517 +11392,3307 +11393,7103 +11394,1438 +11395,21365 +11402,21366 +11403,6651 +11404,1504 +11405,21367 +11406,8794 +11407,7170 +11408,21368 +11409,3397 +11410,1496 +11411,6569 +11412,4136 +11413,4136 +11414,7354 +11415,21369 +11416,6631 +11417,4433 +11418,7251 +11419,18047 +11420,21370 +11422,21374 +11423,21375 +11424,21376 +11442,16028 +11443,2376 +11444,2376 +11445,21402 +11446,7695 +11462,21411 +11463,1244 +11464,20219 +11465,20219 +11466,1093 +11467,18725 +11468,1281 +11469,14601 +11470,7695 +11471,20692 +11472,2599 +11473,21414 +11474,18047 +11475,28181 +11476,7112 +11477,21415 +11478,8952 +11479,21416 +11480,3164 +11482,21431 +11502,28217 +11503,21458 +11504,1116 +11505,21461 +11506,21144 +11507,21463 +11508,22034 +11509,1438 +11510,30111 +11511,21469 +11512,21470 +11513,19239 +11514,21471 +11515,21472 +11516,21473 +11522,21608 +11542,21514 +11562,2516 +11563,13496 +11564,4777 +11565,7401 +11566,6496 +11567,1262 +11568,8631 +11569,2599 +11570,1275 +11582,21531 +11583,6410 +11584,6410 +11585,21539 +11586,21540 +11587,21541 +11588,21552 +11589,21553 +11590,7842 +11591,21555 +11602,4287 +11603,23270 +11604,21580 +11605,21574 +11606,21577 +11607,22218 +11608,25046 +11609,21584 +11610,1102 +11611,1102 +11612,1102 +11613,3426 +11614,15274 +11615,15274 +11616,7629 +11617,21586 +11622,22651 +11623,26137 +11624,28788 +11625,21595 +11626,26278 +11627,28658 +11628,28780 +11629,28781 +11630,2418 +11631,21613 +11632,28725 +11633,21898 +11634,28741 +11635,28779 +11642,22651 +11643,22651 +11644,22651 +11645,22651 +11646,22651 +11647,22651 +11648,22651 +11649,22651 +11662,28642 +11663,4775 +11664,4775 +11665,17263 +11666,4775 +11667,4775 +11668,21402 +11669,9837 +11670,4775 +11671,4775 +11672,4775 +11673,4775 +11674,21651 +11675,18979 +11676,4775 +11677,28381 +11678,21578 +11679,28820 +11682,21673 +11683,4775 +11684,23618 +11685,28704 +11686,28763 +11702,28765 +11703,28686 +11722,28721 +11723,21692 +11724,7918 +11725,10530 +11726,28724 +11727,1143 +11728,21694 +11729,28826 +11730,28723 +11731,28666 +11732,1246 +11733,7139 +11734,1103 +11735,21701 +11736,8093 +11737,1134 +11742,20709 +11743,21714 +11744,21715 +11745,28740 +11746,21717 +11747,21719 +11748,28807 +11749,28722 +11750,21723 +11751,21724 +11752,17974 +11753,7986 +11754,22652 +11755,21725 +11762,21752 +11763,19132 +11764,21753 +11765,28806 +11766,21755 +11767,21754 +11768,28785 +11782,21771 +11783,28696 +11784,21773 +11785,18814 +11786,21775 +11787,28669 +11802,19843 +11803,21793 +11804,21794 +11805,28821 +11806,9310 +11807,28825 +11808,28268 +11809,22031 +11810,19767 +11811,21804 +11812,22997 +11813,11431 +11814,21805 +11815,6337 +11816,22212 +11817,21809 +11818,21807 +11819,18725 +11820,28819 +11821,28623 +11822,28660 +11823,28728 +11824,9847 +11825,21833 +11826,9730 +11827,15274 +11828,15274 +11829,2480 +11830,21834 +11831,21835 +11832,19764 +11833,21836 +11834,9518 +11835,10923 +11836,21673 +11837,1438 +11838,22032 +11839,21839 +11840,21842 +11841,28720 +11842,28792 +11843,7798 +11844,1301 +11845,1183 +11846,21845 +11847,28071 +11848,28170 +11849,9644 +11850,23128 +11851,28249 +11852,19575 +11853,28241 +11854,28245 +11855,7494 +11856,28312 +11857,28345 +11858,28260 +11859,21853 +11860,28108 +11861,28171 +11862,6486 +11863,21855 +11864,25632 +11865,16766 +11866,28219 +11867,28332 +11868,9840 +11869,9849 +11870,28226 +11871,28253 +11872,28164 +11873,28325 +11874,28313 +11875,28305 +11876,28233 +11882,27770 +11883,1281 +11884,14649 +11885,12738 +11886,7695 +11887,20709 +11888,28342 +11889,28304 +11902,22227 +11903,20629 +11904,21936 +11905,22753 +11906,28075 +11907,28073 +11908,28063 +11909,17121 +11910,28076 +11911,28198 +11912,8928 +11913,28132 +11914,20791 +11915,18750 +11916,28254 +11917,28255 +11918,28186 +11919,28136 +11920,28679 +11921,25625 +11922,25609 +11923,21956 +11924,28814 +11925,28762 +11926,28712 +11927,21961 +11928,21962 +11929,28736 +11930,21965 +11931,28719 +11932,21968 +11933,28784 +11934,28733 +11935,28795 +11936,28242 +11937,1168 +11938,4056 +11939,14432 +11940,9657 +11941,7798 +11942,7629 +11943,7744 +11944,21970 +11945,9840 +11946,9854 +11947,21971 +11948,20791 +11949,21972 +11950,21973 +11951,21974 +11952,21975 +11953,20791 +11954,21976 +11955,21977 +11962,17229 +11963,28232 +11964,28203 +11965,9837 +11966,1168 +11967,9835 +11968,9836 +11969,9839 +11970,9842 +11971,9840 +11972,4284 +11973,224 +11974,3666 +11975,9835 +11976,9834 +11977,9833 +11978,9834 +11979,9836 +11980,9837 +11981,3666 +11982,9823 +11983,9837 +11984,9832 +11985,9847 +11986,9849 +11987,9840 +11988,9833 +11989,9847 +11990,9834 +11991,3666 +11992,9839 +11993,9836 +11994,9832 +11995,9837 +11996,9823 +11997,9847 +11998,3666 +11999,4284 +12000,28207 +12001,3666 +12002,9834 +12003,18115 +12004,3666 +12005,3666 +12006,9833 +12007,4284 +12008,224 +12009,9837 +12010,9834 +12011,9833 +12012,9847 +12013,9836 +12014,9835 +12015,9833 +12016,9847 +12017,9839 +12018,28135 +12019,6539 +12020,9860 +12021,23483 +12022,9658 +12023,9853 +12024,9859 +12025,9852 +12026,9657 +12027,9858 +12028,9857 +12029,6539 +12030,15420 +12031,9859 +12032,15420 +12033,22020 +12034,9859 +12035,15420 +12036,9860 +12037,25480 +12038,224 +12039,9657 +12040,6539 +12041,28429 +12042,9852 +12043,9857 +12044,9859 +12045,15420 +12046,6539 +12047,9852 +12048,9657 +12049,28244 +12050,4272 +12051,28090 +12052,9837 +12053,3666 +12054,9834 +12055,9840 +12056,9832 +12057,9836 +12058,3666 +12059,4841 +12060,6270 +12061,28086 +12062,25611 +12063,22031 +12064,22036 +12065,22037 +12066,28251 +12082,28176 +12083,28190 +12102,9840 +12103,23717 +12104,28095 +12105,28234 +12106,28089 +12107,28182 +12108,28070 +12109,21771 +12110,28240 +12111,28202 +12112,28139 +12113,28210 +12114,28222 +12115,28224 +12122,2593 +12142,8090 +12143,22071 +12144,22299 +12162,1102 +12163,1102 +12164,1102 +12182,22178 +12183,22180 +12184,25467 +12185,35174 +12186,22185 +12187,15897 +12188,15897 +12189,15897 +12190,17403 +12191,22192 +12192,16028 +12202,2599 +12203,25466 +12204,25472 +12205,22193 +12206,22193 +12207,18052 +12208,2599 +12209,22194 +12210,20803 +12211,22196 +12212,21473 +12213,25469 +12214,22198 +12215,22198 +12216,22196 +12217,21473 +12218,6353 +12219,19330 +12220,7025 +12221,20618 +12222,16548 +12223,6704 +12224,22200 +12225,20618 +12226,811 +12227,1102 +12228,1301 +12229,1301 +12230,22202 +12231,1301 +12232,1301 +12233,1301 +12234,22203 +12235,22204 +12236,22205 +12237,22193 +12238,33571 +12239,1301 +12240,1301 +12241,1659 +12242,22207 +12243,5290 +12244,15897 +12245,15897 +12246,22243 +12247,22247 +12248,22248 +12249,22249 +12250,22250 +12251,22252 +12252,28699 +12253,28690 +12254,23079 +12255,4765 +12256,16764 +12257,28777 +12258,22256 +12259,4119 +12260,22258 +12261,15274 +12262,22271 +12263,22271 +12264,20629 +12282,22291 +12283,7050 +12284,22293 +12285,18607 +12286,22299 +12287,22303 +12288,8381 +12289,22304 +12290,22319 +12291,6703 +12292,7913 +12293,7331 +12294,22598 +12295,28204 +12296,28248 +12297,22366 +12298,22367 +12299,28221 +12300,6506 +12301,22377 +12302,17608 +12303,17608 +12304,22378 +12322,22391 +12323,7366 +12324,7366 +12325,17607 +12326,17607 +12327,17607 +12328,22394 +12329,22395 +12330,16208 +12331,22402 +12332,22403 +12333,22404 +12334,6563 +12335,6496 +12336,2516 +12337,6006 +12338,22411 +12339,18721 +12340,6614 +12341,22414 +12342,16206 +12343,6417 +12344,22415 +12345,19595 +12346,22416 +12347,22417 +12348,22319 +12349,15773 +12350,22429 +12351,16207 +12352,7366 +12353,13108 +12354,25132 +12355,19462 +12356,22436 +12357,20656 +12358,22443 +12359,22444 +12360,14993 +12361,1659 +12362,4775 +12363,18707 +12364,6851 +12365,23148 +12366,21366 +12367,22464 +12368,12332 +12369,10275 +12382,22477 +12383,19528 +12384,22483 +12385,22485 +12402,18050 +12403,22492 +12404,24677 +12405,25751 +12406,22550 +12407,22534 +12408,25753 +12409,25752 +12410,25856 +12411,22484 +12412,20220 +12413,22520 +12414,22951 +12415,25742 +12416,25740 +12417,25826 +12418,25744 +12419,25741 +12420,25745 +12421,22563 +12422,25749 +12423,22517 +12424,24514 +12425,24511 +12426,24513 +12427,24510 +12428,24509 +12429,24506 +12430,19800 +12431,19800 +12432,19800 +12433,19800 +12434,19800 +12435,19800 +12436,19800 +12437,8928 +12438,3029 +12439,22611 +12440,11947 +12441,22612 +12442,22617 +12443,22618 +12444,16283 +12445,11448 +12446,28060 +12447,20723 +12448,28206 +12449,28235 +12450,22634 +12451,22636 +12452,22635 +12453,22637 +12454,22638 +12455,22639 +12456,22640 +12457,22641 +12458,22642 +12459,22634 +12460,22643 +12461,22645 +12462,28272 +12463,20198 +12464,28680 +12465,22989 +12466,28190 +12467,6504 +12468,6097 +12469,22654 +12470,22656 +12471,18437 +12472,7841 +12482,22672 +12502,22695 +12522,28077 +12523,20726 +12524,22716 +12525,9151 +12526,9666 +12527,21952 +12528,28673 +12529,22717 +12530,18047 +12531,22721 +12532,22722 +12533,18125 +12534,9666 +12535,22733 +12542,26053 +12543,9837 +12544,9837 +12545,9837 +12546,28637 +12547,28797 +12548,9837 +12549,15501 +12550,28824 +12551,28695 +12552,23111 +12553,28670 +12554,28771 +12555,27829 +12556,22779 +12557,28727 +12558,22765 +12562,3331 +12563,5567 +12564,22771 +12565,20629 +12566,21673 +12567,22785 +12582,28789 +12583,22792 +12584,31966 +12585,6418 +12586,22793 +12587,22794 +12588,22795 +12589,21796 +12590,25613 +12591,22802 +12592,22906 +12593,22814 +12602,23419 +12603,8725 +12604,22833 +12605,24107 +12606,22837 +12607,22838 +12608,28693 +12609,22843 +12610,23490 +12611,23486 +12612,23491 +12613,19730 +12614,23485 +12615,22860 +12616,22861 +12617,22869 +12618,25746 +12619,22882 +12620,22886 +12621,22885 +12622,2599 +12623,2599 +12624,25754 +12625,25827 +12626,14618 +12627,6338 +12628,22892 +12629,22893 +12630,1310 +12631,25747 +12632,25835 +12633,22901 +12634,22907 +12635,7798 +12636,22908 +12637,22910 +12638,22911 +12639,25750 +12640,22920 +12641,25748 +12642,1695 +12643,24687 +12644,24682 +12645,22924 +12646,7393 +12647,4777 +12648,7045 +12649,6851 +12650,22926 +12651,22929 +12652,7649 +12653,28813 +12654,22931 +12655,22445 +12662,22952 +12663,22953 +12682,15274 +12683,15274 +12684,15274 +12685,15274 +12686,22971 +12687,1102 +12688,1102 +12689,15274 +12690,1102 +12691,15274 +12692,15274 +12693,15274 +12694,15274 +12695,15274 +12696,1102 +12697,15274 +12698,1102 +12699,1102 +12700,1102 +12701,1102 +12702,15274 +12703,1102 +12704,15274 +12705,1102 +12706,1102 +12707,1102 +12708,11449 +12709,22977 +12710,22979 +12711,1102 +12712,15794 +12713,15274 +12714,1102 +12715,1102 +12716,1102 +12717,6270 +12718,1102 +12719,1102 +12720,1102 +12721,23713 +12722,23714 +12723,23715 +12724,23146 +12725,6270 +12726,6270 +12727,6270 +12728,1102 +12729,2533 +12730,4110 +12731,23150 +12732,19497 +12733,1116 +12734,7403 +12735,21416 +12736,21473 +12737,1442 +12738,13290 +12739,21807 +12740,20220 +12741,22484 +12742,23171 +12743,23171 +12744,23172 +12745,23172 +12746,23173 +12747,23173 +12748,23174 +12749,23174 +12750,23175 +12751,23177 +12752,23197 +12753,19316 +12754,23198 +12755,22906 +12756,23199 +12757,23200 +12762,23201 +12763,26735 +12764,23224 +12765,1093 +12766,1093 +12767,16130 +12768,1093 +12769,25600 +12770,23229 +12771,22429 +12772,23230 +12773,23234 +12774,23236 +12775,23434 +12776,23240 +12777,23241 +12778,9126 +12779,23243 +12780,16161 +12781,23244 +12782,24255 +12783,23248 +12784,23904 +12785,3116 +12786,23253 +12787,23254 +12788,23255 +12789,17514 +12790,24813 +12791,23262 +12792,23267 +12793,23266 +12794,7438 +12795,23271 +12796,25047 +12797,23274 +12798,28849 +12799,6496 +12800,4775 +12801,23281 +12802,23283 +12803,23285 +12804,23286 +12805,23727 +12806,23289 +12807,6748 +12808,23291 +12809,21072 +12810,23292 +12811,23293 +12812,23294 +12813,1288 +12814,18080 +12815,23295 +12816,15274 +12817,1102 +12818,1102 +12819,1102 +12820,15787 +12821,1102 +12822,2885 +12823,1102 +12824,15274 +12825,15274 +12826,15274 +12827,15274 +12828,15274 +12829,7918 +12830,1102 +12831,1102 +12832,1102 +12833,1102 +12834,1102 +12835,1102 +12836,1102 +12837,1102 +12838,1102 +12839,1102 +12840,23722 +12841,23720 +12842,1155 +12843,23721 +12844,23717 +12845,9857 +12846,23716 +12847,23315 +12848,23315 +12849,20342 +12850,23316 +12851,23316 +12852,23317 +12853,23317 +12854,23318 +12855,23318 +12856,23319 +12857,23319 +12858,23320 +12859,23320 +12860,23177 +12861,23175 +12862,23321 +12863,23321 +12864,23322 +12865,23322 +12866,23323 +12867,23323 +12868,23324 +12869,23324 +12870,6533 +12871,23332 +12882,23355 +12883,23357 +12884,23358 +12885,2622 +12886,23370 +12887,23371 +12888,23371 +12889,23379 +12890,12274 +12891,23383 +12892,23386 +12893,23387 +12894,224 +12895,28335 +12896,23398 +12897,23398 +12898,23398 +12899,23398 +12900,1103 +12901,23401 +12902,23405 +12903,23473 +12904,23411 +12905,28605 +12906,2357 +12907,18059 +12922,18057 +12923,23432 +12924,6623 +12925,23436 +12926,23435 +12927,28630 +12928,23440 +12929,9658 +12930,8232 +12931,23445 +12932,23446 +12933,23447 +12934,23448 +12935,28625 +12936,22752 +12937,2388 +12938,15788 +12939,25647 +12940,25648 +12941,23455 +12942,23458 +12943,23465 +12944,23472 +12945,23473 +12946,23475 +12947,23496 +12948,23497 +12949,23508 +12950,23509 +12951,3243 +12952,23519 +12953,15327 +12954,1134 +12955,23521 +12956,23527 +12957,23526 +12958,1301 +12959,23539 +12960,23544 +12961,23545 +12962,23546 +12963,23547 +12964,23548 +12965,23551 +12966,23552 +12967,23553 +12968,23554 +12969,23557 +12970,26387 +12971,23561 +12972,23561 +12973,23562 +12974,28676 +12975,28804 +12976,8272 +12977,16642 +12978,28448 +12979,28661 +12980,23568 +12981,23569 +12982,28452 +12983,28809 +12984,28738 +12985,28812 +12986,7480 +12987,28648 +12988,28375 +12989,28758 +12990,28810 +12991,23573 +12992,20071 +12993,23574 +12994,27778 +12995,23575 +12996,24646 +12997,28811 +12998,28651 +12999,28370 +13000,28701 +13001,9833 +13002,4841 +13003,28794 +13004,28631 +13005,28951 +13006,28799 +13007,28616 +13008,28646 +13009,28700 +13010,28438 +13011,28372 +13012,28596 +13013,28643 +13014,25594 +13015,28748 +13016,28791 +13017,25599 +13018,23228 +13019,28772 +13020,25602 +13021,28801 +13022,28766 +13023,25606 +13024,28671 +13025,28706 +13026,28776 +13027,28689 +13028,28681 +13029,24122 +13030,28647 +13031,28803 +13032,25639 +13033,28594 +13034,28708 +13035,25640 +13036,25641 +13037,22929 +13038,25607 +13039,25608 +13040,22929 +13041,28768 +13042,28678 +13043,28675 +13044,28714 +13045,25627 +13046,28677 +13047,25626 +13048,25623 +13049,28707 +13050,23586 +13051,28598 +13052,28624 +13053,28717 +13054,28764 +13055,18388 +13056,12562 +13057,25630 +13058,28790 +13059,25633 +13060,28672 +13061,23590 +13062,28633 +13063,28697 +13064,28787 +13065,28626 +13066,28351 +13067,28355 +13068,28362 +13069,23594 +13070,28353 +13071,28354 +13072,28352 +13073,28360 +13074,21961 +13075,28716 +13076,28357 +13077,28364 +13078,23601 +13079,28742 +13080,23604 +13081,18790 +13082,25134 +13083,25133 +13084,6497 +13085,9657 +13086,23606 +13087,9860 +13088,6522 +13089,6497 +13090,23605 +13091,23717 +13092,23607 +13093,28682 +13094,26537 +13095,9834 +13096,23629 +13097,9839 +13098,23608 +13099,28617 +13100,28645 +13101,28597 +13102,28974 +13103,28612 +13104,23617 +13105,28657 +13106,28656 +13107,28619 +13108,28614 +13109,28609 +13110,28368 +13111,28664 +13112,28601 +13113,28739 +13114,17031 +13115,28745 +13116,28709 +13117,28802 +13118,28369 +13119,28735 +13120,28373 +13121,28602 +13122,28652 +13123,28663 +13124,28441 +13125,28439 +13126,28434 +13127,28440 +13128,28662 +13129,28437 +13130,28447 +13131,28444 +13132,28443 +13133,28665 +13134,28435 +13135,28668 +13136,21071 +13137,28786 +13138,28634 +13139,28769 +13140,7827 +13141,9860 +13142,23628 +13143,23629 +13144,28649 +13145,28356 +13146,28743 +13147,23639 +13148,25631 +13149,1103 +13150,23656 +13151,1317 +13152,1134 +13153,7139 +13154,6672 +13155,23658 +13156,2516 +13157,23659 +13158,1155 +13159,6371 +13160,23669 +13161,23673 +13162,23675 +13163,23683 +13164,6006 +13165,23692 +13166,23704 +13167,25180 +13168,23559 +13169,23710 +13170,28713 +13171,24060 +13172,11449 +13173,23723 +13174,23725 +13175,25603 +13176,23726 +13177,6494 +13178,23728 +13179,23730 +13180,23731 +13181,23732 +13182,23734 +13183,24740 +13184,23736 +13185,23737 +13186,21673 +13187,21673 +13188,21673 +13189,21673 +13190,23739 +13191,19547 +13192,15791 +13193,22191 +13194,23740 +13195,23741 +13196,23741 +13197,23740 +13198,23742 +13199,28436 +13202,1103 +13203,23747 +13204,25619 +13205,23750 +13206,23753 +13207,1310 +13208,23760 +13209,23763 +13210,23765 +13211,23769 +13212,23766 +13213,16209 +13214,23775 +13215,23776 +13216,23777 +13217,28830 +13218,23791 +13219,23497 +13220,23792 +13221,23797 +13222,23798 +13223,1283 +13242,23824 +13243,25133 +13244,23827 +13245,23835 +13246,23836 +13247,12333 +13248,8257 +13249,23837 +13250,23842 +13251,23843 +13252,23844 +13253,23846 +13254,23847 +13255,23849 +13256,23850 +13257,23852 +13258,23853 +13259,23856 +13260,23861 +13261,23867 +13262,23875 +13282,18905 +13283,23435 +13284,23901 +13285,23908 +13286,23909 +13287,1102 +13288,1102 +13289,23914 +13290,23917 +13291,23918 +13292,23919 +13293,23920 +13294,23923 +13302,4287 +13303,4287 +13304,4287 +13305,4287 +13306,4287 +13307,4287 +13308,1102 +13309,1102 +13310,1102 +13311,1102 +13312,23948 +13313,1103 +13314,24760 +13315,23955 +13316,23969 +13317,17494 +13318,23976 +13319,23977 +13320,23982 +13321,17785 +13322,17785 +13323,17785 +13324,17785 +13325,17785 +13326,17785 +13327,17785 +13328,17343 +13329,17343 +13330,23991 +13331,17786 +13332,17786 +13333,17786 +13334,17786 +13335,24011 +13336,24014 +13337,24015 +13338,21513 +13339,24016 +13340,24013 +13341,6536 +13342,24020 +13343,24019 +13344,29001 +13345,24022 +13346,24025 +13347,6506 +13348,24049 +13349,24033 +13350,22924 +13351,24036 +13352,24037 +13353,24039 +13354,24044 +13355,24044 +13356,24057 +13357,24058 +13358,18971 +13359,24045 +13360,24046 +13361,25036 +13362,3024 +13363,1301 +13364,4110 +13365,24051 +13366,24052 +13367,24053 +13368,25614 +13369,24054 +13370,24059 +13371,24061 +13372,24063 +13373,1225 +13374,24064 +13375,23825 +13376,24065 +13377,2418 +13378,24066 +13379,2618 +13380,18298 +13381,24068 +13382,7888 +13383,24070 +13384,24071 +13385,24072 +13386,24073 +13387,24074 +13388,25049 +13389,25050 +13390,24292 +13391,25051 +13392,24087 +13393,25629 +13394,24102 +13395,29009 +13396,24106 +13397,24108 +13398,9653 +13399,24109 +13400,24110 +13401,24111 +13402,33114 +13403,24113 +13404,41843 +13405,24115 +13406,24116 +13407,24117 +13408,24119 +13409,24120 +13422,24131 +13423,24132 +13442,19547 +13443,24151 +13444,21672 +13445,16321 +13446,24152 +13447,24211 +13448,18010 +13449,16065 +13450,24153 +13451,24154 +13452,16836 +13453,38767 +13454,17898 +13455,17974 +13456,15794 +13457,15741 +13458,23739 +13459,17469 +13460,15747 +13461,17403 +13462,24156 +13463,24689 +13464,24690 +13465,24692 +13466,24693 +13467,24691 +13468,24688 +13469,3486 +13470,14023 +13471,16065 +13472,24174 +13473,23715 +13474,13060 +13475,224 +13476,15274 +13477,1301 +13478,1301 +13479,15274 +13480,1301 +13481,15274 +13482,15274 +13483,15274 +13484,15274 +13485,15274 +13486,15274 +13487,15274 +13488,15274 +13489,15274 +13490,15274 +13491,15274 +13492,15274 +13493,15274 +13494,15274 +13495,15274 +13496,15274 +13497,15274 +13498,24162 +13499,15274 +13500,15274 +13501,15274 +13502,24164 +13503,43359 +13504,24167 +13505,24166 +13506,26865 +13507,7744 +13508,1504 +13509,7247 +13510,24213 +13511,21531 +13512,19547 +13513,22191 +13514,24169 +13515,1236 +13516,24175 +13517,1301 +13518,15274 +13519,15274 +13520,15274 +13521,15274 +13522,15274 +13523,15741 +13524,24176 +13525,24177 +13526,24178 +13527,24179 +13528,24180 +13529,4107 +13530,24181 +13531,24182 +13532,24183 +13533,24185 +13534,24186 +13535,24189 +13536,24188 +13537,24190 +13538,24193 +13539,24194 +13542,12925 +13543,19595 +13544,24220 +13545,45815 +13546,4809 +13562,24231 +13582,24252 +13583,24251 +13584,34364 +13585,6672 +13586,15897 +13602,21610 +13603,21610 +13604,24281 +13605,24282 +13606,24283 +13607,24284 +13608,24285 +13609,24293 +13610,24294 +13611,24295 +13612,24296 +13622,24343 +13623,24342 +13624,6672 +13625,24351 +13626,3486 +13627,24366 +13628,24367 +13629,24368 +13630,24369 +13631,19804 +13632,24370 +13642,9632 +13643,9632 +13644,9632 +13645,9632 +13646,9632 +13647,9632 +13648,9632 +13649,9632 +13650,9632 +13651,9632 +13652,9632 +13653,9632 +13654,9632 +13655,9632 +13656,9632 +13657,9632 +13658,9632 +13659,9632 +13660,9632 +13661,9632 +13662,9632 +13663,9632 +13664,9632 +13665,9632 +13666,9632 +13667,9632 +13668,9632 +13669,9632 +13670,9632 +13671,9632 +13672,9632 +13673,9632 +13674,9632 +13675,9632 +13676,9632 +13677,9632 +13678,9632 +13679,9632 +13680,9632 +13681,9632 +13682,9632 +13683,9632 +13684,9632 +13685,9632 +13686,9632 +13687,9632 +13688,9632 +13689,9632 +13690,9632 +13691,9632 +13692,9632 +13693,9632 +13694,9632 +13695,9632 +13696,9632 +13697,9632 +13698,24394 +13699,24380 +13700,24380 +13701,24380 +13702,19498 +13703,24415 +13704,22071 +13705,24445 +13706,24446 +13707,24452 +13708,24461 +13709,24473 +13710,15897 +13711,15897 +13712,15897 +13713,15897 +13714,15897 +13715,15897 +13716,15897 +13717,15897 +13718,24478 +13719,24479 +13720,24480 +13721,24483 +13722,24489 +13723,24490 +13724,21203 +13725,24496 +13726,24497 +13727,24497 +13728,24497 +13729,24563 +13730,24564 +13731,23294 +13732,24563 +13733,24564 +13734,23294 +13735,24563 +13736,24564 +13737,23294 +13738,24562 +13739,24562 +13740,24562 +13741,24561 +13742,24560 +13743,24559 +13744,24559 +13745,24559 +13746,24560 +13747,24560 +13748,24561 +13749,24561 +13750,24499 +13751,24503 +13752,6672 +13753,24517 +13754,7176 +13755,18537 +13756,4813 +13757,24522 +13758,4809 +13759,24713 +13760,24716 +13761,11448 +13762,24546 +13763,24546 +13764,24546 +13765,24547 +13766,24547 +13767,24547 +13768,24548 +13769,24548 +13770,24548 +13771,24550 +13772,24550 +13773,24550 +13774,24551 +13775,24551 +13776,24551 +13777,24552 +13778,24552 +13779,24552 +13780,24553 +13781,24553 +13782,24553 +13783,24554 +13784,24554 +13785,24554 +13786,24555 +13787,24555 +13788,24555 +13789,24556 +13790,24556 +13791,24556 +13792,24557 +13793,24557 +13794,24557 +13795,24558 +13796,24558 +13797,24558 +13798,24565 +13799,24565 +13800,24565 +13801,24566 +13802,24566 +13803,24566 +13804,6638 +13805,6638 +13806,6638 +13807,24567 +13808,24567 +13809,24567 +13810,24568 +13811,6502 +13812,24569 +13813,24570 +13814,24571 +13815,24572 +13816,20225 +13817,20195 +13818,8478 +13819,19374 +13820,19716 +13821,28691 +13822,4119 +13823,20309 +13824,20550 +13825,20721 +13842,18705 +13843,18705 +13844,18705 +13845,18705 +13846,18705 +13847,18705 +13848,18705 +13849,18705 +13850,24592 +13851,21327 +13852,16065 +13853,22193 +13854,24594 +13855,24595 +13856,25235 +13857,25207 +13858,24601 +13859,24596 +13860,25232 +13861,24597 +13862,24597 +13863,25231 +13864,25233 +13865,25208 +13866,25230 +13867,25236 +13868,24612 +13869,24610 +13870,24616 +13871,24615 +13872,929 +13873,13824 +13874,8928 +13875,12331 +13876,16364 +13877,16364 +13878,16364 +13879,16364 +13880,16364 +13881,4809 +13882,16364 +13883,16364 +13884,16364 +13885,16364 +13886,16364 +13887,16364 +13888,24629 +13889,24719 +13890,4823 +13891,4809 +13892,25456 +13893,11932 +13894,24634 +13895,24644 +13896,24643 +13897,24641 +13898,24645 +13899,24639 +13900,24642 +13901,18705 +13902,18705 +13903,18705 +13904,18705 +13905,18705 +13906,18705 +13907,24629 +13908,24629 +13909,24629 +13910,24629 +13911,24629 +13912,24629 +13913,24629 +13914,24715 +13915,24715 +13916,24715 +13917,24715 +13918,12331 +13919,24655 +13920,22838 +13922,24695 +13923,24720 +13924,24721 +13925,24729 +13926,24730 +13927,7176 +13928,18537 +13929,4813 +13930,4809 +13931,21473 +13932,24716 +13933,24733 +13934,22194 +13935,24719 +13936,25659 +13937,45947 +13938,24743 +13939,1301 +13940,1301 +13941,1301 +13942,1301 +13943,1301 +13944,28632 +13945,1301 +13946,1301 +13947,1301 +13948,1301 +13949,1301 +13950,24748 +13951,24749 +13952,28782 +13953,24756 +13954,28627 +13955,24777 +13956,24762 +13957,24768 +13958,24767 +13959,30535 +13960,19785 +13961,24772 +13962,30391 +13963,29016 +13964,24775 +13965,24776 +13966,24778 +13967,28604 +13968,24784 +13969,24793 +13982,26676 +13983,24816 +13984,26679 +13985,24817 +13986,26680 +14002,22831 +14022,26622 +14023,26622 +14024,20592 +14025,25881 +14042,24893 +14043,24896 +14044,23422 +14045,24895 +14046,19595 +14047,24897 +14048,24898 +14062,17786 +14082,24919 +14083,24923 +14084,24924 +14085,24925 +14086,25871 +14087,25864 +14088,23132 +14089,25867 +14090,7533 +14091,25869 +14092,24926 +14093,25863 +14094,25873 +14095,25874 +14096,25880 +14097,25876 +14098,25875 +14099,14431 +14100,15820 +14101,16779 +14102,16586 +14103,24928 +14104,24927 +14105,24930 +14106,24932 +14107,13679 +14108,24935 +14109,25877 +14110,25879 +14111,24933 +14112,24934 +14113,25858 +14114,25857 +14115,14541 +14116,25855 +14117,14542 +14118,24931 +14119,11421 +14120,16531 +14121,17462 +14122,16664 +14123,25916 +14124,16657 +14125,16656 +14126,5394 +14127,15201 +14128,24945 +14129,25929 +14130,24942 +14131,25915 +14132,24943 +14133,25952 +14134,24946 +14135,15738 +14136,25834 +14137,17252 +14138,25228 +14139,24966 +14140,28414 +14141,25571 +14142,24977 +14143,24978 +14144,11166 +14145,24981 +14146,24986 +14147,24982 +14148,24983 +14149,24985 +14150,24988 +14151,24990 +14152,25205 +14153,25201 +14154,25203 +14155,21586 +14156,20342 +14157,8374 +14158,9996 +14159,25893 +14160,16907 +14161,23101 +14162,11144 +14163,25894 +14164,14431 +14165,25890 +14166,28050 +14167,28054 +14168,28056 +14169,25859 +14170,28055 +14171,13679 +14172,28098 +14173,28051 +14174,19950 +14175,28052 +14176,9184 +14177,25970 +14178,26302 +14179,23109 +14180,26023 +14181,25971 +14182,19991 +14183,25974 +14184,25976 +14185,25969 +14186,25986 +14187,14640 +14188,23138 +14189,15283 +14190,25984 +14191,25987 +14192,25989 +14193,18887 +14194,28730 +14195,14645 +14196,26008 +14197,26004 +14198,26006 +14199,26007 +14200,15293 +14201,26012 +14202,26049 +14203,16719 +14204,26011 +14205,26005 +14206,25970 +14207,26021 +14208,26308 +14209,26022 +14210,26015 +14211,26020 +14212,28729 +14213,26017 +14214,9184 +14215,25973 +14216,26051 +14217,24113 +14218,16721 +14219,26045 +14220,26044 +14221,26042 +14222,26050 +14223,26054 +14224,26052 +14225,26053 +14226,26055 +14227,18597 +14228,26059 +14229,26057 +14230,26063 +14231,26062 +14232,26068 +14233,26061 +14234,26067 +14235,26058 +14236,26066 +14237,16599 +14238,26100 +14239,26101 +14240,16604 +14241,26102 +14242,16600 +14243,26104 +14244,28991 +14245,24624 +14246,26309 +14247,26116 +14248,14647 +14249,14646 +14250,26117 +14251,26112 +14252,18992 +14253,26113 +14254,26119 +14255,26111 +14256,25028 +14257,18887 +14258,26190 +14259,26186 +14260,26187 +14261,26189 +14262,26193 +14263,41844 +14264,26196 +14265,26198 +14266,26195 +14267,26192 +14268,17262 +14269,26145 +14270,23031 +14271,26307 +14272,26143 +14273,26147 +14274,26144 +14275,26142 +14276,26138 +14277,26311 +14278,27928 +14279,14618 +14280,26137 +14281,26128 +14282,26132 +14283,26124 +14284,26131 +14285,26134 +14286,26136 +14287,27927 +14288,26203 +14289,25098 +14290,26206 +14291,26205 +14292,26215 +14293,26214 +14294,26208 +14295,26212 +14296,26213 +14297,26211 +14298,26281 +14299,26268 +14300,26271 +14301,26266 +14302,26275 +14303,18834 +14304,26280 +14305,26282 +14306,26279 +14307,26277 +14308,26256 +14309,26252 +14310,26261 +14311,26253 +14312,26255 +14313,26262 +14314,26258 +14315,26260 +14316,26263 +14317,26254 +14318,26288 +14319,26285 +14320,26287 +14321,26299 +14322,26292 +14323,26290 +14324,26300 +14325,26298 +14326,28993 +14327,26284 +14328,26219 +14329,26225 +14330,26216 +14331,26227 +14332,26224 +14333,26222 +14334,26223 +14335,26229 +14336,26226 +14337,26221 +14338,25038 +14339,15794 +14340,25039 +14341,25048 +14342,25052 +14343,39178 +14344,35403 +14362,25080 +14363,16591 +14364,16802 +14365,25884 +14366,16805 +14367,25885 +14368,25887 +14369,25888 +14370,10079 +14371,25889 +14372,25954 +14373,25957 +14374,25966 +14375,25959 +14376,25958 +14377,25961 +14378,25965 +14379,25968 +14380,25956 +14381,6430 +14382,17251 +14383,17262 +14384,17256 +14385,13984 +14386,17274 +14387,17255 +14388,17252 +14389,17271 +14390,17261 +14391,20173 +14392,20385 +14393,2552 +14394,20550 +14395,7139 +14396,1246 +14397,27872 +14398,26003 +14399,25995 +14400,25997 +14401,25996 +14402,25994 +14403,25999 +14404,12973 +14405,27873 +14406,25998 +14407,26028 +14408,26026 +14409,26027 +14410,26033 +14411,26029 +14412,26035 +14413,26038 +14414,26024 +14415,11166 +14416,26025 +14417,26084 +14418,26086 +14419,26079 +14420,26080 +14421,26093 +14422,26081 +14423,26096 +14424,26083 +14425,26092 +14426,16781 +14427,26161 +14428,26153 +14429,26151 +14430,26175 +14431,26154 +14432,4904 +14433,26159 +14434,26174 +14435,26149 +14436,26150 +14437,16631 +14438,16634 +14439,16636 +14440,26201 +14441,41845 +14442,16633 +14443,16637 +14444,16632 +14445,19901 +14446,21459 +14447,26171 +14448,26168 +14449,26170 +14450,26184 +14451,18423 +14452,26182 +14453,26157 +14454,26169 +14455,26178 +14456,26240 +14457,26235 +14458,26231 +14459,26233 +14460,26243 +14461,26236 +14462,26238 +14463,26247 +14464,27228 +14465,26230 +14466,15274 +14467,15274 +14468,1102 +14469,1102 +14470,15274 +14471,15274 +14472,1102 +14473,15274 +14474,15274 +14475,3367 +14476,15274 +14477,15274 +14478,15274 +14479,15274 +14480,15274 +14481,1102 +14482,15274 +14483,1102 +14484,15274 +14485,15274 +14486,1102 +14487,25096 +14488,811 +14489,15274 +14490,15274 +14491,15274 +14492,15274 +14493,6270 +14494,15274 +14495,15274 +14496,15274 +14497,1102 +14498,15274 +14499,15274 +14500,15274 +14501,1102 +14502,28757 +14503,25104 +14504,15274 +14505,15274 +14506,15274 +14507,1102 +14508,15274 +14509,1102 +14510,1102 +14511,1102 +14512,1102 +14513,1102 +14514,1102 +14522,25111 +14523,25118 +14524,25120 +14525,25116 +14526,1102 +14527,25139 +14528,25138 +14529,25146 +14530,25147 +14531,25148 +14532,25152 +14533,25153 +14534,25154 +14535,25155 +14536,25157 +14537,25160 +14538,28705 +14539,25166 +14540,3422 +14541,25649 +14542,11449 +14543,28703 +14544,22952 +14545,25169 +14546,1225 +14547,25171 +14548,28817 +14549,28276 +14550,28274 +14551,28280 +14552,28282 +14553,28386 +14554,25343 +14555,25612 +14556,6522 +14557,6338 +14558,9857 +14559,27520 +14560,27524 +14561,17014 +14562,27518 +14563,27525 +14564,27519 +14565,27522 +14566,27523 +14567,27668 +14568,16997 +14569,13355 +14570,27669 +14571,27673 +14572,27672 +14573,27667 +14574,27670 +14575,25620 +14576,25173 +14577,28715 +14578,27963 +14579,27965 +14580,27964 +14581,27962 +14582,27584 +14583,27966 +14584,27968 +14585,27967 +14586,25180 +14587,10179 +14588,27976 +14589,9169 +14590,14770 +14591,21311 +14592,27979 +14593,27980 +14594,27977 +14595,27975 +14596,27978 +14597,6272 +14598,27983 +14599,27982 +14600,27985 +14601,14995 +14602,27986 +14603,27988 +14604,27987 +14605,27984 +14606,15000 +14607,27981 +14608,18487 +14609,18488 +14610,25184 +14611,25222 +14612,25223 +14613,6505 +14614,25219 +14615,25221 +14616,25220 +14617,25193 +14618,25197 +14619,13806 +14620,25225 +14621,25227 +14622,25224 +14623,25226 +14624,24102 +14625,23520 +14626,25245 +14627,1102 +14628,25246 +14629,4607 +14630,1102 +14631,18863 +14632,25255 +14633,25247 +14634,15274 +14635,1102 +14636,25248 +14637,25249 +14638,26966 +14639,1102 +14640,25253 +14641,11571 +14642,25260 +14643,5509 +14644,18204 +14645,22464 +14646,18499 +14647,18499 +14648,18499 +14649,18499 +14650,18499 +14651,18499 +14652,27579 +14653,18944 +14654,27582 +14655,27576 +14656,27584 +14657,27577 +14658,27581 +14659,27578 +14660,27580 +14661,27566 +14662,27568 +14663,27565 +14664,27564 +14665,27573 +14666,27567 +14667,27572 +14668,27570 +14669,27569 +14670,27649 +14671,18944 +14672,27582 +14673,27653 +14674,27579 +14675,27648 +14676,21299 +14677,27651 +14678,27652 +14679,25271 +14680,18470 +14681,17258 +14682,17259 +14683,27573 +14684,15411 +14685,17263 +14686,17321 +14687,17265 +14688,17267 +14689,22673 +14690,22674 +14691,18492 +14692,22675 +14693,11131 +14694,22676 +14695,7193 +14696,2633 +14697,22677 +14698,22689 +14699,22690 +14700,6953 +14701,22691 +14702,22692 +14703,12450 +14704,22693 +14705,3932 +14706,5417 +14707,25278 +14722,26983 +14723,26982 +14724,26958 +14725,26987 +14726,26985 +14727,26986 +14728,26988 +14729,23835 +14730,26984 +14742,27009 +14743,27007 +14744,27010 +14745,27011 +14746,27008 +14747,27012 +14748,27013 +14749,27014 +14750,27026 +14751,27034 +14752,27033 +14753,27191 +14754,27027 +14755,27029 +14756,27035 +14757,27028 +14758,27030 +14759,27048 +14760,27049 +14761,27046 +14762,27047 +14763,27051 +14764,27053 +14765,27052 +14766,27050 +14767,27054 +14768,27092 +14769,27093 +14770,27091 +14771,26141 +14772,29007 +14773,27094 +14774,28175 +14775,27097 +14776,27096 +14777,27099 +14778,21756 +14779,27147 +14780,20833 +14781,27152 +14782,27148 +14783,27146 +14784,27149 +14785,27151 +14786,27150 +14787,16079 +14788,27154 +14789,27155 +14790,27162 +14791,27161 +14792,27156 +14793,27159 +14794,27158 +14795,26115 +14796,27157 +14797,27160 +14798,27194 +14799,27192 +14800,27202 +14801,27197 +14802,27196 +14803,27185 +14804,29938 +14805,27195 +14806,23490 +14807,27193 +14808,27137 +14809,27827 +14810,27136 +14811,27138 +14812,27145 +14813,27143 +14814,28986 +14815,27536 +14816,27140 +14817,27142 +14818,25362 +14819,25363 +14820,25364 +14821,26811 +14822,25365 +14823,25366 +14824,25367 +14825,25134 +14826,26812 +14827,26810 +14828,26813 +14829,26814 +14830,26818 +14831,27182 +14832,26815 +14833,29015 +14834,26685 +14835,26687 +14836,25377 +14837,25378 +14838,26686 +14839,26690 +14840,26691 +14841,26688 +14842,26693 +14843,26692 +14844,26820 +14845,25382 +14846,27190 +14847,26819 +14848,26822 +14849,27186 +14850,26824 +14851,26825 +14852,11925 +14853,26821 +14854,26846 +14855,26847 +14856,26848 +14857,26850 +14858,28985 +14859,26849 +14860,27876 +14861,19760 +14862,26880 +14863,26881 +14864,26879 +14865,26883 +14866,27180 +14867,26884 +14868,26885 +14869,26878 +14870,25410 +14871,25411 +14872,15692 +14873,25437 +14874,25441 +14875,25470 +14876,25471 +14877,25474 +14878,9055 +14879,25496 +14880,25499 +14881,25503 +14882,25504 +14883,25506 +14884,25507 +14885,25508 +14886,25509 +14887,25510 +14888,25511 +14889,25513 +14890,25514 +14891,25515 +14892,25516 +14893,25533 +14894,25542 +14895,26654 +14896,26652 +14897,27838 +14898,26650 +14899,26656 +14900,26651 +14901,26655 +14902,23847 +14903,26646 +14904,27899 +14905,27901 +14906,27902 +14907,27906 +14908,27900 +14909,27904 +14910,27903 +14911,27905 +14912,11925 +14913,26799 +14914,26794 +14915,26795 +14916,22805 +14917,26798 +14918,26792 +14919,27839 +14920,26800 +14921,26797 +14922,26874 +14923,26869 +14924,26871 +14925,28015 +14926,26872 +14927,26870 +14928,26873 +14929,26875 +14930,20974 +14931,27932 +14932,27829 +14933,27934 +14934,27935 +14935,27942 +14936,27938 +14937,27940 +14938,27933 +14939,26636 +14940,26643 +14941,26454 +14942,26640 +14943,26634 +14944,27512 +14945,26641 +14946,26645 +14947,23825 +14948,26838 +14949,28996 +14950,26836 +14951,26842 +14952,26257 +14953,26840 +14954,26844 +14955,26843 +14956,26837 +14957,26833 +14958,26827 +14959,26830 +14960,26828 +14961,27835 +14962,26831 +14963,26834 +14964,23419 +14965,26829 +14966,26859 +14967,27833 +14968,26856 +14969,28024 +14970,26861 +14971,26864 +14972,26862 +14973,26868 +14974,26857 +14975,26890 +14976,26888 +14977,26889 +14978,27832 +14979,26893 +14980,26891 +14981,26894 +14982,26911 +14983,26887 +15002,25593 +15003,28007 +15004,7537 +15005,17017 +15006,18508 +15007,28011 +15008,28009 +15009,28008 +15010,9536 +15011,27668 +15012,14276 +15013,27989 +15014,28579 +15015,23050 +15016,27990 +15017,27991 +15018,3390 +15019,27667 +15022,24496 +15042,25661 +15043,25662 +15044,25807 +15045,25671 +15046,25673 +15047,25675 +15048,25676 +15049,25677 +15050,27943 +15051,27945 +15052,27944 +15053,25682 +15054,25683 +15055,25685 +15056,8682 +15057,25686 +15058,25687 +15059,25688 +15060,25694 +15061,25695 +15062,26071 +15063,26072 +15064,12368 +15065,14547 +15066,25699 +15067,25700 +15068,19012 +15069,25701 +15070,25702 +15071,25703 +15072,25705 +15073,25709 +15074,25706 +15075,25704 +15076,25710 +15077,25720 +15078,25718 +15079,25714 +15080,28976 +15081,25713 +15082,25719 +15083,25724 +15084,25726 +15085,25721 +15086,25729 +15087,25722 +15088,25728 +15089,25710 +15090,25731 +15091,25735 +15092,25736 +15093,25737 +15094,25739 +15095,25732 +15096,25734 +15102,2885 +15103,2885 +15104,28432 +15105,28231 +15106,28236 +15107,25072 +15108,25072 +15109,28225 +15110,27880 +15111,1981 +15112,27879 +15113,2211 +15114,27514 +15115,27878 +15116,11274 +15117,1978 +15118,27877 +15119,26177 +15120,27887 +15121,1966 +15122,27888 +15123,18449 +15124,27693 +15125,27881 +15126,27884 +15127,6775 +15128,27882 +15129,27886 +15130,9548 +15131,27710 +15132,27706 +15133,27720 +15134,27711 +15135,28563 +15136,27708 +15137,27715 +15138,25921 +15139,27712 +15140,27713 +15141,27943 +15142,27685 +15143,3652 +15144,27689 +15145,27690 +15146,27687 +15147,27686 +15148,27684 +15149,3846 +15150,27688 +15151,3442 +15152,27725 +15153,23048 +15154,27724 +15155,27722 +15156,27734 +15157,27723 +15158,27732 +15159,27728 +15160,27727 +15161,18980 +15162,27916 +15163,27922 +15164,27914 +15165,22253 +15166,27921 +15167,28979 +15168,17153 +15169,27920 +15170,27586 +15171,11832 +15172,27589 +15173,27593 +15174,27591 +15175,27907 +15176,14697 +15177,27592 +15178,27590 +15179,27663 +15180,27560 +15181,27562 +15182,28584 +15183,24159 +15184,27661 +15185,27666 +15186,27662 +15187,27664 +15188,27632 +15189,27634 +15190,23051 +15191,18980 +15192,27635 +15193,28022 +15194,28019 +15195,28018 +15196,31254 +15197,31255 +15198,31253 +15199,31252 +15200,30797 +15202,7834 +15203,28189 +15204,28218 +15205,28229 +15206,28197 +15207,41117 +15208,20614 +15209,1168 +15210,28544 +15211,28567 +15212,28527 +15213,28570 +15214,28561 +15215,28528 +15216,28530 +15217,28458 +15218,28346 +15219,13078 +15220,28316 +15221,28552 +15222,28314 +15223,28571 +15224,28318 +15225,28521 +15226,28531 +15227,28508 +15228,28512 +15229,19735 +15230,28539 +15231,28469 +15232,28542 +15233,28525 +15234,5640 +15235,28341 +15236,28566 +15237,28338 +15238,28459 +15239,28523 +15240,28504 +15241,20414 +15242,28568 +15243,28348 +15244,3175 +15245,6448 +15246,20299 +15247,28327 +15248,28535 +15249,20080 +15250,28536 +15251,28546 +15252,28465 +15253,28321 +15254,28347 +15255,28529 +15256,28576 +15257,26589 +15258,28517 +15259,28548 +15260,28468 +15261,28524 +15262,28540 +15263,28534 +15264,28311 +15265,28499 +15266,28526 +15267,28674 +15268,28460 +15269,28573 +15270,28533 +15271,28334 +15272,28541 +15273,28349 +15274,22144 +15275,28467 +15276,28580 +15277,29448 +15278,28502 +15279,28569 +15280,28457 +15281,28538 +15282,28518 +15283,28577 +15284,28572 +15285,28308 +15286,28575 +15287,28344 +15288,28322 +15289,28309 +15290,29447 +15291,28543 +15292,29449 +15293,29449 +15294,28515 +15295,28547 +15296,28545 +15297,28013 +15298,28017 +15299,23054 +15300,12415 +15301,28016 +15302,28012 +15303,28014 +15304,12369 +15305,28039 +15306,28045 +15307,20826 +15308,17114 +15309,28042 +15310,28046 +15311,11382 +15312,14522 +15313,9527 +15314,1168 +15322,6591 +15323,28557 +15324,28331 +15325,8258 +15326,26358 +15327,26361 +15328,4287 +15329,27998 +15330,27999 +15331,28001 +15332,18493 +15333,28006 +15334,28005 +15335,28093 +15336,28003 +15337,27683 +15338,28002 +15339,27680 +15340,27679 +15341,27678 +15342,28583 +15343,27677 +15344,27681 +15345,27682 +15346,27683 +15347,27674 +15348,27675 +15349,11953 +15350,27702 +15351,27699 +15352,28269 +15353,29134 +15354,27700 +15355,27701 +15356,18284 +15357,27703 +15358,27704 +15359,27956 +15360,27954 +15361,27958 +15362,27957 +15363,27959 +15364,27960 +15365,27955 +15366,17155 +15367,28026 +15368,12830 +15369,17231 +15370,27969 +15371,27974 +15372,27970 +15373,27973 +15374,17153 +15375,19008 +15376,27971 +15377,27972 +15378,14702 +15379,15412 +15380,15413 +15381,17094 +15382,23018 +15383,15415 +15384,23544 +15385,27555 +15386,27553 +15387,27655 +15388,27654 +15389,13343 +15390,27656 +15391,27660 +15392,27658 +15393,27657 +15394,32816 +15395,17190 +15396,26602 +15397,10654 +15398,28246 +15399,28149 +15400,28130 +15401,28183 +15402,28223 +15403,28243 +15404,8295 +15405,9529 +15406,28138 +15407,6660 +15408,568 +15409,7127 +15410,20914 +15411,23716 +15412,21363 +15413,26373 +15414,26374 +15415,26375 +15416,20914 +15417,21366 +15418,27412 +15419,7170 +15420,19572 +15421,26681 +15422,26378 +15423,7374 +15424,3243 +15425,28033 +15426,28031 +15427,23048 +15428,28030 +15429,28034 +15430,28035 +15431,28029 +15432,28037 +15433,28028 +15434,27616 +15435,27617 +15436,27608 +15437,26271 +15438,29013 +15439,28850 +15440,27615 +15441,27618 +15442,27610 +15443,28199 +15444,28228 +15445,28191 +15446,26381 +15447,26382 +15448,25469 +15449,16850 +15450,28147 +15451,2922 +15452,28168 +15453,28247 +15454,26383 +15455,28323 +15456,17155 +15457,26012 +15458,28192 +15459,28275 +15460,26385 +15461,26086 +15462,28286 +15463,28288 +15464,28096 +15465,28216 +15466,28269 +15467,23728 +15468,28303 +15469,28302 +15470,28290 +15471,28266 +15472,26937 +15473,26939 +15474,26938 +15475,26980 +15476,28998 +15477,26941 +15478,3931 +15479,26936 +15480,26953 +15481,26956 +15482,26952 +15483,26958 +15484,26954 +15485,26955 +15486,26959 +15487,26957 +15488,27004 +15489,27001 +15490,27006 +15491,27000 +15492,27029 +15493,26998 +15494,23750 +15495,27005 +15496,27003 +15497,27127 +15498,27541 +15499,26993 +15500,26990 +15501,26991 +15502,26994 +15503,26995 +15504,26855 +15505,26997 +15506,26970 +15507,26971 +15508,26977 +15509,26973 +15510,26969 +15511,26974 +15512,26978 +15513,26975 +15514,26972 +15515,26960 +15516,26964 +15517,24793 +15518,26961 +15519,26962 +15520,26963 +15521,26968 +15522,18775 +15523,26965 +15524,27081 +15525,27540 +15526,27082 +15527,27075 +15528,27079 +15529,27076 +15530,27084 +15531,27080 +15532,27074 +15533,27083 +15534,27037 +15535,27038 +15536,27039 +15537,27040 +15538,27041 +15539,27045 +15540,27042 +15541,27043 +15542,27044 +15543,26060 +15544,27022 +15545,27017 +15546,27018 +15547,26951 +15548,27019 +15549,27016 +15550,30091 +15551,27020 +15552,27024 +15553,27023 +15554,27068 +15555,27065 +15556,27066 +15557,27067 +15558,27073 +15559,27072 +15560,27069 +15561,27070 +15562,27071 +15563,20973 +15564,26388 +15565,27059 +15566,27058 +15567,27063 +15568,27062 +15569,27064 +15570,27060 +15571,27057 +15572,30092 +15573,27061 +15574,25872 +15575,27110 +15576,27115 +15577,27111 +15578,27112 +15579,25910 +15580,15517 +15581,27113 +15582,27114 +15583,27116 +15584,25911 +15585,28289 +15586,19495 +15587,28292 +15588,28265 +15589,27891 +15590,27895 +15591,27889 +15592,27896 +15593,27898 +15594,27108 +15595,27892 +15596,27890 +15597,27893 +15598,27894 +15599,27120 +15600,27122 +15601,27118 +15602,27124 +15603,27082 +15604,27126 +15605,27119 +15606,27117 +15607,27121 +15608,27123 +15609,27322 +15610,27324 +15611,27325 +15612,27326 +15613,27323 +15614,27328 +15615,26098 +15616,27327 +15617,26091 +15618,26099 +15619,27127 +15620,27128 +15621,27135 +15622,27129 +15623,28977 +15624,28565 +15625,31382 +15626,27132 +15627,27133 +15628,27134 +15629,27208 +15630,27215 +15631,27212 +15632,27220 +15633,27222 +15634,26330 +15635,27825 +15636,27206 +15637,27214 +15638,27218 +15639,27170 +15640,27171 +15641,27169 +15642,27173 +15643,27176 +15644,29006 +15645,27178 +15646,27174 +15647,27177 +15648,27179 +15649,27286 +15650,27290 +15651,27293 +15652,27292 +15653,27287 +15654,27285 +15655,27289 +15656,27291 +15657,27294 +15658,27301 +15659,27296 +15660,27297 +15661,27304 +15662,27299 +15663,27295 +15664,27306 +15665,27300 +15666,27302 +15667,27305 +15668,27314 +15669,27315 +15670,41846 +15671,26141 +15672,27317 +15673,27313 +15674,27318 +15675,26152 +15676,27319 +15677,27320 +15678,27312 +15679,27307 +15680,27308 +15681,26259 +15682,27309 +15683,27310 +15684,27151 +15685,27311 +15686,16079 +15687,26120 +15688,1443 +15689,26391 +15690,9860 +15691,26411 +15692,26412 +15693,28020 +15694,27288 +15695,26413 +15696,3426 +15697,26415 +15698,26419 +15699,26420 +15702,6486 +15703,26431 +15704,4841 +15705,26432 +15706,26433 +15707,26435 +15708,26436 +15709,26437 +15710,20614 +15722,21794 +15723,19873 +15724,1102 +15725,1102 +15726,1102 +15727,1102 +15728,15274 +15729,1102 +15730,1102 +15731,15274 +15732,15274 +15733,1102 +15734,1102 +15735,1102 +15736,26459 +15737,15274 +15738,1102 +15739,15274 +15740,1102 +15741,1102 +15742,1102 +15743,1102 +15744,15274 +15745,15274 +15746,15274 +15747,15274 +15748,1102 +15749,15274 +15750,26460 +15751,1102 +15752,6270 +15753,1102 +15754,1102 +15755,15274 +15756,1102 +15757,15274 +15758,1102 +15759,1102 +15760,1102 +15761,15274 +15762,1102 +15763,1102 +15764,1102 +15765,15274 +15766,22651 +15767,23740 +15768,15274 +15769,1102 +15770,1102 +15771,1102 +15772,6270 +15773,15274 +15774,1102 +15775,15274 +15776,15274 +15777,15274 +15778,26461 +15779,15274 +15780,1102 +15781,6270 +15782,26463 +15783,26464 +15784,26465 +15785,18136 +15786,26466 +15787,26467 +15788,15274 +15789,26468 +15790,8093 +15791,26470 +15792,26472 +15793,26474 +15794,12413 +15795,26473 +15796,26475 +15797,26476 +15798,7054 +15799,4841 +15800,26477 +15801,26479 +15802,17256 +15803,1246 +15804,25958 +15805,26491 +15806,26494 +15807,10671 +15808,10671 +15809,28911 +15810,26500 +15811,5636 +15812,26501 +15813,26502 +15814,26503 +15815,23042 +15822,26504 +15823,26512 +15824,26513 +15825,26514 +15826,21845 +15827,26515 +15842,8545 +15843,26531 +15844,8545 +15845,26531 +15846,18632 +15847,1317 +15848,8928 +15849,2885 +15850,26533 +15851,26534 +15852,11947 +15853,26535 +15854,26536 +15855,26537 +15856,9657 +15857,26539 +15858,26540 +15859,26541 +15860,26542 +15861,26543 +15862,26545 +15863,5205 +15864,3658 +15865,26548 +15866,26549 +15867,26551 +15868,16065 +15869,8031 +15870,22477 +15871,22071 +15872,13885 +15873,18119 +15874,26552 +15875,7856 +15876,26381 +15877,26571 +15878,4287 +15879,1769 +15880,7164 +15881,6706 +15882,26582 +15883,26583 +15884,8093 +15885,26584 +15886,1262 +15887,26921 +15888,20909 +15889,18811 +15890,26855 +15891,23825 +15892,27036 +15893,27527 +15894,18483 +15895,28449 +15902,12333 +15903,26593 +15904,26596 +15905,26592 +15906,26592 +15907,26594 +15908,26595 +15909,26597 +15910,26598 +15911,26595 +15912,28471 +15913,26595 +15914,26595 +15915,26595 +15916,26595 +15917,26595 +15918,28472 +15919,26595 +15920,26595 +15921,26595 +15922,26595 +15923,26595 +15924,22193 +15925,28462 +15926,28464 +15927,27556 +15928,28466 +15929,27558 +15930,27563 +15931,27575 +15932,28473 +15933,27851 +15934,28481 +15935,27863 +15936,28475 +15937,28455 +15938,28480 +15939,27612 +15940,28476 +15941,27650 +15942,28478 +15943,27588 +15944,28483 +15945,28488 +15946,28487 +15947,28489 +15962,28492 +15963,28491 +15964,28493 +15965,28490 +15966,27874 +15967,28486 +15968,28484 +15969,28503 +15970,28554 +15971,24014 +15972,28562 +15973,28551 +15974,5072 +15975,28514 +15976,28555 +15977,28025 +15978,28513 +15979,18289 +15980,28505 +15981,28553 +15982,28510 +15983,28516 +15984,27929 +15985,28500 +15986,20384 +15987,28501 +15988,15884 +15989,28511 +15990,27055 +15991,18775 +15992,6379 +15993,25482 +15994,26611 +15995,26616 +15996,26612 +15997,26613 +15998,3029 +15999,26614 +16000,19481 +16001,26615 +16002,26615 +16003,26615 +16004,26737 +16005,7626 +16006,26618 +16007,24721 +16008,26621 +16009,6497 +16022,21632 +16023,7913 +16024,26653 +16025,26653 +16026,28120 +16027,26658 +16028,26659 +16029,26753 +16030,26752 +16031,26662 +16032,26663 +16033,26664 +16034,26665 +16035,26668 +16036,26667 +16037,26669 +16038,26670 +16039,26674 +16040,27453 +16041,1102 +16042,1102 +16043,15274 +16044,15274 +16045,15274 +16046,1301 +16047,1301 +16048,15274 +16049,15274 +16050,1301 +16051,15274 +16052,15274 +16053,15274 +16054,15274 +16055,15274 +16056,15274 +16057,19595 +16058,26001 +16059,26683 +16060,10834 +16061,28729 +16062,28730 +16063,16601 +16064,25981 +16065,28734 +16066,14895 +16067,22415 +16068,9632 +16069,9632 +16070,9632 +16071,9632 +16072,1155 +16073,1134 +16074,9632 +16075,9632 +16076,9632 +16077,9632 +16078,9632 +16079,9632 +16080,9632 +16081,9632 +16082,1134 +16083,1155 +16084,1155 +16085,1134 +16086,7899 +16102,7899 +16103,7899 +16104,7899 +16105,7899 +16106,7899 +16107,7899 +16108,7899 +16109,9632 +16110,1301 +16111,1301 +16112,8117 +16113,8117 +16114,7867 +16115,8928 +16116,25910 +16117,16601 +16118,16719 +16119,16604 +16120,28730 +16121,15293 +16122,28729 +16123,6539 +16124,6539 +16125,6539 +16126,28730 +16127,16604 +16128,15293 +16129,14895 +16130,15293 +16131,25981 +16132,16604 +16133,15293 +16134,13670 +16135,28734 +16136,28730 +16137,16604 +16138,15293 +16139,21298 +16140,21298 +16141,30091 +16142,25861 +16143,25847 +16144,14950 +16145,28730 +16146,15293 +16147,28729 +16148,14950 +16149,25847 +16150,11956 +16151,28734 +16152,28730 +16153,16604 +16154,28729 +16155,11956 +16156,21298 +16157,14895 +16158,25861 +16159,30091 +16160,19727 +16161,19678 +16162,19727 +16163,25784 +16164,25788 +16165,26039 +16166,21473 +16167,26732 +16168,26735 +16169,26736 +16170,26734 +16171,26733 +16172,19678 +16173,9632 +16174,9632 +16175,9632 +16176,9632 +16177,9632 +16178,9632 +16179,9632 +16180,9632 +16181,9632 +16182,9632 +16183,9632 +16184,9632 +16185,9632 +16186,9632 +16187,9632 +16188,9632 +16189,3018 +16190,4045 +16191,26754 +16192,7886 +16202,26771 +16203,26772 +16204,26773 +16205,26774 +16206,26776 +16207,26775 +16208,7287 +16209,3029 +16210,11448 +16211,15897 +16212,9465 +16213,15897 +16214,7798 +16215,7798 +16216,7798 +16217,7798 +16218,7798 +16219,7798 +16220,7798 +16221,7798 +16222,7798 +16223,7798 +16224,7798 +16242,7798 +16243,7798 +16244,7798 +16245,7798 +16246,7798 +16247,7798 +16248,7798 +16249,7798 +16250,7798 +16251,7798 +16252,7798 +16253,7798 +16254,7798 +16255,7798 +16262,6349 +16263,3023 +16282,7382 +16283,1168 +16302,1246 +16303,26924 +16304,26925 +16305,7266 +16306,2376 +16307,8927 +16308,26926 +16309,26950 +16310,3023 +16311,26976 +16312,7119 +16313,27056 +16314,1236 +16315,27087 +16316,1246 +16317,1246 +16318,1246 +16319,1246 +16320,1246 +16321,1246 +16322,1246 +16323,1246 +16324,1246 +16325,1246 +16326,1246 +16327,1246 +16328,1246 +16329,1246 +16330,1246 +16331,1246 +16332,27086 +16333,7099 +16334,30797 +16335,30797 +16336,27087 +16337,27087 +16338,13108 +16339,25132 +16340,27088 +16341,27088 +16342,27087 +16343,16208 +16344,16208 +16345,31997 +16346,1246 +16347,1246 +16348,1246 +16349,1246 +16350,1246 +16351,1246 +16352,1246 +16353,1246 +16354,1246 +16355,1246 +16356,1246 +16357,1246 +16358,1246 +16359,1246 +16360,1246 +16361,1246 +16362,1246 +16363,1246 +16364,1246 +16365,1246 +16366,1246 +16367,27163 +16368,1246 +16369,31063 +16370,27165 +16371,1246 +16372,1246 +16373,1246 +16374,1246 +16375,1246 +16376,1246 +16377,1246 +16378,1246 +16379,1246 +16380,1246 +16381,1246 +16382,1246 +16383,1246 +16384,1246 +16385,1246 +16386,1246 +16387,1246 +16388,1246 +16389,1246 +16390,1246 +16391,31064 +16392,31068 +16393,31070 +16394,27204 +16395,27204 +16396,31075 +16397,31071 +16398,27209 +16399,27209 +16400,27211 +16401,31244 +16402,27217 +16403,31245 +16404,27223 +16405,26752 +16406,31086 +16407,27226 +16408,27227 +16409,31082 +16410,30321 +16411,27226 +16412,27223 +16413,31057 +16414,27230 +16415,27231 +16416,27232 +16417,31072 +16418,31077 +16419,31073 +16420,31076 +16421,31074 +16422,27235 +16423,27236 +16424,27234 +16425,31241 +16426,31242 +16427,31247 +16428,31246 +16429,28934 +16430,31083 +16431,26659 +16432,26662 +16433,30315 +16434,30316 +16435,31084 +16436,31085 +16437,33009 +16438,30338 +16439,30340 +16440,32988 +16441,32978 +16442,28715 +16443,32981 +16444,33004 +16445,30331 +16446,30333 +16447,30332 +16448,30334 +16449,30328 +16450,30329 +16451,30330 +16452,30327 +16453,30327 +16454,30334 +16455,30330 +16456,30329 +16457,30328 +16458,30332 +16459,30333 +16460,30331 +16461,30324 +16462,32095 +16463,32098 +16464,30325 +16465,32093 +16466,32094 +16467,32097 +16468,32092 +16469,30320 +16470,30322 +16471,30321 +16472,30319 +16473,30315 +16474,30316 +16475,30317 +16476,30318 +16477,30315 +16478,38343 +16479,30317 +16480,30318 +16481,30320 +16482,30322 +16483,30319 +16484,30321 +16485,31097 +16486,27255 +16487,31098 +16488,27257 +16489,31099 +16490,26144 +16491,31102 +16492,31100 +16493,27262 +16494,27263 +16495,27264 +16496,27265 +16497,30801 +16498,31035 +16499,31036 +16500,27264 +16501,28935 +16502,27267 +16503,28106 +16504,31037 +16505,31039 +16506,30358 +16507,31038 +16508,31040 +16509,31050 +16510,31051 +16511,27272 +16512,27273 +16513,27274 +16514,30071 +16515,31052 +16516,31049 +16517,27277 +16518,31183 +16519,27279 +16520,27280 +16521,30072 +16522,31185 +16523,31186 +16524,30382 +16525,31048 +16526,31184 +16527,30367 +16528,31047 +16529,27280 +16530,31182 +16531,31181 +16532,27277 +16533,32999 +16534,32998 +16535,33085 +16536,33089 +16537,30346 +16538,30345 +16539,32996 +16540,32997 +16541,30373 +16542,30374 +16543,30375 +16544,30928 +16545,30370 +16546,30369 +16547,30372 +16548,30371 +16549,32110 +16550,32134 +16551,32129 +16552,32108 +16553,30353 +16554,32106 +16555,32107 +16556,30354 +16557,30354 +16558,32114 +16559,30353 +16560,32113 +16561,32132 +16562,32131 +16563,32115 +16564,32112 +16565,32122 +16566,32135 +16567,32120 +16568,32125 +16569,32124 +16570,30362 +16571,32119 +16572,30364 +16573,32126 +16574,32100 +16575,30364 +16576,30362 +16577,32103 +16578,32133 +16579,32127 +16580,32128 +16581,6688 +16582,27451 +16583,27454 +16602,27471 +16603,6689 +16604,27472 +16605,27473 +16606,27477 +16607,27479 +16608,16947 +16622,27492 +16623,9857 +16642,7596 +16643,7596 +16644,7596 +16645,7629 +16646,7629 +16647,7629 +16648,7629 +16649,7629 +16650,7629 +16651,7629 +16652,7629 +16653,7629 +16654,7629 +16655,7629 +16656,7629 +16657,7629 +16658,27514 +16659,28270 +16660,27517 +16661,27521 +16662,22652 +16663,16325 +16664,26289 +16665,1317 +16666,31416 +16667,45174 +16668,31415 +16669,30925 +16670,31412 +16671,31411 +16672,31414 +16673,31413 +16674,31402 +16675,31408 +16676,31406 +16677,31410 +16678,31403 +16679,31409 +16680,31404 +16681,31405 +16682,29594 +16683,29597 +16684,29593 +16685,29596 +16686,31087 +16687,29273 +16688,29591 +16689,30211 +16690,30422 +16691,30430 +16692,30427 +16693,31104 +16694,30424 +16695,31103 +16696,30425 +16697,30426 +16698,31263 +16699,29797 +16700,29792 +16701,29798 +16702,29793 +16703,29795 +16704,29799 +16705,29800 +16706,29974 +16707,28180 +16708,28179 +16709,28161 +16710,24190 +16711,28162 +16712,28166 +16713,28177 +16714,29977 +16715,29981 +16716,29976 +16717,29979 +16718,30412 +16719,29975 +16720,31228 +16721,28160 +16722,29968 +16723,29966 +16724,29970 +16725,29967 +16726,29969 +16727,31207 +16728,29972 +16729,29971 +16730,29958 +16731,42241 +16732,29963 +16733,29964 +16734,29960 +16735,29961 +16736,29959 +16737,29962 +16738,27910 +16739,27911 +16740,27912 +16741,27913 +16742,27953 +16743,10301 +16744,15773 +16745,11449 +16746,15274 +16747,7842 +16748,7418 +16762,24037 +16763,3023 +16764,3023 +16765,3023 +16766,24733 +16767,1102 +16768,28187 +16769,28194 +16782,27227 +16783,1093 +16784,6614 +16785,18010 +16786,1504 +16787,28261 +16788,28407 +16789,28408 +16790,24153 +16791,26168 +16792,6794 +16793,28454 +16794,23729 +16795,31517 +16796,30582 +16797,30586 +16798,30581 +16799,30584 +16800,30587 +16801,30585 +16802,30583 +16803,31975 +16804,31970 +16805,31971 +16806,31969 +16807,31974 +16808,31987 +16809,31973 +16810,31972 +16811,31718 +16812,30620 +16813,31371 +16814,28198 +16815,31490 +16816,30623 +16817,30621 +16818,34046 +16819,30617 +16820,31105 +16821,31514 +16822,31340 +16823,31504 +16824,31109 +16825,31106 +16826,31503 +16827,31339 +16828,31722 +16829,31724 +16830,31725 +16831,31726 +16832,33653 +16833,31797 +16834,32790 +16835,31729 +16836,32016 +16837,31830 +16838,31829 +16839,31834 +16840,31831 +16841,31832 +16842,31835 +16843,31836 +16844,31833 +16845,32022 +16846,32028 +16847,32029 +16848,32030 +16849,32040 +16850,32021 +16851,32019 +16852,32024 +16853,31505 +16854,31506 +16855,31352 +16856,31510 +16857,31509 +16858,31353 +16859,31354 +16860,31507 +16861,31020 +16862,31025 +16863,31022 +16864,31019 +16865,31021 +16866,41847 +16867,31023 +16868,31024 +16869,28497 +16870,28497 +16871,28497 +16872,28497 +16873,28522 +16882,15692 +16883,15692 +16884,15590 +16885,15590 +16886,28586 +16887,28588 +16888,26584 +16889,28592 +16890,28593 +16891,28608 +16892,6009 +16893,6009 +16894,28610 +16895,6009 +16896,6009 +16897,30536 +16898,30542 +16899,34016 +16900,33655 +16901,30540 +16902,30546 +16903,30541 +16904,30548 +16905,33650 +16906,31111 +16907,33651 +16908,33743 +16909,31115 +16910,31110 +16911,31127 +16912,34044 +16913,34041 +16914,34218 +16915,34039 +16916,34038 +16917,34254 +16918,34045 +16919,34055 +16920,34051 +16921,34233 +16922,34049 +16923,34047 +16924,34048 +16925,34053 +16926,34052 +16927,34015 +16928,34013 +16929,34369 +16930,29857 +16931,34014 +16932,34022 +16933,34011 +16934,34012 +16935,33666 +16936,33665 +16937,34091 +16938,33672 +16939,34367 +16940,33668 +16941,34269 +16942,33667 +16943,34079 +16944,34078 +16945,34255 +16946,34084 +16947,34217 +16948,34082 +16949,34083 +16950,34081 +16951,33634 +16952,33633 +16953,34258 +16954,33637 +16955,45888 +16956,33636 +16957,33639 +16958,33635 +16959,33982 +16960,33990 +16961,34253 +16962,33986 +16963,34215 +16964,33984 +16965,33989 +16966,33983 +16967,24715 +16968,24702 +16969,18535 +16970,28622 +16971,16211 +16972,6748 +16973,17898 +16974,28732 +16975,28746 +16976,10365 +16977,28749 +16978,28750 +16979,28754 +16980,28756 +16981,16664 +16982,28770 +16983,28856 +16984,28760 +16985,26026 +16986,28288 +16987,28767 +16988,28773 +16989,28774 +16990,28775 +16991,25147 +16992,28786 +16993,28818 +16994,28822 +16995,28823 +16996,28827 +16997,28828 +16998,28829 +16999,28830 +17000,24022 +17001,28831 +17002,28834 +17003,28835 +17004,28836 +17005,28837 +17006,26995 +17007,28838 +17008,1301 +17009,14023 +17010,28840 +17011,28841 +17012,28842 +17013,28843 +17014,28844 +17015,28848 +17016,23276 +17017,1102 +17018,1102 +17019,13123 +17020,28854 +17021,28855 +17022,1102 +17023,1102 +17024,28857 +17025,1102 +17026,28858 +17027,28859 +17028,28860 +17029,28861 +17030,18725 +17031,20984 +17032,28862 +17033,28863 +17034,7287 +17035,7287 +17036,7287 +17037,7287 +17038,7287 +17039,28869 +17040,28866 +17041,28867 +17042,28870 +17043,28871 +17044,23716 +17045,28682 +17046,28873 +17047,12473 +17048,18119 +17049,6270 +17050,28990 +17051,6270 +17052,6270 +17053,6270 +17054,28876 +17055,15887 +17056,28877 +17057,28878 +17058,15773 +17059,6270 +17060,6270 +17061,28891 +17062,1102 +17063,9840 +17064,26374 +17065,4841 +17066,34110 +17067,29717 +17068,29161 +17069,30927 +17070,29706 +17071,34111 +17072,29163 +17073,32162 +17074,29176 +17075,32197 +17076,32199 +17077,29195 +17078,29719 +17082,29722 +17102,29824 +17103,29677 +17104,32200 +17105,34109 +17106,29702 +17107,29827 +17108,23728 +17109,9858 +17110,29697 +17111,6484 +17112,29171 +17113,29703 +17114,20784 +17115,9649 +17116,9649 +17117,2618 +17118,28999 +17119,29036 +17122,29050 +17123,29066 +17124,17655 +17125,8918 +17126,7726 +17142,29097 +17162,2760 +17163,29131 +17182,29698 +17183,2208 +17184,18480 +17185,18509 +17186,18506 +17187,27782 +17188,18468 +17189,18477 +17190,18516 +17191,29730 +17192,2324 +17193,29699 +17194,29164 +17195,29165 +17196,18079 +17197,29166 +17198,29172 +17199,29173 +17200,811 +17201,811 +17202,29169 +17203,29174 +17204,29175 +17222,38257 +17223,29191 +17224,7365 +17242,13290 +17262,13290 +17282,29276 +17283,6249 +17302,29444 +17303,29442 +17304,29440 +17305,29441 +17306,15711 +17307,29443 +17308,29445 +17309,29311 +17310,21672 +17322,24730 +17323,29312 +17324,29312 +17325,29312 +17326,22024 +17327,25475 +17328,25467 +17329,29315 +17330,29314 +17331,29317 +17332,29316 +17333,21672 +17342,1121 +17343,15897 +17344,29331 +17345,6703 +17346,29351 +17347,23475 +17348,15771 +17349,29352 +17350,15717 +17351,29353 +17352,29354 +17353,1096 +17354,29355 +17355,3093 +17362,29312 +17363,29312 +17364,7365 +17382,29397 +17383,29408 +17384,23475 +17402,18117 +17403,18080 +17404,19873 +17405,18091 +17406,6425 +17407,1041 +17408,25469 +17409,29450 +17410,23475 +17411,29451 +17412,1143 +17413,1143 +17414,1143 +17422,29468 +17423,26571 +17442,1096 +17462,29495 +17463,29496 +17482,29550 +17502,9310 +17503,19462 +17504,29571 +17505,29312 +17506,29312 +17507,29312 +17508,4405 +17522,11449 +17523,29630 +17542,7913 +17562,31059 +17563,27165 +17564,31060 +17565,27163 +17566,30341 +17567,30385 +17568,31053 +17569,31066 +17570,27258 +17571,31032 +17572,27260 +17573,30381 +17574,27257 +17575,27255 +17576,31026 +17577,27256 +17578,32979 +17579,33007 +17580,33002 +17581,33001 +17582,30338 +17583,33006 +17584,32995 +17585,30340 +17586,33076 +17587,30345 +17588,33077 +17589,30346 +17590,33088 +17591,33071 +17592,33079 +17593,30380 +17594,31061 +17595,27165 +17596,31062 +17597,27163 +17598,31065 +17599,25198 +17600,31058 +17601,31067 +17602,32980 +17603,32991 +17604,33005 +17605,32984 +17606,30338 +17607,32992 +17608,32990 +17609,30340 +17610,31030 +17611,31033 +17612,30351 +17613,31031 +17614,27257 +17615,27255 +17616,31027 +17617,31028 +17618,33080 +17619,30345 +17620,33081 +17621,30346 +17622,33083 +17623,33082 +17624,33084 +17625,26021 +17626,29653 +17642,29671 +17643,29671 +17662,8928 +17682,1317 +17683,1317 +17684,29731 +17685,29692 +17686,20555 +17687,8095 +17688,29693 +17689,10301 +17690,31475 +17691,31480 +17692,4284 +17693,22429 +17694,4284 +17695,16572 +17696,45599 +17702,29948 +17703,29691 +17704,29759 +17705,29769 +17706,15274 +17707,29842 +17708,4136 +17709,1301 +17710,29872 +17711,29880 +17712,29903 +17713,23629 +17714,29890 +17715,29894 +17716,29895 +17717,4427 +17718,29896 +17719,29897 +17720,15274 +17721,29898 +17722,1102 +17723,29901 +17724,1102 +17725,11431 +17726,29902 +17727,24053 +17728,30172 +17729,29906 +17730,29907 +17731,3331 +17732,29908 +17733,29910 +17734,29911 +17735,1103 +17736,29912 +17737,29914 +17738,29915 +17739,29916 +17740,29941 +17741,29918 +17742,29919 +17743,22391 +17744,29922 +17745,29924 +17746,29925 +17747,6624 +17748,29927 +17749,29928 +17750,29929 +17751,29930 +17752,29931 +17753,29932 +17754,29934 +17755,14456 +17756,6688 +17757,13024 +17758,29935 +17759,23716 +17760,19492 +17761,4777 +17762,6851 +17763,18707 +17764,1659 +17765,6496 +17766,29939 +17767,29942 +17768,23608 +17769,29944 +17770,30957 +17771,29946 +17772,15420 +17773,15420 +17774,29947 +17775,29951 +17776,29952 +17777,29953 +17778,29954 +17779,29955 +17780,29957 +17781,7798 +17782,6494 +17783,6494 +17802,30606 +17822,1322 +17823,7629 +17824,9632 +17825,9632 +17826,9632 +17827,7899 +17828,7899 +17829,7899 +17830,7899 +17831,9632 +17832,9632 +17833,9632 +17834,9632 +17835,9632 +17836,9632 +17837,9632 +17838,9632 +17839,9632 +17840,9632 +17841,9632 +17842,9632 +17843,9632 +17844,9632 +17845,9632 +17846,9632 +17847,9632 +17848,9632 +17849,23520 +17850,6748 +17851,9632 +17852,9632 +17853,9632 +17854,9632 +17855,9632 +17856,9632 +17857,9632 +17858,9632 +17859,9632 +17860,9632 +17861,9632 +17862,9632 +17882,7899 +17883,7899 +17884,7899 +17885,7899 +17886,7899 +17887,7899 +17888,7899 +17889,7899 +17890,7899 +17891,7899 +17892,7899 +17893,7899 +17894,7899 +17895,7899 +17896,7899 +17897,7899 +17898,7899 +17899,7899 +17900,31480 +17901,31481 +17902,31482 +17903,31483 +17904,31484 +17905,31475 +17906,31476 +17907,31477 +17908,31478 +17909,31479 +17910,9632 +17911,9632 +17922,30171 +17942,30255 +17943,29910 +17962,2588 +17963,3568 +17964,1282 +17965,1168 +17966,30271 +17967,20914 +17968,20914 +17969,4056 +17982,28682 +18002,30294 +18022,28830 +18023,4006 +18042,30433 +18043,2373 +18044,30436 +18045,30437 +18046,1301 +18047,30439 +18048,30440 +18062,30455 +18063,24011 +18082,30472 +18083,30474 +18102,14617 +18103,24022 +18104,30492 +18105,30494 +18106,12206 +18122,30516 +18123,30517 +18142,19540 +18143,30532 +18144,13806 +18145,23358 +18146,30533 +18147,3422 +18148,7741 +18149,24572 +18150,20220 +18151,8547 +18152,8547 +18153,30534 +18154,30658 +18155,30534 +18156,30534 +18157,30534 +18158,30534 +18159,30534 +18160,1102 +18161,9992 +18162,9992 +18163,9992 +18164,9992 +18165,9992 +18166,30559 +18167,16539 +18168,41067 +18169,30562 +18170,30563 +18171,30564 +18172,30565 +18173,30566 +18182,30567 +18202,30594 +18203,30595 +18204,30577 +18205,16132 +18206,6349 +18207,30593 +18208,15273 +18209,26618 +18222,30600 +18223,30601 +18224,6501 +18225,30602 +18226,18010 +18227,20628 +18228,30603 +18229,12547 +18230,12410 +18231,30605 +18232,19503 +18233,18170 +18234,24154 +18235,1301 +18236,13433 +18237,21368 +18238,15753 +18239,1102 +18240,292 +18241,30608 +18242,17606 +18243,17785 +18244,17343 +18245,16208 +18246,17494 +18247,29447 +18248,17786 +18249,20802 +18250,22071 +18251,30647 +18252,6270 +18253,24217 +18254,26733 +18255,21974 +18256,18077 +18257,6270 +18258,30611 +18259,7798 +18260,7798 +18261,1103 +18262,21072 +18263,27972 +18264,6270 +18265,6270 +18266,7737 +18267,1301 +18268,3118 +18269,18119 +18282,31210 +18283,7326 +18284,18115 +18285,2516 +18286,30634 +18287,18080 +18288,7921 +18289,9860 +18290,6270 +18291,6270 +18292,6270 +18293,30638 +18294,3665 +18295,30639 +18296,30643 +18297,30650 +18298,30654 +18299,17889 +18300,21845 +18301,30660 +18302,30661 +18303,4403 +18304,30663 +18305,30671 +18306,30669 +18307,30667 +18308,30670 +18309,30672 +18310,30673 +18311,28511 +18312,30675 +18313,41372 +18314,24646 +18315,28812 +18316,24122 +18317,9853 +18318,30679 +18319,30680 +18320,30681 +18321,30915 +18322,6779 +18323,30683 +18324,13360 +18325,30685 +18326,30686 +18327,30688 +18328,30689 +18329,30690 +18330,30690 +18331,30690 +18332,12547 +18333,6672 +18334,1317 +18335,30690 +18336,30691 +18337,30693 +18338,21016 +18339,30703 +18340,30696 +18341,30697 +18342,7559 +18343,9836 +18344,25706 +18345,9840 +18346,30698 +18347,30699 +18348,30994 +18349,30702 +18350,15217 +18351,30704 +18352,30706 +18353,30711 +18354,1399 +18355,15420 +18356,1246 +18357,1103 +18358,7139 +18359,1317 +18360,8093 +18361,12547 +18362,1155 +18363,6672 +18364,1134 +18365,5780 +18366,30721 +18367,30720 +18368,30719 +18369,16710 +18370,30722 +18371,30723 +18372,30724 +18373,17099 +18374,18971 +18375,30727 +18376,30728 +18377,30729 +18378,30730 +18379,30736 +18380,30737 +18381,30738 +18382,30739 +18383,30740 +18384,30743 +18385,30744 +18386,21964 +18387,13656 +18388,30747 +18389,15247 +18390,18935 +18391,30749 +18392,6443 +18393,30751 +18394,30753 +18395,9842 +18396,30754 +18397,9859 +18398,9832 +18399,28812 +18400,26001 +18401,1317 +18402,29697 +18403,26391 +18404,9860 +18405,30763 +18406,30764 +18407,17216 +18408,30772 +18409,30774 +18410,30778 +18411,31732 +18412,30780 +18413,30783 +18414,1096 +18415,6270 +18416,6270 +18417,6270 +18418,6270 +18419,30791 +18420,30792 +18421,42211 +18422,28496 +18423,28496 +18424,30795 +18425,30796 +18426,18597 +18427,27088 +18428,30797 +18429,27273 +18430,27273 +18431,27273 +18432,27277 +18433,27277 +18434,27262 +18435,30801 +18436,27262 +18437,27255 +18438,23521 +18439,27088 +18440,27087 +18441,27087 +18442,30799 +18443,30799 +18444,30799 +18445,27223 +18446,27223 +18447,27223 +18448,31248 +18449,31248 +18450,30802 +18451,30803 +18452,30804 +18453,30804 +18454,30805 +18455,30805 +18456,30806 +18457,30806 +18458,26103 +18459,30807 +18460,30809 +18461,27088 +18462,30813 +18463,30814 +18464,9849 +18465,29712 +18466,29712 +18467,29712 +18468,29712 +18469,29712 +18470,29712 +18471,29712 +18472,29712 +18473,29712 +18474,1246 +18475,15399 +18476,30817 +18477,17142 +18478,30819 +18479,30820 +18480,30821 +18481,5233 +18482,8106 +18483,25076 +18484,30822 +18485,20900 +18486,30824 +18487,1102 +18488,6511 +18489,20797 +18490,33293 +18491,30827 +18492,30828 +18493,30829 +18494,30830 +18495,30831 +18496,30832 +18497,30833 +18498,30834 +18499,30835 +18500,9823 +18501,21472 +18502,30836 +18503,30837 +18504,30839 +18505,30838 +18506,9080 +18507,19921 +18508,30848 +18509,30849 +18510,30850 +18511,30851 +18512,30852 +18513,20797 +18514,6270 +18515,6270 +18516,6270 +18517,1096 +18518,1096 +18519,1096 +18520,30853 +18521,30854 +18522,23897 +18523,30855 +18524,30857 +18525,30859 +18526,30860 +18527,30862 +18528,30864 +18529,30865 +18530,30866 +18531,30867 +18532,30868 +18533,30869 +18534,30870 +18535,30872 +18536,30875 +18537,21072 +18538,30881 +18539,18721 +18540,18721 +18541,30882 +18542,30886 +18543,30661 +18544,30893 +18545,24615 +18546,30889 +18547,30894 +18562,24673 +18563,30912 +18564,30912 +18565,20784 +18566,30913 +18567,30916 +18582,30936 +18583,30934 +18584,30935 +18585,9839 +18586,9823 +18587,31203 +18588,18063 +18589,20872 +18590,15788 +18591,30952 +18592,1102 +18593,30953 +18594,30999 +18595,7050 +18596,30956 +18597,30959 +18598,30959 +18599,36684 +18600,1103 +18601,6689 +18602,30875 +18603,3663 +18604,6688 +18605,6689 +18606,31256 +18607,31257 +18608,31347 +18609,31346 +18610,5139 +18611,9975 +18612,6845 +18622,21072 +18623,21072 +18624,21072 +18625,8560 +18626,20874 +18627,31168 +18628,30953 +18629,19239 +18630,31170 +18631,30995 +18632,16837 +18633,30996 +18634,31199 +18635,30997 +18636,7064 +18637,31204 +18638,31198 +18639,31200 +18640,24591 +18641,18062 +18642,8927 +18643,7629 +18644,31016 +18645,31202 +18646,31029 +18647,1301 +18648,1301 +18649,1301 +18650,1102 +18651,1102 +18652,1301 +18653,15274 +18654,15274 +18655,15274 +18656,1301 +18657,15274 +18658,15274 +18659,31034 +18660,31205 +18661,15274 +18662,34892 +18663,7155 +18664,31095 +18665,31096 +18666,7899 +18667,7899 +18668,7899 +18669,7899 +18670,2616 +18671,31119 +18672,31120 +18673,31121 +18674,9836 +18675,4742 +18676,31122 +18677,15148 +18678,9853 +18679,28831 +18680,30926 +18681,10177 +18682,10006 +18683,31126 +18684,9840 +18685,16325 +18686,31130 +18687,13123 +18688,7155 +18689,31131 +18690,25226 +18691,15420 +18692,31133 +18693,31136 +18694,7002 +18695,31138 +18696,18790 +18697,31139 +18698,21958 +18699,31142 +18700,27048 +18701,28733 +18702,31143 +18703,31144 +18704,31145 +18705,31146 +18706,31147 +18707,31148 +18708,31150 +18709,31151 +18710,31159 +18711,31160 +18712,31161 +18713,31338 +18714,31162 +18715,31163 +18716,31166 +18717,23239 +18718,31167 +18719,3422 +18720,13672 +18721,31171 +18722,31173 +18723,6539 +18724,31146 +18725,31174 +18726,31175 +18727,31177 +18728,9657 +18729,31240 +18730,31180 +18731,1301 +18732,25992 +18733,25990 +18734,31351 +18735,31188 +18736,16133 +18737,31189 +18738,31239 +18739,31191 +18740,31192 +18741,31193 +18742,31194 +18743,15163 +18744,31196 +18745,2311 +18746,31208 +18747,27231 +18748,3233 +18749,1695 +18750,18072 +18751,6349 +18752,31211 +18753,31212 +18754,31213 +18755,31237 +18756,31216 +18757,31217 +18758,20574 +18759,31219 +18760,9839 +18761,31677 +18762,31223 +18763,31224 +18764,31225 +18765,31226 +18766,17608 +18767,17608 +18768,17608 +18769,7139 +18770,7139 +18771,7139 +18772,17785 +18773,17785 +18774,17785 +18775,7087 +18776,25132 +18777,25132 +18778,25132 +18779,24153 +18780,24153 +18781,31238 +18782,31238 +18783,8628 +18784,8628 +18785,17343 +18786,17343 +18787,17343 +18788,17494 +18789,17494 +18790,17494 +18791,17786 +18792,31350 +18793,29448 +18794,29447 +18795,29448 +18796,16208 +18797,16207 +18798,16207 +18799,6014 +18800,31258 +18801,31250 +18802,16325 +18803,31265 +18804,6430 +18805,33626 +18806,31271 +18807,37667 +18808,31276 +18809,31278 +18810,16526 +18811,24159 +18812,31280 +18813,9823 +18814,1399 +18815,31282 +18816,33615 +18817,31286 +18818,8093 +18819,31211 +18820,31287 +18821,9835 +18822,34112 +18823,31290 +18824,31295 +18825,31733 +18826,31746 +18827,31956 +18828,31957 +18829,31468 +18830,31302 +18831,31958 +18832,31309 +18833,31759 +18834,37841 +18835,31748 +18836,31757 +18837,31749 +18838,31379 +18839,29352 +18840,31381 +18841,29354 +18842,34114 +18843,32033 +18844,31754 +18845,37841 +18846,37841 +18847,32032 +18848,31752 +18849,37841 +18850,37841 +18851,37841 +18852,37841 +18853,37841 +18854,37840 +18855,31758 +18856,37840 +18857,37840 +18858,37840 +18859,37840 +18860,31747 +18861,31320 +18862,37840 +18863,37840 +18864,37840 +18865,31955 +18866,31751 +18867,31954 +18868,31750 +18869,31761 +18870,31327 +18871,31766 +18872,31331 +18873,31764 +18874,31765 +18875,31333 +18876,31996 +18877,31998 +18878,31337 +18879,9836 +18880,14023 +18881,29698 +18882,29170 +18902,17608 +18903,20625 +18904,20625 +18922,7956 +18942,31376 +18943,7718 +18944,23436 +18945,20614 +18946,3920 +18947,6683 +18948,31385 +18949,1102 +18950,31386 +18951,31387 +18952,7235 +18953,31388 +18954,31388 +18955,31388 +18956,31391 +18957,31400 +18958,18021 +18959,31401 +18960,19478 +18961,29351 +18962,1438 +18963,18051 +18964,18048 +18965,18051 +18966,18051 +18967,18048 +18968,9836 +18969,7347 +18970,26537 +18971,9837 +18972,7347 +18982,9840 +18983,31419 +18984,41640 +18985,31424 +18986,40162 +18987,16161 +19002,31434 +19003,31434 +19004,8026 +19005,8026 +19006,8026 +19007,8026 +19008,8026 +19009,8026 +19010,8026 +19011,8026 +19012,8026 +19013,8026 +19014,22893 +19015,5027 +19016,20784 +19017,30913 +19018,20872 +19019,30606 +19020,1301 +19022,20619 +19023,18098 +19024,31499 +19025,31500 +19026,18070 +19027,1102 +19028,15966 +19029,31511 +19030,17343 +19031,31527 +19032,31528 +19033,31515 +19034,31516 +19035,12333 +19036,31521 +19037,31523 +19038,224 +19039,31675 +19040,31526 +19041,31529 +19042,31531 +19043,31532 +19044,34506 +19045,31256 +19046,31257 +19047,31534 +19048,31538 +19049,34505 +19050,36269 +19051,31565 +19052,34504 +19053,31553 +19054,27454 +19055,6564 +19056,31557 +19057,31564 +19058,31566 +19059,31828 +19060,21203 +19061,6344 +19062,6413 +19063,21203 +19064,22477 +19065,31576 +19066,25147 +19067,17458 +19068,11926 +19069,7741 +19070,3233 +19071,31577 +19082,23211 +19083,26468 +19084,27197 +19085,31592 +19086,15042 +19087,31598 +19088,31599 +19089,30839 +19090,14686 +19091,31597 +19092,31600 +19093,31601 +19094,31602 +19095,31603 +19096,9859 +19097,31604 +19098,9857 +19099,31605 +19100,31606 +19101,31608 +19102,31610 +19103,31611 +19104,31612 +19105,33462 +19106,31613 +19107,32146 +19108,15238 +19109,31616 +19110,31617 +19111,31618 +19112,31619 +19113,31620 +19114,31622 +19115,31623 +19116,31625 +19117,31626 +19118,31628 +19119,31630 +19120,31631 +19121,31632 +19122,31633 +19123,31634 +19124,31635 +19125,27137 +19126,31638 +19127,31639 +19128,31641 +19129,31644 +19130,31645 +19131,31649 +19132,31650 +19133,31651 +19134,31652 +19135,14618 +19136,31653 +19137,31654 +19138,31655 +19139,27664 +19140,31657 +19141,7418 +19142,23321 +19143,31660 +19144,31662 +19145,31663 +19146,6763 +19147,31664 +19148,31671 +19149,31672 +19150,26420 +19151,26420 +19152,26420 +19153,7242 +19154,7242 +19155,7242 +19156,31673 +19157,31680 +19158,29698 +19159,31633 +19160,31676 +19162,31681 +19163,31682 +19164,31683 +19165,31685 +19166,31686 +19167,31720 +19168,31692 +19169,31735 +19170,31822 +19182,31745 +19183,2596 +19184,31721 +19185,31721 +19186,31721 +19187,31721 +19188,31721 +19189,31721 +19190,31721 +19191,31721 +19192,31721 +19193,31721 +19194,31721 +19195,31721 +19196,31721 +19197,31721 +19198,31721 +19199,31721 +19200,31721 +19201,31721 +19202,1301 +19203,1301 +19204,1301 +19205,1301 +19206,1301 +19207,1301 +19208,1301 +19209,1301 +19210,1301 +19211,1301 +19212,1301 +19213,23714 +19214,31740 +19215,1301 +19216,1301 +19217,1301 +19218,1301 +19219,1301 +19220,1301 +19221,18119 +19222,18102 +19223,31742 +19224,22200 +19225,15964 +19226,6592 +19227,31756 +19228,31755 +19229,3331 +19230,31756 +19231,31756 +19232,31756 +19233,31756 +19234,31756 +19235,31756 +19236,31756 +19237,3331 +19238,3331 +19239,3331 +19240,3331 +19241,3331 +19242,3331 +19243,3331 +19244,3331 +19245,3331 +19246,3331 +19247,3331 +19248,3331 +19249,3331 +19250,3331 +19251,3331 +19252,3331 +19253,3331 +19254,3331 +19255,3331 +19256,3331 +19257,31755 +19258,31760 +19259,31760 +19260,31760 +19261,31760 +19262,31760 +19263,31760 +19264,31760 +19265,31760 +19266,3331 +19267,31755 +19268,31762 +19269,31762 +19270,31762 +19271,31762 +19272,31762 +19273,31762 +19274,31762 +19275,31762 +19276,31767 +19277,31755 +19278,31767 +19279,31767 +19280,31767 +19281,31767 +19282,31767 +19283,31767 +19284,31767 +19285,8127 +19286,26613 +19287,31768 +19288,31769 +19289,31770 +19290,31771 +19291,17329 +19292,31777 +19293,7462 +19294,6479 +19295,31779 +19296,31783 +19297,1283 +19298,8270 +19299,18115 +19300,21794 +19301,21203 +19302,31800 +19303,9657 +19304,31803 +19305,31802 +19306,31804 +19307,25147 +19308,31805 +19309,24039 +19310,31806 +19311,23322 +19312,31807 +19313,31808 +19314,31808 +19315,31809 +19316,31814 +19317,31813 +19318,18080 +19319,21712 +19320,1816 +19321,31815 +19322,20219 +19323,31817 +19324,31820 +19325,31616 +19326,1102 +19327,1102 +19328,1102 +19329,1102 +19330,1102 +19331,1102 +19332,1102 +19333,1102 +19334,31999 +19335,31862 +19336,31838 +19337,31848 +19338,7798 +19339,31840 +19340,31841 +19341,31843 +19342,31846 +19343,31847 +19344,31845 +19345,31844 +19346,31864 +19347,31865 +19348,31851 +19349,31852 +19350,32080 +19351,31866 +19352,31867 +19353,31857 +19354,31858 +19355,31964 +19356,31960 +19357,31878 +19358,31877 +19359,31861 +19360,31863 +19361,32763 +19362,31869 +19363,31870 +19364,32000 +19365,31880 +19366,31953 +19367,32774 +19368,31876 +19369,31888 +19370,18865 +19371,31889 +19372,32493 +19373,31194 +19374,31892 +19375,31898 +19376,31498 +19377,31899 +19378,28891 +19379,31901 +19380,31902 +19381,31904 +19382,31906 +19383,31907 +19384,31908 +19385,31911 +19386,31912 +19387,31914 +19388,31915 +19389,32082 +19390,31919 +19391,31921 +19392,31924 +19393,31925 +19394,31926 +19395,20978 +19396,31927 +19397,31905 +19398,23422 +19399,31930 +19400,31931 +19401,31932 +19402,31933 +19403,31800 +19404,31935 +19405,31934 +19406,31936 +19407,18858 +19422,31961 +19423,3331 +19424,3331 +19425,18721 +19426,31603 +19427,31808 +19428,31808 +19429,26420 +19430,16879 +19431,31967 +19432,31576 +19433,31968 +19434,28733 +19435,31977 +19436,31978 +19437,31982 +19438,31985 +19439,31986 +19440,21845 +19441,5287 +19442,1301 +19443,3331 +19444,7798 +19445,7798 +19446,7798 +19447,7798 +19448,7798 +19449,7798 +19450,18173 +19451,3331 +19452,3331 +19453,3331 +19454,3331 +19455,31721 +19456,31808 +19457,31808 +19462,18051 +19482,31995 +19483,1103 +19484,6672 +19485,10814 +19486,10815 +19487,10816 +19488,10817 +19489,31239 +19490,30926 +19491,32008 +19502,31808 +19503,31808 +19504,31808 +19505,32031 +19506,32026 +19507,32034 +19508,32036 +19509,32038 +19510,29697 +19511,29697 +19512,29697 +19513,29697 +19514,9832 +19515,9832 +19516,9832 +19517,9832 +19518,30661 +19519,30661 +19520,30661 +19521,30661 +19522,28812 +19523,28812 +19524,28812 +19525,28812 +19526,32066 +19527,32069 +19528,32070 +19529,28042 +19530,32067 +19531,32068 +19532,32071 +19533,32072 +19534,32008 +19535,32008 +19536,32008 +19537,32008 +19538,32073 +19539,32073 +19540,32073 +19541,32073 +19542,32074 +19543,32074 +19544,32074 +19545,32074 +19546,32075 +19547,32075 +19548,32075 +19549,32075 +19550,32076 +19551,32076 +19552,32076 +19553,32076 +19554,32077 +19555,32077 +19556,32077 +19557,32077 +19558,32079 +19559,32079 +19560,32079 +19561,32079 +19562,32081 +19563,32081 +19564,32081 +19565,32081 +19566,20330 +19567,20330 +19568,20330 +19569,20330 +19570,18289 +19571,18289 +19572,18289 +19573,18289 +19574,32713 +19575,32714 +19576,32715 +19577,32716 +19578,32088 +19579,32713 +19580,32088 +19581,32088 +19582,32089 +19583,32089 +19584,32089 +19585,32714 +19586,32715 +19587,32090 +19588,32716 +19589,32090 +19590,32090 +19591,32713 +19592,32714 +19593,32715 +19594,32716 +19595,32091 +19596,32091 +19597,32091 +19598,32713 +19599,32714 +19600,32715 +19601,32716 +19602,32713 +19603,32714 +19604,32715 +19605,32716 +19606,32713 +19607,32714 +19608,32715 +19609,32716 +19610,32713 +19611,32714 +19612,32715 +19613,32716 +19614,32713 +19615,32714 +19616,32715 +19617,32716 +19618,32713 +19619,32714 +19620,32715 +19621,32716 +19622,31808 +19623,32140 +19642,7744 +19662,31721 +19682,32154 +19683,32155 +19684,32770 +19685,32157 +19686,32159 +19687,32158 +19688,25682 +19689,32160 +19690,32163 +19691,32165 +19692,32164 +19693,32166 +19694,32167 +19695,32168 +19696,21203 +19697,32171 +19698,32301 +19699,32279 +19700,32278 +19701,32276 +19702,32282 +19703,32283 +19704,32280 +19705,32281 +19706,32277 +19707,32553 +19708,32547 +19709,32555 +19710,32551 +19711,32550 +19712,32552 +19713,32548 +19714,32554 +19715,32549 +19716,32252 +19717,32253 +19718,32254 +19719,32255 +19720,7046 +19721,32256 +19722,32257 +19723,32258 +19724,32259 +19725,11449 +19726,18087 +19727,32189 +19742,32192 +19743,32193 +19762,32216 +19763,32217 +19764,1301 +19765,1301 +19766,1301 +19767,26371 +19768,32230 +19769,1301 +19770,1301 +19771,1301 +19772,1301 +19773,1301 +19774,22652 +19775,32231 +19776,1301 +19777,1301 +19778,1301 +19779,1301 +19780,1301 +19781,1301 +19782,32233 +19783,32234 +19784,32235 +19785,32242 +19786,32237 +19787,32238 +19788,32239 +19789,32240 +19790,32241 +19802,32260 +19803,24521 +19804,24694 +19805,18535 +19806,32261 +19807,28622 +19808,32262 +19809,31721 +19810,31808 +19811,31721 +19812,20984 +19813,2622 +19814,2622 +19815,2622 +19816,2622 +19817,2622 +19818,2622 +19819,2622 +19820,2622 +19821,2622 +19822,32415 +19823,32416 +19824,32417 +19825,32263 +19826,32264 +19827,32265 +19828,32748 +19829,32750 +19830,32749 +19831,32270 +19832,32272 +19833,28806 +19834,32273 +19835,32274 +19836,32275 +19837,28827 +19838,32285 +19839,32286 +19840,32287 +19841,32567 +19842,32289 +19843,32290 +19844,32544 +19845,32292 +19846,32290 +19847,32544 +19848,32290 +19849,32566 +19850,21586 +19851,20342 +19852,34718 +19853,32577 +19854,32603 +19855,32296 +19856,32297 +19857,32298 +19858,32300 +19859,32575 +19860,32302 +19861,32595 +19862,32561 +19863,32305 +19864,32314 +19865,32722 +19866,32722 +19867,32581 +19868,32570 +19869,32340 +19870,32320 +19871,32321 +19872,17494 +19873,32323 +19874,32604 +19875,32413 +19876,32326 +19877,32405 +19878,32409 +19879,32332 +19880,32333 +19881,18136 +19882,13061 +19883,25147 +19884,32613 +19885,32335 +19886,32734 +19887,32337 +19888,32339 +19889,32772 +19890,32588 +19891,32344 +19892,32406 +19893,32347 +19894,32348 +19895,32401 +19896,32776 +19897,32563 +19898,32353 +19899,32407 +19900,34507 +19901,32356 +19902,17607 +19903,32576 +19904,32360 +19905,32347 +19906,32773 +19907,32371 +19908,32600 +19909,32612 +19910,32615 +19911,32376 +19912,32323 +19913,32379 +19914,21586 +19915,32560 +19916,11958 +19917,32382 +19918,32782 +19919,32389 +19920,32305 +19921,26535 +19922,32784 +19923,32395 +19924,32397 +19925,32353 +19926,32400 +19927,32582 +19928,32404 +19929,32410 +19930,32745 +19931,9731 +19932,32414 +19933,33178 +19934,6651 +19935,21365 +19936,21365 +19937,6651 +19938,1438 +19939,26865 +19940,32425 +19941,30532 +19942,32426 +19943,32427 +19944,32450 +19945,21701 +19946,32430 +19947,20625 +19948,32431 +19949,32431 +19950,32431 +19951,32326 +19952,32326 +19953,32326 +19954,32326 +19955,32326 +19956,32326 +19957,32326 +19958,32326 +19959,32326 +19960,32432 +19961,32780 +19962,36762 +19963,32446 +19964,32438 +19965,32439 +19966,32766 +19967,32584 +19968,32443 +19969,32449 +19970,20619 +19971,32452 +19972,16548 +19973,11926 +19974,17288 +19975,4810 +19976,17288 +19977,4181 +19978,7695 +19979,8233 +19980,6451 +19981,32490 +19982,32503 +19983,32507 +19984,43777 +19985,32509 +19986,21701 +19987,32511 +19988,32514 +19989,32515 +19990,9657 +19991,1504 +19992,13806 +19993,32571 +19994,24568 +19995,31516 +19996,32521 +19997,18099 +19998,32536 +19999,26614 +20000,1325 +20001,1325 +20002,17403 +20003,32538 +20004,29353 +20005,32539 +20006,32678 +20007,32543 +20008,3663 +20009,1103 +20010,1246 +20011,1301 +20012,1301 +20013,1301 +20014,1301 +20015,19567 +20016,4807 +20017,8232 +20018,7169 +20019,959 +20020,7918 +20021,9849 +20022,13885 +20023,7798 +20024,4045 +20025,292 +20026,6680 +20027,1438 +20028,28854 +20029,32557 +20030,4772 +20031,22979 +20032,12675 +20033,32564 +20034,32565 +20035,32592 +20036,7122 +20037,18707 +20038,32570 +20039,42672 +20040,1301 +20041,32644 +20042,32644 +20043,34241 +20044,34241 +20045,34244 +20046,34244 +20047,34244 +20048,32822 +20049,32822 +20050,34242 +20051,34242 +20052,34247 +20053,34248 +20054,34240 +20055,34243 +20056,34249 +20057,34245 +20058,34245 +20059,18971 +20060,18971 +20061,32740 +20062,21203 +20063,6413 +20064,6344 +20065,17458 +20066,25147 +20067,11926 +20068,23140 +20069,32677 +20070,32648 +20071,6502 +20072,6502 +20073,23140 +20074,32650 +20075,1102 +20076,32657 +20077,32656 +20078,32658 +20079,17896 +20080,24211 +20081,24156 +20082,32685 +20083,32717 +20084,1007 +20085,35016 +20086,32693 +20087,32691 +20088,34241 +20089,34241 +20090,34392 +20091,34242 +20092,34242 +20093,34393 +20094,34240 +20095,34240 +20096,34240 +20097,34244 +20098,34244 +20099,34244 +20100,34248 +20101,34248 +20102,34248 +20103,34244 +20104,34244 +20105,34244 +20106,32644 +20107,32644 +20108,32644 +20109,32822 +20110,32822 +20111,32822 +20112,34247 +20113,34247 +20114,34247 +20115,34244 +20116,34244 +20117,34244 +20118,34241 +20119,34241 +20120,34392 +20121,34242 +20122,34242 +20123,34393 +20124,32644 +20125,32644 +20126,34394 +20127,32822 +20128,32822 +20129,34395 +20130,18059 +20131,32694 +20132,32695 +20133,32700 +20134,32735 +20135,29859 +20136,29858 +20137,29860 +20138,29865 +20139,25226 +20140,29867 +20141,29863 +20142,29864 +20143,4841 +20144,26537 +20145,27088 +20146,31210 +20147,31769 +20148,31769 +20149,39901 +20150,34241 +20151,34241 +20152,34392 +20153,34241 +20154,34242 +20155,34242 +20156,34242 +20157,34393 +20158,34243 +20159,34240 +20160,34240 +20161,34240 +20162,34240 +20163,34244 +20164,34244 +20165,34244 +20166,34244 +20167,34248 +20168,34248 +20169,34248 +20170,34248 +20171,34244 +20172,34244 +20173,34244 +20174,34244 +20175,18971 +20176,32740 +20177,32644 +20178,32644 +20179,32644 +20180,32644 +20181,32822 +20182,32822 +20183,32822 +20184,32739 +20185,32822 +20186,34247 +20187,34247 +20188,34247 +20189,34247 +20190,34244 +20191,34244 +20192,34244 +20193,34244 +20194,18971 +20195,34241 +20196,34241 +20197,34392 +20198,34241 +20199,34242 +20200,34242 +20201,34393 +20202,34242 +20203,34249 +20204,32644 +20205,32644 +20206,32644 +20207,34394 +20208,32822 +20209,32822 +20210,34395 +20211,32822 +20212,34245 +20213,32718 +20214,32648 +20215,32721 +20216,32720 +20217,32724 +20218,32726 +20219,32727 +20220,32677 +20221,32728 +20222,21203 +20223,6413 +20224,6344 +20225,21203 +20226,6413 +20227,6344 +20228,7242 +20229,7242 +20230,7242 +20231,26420 +20232,17458 +20233,26420 +20234,25147 +20235,11926 +20236,26420 +20237,17458 +20238,31721 +20239,29859 +20240,29858 +20241,27088 +20242,29860 +20243,25147 +20244,11926 +20245,31210 +20246,29865 +20247,25226 +20248,4841 +20249,29867 +20250,26537 +20251,29863 +20252,29864 +20253,1102 +20254,1102 +20255,32732 +20256,32746 +20257,32751 +20258,32587 +20259,32752 +20260,32753 +20261,30749 +20262,32755 +20263,32900 +20264,32757 +20265,32758 +20266,32756 +20267,28177 +20268,28162 +20269,24190 +20270,28180 +20271,28166 +20272,28161 +20273,28179 +20274,28160 +20275,23716 +20276,23553 +20277,9837 +20278,28827 +20279,23262 +20280,31721 +20281,29859 +20282,29858 +20283,27088 +20284,29860 +20285,31210 +20286,29865 +20287,25226 +20288,4841 +20289,29867 +20290,26537 +20291,29863 +20292,29864 +20294,28162 +20295,32760 +20296,32762 +20297,28177 +20298,28162 +20299,28827 +20300,24190 +20301,28180 +20302,23553 +20303,23262 +20304,28166 +20305,23716 +20306,28161 +20307,9837 +20308,28179 +20309,28160 +20310,13002 +20311,28177 +20312,28162 +20313,28827 +20314,24190 +20315,28180 +20316,23553 +20317,23262 +20318,28166 +20319,23716 +20320,28161 +20321,9837 +20322,28179 +20323,28160 +20324,29596 +20325,29597 +20326,29594 +20327,31087 +20328,29593 +20329,29273 +20330,30211 +20331,29591 +20332,23717 +20333,24022 +20334,30870 +20335,28828 +20336,26681 +20337,32768 +20338,29596 +20339,29597 +20340,29594 +20341,31087 +20342,29593 +20343,29273 +20344,30211 +20345,23717 +20346,24022 +20347,29591 +20348,26681 +20349,30870 +20350,28828 +20351,29596 +20352,29597 +20353,29594 +20354,31087 +20355,29593 +20356,29273 +20357,30211 +20358,23717 +20359,24022 +20360,29591 +20361,26681 +20362,30870 +20363,28828 +20364,9632 +20365,32777 +20366,32781 +20367,32781 +20368,30926 +20369,32890 +20370,20256 +20371,18050 +20372,20256 +20373,7987 +20374,7987 +20375,7229 +20376,3671 +20377,1151 +20378,22443 +20379,2593 +20380,32818 +20381,21363 +20382,1102 +20383,20931 +20384,32820 +20385,4808 +20386,32823 +20387,2533 +20388,15963 +20389,16837 +20390,15964 +20391,41729 +20392,41721 +20393,44552 +20394,1246 +20395,9129 +20396,8093 +20397,41718 +20398,41718 +20399,41718 +20400,32830 +20401,11184 +20402,32831 +20403,32233 +20404,7629 +20405,7694 +20406,33129 +20407,32841 +20408,33073 +20409,41718 +20410,41718 +20411,41718 +20412,32837 +20413,41718 +20414,41718 +20415,1246 +20416,32933 +20417,25504 +20418,32933 +20419,32933 +20420,32933 +20421,9285 +20422,9285 +20423,2627 +20424,22193 +20425,20330 +20426,30661 +20427,28042 +20428,32072 +20429,29697 +20430,32076 +20431,28812 +20432,32923 +20433,32923 +20434,18289 +20435,32923 +20436,32923 +20437,32079 +20438,32081 +20439,9832 +20440,32077 +20441,32074 +20442,32008 +20443,32075 +20444,32073 +20445,26537 +20446,26537 +20447,32932 +20448,32932 +20449,32932 +20450,32931 +20451,23629 +20452,32650 +20453,20627 +20454,30603 +20455,32845 +20456,1037 +20457,10923 +20458,10923 +20459,10923 +20460,32846 +20461,32847 +20462,32849 +20463,7221 +20464,32850 +20465,32851 +20466,9840 +20467,2247 +20468,32858 +20469,20709 +20470,7261 +20471,24051 +20472,1103 +20473,1103 +20474,8270 +20475,8928 +20476,32871 +20477,32874 +20478,32872 +20479,32876 +20480,32877 +20481,32875 +20482,32878 +20483,21472 +20484,3029 +20485,32879 +20486,26420 +20487,31163 +20488,31338 +20489,32880 +20490,26732 +20491,26732 +20492,15964 +20493,15964 +20494,32884 +20495,32884 +20496,15965 +20497,15965 +20498,32885 +20499,22838 +20500,32886 +20501,32887 +20502,32888 +20503,7143 +20504,33033 +20505,31905 +20506,1102 +20507,1102 +20508,1102 +20509,1102 +20510,1102 +20511,1102 +20512,24730 +20513,2667 +20514,32895 +20515,32894 +20516,6410 +20517,32903 +20518,3331 +20519,33070 +20520,32905 +20521,32906 +20522,32909 +20523,30582 +20524,32910 +20525,32912 +20526,3331 +20527,3331 +20528,3331 +20529,32916 +20530,33150 +20531,2616 +20532,2616 +20533,2616 +20534,30690 +20535,2616 +20536,33087 +20537,18863 +20538,32927 +20539,38344 +20540,1093 +20541,7694 +20542,1093 +20543,1093 +20544,1093 +20545,7694 +20546,6270 +20547,6270 +20548,6270 +20549,32946 +20550,32945 +20551,33195 +20552,7694 +20553,6270 +20554,6270 +20555,6270 +20556,24014 +20557,32955 +20558,20219 +20559,33023 +20560,33022 +20561,41728 +20562,41720 +20563,41723 +20564,41731 +20565,41722 +20566,41730 +20567,41726 +20568,41734 +20569,41724 +20570,41732 +20571,41725 +20572,41733 +20573,41735 +20574,41727 +20575,32974 +20576,1102 +20577,33097 +20578,33095 +20579,33096 +20580,33017 +20581,33015 +20582,33018 +20583,41720 +20584,41721 +20585,41722 +20586,41723 +20587,41724 +20588,41725 +20589,41726 +20590,41727 +20591,41728 +20592,41729 +20593,41730 +20594,41731 +20595,41732 +20596,41733 +20597,41734 +20598,41735 +20599,33020 +20600,31576 +20601,1285 +20602,17329 +20603,31783 +20604,33021 +20605,18049 +20606,19529 +20607,19528 +20608,19570 +20609,33025 +20610,6492 +20611,6651 +20612,33026 +20613,7290 +20614,16210 +20615,33028 +20616,18378 +20617,33029 +20618,33031 +20619,33034 +20620,18519 +20621,33036 +20622,31907 +20623,33161 +20624,31664 +20625,33040 +20626,16892 +20627,33042 +20628,33162 +20629,33045 +20630,33047 +20631,33049 +20632,9834 +20633,33051 +20634,30845 +20635,33054 +20636,1262 +20637,33056 +20638,33057 +20639,33059 +20640,34495 +20641,18863 +20642,33062 +20643,35629 +20644,33064 +20645,6539 +20646,33068 +20647,33069 +20648,33072 +20649,31604 +20650,33092 +20651,18050 +20652,33098 +20653,33100 +20654,18368 +20655,33101 +20656,33105 +20657,33107 +20658,33112 +20659,33110 +20660,33113 +20661,33132 +20662,33117 +20663,28547 +20664,16767 +20665,33119 +20666,33120 +20667,33121 +20668,33122 +20669,33123 +20670,27137 +20671,33124 +20672,33125 +20673,33126 +20674,33127 +20675,33128 +20676,7695 +20677,7695 +20678,7695 +20679,7695 +20680,26919 +20681,33131 +20682,24087 +20683,33133 +20684,33134 +20685,33135 +20686,33136 +20687,33137 +20688,33138 +20689,33139 +20690,33141 +20691,26137 +20692,963 +20693,33142 +20694,24122 +20695,9852 +20696,33143 +20697,33144 +20698,33145 +20699,33146 +20700,33146 +20701,33147 +20702,33147 +20703,33148 +20704,33148 +20705,33149 +20706,33149 +20707,33149 +20708,12331 +20709,18102 +20710,33152 +20711,33152 +20712,33154 +20713,33154 +20714,33155 +20715,33155 +20716,33160 +20717,33160 +20718,33163 +20719,33170 +20720,21620 +20721,26391 +20722,31237 +20723,33171 +20724,33172 +20725,37755 +20726,7798 +20727,7798 +20728,7798 +20729,7798 +20730,7798 +20731,7798 +20732,7798 +20733,7798 +20734,7798 +20735,7798 +20736,7798 +20737,33177 +20738,33181 +20739,31500 +20740,33188 +20741,7299 +20742,33191 +20743,7050 +20744,9731 +20745,34492 +20746,47903 +20747,47902 +20748,41488 +20749,47901 +20750,47905 +20751,11431 +20752,11431 +20753,11431 +20754,11431 +20755,7798 +20756,7798 +20757,7798 +20758,11431 +20759,36443 +20760,10546 +20761,1102 +20762,33197 +20763,33200 +20764,3920 +20765,3024 +20766,33201 +20767,33201 +20768,33204 +20769,33202 +20770,33203 +20771,4690 +20772,33205 +20773,45174 +20774,30925 +20775,31416 +20776,31411 +20777,31414 +20778,31413 +20779,31415 +20780,31412 +20781,4841 +20782,26681 +20783,9834 +20784,23904 +20785,26681 +20786,31411 +20787,31412 +20788,31117 +20789,31413 +20790,31414 +20791,31415 +20792,4841 +20793,30925 +20794,9834 +20795,31416 +20796,23904 +20797,7061 +20798,18632 +20799,9666 +20800,33207 +20801,33208 +20802,33209 +20803,5567 +20804,33210 +20805,33211 +20806,1102 +20807,1102 +20808,33211 +20809,33211 +20810,16065 +20811,33220 +20812,33222 +20813,6002 +20814,26361 +20815,33224 +20816,39921 +20817,39923 +20818,3666 +20819,7353 +20820,28812 +20821,24087 +20822,7413 +20823,24022 +20824,33227 +20825,7401 +20826,26537 +20827,9837 +20828,31800 +20829,33296 +20830,9657 +20831,9857 +20832,43894 +20833,6012 +20834,7365 +20835,33236 +20836,33237 +20837,33235 +20838,20723 +20839,38291 +20840,5194 +20841,33291 +20842,6501 +20843,33239 +20844,13707 +20845,26375 +20846,3177 +20847,33248 +20848,33249 +20849,33220 +20850,33255 +20851,33308 +20852,33253 +20853,33254 +20854,1102 +20855,1102 +20856,1102 +20857,6399 +20858,34162 +20859,34159 +20860,34161 +20861,34156 +20862,34158 +20863,34157 +20864,34155 +20865,34160 +20866,34140 +20867,34153 +20868,34228 +20869,34136 +20870,34151 +20871,34152 +20872,34154 +20873,34138 +20874,34150 +20875,34145 +20876,34143 +20877,34148 +20878,34146 +20879,34144 +20880,32549 +20881,34147 +20882,34149 +20883,32253 +20884,34168 +20885,34169 +20886,34170 +20887,32253 +20888,34167 +20889,32253 +20890,34171 +20891,33256 +20892,33257 +20893,33258 +20894,33259 +20895,33260 +20896,33342 +20897,33353 +20898,36764 +20899,33351 +20900,33350 +20901,33352 +20902,33359 +20903,33348 +20904,33346 +20905,33261 +20906,9823 +20907,9836 +20908,33261 +20909,33262 +20910,20723 +20911,33309 +20912,33307 +20913,18662 +20914,33264 +20915,33270 +20916,33266 +20917,33269 +20918,33263 +20919,33268 +20920,33271 +20921,33272 +20922,33275 +20923,33276 +20924,33273 +20925,33274 +20926,32253 +20927,34172 +20928,34164 +20929,34174 +20930,32253 +20931,34173 +20932,34166 +20933,34175 +20934,26773 +20935,20614 +20936,32253 +20937,32253 +20938,18499 +20939,1102 +20940,1102 +20941,1102 +20942,1102 +20943,1102 +20944,1102 +20945,1102 +20946,1102 +20947,1102 +20948,1102 +20949,33285 +20950,33288 +20951,33286 +20952,7393 +20953,1262 +20954,26592 +20955,31498 +20956,33287 +20957,7339 +20958,30661 +20959,9842 +20960,31616 +20961,28831 +20962,13496 +20963,39922 +20964,9837 +20965,4777 +20966,6539 +20967,15420 +20968,9834 +20969,43895 +20970,1102 +20971,1102 +20972,15274 +20973,1102 +20974,15274 +20975,1102 +20976,15274 +20977,33304 +20978,33299 +20979,33300 +20980,8106 +20981,37294 +20982,37170 +20983,37171 +20984,33305 +20985,16576 +20986,8969 +20987,16969 +20988,16929 +20989,16832 +20990,16575 +20991,15196 +20992,33319 +20993,36955 +20994,33322 +20995,33323 +20996,33324 +20997,33325 +20998,33326 +20999,33327 +21000,33328 +21001,33329 +21002,33330 +21003,33331 +21004,33356 +21005,33333 +21006,33334 +21007,16696 +21008,14403 +21009,14335 +21010,14354 +21011,14336 +21012,17184 +21013,14338 +21014,14339 +21015,27951 +21016,33340 +21017,3519 +21018,33341 +21019,6828 +21020,6827 +21021,3931 +21022,2552 +21023,25468 +21024,25472 +21025,12547 +21026,13990 +21027,4112 +21028,4112 +21029,31238 +21030,6342 +21031,26733 +21032,7649 +21033,26731 +21034,31721 +21035,31808 +21036,28827 +21037,33399 +21038,29169 +21039,33401 +21040,33402 +21041,21202 +21042,30271 +21043,3020 +21044,47917 +21045,29596 +21046,29597 +21047,29594 +21048,31087 +21049,29593 +21050,29273 +21051,30211 +21052,23717 +21053,24022 +21054,29591 +21055,26681 +21056,30870 +21057,28828 +21058,29596 +21059,29597 +21060,29594 +21061,31087 +21062,29593 +21063,29273 +21064,30211 +21065,23717 +21066,24022 +21067,29591 +21068,26681 +21069,30870 +21070,28828 +21071,24719 +21072,24719 +21073,29596 +21074,29597 +21075,29594 +21076,31087 +21077,29593 +21078,29273 +21079,30211 +21080,23717 +21081,24022 +21082,29591 +21083,26681 +21084,30870 +21085,28828 +21086,29596 +21087,29597 +21088,29594 +21089,31087 +21090,29593 +21091,29273 +21092,30211 +21093,23717 +21094,24022 +21095,29591 +21096,26681 +21097,30870 +21098,28828 +21099,1102 +21100,34104 +21101,33422 +21102,33421 +21103,33423 +21104,33423 +21105,33423 +21106,33423 +21107,33423 +21108,33423 +21109,33423 +21110,33423 +21111,1246 +21112,32426 +21113,12331 +21114,18099 +21115,6502 +21116,6502 +21117,6502 +21118,6502 +21119,6502 +21120,6502 +21121,33424 +21122,33425 +21123,33426 +21124,33428 +21125,33429 +21126,34513 +21127,33431 +21128,33429 +21129,33434 +21130,1134 +21131,33211 +21132,33211 +21133,33211 +21134,33435 +21135,26358 +21136,33436 +21137,6614 +21138,20977 +21139,6663 +21140,1102 +21141,20977 +21142,16065 +21143,24154 +21144,23295 +21145,9731 +21146,33456 +21147,33456 +21148,33456 +21149,33456 +21150,12331 +21151,18099 +21152,33457 +21153,28622 +21154,34096 +21155,33460 +21156,20342 +21157,34093 +21158,1102 +21159,1102 +21160,1102 +21161,1102 +21162,9150 +21163,7135 +21164,4823 +21165,1102 +21166,1102 +21167,1102 +21168,33467 +21169,33468 +21170,33469 +21171,33469 +21172,33470 +21173,33470 +21174,33470 +21175,33518 +21176,33967 +21177,34177 +21178,33519 +21179,23608 +21180,33520 +21181,33522 +21182,26001 +21183,33527 +21184,33528 +21185,33529 +21186,33530 +21187,33531 +21188,33533 +21189,31908 +21190,31498 +21191,33535 +21192,33536 +21193,20342 +21194,20342 +21195,20342 +21196,33537 +21197,33537 +21198,33537 +21199,33537 +21200,33537 +21201,33537 +21202,33537 +21203,33537 +21204,33537 +21205,33537 +21206,33537 +21207,33537 +21208,33537 +21209,33537 +21210,33537 +21211,2593 +21212,29165 +21213,29165 +21214,1103 +21215,33681 +21216,29902 +21217,28622 +21218,33969 +21219,1301 +21220,33540 +21221,33541 +21222,33542 +21223,33543 +21224,33544 +21225,33545 +21226,33546 +21227,7741 +21228,30952 +21229,32745 +21230,33547 +21231,33548 +21232,33549 +21233,33550 +21234,31118 +21235,33551 +21236,6343 +21237,33572 +21238,33555 +21239,33554 +21240,29331 +21241,24570 +21242,34178 +21243,7176 +21244,34142 +21245,1102 +21246,1102 +21247,1102 +21248,1102 +21249,1102 +21250,1102 +21251,1102 +21252,1102 +21253,1102 +21254,33555 +21255,1102 +21256,1102 +21257,1102 +21258,1102 +21259,1102 +21260,1102 +21261,1102 +21262,1102 +21263,1102 +21264,1102 +21265,1102 +21266,33211 +21267,18060 +21268,33830 +21269,34137 +21270,33535 +21271,33535 +21272,34139 +21273,34134 +21274,9632 +21275,34135 +21276,33567 +21277,34050 +21278,4318 +21279,1103 +21280,1103 +21281,1246 +21282,1246 +21283,1246 +21284,1143 +21285,1143 +21286,33578 +21287,1143 +21288,1155 +21289,1155 +21290,1155 +21291,33585 +21292,33585 +21293,33585 +21294,1317 +21295,1317 +21296,1317 +21297,3426 +21298,3426 +21299,3426 +21300,1134 +21301,33588 +21302,1134 +21303,1134 +21304,12547 +21305,29902 +21306,12547 +21307,12547 +21308,33589 +21309,21202 +21310,33535 +21311,33590 +21312,33591 +21313,20342 +21314,3019 +21315,362 +21316,33604 +21317,42880 +21318,18271 +21319,33599 +21320,33601 +21321,33971 +21322,33603 +21323,33970 +21324,33972 +21325,26461 +21326,33702 +21327,33535 +21328,6620 +21329,34486 +21330,34256 +21331,33709 +21332,33713 +21333,33714 +21334,34061 +21335,34018 +21336,33618 +21337,34351 +21338,33625 +21339,33624 +21340,33940 +21341,33941 +21342,33942 +21343,37266 +21344,33641 +21345,34020 +21346,33643 +21347,34370 +21348,34348 +21349,33647 +21350,34021 +21351,34063 +21352,33652 +21353,34609 +21354,34037 +21355,33661 +21356,33662 +21357,34086 +21358,1102 +21359,33673 +21360,34608 +21361,34077 +21362,33678 +21363,33535 +21364,34087 +21365,33690 +21366,34221 +21367,34904 +21368,33700 +21369,1102 +21370,33691 +21371,6270 +21372,34222 +21373,33696 +21374,33697 +21375,33701 +21376,34056 +21377,31500 +21378,1102 +21379,1102 +21380,1102 +21381,1102 +21382,1102 +21383,1399 +21384,1102 +21385,1102 +21386,33211 +21387,34487 +21388,33708 +21389,33705 +21390,33706 +21391,34257 +21392,33727 +21393,33856 +21394,24013 +21395,33839 +21396,33856 +21397,33730 +21398,33731 +21399,33856 +21400,33732 +21401,33727 +21402,33856 +21403,33733 +21404,33734 +21405,33856 +21406,33735 +21407,33731 +21408,33856 +21409,33736 +21410,33731 +21411,33856 +21412,33737 +21413,33839 +21414,33856 +21415,33144 +21416,33734 +21417,33856 +21418,26202 +21419,33779 +21420,33766 +21421,33767 +21422,33768 +21423,33770 +21424,33770 +21425,33771 +21426,33772 +21427,33775 +21428,33776 +21429,33780 +21430,47348 +21431,33782 +21432,33783 +21433,33784 +21434,33785 +21435,33787 +21436,33786 +21437,33788 +21438,33789 +21439,33791 +21440,33792 +21441,33793 +21442,33794 +21443,33796 +21444,33799 +21445,33793 +21446,33802 +21447,33767 +21448,33803 +21449,33804 +21450,33806 +21451,33807 +21452,33809 +21453,33810 +21454,33812 +21455,33880 +21456,33814 +21457,33818 +21458,33819 +21459,33828 +21460,33822 +21461,33823 +21462,19128 +21463,33824 +21464,33825 +21465,33835 +21466,33838 +21467,33840 +21468,33841 +21469,33842 +21470,28951 +21471,33845 +21472,33848 +21473,33973 +21474,33852 +21475,33853 +21476,33854 +21477,33855 +21478,33857 +21479,33903 +21480,29833 +21481,22757 +21482,33863 +21483,33864 +21484,33901 +21485,33867 +21486,33868 +21487,33870 +21488,33849 +21489,33873 +21490,33876 +21491,33879 +21492,33882 +21493,31166 +21494,33885 +21495,33888 +21496,33889 +21497,33892 +21498,33894 +21499,33895 +21500,14174 +21501,33897 +21502,33902 +21503,33905 +21504,33906 +21505,33906 +21506,33906 +21507,33906 +21508,33907 +21509,12333 +21510,12333 +21511,12333 +21512,12333 +21513,12333 +21514,1102 +21515,33911 +21516,33422 +21517,34353 +21518,33422 +21519,18087 +21520,31866 +21521,33994 +21522,33992 +21523,33991 +21524,33998 +21525,33999 +21526,31616 +21527,33980 +21528,21202 +21529,31899 +21530,34031 +21531,34034 +21532,28627 +21533,34035 +21534,34036 +21535,20952 +21536,24730 +21537,34059 +21538,34094 +21539,34095 +21540,21469 +21541,34097 +21542,34099 +21543,34100 +21544,34098 +21545,11449 +21546,24214 +21547,15274 +21548,1102 +21549,34101 +21550,34115 +21551,34105 +21552,4811 +21553,34106 +21554,34107 +21555,31954 +21556,4181 +21557,34281 +21558,34279 +21559,34280 +21560,34282 +21561,34283 +21562,34284 +21563,31800 +21564,34116 +21565,34188 +21566,34188 +21567,7248 +21568,7248 +21569,31401 +21570,34121 +21571,34271 +21572,34127 +21573,34128 +21574,34272 +21575,34273 +21576,34275 +21577,34276 +21578,34277 +21579,34132 +21580,34133 +21581,34165 +21582,34176 +21583,34179 +21584,34181 +21585,34183 +21586,34184 +21587,34185 +21588,34186 +21589,34285 +21590,34286 +21591,34287 +21592,34289 +21593,34290 +21594,34187 +21595,34291 +21596,34189 +21597,34190 +21598,34191 +21599,34193 +21600,34195 +21601,33808 +21602,34197 +21603,34198 +21604,34199 +21605,34260 +21606,34202 +21607,34203 +21608,34204 +21609,34205 +21610,34206 +21611,34207 +21612,34208 +21613,34210 +21614,34606 +21615,30670 +21616,34223 +21617,34226 +21618,34227 +21619,34230 +21620,33808 +21621,34231 +21622,41490 +21623,34235 +21624,34236 +21625,34237 +21626,34238 +21627,34239 +21628,9632 +21629,9632 +21630,9632 +21631,9632 +21632,9632 +21633,9632 +21634,9632 +21635,34250 +21636,9632 +21637,9632 +21638,9632 +21639,34252 +21640,18721 +21641,9632 +21642,9632 +21643,9632 +21644,9632 +21645,34259 +21646,9632 +21647,34261 +21648,34263 +21649,9632 +21650,41491 +21651,34266 +21652,34268 +21653,9632 +21654,9632 +21655,9632 +21656,9632 +21657,9632 +21658,9632 +21659,9632 +21660,9632 +21661,9632 +21662,9632 +21663,34270 +21664,34274 +21665,34278 +21666,34288 +21667,34292 +21668,32760 +21669,34711 +21670,33851 +21671,34294 +21672,34295 +21673,34296 +21674,34298 +21675,34299 +21676,34302 +21677,33808 +21678,34303 +21679,34304 +21680,34305 +21681,33864 +21682,34306 +21683,34310 +21684,34312 +21685,33871 +21686,34314 +21687,28733 +21688,34315 +21689,34317 +21690,34318 +21691,34319 +21692,34320 +21693,34607 +21694,34323 +21695,33855 +21696,34325 +21697,18948 +21698,34326 +21699,34419 +21700,34204 +21701,34329 +21702,31889 +21703,34331 +21704,34332 +21705,34333 +21706,34334 +21707,33855 +21708,34335 +21709,34336 +21710,34337 +21711,34342 +21712,34274 +21713,34365 +21714,34354 +21715,34339 +21716,34356 +21717,34357 +21718,34358 +21719,34359 +21720,34360 +21721,15794 +21722,15274 +21723,15274 +21724,15274 +21725,15274 +21726,15274 +21727,15274 +21728,15274 +21729,15274 +21730,15274 +21731,15274 +21732,15274 +21733,15274 +21734,15274 +21735,15274 +21736,36142 +21737,15274 +21738,15274 +21739,34342 +21740,1102 +21741,6270 +21742,1096 +21743,15274 +21744,34359 +21745,24730 +21746,34361 +21747,34363 +21748,39914 +21749,1102 +21750,1102 +21751,1102 +21752,39924 +21753,31576 +21754,28831 +21755,31603 +21756,39920 +21757,9585 +21758,39915 +21759,34374 +21760,39916 +21761,34378 +21762,34378 +21763,39917 +21764,31604 +21765,26537 +21766,32008 +21767,23629 +21768,28831 +21769,39918 +21770,34382 +21771,34389 +21772,1659 +21773,6496 +21774,43893 +21775,26391 +21776,1102 +21777,39914 +21778,33808 +21779,31908 +21780,43892 +21781,7164 +21782,31808 +21783,6672 +21784,39916 +21785,6851 +21786,4775 +21787,34390 +21788,2480 +21789,34377 +21790,9657 +21791,6539 +21792,39214 +21793,39215 +21794,34304 +21795,34391 +21796,34399 +21797,34402 +21798,34404 +21799,34405 +21800,34484 +21801,35017 +21802,34478 +21803,35222 +21804,36715 +21805,34482 +21806,34474 +21807,7695 +21808,24730 +21809,32008 +21810,34479 +21811,14005 +21812,18721 +21813,34655 +21814,34483 +21815,34508 +21816,34654 +21817,34654 +21818,34654 +21819,34654 +21820,34654 +21821,34654 +21822,34654 +21823,34654 +21829,34537 +21830,6405 +21831,23146 +21832,34430 +21833,34536 +21834,34431 +21835,34432 +21836,31800 +21837,34468 +21838,34469 +21839,34485 +21840,39453 +21841,39457 +21842,39454 +21843,39458 +21844,39462 +21845,39461 +21846,43295 +21847,43296 +21848,44953 +21849,16892 +21850,27830 +21851,16642 +21852,27822 +21853,4272 +21854,28479 +21855,27821 +21856,34481 +21857,33940 +21858,39459 +21859,38942 +21860,38102 +21861,38920 +21862,38941 +21863,42158 +21864,42159 +21865,42157 +21866,42714 +21867,38102 +21868,38926 +21869,43297 +21870,43298 +21871,44952 +21872,33941 +21873,43300 +21874,43319 +21875,43301 +21876,39463 +21877,39452 +21878,25048 +21879,20978 +21880,4775 +21881,18597 +21882,42151 +21883,25028 +21884,41675 +21885,41680 +21886,41676 +21887,38744 +21888,29736 +21889,34466 +21890,34467 +21891,34471 +21892,1301 +21893,1301 +21894,1301 +21895,1301 +21896,1301 +21897,1301 +21898,1301 +21899,1301 +21900,2571 +21901,2571 +21902,1301 +21903,1096 +21904,1096 +21905,15274 +21906,15274 +21907,15274 +21908,1301 +21909,1301 +21910,2571 +21911,6270 +21912,1301 +21913,2571 +21914,1301 +21915,6270 +21916,1301 +21917,2571 +21918,1301 +21919,6270 +21920,34656 +21921,34656 +21922,34488 +21923,22614 +21924,1102 +21925,34656 +21926,34656 +21927,13710 +21928,16452 +21929,35921 +21930,15589 +21931,9833 +21932,9833 +21933,34491 +21934,9854 +21935,24211 +21936,15794 +21937,15788 +21938,5292 +21939,20892 +21940,15274 +21941,1102 +21942,1102 +21943,1102 +21944,15274 +21945,15274 +21946,34872 +21947,15274 +21948,1102 +21949,15274 +21950,1102 +21951,1102 +21952,1102 +21953,15274 +21954,1102 +21955,15274 +21956,15274 +21957,1102 +21958,15274 +21959,15274 +21960,13082 +21961,22651 +21962,12310 +21963,12310 +21964,12310 +21965,12310 +21966,12310 +21967,12310 +21968,30690 +21969,34490 +21970,34490 +21971,34490 +21972,34490 +21973,34490 +21974,34490 +21975,34538 +21976,34490 +21977,34490 +21978,34490 +21979,34538 +21980,34538 +21981,34538 +21982,32326 +21983,34874 +21984,34868 +21985,30952 +21986,34874 +21987,7148 +21988,18716 +21989,13688 +21990,39456 +21991,39455 +21992,8117 +21993,8117 +21994,34610 +21995,34611 +21996,34612 +21997,34617 +21998,34613 +21999,42240 +22000,34615 +22001,34616 +22002,34699 +22003,34684 +22004,34685 +22005,34700 +22006,34686 +22007,34687 +22008,34688 +22009,34689 +22010,34646 +22011,34647 +22012,1134 +22013,34649 +22014,34867 +22015,34650 +22016,34651 +22017,34652 +22018,24570 +22019,34497 +22020,7899 +22021,7899 +22022,7899 +22023,7899 +22024,7899 +22025,7899 +22026,7899 +22027,7899 +22028,7899 +22029,7899 +22030,7899 +22031,7899 +22032,7899 +22033,7899 +22034,7899 +22035,7899 +22036,7899 +22037,7899 +22038,7899 +22039,7899 +22040,7899 +22041,7899 +22042,7899 +22043,7899 +22044,1262 +22045,9632 +22046,34870 +22047,34871 +22048,34869 +22049,34865 +22050,34865 +22051,34865 +22052,34865 +22053,13707 +22054,13707 +22055,37278 +22056,34865 +22057,34866 +22058,34508 +22059,34508 +22060,34645 +22061,34648 +22062,34599 +22063,34601 +22064,34782 +22065,34602 +22066,34600 +22067,34598 +22068,34597 +22069,34596 +22070,34620 +22071,34621 +22072,34622 +22073,34623 +22074,34624 +22075,34625 +22076,34626 +22077,34627 +22078,34628 +22079,34629 +22080,34630 +22081,34631 +22082,34632 +22083,34633 +22084,34634 +22085,34635 +22086,34520 +22087,34521 +22088,34522 +22089,34519 +22090,34523 +22091,34524 +22092,34525 +22093,34526 +22094,34863 +22095,34691 +22096,34692 +22097,34693 +22098,34694 +22099,34695 +22100,34696 +22101,34697 +22102,34698 +22103,8026 +22104,8026 +22105,8026 +22106,34637 +22107,34638 +22108,34641 +22109,34639 +22110,34640 +22111,34642 +22112,34643 +22113,34644 +22114,18050 +22115,34873 +22116,6009 +22117,34754 +22118,15589 +22119,34753 +22120,34752 +22121,34751 +22122,34755 +22123,34751 +22124,15589 +22125,15589 +22126,15589 +22127,15589 +22128,24380 +22129,15589 +22130,7045 +22131,34679 +22132,34677 +22133,34676 +22134,34682 +22135,34681 +22136,34677 +22137,20709 +22138,34509 +22139,34510 +22140,34736 +22141,34736 +22142,34736 +22143,34736 +22144,34736 +22145,34736 +22146,1317 +22147,7287 +22148,7406 +22149,1399 +22150,1399 +22151,3665 +22152,2584 +22153,1103 +22154,34538 +22155,34538 +22156,34538 +22157,34538 +22158,34538 +22159,34542 +22160,34542 +22161,34542 +22162,34542 +22163,34542 +22164,34538 +22165,34538 +22166,34538 +22167,34674 +22168,34674 +22169,34674 +22170,34542 +22171,34542 +22172,34542 +22173,18079 +22174,34748 +22175,6342 +22176,21203 +22177,7328 +22178,34542 +22179,1246 +22180,1246 +22181,1246 +22182,1246 +22183,1246 +22184,1246 +22185,1246 +22186,1246 +22187,1246 +22188,1246 +22189,1246 +22190,1246 +22191,34515 +22192,15713 +22193,15791 +22194,34516 +22195,36968 +22196,34518 +22197,36967 +22198,34533 +22199,34534 +22200,34535 +22201,18721 +22202,34543 +22203,20769 +22204,34549 +22205,34550 +22206,34553 +22207,34555 +22208,34556 +22209,1301 +22210,34557 +22211,34557 +22212,34558 +22213,34559 +22214,1301 +22215,34560 +22216,5287 +22217,5287 +22218,34561 +22219,1301 +22220,6270 +22221,1301 +22222,6270 +22223,34564 +22224,9731 +22225,35922 +22226,3233 +22227,34572 +22228,34573 +22229,35024 +22230,23081 +22231,34593 +22232,34577 +22233,12333 +22234,34579 +22235,34535 +22236,34581 +22237,34584 +22238,34582 +22239,34583 +22240,34585 +22241,34590 +22242,34594 +22243,1281 +22244,20913 +22245,34595 +22246,34780 +22247,34605 +22248,34796 +22249,34778 +22250,34797 +22251,34779 +22252,34798 +22253,31138 +22254,34636 +22255,9834 +22256,30774 +22257,31655 +22258,983 +22259,34653 +22260,34653 +22261,8928 +22262,34674 +22263,34674 +22264,34656 +22265,34656 +22266,6555 +22267,34690 +22268,23713 +22269,24013 +22270,34708 +22271,34710 +22272,34714 +22273,34715 +22274,34717 +22275,6762 +22276,34726 +22277,34734 +22278,34725 +22279,34727 +22280,34728 +22281,34732 +22282,34733 +22283,2588 +22284,34737 +22285,34738 +22286,34739 +22287,34740 +22288,11448 +22289,34741 +22290,34742 +22291,11449 +22292,11449 +22293,34745 +22294,34746 +22295,19595 +22296,6524 +22297,34747 +22298,1143 +22299,34749 +22300,34750 +22301,34799 +22302,34781 +22303,34788 +22304,34789 +22305,34791 +22306,34790 +22307,811 +22308,1102 +22309,15274 +22310,1102 +22311,34792 +22312,811 +22313,34793 +22314,34794 +22315,6798 +22316,34795 +22317,23742 +22318,34800 +22319,34802 +22320,2593 +22321,6006 +22322,5199 +22323,26733 +22324,26733 +22325,14389 +22326,26001 +22327,9857 +22328,21961 +22329,34807 +22330,34808 +22331,24569 +22332,34810 +22333,2440 +22334,9837 +22335,34891 +22336,18790 +22337,34812 +22338,2480 +22339,31616 +22340,9852 +22341,34820 +22342,24354 +22343,33154 +22344,1588 +22345,34958 +22346,34822 +22347,22929 +22348,35010 +22349,35307 +22350,35347 +22351,35354 +22352,35337 +22353,35336 +22354,35338 +22355,35334 +22356,35340 +22357,35335 +22358,35339 +22359,35345 +22360,35344 +22361,35346 +22362,35348 +22363,35342 +22364,35343 +22365,35341 +22366,35353 +22367,35351 +22368,35356 +22369,35350 +22370,35349 +22371,35352 +22372,35355 +22373,35300 +22374,35298 +22375,35301 +22376,35299 +22377,34849 +22378,34850 +22379,34859 +22380,34860 +22381,2637 +22382,30952 +22383,36970 +22384,36969 +22385,34890 +22386,3486 +22387,13291 +22388,6270 +22389,6270 +22390,6270 +22391,34891 +22392,7798 +22393,1143 +22394,34894 +22395,34957 +22396,34956 +22397,34955 +22398,34954 +22399,34953 +22400,34961 +22401,34960 +22402,34959 +22403,9858 +22404,34896 +22405,34897 +22406,20384 +22407,42208 +22408,34899 +22409,34900 +22410,34901 +22411,34902 +22412,15014 +22413,37078 +22414,8093 +22415,19528 +22416,35049 +22417,35051 +22418,36730 +22419,35177 +22420,35067 +22421,35050 +22422,35058 +22423,35044 +22424,35619 +22425,35618 +22426,35615 +22427,35616 +22428,36972 +22429,35617 +22430,35613 +22431,35614 +22432,34923 +22433,24022 +22434,34936 +22435,34925 +22436,35415 +22437,35413 +22438,35601 +22439,35611 +22440,35409 +22441,35411 +22442,35410 +22443,35416 +22444,34924 +22445,39195 +22446,39200 +22447,39199 +22448,39197 +22449,39198 +22450,39201 +22451,41673 +22452,38617 +22453,23287 +22454,13689 +22455,23285 +22456,39707 +22457,41677 +22458,18289 +22459,39424 +22460,40304 +22461,39728 +22462,39730 +22463,39732 +22464,35752 +22465,35754 +22466,42115 +22467,35751 +22468,35746 +22469,35748 +22470,35747 +22471,35753 +22472,9653 +22473,21206 +22474,34962 +22475,34963 +22476,35054 +22477,35065 +22478,41849 +22479,35064 +22480,36351 +22481,35055 +22482,36349 +22483,35053 +22484,18021 +22485,20220 +22486,10365 +22487,9666 +22488,35159 +22489,35161 +22490,35162 +22491,35160 +22492,35173 +22493,35167 +22494,35164 +22495,35158 +22496,35523 +22497,35522 +22498,36440 +22499,35326 +22500,35525 +22501,35521 +22502,35519 +22503,35677 +22504,35185 +22505,35184 +22506,35182 +22507,35187 +22508,35186 +22509,35183 +22510,35179 +22511,35180 +22512,36354 +22513,35154 +22514,35155 +22515,35149 +22516,35148 +22517,35145 +22518,35143 +22519,35144 +22520,31577 +22521,36862 +22522,47904 +22523,35274 +22524,35273 +22525,35014 +22526,13806 +22527,18514 +22528,22924 +22529,35015 +22530,7798 +22531,7798 +22532,7798 +22533,7798 +22534,7798 +22535,7798 +22536,7798 +22537,7798 +22538,7798 +22539,7798 +22540,7798 +22541,7798 +22542,7798 +22543,7798 +22544,7798 +22545,7798 +22546,7798 +22547,7798 +22548,7798 +22549,7798 +22550,18721 +22551,7798 +22552,7798 +22553,7798 +22554,7798 +22555,7798 +22556,7798 +22557,7798 +22558,7798 +22559,7798 +22560,7798 +22561,7798 +22562,7798 +22563,7798 +22564,7798 +22565,7798 +22566,20614 +22567,4689 +22568,634 +22569,3671 +22570,16452 +22571,8270 +22572,41681 +22573,38610 +22574,41682 +22575,41683 +22576,41684 +22577,41685 +22578,41686 +22579,6349 +22580,37217 +22581,8926 +22582,8928 +22583,20775 +22584,7899 +22585,7899 +22586,7899 +22587,7899 +22588,7899 +22589,35632 +22590,15274 +22591,6270 +22592,1096 +22593,30953 +22594,1102 +22595,35025 +22596,35031 +22597,31603 +22598,26571 +22599,24730 +22600,16065 +22601,16065 +22602,16065 +22603,16065 +22604,16065 +22605,16065 +22606,16065 +22607,16065 +22608,16065 +22609,16065 +22610,16065 +22611,16065 +22612,16065 +22613,16065 +22614,16065 +22615,16065 +22616,16065 +22617,16065 +22618,16065 +22619,16065 +22620,16065 +22621,16065 +22622,16065 +22623,16065 +22624,16065 +22625,16065 +22626,16065 +22627,31603 +22628,17893 +22629,1096 +22630,35631 +22631,35634 +22632,35633 +22633,35057 +22634,4691 +22635,35045 +22636,35046 +22637,32745 +22638,35048 +22639,18703 +22640,10546 +22641,35056 +22642,36577 +22643,25467 +22644,35068 +22645,39722 +22646,21610 +22647,1102 +22648,33211 +22649,33211 +22650,33211 +22651,35069 +22652,35302 +22653,14023 +22654,35286 +22655,35283 +22656,35071 +22657,6543 +22658,35076 +22659,6543 +22660,35077 +22661,35290 +22662,35303 +22663,35287 +22664,36436 +22665,36435 +22666,36437 +22667,35090 +22668,35091 +22669,35276 +22670,35277 +22671,35275 +22672,35069 +22673,35093 +22674,6497 +22675,21913 +22676,35093 +22677,35585 +22678,24730 +22679,21202 +22680,3666 +22681,24569 +22682,35465 +22683,1301 +22684,1301 +22685,1301 +22686,1301 +22687,1301 +22688,35094 +22689,35095 +22690,35096 +22691,35097 +22692,1301 +22693,35098 +22694,1301 +22695,1301 +22696,1301 +22697,1301 +22698,1301 +22699,35278 +22700,35282 +22701,35289 +22702,36438 +22703,1301 +22704,1301 +22705,1301 +22706,1317 +22707,31616 +22708,31616 +22709,35112 +22710,18089 +22711,35114 +22712,35115 +22713,35116 +22714,35118 +22715,35119 +22716,35120 +22717,35448 +22718,41850 +22719,1588 +22720,35125 +22721,24022 +22722,30661 +22723,3018 +22724,35129 +22725,9842 +22726,35130 +22727,33566 +22728,44269 +22729,1301 +22730,35138 +22731,35139 +22732,34303 +22733,35140 +22734,35141 +22735,3024 +22736,35152 +22737,29948 +22738,35151 +22739,1103 +22740,35157 +22741,18962 +22742,35169 +22743,4511 +22744,19950 +22745,36971 +22746,1282 +22747,32927 +22748,35093 +22749,35157 +22750,18962 +22751,35069 +22752,32927 +22753,35175 +22754,17403 +22755,35178 +22756,35207 +22757,35206 +22758,35209 +22759,42883 +22760,35214 +22761,35213 +22762,35216 +22763,35217 +22764,35219 +22765,811 +22766,1301 +22767,1301 +22768,1301 +22769,1301 +22770,1301 +22771,1301 +22772,1301 +22773,1301 +22774,1301 +22775,18080 +22776,2474 +22777,34281 +22778,1288 +22779,2357 +22780,18050 +22781,35224 +22782,15120 +22783,20014 +22784,28464 +22785,37663 +22786,37877 +22787,37393 +22788,37662 +22789,37661 +22790,44296 +22791,37412 +22792,37394 +22793,37413 +22794,38652 +22795,37665 +22796,15742 +22797,37414 +22798,35239 +22799,35240 +22800,35241 +22801,35242 +22802,35819 +22803,35244 +22804,35709 +22805,35247 +22806,35247 +22807,36371 +22808,35250 +22809,36518 +22810,35370 +22811,35870 +22812,35253 +22813,35255 +22814,35256 +22815,35371 +22816,35258 +22817,35259 +22818,35577 +22819,35573 +22820,35262 +22821,35263 +22822,811 +22823,37865 +22824,37842 +22825,37863 +22826,37855 +22827,37848 +22828,37859 +22829,37807 +22830,37860 +22831,37812 +22832,37808 +22833,37844 +22834,37849 +22835,37846 +22836,37845 +22837,37858 +22838,37857 +22839,37856 +22840,37862 +22841,37815 +22842,37814 +22843,31181 +22844,37812 +22845,37816 +22846,37810 +22847,37813 +22848,37861 +22849,37847 +22850,37809 +22851,37850 +22852,27263 +22853,37851 +22854,37852 +22855,31026 +22856,31035 +22857,31183 +22858,31050 +22859,31027 +22860,31097 +22861,37853 +22862,31182 +22863,27265 +22864,31036 +22865,27256 +22866,37854 +22867,27279 +22868,31051 +22869,31028 +22870,31098 +22871,44302 +22872,27274 +22873,31052 +22874,31048 +22875,30367 +22876,31185 +22877,31037 +22878,27267 +22879,31039 +22880,31040 +22881,31032 +22882,31033 +22883,26144 +22884,27260 +22885,30351 +22886,31102 +22887,31186 +22888,18499 +22889,15773 +22890,1103 +22891,1103 +22892,7122 +22893,35267 +22894,35268 +22895,35639 +22896,20784 +22897,1103 +22898,2516 +22899,2516 +22900,1102 +22901,1102 +22902,1102 +22903,15274 +22904,15274 +22905,1102 +22906,15274 +22907,1102 +22908,15274 +22909,1102 +22910,15274 +22911,1102 +22912,15274 +22913,15274 +22914,15274 +22915,15274 +22916,15274 +22917,15274 +22918,15274 +22919,15274 +22920,15274 +22921,15274 +22922,15274 +22923,15274 +22924,15274 +22925,15274 +22926,15274 +22927,15274 +22928,2516 +22929,2516 +22930,3033 +22931,2516 +22932,3032 +22933,20661 +22934,34863 +22935,19763 +22936,35310 +22937,35817 +22938,35312 +22939,35313 +22940,35324 +22941,35325 +22942,35642 +22943,35358 +22944,3029 +22945,13430 +22946,7695 +22947,35359 +22948,7629 +22949,18021 +22950,6006 +22951,9975 +22952,23130 +22953,2967 +22954,35361 +22955,35404 +22956,36924 +22957,1544 +22958,20084 +22959,35363 +22960,35366 +22961,35367 +22962,36540 +22963,3006 +22964,9644 +22965,3708 +22966,16906 +22967,36434 +22968,35369 +22969,7603 +22970,3033 +22971,28159 +22972,13430 +22973,3029 +22974,7695 +22975,7629 +22976,2586 +22977,3032 +22978,9345 +22979,6011 +22980,44339 +22981,35373 +22982,20674 +22983,36424 +22984,35390 +22985,33322 +22986,12718 +22987,36996 +22988,35710 +22989,31604 +22990,35378 +22991,35380 +22992,35381 +22993,35399 +22994,35383 +22995,35392 +22996,41470 +22997,20903 +22998,35395 +22999,35396 +23000,35398 +23001,35400 +23002,35406 +23003,35402 +23004,34953 +23005,34956 +23006,34959 +23007,35405 +23008,811 +23009,35262 +23010,811 +23011,811 +23012,811 +23013,811 +23014,36376 +23015,35407 +23016,811 +23017,35408 +23018,35313 +23019,35419 +23020,35421 +23021,35422 +23022,22611 +23023,35358 +23024,16065 +23025,35423 +23026,35425 +23027,35429 +23028,31616 +23029,35813 +23030,35430 +23031,35431 +23032,35432 +23033,36433 +23034,35434 +23035,42767 +23036,35437 +23037,35438 +23038,35423 +23039,35259 +23040,35439 +23041,35442 +23042,35439 +23043,35576 +23044,35246 +23045,35444 +23046,35445 +23047,35429 +23048,35816 +23049,35792 +23050,35446 +23051,35450 +23052,35456 +23053,35359 +23054,36378 +23055,1013 +23056,35574 +23057,35358 +23058,35437 +23059,35472 +23060,35472 +23061,35472 +23062,35472 +23063,35472 +23064,35472 +23065,35472 +23066,35472 +23067,35472 +23068,35508 +23069,36370 +23070,35514 +23071,36478 +23072,36279 +23073,6720 +23074,7054 +23075,35654 +23076,7339 +23077,35916 +23078,35550 +23079,35917 +23080,33298 +23081,36479 +23082,35542 +23083,15788 +23084,35545 +23085,35544 +23086,35546 +23087,36077 +23088,35554 +23089,36480 +23090,35555 +23091,35556 +23092,35557 +23093,36481 +23094,35930 +23095,35930 +23096,35930 +23097,35930 +23098,35845 +23099,35845 +23100,35845 +23101,35845 +23102,20978 +23103,35843 +23104,35843 +23105,35843 +23106,35843 +23107,35919 +23108,35847 +23109,35847 +23110,35847 +23111,35847 +23112,35918 +23113,35848 +23114,35848 +23115,35848 +23116,35848 +23117,35920 +23118,35852 +23119,35852 +23120,35852 +23121,35852 +23122,24674 +23123,26865 +23124,35563 +23125,18172 +23126,35564 +23127,35565 +23128,35569 +23129,30833 +23130,1102 +23131,1102 +23132,35571 +23133,15274 +23134,15274 +23135,1102 +23136,15274 +23137,1102 +23138,15274 +23139,2456 +23140,1102 +23141,1102 +23142,15274 +23143,15274 +23144,1102 +23145,15274 +23146,15274 +23147,15274 +23148,1102 +23149,15274 +23150,15274 +23151,15274 +23152,1102 +23153,15274 +23154,15274 +23155,15274 +23156,28647 +23157,7339 +23158,13496 +23159,13496 +23160,26736 +23161,21845 +23162,11448 +23163,35583 +23164,18114 +23165,35586 +23166,35587 +23167,35588 +23168,35589 +23169,9853 +23170,18339 +23171,28804 +23172,6410 +23173,28648 +23174,2738 +23175,26732 +23176,35592 +23177,35593 +23178,22994 +23179,30562 +23180,35595 +23181,35596 +23182,30562 +23183,35596 +23184,35595 +23185,35595 +23186,35596 +23187,30562 +23188,30562 +23189,35595 +23190,35596 +23191,26571 +23192,15817 +23193,24011 +23194,35274 +23195,35620 +23196,35621 +23197,34954 +23198,34955 +23199,34957 +23200,34956 +23201,34960 +23202,34960 +23203,34961 +23204,34959 +23205,30601 +23206,35649 +23207,35621 +23208,35621 +23209,35657 +23210,3568 +23211,35657 +23212,35675 +23213,6773 +23214,10377 +23215,3568 +23216,9731 +23217,18049 +23218,9731 +23219,30535 +23220,36369 +23221,35643 +23222,13002 +23223,22207 +23224,6404 +23225,33304 +23226,35713 +23227,811 +23228,1399 +23229,20009 +23230,35716 +23231,35761 +23232,25646 +23233,3494 +23234,35718 +23235,32432 +23236,4171 +23237,35423 +23238,35719 +23239,22200 +23240,33299 +23241,35731 +23242,35818 +23243,31049 +23244,30071 +23245,35738 +23246,35744 +23247,35745 +23248,20803 +23249,24051 +23250,36448 +23251,31184 +23252,31047 +23253,28106 +23254,28935 +23255,27258 +23256,30381 +23257,30358 +23258,31038 +23259,30072 +23260,30382 +23261,31030 +23262,31031 +23263,31099 +23264,31100 +23265,8295 +23266,33372 +23267,6777 +23268,983 +23269,23739 +23270,25475 +23271,12333 +23272,30315 +23273,31084 +23274,30321 +23275,31082 +23276,30316 +23277,31085 +23278,36006 +23279,35798 +23280,36003 +23281,36004 +23282,31060 +23283,36007 +23284,31075 +23285,31068 +23286,35808 +23287,26752 +23288,36010 +23289,36008 +23290,36013 +23291,31063 +23292,35799 +23293,35800 +23294,35805 +23295,27235 +23296,30385 +23297,36017 +23298,36015 +23299,36014 +23300,31083 +23301,26659 +23302,36018 +23303,36021 +23304,36022 +23305,36024 +23306,35801 +23307,35802 +23308,40407 +23309,35807 +23310,36040 +23311,36027 +23312,36669 +23313,36044 +23314,35810 +23315,35811 +23316,36042 +23317,36038 +23318,36041 +23319,27231 +23320,33585 +23321,12647 +23322,36138 +23323,41462 +23324,44563 +23325,35830 +23326,35831 +23327,6399 +23328,35839 +23329,6624 +23330,30601 +23331,30600 +23332,6501 +23333,30634 +23334,2516 +23335,35855 +23336,15710 +23337,15791 +23338,36270 +23339,1143 +23340,4110 +23341,4110 +23342,4110 +23343,1281 +23344,36120 +23345,36118 +23346,2380 +23347,10671 +23348,36122 +23349,9977 +23350,9975 +23351,9976 +23352,36272 +23353,35871 +23354,17957 +23355,25480 +23356,35878 +23357,18053 +23358,10449 +23359,2516 +23360,3486 +23361,29354 +23362,35992 +23363,35991 +23364,12310 +23365,18698 +23366,35884 +23367,12661 +23368,8308 +23369,35899 +23370,35898 +23371,3405 +23372,37415 +23373,36958 +23374,19312 +23375,35903 +23376,6954 +23377,16847 +23378,9826 +23379,7025 +23380,30634 +23381,2516 +23382,35912 +23383,26375 +23384,3177 +23385,35871 +23386,17957 +23387,36273 +23388,35929 +23389,1025 +23390,20084 +23391,6432 +23392,19772 +23393,20176 +23394,983 +23395,18698 +23396,1544 +23397,16817 +23398,20722 +23399,19011 +23400,23044 +23401,28464 +23402,35932 +23403,22687 +23404,6777 +23405,9502 +23406,25766 +23407,16805 +23408,17014 +23409,20550 +23410,36960 +23411,20401 +23412,10434 +23413,14552 +23414,14276 +23415,3006 +23416,35945 +23417,20784 +23418,20535 +23419,20425 +23420,35959 +23421,5145 +23422,35961 +23423,35962 +23424,38645 +23425,38648 +23426,38647 +23427,38644 +23428,37666 +23429,35968 +23430,5145 +23431,35961 +23432,35962 +23433,35974 +23434,35975 +23435,6342 +23436,39911 +23437,44729 +23438,39928 +23439,39932 +23440,39938 +23441,39933 +23442,36271 +23443,35948 +23444,3664 +23445,44950 +23446,39489 +23447,39490 +23448,39487 +23449,43358 +23450,36036 +23451,36045 +23452,36265 +23453,36266 +23454,36064 +23455,36065 +23456,36066 +23457,36067 +23458,36068 +23459,36069 +23460,15770 +23461,36073 +23462,36267 +23463,36268 +23464,36078 +23465,36079 +23466,36080 +23467,36081 +23468,36267 +23469,36268 +23470,36103 +23471,36104 +23472,36108 +23473,36124 +23474,36125 +23475,36126 +23476,36133 +23477,36134 +23478,36125 +23479,36140 +23480,35178 +23481,36154 +23482,38318 +23483,3331 +23484,38319 +23485,22271 +23486,22271 +23487,39451 +23488,38316 +23489,38321 +23490,38327 +23491,38328 +23492,18080 +23493,44656 +23494,39177 +23495,2474 +23496,34281 +23497,39450 +23498,39376 +23499,39449 +23500,3018 +23501,19494 +23502,38681 +23503,38682 +23504,38683 +23505,20076 +23506,38684 +23507,36206 +23508,38685 +23509,38686 +23510,38687 +23511,38689 +23512,38690 +23513,42874 +23514,42875 +23515,42877 +23516,42876 +23517,38695 +23518,38696 +23519,38697 +23520,38698 +23521,38699 +23522,38700 +23523,36230 +23524,38701 +23525,38702 +23526,38703 +23527,44089 +23528,39192 +23529,39193 +23530,39194 +23531,34236 +23532,38705 +23533,38706 +23534,36416 +23535,44880 +23536,44877 +23537,36248 +23538,36249 +23539,36250 +23540,36253 +23541,36255 +23542,41709 +23543,36259 +23544,36261 +23545,36276 +23546,36263 +23547,36277 +23548,36275 +23549,36274 +23550,37377 +23551,8545 +23552,7121 +23553,36317 +23554,36283 +23555,36285 +23556,45615 +23557,34484 +23558,36290 +23559,38757 +23560,16161 +23561,16161 +23562,16161 +23563,45805 +23564,45806 +23565,45807 +23566,8545 +23567,27454 +23568,36318 +23569,35448 +23570,36338 +23571,41678 +23572,41697 +23573,39486 +23574,15274 +23575,38759 +23576,38760 +23577,35575 +23578,21672 +23579,24152 +23580,36375 +23581,7287 +23582,36381 +23583,36382 +23584,18117 +23585,18099 +23586,18102 +23587,39942 +23588,19528 +23589,38239 +23590,1102 +23591,1102 +23592,1102 +23593,1102 +23594,1102 +23595,1102 +23596,1102 +23597,1102 +23598,1102 +23599,1102 +23600,1102 +23601,1102 +23602,1102 +23603,1102 +23604,1102 +23605,6270 +23606,6270 +23607,6270 +23608,6270 +23609,6270 +23610,6270 +23611,6270 +23612,6270 +23613,6270 +23614,4809 +23615,6270 +23616,6689 +23617,6270 +23618,1102 +23619,1102 +23620,1096 +23621,1096 +23622,1096 +23623,1096 +23624,1096 +23625,1096 +23626,1096 +23627,1096 +23628,1096 +23629,1096 +23630,1096 +23631,1096 +23632,1096 +23633,1096 +23634,1096 +23635,1096 +23636,1096 +23637,1096 +23638,1102 +23639,6270 +23640,32426 +23641,36405 +23642,39041 +23643,2480 +23644,9288 +23645,44562 +23646,12331 +23647,26494 +23648,26494 +23649,26494 +23650,26494 +23651,26494 +23652,26494 +23653,26494 +23654,3673 +23655,34509 +23656,34744 +23657,11448 +23658,2588 +23659,25467 +23660,36417 +23661,36419 +23662,35448 +23663,34203 +23664,36425 +23665,36426 +23666,36430 +23667,36429 +23668,22985 +23669,36431 +23670,2357 +23671,35843 +23672,18574 +23673,36442 +23674,9154 +23675,7841 +23676,25467 +23677,21470 +23678,30690 +23679,36446 +23680,36446 +23681,13291 +23682,35178 +23683,26732 +23684,32426 +23685,19497 +23686,35299 +23687,3596 +23688,7127 +23689,8117 +23690,12547 +23691,36454 +23692,6661 +23693,3331 +23694,18050 +23695,24153 +23696,15788 +23697,26595 +23698,24211 +23699,36460 +23700,31256 +23701,31257 +23702,26595 +23703,26595 +23704,18080 +23705,38283 +23706,35016 +23707,1438 +23708,36467 +23709,38284 +23710,36469 +23711,1246 +23712,36470 +23713,18048 +23714,34282 +23715,18114 +23716,36471 +23717,963 +23718,2638 +23719,16836 +23720,36474 +23721,36475 +23722,20894 +23723,36476 +23724,36135 +23725,7899 +23726,33967 +23727,7899 +23728,7899 +23729,36477 +23730,1246 +23731,1246 +23732,36482 +23733,35178 +23734,1246 +23735,6494 +23736,40541 +23737,25482 +23738,36487 +23739,23229 +23740,36488 +23741,35247 +23742,43685 +23743,35247 +23744,15741 +23745,1246 +23746,43687 +23747,43688 +23748,43690 +23749,29438 +23750,29439 +23751,29439 +23752,15794 +23753,19566 +23754,13002 +23755,1246 +23756,32650 +23757,22193 +23758,43889 +23759,24037 +23760,36504 +23761,40545 +23762,43890 +23763,43891 +23764,7326 +23765,7326 +23766,7326 +23767,9730 +23768,34283 +23769,34281 +23770,34279 +23771,34280 +23772,40542 +23773,40526 +23774,36511 +23775,36512 +23776,929 +23777,1093 +23778,16065 +23779,3667 +23780,1093 +23781,40543 +23782,40544 +23783,40548 +23784,40549 +23785,40550 +23786,43101 +23787,40552 +23788,1443 +23789,3233 +23790,36520 +23791,35015 +23792,36521 +23793,38745 +23794,24211 +23795,17896 +23796,24156 +23797,1093 +23798,1093 +23799,1102 +23800,6270 +23801,9154 +23802,6270 +23803,1102 +23804,6270 +23805,1102 +23806,6270 +23807,1102 +23808,6270 +23809,6270 +23810,15274 +23811,1102 +23812,1102 +23813,1102 +23814,1102 +23815,1102 +23816,1102 +23817,1102 +23818,1143 +23819,30999 +23820,31205 +23821,40557 +23822,45157 +23823,45156 +23824,46155 +23825,36539 +23826,40554 +23827,40555 +23828,43887 +23829,43886 +23830,36558 +23831,35133 +23832,35133 +23833,36566 +23834,36567 +23835,36568 +23836,40556 +23837,23229 +23838,20814 +23839,20814 +23840,36571 +23841,40553 +23842,4361 +23843,36572 +23844,36575 +23845,21366 +23846,9632 +23847,31819 +23848,18099 +23849,7087 +23850,26378 +23851,36578 +23852,2591 +23853,7649 +23854,42161 +23855,39460 +23856,36599 +23857,1103 +23858,7629 +23859,37269 +23860,21416 +23861,17329 +23862,1103 +23863,33971 +23864,1103 +23865,1103 +23866,7629 +23867,7629 +23868,7629 +23869,36589 +23870,36590 +23871,24151 +23872,2591 +23873,36592 +23874,1102 +23875,36594 +23876,36594 +23877,36594 +23878,36595 +23879,36596 +23880,36597 +23881,36598 +23882,6270 +23883,6270 +23884,6270 +23885,6270 +23886,12625 +23887,6270 +23888,1102 +23889,36600 +23890,1096 +23891,1096 +23892,1096 +23893,1096 +23894,15711 +23895,36601 +23896,8122 +23897,8122 +23898,8122 +23899,34748 +23900,36615 +23901,36617 +23902,7649 +23903,12331 +23904,36629 +23905,26494 +23906,36631 +23907,36637 +23908,36638 +23909,42479 +23910,16161 +23911,26494 +23912,26494 +23913,26494 +23914,26494 +23915,26494 +23916,26494 +23917,26494 +23918,26494 +23919,3030 +23920,18170 +23921,1168 +23922,3233 +23923,36650 +23924,27472 +23925,36652 +23926,13005 +23927,7130 +23928,25271 +23929,35448 +23930,35448 +23931,36676 +23932,36675 +23933,1246 +23934,1246 +23935,1246 +23936,1246 +23937,32846 +23938,36682 +23939,35014 +23940,6002 +23941,36682 +23942,6002 +23943,35014 +23944,36682 +23945,6002 +23946,35014 +23947,36682 +23948,6002 +23949,35014 +23950,36682 +23951,6002 +23952,35014 +23953,36682 +23954,6002 +23955,35014 +23956,36683 +23957,36682 +23958,6002 +23959,35014 +23960,36682 +23961,6002 +23962,35014 +23963,36682 +23964,6002 +23965,35014 +23966,36682 +23967,6002 +23968,35014 +23969,36682 +23970,6002 +23971,35014 +23972,36682 +23973,6002 +23974,35014 +23975,6002 +23976,36682 +23977,6002 +23978,35014 +23979,36682 +23980,6002 +23981,36687 +23982,36688 +23983,15741 +23984,35930 +23985,36675 +23986,36540 +23987,30601 +23988,30600 +23989,36693 +23990,3331 +23991,6666 +23992,7086 +23993,7048 +23994,19497 +23995,36696 +23996,40065 +23997,7164 +23998,36698 +23999,36701 +24000,7798 +24001,1102 +24002,1102 +24003,7798 +24004,35933 +24005,8628 +24006,36702 +24007,36702 +24008,36703 +24009,36704 +24010,22477 +24011,36706 +24012,36707 +24013,36708 +24014,36709 +24015,36710 +24016,36711 +24017,36712 +24018,36713 +24019,36714 +24020,39374 +24021,43142 +24022,43149 +24023,43166 +24024,43187 +24025,1769 +24026,25475 +24027,39926 +24028,39926 +24029,39926 +24030,39926 +24031,39926 +24032,39926 +24033,39927 +24034,36725 +24035,39927 +24036,39926 +24037,39927 +24038,36726 +24039,39927 +24040,36727 +24041,15857 +24042,15854 +24043,36728 +24044,36729 +24045,26537 +24046,43160 +24047,39925 +24048,39925 +24049,19566 +24050,39925 +24051,39925 +24052,39925 +24053,39925 +24054,39929 +24055,39929 +24056,39929 +24057,39929 +24058,39931 +24059,39931 +24060,39931 +24061,39931 +24062,39930 +24063,43167 +24064,43135 +24065,39930 +24066,39930 +24067,39930 +24068,20614 +24069,39050 +24070,34891 +24071,36741 +24072,6342 +24073,34034 +24074,31657 +24075,39129 +24076,35313 +24077,35358 +24078,39128 +24079,39121 +24080,39123 +24081,7290 +24082,39120 +24083,43182 +24084,36754 +24085,39122 +24086,39124 +24087,39125 +24088,39127 +24089,39126 +24090,43151 +24091,43136 +24092,39162 +24093,39210 +24094,38823 +24095,39211 +24096,38544 +24097,39209 +24098,39212 +24099,36756 +24100,33302 +24101,12547 +24102,36765 +24103,36767 +24104,23050 +24105,25481 +24106,31899 +24107,36997 +24108,14346 +24109,17119 +24110,31604 +24111,36771 +24112,16855 +24113,28013 +24114,9859 +24115,4689 +24116,36755 +24117,35358 +24118,9847 +24119,9832 +24120,9847 +24121,34274 +24122,27606 +24123,36772 +24124,39917 +24125,39916 +24126,39918 +24127,39914 +24128,39915 +24129,14443 +24130,16587 +24131,6904 +24132,24153 +24133,36775 +24134,36776 +24135,40713 +24136,18350 +24137,36780 +24138,11247 +24139,20608 +24140,31577 +24141,36786 +24142,36787 +24143,36789 +24144,36788 +24145,36790 +24146,36793 +24147,3331 +24148,3331 +24149,3331 +24150,38813 +24151,23629 +24152,36860 +24153,36861 +24154,28733 +24155,40357 +24156,36862 +24157,16023 +24158,6270 +24159,6270 +24160,6270 +24161,6270 +24162,6270 +24163,6270 +24164,6270 +24165,6270 +24166,6270 +24167,6270 +24168,6270 +24169,6270 +24170,6270 +24171,6270 +24172,6270 +24173,6270 +24174,6270 +24175,6270 +24176,6270 +24177,6270 +24178,6270 +24179,6270 +24180,6270 +24181,6270 +24182,6270 +24183,6270 +24184,36862 +24185,18072 +24186,38471 +24187,36866 +24188,38474 +24189,20977 +24190,38475 +24191,7162 +24192,6270 +24193,6270 +24194,6270 +24195,6270 +24196,6270 +24197,6270 +24198,6270 +24199,6270 +24200,6270 +24201,6270 +24202,6270 +24203,6270 +24204,6270 +24205,6270 +24206,6270 +24207,6270 +24208,6270 +24209,6270 +24210,6270 +24211,6270 +24212,6270 +24213,6270 +24214,6270 +24215,6270 +24216,6270 +24217,6270 +24218,6270 +24219,6270 +24220,6270 +24221,13806 +24222,30724 +24223,16065 +24224,36901 +24225,26858 +24226,36902 +24227,36906 +24228,634 +24229,634 +24230,30953 +24231,6371 +24232,10301 +24233,15854 +24234,38476 +24235,38477 +24236,26381 +24237,1317 +24238,19488 +24239,7913 +24240,9288 +24241,37154 +24242,38478 +24243,38479 +24244,36925 +24245,36934 +24246,19495 +24247,34863 +24248,37035 +24249,38923 +24250,38922 +24251,38921 +24252,26202 +24253,38973 +24254,36937 +24255,36938 +24256,38974 +24257,38975 +24258,29719 +24259,38976 +24260,38977 +24261,43304 +24262,38958 +24263,43421 +24264,43883 +24265,36945 +24266,38956 +24267,43884 +24268,1007 +24269,1007 +24270,24496 +24271,39460 +24272,42161 +24273,42716 +24274,42717 +24275,42718 +24276,42715 +24277,18010 +24278,16299 +24279,6700 +24280,3146 +24281,18072 +24282,1588 +24283,7397 +24284,15770 +24285,37130 +24286,35023 +24287,16321 +24288,25048 +24289,35649 +24290,4045 +24291,36984 +24292,1301 +24293,1301 +24294,1301 +24295,1301 +24296,6270 +24297,6270 +24298,6270 +24299,6270 +24300,6270 +24301,6270 +24302,6270 +24303,6270 +24304,6270 +24305,6270 +24306,6270 +24307,6270 +24308,6270 +24309,6270 +24310,6270 +24311,6270 +24312,6270 +24313,6270 +24314,1301 +24315,1301 +24316,1301 +24317,15791 +24318,34493 +24319,37000 +24320,37101 +24321,37003 +24322,33307 +24323,634 +24324,37017 +24325,37018 +24326,37019 +24327,37020 +24328,33309 +24329,47456 +24330,4110 +24331,37030 +24332,37031 +24333,37034 +24334,18456 +24335,27454 +24336,30271 +24337,35843 +24338,37044 +24339,31400 +24340,14498 +24341,7000 +24342,28633 +24343,8572 +24344,37080 +24345,1317 +24346,37046 +24347,37047 +24348,37048 +24349,23608 +24350,26001 +24351,37049 +24352,37050 +24353,37057 +24354,37054 +24355,37062 +24356,43194 +24357,43161 +24358,31664 +24359,42315 +24360,43153 +24361,43733 +24362,43197 +24363,43140 +24364,43144 +24365,43170 +24366,43156 +24367,24153 +24368,23315 +24369,1246 +24370,23315 +24371,1246 +24372,37083 +24373,24153 +24374,22193 +24375,37094 +24376,39055 +24377,23248 +24378,43195 +24379,38548 +24380,39057 +24381,39059 +24382,7649 +24383,19566 +24384,38827 +24385,31899 +24386,36578 +24387,43134 +24388,43159 +24389,41427 +24390,38837 +24391,43175 +24392,43188 +24393,40042 +24394,40900 +24395,43189 +24396,43168 +24397,43183 +24398,43169 +24399,634 +24400,2480 +24401,7328 +24402,3565 +24403,18089 +24404,1442 +24405,7273 +24406,2788 +24407,6387 +24408,24690 +24409,37135 +24410,37149 +24411,15692 +24412,40522 +24413,43198 +24414,35402 +24415,32847 +24416,19495 +24417,40521 +24418,36036 +24419,37181 +24420,6511 +24421,37181 +24422,37182 +24423,37184 +24424,37185 +24425,37186 +24426,1504 +24427,18537 +24428,15790 +24429,39448 +24430,37191 +24431,37192 +24432,37193 +24433,37057 +24434,37195 +24435,37196 +24436,37197 +24437,37198 +24438,37199 +24439,37185 +24440,37200 +24441,37201 +24442,37202 +24443,37203 +24444,37204 +24445,37205 +24446,37206 +24447,37207 +24448,37209 +24449,37214 +24450,43190 +24451,43152 +24452,43176 +24453,39074 +24454,39075 +24455,43177 +24456,43138 +24457,43199 +24458,43143 +24459,39078 +24460,38555 +24461,43200 +24462,9858 +24463,43139 +24464,39081 +24465,43154 +24466,43171 +24467,15788 +24468,37210 +24469,37215 +24470,22271 +24471,31238 +24472,9666 +24473,37218 +24474,37219 +24475,18519 +24476,16211 +24477,22193 +24478,12310 +24479,16209 +24480,37222 +24481,43191 +24482,7726 +24483,21975 +24484,21975 +24485,1288 +24486,37223 +24487,8737 +24488,8042 +24489,8042 +24490,9154 +24491,24591 +24492,1246 +24493,37226 +24494,37234 +24495,43311 +24496,37236 +24497,37237 +24498,37237 +24499,1155 +24500,1288 +24501,18107 +24502,37238 +24503,37241 +24504,37240 +24505,4826 +24506,36540 +24507,36597 +24508,36675 +24509,36693 +24510,37250 +24511,37249 +24512,37257 +24513,38287 +24514,3118 +24515,18092 +24516,959 +24517,18096 +24518,18095 +24519,959 +24520,35013 +24521,36682 +24522,37271 +24523,12625 +24524,39902 +24525,31721 +24526,29859 +24527,29858 +24528,27088 +24529,29860 +24530,31210 +24531,29865 +24532,25226 +24533,4841 +24534,29867 +24535,26537 +24536,29863 +24537,29864 +24538,37282 +24539,26534 +24540,34863 +24541,3427 +24542,37293 +24543,7164 +24544,39539 +24545,47246 +24546,39543 +24547,45932 +24548,37303 +24549,39540 +24550,41561 +24551,23713 +24552,41717 +24553,45148 +24554,41716 +24555,41715 +24556,41714 +24557,41557 +24558,23229 +24559,23229 +24560,12734 +24561,29793 +24562,29798 +24563,31263 +24564,29792 +24565,29799 +24566,29800 +24567,26681 +24568,24022 +24569,28828 +24570,30870 +24571,23717 +24572,29795 +24573,7630 +24575,37970 +24576,37327 +24577,37328 +24578,37329 +24579,40185 +24580,42766 +24581,40184 +24582,39623 +24583,40693 +24584,12865 +24585,41844 +24586,40692 +24587,1058 +24588,16566 +24589,7881 +24590,40700 +24591,40698 +24592,40702 +24593,40703 +24594,40312 +24595,16786 +24596,40701 +24597,38064 +24598,40706 +24599,40708 +24600,40704 +24601,19990 +24602,40707 +24603,13672 +24604,40709 +24605,16807 +24606,38437 +24607,38444 +24608,38441 +24609,42766 +24610,38442 +24611,9999 +24612,16790 +24613,38736 +24614,38737 +24615,38740 +24616,9555 +24617,44718 +24618,38739 +24619,38741 +24620,16555 +24621,7881 +24622,39008 +24623,39009 +24624,16797 +24625,42386 +24626,39010 +24627,39011 +24628,16804 +24629,39093 +24630,39089 +24631,39092 +24632,39090 +24633,39091 +24634,14529 +24635,39094 +24636,39088 +24637,29929 +24638,39334 +24639,39337 +24640,39335 +24641,16638 +24642,39336 +24643,39338 +24644,16905 +24645,39395 +24646,39396 +24647,39976 +24648,39398 +24649,39405 +24650,39399 +24651,39403 +24652,39397 +24653,16819 +24654,14403 +24655,39509 +24656,14404 +24657,39511 +24658,39507 +24659,39510 +24660,39506 +24661,39778 +24662,39777 +24663,39781 +24664,39779 +24665,39783 +24666,39780 +24667,39782 +24668,16892 +24669,39882 +24670,39883 +24671,39885 +24672,39884 +24673,39887 +24674,39886 +24675,16637 +24676,16636 +24677,16704 +24678,16703 +24679,39977 +24680,16702 +24681,44265 +24682,16701 +24683,16706 +24684,9894 +24685,16704 +24686,16703 +24687,16700 +24688,16702 +24689,42386 +24690,16701 +24691,16706 +24692,9894 +24693,40154 +24694,40720 +24695,40718 +24696,40722 +24697,41852 +24698,40719 +24699,38830 +24700,40717 +24701,40724 +24702,40723 +24703,40727 +24704,40726 +24705,42209 +24706,40728 +24707,40729 +24708,17010 +24709,17124 +24710,38351 +24711,38352 +24712,38354 +24713,39671 +24714,38356 +24715,38355 +24716,38350 +24717,38415 +24718,38416 +24719,9511 +24720,14383 +24721,44882 +24722,2628 +24723,14205 +24724,38414 +24725,38658 +24726,38657 +24727,38663 +24728,38661 +24729,44657 +24730,17031 +24731,38664 +24732,38654 +24733,38862 +24734,38857 +24735,38856 +24736,38858 +24737,41853 +24738,38860 +24739,38861 +24740,14803 +24741,39096 +24742,39097 +24743,8701 +24744,14400 +24745,39098 +24746,43404 +24747,27667 +24748,39095 +24749,39319 +24750,13864 +24751,39670 +24752,39320 +24753,16137 +24754,39321 +24755,39322 +24756,17172 +24757,39469 +24758,39466 +24759,39468 +24760,14583 +24761,39471 +24762,39467 +24763,39470 +24764,9546 +24765,16947 +24766,39496 +24767,39494 +24768,39493 +24769,45166 +24770,39492 +24771,39498 +24772,17024 +24773,39736 +24774,39737 +24775,39746 +24776,39744 +24777,35629 +24778,39738 +24779,26035 +24780,3652 +24781,39895 +24782,37332 +24783,39896 +24784,9548 +24785,39897 +24786,40149 +24787,39898 +24788,39900 +24789,27706 +24790,16704 +24791,16703 +24792,16700 +24793,16702 +24794,18422 +24795,16701 +24796,16706 +24797,9894 +24798,16704 +24799,16703 +24800,16700 +24801,16702 +24802,42460 +24803,16701 +24804,16706 +24805,9894 +24806,40737 +24807,40734 +24808,40731 +24809,40732 +24810,40733 +24811,40735 +24812,40736 +24813,40730 +24814,40745 +24815,40741 +24816,40739 +24817,40740 +24818,40742 +24819,40129 +24820,40744 +24821,40738 +24822,42104 +24823,42107 +24824,42105 +24825,42106 +24826,42103 +24827,42108 +24828,42109 +24829,39787 +24830,38624 +24831,38627 +24832,38608 +24833,38626 +24834,38628 +24835,38629 +24836,38630 +24837,38625 +24838,38851 +24839,38845 +24840,16725 +24841,38844 +24842,42201 +24843,38850 +24844,38848 +24845,38843 +24846,38873 +24847,38868 +24848,38865 +24849,38867 +24850,41377 +24851,38871 +24852,38872 +24853,38866 +24854,25775 +24855,40252 +24856,13011 +24857,40254 +24858,40255 +24859,40256 +24860,40257 +24861,40258 +24862,39302 +24863,39305 +24864,39304 +24865,39306 +24866,44677 +24867,39307 +24868,39308 +24869,39303 +24870,39436 +24871,39442 +24872,11497 +24873,39441 +24874,25791 +24875,39443 +24876,39445 +24877,28596 +24878,39513 +24879,41953 +24880,39514 +24881,39515 +24882,42439 +24883,39518 +24884,39520 +24885,13508 +24886,39786 +24887,39789 +24888,39788 +24889,39790 +24890,39793 +24891,39792 +24892,39794 +24893,39787 +24894,39983 +24895,39980 +24896,39979 +24897,39981 +24898,39986 +24899,39982 +24900,39985 +24901,39988 +24902,39809 +24903,39812 +24904,39810 +24905,39814 +24906,42461 +24907,39704 +24908,39815 +24909,39813 +24910,16704 +24911,40183 +24912,16700 +24913,16702 +24914,42462 +24915,39171 +24916,16706 +24917,9894 +24918,40748 +24919,40758 +24920,40746 +24921,40747 +24922,42214 +24923,40756 +24924,40757 +24925,40759 +24926,40761 +24927,40765 +24928,40762 +24929,40763 +24930,44883 +24931,40764 +24932,28403 +24933,40766 +24934,40767 +24935,40774 +24936,40769 +24937,40770 +24938,40771 +24939,40772 +24940,40773 +24941,40768 +24942,38357 +24943,40352 +24944,38359 +24945,38360 +24946,45182 +24947,38362 +24948,40303 +24949,38358 +24950,39174 +24951,38650 +24952,38639 +24953,38640 +24954,44684 +24955,38643 +24956,38646 +24957,44766 +24958,44274 +24959,44277 +24960,44273 +24961,44275 +24962,44278 +24963,44279 +24964,40303 +24965,44272 +24966,39803 +24967,39805 +24968,39800 +24969,39804 +24970,42215 +24971,39807 +24972,39802 +24973,39801 +24974,44280 +24975,39384 +24976,39377 +24977,39382 +24978,39386 +24979,39385 +24980,39379 +24981,39378 +24982,39410 +24983,39414 +24984,39409 +24985,39412 +24986,45181 +24987,40772 +24988,39416 +24989,39411 +24990,39612 +24991,39615 +24992,39613 +24993,39614 +24994,44686 +24995,39617 +24996,39620 +24997,39618 +24998,39643 +24999,39646 +25000,39641 +25001,39644 +25002,45183 +25003,39647 +25004,39651 +25005,39648 +25006,39868 +25007,39869 +25008,39865 +25009,39866 +25010,39873 +25011,39870 +25012,39867 +25013,39871 +25014,44334 +25015,44340 +25016,40688 +25017,44336 +25018,48246 +25019,44279 +25020,44335 +25021,39170 +25022,44346 +25023,44349 +25024,44341 +25025,44345 +25026,42390 +25027,44347 +25028,39651 +25029,44348 +25030,40775 +25031,40776 +25032,40777 +25033,38589 +25034,38665 +25035,26027 +25036,27974 +25037,39391 +25038,30689 +25039,29630 +25040,25958 +25041,15236 +25042,16707 +25043,16707 +25044,31655 +25045,24569 +25046,31616 +25047,9839 +25048,23629 +25049,24569 +25050,23608 +25051,28831 +25052,31616 +25053,23728 +25054,9832 +25055,24569 +25056,9834 +25057,9834 +25058,31889 +25059,31604 +25060,38348 +25061,9657 +25062,38809 +25063,39000 +25064,39023 +25065,39390 +25066,39023 +25067,6539 +25068,9857 +25069,39877 +25070,4841 +25071,4841 +25072,26046 +25073,40781 +25074,40782 +25075,27222 +25076,38728 +25077,4743 +25078,39044 +25079,33305 +25080,38728 +25081,38728 +25082,20974 +25083,3931 +25084,20900 +25085,23835 +25086,41455 +25087,40785 +25088,40786 +25089,41458 +25090,38729 +25091,38999 +25092,39037 +25093,39339 +25094,41457 +25095,39472 +25096,38729 +25097,39863 +25098,22923 +25099,22923 +25100,40787 +25101,40788 +25102,40789 +25103,38457 +25104,38633 +25105,38853 +25106,39029 +25107,20273 +25108,39423 +25109,39604 +25110,40711 +25111,39892 +25112,40182 +25113,41469 +25114,39004 +25115,5205 +25116,40791 +25117,38418 +25118,5199 +25119,38854 +25120,39045 +25121,5205 +25122,39427 +25123,39488 +25124,39750 +25125,39610 +25126,22118 +25127,40823 +25128,40792 +25129,19622 +25130,44768 +25131,38423 +25132,38726 +25133,39001 +25134,39255 +25135,39311 +25136,39408 +25137,39527 +25138,39633 +25139,39861 +25140,40824 +25141,41952 +25142,40794 +25143,7526 +25144,40795 +25145,4802 +25146,38635 +25147,38863 +25148,39025 +25149,39310 +25150,7485 +25151,39474 +25152,39752 +25153,39890 +25154,41950 +25155,40686 +25156,40796 +25157,44329 +25158,40798 +25159,38606 +25160,38735 +25161,38864 +25162,39039 +25163,39329 +25164,39428 +25165,39491 +25166,39758 +25167,39906 +25168,40691 +25169,44330 +25170,40799 +25171,39172 +25172,38347 +25173,5074 +25174,38713 +25175,38995 +25176,39105 +25177,5120 +25178,4995 +25179,5111 +25180,39748 +25181,39987 +25182,38347 +25183,21514 +25184,40801 +25185,40802 +25186,40803 +25187,40431 +25188,8379 +25189,30572 +25190,40432 +25191,40434 +25192,40177 +25193,40178 +25194,40179 +25195,40180 +25196,40426 +25197,40427 +25198,40804 +25199,40805 +25200,40806 +25201,14029 +25202,38723 +25203,38997 +25204,39739 +25205,39387 +25206,39406 +25207,39608 +25208,39632 +25209,39862 +25210,40313 +25211,44332 +25212,40295 +25213,40294 +25214,40296 +25215,40299 +25216,40297 +25217,40300 +25218,40298 +25219,40939 +25220,39421 +25221,39603 +25222,39749 +25223,40302 +25224,40938 +25225,40940 +25226,40807 +25227,40808 +25228,40809 +25229,38461 +25230,38742 +25231,39003 +25232,39258 +25233,39287 +25234,39425 +25235,39531 +25236,39751 +25237,39894 +25238,40401 +25239,40825 +25240,44659 +25241,2786 +25242,44682 +25243,38632 +25244,6233 +25245,39007 +25246,39040 +25247,39331 +25248,39431 +25249,39607 +25250,39775 +25251,39975 +25252,2786 +25253,2786 +25254,11247 +25255,42482 +25256,10671 +25257,38419 +25258,38651 +25259,39002 +25260,38651 +25261,39333 +25262,39434 +25263,39434 +25264,39773 +25265,39864 +25266,10671 +25267,10671 +25268,44662 +25269,44660 +25270,41603 +25271,44564 +25272,44663 +25273,39005 +25274,48592 +25275,44661 +25276,44665 +25277,44664 +25278,2792 +25279,13060 +25280,39087 +25281,36494 +25282,40815 +25283,40816 +25284,40144 +25285,40131 +25286,40146 +25287,40139 +25288,40133 +25289,40155 +25290,40145 +25291,40143 +25292,40142 +25293,40136 +25294,40156 +25295,44333 +25296,40214 +25297,40817 +25298,40818 +25299,38601 +25300,38724 +25301,39006 +25302,39101 +25303,39282 +25304,39419 +25305,39530 +25306,39769 +25307,39978 +25308,41471 +25309,40158 +25310,6207 +25311,39427 +25312,38346 +25313,24033 +25314,16498 +25315,39004 +25316,39102 +25317,39389 +25318,39394 +25319,39611 +25320,39774 +25321,39875 +25322,40159 +25323,41637 +25324,35363 +25325,20373 +25326,38345 +25327,35363 +25328,38666 +25329,34939 +25330,39104 +25331,39392 +25332,39429 +25333,22145 +25334,39753 +25335,39878 +25336,21968 +25337,44331 +25338,37333 +25339,37334 +25340,37335 +25341,37327 +25342,37328 +25343,37329 +25344,37332 +25345,42766 +25346,43405 +25347,37334 +25348,37335 +25349,14935 +25350,37336 +25351,37337 +25352,37338 +25353,27946 +25354,37339 +25355,27947 +25356,37340 +25357,14935 +25358,37336 +25359,37337 +25360,37338 +25361,27946 +25362,37339 +25363,27947 +25364,37340 +25365,37341 +25366,37342 +25367,6876 +25368,6915 +25369,28391 +25370,37343 +25371,3043 +25372,37344 +25373,37341 +25374,37342 +25375,6876 +25376,6915 +25377,28391 +25378,37343 +25379,3043 +25380,37344 +25381,37348 +25382,37349 +25383,37350 +25384,25846 +25385,37351 +25386,42216 +25387,37353 +25388,37355 +25389,37348 +25390,37349 +25391,37350 +25392,25846 +25393,37351 +25394,42216 +25395,37353 +25396,37355 +25397,8478 +25398,19374 +25399,20225 +25400,20195 +25401,19716 +25402,28691 +25403,4119 +25404,20309 +25405,20721 +25406,20550 +25407,18472 +25408,18095 +25409,18095 +25410,37654 +25411,37654 +25412,18092 +25413,18092 +25414,7134 +25415,7134 +25416,30634 +25417,959 +25418,959 +25419,2588 +25420,3307 +25421,3307 +25422,2593 +25423,21202 +25424,3023 +25425,37653 +25426,37653 +25427,7202 +25428,7202 +25429,37656 +25430,37656 +25431,2874 +25432,2874 +25433,32326 +25434,23332 +25435,23332 +25436,35014 +25437,35014 +25438,6539 +25439,29697 +25440,3429 +25441,3429 +25442,38305 +25443,37651 +25444,13715 +25445,13715 +25446,7103 +25447,7103 +25448,37378 +25449,2593 +25450,37657 +25451,37657 +25452,19566 +25453,19566 +25454,37659 +25455,37659 +25456,37658 +25457,37658 +25458,19562 +25459,37392 +25460,9151 +25461,1246 +25462,1246 +25463,7999 +25464,37410 +25465,37443 +25466,18096 +25467,37424 +25468,24153 +25469,1246 +25470,39239 +25471,39239 +25472,39239 +25473,39239 +25474,46206 +25475,46206 +25476,46206 +25477,46206 +25478,37441 +25479,37440 +25480,37437 +25481,37444 +25482,37438 +25483,37436 +25484,39682 +25485,39681 +25486,37433 +25487,32297 +25488,37430 +25489,37429 +25490,37442 +25491,4045 +25492,23267 +25493,19311 +25494,28580 +25495,20299 +25496,28309 +25497,32693 +25498,38749 +25499,9834 +25500,9858 +25501,27721 +25502,37445 +25503,37446 +25504,37447 +25505,31906 +25506,37448 +25507,37449 +25508,37450 +25509,37442 +25510,37451 +25511,27938 +25512,37454 +25513,41854 +25514,27160 +25515,37457 +25516,37459 +25517,9859 +25518,37460 +25519,28262 +25520,37469 +25521,38758 +25522,27940 +25523,37472 +25524,37473 +25525,37474 +25526,1102 +25527,39239 +25528,39239 +25529,39239 +25530,44327 +25531,46206 +25532,46206 +25533,46206 +25534,37476 +25535,45013 +25536,19735 +25537,28207 +25538,40181 +25539,3665 +25540,40130 +25541,28733 +25542,9837 +25543,16130 +25544,28557 +25545,6448 +25546,37481 +25547,37482 +25548,19488 +25549,37484 +25550,36727 +25551,37483 +25552,6748 +25553,20446 +25554,11449 +25555,6748 +25556,37490 +25557,37491 +25558,37492 +25559,37493 +25560,37494 +25561,45985 +25562,15420 +25563,32395 +25564,9657 +25565,37496 +25566,37498 +25567,37500 +25568,37501 +25569,27427 +25570,39364 +25571,17269 +25572,37501 +25573,27427 +25574,23711 +25575,37504 +25576,37505 +25577,23711 +25578,37505 +25579,41069 +25580,37508 +25581,37509 +25582,37511 +25583,39363 +25584,37509 +25585,37508 +25586,12331 +25587,37524 +25588,37525 +25589,37533 +25590,9666 +25591,37534 +25592,37535 +25593,37561 +25594,26326 +25595,37537 +25596,37541 +25597,37542 +25598,37543 +25599,37544 +25600,37544 +25601,37543 +25602,37542 +25603,22792 +25604,22477 +25605,37547 +25606,28682 +25607,28682 +25608,22792 +25609,37547 +25610,37548 +25611,15008 +25612,25882 +25613,15008 +25614,25882 +25615,37548 +25616,21304 +25617,21304 +25618,26323 +25619,37549 +25620,37549 +25621,26323 +25622,39281 +25623,30704 +25624,39283 +25625,37550 +25626,30704 +25627,37551 +25628,37552 +25629,30660 +25630,37553 +25631,37553 +25632,30660 +25633,37552 +25634,3026 +25635,37555 +25636,37556 +25637,30697 +25638,29922 +25639,37557 +25640,44594 +25641,23723 +25642,37558 +25643,34954 +25644,34960 +25645,34956 +25646,7468 +25647,16028 +25648,37442 +25649,38743 +25650,38763 +25651,38765 +25652,38764 +25653,39186 +25654,38982 +25655,38983 +25656,38980 +25657,38981 +25658,37579 +25659,40164 +25660,38984 +25661,38988 +25662,38985 +25663,37589 +25664,37590 +25665,23723 +25666,9666 +25667,40160 +25668,41553 +25669,15684 +25670,41551 +25671,8664 +25672,37559 +25673,37607 +25674,37606 +25675,37605 +25676,37604 +25677,37181 +25678,31843 +25679,7450 +25680,37616 +25681,37619 +25682,37617 +25683,37618 +25684,37615 +25685,38992 +25686,38993 +25687,38991 +25688,37628 +25689,37633 +25690,37631 +25691,37634 +25692,44833 +25693,45372 +25694,45371 +25695,37648 +25696,37775 +25697,37647 +25698,37660 +25699,38746 +25700,28257 +25701,24102 +25702,25111 +25703,26378 +25704,37672 +25705,1102 +25706,1102 +25707,38748 +25708,38747 +25709,16474 +25710,23544 +25711,16632 +25712,30851 +25713,31616 +25714,9854 +25715,27422 +25716,30862 +25717,32732 +25718,26229 +25719,37681 +25720,1102 +25721,1102 +25722,1102 +25723,18096 +25724,37424 +25725,1102 +25726,1102 +25727,16028 +25728,6270 +25729,6270 +25730,6270 +25731,6270 +25732,6270 +25733,6270 +25734,6270 +25735,6270 +25736,6270 +25737,6270 +25738,6270 +25739,6270 +25740,6270 +25741,6270 +25742,6270 +25743,6270 +25744,9292 +25745,21149 +25746,7918 +25747,8927 +25748,9155 +25749,7695 +25750,7629 +25751,8927 +25752,7744 +25753,7744 +25754,8927 +25755,9155 +25756,7695 +25757,7629 +25758,37774 +25759,44606 +25760,34891 +25761,39296 +25762,41636 +25763,48502 +25764,40169 +25765,634 +25766,24154 +25767,37780 +25768,37780 +25769,37780 +25770,37442 +25771,37442 +25772,39359 +25773,43642 +25774,39357 +25775,4284 +25776,9853 +25777,29719 +25778,16892 +25779,41951 +25780,39685 +25781,27372 +25782,34031 +25783,39103 +25784,15420 +25785,9839 +25786,26551 +25787,6502 +25788,29000 +25789,27323 +25790,19020 +25791,17263 +25792,26261 +25793,37798 +25794,37799 +25795,14698 +25796,37800 +25797,37801 +25798,35442 +25799,36257 +25800,29797 +25801,35445 +25802,5287 +25803,33135 +25804,24022 +25805,34812 +25806,44596 +25807,18093 +25808,37803 +25809,31899 +25810,37805 +25811,24087 +25812,39446 +25813,15851 +25814,11947 +25815,16452 +25816,37828 +25817,4134 +25818,37829 +25819,39288 +25820,25826 +25821,17137 +25822,39286 +25823,30699 +25824,23629 +25825,28561 +25826,9842 +25827,35077 +25828,22805 +25829,23714 +25830,44876 +25831,41143 +25832,41142 +25833,41140 +25834,41138 +25835,20269 +25836,28194 +25837,3164 +25838,31934 +25839,1768 +25840,1288 +25841,37870 +25842,3233 +25843,39727 +25844,39729 +25845,39731 +25846,1102 +25847,1102 +25848,7798 +25849,7798 +25850,37879 +25851,37880 +25852,37888 +25853,37891 +25854,40622 +25855,41234 +25856,40056 +25857,40059 +25858,39952 +25859,7040 +25860,37078 +25861,20777 +25862,21369 +25863,6380 +25864,37911 +25865,30600 +25866,18010 +25867,39202 +25868,39204 +25869,1102 +25870,1102 +25871,37935 +25872,16752 +25873,20779 +25874,39740 +25875,20783 +25876,26358 +25877,26361 +25878,20773 +25879,37989 +25880,38750 +25881,38751 +25882,38752 +25883,38753 +25884,38754 +25885,20378 +25886,34282 +25887,15274 +25888,1102 +25889,4136 +25890,39205 +25891,4810 +25892,7987 +25893,39205 +25894,39205 +25895,39205 +25896,39203 +25897,39203 +25898,39203 +25899,39203 +25900,1246 +25901,39203 +25902,1102 +25903,1102 +25904,1102 +25905,6270 +25906,6270 +25907,6270 +25908,1102 +25909,6270 +25910,1102 +25911,29616 +25912,35301 +25913,31616 +25914,32395 +25915,32077 +25916,42669 +25917,28345 +25918,20601 +25919,38098 +25920,38099 +25921,28831 +25922,28364 +25923,27106 +25924,44456 +25925,44462 +25926,9834 +25927,38101 +25928,9857 +25929,26651 +25930,30889 +25931,19000 +25932,14278 +25933,26572 +25934,6808 +25935,20257 +25936,31287 +25937,31287 +25938,36578 +25939,39208 +25940,34955 +25941,43158 +25942,43146 +25943,39218 +25944,47478 +25945,43201 +25946,43173 +25947,43162 +25948,26437 +25949,18929 +25950,39226 +25951,22680 +25952,39228 +25953,43202 +25954,38560 +25955,45175 +25956,43141 +25957,43192 +25958,27420 +25959,39485 +25960,19806 +25961,26205 +25962,33534 +25963,35423 +25964,41428 +25965,44372 +25966,33732 +25967,27336 +25968,26965 +25969,27766 +25970,16881 +25971,25606 +25972,28331 +25973,20851 +25974,45177 +25975,45176 +25976,45178 +25977,45179 +25978,20619 +25979,21961 +25980,28069 +25981,28590 +25982,28421 +25983,27206 +25984,33139 +25985,42613 +25986,35968 +25987,26589 +25988,24646 +25989,9657 +25990,23728 +25991,28830 +25992,9657 +25993,9657 +25994,38129 +25995,38127 +25996,38130 +25997,41144 +25998,44009 +25999,41149 +26000,41145 +26001,41148 +26002,35178 +26003,38142 +26004,16551 +26005,38266 +26006,7533 +26007,14450 +26008,25867 +26009,12865 +26010,16821 +26011,16563 +26012,16554 +26013,28051 +26014,16927 +26015,28168 +26016,23050 +26017,15248 +26018,19029 +26019,38267 +26020,19030 +26021,7834 +26022,41379 +26023,19032 +26024,19033 +26025,16991 +26026,19034 +26027,14533 +26028,25864 +26029,16566 +26030,38268 +26031,26936 +26032,26932 +26033,4339 +26034,27175 +26035,28998 +26036,26927 +26037,26939 +26038,26930 +26039,6864 +26040,26928 +26041,26938 +26042,38158 +26043,38158 +26044,38160 +26045,28862 +26046,19764 +26047,37331 +26048,24593 +26049,12992 +26050,37192 +26051,5226 +26052,38269 +26053,1547 +26054,38265 +26055,32335 +26056,16704 +26057,16703 +26058,16700 +26059,16702 +26060,18422 +26061,16701 +26062,16706 +26063,9894 +26064,16704 +26065,16703 +26066,16700 +26067,16702 +26068,18422 +26069,16701 +26070,16706 +26071,9894 +26072,16704 +26073,16703 +26074,16700 +26075,16702 +26076,18422 +26077,16701 +26078,16706 +26079,9894 +26080,16704 +26081,16703 +26082,16700 +26083,16702 +26084,18422 +26085,16701 +26086,16706 +26087,9894 +26088,16704 +26089,16703 +26090,16700 +26091,16702 +26092,18422 +26093,16701 +26094,16706 +26095,9894 +26096,16704 +26097,16703 +26098,16700 +26099,16702 +26100,18422 +26101,16701 +26102,16706 +26103,9894 +26104,16704 +26105,16703 +26106,16700 +26107,16702 +26108,18422 +26109,16701 +26110,16706 +26111,9894 +26112,16704 +26113,16703 +26114,16700 +26115,16702 +26116,18422 +26117,16701 +26118,16706 +26119,9894 +26120,16704 +26121,16703 +26122,16700 +26123,16702 +26124,18422 +26125,16701 +26126,16706 +26127,9894 +26128,16704 +26129,16703 +26130,16700 +26131,16702 +26132,18422 +26133,16701 +26134,16706 +26135,9894 +26136,16704 +26137,16703 +26138,16700 +26139,16702 +26140,18422 +26141,16701 +26142,16706 +26143,9894 +26144,16704 +26145,16703 +26146,16700 +26147,16702 +26148,18422 +26149,16701 +26150,16706 +26151,9894 +26152,16704 +26153,16703 +26154,16700 +26155,16702 +26156,18422 +26157,16701 +26158,16706 +26159,9894 +26160,16704 +26161,16703 +26162,16700 +26163,16702 +26164,18422 +26165,16701 +26166,16706 +26167,9894 +26168,16704 +26169,16703 +26170,16700 +26171,16702 +26172,18422 +26173,16701 +26174,16706 +26175,9894 +26176,16704 +26177,16703 +26178,16700 +26179,16702 +26180,18422 +26181,16701 +26182,16706 +26183,9894 +26184,16704 +26185,16703 +26186,16700 +26187,16702 +26188,18422 +26189,16701 +26190,16706 +26191,9894 +26192,16704 +26193,16703 +26194,16700 +26195,16702 +26196,18422 +26197,16701 +26198,16706 +26199,9894 +26200,16704 +26201,16703 +26202,16700 +26203,16702 +26204,18422 +26205,16701 +26206,16706 +26207,9894 +26208,16704 +26209,16703 +26210,16700 +26211,16702 +26212,18422 +26213,16701 +26214,16706 +26215,9894 +26216,16704 +26217,16703 +26218,16700 +26219,16702 +26220,18422 +26221,16701 +26222,16706 +26223,9894 +26224,16704 +26225,16703 +26226,16700 +26227,16702 +26228,18422 +26229,16701 +26230,16706 +26231,9894 +26232,16704 +26233,16703 +26234,16700 +26235,16702 +26236,18422 +26237,16701 +26238,16706 +26239,9894 +26240,16704 +26241,16703 +26242,16700 +26243,16702 +26244,18422 +26245,16701 +26246,16706 +26247,9894 +26248,16704 +26249,16703 +26250,16700 +26251,16702 +26252,18422 +26253,16701 +26254,16706 +26255,9894 +26256,43783 +26257,43782 +26258,43778 +26259,43781 +26260,43777 +26261,43779 +26262,43784 +26263,43780 +26264,16704 +26265,16703 +26266,16700 +26267,16702 +26268,18422 +26269,16701 +26270,16706 +26271,9894 +26272,16704 +26273,16703 +26274,16700 +26275,16702 +26276,18422 +26277,16701 +26278,16706 +26279,9894 +26280,16704 +26281,16703 +26282,16700 +26283,16702 +26284,18422 +26285,16701 +26286,16706 +26287,9894 +26288,16704 +26289,16703 +26290,16700 +26291,16702 +26292,18422 +26293,16701 +26294,16706 +26295,9894 +26296,16704 +26297,16703 +26298,16700 +26299,16702 +26300,18422 +26301,16701 +26302,16706 +26303,9894 +26304,16704 +26305,16703 +26306,16700 +26307,16702 +26308,18422 +26309,16701 +26310,16706 +26311,9894 +26312,16704 +26313,16703 +26314,16700 +26315,16702 +26316,18422 +26317,16701 +26318,16706 +26319,9894 +26320,16704 +26321,16703 +26322,16700 +26323,16702 +26324,18422 +26325,16701 +26326,16706 +26327,9894 +26328,16704 +26329,16703 +26330,16700 +26331,16702 +26332,18422 +26333,16701 +26334,16706 +26335,9894 +26336,16704 +26337,16703 +26338,16700 +26339,16702 +26340,18422 +26341,16701 +26342,16706 +26343,9894 +26344,16704 +26345,16703 +26346,16700 +26347,16702 +26348,18422 +26349,16701 +26350,16706 +26351,9894 +26352,16704 +26353,16703 +26354,16700 +26355,16702 +26356,18422 +26357,16701 +26358,16706 +26359,9894 +26360,16704 +26361,16703 +26362,16700 +26363,16702 +26364,18422 +26365,16701 +26366,16706 +26367,9894 +26368,16704 +26369,16703 +26370,16700 +26371,16702 +26372,18422 +26373,16701 +26374,16706 +26375,9894 +26376,16704 +26377,16703 +26378,16700 +26379,16702 +26380,18422 +26381,16701 +26382,16706 +26383,9894 +26384,16704 +26385,16703 +26386,16700 +26387,16702 +26388,18422 +26389,16701 +26390,16706 +26391,9894 +26392,16704 +26393,16703 +26394,16700 +26395,16702 +26396,18422 +26397,16701 +26398,16706 +26399,9894 +26400,16704 +26401,16703 +26402,16700 +26403,16702 +26404,18422 +26405,16701 +26406,16706 +26407,9894 +26408,16704 +26409,16703 +26410,16700 +26411,16702 +26412,18422 +26413,16701 +26414,16706 +26415,9894 +26416,16704 +26417,16703 +26418,16700 +26419,16702 +26420,18422 +26421,16701 +26422,16706 +26423,9894 +26424,16704 +26425,16703 +26426,16700 +26427,16702 +26428,18422 +26429,16701 +26430,16706 +26431,9894 +26432,16704 +26433,16703 +26434,16700 +26435,16702 +26436,18422 +26437,16701 +26438,16706 +26439,9894 +26440,16704 +26441,16703 +26442,16700 +26443,16702 +26444,18422 +26445,16701 +26446,16706 +26447,9894 +26448,16704 +26449,16703 +26450,16700 +26451,16702 +26452,18422 +26453,16701 +26454,16706 +26455,9894 +26456,16704 +26457,16703 +26458,16700 +26459,16702 +26460,18422 +26461,16701 +26462,16706 +26463,9894 +26464,16704 +26465,16703 +26466,16700 +26467,16702 +26468,18422 +26469,16701 +26470,16706 +26471,9894 +26472,16704 +26473,16703 +26474,16700 +26475,16702 +26476,18422 +26477,16701 +26478,16706 +26479,9894 +26480,16704 +26481,16703 +26482,16700 +26483,16702 +26484,18422 +26485,16701 +26486,16706 +26487,9894 +26488,16704 +26489,16703 +26490,16700 +26491,16702 +26492,18422 +26493,16701 +26494,16706 +26495,9894 +26496,16704 +26497,16703 +26498,16700 +26499,16702 +26500,18422 +26501,16701 +26502,16706 +26503,9894 +26504,16707 +26505,16707 +26506,16707 +26507,16707 +26508,16707 +26509,16707 +26510,16707 +26511,16707 +26512,16707 +26513,16707 +26514,16707 +26515,16707 +26516,16707 +26517,16707 +26518,9834 +26519,9834 +26520,9834 +26521,9834 +26522,9834 +26523,9834 +26524,9834 +26525,9834 +26526,9834 +26527,9834 +26528,9834 +26529,9834 +26530,9834 +26531,9834 +26532,4841 +26533,4841 +26534,4841 +26535,4841 +26536,4841 +26537,4841 +26538,4841 +26539,4841 +26540,4841 +26541,4841 +26542,4841 +26543,4841 +26544,4841 +26545,4841 +26546,28449 +26547,28449 +26548,28449 +26549,28449 +26550,28449 +26551,28449 +26552,28449 +26553,28449 +26554,28449 +26555,28449 +26556,28449 +26557,28449 +26558,28449 +26559,28449 +26560,22923 +26561,22923 +26562,22923 +26563,22923 +26564,22923 +26565,22923 +26566,22923 +26567,22923 +26568,22923 +26569,22923 +26570,22923 +26571,22923 +26572,22923 +26573,22923 +26574,22118 +26575,22118 +26576,22118 +26577,22118 +26578,22118 +26579,22118 +26580,22118 +26581,22118 +26582,22118 +26583,22118 +26584,22118 +26585,43775 +26586,22118 +26587,22118 +26588,22118 +26589,22118 +26590,22118 +26591,22118 +26592,22118 +26593,22118 +26594,22118 +26595,22118 +26596,22118 +26597,22118 +26598,22118 +26599,22118 +26600,22118 +26601,22118 +26602,33299 +26603,33299 +26604,33299 +26605,33299 +26606,33299 +26607,33299 +26608,33299 +26609,33299 +26610,33299 +26611,33299 +26612,33299 +26613,33299 +26614,33299 +26615,33299 +26616,22118 +26617,22118 +26618,22118 +26619,22118 +26620,22118 +26621,22118 +26622,22118 +26623,22118 +26624,22118 +26625,22118 +26626,22118 +26627,43773 +26628,22118 +26629,22118 +26630,33299 +26631,33299 +26632,33299 +26633,33299 +26634,33299 +26635,33299 +26636,33299 +26637,33299 +26638,33299 +26639,33299 +26640,33299 +26641,33299 +26642,33299 +26643,33299 +26644,33299 +26645,33299 +26646,33299 +26647,33299 +26648,33299 +26649,33299 +26650,33299 +26651,33299 +26652,33299 +26653,33299 +26654,33299 +26655,33299 +26656,33299 +26657,33299 +26658,22118 +26659,22118 +26660,22118 +26661,22118 +26662,22118 +26663,22118 +26664,22118 +26665,22118 +26666,22118 +26667,22118 +26668,22118 +26669,22118 +26670,22118 +26671,22118 +26672,22118 +26673,22118 +26674,22118 +26675,22118 +26676,22118 +26677,22118 +26678,22118 +26679,22118 +26680,22118 +26681,22118 +26682,22118 +26683,22118 +26684,22118 +26685,22118 +26686,33299 +26687,33299 +26688,33299 +26689,33299 +26690,33299 +26691,33299 +26692,33299 +26693,33299 +26694,33299 +26695,33299 +26696,33299 +26697,33299 +26698,33299 +26699,33299 +26700,33299 +26701,33299 +26702,33299 +26703,33299 +26704,33299 +26705,33299 +26706,33299 +26707,33299 +26708,33299 +26709,33299 +26710,33299 +26711,33299 +26712,33299 +26713,33299 +26714,2786 +26715,2786 +26716,2786 +26717,2786 +26718,2786 +26719,2786 +26720,2786 +26721,2786 +26722,2786 +26723,2786 +26724,2786 +26725,2786 +26726,2786 +26727,2786 +26728,10671 +26729,10671 +26730,10671 +26731,10671 +26732,10671 +26733,10671 +26734,10671 +26735,10671 +26736,10671 +26737,10671 +26738,10671 +26739,10671 +26740,10671 +26741,10671 +26742,10671 +26743,10671 +26744,10671 +26745,10671 +26746,10671 +26747,10671 +26748,10671 +26749,10671 +26750,10671 +26751,10671 +26752,10671 +26753,10671 +26754,10671 +26755,10671 +26756,10671 +26757,10671 +26758,10671 +26759,10671 +26760,10671 +26761,10671 +26762,10671 +26763,10671 +26764,10671 +26765,10671 +26766,10671 +26767,10671 +26768,10671 +26769,10671 +26770,22118 +26771,22118 +26772,22118 +26773,22118 +26774,22118 +26775,22118 +26776,22118 +26777,22118 +26778,22118 +26779,22118 +26780,22118 +26781,22118 +26782,22118 +26783,22118 +26784,22118 +26785,22118 +26786,22118 +26787,22118 +26788,22118 +26789,22118 +26790,22118 +26791,22118 +26792,22118 +26793,22118 +26794,22118 +26795,22118 +26796,22118 +26797,22118 +26798,33299 +26799,33299 +26800,33299 +26801,33299 +26802,33299 +26803,33299 +26804,33299 +26805,33299 +26806,33299 +26807,33299 +26808,33299 +26809,33299 +26810,33299 +26811,33299 +26812,16704 +26813,16703 +26814,16700 +26815,16702 +26816,18422 +26817,16701 +26818,16706 +26819,9894 +26820,16704 +26821,16703 +26822,16700 +26823,16702 +26824,18422 +26825,16701 +26826,16706 +26827,9894 +26828,16704 +26829,16703 +26830,16700 +26831,16702 +26832,18422 +26833,16701 +26834,16706 +26835,9894 +26836,16704 +26837,16703 +26838,16700 +26839,16702 +26840,18422 +26841,16701 +26842,16706 +26843,9894 +26844,16704 +26845,16703 +26846,16700 +26847,16702 +26848,18422 +26849,16701 +26850,16706 +26851,9894 +26852,16704 +26853,16703 +26854,16700 +26855,16702 +26856,18422 +26857,16701 +26858,16706 +26859,9894 +26860,16704 +26861,16703 +26862,16700 +26863,16702 +26864,18422 +26865,16701 +26866,16706 +26867,9894 +26868,16704 +26869,16703 +26870,16700 +26871,16702 +26872,18422 +26873,16701 +26874,16706 +26875,9894 +26876,16704 +26877,16703 +26878,16700 +26879,16702 +26880,18422 +26881,16701 +26882,16706 +26883,9894 +26884,16704 +26885,16703 +26886,16700 +26887,16702 +26888,18422 +26889,16701 +26890,16706 +26891,9894 +26892,16704 +26893,16703 +26894,16700 +26895,16702 +26896,18422 +26897,16701 +26898,16706 +26899,9894 +26900,16704 +26901,16703 +26902,16700 +26903,16702 +26904,18422 +26905,16701 +26906,16706 +26907,9894 +26908,16704 +26909,16703 +26910,16700 +26911,16702 +26912,18422 +26913,16701 +26914,16706 +26915,9894 +26916,16704 +26917,16703 +26918,16700 +26919,16702 +26920,18422 +26921,16701 +26922,16706 +26923,9894 +26924,16704 +26925,16703 +26926,16700 +26927,16702 +26928,18422 +26929,16701 +26930,16706 +26931,9894 +26932,16704 +26933,16703 +26934,16700 +26935,16702 +26936,18422 +26937,16701 +26938,16706 +26939,9894 +26940,16704 +26941,16703 +26942,16700 +26943,16702 +26944,18422 +26945,16701 +26946,16706 +26947,9894 +26948,16704 +26949,16703 +26950,16700 +26951,16702 +26952,18422 +26953,16701 +26954,16706 +26955,9894 +26956,16704 +26957,16703 +26958,16700 +26959,16702 +26960,18422 +26961,16701 +26962,16706 +26963,9894 +26964,16704 +26965,16703 +26966,16700 +26967,16702 +26968,18422 +26969,16701 +26970,16706 +26971,9894 +26972,16704 +26973,16703 +26974,16700 +26975,16702 +26976,18422 +26977,16701 +26978,16706 +26979,9894 +26980,16704 +26981,16703 +26982,16700 +26983,16702 +26984,18422 +26985,16701 +26986,16706 +26987,9894 +26988,16704 +26989,16703 +26990,16700 +26991,16702 +26992,18422 +26993,16701 +26994,16706 +26995,9894 +26996,16704 +26997,16703 +26998,16700 +26999,16702 +27000,18422 +27001,16701 +27002,16706 +27003,9894 +27004,16704 +27005,16703 +27006,16700 +27007,16702 +27008,18422 +27009,16701 +27010,16706 +27011,9894 +27012,16704 +27013,16703 +27014,16700 +27015,16702 +27016,18422 +27017,16701 +27018,16706 +27019,9894 +27020,16704 +27021,16703 +27022,16700 +27023,16702 +27024,18422 +27025,16701 +27026,16706 +27027,9894 +27028,16704 +27029,16703 +27030,16700 +27031,16702 +27032,18422 +27033,16701 +27034,16706 +27035,9894 +27036,16704 +27037,16703 +27038,16700 +27039,16702 +27040,18422 +27041,16701 +27042,16706 +27043,9894 +27044,16704 +27045,16703 +27046,16700 +27047,16702 +27048,18422 +27049,16701 +27050,16706 +27051,9894 +27052,16704 +27053,16703 +27054,16700 +27055,16702 +27056,18422 +27057,16701 +27058,16706 +27059,9894 +27060,16704 +27061,16703 +27062,16700 +27063,16702 +27064,18422 +27065,16701 +27066,16706 +27067,9894 +27068,16704 +27069,16703 +27070,16700 +27071,16702 +27072,18422 +27073,16701 +27074,16706 +27075,9894 +27076,16704 +27077,16703 +27078,16700 +27079,16702 +27080,18422 +27081,16701 +27082,16706 +27083,9894 +27084,16704 +27085,16703 +27086,16700 +27087,16702 +27088,18422 +27089,16701 +27090,16706 +27091,9894 +27092,16704 +27093,16703 +27094,16700 +27095,16702 +27096,18422 +27097,16701 +27098,16706 +27099,9894 +27100,16704 +27101,16703 +27102,16700 +27103,16702 +27104,18422 +27105,16701 +27106,16706 +27107,9894 +27108,16704 +27109,16703 +27110,16700 +27111,16702 +27112,18422 +27113,16701 +27114,16706 +27115,9894 +27116,16704 +27117,16703 +27118,16700 +27119,16702 +27120,18422 +27121,16701 +27122,16706 +27123,9894 +27124,16704 +27125,16703 +27126,16700 +27127,16702 +27128,18422 +27129,16701 +27130,16706 +27131,9894 +27132,16704 +27133,16703 +27134,16700 +27135,16702 +27136,18422 +27137,16701 +27138,16706 +27139,9894 +27140,16704 +27141,16703 +27142,16700 +27143,16702 +27144,18422 +27145,16701 +27146,16706 +27147,9894 +27148,16707 +27149,16707 +27150,16707 +27151,16707 +27152,16707 +27153,16707 +27154,16707 +27155,16707 +27156,16707 +27157,16707 +27158,16707 +27159,26202 +27160,16707 +27161,16707 +27162,9834 +27163,9834 +27164,9834 +27165,9834 +27166,9834 +27167,9834 +27168,9834 +27169,9834 +27170,9834 +27171,9834 +27172,9834 +27173,9834 +27174,9834 +27175,9834 +27176,4841 +27177,4841 +27178,4841 +27179,4841 +27180,4841 +27181,4841 +27182,4841 +27183,4841 +27184,4841 +27185,4841 +27186,4841 +27187,4841 +27188,4841 +27189,4841 +27190,16707 +27191,16707 +27192,16707 +27193,16707 +27194,16707 +27195,16707 +27196,16707 +27197,16707 +27198,16707 +27199,16707 +27200,16707 +27201,16707 +27202,16707 +27203,16707 +27204,9834 +27205,9834 +27206,9834 +27207,9834 +27208,9834 +27209,9834 +27210,9834 +27211,9834 +27212,9834 +27213,9834 +27214,9834 +27215,9834 +27216,9834 +27217,9834 +27218,4841 +27219,4841 +27220,4841 +27221,4841 +27222,4841 +27223,4841 +27224,4841 +27225,4841 +27226,4841 +27227,4841 +27228,4841 +27229,4841 +27230,4841 +27231,4841 +27232,16707 +27233,16707 +27234,16707 +27235,16707 +27236,16707 +27237,16707 +27238,16707 +27239,16707 +27240,16707 +27241,16707 +27242,16707 +27243,16707 +27244,16707 +27245,16707 +27246,9834 +27247,9834 +27248,9834 +27249,9834 +27250,9834 +27251,9834 +27252,9834 +27253,9834 +27254,9834 +27255,9834 +27256,9834 +27257,9834 +27258,9834 +27259,9834 +27260,4841 +27261,4841 +27262,4841 +27263,4841 +27264,4841 +27265,4841 +27266,4841 +27267,4841 +27268,4841 +27269,4841 +27270,4841 +27271,4841 +27272,4841 +27273,4841 +27274,16707 +27275,16707 +27276,16707 +27277,16707 +27278,16707 +27279,16707 +27280,16707 +27281,16707 +27282,16707 +27283,16707 +27284,16707 +27285,16707 +27286,16707 +27287,16707 +27288,9834 +27289,9834 +27290,9834 +27291,9834 +27292,9834 +27293,9834 +27294,9834 +27295,9834 +27296,9834 +27297,9834 +27298,9834 +27299,9834 +27300,9834 +27301,9834 +27302,4841 +27303,4841 +27304,4841 +27305,4841 +27306,4841 +27307,4841 +27308,4841 +27309,4841 +27310,4841 +27311,4841 +27312,4841 +27313,4841 +27314,4841 +27315,4841 +27316,9632 +27317,2351 +27318,9632 +27319,9632 +27320,9632 +27321,9632 +27322,9632 +27323,9632 +27324,9632 +27325,9632 +27326,9632 +27327,9632 +27328,9632 +27329,9632 +27330,9632 +27331,9632 +27332,9632 +27333,9632 +27334,9632 +27335,9632 +27336,9632 +27337,9632 +27338,9632 +27339,9632 +27340,9632 +27341,9632 +27342,9632 +27343,9632 +27344,9632 +27345,9632 +27346,9632 +27347,9632 +27348,9632 +27349,9632 +27350,9632 +27351,9632 +27352,9632 +27353,9632 +27354,9632 +27355,9632 +27356,9632 +27357,9731 +27358,9632 +27359,9632 +27360,9632 +27361,9632 +27362,9632 +27363,9632 +27364,9632 +27365,9632 +27366,9632 +27367,9632 +27368,9632 +27369,9632 +27370,9632 +27371,9632 +27372,9632 +27373,9632 +27374,9632 +27375,9632 +27376,9632 +27377,9632 +27378,9632 +27379,9632 +27380,9632 +27381,9632 +27382,9632 +27383,9632 +27384,9632 +27385,9632 +27386,9632 +27387,9632 +27388,24629 +27389,20074 +27390,38270 +27391,9632 +27392,9632 +27393,9632 +27394,9632 +27395,9632 +27396,9632 +27397,9632 +27398,28503 +27399,38258 +27400,18523 +27401,38260 +27402,22929 +27403,39743 +27404,28218 +27405,38181 +27406,38182 +27407,38183 +27408,44873 +27409,43180 +27410,43184 +27411,43185 +27412,43210 +27413,31800 +27414,44407 +27415,45101 +27416,39365 +27417,43181 +27418,43193 +27419,1013 +27420,43147 +27421,992 +27422,38896 +27423,38794 +27424,38797 +27425,38899 +27426,43204 +27427,43205 +27428,43164 +27429,38893 +27430,43206 +27431,43207 +27432,35431 +27433,43186 +27434,43209 +27435,38901 +27436,28830 +27437,24713 +27438,38897 +27439,24629 +27440,38809 +27441,38898 +27442,39145 +27443,7842 +27444,38902 +27445,38190 +27446,24053 +27447,42865 +27448,26431 +27449,41645 +27450,43008 +27451,43084 +27452,42996 +27453,31664 +27454,42910 +27455,44408 +27456,42953 +27457,43639 +27458,42927 +27459,42832 +27460,40034 +27461,43015 +27462,42896 +27463,41881 +27464,31899 +27465,43073 +27466,49090 +27467,43017 +27468,42452 +27469,41144 +27470,41145 +27471,44009 +27472,41148 +27473,41149 +27474,42581 +27475,40830 +27476,41769 +27477,41655 +27478,43045 +27479,35178 +27480,38195 +27481,11449 +27482,7913 +27483,42965 +27484,5563 +27485,15163 +27486,38197 +27487,42839 +27488,44409 +27489,42851 +27490,39964 +27491,39128 +27492,42966 +27493,42903 +27494,42885 +27495,43085 +27496,38198 +27497,43035 +27498,3331 +27499,2616 +27500,1093 +27501,2616 +27502,1093 +27503,3331 +27504,3331 +27505,42867 +27506,42997 +27507,41423 +27508,42371 +27509,42410 +27510,42568 +27511,2618 +27512,41418 +27513,7913 +27514,42945 +27515,50502 +27516,50501 +27517,42975 +27518,39645 +27519,43086 +27520,42829 +27521,43009 +27522,42908 +27523,39126 +27524,44954 +27525,43087 +27526,40908 +27527,42831 +27528,43052 +27529,40039 +27530,16704 +27531,43064 +27532,1246 +27533,41452 +27534,41654 +27535,42355 +27536,42576 +27537,42446 +27538,44612 +27539,42853 +27540,43088 +27541,42887 +27542,42999 +27543,42825 +27544,39639 +27545,43018 +27546,40035 +27547,42987 +27548,42862 +27549,42931 +27550,43089 +27551,40036 +27552,28249 +27553,18114 +27554,9632 +27555,9632 +27556,9632 +27557,9632 +27558,9632 +27559,9632 +27560,9632 +27561,9632 +27562,9632 +27563,9632 +27564,9632 +27565,9632 +27566,9632 +27567,9632 +27568,9632 +27569,9632 +27570,9632 +27571,9632 +27572,9632 +27573,9632 +27574,9632 +27575,9632 +27576,9632 +27577,9632 +27578,9632 +27579,9632 +27580,9632 +27581,9632 +27582,9632 +27583,9632 +27584,9632 +27585,9632 +27586,9632 +27587,9632 +27588,9632 +27589,9632 +27590,9632 +27591,9632 +27592,9632 +27593,9632 +27594,9632 +27595,9632 +27596,9632 +27597,9632 +27598,9632 +27599,9632 +27600,9632 +27601,9632 +27602,9632 +27603,9632 +27604,9632 +27605,9632 +27606,9632 +27607,9632 +27608,9632 +27609,9632 +27610,9632 +27611,9632 +27612,9632 +27613,9632 +27614,9632 +27615,9632 +27616,9632 +27617,9632 +27618,9632 +27619,9632 +27620,9632 +27621,9632 +27622,9632 +27623,9632 +27624,9632 +27625,9632 +27626,9632 +27627,9632 +27628,9632 +27629,9632 +27630,9632 +27631,38370 +27632,38249 +27633,38250 +27634,34961 +27635,22194 +27636,39721 +27637,38261 +27638,34244 +27639,38286 +27640,38263 +27641,38264 +27642,34241 +27643,34241 +27644,38286 +27645,34244 +27646,34241 +27647,38278 +27648,38280 +27649,38276 +27650,33041 +27651,39718 +27652,38279 +27653,38285 +27654,38285 +27655,35831 +27656,39717 +27657,39719 +27658,25481 +27659,25468 +27660,39720 +27661,39114 +27662,39116 +27663,39115 +27664,39118 +27665,39119 +27666,38273 +27667,38272 +27668,25466 +27669,25472 +27670,9657 +27671,39723 +27672,42833 +27673,43090 +27674,25475 +27675,18707 +27676,38282 +27677,39726 +27678,39725 +27679,18707 +27680,21202 +27681,39724 +27682,25466 +27683,16209 +27684,1301 +27685,811 +27686,811 +27687,1102 +27688,1301 +27689,1301 +27690,1301 +27691,1301 +27692,1301 +27693,1301 +27694,1301 +27695,1301 +27696,1301 +27697,1301 +27698,1301 +27699,1301 +27700,1301 +27701,38288 +27702,41133 +27703,41134 +27704,41135 +27705,41136 +27706,41137 +27707,41154 +27708,41794 +27709,41155 +27710,42171 +27711,41157 +27712,31620 +27713,43044 +27714,43091 +27715,42217 +27716,19730 +27717,687 +27718,24506 +27719,17137 +27720,19141 +27721,34708 +27722,27791 +27723,29954 +27724,27569 +27725,44422 +27726,27057 +27727,18367 +27728,13051 +27729,4262 +27730,28303 +27731,23118 +27732,24928 +27733,31905 +27734,963 +27735,6497 +27736,1134 +27737,42454 +27738,42372 +27739,42351 +27740,28733 +27741,41771 +27742,43026 +27743,42911 +27744,39640 +27745,42886 +27746,43025 +27747,42408 +27748,42859 +27749,20293 +27750,28629 +27751,25630 +27752,20072 +27753,40214 +27754,26572 +27755,42868 +27756,16126 +27757,40358 +27758,39210 +27759,44410 +27760,43065 +27761,33808 +27762,33534 +27763,44411 +27764,42985 +27765,42948 +27766,40038 +27767,41772 +27768,42977 +27769,41773 +27770,43092 +27771,43034 +27772,42409 +27773,43010 +27774,7122 +27775,42577 +27776,42414 +27777,10449 +27778,42447 +27779,32087 +27780,24646 +27781,45147 +27782,7122 +27783,42967 +27784,39121 +27785,35917 +27786,35842 +27787,42946 +27788,42841 +27789,43093 +27790,42860 +27791,40836 +27792,40040 +27793,42912 +27794,41431 +27795,42897 +27796,42443 +27797,43066 +27798,42869 +27799,42898 +27800,42955 +27801,42583 +27802,42573 +27803,42360 +27804,43094 +27805,43407 +27806,42932 +27807,38368 +27808,38369 +27809,35842 +27810,35843 +27811,7122 +27812,10449 +27813,42835 +27814,41884 +27815,40043 +27816,43027 +27817,39230 +27818,42969 +27819,17494 +27820,35917 +27821,42902 +27822,40044 +27823,42891 +27824,42978 +27825,43020 +27826,42933 +27827,42956 +27828,40045 +27829,41776 +27830,31655 +27831,42949 +27832,31655 +27833,31655 +27834,31655 +27835,42936 +27836,38387 +27837,43067 +27838,42369 +27839,42354 +27840,41777 +27841,38389 +27842,40359 +27843,43078 +27844,42872 +27845,42915 +27846,42172 +27847,42836 +27848,43024 +27849,782 +27850,38411 +27851,38412 +27852,38413 +27853,17494 +27854,20803 +27855,40696 +27856,40697 +27857,40695 +27858,40834 +27859,40850 +27860,40852 +27861,38433 +27862,37525 +27863,35718 +27864,35718 +27865,43012 +27866,44412 +27867,42950 +27868,42561 +27869,31664 +27870,43037 +27871,40047 +27872,39965 +27873,42453 +27874,42582 +27875,42578 +27876,41778 +27877,40371 +27878,43096 +27879,41133 +27880,41134 +27881,41135 +27882,41136 +27883,41137 +27884,42870 +27885,41671 +27886,40048 +27887,43238 +27888,42889 +27889,42985 +27890,43449 +27891,40049 +27892,29827 +27893,42871 +27894,18095 +27895,35313 +27896,40050 +27897,42863 +27898,41432 +27899,41787 +27900,40051 +27901,41780 +27902,42982 +27903,40367 +27904,39125 +27905,41781 +27906,42845 +27907,43076 +27908,42413 +27909,42572 +27910,42285 +27911,43021 +27912,42944 +27913,43097 +27914,42972 +27915,42894 +27916,38370 +27917,34961 +27918,42847 +27919,43003 +27920,38571 +27921,38572 +27922,31603 +27923,24503 +27924,31603 +27925,24022 +27926,38556 +27927,38556 +27928,38679 +27929,38679 +27930,28827 +27931,28827 +27932,6360 +27933,959 +27934,6360 +27935,959 +27936,43055 +27937,39833 +27938,44904 +27939,44558 +27940,32008 +27941,4841 +27942,44558 +27943,37388 +27944,31889 +27945,9860 +27946,43099 +27947,25246 +27948,42448 +27949,34961 +27950,16704 +27951,16703 +27952,16700 +27953,16702 +27954,18422 +27955,16701 +27956,16706 +27957,9894 +27958,4841 +27959,9834 +27960,16707 +27961,33299 +27962,33299 +27963,16704 +27964,16703 +27965,16700 +27966,16702 +27967,18422 +27968,16701 +27969,16706 +27970,9894 +27971,4841 +27972,9834 +27973,16707 +27974,33299 +27975,33299 +27976,6510 +27977,42363 +27978,9858 +27979,31603 +27980,41871 +27981,31351 +27982,6484 +27983,34961 +27984,25246 +27985,43042 +27986,39958 +27987,41791 +27988,43100 +27989,34955 +27990,34955 +27991,8042 +27992,32073 +27993,44874 +27994,42900 +27995,43019 +27996,39128 +27997,16704 +27998,16703 +27999,16700 +28000,16702 +28001,18422 +28002,16701 +28003,16706 +28004,9894 +28005,4841 +28006,9834 +28007,16707 +28008,33299 +28009,33299 +28010,16704 +28011,16703 +28012,16700 +28013,16702 +28014,18422 +28015,16701 +28016,16706 +28017,9894 +28018,4841 +28019,9834 +28020,16707 +28021,33299 +28022,33299 +28023,38576 +28024,30953 +28025,17785 +28026,44599 +28027,39689 +28028,28247 +28029,19915 +28030,39271 +28031,39277 +28032,39279 +28033,40838 +28034,43101 +28035,25484 +28036,6399 +28037,38642 +28038,38659 +28039,25483 +28040,38671 +28041,38671 +28042,38671 +28043,36755 +28044,38674 +28045,23031 +28046,25271 +28047,22071 +28048,25483 +28049,38673 +28050,8660 +28051,27739 +28052,27866 +28053,40199 +28054,26871 +28055,38359 +28056,40200 +28057,25742 +28058,959 +28059,9292 +28060,40525 +28061,40524 +28062,40715 +28063,28747 +28064,39635 +28065,34961 +28066,34957 +28067,36698 +28068,1246 +28069,38711 +28070,30862 +28071,1246 +28072,1246 +28073,1246 +28074,19912 +28075,33841 +28076,9632 +28077,9632 +28078,9632 +28079,9632 +28080,9632 +28081,9632 +28082,9632 +28083,9632 +28084,9632 +28085,9632 +28086,9632 +28087,36376 +28088,9632 +28089,9632 +28090,9632 +28091,9632 +28092,9632 +28093,9632 +28094,9632 +28095,9632 +28096,9632 +28097,9632 +28098,9632 +28099,6270 +28100,24212 +28101,23731 +28102,34431 +28103,38722 +28104,38720 +28105,30953 +28106,41644 +28107,25271 +28108,15853 +28109,15853 +28110,38659 +28111,38766 +28112,21975 +28113,1102 +28114,1102 +28115,34112 +28116,36687 +28117,4777 +28118,6006 +28119,18707 +28120,20978 +28121,40037 +28122,7221 +28123,7339 +28124,42947 +28125,38930 +28126,41443 +28127,47172 +28128,41445 +28129,41758 +28130,41446 +28131,38994 +28132,39014 +28133,43826 +28134,43423 +28135,8928 +28136,41443 +28137,47172 +28138,41445 +28139,41758 +28140,41446 +28141,16554 +28142,17113 +28143,6864 +28144,20476 +28145,17051 +28146,16918 +28147,28045 +28148,22685 +28149,7560 +28150,15248 +28151,28159 +28152,20550 +28153,18659 +28154,14458 +28155,4511 +28156,28056 +28157,16868 +28158,28012 +28159,28046 +28160,11563 +28161,4339 +28162,6864 +28163,6905 +28164,20087 +28165,39107 +28166,20900 +28167,28824 +28168,39210 +28169,41972 +28170,24793 +28171,31620 +28172,31639 +28173,39666 +28174,4607 +28175,32167 +28176,38702 +28177,32755 +28178,11571 +28179,31140 +28180,32900 +28181,42213 +28182,33901 +28183,34690 +28184,41782 +28185,42980 +28186,43011 +28187,43102 +28188,37290 +28189,41417 +28190,43103 +28191,43075 +28192,43057 +28193,43759 +28194,42939 +28195,39146 +28196,39147 +28197,39148 +28198,39149 +28199,39150 +28200,39151 +28201,39154 +28202,42456 +28203,42352 +28204,42411 +28205,42359 +28206,44609 +28207,42846 +28208,39159 +28209,1399 +28210,42212 +28211,43104 +28212,43028 +28213,42566 +28214,42971 +28215,43013 +28216,41783 +28217,43105 +28218,43002 +28219,42892 +28220,42973 +28221,42864 +28222,41784 +28223,43108 +28224,47897 +28225,43040 +28226,42560 +28227,39124 +28228,42579 +28229,42367 +28230,42574 +28231,42567 +28232,42449 +28233,31889 +28234,37840 +28235,37840 +28236,37840 +28237,37840 +28238,37840 +28239,37841 +28240,37841 +28241,37841 +28242,37841 +28243,37841 +28244,39162 +28245,39162 +28246,39129 +28247,39129 +28248,43109 +28249,43110 +28250,43004 +28251,42961 +28252,43029 +28253,41554 +28254,35437 +28255,42974 +28256,26431 +28257,41785 +28258,43111 +28259,39121 +28260,42564 +28261,17785 +28262,42838 +28263,41786 +28264,43069 +28265,41448 +28266,42919 +28267,40855 +28268,42963 +28269,41396 +28270,7798 +28271,7798 +28272,7798 +28273,7798 +28274,7798 +28275,48247 +28276,7798 +28277,7798 +28278,42370 +28279,7798 +28280,7798 +28281,7798 +28282,7798 +28283,16265 +28284,18079 +28285,42353 +28286,41433 +28287,2515 +28288,41449 +28289,39189 +28290,35848 +28291,15274 +28292,39227 +28293,42069 +28294,42385 +28295,42379 +28296,39650 +28297,41366 +28298,41560 +28299,41558 +28300,41562 +28301,35430 +28302,39278 +28303,28682 +28304,43005 +28305,39278 +28306,43014 +28307,42379 +28308,41559 +28309,41559 +28310,42380 +28311,40856 +28312,42380 +28313,42759 +28314,42760 +28315,42173 +28316,43239 +28317,42984 +28318,43043 +28319,38679 +28320,46606 +28321,33808 +28322,43112 +28323,24022 +28324,42849 +28325,40355 +28326,39330 +28327,39121 +28328,43113 +28329,32103 +28330,32100 +28331,42882 +28332,40626 +28333,40628 +28334,40623 +28335,40624 +28336,1103 +28337,42873 +28338,42904 +28339,43071 +28340,42964 +28341,41788 +28342,30868 +28343,31899 +28344,42895 +28345,43917 +28346,39505 +28347,43114 +28348,44610 +28349,42571 +28350,42362 +28351,39343 +28352,39344 +28353,31176 +28354,39351 +28355,34953 +28356,34960 +28357,25246 +28358,42376 +28359,9155 +28360,7122 +28361,7122 +28362,4777 +28363,7221 +28364,35916 +28365,39393 +28366,33529 +28367,41789 +28368,39432 +28369,39944 +28370,40413 +28371,43115 +28372,43117 +28373,23119 +28374,42983 +28375,42848 +28376,1102 +28377,27088 +28378,27088 +28379,27088 +28380,27088 +28381,30369 +28382,27273 +28383,39546 +28384,43059 +28385,39544 +28386,44799 +28387,21962 +28388,4777 +28389,18707 +28390,42837 +28391,42918 +28392,42174 +28393,39847 +28394,35423 +28395,8042 +28396,42952 +28397,41424 +28398,42962 +28399,40853 +28400,41790 +28401,43054 +28402,41164 +28403,43039 +28404,41475 +28405,41255 +28406,43082 +28407,43120 +28408,20772 +28409,40090 +28410,47914 +28411,41265 +28412,43118 +28413,42764 +28414,42722 +28415,44903 +28416,43246 +28417,7987 +28418,43122 +28419,35437 +28420,39548 +28421,39549 +28422,41480 +28423,41476 +28424,30801 +28425,41118 +28426,41390 +28427,41389 +28428,39570 +28429,39572 +28430,39571 +28431,41628 +28432,41629 +28433,41630 +28434,39576 +28435,39577 +28436,39578 +28437,39579 +28438,45769 +28439,39581 +28440,39582 +28441,39583 +28442,39584 +28443,41474 +28444,41478 +28445,41253 +28446,41474 +28447,41482 +28448,41253 +28449,40631 +28450,40630 +28451,41250 +28452,34364 +28453,40492 +28454,40494 +28455,39227 +28456,40438 +28457,23475 +28458,20977 +28459,20977 +28460,20977 +28461,20977 +28462,20977 +28463,6673 +28464,6673 +28465,6673 +28466,35016 +28467,35016 +28468,35016 +28469,35016 +28470,35016 +28471,8093 +28472,3331 +28473,2616 +28474,39631 +28475,40586 +28476,41558 +28477,40489 +28478,41644 +28479,38758 +28480,35044 +28481,39653 +28482,39654 +28483,39661 +28484,39660 +28485,39659 +28486,21203 +28487,39673 +28488,39678 +28489,39679 +28490,39456 +28491,39368 +28492,39694 +28493,39706 +28494,39709 +28495,39700 +28496,39701 +28497,39705 +28498,39708 +28499,2588 +28500,39707 +28501,39716 +28502,40496 +28503,40495 +28504,41421 +28505,45870 +28506,43427 +28507,43428 +28508,43429 +28509,34034 +28510,24646 +28511,40490 +28512,40497 +28513,33970 +28514,42248 +28515,40491 +28516,34274 +28517,42327 +28518,45860 +28519,45878 +28520,45877 +28521,43441 +28522,45798 +28523,43430 +28524,37063 +28525,41657 +28526,20977 +28527,6371 +28528,43431 +28529,34337 +28530,34303 +28531,39991 +28532,39992 +28533,41459 +28534,39995 +28535,39996 +28536,39997 +28537,39998 +28538,39999 +28539,44586 +28540,40001 +28541,40002 +28542,40003 +28543,40004 +28544,40005 +28545,43442 +28546,39824 +28547,31199 +28548,39827 +28549,7636 +28550,35178 +28551,8931 +28552,1317 +28553,39129 +28554,39848 +28555,39129 +28556,39205 +28557,39205 +28558,39857 +28559,27338 +28560,27338 +28561,37894 +28562,24188 +28563,39859 +28564,41533 +28565,40507 +28566,40515 +28567,40513 +28568,43434 +28569,42332 +28570,34239 +28571,2571 +28572,42286 +28573,39957 +28574,37894 +28575,37894 +28576,32133 +28577,32133 +28578,43448 +28579,39888 +28580,2616 +28581,41430 +28582,38976 +28583,31117 +28584,30595 +28585,39899 +28586,45369 +28587,39421 +28588,43491 +28589,45856 +28590,43456 +28591,43451 +28592,34959 +28593,45858 +28594,43453 +28595,35930 +28596,1102 +28597,45864 +28598,9129 +28599,45881 +28600,43462 +28601,43463 +28602,43469 +28603,42562 +28604,40899 +28605,41259 +28606,40865 +28607,39940 +28608,45861 +28609,31899 +28610,45876 +28611,42406 +28612,45873 +28613,41196 +28614,41198 +28615,41200 +28616,41201 +28617,41202 +28618,43573 +28619,41796 +28620,41210 +28621,45867 +28622,41211 +28623,41212 +28624,41203 +28625,42194 +28626,41205 +28627,41206 +28628,41207 +28629,41477 +28630,41481 +28631,45882 +28632,1102 +28633,40370 +28634,35133 +28635,39946 +28636,30891 +28637,4776 +28638,41259 +28639,41477 +28640,41481 +28641,41165 +28642,41167 +28643,41257 +28644,41165 +28645,41167 +28646,41262 +28647,43476 +28648,23175 +28649,33728 +28650,39287 +28651,24188 +28652,40509 +28653,41396 +28654,40508 +28655,40512 +28656,40514 +28657,44823 +28658,40369 +28659,45739 +28660,24160 +28661,31655 +28662,45868 +28663,40500 +28664,7630 +28665,1504 +28666,45865 +28667,39962 +28668,22193 +28669,42487 +28670,41484 +28671,43842 +28672,43488 +28673,43916 +28674,39210 +28675,26001 +28676,3320 +28677,1246 +28678,39974 +28679,38292 +28680,30321 +28681,38294 +28682,38295 +28683,38296 +28684,41213 +28685,41797 +28686,41215 +28687,41216 +28688,41217 +28689,32103 +28690,32100 +28691,32133 +28692,32127 +28693,32128 +28694,32103 +28695,32100 +28696,32133 +28697,32127 +28698,32128 +28699,41183 +28700,26753 +28701,41184 +28702,41185 +28703,41186 +28704,41218 +28705,42195 +28706,41220 +28707,41221 +28708,41222 +28709,38292 +28710,30321 +28711,38294 +28712,38295 +28713,38296 +28714,41187 +28715,42196 +28716,41189 +28717,41190 +28718,41191 +28719,43573 +28720,41796 +28721,41210 +28722,41211 +28723,41212 +28724,38295 +28725,39984 +28726,45872 +28727,35400 +28728,41454 +28729,41414 +28730,28733 +28731,39212 +28732,44608 +28733,40516 +28734,41453 +28735,45875 +28736,34109 +28737,29702 +28738,31347 +28739,31346 +28740,45880 +28741,43499 +28742,43500 +28743,45863 +28744,45874 +28745,15420 +28746,42331 +28747,42329 +28748,45862 +28749,41416 +28750,40511 +28751,45879 +28752,47479 +28753,9846 +28754,40867 +28755,43511 +28756,45871 +28757,33864 +28758,32133 +28759,37311 +28760,37311 +28761,27338 +28762,35358 +28763,9847 +28764,33096 +28765,43292 +28766,38976 +28767,40066 +28768,40937 +28769,40053 +28770,43098 +28771,40923 +28772,40859 +28773,40922 +28774,40366 +28775,44840 +28776,43523 +28777,43525 +28778,43524 +28779,43522 +28780,43527 +28781,40783 +28782,41555 +28783,43915 +28784,23520 +28785,35445 +28786,36693 +28787,31200 +28788,35396 +28789,43528 +28790,44357 +28791,44841 +28792,39126 +28793,39127 +28794,45804 +28795,43529 +28796,44608 +28797,29719 +28798,40076 +28799,42649 +28800,43531 +28801,44884 +28802,43036 +28803,44896 +28804,44566 +28805,32103 +28806,32100 +28807,32133 +28808,32127 +28809,32128 +28810,42334 +28811,43571 +28812,39032 +28813,39033 +28814,39034 +28815,39035 +28816,31664 +28817,37308 +28818,37311 +28819,41223 +28820,37312 +28821,37313 +28822,43535 +28823,31839 +28824,43435 +28825,40862 +28826,43543 +28827,43436 +28828,43542 +28829,6563 +28830,1503 +28831,41247 +28832,41248 +28833,42199 +28834,41249 +28835,41228 +28836,37893 +28837,37894 +28838,37895 +28839,37898 +28840,37897 +28841,32103 +28842,32100 +28843,32133 +28844,32127 +28845,32128 +28846,32103 +28847,32100 +28848,32133 +28849,32127 +28850,32128 +28851,37299 +28852,37303 +28853,37300 +28854,37301 +28855,37302 +28856,37308 +28857,37311 +28858,37310 +28859,37312 +28860,37313 +28861,41229 +28862,41230 +28863,41933 +28864,41231 +28865,41232 +28866,33089 +28867,32999 +28868,32997 +28869,33085 +28870,41182 +28871,43571 +28872,39032 +28873,39033 +28874,39034 +28875,39035 +28876,30690 +28877,6270 +28878,40108 +28879,6270 +28880,6270 +28881,40107 +28882,40110 +28883,30690 +28884,30690 +28885,40111 +28886,40107 +28887,40109 +28888,40112 +28889,40082 +28890,6270 +28891,15274 +28892,15274 +28893,40088 +28894,15274 +28895,6270 +28896,6270 +28897,6270 +28898,6270 +28899,15274 +28900,15274 +28901,15274 +28902,15274 +28903,40393 +28904,40105 +28905,40874 +28906,40875 +28907,40098 +28908,40099 +28909,40394 +28910,40103 +28911,40104 +28912,40106 +28913,16028 +28914,23283 +28915,40261 +28916,41066 +28917,42068 +28918,39261 +28919,40981 +28920,42070 +28921,42070 +28922,42072 +28923,42073 +28924,42067 +28925,42067 +28926,42074 +28927,40116 +28928,42075 +28929,42076 +28930,42076 +28931,42077 +28932,38679 +28933,42071 +28934,16028 +28935,42078 +28936,40117 +28937,42074 +28938,42079 +28939,31746 +28940,40976 +28941,42092 +28942,42081 +28943,31996 +28944,42082 +28945,42083 +28946,40960 +28947,42085 +28948,40958 +28949,42086 +28950,42080 +28951,42080 +28952,42087 +28953,42088 +28954,42090 +28955,42090 +28956,42087 +28957,31379 +28958,38679 +28959,42091 +28960,42084 +28961,31746 +28962,40122 +28963,40480 +28964,40482 +28965,40127 +28966,40481 +28967,40684 +28968,40479 +28969,40162 +28970,40163 +28971,18050 +28972,23723 +28973,41266 +28974,40630 +28975,40631 +28976,41474 +28977,41482 +28978,41270 +28979,40187 +28980,41475 +28981,41272 +28982,41484 +28983,41165 +28984,41275 +28985,41167 +28986,41476 +28987,41480 +28988,30804 +28989,41259 +28990,41477 +28991,41481 +28992,41259 +28993,41477 +28994,41481 +28995,39544 +28996,41285 +28997,39546 +28998,41165 +28999,41275 +29000,41167 +29001,40090 +29002,41288 +29003,41483 +29004,41474 +29005,41482 +29006,41270 +29007,40190 +29008,40191 +29009,40192 +29010,40193 +29011,47568 +29012,40484 +29013,40194 +29014,40195 +29015,40487 +29016,40488 +29017,40485 +29018,40122 +29019,40484 +29020,40485 +29021,47568 +29022,40487 +29023,40488 +29024,41192 +29025,40122 +29026,36597 +29027,8622 +29028,44008 +29029,40445 +29030,40447 +29031,40641 +29032,41381 +29033,40445 +29034,41381 +29035,44008 +29036,40447 +29037,40641 +29038,40445 +29039,41381 +29040,44008 +29041,36597 +29042,40447 +29043,40641 +29044,45810 +29045,45812 +29046,45814 +29047,45811 +29048,45813 +29049,45819 +29050,40455 +29051,40858 +29052,40248 +29053,42288 +29054,40459 +29055,40456 +29056,40455 +29057,42287 +29058,45819 +29059,42288 +29060,40459 +29061,40646 +29062,40474 +29063,40478 +29064,40651 +29065,40473 +29066,40474 +29067,40473 +29068,40646 +29069,40478 +29070,40651 +29071,40474 +29072,40473 +29073,40646 +29074,40478 +29075,40651 +29076,41063 +29077,40468 +29078,41384 +29079,40645 +29080,41385 +29081,40451 +29082,40448 +29083,40454 +29084,40453 +29085,40831 +29086,46214 +29087,40460 +29088,40833 +29089,40642 +29090,41383 +29091,40460 +29092,41383 +29093,46214 +29094,40833 +29095,40642 +29096,40460 +29097,41383 +29098,46214 +29099,40833 +29100,40642 +29101,6338 +29102,40261 +29103,40261 +29104,40261 +29105,40261 +29106,36597 +29107,40276 +29108,13078 +29109,28236 +29110,40292 +29111,40293 +29112,18080 +29113,9731 +29114,40311 +29115,41948 +29116,6786 +29117,40315 +29118,1282 +29119,35358 +29120,1102 +29121,42061 +29122,38932 +29123,6494 +29124,42065 +29125,42060 +29126,35438 +29127,44551 +29128,35423 +29129,40870 +29130,40322 +29131,40323 +29132,7122 +29133,35363 +29134,44413 +29135,40327 +29136,40329 +29137,42056 +29138,40904 +29139,40918 +29140,40917 +29141,40335 +29142,41949 +29143,40337 +29144,40338 +29145,9840 +29146,31616 +29147,28179 +29148,40915 +29149,40876 +29150,40920 +29151,41915 +29152,30926 +29153,42542 +29154,40346 +29155,42544 +29156,41929 +29157,38541 +29158,28830 +29159,31616 +29160,23608 +29161,36540 +29162,36540 +29163,40378 +29164,40379 +29165,40914 +29166,42057 +29167,42064 +29168,23728 +29169,31905 +29170,41914 +29171,41913 +29172,35472 +29173,15420 +29174,42481 +29175,42289 +29176,40901 +29177,35423 +29178,35423 +29179,40386 +29180,40387 +29181,36597 +29182,40947 +29183,40390 +29184,40391 +29185,40392 +29186,40396 +29187,40395 +29188,40397 +29189,40398 +29190,40398 +29191,40399 +29192,40400 +29193,40402 +29194,39639 +29195,40403 +29196,40404 +29197,40404 +29198,40405 +29199,40406 +29200,20729 +29201,40409 +29202,40410 +29203,40411 +29204,40412 +29205,40413 +29206,40414 +29207,40878 +29208,9632 +29209,35300 +29210,26358 +29211,23723 +29212,32693 +29213,6270 +29214,6270 +29215,6270 +29216,36597 +29217,6270 +29218,6270 +29219,6270 +29220,44581 +29221,44580 +29222,44582 +29223,44583 +29224,44584 +29225,44585 +29226,8622 +29227,40261 +29228,40261 +29229,40261 +29230,40261 +29231,40261 +29232,1102 +29233,39343 +29234,1103 +29235,39344 +29236,31176 +29237,42366 +29238,42606 +29239,42607 +29240,42591 +29241,42590 +29242,42592 +29243,42595 +29244,42593 +29245,42594 +29246,46559 +29247,46574 +29248,42417 +29249,42589 +29250,42587 +29251,42588 +29252,42605 +29253,42603 +29254,42604 +29255,42602 +29256,35519 +29257,42600 +29258,42601 +29259,42586 +29260,22293 +29261,42584 +29262,42585 +29263,42598 +29264,42596 +29265,42597 +29266,42622 +29267,42621 +29268,42620 +29269,42630 +29270,42624 +29271,42563 +29272,42626 +29273,42625 +29274,42628 +29275,42617 +29276,40518 +29277,40518 +29278,40518 +29279,40518 +29280,40518 +29281,40518 +29282,40518 +29283,40518 +29284,40518 +29285,40518 +29286,40518 +29287,40518 +29288,40518 +29289,40518 +29290,40518 +29291,40518 +29292,21327 +29293,22200 +29294,43095 +29295,43095 +29296,43095 +29297,39126 +29298,43095 +29299,43095 +29300,43095 +29301,39126 +29302,43095 +29303,43095 +29304,43095 +29305,39126 +29306,43095 +29307,43095 +29308,43095 +29309,39126 +29310,40520 +29311,9129 +29312,40537 +29313,30438 +29314,33148 +29315,40539 +29316,39080 +29317,39068 +29318,39223 +29319,38545 +29320,31664 +29321,31664 +29322,31664 +29323,31906 +29324,33173 +29325,38784 +29326,39065 +29327,39064 +29328,38542 +29329,40563 +29330,40565 +29331,1143 +29332,42478 +29333,35358 +29334,31889 +29335,9852 +29336,39210 +29337,40585 +29338,40583 +29339,38704 +29340,31639 +29341,25039 +29342,30737 +29343,33148 +29344,27944 +29345,38787 +29346,42225 +29347,43125 +29348,42348 +29349,15420 +29350,35262 +29351,42220 +29352,39123 +29353,42218 +29354,43292 +29355,42203 +29356,42219 +29357,43107 +29358,41648 +29359,43116 +29360,42224 +29361,40593 +29362,36716 +29363,18067 +29364,17284 +29365,40710 +29366,40606 +29367,39122 +29368,35437 +29369,42615 +29370,42608 +29371,40607 +29372,40608 +29373,35431 +29374,39211 +29375,42611 +29376,42609 +29377,40616 +29378,40612 +29379,33808 +29380,40614 +29381,9852 +29382,40592 +29383,42610 +29384,38541 +29385,35366 +29386,33906 +29387,42612 +29388,34960 +29389,42614 +29390,34953 +29391,44593 +29392,19479 +29393,40621 +29394,40637 +29395,40652 +29396,40606 +29397,40606 +29398,31664 +29399,40650 +29400,40648 +29401,40652 +29402,40653 +29403,40654 +29404,40655 +29405,40655 +29406,40656 +29407,40657 +29408,40662 +29409,40661 +29410,40660 +29411,40606 +29412,26733 +29413,40663 +29414,40664 +29415,40665 +29416,40666 +29417,40678 +29418,40668 +29419,40669 +29420,40671 +29421,40673 +29422,40677 +29423,40675 +29424,40676 +29425,40679 +29426,40680 +29427,40681 +29428,40714 +29429,7624 +29430,40716 +29431,40750 +29432,40751 +29433,40752 +29434,40753 +29435,40754 +29436,40755 +29437,40760 +29438,40778 +29439,40780 +29440,40784 +29441,40800 +29442,40821 +29443,18115 +29444,40828 +29445,40829 +29446,40863 +29447,31201 +29448,40841 +29449,38634 +29450,22414 +29451,21327 +29452,40844 +29453,40699 +29454,40694 +29455,31265 +29456,39310 +29457,40881 +29458,45817 +29459,26551 +29460,40888 +29461,33552 +29462,40889 +29463,43425 +29464,4689 +29465,17785 +29466,29447 +29467,17343 +29468,30608 +29469,16208 +29470,17786 +29471,17606 +29472,17494 +29473,40902 +29474,37662 +29475,20798 +29476,35850 +29477,35850 +29478,7287 +29479,39841 +29480,39724 +29481,40948 +29482,37856 +29483,40966 +29484,39840 +29485,40964 +29486,18525 +29487,40970 +29488,40965 +29489,40988 +29490,40989 +29491,40990 +29492,44266 +29493,44267 +29494,44268 +29495,34710 +29496,40998 +29497,40997 +29498,42855 +29499,42857 +29500,42858 +29501,8903 +29502,45844 +29503,41014 +29504,45802 +29505,45801 +29506,41021 +29507,41024 +29508,44092 +29509,41038 +29510,41037 +29511,41036 +29512,41034 +29513,15867 +29514,44595 +29515,43455 +29516,43414 +29517,43413 +29518,22079 +29519,45937 +29520,44103 +29521,44102 +29522,45820 +29523,45822 +29524,45823 +29525,45057 +29526,45056 +29527,45055 +29528,41050 +29529,41062 +29530,41060 +29531,41061 +29532,41059 +29533,47590 +29534,47591 +29535,47592 +29536,47592 +29537,41057 +29538,41070 +29539,37083 +29540,24496 +29541,41071 +29542,41072 +29543,41073 +29544,41074 +29545,3029 +29546,3048 +29547,21364 +29548,41081 +29549,1143 +29550,1103 +29551,18092 +29552,959 +29553,41120 +29554,37672 +29555,3668 +29556,41121 +29557,37887 +29558,34035 +29559,41122 +29560,41124 +29561,7126 +29562,30593 +29563,44288 +29564,7886 +29565,3759 +29566,19573 +29567,1498 +29568,41153 +29569,18721 +29570,41158 +29571,9319 +29572,41168 +29573,34493 +29574,7155 +29575,32955 +29576,41171 +29577,13433 +29578,41175 +29579,36866 +29580,41176 +29581,41177 +29582,41178 +29583,41179 +29584,41181 +29585,41193 +29586,41195 +29587,25271 +29588,5567 +29589,5567 +29590,5567 +29591,17458 +29592,37841 +29593,37840 +29594,31183 +29595,27279 +29596,31185 +29597,31186 +29598,30072 +29599,30382 +29600,41954 +29601,41236 +29602,41237 +29603,41238 +29604,42200 +29605,41240 +29606,32126 +29607,32100 +29608,32127 +29609,32103 +29610,32133 +29611,32128 +29612,41241 +29613,41242 +29614,41243 +29615,41244 +29616,42200 +29617,41245 +29618,23475 +29619,41279 +29620,41280 +29621,41281 +29622,41282 +29623,41283 +29624,18204 +29625,18204 +29626,44573 +29627,41291 +29628,41292 +29629,41293 +29630,41294 +29631,41295 +29632,41296 +29633,41297 +29634,41298 +29635,41299 +29636,41300 +29637,41301 +29638,41302 +29639,41303 +29640,41304 +29641,41305 +29642,41306 +29643,41307 +29644,41308 +29645,41309 +29646,41310 +29647,41311 +29648,41312 +29649,41313 +29650,41314 +29651,41315 +29652,41316 +29653,41317 +29654,41318 +29655,41319 +29656,41320 +29657,41321 +29658,41322 +29659,41323 +29660,41324 +29661,41325 +29662,41326 +29663,41327 +29664,1102 +29665,41328 +29666,41329 +29667,41330 +29668,41331 +29669,15274 +29670,41332 +29671,41333 +29672,15274 +29673,15274 +29674,15274 +29675,15274 +29676,41334 +29677,2571 +29678,41335 +29679,41336 +29680,41337 +29681,41338 +29682,2571 +29683,41339 +29684,2571 +29685,41340 +29686,41341 +29687,41342 +29688,41343 +29689,2571 +29690,41344 +29691,2571 +29692,41345 +29693,2571 +29694,41346 +29695,41347 +29696,41348 +29697,41349 +29698,2571 +29699,41350 +29700,2571 +29701,2571 +29702,2571 +29703,2571 +29704,2571 +29705,41351 +29706,41352 +29707,41353 +29708,41354 +29709,41355 +29710,41356 +29711,41357 +29712,41358 +29713,6270 +29714,15274 +29715,41359 +29716,41360 +29717,6270 +29718,15274 +29719,1301 +29720,1301 +29721,1301 +29722,1301 +29723,1096 +29724,1096 +29725,1096 +29726,1096 +29727,1096 +29728,1096 +29729,1096 +29730,1096 +29731,1096 +29732,1096 +29733,1096 +29734,1096 +29735,31325 +29736,23292 +29737,3665 +29738,9731 +29739,1103 +29740,41378 +29741,41380 +29742,41387 +29743,44587 +29744,44588 +29745,44589 +29746,44590 +29747,44591 +29748,40371 +29749,6387 +29750,41411 +29751,41413 +29752,35044 +29753,41438 +29754,41438 +29755,41438 +29756,41440 +29757,41440 +29758,41440 +29759,41441 +29760,41441 +29761,41441 +29762,19486 +29763,19486 +29764,19486 +29765,41442 +29766,41442 +29767,41442 +29768,4045 +29769,32845 +29770,41425 +29771,16603 +29772,4532 +29773,38338 +29774,26824 +29775,9854 +29776,33520 +29777,39391 +29778,41434 +29779,31628 +29780,25834 +29781,29919 +29782,15810 +29783,25226 +29784,31630 +29785,27314 +29786,26874 +29787,28262 +29788,16487 +29789,26332 +29790,25482 +29791,27511 +29792,27176 +29793,23728 +29794,31604 +29795,38758 +29796,41350 +29797,3029 +29798,41434 +29799,18096 +29800,9292 +29801,21470 +29802,37083 +29803,36529 +29804,27741 +29805,41450 +29806,25811 +29807,24514 +29808,26268 +29809,25410 +29810,18939 +29811,25800 +29812,26872 +29813,33144 +29814,9837 +29815,9852 +29816,41460 +29817,36571 +29818,41461 +29819,41464 +29820,41464 +29821,41465 +29822,36597 +29823,40465 +29824,40465 +29825,35819 +29826,35819 +29827,35819 +29828,35819 +29829,40484 +29830,40484 +29831,41414 +29832,41414 +29833,40922 +29834,40922 +29835,35618 +29836,35618 +29837,7899 +29838,7899 +29839,7899 +29840,7899 +29841,7899 +29842,7899 +29843,7899 +29844,7899 +29845,7899 +29846,36684 +29847,36684 +29848,7899 +29849,7899 +29850,7899 +29851,7899 +29852,7899 +29853,7899 +29854,7899 +29855,40468 +29856,7899 +29857,7899 +29858,7899 +29859,7899 +29860,7899 +29861,7899 +29862,7899 +29863,7899 +29864,7899 +29865,40468 +29866,7899 +29867,7899 +29868,7899 +29869,7899 +29870,7899 +29871,7899 +29872,7899 +29873,7899 +29874,7899 +29875,40482 +29876,40482 +29877,39888 +29878,36354 +29879,36354 +29880,40922 +29881,40922 +29882,40448 +29883,40448 +29884,41430 +29885,40526 +29886,9632 +29887,9632 +29888,41430 +29889,1282 +29890,35159 +29891,35159 +29892,35159 +29893,35159 +29894,41133 +29895,41133 +29896,40445 +29897,40445 +29898,35752 +29899,35752 +29900,41487 +29901,18048 +29902,18048 +29903,18048 +29904,18048 +29905,36862 +29906,41488 +29907,41489 +29908,28334 +29909,20299 +29910,20298 +29911,24015 +29912,5567 +29913,28561 +29914,41494 +29915,39876 +29916,42393 +29917,40895 +29918,42645 +29919,41496 +29920,35472 +29921,46088 +29922,39120 +29923,42176 +29924,42177 +29925,46126 +29926,43935 +29927,44579 +29928,43932 +29929,43928 +29930,43927 +29931,42398 +29932,43919 +29933,43918 +29934,43922 +29935,41517 +29936,41518 +29937,43923 +29938,42396 +29939,43921 +29940,21294 +29941,41525 +29942,43920 +29943,44607 +29944,41531 +29945,41532 +29946,19769 +29947,43562 +29948,42823 +29949,42178 +29950,46074 +29951,45912 +29952,41542 +29953,41547 +29954,41548 +29955,41549 +29956,41547 +29957,41547 +29958,41547 +29959,41550 +29960,34488 +29961,6513 +29962,42179 +29963,41565 +29964,41569 +29965,42699 +29966,45022 +29967,41827 +29968,22481 +29969,42995 +29970,41574 +29971,41605 +29972,46127 +29973,41580 +29974,44156 +29975,41583 +29976,46094 +29977,46128 +29978,41828 +29979,21701 +29980,26814 +29981,42180 +29982,42181 +29983,46577 +29984,46105 +29985,46093 +29986,46216 +29987,46119 +29988,47435 +29989,46123 +29990,46506 +29991,46092 +29992,46124 +29993,42183 +29994,46125 +29995,46106 +29996,41873 +29997,39126 +29998,46076 +29999,41830 +30000,13195 +30001,41831 +30002,41829 +30003,17223 +30004,41596 +30005,18497 +30006,963 +30007,34303 +30008,31889 +30009,43952 +30010,41598 +30011,41599 +30012,41600 +30013,44767 +30014,41838 +30015,32008 +30016,42994 +30017,35437 +30018,35358 +30019,32760 +30020,46114 +30021,42184 +30022,34204 +30023,39638 +30024,46120 +30025,38370 +30026,46085 +30027,44966 +30028,28733 +30029,46103 +30030,46089 +30031,45920 +30032,46075 +30033,45913 +30034,46072 +30035,45917 +30036,46115 +30037,46116 +30038,46112 +30039,45915 +30040,46102 +30041,45914 +30042,46104 +30043,45919 +30044,46090 +30045,46091 +30046,46087 +30047,46095 +30048,46078 +30049,42185 +30050,42701 +30051,43580 +30052,35472 +30053,46348 +30054,46099 +30055,46353 +30056,46130 +30057,42650 +30058,42193 +30059,33906 +30060,45821 +30061,31908 +30062,43584 +30063,34961 +30064,42702 +30065,46080 +30066,44951 +30067,45911 +30068,46097 +30069,41604 +30070,41607 +30071,41615 +30072,41614 +30073,41613 +30074,41616 +30075,43589 +30076,41617 +30077,41620 +30078,41619 +30079,46131 +30080,41668 +30081,42168 +30082,42187 +30083,24646 +30084,46349 +30085,46355 +30086,44893 +30087,42713 +30088,41631 +30089,41635 +30090,41558 +30091,46100 +30092,45909 +30093,41638 +30094,41639 +30095,42188 +30096,42651 +30097,46096 +30098,43597 +30099,43599 +30100,45910 +30101,47437 +30102,46082 +30103,42189 +30104,45845 +30105,43834 +30106,42636 +30107,46133 +30108,47438 +30109,33534 +30110,31616 +30111,46110 +30112,46079 +30113,42297 +30114,42299 +30115,47594 +30116,42298 +30117,42300 +30118,42297 +30119,42299 +30120,47594 +30121,42298 +30122,42300 +30123,42306 +30124,42307 +30125,44050 +30126,42309 +30127,42310 +30128,31210 +30129,42306 +30130,42307 +30131,44050 +30132,42309 +30133,42310 +30134,42306 +30135,42307 +30136,44050 +30137,42309 +30138,42310 +30139,42698 +30140,43749 +30141,43750 +30142,43751 +30143,43752 +30144,45017 +30145,45016 +30146,45018 +30147,41653 +30148,45019 +30149,45020 +30150,42290 +30151,42291 +30152,42879 +30153,42295 +30154,42294 +30155,30997 +30156,1301 +30157,41658 +30158,41659 +30159,42290 +30160,42291 +30161,45797 +30162,42295 +30163,42294 +30164,43613 +30165,43698 +30166,44516 +30167,43618 +30168,43617 +30169,43613 +30170,43698 +30171,44515 +30172,43619 +30173,43617 +30174,35023 +30175,6359 +30176,41663 +30177,36520 +30178,41691 +30179,41692 +30180,41693 +30181,41694 +30182,41696 +30183,41679 +30184,30532 +30185,43613 +30186,41706 +30187,45149 +30188,45236 +30189,43698 +30190,43616 +30191,7899 +30192,43619 +30193,7899 +30194,43617 +30195,7899 +30196,42640 +30197,7899 +30198,7899 +30199,7899 +30200,44788 +30201,41713 +30202,41735 +30203,41736 +30204,41740 +30205,42641 +30206,44020 +30207,42643 +30208,41752 +30209,41753 +30210,42644 +30211,42302 +30212,42305 +30213,42303 +30214,42313 +30215,42304 +30216,43620 +30217,43621 +30218,41756 +30219,46215 +30220,43623 +30221,43624 +30222,43620 +30223,43621 +30224,41757 +30225,26829 +30226,41779 +30227,39999 +30228,46759 +30229,43623 +30230,43624 +30231,43620 +30232,43621 +30233,46215 +30234,43623 +30235,43624 +30236,41438 +30237,41438 +30238,41438 +30239,41440 +30240,41440 +30241,41440 +30242,41441 +30243,41441 +30244,41441 +30245,41442 +30246,41442 +30247,41442 +30248,19486 +30249,19486 +30250,19486 +30251,35360 +30252,21018 +30253,16633 +30254,41836 +30255,27155 +30256,31910 +30257,41799 +30258,41800 +30259,6554 +30260,21586 +30261,41801 +30262,41839 +30263,41803 +30264,41840 +30265,41805 +30266,41806 +30267,41807 +30268,41808 +30269,41810 +30270,26351 +30271,41811 +30272,42515 +30273,41813 +30274,41814 +30275,42668 +30276,9858 +30277,41816 +30278,41856 +30279,8258 +30280,1096 +30281,1096 +30282,1096 +30283,1096 +30284,41817 +30285,41818 +30286,41819 +30287,17234 +30288,42516 +30289,41821 +30290,13206 +30291,41835 +30292,41837 +30293,41858 +30294,41859 +30295,41860 +30296,41861 +30297,41938 +30298,28663 +30299,33888 +30300,41916 +30301,1096 +30302,1096 +30303,1096 +30304,1096 +30305,1096 +30306,1096 +30307,1096 +30308,1096 +30309,18115 +30310,41866 +30311,41867 +30312,41872 +30313,41895 +30314,40867 +30315,6563 +30316,41560 +30317,41873 +30318,41875 +30319,42468 +30320,34273 +30321,1096 +30322,1096 +30323,1096 +30324,1096 +30325,18050 +30326,7155 +30327,19312 +30328,41917 +30329,41918 +30330,27418 +30331,9912 +30332,4494 +30333,41919 +30334,41920 +30335,41925 +30336,41926 +30337,41928 +30338,27152 +30339,2854 +30340,41936 +30341,39897 +30342,22678 +30343,37841 +30344,37841 +30345,37841 +30346,37841 +30347,8026 +30348,37840 +30349,37840 +30350,37840 +30351,37840 +30352,26794 +30353,7921 +30354,41946 +30355,39115 +30356,6380 +30357,41971 +30358,42169 +30359,39717 +30360,18051 +30361,42170 +30362,15550 +30363,12723 +30364,41974 +30365,28733 +30366,9839 +30367,41957 +30368,41959 +30369,41960 +30370,41961 +30371,41962 +30372,33885 +30373,17197 +30374,41963 +30375,41964 +30376,41965 +30377,9657 +30378,33135 +30379,41967 +30380,26158 +30381,26875 +30382,30693 +30383,25998 +30384,17014 +30385,9388 +30386,41968 +30387,41873 +30388,41560 +30389,41872 +30390,41875 +30391,40867 +30392,41895 +30393,41867 +30394,20167 +30395,28499 +30396,25632 +30397,41969 +30398,42519 +30399,27706 +30400,37350 +30401,42517 +30402,24511 +30403,41973 +30404,2873 +30405,41975 +30406,41976 +30407,41977 +30408,41978 +30409,41979 +30410,41980 +30411,41981 +30412,41983 +30413,41984 +30414,41985 +30415,41986 +30416,7111 +30417,41998 +30418,41999 +30419,6539 +30420,9842 +30421,28682 +30422,31906 +30423,42000 +30424,42001 +30425,19312 +30426,36756 +30427,23229 +30428,1037 +30429,26381 +30430,42031 +30431,42032 +30432,42033 +30433,42034 +30434,41350 +30435,42043 +30436,42039 +30437,42038 +30438,42040 +30439,42042 +30440,42044 +30441,42049 +30442,41565 +30443,15274 +30444,1102 +30445,42062 +30446,43551 +30447,43547 +30448,43548 +30449,43553 +30450,43560 +30451,42066 +30452,43519 +30453,32845 +30454,15590 +30455,30886 +30456,34102 +30457,40852 +30458,1087 +30459,42100 +30460,42102 +30461,42101 +30462,30959 +30463,13678 +30464,4063 +30465,42110 +30466,7129 +30467,42112 +30468,42114 +30469,1301 +30470,1301 +30471,1301 +30472,1301 +30473,1301 +30474,1301 +30475,30601 +30476,33239 +30477,42116 +30478,13715 +30479,10365 +30480,42122 +30481,42226 +30482,42125 +30483,1301 +30484,42160 +30485,42162 +30486,45972 +30487,45973 +30488,47593 +30489,45971 +30490,45970 +30491,42168 +30492,32644 +30493,32644 +30494,32644 +30495,32644 +30496,32822 +30497,35093 +30498,35175 +30499,18079 +30500,18050 +30501,20503 +30502,42252 +30503,3486 +30504,20425 +30505,14739 +30506,18050 +30507,4721 +30508,9585 +30509,42254 +30510,42255 +30511,42256 +30512,8940 +30513,7129 +30514,28756 +30515,42279 +30516,43150 +30517,15823 +30518,8720 +30519,4272 +30520,16892 +30521,31634 +30522,20298 +30523,42278 +30524,42280 +30525,42281 +30526,42282 +30527,7257 +30528,35159 +30529,31500 +30530,31500 +30531,42316 +30532,42315 +30533,42326 +30534,42325 +30535,42314 +30536,42318 +30537,42444 +30538,42319 +30539,1096 +30540,2571 +30541,42324 +30542,41640 +30543,43424 +30544,40162 +30545,39214 +30546,39929 +30547,39931 +30548,39930 +30549,39929 +30550,39930 +30551,39931 +30552,39929 +30553,39931 +30554,39931 +30555,39929 +30556,39931 +30557,41874 +30558,39931 +30559,39931 +30560,39930 +30561,39202 +30562,39930 +30563,39929 +30564,39931 +30565,39931 +30566,39929 +30567,39203 +30568,40002 +30569,5129 +30570,42336 +30571,7053 +30572,39929 +30573,39931 +30574,39929 +30575,39931 +30576,42337 +30577,42340 +30578,42341 +30579,42342 +30580,42343 +30581,39931 +30582,39931 +30583,39930 +30584,39931 +30585,39931 +30586,39930 +30587,39931 +30588,39931 +30589,39930 +30590,39930 +30591,39931 +30592,39930 +30593,39931 +30594,39930 +30595,14993 +30596,38757 +30597,42336 +30598,7053 +30599,40002 +30600,39929 +30601,39931 +30602,39930 +30603,39929 +30604,39931 +30605,39930 +30606,39930 +30607,39931 +30608,39930 +30609,42378 +30610,20803 +30611,40199 +30612,42382 +30613,1504 +30614,43310 +30615,18059 +30616,20503 +30617,36488 +30618,2473 +30619,43559 +30620,43609 +30621,43605 +30622,22477 +30623,22477 +30624,42420 +30625,42421 +30626,43601 +30627,43595 +30628,42430 +30629,35439 +30630,42490 +30631,35301 +30632,1134 +30633,22071 +30634,22185 +30635,3118 +30636,42434 +30637,22477 +30638,8928 +30639,42440 +30640,35300 +30641,40499 +30642,42491 +30643,40513 +30644,42492 +30645,30603 +30646,18721 +30647,42504 +30648,42514 +30649,3029 +30650,5658 +30651,42537 +30652,42538 +30653,42539 +30654,13435 +30655,39203 +30656,42540 +30657,42548 +30658,1815 +30659,1815 +30660,43350 +30661,42551 +30662,42552 +30663,43598 +30664,43579 +30665,43585 +30666,35437 +30667,35472 +30668,35183 +30669,40075 +30670,42555 +30671,42556 +30672,42557 +30673,40508 +30674,42247 +30675,40508 +30676,29954 +30677,41041 +30678,35614 +30679,42565 +30680,41483 +30681,41899 +30682,42334 +30683,40499 +30684,40390 +30685,45055 +30686,40494 +30687,36248 +30688,9154 +30689,16161 +30690,44025 +30691,40888 +30692,42619 +30693,41387 +30694,41411 +30695,42629 +30696,38758 +30697,42655 +30698,42660 +30699,43903 +30700,36868 +30701,8622 +30702,7040 +30703,40853 +30704,42679 +30705,30829 +30706,42679 +30707,11571 +30708,30492 +30709,42681 +30710,32087 +30711,17514 +30712,22477 +30713,1246 +30714,42704 +30715,42705 +30716,42706 +30717,42679 +30718,12645 +30719,42708 +30720,43588 +30721,42708 +30722,43263 +30723,43267 +30724,41433 +30725,43269 +30726,35358 +30727,43284 +30728,44683 +30729,28891 +30730,44598 +30731,44879 +30732,43253 +30733,43259 +30734,43249 +30735,22995 +30736,39129 +30737,43251 +30738,9834 +30739,43254 +30740,43258 +30741,43261 +30742,42723 +30743,42742 +30744,31783 +30745,42743 +30746,2588 +30747,3237 +30748,2591 +30749,42751 +30750,42750 +30751,42749 +30752,42748 +30753,42754 +30754,42757 +30755,42758 +30756,42342 +30757,44885 +30758,44723 +30759,44724 +30760,42771 +30761,31685 +30762,31673 +30763,41901 +30764,28754 +30765,42775 +30766,28843 +30767,43447 +30768,42672 +30769,21580 +30770,33690 +30771,42777 +30772,36426 +30773,32360 +30774,42778 +30775,44270 +30776,33840 +30777,42782 +30778,42783 +30779,42784 +30780,42787 +30781,42786 +30782,42990 +30783,42991 +30784,42788 +30785,42789 +30786,42790 +30787,40855 +30788,41428 +30789,47478 +30790,24472 +30791,36601 +30792,43402 +30793,3664 +30794,21807 +30795,42793 +30796,41755 +30797,42795 +30798,2460 +30799,42796 +30800,42797 +30801,42807 +30802,42820 +30803,12997 +30804,31800 +30805,42821 +30806,3565 +30807,7086 +30808,1246 +30809,40679 +30810,34382 +30811,2616 +30812,8284 +30813,2798 +30814,7350 +30815,32885 +30816,42822 +30817,1297 +30818,19502 +30819,42827 +30820,6636 +30821,42828 +30822,12331 +30823,42834 +30824,42861 +30825,44358 +30826,6270 +30827,9129 +30828,42905 +30829,39204 +30830,42906 +30831,42907 +30832,42909 +30833,1301 +30834,31908 +30835,42916 +30836,42917 +30837,42942 +30838,42941 +30839,41580 +30840,42924 +30841,1317 +30842,2571 +30843,2571 +30844,2571 +30845,42958 +30846,42960 +30847,42437 +30848,42979 +30849,1438 +30850,19312 +30851,42988 +30852,42989 +30853,44246 +30854,1246 +30855,18377 +30856,43000 +30857,7557 +30858,18079 +30859,43007 +30860,31800 +30861,45748 +30862,45741 +30863,45746 +30864,45744 +30865,45233 +30866,45759 +30867,5287 +30868,45753 +30869,45750 +30870,45745 +30871,45743 +30872,45211 +30873,45240 +30874,45232 +30875,43032 +30876,43032 +30877,7899 +30878,45212 +30879,45245 +30880,45239 +30881,45799 +30882,44863 +30883,45224 +30884,45749 +30885,45737 +30886,45238 +30887,45767 +30888,45241 +30889,44865 +30890,43061 +30891,45800 +30892,45735 +30893,45229 +30894,45742 +30895,45242 +30896,45222 +30897,48291 +30898,45227 +30899,45755 +30900,47778 +30901,45209 +30902,45776 +30903,46359 +30904,46351 +30905,46352 +30906,45265 +30907,46356 +30908,45205 +30909,45204 +30910,45360 +30911,39420 +30912,45218 +30913,45771 +30914,45244 +30915,45243 +30916,45219 +30917,45752 +30918,45346 +30919,45247 +30920,43211 +30921,43212 +30922,43213 +30923,43214 +30924,30768 +30925,43346 +30926,43216 +30927,43217 +30928,43218 +30929,43219 +30930,43220 +30931,43221 +30932,26435 +30933,43222 +30934,43223 +30935,43230 +30936,38516 +30937,43343 +30938,43227 +30939,43347 +30940,34685 +30941,43231 +30942,44550 +30943,43235 +30944,43233 +30945,43236 +30946,43237 +30947,43241 +30948,44018 +30949,43244 +30950,43247 +30951,43348 +30952,43250 +30953,43252 +30954,43255 +30955,44732 +30956,28806 +30957,43260 +30958,43262 +30959,43272 +30960,43274 +30961,43277 +30962,43345 +30963,43280 +30964,43344 +30965,43288 +30966,43283 +30967,43349 +30968,43287 +30969,45659 +30970,45659 +30971,15163 +30972,49684 +30973,33534 +30974,49684 +30975,45658 +30976,45658 +30977,45660 +30978,45660 +30979,45661 +30980,45661 +30981,35358 +30982,45685 +30983,46357 +30984,42285 +30985,45685 +30986,41645 +30987,45684 +30988,46358 +30989,45684 +30990,46350 +30991,45683 +30992,45683 +30993,45686 +30994,45686 +30995,45686 +30996,45884 +30997,45884 +30998,45884 +30999,43309 +31000,43312 +31001,45679 +31002,1930 +31003,45680 +31004,45678 +31005,45681 +31006,45682 +31007,45670 +31008,45670 +31009,43313 +31010,44011 +31011,45670 +31012,45669 +31013,43315 +31014,45669 +31015,45669 +31016,45668 +31017,45668 +31018,45668 +31019,45671 +31020,45671 +31021,45671 +31022,45672 +31023,45672 +31024,45672 +31025,43316 +31026,45426 +31027,45434 +31028,45425 +31029,45428 +31030,45436 +31031,43317 +31032,45664 +31033,43318 +31034,45664 +31035,45664 +31036,43323 +31037,45663 +31038,43353 +31039,45663 +31040,45663 +31041,45662 +31042,45662 +31043,45662 +31044,45665 +31045,45666 +31046,45665 +31047,45667 +31048,45667 +31049,45667 +31050,45673 +31051,45674 +31052,45677 +31053,45675 +31054,45676 +31055,45121 +31056,45449 +31057,45119 +31058,45122 +31059,45126 +31060,44977 +31061,44977 +31062,43355 +31063,45770 +31064,45770 +31065,44979 +31066,44979 +31067,44976 +31068,44976 +31069,44978 +31070,44978 +31071,43356 +31072,43384 +31073,43645 +31074,31899 +31075,43332 +31076,43335 +31077,43339 +31078,43340 +31079,43406 +31080,43360 +31081,42704 +31082,41558 +31083,43386 +31084,36675 +31085,35851 +31086,35850 +31087,36597 +31088,44225 +31089,41438 +31090,41438 +31091,41438 +31092,41440 +31093,41440 +31094,41440 +31095,41441 +31096,41441 +31097,41441 +31098,41442 +31099,41442 +31100,41442 +31101,19486 +31102,19486 +31103,19486 +31104,43514 +31105,45168 +31106,43517 +31107,43516 +31108,39435 +31109,44680 +31110,45165 +31111,31135 +31112,43478 +31113,31029 +31114,43483 +31115,43490 +31116,39929 +31117,39929 +31118,39929 +31119,3673 +31120,15274 +31121,7418 +31122,43656 +31123,20628 +31124,24052 +31125,43043 +31126,43235 +31127,43626 +31128,2618 +31129,3673 +31130,43636 +31131,43065 +31132,1438 +31133,21963 +31134,43638 +31135,17902 +31136,43140 +31137,43640 +31138,43045 +31139,43644 +31140,42907 +31141,43646 +31142,43649 +31143,23422 +31144,2618 +31145,43653 +31146,13082 +31147,15420 +31148,28179 +31149,43073 +31150,43654 +31151,42848 +31152,27407 +31153,43655 +31154,35358 +31155,43666 +31156,43665 +31157,16482 +31158,43667 +31159,43661 +31160,26273 +31161,43669 +31162,43668 +31163,43672 +31164,43671 +31165,43673 +31166,43675 +31167,40372 +31168,43676 +31169,43677 +31170,43679 +31171,43680 +31172,43681 +31173,30438 +31174,43682 +31175,43166 +31176,43684 +31177,43686 +31178,40413 +31179,43689 +31180,41964 +31181,43691 +31182,43692 +31183,43695 +31184,43697 +31185,27293 +31186,43313 +31187,32755 +31188,43699 +31189,43700 +31190,43669 +31191,32090 +31192,27601 +31193,43645 +31194,43701 +31195,43702 +31196,39211 +31197,43703 +31198,43704 +31199,43214 +31200,4404 +31201,43705 +31202,41962 +31203,43706 +31204,43708 +31205,41487 +31206,33835 +31207,43711 +31208,43712 +31209,43713 +31210,33029 +31211,43714 +31212,33149 +31213,43715 +31214,33045 +31215,43717 +31216,43718 +31217,43719 +31218,43721 +31219,43723 +31220,43724 +31221,43725 +31222,45175 +31223,43726 +31224,43727 +31225,33328 +31226,42966 +31227,43730 +31228,43729 +31229,43731 +31230,43718 +31231,43732 +31232,43734 +31233,43735 +31234,43736 +31235,28617 +31236,43737 +31237,43738 +31238,43407 +31239,43739 +31240,42842 +31241,43739 +31242,43740 +31243,43741 +31244,43742 +31245,43739 +31246,39886 +31247,43743 +31248,43744 +31249,43745 +31250,43747 +31251,43739 +31252,43739 +31253,43753 +31254,26233 +31255,26202 +31256,44431 +31257,43754 +31258,43120 +31259,43756 +31260,4110 +31261,39631 +31262,24051 +31263,44432 +31264,44430 +31265,43760 +31266,43771 +31267,43763 +31268,8466 +31269,43772 +31270,43774 +31271,992 +31272,43761 +31273,41554 +31274,43785 +31275,43701 +31276,42841 +31277,33808 +31278,24036 +31279,43794 +31280,42932 +31281,45101 +31282,43183 +31283,43732 +31284,42847 +31285,8660 +31286,38704 +31287,43792 +31288,38993 +31289,43796 +31290,28733 +31291,43799 +31292,43800 +31293,43159 +31294,43801 +31295,43222 +31296,43802 +31297,12675 +31298,32167 +31299,43830 +31300,1443 +31301,43810 +31302,43811 +31303,43809 +31304,43812 +31305,43813 +31306,43814 +31307,40606 +31308,43817 +31309,43818 +31310,39435 +31311,43820 +31312,43821 +31313,43822 +31314,43823 +31315,43824 +31316,9154 +31317,43827 +31318,43828 +31319,33808 +31320,43829 +31321,39209 +31322,43831 +31323,43836 +31324,37681 +31325,43835 +31326,43837 +31327,43838 +31328,42325 +31329,42615 +31330,43843 +31331,43846 +31332,41417 +31333,45167 +31334,43858 +31335,42314 +31336,43859 +31337,3667 +31338,39162 +31339,39122 +31340,43861 +31341,43867 +31342,43866 +31343,43424 +31344,7065 +31345,9129 +31346,12734 +31347,12733 +31348,43880 +31349,1168 +31350,30959 +31351,43881 +31352,33020 +31353,43936 +31354,15274 +31355,15274 +31356,15274 +31357,15274 +31358,6270 +31359,15274 +31360,43898 +31361,1301 +31362,1301 +31363,43897 +31364,43902 +31365,26460 +31366,43908 +31367,43907 +31368,43906 +31369,43941 +31370,43940 +31371,43939 +31372,7071 +31373,5287 +31374,1310 +31375,41443 +31376,47172 +31377,41445 +31378,41758 +31379,41446 +31380,39125 +31381,39127 +31382,39124 +31383,39126 +31384,43905 +31385,43948 +31386,10656 +31387,43905 +31388,43949 +31389,6334 +31390,1096 +31391,1096 +31392,1096 +31393,1096 +31394,1096 +31395,1096 +31396,41144 +31397,41145 +31398,44357 +31399,44086 +31400,41147 +31401,1096 +31402,1096 +31403,20611 +31404,43794 +31405,43950 +31406,41148 +31407,41149 +31408,16028 +31409,41154 +31410,41794 +31411,41155 +31412,42171 +31413,41157 +31414,43951 +31415,43953 +31416,25604 +31417,43954 +31418,26540 +31419,43989 +31420,43991 +31421,43992 +31422,43994 +31423,43995 +31424,43993 +31425,43997 +31426,3658 +31427,43998 +31428,43996 +31429,44001 +31430,44000 +31431,26103 +31432,43999 +31433,43965 +31434,44002 +31435,43987 +31436,43968 +31437,21845 +31438,44004 +31439,44005 +31440,44003 +31441,43988 +31442,43972 +31443,44006 +31444,43974 +31445,44007 +31446,43976 +31447,43977 +31448,43978 +31449,43979 +31450,41488 +31451,37856 +31452,44016 +31453,44017 +31454,43982 +31455,44019 +31456,43984 +31457,44021 +31458,44022 +31459,19730 +31460,42862 +31461,34628 +31462,44028 +31463,35843 +31464,44027 +31465,27325 +31466,44023 +31467,44024 +31468,44026 +31469,31434 +31470,44119 +31471,44120 +31472,44121 +31473,44122 +31474,44118 +31475,44116 +31476,44117 +31477,44112 +31478,44114 +31479,44113 +31480,44111 +31481,44108 +31482,18981 +31483,44325 +31484,44110 +31485,44107 +31486,44105 +31487,43987 +31488,44106 +31489,44035 +31490,44294 +31491,44293 +31492,44292 +31493,44041 +31494,44042 +31495,44035 +31496,1103 +31497,44046 +31498,1103 +31499,44047 +31500,1103 +31501,1103 +31502,1155 +31503,1155 +31504,35930 +31505,3426 +31506,3426 +31507,1246 +31508,32924 +31509,38932 +31510,44124 +31511,44129 +31512,14774 +31513,44126 +31514,44130 +31515,44127 +31516,44125 +31517,44061 +31518,44062 +31519,44128 +31520,44131 +31521,44123 +31522,21586 +31523,9851 +31524,39454 +31525,3665 +31526,44086 +31527,31576 +31528,35431 +31529,27809 +31530,39461 +31531,44066 +31532,44067 +31533,44068 +31534,29014 +31535,13710 +31536,22071 +31537,44069 +31538,44070 +31539,44071 +31540,44072 +31541,25640 +31542,44073 +31543,28511 +31544,44074 +31545,44075 +31546,44076 +31547,44077 +31548,44078 +31549,44079 +31550,2571 +31551,44085 +31552,30588 +31553,44163 +31554,44159 +31555,44167 +31556,44161 +31557,44162 +31558,44168 +31559,44164 +31560,44881 +31561,44183 +31562,44178 +31563,44192 +31564,44180 +31565,44187 +31566,44186 +31567,44185 +31568,44575 +31569,44206 +31570,44199 +31571,44208 +31572,44198 +31573,44200 +31574,44207 +31575,44201 +31576,44574 +31577,44218 +31578,44214 +31579,44224 +31580,44215 +31581,44219 +31582,44220 +31583,44221 +31584,43571 +31585,39032 +31586,39033 +31587,39034 +31588,39035 +31589,43573 +31590,41796 +31591,41210 +31592,41211 +31593,41212 +31594,41474 +31595,41482 +31596,41474 +31597,41482 +31598,41253 +31599,41270 +31600,44148 +31601,44150 +31602,44085 +31603,44152 +31604,44153 +31605,44155 +31606,36540 +31607,24051 +31608,44213 +31609,44233 +31610,44226 +31611,44234 +31612,44236 +31613,41133 +31614,41134 +31615,44237 +31616,41135 +31617,30696 +31618,41136 +31619,41137 +31620,41218 +31621,37308 +31622,42195 +31623,41220 +31624,41221 +31625,41222 +31626,37311 +31627,37310 +31628,37312 +31629,37313 +31630,38292 +31631,30321 +31632,38294 +31633,38295 +31634,38296 +31635,41247 +31636,41248 +31637,42199 +31638,41249 +31639,41228 +31640,32103 +31641,32100 +31642,32133 +31643,32127 +31644,32128 +31645,22071 +31646,32103 +31647,32100 +31648,32133 +31649,32127 +31650,32128 +31651,44245 +31652,35850 +31653,41488 +31654,44250 +31655,34378 +31656,44276 +31657,44326 +31658,44254 +31659,44255 +31660,44257 +31661,6739 +31662,11160 +31663,44259 +31664,44260 +31665,44269 +31666,35133 +31667,44286 +31668,44287 +31669,44289 +31670,2473 +31671,44290 +31672,21327 +31673,44291 +31674,1301 +31675,1301 +31676,37864 +31677,44295 +31678,21206 +31679,38721 +31680,6270 +31681,6270 +31682,6270 +31683,44304 +31684,44305 +31685,44022 +31686,26846 +31687,44307 +31688,45180 +31689,44312 +31690,44313 +31691,39211 +31692,39214 +31693,39212 +31694,39209 +31695,39210 +31696,39162 +31697,44306 +31698,7733 +31699,44308 +31700,21968 +31701,44310 +31702,36477 +31703,44314 +31704,37250 +31705,22071 +31706,1310 +31707,24153 +31708,39631 +31709,44475 +31710,44476 +31711,44322 +31712,44323 +31713,15431 +31714,44324 +31715,44316 +31716,44317 +31717,44557 +31718,44319 +31719,44556 +31720,44555 +31721,44321 +31722,27454 +31723,20331 +31724,21027 +31725,16603 +31726,43701 +31727,34318 +31728,9839 +31729,9865 +31730,9847 +31731,28493 +31732,44351 +31733,2708 +31734,44369 +31735,44356 +31736,30690 +31737,40523 +31738,13082 +31739,9124 +31740,15274 +31741,44367 +31742,44368 +31743,44370 +31744,1103 +31745,44375 +31746,31655 +31747,31889 +31748,31889 +31749,31889 +31750,7148 +31751,44377 +31752,20774 +31753,35852 +31754,44405 +31755,22071 +31756,44417 +31757,44416 +31758,44418 +31759,44417 +31760,34488 +31761,44419 +31762,44420 +31763,44428 +31764,44423 +31765,44424 +31766,45370 +31767,20774 +31768,44450 +31769,23295 +31770,44451 +31771,44431 +31772,38758 +31773,44433 +31774,44434 +31775,44435 +31776,44436 +31777,44437 +31778,44438 +31779,44439 +31780,44440 +31781,44441 +31782,44472 +31783,34302 +31784,45164 +31785,44470 +31786,44484 +31787,44447 +31788,44478 +31789,44483 +31790,7570 +31791,43837 +31792,44458 +31793,41549 +31794,44479 +31795,32395 +31796,44480 +31797,44482 +31798,44485 +31799,44487 +31800,2588 +31801,44489 +31802,44490 +31803,44491 +31804,44494 +31805,44497 +31806,44498 +31807,44416 +31808,9840 +31809,928 +31810,41062 +31811,44306 +31812,44523 +31813,4134 +31814,3429 +31815,36540 +31816,44530 +31817,44533 +31818,9852 +31819,44536 +31820,31905 +31821,44546 +31822,26572 +31823,44544 +31824,44548 +31825,41062 +31826,44549 +31827,20774 +31828,32395 +31829,40261 +31830,40261 +31831,40261 +31832,40261 +31833,40261 +31834,40261 +31835,40261 +31836,40261 +31837,1143 +31838,24212 +31839,24212 +31840,30533 +31841,30533 +31842,7899 +31843,7899 +31844,7899 +31845,7899 +31846,7899 +31847,7899 +31848,7899 +31849,7899 +31850,31664 +31851,31664 +31852,24212 +31853,24212 +31854,30533 +31855,30533 +31856,44707 +31857,44709 +31858,44708 +31859,44706 +31860,35848 +31861,39925 +31862,35847 +31863,39929 +31864,35847 +31865,39929 +31866,35845 +31867,39931 +31868,39931 +31869,35845 +31870,15274 +31871,15274 +31872,15274 +31873,15274 +31874,15274 +31875,6270 +31876,6270 +31877,6270 +31878,6270 +31879,6270 +31880,30959 +31881,30959 +31882,44705 +31883,44705 +31884,44705 +31885,44705 +31886,44705 +31887,44705 +31888,44705 +31889,44705 +31890,31755 +31891,31755 +31892,44702 +31893,44702 +31894,44702 +31895,44702 +31896,44702 +31897,31756 +31898,44702 +31899,44702 +31900,44702 +31901,44704 +31902,44704 +31903,44704 +31904,44704 +31905,44704 +31906,44704 +31907,31755 +31908,44704 +31909,44704 +31910,44701 +31911,44701 +31912,44701 +31913,44701 +31914,31755 +31915,44701 +31916,44701 +31917,44701 +31918,44701 +31919,35431 +31920,35472 +31921,35423 +31922,35367 +31923,35438 +31924,35313 +31925,28682 +31926,31616 +31927,33534 +31928,24022 +31929,38541 +31930,36755 +31931,31899 +31932,39211 +31933,39212 +31934,9852 +31935,44633 +31936,44632 +31937,27658 +31938,44631 +31939,44630 +31940,35358 +31941,44624 +31942,44634 +31943,39128 +31944,41640 +31945,44655 +31946,32899 +31947,41533 +31948,40924 +31949,40522 +31950,19498 +31951,44666 +31952,9632 +31953,37862 +31954,13118 +31955,1285 +31956,40888 +31957,40633 +31958,39278 +31959,41558 +31960,45963 +31961,45964 +31962,45965 +31963,45966 +31964,45967 +31965,41559 +31966,41560 +31967,45993 +31968,45998 +31969,47129 +31970,41445 +31971,45996 +31972,45997 +31973,45974 +31974,45975 +31975,46107 +31976,45976 +31977,45978 +31978,39505 +31979,45979 +31980,45980 +31981,45981 +31982,45982 +31983,46108 +31984,41561 +31985,41559 +31986,42385 +31987,45993 +31988,45998 +31989,47129 +31990,45996 +31991,45997 +31992,46009 +31993,46010 +31994,41411 +31995,46008 +31996,46012 +31997,46224 +31998,45958 +31999,45959 +32000,45960 +32001,45961 +32002,45962 +32003,42760 +32004,46017 +32005,46109 +32006,46507 +32007,46022 +32008,46023 +32009,46017 +32010,46109 +32011,46507 +32012,46022 +32013,46023 +32014,41558 +32015,46029 +32016,46188 +32017,46032 +32018,46033 +32019,46035 +32020,46009 +32021,46010 +32022,46224 +32023,46008 +32024,46012 +32025,41562 +32026,39278 +32027,42379 +32028,42759 +32029,46017 +32030,46109 +32031,46507 +32032,46022 +32033,46023 +32034,46029 +32035,46188 +32036,46032 +32037,46033 +32038,46035 +32039,46009 +32040,46010 +32041,46224 +32042,46008 +32043,46012 +32044,42380 +32045,42376 +32046,42380 +32047,45953 +32048,45954 +32049,45955 +32050,45956 +32051,45957 +32052,42379 +32053,41366 +32054,38679 +32055,41557 +32056,45993 +32057,45998 +32058,47129 +32059,45996 +32060,45997 +32061,33941 +32062,44795 +32063,44794 +32064,44685 +32065,44690 +32066,44691 +32067,44796 +32068,44797 +32069,41387 +32070,1102 +32071,1102 +32072,44697 +32073,44698 +32074,12334 +32075,9129 +32076,34516 +32077,42547 +32078,44699 +32079,41387 +32080,44700 +32081,44703 +32082,44710 +32083,44711 +32084,45803 +32085,43013 +32086,34217 +32087,44904 +32088,47180 +32089,38932 +32090,38932 +32091,32332 +32092,44722 +32093,41203 +32094,42194 +32095,41205 +32096,41206 +32097,41207 +32098,42195 +32099,41220 +32100,41218 +32101,41221 +32102,41222 +32103,41218 +32104,42195 +32105,41220 +32106,41221 +32107,41222 +32108,41187 +32109,42196 +32110,41189 +32111,41190 +32112,41191 +32113,43573 +32114,41796 +32115,41210 +32116,41211 +32117,41212 +32118,43573 +32119,41796 +32120,41215 +32121,41211 +32122,41210 +32123,41212 +32124,41213 +32125,41797 +32126,41216 +32127,41217 +32128,43573 +32129,41796 +32130,41210 +32131,41211 +32132,41212 +32133,41196 +32134,41198 +32135,41200 +32136,41201 +32137,41202 +32138,32103 +32139,32100 +32140,32133 +32141,32127 +32142,32128 +32143,32103 +32144,32100 +32145,32133 +32146,32127 +32147,32128 +32148,32103 +32149,32100 +32150,32133 +32151,32127 +32152,32128 +32153,38292 +32154,30321 +32155,38294 +32156,38295 +32157,38296 +32158,38292 +32159,30321 +32160,38294 +32161,38295 +32162,38296 +32163,41183 +32164,26753 +32165,41184 +32166,41185 +32167,41186 +32168,38292 +32169,30321 +32170,38294 +32171,38295 +32172,38296 +32173,42080 +32174,42082 +32175,40960 +32176,42080 +32177,42087 +32178,42090 +32179,42090 +32180,42087 +32181,42081 +32182,42083 +32183,40958 +32184,42086 +32185,42091 +32186,31996 +32187,42084 +32188,42085 +32189,42088 +32190,31379 +32191,42092 +32192,40976 +32193,44920 +32194,44920 +32195,44920 +32196,44920 +32197,44920 +32198,44920 +32199,44920 +32200,44930 +32201,44930 +32202,44930 +32203,44930 +32204,44926 +32205,44926 +32206,44926 +32207,44926 +32208,44926 +32209,44926 +32210,44926 +32211,44924 +32212,44924 +32213,44924 +32214,44924 +32215,44924 +32216,44924 +32217,44927 +32218,44927 +32219,44927 +32220,44927 +32221,44927 +32222,44927 +32223,44921 +32224,44921 +32225,44921 +32226,44921 +32227,44919 +32228,44929 +32229,44925 +32230,44923 +32231,44928 +32232,45289 +32233,45596 +32234,45712 +32235,45489 +32236,44959 +32237,45294 +32238,39123 +32239,45732 +32240,45721 +32241,45764 +32242,45278 +32243,45332 +32244,24675 +32245,45349 +32246,44728 +32247,39129 +32248,45318 +32249,44922 +32250,45760 +32251,45358 +32252,45327 +32253,45491 +32254,44960 +32255,44869 +32256,45356 +32257,45315 +32258,45765 +32259,45762 +32260,39214 +32261,44357 +32262,45345 +32263,45334 +32264,45731 +32265,45730 +32266,44358 +32267,45918 +32268,45324 +32269,47605 +32270,45292 +32271,45724 +32272,44738 +32273,45704 +32274,1096 +32275,45670 +32276,45763 +32277,1096 +32278,46487 +32279,45347 +32280,45715 +32281,1096 +32282,1096 +32283,1096 +32284,1096 +32285,1096 +32286,1096 +32287,1096 +32288,1096 +32289,1096 +32290,1096 +32291,1096 +32292,1096 +32293,1096 +32294,1096 +32295,1096 +32296,1096 +32297,1096 +32298,1096 +32299,1096 +32300,1096 +32301,1096 +32302,1096 +32303,1096 +32304,1096 +32305,1096 +32306,1096 +32307,1096 +32308,1096 +32309,1096 +32310,1096 +32311,1096 +32312,1096 +32313,41350 +32314,44739 +32315,12997 +32316,44739 +32317,44739 +32318,44739 +32319,44739 +32320,44756 +32321,3673 +32322,44765 +32323,45886 +32324,47436 +32325,44962 +32326,45738 +32327,45335 +32328,45707 +32329,47433 +32330,43430 +32331,45885 +32332,45350 +32333,45299 +32334,45355 +32335,44841 +32336,45485 +32337,46490 +32338,45705 +32339,45264 +32340,45714 +32341,46488 +32342,45298 +32343,45357 +32344,47434 +32345,45287 +32346,45277 +32347,45718 +32348,45492 +32349,45351 +32350,41453 +32351,45288 +32352,45326 +32353,45716 +32354,45843 +32355,44771 +32356,44770 +32357,44772 +32358,1246 +32359,34778 +32360,44776 +32361,45275 +32362,4841 +32363,41668 +32364,12310 +32365,45311 +32366,45729 +32367,45319 +32368,34960 +32369,47226 +32370,39212 +32371,44787 +32372,36540 +32373,45722 +32374,45161 +32375,45653 +32376,45713 +32377,45816 +32378,20772 +32379,44783 +32380,12331 +32381,1301 +32382,19562 +32383,44798 +32384,31867 +32385,7188 +32386,7188 +32387,45754 +32388,2480 +32389,42917 +32390,44824 +32391,45787 +32392,44826 +32393,44829 +32394,44830 +32395,44831 +32396,44828 +32397,44836 +32398,45786 +32399,44835 +32400,44833 +32401,27429 +32402,45785 +32403,44839 +32404,44837 +32405,26571 +32406,45135 +32407,44842 +32408,44843 +32409,39203 +32410,39205 +32411,6270 +32412,6270 +32413,44844 +32414,40487 +32415,40487 +32416,40487 +32417,40487 +32418,40487 +32419,40487 +32420,45480 +32421,43539 +32422,43539 +32423,36527 +32424,18102 +32425,44850 +32426,7264 +32427,33296 +32428,44851 +32429,2571 +32430,2571 +32431,2571 +32432,2571 +32433,2571 +32434,2571 +32435,2571 +32436,2571 +32437,2571 +32438,2571 +32439,2571 +32440,2571 +32441,2571 +32442,2571 +32443,2571 +32444,2571 +32445,44852 +32446,9731 +32447,2571 +32448,44855 +32449,24730 +32450,44858 +32451,44858 +32452,39505 +32453,38430 +32454,7694 +32455,44861 +32456,7888 +32457,7887 +32458,44872 +32459,44889 +32460,44892 +32461,45779 +32462,20709 +32463,44932 +32464,36189 +32465,44946 +32466,41428 +32467,1246 +32468,20614 +32469,16161 +32470,44940 +32471,45487 +32472,43889 +32473,43886 +32474,45783 +32475,45780 +32476,45778 +32477,34296 +32478,44949 +32479,45782 +32480,43886 +32481,43430 +32482,41367 +32483,45364 +32484,44955 +32485,44974 +32486,45849 +32487,45853 +32488,45850 +32489,35130 +32490,45854 +32491,45855 +32492,45851 +32493,45852 +32494,43891 +32495,45781 +32496,45488 +32497,45362 +32498,44964 +32499,45630 +32500,45365 +32501,45337 +32502,4045 +32503,25481 +32504,44971 +32505,45322 +32506,45651 +32507,45510 +32508,32395 +32509,32547 +32510,45733 +32511,15274 +32512,44866 +32513,45359 +32514,24022 +32515,42650 +32516,40490 +32517,45757 +32518,45758 +32519,45263 +32520,45003 +32521,46205 +32522,45006 +32523,1246 +32524,45476 +32525,45702 +32526,31616 +32527,31616 +32528,31616 +32529,45008 +32530,45011 +32531,9860 +32532,45029 +32533,45030 +32534,36755 +32535,28733 +32536,45040 +32537,31321 +32538,45042 +32539,45043 +32540,45048 +32541,45050 +32542,45058 +32543,12333 +32544,12333 +32545,12333 +32546,12333 +32547,12333 +32548,12333 +32549,12333 +32550,12333 +32551,12333 +32552,12333 +32553,12333 +32554,12333 +32555,12333 +32556,12333 +32557,12333 +32558,12333 +32559,12333 +32560,12333 +32561,12333 +32562,45059 +32563,2474 +32564,1246 +32565,45060 +32566,45061 +32567,7394 +32568,45404 +32569,45306 +32570,45413 +32571,45402 +32572,45305 +32573,45407 +32574,45399 +32575,45408 +32576,3952 +32577,45403 +32578,6334 +32579,45408 +32580,45775 +32581,45773 +32582,45401 +32583,45774 +32584,45400 +32585,45412 +32586,45400 +32587,45409 +32588,45063 +32589,31899 +32590,46124 +32591,39210 +32592,45283 +32593,45352 +32594,16700 +32595,20611 +32596,15734 +32597,45064 +32598,15736 +32599,15738 +32600,15715 +32601,15737 +32602,45112 +32603,45069 +32604,45073 +32605,45087 +32606,44866 +32607,45095 +32608,45728 +32609,45706 +32610,45096 +32611,45396 +32612,45110 +32613,45111 +32614,45118 +32615,45117 +32616,18050 +32617,9292 +32618,45112 +32619,45132 +32620,7629 +32621,45133 +32622,45134 +32623,9127 +32624,45143 +32625,45144 +32626,45143 +32627,45144 +32628,45143 +32629,45143 +32630,45144 +32631,45144 +32632,45150 +32633,45146 +32634,44923 +32635,35917 +32636,7279 +32637,7221 +32638,39932 +32639,44730 +32640,39205 +32641,39203 +32642,20774 +32643,20774 +32644,22178 +32645,45154 +32646,13024 +32647,45155 +32648,45472 +32649,29935 +32650,45159 +32651,45160 +32652,45163 +32653,15120 +32654,36540 +32655,46204 +32656,45185 +32657,45186 +32658,45197 +32659,45187 +32660,12284 +32661,45188 +32662,45189 +32663,40300 +32664,9847 +32665,45191 +32666,38748 +32667,18079 +32668,18115 +32669,45198 +32670,40300 +32671,45188 +32672,45197 +32673,45187 +32674,12284 +32675,45200 +32676,45184 +32677,45199 +32678,9847 +32679,45189 +32680,45201 +32681,20914 +32682,20914 +32683,20914 +32684,20914 +32685,38273 +32686,1438 +32687,1244 +32688,18170 +32689,18170 +32690,18170 +32691,18170 +32692,18170 +32693,18170 +32694,43551 +32695,43551 +32696,35852 +32697,42032 +32698,43599 +32699,45308 +32700,18170 +32701,18170 +32702,18170 +32703,18170 +32704,18170 +32705,18170 +32706,18170 +32707,18170 +32708,18170 +32709,18170 +32710,18170 +32711,18170 +32712,18170 +32713,18170 +32714,959 +32715,7266 +32716,3146 +32717,45467 +32718,45468 +32719,45367 +32720,1257 +32721,45616 +32722,45617 +32723,11448 +32724,36188 +32725,45389 +32726,45390 +32727,3665 +32728,45391 +32729,45392 +32730,45393 +32731,36036 +32732,45395 +32733,41193 +32734,45398 +32735,39930 +32736,1096 +32737,1096 +32738,1096 +32739,1096 +32740,45416 +32741,45608 +32742,9129 +32743,43355 +32744,1096 +32745,1096 +32746,1096 +32747,1096 +32748,1096 +32749,1096 +32750,1096 +32751,1096 +32752,1096 +32753,1096 +32754,1096 +32755,1096 +32756,45445 +32757,29935 +32758,18080 +32759,41644 +32760,40523 +32761,45435 +32762,45156 +32763,45437 +32764,37850 +32765,37852 +32766,37851 +32767,19547 +32768,45443 +32769,43021 +32770,45453 +32771,45452 +32772,9837 +32773,42619 +32774,24022 +32775,12310 +32776,26680 +32777,45448 +32778,43043 +32779,39124 +32780,41433 +32781,21620 +32782,34149 +32783,15718 +32784,15713 +32785,46053 +32786,46059 +32787,46064 +32788,46059 +32789,46044 +32790,46056 +32791,46049 +32792,46049 +32793,46041 +32794,46044 +32795,46067 +32796,46059 +32797,46052 +32798,46058 +32799,46062 +32800,46058 +32801,46042 +32802,46054 +32803,46048 +32804,46048 +32805,46039 +32806,46042 +32807,46065 +32808,46058 +32809,46051 +32810,46060 +32811,46063 +32812,46060 +32813,46043 +32814,46057 +32815,30804 +32816,46047 +32817,46047 +32818,46040 +32819,46043 +32820,46066 +32821,46060 +32822,45465 +32823,1013 +32824,23875 +32825,45466 +32826,43383 +32827,45469 +32828,45495 +32829,45475 +32830,28513 +32831,47595 +32832,45474 +32833,46253 +32834,22271 +32835,1282 +32836,46252 +32837,45479 +32838,45481 +32839,46254 +32840,37816 +32841,45493 +32842,39435 +32843,32922 +32844,37812 +32845,37810 +32846,37815 +32847,37814 +32848,45135 +32849,46255 +32850,46256 +32851,46257 +32852,46258 +32853,32922 +32854,45496 +32855,39205 +32856,45497 +32857,36142 +32858,36142 +32859,36142 +32860,36142 +32861,36142 +32862,36142 +32863,45500 +32864,43551 +32865,45503 +32866,45505 +32867,45502 +32868,45504 +32869,45506 +32870,45507 +32871,43277 +32872,45508 +32873,45509 +32874,45518 +32875,45526 +32876,45530 +32877,45585 +32878,45549 +32879,45544 +32880,45547 +32881,45547 +32882,44356 +32883,44356 +32884,45557 +32885,45559 +32886,45560 +32887,45564 +32888,7694 +32889,45568 +32890,45569 +32891,45580 +32892,45579 +32893,45595 +32894,45594 +32895,30953 +32896,634 +32897,45597 +32898,37850 +32899,37851 +32900,19547 +32901,37852 +32902,45612 +32903,45156 +32904,45437 +32905,45611 +32906,47089 +32907,3673 +32908,45613 +32909,15718 +32910,15713 +32911,33470 +32912,47520 +32913,18115 +32914,36741 +32915,47477 +32916,8927 +32917,47477 +32918,47477 +32919,47477 +32920,47477 +32921,33469 +32922,45632 +32923,45633 +32924,45634 +32925,45635 +32926,45636 +32927,45637 +32928,45638 +32929,45639 +32930,45640 +32931,45641 +32932,45642 +32933,45643 +32934,45644 +32935,45645 +32936,45646 +32937,45647 +32938,45648 +32939,45649 +32940,45650 +32941,24087 +32942,23728 +32943,45345 +32944,45689 +32945,45890 +32946,45889 +32947,37807 +32948,37808 +32949,45692 +32950,45693 +32951,45692 +32952,7899 +32953,45777 +32954,29863 +32955,29863 +32956,29863 +32957,29859 +32958,29859 +32959,29859 +32960,45784 +32961,39505 +32962,46606 +32963,44858 +32964,44858 +32965,45808 +32966,20874 +32967,45809 +32968,7118 +32969,45827 +32970,45828 +32971,22198 +32972,45840 +32973,41255 +32974,41475 +32975,41164 +32976,41475 +32977,41272 +32978,41484 +32979,46068 +32980,46069 +32981,46071 +32982,41165 +32983,41257 +32984,41167 +32985,41165 +32986,41275 +32987,41167 +32988,46042 +32989,46043 +32990,46044 +32991,41259 +32992,41477 +32993,41481 +32994,41259 +32995,41477 +32996,41481 +32997,46047 +32998,46048 +32999,46049 +33000,29860 +33001,35023 +33002,45887 +33003,35442 +33004,16211 +33005,45896 +33006,46964 +33007,1096 +33008,45900 +33009,25475 +33010,7263 +33011,10822 +33012,45907 +33013,1322 +33014,45908 +33015,45923 +33016,49972 +33017,49974 +33018,49974 +33019,49974 +33020,49974 +33021,49974 +33022,33469 +33023,47110 +33024,47111 +33025,47112 +33026,47113 +33027,5203 +33028,18102 +33029,18102 +33030,18102 +33031,18102 +33032,18102 +33033,18102 +33034,18102 +33035,18102 +33036,18102 +33037,34742 +33038,45927 +33039,45928 +33040,45931 +33041,12925 +33042,19873 +33043,47114 +33044,45938 +33045,19595 +33046,37840 +33047,45840 +33048,32650 +33049,45945 +33050,35025 +33051,34751 +33052,44291 +33053,39119 +33054,31657 +33055,44841 +33056,39129 +33057,39129 +33058,31905 +33059,39129 +33060,43108 +33061,23458 +33062,47446 +33063,6399 +33064,39129 +33065,39162 +33066,39162 +33067,39162 +33068,39162 +33069,43599 +33070,6327 +33071,45984 +33072,35178 +33073,46034 +33074,46037 +33075,46038 +33076,9659 +33077,1103 +33078,46045 +33079,46046 +33081,46134 +33082,18168 +33083,46142 +33085,46154 +33086,7111 +33087,46176 +33088,43677 +33090,21473 +33091,46184 +33092,45157 +33093,45156 +33094,5122 +33095,7111 +33096,18102 +33097,35431 +33101,37388 +33102,15794 +33103,46209 +33104,46210 +33105,41734 +33106,7048 +33107,2622 +33108,46211 +33110,46220 +33112,6387 +33113,35178 +33114,34749 +33115,34749 +33117,46716 +33118,40622 +33122,26202 +33124,6270 +33125,46247 +33126,46248 +33127,2757 +33128,46249 +33130,44920 +33131,44920 +33132,44920 +33133,44920 +33134,44920 +33135,44930 +33136,44930 +33137,44930 +33138,44926 +33139,44926 +33140,44926 +33141,44926 +33142,44926 +33143,44926 +33144,44926 +33145,6270 +33146,39635 +33147,39635 +33148,7798 +33149,7798 +33150,7798 +33151,7798 +33152,7798 +33153,7798 +33154,32955 +33155,6270 +33156,6270 +33157,6270 +33158,6270 +33159,6270 +33160,6270 +33161,46260 +33162,46260 +33163,35406 +33165,7798 +33166,46273 +33167,46298 +33173,46324 +33174,6270 +33175,19497 +33176,47504 +33179,46325 +33182,47504 +33183,47504 +33184,47504 +33185,9635 +33186,15274 +33189,47504 +33191,46781 +33192,48216 +33193,35431 +33194,35431 +33195,35431 +33196,35431 +33197,9858 +33198,9852 +33199,9858 +33200,9858 +33201,31603 +33202,6327 +33203,47159 +33204,46382 +33205,1096 +33206,47032 +33207,46784 +33208,22191 +33209,15274 +33211,46785 +33214,46789 +33215,47020 +33216,49359 +33217,3225 +33218,21473 +33219,21473 +33222,46792 +33223,46524 +33224,17608 +33225,17608 +33226,3225 +33228,46430 +33229,46431 +33230,46432 +33231,46433 +33232,46434 +33233,46435 +33234,40694 +33235,46436 +33236,40853 +33237,46437 +33239,46438 +33240,8712 +33241,46439 +33242,46440 +33243,46441 +33244,46442 +33245,46443 +33246,35639 +33247,46444 +33248,38664 +33249,46445 +33250,46446 +33251,46447 +33252,46448 +33253,46449 +33254,21327 +33255,46462 +33256,46461 +33257,46452 +33258,46463 +33259,46454 +33260,46455 +33261,35076 +33262,9837 +33263,9834 +33264,9847 +33265,9854 +33266,46456 +33267,46457 +33268,46458 +33269,46459 +33270,20214 +33271,20110 +33272,46460 +33273,20667 +33274,38651 +33277,9135 +33279,42651 +33280,46793 +33281,33906 +33283,46801 +33285,42602 +33286,47037 +33287,46803 +33288,46195 +33291,46804 +33292,46514 +33293,44358 +33296,46805 +33297,43701 +33298,47127 +33299,46807 +33300,46809 +33302,7280 +33303,46810 +33304,46812 +33305,6270 +33306,4939 +33307,7798 +33309,42376 +33313,42376 +33315,7899 +33317,48222 +33322,46813 +33324,48225 +33325,46817 +33326,48211 +33327,47898 +33328,46978 +33329,46979 +33331,47021 +33332,48212 +33333,43292 +33334,46981 +33338,46602 +33354,46982 +33356,46983 +33357,41484 +33386,47036 +33388,46985 +33389,46986 +33421,46987 +33432,47173 +33442,47710 +33446,46989 +33453,48434 +33455,46679 +33463,48436 +33464,46990 +33465,46991 +33466,9852 +33467,46992 +33468,46994 +33469,46995 +33471,46996 +33473,46998 +33474,48215 +33476,46999 +33478,47042 +33479,47001 +33480,47002 +33481,47003 +33482,45845 +33483,47005 +33484,47589 +33489,48223 +33490,47008 +33491,47010 +33492,47011 +33493,47012 +33494,46916 +33495,47176 +33496,33534 +33497,35313 +33498,31576 +33499,45362 +33500,39120 +33501,47015 +33502,34961 +33503,34959 +33504,34960 +33505,46045 +33506,47071 +33507,47072 +33508,47073 +33509,39640 +33510,47088 +33512,47016 +33513,47017 +33514,47018 +33515,47022 +33516,47023 +33517,47024 +33518,47025 +33519,47026 +33520,47027 +33521,46692 +33522,49359 +33523,46784 +33524,40515 +33527,47029 +33528,47030 +33529,47031 +33530,47177 +33531,47034 +33532,47035 +33533,47160 +33534,47034 +33535,47035 +33536,46089 +33537,47041 +33538,47045 +33539,47044 +33540,47043 +33542,40066 +33543,40937 +33552,47049 +33557,45753 +33559,46105 +33566,47050 +33570,46712 +33572,46712 +33573,46712 +33574,46712 +33577,47054 +33578,47055 +33579,47056 +33580,47057 +33582,49057 +33583,47060 +33584,47061 +33585,48224 +33586,48227 +33587,48226 +33588,47062 +33589,47065 +33590,47067 +33591,47068 +33592,42615 +33593,47069 +33600,46712 +33601,46712 +33602,46712 +33603,46712 +33622,6270 +33623,46712 +33624,46712 +33625,46712 +33626,46712 +33633,39203 +33636,45714 +33640,47175 +33660,42651 +33661,42376 +33662,47606 +33663,47742 +33664,46880 +33665,46883 +33666,47951 +33667,46882 +33668,46881 +33669,46962 +33670,47732 +33671,46941 +33672,48262 +33673,46946 +33674,46944 +33675,46945 +33676,48285 +33677,46871 +33678,46872 +33679,46876 +33680,46873 +33681,39505 +33682,46876 +33683,46871 +33684,48285 +33685,46873 +33686,46872 +33687,47740 +33688,46900 +33689,46962 +33690,46941 +33691,48261 +33692,46946 +33693,46944 +33694,46945 +33695,47949 +33696,46949 +33697,47759 +33698,46951 +33699,46953 +33700,46940 +33701,47825 +33702,46937 +33703,46938 +33704,46939 +33705,46967 +33706,46891 +33707,46892 +33708,46894 +33709,46895 +33710,46890 +33711,46891 +33712,46892 +33713,46894 +33714,46895 +33715,46890 +33716,47744 +33717,46932 +33718,48113 +33719,46925 +33720,46926 +33721,46927 +33722,47949 +33723,46949 +33724,47759 +33725,46951 +33726,46953 +33727,40368 +33728,46867 +33729,46868 +33730,49686 +33731,46866 +33732,46865 +33733,47606 +33734,46970 +33735,42376 +33736,39505 +33737,46966 +33738,46891 +33739,46892 +33740,46894 +33741,46895 +33742,46890 +33743,47740 +33744,46932 +33745,48113 +33746,46925 +33747,46926 +33748,46927 +33749,47949 +33750,46949 +33751,47759 +33752,46951 +33753,46953 +33754,47733 +33755,42376 +33756,47733 +33757,46928 +33758,47799 +33759,46930 +33760,46931 +33761,46933 +33762,46970 +33763,46973 +33764,46606 +33765,38679 +33766,47743 +33767,46941 +33768,48262 +33769,46946 +33770,46944 +33771,46945 +33772,46012 +33775,6358 +33776,6358 +33777,6358 +33782,39930 +33783,6270 +33784,20774 +33785,46712 +33786,46712 +33787,46712 +33788,46712 +33789,46831 +33790,46832 +33791,46839 +33792,15274 +33793,46840 +33795,46863 +33797,47356 +33798,46916 +33799,45840 +33800,46560 +33801,47733 +33803,26497 +33804,1102 +33805,47004 +33807,13082 +33808,51920 +33809,40160 +33810,47019 +33811,47047 +33812,44735 +33813,47092 +33814,12989 +33815,47048 +33816,33467 +33817,33467 +33818,33467 +33820,47051 +33821,5283 +33822,1208 +33823,24711 +33824,38902 +33825,46273 +33826,45651 +33827,8093 +33828,47091 +33829,47093 +33830,35439 +33831,47094 +33832,47095 +33833,45500 +33834,47098 +33835,19764 +33836,46252 +33837,47096 +33838,22200 +33839,47100 +33840,41681 +33841,9659 +33842,1103 +33843,46045 +33844,47102 +33845,34732 +33846,3673 +33847,31434 +33848,47100 +33849,47104 +33850,47836 +33851,47096 +33852,47096 +33853,39129 +33854,13714 +33855,26001 +33856,7695 +33857,9151 +33858,43101 +33859,928 +33860,31205 +33861,47106 +33862,47130 +33863,47220 +33864,47255 +33865,47109 +33866,42924 +33867,24711 +33868,51758 +33869,15274 +33870,15274 +33871,6270 +33872,39720 +33873,15274 +33874,25469 +33875,15274 +33876,47405 +33877,47406 +33878,47408 +33879,47409 +33880,47428 +33881,47411 +33882,47412 +33883,47413 +33884,47414 +33885,47409 +33886,47428 +33887,47411 +33888,47415 +33889,47416 +33890,47417 +33891,47900 +33892,47403 +33893,46057 +33894,47418 +33895,47419 +33896,47420 +33897,47418 +33898,47419 +33899,47420 +33900,47421 +33901,47422 +33902,47423 +33903,47415 +33904,47416 +33905,47417 +33906,47418 +33907,47419 +33908,47420 +33909,47415 +33910,47416 +33911,47417 +33912,47425 +33913,47426 +33914,47427 +33915,47409 +33916,47428 +33917,47411 +33918,39129 +33919,39129 +33920,39162 +33921,39162 +33922,39162 +33923,39162 +33924,47763 +33925,6270 +33926,47123 +33927,8935 +33928,47124 +33929,18102 +33930,31846 +33931,31846 +33932,31846 +33933,31846 +33934,47132 +33935,47133 +33936,34960 +33937,34960 +33938,34960 +33939,25246 +33940,25246 +33941,25246 +33942,34953 +33943,34953 +33944,34953 +33945,34953 +33946,34953 +33947,34953 +33948,34960 +33949,34960 +33950,34960 +33951,25246 +33952,25246 +33953,25246 +33954,1096 +33955,7744 +33956,18102 +33957,47144 +33958,47144 +33959,47144 +33963,47311 +33964,47037 +33965,46995 +33966,47221 +33967,47170 +33968,47254 +33969,47256 +33970,46990 +33971,47049 +33972,46983 +33973,46803 +33974,47171 +33975,47174 +33976,17343 +33977,17343 +33978,47178 +33979,47188 +33980,47192 +33981,47198 +33982,47207 +33983,47212 +33984,47225 +33985,7066 +33986,26537 +33987,26537 +33988,26537 +33989,26537 +33990,47230 +33991,47228 +33992,47229 +33993,47232 +33994,26537 +33995,26537 +33996,26537 +33997,26537 +33998,26537 +33999,47934 +34000,50842 +34001,50845 +34002,50843 +34003,50844 +34004,50845 +34005,50842 +34006,50843 +34007,50844 +34008,45840 +34009,47248 +34010,47249 +34011,47250 +34012,47252 +34014,47771 +34015,46962 +34016,46967 +34017,18102 +34018,18102 +34019,18102 +34020,18102 +34021,18102 +34022,18102 +34028,47178 +34029,47330 +34033,39505 +34036,7899 +34037,7899 +34038,7899 +34039,30926 +34044,29131 +34045,47285 +34046,47291 +34047,47293 +34048,4933 +34049,47294 +34050,47696 +34059,46606 +34060,47773 +34061,47774 +34062,47912 +34063,25469 +34064,35831 +34065,40695 +34066,46606 +34067,2593 +34068,47314 +34071,46266 +34073,47325 +34074,47325 +34075,47325 +34077,49426 +34085,48130 +34086,47629 +34087,48131 +34089,3093 +34092,42378 +34094,26537 +34095,26537 +34098,47444 +34099,2585 +34100,21712 +34103,811 +34104,811 +34105,47447 +34106,47559 +34107,47454 +34109,1588 +34110,7798 +34113,36529 +34114,1301 +34129,49164 +34130,4836 +34140,47492 +34141,47493 +34150,47917 +34151,47507 +34152,47508 +34153,47509 +34154,47510 +34155,47511 +34156,47512 +34157,47730 +34158,44439 +34159,44440 +34160,39126 +34161,7111 +34162,47521 +34163,47522 +34164,48078 +34165,49970 +34166,39123 +34167,47988 +34168,47990 +34169,47975 +34170,48295 +34171,7798 +34172,15274 +34173,15274 +34174,15274 +34175,15274 +34176,47992 +34177,48511 +34178,48507 +34179,48894 +34180,47991 +34181,48296 +34182,49132 +34183,47996 +34184,48509 +34185,48907 +34186,47993 +34188,47995 +34189,31655 +34190,48869 +34191,47527 +34192,50016 +34193,50017 +34194,47998 +34195,47999 +34196,48294 +34197,49971 +34198,48290 +34199,48908 +34200,811 +34201,811 +34202,50013 +34203,48002 +34204,48512 +34205,48870 +34206,48895 +34207,47528 +34208,48004 +34209,48005 +34210,50012 +34211,48011 +34212,48012 +34213,45948 +34214,48079 +34215,48015 +34216,48016 +34218,811 +34220,39205 +34221,6270 +34227,43407 +34228,48014 +34229,48013 +34230,44358 +34231,48906 +34232,48299 +34233,48300 +34234,48018 +34240,48905 +34241,48868 +34242,48871 +34243,48022 +34244,48020 +34245,48019 +34246,42861 +34247,48023 +34248,31200 +34249,47772 +34250,4233 +34251,24591 +34252,47577 +34253,47581 +34254,19497 +34255,4045 +34256,46252 +34257,47604 +34258,47607 +34259,23739 +34261,15274 +34262,811 +34263,47630 +34264,47631 +34265,47632 +34266,47633 +34267,47634 +34268,47636 +34269,47637 +34270,47638 +34271,47639 +34272,47640 +34273,43880 +34274,47641 +34275,47642 +34276,47643 +34277,43383 +34278,47644 +34279,47645 +34280,45469 +34281,43519 +34282,47646 +34283,47647 +34284,47648 +34285,47649 +34286,47650 +34287,47653 +34288,47652 +34289,47654 +34290,47655 +34291,47656 +34292,47657 +34293,47658 +34294,47659 +34295,47660 +34296,47661 +34297,47662 +34298,47663 +34299,47664 +34300,47665 +34301,47666 +34302,47667 +34303,47668 +34304,47669 +34305,47670 +34306,47671 +34307,47672 +34308,47673 +34309,47674 +34310,47675 +34311,47676 +34312,37194 +34313,47677 +34314,47678 +34315,47679 +34316,47680 +34317,47681 +34318,47682 +34319,15274 +34320,47683 +34321,47684 +34322,47685 +34323,47686 +34324,47687 +34325,45530 +34326,47688 +34327,47689 +34328,47690 +34329,48026 +34330,38762 +34331,48028 +34332,48025 +34333,48024 +34334,48902 +34335,48029 +34336,48031 +34337,48030 +34338,35023 +34339,50018 +34340,50019 +34341,48032 +34342,48305 +34343,48034 +34344,48306 +34345,48033 +34346,48038 +34347,48040 +34348,48042 +34349,48035 +34350,48037 +34351,48039 +34352,48036 +34353,44949 +34354,45779 +34355,45778 +34356,45783 +34357,43886 +34358,39214 +34359,45351 +34360,45351 +34361,39126 +34362,31616 +34363,31616 +34364,48925 +34365,48921 +34366,48923 +34367,48920 +34368,47694 +34369,48912 +34370,48018 +34371,48916 +34372,48917 +34373,48913 +34374,48914 +34375,48918 +34376,48919 +34377,48927 +34378,48926 +34379,48928 +34380,48905 +34381,48043 +34382,48045 +34383,48050 +34384,47975 +34385,47975 +34386,48307 +34388,50015 +34389,50017 +34390,48004 +34391,48005 +34392,48052 +34393,50014 +34394,48015 +34395,48053 +34396,48013 +34397,48054 +34398,48055 +34399,48384 +34400,48058 +34401,48057 +34402,48025 +34403,48019 +34404,48019 +34405,50020 +34406,48387 +34407,48059 +34408,48059 +34409,48060 +34410,47915 +34411,47918 +34412,47919 +34413,811 +34414,34874 +34415,25134 +34416,18999 +34417,28688 +34418,47699 +34419,26358 +34420,3331 +34421,28439 +34422,34708 +34423,47700 +34424,47701 +34425,47926 +34426,33535 +34427,48503 +34428,48506 +34429,48505 +34430,48504 +34431,48313 +34432,48312 +34433,48314 +34434,48321 +34435,48321 +34436,48349 +34437,48325 +34438,48325 +34439,48326 +34440,17889 +34441,48347 +34442,48348 +34443,48315 +34444,48311 +34445,48322 +34446,48322 +34447,48316 +34448,48324 +34449,47711 +34450,47712 +34451,47713 +34452,39978 +34453,47714 +34454,47715 +34455,47716 +34456,47717 +34457,47718 +34458,47719 +34459,47720 +34460,47721 +34461,47722 +34462,47723 +34463,47724 +34464,34779 +34465,19495 +34466,36511 +34467,40548 +34469,7841 +34470,48163 +34471,48177 +34472,48172 +34473,48158 +34474,7841 +34475,47731 +34476,7841 +34477,9154 +34478,47745 +34479,13686 +34480,47746 +34481,15274 +34482,20709 +34483,39827 +34484,47760 +34485,48355 +34486,47761 +34487,48355 +34488,48355 +34489,47765 +34490,31783 +34491,15274 +34492,47777 +34493,47931 +34494,47780 +34495,19115 +34496,8117 +34497,47779 +34498,47769 +34499,47770 +34500,47776 +34501,36187 +34502,29165 +34503,12331 +34504,11448 +34505,47802 +34506,47803 +34507,47804 +34508,47805 +34509,47806 +34510,47807 +34511,47808 +34512,47809 +34513,47810 +34514,47811 +34515,47812 +34516,39488 +34517,39004 +34518,47816 +34519,47817 +34520,47818 +34521,47819 +34522,47820 +34523,47821 +34524,47822 +34525,47823 +34526,47824 +34527,48356 +34528,48356 +34529,43083 +34530,48183 +34531,47879 +34532,47908 +34533,47969 +34534,23211 +34535,47892 +34536,47894 +34537,38720 +34538,36862 +34539,36862 +34540,47743 +34541,48359 +34542,48358 +34543,48358 +34544,47899 +34545,48358 +34546,48360 +34547,48361 +34548,12644 +34549,48353 +34550,26537 +34551,26537 +34552,47909 +34553,47911 +34554,48352 +34555,48352 +34556,48352 +34557,48354 +34558,48357 +34559,48366 +34560,48366 +34561,48366 +34562,48367 +34563,48368 +34564,48371 +34565,48370 +34566,48370 +34567,48370 +34568,48372 +34569,48372 +34570,48364 +34571,48363 +34572,48363 +34573,48362 +34574,48365 +34575,48369 +34576,47522 +34577,47521 +34578,47095 +34579,47294 +34580,47696 +34581,40522 +34582,44356 +34583,26420 +34584,26420 +34585,26420 +34586,47920 +34587,26420 +34588,47907 +34589,47921 +34590,47911 +34591,47908 +34592,26420 +34593,26420 +34594,26420 +34595,26420 +34596,47923 +34599,35178 +34601,48174 +34602,48164 +34603,48157 +34604,48166 +34605,48155 +34606,48161 +34607,48165 +34608,48170 +34609,48169 +34610,48171 +34611,48159 +34612,42604 +34613,48173 +34614,48175 +34615,48167 +34616,48156 +34622,47933 +34625,31906 +34626,44269 +34627,47950 +34628,41438 +34629,41438 +34630,41438 +34631,41440 +34632,41440 +34633,41440 +34634,41441 +34635,41441 +34636,41441 +34641,15736 +34646,48901 +34664,37215 +34665,33237 +34666,48062 +34667,48061 +34670,37049 +34671,48065 +34672,37209 +34673,48066 +34674,48067 +34675,48068 +34676,48070 +34677,31889 +34678,39212 +34679,48071 +34680,43085 +34683,48964 +34684,48992 +34685,48963 +34686,48802 +34689,6270 +34697,42896 +34698,43012 +34699,31300 +34700,48201 +34701,17137 +34702,34812 +34703,41417 +34704,39126 +34705,42996 +34706,40044 +34707,42961 +34708,43086 +34712,9837 +34776,26537 +34780,40696 +34783,48248 +34788,48252 +34789,48253 +34790,39389 +34791,48255 +34792,38794 +34793,48256 +34794,39958 +34795,48257 +34796,48258 +34797,44339 +34798,24022 +34799,48259 +34805,26537 +34807,48286 +34808,48287 +34809,48985 +34810,47067 +34822,48335 +34823,30738 +34824,48336 +34825,48337 +34826,963 +34827,15322 +34828,48805 +34829,48339 +34831,44725 +34832,18119 +34833,7290 +34834,15274 +34835,48340 +34836,48720 +34837,31800 +34838,48342 +34839,11947 +34840,4283 +34841,8562 +34843,30593 +34845,34796 +34846,1282 +34847,43891 +34848,48373 +34849,48374 +34850,48900 +34851,48374 +34852,34509 +34853,48377 +34854,48376 +34855,34831 +34856,34833 +34857,48378 +34858,48379 +34859,48380 +34860,7842 +34861,48725 +34862,48382 +34863,3568 +34864,48388 +34865,48743 +34866,18538 +34867,48744 +34868,48742 +34872,7798 +34873,48395 +34874,48396 +34875,48397 +34876,48398 +34877,48399 +34878,48400 +34879,48401 +34880,48402 +34881,48403 +34882,48404 +34883,48405 +34884,48406 +34885,48407 +34886,48408 +34887,49005 +34888,45362 +34889,44358 +34890,43095 +34891,48899 +34892,49114 +34893,49113 +34894,48888 +34895,48887 +34896,49111 +34898,48935 +34900,48446 +34901,48449 +34902,48452 +34903,48967 +34904,47171 +34905,48456 +34906,48450 +34907,7162 +34910,48454 +34911,48451 +34912,48466 +34914,48468 +34916,48467 +34917,48469 +34918,47064 +34919,42327 +34921,48471 +34922,48470 +34923,48291 +34924,48481 +34925,48482 +34926,48479 +34927,48484 +34928,48486 +34929,48483 +34930,48487 +34931,48493 +34932,48490 +34933,48491 +34934,48492 +34935,48358 +34936,48494 +34937,45319 +34938,48495 +34939,48496 +34940,45220 +34941,42651 +34942,48476 +34943,46359 +34944,48477 +34945,48473 +34946,48474 +34947,48472 +34949,48888 +34950,49112 +34951,49112 +34952,48888 +34953,48966 +34955,9116 +34985,46606 +34986,49154 +34987,47994 +34988,49136 +34989,49993 +34990,48604 +34991,48605 +34992,48606 +34993,48608 +34994,48609 +34995,49150 +34996,49150 +34997,49149 +34998,49966 +34999,48601 +35000,48603 +35001,48591 +35002,49968 +35003,48618 +35004,50005 +35005,49952 +35006,50009 +35007,49954 +35008,39505 +35009,50009 +35010,50005 +35011,48618 +35012,49954 +35013,49955 +35014,49135 +35015,49137 +35016,39505 +35017,49150 +35018,49138 +35019,34953 +35020,34953 +35021,9659 +35022,49966 +35023,48602 +35024,48603 +35025,48591 +35026,49968 +35027,50001 +35028,48640 +35029,48740 +35030,50002 +35031,50003 +35032,49965 +35033,48739 +35034,48597 +35035,48598 +35036,48599 +35037,49139 +35038,49139 +35039,34960 +35040,1103 +35041,34960 +35042,49969 +35043,48611 +35044,48613 +35045,48615 +35046,48616 +35047,49140 +35048,49969 +35049,48611 +35050,48613 +35051,48615 +35052,48616 +35053,49960 +35054,50007 +35055,49964 +35056,50010 +35057,49963 +35058,49141 +35059,50001 +35060,48640 +35061,48740 +35062,50002 +35063,50003 +35064,49142 +35065,46606 +35066,49999 +35067,49998 +35068,49685 +35069,49996 +35070,49995 +35071,49136 +35072,49143 +35073,49153 +35074,39505 +35075,49393 +35076,49145 +35077,49969 +35078,48611 +35079,48614 +35080,48615 +35081,48616 +35082,49146 +35083,49960 +35084,50007 +35085,49964 +35086,50010 +35087,49963 +35088,50001 +35089,48640 +35090,48740 +35091,50002 +35092,50003 +35093,49141 +35094,49155 +35095,49141 +35096,50011 +35097,50008 +35098,49957 +35099,49958 +35100,49959 +35101,49143 +35102,49147 +35103,49148 +35104,25246 +35105,25246 +35106,46045 +35107,46606 +35108,38679 +35109,47994 +35110,49152 +35111,49966 +35112,48601 +35113,48603 +35114,48591 +35115,49968 +35117,48521 +35128,36194 +35129,39129 +35130,39129 +35131,39129 +35132,39162 +35133,39162 +35134,39162 +35135,39162 +35136,48672 +35137,48678 +35138,48685 +35139,48678 +35140,48663 +35141,48679 +35142,48675 +35143,48675 +35144,48688 +35145,48663 +35146,48669 +35147,48675 +35148,48663 +35149,48691 +35150,48678 +35151,48671 +35152,48676 +35153,48683 +35154,48676 +35155,48660 +35156,48677 +35157,48674 +35158,48674 +35159,48686 +35160,48660 +35161,48661 +35162,48674 +35163,48660 +35164,48689 +35165,48676 +35166,48670 +35167,48681 +35168,48684 +35169,48681 +35170,48662 +35171,48682 +35172,48673 +35173,48673 +35174,48687 +35175,48662 +35176,48664 +35177,48673 +35178,48662 +35179,48690 +35180,48681 +35181,45781 +35182,43886 +35183,45782 +35184,45780 +35185,43889 +35186,7085 +35187,7085 +35189,7085 +35190,7085 +35191,7085 +35192,7085 +35193,7085 +35194,7085 +35195,7085 +35196,7085 +35197,7085 +35198,7085 +35199,7085 +35200,7085 +35201,7085 +35202,7085 +35203,7085 +35204,7085 +35205,7085 +35206,7085 +35207,7085 +35208,7085 +35209,7085 +35210,7085 +35211,7085 +35212,7085 +35213,7085 +35214,7085 +35215,7085 +35216,7085 +35217,7085 +35218,7085 +35219,7085 +35220,47994 +35221,48576 +35223,48708 +35225,48951 +35226,48948 +35227,48807 +35229,48590 +35230,3331 +35231,48617 +35232,20342 +35233,48645 +35236,48680 +35237,48692 +35238,1096 +35239,1096 +35240,1096 +35241,1096 +35242,1096 +35243,1096 +35244,1096 +35245,1096 +35246,1096 +35247,1096 +35248,1096 +35249,1096 +35250,1096 +35251,1096 +35252,1096 +35253,1096 +35254,1096 +35255,1096 +35256,1096 +35257,1096 +35258,1096 +35259,1096 +35260,1096 +35261,1096 +35262,1096 +35263,1096 +35264,1096 +35265,1096 +35266,1096 +35267,1096 +35268,1096 +35269,1096 +35270,1096 +35271,1096 +35273,1155 +35274,34149 +35275,8132 +35277,5567 +35279,48709 +35280,48710 +35282,39129 +35283,39129 +35284,39129 +35285,4813 +35286,4813 +35287,24521 +35290,39162 +35291,39162 +35292,39162 +35294,15274 +35295,15274 +35296,15274 +35297,7798 +35298,7798 +35299,7798 +35300,1096 +35301,1096 +35302,1096 +35303,1096 +35304,6270 +35305,6270 +35306,6270 +35307,6270 +35308,6270 +35309,6270 +35310,6270 +35311,6270 +35313,38896 +35314,7415 +35315,39925 +35316,39931 +35317,39162 +35318,39930 +35319,39162 +35320,39129 +35321,46812 +35322,6270 +35323,6270 +35324,43292 +35325,6270 +35326,39984 +35327,39984 +35328,48717 +35329,48719 +35330,48721 +35331,48722 +35332,48723 +35333,48726 +35334,48727 +35335,48728 +35336,48729 +35337,48730 +35338,48728 +35339,48726 +35340,48727 +35341,48729 +35342,48730 +35343,48733 +35344,48734 +35345,48735 +35346,48736 +35347,41182 +35348,3568 +35349,33467 +35350,33467 +35351,42378 +35356,48745 +35357,48746 +35358,48747 +35359,48748 +35360,48750 +35361,48745 +35362,48746 +35363,48747 +35364,48748 +35365,48750 +35366,48751 +35367,48752 +35368,48753 +35369,48754 +35370,48755 +35371,48751 +35372,48746 +35373,48747 +35374,48748 +35375,48750 +35376,48759 +35377,48760 +35378,48761 +35379,48762 +35380,48763 +35381,48756 +35382,48757 +35383,48758 +35384,48764 +35385,48765 +35386,48756 +35387,48757 +35388,48758 +35389,48764 +35390,48765 +35391,48756 +35392,48757 +35393,48758 +35394,48764 +35395,48765 +35396,48809 +35397,16598 +35398,48810 +35399,48811 +35400,48812 +35402,48792 +35403,48793 +35404,48794 +35405,48795 +35406,48796 +35407,48797 +35408,48798 +35409,48799 +35410,48800 +35411,48801 +35412,48792 +35413,48793 +35414,48794 +35415,48795 +35416,48796 +35417,48813 +35418,48814 +35419,48819 +35420,48820 +35421,48822 +35422,48821 +35423,48823 +35424,48826 +35425,48827 +35426,48828 +35427,48829 +35428,48830 +35429,48831 +35430,48832 +35431,48833 +35432,48834 +35433,48835 +35434,48836 +35435,48838 +35436,48839 +35437,48837 +35438,48840 +35439,48841 +35440,48842 +35441,48843 +35442,48844 +35443,48845 +35444,43104 +35445,48846 +35446,48847 +35447,48848 +35448,48849 +35449,48850 +35450,48852 +35451,48853 +35452,48854 +35453,48855 +35454,48856 +35455,21204 +35456,48857 +35457,48858 +35458,48859 +35459,48860 +35460,48861 +35461,30995 +35462,48862 +35463,48806 +35464,48723 +35465,48733 +35466,48726 +35467,48730 +35468,48751 +35469,48750 +35470,48748 +35471,48751 +35472,48756 +35473,48757 +35474,48758 +35475,48760 +35476,48796 +35477,48793 +35478,48799 +35485,40556 +35487,44920 +35488,44920 +35489,44920 +35494,15239 +35495,15239 +35496,15239 +35497,15239 +35498,7798 +35499,25482 +35500,7798 +35501,39203 +35502,1102 +35503,39205 +35504,48873 +35505,1301 +35507,31907 +35508,12567 +35509,39212 +35510,48875 +35511,31603 +35512,35023 +35513,44583 +35514,48878 +35516,20342 +35517,1096 +35518,1096 +35519,1096 +35520,1096 +35521,1096 +35522,1096 +35523,1096 +35524,1096 +35525,1096 +35526,1096 +35527,1096 +35528,1096 +35529,1096 +35530,1096 +35531,1096 +35532,1096 +35533,7085 +35534,7085 +35535,7085 +35536,7085 +35537,7085 +35538,7085 +35539,7085 +35540,7085 +35541,7085 +35542,7085 +35543,7085 +35544,7085 +35545,7085 +35546,7085 +35547,7085 +35548,7085 +35549,7085 +35550,7085 +35551,7085 +35552,7085 +35553,7085 +35554,7085 +35555,7085 +35556,7085 +35557,29169 +35562,1762 +35563,25473 +35564,1301 +35565,25468 +35566,1301 +35568,20874 +35569,20874 +35581,46155 +35582,6270 +35674,41913 +35684,48965 +35691,35301 +35693,48970 +35694,39917 +35695,1301 +35696,1301 +35697,1301 +35698,1301 +35699,1301 +35700,39918 +35702,39915 +35703,48971 +35707,39929 +35708,6270 +35710,20803 +35712,48983 +35713,48725 +35714,40075 +35716,37854 +35717,37853 +35719,48996 +35720,1656 +35721,47901 +35722,40551 +35723,44843 +35725,7065 +35728,40103 +35729,40104 +35730,40106 +35731,40394 +35732,49062 +35733,39123 +35748,49082 +35749,49082 +35750,49082 +35751,49082 +35752,1301 +35753,1301 +35754,1301 +35755,1301 +35756,7798 +35758,44921 +35759,44921 +35760,44927 +35761,44926 +35762,1096 +35763,1096 +35764,1096 +35765,1096 +35766,1096 +35767,1096 +35768,1096 +35769,1096 +35770,43359 +35771,43359 +35772,43359 +35773,43359 +35828,49127 +35874,34865 +35906,44590 +35945,30634 +36737,49152 +36748,18101 +36761,46247 +36876,10365 +36877,8927 +36941,49625 +37011,47504 +37012,49561 +37059,47158 +37127,49650 +37128,49636 +37148,7629 +37297,4841 +37298,23714 +37311,45500 +37312,21115 +37313,39186 +37460,11907 +37488,18079 +37489,18079 +37490,18079 +37491,18079 +37492,18079 +37493,18079 +37494,18079 +37495,18079 +37496,18079 +37497,18079 +37498,18079 +37499,18079 +37503,44924 +37504,1096 +37567,24052 +37571,7695 +37582,29722 +37583,50455 +37584,37659 +37585,13715 +37586,49839 +37588,49840 +37596,49873 +37597,23262 +37598,49870 +37599,7695 +37604,49880 +37605,49881 +37606,4584 +37676,42378 +37710,20628 +37719,49950 +37736,7695 +37737,7695 +37739,49147 +37740,49146 +37750,7273 +37816,7273 +37827,29447 +37828,51020 +37829,50216 +37863,44269 +37864,37840 +37865,37841 +37892,50189 +37893,50190 +37894,50190 +37895,50190 +37896,50190 +37897,50190 +37898,18079 +37899,18079 +37900,18079 +37901,18079 +37902,18079 +37903,18079 +37904,18079 +37905,18079 +37906,18079 +37907,18079 +37908,18079 +37909,18079 +37915,1102 +37927,39129 +37928,39162 +37929,39162 +37934,45948 +38050,50456 +38082,50459 +38089,22423 +38090,23728 +38091,44841 +38160,50578 +38161,51271 +38162,50579 +38163,50489 +38165,50493 +38175,31419 +38186,36861 +38225,50459 +38229,1102 +38233,50537 +38234,26532 +38275,50564 +38276,50565 +38277,50566 +38278,50567 +38279,50568 +38280,7921 +38281,7921 +38285,50582 +38286,50581 +38287,50583 +38288,50584 +38289,45850 +38290,50586 +38291,3152 +38294,3664 +38299,26532 +38300,3663 +38301,50733 +38308,50630 +38309,50860 +38310,50861 +38311,50863 +38312,50686 +38313,50859 +38314,50862 +38320,18119 +38327,1102 +38328,1102 +38329,50652 +38352,50689 +38427,50696 +38428,47114 +38429,18084 +38430,38430 +38431,40852 +38432,18119 +38466,35744 +38506,50565 +38518,50737 +38545,4777 +38546,20978 +38547,7221 +38548,7339 +38549,6006 +38550,18707 +38576,40160 +38577,21833 +38578,36754 +38579,51682 +38582,36754 +38587,50881 +38626,51731 +38628,50919 +39149,24694 +39476,7273 +39477,7273 +39656,51926 \ No newline at end of file diff --git a/HermesProxy/CSV/ItemIdToDisplayId3.csv b/HermesProxy/CSV/ItemIdToDisplayId3.csv new file mode 100644 index 00000000..03c97f5f --- /dev/null +++ b/HermesProxy/CSV/ItemIdToDisplayId3.csv @@ -0,0 +1,46097 @@ +Entry,DisplayId +17,7016 +25,1542 +35,472 +36,5194 +37,14029 +38,9891 +39,9892 +40,10141 +41,4553 +42,4562 +43,9938 +44,9937 +45,3265 +46,4528 +47,9915 +48,9913 +49,9906 +50,4535 +51,9946 +52,9945 +53,9944 +54,4541 +55,9929 +56,12647 +57,12645 +58,4499 +59,3261 +60,16891 +61,16953 +77,2645 +79,16847 +80,16854 +85,16883 +86,4525 +87,261 +88,374 +89,7848 +90,4519 +91,368 +92,249 +93,369 +94,4522 +95,242 +97,12662 +98,4524 +99,257 +100,372 +101,373 +102,4523 +103,5901 +104,370 +105,371 +113,365 +114,245 +115,4517 +117,2473 +118,15710 +119,5702 +120,10006 +121,10008 +122,4538 +123,383 +124,3268 +125,3269 +126,4543 +127,9996 +128,396 +129,9977 +130,4572 +131,4542 +132,295 +133,7912 +134,387 +135,386 +136,311 +137,4540 +138,9346 +139,9988 +140,9992 +141,4507 +143,2080 +146,4544 +147,9975 +148,9976 +149,4569 +150,392 +151,393 +152,4570 +153,10050 +154,10058 +155,4571 +156,394 +157,395 +159,18084 +182,7038 +184,362 +192,5279 +193,16579 +194,16580 +195,16582 +200,16777 +201,16778 +202,16780 +203,16779 +209,17140 +210,14444 +236,14278 +237,14476 +238,14474 +239,14475 +285,16101 +286,10400 +287,12745 +414,21904 +422,6352 +527,7090 +537,6629 +555,11206 +556,6625 +647,20190 +710,16936 +711,16581 +714,14445 +718,6986 +719,16970 +720,2368 +723,7369 +724,6385 +725,6671 +727,26577 +728,1102 +729,7407 +730,7394 +731,8802 +732,7395 +733,6428 +734,7093 +735,7093 +737,926 +738,1297 +739,11994 +740,11998 +741,7391 +742,928 +743,929 +744,18059 +745,1102 +746,3865 +748,1102 +750,1116 +751,1515 +752,1272 +753,20094 +754,20218 +755,6677 +756,6264 +759,942 +761,1208 +763,17007 +765,18088 +766,19621 +767,20443 +768,5012 +769,6348 +770,6630 +771,1225 +772,7066 +773,7137 +774,6663 +776,6452 +777,959 +778,6259 +779,7714 +780,6628 +781,19644 +782,1329 +783,6687 +784,1438 +785,7341 +786,7391 +787,24697 +788,5750 +789,19699 +790,19401 +791,20334 +792,16855 +793,14449 +794,14450 +795,14154 +796,22973 +797,17068 +798,22972 +799,2106 +804,2588 +805,2586 +806,2585 +807,7356 +808,7353 +809,20033 +810,19726 +811,19137 +812,20257 +813,6618 +814,18084 +816,6472 +818,6613 +820,6470 +821,17102 +823,7014 +826,19271 +827,3498 +828,2584 +829,1272 +832,6847 +833,22978 +835,1007 +836,1007 +837,14466 +838,14468 +839,14467 +840,16821 +841,1270 +842,7015 +843,14470 +844,2101 +845,9640 +846,14472 +847,1019 +848,697 +849,6869 +850,6871 +851,22077 +852,8287 +853,22102 +854,22147 +855,1281 +856,1025 +857,4056 +858,15711 +859,9880 +860,3443 +862,18397 +863,19213 +864,26579 +865,5212 +866,20357 +867,17180 +868,19713 +869,5163 +870,33458 +871,19235 +872,19242 +873,20298 +875,6423 +876,1680 +877,7099 +878,9200 +880,20382 +883,7088 +884,6368 +885,8494 +886,20093 +887,6680 +888,17182 +889,3022 +890,20386 +892,16950 +893,959 +894,6642 +895,7103 +896,959 +897,17011 +898,959 +899,6459 +900,7014 +901,7014 +902,7014 +903,7014 +905,1057 +906,1058 +907,6480 +908,6545 +909,6557 +910,3024 +911,28628 +913,20170 +914,2829 +915,1272 +916,7589 +917,1080 +918,1283 +920,19703 +921,7588 +922,22097 +923,22080 +924,22131 +925,4351 +926,22108 +927,22106 +928,22151 +929,15712 +930,1283 +931,1183 +932,6430 +933,1282 +934,19405 +935,8274 +936,5215 +937,20329 +938,7601 +939,7588 +940,16676 +941,6513 +942,9835 +943,20256 +944,20253 +945,859 +948,859 +951,1093 +954,3331 +955,2616 +956,7084 +957,7286 +958,7084 +960,7084 +961,6387 +962,6385 +964,9744 +965,981 +966,1103 +967,1103 +968,1103 +973,1103 +974,1103 +975,1103 +976,1103 +980,1103 +981,1399 +983,4878 +985,1103 +986,1103 +989,1103 +992,1103 +994,1103 +996,3453 +997,859 +1002,1103 +1004,1103 +1006,224 +1008,1550 +1009,8583 +1010,20440 +1011,19273 +1013,1236 +1014,1183 +1015,6348 +1016,6619 +1017,1116 +1018,1121 +1019,1272 +1020,13552 +1021,13551 +1022,15299 +1023,15297 +1024,15304 +1025,15302 +1026,15305 +1027,15294 +1028,13275 +1029,5563 +1030,5563 +1031,5563 +1032,5563 +1033,5563 +1034,5563 +1035,5563 +1036,5563 +1037,5563 +1038,5563 +1041,16208 +1042,7015 +1043,7015 +1044,7015 +1046,6596 +1047,6595 +1048,5563 +1049,5563 +1052,5563 +1053,5563 +1057,5563 +1058,5563 +1061,5563 +1063,5563 +1072,18080 +1074,6619 +1075,7236 +1076,6012 +1077,9836 +1078,811 +1080,25475 +1081,7345 +1082,6406 +1083,7133 +1084,1143 +1085,1143 +1086,1143 +1087,1143 +1088,1143 +1089,1143 +1090,1143 +1091,1143 +1092,1143 +1093,1143 +1095,1143 +1096,1143 +1099,1143 +1100,21586 +1101,1143 +1102,1143 +1105,1143 +1108,1143 +1109,1143 +1111,1143 +1112,1143 +1113,6413 +1114,6343 +1115,7097 +1116,6011 +1117,7453 +1119,18077 +1121,703 +1122,6494 +1123,6494 +1124,6494 +1125,6494 +1127,1816 +1128,1150 +1129,7129 +1130,1288 +1131,9557 +1132,16208 +1133,16207 +1134,16207 +1136,1155 +1138,1155 +1139,1155 +1141,1155 +1144,1155 +1146,1155 +1149,1155 +1150,1155 +1151,1155 +1154,6833 +1155,20327 +1156,9839 +1157,5066 +1158,19643 +1159,4994 +1161,1544 +1162,13219 +1163,13218 +1164,49933 +1165,6422 +1166,2208 +1167,18506 +1168,30993 +1169,18816 +1170,8647 +1171,12707 +1172,12313 +1173,6777 +1174,6956 +1175,6659 +1176,6412 +1177,6400 +1178,6336 +1179,18090 +1180,1093 +1181,2616 +1182,6852 +1183,16927 +1184,6510 +1186,6503 +1187,6415 +1189,963 +1190,15120 +1191,1816 +1192,13277 +1193,27782 +1194,22093 +1195,7495 +1196,22114 +1197,5226 +1198,22095 +1199,6014 +1200,18663 +1201,2161 +1202,2329 +1203,2594 +1204,1644 +1205,18078 +1206,7393 +1207,5223 +1208,2616 +1210,7401 +1211,14260 +1212,2637 +1213,3613 +1214,19625 +1215,16942 +1216,9559 +1217,7280 +1218,5527 +1219,20122 +1220,19232 +1221,568 +1222,6002 +1224,1246 +1228,1246 +1229,1246 +1231,1246 +1232,1246 +1238,1246 +1239,1246 +1243,1246 +1244,1246 +1245,1246 +1246,1246 +1250,1246 +1251,11907 +1252,2616 +1253,6707 +1254,24380 +1255,1262 +1256,7078 +1257,1656 +1258,6511 +1259,30392 +1260,1310 +1261,6009 +1262,7923 +1263,22215 +1264,5530 +1265,20156 +1266,4909 +1267,6359 +1268,2357 +1269,6367 +1270,23113 +1272,3396 +1273,12723 +1274,6661 +1275,1019 +1276,2210 +1279,13255 +1280,15298 +1281,3337 +1282,15324 +1283,811 +1284,7914 +1287,6447 +1288,4826 +1292,8466 +1293,3034 +1294,3035 +1296,5195 +1297,19035 +1298,6305 +1299,16717 +1300,20391 +1302,17174 +1303,6871 +1304,16818 +1306,11387 +1307,811 +1309,12334 +1310,16971 +1311,8513 +1312,8576 +1313,6458 +1314,17179 +1315,6524 +1317,20377 +1318,19290 +1319,14437 +1321,6335 +1322,6373 +1323,1301 +1324,7196 +1325,6524 +1326,2661 +1327,3093 +1328,1317 +1332,1317 +1334,1317 +1335,1317 +1339,1317 +1341,1317 +1349,7918 +1350,6358 +1351,16897 +1352,7013 +1353,3031 +1354,8776 +1355,23014 +1356,924 +1357,1322 +1358,7593 +1359,6751 +1360,7000 +1361,7594 +1362,7595 +1363,13223 +1364,14339 +1366,14338 +1367,14354 +1368,17184 +1369,14335 +1370,14336 +1371,5495 +1372,23054 +1374,16659 +1376,23090 +1377,16657 +1378,16656 +1379,5494 +1380,12426 +1381,3023 +1382,19636 +1383,8495 +1384,1546 +1385,8593 +1386,19247 +1387,20087 +1388,20450 +1389,8575 +1391,20410 +1392,3642 +1394,5203 +1395,9924 +1396,3260 +1397,3587 +1398,1357 +1399,6395 +1400,6418 +1401,18088 +1402,6334 +1403,6499 +1404,6499 +1405,5540 +1406,5638 +1407,3032 +1408,3033 +1409,3032 +1410,3032 +1411,20442 +1412,20074 +1413,1547 +1414,19525 +1415,19613 +1416,8495 +1417,8501 +1418,14344 +1419,14353 +1420,4471 +1421,23083 +1422,14345 +1423,14346 +1424,7836 +1425,14190 +1427,16798 +1429,23130 +1430,16797 +1431,16796 +1432,2539 +1433,16795 +1434,6383 +1435,2960 +1436,17144 +1438,25943 +1440,8570 +1443,6522 +1444,6504 +1445,10167 +1446,6841 +1447,14438 +1448,6842 +1449,9823 +1450,1026 +1451,1249 +1453,9825 +1454,8457 +1455,22214 +1457,19683 +1458,8601 +1459,19136 +1460,20109 +1461,19375 +1462,9846 +1464,6627 +1465,20594 +1467,1361 +1468,6697 +1469,20154 +1470,1025 +1472,6508 +1473,20402 +1475,6693 +1476,6619 +1477,3331 +1478,1093 +1479,16710 +1480,9381 +1481,25595 +1482,20089 +1483,9117 +1484,9122 +1485,7464 +1486,9889 +1487,6344 +1488,12960 +1489,8676 +1490,6502 +1491,9836 +1492,1301 +1493,5165 +1495,16553 +1497,23094 +1498,14348 +1499,16552 +1500,37388 +1501,16551 +1502,16947 +1503,14846 +1504,17024 +1505,23076 +1506,17077 +1507,17156 +1508,2563 +1509,18466 +1510,19775 +1511,20173 +1512,19226 +1513,20092 +1514,19533 +1515,20421 +1516,8498 +1518,9825 +1519,1438 +1520,1656 +1521,19306 +1522,22239 +1523,5534 +1524,959 +1527,1442 +1528,1443 +1529,1262 +1532,7104 +1533,6358 +1534,1155 +1535,1787 +1536,1155 +1537,1183 +1539,20395 +1544,6498 +1545,2539 +1547,21551 +1554,1103 +1557,18456 +1559,1103 +1560,16856 +1561,12671 +1566,20078 +1567,1103 +1568,1103 +1571,1103 +1574,1103 +1588,5563 +1589,5563 +1591,5563 +1596,18096 +1597,5563 +1598,1464 +1599,1301 +1602,8489 +1603,5563 +1604,63370 +1607,20272 +1608,19743 +1612,6368 +1613,28470 +1619,5563 +1622,6501 +1623,3568 +1624,15340 +1625,26586 +1630,6552 +1637,1102 +1638,6623 +1639,5128 +1640,8526 +1641,1143 +1645,18060 +1648,1143 +1649,1483 +1651,1143 +1652,12642 +1654,7356 +1655,1143 +1656,1102 +1657,1143 +1658,1143 +1659,1795 +1663,1322 +1664,18289 +1672,7095 +1676,1143 +1677,8678 +1678,11269 +1679,5137 +1680,19304 +1681,1246 +1684,13256 +1685,1285 +1686,18096 +1687,1496 +1688,18092 +1689,7354 +1690,1007 +1691,6360 +1692,959 +1693,6655 +1694,6655 +1695,6655 +1696,1498 +1697,6630 +1698,1498 +1699,6665 +1700,7264 +1701,1498 +1702,6349 +1703,6349 +1704,1504 +1705,7380 +1706,6614 +1707,21905 +1708,18114 +1710,15713 +1711,1093 +1712,2616 +1713,23949 +1714,9858 +1715,8683 +1716,16667 +1717,12960 +1718,17137 +1719,7429 +1720,21460 +1721,8581 +1722,15467 +1724,2592 +1725,2592 +1726,20749 +1727,5166 +1728,19997 +1729,2588 +1730,6902 +1731,6903 +1732,6904 +1733,15272 +1734,6905 +1735,687 +1736,6906 +1737,977 +1738,6902 +1739,6903 +1740,6904 +1741,15065 +1742,6905 +1743,687 +1744,6914 +1745,977 +1746,6902 +1747,6903 +1748,6904 +1749,15074 +1750,6905 +1751,687 +1752,6914 +1753,977 +1754,6902 +1755,6903 +1756,6904 +1757,15181 +1758,6905 +1759,687 +1760,6914 +1761,977 +1764,7578 +1766,23095 +1767,14065 +1768,14064 +1769,16786 +1770,14378 +1772,3757 +1774,23093 +1775,14370 +1776,12930 +1777,14371 +1778,14377 +1780,16820 +1782,23102 +1783,14373 +1784,14374 +1785,14121 +1786,14376 +1787,14360 +1788,16990 +1789,3653 +1790,23050 +1791,972 +1792,6731 +1793,14361 +1794,14272 +1795,16935 +1796,16992 +1797,17015 +1798,23058 +1799,17066 +1800,16967 +1801,15002 +1802,16895 +1803,16945 +1804,16998 +1805,17022 +1806,23072 +1807,17072 +1808,16977 +1809,14205 +1810,14418 +1811,20037 +1812,19245 +1813,20413 +1814,19534 +1815,5217 +1816,8495 +1817,20164 +1818,20183 +1819,14039 +1820,19535 +1821,5151 +1822,20385 +1823,6794 +1824,19292 +1825,19784 +1826,8587 +1827,8482 +1828,19369 +1829,15591 +1830,4129 +1831,20361 +1832,16845 +1835,14443 +1836,14249 +1839,17126 +1840,17170 +1843,14469 +1844,14471 +1845,6864 +1846,13617 +1849,16914 +1850,14282 +1851,6340 +1852,6985 +1853,10410 +1854,6497 +1875,8604 +1877,1317 +1878,1317 +1880,1317 +1882,1317 +1886,1317 +1893,19234 +1894,3029 +1895,7488 +1896,7487 +1897,7485 +1899,7483 +1900,7492 +1901,7440 +1902,7441 +1903,7439 +1904,7429 +1905,7428 +1906,12236 +1907,10654 +1908,1600 +1909,7426 +1910,7493 +1911,7494 +1912,6509 +1913,5009 +1914,6505 +1915,1183 +1917,20435 +1918,6706 +1922,1283 +1923,1625 +1924,2618 +1925,20114 +1926,5218 +1927,19276 +1928,20415 +1929,16848 +1930,23067 +1931,1645 +1933,20418 +1934,6774 +1935,20471 +1936,20399 +1937,5040 +1938,8565 +1939,18084 +1940,18084 +1941,8383 +1942,18080 +1943,697 +1944,17062 +1945,17189 +1946,20919 +1948,1661 +1950,7352 +1951,8279 +1955,6907 +1956,7236 +1957,1684 +1958,1759 +1959,14038 +1960,6832 +1961,1685 +1962,6565 +1963,7350 +1965,3846 +1968,1695 +1969,7001 +1970,1805 +1971,7128 +1972,924 +1973,6506 +1974,16901 +1975,20179 +1976,8590 +1977,1244 +1978,12813 +1979,18793 +1980,9840 +1981,8668 +1982,20191 +1983,7490 +1984,1705 +1985,1706 +1986,20638 +1987,7155 +1988,25892 +1990,5533 +1991,18269 +1992,21612 +1993,14436 +1994,19129 +1995,1496 +1996,9840 +1997,16670 +1998,20356 +1999,1330 +2000,20251 +2002,3337 +2003,1244 +2004,7138 +2005,7270 +2006,7270 +2007,7270 +2008,7270 +2011,20120 +2012,6507 +2013,20373 +2014,5176 +2015,19255 +2016,1727 +2017,6738 +2018,20088 +2020,20492 +2021,18650 +2023,7481 +2024,22096 +2025,22115 +2026,8593 +2027,22079 +2028,22119 +2029,19281 +2030,22146 +2032,16887 +2033,10711 +2034,12699 +2035,5161 +2036,17054 +2037,11447 +2038,13248 +2039,6012 +2040,18399 +2041,8703 +2042,20379 +2043,6011 +2044,19220 +2045,13537 +2046,22226 +2047,8473 +2048,19770 +2050,7355 +2051,1755 +2052,1755 +2053,1757 +2054,19299 +2055,8579 +2056,1758 +2057,20175 +2058,19611 +2059,22991 +2060,1762 +2064,19650 +2065,20212 +2066,19203 +2067,20431 +2069,16868 +2070,6353 +2071,18084 +2072,20363 +2073,19134 +2074,20168 +2075,5218 +2077,28578 +2078,20157 +2079,19637 +2080,19400 +2081,6537 +2082,2588 +2084,20152 +2085,1116 +2087,17095 +2088,6455 +2089,20407 +2091,6396 +2092,6442 +2098,28718 +2099,28636 +2100,8258 +2101,21328 +2102,1816 +2103,26499 +2104,5999 +2105,10005 +2106,1818 +2107,845 +2108,8662 +2109,977 +2110,12674 +2112,14279 +2113,924 +2114,16654 +2115,3237 +2117,16576 +2119,16969 +2120,8969 +2121,16575 +2122,14425 +2123,14426 +2124,14427 +2125,17176 +2126,14429 +2127,14430 +2128,2380 +2129,18662 +2130,22118 +2131,22075 +2132,22149 +2133,18480 +2134,22101 +2136,18085 +2137,6437 +2138,6460 +2139,22135 +2140,6440 +2141,8655 +2142,17117 +2143,2355 +2144,3602 +2145,14480 +2146,14481 +2147,7419 +2148,6926 +2149,6972 +2150,6973 +2151,6975 +2152,2989 +2153,8683 +2154,1143 +2156,16858 +2158,14478 +2159,14479 +2160,14477 +2161,1143 +2162,963 +2163,20291 +2164,20312 +2165,23054 +2166,685 +2167,17178 +2168,16713 +2169,20347 +2170,3127 +2172,9895 +2173,28227 +2175,8534 +2176,1926 +2177,1927 +2178,7482 +2179,7420 +2180,7486 +2181,7489 +2182,7438 +2183,7427 +2184,7434 +2186,4545 +2187,3019 +2188,3020 +2189,1938 +2191,7087 +2194,8567 +2195,6432 +2196,7462 +2197,7443 +2198,7465 +2199,7474 +2200,7466 +2201,7473 +2202,7463 +2203,8506 +2204,20038 +2205,20153 +2206,6445 +2207,22137 +2208,22142 +2209,22139 +2210,2552 +2211,18656 +2212,2553 +2213,18673 +2214,17884 +2215,18670 +2216,18486 +2217,18665 +2218,20451 +2219,18485 +2220,18729 +2221,18484 +2222,2559 +2223,1102 +2224,6432 +2225,20470 +2226,20372 +2227,22219 +2230,6930 +2231,16671 +2232,4272 +2233,18489 +2234,8677 +2235,20598 +2236,20345 +2237,2628 +2238,16842 +2239,2854 +2240,23061 +2241,15248 +2243,19729 +2244,8090 +2245,15506 +2246,9841 +2248,1184 +2249,2632 +2250,7113 +2251,7368 +2252,7167 +2254,19612 +2255,2057 +2256,5221 +2257,20429 +2258,4260 +2259,19623 +2260,8470 +2262,9840 +2263,5170 +2264,12830 +2265,19297 +2266,20427 +2267,5208 +2268,20213 +2271,20346 +2273,16114 +2274,6883 +2275,13279 +2276,16996 +2277,3173 +2278,17190 +2280,20370 +2281,19297 +2282,20211 +2283,16831 +2284,23132 +2287,2474 +2288,18084 +2289,3331 +2290,2616 +2291,19305 +2292,19037 +2295,1225 +2296,10377 +2299,19389 +2300,9502 +2301,2083 +2302,4713 +2303,9500 +2304,7450 +2305,18127 +2306,3709 +2307,17163 +2308,23028 +2309,13864 +2310,23025 +2311,17233 +2312,5406 +2313,7451 +2314,9531 +2315,9530 +2316,23021 +2317,17214 +2318,7382 +2319,7388 +2320,4752 +2321,7363 +2322,6644 +2323,6644 +2324,18114 +2325,15732 +2326,16905 +2327,17172 +2361,8690 +2362,18730 +2363,6708 +2364,14459 +2366,14458 +2367,14162 +2369,14457 +2370,16871 +2371,17114 +2372,18478 +2373,17158 +2374,17002 +2375,17051 +2376,18672 +2377,18509 +2378,7251 +2379,2215 +2380,6902 +2381,2217 +2382,7269 +2383,6903 +2384,6904 +2385,6905 +2386,2222 +2387,6902 +2388,2228 +2389,6952 +2390,6953 +2391,6954 +2392,2265 +2393,6902 +2394,2217 +2395,6903 +2396,6904 +2397,6955 +2398,2269 +2399,6902 +2400,2270 +2401,6952 +2402,6953 +2403,6954 +2404,1102 +2405,1102 +2406,15274 +2407,1102 +2408,15274 +2409,15274 +2410,12312 +2411,13108 +2412,1007 +2413,13108 +2414,13108 +2415,13108 +2417,8634 +2418,2969 +2419,6819 +2420,6820 +2421,6821 +2422,6822 +2423,8642 +2424,6853 +2425,2976 +2426,6854 +2427,6855 +2428,6856 +2429,14484 +2431,14483 +2432,1861 +2434,14482 +2435,16769 +2437,16770 +2438,16772 +2440,16771 +2441,18468 +2442,2324 +2443,18477 +2444,18516 +2445,18749 +2446,18733 +2447,7396 +2448,18732 +2449,1464 +2450,7406 +2451,18772 +2452,7241 +2453,7337 +2454,15733 +2455,15715 +2456,2345 +2457,15738 +2458,15792 +2459,15742 +2460,6373 +2461,2357 +2462,1805 +2463,16900 +2464,11558 +2465,17031 +2466,6368 +2467,17165 +2468,17020 +2469,17027 +2470,14496 +2471,14492 +2472,14495 +2473,14295 +2474,14493 +2475,2686 +2476,2376 +2477,23527 +2478,1805 +2479,8512 +2480,19601 +2481,16155 +2482,8488 +2483,19243 +2484,6442 +2485,5219 +2486,19627 +2487,20448 +2488,22078 +2489,22094 +2490,8488 +2491,22112 +2492,12992 +2493,22121 +2494,22136 +2495,7310 +2496,2398 +2497,2399 +2498,19299 +2499,8511 +2500,19626 +2501,19614 +2502,6444 +2503,20436 +2504,8106 +2505,20723 +2506,20722 +2507,20714 +2508,6606 +2509,6607 +2510,6594 +2511,20728 +2512,5996 +2513,5998 +2514,5996 +2515,5996 +2516,5998 +2517,5996 +2518,5998 +2519,5998 +2520,22085 +2521,22084 +2522,8485 +2523,22216 +2524,8803 +2525,22133 +2526,22141 +2527,22150 +2528,22081 +2529,22098 +2530,22105 +2531,22111 +2532,22120 +2533,22134 +2534,22140 +2535,20389 +2536,6630 +2543,704 +2545,3043 +2546,6981 +2547,6905 +2548,7922 +2549,20330 +2550,8106 +2551,10671 +2552,6593 +2553,15274 +2554,6270 +2555,15274 +2556,1301 +2557,2466 +2558,7442 +2559,2469 +2560,1143 +2561,1310 +2562,6488 +2563,6396 +2564,4485 +2565,6555 +2566,16666 +2567,20590 +2568,17125 +2569,17120 +2570,23122 +2571,2486 +2572,12687 +2573,2489 +2574,2490 +2575,10840 +2576,10834 +2577,10845 +2578,10891 +2579,12864 +2580,23133 +2581,11908 +2582,12394 +2583,13524 +2584,23144 +2585,12669 +2586,22033 +2587,10892 +2588,13253 +2589,7383 +2590,18597 +2591,1329 +2592,7418 +2593,6373 +2594,18115 +2595,7921 +2596,18085 +2598,15274 +2599,1102 +2600,1102 +2601,15274 +2602,1102 +2604,7349 +2605,6373 +2606,2515 +2607,2516 +2608,6703 +2609,2637 +2610,6396 +2611,18107 +2612,12704 +2613,12661 +2614,16614 +2615,12655 +2616,12701 +2617,12654 +2618,12702 +2619,3029 +2620,15284 +2621,15295 +2622,13244 +2623,15336 +2624,15547 +2625,12931 +2628,3048 +2629,6710 +2632,20473 +2633,2533 +2634,7283 +2635,6902 +2636,2551 +2637,924 +2638,924 +2639,2571 +2640,7166 +2642,6903 +2643,6904 +2644,15082 +2645,6905 +2646,2217 +2647,6906 +2648,2215 +2649,6902 +2650,6903 +2651,6904 +2652,15164 +2653,6905 +2654,2217 +2655,6914 +2656,2215 +2657,981 +2658,18103 +2659,18105 +2660,18104 +2661,18106 +2662,21712 +2663,1816 +2664,20441 +2665,6396 +2666,7923 +2667,2599 +2668,6630 +2669,6651 +2671,6655 +2672,6680 +2673,25467 +2674,22193 +2675,8743 +2676,7241 +2677,2473 +2678,1443 +2679,2474 +2680,25468 +2681,2474 +2682,2627 +2683,6345 +2684,25468 +2685,2473 +2686,18117 +2687,21327 +2688,6417 +2690,28201 +2691,6903 +2692,1443 +2693,1443 +2694,28250 +2695,7432 +2696,7922 +2697,1102 +2698,1102 +2699,1102 +2700,1102 +2701,1102 +2702,7158 +2703,24596 +2704,24594 +2705,24595 +2706,7454 +2707,7456 +2708,7448 +2709,7455 +2710,7447 +2711,7433 +2712,7916 +2713,28952 +2714,7461 +2715,7460 +2716,7446 +2717,7445 +2718,7457 +2719,6710 +2720,1102 +2721,16826 +2722,1102 +2723,18079 +2724,1323 +2725,7629 +2728,7629 +2730,7629 +2732,7629 +2734,7629 +2735,7629 +2738,7629 +2740,7629 +2742,7629 +2744,7629 +2745,7629 +2748,7629 +2749,7629 +2750,7629 +2751,7629 +2754,20117 +2755,2757 +2756,7596 +2757,7596 +2758,7596 +2759,7596 +2760,6430 +2761,2760 +2762,2760 +2763,6437 +2764,6444 +2765,20383 +2766,6445 +2767,1695 +2770,4681 +2771,4690 +2772,4689 +2773,2786 +2774,20654 +2775,18107 +2776,41755 +2777,2787 +2778,20654 +2779,2788 +2780,20712 +2781,20979 +2782,20671 +2783,20717 +2784,2793 +2785,20668 +2786,20718 +2787,20534 +2788,18115 +2789,6707 +2790,6707 +2791,6707 +2792,6707 +2793,1143 +2794,1143 +2795,1143 +2797,3422 +2798,4689 +2799,7129 +2800,21114 +2801,5193 +2802,6484 +2803,6514 +2804,6502 +2805,23084 +2806,1244 +2807,9118 +2808,3947 +2809,7476 +2810,7479 +2811,7308 +2812,6448 +2813,7478 +2814,3151 +2815,8465 +2816,19669 +2817,17103 +2818,1963 +2819,6443 +2820,6540 +2821,19633 +2822,20091 +2823,19236 +2824,20554 +2825,20552 +2826,6497 +2827,7431 +2828,7105 +2829,2853 +2830,2853 +2831,2853 +2832,811 +2833,7139 +2834,3152 +2835,4714 +2836,4715 +2837,924 +2838,4716 +2839,924 +2840,7391 +2841,7390 +2842,7355 +2843,18074 +2844,2861 +2845,14035 +2846,3225 +2847,4805 +2848,5198 +2849,19929 +2850,3855 +2851,23529 +2852,13095 +2853,6966 +2854,25851 +2855,7207 +2856,2868 +2857,25852 +2858,2873 +2859,2874 +2862,24673 +2863,24674 +2864,25848 +2865,4333 +2866,23530 +2867,23532 +2868,23533 +2869,9403 +2870,23540 +2871,24675 +2872,2885 +2874,3020 +2875,11990 +2876,6660 +2877,20151 +2878,8469 +2879,13109 +2880,7417 +2881,15274 +2882,15274 +2883,15274 +2884,26367 +2885,3048 +2886,2904 +2887,6687 +2888,21327 +2889,811 +2890,6684 +2891,3021 +2892,13707 +2893,13707 +2894,18117 +2895,2947 +2896,2947 +2898,2967 +2899,16949 +2900,18528 +2901,6568 +2902,23099 +2903,8107 +2904,20732 +2905,23032 +2906,2922 +2907,19227 +2908,20605 +2909,2925 +2910,6931 +2911,9898 +2912,20320 +2913,16828 +2915,19664 +2916,2934 +2917,9850 +2918,13274 +2919,6526 +2920,6556 +2921,6485 +2922,6564 +2923,6550 +2924,6350 +2925,3124 +2926,7038 +2927,2947 +2928,6371 +2929,7414 +2930,6400 +2931,7385 +2932,7415 +2933,9845 +2934,7400 +2935,3004 +2936,3004 +2937,3004 +2939,3004 +2940,1769 +2941,20359 +2942,3007 +2943,21600 +2944,21598 +2945,16754 +2946,16752 +2947,16754 +2948,6515 +2949,16989 +2950,20378 +2951,9851 +2952,3040 +2953,23077 +2954,14615 +2955,16545 +2956,3031 +2957,14499 +2958,14498 +2959,14525 +2960,14497 +2961,17093 +2962,17160 +2963,16980 +2964,17175 +2965,22677 +2966,7193 +2967,22673 +2968,22676 +2969,14524 +2970,14529 +2971,14531 +2972,14528 +2973,14539 +2974,14537 +2975,14534 +2976,14536 +2977,22689 +2978,22693 +2979,22690 +2980,12450 +2981,14549 +2982,14554 +2983,14552 +2984,16789 +2985,9739 +2986,11369 +2987,11373 +2988,14411 +2989,25769 +2990,25768 +2991,25765 +2992,16731 +2993,13252 +2994,13217 +2995,13273 +2996,7331 +2997,10044 +2998,6562 +2999,7259 +3000,16888 +3001,18087 +3002,6338 +3003,6492 +3004,6551 +3005,6553 +3006,6521 +3007,6832 +3008,23080 +3010,6371 +3011,13259 +3012,3331 +3013,1093 +3014,7040 +3015,18109 +3016,7139 +3017,811 +3018,23027 +3019,12682 +3020,21294 +3021,20673 +3022,16534 +3023,20727 +3024,20726 +3025,20725 +3026,20675 +3027,20670 +3028,8104 +3029,5996 +3030,26497 +3031,5996 +3032,5998 +3033,5998 +3034,5998 +3035,3225 +3036,5392 +3037,20653 +3038,3185 +3039,20672 +3040,20740 +3041,20729 +3042,20734 +3043,2414 +3044,3191 +3045,25778 +3046,13276 +3047,25782 +3048,11525 +3049,25780 +3050,3058 +3051,6901 +3052,13283 +3053,3293 +3054,6898 +3055,8665 +3056,16954 +3057,16984 +3058,17055 +3059,13252 +3060,6730 +3061,9112 +3062,3206 +3063,13250 +3064,3205 +3065,27547 +3066,27550 +3067,3217 +3068,16824 +3069,27554 +3070,15149 +3071,19209 +3072,16694 +3073,16846 +3074,12420 +3075,15322 +3076,4873 +3077,13542 +3078,20669 +3079,20738 +3080,7066 +3081,7185 +3082,2853 +3083,7215 +3084,7072 +3085,7922 +3086,7922 +3087,18115 +3088,1317 +3089,1103 +3090,1103 +3091,1103 +3092,1103 +3093,1103 +3094,1103 +3095,1103 +3096,1103 +3097,1103 +3098,1103 +3099,1103 +3100,1103 +3101,1103 +3102,1103 +3103,8588 +3104,3155 +3105,3155 +3106,3155 +3107,20779 +3108,20773 +3109,16753 +3110,7723 +3111,20777 +3112,1143 +3113,1143 +3114,1143 +3115,1143 +3116,1143 +3117,7138 +3118,1143 +3119,1143 +3120,1143 +3121,1143 +3122,1143 +3123,1143 +3124,1143 +3125,5563 +3126,5563 +3127,5563 +3128,16755 +3129,5563 +3130,5563 +3131,16760 +3132,5563 +3133,5563 +3134,1246 +3135,20782 +3136,35701 +3137,20783 +3138,1246 +3139,1246 +3140,1246 +3141,1246 +3142,1246 +3143,1246 +3144,1246 +3145,3288 +3146,1246 +3147,3289 +3148,7849 +3149,3291 +3150,3292 +3151,3293 +3152,17177 +3153,23128 +3154,18340 +3155,3331 +3156,7132 +3157,7083 +3158,10412 +3159,6832 +3160,3304 +3161,16696 +3162,3233 +3163,2853 +3164,7357 +3165,983 +3166,12965 +3167,6699 +3168,6629 +3169,6002 +3170,6666 +3171,3429 +3172,7330 +3173,25466 +3174,6690 +3175,11164 +3176,3307 +3177,6651 +3179,28257 +3180,6658 +3181,6678 +3182,18597 +3183,6669 +3184,20396 +3185,20362 +3186,26576 +3187,20573 +3188,20072 +3189,8525 +3190,6799 +3191,11165 +3192,26590 +3193,19545 +3194,19622 +3195,8499 +3196,26585 +3197,20184 +3198,8585 +3199,19372 +3200,17004 +3201,19283 +3202,10216 +3203,5228 +3204,3606 +3205,14410 +3206,20186 +3207,14535 +3208,5232 +3209,20250 +3210,19275 +3211,25766 +3212,25779 +3213,6953 +3214,22674 +3215,6899 +3216,18121 +3217,16787 +3218,7208 +3219,3396 +3220,25469 +3221,3396 +3222,20607 +3223,19624 +3224,16926 +3225,6437 +3226,6832 +3227,20381 +3228,10402 +3229,9917 +3230,17166 +3231,10166 +3232,3409 +3233,3410 +3234,963 +3235,9840 +3236,3152 +3237,3152 +3238,3411 +3239,24683 +3240,24684 +3241,24685 +3242,3413 +3243,3414 +3244,7017 +3245,7018 +3246,7019 +3247,6961 +3248,1102 +3249,6632 +3250,1301 +3251,8452 +3252,3029 +3253,3422 +3254,2885 +3255,3426 +3256,3427 +3257,3427 +3258,5283 +3259,11164 +3260,16612 +3261,23143 +3262,21052 +3263,3432 +3264,11489 +3265,6669 +3266,3433 +3267,20176 +3268,6432 +3269,19772 +3270,16585 +3271,3396 +3272,3442 +3273,2967 +3274,16587 +3275,16586 +3276,18490 +3277,20444 +3278,3447 +3279,26927 +3280,26928 +3281,27175 +3282,26932 +3283,26933 +3284,27993 +3285,27994 +3286,27995 +3287,28591 +3288,27996 +3289,14514 +3290,14509 +3291,14511 +3292,14513 +3293,19281 +3294,5203 +3295,3434 +3296,6442 +3297,3427 +3298,3410 +3299,6002 +3300,6682 +3301,6002 +3302,26944 +3303,26945 +3304,28997 +3305,26948 +3306,26949 +3307,11060 +3308,16592 +3309,16591 +3310,16590 +3311,14544 +3312,14545 +3313,28047 +3314,14546 +3315,14547 +3316,3486 +3317,3486 +3318,3487 +3319,5007 +3320,4506 +3321,4016 +3322,23015 +3323,16906 +3324,21457 +3325,19252 +3326,3502 +3327,20434 +3328,16655 +3329,5204 +3330,12971 +3331,15196 +3332,6987 +3333,6832 +3334,7495 +3335,3509 +3336,20341 +3337,7111 +3338,7094 +3339,6371 +3340,7148 +3341,6920 +3342,7843 +3343,1183 +3344,4511 +3345,15912 +3346,7495 +3347,568 +3348,6646 +3349,3565 +3350,7444 +3351,7468 +3352,3568 +3353,6502 +3354,6502 +3355,6524 +3356,7346 +3357,7381 +3358,6661 +3359,1115 +3360,3573 +3361,7477 +3362,7449 +3363,16663 +3364,7484 +3365,16664 +3366,7491 +3367,7464 +3368,7459 +3369,6396 +3370,7881 +3371,18077 +3372,51755 +3373,16804 +3374,16554 +3375,16555 +3376,16819 +3377,14111 +3378,16807 +3379,16806 +3380,16784 +3381,16913 +3382,15734 +3383,15745 +3384,292 +3385,15716 +3386,15750 +3387,24213 +3388,15770 +3389,15773 +3390,15787 +3391,15789 +3392,21310 +3393,1301 +3394,1301 +3395,1301 +3396,1301 +3397,6629 +3398,3746 +3399,6627 +3400,20110 +3401,6628 +3402,6691 +3403,1225 +3404,7338 +3405,7210 +3406,19567 +3407,1659 +3408,7217 +3409,7186 +3410,7089 +3411,19528 +3412,18597 +3413,20589 +3414,5198 +3415,20339 +3416,12971 +3417,20174 +3418,7287 +3419,6549 +3420,6483 +3421,6560 +3422,6479 +3423,6489 +3424,6487 +3425,7292 +3426,16610 +3427,7905 +3428,10892 +3429,4532 +3430,6612 +3431,17092 +3432,7437 +3433,7480 +3434,6371 +3435,3708 +3436,2539 +3437,6875 +3438,3026 +3439,3709 +3440,6806 +3441,2947 +3442,4500 +3443,8495 +3444,8698 +3445,20599 +3446,20419 +3447,6880 +3448,1464 +3449,23127 +3450,18659 +3451,6541 +3452,5120 +3453,16907 +3454,3755 +3455,20015 +3456,15798 +3457,16850 +3458,6982 +3459,2563 +3460,18115 +3461,12672 +3462,28607 +3463,20772 +3464,26497 +3465,5998 +3466,7408 +3467,6714 +3468,3411 +3469,23528 +3470,24678 +3471,13090 +3472,25850 +3473,25849 +3474,9390 +3475,23421 +3476,20898 +3477,2885 +3478,24679 +3479,3760 +3480,23531 +3481,9407 +3482,9404 +3483,9406 +3484,9412 +3485,9414 +3486,24680 +3487,20196 +3488,8516 +3489,8496 +3490,6445 +3491,5211 +3492,3780 +3493,20664 +3494,7430 +3495,3788 +3496,16452 +3497,3788 +3498,9657 +3499,6710 +3500,1046 +3501,6643 +3502,17459 +3503,1323 +3504,6270 +3505,6012 +3506,7171 +3507,983 +3508,7175 +3509,7043 +3510,7110 +3511,23020 +3512,1096 +3513,7085 +3514,2853 +3515,7030 +3516,7038 +3517,7921 +3518,1096 +3519,1323 +3520,7921 +3521,1323 +3522,7421 +3523,7422 +3524,6834 +3525,6835 +3526,6836 +3527,7424 +3528,6764 +3529,12906 +3530,11909 +3531,11910 +3532,6766 +3533,6762 +3534,6765 +3535,6763 +3536,13564 +3537,6722 +3538,6743 +3539,6724 +3540,6745 +3541,6720 +3542,6741 +3543,6723 +3544,6744 +3545,6721 +3546,6742 +3547,6784 +3548,6786 +3549,6785 +3550,1310 +3551,1310 +3552,1310 +3553,1310 +3554,7077 +3555,16615 +3556,16544 +3557,3864 +3558,16528 +3559,11626 +3560,20715 +3561,23135 +3562,16910 +3563,3179 +3564,7924 +3565,14127 +3566,17101 +3567,6601 +3568,1244 +3569,18122 +3570,8100 +3571,19546 +3572,5151 +3573,21321 +3574,1816 +3575,7376 +3576,18086 +3577,7352 +3578,9380 +3579,3747 +3580,6713 +3581,20414 +3582,23085 +3583,16948 +3584,7038 +3585,16876 +3586,19231 +3587,16773 +3588,16774 +3589,16788 +3590,16816 +3591,16834 +3592,3645 +3593,16835 +3594,3740 +3595,16583 +3596,16584 +3597,16782 +3598,3895 +3599,16832 +3600,16929 +3601,7263 +3602,16577 +3603,16930 +3604,2584 +3605,21332 +3606,14456 +3607,14161 +3608,15274 +3609,15274 +3610,15274 +3611,15274 +3612,15274 +3613,7282 +3614,6669 +3615,7038 +3616,6521 +3617,7197 +3618,7135 +3619,9515 +3620,7104 +3621,7150 +3622,6371 +3623,7038 +3624,7038 +3625,7141 +3626,7038 +3627,3671 +3628,3913 +3629,6538 +3630,3914 +3631,7042 +3632,3916 +3633,3914 +3634,3917 +3635,3916 +3636,7043 +3637,3918 +3638,7089 +3639,7612 +3640,3920 +3641,14423 +3642,14510 +3643,14342 +3644,16595 +3645,16915 +3646,3740 +3647,14566 +3648,18492 +3649,18512 +3650,18655 +3651,2052 +3652,18488 +3653,1673 +3654,18657 +3655,18696 +3656,18702 +3657,2757 +3658,1317 +3659,1103 +3660,8731 +3661,18530 +3662,22194 +3663,6347 +3664,6347 +3665,18053 +3666,6342 +3667,6350 +3668,1323 +3669,2637 +3670,6668 +3671,7102 +3672,7141 +3673,6616 +3674,6638 +3675,12994 +3676,6690 +3677,1102 +3678,1102 +3679,1102 +3680,1102 +3681,1102 +3682,1102 +3683,1102 +3684,7198 +3685,18050 +3686,7092 +3687,3092 +3688,7051 +3689,7050 +3690,7052 +3691,7053 +3692,7100 +3693,7147 +3694,6534 +3695,6535 +3696,7475 +3697,6531 +3698,6532 +3699,7467 +3700,2945 +3701,6639 +3702,4045 +3703,18102 +3704,6713 +3705,6002 +3706,7015 +3707,7015 +3708,10275 +3709,2945 +3710,10275 +3711,4049 +3712,25472 +3713,1443 +3714,7291 +3715,7059 +3716,9585 +3717,7219 +3718,1323 +3719,23040 +3720,7294 +3721,3031 +3722,6655 +3723,6630 +3724,6651 +3725,6656 +3726,22194 +3727,6327 +3728,6419 +3729,6414 +3730,6350 +3731,25466 +3732,15339 +3733,4085 +3734,1102 +3735,1102 +3736,1102 +3737,1102 +3738,20374 +3739,16132 +3740,22226 +3741,17164 +3742,20667 +3743,6275 +3744,1399 +3745,7218 +3746,1244 +3747,11167 +3748,10169 +3749,23118 +3750,8732 +3751,3083 +3752,8666 +3753,17129 +3754,17186 +3755,19228 +3756,6529 +3757,6530 +3758,6902 +3759,16944 +3760,963 +3761,18769 +3762,1244 +3763,6272 +3764,3750 +3765,6971 +3766,19569 +3767,4110 +3768,6326 +3769,6620 +3770,6350 +3771,4113 +3772,18079 +3773,18084 +3774,26366 +3775,13708 +3776,13708 +3777,6371 +3778,20660 +3779,19287 +3780,20717 +3781,20150 +3782,19532 +3783,20216 +3784,20350 +3785,8480 +3786,6468 +3787,19694 +3788,6563 +3789,6554 +3790,3331 +3791,6552 +3792,12424 +3793,6190 +3794,16571 +3795,23120 +3796,16569 +3797,14711 +3798,14091 +3799,16568 +3800,19042 +3801,19043 +3802,14803 +3803,23036 +3804,19044 +3805,19041 +3806,11270 +3807,19040 +3808,6902 +3809,6903 +3810,6904 +3811,15121 +3812,6905 +3813,687 +3814,6914 +3815,977 +3816,4130 +3817,18481 +3818,18169 +3819,7364 +3820,18089 +3821,19497 +3822,20180 +3823,2354 +3824,17469 +3825,15790 +3826,15793 +3827,15717 +3828,4137 +3829,15794 +3830,1301 +3831,1301 +3832,15274 +3833,23089 +3834,16839 +3835,9417 +3836,25658 +3837,15333 +3838,7089 +3839,7186 +3840,9422 +3841,9424 +3842,9415 +3843,9242 +3844,13088 +3845,9425 +3846,23537 +3847,9426 +3848,6434 +3849,5153 +3850,20215 +3851,19647 +3852,15468 +3853,7324 +3854,20252 +3855,8528 +3856,8533 +3857,7340 +3858,20661 +3859,7392 +3860,20659 +3861,7356 +3862,20951 +3863,11205 +3864,7339 +3865,6474 +3866,15274 +3867,15274 +3868,15274 +3869,15274 +3870,15274 +3871,1102 +3872,15274 +3873,15274 +3874,15274 +3875,1102 +3876,1151 +3877,7266 +3878,1262 +3879,7230 +3880,5689 +3881,7038 +3882,19531 +3883,13228 +3884,13249 +3885,13278 +3886,13539 +3887,13249 +3888,13278 +3889,15908 +3890,17204 +3891,15318 +3892,16775 +3893,21308 +3894,15320 +3895,6262 +3896,3749 +3897,7110 +3898,1102 +3899,6672 +3900,18078 +3901,7048 +3902,20412 +3903,4258 +3904,1310 +3905,1310 +3906,7036 +3907,7100 +3908,7100 +3909,7063 +3910,7171 +3911,7205 +3912,7257 +3913,6554 +3914,1283 +3915,7054 +3916,18075 +3917,6546 +3918,6614 +3919,7168 +3920,7047 +3921,3093 +3922,4280 +3923,7284 +3924,7161 +3925,7151 +3926,4284 +3927,6425 +3928,15714 +3929,7162 +3930,4287 +3931,959 +3932,12333 +3933,7312 +3934,4291 +3935,7311 +3936,16722 +3937,16721 +3938,16724 +3939,23101 +3940,16720 +3941,16719 +3942,14396 +3943,16718 +3944,16704 +3945,16703 +3946,9894 +3947,16707 +3948,16702 +3949,16701 +3950,16706 +3951,16700 +3952,14414 +3953,16712 +3954,16714 +3955,23124 +3956,16711 +3957,16709 +3958,16715 +3959,16708 +3960,6430 +3961,16943 +3962,18419 +3963,17021 +3964,23070 +3965,17188 +3966,17155 +3967,17196 +3968,17105 +3969,14408 +3970,16994 +3971,17171 +3972,23065 +3973,17069 +3974,16972 +3975,4486 +3976,11138 +3977,16941 +3978,16995 +3979,17019 +3980,23068 +3981,17070 +3982,16975 +3983,14421 +3984,9925 +3985,16829 +3986,18814 +3987,18774 +3988,18813 +3989,18472 +3990,17885 +3991,18474 +3992,6946 +3993,6947 +3994,6948 +3995,15068 +3996,6949 +3997,4339 +3998,10170 +3999,8672 +4000,6964 +4001,6965 +4002,6966 +4003,15106 +4004,6967 +4005,4333 +4006,28392 +4007,11565 +4008,6958 +4009,6997 +4010,6998 +4011,15239 +4012,6999 +4013,4346 +4014,9038 +4015,12966 +4016,1288 +4017,20225 +4018,20195 +4019,8478 +4020,19374 +4021,19716 +4022,19526 +4023,4119 +4024,20309 +4025,20550 +4026,20721 +4027,7069 +4028,7065 +4029,3427 +4030,6381 +4031,6515 +4032,6548 +4033,6496 +4034,7261 +4035,16643 +4036,4607 +4037,14989 +4038,27557 +4039,15298 +4040,14623 +4041,15287 +4042,14661 +4043,14652 +4044,14659 +4045,14680 +4046,14685 +4047,14679 +4048,17199 +4049,14601 +4050,17141 +4051,17161 +4052,21304 +4053,6629 +4054,17149 +4055,3036 +4056,811 +4057,16890 +4058,14674 +4059,14673 +4060,14675 +4061,17008 +4062,17147 +4063,17181 +4064,18487 +4065,18699 +4066,4403 +4067,6272 +4068,26325 +4069,26085 +4070,18771 +4071,25801 +4072,25802 +4073,25804 +4074,25809 +4075,25811 +4076,25810 +4077,25825 +4078,25904 +4079,25896 +4080,15290 +4081,4419 +4082,26074 +4083,26075 +4084,3409 +4085,7155 +4086,20736 +4087,4426 +4088,28520 +4089,6592 +4090,18496 +4091,20380 +4092,4433 +4093,6665 +4094,7264 +4095,7302 +4096,18096 +4097,6630 +4098,4435 +4099,29087 +4100,3093 +4101,3093 +4102,3093 +4103,6708 +4104,6646 +4105,6658 +4106,7279 +4107,4438 +4108,4439 +4109,16983 +4110,20555 +4111,8095 +4112,9852 +4113,23123 +4114,15246 +4115,17888 +4116,20223 +4117,16830 +4118,6976 +4119,17100 +4120,16695 +4121,14323 +4122,3498 +4123,6919 +4124,21293 +4125,21605 +4126,19217 +4127,20662 +4128,18269 +4129,4458 +4130,6562 +4131,17115 +4132,6884 +4133,4462 +4134,20294 +4135,6486 +4136,6885 +4137,4835 +4138,8638 +4139,16822 +4140,4869 +4141,1103 +4142,1103 +4143,1103 +4144,1103 +4145,1103 +4146,1103 +4147,1103 +4148,1103 +4149,1103 +4150,1103 +4151,1103 +4152,1103 +4153,1103 +4154,1103 +4155,1103 +4156,1103 +4157,1103 +4158,1103 +4159,1103 +4160,1103 +4161,1103 +4162,1103 +4163,1155 +4164,1155 +4165,1155 +4166,1155 +4167,1155 +4168,5563 +4169,5563 +4170,5563 +4171,5563 +4172,5563 +4173,5563 +4174,5563 +4175,5563 +4176,5563 +4177,5563 +4178,5563 +4179,5563 +4180,5563 +4181,5563 +4182,5563 +4183,5563 +4184,5563 +4185,5563 +4186,5563 +4187,5563 +4188,5563 +4189,5563 +4190,8660 +4191,4497 +4192,4919 +4193,13550 +4194,4494 +4195,4493 +4196,4483 +4197,12980 +4198,1246 +4199,1246 +4200,1246 +4201,1246 +4202,1246 +4203,1246 +4204,1246 +4205,1246 +4206,1246 +4207,1246 +4208,1246 +4209,1246 +4210,1246 +4211,1246 +4212,1246 +4213,1246 +4214,1246 +4215,1246 +4216,1246 +4217,1246 +4218,1246 +4219,1246 +4220,1246 +4221,1246 +4222,1317 +4223,1317 +4224,1317 +4225,1317 +4226,1317 +4227,1317 +4228,1317 +4229,1317 +4230,1317 +4231,5086 +4232,21463 +4233,7112 +4234,7410 +4235,11164 +4236,3164 +4237,9501 +4238,3410 +4239,9503 +4240,4584 +4241,8442 +4242,9505 +4243,9511 +4244,18458 +4245,3337 +4246,9513 +4247,2362 +4248,9526 +4249,12464 +4250,17237 +4251,11274 +4252,12403 +4253,27881 +4254,9543 +4255,9532 +4256,9545 +4257,17224 +4258,9538 +4259,9546 +4260,9550 +4261,16794 +4262,17218 +4263,18668 +4264,17111 +4265,7452 +4266,1143 +4267,1143 +4268,1143 +4269,1143 +4270,1143 +4271,1143 +4272,1143 +4273,1143 +4274,1143 +4275,1143 +4276,1143 +4277,1143 +4278,7148 +4279,1143 +4280,1143 +4281,1143 +4282,1143 +4283,1143 +4284,1143 +4285,1143 +4286,1143 +4287,1143 +4288,1143 +4289,6396 +4290,4400 +4291,12105 +4292,1102 +4293,1102 +4294,1102 +4295,1102 +4296,15274 +4297,15274 +4298,1102 +4299,1102 +4300,1102 +4301,1102 +4302,3006 +4303,19615 +4304,8711 +4305,7333 +4306,7717 +4307,6295 +4308,8089 +4309,12395 +4310,12865 +4311,23117 +4312,14403 +4313,4615 +4314,9997 +4315,17135 +4316,6297 +4317,12399 +4318,6291 +4319,17130 +4320,4301 +4321,17138 +4322,15314 +4323,15319 +4324,17128 +4325,4631 +4326,15076 +4327,15273 +4328,17136 +4329,6315 +4330,7906 +4331,13195 +4332,7902 +4333,15858 +4334,7903 +4335,7904 +4336,13055 +4337,18597 +4338,7384 +4339,7332 +4340,18079 +4341,6373 +4342,6389 +4343,12388 +4344,12802 +4345,15274 +4346,15274 +4347,15274 +4348,15274 +4349,15274 +4350,15274 +4351,15274 +4352,15274 +4353,15274 +4354,6270 +4355,1102 +4356,15274 +4357,7137 +4358,18062 +4359,10700 +4360,25483 +4361,18174 +4362,6600 +4363,7839 +4364,6396 +4365,18062 +4366,7918 +4367,6393 +4368,13236 +4369,20743 +4370,7624 +4371,19482 +4372,6594 +4373,26619 +4374,25483 +4375,7840 +4376,7841 +4377,31325 +4378,18062 +4379,15835 +4380,7626 +4381,22293 +4382,20624 +4383,8257 +4384,7361 +4385,22422 +4386,7841 +4387,7377 +4388,7358 +4389,7371 +4390,25482 +4391,21652 +4392,9151 +4393,13215 +4394,7624 +4395,7367 +4396,21632 +4397,7841 +4398,6393 +4399,7375 +4400,7375 +4401,16536 +4402,1438 +4403,7397 +4404,7404 +4405,7326 +4406,7326 +4407,7326 +4408,15274 +4409,15274 +4410,15274 +4411,1102 +4412,15274 +4413,15274 +4414,15274 +4415,1102 +4416,15274 +4417,15274 +4418,6342 +4419,2616 +4420,1097 +4421,1093 +4422,1093 +4423,1097 +4424,2616 +4425,3331 +4426,3331 +4427,6270 +4428,6699 +4429,3093 +4430,9853 +4431,6614 +4432,7798 +4433,4435 +4434,4365 +4435,6614 +4436,9912 +4437,20390 +4438,6977 +4439,6795 +4440,7246 +4441,18078 +4442,2563 +4443,11327 +4444,18694 +4445,19398 +4446,20369 +4447,23019 +4448,4723 +4449,20439 +4450,7184 +4451,7298 +4452,6521 +4453,7248 +4454,20592 +4455,14261 +4456,17231 +4457,6327 +4458,7245 +4459,18072 +4460,568 +4461,7399 +4462,23098 +4463,9916 +4464,7002 +4465,6844 +4466,7249 +4467,7244 +4468,7239 +4469,7216 +4470,21102 +4471,4720 +4472,2616 +4473,7118 +4474,12883 +4475,6645 +4476,12650 +4477,17887 +4478,4744 +4479,6337 +4480,6424 +4481,6346 +4482,7234 +4483,6709 +4484,6712 +4485,6711 +4486,6640 +4487,7047 +4488,7047 +4489,7152 +4490,3426 +4491,12289 +4492,7119 +4493,7120 +4494,7233 +4495,9658 +4496,8271 +4497,1183 +4498,2585 +4499,1183 +4500,6430 +4501,6430 +4502,7221 +4503,3429 +4504,15183 +4505,16791 +4506,6510 +4507,18653 +4508,8639 +4509,17185 +4510,7041 +4511,19783 +4512,1504 +4513,6693 +4514,4771 +4515,1310 +4516,7038 +4517,7038 +4518,2616 +4519,2616 +4520,2616 +4521,7024 +4522,7289 +4523,7098 +4524,7037 +4525,7278 +4526,7202 +4527,1659 +4528,7261 +4529,4775 +4530,7277 +4531,6564 +4532,4777 +4533,4435 +4534,6996 +4535,9838 +4536,6410 +4537,6420 +4538,4781 +4539,7856 +4540,6399 +4541,6343 +4542,6344 +4543,21313 +4544,6399 +4545,16892 +4546,6338 +4547,21016 +4548,3151 +4549,9834 +4550,9832 +4551,3918 +4552,4719 +4553,4722 +4554,4721 +4555,20915 +4556,20914 +4557,28258 +4558,8381 +4559,6521 +4560,4788 +4561,19299 +4562,8531 +4563,4609 +4564,6813 +4565,6433 +4566,20420 +4567,20111 +4568,22478 +4569,19778 +4570,8586 +4571,20430 +4572,4282 +4573,1244 +4574,4202 +4575,20401 +4576,20674 +4577,6592 +4578,6641 +4579,6644 +4580,959 +4581,6679 +4582,18095 +4583,6698 +4584,6669 +4585,6619 +4586,6628 +4587,11208 +4588,4807 +4589,11207 +4590,6636 +4591,6492 +4592,24702 +4593,24710 +4594,4823 +4595,18078 +4596,15736 +4597,15274 +4598,18063 +4599,6350 +4600,18119 +4601,6413 +4602,6402 +4603,4811 +4604,15852 +4605,15853 +4606,15854 +4607,6355 +4608,15855 +4609,1301 +4610,6393 +4611,13103 +4612,4826 +4613,20913 +4614,9859 +4615,4829 +4616,6589 +4617,4831 +4618,4832 +4619,4833 +4620,3093 +4621,7025 +4622,4435 +4623,24215 +4624,1301 +4625,19495 +4626,4717 +4627,7157 +4628,7060 +4629,7925 +4630,7064 +4631,7264 +4632,9632 +4633,9632 +4634,9632 +4635,4841 +4636,9632 +4637,9632 +4638,9632 +4639,7078 +4640,4681 +4641,3146 +4642,4843 +4643,15079 +4644,7269 +4645,4829 +4646,2516 +4647,7293 +4648,7247 +4649,811 +4650,811 +4651,4742 +4652,18789 +4653,6944 +4654,7177 +4655,22193 +4656,6402 +4657,6832 +4658,25945 +4659,11131 +4660,6322 +4661,27551 +4662,15061 +4663,9907 +4664,2563 +4665,23015 +4666,16911 +4667,6832 +4668,26979 +4669,26930 +4670,3396 +4671,25657 +4672,14515 +4673,2563 +4674,27997 +4675,16911 +4676,6991 +4677,25950 +4678,22692 +4679,6832 +4680,26981 +4681,26947 +4682,3396 +4683,23113 +4684,14530 +4685,3396 +4686,23137 +4687,16594 +4688,2563 +4689,23041 +4690,14533 +4691,2563 +4692,28049 +4693,29632 +4694,25770 +4695,26048 +4696,18495 +4697,25767 +4698,14550 +4699,14555 +4700,14232 +4701,23044 +4702,7096 +4703,7064 +4704,6567 +4705,25783 +4706,25979 +4707,25781 +4708,27545 +4709,8098 +4710,23029 +4711,26047 +4712,25803 +4713,23140 +4714,4557 +4715,23024 +4716,26016 +4717,25813 +4718,16652 +4719,18131 +4720,14624 +4721,17193 +4722,23045 +4723,14332 +4724,21302 +4725,25897 +4726,25900 +4727,25895 +4728,7004 +4729,14649 +4730,6261 +4731,14677 +4732,23031 +4733,26078 +4734,11638 +4735,23125 +4736,14686 +4737,17192 +4738,16921 +4739,2599 +4740,19572 +4741,4912 +4742,7169 +4743,6546 +4744,16925 +4745,7005 +4746,12718 +4747,6414 +4748,6414 +4749,6414 +4750,6566 +4751,7266 +4752,19528 +4753,19529 +4754,18083 +4755,18102 +4756,6685 +4757,18053 +4758,6669 +4759,7202 +4760,6566 +4761,4339 +4762,6566 +4763,3186 +4764,6716 +4765,7313 +4766,5154 +4767,3528 +4768,16946 +4769,11207 +4770,7061 +4771,23012 +4772,23075 +4773,6843 +4774,6934 +4775,6633 +4776,19567 +4777,19538 +4778,6808 +4779,6652 +4780,6664 +4781,8702 +4782,16812 +4783,7276 +4784,4719 +4785,6277 +4786,16833 +4787,22927 +4788,4024 +4789,6777 +4790,15165 +4791,6374 +4792,23131 +4793,15247 +4794,6787 +4795,6756 +4796,6758 +4797,15161 +4798,15206 +4799,23087 +4800,697 +4801,1496 +4802,6671 +4803,6630 +4804,7142 +4805,7126 +4806,6646 +4807,6427 +4808,8039 +4809,7287 +4810,19911 +4811,6781 +4812,6879 +4813,15593 +4814,7048 +4815,6935 +4816,4978 +4817,7319 +4818,20155 +4819,4110 +4820,18511 +4821,3445 +4822,4983 +4823,4984 +4824,8459 +4825,8461 +4826,19224 +4827,16865 +4828,16792 +4829,9912 +4830,17153 +4831,17154 +4832,22428 +4833,6929 +4834,7234 +4835,6912 +4836,21601 +4837,21611 +4838,21606 +4839,7086 +4840,13908 +4841,7145 +4842,6421 +4843,7026 +4844,7189 +4845,7106 +4846,7072 +4847,7159 +4848,8802 +4849,2599 +4850,7047 +4851,7047 +4852,6378 +4853,15330 +4854,23103 +4855,5093 +4856,5094 +4857,5115 +4858,5116 +4859,6484 +4860,4433 +4861,5243 +4862,7229 +4863,7602 +4864,7102 +4865,7086 +4866,9090 +4867,6619 +4868,6427 +4869,3146 +4870,7067 +4871,12643 +4872,1504 +4873,4714 +4874,6631 +4875,6668 +4876,6615 +4877,6701 +4878,6617 +4879,6700 +4880,2868 +4881,3093 +4882,8903 +4883,3093 +4884,7252 +4885,7156 +4886,6694 +4887,7110 +4888,3788 +4889,2599 +4890,18047 +4891,4841 +4892,7112 +4893,3672 +4894,3759 +4895,7089 +4896,5287 +4897,6694 +4898,5283 +4899,10672 +4900,5289 +4901,5290 +4902,6098 +4903,7122 +4904,2533 +4905,3146 +4906,8308 +4907,8701 +4908,17169 +4909,7560 +4910,6969 +4911,18522 +4912,6109 +4913,9920 +4914,17075 +4915,16802 +4916,16800 +4917,5337 +4918,1183 +4919,16799 +4920,23007 +4921,9671 +4922,2967 +4923,8498 +4924,19634 +4925,6457 +4926,18116 +4927,8382 +4928,17017 +4929,17097 +4930,1168 +4931,7603 +4932,20013 +4933,15211 +4934,5394 +4935,7007 +4936,16880 +4937,18510 +4938,20423 +4939,20112 +4940,17074 +4941,1805 +4942,16997 +4943,8691 +4944,23116 +4945,7099 +4946,6876 +4947,20603 +4948,5009 +4949,19214 +4950,5411 +4951,16938 +4952,18099 +4953,18117 +4954,16932 +4955,5414 +4956,6566 +4957,1168 +4958,15244 +4959,16760 +4960,5998 +4961,20426 +4962,5418 +4963,23071 +4964,19544 +4965,8490 +4966,7163 +4967,5422 +4968,9925 +4969,6915 +4970,16968 +4971,8572 +4972,6876 +4973,17014 +4974,3006 +4975,18491 +4976,28287 +4977,20009 +4978,19741 +4979,5434 +4980,5435 +4981,1281 +4982,10411 +4983,19596 +4984,21609 +4985,6109 +4986,6521 +4987,20083 +4988,9834 +4989,16673 +4990,16934 +4991,5175 +4992,5567 +4993,7469 +4994,5569 +4995,5567 +4996,6798 +4997,1102 +4998,9834 +4999,14433 +5000,9835 +5001,9834 +5002,6539 +5003,9854 +5004,9857 +5005,9658 +5006,7152 +5007,6478 +5008,9843 +5009,9840 +5010,3453 +5011,9851 +5012,7127 +5013,6376 +5014,6429 +5015,6429 +5016,16849 +5017,1150 +5018,7290 +5019,7256 +5020,4287 +5021,18062 +5022,12904 +5023,12904 +5024,6340 +5025,12904 +5026,9518 +5027,1282 +5028,24742 +5029,9860 +5030,7070 +5031,5536 +5032,5125 +5033,5125 +5034,5125 +5035,5125 +5036,5536 +5037,5125 +5038,7267 +5039,5125 +5040,20321 +5041,6423 +5042,6405 +5043,6404 +5044,6329 +5045,6411 +5046,6394 +5047,6330 +5048,6330 +5049,6405 +5050,8902 +5051,7107 +5052,6705 +5053,20406 +5054,9167 +5055,7048 +5056,1464 +5057,6390 +5058,18050 +5059,7108 +5060,7411 +5061,7260 +5062,9826 +5063,7154 +5064,7288 +5065,6013 +5066,6377 +5067,7235 +5068,6371 +5069,6097 +5070,5291 +5071,18356 +5072,7101 +5073,7101 +5074,7101 +5075,7045 +5076,7242 +5077,7268 +5078,7271 +5079,6492 +5080,1134 +5081,4584 +5082,7412 +5083,1102 +5084,7038 +5085,7209 +5086,7295 +5087,6633 +5088,7073 +5089,9660 +5090,7908 +5091,5805 +5092,6101 +5093,20392 +5094,5808 +5095,24704 +5096,7204 +5097,6851 +5098,17460 +5099,7144 +5100,7086 +5101,6666 +5102,8007 +5103,11207 +5104,7142 +5105,7300 +5106,15308 +5107,16557 +5108,16882 +5109,16589 +5110,12656 +5111,18133 +5112,20491 +5113,6565 +5114,6627 +5115,18072 +5116,19571 +5117,19570 +5118,6657 +5119,18095 +5120,18096 +5121,6646 +5122,6702 +5123,6701 +5124,6002 +5125,6628 +5126,6270 +5127,6270 +5128,568 +5129,6270 +5130,6270 +5131,6270 +5132,6270 +5133,1438 +5134,7231 +5135,6651 +5136,6704 +5137,1504 +5138,15525 +5139,1317 +5140,32819 +5141,1317 +5142,1317 +5143,7262 +5144,1317 +5145,1317 +5146,1317 +5147,1317 +5148,1317 +5149,1317 +5150,1317 +5151,1317 +5152,1317 +5153,1317 +5154,1317 +5155,1317 +5156,1317 +5157,1317 +5158,1317 +5159,1317 +5160,1317 +5161,1317 +5162,1317 +5163,1317 +5164,8284 +5165,19799 +5166,4045 +5167,18047 +5168,7273 +5169,7274 +5170,5283 +5171,6521 +5172,6354 +5173,7328 +5174,7187 +5175,7299 +5176,7299 +5177,7299 +5178,7299 +5179,5283 +5180,6494 +5181,23142 +5182,8000 +5183,21607 +5184,7124 +5185,8545 +5186,7125 +5187,8600 +5188,7125 +5189,7130 +5190,7240 +5191,7311 +5192,5144 +5193,22998 +5194,19296 +5195,16966 +5196,13913 +5197,20953 +5198,21011 +5199,1978 +5200,5949 +5201,20340 +5202,12803 +5203,6669 +5204,7046 +5205,6416 +5206,6331 +5207,20903 +5208,20829 +5209,6099 +5210,20787 +5211,20852 +5212,6081 +5213,20907 +5214,21020 +5215,20815 +5216,20790 +5217,3422 +5218,3422 +5219,7149 +5220,7134 +5221,7164 +5222,6001 +5223,1262 +5224,6000 +5225,6000 +5226,6001 +5227,1262 +5228,6007 +5229,6007 +5230,6008 +5231,6008 +5232,6009 +5233,6017 +5234,6016 +5235,6081 +5236,20916 +5237,13709 +5238,20787 +5239,20776 +5240,6101 +5241,6097 +5242,6093 +5243,12601 +5244,21024 +5245,21019 +5246,6093 +5247,20828 +5248,21023 +5249,20793 +5250,6140 +5251,8752 +5252,20825 +5253,20801 +5254,10179 +5255,8472 +5256,19673 +5257,23000 +5258,6231 +5259,6232 +5260,6233 +5261,6234 +5262,6235 +5263,6238 +5264,6244 +5265,18117 +5266,9837 +5267,3363 +5268,16363 +5269,2885 +5270,15857 +5271,19488 +5272,6927 +5273,13988 +5274,17135 +5275,7545 +5276,5010 +5277,5542 +5278,6434 +5279,20411 +5280,6441 +5281,6443 +5282,6447 +5283,6448 +5284,6454 +5285,6469 +5286,7508 +5287,3385 +5288,5128 +5289,3797 +5290,4441 +5291,5224 +5292,2777 +5293,6799 +5294,9587 +5295,9587 +5296,9587 +5297,9587 +5298,9587 +5299,17223 +5300,5527 +5301,3879 +5302,18451 +5303,2840 +5304,5098 +5305,7526 +5306,7524 +5307,13300 +5308,7530 +5309,7531 +5310,7533 +5311,17159 +5312,7540 +5313,7544 +5314,23012 +5315,28200 +5316,16870 +5317,8658 +5318,22225 +5319,7553 +5320,7554 +5321,20014 +5322,19611 +5323,7557 +5324,8576 +5325,7559 +5326,6097 +5327,16958 +5328,7563 +5329,8289 +5330,18061 +5331,7425 +5332,8289 +5333,13990 +5334,18079 +5335,1183 +5336,9849 +5337,19899 +5338,7572 +5339,7573 +5340,20417 +5341,8717 +5342,18099 +5343,23088 +5344,8485 +5345,8602 +5346,20719 +5347,21022 +5348,3331 +5349,6342 +5350,18081 +5351,6011 +5352,7637 +5353,7630 +5354,8919 +5355,7662 +5356,20834 +5357,1685 +5358,13282 +5359,7798 +5360,7697 +5361,6651 +5362,1504 +5363,7717 +5364,4718 +5365,6700 +5366,6554 +5367,4717 +5368,7718 +5369,7251 +5370,7716 +5371,6652 +5372,8051 +5373,15026 +5374,7719 +5375,8119 +5376,7268 +5377,7714 +5378,14964 +5379,20781 +5380,7726 +5381,7733 +5382,7735 +5383,7164 +5384,7737 +5385,8007 +5386,7740 +5387,23108 +5388,7741 +5389,7742 +5390,7744 +5391,7791 +5392,6432 +5393,5108 +5394,7823 +5395,18671 +5396,13824 +5397,7828 +5398,16951 +5399,7835 +5400,1150 +5401,1150 +5402,1150 +5403,1150 +5404,6729 +5405,23105 +5406,6007 +5407,6007 +5408,6008 +5409,6008 +5410,7867 +5411,7866 +5412,6492 +5413,7886 +5414,6683 +5415,7866 +5416,7866 +5417,7888 +5418,7889 +5419,17002 +5420,8635 +5421,7899 +5422,16974 +5423,19221 +5424,7928 +5425,7932 +5426,19396 +5427,8118 +5428,8117 +5429,8121 +5430,8120 +5431,18058 +5432,8114 +5433,6358 +5434,7723 +5435,8115 +5436,7723 +5437,1442 +5438,3788 +5439,21318 +5440,3788 +5441,1816 +5442,7951 +5443,18523 +5444,15089 +5445,9865 +5446,7954 +5447,7954 +5448,7954 +5449,7954 +5450,7954 +5451,7954 +5452,7954 +5453,7954 +5454,7954 +5455,7957 +5456,7956 +5457,1496 +5458,9908 +5459,5014 +5460,7976 +5461,9659 +5462,7982 +5463,7984 +5464,8033 +5465,7345 +5466,7987 +5467,6680 +5468,7988 +5469,1116 +5470,7989 +5471,7990 +5472,25473 +5473,7994 +5474,25481 +5475,8951 +5476,7996 +5477,6406 +5478,557 +5479,8088 +5480,25475 +5481,7999 +5482,811 +5483,811 +5484,811 +5485,1102 +5486,1102 +5487,1102 +5488,1102 +5489,1102 +5490,8009 +5491,2839 +5493,13120 +5494,8014 +5495,8011 +5497,8018 +5498,12309 +5500,12310 +5501,7380 +5502,8016 +5503,22193 +5504,22193 +5505,7152 +5506,1504 +5507,7365 +5508,8025 +5509,8026 +5510,8026 +5511,8026 +5512,8026 +5513,7393 +5514,6851 +5515,7985 +5516,8028 +5517,16454 +5518,8902 +5519,8032 +5520,8040 +5521,8042 +5522,21610 +5523,7177 +5524,16212 +5525,8048 +5526,8049 +5527,7177 +5528,1102 +5529,6371 +5530,44344 +5531,7141 +5532,8078 +5533,9129 +5534,7416 +5535,8093 +5536,8094 +5537,3486 +5538,8096 +5539,8097 +5540,6439 +5541,19801 +5542,23131 +5543,15274 +5544,7741 +5545,5290 +5546,10673 +5547,8122 +5548,3187 +5549,6432 +5550,6592 +5551,5066 +5552,5509 +5553,5194 +5554,47303 +5555,47449 +5556,1628 +5557,5638 +5558,2388 +5559,16762 +5560,6097 +5561,8127 +5562,8132 +5563,8132 +5564,8132 +5565,6504 +5566,7999 +5567,8233 +5568,5998 +5569,7415 +5570,18050 +5571,1281 +5572,1277 +5573,3565 +5574,8269 +5575,3568 +5576,1183 +5577,15274 +5578,15274 +5579,19544 +5580,19777 +5581,20446 +5582,8283 +5583,8284 +5584,18096 +5585,6492 +5586,1547 +5587,19648 +5588,7976 +5589,8292 +5590,16918 +5591,23055 +5592,8295 +5593,8296 +5594,7649 +5595,8298 +5596,20720 +5597,8376 +5598,8377 +5599,8378 +5600,8379 +5601,18053 +5602,18597 +5603,8384 +5604,28159 +5605,3550 +5606,16817 +5607,8399 +5608,15278 +5609,6755 +5610,23115 +5611,8436 +5612,17010 +5613,20384 +5614,20182 +5615,20121 +5616,20376 +5617,6718 +5618,15032 +5619,8518 +5620,7206 +5621,8543 +5622,14432 +5623,8547 +5624,15905 +5625,13247 +5626,19246 +5627,20354 +5628,6639 +5629,8450 +5630,8449 +5631,15741 +5632,4133 +5633,15791 +5634,8453 +5635,1496 +5636,19568 +5637,2460 +5638,8471 +5639,8523 +5640,1301 +5641,1301 +5642,1301 +5643,1301 +5644,1103 +5645,8544 +5646,21672 +5647,1103 +5648,1103 +5649,1103 +5650,1103 +5651,8555 +5652,8556 +5653,8557 +5654,2947 +5655,13108 +5656,13108 +5657,6270 +5658,1155 +5659,8560 +5660,1155 +5661,1155 +5662,1155 +5663,16208 +5664,8562 +5665,16207 +5666,1155 +5667,1155 +5668,16208 +5669,2480 +5670,1155 +5671,1155 +5672,1155 +5673,1155 +5674,1155 +5675,8564 +5676,1155 +5677,1155 +5678,1155 +5679,1155 +5680,1155 +5681,8283 +5682,1155 +5683,1155 +5684,1155 +5685,1155 +5686,7164 +5687,6554 +5688,8616 +5689,8737 +5690,7737 +5691,8735 +5692,8622 +5693,8622 +5694,8625 +5695,8625 +5696,5563 +5697,5563 +5698,5563 +5699,5563 +5700,5563 +5701,5563 +5702,5563 +5703,5563 +5704,5563 +5705,5563 +5706,5563 +5707,5563 +5708,5563 +5709,5563 +5710,5563 +5711,5563 +5712,5563 +5713,5563 +5714,5563 +5715,5563 +5716,5563 +5717,8623 +5718,8624 +5719,1246 +5720,1246 +5721,1246 +5722,1246 +5723,1246 +5724,1246 +5725,1246 +5726,1246 +5727,1246 +5728,1246 +5729,1246 +5730,1317 +5731,8626 +5732,8627 +5733,7340 +5734,8628 +5735,3411 +5736,8629 +5737,8630 +5738,8631 +5739,12368 +5740,8733 +5741,4719 +5742,20569 +5743,9842 +5744,8279 +5745,8745 +5746,8746 +5747,8747 +5748,20713 +5749,19291 +5750,8749 +5751,23078 +5752,20596 +5753,8753 +5754,7093 +5755,8719 +5756,20591 +5757,8803 +5758,9632 +5759,9632 +5760,9632 +5761,19544 +5762,12998 +5763,8859 +5764,8860 +5765,8861 +5766,12397 +5767,16611 +5768,16037 +5769,1097 +5770,12695 +5771,1102 +5772,1102 +5773,15274 +5774,15274 +5775,15274 +5776,20449 +5777,8899 +5778,5404 +5779,20084 +5780,8905 +5781,8908 +5782,22393 +5783,8912 +5784,8913 +5785,8914 +5786,1102 +5787,1102 +5788,1102 +5789,1102 +5790,8040 +5791,8040 +5792,8918 +5793,8917 +5794,8922 +5795,8923 +5796,10043 +5797,9110 +5798,8926 +5799,8927 +5800,8928 +5801,13715 +5802,8931 +5803,8932 +5804,4435 +5805,4045 +5806,8935 +5807,3093 +5808,8940 +5809,8940 +5810,8942 +5811,8952 +5812,12694 +5813,9055 +5814,16899 +5815,9057 +5816,9058 +5817,9060 +5818,21026 +5819,15810 +5820,9077 +5821,16982 +5822,9082 +5823,15856 +5824,9106 +5825,9305 +5826,7629 +5827,4435 +5828,6012 +5829,6633 +5830,15706 +5831,7038 +5832,7038 +5833,9116 +5834,9124 +5835,18078 +5836,12644 +5837,9134 +5838,9144 +5839,9135 +5840,20952 +5841,3422 +5842,18107 +5843,3596 +5844,9147 +5845,6350 +5846,9148 +5847,9150 +5848,7126 +5849,9151 +5850,9152 +5851,9154 +5852,9155 +5853,9158 +5854,9157 +5855,4045 +5856,16751 +5857,9162 +5858,9161 +5859,9163 +5860,9164 +5861,9165 +5862,9166 +5863,16161 +5864,17343 +5865,9166 +5866,9116 +5867,9208 +5868,9207 +5869,9209 +5870,22671 +5871,7296 +5872,17343 +5873,17343 +5874,17343 +5875,17343 +5876,6624 +5877,9284 +5878,8932 +5879,9285 +5880,9288 +5881,9289 +5882,9467 +5883,9291 +5884,9292 +5896,9310 +5897,9319 +5916,7737 +5917,811 +5918,3914 +5919,9354 +5936,9365 +5937,9345 +5938,7345 +5939,9374 +5940,2916 +5941,4339 +5942,9377 +5943,9378 +5944,7554 +5945,9396 +5946,9148 +5947,9397 +5948,9148 +5949,9135 +5950,9429 +5951,9430 +5952,13531 +5953,15804 +5954,9465 +5956,8568 +5957,9499 +5958,9514 +5959,2885 +5960,9152 +5961,12402 +5962,9535 +5963,17212 +5964,9544 +5965,23033 +5966,9549 +5967,9552 +5968,6777 +5969,23059 +5970,19128 +5971,23026 +5972,15274 +5973,1102 +5974,15274 +5975,9584 +5976,20621 +5996,4836 +5997,15732 +5998,4435 +6016,4045 +6036,6475 +6037,20656 +6038,9633 +6039,1301 +6040,9634 +6041,9635 +6042,9637 +6043,7261 +6044,15274 +6045,15274 +6046,15274 +6047,1102 +6048,15774 +6049,9639 +6050,9058 +6051,15747 +6052,4135 +6053,1301 +6054,1301 +6055,1301 +6056,1301 +6057,1301 +6058,8419 +6059,9930 +6060,16588 +6061,9644 +6062,16805 +6063,6954 +6064,16265 +6065,9663 +6066,9666 +6067,9668 +6068,1301 +6069,7407 +6070,17173 +6071,6563 +6072,9666 +6073,9666 +6074,9711 +6075,9725 +6076,16843 +6077,9728 +6078,18664 +6079,9730 +6080,8917 +6081,9733 +6082,47459 +6083,9737 +6084,9738 +6085,11368 +6086,9741 +6087,9742 +6088,19805 +6089,18117 +6090,10453 +6091,9822 +6092,49990 +6093,19646 +6094,19390 +6095,11548 +6096,2163 +6097,2470 +6098,12679 +6116,12648 +6117,9972 +6118,9974 +6119,12681 +6120,9983 +6121,9984 +6122,9985 +6123,12683 +6124,9987 +6125,9995 +6126,10002 +6127,10003 +6128,10028 +6129,12646 +6130,17462 +6131,10244 +6132,1155 +6133,1155 +6134,10108 +6135,10109 +6136,10112 +6137,10114 +6138,10115 +6139,12684 +6140,12649 +6141,9913 +6142,10126 +6143,9915 +6144,12680 +6145,7570 +6146,10190 +6147,9508 +6148,16853 +6149,15718 +6150,10301 +6166,10345 +6167,6423 +6168,9157 +6169,6678 +6170,10353 +6171,9374 +6172,12927 +6173,16809 +6174,13583 +6175,10365 +6176,3725 +6177,6934 +6178,8928 +6179,15166 +6180,11563 +6181,4262 +6182,12312 +6183,12311 +6184,10399 +6185,23008 +6186,20119 +6187,18658 +6188,10434 +6189,10448 +6190,10449 +6191,10454 +6192,9666 +6193,10481 +6194,19404 +6195,12944 +6196,6794 +6197,2644 +6198,10529 +6199,10530 +6200,10532 +6201,9510 +6202,10535 +6203,18669 +6204,13266 +6205,7495 +6206,14040 +6207,6710 +6208,6710 +6209,6710 +6210,6710 +6211,1301 +6212,10546 +6213,4717 +6214,10642 +6215,10654 +6216,7414 +6217,21205 +6218,21207 +6219,7494 +6220,20536 +6221,11431 +6222,11431 +6223,10721 +6224,5176 +6225,10814 +6226,12652 +6227,10815 +6228,10816 +6229,10817 +6230,21095 +6231,21094 +6232,10820 +6233,10821 +6234,10822 +6235,10823 +6236,10824 +6237,10825 +6238,12389 +6239,12400 +6240,12387 +6241,17123 +6242,12386 +6243,12393 +6244,10913 +6245,7289 +6246,10920 +6247,10921 +6248,6400 +6249,10922 +6250,10923 +6251,3124 +6252,6400 +6253,10924 +6254,10968 +6255,6590 +6256,20730 +6257,11012 +6258,6427 +6259,4045 +6260,1656 +6261,15736 +6262,7152 +6263,11182 +6264,12716 +6265,6689 +6266,16560 +6267,16561 +6268,17098 +6269,17152 +6270,1102 +6271,15274 +6272,1102 +6273,1102 +6274,1102 +6275,1102 +6276,6639 +6277,11160 +6278,11161 +6279,3093 +6280,3093 +6281,4262 +6282,11166 +6283,2757 +6284,11180 +6285,11181 +6286,6694 +6287,11183 +6288,11185 +6289,24702 +6290,18536 +6291,18535 +6292,24701 +6293,11199 +6294,24701 +6295,24701 +6296,6691 +6297,7741 +6298,6666 +6299,24696 +6300,6628 +6301,6375 +6302,4433 +6303,24697 +6304,7629 +6305,7629 +6306,7629 +6307,18113 +6308,24710 +6309,24712 +6310,24712 +6311,24712 +6312,3422 +6313,3422 +6314,23082 +6315,11247 +6316,11268 +6317,4813 +6318,20335 +6319,11253 +6320,18700 +6321,14433 +6322,11259 +6323,21051 +6324,12696 +6325,811 +6326,811 +6327,11271 +6328,1102 +6329,1102 +6330,1102 +6331,20333 +6332,9837 +6333,20604 +6334,11289 +6335,11330 +6336,3057 +6337,3058 +6338,21208 +6339,21208 +6340,23027 +6341,11410 +6342,11431 +6343,11431 +6344,11431 +6345,11431 +6346,11431 +6347,11431 +6348,11431 +6349,11431 +6350,6885 +6351,9151 +6352,9822 +6353,12331 +6354,12332 +6355,12331 +6356,12331 +6357,8928 +6358,9150 +6359,11451 +6360,11453 +6361,24709 +6362,4823 +6363,24712 +6364,24712 +6365,20618 +6366,20731 +6367,20619 +6368,1102 +6369,1102 +6370,18114 +6371,15771 +6372,15748 +6373,15788 +6374,6371 +6375,11431 +6376,11431 +6377,11431 +6378,23139 +6379,16922 +6380,1673 +6381,27549 +6382,16916 +6383,18483 +6384,11518 +6385,11519 +6386,25805 +6387,25800 +6388,25806 +6389,15517 +6390,15274 +6391,15274 +6392,11533 +6393,16642 +6394,11571 +6395,13677 +6396,14602 +6397,14603 +6398,17118 +6399,14599 +6400,11559 +6401,1102 +6402,25812 +6403,25808 +6404,25815 +6405,14625 +6406,14617 +6407,14618 +6408,17061 +6409,17121 +6410,17009 +6411,25882 +6412,25883 +6413,25886 +6414,9846 +6415,12653 +6416,14651 +6417,23091 +6418,14656 +6419,14676 +6420,14672 +6421,14671 +6422,21297 +6423,26077 +6424,26082 +6425,26076 +6426,26073 +6427,12676 +6428,14684 +6429,15910 +6430,18471 +6431,16986 +6432,23039 +6433,21291 +6434,18690 +6435,11766 +6436,6521 +6437,11780 +6438,11791 +6439,11791 +6440,12643 +6441,11825 +6442,15027 +6443,11164 +6444,11889 +6445,6629 +6446,2593 +6447,22805 +6448,20349 +6449,23001 +6450,8603 +6451,11926 +6452,2885 +6453,2885 +6454,8117 +6455,18706 +6456,2885 +6457,3257 +6458,11932 +6459,11935 +6460,11945 +6461,11946 +6462,11449 +6463,9846 +6464,12926 +6465,12693 +6466,23010 +6467,11952 +6468,11960 +6469,20652 +6470,8913 +6471,3668 +6472,24741 +6473,17091 +6474,1102 +6475,1102 +6476,15274 +6477,11997 +6478,11999 +6479,12018 +6480,9541 +6481,12068 +6482,12070 +6486,10043 +6487,20931 +6488,12221 +6489,7798 +6490,7798 +6491,7798 +6492,7798 +6493,7798 +6494,7798 +6495,7798 +6496,7798 +6497,7798 +6498,12222 +6499,12222 +6500,12222 +6501,12222 +6502,12282 +6503,12670 +6504,20116 +6505,12286 +6506,22680 +6507,22679 +6508,25948 +6509,22678 +6510,22682 +6511,16698 +6512,16813 +6513,16565 +6514,23104 +6515,16562 +6516,12328 +6517,17124 +6518,16991 +6519,8437 +6520,23052 +6521,6717 +6522,11451 +6523,14259 +6524,12370 +6525,12371 +6526,12372 +6527,12422 +6528,16567 +6529,12410 +6530,18098 +6531,19110 +6532,12423 +6533,12425 +6534,12434 +6535,12435 +6536,14739 +6537,12439 +6538,16522 +6539,14735 +6540,14738 +6541,14737 +6542,15267 +6543,14736 +6544,12328 +6545,25755 +6546,25759 +6547,25756 +6548,25757 +6549,25953 +6550,25758 +6551,6931 +6552,14731 +6553,14730 +6554,14729 +6555,23006 +6556,14728 +6557,19184 +6558,17113 +6559,2210 +6560,25955 +6561,14551 +6562,16881 +6563,14750 +6564,23109 +6565,16793 +6566,16470 +6567,14748 +6568,14746 +6569,18120 +6570,14752 +6571,18493 +6572,18701 +6573,25760 +6574,12456 +6575,25967 +6576,25762 +6577,25761 +6578,12453 +6579,25764 +6580,25763 +6581,17127 +6582,14759 +6583,3657 +6584,14758 +6585,23053 +6586,14755 +6587,14757 +6588,17195 +6589,9833 +6590,25793 +6591,25797 +6592,25798 +6593,25993 +6594,25795 +6595,25794 +6596,25796 +6597,25799 +6598,18449 +6599,26014 +6600,14774 +6601,14769 +6602,17167 +6603,14773 +6604,23022 +6605,14775 +6606,12503 +6607,14776 +6608,27542 +6609,16862 +6610,16878 +6611,16866 +6612,19921 +6613,16869 +6614,23138 +6615,16864 +6616,16863 +6617,4904 +6618,8043 +6619,12547 +6620,7798 +6621,12556 +6622,21554 +6623,12328 +6624,12565 +6625,12567 +6626,12567 +6627,12595 +6628,16952 +6629,23141 +6630,6274 +6631,20336 +6632,15156 +6633,12610 +6634,6381 +6635,6400 +6636,12621 +6637,6340 +6638,6340 +6639,18107 +6640,12625 +6641,20167 +6642,12632 +6643,18535 +6644,24697 +6645,24694 +6646,24704 +6647,24711 +6648,12328 +6649,12328 +6650,12328 +6651,18652 +6652,12735 +6653,12992 +6654,12738 +6655,12736 +6656,12746 +6657,12780 +6658,12643 +6659,12777 +6660,13001 +6661,1102 +6662,11462 +6663,15274 +6664,12782 +6665,12783 +6666,12784 +6667,23110 +6668,12788 +6669,9833 +6670,12794 +6671,12795 +6672,15274 +6673,9832 +6674,9832 +6675,12804 +6676,12805 +6677,21018 +6678,14434 +6679,22241 +6680,12857 +6681,20593 +6682,12858 +6683,12863 +6684,12866 +6685,11473 +6686,15492 +6687,22217 +6688,17277 +6689,20325 +6690,17142 +6691,12880 +6692,25597 +6693,6486 +6694,18454 +6695,9852 +6696,20650 +6697,5116 +6698,9834 +6706,9834 +6707,9834 +6708,9834 +6709,12924 +6710,1102 +6711,9834 +6712,12925 +6713,12928 +6714,18062 +6715,7064 +6716,15274 +6717,8931 +6718,7411 +6719,17134 +6720,28984 +6721,12934 +6722,12935 +6723,4841 +6724,9834 +6725,18469 +6726,16716 +6727,17067 +6728,9834 +6729,20821 +6730,12944 +6731,12945 +6732,12943 +6733,12948 +6734,15274 +6735,15274 +6736,15274 +6737,16852 +6738,19126 +6739,20666 +6740,12977 +6741,20177 +6742,12981 +6743,12984 +6744,16956 +6745,23069 +6746,18507 +6747,12986 +6748,9836 +6749,9823 +6750,12987 +6751,23126 +6752,16988 +6753,12989 +6754,1183 +6755,12991 +6756,12991 +6757,9837 +6766,13002 +6767,12863 +6768,13005 +6769,13005 +6770,13006 +6771,13005 +6772,13005 +6773,13011 +6774,13012 +6775,13005 +6776,13005 +6777,13006 +6778,13005 +6779,13005 +6780,13023 +6781,18100 +6782,13024 +6783,13025 +6784,13026 +6785,7637 +6786,13043 +6787,13046 +6788,17122 +6789,23096 +6790,6012 +6791,17227 +6792,13052 +6793,13053 +6794,17187 +6795,13056 +6796,13057 +6797,21014 +6798,13060 +6799,13061 +6800,13063 +6801,13077 +6802,20010 +6803,15430 +6804,19707 +6805,13082 +6806,13084 +6807,557 +6808,13063 +6809,7425 +6810,13085 +6811,13086 +6812,13100 +6826,6658 +6827,13110 +6828,18476 +6829,20075 +6830,18607 +6831,20292 +6832,23097 +6833,13115 +6834,13116 +6835,13117 +6836,16368 +6837,13119 +6838,9396 +6839,13121 +6840,13122 +6841,4984 +6842,7798 +6843,7922 +6844,18060 +6845,13124 +6846,13125 +6847,13125 +6848,13918 +6849,18054 +6850,13128 +6851,19800 +6852,13129 +6866,13144 +6886,16752 +6887,4811 +6888,18052 +6889,18046 +6890,4113 +6891,811 +6892,1102 +6893,13290 +6894,13291 +6895,13292 +6896,30610 +6897,12547 +6898,21597 +6899,21597 +6900,13337 +6901,23002 +6902,17001 +6903,13357 +6904,20575 +6905,22222 +6906,13361 +6907,16903 +6908,16723 +6909,20185 +6910,13365 +6911,16931 +6912,13370 +6913,13458 +6914,1695 +6915,6564 +6916,13005 +6926,13430 +6927,13433 +6928,13085 +6929,7798 +6930,13435 +6931,2757 +6946,13455 +6947,13710 +6948,6418 +6949,13710 +6950,13710 +6951,13709 +6952,7169 +6953,13466 +6966,19135 +6967,20162 +6968,19771 +6969,20400 +6970,21475 +6971,15327 +6972,22480 +6973,22481 +6974,22482 +6975,22734 +6976,25079 +6977,22731 +6978,19133 +6979,19274 +6980,20601 +6981,20606 +6982,19652 +6983,19773 +6984,20159 +6985,20163 +6986,19495 +6987,6628 +6988,12328 +6989,1150 +6990,13490 +6991,9116 +6992,13493 +6993,13494 +6994,13495 +6995,13703 +6996,13497 +6997,7798 +6998,13500 +6999,2757 +7000,16919 +7001,20824 +7002,4743 +7003,13508 +7004,15042 +7005,6440 +7006,2757 +7007,6340 +7026,17119 +7027,17148 +7046,13649 +7047,17146 +7048,15283 +7049,17143 +7050,15863 +7051,8721 +7052,13664 +7053,23092 +7054,17133 +7055,17112 +7056,15243 +7057,28729 +7058,13671 +7059,13672 +7060,17132 +7061,13678 +7062,13679 +7063,12675 +7064,13681 +7065,13684 +7066,13685 +7067,13686 +7068,20874 +7069,23755 +7070,4136 +7071,13692 +7072,3668 +7073,6002 +7074,7048 +7075,8560 +7076,23754 +7077,21583 +7078,23287 +7079,8025 +7080,13689 +7081,13687 +7082,23284 +7083,7279 +7084,15274 +7085,15274 +7086,15274 +7087,1102 +7088,1102 +7089,1102 +7090,15274 +7091,15274 +7092,15274 +7093,15274 +7094,13711 +7095,16810 +7096,19573 +7097,2474 +7098,3429 +7099,13713 +7100,13715 +7101,13714 +7106,16959 +7107,13758 +7108,18661 +7109,18508 +7110,8720 +7111,14986 +7112,14657 +7113,14678 +7114,1102 +7115,19204 +7116,20602 +7117,19776 +7118,20161 +7119,15507 +7120,22730 +7126,13783 +7127,7171 +7128,13785 +7129,13484 +7130,15288 +7131,13799 +7132,3541 +7133,13011 +7134,13799 +7135,13806 +7146,8735 +7147,13829 +7148,31201 +7166,13848 +7167,6471 +7168,13849 +7169,13848 +7170,13853 +7171,13585 +7186,6081 +7187,16999 +7188,13863 +7189,20622 +7190,20623 +7191,16367 +7192,1102 +7206,18059 +7207,18057 +7208,13885 +7209,13884 +7226,13903 +7227,13905 +7228,13906 +7229,11563 +7230,19610 +7231,7695 +7246,12925 +7247,11449 +7248,8801 +7249,7162 +7266,11181 +7267,18597 +7268,18059 +7269,18057 +7270,13992 +7271,13998 +7272,7143 +7273,14000 +7274,11181 +7275,12328 +7276,23035 +7277,14001 +7278,21330 +7279,1816 +7280,17232 +7281,14002 +7282,3248 +7283,23010 +7284,3992 +7285,14004 +7286,6646 +7287,6629 +7288,1102 +7289,1102 +7290,1102 +7291,1695 +7292,14006 +7293,14007 +7294,14008 +7295,6645 +7296,14019 +7297,21604 +7298,20425 +7299,22021 +7306,14023 +7307,18098 +7308,12328 +7309,8927 +7326,19132 +7327,20398 +7328,19649 +7329,20160 +7330,2632 +7331,26046 +7332,15003 +7333,7276 +7334,16523 +7335,12482 +7336,14069 +7337,24646 +7338,9833 +7339,9835 +7340,9832 +7341,9837 +7342,14432 +7343,7602 +7344,21604 +7345,14305 +7346,14306 +7347,14307 +7348,6735 +7349,17230 +7350,16566 +7351,16563 +7352,14316 +7353,16599 +7354,16605 +7355,16604 +7356,23100 +7357,15906 +7358,2057 +7359,17225 +7360,15274 +7361,1102 +7362,1102 +7363,1102 +7364,1102 +7365,14326 +7366,16601 +7367,16606 +7368,16600 +7369,16607 +7370,16603 +7371,21322 +7372,2585 +7373,14777 +7374,14781 +7375,25674 +7376,18062 +7377,23030 +7378,14803 +7386,14831 +7387,14832 +7388,9134 +7389,3426 +7390,17215 +7391,28734 +7392,6646 +7406,6755 +7407,21900 +7408,11270 +7409,19043 +7410,14803 +7411,23043 +7412,21902 +7413,21298 +7414,21901 +7415,14950 +7416,26032 +7417,26030 +7418,26034 +7419,26043 +7420,30091 +7421,26036 +7422,26037 +7423,26039 +7424,26040 +7425,3920 +7426,9832 +7427,9853 +7428,26371 +7429,14646 +7430,14990 +7431,14644 +7432,16825 +7433,16651 +7434,14645 +7435,14589 +7436,15175 +7437,14647 +7438,14648 +7439,14995 +7440,15001 +7441,21311 +7442,14993 +7443,15000 +7444,14996 +7445,5414 +7446,23062 +7447,14997 +7448,14999 +7449,15274 +7450,1102 +7451,1102 +7452,1102 +7453,1102 +7454,25862 +7455,25868 +7456,30092 +7457,25865 +7458,25860 +7459,25872 +7460,26064 +7461,25861 +7462,25866 +7463,4403 +7464,11180 +7465,26065 +7466,9832 +7467,9853 +7468,15005 +7469,15015 +7470,15911 +7471,15008 +7472,13051 +7473,15014 +7474,15178 +7475,15410 +7476,15012 +7477,17099 +7478,15020 +7479,15307 +7480,15018 +7481,15017 +7482,17194 +7483,23057 +7484,15023 +7485,15016 +7486,22559 +7487,25820 +7488,25824 +7489,25819 +7490,25817 +7491,25822 +7492,26018 +7493,25818 +7494,25821 +7495,18451 +7496,18697 +7497,9850 +7498,13025 +7499,15123 +7500,8031 +7506,15150 +7507,22923 +7508,22923 +7509,22958 +7510,15201 +7511,15223 +7512,15232 +7513,25078 +7514,25076 +7515,25072 +7516,15274 +7517,15398 +7518,15400 +7519,15401 +7520,15909 +7521,15405 +7522,15409 +7523,15402 +7524,15406 +7525,15407 +7526,16838 +7527,17094 +7528,15416 +7529,21292 +7530,15415 +7531,15412 +7532,15417 +7533,23016 +7534,15413 +7535,15411 +7536,26099 +7537,18775 +7538,26087 +7539,3193 +7540,26098 +7541,26089 +7542,26090 +7543,26091 +7544,26097 +7545,26088 +7546,6926 +7547,9846 +7548,15420 +7549,14437 +7550,9854 +7551,15421 +7552,9832 +7553,15422 +7554,15424 +7555,6098 +7556,21598 +7557,15427 +7558,15428 +7559,11919 +7560,1102 +7561,1102 +7566,16204 +7567,15471 +7568,7098 +7569,16203 +7586,7245 +7587,15510 +7606,15721 +7607,20920 +7608,18494 +7609,15564 +7610,21596 +7611,15561 +7612,15576 +7613,1102 +7626,15583 +7627,15590 +7628,13125 +7629,362 +7646,11448 +7666,15685 +7667,8752 +7668,4049 +7669,7045 +7670,1659 +7671,18707 +7672,6014 +7673,9854 +7674,15692 +7675,9717 +7676,18091 +7677,15704 +7678,1102 +7679,7886 +7680,3563 +7681,18519 +7682,6555 +7683,15720 +7684,15800 +7685,15725 +7686,9834 +7687,15726 +7688,15731 +7689,20172 +7690,15753 +7691,16823 +7706,15786 +7707,15795 +7708,20825 +7709,15824 +7710,20360 +7711,12673 +7712,4488 +7713,15806 +7714,20318 +7715,9725 +7716,15685 +7717,22221 +7718,15809 +7719,15811 +7720,16224 +7721,19735 +7722,6522 +7723,21252 +7724,16223 +7725,15817 +7726,18751 +7727,17197 +7728,19109 +7729,15821 +7730,15466 +7731,15420 +7732,15825 +7733,15828 +7734,3410 +7735,13489 +7736,5224 +7737,1246 +7738,16815 +7739,15866 +7740,7366 +7741,15867 +7742,1102 +7746,7899 +7747,18792 +7748,4405 +7749,21595 +7750,13673 +7751,15886 +7752,19670 +7753,19371 +7754,15889 +7755,15890 +7756,15894 +7757,20316 +7758,22238 +7759,15897 +7760,21404 +7761,19210 +7766,29438 +7767,29434 +7768,29436 +7769,29439 +7770,29435 +7771,29437 +7786,15938 +7787,18455 +7806,15963 +7807,15964 +7808,15965 +7809,15966 +7810,15794 +7811,4836 +7812,4829 +7813,1659 +7826,15990 +7846,7886 +7847,1438 +7848,18500 +7866,16023 +7867,16024 +7868,9288 +7869,16028 +7870,18721 +7871,6357 +7872,7411 +7886,4049 +7887,16052 +7888,9854 +7906,16283 +7907,16065 +7908,1134 +7909,13496 +7910,4777 +7911,20657 +7912,4719 +7913,16081 +7914,16080 +7915,16084 +7916,16086 +7917,16087 +7918,16089 +7919,16091 +7920,3409 +7921,16092 +7922,16093 +7923,16100 +7924,6985 +7925,16102 +7926,16103 +7927,16105 +7928,16106 +7929,23538 +7930,16109 +7931,16110 +7932,16111 +7933,16113 +7934,16115 +7935,16117 +7936,16118 +7937,16119 +7938,16124 +7939,24393 +7940,8533 +7941,16126 +7942,5639 +7943,16128 +7944,20221 +7945,5223 +7946,15887 +7947,16130 +7948,16131 +7949,16133 +7950,16134 +7951,17183 +7952,16136 +7953,16137 +7954,19748 +7955,20071 +7956,16146 +7957,16147 +7958,19272 +7959,22234 +7960,23264 +7961,25053 +7962,2460 +7963,16184 +7964,24676 +7965,24686 +7966,24681 +7967,16189 +7968,16190 +7969,16205 +7970,16206 +7971,16209 +7972,16210 +7973,16211 +7974,22193 +7975,15274 +7976,1102 +7977,1102 +7978,15274 +7979,15274 +7980,15274 +7981,15274 +7982,15274 +7983,15274 +7984,15274 +7985,15274 +7986,15274 +7987,15274 +7988,15274 +7989,15274 +7990,15274 +7991,1102 +7992,15274 +7993,15274 +7994,15274 +7995,811 +7996,16548 +7997,41844 +8006,20326 +8007,6496 +8008,7045 +8009,17923 +8026,18722 +8027,18718 +8028,1102 +8029,15274 +8030,1301 +8046,6672 +8047,18719 +8048,16300 +8049,6539 +8050,6851 +8051,16299 +8052,17922 +8053,12410 +8066,16303 +8067,5998 +8068,5998 +8069,5998 +8070,3029 +8071,6093 +8072,9154 +8073,16321 +8074,16322 +8075,6399 +8076,21203 +8077,18078 +8078,18080 +8079,21794 +8080,28398 +8081,28399 +8082,28404 +8083,9388 +8084,28401 +8085,28402 +8086,28403 +8087,9731 +8088,28395 +8089,28396 +8090,25829 +8091,28397 +8092,15340 +8093,25833 +8094,28394 +8095,16325 +8106,16631 +8107,16634 +8108,16636 +8109,23107 +8110,16633 +8111,16637 +8112,16632 +8113,19901 +8114,21459 +8115,16638 +8116,16920 +8117,14701 +8118,14700 +8119,28737 +8120,23038 +8121,14698 +8122,21300 +8123,14697 +8124,14696 +8125,26103 +8126,26105 +8127,26118 +8128,26107 +8129,26108 +8130,26109 +8131,26115 +8132,26110 +8133,26114 +8134,26120 +8135,27339 +8136,1438 +8137,27329 +8138,27330 +8139,27331 +8140,27332 +8141,27334 +8142,27338 +8143,27335 +8144,27336 +8146,3146 +8147,16453 +8148,9660 +8149,16456 +8150,6396 +8151,1249 +8152,2533 +8153,7346 +8154,2874 +8155,16464 +8156,27345 +8157,27340 +8158,27341 +8159,27342 +8160,27343 +8161,27347 +8162,27344 +8163,27346 +8164,1069 +8165,22838 +8166,4433 +8167,21363 +8168,19531 +8169,8952 +8170,16474 +8171,8794 +8172,7354 +8173,26389 +8174,17213 +8175,16482 +8176,16483 +8177,18354 +8178,26591 +8179,18343 +8180,18350 +8181,20728 +8182,20741 +8183,18355 +8184,18346 +8185,16487 +8186,20851 +8187,16488 +8188,20735 +8189,11598 +8190,20081 +8191,16492 +8192,16497 +8193,17151 +8194,19721 +8195,23049 +8196,26572 +8197,16505 +8198,16506 +8199,18342 +8200,16508 +8201,25711 +8202,16510 +8203,16513 +8204,16515 +8205,16516 +8206,16517 +8207,16519 +8208,16520 +8209,16521 +8210,25691 +8211,25689 +8212,18935 +8213,4389 +8214,25693 +8215,23081 +8216,24297 +8217,21331 +8218,1281 +8223,20073 +8224,22232 +8225,20076 +8226,16539 +8243,16547 +8244,18704 +8245,17211 +8246,16766 +8247,17229 +8248,17238 +8249,17216 +8250,17234 +8251,16764 +8252,17236 +8253,17228 +8254,18728 +8255,15411 +8256,17258 +8257,17259 +8258,18470 +8259,23063 +8260,17263 +8261,17321 +8262,17265 +8263,17267 +8264,28451 +8265,26204 +8266,26228 +8267,28726 +8268,26210 +8269,28667 +8270,26220 +8271,21694 +8272,26217 +8273,27373 +8274,27372 +8275,26232 +8276,27374 +8277,27375 +8278,27376 +8279,27379 +8280,27377 +8281,27378 +8282,18790 +8283,17251 +8284,17256 +8285,17262 +8286,13984 +8287,17255 +8288,17271 +8289,17252 +8290,17276 +8291,17261 +8292,17274 +8293,17318 +8294,17317 +8295,17316 +8296,17312 +8297,23066 +8298,17314 +8299,17269 +8300,17313 +8301,17319 +8302,26313 +8303,26314 +8304,26323 +8305,26316 +8306,26312 +8307,26310 +8308,26315 +8309,26317 +8310,26321 +8311,27394 +8312,27389 +8313,26324 +8314,27390 +8315,27391 +8316,27392 +8317,27395 +8318,27393 +8319,27396 +8320,27571 +8323,16598 +8343,12105 +8344,16464 +8345,45176 +8346,16678 +8347,16731 +8348,17226 +8349,8660 +8350,224 +8363,16456 +8364,1208 +8365,1208 +8366,1208 +8367,16729 +8368,21470 +8383,7798 +8384,1102 +8385,1102 +8386,15274 +8387,15274 +8388,1102 +8389,15274 +8390,15274 +8391,1116 +8392,1438 +8393,16776 +8394,10923 +8395,15274 +8396,3759 +8397,15274 +8398,15274 +8399,15274 +8400,15274 +8401,15274 +8402,15274 +8403,1102 +8404,1102 +8405,1102 +8406,1102 +8407,1102 +8408,1102 +8409,1102 +8410,16801 +8411,18114 +8412,16803 +8423,16836 +8424,16837 +8425,6703 +8426,19570 +8427,16860 +8428,16861 +8429,6703 +8430,57625 +8431,7403 +8432,16325 +8443,18725 +8444,7737 +8463,16161 +8483,18085 +8484,18574 +8485,20629 +8486,20629 +8487,20629 +8488,20629 +8489,20629 +8490,20629 +8491,20629 +8492,17292 +8493,17288 +8494,17292 +8495,17292 +8496,17292 +8497,17284 +8498,44666 +8499,20655 +8500,19091 +8501,19091 +8502,12333 +8503,12333 +8504,12334 +8505,12334 +8506,17329 +8507,17329 +8508,11863 +8523,2592 +8524,14993 +8525,7798 +8526,17391 +8527,2592 +8528,17397 +8529,17403 +8543,15851 +8544,17457 +8545,17458 +8546,6412 +8547,6270 +8548,17461 +8563,17785 +8564,18047 +8583,17786 +8584,18717 +8585,15718 +8586,17494 +8587,18723 +8588,17494 +8589,17494 +8590,17494 +8591,17494 +8592,17494 +8593,14326 +8594,7695 +8595,17785 +8603,15734 +8623,18632 +8624,17599 +8625,17600 +8626,17602 +8627,17606 +8628,17606 +8629,17606 +8630,17607 +8631,17608 +8632,17608 +8633,17607 +8643,18050 +8644,18050 +8645,18049 +8646,18049 +8647,12331 +8663,17655 +8683,6410 +8684,18079 +8685,8381 +8686,17685 +8687,7744 +8688,6511 +8703,17776 +8704,18632 +8705,18632 +8706,7841 +8707,8923 +8708,17788 +8723,3918 +8724,17809 +8743,1317 +8744,1317 +8745,1317 +8746,18416 +8747,21298 +8748,28389 +8749,18414 +8750,21312 +8751,28393 +8752,28391 +8753,18418 +8754,18422 +8755,28847 +8756,1317 +8757,1317 +8758,1317 +8759,1317 +8760,1317 +8761,1317 +8762,1317 +8763,1317 +8764,1317 +8765,1317 +8766,926 +8767,1317 +8768,1317 +8769,1317 +8770,1317 +8771,1317 +8772,1317 +8773,1317 +8774,1317 +8775,1317 +8776,1317 +8777,1317 +8778,1317 +8779,1317 +8780,1317 +8781,1317 +8782,1317 +8783,1317 +8784,1317 +8785,1317 +8786,1317 +8787,1317 +8788,1317 +8789,1317 +8790,1317 +8791,1317 +8792,1317 +8793,1317 +8794,1317 +8795,1317 +8796,1317 +8797,1317 +8798,1317 +8799,1317 +8800,1317 +8801,1317 +8802,1103 +8803,1103 +8804,1103 +8805,1103 +8806,1103 +8807,1103 +8808,1103 +8809,1103 +8810,1103 +8811,1103 +8812,1103 +8813,1103 +8814,1103 +8815,1103 +8816,1103 +8817,1103 +8818,1103 +8819,1103 +8820,1103 +8821,1103 +8822,1103 +8823,1103 +8824,1103 +8825,1103 +8826,1103 +8827,48394 +8828,1103 +8829,1103 +8830,1103 +8831,19493 +8832,1103 +8833,1103 +8834,1103 +8835,1103 +8836,19498 +8837,1103 +8838,19492 +8839,19496 +8840,1103 +8841,1103 +8842,1103 +8843,1103 +8844,1103 +8845,17871 +8846,19494 +8847,1103 +8848,1103 +8849,1103 +8850,1103 +8851,1103 +8852,1103 +8853,1103 +8854,1103 +8855,1103 +8856,1103 +8857,1103 +8858,1103 +8859,1103 +8860,1103 +8861,1103 +8862,1103 +8863,1103 +8864,1103 +8865,1103 +8866,1103 +8867,1103 +8868,1103 +8869,1103 +8870,1103 +8871,1103 +8872,1103 +8873,1103 +8874,1103 +8875,1103 +8876,1103 +8877,1103 +8878,1103 +8879,1103 +8880,1103 +8881,1103 +8882,1103 +8883,1103 +8884,1103 +8885,1103 +8886,1103 +8887,1103 +8888,1103 +8889,1103 +8890,1103 +8891,1103 +8892,1103 +8893,1103 +8894,1103 +8895,1103 +8896,1103 +8897,1103 +8898,1103 +8899,1103 +8900,1317 +8901,1317 +8902,1317 +8903,1317 +8904,1317 +8905,1317 +8906,1317 +8907,1317 +8908,1155 +8909,1155 +8910,1155 +8911,1155 +8912,1155 +8913,1155 +8914,1155 +8915,1155 +8916,1155 +8917,1155 +8918,1155 +8919,1155 +8920,1155 +8921,1155 +8922,1155 +8923,1288 +8924,6379 +8925,51756 +8926,13710 +8927,13710 +8928,13710 +8929,1155 +8930,1155 +8931,1155 +8932,21906 +8933,1155 +8934,1155 +8935,1155 +8936,1155 +8937,1155 +8938,1155 +8939,1155 +8940,1155 +8941,1155 +8942,1155 +8943,1155 +8944,1155 +8945,1155 +8946,1155 +8947,1155 +8948,17880 +8949,17882 +8950,6342 +8951,17883 +8952,4112 +8953,17881 +8954,1143 +8955,1143 +8956,2351 +8957,24718 +8958,1143 +8959,24718 +8960,1143 +8961,1143 +8962,1143 +8963,1143 +8964,1143 +8965,1143 +8966,1143 +8967,1143 +8968,1143 +8969,1143 +8970,1143 +8971,1143 +8972,1143 +8973,7373 +8974,1143 +8975,1143 +8976,1143 +8977,1143 +8978,1143 +8979,1143 +8980,1143 +8981,1143 +8982,1143 +8983,1143 +8984,13707 +8985,13707 +8986,1143 +8987,1143 +8988,1143 +8989,1143 +8990,1143 +8991,1143 +8992,1143 +8993,1143 +8994,1143 +8995,1143 +8996,1143 +8997,1143 +8998,1143 +8999,1143 +9000,1143 +9001,1143 +9002,1143 +9003,1143 +9004,1143 +9005,1143 +9006,1143 +9007,1143 +9008,1143 +9009,1143 +9010,1143 +9011,1143 +9012,1143 +9013,1143 +9014,1143 +9015,1143 +9016,1143 +9017,1143 +9018,1143 +9019,1143 +9020,1143 +9021,1143 +9022,1143 +9023,1143 +9024,1143 +9025,1143 +9026,1143 +9027,1143 +9028,1143 +9029,1143 +9030,926 +9031,1143 +9032,1143 +9033,1143 +9034,1143 +9035,1143 +9036,1215 +9037,5563 +9038,5563 +9039,5563 +9040,5563 +9041,5563 +9042,7430 +9043,5563 +9044,5563 +9045,5563 +9046,5563 +9047,5563 +9048,5563 +9049,5563 +9050,5563 +9051,5563 +9052,5563 +9053,5563 +9054,5563 +9055,5563 +9056,5563 +9057,5563 +9058,5563 +9059,5563 +9060,7397 +9061,7921 +9062,5563 +9063,5563 +9064,5563 +9065,5563 +9066,5563 +9067,5563 +9068,5563 +9069,5563 +9070,5563 +9071,5563 +9072,5563 +9073,5563 +9074,5563 +9075,5563 +9076,5563 +9077,5563 +9078,5563 +9079,5563 +9080,5563 +9081,5563 +9082,5563 +9083,5563 +9084,5563 +9085,5563 +9086,5563 +9087,5563 +9088,17889 +9089,5563 +9090,5563 +9091,5563 +9092,5563 +9093,5563 +9094,5563 +9095,5563 +9096,5563 +9097,5563 +9098,5563 +9099,5563 +9100,5563 +9101,5563 +9102,5563 +9103,5563 +9104,5563 +9105,5563 +9123,5563 +9124,5563 +9125,5563 +9126,5563 +9127,5563 +9128,5563 +9129,5563 +9130,5563 +9131,5563 +9132,5563 +9133,5563 +9134,5563 +9135,5563 +9136,5563 +9137,5563 +9138,5563 +9139,5563 +9140,5563 +9141,5563 +9142,5563 +9143,5563 +9144,17893 +9145,5563 +9146,5563 +9147,5563 +9148,5563 +9149,8025 +9150,5563 +9151,5563 +9152,5563 +9153,7629 +9154,15714 +9155,17896 +9156,5563 +9157,5563 +9158,5563 +9159,5563 +9160,5563 +9161,5563 +9162,5563 +9163,5563 +9164,5563 +9165,5563 +9166,5563 +9167,5563 +9168,5563 +9169,5563 +9170,5563 +9171,5563 +9172,17898 +9173,17899 +9174,5563 +9175,5563 +9176,5563 +9177,5563 +9178,5563 +9179,3664 +9180,5563 +9181,5563 +9182,5563 +9183,5563 +9184,5563 +9185,5563 +9186,13709 +9187,17902 +9188,5563 +9189,17911 +9190,1246 +9191,1246 +9192,1246 +9193,1246 +9194,1246 +9195,1246 +9196,1246 +9197,4134 +9198,1246 +9199,1246 +9200,1246 +9201,1246 +9202,1246 +9203,1246 +9204,1246 +9205,1246 +9206,17904 +9207,1246 +9208,1246 +9209,1246 +9210,9731 +9211,1246 +9212,1246 +9213,1246 +9214,1246 +9215,1246 +9216,1246 +9217,1246 +9218,1246 +9219,1246 +9220,1246 +9221,1246 +9222,1246 +9223,1246 +9224,16325 +9225,1246 +9226,1246 +9227,1246 +9228,1246 +9229,1246 +9230,1246 +9231,1246 +9232,17904 +9233,15714 +9234,1399 +9235,3018 +9236,3029 +9237,18093 +9238,8923 +9239,17914 +9240,57786 +9241,17916 +9242,18204 +9243,17918 +9244,7922 +9245,18080 +9246,7038 +9247,3668 +9248,18720 +9249,6709 +9250,811 +9251,7695 +9252,7798 +9253,8927 +9254,1322 +9255,6688 +9256,18021 +9257,18022 +9258,1659 +9259,9860 +9260,18059 +9261,4690 +9262,17957 +9263,8556 +9264,24216 +9265,13100 +9266,3331 +9275,13025 +9276,12332 +9277,17922 +9278,18215 +9279,40635 +9280,40636 +9281,40634 +9282,40632 +9283,18057 +9284,18057 +9285,27362 +9286,27356 +9287,27358 +9288,27359 +9289,27357 +9290,25839 +9291,27360 +9292,27361 +9293,15274 +9294,15274 +9295,15274 +9296,15274 +9297,15274 +9298,15274 +9299,18010 +9300,1301 +9301,15274 +9302,6270 +9303,1301 +9304,1301 +9305,1301 +9306,18026 +9307,6506 +9308,18716 +9309,8931 +9310,18724 +9311,7798 +9312,18066 +9313,18067 +9314,18068 +9315,18070 +9316,40633 +9317,18069 +9318,8733 +9319,25592 +9320,7150 +9321,1288 +9322,8940 +9323,2616 +9324,15770 +9325,8556 +9326,13490 +9327,7356 +9328,18155 +9329,3029 +9330,18158 +9331,18164 +9332,18170 +9333,18172 +9334,18173 +9335,7161 +9336,18174 +9355,9835 +9356,18192 +9357,3233 +9358,18193 +9359,19756 +9360,18059 +9361,18059 +9362,224 +9363,18499 +9364,18057 +9365,18649 +9366,18256 +9367,15274 +9368,9837 +9369,3668 +9370,1093 +9371,16209 +9372,45946 +9375,21295 +9376,18254 +9377,18255 +9378,18257 +9379,20032 +9380,20031 +9381,21025 +9382,28734 +9383,18328 +9384,18264 +9385,20249 +9386,18268 +9387,18430 +9388,18427 +9389,18433 +9390,19056 +9391,18269 +9392,18270 +9393,11410 +9394,21301 +9395,18271 +9396,18274 +9397,22996 +9398,18361 +9399,26498 +9400,20553 +9401,7485 +9402,21403 +9403,18824 +9404,18826 +9405,18283 +9406,18284 +9407,12345 +9408,20274 +9409,18352 +9410,29000 +9411,6480 +9412,18298 +9413,19620 +9414,18434 +9415,18347 +9416,22233 +9417,18308 +9418,20193 +9419,18312 +9420,18322 +9421,8026 +9422,20663 +9423,18324 +9424,18325 +9425,22220 +9426,20556 +9427,22051 +9428,18331 +9429,18376 +9430,18333 +9431,18334 +9432,18378 +9433,18337 +9434,18338 +9435,18339 +9436,18359 +9437,3563 +9438,18712 +9439,11164 +9440,3563 +9441,11164 +9442,18712 +9443,6703 +9444,8296 +9445,18364 +9446,16538 +9447,18365 +9448,18366 +9449,19645 +9450,18367 +9451,926 +9452,20323 +9453,20595 +9454,14749 +9455,18371 +9456,18372 +9457,18373 +9458,18374 +9459,19298 +9460,13998 +9461,3258 +9462,9151 +9463,18021 +9464,7495 +9465,18377 +9466,18379 +9467,20311 +9468,11205 +9469,18382 +9470,18689 +9471,7425 +9472,13025 +9473,18386 +9474,18387 +9475,22209 +9476,18389 +9477,21514 +9478,25598 +9479,18392 +9480,22235 +9481,19309 +9482,20269 +9483,20786 +9484,22426 +9485,18403 +9486,19295 +9487,18405 +9488,18406 +9489,18408 +9490,18409 +9491,14765 +9492,18415 +9507,18426 +9508,18428 +9509,18429 +9510,18431 +9511,20029 +9512,22988 +9513,18438 +9514,20424 +9515,32153 +9516,18440 +9517,20348 +9518,18443 +9519,18444 +9520,20574 +9521,19307 +9522,18447 +9523,17898 +9527,20300 +9528,18473 +9529,12331 +9530,13122 +9531,18497 +9532,12331 +9533,224 +9534,18498 +9535,28169 +9536,18901 +9537,18499 +9538,224 +9539,12925 +9540,14006 +9541,16028 +9542,3093 +9543,22443 +9544,7629 +9545,6015 +9546,1301 +9547,7798 +9548,3093 +9549,3669 +9550,22443 +9551,6015 +9552,7798 +9553,7798 +9554,18500 +9555,3093 +9556,22443 +9557,6015 +9558,7629 +9559,1301 +9560,7798 +9561,18500 +9562,18500 +9563,22443 +9564,18500 +9565,7798 +9566,22443 +9567,6015 +9568,7798 +9569,1301 +9570,3093 +9571,3093 +9572,3669 +9573,7629 +9574,1301 +9575,18500 +9576,3093 +9577,7629 +9578,1301 +9579,7798 +9580,6015 +9581,7798 +9587,21202 +9588,224 +9589,18514 +9590,929 +9591,18517 +9592,18519 +9593,18524 +9594,61417 +9595,18525 +9596,18526 +9597,18527 +9598,19011 +9599,26948 +9600,18911 +9601,28142 +9602,20069 +9603,20432 +9604,18531 +9605,23134 +9606,18532 +9607,18533 +9608,7494 +9609,18991 +9618,18532 +9619,18532 +9620,18532 +9621,18532 +9622,14432 +9623,18883 +9624,28195 +9625,28317 +9626,19302 +9627,11410 +9628,2593 +9629,18568 +9630,4440 +9631,28339 +9632,28283 +9633,28281 +9634,18998 +9635,18915 +9636,4446 +9637,28252 +9638,28118 +9639,28194 +9640,18573 +9641,9854 +9642,9832 +9643,18822 +9644,18575 +9645,18906 +9646,28172 +9647,18577 +9648,28097 +9649,28294 +9650,28279 +9651,18578 +9652,17150 +9653,18579 +9654,28307 +9655,9833 +9656,18580 +9657,28426 +9658,19913 +9659,18583 +9660,28299 +9661,20900 +9662,28295 +9663,28315 +9664,18584 +9665,18586 +9666,28300 +9678,5233 +9679,22223 +9680,20475 +9681,7980 +9682,28284 +9683,20289 +9684,19130 +9685,19311 +9686,19746 +9687,28328 +9698,17186 +9699,28326 +9700,18633 +9701,18634 +9702,18635 +9703,28297 +9704,28296 +9705,17231 +9706,20975 +9718,13488 +9719,13488 +9738,1262 +9739,1262 +9740,1262 +9741,1262 +9742,14710 +9743,27532 +9744,14705 +9745,27533 +9746,14706 +9747,14711 +9748,18883 +9749,27529 +9750,19034 +9751,19033 +9752,17169 +9753,18469 +9754,23034 +9755,19032 +9756,19030 +9757,19029 +9758,22683 +9759,22684 +9760,22685 +9761,25960 +9762,22686 +9763,22687 +9764,18823 +9765,22688 +9766,25947 +9767,25946 +9768,25939 +9769,28023 +9770,23106 +9771,25941 +9772,25942 +9773,25944 +9774,25949 +9775,28177 +9776,16981 +9777,28427 +9778,20826 +9779,28433 +9780,28428 +9781,28431 +9782,28430 +9783,13011 +9784,6987 +9785,25776 +9786,25978 +9787,13484 +9788,25775 +9789,3541 +9790,18657 +9791,27751 +9792,16881 +9793,14736 +9794,27752 +9795,27753 +9796,27754 +9797,27755 +9798,18120 +9799,28477 +9800,27756 +9801,6760 +9802,27761 +9803,27760 +9804,1685 +9805,23108 +9806,2358 +9807,27759 +9808,691 +9809,27758 +9810,6869 +9811,25772 +9812,25975 +9813,25773 +9814,25771 +9815,697 +9816,26121 +9817,25774 +9818,1019 +9819,27860 +9820,27861 +9821,27857 +9822,27858 +9823,10508 +9824,27855 +9825,27853 +9826,27856 +9827,14936 +9828,11581 +9829,28482 +9830,6274 +9831,27768 +9832,27766 +9833,6772 +9834,27764 +9835,11580 +9836,27769 +9837,27783 +9838,27779 +9839,27778 +9840,27777 +9841,27770 +9842,27776 +9843,26060 +9844,28424 +9845,50497 +9846,28418 +9847,15236 +9848,28422 +9849,16638 +9850,12980 +9851,28419 +9852,28425 +9853,28421 +9854,14068 +9855,11956 +9856,28734 +9857,18930 +9858,18488 +9859,26550 +9860,23004 +9861,18929 +9862,14635 +9863,8098 +9864,25980 +9865,25786 +9866,25787 +9867,26251 +9868,25788 +9869,25784 +9870,25991 +9871,26249 +9872,25790 +9873,25988 +9874,28064 +9875,26470 +9876,28088 +9877,28065 +9878,28067 +9879,28057 +9880,28062 +9881,28068 +9882,21603 +9883,28061 +9884,28074 +9885,18904 +9886,3606 +9887,18903 +9888,20873 +9889,18921 +9890,23023 +9891,17129 +9892,18912 +9893,27807 +9894,3169 +9895,27787 +9896,27788 +9897,27784 +9898,27794 +9899,25911 +9900,27791 +9901,27792 +9902,27789 +9903,26163 +9904,27790 +9905,28411 +9906,28415 +9907,11548 +9908,28412 +9909,28410 +9910,28413 +9911,28416 +9912,28409 +9913,28417 +9914,18714 +9915,28414 +9916,17115 +9917,18937 +9918,25940 +9919,23073 +9920,18936 +9921,19010 +9922,18935 +9923,18939 +9924,18934 +9925,18938 +9926,25930 +9927,25931 +9928,25932 +9929,25938 +9930,25933 +9931,25928 +9932,25937 +9933,25934 +9934,25935 +9935,18819 +9936,28010 +9937,16936 +9938,15040 +9939,17130 +9940,27799 +9941,27796 +9942,14613 +9943,27800 +9944,27801 +9945,13664 +9946,28972 +9947,14702 +9948,18944 +9949,18945 +9950,18943 +9951,23018 +9952,18946 +9953,11275 +9954,18947 +9955,18951 +9956,26181 +9957,26183 +9958,26234 +9959,26202 +9960,26185 +9961,26180 +9962,26188 +9963,26200 +9964,26191 +9965,26194 +9966,27348 +9967,27351 +9968,27352 +9969,27511 +9970,27354 +9971,27355 +9972,27350 +9973,27349 +9974,18815 +9978,21296 +9998,24352 +9999,24354 +10000,6338 +10001,19141 +10002,19061 +10003,18835 +10004,24951 +10005,6338 +10006,18837 +10007,19114 +10008,41463 +10009,16764 +10010,15015 +10011,18889 +10018,19111 +10019,18999 +10020,18886 +10021,18949 +10022,16065 +10023,19055 +10024,18860 +10025,41842 +10026,21154 +10027,18865 +10028,18866 +10029,19113 +10030,18872 +10031,19051 +10032,18877 +10033,18879 +10034,13115 +10035,13117 +10036,13116 +10037,18861 +10038,18882 +10039,13051 +10040,13119 +10041,19000 +10042,14606 +10043,20209 +10044,18933 +10045,14450 +10046,16853 +10047,19009 +10048,18914 +10049,20472 +10050,1282 +10051,4056 +10052,18916 +10053,19142 +10054,18924 +10055,18923 +10056,18925 +10057,28158 +10058,28151 +10059,28124 +10060,28125 +10061,44716 +10062,29002 +10063,28123 +10064,28140 +10065,28165 +10066,28155 +10067,19019 +10068,19013 +10069,19014 +10070,19012 +10071,23060 +10072,19017 +10073,21309 +10074,19018 +10075,19020 +10076,19725 +10077,26327 +10078,20972 +10079,26331 +10080,26328 +10081,19718 +10082,26326 +10083,26330 +10084,19720 +10085,26329 +10086,27363 +10087,27364 +10088,27365 +10089,27370 +10090,27366 +10091,27367 +10092,27371 +10093,27432 +10094,27368 +10095,27600 +10096,27601 +10097,27606 +10098,27607 +10099,27602 +10100,27605 +10101,27598 +10102,27609 +10103,27614 +10104,27599 +10105,27716 +10106,27718 +10107,27719 +10108,27721 +10109,27717 +10110,27726 +10111,28590 +10112,27731 +10113,27733 +10118,26291 +10119,26297 +10120,26304 +10121,26293 +10122,26295 +10123,26303 +10124,19708 +10125,26301 +10126,26289 +10127,27426 +10128,27427 +10129,27428 +10130,27429 +10131,27425 +10132,19759 +10133,27430 +10134,27431 +10135,27628 +10136,27630 +10137,27633 +10138,27631 +10139,28852 +10140,27639 +10141,27629 +10142,27640 +10143,27645 +10144,27647 +10145,18974 +10146,27741 +10147,27740 +10148,27743 +10149,27745 +10150,27746 +10151,27739 +10152,18962 +10153,27748 +10154,26127 +10155,26129 +10156,26122 +10157,26123 +10158,26152 +10159,26141 +10160,26139 +10161,26125 +10162,26130 +10163,23490 +10164,27407 +10165,29014 +10166,27411 +10167,27405 +10168,27408 +10169,27413 +10170,27414 +10171,27406 +10172,28109 +10173,28082 +10174,23136 +10175,44717 +10176,28083 +10177,28084 +10178,28112 +10179,28080 +10180,28079 +10181,28078 +10182,19002 +10183,6762 +10184,4382 +10185,23042 +10186,19005 +10187,27809 +10188,17137 +10189,19008 +10190,19001 +10191,26155 +10192,26160 +10193,26156 +10194,26173 +10195,26176 +10196,26162 +10197,26158 +10198,26172 +10199,26163 +10200,26164 +10201,27400 +10202,27402 +10203,27397 +10204,27388 +10205,27398 +10206,27399 +10207,27404 +10208,27401 +10209,27403 +10210,27867 +10211,24291 +10212,15214 +10213,27870 +10214,27868 +10215,28992 +10216,27842 +10217,25198 +10218,27866 +10219,28851 +10220,18977 +10221,18980 +10222,18979 +10223,18978 +10224,23048 +10225,18981 +10226,18985 +10227,18982 +10228,18983 +10229,26265 +10230,26267 +10231,26278 +10232,26269 +10233,26270 +10234,26264 +10235,26274 +10236,26272 +10237,26273 +10238,27380 +10239,27385 +10240,27384 +10241,27387 +10242,27381 +10243,27382 +10244,27383 +10245,27386 +10246,27821 +10247,4272 +10248,16892 +10249,26126 +10250,27824 +10251,16642 +10252,27822 +10253,27823 +10254,28479 +10255,27830 +10256,27847 +10257,27844 +10258,27850 +10259,27846 +10260,27845 +10261,29051 +10262,27843 +10263,27849 +10264,8664 +10265,26239 +10266,26241 +10267,26259 +10268,26244 +10269,26245 +10270,26237 +10271,27806 +10272,27804 +10273,26248 +10274,27805 +10275,27416 +10276,27419 +10277,29003 +10278,27418 +10279,27423 +10280,13206 +10281,27422 +10282,27420 +10283,7357 +10284,12105 +10285,18597 +10286,18953 +10287,16470 +10288,18976 +10289,27862 +10290,983 +10298,9832 +10299,9853 +10300,15274 +10301,15274 +10302,15274 +10303,15274 +10304,15274 +10305,1093 +10306,2616 +10307,1093 +10308,2616 +10309,3331 +10310,3331 +10311,1102 +10312,15274 +10313,15274 +10314,1102 +10315,15274 +10316,15274 +10317,1102 +10318,1102 +10319,15274 +10320,15274 +10321,1102 +10322,15274 +10323,1102 +10324,15274 +10325,1102 +10326,1102 +10327,13121 +10328,19049 +10329,27951 +10330,3519 +10331,15816 +10332,28383 +10333,28382 +10338,8942 +10358,28156 +10359,19917 +10360,19089 +10361,19089 +10362,20910 +10363,26283 +10364,27415 +10365,27803 +10366,20831 +10367,20971 +10368,26351 +10369,26352 +10370,26353 +10371,26354 +10372,26365 +10373,26355 +10374,26364 +10375,26363 +10376,26333 +10377,26362 +10378,26332 +10379,27749 +10380,26334 +10381,26335 +10382,26336 +10383,26337 +10384,19844 +10385,26341 +10386,26339 +10387,26340 +10388,26257 +10389,19843 +10390,26342 +10391,26360 +10392,19089 +10393,59495 +10394,15798 +10398,19115 +10399,9123 +10400,27947 +10401,27946 +10402,21903 +10403,14389 +10404,27854 +10405,17195 +10406,28173 +10407,25777 +10408,27774 +10409,27771 +10410,28385 +10411,27949 +10412,28384 +10413,19125 +10414,17460 +10418,19149 +10419,9711 +10420,2853 +10421,977 +10422,9415 +10423,19201 +10424,15274 +10438,12331 +10439,18099 +10440,18099 +10441,19223 +10442,7148 +10443,3093 +10444,19225 +10445,12925 +10446,19239 +10447,3920 +10448,17917 +10449,17917 +10450,19530 +10451,17917 +10452,19254 +10453,17917 +10454,6513 +10455,6513 +10456,2588 +10457,19284 +10458,7697 +10459,10377 +10460,19312 +10461,19314 +10462,19313 +10463,15274 +10464,19315 +10465,18050 +10466,19316 +10467,1283 +10478,1659 +10479,1283 +10498,19394 +10499,19397 +10500,19399 +10501,19402 +10502,19409 +10503,22423 +10504,19563 +10505,31324 +10506,23161 +10507,18062 +10508,18298 +10509,7050 +10510,20744 +10511,19421 +10512,19422 +10513,19422 +10514,7889 +10515,19461 +10518,23129 +10538,18203 +10539,19830 +10540,19831 +10541,19832 +10542,20813 +10543,20814 +10544,19782 +10545,22420 +10546,7326 +10547,6472 +10548,7326 +10549,19951 +10550,19994 +10551,19459 +10552,19462 +10553,19919 +10554,19918 +10555,6478 +10556,19316 +10558,19477 +10559,19487 +10560,19479 +10561,20620 +10562,25484 +10563,7629 +10564,7629 +10565,7629 +10566,7629 +10567,20649 +10568,19500 +10569,14006 +10570,28796 +10571,19501 +10572,28747 +10573,20149 +10574,19903 +10575,19502 +10576,60692 +10577,7397 +10578,19993 +10579,5996 +10580,19504 +10581,19506 +10582,28654 +10583,28808 +10584,28685 +10585,19507 +10586,7888 +10587,20627 +10588,67049 +10589,20220 +10590,7074 +10591,19519 +10592,19520 +10593,6673 +10594,15692 +10595,16190 +10596,19411 +10597,15706 +10598,7135 +10599,11932 +10600,9150 +10601,15274 +10602,1102 +10603,15274 +10604,15274 +10605,1102 +10606,15274 +10607,1102 +10608,1102 +10609,1102 +10610,19547 +10611,19549 +10612,19550 +10613,19551 +10614,19552 +10615,19553 +10616,19555 +10617,19556 +10618,6436 +10619,19557 +10620,20658 +10621,1301 +10622,19562 +10623,18391 +10624,25604 +10625,20315 +10626,19617 +10627,20259 +10628,20189 +10629,19950 +10630,22928 +10631,28800 +10632,28711 +10633,19900 +10634,9832 +10635,28230 +10636,12415 +10637,14152 +10638,28209 +10639,19566 +10640,2885 +10641,18168 +10642,17893 +10643,3029 +10644,1301 +10645,20626 +10646,20535 +10647,17883 +10648,57388 +10649,19223 +10650,6685 +10651,7050 +10652,22213 +10653,9174 +10654,19949 +10655,20210 +10656,28069 +10657,19991 +10658,28238 +10659,2516 +10660,22484 +10661,20220 +10662,19527 +10663,19576 +10664,7798 +10678,3024 +10679,3024 +10680,3024 +10681,3024 +10682,20219 +10683,19595 +10684,19606 +10685,19599 +10686,20820 +10687,18077 +10688,18077 +10689,18077 +10690,18077 +10691,15736 +10692,15737 +10693,15733 +10694,15734 +10695,12925 +10696,22229 +10697,20570 +10698,20275 +10699,12866 +10700,18832 +10701,28263 +10702,28273 +10703,20297 +10704,28267 +10705,19915 +10706,28336 +10707,19742 +10708,19786 +10709,28291 +10710,9834 +10711,9854 +10712,2533 +10713,6270 +10714,13496 +10715,18155 +10716,20625 +10717,19658 +10718,7842 +10719,16536 +10720,19662 +10721,14832 +10722,19663 +10723,19507 +10724,19665 +10725,19666 +10726,19667 +10727,20539 +10728,1102 +10738,11448 +10739,15422 +10740,28310 +10741,42881 +10742,19710 +10743,28143 +10744,19130 +10745,28330 +10746,28343 +10747,19992 +10748,4385 +10749,19728 +10750,20569 +10751,19920 +10752,19745 +10753,19762 +10754,19763 +10755,19764 +10756,19766 +10757,19767 +10758,19779 +10759,13122 +10760,28683 +10761,20572 +10762,19953 +10763,28783 +10764,28710 +10765,28688 +10766,21027 +10767,20974 +10768,28684 +10769,19785 +10770,19786 +10771,19910 +10772,8466 +10773,15692 +10774,28744 +10775,28694 +10776,22994 +10777,28595 +10778,1399 +10779,16452 +10780,9837 +10781,18470 +10782,19930 +10783,19995 +10784,19793 +10785,14776 +10786,19794 +10787,19796 +10788,19996 +10789,1134 +10790,3032 +10791,5567 +10792,7744 +10793,7744 +10794,7744 +10795,9834 +10796,21602 +10797,20030 +10798,28640 +10799,22242 +10800,19806 +10801,19912 +10802,18968 +10803,20035 +10804,19892 +10805,19127 +10806,19810 +10807,19812 +10808,19813 +10818,3331 +10819,19529 +10820,19932 +10821,28298 +10822,51621 +10823,20086 +10824,9859 +10825,19835 +10826,20293 +10827,28205 +10828,20273 +10829,6494 +10830,25482 +10831,6506 +10832,1246 +10833,19838 +10834,15692 +10835,19840 +10836,20788 +10837,19841 +10838,19869 +10839,16062 +10840,16062 +10841,19873 +10842,22427 +10843,22995 +10844,20258 +10845,19893 +10846,19898 +10847,20571 +10858,1102 +10878,20036 +10898,20095 +10918,37278 +10919,20476 +10920,37278 +10921,37278 +10922,37278 +10938,20608 +10939,20609 +10940,20611 +10958,15658 +10959,20342 +10978,32878 +10998,20610 +10999,20433 +11000,13885 +11018,2480 +11019,20502 +11020,20503 +11021,20504 +11022,20505 +11023,17284 +11024,23217 +11025,20507 +11026,17284 +11027,17284 +11038,11431 +11039,11431 +11040,1442 +11041,20537 +11042,20538 +11058,20558 +11078,4287 +11079,20597 +11080,20597 +11081,11431 +11082,20613 +11083,20614 +11084,35425 +11085,4287 +11086,20031 +11087,20640 +11098,11431 +11099,4691 +11100,4287 +11101,11431 +11102,20692 +11103,3093 +11104,6562 +11105,20710 +11106,20711 +11107,20709 +11108,4110 +11109,7087 +11110,18047 +11111,20692 +11112,20733 +11113,11448 +11114,6668 +11115,4287 +11116,1317 +11118,20769 +11119,21973 +11120,28262 +11121,20094 +11122,21115 +11123,14590 +11124,28196 +11125,2247 +11126,20774 +11127,20775 +11128,21206 +11129,20784 +11130,21206 +11131,20789 +11132,20791 +11133,20797 +11134,20794 +11135,20795 +11136,20796 +11137,20798 +11138,39179 +11139,20784 +11140,20802 +11141,20803 +11142,9167 +11143,20818 +11144,21209 +11145,21209 +11146,9167 +11147,3426 +11148,7629 +11149,6672 +11150,11431 +11151,11431 +11152,11431 +11162,20872 +11163,11431 +11164,11431 +11165,11431 +11166,11431 +11167,11431 +11168,11431 +11169,21032 +11170,21373 +11171,8560 +11172,20893 +11173,20894 +11174,20895 +11175,20896 +11176,20899 +11177,21472 +11178,36271 +11179,20912 +11182,20976 +11183,20976 +11184,6614 +11185,7393 +11186,20977 +11187,25939 +11188,20978 +11189,28178 +11190,28188 +11191,28167 +11192,4685 +11193,19002 +11194,28237 +11195,28185 +11196,9859 +11197,20983 +11198,20984 +11199,20985 +11200,20986 +11201,20987 +11202,11431 +11203,11431 +11204,11431 +11205,11431 +11206,11431 +11207,11431 +11208,11431 +11222,9666 +11223,11431 +11224,11431 +11225,11431 +11226,11431 +11227,6748 +11228,19502 +11229,28306 +11230,20995 +11231,19502 +11242,18169 +11243,15788 +11262,28337 +11263,25077 +11264,19635 +11265,28629 +11266,21072 +11267,21072 +11268,3920 +11269,8560 +11270,7744 +11282,7744 +11283,7744 +11284,19422 +11285,21091 +11286,21092 +11287,21096 +11288,21097 +11289,21098 +11290,21101 +11291,7290 +11302,6515 +11303,8104 +11304,20550 +11305,21111 +11306,20713 +11307,21112 +11308,21113 +11309,7050 +11310,5116 +11311,28731 +11312,8927 +11313,1310 +11314,21462 +11315,21149 +11316,13489 +11317,21159 +11318,21164 +11319,21175 +11320,21189 +11321,21192 +11322,21193 +11323,21194 +11324,19595 +11325,18099 +11342,21238 +11343,21251 +11344,21256 +11345,17212 +11362,21329 +11363,1816 +11364,21338 +11365,21341 +11366,7649 +11367,7726 +11368,16065 +11369,21751 +11370,4691 +11371,7389 +11382,7051 +11383,21362 +11384,7350 +11385,21363 +11386,9292 +11387,3422 +11388,2885 +11389,21364 +11390,6002 +11391,18517 +11392,3307 +11393,7103 +11394,1438 +11395,21365 +11402,21366 +11403,6651 +11404,1504 +11405,21367 +11406,8794 +11407,7170 +11408,21368 +11409,3397 +11410,1496 +11411,6569 +11412,4136 +11413,4136 +11414,7354 +11415,21369 +11416,6631 +11417,4433 +11418,7251 +11419,18047 +11420,21370 +11422,21374 +11423,21375 +11424,21376 +11442,16028 +11443,2376 +11444,2376 +11445,21402 +11446,7695 +11462,21411 +11463,1244 +11464,20219 +11465,20219 +11466,1093 +11467,18725 +11468,1281 +11469,14601 +11470,7695 +11471,20692 +11472,2599 +11473,21414 +11474,18047 +11475,28181 +11476,7112 +11477,21415 +11478,8952 +11479,21416 +11480,3164 +11482,21431 +11502,28217 +11503,21458 +11504,1116 +11505,21461 +11506,21144 +11507,21463 +11508,22034 +11509,1438 +11510,30111 +11511,21469 +11512,21470 +11513,19239 +11514,21471 +11515,21472 +11516,21473 +11522,21608 +11542,21514 +11562,2516 +11563,13496 +11564,4777 +11565,7401 +11566,6496 +11567,1262 +11568,8631 +11569,2599 +11570,1275 +11582,21531 +11583,6410 +11584,6410 +11585,21539 +11586,21540 +11587,21541 +11588,21552 +11589,21553 +11590,7842 +11591,21555 +11602,4287 +11603,23270 +11604,21580 +11605,21574 +11606,21577 +11607,22218 +11608,25046 +11609,21584 +11610,1102 +11611,1102 +11612,1102 +11613,3426 +11614,15274 +11615,15274 +11616,7629 +11617,21586 +11622,22651 +11623,26137 +11624,28788 +11625,21595 +11626,26278 +11627,28658 +11628,28780 +11629,28781 +11630,2418 +11631,21613 +11632,28725 +11633,21898 +11634,28741 +11635,28779 +11642,22651 +11643,22651 +11644,22651 +11645,22651 +11646,22651 +11647,22651 +11648,22651 +11649,22651 +11662,28642 +11663,4775 +11664,4775 +11665,17263 +11666,4775 +11667,4775 +11668,21402 +11669,9837 +11670,4775 +11671,4775 +11672,4775 +11673,4775 +11674,21651 +11675,18979 +11676,4775 +11677,28381 +11678,26654 +11679,28820 +11682,21673 +11683,4775 +11684,23618 +11685,28704 +11686,28763 +11702,28765 +11703,28686 +11722,28721 +11723,21692 +11724,7918 +11725,10530 +11726,28724 +11727,1143 +11728,21694 +11729,28826 +11730,28723 +11731,28666 +11732,1246 +11733,7139 +11734,1103 +11735,21701 +11736,8093 +11737,1134 +11742,20709 +11743,21714 +11744,21715 +11745,28740 +11746,21717 +11747,21719 +11748,28807 +11749,28722 +11750,21723 +11751,21724 +11752,17974 +11753,7986 +11754,22652 +11755,21725 +11762,21752 +11763,19132 +11764,21753 +11765,28806 +11766,21755 +11767,21754 +11768,28785 +11782,21771 +11783,28696 +11784,21773 +11785,18814 +11786,21775 +11787,28669 +11802,19843 +11803,21793 +11804,21794 +11805,28821 +11806,9310 +11807,28825 +11808,28268 +11809,22031 +11810,19767 +11811,21804 +11812,22997 +11813,11431 +11814,21805 +11815,6337 +11816,22212 +11817,21809 +11818,21807 +11819,18725 +11820,28819 +11821,28623 +11822,28660 +11823,28728 +11824,9847 +11825,21833 +11826,59496 +11827,15274 +11828,15274 +11829,2480 +11830,21834 +11831,21835 +11832,19764 +11833,21836 +11834,9518 +11835,10923 +11836,21673 +11837,1438 +11838,22032 +11839,21839 +11840,21842 +11841,28720 +11842,28792 +11843,7798 +11844,1301 +11845,1183 +11846,21845 +11847,28071 +11848,28170 +11849,9644 +11850,23128 +11851,28249 +11852,19575 +11853,28241 +11854,28245 +11855,7494 +11856,28312 +11857,28345 +11858,28260 +11859,21853 +11860,28108 +11861,28171 +11862,6486 +11863,21855 +11864,25632 +11865,16766 +11866,28219 +11867,28332 +11868,9840 +11869,9849 +11870,28226 +11871,28253 +11872,28164 +11873,28325 +11874,28313 +11875,28305 +11876,28233 +11882,27770 +11883,1281 +11884,14649 +11885,12738 +11886,7695 +11887,20709 +11888,28342 +11889,28304 +11902,22227 +11903,20629 +11904,21936 +11905,22753 +11906,28075 +11907,28073 +11908,28063 +11909,17121 +11910,28076 +11911,28198 +11912,8928 +11913,28132 +11914,20791 +11915,18750 +11916,28254 +11917,28255 +11918,28186 +11919,28136 +11920,28679 +11921,25625 +11922,25609 +11923,21956 +11924,28814 +11925,28762 +11926,28712 +11927,21961 +11928,21962 +11929,28736 +11930,21965 +11931,28719 +11932,21968 +11933,28784 +11934,28733 +11935,28795 +11936,28242 +11937,1168 +11938,4056 +11939,14432 +11940,9657 +11941,7798 +11942,7629 +11943,7744 +11944,21970 +11945,9840 +11946,9854 +11947,21971 +11948,20791 +11949,21972 +11950,21973 +11951,21974 +11952,21975 +11953,20791 +11954,21976 +11955,21977 +11962,17229 +11963,28232 +11964,28203 +11965,9837 +11966,1168 +11967,9835 +11968,9836 +11969,9839 +11970,9842 +11971,9840 +11972,4284 +11973,224 +11974,3666 +11975,9835 +11976,9834 +11977,9833 +11978,9834 +11979,9836 +11980,9837 +11981,3666 +11982,9823 +11983,9837 +11984,9832 +11985,9847 +11986,9849 +11987,9840 +11988,9833 +11989,9847 +11990,9834 +11991,3666 +11992,9839 +11993,9836 +11994,9832 +11995,9837 +11996,9823 +11997,9847 +11998,3666 +11999,4284 +12000,28207 +12001,3666 +12002,9834 +12003,18115 +12004,3666 +12005,3666 +12006,9833 +12007,4284 +12008,224 +12009,9837 +12010,9834 +12011,9833 +12012,9847 +12013,9836 +12014,9835 +12015,9833 +12016,9847 +12017,9839 +12018,28135 +12019,6539 +12020,9860 +12021,23483 +12022,9658 +12023,9853 +12024,9859 +12025,9852 +12026,9657 +12027,9858 +12028,9857 +12029,6539 +12030,15420 +12031,9859 +12032,15420 +12033,22020 +12034,9859 +12035,15420 +12036,9860 +12037,25480 +12038,224 +12039,9657 +12040,6539 +12041,28429 +12042,9852 +12043,9857 +12044,9859 +12045,15420 +12046,6539 +12047,9852 +12048,9657 +12049,28244 +12050,4272 +12051,28090 +12052,9837 +12053,3666 +12054,9834 +12055,9840 +12056,9832 +12057,9836 +12058,3666 +12059,4841 +12060,6270 +12061,28086 +12062,25611 +12063,22031 +12064,22036 +12065,22037 +12066,28251 +12082,28176 +12083,28190 +12102,9840 +12103,23717 +12104,28095 +12105,28234 +12106,28089 +12107,28182 +12108,28070 +12109,21771 +12110,28240 +12111,28202 +12112,28139 +12113,28210 +12114,28222 +12115,28224 +12122,2593 +12142,8090 +12143,22071 +12144,22299 +12162,1102 +12163,1102 +12164,1102 +12182,22178 +12183,22180 +12184,25467 +12185,35174 +12186,22185 +12187,15897 +12188,15897 +12189,15897 +12190,17403 +12191,22192 +12192,16028 +12202,2599 +12203,25466 +12204,25472 +12205,22193 +12206,22193 +12207,18052 +12208,2599 +12209,22194 +12210,20803 +12211,22196 +12212,21473 +12213,25469 +12214,22198 +12215,22198 +12216,22196 +12217,21473 +12218,6353 +12219,19330 +12220,7025 +12221,20618 +12222,16548 +12223,6704 +12224,22200 +12225,20618 +12226,811 +12227,1102 +12228,1301 +12229,1301 +12230,22202 +12231,1301 +12232,1301 +12233,1301 +12234,22203 +12235,15793 +12236,15734 +12237,22193 +12238,33571 +12239,1301 +12240,1301 +12241,1659 +12242,22207 +12243,5290 +12244,15897 +12245,15897 +12246,22243 +12247,22247 +12248,22248 +12249,22249 +12250,22250 +12251,22252 +12252,28699 +12253,28690 +12254,23079 +12255,4765 +12256,16764 +12257,28777 +12258,22256 +12259,4119 +12260,22258 +12261,15274 +12262,22271 +12263,22271 +12264,20629 +12282,22291 +12283,7050 +12284,22293 +12285,18607 +12286,22299 +12287,22303 +12288,8381 +12289,22304 +12290,22319 +12291,6703 +12292,7913 +12293,7331 +12294,22598 +12295,28204 +12296,28248 +12297,22366 +12298,22367 +12299,28221 +12300,6506 +12301,22377 +12302,17608 +12303,17608 +12304,22378 +12322,22391 +12323,7366 +12324,7366 +12325,17607 +12326,17607 +12327,17607 +12328,22394 +12329,22395 +12330,16208 +12331,22402 +12332,22403 +12333,22404 +12334,6563 +12335,6496 +12336,2516 +12337,6006 +12338,22411 +12339,18721 +12340,6614 +12341,22414 +12342,16206 +12343,6417 +12344,22415 +12345,19595 +12346,22416 +12347,22417 +12348,22319 +12349,15773 +12350,22429 +12351,16207 +12352,7366 +12353,13108 +12354,25132 +12355,19462 +12356,22436 +12357,20656 +12358,22443 +12359,22444 +12360,14993 +12361,1659 +12362,4775 +12363,18707 +12364,6851 +12365,23148 +12366,21366 +12367,22464 +12368,12332 +12369,10275 +12382,22477 +12383,19528 +12384,22483 +12385,22485 +12402,18050 +12403,22492 +12404,24677 +12405,25751 +12406,22550 +12407,22534 +12408,25753 +12409,25752 +12410,25856 +12411,22484 +12412,20220 +12413,22520 +12414,22951 +12415,25742 +12416,25740 +12417,25826 +12418,25744 +12419,25741 +12420,25745 +12421,22563 +12422,25749 +12423,22517 +12424,24514 +12425,24511 +12426,24513 +12427,24510 +12428,24509 +12429,24506 +12430,19800 +12431,19800 +12432,19800 +12433,19800 +12434,19800 +12435,19800 +12436,19800 +12437,8928 +12438,3029 +12439,22611 +12440,11947 +12441,22612 +12442,22617 +12443,22618 +12444,16283 +12445,11448 +12446,28060 +12447,20723 +12448,28206 +12449,28235 +12450,22634 +12451,22636 +12452,22635 +12453,22637 +12454,22638 +12455,22639 +12456,22640 +12457,22641 +12458,22642 +12459,22634 +12460,22643 +12461,22645 +12462,28272 +12463,20198 +12464,28680 +12465,22989 +12466,28190 +12467,6504 +12468,6097 +12469,22654 +12470,22656 +12471,18437 +12472,7841 +12482,22672 +12502,22695 +12522,28077 +12523,20726 +12524,22716 +12525,9151 +12526,9666 +12527,21952 +12528,28673 +12529,22717 +12530,18047 +12531,22721 +12532,22722 +12533,18125 +12534,9666 +12535,22733 +12542,26053 +12543,9837 +12544,9837 +12545,9837 +12546,28637 +12547,28797 +12548,9837 +12549,15501 +12550,28824 +12551,28695 +12552,23111 +12553,28670 +12554,28771 +12555,27829 +12556,22779 +12557,28727 +12558,22765 +12562,3331 +12563,5567 +12564,22771 +12565,20629 +12566,21673 +12567,22785 +12582,28789 +12583,22792 +12584,31966 +12585,6418 +12586,22793 +12587,22794 +12588,22795 +12589,21796 +12590,25613 +12591,22802 +12592,22906 +12593,22814 +12602,23419 +12603,8725 +12604,22833 +12605,24107 +12606,22837 +12607,22838 +12608,28693 +12609,22843 +12610,23490 +12611,23486 +12612,23491 +12613,19730 +12614,23485 +12615,22860 +12616,22861 +12617,22869 +12618,25746 +12619,22882 +12620,22886 +12621,22885 +12622,2599 +12623,2599 +12624,25754 +12625,25827 +12626,14618 +12627,6338 +12628,22892 +12629,22893 +12630,1310 +12631,25747 +12632,25835 +12633,22901 +12634,22907 +12635,7798 +12636,22908 +12637,22910 +12638,22911 +12639,25750 +12640,22920 +12641,25748 +12642,1695 +12643,24687 +12644,24682 +12645,22924 +12646,7393 +12647,4777 +12648,7045 +12649,6851 +12650,22926 +12651,22929 +12652,7649 +12653,28813 +12654,22931 +12655,22445 +12662,22952 +12663,22953 +12682,15274 +12683,15274 +12684,15274 +12685,15274 +12686,22971 +12687,1102 +12688,1102 +12689,15274 +12690,1102 +12691,15274 +12692,15274 +12693,15274 +12694,15274 +12695,15274 +12696,1102 +12697,15274 +12698,1102 +12699,1102 +12700,1102 +12701,1102 +12702,15274 +12703,1102 +12704,15274 +12705,1102 +12706,1102 +12707,1102 +12708,11449 +12709,22977 +12710,22979 +12711,1102 +12712,15794 +12713,15274 +12714,1102 +12715,1102 +12716,1102 +12717,6270 +12718,1102 +12719,1102 +12720,1102 +12721,23713 +12722,23714 +12723,23715 +12724,23146 +12725,6270 +12726,6270 +12727,6270 +12728,1102 +12729,2533 +12730,4110 +12731,23150 +12732,19497 +12733,1116 +12734,7403 +12735,21416 +12736,21473 +12737,1442 +12738,13290 +12739,21807 +12740,20220 +12741,22484 +12742,23171 +12743,23171 +12744,23172 +12745,23172 +12746,23173 +12747,23173 +12748,23174 +12749,23174 +12750,23175 +12751,23177 +12752,23197 +12753,19316 +12754,23198 +12755,22906 +12756,23199 +12757,23200 +12762,23201 +12763,26735 +12764,23224 +12765,1093 +12766,1093 +12767,16130 +12768,1093 +12769,25600 +12770,23229 +12771,22429 +12772,23230 +12773,23234 +12774,23236 +12775,23434 +12776,23240 +12777,23241 +12778,9126 +12779,23243 +12780,16161 +12781,23244 +12782,24255 +12783,23248 +12784,23904 +12785,3116 +12786,23253 +12787,23254 +12788,23255 +12789,17514 +12790,24813 +12791,23262 +12792,23267 +12793,23266 +12794,7438 +12795,23271 +12796,25047 +12797,23274 +12798,28849 +12799,6496 +12800,4775 +12801,23281 +12802,23283 +12803,23285 +12804,23286 +12805,23727 +12806,23289 +12807,6748 +12808,23291 +12809,21072 +12810,23292 +12811,23293 +12812,23294 +12813,1288 +12814,18080 +12815,23295 +12816,15274 +12817,1102 +12818,1102 +12819,1102 +12820,15787 +12821,1102 +12822,2885 +12823,1102 +12824,15274 +12825,15274 +12826,15274 +12827,15274 +12828,15274 +12829,7918 +12830,1102 +12831,1102 +12832,1102 +12833,1102 +12834,1102 +12835,1102 +12836,1102 +12837,1102 +12838,1102 +12839,1102 +12840,23722 +12841,23720 +12842,1155 +12843,23721 +12844,23717 +12845,9857 +12846,23716 +12847,23315 +12848,23315 +12849,20342 +12850,23316 +12851,23316 +12852,23317 +12853,23317 +12854,23318 +12855,23318 +12856,23319 +12857,23319 +12858,23320 +12859,23320 +12860,23177 +12861,23175 +12862,23321 +12863,23321 +12864,23322 +12865,23322 +12866,23323 +12867,23323 +12868,23324 +12869,23324 +12870,6533 +12871,23332 +12882,23355 +12883,23357 +12884,23358 +12885,2622 +12886,23370 +12887,23371 +12888,23371 +12889,23379 +12890,12274 +12891,23383 +12892,23386 +12893,23387 +12894,224 +12895,28335 +12896,23398 +12897,23398 +12898,23398 +12899,23398 +12900,1103 +12901,23401 +12902,23405 +12903,23473 +12904,23411 +12905,28605 +12906,2357 +12907,18059 +12922,18057 +12923,23432 +12924,6623 +12925,23436 +12926,23435 +12927,28630 +12928,23440 +12929,9658 +12930,8232 +12931,23445 +12932,23446 +12933,23447 +12934,23448 +12935,28625 +12936,22752 +12937,2388 +12938,15788 +12939,25647 +12940,25648 +12941,23455 +12942,23458 +12943,23465 +12944,23472 +12945,23473 +12946,23475 +12947,23496 +12948,23497 +12949,23508 +12950,23509 +12951,3243 +12952,23519 +12953,15327 +12954,1134 +12955,23521 +12956,23527 +12957,23526 +12958,1301 +12959,23539 +12960,23544 +12961,23545 +12962,23546 +12963,23547 +12964,23548 +12965,23551 +12966,23552 +12967,23553 +12968,23554 +12969,23557 +12970,26387 +12971,23561 +12972,23561 +12973,23562 +12974,28676 +12975,28804 +12976,8272 +12977,16642 +12978,28448 +12979,28661 +12980,23568 +12981,23569 +12982,28452 +12983,28809 +12984,28738 +12985,28812 +12986,7480 +12987,28648 +12988,28375 +12989,28758 +12990,28810 +12991,23573 +12992,20071 +12993,23574 +12994,27778 +12995,23575 +12996,24646 +12997,28811 +12998,28651 +12999,28370 +13000,28701 +13001,9833 +13002,4841 +13003,28794 +13004,28631 +13005,28951 +13006,28799 +13007,28616 +13008,28646 +13009,28700 +13010,28438 +13011,28372 +13012,28596 +13013,28643 +13014,25594 +13015,28748 +13016,28791 +13017,25599 +13018,23228 +13019,28772 +13020,25602 +13021,28801 +13022,28766 +13023,25606 +13024,28671 +13025,28706 +13026,28776 +13027,28689 +13028,28681 +13029,24122 +13030,28647 +13031,28803 +13032,25639 +13033,28594 +13034,28708 +13035,25640 +13036,25641 +13037,22929 +13038,25607 +13039,25608 +13040,22929 +13041,28768 +13042,28678 +13043,28675 +13044,28714 +13045,25627 +13046,28677 +13047,25626 +13048,25623 +13049,28707 +13050,23586 +13051,28598 +13052,28624 +13053,28717 +13054,28764 +13055,18388 +13056,12562 +13057,25630 +13058,28790 +13059,25633 +13060,28672 +13061,23590 +13062,28633 +13063,28697 +13064,28787 +13065,28626 +13066,28351 +13067,28355 +13068,28362 +13069,23594 +13070,28353 +13071,28354 +13072,28352 +13073,28360 +13074,21961 +13075,28716 +13076,28357 +13077,28364 +13078,23601 +13079,28742 +13080,23604 +13081,18790 +13082,25134 +13083,25133 +13084,6497 +13085,9657 +13086,23606 +13087,9860 +13088,6522 +13089,6497 +13090,23605 +13091,23717 +13092,23607 +13093,28682 +13094,26537 +13095,9834 +13096,23629 +13097,9839 +13098,23608 +13099,28617 +13100,28645 +13101,28597 +13102,28974 +13103,28612 +13104,23617 +13105,28657 +13106,28656 +13107,28619 +13108,28614 +13109,28609 +13110,28368 +13111,28664 +13112,28601 +13113,28739 +13114,17031 +13115,28745 +13116,28709 +13117,28802 +13118,28369 +13119,28735 +13120,28373 +13121,28602 +13122,28652 +13123,28663 +13124,28441 +13125,28439 +13126,28434 +13127,28440 +13128,28662 +13129,28437 +13130,28447 +13131,28444 +13132,28443 +13133,28665 +13134,28435 +13135,28668 +13136,21071 +13137,28786 +13138,28634 +13139,28769 +13140,7827 +13141,9860 +13142,23628 +13143,23629 +13144,28649 +13145,28356 +13146,28743 +13147,23639 +13148,25631 +13149,1103 +13150,23656 +13151,1317 +13152,1134 +13153,7139 +13154,6672 +13155,23658 +13156,2516 +13157,23659 +13158,1155 +13159,6371 +13160,23669 +13161,23673 +13162,23675 +13163,23683 +13164,6006 +13165,23692 +13166,23704 +13167,25180 +13168,23559 +13169,23710 +13170,28713 +13171,24060 +13172,11449 +13173,23723 +13174,23725 +13175,25603 +13176,23726 +13177,6494 +13178,23728 +13179,23730 +13180,23731 +13181,23732 +13182,23734 +13183,24740 +13184,23736 +13185,23737 +13186,21673 +13187,21673 +13188,21673 +13189,21673 +13190,23739 +13191,19547 +13192,15791 +13193,22191 +13194,23740 +13195,23741 +13196,23741 +13197,23740 +13198,23742 +13199,28436 +13202,1103 +13203,23747 +13204,25619 +13205,23750 +13206,23753 +13207,1310 +13208,23760 +13209,23763 +13210,23765 +13211,23769 +13212,23766 +13213,16209 +13214,23775 +13215,23776 +13216,23777 +13217,28830 +13218,23791 +13219,23497 +13220,23792 +13221,23797 +13222,23798 +13223,1283 +13242,23824 +13243,25133 +13244,23827 +13245,23835 +13246,23836 +13247,12333 +13248,8257 +13249,23837 +13250,23842 +13251,23843 +13252,23844 +13253,23846 +13254,23847 +13255,23849 +13256,23850 +13257,23852 +13258,23853 +13259,23856 +13260,23861 +13261,23867 +13262,23875 +13282,18905 +13283,23435 +13284,23901 +13285,23908 +13286,23909 +13287,1102 +13288,1102 +13289,23914 +13290,23917 +13291,23918 +13292,23919 +13293,23920 +13294,23923 +13302,4287 +13303,4287 +13304,4287 +13305,4287 +13306,4287 +13307,4287 +13308,1102 +13309,1102 +13310,1102 +13311,1102 +13312,23948 +13313,1103 +13314,24760 +13315,23955 +13316,23969 +13317,17494 +13318,23976 +13319,23977 +13320,23982 +13321,17785 +13322,17785 +13323,17785 +13324,17785 +13325,17785 +13326,17785 +13327,17785 +13328,17343 +13329,17343 +13330,23991 +13331,17786 +13332,17786 +13333,17786 +13334,17786 +13335,24011 +13336,24014 +13337,24015 +13338,21513 +13339,24016 +13340,24013 +13341,6536 +13342,24020 +13343,24019 +13344,29001 +13345,24022 +13346,24025 +13347,6506 +13348,24049 +13349,24033 +13350,22924 +13351,24036 +13352,24037 +13353,24039 +13354,24044 +13355,24044 +13356,24057 +13357,24058 +13358,18971 +13359,24045 +13360,24046 +13361,25036 +13362,3024 +13363,1301 +13364,4110 +13365,24051 +13366,24052 +13367,24053 +13368,25614 +13369,24054 +13370,24059 +13371,24061 +13372,24063 +13373,1225 +13374,24064 +13375,23825 +13376,24065 +13377,2418 +13378,24066 +13379,2618 +13380,18298 +13381,24068 +13382,7888 +13383,24070 +13384,24071 +13385,24072 +13386,24073 +13387,24074 +13388,25049 +13389,25050 +13390,24292 +13391,25051 +13392,24087 +13393,25629 +13394,24102 +13395,29009 +13396,24106 +13397,24108 +13398,9653 +13399,24109 +13400,24110 +13401,24111 +13402,33114 +13403,24113 +13404,41843 +13405,24115 +13406,24116 +13407,24117 +13408,24119 +13409,24120 +13422,24131 +13423,24132 +13442,19547 +13443,24151 +13444,21672 +13445,16321 +13446,24152 +13447,24211 +13448,18010 +13449,16065 +13450,24153 +13451,24154 +13452,16836 +13453,38767 +13454,17898 +13455,17974 +13456,15794 +13457,15741 +13458,23739 +13459,17469 +13460,15747 +13461,17403 +13462,24156 +13463,24689 +13464,24690 +13465,24692 +13466,24693 +13467,24691 +13468,24688 +13469,3486 +13470,14023 +13471,16065 +13472,24174 +13473,23715 +13474,13060 +13475,224 +13476,15274 +13477,1301 +13478,1301 +13479,15274 +13480,1301 +13481,15274 +13482,15274 +13483,15274 +13484,15274 +13485,15274 +13486,15274 +13487,15274 +13488,15274 +13489,15274 +13490,15274 +13491,15274 +13492,15274 +13493,15274 +13494,15274 +13495,15274 +13496,15274 +13497,15274 +13498,24162 +13499,15274 +13500,15274 +13501,15274 +13502,24164 +13503,43359 +13504,52723 +13505,24166 +13506,26865 +13507,7744 +13508,1504 +13509,7247 +13510,24213 +13511,21531 +13512,19547 +13513,22191 +13514,24169 +13515,1236 +13516,24175 +13517,1301 +13518,15274 +13519,15274 +13520,15274 +13521,15274 +13522,15274 +13523,15741 +13524,24176 +13525,24177 +13526,24178 +13527,24179 +13528,24180 +13529,4107 +13530,24181 +13531,24182 +13532,24183 +13533,24185 +13534,24186 +13535,24189 +13536,24188 +13537,24190 +13538,24193 +13539,24194 +13542,12925 +13543,19595 +13544,24220 +13545,45815 +13546,4809 +13562,24231 +13582,24252 +13583,24251 +13584,34364 +13585,6672 +13586,15897 +13602,21610 +13603,21610 +13604,24281 +13605,24282 +13606,24283 +13607,24284 +13608,24285 +13609,24293 +13610,24294 +13611,24295 +13612,24296 +13622,24343 +13623,24342 +13624,6672 +13625,24351 +13626,3486 +13627,24366 +13628,24367 +13629,24368 +13630,24369 +13631,19804 +13632,24370 +13642,9632 +13643,9632 +13644,9632 +13645,9632 +13646,9632 +13647,9632 +13648,9632 +13649,9632 +13650,9632 +13651,9632 +13652,9632 +13653,9632 +13654,9632 +13655,9632 +13656,9632 +13657,9632 +13658,9632 +13659,9632 +13660,9632 +13661,9632 +13662,9632 +13663,9632 +13664,9632 +13665,9632 +13666,9632 +13667,9632 +13668,9632 +13669,9632 +13670,9632 +13671,9632 +13672,9632 +13673,9632 +13674,9632 +13675,9632 +13676,9632 +13677,9632 +13678,9632 +13679,9632 +13680,9632 +13681,9632 +13682,9632 +13683,9632 +13684,9632 +13685,9632 +13686,9632 +13687,9632 +13688,9632 +13689,9632 +13690,9632 +13691,9632 +13692,9632 +13693,9632 +13694,9632 +13695,9632 +13696,9632 +13697,9632 +13698,24394 +13699,24380 +13700,24380 +13701,24380 +13702,19498 +13703,24415 +13704,22071 +13705,24445 +13706,24446 +13707,24452 +13708,24461 +13709,24473 +13710,15897 +13711,15897 +13712,15897 +13713,15897 +13714,15897 +13715,15897 +13716,15897 +13717,15897 +13718,24478 +13719,24479 +13720,24480 +13721,24483 +13722,24489 +13723,24490 +13724,21203 +13725,24496 +13726,24497 +13727,24497 +13728,24497 +13729,24563 +13730,24564 +13731,23294 +13732,24563 +13733,24564 +13734,23294 +13735,24563 +13736,24564 +13737,23294 +13738,24562 +13739,24562 +13740,24562 +13741,24561 +13742,24560 +13743,24559 +13744,24559 +13745,24559 +13746,24560 +13747,24560 +13748,24561 +13749,24561 +13750,24499 +13751,24503 +13752,6672 +13753,24517 +13754,7176 +13755,18537 +13756,4813 +13757,24522 +13758,4809 +13759,24713 +13760,24716 +13761,11448 +13762,24546 +13763,24546 +13764,24546 +13765,24547 +13766,24547 +13767,24547 +13768,24548 +13769,24548 +13770,24548 +13771,24550 +13772,24550 +13773,24550 +13774,24551 +13775,24551 +13776,24551 +13777,24552 +13778,24552 +13779,24552 +13780,24553 +13781,24553 +13782,24553 +13783,24554 +13784,24554 +13785,24554 +13786,24555 +13787,24555 +13788,24555 +13789,24556 +13790,24556 +13791,24556 +13792,24557 +13793,24557 +13794,24557 +13795,24558 +13796,24558 +13797,24558 +13798,24565 +13799,24565 +13800,24565 +13801,24566 +13802,24566 +13803,24566 +13804,6638 +13805,6638 +13806,6638 +13807,24567 +13808,24567 +13809,24567 +13810,24568 +13811,6502 +13812,24569 +13813,24570 +13814,24571 +13815,24572 +13816,20225 +13817,20195 +13818,8478 +13819,19374 +13820,19716 +13821,28691 +13822,4119 +13823,20309 +13824,20550 +13825,20721 +13842,18705 +13843,18705 +13844,18705 +13845,18705 +13846,18705 +13847,18705 +13848,18705 +13849,18705 +13850,24592 +13851,21327 +13852,16065 +13853,22193 +13854,24594 +13855,24595 +13856,25235 +13857,25207 +13858,24601 +13859,24596 +13860,25232 +13861,24597 +13862,24597 +13863,25231 +13864,25233 +13865,25208 +13866,25230 +13867,25236 +13868,24612 +13869,24610 +13870,24616 +13871,24615 +13872,929 +13873,13824 +13874,8928 +13875,12331 +13876,16364 +13877,16364 +13878,16364 +13879,16364 +13880,16364 +13881,4809 +13882,16364 +13883,16364 +13884,16364 +13885,16364 +13886,16364 +13887,16364 +13888,24629 +13889,24719 +13890,4823 +13891,4809 +13892,25456 +13893,11932 +13894,24634 +13895,24644 +13896,24643 +13897,24641 +13898,24645 +13899,24639 +13900,24642 +13901,18705 +13902,18705 +13903,18705 +13904,18705 +13905,18705 +13906,18705 +13907,24629 +13908,24629 +13909,24629 +13910,24629 +13911,24629 +13912,24629 +13913,24629 +13914,24715 +13915,24715 +13916,24715 +13917,24715 +13918,12331 +13919,24655 +13920,22838 +13922,24695 +13923,24720 +13924,24721 +13925,24729 +13926,24730 +13927,7176 +13928,18537 +13929,4813 +13930,4809 +13931,21473 +13932,24716 +13933,24733 +13934,22194 +13935,24719 +13936,25659 +13937,45947 +13938,24743 +13939,1301 +13940,1301 +13941,1301 +13942,1301 +13943,1301 +13944,28632 +13945,1301 +13946,1301 +13947,1301 +13948,1301 +13949,1301 +13950,24748 +13951,24749 +13952,28782 +13953,24756 +13954,28627 +13955,24777 +13956,24762 +13957,24768 +13958,24767 +13959,30535 +13960,19785 +13961,24772 +13962,30391 +13963,29016 +13964,24775 +13965,24776 +13966,24778 +13967,28604 +13968,24784 +13969,24793 +13982,26676 +13983,24816 +13984,26679 +13985,24817 +13986,26680 +14002,22831 +14022,26622 +14023,26622 +14024,20592 +14025,25881 +14042,24893 +14043,24896 +14044,23422 +14045,24895 +14046,19595 +14047,24897 +14048,24898 +14062,17786 +14082,24919 +14083,24923 +14084,24924 +14085,24925 +14086,25871 +14087,25864 +14088,23132 +14089,25867 +14090,7533 +14091,25869 +14092,24926 +14093,25863 +14094,25873 +14095,25874 +14096,25880 +14097,25876 +14098,25875 +14099,14431 +14100,15820 +14101,16779 +14102,16586 +14103,24928 +14104,24927 +14105,24930 +14106,24932 +14107,13679 +14108,24935 +14109,25877 +14110,25879 +14111,24933 +14112,24934 +14113,25858 +14114,25857 +14115,14541 +14116,25855 +14117,14542 +14118,24931 +14119,11421 +14120,16531 +14121,17462 +14122,16664 +14123,25916 +14124,16657 +14125,16656 +14126,5394 +14127,15201 +14128,24945 +14129,25929 +14130,24942 +14131,25915 +14132,24943 +14133,25952 +14134,24946 +14135,15738 +14136,25834 +14137,17252 +14138,25228 +14139,24966 +14140,28414 +14141,25571 +14142,24977 +14143,24978 +14144,11166 +14145,24981 +14146,24986 +14147,24982 +14148,24983 +14149,24985 +14150,24988 +14151,24990 +14152,25205 +14153,25201 +14154,25203 +14155,21586 +14156,20342 +14157,8374 +14158,9996 +14159,25893 +14160,16907 +14161,23101 +14162,11144 +14163,25894 +14164,14431 +14165,25890 +14166,28050 +14167,28054 +14168,28056 +14169,25859 +14170,28055 +14171,13679 +14172,28098 +14173,28051 +14174,19950 +14175,28052 +14176,9184 +14177,25970 +14178,26302 +14179,23109 +14180,26023 +14181,25971 +14182,19991 +14183,25974 +14184,25976 +14185,25969 +14186,25986 +14187,14640 +14188,23138 +14189,15283 +14190,25984 +14191,25987 +14192,25989 +14193,18887 +14194,28730 +14195,14645 +14196,26008 +14197,26004 +14198,26006 +14199,26007 +14200,15293 +14201,26012 +14202,26049 +14203,16719 +14204,26011 +14205,26005 +14206,25970 +14207,26021 +14208,26308 +14209,26022 +14210,26015 +14211,26020 +14212,28729 +14213,26017 +14214,9184 +14215,25973 +14216,26051 +14217,24113 +14218,16721 +14219,26045 +14220,26044 +14221,26042 +14222,26050 +14223,26054 +14224,26052 +14225,26053 +14226,26055 +14227,18597 +14228,26059 +14229,26057 +14230,26063 +14231,26062 +14232,26068 +14233,26061 +14234,26067 +14235,26058 +14236,26066 +14237,16599 +14238,26100 +14239,26101 +14240,16604 +14241,26102 +14242,16600 +14243,26104 +14244,28991 +14245,24624 +14246,26309 +14247,26116 +14248,14647 +14249,14646 +14250,26117 +14251,26112 +14252,18992 +14253,26113 +14254,26119 +14255,26111 +14256,25028 +14257,18887 +14258,26190 +14259,26186 +14260,26187 +14261,26189 +14262,26193 +14263,41844 +14264,26196 +14265,26198 +14266,26195 +14267,26192 +14268,17262 +14269,26145 +14270,23031 +14271,26307 +14272,26143 +14273,26147 +14274,26144 +14275,26142 +14276,26138 +14277,26311 +14278,27928 +14279,14618 +14280,26137 +14281,26128 +14282,26132 +14283,26124 +14284,26131 +14285,26134 +14286,26136 +14287,27927 +14288,26203 +14289,25098 +14290,26206 +14291,26205 +14292,26215 +14293,26214 +14294,26208 +14295,26212 +14296,26213 +14297,26211 +14298,26281 +14299,26268 +14300,26271 +14301,26266 +14302,26275 +14303,18834 +14304,26280 +14305,26282 +14306,26279 +14307,26277 +14308,26256 +14309,26252 +14310,26261 +14311,26253 +14312,26255 +14313,26262 +14314,26258 +14315,26260 +14316,26263 +14317,26254 +14318,26288 +14319,26285 +14320,26287 +14321,26299 +14322,26292 +14323,26290 +14324,26300 +14325,26298 +14326,28993 +14327,26284 +14328,26219 +14329,26225 +14330,26216 +14331,26227 +14332,26224 +14333,26222 +14334,26223 +14335,26229 +14336,26226 +14337,26221 +14338,25038 +14339,15794 +14340,25039 +14341,25048 +14342,25052 +14343,39178 +14344,35403 +14362,25080 +14363,16591 +14364,16802 +14365,25884 +14366,16805 +14367,25885 +14368,25887 +14369,25888 +14370,10079 +14371,25889 +14372,25954 +14373,25957 +14374,25966 +14375,25959 +14376,25958 +14377,25961 +14378,25965 +14379,25968 +14380,25956 +14381,6430 +14382,17251 +14383,17262 +14384,17256 +14385,13984 +14386,17274 +14387,17255 +14388,17252 +14389,17271 +14390,17261 +14391,20173 +14392,20385 +14393,2552 +14394,20550 +14395,7139 +14396,1246 +14397,27872 +14398,26003 +14399,25995 +14400,25997 +14401,25996 +14402,25994 +14403,25999 +14404,12973 +14405,27873 +14406,25998 +14407,26028 +14408,26026 +14409,26027 +14410,26033 +14411,26029 +14412,26035 +14413,26038 +14414,26024 +14415,11166 +14416,26025 +14417,26084 +14418,26086 +14419,26079 +14420,26080 +14421,26093 +14422,26081 +14423,26096 +14424,26083 +14425,26092 +14426,16781 +14427,26161 +14428,26153 +14429,26151 +14430,26175 +14431,26154 +14432,4904 +14433,26159 +14434,26174 +14435,26149 +14436,26150 +14437,16631 +14438,16634 +14439,16636 +14440,26201 +14441,41845 +14442,16633 +14443,16637 +14444,16632 +14445,19901 +14446,21459 +14447,26171 +14448,26168 +14449,26170 +14450,26184 +14451,18423 +14452,26182 +14453,26157 +14454,26169 +14455,26178 +14456,26240 +14457,26235 +14458,26231 +14459,26233 +14460,26243 +14461,26236 +14462,26238 +14463,26247 +14464,27228 +14465,26230 +14466,15274 +14467,15274 +14468,1102 +14469,1102 +14470,15274 +14471,15274 +14472,1102 +14473,15274 +14474,15274 +14475,3367 +14476,15274 +14477,15274 +14478,15274 +14479,15274 +14480,15274 +14481,1102 +14482,15274 +14483,1102 +14484,15274 +14485,15274 +14486,1102 +14487,25096 +14488,811 +14489,15274 +14490,15274 +14491,15274 +14492,15274 +14493,6270 +14494,15274 +14495,15274 +14496,15274 +14497,1102 +14498,15274 +14499,15274 +14500,15274 +14501,1102 +14502,28757 +14503,25104 +14504,15274 +14505,15274 +14506,15274 +14507,1102 +14508,15274 +14509,1102 +14510,1102 +14511,1102 +14512,1102 +14513,1102 +14514,1102 +14522,25111 +14523,25118 +14524,25120 +14525,25116 +14526,1102 +14527,25139 +14528,25138 +14529,25146 +14530,25147 +14531,25148 +14532,25152 +14533,25153 +14534,25154 +14535,25155 +14536,25157 +14537,25160 +14538,28705 +14539,25166 +14540,3422 +14541,25649 +14542,11449 +14543,28703 +14544,22952 +14545,25169 +14546,1225 +14547,25171 +14548,28817 +14549,28276 +14550,28274 +14551,28280 +14552,28282 +14553,28386 +14554,25343 +14555,25612 +14556,6522 +14557,6338 +14558,9857 +14559,27520 +14560,27524 +14561,17014 +14562,27518 +14563,27525 +14564,27519 +14565,27522 +14566,27523 +14567,27668 +14568,16997 +14569,13355 +14570,27669 +14571,27673 +14572,27672 +14573,27667 +14574,27670 +14575,25620 +14576,25173 +14577,28715 +14578,27963 +14579,27965 +14580,27964 +14581,27962 +14582,27584 +14583,27966 +14584,27968 +14585,27967 +14586,25180 +14587,10179 +14588,27976 +14589,9169 +14590,14770 +14591,21311 +14592,27979 +14593,27980 +14594,27977 +14595,27975 +14596,27978 +14597,6272 +14598,27983 +14599,27982 +14600,27985 +14601,14995 +14602,27986 +14603,27988 +14604,27987 +14605,27984 +14606,15000 +14607,27981 +14608,18487 +14609,18488 +14610,25184 +14611,25222 +14612,25223 +14613,6505 +14614,25219 +14615,25221 +14616,25220 +14617,25193 +14618,25197 +14619,13806 +14620,25225 +14621,25227 +14622,25224 +14623,25226 +14624,24102 +14625,23520 +14626,25245 +14627,1102 +14628,25246 +14629,4607 +14630,1102 +14631,18863 +14632,25255 +14633,25247 +14634,15274 +14635,1102 +14636,25248 +14637,25249 +14638,26966 +14639,1102 +14640,25253 +14641,11571 +14642,25260 +14643,5509 +14644,18204 +14645,22464 +14646,18499 +14647,18499 +14648,18499 +14649,18499 +14650,18499 +14651,18499 +14652,27579 +14653,18944 +14654,27582 +14655,27576 +14656,27584 +14657,27577 +14658,27581 +14659,27578 +14660,27580 +14661,27566 +14662,27568 +14663,27565 +14664,27564 +14665,27573 +14666,27567 +14667,27572 +14668,27570 +14669,27569 +14670,27649 +14671,18944 +14672,27582 +14673,27653 +14674,27579 +14675,27648 +14676,21299 +14677,27651 +14678,27652 +14679,25271 +14680,18470 +14681,17258 +14682,17259 +14683,27573 +14684,15411 +14685,17263 +14686,17321 +14687,17265 +14688,17267 +14689,22673 +14690,22674 +14691,18492 +14692,22675 +14693,11131 +14694,22676 +14695,7193 +14696,2633 +14697,22677 +14698,22689 +14699,22690 +14700,6953 +14701,22691 +14702,22692 +14703,12450 +14704,22693 +14705,3932 +14706,5417 +14707,25278 +14722,26983 +14723,26982 +14724,26958 +14725,26987 +14726,26985 +14727,26986 +14728,26988 +14729,23835 +14730,26984 +14742,27009 +14743,27007 +14744,27010 +14745,27011 +14746,27008 +14747,27012 +14748,27013 +14749,27014 +14750,27026 +14751,27034 +14752,27033 +14753,27191 +14754,27027 +14755,27029 +14756,27035 +14757,27028 +14758,27030 +14759,27048 +14760,27049 +14761,27046 +14762,27047 +14763,27051 +14764,27053 +14765,27052 +14766,27050 +14767,27054 +14768,27092 +14769,27093 +14770,27091 +14771,26141 +14772,29007 +14773,27094 +14774,28175 +14775,27097 +14776,27096 +14777,27099 +14778,21756 +14779,27147 +14780,20833 +14781,27152 +14782,27148 +14783,27146 +14784,27149 +14785,27151 +14786,27150 +14787,16079 +14788,27154 +14789,27155 +14790,27162 +14791,27161 +14792,27156 +14793,27159 +14794,27158 +14795,26115 +14796,27157 +14797,27160 +14798,27194 +14799,27192 +14800,27202 +14801,27197 +14802,27196 +14803,27185 +14804,29938 +14805,27195 +14806,23490 +14807,27193 +14808,27137 +14809,27827 +14810,27136 +14811,27138 +14812,27145 +14813,27143 +14814,28986 +14815,27536 +14816,27140 +14817,27142 +14818,25362 +14819,25363 +14820,25364 +14821,26811 +14822,25365 +14823,25366 +14824,25367 +14825,25134 +14826,26812 +14827,26810 +14828,26813 +14829,26814 +14830,26818 +14831,27182 +14832,26815 +14833,29015 +14834,26685 +14835,26687 +14836,25377 +14837,25378 +14838,26686 +14839,26690 +14840,26691 +14841,26688 +14842,26693 +14843,26692 +14844,26820 +14845,25382 +14846,27190 +14847,26819 +14848,26822 +14849,27186 +14850,26824 +14851,26825 +14852,11925 +14853,26821 +14854,26846 +14855,26847 +14856,26848 +14857,26850 +14858,28985 +14859,26849 +14860,27876 +14861,19760 +14862,26880 +14863,26881 +14864,26879 +14865,26883 +14866,27180 +14867,26884 +14868,26885 +14869,26878 +14870,25410 +14871,25411 +14872,15692 +14873,25437 +14874,25441 +14875,25470 +14876,25471 +14877,25474 +14878,9055 +14879,25496 +14880,25499 +14881,25503 +14882,25504 +14883,25506 +14884,25507 +14885,25508 +14886,25509 +14887,25510 +14888,25511 +14889,25513 +14890,25514 +14891,25515 +14892,25516 +14893,25533 +14894,25542 +14895,26654 +14896,26652 +14897,27838 +14898,26650 +14899,26656 +14900,26651 +14901,26655 +14902,23847 +14903,26646 +14904,27899 +14905,27901 +14906,27902 +14907,27906 +14908,27900 +14909,27904 +14910,27903 +14911,27905 +14912,11925 +14913,26799 +14914,26794 +14915,26795 +14916,22805 +14917,26798 +14918,26792 +14919,27839 +14920,26800 +14921,26797 +14922,26874 +14923,26869 +14924,26871 +14925,28015 +14926,26872 +14927,26870 +14928,26873 +14929,26875 +14930,20974 +14931,27932 +14932,27829 +14933,27934 +14934,27935 +14935,27942 +14936,27938 +14937,27940 +14938,27933 +14939,26636 +14940,26643 +14941,26454 +14942,26640 +14943,26634 +14944,27512 +14945,26641 +14946,26645 +14947,23825 +14948,26838 +14949,28996 +14950,26836 +14951,26842 +14952,26257 +14953,26840 +14954,26844 +14955,26843 +14956,26837 +14957,26833 +14958,26827 +14959,26830 +14960,26828 +14961,27835 +14962,26831 +14963,26834 +14964,23419 +14965,26829 +14966,26859 +14967,27833 +14968,26856 +14969,28024 +14970,26861 +14971,26864 +14972,26862 +14973,26868 +14974,26857 +14975,26890 +14976,26888 +14977,26889 +14978,27832 +14979,26893 +14980,26891 +14981,26894 +14982,26911 +14983,26887 +15002,25593 +15003,28007 +15004,7537 +15005,17017 +15006,18508 +15007,28011 +15008,28009 +15009,28008 +15010,9536 +15011,27668 +15012,14276 +15013,27989 +15014,28579 +15015,23050 +15016,27990 +15017,27991 +15018,3390 +15019,27667 +15022,24496 +15042,25661 +15043,25662 +15044,25807 +15045,25671 +15046,25673 +15047,25675 +15048,25676 +15049,25677 +15050,27943 +15051,27945 +15052,27944 +15053,25682 +15054,25683 +15055,25685 +15056,8682 +15057,25686 +15058,25687 +15059,25688 +15060,25694 +15061,25695 +15062,26071 +15063,26072 +15064,12368 +15065,14547 +15066,25699 +15067,25700 +15068,19012 +15069,25701 +15070,25702 +15071,25703 +15072,25705 +15073,25709 +15074,25706 +15075,25704 +15076,25710 +15077,25720 +15078,25718 +15079,25714 +15080,28976 +15081,25713 +15082,25719 +15083,25724 +15084,25726 +15085,25721 +15086,25729 +15087,25722 +15088,25728 +15089,25710 +15090,25731 +15091,25735 +15092,25736 +15093,25737 +15094,25739 +15095,25732 +15096,25734 +15102,2885 +15103,2885 +15104,28432 +15105,28231 +15106,28236 +15107,25072 +15108,25072 +15109,28225 +15110,27880 +15111,1981 +15112,27879 +15113,2211 +15114,27514 +15115,27878 +15116,11274 +15117,1978 +15118,27877 +15119,26177 +15120,27887 +15121,1966 +15122,27888 +15123,18449 +15124,27693 +15125,27881 +15126,27884 +15127,6775 +15128,27882 +15129,27886 +15130,9548 +15131,27710 +15132,27706 +15133,27720 +15134,27711 +15135,28563 +15136,27708 +15137,27715 +15138,25921 +15139,27712 +15140,27713 +15141,27943 +15142,27685 +15143,3652 +15144,27689 +15145,27690 +15146,27687 +15147,27686 +15148,27684 +15149,3846 +15150,27688 +15151,3442 +15152,27725 +15153,23048 +15154,27724 +15155,27722 +15156,27734 +15157,27723 +15158,27732 +15159,27728 +15160,27727 +15161,18980 +15162,27916 +15163,27922 +15164,27914 +15165,22253 +15166,27921 +15167,28979 +15168,17153 +15169,27920 +15170,27586 +15171,11832 +15172,27589 +15173,27593 +15174,27591 +15175,27907 +15176,14697 +15177,27592 +15178,27590 +15179,27663 +15180,27560 +15181,27562 +15182,28584 +15183,24159 +15184,27661 +15185,56052 +15186,27662 +15187,27664 +15188,27632 +15189,27634 +15190,23051 +15191,18980 +15192,27635 +15193,28022 +15194,28019 +15195,28018 +15196,31254 +15197,31255 +15198,31253 +15199,31252 +15200,30797 +15202,7834 +15203,28189 +15204,28218 +15205,28229 +15206,28197 +15207,41117 +15208,20614 +15209,1168 +15210,28544 +15211,28567 +15212,28527 +15213,28570 +15214,28561 +15215,28528 +15216,28530 +15217,28458 +15218,28346 +15219,13078 +15220,28316 +15221,28552 +15222,28314 +15223,28571 +15224,28318 +15225,28521 +15226,28531 +15227,28508 +15228,28512 +15229,19735 +15230,28539 +15231,28469 +15232,28542 +15233,28525 +15234,5640 +15235,28341 +15236,28566 +15237,28338 +15238,28459 +15239,28523 +15240,28504 +15241,20414 +15242,28568 +15243,28348 +15244,3175 +15245,6448 +15246,20299 +15247,28327 +15248,28535 +15249,20080 +15250,28536 +15251,28546 +15252,28465 +15253,28321 +15254,28347 +15255,28529 +15256,28576 +15257,26589 +15258,28517 +15259,28548 +15260,28468 +15261,28524 +15262,28540 +15263,28534 +15264,28311 +15265,28499 +15266,28526 +15267,28674 +15268,28460 +15269,28573 +15270,28533 +15271,28334 +15272,28541 +15273,28349 +15274,22144 +15275,28467 +15276,28580 +15277,29448 +15278,28502 +15279,28569 +15280,28457 +15281,28538 +15282,28518 +15283,28577 +15284,28572 +15285,28308 +15286,28575 +15287,28344 +15288,28322 +15289,28309 +15290,29447 +15291,28543 +15292,29449 +15293,29449 +15294,28515 +15295,28547 +15296,28545 +15297,28013 +15298,28017 +15299,23054 +15300,12415 +15301,28016 +15302,28012 +15303,28014 +15304,12369 +15305,28039 +15306,28045 +15307,20826 +15308,17114 +15309,28042 +15310,28046 +15311,11382 +15312,14522 +15313,9527 +15314,1168 +15322,6591 +15323,28557 +15324,28331 +15325,8258 +15326,26358 +15327,26361 +15328,4287 +15329,27998 +15330,27999 +15331,28001 +15332,18493 +15333,28006 +15334,28005 +15335,28093 +15336,28003 +15337,27683 +15338,28002 +15339,27680 +15340,27679 +15341,27678 +15342,28583 +15343,27677 +15344,27681 +15345,27682 +15346,27683 +15347,27674 +15348,27675 +15349,11953 +15350,27702 +15351,27699 +15352,28269 +15353,29134 +15354,27700 +15355,27701 +15356,18284 +15357,27703 +15358,27704 +15359,27956 +15360,27954 +15361,27958 +15362,27957 +15363,27959 +15364,27960 +15365,27955 +15366,17155 +15367,28026 +15368,12830 +15369,17231 +15370,27969 +15371,27974 +15372,27970 +15373,27973 +15374,17153 +15375,19008 +15376,27971 +15377,27972 +15378,14702 +15379,15412 +15380,15413 +15381,17094 +15382,23018 +15383,15415 +15384,23544 +15385,27555 +15386,27553 +15387,27655 +15388,27654 +15389,13343 +15390,27656 +15391,27660 +15392,27658 +15393,27657 +15394,32816 +15395,17190 +15396,26602 +15397,10654 +15398,28246 +15399,28149 +15400,28130 +15401,28183 +15402,28223 +15403,28243 +15404,8295 +15405,9529 +15406,28138 +15407,6660 +15408,568 +15409,7127 +15410,20914 +15411,23716 +15412,21363 +15413,26373 +15414,26374 +15415,26375 +15416,20914 +15417,21366 +15418,27412 +15419,7170 +15420,19572 +15421,26681 +15422,26378 +15423,7374 +15424,3243 +15425,28033 +15426,28031 +15427,23048 +15428,28030 +15429,28034 +15430,28035 +15431,28029 +15432,28037 +15433,28028 +15434,27616 +15435,27617 +15436,27608 +15437,26271 +15438,29013 +15439,28850 +15440,27615 +15441,27618 +15442,27610 +15443,28199 +15444,28228 +15445,28191 +15446,26381 +15447,26382 +15448,25469 +15449,16850 +15450,28147 +15451,2922 +15452,28168 +15453,28247 +15454,26383 +15455,28323 +15456,17155 +15457,26012 +15458,28192 +15459,28275 +15460,26385 +15461,26086 +15462,28286 +15463,28288 +15464,28096 +15465,28216 +15466,28269 +15467,23728 +15468,28303 +15469,28302 +15470,28290 +15471,28266 +15472,26937 +15473,26939 +15474,26938 +15475,26980 +15476,28998 +15477,26941 +15478,3931 +15479,26936 +15480,26953 +15481,26956 +15482,26952 +15483,26958 +15484,26954 +15485,26955 +15486,26959 +15487,26957 +15488,27004 +15489,27001 +15490,27006 +15491,27000 +15492,27029 +15493,26998 +15494,23750 +15495,27005 +15496,27003 +15497,27127 +15498,27541 +15499,26993 +15500,26990 +15501,26991 +15502,26994 +15503,26995 +15504,26855 +15505,26997 +15506,26970 +15507,26971 +15508,26977 +15509,26973 +15510,26969 +15511,26974 +15512,26978 +15513,26975 +15514,26972 +15515,26960 +15516,26964 +15517,24793 +15518,26961 +15519,26962 +15520,26963 +15521,26968 +15522,18775 +15523,26965 +15524,27081 +15525,27540 +15526,27082 +15527,27075 +15528,27079 +15529,27076 +15530,27084 +15531,27080 +15532,27074 +15533,27083 +15534,27037 +15535,27038 +15536,27039 +15537,27040 +15538,27041 +15539,27045 +15540,27042 +15541,27043 +15542,27044 +15543,26060 +15544,27022 +15545,27017 +15546,27018 +15547,26951 +15548,27019 +15549,27016 +15550,30091 +15551,27020 +15552,27024 +15553,27023 +15554,27068 +15555,27065 +15556,27066 +15557,27067 +15558,27073 +15559,27072 +15560,27069 +15561,27070 +15562,27071 +15563,20973 +15564,26388 +15565,27059 +15566,27058 +15567,27063 +15568,27062 +15569,27064 +15570,27060 +15571,27057 +15572,30092 +15573,27061 +15574,25872 +15575,27110 +15576,27115 +15577,27111 +15578,27112 +15579,25910 +15580,15517 +15581,27113 +15582,27114 +15583,27116 +15584,25911 +15585,28289 +15586,19495 +15587,28292 +15588,28265 +15589,27891 +15590,27895 +15591,27889 +15592,27896 +15593,27898 +15594,27108 +15595,27892 +15596,27890 +15597,27893 +15598,27894 +15599,27120 +15600,27122 +15601,27118 +15602,27124 +15603,27082 +15604,27126 +15605,27119 +15606,27117 +15607,27121 +15608,27123 +15609,27322 +15610,27324 +15611,27325 +15612,27326 +15613,27323 +15614,27328 +15615,26098 +15616,27327 +15617,26091 +15618,26099 +15619,27127 +15620,27128 +15621,27135 +15622,27129 +15623,28977 +15624,28565 +15625,31382 +15626,27132 +15627,27133 +15628,27134 +15629,27208 +15630,27215 +15631,27212 +15632,27220 +15633,27222 +15634,26330 +15635,27825 +15636,27206 +15637,27214 +15638,27218 +15639,27170 +15640,27171 +15641,27169 +15642,27173 +15643,27176 +15644,29006 +15645,27178 +15646,27174 +15647,27177 +15648,27179 +15649,27286 +15650,27290 +15651,27293 +15652,27292 +15653,27287 +15654,27285 +15655,27289 +15656,27291 +15657,27294 +15658,27301 +15659,27296 +15660,27297 +15661,27304 +15662,27299 +15663,27295 +15664,27306 +15665,27300 +15666,27302 +15667,27305 +15668,27314 +15669,27315 +15670,41846 +15671,26141 +15672,27317 +15673,27313 +15674,27318 +15675,26152 +15676,27319 +15677,27320 +15678,27312 +15679,27307 +15680,27308 +15681,26259 +15682,27309 +15683,27310 +15684,27151 +15685,27311 +15686,16079 +15687,26120 +15688,1443 +15689,26391 +15690,9860 +15691,26411 +15692,26412 +15693,28020 +15694,27288 +15695,26413 +15696,3426 +15697,26415 +15698,26419 +15699,26420 +15702,6486 +15703,26431 +15704,4841 +15705,26432 +15706,26433 +15707,26435 +15708,26436 +15709,26437 +15710,20614 +15722,21794 +15723,19873 +15724,1102 +15725,1102 +15726,1102 +15727,1102 +15728,15274 +15729,1102 +15730,1102 +15731,15274 +15732,15274 +15733,1102 +15734,1102 +15735,1102 +15736,26459 +15737,15274 +15738,1102 +15739,15274 +15740,1102 +15741,1102 +15742,1102 +15743,1102 +15744,15274 +15745,15274 +15746,15274 +15747,15274 +15748,1102 +15749,15274 +15750,26460 +15751,1102 +15752,6270 +15753,1102 +15754,1102 +15755,15274 +15756,1102 +15757,15274 +15758,1102 +15759,1102 +15760,1102 +15761,15274 +15762,1102 +15763,1102 +15764,1102 +15765,15274 +15766,22651 +15767,23740 +15768,15274 +15769,1102 +15770,1102 +15771,1102 +15772,6270 +15773,15274 +15774,1102 +15775,15274 +15776,15274 +15777,15274 +15778,26461 +15779,15274 +15780,1102 +15781,6270 +15782,26463 +15783,26464 +15784,26465 +15785,18136 +15786,26466 +15787,26467 +15788,15274 +15789,26468 +15790,8093 +15791,26470 +15792,26472 +15793,26474 +15794,12413 +15795,26473 +15796,26475 +15797,26476 +15798,7054 +15799,4841 +15800,26477 +15801,26479 +15802,17256 +15803,1246 +15804,25958 +15805,26491 +15806,26494 +15807,10671 +15808,10671 +15809,28911 +15810,26500 +15811,5636 +15812,26501 +15813,26502 +15814,26503 +15815,23042 +15822,26504 +15823,26512 +15824,26513 +15825,26514 +15826,21845 +15827,26515 +15842,8545 +15843,26531 +15844,8545 +15845,26531 +15846,18632 +15847,1317 +15848,8928 +15849,2885 +15850,26533 +15851,26534 +15852,11947 +15853,26535 +15854,26536 +15855,26537 +15856,9657 +15857,26539 +15858,26540 +15859,26541 +15860,26542 +15861,26543 +15862,26545 +15863,5205 +15864,3658 +15865,26548 +15866,26549 +15867,26551 +15868,16065 +15869,8031 +15870,22477 +15871,22071 +15872,13885 +15873,18119 +15874,16211 +15875,7856 +15876,26381 +15877,26571 +15878,4287 +15879,1769 +15880,7164 +15881,6706 +15882,26582 +15883,26583 +15884,8093 +15885,26584 +15886,1262 +15887,26921 +15888,20909 +15889,18811 +15890,26855 +15891,23825 +15892,27036 +15893,27527 +15894,18483 +15895,28449 +15902,12333 +15903,26593 +15904,26596 +15905,26592 +15906,26592 +15907,26594 +15908,26595 +15909,26597 +15910,26598 +15911,26595 +15912,28471 +15913,26595 +15914,26595 +15915,26595 +15916,26595 +15917,26595 +15918,28472 +15919,26595 +15920,26595 +15921,26595 +15922,26595 +15923,26595 +15924,22193 +15925,28462 +15926,28464 +15927,27556 +15928,28466 +15929,27558 +15930,27563 +15931,27575 +15932,28473 +15933,27851 +15934,28481 +15935,27863 +15936,28475 +15937,28455 +15938,28480 +15939,27612 +15940,28476 +15941,27650 +15942,28478 +15943,27588 +15944,28483 +15945,28488 +15946,28487 +15947,28489 +15962,28492 +15963,28491 +15964,28493 +15965,28490 +15966,27874 +15967,28486 +15968,28484 +15969,28503 +15970,28554 +15971,24014 +15972,28562 +15973,28551 +15974,5072 +15975,28514 +15976,28555 +15977,28025 +15978,28513 +15979,18289 +15980,28505 +15981,28553 +15982,28510 +15983,28516 +15984,27929 +15985,28500 +15986,20384 +15987,28501 +15988,15884 +15989,28511 +15990,27055 +15991,18775 +15992,6379 +15993,25482 +15994,26611 +15995,26616 +15996,26612 +15997,26613 +15998,3029 +15999,26614 +16000,19481 +16001,26615 +16002,26615 +16003,26615 +16004,26737 +16005,7626 +16006,26618 +16007,24721 +16008,26621 +16009,6497 +16022,60693 +16023,7913 +16024,26653 +16025,26653 +16026,28120 +16027,26658 +16028,26659 +16029,26753 +16030,26752 +16031,26662 +16032,26663 +16033,26664 +16034,26665 +16035,26668 +16036,26667 +16037,26669 +16038,26670 +16039,26674 +16040,27453 +16041,1102 +16042,1102 +16043,15274 +16044,15274 +16045,15274 +16046,1301 +16047,1301 +16048,15274 +16049,15274 +16050,1301 +16051,15274 +16052,15274 +16053,15274 +16054,15274 +16055,15274 +16056,15274 +16057,19595 +16058,26001 +16059,26683 +16060,10834 +16061,28729 +16062,28730 +16063,16601 +16064,25981 +16065,28734 +16066,14895 +16067,22415 +16068,9632 +16069,9632 +16070,9632 +16071,9632 +16072,1155 +16073,1134 +16074,9632 +16075,9632 +16076,9632 +16077,9632 +16078,9632 +16079,9632 +16080,9632 +16081,9632 +16082,1134 +16083,1155 +16084,1155 +16085,1134 +16086,7899 +16102,7899 +16103,7899 +16104,7899 +16105,7899 +16106,7899 +16107,7899 +16108,7899 +16109,9632 +16110,1301 +16111,1301 +16112,8117 +16113,8117 +16114,7867 +16115,8928 +16116,25910 +16117,16601 +16118,16719 +16119,16604 +16120,28730 +16121,15293 +16122,28729 +16123,6539 +16124,6539 +16125,6539 +16126,28730 +16127,16604 +16128,15293 +16129,14895 +16130,15293 +16131,25981 +16132,16604 +16133,15293 +16134,13670 +16135,28734 +16136,28730 +16137,16604 +16138,15293 +16139,21298 +16140,21298 +16141,30091 +16142,25861 +16143,25847 +16144,14950 +16145,28730 +16146,15293 +16147,28729 +16148,14950 +16149,25847 +16150,11956 +16151,28734 +16152,28730 +16153,16604 +16154,28729 +16155,11956 +16156,21298 +16157,14895 +16158,25861 +16159,30091 +16160,19727 +16161,19678 +16162,19727 +16163,25784 +16164,25788 +16165,26039 +16166,21473 +16167,26732 +16168,26735 +16169,26736 +16170,26734 +16171,26733 +16172,19678 +16173,9632 +16174,9632 +16175,9632 +16176,9632 +16177,9632 +16178,9632 +16179,9632 +16180,9632 +16181,9632 +16182,9632 +16183,9632 +16184,9632 +16185,9632 +16186,9632 +16187,9632 +16188,9632 +16189,3018 +16190,4045 +16191,26754 +16192,7886 +16202,26771 +16203,26772 +16204,26773 +16205,26774 +16206,26776 +16207,26775 +16208,7287 +16209,3029 +16210,11448 +16211,15897 +16212,9465 +16213,15897 +16214,7798 +16215,7798 +16216,7798 +16217,7798 +16218,7798 +16219,7798 +16220,7798 +16221,7798 +16222,7798 +16223,7798 +16224,7798 +16242,7798 +16243,7798 +16244,7798 +16245,7798 +16246,7798 +16247,7798 +16248,7798 +16249,7798 +16250,7798 +16251,7798 +16252,7798 +16253,7798 +16254,7798 +16255,7798 +16262,6349 +16263,3023 +16282,7382 +16283,1168 +16302,1246 +16303,26924 +16304,26925 +16305,7266 +16306,2376 +16307,8927 +16308,26926 +16309,26950 +16310,3023 +16311,26976 +16312,7119 +16313,27056 +16314,1236 +16315,27087 +16316,1246 +16317,1246 +16318,1246 +16319,1246 +16320,1246 +16321,1246 +16322,1246 +16323,1246 +16324,1246 +16325,1246 +16326,1246 +16327,1246 +16328,1246 +16329,1246 +16330,1246 +16331,1246 +16332,27086 +16333,7099 +16334,30797 +16335,30797 +16336,27087 +16337,27087 +16338,13108 +16339,25132 +16340,27088 +16341,27088 +16342,27087 +16343,16208 +16344,16208 +16345,31997 +16346,1246 +16347,1246 +16348,1246 +16349,1246 +16350,1246 +16351,1246 +16352,1246 +16353,1246 +16354,1246 +16355,1246 +16356,1246 +16357,1246 +16358,1246 +16359,1246 +16360,1246 +16361,1246 +16362,1246 +16363,1246 +16364,1246 +16365,1246 +16366,1246 +16367,27163 +16368,1246 +16369,31063 +16370,27165 +16371,1246 +16372,1246 +16373,1246 +16374,1246 +16375,1246 +16376,1246 +16377,1246 +16378,1246 +16379,1246 +16380,1246 +16381,1246 +16382,1246 +16383,1246 +16384,1246 +16385,1246 +16386,1246 +16387,1246 +16388,1246 +16389,1246 +16390,1246 +16391,31064 +16392,31068 +16393,31070 +16394,27204 +16395,27204 +16396,31075 +16397,31071 +16398,27209 +16399,27209 +16400,27211 +16401,31244 +16402,27217 +16403,31245 +16404,27223 +16405,26752 +16406,31086 +16407,27226 +16408,27227 +16409,31082 +16410,30321 +16411,27226 +16412,27223 +16413,31057 +16414,27230 +16415,27231 +16416,27232 +16417,31072 +16418,31077 +16419,31073 +16420,31076 +16421,31074 +16422,27235 +16423,27236 +16424,27234 +16425,31241 +16426,31242 +16427,31247 +16428,31246 +16429,28934 +16430,31083 +16431,26659 +16432,26662 +16433,30315 +16434,30316 +16435,31084 +16436,31085 +16437,33009 +16438,30338 +16439,30340 +16440,32988 +16441,32978 +16442,28715 +16443,32981 +16444,33004 +16445,30331 +16446,30333 +16447,30332 +16448,30334 +16449,30328 +16450,30329 +16451,30330 +16452,30327 +16453,30327 +16454,30334 +16455,30330 +16456,30329 +16457,30328 +16458,30332 +16459,30333 +16460,30331 +16461,30324 +16462,32095 +16463,32098 +16464,30325 +16465,32093 +16466,32094 +16467,32097 +16468,32092 +16469,30320 +16470,30322 +16471,30321 +16472,30319 +16473,30315 +16474,30316 +16475,30317 +16476,30318 +16477,30315 +16478,38343 +16479,30317 +16480,30318 +16481,30320 +16482,30322 +16483,30319 +16484,30321 +16485,31097 +16486,27255 +16487,31098 +16488,27257 +16489,31099 +16490,26144 +16491,31102 +16492,31100 +16493,27262 +16494,27263 +16495,27264 +16496,27265 +16497,30801 +16498,31035 +16499,31036 +16500,27264 +16501,28935 +16502,27267 +16503,28106 +16504,31037 +16505,31039 +16506,30358 +16507,31038 +16508,31040 +16509,31050 +16510,31051 +16511,27272 +16512,27273 +16513,27274 +16514,30071 +16515,31052 +16516,31049 +16517,27277 +16518,31183 +16519,27279 +16520,27280 +16521,30072 +16522,31185 +16523,31186 +16524,30382 +16525,31048 +16526,31184 +16527,30367 +16528,31047 +16529,27280 +16530,31182 +16531,31181 +16532,27277 +16533,32999 +16534,32998 +16535,33085 +16536,33089 +16537,30346 +16538,30345 +16539,32996 +16540,32997 +16541,30373 +16542,30374 +16543,30375 +16544,30928 +16545,30370 +16546,30369 +16547,30372 +16548,30371 +16549,32110 +16550,32134 +16551,32129 +16552,32108 +16553,30353 +16554,32106 +16555,32107 +16556,30354 +16557,30354 +16558,32114 +16559,30353 +16560,32113 +16561,32132 +16562,32131 +16563,32115 +16564,32112 +16565,32122 +16566,32135 +16567,32120 +16568,32125 +16569,32124 +16570,30362 +16571,32119 +16572,30364 +16573,32126 +16574,32100 +16575,30364 +16576,30362 +16577,32103 +16578,32133 +16579,32127 +16580,32128 +16581,6688 +16582,27451 +16583,27454 +16602,27471 +16603,6689 +16604,27472 +16605,27473 +16606,27477 +16607,27479 +16608,16947 +16622,27492 +16623,9857 +16642,7596 +16643,7596 +16644,7596 +16645,7629 +16646,7629 +16647,7629 +16648,7629 +16649,7629 +16650,7629 +16651,7629 +16652,7629 +16653,7629 +16654,7629 +16655,7629 +16656,7629 +16657,7629 +16658,27514 +16659,28270 +16660,27517 +16661,27521 +16662,22652 +16663,16325 +16664,26289 +16665,1317 +16666,31416 +16667,45174 +16668,31415 +16669,30925 +16670,31412 +16671,31411 +16672,31414 +16673,31413 +16674,31402 +16675,31408 +16676,31406 +16677,31410 +16678,31403 +16679,31409 +16680,31404 +16681,31405 +16682,29594 +16683,29597 +16684,29593 +16685,29596 +16686,31087 +16687,29273 +16688,29591 +16689,30211 +16690,30422 +16691,30430 +16692,30427 +16693,31104 +16694,30424 +16695,31103 +16696,30425 +16697,30426 +16698,31263 +16699,29797 +16700,29792 +16701,29798 +16702,29793 +16703,29795 +16704,29799 +16705,29800 +16706,29974 +16707,28180 +16708,28179 +16709,28161 +16710,24190 +16711,28162 +16712,28166 +16713,28177 +16714,29977 +16715,29981 +16716,29976 +16717,29979 +16718,30412 +16719,29975 +16720,31228 +16721,28160 +16722,29968 +16723,29966 +16724,29970 +16725,29967 +16726,29969 +16727,31207 +16728,29972 +16729,29971 +16730,29958 +16731,42241 +16732,29963 +16733,29964 +16734,29960 +16735,29961 +16736,29959 +16737,29962 +16738,27910 +16739,27911 +16740,27912 +16741,27913 +16742,27953 +16743,10301 +16744,15773 +16745,11449 +16746,15274 +16747,7842 +16748,7418 +16762,24037 +16763,3023 +16764,3023 +16765,3023 +16766,24733 +16767,1102 +16768,28187 +16769,28194 +16782,27227 +16783,1093 +16784,6614 +16785,18010 +16786,1504 +16787,28261 +16788,28407 +16789,28408 +16790,24153 +16791,26168 +16792,6794 +16793,28454 +16794,23729 +16795,31517 +16796,30582 +16797,30586 +16798,30581 +16799,30584 +16800,30587 +16801,30585 +16802,30583 +16803,31975 +16804,31970 +16805,31971 +16806,31969 +16807,31974 +16808,31987 +16809,31973 +16810,31972 +16811,31718 +16812,30620 +16813,31371 +16814,28198 +16815,31490 +16816,30623 +16817,30621 +16818,34046 +16819,30617 +16820,31105 +16821,31514 +16822,31340 +16823,31504 +16824,31109 +16825,31106 +16826,31503 +16827,31339 +16828,31722 +16829,31724 +16830,31725 +16831,31726 +16832,33653 +16833,31797 +16834,32790 +16835,31729 +16836,32016 +16837,31830 +16838,31829 +16839,31834 +16840,31831 +16841,31832 +16842,31835 +16843,31836 +16844,31833 +16845,32022 +16846,32028 +16847,32029 +16848,32030 +16849,32040 +16850,32021 +16851,32019 +16852,32024 +16853,31505 +16854,31506 +16855,31352 +16856,31510 +16857,31509 +16858,31353 +16859,31354 +16860,31507 +16861,31020 +16862,31025 +16863,31022 +16864,31019 +16865,31021 +16866,41847 +16867,31023 +16868,31024 +16869,28497 +16870,28497 +16871,28497 +16872,28497 +16873,28522 +16882,15692 +16883,15692 +16884,15590 +16885,15590 +16886,28586 +16887,28588 +16888,26584 +16889,28592 +16890,28593 +16891,28608 +16892,6009 +16893,6009 +16894,28610 +16895,6009 +16896,6009 +16897,30536 +16898,30542 +16899,34016 +16900,33655 +16901,30540 +16902,30546 +16903,30541 +16904,30548 +16905,33650 +16906,31111 +16907,33651 +16908,33743 +16909,31115 +16910,31110 +16911,31127 +16912,34044 +16913,34041 +16914,34218 +16915,34039 +16916,34038 +16917,34254 +16918,34045 +16919,34055 +16920,34051 +16921,34233 +16922,34049 +16923,34047 +16924,34048 +16925,34053 +16926,34052 +16927,34015 +16928,34013 +16929,34369 +16930,29857 +16931,34014 +16932,34022 +16933,34011 +16934,34012 +16935,33666 +16936,33665 +16937,34091 +16938,33672 +16939,34367 +16940,33668 +16941,34269 +16942,33667 +16943,34079 +16944,34078 +16945,34255 +16946,34084 +16947,34217 +16948,34082 +16949,34083 +16950,34081 +16951,33634 +16952,33633 +16953,34258 +16954,33637 +16955,45888 +16956,33636 +16957,33639 +16958,33635 +16959,33982 +16960,33990 +16961,34253 +16962,33986 +16963,34215 +16964,33984 +16965,33989 +16966,33983 +16967,24715 +16968,24702 +16969,18535 +16970,28622 +16971,16211 +16972,6748 +16973,17898 +16974,28732 +16975,28746 +16976,10365 +16977,28749 +16978,28750 +16979,28754 +16980,28756 +16981,16664 +16982,28770 +16983,28856 +16984,28760 +16985,26026 +16986,28288 +16987,28767 +16988,28773 +16989,28774 +16990,28775 +16991,25147 +16992,28786 +16993,28818 +16994,28822 +16995,28823 +16996,28827 +16997,28828 +16998,28829 +16999,28830 +17000,24022 +17001,28831 +17002,28834 +17003,28835 +17004,28836 +17005,28837 +17006,26995 +17007,28838 +17008,1301 +17009,14023 +17010,28840 +17011,28841 +17012,28842 +17013,28843 +17014,28844 +17015,28848 +17016,23276 +17017,1102 +17018,1102 +17019,13123 +17020,7414 +17021,29165 +17022,1102 +17023,1102 +17024,28857 +17025,1102 +17026,7406 +17027,28859 +17028,28860 +17029,28861 +17030,18725 +17031,20984 +17032,28862 +17033,28863 +17034,7287 +17035,7287 +17036,7287 +17037,7287 +17038,7287 +17039,28869 +17040,28866 +17041,28867 +17042,28870 +17043,28871 +17044,23716 +17045,28682 +17046,28873 +17047,12473 +17048,18119 +17049,6270 +17050,28990 +17051,6270 +17052,6270 +17053,6270 +17054,28876 +17055,15887 +17056,28877 +17057,28878 +17058,15773 +17059,6270 +17060,6270 +17061,28891 +17062,1102 +17063,9840 +17064,26374 +17065,4841 +17066,34110 +17067,29717 +17068,29161 +17069,30927 +17070,29706 +17071,34111 +17072,29163 +17073,32162 +17074,29176 +17075,32197 +17076,32199 +17077,29195 +17078,29719 +17082,29722 +17102,29824 +17103,29677 +17104,32200 +17105,34109 +17106,29702 +17107,29827 +17108,23728 +17109,9858 +17110,29697 +17111,6484 +17112,29171 +17113,29703 +17114,20784 +17115,9649 +17116,9649 +17117,2618 +17118,28999 +17119,29036 +17122,29050 +17123,29066 +17124,17655 +17125,8918 +17126,7726 +17142,29097 +17162,2760 +17163,29131 +17182,29698 +17183,2208 +17184,18480 +17185,18509 +17186,18506 +17187,27782 +17188,18468 +17189,18477 +17190,18516 +17191,57734 +17192,2324 +17193,29699 +17194,29164 +17195,29165 +17196,18079 +17197,29166 +17198,29172 +17199,29173 +17200,811 +17201,811 +17202,29169 +17203,29174 +17204,29175 +17222,38257 +17223,29191 +17224,7365 +17242,13290 +17262,13290 +17282,29276 +17283,6249 +17302,29444 +17303,29442 +17304,29440 +17305,29441 +17306,15711 +17307,29443 +17308,29445 +17309,29311 +17310,21672 +17322,24730 +17323,29312 +17324,29312 +17325,29312 +17326,22024 +17327,25475 +17328,25467 +17329,29315 +17330,29314 +17331,29317 +17332,29316 +17333,21672 +17342,1121 +17343,15897 +17344,29331 +17345,6703 +17346,29351 +17347,23475 +17348,15771 +17349,29352 +17350,15717 +17351,29353 +17352,29354 +17353,1096 +17354,29355 +17355,3093 +17362,29312 +17363,29312 +17364,7365 +17382,29397 +17383,29408 +17384,23475 +17402,18117 +17403,18080 +17404,19873 +17405,18091 +17406,6425 +17407,1041 +17408,25469 +17409,29450 +17410,23475 +17411,29451 +17412,1143 +17413,1143 +17414,1143 +17422,29468 +17423,26571 +17442,1096 +17462,29495 +17463,29496 +17482,29550 +17502,9310 +17503,19462 +17504,29571 +17505,29312 +17506,29312 +17507,29312 +17508,4405 +17522,11449 +17523,29630 +17542,7913 +17562,31059 +17563,27165 +17564,31060 +17565,27163 +17566,30341 +17567,30385 +17568,31053 +17569,31066 +17570,27258 +17571,31032 +17572,27260 +17573,30381 +17574,27257 +17575,27255 +17576,31026 +17577,27256 +17578,32979 +17579,33007 +17580,33002 +17581,33001 +17582,30338 +17583,33006 +17584,32995 +17585,30340 +17586,33076 +17587,30345 +17588,33077 +17589,30346 +17590,33088 +17591,33071 +17592,33079 +17593,30380 +17594,31061 +17595,27165 +17596,31062 +17597,27163 +17598,31065 +17599,25198 +17600,31058 +17601,31067 +17602,32980 +17603,32991 +17604,33005 +17605,32984 +17606,30338 +17607,32992 +17608,32990 +17609,30340 +17610,31030 +17611,31033 +17612,30351 +17613,31031 +17614,27257 +17615,27255 +17616,31027 +17617,31028 +17618,33080 +17619,30345 +17620,33081 +17621,30346 +17622,33083 +17623,33082 +17624,33084 +17625,26021 +17626,29653 +17642,29671 +17643,29671 +17662,8928 +17682,1317 +17683,1317 +17684,29731 +17685,29692 +17686,20555 +17687,8095 +17688,29693 +17689,10301 +17690,31475 +17691,31480 +17692,4284 +17693,22429 +17694,4284 +17695,16572 +17696,45599 +17702,29948 +17703,29691 +17704,29759 +17705,29769 +17706,15274 +17707,29842 +17708,4136 +17709,1301 +17710,29872 +17711,29880 +17712,29903 +17713,23629 +17714,29890 +17715,29894 +17716,29895 +17717,4427 +17718,29896 +17719,29897 +17720,15274 +17721,29898 +17722,1102 +17723,29901 +17724,1102 +17725,11431 +17726,29902 +17727,24053 +17728,30172 +17729,29906 +17730,29907 +17731,3331 +17732,29908 +17733,29910 +17734,29911 +17735,1103 +17736,29912 +17737,29914 +17738,29915 +17739,29916 +17740,29941 +17741,29918 +17742,29919 +17743,22391 +17744,29922 +17745,29924 +17746,29925 +17747,6624 +17748,29927 +17749,29928 +17750,29929 +17751,29930 +17752,29931 +17753,29932 +17754,29934 +17755,14456 +17756,6688 +17757,13024 +17758,29935 +17759,23717 +17760,19492 +17761,4777 +17762,6851 +17763,18707 +17764,1659 +17765,6496 +17766,29939 +17767,29942 +17768,23608 +17769,29944 +17770,30957 +17771,29946 +17772,15420 +17773,15420 +17774,29947 +17775,29951 +17776,29952 +17777,29953 +17778,29954 +17779,29955 +17780,29957 +17781,7798 +17782,6494 +17783,6494 +17802,30606 +17822,1322 +17823,7629 +17824,9632 +17825,9632 +17826,9632 +17827,7899 +17828,7899 +17829,7899 +17830,7899 +17831,9632 +17832,9632 +17833,9632 +17834,9632 +17835,9632 +17836,9632 +17837,9632 +17838,9632 +17839,9632 +17840,9632 +17841,9632 +17842,9632 +17843,9632 +17844,9632 +17845,9632 +17846,9632 +17847,9632 +17848,9632 +17849,23520 +17850,6748 +17851,9632 +17852,9632 +17853,9632 +17854,9632 +17855,9632 +17856,9632 +17857,9632 +17858,9632 +17859,9632 +17860,9632 +17861,9632 +17862,9632 +17882,7899 +17883,7899 +17884,7899 +17885,7899 +17886,7899 +17887,7899 +17888,7899 +17889,7899 +17890,7899 +17891,7899 +17892,7899 +17893,7899 +17894,7899 +17895,7899 +17896,7899 +17897,7899 +17898,7899 +17899,7899 +17900,31480 +17901,31481 +17902,31482 +17903,31483 +17904,31484 +17905,31475 +17906,31476 +17907,31477 +17908,31478 +17909,31479 +17910,9632 +17911,9632 +17922,30171 +17942,30255 +17943,29910 +17962,2588 +17963,3568 +17964,1282 +17965,1168 +17966,30271 +17967,20914 +17968,20914 +17969,4056 +17982,28682 +18002,30294 +18022,28830 +18023,4006 +18042,62289 +18043,2373 +18044,30436 +18045,30437 +18046,1301 +18047,30439 +18048,30440 +18062,30455 +18063,24011 +18082,30472 +18083,30474 +18102,14617 +18103,24022 +18104,30492 +18105,30494 +18106,12206 +18122,30516 +18123,30517 +18142,19540 +18143,30532 +18144,13806 +18145,23358 +18146,30533 +18147,3422 +18148,7741 +18149,24572 +18150,20220 +18151,8547 +18152,8547 +18153,30534 +18154,30658 +18155,30534 +18156,30534 +18157,30534 +18158,30534 +18159,30534 +18160,1102 +18161,9992 +18162,9992 +18163,9992 +18164,9992 +18165,9992 +18166,30559 +18167,16539 +18168,41067 +18169,30562 +18170,30563 +18171,30564 +18172,30565 +18173,30566 +18182,30567 +18202,30594 +18203,30595 +18204,30577 +18205,16132 +18206,6349 +18207,30593 +18208,15273 +18209,26618 +18222,30600 +18223,30601 +18224,6501 +18225,30602 +18226,18010 +18227,20628 +18228,30603 +18229,12547 +18230,12410 +18231,30605 +18232,19503 +18233,18170 +18234,24154 +18235,1301 +18236,13433 +18237,21368 +18238,15753 +18239,1102 +18240,292 +18241,30608 +18242,17606 +18243,59463 +18244,17343 +18245,16208 +18246,17494 +18247,29447 +18248,17786 +18249,20802 +18250,22071 +18251,30647 +18252,6270 +18253,37846 +18254,26733 +18255,21974 +18256,51757 +18257,6270 +18258,30611 +18259,7798 +18260,7798 +18261,1103 +18262,21072 +18263,27972 +18264,6270 +18265,6270 +18266,7737 +18267,1301 +18268,3118 +18269,18119 +18282,31210 +18283,7326 +18284,18115 +18285,2516 +18286,30634 +18287,18080 +18288,7921 +18289,9860 +18290,6270 +18291,6270 +18292,6270 +18293,30638 +18294,3665 +18295,30639 +18296,30643 +18297,30650 +18298,30654 +18299,17889 +18300,21845 +18301,30660 +18302,30661 +18303,4403 +18304,30663 +18305,30671 +18306,30669 +18307,30667 +18308,30670 +18309,30672 +18310,30673 +18311,28511 +18312,30675 +18313,41372 +18314,24646 +18315,28812 +18316,24122 +18317,9853 +18318,30679 +18319,30680 +18320,30681 +18321,30915 +18322,6779 +18323,30683 +18324,13360 +18325,30685 +18326,30686 +18327,30688 +18328,30689 +18329,30690 +18330,30690 +18331,30690 +18332,12547 +18333,6672 +18334,1317 +18335,30690 +18336,30691 +18337,30693 +18338,21016 +18339,30703 +18340,30696 +18341,30697 +18342,7559 +18343,9836 +18344,25706 +18345,9840 +18346,30698 +18347,30699 +18348,52784 +18349,30702 +18350,15217 +18351,30704 +18352,30706 +18353,30711 +18354,1399 +18355,15420 +18356,1246 +18357,1103 +18358,7139 +18359,1317 +18360,8093 +18361,12547 +18362,1155 +18363,6672 +18364,1134 +18365,5780 +18366,30721 +18367,30720 +18368,30719 +18369,16710 +18370,30722 +18371,30723 +18372,30724 +18373,17099 +18374,18971 +18375,30727 +18376,30728 +18377,30729 +18378,30730 +18379,30736 +18380,30737 +18381,30738 +18382,30739 +18383,30740 +18384,30743 +18385,30744 +18386,21964 +18387,13656 +18388,30747 +18389,15247 +18390,18935 +18391,30749 +18392,6443 +18393,30751 +18394,30753 +18395,9842 +18396,30754 +18397,9859 +18398,9832 +18399,28812 +18400,26001 +18401,1317 +18402,29697 +18403,26391 +18404,9860 +18405,30763 +18406,30764 +18407,17216 +18408,30772 +18409,30774 +18410,30778 +18411,31732 +18412,30780 +18413,30783 +18414,1096 +18415,6270 +18416,6270 +18417,6270 +18418,6270 +18419,30791 +18420,30792 +18421,42211 +18422,28496 +18423,28496 +18424,30795 +18425,30796 +18426,18597 +18427,27088 +18428,30797 +18429,27273 +18430,27273 +18431,27273 +18432,27277 +18433,27277 +18434,27262 +18435,30801 +18436,27262 +18437,27255 +18438,23521 +18439,27088 +18440,27087 +18441,27087 +18442,30799 +18443,30799 +18444,30799 +18445,27223 +18446,27223 +18447,27223 +18448,31248 +18449,31248 +18450,30802 +18451,30803 +18452,30804 +18453,30804 +18454,30805 +18455,30805 +18456,30806 +18457,30806 +18458,26103 +18459,30807 +18460,30809 +18461,27088 +18462,30813 +18463,30814 +18464,9849 +18465,29712 +18466,29712 +18467,29712 +18468,29712 +18469,29712 +18470,29712 +18471,29712 +18472,29712 +18473,29712 +18474,1246 +18475,15399 +18476,30817 +18477,17142 +18478,30819 +18479,30820 +18480,30821 +18481,5233 +18482,8106 +18483,25076 +18484,30822 +18485,20900 +18486,30824 +18487,1102 +18488,6511 +18489,20797 +18490,33293 +18491,30827 +18492,30828 +18493,30829 +18494,30830 +18495,30831 +18496,30832 +18497,30833 +18498,30834 +18499,30835 +18500,9823 +18501,21472 +18502,30836 +18503,30837 +18504,30839 +18505,30838 +18506,9080 +18507,19921 +18508,30848 +18509,30849 +18510,30850 +18511,30851 +18512,30852 +18513,20797 +18514,6270 +18515,6270 +18516,6270 +18517,1096 +18518,1096 +18519,1096 +18520,30853 +18521,30854 +18522,23897 +18523,30855 +18524,30857 +18525,30859 +18526,30860 +18527,30862 +18528,30864 +18529,30865 +18530,30866 +18531,30867 +18532,30868 +18533,30869 +18534,30870 +18535,30872 +18536,30875 +18537,21072 +18538,30881 +18539,18721 +18540,18721 +18541,30882 +18542,30886 +18543,30661 +18544,30893 +18545,24615 +18546,30889 +18547,30894 +18562,24673 +18563,30912 +18564,30912 +18565,20784 +18566,30913 +18567,30916 +18582,30936 +18583,30934 +18584,30935 +18585,9839 +18586,9823 +18587,31203 +18588,18063 +18589,20872 +18590,15788 +18591,30952 +18592,1102 +18593,30953 +18594,30999 +18595,7050 +18596,30956 +18597,30959 +18598,30959 +18599,36684 +18600,1103 +18601,6689 +18602,30875 +18603,3663 +18604,6688 +18605,6689 +18606,31256 +18607,31257 +18608,31347 +18609,31346 +18610,5139 +18611,9975 +18612,6845 +18622,21072 +18623,21072 +18624,21072 +18625,8560 +18626,20874 +18627,31168 +18628,30953 +18629,19239 +18630,31170 +18631,30995 +18632,16837 +18633,30996 +18634,31199 +18635,30997 +18636,7064 +18637,31204 +18638,31198 +18639,31200 +18640,46245 +18641,18062 +18642,8927 +18643,7629 +18644,31016 +18645,36529 +18646,31029 +18647,1301 +18648,1301 +18649,1301 +18650,1102 +18651,1102 +18652,1301 +18653,15274 +18654,15274 +18655,15274 +18656,1301 +18657,15274 +18658,15274 +18659,31034 +18660,31205 +18661,15274 +18662,34892 +18663,7155 +18664,31095 +18665,31096 +18666,7899 +18667,7899 +18668,7899 +18669,7899 +18670,2616 +18671,31119 +18672,31120 +18673,31121 +18674,9836 +18675,4742 +18676,31122 +18677,15148 +18678,9853 +18679,28831 +18680,30926 +18681,10177 +18682,10006 +18683,31126 +18684,9840 +18685,16325 +18686,31130 +18687,13123 +18688,7155 +18689,31131 +18690,25226 +18691,15420 +18692,31133 +18693,31136 +18694,7002 +18695,31138 +18696,18790 +18697,31139 +18698,21958 +18699,31142 +18700,27048 +18701,28733 +18702,31143 +18703,31144 +18704,31145 +18705,31146 +18706,31147 +18707,31148 +18708,31150 +18709,36935 +18710,31159 +18711,31160 +18712,31161 +18713,31338 +18714,31162 +18715,31163 +18716,31166 +18717,23239 +18718,31167 +18719,3422 +18720,13672 +18721,31171 +18722,31173 +18723,6539 +18724,31146 +18725,31174 +18726,31175 +18727,31177 +18728,9657 +18729,31240 +18730,31180 +18731,1301 +18732,25992 +18733,25990 +18734,31351 +18735,31188 +18736,16133 +18737,31189 +18738,31239 +18739,31191 +18740,31192 +18741,31193 +18742,31194 +18743,15163 +18744,31196 +18745,2311 +18746,31208 +18747,27231 +18748,3233 +18749,1695 +18750,18072 +18751,6349 +18752,31211 +18753,31212 +18754,31213 +18755,31237 +18756,31216 +18757,31217 +18758,20574 +18759,31219 +18760,9839 +18761,31677 +18762,31223 +18763,31224 +18764,31225 +18765,31226 +18766,17608 +18767,17608 +18768,17608 +18769,7139 +18770,7139 +18771,7139 +18772,17785 +18773,17785 +18774,17785 +18775,7087 +18776,25132 +18777,25132 +18778,25132 +18779,24153 +18780,24153 +18781,31238 +18782,31238 +18783,8628 +18784,8628 +18785,17343 +18786,17343 +18787,17343 +18788,17494 +18789,17494 +18790,17494 +18791,17786 +18792,31350 +18793,29448 +18794,29447 +18795,29448 +18796,16208 +18797,16207 +18798,16207 +18799,6014 +18800,31258 +18801,31250 +18802,16325 +18803,31265 +18804,6430 +18805,33626 +18806,31271 +18807,37667 +18808,31276 +18809,31278 +18810,16526 +18811,24159 +18812,31280 +18813,9823 +18814,1399 +18815,31282 +18816,33615 +18817,31286 +18818,8093 +18819,31211 +18820,31287 +18821,9835 +18822,34112 +18823,31290 +18824,31295 +18825,31733 +18826,31746 +18827,31956 +18828,31957 +18829,31468 +18830,31302 +18831,31958 +18832,31309 +18833,31759 +18834,37841 +18835,31748 +18836,31757 +18837,31749 +18838,31379 +18839,29352 +18840,31381 +18841,29354 +18842,34114 +18843,32033 +18844,31754 +18845,37841 +18846,37841 +18847,32032 +18848,31752 +18849,37841 +18850,37841 +18851,37841 +18852,37841 +18853,37841 +18854,37840 +18855,31758 +18856,37840 +18857,37840 +18858,37840 +18859,37840 +18860,31747 +18861,31320 +18862,37840 +18863,37840 +18864,37840 +18865,31955 +18866,31751 +18867,31954 +18868,31750 +18869,31761 +18870,31327 +18871,31766 +18872,31331 +18873,31764 +18874,31765 +18875,31333 +18876,31996 +18877,31998 +18878,31337 +18879,9836 +18880,14023 +18881,29698 +18882,29170 +18902,17608 +18903,20625 +18904,20625 +18922,7956 +18942,31376 +18943,7718 +18944,23436 +18945,20614 +18946,3920 +18947,6683 +18948,31385 +18949,1102 +18950,31386 +18951,31387 +18952,7235 +18953,31388 +18954,31388 +18955,31388 +18956,31391 +18957,31400 +18958,18021 +18959,31401 +18960,19478 +18961,29351 +18962,1438 +18963,18051 +18964,18048 +18965,18051 +18966,18051 +18967,18048 +18968,9836 +18969,7347 +18970,26537 +18971,9837 +18972,7347 +18982,9840 +18983,31419 +18984,41640 +18985,31424 +18986,40162 +18987,16161 +19002,31434 +19003,31434 +19004,8026 +19005,8026 +19006,8026 +19007,8026 +19008,8026 +19009,8026 +19010,8026 +19011,8026 +19012,8026 +19013,8026 +19014,22893 +19015,5027 +19016,20784 +19017,30913 +19018,20872 +19019,30606 +19020,1301 +19022,20619 +19023,18098 +19024,31499 +19025,31500 +19026,18070 +19027,1102 +19028,15966 +19029,31511 +19030,17343 +19031,31527 +19032,31528 +19033,31515 +19034,31516 +19035,12333 +19036,31521 +19037,31523 +19038,224 +19039,31675 +19040,31526 +19041,31529 +19042,31531 +19043,31532 +19044,34506 +19045,31256 +19046,31257 +19047,31534 +19048,31538 +19049,34505 +19050,36269 +19051,31565 +19052,34504 +19053,31553 +19054,27454 +19055,6564 +19056,31557 +19057,31564 +19058,50077 +19059,31828 +19060,21203 +19061,6344 +19062,6413 +19063,21203 +19064,22477 +19065,31576 +19066,25147 +19067,17458 +19068,11926 +19069,7741 +19070,3233 +19071,31577 +19082,23211 +19083,26468 +19084,27197 +19085,31592 +19086,15042 +19087,31598 +19088,31599 +19089,30839 +19090,14686 +19091,31597 +19092,31600 +19093,31601 +19094,31602 +19095,31603 +19096,9859 +19097,31604 +19098,9857 +19099,31605 +19100,31606 +19101,31608 +19102,31610 +19103,31611 +19104,31612 +19105,33462 +19106,31613 +19107,32146 +19108,15238 +19109,31616 +19110,31617 +19111,31618 +19112,31619 +19113,31620 +19114,31622 +19115,31623 +19116,31625 +19117,31626 +19118,31628 +19119,31630 +19120,31631 +19121,31632 +19122,31633 +19123,31634 +19124,31635 +19125,27137 +19126,31638 +19127,31639 +19128,31641 +19129,31644 +19130,31645 +19131,31649 +19132,31650 +19133,31651 +19134,31652 +19135,14618 +19136,31653 +19137,31654 +19138,31655 +19139,27664 +19140,31657 +19141,7418 +19142,23321 +19143,31660 +19144,31662 +19145,31663 +19146,6763 +19147,31664 +19148,31671 +19149,31672 +19150,26420 +19151,26420 +19152,26420 +19153,7242 +19154,7242 +19155,7242 +19156,31673 +19157,31680 +19158,29698 +19159,31633 +19160,31676 +19162,31681 +19163,31682 +19164,31683 +19165,31685 +19166,31686 +19167,31720 +19168,31692 +19169,31735 +19170,31822 +19182,31745 +19183,2596 +19184,31721 +19185,31721 +19186,31721 +19187,31721 +19188,31721 +19189,31721 +19190,31721 +19191,31721 +19192,31721 +19193,31721 +19194,31721 +19195,31721 +19196,31721 +19197,31721 +19198,31721 +19199,31721 +19200,31721 +19201,31721 +19202,1301 +19203,1301 +19204,1301 +19205,1301 +19206,1301 +19207,1301 +19208,1301 +19209,1301 +19210,1301 +19211,1301 +19212,1301 +19213,23714 +19214,31740 +19215,1301 +19216,1301 +19217,1301 +19218,1301 +19219,1301 +19220,1301 +19221,18119 +19222,18102 +19223,31742 +19224,22200 +19225,15964 +19226,6592 +19227,31756 +19228,31755 +19229,3331 +19230,31756 +19231,31756 +19232,31756 +19233,31756 +19234,31756 +19235,31756 +19236,31756 +19237,3331 +19238,3331 +19239,3331 +19240,3331 +19241,3331 +19242,3331 +19243,3331 +19244,3331 +19245,3331 +19246,3331 +19247,3331 +19248,3331 +19249,3331 +19250,3331 +19251,3331 +19252,3331 +19253,3331 +19254,3331 +19255,3331 +19256,3331 +19257,31755 +19258,31760 +19259,31760 +19260,31760 +19261,31760 +19262,31760 +19263,31760 +19264,31760 +19265,31760 +19266,3331 +19267,31755 +19268,31762 +19269,31762 +19270,31762 +19271,31762 +19272,31762 +19273,31762 +19274,31762 +19275,31762 +19276,31767 +19277,31755 +19278,31767 +19279,31767 +19280,31767 +19281,31767 +19282,31767 +19283,31767 +19284,31767 +19285,8127 +19286,26613 +19287,31768 +19288,31769 +19289,31770 +19290,31771 +19291,17329 +19292,31777 +19293,7462 +19294,6479 +19295,31779 +19296,31783 +19297,1283 +19298,8270 +19299,18115 +19300,21794 +19301,21203 +19302,31800 +19303,9657 +19304,31803 +19305,31802 +19306,31804 +19307,25147 +19308,31805 +19309,24039 +19310,31806 +19311,23322 +19312,31807 +19313,31808 +19314,31808 +19315,31809 +19316,31814 +19317,31813 +19318,18080 +19319,21712 +19320,1816 +19321,31815 +19322,20219 +19323,31817 +19324,31820 +19325,31616 +19326,1102 +19327,1102 +19328,1102 +19329,1102 +19330,1102 +19331,1102 +19332,1102 +19333,1102 +19334,31999 +19335,31862 +19336,31838 +19337,31848 +19338,7798 +19339,31840 +19340,31841 +19341,31843 +19342,31846 +19343,31847 +19344,31845 +19345,31844 +19346,31864 +19347,31865 +19348,31851 +19349,31852 +19350,32080 +19351,31866 +19352,31867 +19353,31857 +19354,31858 +19355,31964 +19356,31960 +19357,31878 +19358,31877 +19359,31861 +19360,31863 +19361,32763 +19362,31869 +19363,31870 +19364,32000 +19365,31880 +19366,31953 +19367,32774 +19368,31876 +19369,31888 +19370,18865 +19371,31889 +19372,32493 +19373,31194 +19374,31892 +19375,31898 +19376,31498 +19377,31899 +19378,28891 +19379,31901 +19380,31902 +19381,31904 +19382,31906 +19383,31907 +19384,31908 +19385,31911 +19386,31912 +19387,31914 +19388,31915 +19389,32082 +19390,31919 +19391,31921 +19392,31924 +19393,31925 +19394,31926 +19395,20978 +19396,31927 +19397,31905 +19398,23422 +19399,31930 +19400,31931 +19401,31932 +19402,31933 +19403,31800 +19404,31935 +19405,31934 +19406,31936 +19407,18858 +19422,31961 +19423,3331 +19424,3331 +19425,18721 +19426,31603 +19427,31808 +19428,31808 +19429,26420 +19430,16879 +19431,31967 +19432,31576 +19433,31968 +19434,28733 +19435,31977 +19436,31978 +19437,31982 +19438,31985 +19439,31986 +19440,21845 +19441,5287 +19442,1301 +19443,3331 +19444,7798 +19445,7798 +19446,7798 +19447,7798 +19448,7798 +19449,7798 +19450,18173 +19451,3331 +19452,3331 +19453,3331 +19454,3331 +19455,31721 +19456,31808 +19457,31808 +19462,18051 +19482,31995 +19483,1103 +19484,6672 +19485,10814 +19486,10815 +19487,10816 +19488,10817 +19489,31239 +19490,30926 +19491,32008 +19502,31808 +19503,31808 +19504,31808 +19505,32031 +19506,32026 +19507,32034 +19508,32036 +19509,32038 +19510,29697 +19511,29697 +19512,29697 +19513,29697 +19514,9832 +19515,9832 +19516,9832 +19517,9832 +19518,30661 +19519,30661 +19520,30661 +19521,30661 +19522,28812 +19523,28812 +19524,28812 +19525,28812 +19526,32066 +19527,32069 +19528,32070 +19529,28042 +19530,32067 +19531,32068 +19532,32071 +19533,32072 +19534,32008 +19535,32008 +19536,32008 +19537,32008 +19538,32073 +19539,32073 +19540,32073 +19541,32073 +19542,32074 +19543,32074 +19544,32074 +19545,32074 +19546,32075 +19547,32075 +19548,32075 +19549,32075 +19550,32076 +19551,32076 +19552,32076 +19553,32076 +19554,32077 +19555,32077 +19556,32077 +19557,32077 +19558,32079 +19559,32079 +19560,32079 +19561,32079 +19562,32081 +19563,32081 +19564,32081 +19565,32081 +19566,20330 +19567,20330 +19568,20330 +19569,20330 +19570,18289 +19571,18289 +19572,18289 +19573,18289 +19574,32713 +19575,32714 +19576,32715 +19577,32716 +19578,32088 +19579,32713 +19580,32088 +19581,32088 +19582,32089 +19583,32089 +19584,32089 +19585,32714 +19586,32715 +19587,32090 +19588,32716 +19589,32090 +19590,32090 +19591,32713 +19592,32714 +19593,32715 +19594,32716 +19595,32091 +19596,32091 +19597,32091 +19598,32713 +19599,32714 +19600,32715 +19601,32716 +19602,32713 +19603,32714 +19604,32715 +19605,32716 +19606,32713 +19607,32714 +19608,32715 +19609,32716 +19610,32713 +19611,32714 +19612,32715 +19613,32716 +19614,32713 +19615,32714 +19616,32715 +19617,32716 +19618,32713 +19619,32714 +19620,32715 +19621,32716 +19622,31808 +19623,32140 +19642,7744 +19662,31721 +19682,32154 +19683,32155 +19684,32770 +19685,32157 +19686,32159 +19687,32158 +19688,25682 +19689,32160 +19690,32163 +19691,32165 +19692,32164 +19693,32166 +19694,32167 +19695,32168 +19696,21203 +19697,32171 +19698,32301 +19699,32279 +19700,32278 +19701,32276 +19702,32282 +19703,32283 +19704,32280 +19705,32281 +19706,32277 +19707,32553 +19708,32547 +19709,32555 +19710,32551 +19711,32550 +19712,32552 +19713,32548 +19714,32554 +19715,32549 +19716,32252 +19717,32253 +19718,32254 +19719,32255 +19720,7046 +19721,32256 +19722,32257 +19723,32258 +19724,32259 +19725,11449 +19726,18087 +19727,32189 +19742,32192 +19743,32193 +19762,32216 +19763,32217 +19764,1301 +19765,1301 +19766,1301 +19767,26371 +19768,32230 +19769,1301 +19770,1301 +19771,1301 +19772,1301 +19773,1301 +19774,22652 +19775,32231 +19776,1301 +19777,1301 +19778,1301 +19779,1301 +19780,1301 +19781,1301 +19782,32233 +19783,32234 +19784,32235 +19785,32242 +19786,32237 +19787,32238 +19788,32239 +19789,32240 +19790,32241 +19802,32260 +19803,24521 +19804,24694 +19805,18535 +19806,32261 +19807,28622 +19808,32262 +19809,31721 +19810,31808 +19811,31721 +19812,20984 +19813,2622 +19814,2622 +19815,2622 +19816,2622 +19817,2622 +19818,2622 +19819,2622 +19820,2622 +19821,2622 +19822,32415 +19823,32416 +19824,32417 +19825,32263 +19826,32264 +19827,32265 +19828,32748 +19829,32750 +19830,32749 +19831,32270 +19832,32272 +19833,28806 +19834,32273 +19835,32274 +19836,32275 +19837,28827 +19838,32285 +19839,32286 +19840,32287 +19841,32567 +19842,32289 +19843,32290 +19844,32544 +19845,32292 +19846,32290 +19847,32544 +19848,32290 +19849,32566 +19850,21586 +19851,20342 +19852,34718 +19853,32577 +19854,32603 +19855,32296 +19856,32297 +19857,32298 +19858,32300 +19859,32575 +19860,32302 +19861,32595 +19862,32561 +19863,32305 +19864,32314 +19865,32722 +19866,32722 +19867,32581 +19868,32570 +19869,32340 +19870,32320 +19871,32321 +19872,17494 +19873,32323 +19874,32604 +19875,32413 +19876,32326 +19877,32405 +19878,32409 +19879,32332 +19880,32333 +19881,18136 +19882,13061 +19883,25147 +19884,32613 +19885,32335 +19886,32734 +19887,32337 +19888,32339 +19889,32772 +19890,32588 +19891,32344 +19892,32406 +19893,32347 +19894,32348 +19895,32401 +19896,32776 +19897,32563 +19898,32353 +19899,32407 +19900,34507 +19901,32356 +19902,17607 +19903,32576 +19904,32360 +19905,32347 +19906,32773 +19907,32371 +19908,32600 +19909,32612 +19910,32615 +19911,32376 +19912,32323 +19913,32379 +19914,21586 +19915,32560 +19916,11958 +19917,32382 +19918,32782 +19919,32389 +19920,32305 +19921,26535 +19922,32784 +19923,32395 +19924,32397 +19925,32353 +19926,32400 +19927,32582 +19928,32404 +19929,32410 +19930,32745 +19931,9731 +19932,32414 +19933,33178 +19934,6651 +19935,21365 +19936,21365 +19937,6651 +19938,1438 +19939,26865 +19940,32425 +19941,30532 +19942,32426 +19943,32427 +19944,32450 +19945,21701 +19946,32430 +19947,20625 +19948,32431 +19949,32431 +19950,32431 +19951,32326 +19952,32326 +19953,32326 +19954,32326 +19955,32326 +19956,32326 +19957,32326 +19958,32326 +19959,32326 +19960,32432 +19961,32780 +19962,36762 +19963,32446 +19964,32438 +19965,32439 +19966,32766 +19967,32584 +19968,32443 +19969,32449 +19970,20619 +19971,32452 +19972,16548 +19973,11926 +19974,17288 +19975,4810 +19976,17288 +19977,4181 +19978,7695 +19979,8233 +19980,6451 +19981,32490 +19982,32503 +19983,32507 +19984,43777 +19985,32509 +19986,21701 +19987,32511 +19988,32514 +19989,32515 +19990,9657 +19991,1504 +19992,13806 +19993,32571 +19994,24568 +19995,31516 +19996,32521 +19997,18099 +19998,32536 +19999,26614 +20000,1325 +20001,1325 +20002,17403 +20003,32538 +20004,29353 +20005,32539 +20006,32678 +20007,32543 +20008,3663 +20009,1103 +20010,1246 +20011,1301 +20012,1301 +20013,1301 +20014,1301 +20015,19567 +20016,4807 +20017,8232 +20018,7169 +20019,959 +20020,7918 +20021,9849 +20022,13885 +20023,7798 +20024,4045 +20025,292 +20026,6680 +20027,1438 +20028,7414 +20029,32557 +20030,4772 +20031,22979 +20032,12675 +20033,32564 +20034,32565 +20035,32592 +20036,7122 +20037,18707 +20038,32570 +20039,42672 +20040,1301 +20041,32644 +20042,32644 +20043,34241 +20044,34241 +20045,34244 +20046,34244 +20047,34244 +20048,32822 +20049,32822 +20050,34242 +20051,34242 +20052,34247 +20053,34248 +20054,34240 +20055,34243 +20056,34249 +20057,34245 +20058,34245 +20059,18971 +20060,18971 +20061,32740 +20062,21203 +20063,6413 +20064,6344 +20065,17458 +20066,25147 +20067,11926 +20068,23140 +20069,32677 +20070,32648 +20071,6502 +20072,6502 +20073,23140 +20074,32650 +20075,1102 +20076,32657 +20077,32656 +20078,32658 +20079,17896 +20080,24211 +20081,24156 +20082,32685 +20083,32717 +20084,1007 +20085,35016 +20086,32693 +20087,32691 +20088,34241 +20089,34241 +20090,34392 +20091,34242 +20092,34242 +20093,34393 +20094,34240 +20095,34240 +20096,34240 +20097,34244 +20098,34244 +20099,34244 +20100,34248 +20101,34248 +20102,34248 +20103,34244 +20104,34244 +20105,34244 +20106,32644 +20107,32644 +20108,32644 +20109,32822 +20110,32822 +20111,32822 +20112,34247 +20113,34247 +20114,34247 +20115,34244 +20116,34244 +20117,34244 +20118,34241 +20119,34241 +20120,34392 +20121,34242 +20122,34242 +20123,34393 +20124,32644 +20125,32644 +20126,34394 +20127,32822 +20128,32822 +20129,34395 +20130,18059 +20131,32694 +20132,32695 +20133,32700 +20134,32735 +20135,29859 +20136,29858 +20137,29860 +20138,29865 +20139,25226 +20140,29867 +20141,29863 +20142,29864 +20143,4841 +20144,26537 +20145,27088 +20146,31210 +20147,31769 +20148,31769 +20149,39901 +20150,34241 +20151,34241 +20152,34392 +20153,34241 +20154,34242 +20155,34242 +20156,34242 +20157,34393 +20158,34243 +20159,34240 +20160,34240 +20161,34240 +20162,34240 +20163,34244 +20164,34244 +20165,34244 +20166,34244 +20167,34248 +20168,34248 +20169,34248 +20170,34248 +20171,34244 +20172,34244 +20173,34244 +20174,34244 +20175,18971 +20176,32740 +20177,32644 +20178,32644 +20179,32644 +20180,32644 +20181,32822 +20182,32822 +20183,32822 +20184,32739 +20185,32822 +20186,34247 +20187,34247 +20188,34247 +20189,34247 +20190,34244 +20191,34244 +20192,34244 +20193,34244 +20194,18971 +20195,34241 +20196,34241 +20197,34392 +20198,34241 +20199,34242 +20200,34242 +20201,34393 +20202,34242 +20203,34249 +20204,32644 +20205,32644 +20206,32644 +20207,34394 +20208,32822 +20209,32822 +20210,34395 +20211,32822 +20212,34245 +20213,32718 +20214,32648 +20215,32721 +20216,32720 +20217,32724 +20218,32726 +20219,32727 +20220,32677 +20221,32728 +20222,21203 +20223,6413 +20224,6344 +20225,21203 +20226,6413 +20227,6344 +20228,7242 +20229,7242 +20230,7242 +20231,26420 +20232,17458 +20233,26420 +20234,25147 +20235,11926 +20236,26420 +20237,17458 +20238,31721 +20239,29859 +20240,29858 +20241,27088 +20242,29860 +20243,25147 +20244,11926 +20245,31210 +20246,29865 +20247,25226 +20248,4841 +20249,29867 +20250,26537 +20251,29863 +20252,29864 +20253,1102 +20254,1102 +20255,32732 +20256,32746 +20257,32751 +20258,32587 +20259,32752 +20260,32753 +20261,30749 +20262,32755 +20263,32900 +20264,32757 +20265,32758 +20266,32756 +20267,28177 +20268,28162 +20269,24190 +20270,28180 +20271,28166 +20272,28161 +20273,28179 +20274,28160 +20275,23716 +20276,23553 +20277,9837 +20278,28827 +20279,23262 +20280,31721 +20281,29859 +20282,29858 +20283,27088 +20284,29860 +20285,31210 +20286,29865 +20287,25226 +20288,4841 +20289,29867 +20290,26537 +20291,29863 +20292,29864 +20294,28162 +20295,32760 +20296,32762 +20297,28177 +20298,28162 +20299,28827 +20300,24190 +20301,28180 +20302,23553 +20303,23262 +20304,28166 +20305,23716 +20306,28161 +20307,9837 +20308,28179 +20309,28160 +20310,13002 +20311,28177 +20312,28162 +20313,28827 +20314,24190 +20315,28180 +20316,23553 +20317,23262 +20318,28166 +20319,23716 +20320,28161 +20321,9837 +20322,28179 +20323,28160 +20324,29596 +20325,29597 +20326,29594 +20327,31087 +20328,29593 +20329,29273 +20330,30211 +20331,29591 +20332,23717 +20333,24022 +20334,30870 +20335,28828 +20336,26681 +20337,32768 +20338,29596 +20339,29597 +20340,29594 +20341,31087 +20342,29593 +20343,29273 +20344,30211 +20345,23717 +20346,24022 +20347,29591 +20348,26681 +20349,30870 +20350,28828 +20351,29596 +20352,29597 +20353,29594 +20354,31087 +20355,29593 +20356,29273 +20357,30211 +20358,23717 +20359,24022 +20360,29591 +20361,26681 +20362,30870 +20363,28828 +20364,9632 +20365,32777 +20366,32781 +20367,32781 +20368,30926 +20369,32890 +20370,20256 +20371,18050 +20372,20256 +20373,7987 +20374,7987 +20375,7229 +20376,3671 +20377,1151 +20378,22443 +20379,2593 +20380,32818 +20381,21363 +20382,1102 +20383,20931 +20384,32820 +20385,2627 +20386,32823 +20387,2533 +20388,15963 +20389,16837 +20390,15964 +20391,41729 +20392,41721 +20393,44552 +20394,1246 +20395,9129 +20396,8093 +20397,41718 +20398,41718 +20399,41718 +20400,32830 +20401,11185 +20402,32831 +20403,32233 +20404,7629 +20405,7694 +20406,33129 +20407,32841 +20408,33073 +20409,41718 +20410,41718 +20411,41718 +20412,32837 +20413,41718 +20414,41718 +20415,1246 +20416,32933 +20417,25504 +20418,32933 +20419,32933 +20420,32933 +20421,9285 +20422,9285 +20423,2627 +20424,22193 +20425,20330 +20426,30661 +20427,28042 +20428,32072 +20429,29697 +20430,32076 +20431,28812 +20432,32923 +20433,32923 +20434,18289 +20435,32923 +20436,32923 +20437,32079 +20438,32081 +20439,9832 +20440,32077 +20441,32074 +20442,32008 +20443,32075 +20444,32073 +20445,26537 +20446,26537 +20447,32932 +20448,32932 +20449,32932 +20450,32931 +20451,23629 +20452,32650 +20453,20627 +20454,30603 +20455,32845 +20456,1037 +20457,10923 +20458,10923 +20459,10923 +20460,32846 +20461,32847 +20462,32849 +20463,7221 +20464,32850 +20465,32851 +20466,9840 +20467,1325 +20468,32858 +20469,20709 +20470,7261 +20471,24051 +20472,1103 +20473,1103 +20474,8270 +20475,8928 +20476,32871 +20477,32874 +20478,32872 +20479,32876 +20480,32877 +20481,32875 +20482,32878 +20483,21472 +20484,3029 +20485,32879 +20486,26420 +20487,31163 +20488,31338 +20489,32880 +20490,26732 +20491,26732 +20492,15964 +20493,15964 +20494,32884 +20495,32884 +20496,15965 +20497,15965 +20498,32885 +20499,22838 +20500,32886 +20501,32887 +20502,32888 +20503,7143 +20504,33033 +20505,31905 +20506,1102 +20507,1102 +20508,1102 +20509,1102 +20510,1102 +20511,1102 +20512,24730 +20513,2667 +20514,32895 +20515,32894 +20516,6410 +20517,32903 +20518,3331 +20519,33070 +20520,32905 +20521,32906 +20522,32909 +20523,30582 +20524,32910 +20525,32912 +20526,3331 +20527,3331 +20528,3331 +20529,32916 +20530,33150 +20531,2616 +20532,2616 +20533,2616 +20534,30690 +20535,2616 +20536,33087 +20537,18863 +20538,32927 +20539,38344 +20540,1093 +20541,7694 +20542,1093 +20543,1093 +20544,1093 +20545,7694 +20546,6270 +20547,6270 +20548,6270 +20549,57569 +20550,32945 +20551,33195 +20552,7694 +20553,6270 +20554,6270 +20555,6270 +20556,24014 +20557,32955 +20558,20219 +20559,33023 +20560,33022 +20561,41728 +20562,41720 +20563,41723 +20564,41731 +20565,41722 +20566,41730 +20567,41726 +20568,41734 +20569,41724 +20570,41732 +20571,41725 +20572,41733 +20573,41735 +20574,41727 +20575,32974 +20576,1102 +20577,33097 +20578,33095 +20579,33096 +20580,33017 +20581,33015 +20582,33018 +20583,41720 +20584,41721 +20585,41722 +20586,41723 +20587,41724 +20588,41725 +20589,41726 +20590,41727 +20591,41728 +20592,41729 +20593,41730 +20594,41731 +20595,41732 +20596,41733 +20597,41734 +20598,41735 +20599,33020 +20600,31576 +20601,1285 +20602,17329 +20603,31783 +20604,33021 +20605,18049 +20606,19529 +20607,19528 +20608,19570 +20609,33025 +20610,6492 +20611,6651 +20612,33026 +20613,7290 +20614,16210 +20615,33028 +20616,18378 +20617,33029 +20618,33031 +20619,33034 +20620,18519 +20621,33036 +20622,31907 +20623,33161 +20624,31664 +20625,33040 +20626,16892 +20627,33042 +20628,33162 +20629,33045 +20630,33047 +20631,33049 +20632,9834 +20633,33051 +20634,30845 +20635,33054 +20636,1262 +20637,33056 +20638,33057 +20639,33059 +20640,34495 +20641,18863 +20642,33062 +20643,35629 +20644,33064 +20645,6539 +20646,33068 +20647,33069 +20648,33072 +20649,31604 +20650,33092 +20651,18050 +20652,33098 +20653,33100 +20654,18368 +20655,33101 +20656,33105 +20657,33107 +20658,33112 +20659,33110 +20660,33113 +20661,33132 +20662,33117 +20663,28547 +20664,16767 +20665,33119 +20666,33120 +20667,33121 +20668,33122 +20669,33123 +20670,27137 +20671,33124 +20672,33125 +20673,33126 +20674,33127 +20675,33128 +20676,7695 +20677,7695 +20678,7695 +20679,7695 +20680,26919 +20681,33131 +20682,24087 +20683,33133 +20684,33134 +20685,33135 +20686,33136 +20687,33137 +20688,33138 +20689,33139 +20690,33141 +20691,26137 +20692,963 +20693,33142 +20694,24122 +20695,9852 +20696,33143 +20697,33144 +20698,33145 +20699,33146 +20700,33146 +20701,33147 +20702,33147 +20703,33148 +20704,33148 +20705,33149 +20706,33149 +20707,33149 +20708,12331 +20709,18102 +20710,33152 +20711,33152 +20712,33154 +20713,33154 +20714,33155 +20715,33155 +20716,33160 +20717,33160 +20718,33163 +20719,33170 +20720,21620 +20721,26391 +20722,31237 +20723,33171 +20724,33172 +20725,37755 +20726,7798 +20727,7798 +20728,7798 +20729,7798 +20730,7798 +20731,7798 +20732,7798 +20733,7798 +20734,7798 +20735,7798 +20736,7798 +20737,33177 +20738,33181 +20739,31500 +20740,33188 +20741,7299 +20742,33191 +20743,7050 +20744,9731 +20745,34492 +20746,47903 +20747,47902 +20748,41488 +20749,47901 +20750,47905 +20751,11431 +20752,11431 +20753,11431 +20754,11431 +20755,7798 +20756,7798 +20757,7798 +20758,11431 +20759,36443 +20760,10546 +20761,1102 +20762,33197 +20763,33200 +20764,3920 +20765,3024 +20766,33201 +20767,33201 +20768,33204 +20769,33202 +20770,33203 +20771,4690 +20772,33205 +20773,45174 +20774,30925 +20775,31416 +20776,31411 +20777,31414 +20778,31413 +20779,31415 +20780,31412 +20781,4841 +20782,26681 +20783,9834 +20784,23904 +20785,26681 +20786,31411 +20787,31412 +20788,31117 +20789,31413 +20790,31414 +20791,31415 +20792,4841 +20793,30925 +20794,9834 +20795,31416 +20796,23904 +20797,7061 +20798,18632 +20799,9666 +20800,33207 +20801,33208 +20802,33209 +20803,5567 +20804,33210 +20805,33211 +20806,1102 +20807,1102 +20808,33211 +20809,33211 +20810,16065 +20811,33220 +20812,33222 +20813,6002 +20814,26361 +20815,33224 +20816,39921 +20817,39923 +20818,3666 +20819,7353 +20820,28812 +20821,24087 +20822,7413 +20823,24022 +20824,33227 +20825,7401 +20826,26537 +20827,9837 +20828,31800 +20829,33296 +20830,9657 +20831,9857 +20832,43894 +20833,6012 +20834,7365 +20835,33236 +20836,33237 +20837,33235 +20838,20723 +20839,38291 +20840,5194 +20841,33291 +20842,6501 +20843,33239 +20844,13707 +20845,26375 +20846,3177 +20847,33248 +20848,33249 +20849,33220 +20850,33255 +20851,33308 +20852,33253 +20853,33254 +20854,1102 +20855,1102 +20856,1102 +20857,6399 +20858,34162 +20859,34159 +20860,34161 +20861,34156 +20862,34158 +20863,34157 +20864,34155 +20865,34160 +20866,34140 +20867,34153 +20868,34228 +20869,34136 +20870,34151 +20871,34152 +20872,34154 +20873,34138 +20874,34150 +20875,34145 +20876,34143 +20877,34148 +20878,34146 +20879,34144 +20880,32549 +20881,34147 +20882,34149 +20883,32253 +20884,34168 +20885,34169 +20886,34170 +20887,32253 +20888,34167 +20889,32253 +20890,34171 +20891,33256 +20892,33257 +20893,33258 +20894,33259 +20895,33260 +20896,33342 +20897,33353 +20898,36764 +20899,33351 +20900,33350 +20901,33352 +20902,33359 +20903,33348 +20904,33346 +20905,33261 +20906,9823 +20907,9836 +20908,33261 +20909,33262 +20910,20723 +20911,33309 +20912,33307 +20913,18662 +20914,33264 +20915,33270 +20916,33266 +20917,33269 +20918,33263 +20919,33268 +20920,33271 +20921,33272 +20922,33275 +20923,33276 +20924,33273 +20925,33274 +20926,32253 +20927,34172 +20928,34164 +20929,34174 +20930,32253 +20931,34173 +20932,34166 +20933,34175 +20934,26773 +20935,20614 +20936,32253 +20937,32253 +20938,18499 +20939,1102 +20940,1102 +20941,1102 +20942,1102 +20943,1102 +20944,1102 +20945,1102 +20946,1102 +20947,1102 +20948,1102 +20949,33285 +20950,33288 +20951,33286 +20952,7393 +20953,1262 +20954,26592 +20955,31498 +20956,33287 +20957,7339 +20958,30661 +20959,9842 +20960,31616 +20961,28831 +20962,13496 +20963,39922 +20964,9837 +20965,4777 +20966,6539 +20967,15420 +20968,9834 +20969,43895 +20970,1102 +20971,1102 +20972,15274 +20973,1102 +20974,15274 +20975,1102 +20976,15274 +20977,33304 +20978,33299 +20979,33300 +20980,8106 +20981,37294 +20982,37170 +20983,37171 +20984,33305 +20985,16576 +20986,8969 +20987,16969 +20988,16929 +20989,16832 +20990,16575 +20991,15196 +20992,33319 +20993,36955 +20994,33322 +20995,33323 +20996,33324 +20997,33325 +20998,33326 +20999,33327 +21000,33328 +21001,33329 +21002,33330 +21003,33331 +21004,33356 +21005,33333 +21006,33334 +21007,16696 +21008,14403 +21009,14335 +21010,14354 +21011,14336 +21012,17184 +21013,14338 +21014,14339 +21015,27951 +21016,33340 +21017,3519 +21018,33341 +21019,6828 +21020,6827 +21021,3931 +21022,2552 +21023,25468 +21024,25472 +21025,12547 +21026,13990 +21027,4112 +21028,4112 +21029,31238 +21030,6342 +21031,26733 +21032,7649 +21033,26731 +21034,31721 +21035,31808 +21036,28827 +21037,33399 +21038,29169 +21039,33401 +21040,33402 +21041,21202 +21042,30271 +21043,3020 +21044,47917 +21045,29596 +21046,29597 +21047,29594 +21048,31087 +21049,29593 +21050,29273 +21051,30211 +21052,23717 +21053,24022 +21054,29591 +21055,26681 +21056,30870 +21057,28828 +21058,29596 +21059,29597 +21060,29594 +21061,31087 +21062,29593 +21063,29273 +21064,30211 +21065,23717 +21066,24022 +21067,29591 +21068,26681 +21069,30870 +21070,28828 +21071,24719 +21072,24719 +21073,29596 +21074,29597 +21075,29594 +21076,31087 +21077,29593 +21078,29273 +21079,30211 +21080,23717 +21081,24022 +21082,29591 +21083,26681 +21084,30870 +21085,28828 +21086,29596 +21087,29597 +21088,29594 +21089,31087 +21090,29593 +21091,29273 +21092,30211 +21093,23717 +21094,24022 +21095,29591 +21096,26681 +21097,30870 +21098,28828 +21099,1102 +21100,34104 +21101,33422 +21102,33421 +21103,33423 +21104,33423 +21105,33423 +21106,33423 +21107,33423 +21108,33423 +21109,33423 +21110,33423 +21111,1246 +21112,32426 +21113,12331 +21114,18099 +21115,6502 +21116,6502 +21117,6502 +21118,6502 +21119,6502 +21120,6502 +21121,33424 +21122,33425 +21123,33426 +21124,33428 +21125,33429 +21126,34513 +21127,33431 +21128,33429 +21129,33434 +21130,1134 +21131,33211 +21132,33211 +21133,33211 +21134,33435 +21135,26358 +21136,33436 +21137,6614 +21138,20977 +21139,6663 +21140,1102 +21141,20977 +21142,16065 +21143,24154 +21144,23295 +21145,9731 +21146,33456 +21147,33456 +21148,33456 +21149,33456 +21150,12331 +21151,18099 +21152,33457 +21153,28622 +21154,34096 +21155,33460 +21156,20342 +21157,34093 +21158,1102 +21159,1102 +21160,1102 +21161,1102 +21162,9150 +21163,7135 +21164,4823 +21165,1102 +21166,1102 +21167,1102 +21168,59500 +21169,33468 +21170,33469 +21171,33469 +21172,33470 +21173,33470 +21174,33470 +21175,33518 +21176,33967 +21177,34177 +21178,33519 +21179,23608 +21180,33520 +21181,33522 +21182,26001 +21183,33527 +21184,33528 +21185,33529 +21186,33530 +21187,33531 +21188,33533 +21189,31908 +21190,31498 +21191,29902 +21192,33536 +21193,20342 +21194,20342 +21195,20342 +21196,33537 +21197,33537 +21198,33537 +21199,33537 +21200,33537 +21201,33537 +21202,33537 +21203,33537 +21204,33537 +21205,33537 +21206,33537 +21207,33537 +21208,33537 +21209,33537 +21210,33537 +21211,2593 +21212,57757 +21213,57757 +21214,1103 +21215,33681 +21216,29902 +21217,28622 +21218,33969 +21219,1301 +21220,33540 +21221,33541 +21222,33542 +21223,33543 +21224,33544 +21225,33545 +21226,33546 +21227,7741 +21228,30952 +21229,32745 +21230,33547 +21231,33548 +21232,33549 +21233,33550 +21234,31118 +21235,33551 +21236,6343 +21237,33572 +21238,33555 +21239,33554 +21240,29331 +21241,24570 +21242,34178 +21243,7176 +21244,34142 +21245,1102 +21246,1102 +21247,1102 +21248,1102 +21249,1102 +21250,1102 +21251,1102 +21252,1102 +21253,1102 +21254,33555 +21255,1102 +21256,1102 +21257,1102 +21258,1102 +21259,1102 +21260,1102 +21261,1102 +21262,1102 +21263,1102 +21264,1102 +21265,1102 +21266,33211 +21267,18060 +21268,33830 +21269,34137 +21270,29902 +21271,29902 +21272,34139 +21273,34134 +21274,9632 +21275,34135 +21276,33567 +21277,34050 +21278,4318 +21279,1103 +21280,1103 +21281,1246 +21282,1246 +21283,1246 +21284,1143 +21285,1143 +21286,33578 +21287,1143 +21288,1155 +21289,1155 +21290,1155 +21291,33585 +21292,33585 +21293,33585 +21294,1317 +21295,1317 +21296,1317 +21297,3426 +21298,3426 +21299,3426 +21300,1134 +21301,33588 +21302,1134 +21303,1134 +21304,12547 +21305,29902 +21306,12547 +21307,12547 +21308,33589 +21309,21202 +21310,29902 +21311,33590 +21312,33591 +21313,20342 +21314,3019 +21315,362 +21316,33604 +21317,42880 +21318,18271 +21319,33599 +21320,33601 +21321,33971 +21322,33603 +21323,33970 +21324,33972 +21325,26461 +21326,33702 +21327,29902 +21328,6620 +21329,34486 +21330,34256 +21331,33709 +21332,33713 +21333,33714 +21334,34061 +21335,34018 +21336,33618 +21337,34351 +21338,33625 +21339,33624 +21340,33940 +21341,33941 +21342,33942 +21343,37266 +21344,33641 +21345,34020 +21346,33643 +21347,34370 +21348,34348 +21349,33647 +21350,34021 +21351,34063 +21352,33652 +21353,34609 +21354,34037 +21355,33661 +21356,33662 +21357,34086 +21358,1102 +21359,33673 +21360,34608 +21361,34077 +21362,33678 +21363,29902 +21364,34087 +21365,33690 +21366,34221 +21367,34904 +21368,33700 +21369,1102 +21370,33691 +21371,6270 +21372,34222 +21373,33696 +21374,33697 +21375,33701 +21376,34056 +21377,31500 +21378,1102 +21379,1102 +21380,1102 +21381,1102 +21382,1102 +21383,1399 +21384,1102 +21385,1102 +21386,33211 +21387,34487 +21388,33708 +21389,33705 +21390,33706 +21391,34257 +21392,33727 +21393,33856 +21394,24013 +21395,33839 +21396,33856 +21397,33730 +21398,33731 +21399,33856 +21400,33732 +21401,33727 +21402,33856 +21403,33733 +21404,33734 +21405,33856 +21406,33735 +21407,33731 +21408,33856 +21409,33736 +21410,33731 +21411,33856 +21412,33737 +21413,33839 +21414,33856 +21415,33144 +21416,33734 +21417,33856 +21418,26202 +21419,33779 +21420,33766 +21421,33767 +21422,33768 +21423,33770 +21424,33770 +21425,33771 +21426,33772 +21427,33775 +21428,33776 +21429,33780 +21430,47348 +21431,33782 +21432,33783 +21433,33784 +21434,33785 +21435,33787 +21436,33786 +21437,33788 +21438,33789 +21439,33791 +21440,33792 +21441,33793 +21442,33794 +21443,33796 +21444,33799 +21445,33793 +21446,33802 +21447,33767 +21448,33803 +21449,33804 +21450,33806 +21451,33807 +21452,33809 +21453,33810 +21454,33812 +21455,33880 +21456,33814 +21457,33818 +21458,33819 +21459,33828 +21460,33822 +21461,33823 +21462,19128 +21463,33824 +21464,33825 +21465,33835 +21466,33838 +21467,33840 +21468,33841 +21469,33842 +21470,28951 +21471,33845 +21472,33848 +21473,33973 +21474,33852 +21475,33853 +21476,33854 +21477,33855 +21478,33857 +21479,33903 +21480,29833 +21481,22757 +21482,33863 +21483,33864 +21484,33901 +21485,33867 +21486,33868 +21487,33870 +21488,33849 +21489,33873 +21490,33876 +21491,33879 +21492,33882 +21493,31166 +21494,33885 +21495,33888 +21496,33889 +21497,33892 +21498,33894 +21499,33895 +21500,14174 +21501,33897 +21502,33902 +21503,33905 +21504,33906 +21505,33906 +21506,33906 +21507,33906 +21508,33907 +21509,12333 +21510,12333 +21511,12333 +21512,12333 +21513,12333 +21514,1102 +21515,33911 +21516,33422 +21517,34353 +21518,33422 +21519,18087 +21520,31866 +21521,33994 +21522,33992 +21523,33991 +21524,33998 +21525,33999 +21526,31616 +21527,33980 +21528,21202 +21529,31899 +21530,34031 +21531,34034 +21532,28627 +21533,34035 +21534,34036 +21535,20952 +21536,24730 +21537,34059 +21538,34094 +21539,34095 +21540,21469 +21541,62893 +21542,34099 +21543,62895 +21544,62894 +21545,11449 +21546,24214 +21547,15274 +21548,1102 +21549,34101 +21550,34115 +21551,34105 +21552,4811 +21553,34106 +21554,34107 +21555,31954 +21556,4181 +21557,34281 +21558,34279 +21559,34280 +21560,34282 +21561,34283 +21562,34284 +21563,31800 +21564,34116 +21565,34188 +21566,34188 +21567,7248 +21568,7248 +21569,31401 +21570,34121 +21571,34271 +21572,34127 +21573,34128 +21574,34272 +21575,34273 +21576,34275 +21577,34276 +21578,34277 +21579,34132 +21580,34133 +21581,34165 +21582,34176 +21583,34179 +21584,34181 +21585,34183 +21586,34184 +21587,34185 +21588,34186 +21589,34285 +21590,34286 +21591,34287 +21592,34289 +21593,34290 +21594,34187 +21595,34291 +21596,34189 +21597,34190 +21598,34191 +21599,34193 +21600,34195 +21601,33808 +21602,34197 +21603,34198 +21604,34199 +21605,34260 +21606,34202 +21607,34203 +21608,34204 +21609,34205 +21610,34206 +21611,34207 +21612,34208 +21613,34210 +21614,34606 +21615,30670 +21616,34223 +21617,34226 +21618,34227 +21619,34230 +21620,33808 +21621,34231 +21622,41490 +21623,34235 +21624,34236 +21625,34237 +21626,34238 +21627,34239 +21628,9632 +21629,9632 +21630,9632 +21631,9632 +21632,9632 +21633,9632 +21634,9632 +21635,34250 +21636,9632 +21637,9632 +21638,9632 +21639,34252 +21640,18721 +21641,9632 +21642,9632 +21643,9632 +21644,9632 +21645,34259 +21646,9632 +21647,34261 +21648,34263 +21649,9632 +21650,41491 +21651,34266 +21652,34268 +21653,9632 +21654,9632 +21655,9632 +21656,9632 +21657,9632 +21658,9632 +21659,9632 +21660,9632 +21661,9632 +21662,9632 +21663,34270 +21664,34274 +21665,34278 +21666,34288 +21667,34292 +21668,32760 +21669,34711 +21670,33851 +21671,34294 +21672,34295 +21673,34296 +21674,34298 +21675,34299 +21676,34302 +21677,33808 +21678,34303 +21679,34304 +21680,34305 +21681,33864 +21682,34306 +21683,34310 +21684,34312 +21685,33871 +21686,34314 +21687,28733 +21688,34315 +21689,34317 +21690,34318 +21691,34319 +21692,34320 +21693,34607 +21694,34323 +21695,33855 +21696,34325 +21697,18948 +21698,34326 +21699,34419 +21700,34204 +21701,34329 +21702,31889 +21703,34331 +21704,34332 +21705,34333 +21706,34334 +21707,33855 +21708,34335 +21709,34336 +21710,34337 +21711,34342 +21712,34274 +21713,34365 +21714,34354 +21715,34339 +21716,34356 +21717,34357 +21718,34358 +21719,34359 +21720,34360 +21721,15794 +21722,15274 +21723,15274 +21724,15274 +21725,15274 +21726,15274 +21727,15274 +21728,15274 +21729,15274 +21730,15274 +21731,15274 +21732,15274 +21733,15274 +21734,15274 +21735,15274 +21736,36142 +21737,15274 +21738,15274 +21739,34342 +21740,1102 +21741,6270 +21742,1096 +21743,15274 +21744,34359 +21745,24730 +21746,34361 +21747,34363 +21748,39914 +21749,1102 +21750,1102 +21751,1102 +21752,39924 +21753,31576 +21754,28831 +21755,31603 +21756,39920 +21757,9585 +21758,39915 +21759,34374 +21760,39916 +21761,34378 +21762,34378 +21763,39917 +21764,31604 +21765,26537 +21766,32008 +21767,23629 +21768,28831 +21769,39918 +21770,34382 +21771,34389 +21772,1659 +21773,6496 +21774,43893 +21775,26391 +21776,1102 +21777,39914 +21778,33808 +21779,31908 +21780,43892 +21781,7164 +21782,31808 +21783,6672 +21784,39916 +21785,6851 +21786,4775 +21787,34390 +21788,2480 +21789,61338 +21790,9657 +21791,6539 +21792,39214 +21793,39215 +21794,34304 +21795,34391 +21796,34399 +21797,34402 +21798,34404 +21799,34405 +21800,34484 +21801,35017 +21802,34478 +21803,35222 +21804,36715 +21805,34482 +21806,34474 +21807,7695 +21808,24730 +21809,32008 +21810,34479 +21811,14005 +21812,18721 +21813,34655 +21814,34483 +21815,34508 +21816,34654 +21817,34654 +21818,34654 +21819,34654 +21820,34654 +21821,34654 +21822,34654 +21823,34654 +21829,34537 +21830,6405 +21831,23146 +21832,34430 +21833,34536 +21834,34431 +21835,34432 +21836,31800 +21837,34468 +21838,34469 +21839,34485 +21840,39453 +21841,39457 +21842,39454 +21843,39458 +21844,39462 +21845,39461 +21846,43295 +21847,43296 +21848,44953 +21849,16892 +21850,27830 +21851,16642 +21852,27822 +21853,4272 +21854,28479 +21855,27821 +21856,34481 +21857,33940 +21858,39459 +21859,38942 +21860,38102 +21861,38920 +21862,38941 +21863,42158 +21864,42159 +21865,42157 +21866,42714 +21867,38102 +21868,38926 +21869,43297 +21870,43298 +21871,44952 +21872,33941 +21873,43300 +21874,43319 +21875,43301 +21876,39463 +21877,39452 +21878,25048 +21879,20978 +21880,4775 +21881,18597 +21882,42151 +21883,25028 +21884,41675 +21885,41680 +21886,41676 +21887,38744 +21888,29736 +21889,34466 +21890,34467 +21891,34471 +21892,1301 +21893,1301 +21894,1301 +21895,1301 +21896,1301 +21897,1301 +21898,1301 +21899,1301 +21900,2571 +21901,2571 +21902,1301 +21903,1096 +21904,1096 +21905,15274 +21906,15274 +21907,15274 +21908,1301 +21909,1301 +21910,2571 +21911,6270 +21912,1301 +21913,2571 +21914,1301 +21915,6270 +21916,1301 +21917,2571 +21918,1301 +21919,6270 +21920,34656 +21921,34656 +21922,34488 +21923,22614 +21924,1102 +21925,34656 +21926,34656 +21927,13710 +21928,16452 +21929,35921 +21930,15589 +21931,9833 +21932,9833 +21933,34491 +21934,9854 +21935,24211 +21936,15794 +21937,15788 +21938,5292 +21939,20892 +21940,15274 +21941,1102 +21942,1102 +21943,1102 +21944,15274 +21945,15274 +21946,34872 +21947,15274 +21948,1102 +21949,15274 +21950,1102 +21951,1102 +21952,1102 +21953,15274 +21954,1102 +21955,15274 +21956,15274 +21957,1102 +21958,15274 +21959,15274 +21960,13082 +21961,22651 +21962,12310 +21963,12310 +21964,12310 +21965,12310 +21966,12310 +21967,12310 +21968,30690 +21969,34490 +21970,34490 +21971,34490 +21972,34490 +21973,34490 +21974,34490 +21975,34538 +21976,34490 +21977,34490 +21978,34490 +21979,34538 +21980,34538 +21981,34538 +21982,32326 +21983,34874 +21984,34868 +21985,30952 +21986,34874 +21987,7148 +21988,18716 +21989,13688 +21990,39456 +21991,39455 +21992,8117 +21993,8117 +21994,34610 +21995,34611 +21996,34612 +21997,34617 +21998,34613 +21999,42240 +22000,34615 +22001,34616 +22002,34699 +22003,34684 +22004,34685 +22005,34700 +22006,34686 +22007,34687 +22008,34688 +22009,34689 +22010,34646 +22011,34647 +22012,1134 +22013,34649 +22014,34867 +22015,34650 +22016,34651 +22017,34652 +22018,24570 +22019,34497 +22020,7899 +22021,7899 +22022,7899 +22023,7899 +22024,7899 +22025,7899 +22026,7899 +22027,7899 +22028,7899 +22029,7899 +22030,7899 +22031,7899 +22032,7899 +22033,7899 +22034,7899 +22035,7899 +22036,7899 +22037,7899 +22038,7899 +22039,7899 +22040,7899 +22041,7899 +22042,7899 +22043,7899 +22044,1262 +22045,9632 +22046,34870 +22047,34871 +22048,34869 +22049,34865 +22050,34865 +22051,34865 +22052,34865 +22053,13707 +22054,13707 +22055,37278 +22056,34865 +22057,34866 +22058,34508 +22059,34508 +22060,34645 +22061,34648 +22062,34599 +22063,34601 +22064,34782 +22065,34602 +22066,34600 +22067,34598 +22068,34597 +22069,34596 +22070,34620 +22071,34621 +22072,34622 +22073,34623 +22074,34624 +22075,34625 +22076,34626 +22077,34627 +22078,34628 +22079,34629 +22080,34630 +22081,34631 +22082,34632 +22083,34633 +22084,34634 +22085,34635 +22086,34520 +22087,34521 +22088,34522 +22089,34519 +22090,34523 +22091,34524 +22092,34525 +22093,34526 +22094,34863 +22095,34691 +22096,34692 +22097,34693 +22098,34694 +22099,34695 +22100,34696 +22101,34697 +22102,34698 +22103,8026 +22104,8026 +22105,8026 +22106,34637 +22107,34638 +22108,34641 +22109,34639 +22110,34640 +22111,34642 +22112,34643 +22113,34644 +22114,59503 +22115,34873 +22116,6009 +22117,34754 +22118,15589 +22119,34753 +22120,34752 +22121,34751 +22122,34755 +22123,34751 +22124,15589 +22125,15589 +22126,15589 +22127,15589 +22128,24380 +22129,15589 +22130,7045 +22131,34679 +22132,34677 +22133,34676 +22134,34682 +22135,34681 +22136,34677 +22137,20709 +22138,34509 +22139,34510 +22140,34736 +22141,34736 +22142,34736 +22143,34736 +22144,34736 +22145,34736 +22146,1317 +22147,7287 +22148,7406 +22149,1399 +22150,1399 +22151,3665 +22152,2584 +22153,1103 +22154,34538 +22155,34538 +22156,34538 +22157,34538 +22158,34538 +22159,34542 +22160,34542 +22161,34542 +22162,34542 +22163,34542 +22164,34538 +22165,34538 +22166,34538 +22167,34674 +22168,34674 +22169,34674 +22170,34542 +22171,34542 +22172,34542 +22173,18079 +22174,34748 +22175,6342 +22176,21203 +22177,7328 +22178,34542 +22179,1246 +22180,1246 +22181,1246 +22182,1246 +22183,1246 +22184,1246 +22185,1246 +22186,1246 +22187,1246 +22188,1246 +22189,1246 +22190,1246 +22191,34515 +22192,15713 +22193,15791 +22194,34516 +22195,36968 +22196,34518 +22197,36967 +22198,34533 +22199,34534 +22200,34535 +22201,18721 +22202,34543 +22203,20769 +22204,34549 +22205,34550 +22206,34553 +22207,34555 +22208,34556 +22209,1301 +22210,34557 +22211,34557 +22212,34558 +22213,34559 +22214,1301 +22215,34560 +22216,5287 +22217,5287 +22218,34561 +22219,1301 +22220,6270 +22221,1301 +22222,6270 +22223,34564 +22224,9731 +22225,35922 +22226,3233 +22227,34572 +22228,34573 +22229,35024 +22230,23081 +22231,34593 +22232,34577 +22233,12333 +22234,34579 +22235,34535 +22236,34581 +22237,34584 +22238,34582 +22239,34583 +22240,34585 +22241,34590 +22242,34594 +22243,1281 +22244,20913 +22245,34595 +22246,34780 +22247,34605 +22248,34796 +22249,34778 +22250,34797 +22251,34779 +22252,34798 +22253,31138 +22254,34636 +22255,9834 +22256,30774 +22257,31655 +22258,983 +22259,34653 +22260,34653 +22261,8928 +22262,34674 +22263,34674 +22264,34656 +22265,34656 +22266,6555 +22267,34690 +22268,23713 +22269,24013 +22270,34708 +22271,34710 +22272,34714 +22273,34715 +22274,34717 +22275,6762 +22276,34726 +22277,62921 +22278,34725 +22279,34727 +22280,34728 +22281,62919 +22282,62920 +22283,2588 +22284,34737 +22285,34738 +22286,34739 +22287,34740 +22288,11448 +22289,34741 +22290,34742 +22291,11449 +22292,11449 +22293,34745 +22294,34746 +22295,19595 +22296,6524 +22297,34747 +22298,1143 +22299,34749 +22300,34750 +22301,34799 +22302,34781 +22303,34788 +22304,34789 +22305,34791 +22306,34790 +22307,811 +22308,1102 +22309,15274 +22310,1102 +22311,34792 +22312,811 +22313,34793 +22314,34794 +22315,6798 +22316,34795 +22317,23742 +22318,34800 +22319,34802 +22320,2593 +22321,6006 +22322,5199 +22323,26733 +22324,26733 +22325,14389 +22326,26001 +22327,9857 +22328,21961 +22329,34807 +22330,34808 +22331,24569 +22332,34810 +22333,2440 +22334,9837 +22335,34891 +22336,18790 +22337,34812 +22338,2480 +22339,31616 +22340,9852 +22341,34820 +22342,24354 +22343,33154 +22344,1588 +22345,34958 +22346,34822 +22347,22929 +22348,35010 +22349,35307 +22350,35347 +22351,35354 +22352,35337 +22353,35336 +22354,35338 +22355,35334 +22356,35340 +22357,35335 +22358,35339 +22359,35345 +22360,35344 +22361,35346 +22362,35348 +22363,35342 +22364,35343 +22365,35341 +22366,35353 +22367,35351 +22368,35356 +22369,35350 +22370,35349 +22371,35352 +22372,35355 +22373,35300 +22374,35298 +22375,35301 +22376,35299 +22377,34849 +22378,34850 +22379,34859 +22380,34860 +22381,2637 +22382,30952 +22383,36970 +22384,36969 +22385,34890 +22386,3486 +22387,13291 +22388,6270 +22389,6270 +22390,6270 +22391,34891 +22392,7798 +22393,1143 +22394,34894 +22395,34957 +22396,34956 +22397,34955 +22398,34954 +22399,34953 +22400,34961 +22401,34960 +22402,34959 +22403,9858 +22404,34896 +22405,34897 +22406,20384 +22407,42208 +22408,34899 +22409,34900 +22410,34901 +22411,34902 +22412,15014 +22413,37078 +22414,8093 +22415,19528 +22416,35049 +22417,35051 +22418,36730 +22419,35177 +22420,35067 +22421,35050 +22422,35058 +22423,35044 +22424,35619 +22425,35618 +22426,35615 +22427,35616 +22428,36972 +22429,35617 +22430,35613 +22431,35614 +22432,34923 +22433,24022 +22434,34936 +22435,34925 +22436,35415 +22437,35413 +22438,35601 +22439,35611 +22440,35409 +22441,35411 +22442,35410 +22443,35416 +22444,34924 +22445,39195 +22446,39200 +22447,39199 +22448,39197 +22449,39198 +22450,39201 +22451,41673 +22452,38617 +22453,23287 +22454,13689 +22455,23285 +22456,39707 +22457,41677 +22458,18289 +22459,39424 +22460,40304 +22461,39728 +22462,39730 +22463,39732 +22464,35752 +22465,35754 +22466,42115 +22467,35751 +22468,35746 +22469,35748 +22470,35747 +22471,35753 +22472,9653 +22473,21206 +22474,34962 +22475,34963 +22476,35054 +22477,35065 +22478,41849 +22479,35064 +22480,36351 +22481,35055 +22482,36349 +22483,35053 +22484,18021 +22485,20220 +22486,10365 +22487,9666 +22488,35159 +22489,35161 +22490,35162 +22491,35160 +22492,35173 +22493,35167 +22494,35164 +22495,35158 +22496,35523 +22497,35522 +22498,36440 +22499,35326 +22500,35525 +22501,35521 +22502,35519 +22503,35677 +22504,35185 +22505,35184 +22506,35182 +22507,35187 +22508,35186 +22509,35183 +22510,35179 +22511,35180 +22512,36354 +22513,35154 +22514,56051 +22515,35149 +22516,35148 +22517,35145 +22518,35143 +22519,35144 +22520,31577 +22521,36862 +22522,47904 +22523,35274 +22524,35273 +22525,35014 +22526,13806 +22527,18514 +22528,22924 +22529,35015 +22530,7798 +22531,7798 +22532,7798 +22533,7798 +22534,7798 +22535,7798 +22536,7798 +22537,7798 +22538,7798 +22539,7798 +22540,7798 +22541,7798 +22542,7798 +22543,7798 +22544,7798 +22545,7798 +22546,7798 +22547,7798 +22548,7798 +22549,7798 +22550,18721 +22551,7798 +22552,7798 +22553,7798 +22554,7798 +22555,7798 +22556,7798 +22557,7798 +22558,7798 +22559,7798 +22560,7798 +22561,7798 +22562,7798 +22563,7798 +22564,7798 +22565,7798 +22566,20614 +22567,4689 +22568,634 +22569,3671 +22570,16452 +22571,8270 +22572,41681 +22573,38610 +22574,41682 +22575,41683 +22576,41684 +22577,41685 +22578,41686 +22579,6349 +22580,37217 +22581,8926 +22582,8928 +22583,20775 +22584,7899 +22585,7899 +22586,7899 +22587,7899 +22588,7899 +22589,35632 +22590,15274 +22591,6270 +22592,1096 +22593,30953 +22594,1102 +22595,35025 +22596,35031 +22597,31603 +22598,26571 +22599,24730 +22600,16065 +22601,16065 +22602,16065 +22603,16065 +22604,16065 +22605,16065 +22606,16065 +22607,16065 +22608,16065 +22609,16065 +22610,16065 +22611,16065 +22612,16065 +22613,16065 +22614,16065 +22615,16065 +22616,16065 +22617,16065 +22618,16065 +22619,16065 +22620,16065 +22621,16065 +22622,16065 +22623,16065 +22624,16065 +22625,16065 +22626,16065 +22627,31603 +22628,17893 +22629,1096 +22630,35631 +22631,35634 +22632,35633 +22633,35057 +22634,4691 +22635,35045 +22636,35046 +22637,32745 +22638,35048 +22639,18703 +22640,10546 +22641,35056 +22642,36577 +22643,25467 +22644,35068 +22645,39722 +22646,21610 +22647,1102 +22648,33211 +22649,33211 +22650,33211 +22651,35069 +22652,35302 +22653,14023 +22654,35286 +22655,35283 +22656,35071 +22657,6543 +22658,35076 +22659,6543 +22660,35077 +22661,35290 +22662,35303 +22663,35287 +22664,36436 +22665,36435 +22666,36437 +22667,35090 +22668,35091 +22669,35276 +22670,35277 +22671,35275 +22672,35069 +22673,35093 +22674,6497 +22675,21913 +22676,35093 +22677,35585 +22678,24730 +22679,21202 +22680,3666 +22681,24569 +22682,35465 +22683,1301 +22684,1301 +22685,1301 +22686,1301 +22687,1301 +22688,35094 +22689,35095 +22690,35096 +22691,35097 +22692,1301 +22693,35098 +22694,1301 +22695,1301 +22696,1301 +22697,1301 +22698,1301 +22699,35278 +22700,35282 +22701,35289 +22702,36438 +22703,1301 +22704,1301 +22705,1301 +22706,1317 +22707,31616 +22708,31616 +22709,35112 +22710,18089 +22711,35114 +22712,35115 +22713,35116 +22714,35118 +22715,35119 +22716,35120 +22717,35448 +22718,41850 +22719,1588 +22720,35125 +22721,24022 +22722,30661 +22723,3018 +22724,35129 +22725,9842 +22726,35130 +22727,33566 +22728,44269 +22729,1301 +22730,35138 +22731,35139 +22732,34303 +22733,35140 +22734,35141 +22735,3024 +22736,35152 +22737,29948 +22738,35151 +22739,1103 +22740,35157 +22741,18962 +22742,35169 +22743,4511 +22744,19950 +22745,36971 +22746,1282 +22747,32927 +22748,35093 +22749,35157 +22750,18962 +22751,35069 +22752,32927 +22753,35175 +22754,17403 +22755,35178 +22756,35207 +22757,35206 +22758,35209 +22759,42883 +22760,35214 +22761,35213 +22762,35216 +22763,35217 +22764,35219 +22765,811 +22766,1301 +22767,1301 +22768,1301 +22769,1301 +22770,1301 +22771,1301 +22772,1301 +22773,1301 +22774,1301 +22775,18080 +22776,2474 +22777,34281 +22778,1288 +22779,2357 +22780,18050 +22781,35224 +22782,15120 +22783,20014 +22784,28464 +22785,37663 +22786,37877 +22787,37393 +22788,37662 +22789,37661 +22790,44296 +22791,37412 +22792,37394 +22793,37413 +22794,38652 +22795,37665 +22796,15742 +22797,37414 +22798,35239 +22799,35240 +22800,35241 +22801,35242 +22802,35819 +22803,35244 +22804,35709 +22805,35247 +22806,35247 +22807,36371 +22808,35250 +22809,36518 +22810,35370 +22811,35870 +22812,35253 +22813,35255 +22814,35256 +22815,35371 +22816,35258 +22817,35259 +22818,35577 +22819,35573 +22820,35262 +22821,35263 +22822,811 +22823,37865 +22824,37842 +22825,37863 +22826,37855 +22827,37848 +22828,37859 +22829,37807 +22830,37860 +22831,37812 +22832,37808 +22833,37844 +22834,37849 +22835,37846 +22836,37845 +22837,37858 +22838,37857 +22839,37856 +22840,37862 +22841,37815 +22842,37814 +22843,31181 +22844,37812 +22845,37816 +22846,37810 +22847,37813 +22848,37861 +22849,37847 +22850,37809 +22851,37850 +22852,27263 +22853,37851 +22854,37852 +22855,31026 +22856,31035 +22857,31183 +22858,31050 +22859,31027 +22860,31097 +22861,37853 +22862,31182 +22863,27265 +22864,31036 +22865,27256 +22866,37854 +22867,27279 +22868,31051 +22869,31028 +22870,31098 +22871,44302 +22872,27274 +22873,31052 +22874,31048 +22875,30367 +22876,31185 +22877,31037 +22878,27267 +22879,31039 +22880,31040 +22881,31032 +22882,31033 +22883,26144 +22884,27260 +22885,30351 +22886,31102 +22887,31186 +22888,18499 +22889,15773 +22890,1103 +22891,1103 +22892,7122 +22893,35267 +22894,35268 +22895,35639 +22896,20784 +22897,1103 +22898,2516 +22899,2516 +22900,1102 +22901,1102 +22902,1102 +22903,15274 +22904,15274 +22905,1102 +22906,15274 +22907,1102 +22908,15274 +22909,1102 +22910,15274 +22911,1102 +22912,15274 +22913,15274 +22914,15274 +22915,15274 +22916,15274 +22917,15274 +22918,15274 +22919,15274 +22920,15274 +22921,15274 +22922,15274 +22923,15274 +22924,15274 +22925,15274 +22926,15274 +22927,15274 +22928,2516 +22929,2516 +22930,3033 +22931,2516 +22932,3032 +22933,20661 +22934,34863 +22935,19763 +22936,35310 +22937,35817 +22938,35312 +22939,35313 +22940,35324 +22941,35325 +22942,35642 +22943,35358 +22944,3029 +22945,13430 +22946,7695 +22947,35359 +22948,7629 +22949,18021 +22950,6006 +22951,9975 +22952,23130 +22953,2967 +22954,35361 +22955,35404 +22956,36924 +22957,1544 +22958,20084 +22959,35363 +22960,35366 +22961,35367 +22962,36540 +22963,3006 +22964,9644 +22965,3708 +22966,16906 +22967,36434 +22968,35369 +22969,7603 +22970,3033 +22971,28159 +22972,13430 +22973,3029 +22974,7695 +22975,7629 +22976,2586 +22977,3032 +22978,9345 +22979,6011 +22980,44339 +22981,35373 +22982,20674 +22983,36424 +22984,35390 +22985,33322 +22986,12718 +22987,36996 +22988,35710 +22989,31604 +22990,35378 +22991,35380 +22992,35381 +22993,35399 +22994,35383 +22995,35392 +22996,41470 +22997,20903 +22998,35395 +22999,35396 +23000,35398 +23001,35400 +23002,35406 +23003,35402 +23004,34953 +23005,34956 +23006,34959 +23007,35405 +23008,811 +23009,35262 +23010,811 +23011,811 +23012,811 +23013,811 +23014,36376 +23015,59497 +23016,811 +23017,35408 +23018,35313 +23019,35419 +23020,35421 +23021,35422 +23022,22611 +23023,35358 +23024,16065 +23025,35423 +23026,35425 +23027,35429 +23028,31616 +23029,35813 +23030,35430 +23031,35431 +23032,35432 +23033,36433 +23034,35434 +23035,42767 +23036,35437 +23037,35438 +23038,35423 +23039,35259 +23040,35439 +23041,35442 +23042,35439 +23043,35576 +23044,35246 +23045,35444 +23046,35445 +23047,35429 +23048,35816 +23049,35792 +23050,35446 +23051,35450 +23052,35456 +23053,35359 +23054,36378 +23055,1013 +23056,35574 +23057,35358 +23058,35437 +23059,35472 +23060,35472 +23061,35472 +23062,35472 +23063,35472 +23064,35472 +23065,35472 +23066,35472 +23067,35472 +23068,35508 +23069,36370 +23070,35514 +23071,36478 +23072,36279 +23073,6720 +23074,7054 +23075,35654 +23076,7339 +23077,35916 +23078,35550 +23079,35917 +23080,33298 +23081,36479 +23082,35542 +23083,15788 +23084,35545 +23085,35544 +23086,35546 +23087,36077 +23088,35554 +23089,36480 +23090,35555 +23091,35556 +23092,35557 +23093,36481 +23094,35930 +23095,35930 +23096,35930 +23097,35930 +23098,35845 +23099,35845 +23100,35845 +23101,35845 +23102,20978 +23103,35843 +23104,35843 +23105,35843 +23106,35843 +23107,35919 +23108,35847 +23109,35847 +23110,35847 +23111,35847 +23112,35918 +23113,35848 +23114,35848 +23115,35848 +23116,35848 +23117,35920 +23118,35852 +23119,35852 +23120,35852 +23121,35852 +23122,24674 +23123,26865 +23124,35563 +23125,18172 +23126,35564 +23127,35565 +23128,35569 +23129,30833 +23130,1102 +23131,1102 +23132,35571 +23133,15274 +23134,15274 +23135,1102 +23136,15274 +23137,1102 +23138,15274 +23139,2456 +23140,1102 +23141,1102 +23142,15274 +23143,15274 +23144,1102 +23145,15274 +23146,15274 +23147,15274 +23148,1102 +23149,15274 +23150,15274 +23151,15274 +23152,1102 +23153,15274 +23154,15274 +23155,15274 +23156,28647 +23157,7339 +23158,13496 +23159,13496 +23160,26736 +23161,21845 +23162,11448 +23163,35583 +23164,18114 +23165,35586 +23166,35587 +23167,35588 +23168,35589 +23169,9853 +23170,18339 +23171,28804 +23172,6410 +23173,28648 +23174,2738 +23175,26732 +23176,35592 +23177,35593 +23178,22994 +23179,30562 +23180,35595 +23181,35596 +23182,30562 +23183,35596 +23184,35595 +23185,35595 +23186,35596 +23187,30562 +23188,30562 +23189,35595 +23190,35596 +23191,26571 +23192,15817 +23193,24011 +23194,35274 +23195,35620 +23196,35621 +23197,34954 +23198,34955 +23199,34957 +23200,34956 +23201,34960 +23202,34960 +23203,34961 +23204,34959 +23205,30601 +23206,35649 +23207,35621 +23208,35621 +23209,35657 +23210,3568 +23211,35657 +23212,35675 +23213,6773 +23214,10377 +23215,3568 +23216,9731 +23217,18049 +23218,9731 +23219,30535 +23220,36369 +23221,35643 +23222,13002 +23223,22207 +23224,6404 +23225,33304 +23226,35713 +23227,811 +23228,1399 +23229,20009 +23230,35716 +23231,35761 +23232,25646 +23233,3494 +23234,35718 +23235,32432 +23236,4171 +23237,35423 +23238,35719 +23239,22200 +23240,33299 +23241,35731 +23242,35818 +23243,31049 +23244,30071 +23245,35738 +23246,35744 +23247,35745 +23248,20803 +23249,24051 +23250,36448 +23251,31184 +23252,31047 +23253,28106 +23254,28935 +23255,27258 +23256,30381 +23257,30358 +23258,31038 +23259,30072 +23260,30382 +23261,31030 +23262,31031 +23263,31099 +23264,31100 +23265,8295 +23266,33372 +23267,6777 +23268,983 +23269,23739 +23270,25475 +23271,12333 +23272,30315 +23273,31084 +23274,30321 +23275,31082 +23276,30316 +23277,31085 +23278,36006 +23279,35798 +23280,36003 +23281,36004 +23282,31060 +23283,36007 +23284,31075 +23285,31068 +23286,35808 +23287,26752 +23288,36010 +23289,36008 +23290,36013 +23291,31063 +23292,35799 +23293,35800 +23294,35805 +23295,27235 +23296,30385 +23297,36017 +23298,36015 +23299,36014 +23300,31083 +23301,26659 +23302,36018 +23303,36021 +23304,36022 +23305,36024 +23306,35801 +23307,35802 +23308,40407 +23309,35807 +23310,36040 +23311,36027 +23312,36669 +23313,36044 +23314,35810 +23315,35811 +23316,36042 +23317,36038 +23318,36041 +23319,27231 +23320,33585 +23321,12647 +23322,36138 +23323,41462 +23324,44563 +23325,35830 +23326,35831 +23327,6399 +23328,35839 +23329,6624 +23330,30601 +23331,30600 +23332,6501 +23333,30634 +23334,2516 +23335,35855 +23336,15710 +23337,15791 +23338,36270 +23339,1143 +23340,4110 +23341,4110 +23342,4110 +23343,1281 +23344,36120 +23345,36118 +23346,2380 +23347,10671 +23348,36122 +23349,9977 +23350,9975 +23351,9976 +23352,36272 +23353,35871 +23354,17957 +23355,25480 +23356,35878 +23357,18053 +23358,10449 +23359,2516 +23360,3486 +23361,29354 +23362,35992 +23363,35991 +23364,12310 +23365,18698 +23366,35884 +23367,12661 +23368,8308 +23369,35899 +23370,35898 +23371,3405 +23372,37415 +23373,36958 +23374,19312 +23375,35903 +23376,6954 +23377,16847 +23378,9826 +23379,7025 +23380,30634 +23381,2516 +23382,35912 +23383,26375 +23384,3177 +23385,35871 +23386,17957 +23387,36273 +23388,35929 +23389,1025 +23390,20084 +23391,6432 +23392,19772 +23393,20176 +23394,983 +23395,18698 +23396,1544 +23397,16817 +23398,20722 +23399,19011 +23400,23044 +23401,28464 +23402,35932 +23403,22687 +23404,6777 +23405,9502 +23406,25766 +23407,16805 +23408,17014 +23409,20550 +23410,36960 +23411,20401 +23412,10434 +23413,14552 +23414,14276 +23415,3006 +23416,35945 +23417,20784 +23418,20535 +23419,20425 +23420,35959 +23421,5145 +23422,35961 +23423,35962 +23424,38645 +23425,38648 +23426,38647 +23427,38644 +23428,37666 +23429,35968 +23430,5145 +23431,35961 +23432,35962 +23433,35974 +23434,35975 +23435,6342 +23436,39911 +23437,44729 +23438,39928 +23439,39932 +23440,39938 +23441,39933 +23442,36271 +23443,35948 +23444,3664 +23445,44950 +23446,39489 +23447,39490 +23448,39487 +23449,43358 +23450,36036 +23451,36045 +23452,36265 +23453,36266 +23454,36064 +23455,36065 +23456,36066 +23457,36067 +23458,36068 +23459,36069 +23460,15770 +23461,36073 +23462,36267 +23463,36268 +23464,36078 +23465,36079 +23466,36080 +23467,36081 +23468,36267 +23469,36268 +23470,36103 +23471,36104 +23472,36108 +23473,36124 +23474,36125 +23475,36126 +23476,36133 +23477,36134 +23478,36125 +23479,36140 +23480,35178 +23481,36154 +23482,38318 +23483,3331 +23484,38319 +23485,22271 +23486,22271 +23487,39451 +23488,38316 +23489,38321 +23490,38327 +23491,38328 +23492,18080 +23493,44656 +23494,39177 +23495,2474 +23496,34281 +23497,39450 +23498,39376 +23499,39449 +23500,3018 +23501,19494 +23502,38681 +23503,38682 +23504,38683 +23505,20076 +23506,38684 +23507,36206 +23508,38685 +23509,38686 +23510,38687 +23511,38689 +23512,38690 +23513,42874 +23514,42875 +23515,42877 +23516,42876 +23517,38695 +23518,38696 +23519,38697 +23520,38698 +23521,38699 +23522,38700 +23523,36230 +23524,38701 +23525,38702 +23526,38703 +23527,44089 +23528,39192 +23529,39193 +23530,39194 +23531,34236 +23532,38705 +23533,38706 +23534,36416 +23535,44880 +23536,44877 +23537,36248 +23538,36249 +23539,36250 +23540,36253 +23541,36255 +23542,41709 +23543,36259 +23544,36261 +23545,36276 +23546,36263 +23547,36277 +23548,36275 +23549,36274 +23550,37377 +23551,8545 +23552,7121 +23553,36317 +23554,36283 +23555,36285 +23556,45615 +23557,34484 +23558,36290 +23559,38757 +23560,16161 +23561,16161 +23562,16161 +23563,45805 +23564,45806 +23565,45807 +23566,8545 +23567,27454 +23568,36318 +23569,35448 +23570,36338 +23571,41678 +23572,41697 +23573,39486 +23574,15274 +23575,38759 +23576,38760 +23577,35575 +23578,21672 +23579,24152 +23580,36375 +23581,7287 +23582,36381 +23583,36382 +23584,18117 +23585,18099 +23586,18102 +23587,39942 +23588,19528 +23589,38239 +23590,1102 +23591,1102 +23592,1102 +23593,1102 +23594,1102 +23595,1102 +23596,1102 +23597,1102 +23598,1102 +23599,1102 +23600,1102 +23601,1102 +23602,1102 +23603,1102 +23604,1102 +23605,6270 +23606,6270 +23607,6270 +23608,6270 +23609,6270 +23610,6270 +23611,6270 +23612,6270 +23613,6270 +23614,4809 +23615,6270 +23616,6689 +23617,6270 +23618,1102 +23619,1102 +23620,1096 +23621,1096 +23622,1096 +23623,1096 +23624,1096 +23625,1096 +23626,1096 +23627,1096 +23628,1096 +23629,1096 +23630,1096 +23631,1096 +23632,1096 +23633,1096 +23634,1096 +23635,1096 +23636,1096 +23637,1096 +23638,1102 +23639,6270 +23640,32426 +23641,36405 +23642,39041 +23643,2480 +23644,9288 +23645,44562 +23646,12331 +23647,26494 +23648,26494 +23649,26494 +23650,26494 +23651,26494 +23652,26494 +23653,26494 +23654,3673 +23655,34509 +23656,34744 +23657,11448 +23658,2588 +23659,25467 +23660,36417 +23661,36419 +23662,35448 +23663,34203 +23664,36425 +23665,36426 +23666,36430 +23667,36429 +23668,22985 +23669,36431 +23670,2357 +23671,35843 +23672,18574 +23673,36442 +23674,9154 +23675,7841 +23676,25467 +23677,21470 +23678,30690 +23679,36446 +23680,36446 +23681,13291 +23682,35178 +23683,26732 +23684,32426 +23685,19497 +23686,35299 +23687,3596 +23688,7127 +23689,8117 +23690,12547 +23691,36454 +23692,6661 +23693,3331 +23694,18050 +23695,24153 +23696,15788 +23697,26595 +23698,24211 +23699,36460 +23700,31256 +23701,31257 +23702,26595 +23703,26595 +23704,18080 +23705,38283 +23706,35016 +23707,1438 +23708,36467 +23709,38284 +23710,36469 +23711,1246 +23712,36470 +23713,18048 +23714,34282 +23715,18114 +23716,36471 +23717,963 +23718,2638 +23719,16836 +23720,36474 +23721,36475 +23722,20894 +23723,36476 +23724,36135 +23725,7899 +23726,33967 +23727,7899 +23728,7899 +23729,36477 +23730,1246 +23731,1246 +23732,36482 +23733,35178 +23734,1246 +23735,6494 +23736,40541 +23737,25482 +23738,36487 +23739,23229 +23740,36488 +23741,35247 +23742,43685 +23743,35247 +23744,15741 +23745,1246 +23746,43687 +23747,43688 +23748,43690 +23749,29438 +23750,29439 +23751,29439 +23752,15794 +23753,19566 +23754,13002 +23755,1246 +23756,32650 +23757,22193 +23758,43889 +23759,24037 +23760,36504 +23761,40545 +23762,43890 +23763,43891 +23764,7326 +23765,7326 +23766,7326 +23767,9730 +23768,34283 +23769,34281 +23770,34279 +23771,34280 +23772,40542 +23773,40526 +23774,36511 +23775,36512 +23776,929 +23777,1093 +23778,16065 +23779,3667 +23780,1093 +23781,40543 +23782,40544 +23783,40548 +23784,40549 +23785,40550 +23786,43101 +23787,40552 +23788,1443 +23789,3233 +23790,36520 +23791,35015 +23792,36521 +23793,38745 +23794,24211 +23795,17896 +23796,24156 +23797,1093 +23798,1093 +23799,1102 +23800,6270 +23801,9154 +23802,6270 +23803,1102 +23804,6270 +23805,1102 +23806,6270 +23807,1102 +23808,6270 +23809,6270 +23810,15274 +23811,1102 +23812,1102 +23813,1102 +23814,1102 +23815,1102 +23816,1102 +23817,1325 +23818,1143 +23819,30999 +23820,31205 +23821,40557 +23822,45437 +23823,45156 +23824,46155 +23825,36539 +23826,40554 +23827,40555 +23828,43887 +23829,43886 +23830,36558 +23831,35133 +23832,35133 +23833,36566 +23834,36567 +23835,36568 +23836,40556 +23837,23229 +23838,20814 +23839,20814 +23840,36571 +23841,40553 +23842,4361 +23843,36572 +23844,36575 +23845,21366 +23846,9632 +23847,31819 +23848,18099 +23849,7087 +23850,26378 +23851,36578 +23852,2591 +23853,7649 +23854,42161 +23855,39460 +23856,36599 +23857,1103 +23858,7629 +23859,37269 +23860,21416 +23861,17329 +23862,1103 +23863,33971 +23864,1103 +23865,1103 +23866,7629 +23867,7629 +23868,7629 +23869,36589 +23870,36590 +23871,24151 +23872,2591 +23873,36592 +23874,1102 +23875,36594 +23876,36594 +23877,36594 +23878,36595 +23879,36596 +23880,36597 +23881,36598 +23882,6270 +23883,6270 +23884,6270 +23885,6270 +23886,12625 +23887,6270 +23888,1102 +23889,36600 +23890,1096 +23891,1096 +23892,1096 +23893,1096 +23894,15711 +23895,36601 +23896,8122 +23897,8122 +23898,8122 +23899,34748 +23900,36615 +23901,36617 +23902,7649 +23903,12331 +23904,36629 +23905,26494 +23906,36631 +23907,36637 +23908,36638 +23909,42479 +23910,16161 +23911,26494 +23912,26494 +23913,26494 +23914,26494 +23915,26494 +23916,26494 +23917,26494 +23918,26494 +23919,3030 +23920,18170 +23921,1168 +23922,3233 +23923,36650 +23924,27472 +23925,36652 +23926,13005 +23927,7130 +23928,25271 +23929,35448 +23930,35448 +23931,36676 +23932,36675 +23933,1246 +23934,1246 +23935,1246 +23936,1246 +23937,32846 +23938,36682 +23939,35014 +23940,6002 +23941,36682 +23942,6002 +23943,35014 +23944,36682 +23945,6002 +23946,35014 +23947,36682 +23948,6002 +23949,35014 +23950,36682 +23951,6002 +23952,35014 +23953,36682 +23954,6002 +23955,35014 +23956,36683 +23957,36682 +23958,6002 +23959,35014 +23960,36682 +23961,6002 +23962,35014 +23963,36682 +23964,6002 +23965,35014 +23966,36682 +23967,6002 +23968,35014 +23969,36682 +23970,6002 +23971,35014 +23972,36682 +23973,6002 +23974,35014 +23975,6002 +23976,36682 +23977,6002 +23978,35014 +23979,36682 +23980,6002 +23981,36687 +23982,36688 +23983,15741 +23984,35930 +23985,36675 +23986,36540 +23987,30601 +23988,30600 +23989,36693 +23990,3331 +23991,6666 +23992,7086 +23993,7048 +23994,19497 +23995,36696 +23996,40065 +23997,7164 +23998,36698 +23999,36701 +24000,7798 +24001,1102 +24002,1102 +24003,7798 +24004,35933 +24005,8628 +24006,36702 +24007,36702 +24008,36703 +24009,36704 +24010,22477 +24011,36706 +24012,36707 +24013,36708 +24014,36709 +24015,36710 +24016,36711 +24017,36712 +24018,36713 +24019,36714 +24020,39374 +24021,43142 +24022,43149 +24023,43166 +24024,43187 +24025,1769 +24026,25475 +24027,39926 +24028,39926 +24029,39926 +24030,39926 +24031,39926 +24032,39926 +24033,39927 +24034,36725 +24035,39927 +24036,39926 +24037,39927 +24038,36726 +24039,39927 +24040,36727 +24041,15857 +24042,15854 +24043,36728 +24044,36729 +24045,26537 +24046,43160 +24047,39925 +24048,39925 +24049,19566 +24050,39925 +24051,39925 +24052,39925 +24053,39925 +24054,39929 +24055,39929 +24056,39929 +24057,39929 +24058,39931 +24059,39931 +24060,39931 +24061,39931 +24062,39930 +24063,43167 +24064,43135 +24065,39930 +24066,39930 +24067,39930 +24068,20614 +24069,39050 +24070,34891 +24071,36741 +24072,6342 +24073,34034 +24074,31657 +24075,39129 +24076,35313 +24077,35358 +24078,39128 +24079,39121 +24080,39123 +24081,7290 +24082,39120 +24083,43182 +24084,36754 +24085,39122 +24086,39124 +24087,39125 +24088,39127 +24089,39126 +24090,43151 +24091,43136 +24092,39162 +24093,39210 +24094,38823 +24095,39211 +24096,38544 +24097,39209 +24098,39212 +24099,36756 +24100,33302 +24101,12547 +24102,36765 +24103,36767 +24104,23050 +24105,25481 +24106,31899 +24107,36997 +24108,14346 +24109,17119 +24110,31604 +24111,36771 +24112,16855 +24113,28013 +24114,9859 +24115,4689 +24116,36755 +24117,35358 +24118,9847 +24119,9832 +24120,9847 +24121,34274 +24122,27606 +24123,36772 +24124,39917 +24125,39916 +24126,39918 +24127,39914 +24128,39915 +24129,14443 +24130,16587 +24131,6904 +24132,24153 +24133,36775 +24134,36776 +24135,40713 +24136,18350 +24137,36780 +24138,11247 +24139,20608 +24140,31577 +24141,36786 +24142,36787 +24143,36789 +24144,36788 +24145,36790 +24146,36793 +24147,3331 +24148,3331 +24149,3331 +24150,38813 +24151,23629 +24152,36860 +24153,36861 +24154,28733 +24155,40357 +24156,36862 +24157,16023 +24158,6270 +24159,6270 +24160,6270 +24161,6270 +24162,6270 +24163,6270 +24164,6270 +24165,6270 +24166,6270 +24167,6270 +24168,6270 +24169,6270 +24170,6270 +24171,6270 +24172,6270 +24173,6270 +24174,6270 +24175,6270 +24176,6270 +24177,6270 +24178,6270 +24179,6270 +24180,6270 +24181,6270 +24182,6270 +24183,6270 +24184,36862 +24185,18072 +24186,38471 +24187,36866 +24188,38474 +24189,20977 +24190,38475 +24191,7162 +24192,6270 +24193,6270 +24194,6270 +24195,6270 +24196,6270 +24197,6270 +24198,6270 +24199,6270 +24200,6270 +24201,6270 +24202,6270 +24203,6270 +24204,6270 +24205,6270 +24206,6270 +24207,6270 +24208,6270 +24209,6270 +24210,6270 +24211,6270 +24212,6270 +24213,6270 +24214,6270 +24215,6270 +24216,6270 +24217,6270 +24218,6270 +24219,6270 +24220,6270 +24221,13806 +24222,30724 +24223,16065 +24224,36901 +24225,26858 +24226,36902 +24227,36906 +24228,634 +24229,634 +24230,30953 +24231,6371 +24232,10301 +24233,15854 +24234,38476 +24235,38477 +24236,26381 +24237,1317 +24238,19488 +24239,7913 +24240,9288 +24241,37154 +24242,38478 +24243,38479 +24244,36925 +24245,36934 +24246,19495 +24247,34863 +24248,37035 +24249,38923 +24250,38922 +24251,38921 +24252,26202 +24253,38973 +24254,36937 +24255,36938 +24256,38974 +24257,38975 +24258,29719 +24259,38976 +24260,38977 +24261,43304 +24262,38958 +24263,43421 +24264,43883 +24265,36945 +24266,38956 +24267,43884 +24268,1007 +24269,1007 +24270,24496 +24271,39460 +24272,42161 +24273,42716 +24274,42717 +24275,42718 +24276,42715 +24277,18010 +24278,16299 +24279,6700 +24280,3146 +24281,18072 +24282,1588 +24283,7397 +24284,15770 +24285,37130 +24286,35023 +24287,16321 +24288,25048 +24289,35649 +24290,4045 +24291,36984 +24292,1301 +24293,1301 +24294,1301 +24295,1301 +24296,6270 +24297,6270 +24298,6270 +24299,6270 +24300,6270 +24301,6270 +24302,6270 +24303,6270 +24304,6270 +24305,6270 +24306,6270 +24307,6270 +24308,6270 +24309,6270 +24310,6270 +24311,6270 +24312,6270 +24313,6270 +24314,1301 +24315,1301 +24316,1301 +24317,15791 +24318,34493 +24319,37000 +24320,37101 +24321,37003 +24322,33307 +24323,634 +24324,37017 +24325,37018 +24326,37019 +24327,37020 +24328,33309 +24329,47456 +24330,4110 +24331,37030 +24332,37031 +24333,37034 +24334,18456 +24335,27454 +24336,30271 +24337,35843 +24338,37044 +24339,31400 +24340,14498 +24341,7000 +24342,28633 +24343,8572 +24344,37080 +24345,1317 +24346,37046 +24347,37047 +24348,37048 +24349,23608 +24350,26001 +24351,37049 +24352,37050 +24353,37057 +24354,37054 +24355,37062 +24356,43194 +24357,43161 +24358,31664 +24359,42315 +24360,43153 +24361,43733 +24362,43197 +24363,43140 +24364,43144 +24365,43170 +24366,43156 +24367,24153 +24368,23315 +24369,1246 +24370,23315 +24371,1246 +24372,37083 +24373,24153 +24374,22193 +24375,37094 +24376,39055 +24377,23248 +24378,43195 +24379,38548 +24380,39057 +24381,39059 +24382,7649 +24383,19566 +24384,38827 +24385,31899 +24386,36578 +24387,43134 +24388,43159 +24389,41427 +24390,38837 +24391,43175 +24392,43188 +24393,40042 +24394,40900 +24395,43189 +24396,43168 +24397,43183 +24398,43169 +24399,634 +24400,2480 +24401,7328 +24402,3565 +24403,18089 +24404,1442 +24405,7273 +24406,2788 +24407,6387 +24408,24690 +24409,37135 +24410,37149 +24411,15692 +24412,40522 +24413,43198 +24414,35402 +24415,32847 +24416,19495 +24417,40521 +24418,36036 +24419,37181 +24420,6511 +24421,37181 +24422,37182 +24423,37184 +24424,37185 +24425,37186 +24426,1504 +24427,18537 +24428,15790 +24429,39448 +24430,37191 +24431,37192 +24432,37193 +24433,37057 +24434,37195 +24435,37196 +24436,37197 +24437,37198 +24438,37199 +24439,37185 +24440,37200 +24441,37201 +24442,37202 +24443,37203 +24444,37204 +24445,37205 +24446,37206 +24447,37207 +24448,37209 +24449,37214 +24450,43190 +24451,43152 +24452,43176 +24453,39074 +24454,39075 +24455,43177 +24456,43138 +24457,43199 +24458,43143 +24459,39078 +24460,38555 +24461,43200 +24462,9858 +24463,43139 +24464,39081 +24465,43154 +24466,43171 +24467,15788 +24468,37210 +24469,37215 +24470,22271 +24471,31238 +24472,9666 +24473,37218 +24474,37219 +24475,18519 +24476,16211 +24477,22193 +24478,12310 +24479,16209 +24480,37222 +24481,43191 +24482,7726 +24483,21975 +24484,21975 +24485,1288 +24486,37223 +24487,8737 +24488,8042 +24489,8042 +24490,9154 +24491,24591 +24492,1246 +24493,37226 +24494,37234 +24495,43311 +24496,37236 +24497,37237 +24498,37237 +24499,1155 +24500,1288 +24501,18107 +24502,37238 +24503,37241 +24504,37240 +24505,4826 +24506,36540 +24507,36597 +24508,36675 +24509,36693 +24510,37250 +24511,37249 +24512,37257 +24513,38287 +24514,3118 +24515,18092 +24516,959 +24517,18096 +24518,18095 +24519,959 +24520,35013 +24521,36682 +24522,37271 +24523,12625 +24524,39902 +24525,31721 +24526,29859 +24527,29858 +24528,27088 +24529,29860 +24530,31210 +24531,29865 +24532,25226 +24533,4841 +24534,29867 +24535,26537 +24536,29863 +24537,29864 +24538,37282 +24539,26534 +24540,34863 +24541,3427 +24542,37293 +24543,7164 +24544,39539 +24545,44561 +24546,39543 +24547,45932 +24548,37303 +24549,39540 +24550,41561 +24551,23713 +24552,41717 +24553,45148 +24554,41716 +24555,41715 +24556,41714 +24557,41557 +24558,23229 +24559,23229 +24560,12734 +24561,29793 +24562,29798 +24563,31263 +24564,29792 +24565,29799 +24566,29800 +24567,26681 +24568,24022 +24569,28828 +24570,30870 +24571,23717 +24572,29795 +24573,7630 +24575,37970 +24576,37327 +24577,37328 +24578,37329 +24579,40185 +24580,42766 +24581,40184 +24582,39623 +24583,40693 +24584,12865 +24585,41844 +24586,40692 +24587,1058 +24588,16566 +24589,7881 +24590,40700 +24591,40698 +24592,40702 +24593,40703 +24594,40312 +24595,16786 +24596,40701 +24597,38064 +24598,40706 +24599,40708 +24600,40704 +24601,19990 +24602,40707 +24603,13672 +24604,40709 +24605,16807 +24606,38437 +24607,38444 +24608,38441 +24609,42766 +24610,38442 +24611,9999 +24612,16790 +24613,38736 +24614,38737 +24615,38740 +24616,9555 +24617,44718 +24618,38739 +24619,38741 +24620,16555 +24621,7881 +24622,39008 +24623,39009 +24624,16797 +24625,42386 +24626,39010 +24627,39011 +24628,16804 +24629,39093 +24630,39089 +24631,39092 +24632,39090 +24633,39091 +24634,14529 +24635,39094 +24636,39088 +24637,29929 +24638,39334 +24639,39337 +24640,39335 +24641,16638 +24642,39336 +24643,39338 +24644,16905 +24645,39395 +24646,39396 +24647,39976 +24648,39398 +24649,39405 +24650,39399 +24651,39403 +24652,39397 +24653,16819 +24654,14403 +24655,39509 +24656,14404 +24657,39511 +24658,39507 +24659,39510 +24660,39506 +24661,39778 +24662,39777 +24663,39781 +24664,39779 +24665,39783 +24666,39780 +24667,39782 +24668,16892 +24669,39882 +24670,39883 +24671,39885 +24672,39884 +24673,39887 +24674,39886 +24675,16637 +24676,16636 +24677,16704 +24678,16703 +24679,39977 +24680,16702 +24681,44265 +24682,16701 +24683,16706 +24684,9894 +24685,16704 +24686,16703 +24687,16700 +24688,16702 +24689,42386 +24690,16701 +24691,16706 +24692,9894 +24693,40154 +24694,40720 +24695,40718 +24696,40722 +24697,41852 +24698,40719 +24699,38830 +24700,40717 +24701,40724 +24702,40723 +24703,40727 +24704,40726 +24705,42209 +24706,40728 +24707,40729 +24708,17010 +24709,17124 +24710,38351 +24711,38352 +24712,38354 +24713,39671 +24714,38356 +24715,38355 +24716,38350 +24717,38415 +24718,38416 +24719,9511 +24720,14383 +24721,44882 +24722,2628 +24723,14205 +24724,38414 +24725,38658 +24726,38657 +24727,38663 +24728,38661 +24729,44657 +24730,17031 +24731,38664 +24732,38654 +24733,38862 +24734,38857 +24735,38856 +24736,38858 +24737,41853 +24738,38860 +24739,38861 +24740,14803 +24741,39096 +24742,39097 +24743,8701 +24744,14400 +24745,39098 +24746,43404 +24747,27667 +24748,39095 +24749,39319 +24750,13864 +24751,39670 +24752,39320 +24753,16137 +24754,39321 +24755,39322 +24756,17172 +24757,39469 +24758,39466 +24759,39468 +24760,14583 +24761,39471 +24762,39467 +24763,39470 +24764,9546 +24765,16947 +24766,39496 +24767,39494 +24768,39493 +24769,45166 +24770,39492 +24771,39498 +24772,17024 +24773,39736 +24774,39737 +24775,39746 +24776,39744 +24777,35629 +24778,39738 +24779,26035 +24780,3652 +24781,39895 +24782,37332 +24783,39896 +24784,9548 +24785,39897 +24786,40149 +24787,39898 +24788,39900 +24789,27706 +24790,16704 +24791,16703 +24792,16700 +24793,16702 +24794,18422 +24795,16701 +24796,16706 +24797,9894 +24798,16704 +24799,16703 +24800,16700 +24801,16702 +24802,42460 +24803,16701 +24804,16706 +24805,9894 +24806,40737 +24807,40734 +24808,40731 +24809,40732 +24810,40733 +24811,40735 +24812,40736 +24813,40730 +24814,40745 +24815,40741 +24816,40739 +24817,40740 +24818,40742 +24819,40129 +24820,40744 +24821,40738 +24822,42104 +24823,42107 +24824,42105 +24825,42106 +24826,42103 +24827,42108 +24828,42109 +24829,39787 +24830,49703 +24831,38627 +24832,38608 +24833,38626 +24834,38628 +24835,38629 +24836,38630 +24837,38625 +24838,38851 +24839,38845 +24840,16725 +24841,38844 +24842,42201 +24843,32337 +24844,38848 +24845,38843 +24846,38873 +24847,38868 +24848,38865 +24849,38867 +24850,41377 +24851,38871 +24852,38872 +24853,38866 +24854,25775 +24855,40252 +24856,13011 +24857,40254 +24858,40255 +24859,40256 +24860,40257 +24861,40258 +24862,39302 +24863,39305 +24864,39304 +24865,39306 +24866,44677 +24867,39307 +24868,39308 +24869,39303 +24870,39436 +24871,39442 +24872,11497 +24873,39441 +24874,25791 +24875,39443 +24876,39445 +24877,28596 +24878,39513 +24879,41953 +24880,39514 +24881,39515 +24882,42439 +24883,39518 +24884,39520 +24885,13508 +24886,39786 +24887,39789 +24888,39788 +24889,39790 +24890,39793 +24891,39792 +24892,39794 +24893,39787 +24894,39983 +24895,39980 +24896,39979 +24897,39981 +24898,39986 +24899,39982 +24900,39985 +24901,39988 +24902,39809 +24903,39812 +24904,39810 +24905,39814 +24906,42461 +24907,39704 +24908,39815 +24909,39813 +24910,16704 +24911,40183 +24912,16700 +24913,16702 +24914,42462 +24915,39171 +24916,16706 +24917,9894 +24918,40748 +24919,40758 +24920,40746 +24921,40747 +24922,42214 +24923,40756 +24924,40757 +24925,40759 +24926,40761 +24927,40765 +24928,40762 +24929,40763 +24930,44883 +24931,40764 +24932,28403 +24933,40766 +24934,40767 +24935,40774 +24936,40769 +24937,40770 +24938,40771 +24939,40772 +24940,40773 +24941,40768 +24942,38357 +24943,40352 +24944,38359 +24945,38360 +24946,45182 +24947,38362 +24948,40303 +24949,38358 +24950,39174 +24951,49767 +24952,49764 +24953,49765 +24954,44684 +24955,49766 +24956,16106 +24957,44766 +24958,44274 +24959,44277 +24960,44273 +24961,44275 +24962,44278 +24963,44279 +24964,40303 +24965,44272 +24966,39803 +24967,39805 +24968,39800 +24969,39804 +24970,42215 +24971,39807 +24972,39802 +24973,39801 +24974,44280 +24975,39384 +24976,39377 +24977,39382 +24978,39386 +24979,39385 +24980,39379 +24981,39378 +24982,39410 +24983,39414 +24984,39409 +24985,39412 +24986,45181 +24987,40772 +24988,39416 +24989,39411 +24990,39612 +24991,39615 +24992,39613 +24993,39614 +24994,44686 +24995,39617 +24996,39620 +24997,39618 +24998,39643 +24999,39646 +25000,39641 +25001,39644 +25002,45183 +25003,39647 +25004,39651 +25005,39648 +25006,39868 +25007,39869 +25008,39865 +25009,39866 +25010,39873 +25011,39870 +25012,39867 +25013,39871 +25014,44334 +25015,44340 +25016,40688 +25017,44336 +25018,48246 +25019,44279 +25020,44335 +25021,39170 +25022,44346 +25023,44349 +25024,44341 +25025,44345 +25026,42390 +25027,44347 +25028,39651 +25029,44348 +25030,40775 +25031,40776 +25032,40777 +25033,38589 +25034,38665 +25035,26027 +25036,27974 +25037,39391 +25038,30689 +25039,29630 +25040,25958 +25041,15236 +25042,16707 +25043,16707 +25044,31655 +25045,24569 +25046,31616 +25047,9839 +25048,23629 +25049,24569 +25050,23608 +25051,28831 +25052,31616 +25053,23728 +25054,9832 +25055,24569 +25056,9834 +25057,9834 +25058,31889 +25059,31604 +25060,38348 +25061,9657 +25062,38809 +25063,39000 +25064,39023 +25065,39390 +25066,39023 +25067,6539 +25068,9857 +25069,39877 +25070,4841 +25071,4841 +25072,26046 +25073,40781 +25074,40782 +25075,27222 +25076,38728 +25077,4743 +25078,39044 +25079,33305 +25080,38728 +25081,38728 +25082,20974 +25083,3931 +25084,20900 +25085,23835 +25086,41455 +25087,40785 +25088,40786 +25089,41458 +25090,38729 +25091,38999 +25092,39037 +25093,39339 +25094,41457 +25095,39472 +25096,38729 +25097,39863 +25098,22923 +25099,22923 +25100,40787 +25101,40788 +25102,40789 +25103,38457 +25104,38633 +25105,38853 +25106,39029 +25107,20273 +25108,39423 +25109,39604 +25110,40711 +25111,39892 +25112,40182 +25113,41469 +25114,39004 +25115,5205 +25116,40791 +25117,38418 +25118,5199 +25119,38854 +25120,39045 +25121,5205 +25122,39427 +25123,39488 +25124,39750 +25125,39610 +25126,22118 +25127,40823 +25128,40792 +25129,19622 +25130,44768 +25131,38423 +25132,38726 +25133,39001 +25134,39255 +25135,39311 +25136,39408 +25137,39527 +25138,39633 +25139,39861 +25140,40824 +25141,41952 +25142,40794 +25143,7526 +25144,40795 +25145,4802 +25146,38635 +25147,38863 +25148,39025 +25149,39310 +25150,7485 +25151,39474 +25152,39752 +25153,39890 +25154,41950 +25155,40686 +25156,40796 +25157,44329 +25158,40798 +25159,38606 +25160,38735 +25161,38864 +25162,39039 +25163,39329 +25164,39428 +25165,39491 +25166,39758 +25167,39906 +25168,40691 +25169,44330 +25170,40799 +25171,39172 +25172,38347 +25173,5074 +25174,38713 +25175,38995 +25176,39105 +25177,5120 +25178,4995 +25179,5111 +25180,39748 +25181,39987 +25182,38347 +25183,21514 +25184,40801 +25185,40802 +25186,40803 +25187,40431 +25188,8379 +25189,30572 +25190,40432 +25191,40434 +25192,40177 +25193,40178 +25194,40179 +25195,40180 +25196,40426 +25197,40427 +25198,40804 +25199,40805 +25200,40806 +25201,14029 +25202,38723 +25203,38997 +25204,39739 +25205,39387 +25206,39406 +25207,39608 +25208,39632 +25209,39862 +25210,40313 +25211,44332 +25212,40295 +25213,40294 +25214,40296 +25215,40299 +25216,40297 +25217,40300 +25218,40298 +25219,40939 +25220,39421 +25221,39603 +25222,39749 +25223,40302 +25224,40938 +25225,40940 +25226,40807 +25227,40808 +25228,40809 +25229,38461 +25230,38742 +25231,39003 +25232,39258 +25233,39287 +25234,39425 +25235,39531 +25236,39751 +25237,39894 +25238,40401 +25239,40825 +25240,44659 +25241,2786 +25242,44682 +25243,38632 +25244,6233 +25245,39007 +25246,39040 +25247,39331 +25248,39431 +25249,39607 +25250,39775 +25251,39975 +25252,2786 +25253,2786 +25254,11247 +25255,42482 +25256,10671 +25257,38419 +25258,38651 +25259,39002 +25260,38651 +25261,39333 +25262,39434 +25263,39434 +25264,39773 +25265,39864 +25266,10671 +25267,10671 +25268,44662 +25269,44660 +25270,41603 +25271,44564 +25272,44663 +25273,39005 +25274,48592 +25275,44661 +25276,44665 +25277,44664 +25278,2792 +25279,13060 +25280,39087 +25281,36494 +25282,40815 +25283,40816 +25284,40144 +25285,40131 +25286,40146 +25287,40139 +25288,40133 +25289,40155 +25290,40145 +25291,40143 +25292,40142 +25293,40136 +25294,40156 +25295,44333 +25296,40214 +25297,40817 +25298,40818 +25299,38601 +25300,38724 +25301,39006 +25302,39101 +25303,39282 +25304,39419 +25305,39530 +25306,39769 +25307,39978 +25308,41471 +25309,40158 +25310,6207 +25311,39427 +25312,38346 +25313,24033 +25314,16498 +25315,39004 +25316,39102 +25317,39389 +25318,39394 +25319,39611 +25320,39774 +25321,39875 +25322,40159 +25323,41637 +25324,35363 +25325,20373 +25326,38345 +25327,35363 +25328,38666 +25329,34939 +25330,39104 +25331,39392 +25332,39429 +25333,22145 +25334,39753 +25335,39878 +25336,21968 +25337,44331 +25338,37333 +25339,37334 +25340,37335 +25341,37327 +25342,37328 +25343,37329 +25344,37332 +25345,42766 +25346,43405 +25347,37334 +25348,37335 +25349,14935 +25350,37336 +25351,37337 +25352,37338 +25353,27946 +25354,37339 +25355,27947 +25356,37340 +25357,14935 +25358,37336 +25359,37337 +25360,37338 +25361,27946 +25362,37339 +25363,27947 +25364,37340 +25365,37341 +25366,37342 +25367,6876 +25368,6915 +25369,28391 +25370,37343 +25371,3043 +25372,37344 +25373,37341 +25374,37342 +25375,6876 +25376,6915 +25377,28391 +25378,37343 +25379,3043 +25380,37344 +25381,37348 +25382,37349 +25383,37350 +25384,25846 +25385,37351 +25386,42216 +25387,37353 +25388,37355 +25389,37348 +25390,37349 +25391,37350 +25392,25846 +25393,37351 +25394,42216 +25395,37353 +25396,37355 +25397,8478 +25398,19374 +25399,20225 +25400,20195 +25401,19716 +25402,28691 +25403,4119 +25404,20309 +25405,20721 +25406,20550 +25407,18472 +25408,18095 +25409,18095 +25410,37654 +25411,37654 +25412,18092 +25413,18092 +25414,7134 +25415,7134 +25416,30634 +25417,959 +25418,959 +25419,2588 +25420,3307 +25421,3307 +25422,2593 +25423,21202 +25424,3023 +25425,37653 +25426,37653 +25427,7202 +25428,7202 +25429,37656 +25430,37656 +25431,2874 +25432,2874 +25433,32326 +25434,23332 +25435,23332 +25436,35014 +25437,35014 +25438,6539 +25439,29697 +25440,3429 +25441,3429 +25442,38305 +25443,37651 +25444,13715 +25445,13715 +25446,7103 +25447,7103 +25448,37378 +25449,2593 +25450,37657 +25451,37657 +25452,19566 +25453,19566 +25454,37659 +25455,37659 +25456,37658 +25457,37658 +25458,19562 +25459,37392 +25460,9151 +25461,1246 +25462,1246 +25463,7999 +25464,37410 +25465,37443 +25466,18096 +25467,37424 +25468,24153 +25469,1246 +25470,59338 +25471,59494 +25472,59493 +25473,39239 +25474,59472 +25475,59475 +25476,59473 +25477,59470 +25478,37441 +25479,37440 +25480,37437 +25481,37444 +25482,37438 +25483,37436 +25484,39682 +25485,39681 +25486,37433 +25487,32297 +25488,37430 +25489,37429 +25490,37442 +25491,4045 +25492,23267 +25493,19311 +25494,28580 +25495,20299 +25496,28309 +25497,32693 +25498,38749 +25499,9834 +25500,9858 +25501,27721 +25502,37445 +25503,37446 +25504,37447 +25505,31906 +25506,37448 +25507,37449 +25508,37450 +25509,37442 +25510,37451 +25511,27938 +25512,37454 +25513,41854 +25514,27160 +25515,37457 +25516,37459 +25517,9859 +25518,37460 +25519,28262 +25520,37469 +25521,38758 +25522,27940 +25523,37472 +25524,37473 +25525,37474 +25526,1102 +25527,39239 +25528,39239 +25529,39239 +25530,44327 +25531,59469 +25532,59471 +25533,59468 +25534,37476 +25535,45013 +25536,19735 +25537,28207 +25538,40181 +25539,3665 +25540,40130 +25541,28733 +25542,9837 +25543,16130 +25544,28557 +25545,6448 +25546,37481 +25547,37482 +25548,19488 +25549,37484 +25550,36727 +25551,37483 +25552,6748 +25553,20446 +25554,11449 +25555,6748 +25556,37490 +25557,37491 +25558,37492 +25559,37493 +25560,37494 +25561,45985 +25562,15420 +25563,32395 +25564,9657 +25565,37496 +25566,37498 +25567,37500 +25568,37501 +25569,27427 +25570,39364 +25571,17269 +25572,37501 +25573,27427 +25574,23711 +25575,37504 +25576,37505 +25577,23711 +25578,37505 +25579,41069 +25580,37508 +25581,37509 +25582,37511 +25583,39363 +25584,37509 +25585,37508 +25586,12331 +25587,37524 +25588,37525 +25589,37533 +25590,9666 +25591,37534 +25592,37535 +25593,37561 +25594,26326 +25595,37537 +25596,37541 +25597,37542 +25598,37543 +25599,37544 +25600,37544 +25601,37543 +25602,37542 +25603,22792 +25604,22477 +25605,37547 +25606,28682 +25607,28682 +25608,22792 +25609,37547 +25610,37548 +25611,15008 +25612,25882 +25613,15008 +25614,25882 +25615,37548 +25616,21304 +25617,21304 +25618,26323 +25619,37549 +25620,37549 +25621,26323 +25622,39281 +25623,30704 +25624,39283 +25625,37550 +25626,30704 +25627,37551 +25628,37552 +25629,30660 +25630,37553 +25631,37553 +25632,30660 +25633,37552 +25634,3026 +25635,37555 +25636,37556 +25637,30697 +25638,29922 +25639,37557 +25640,44594 +25641,23723 +25642,37558 +25643,34954 +25644,34960 +25645,34956 +25646,7468 +25647,16028 +25648,37442 +25649,38743 +25650,38763 +25651,38765 +25652,38764 +25653,39186 +25654,38982 +25655,38983 +25656,38980 +25657,38981 +25658,37579 +25659,40164 +25660,38984 +25661,38988 +25662,38985 +25663,37589 +25664,37590 +25665,23723 +25666,9666 +25667,40160 +25668,41553 +25669,15684 +25670,41551 +25671,8664 +25672,37559 +25673,37607 +25674,37606 +25675,37605 +25676,37604 +25677,37181 +25678,31843 +25679,7450 +25680,37616 +25681,37619 +25682,37617 +25683,37618 +25684,37615 +25685,38992 +25686,38993 +25687,38991 +25688,37628 +25689,37633 +25690,37631 +25691,37634 +25692,44833 +25693,45372 +25694,45371 +25695,37648 +25696,37775 +25697,37647 +25698,37660 +25699,38746 +25700,28257 +25701,24102 +25702,25111 +25703,26378 +25704,37672 +25705,1102 +25706,1102 +25707,38748 +25708,38747 +25709,16474 +25710,23544 +25711,16632 +25712,30851 +25713,31616 +25714,9854 +25715,27422 +25716,30862 +25717,32732 +25718,26229 +25719,37681 +25720,1102 +25721,1102 +25722,1102 +25723,18096 +25724,37424 +25725,1102 +25726,1102 +25727,16028 +25728,6270 +25729,6270 +25730,6270 +25731,6270 +25732,6270 +25733,6270 +25734,6270 +25735,6270 +25736,6270 +25737,6270 +25738,6270 +25739,6270 +25740,6270 +25741,6270 +25742,6270 +25743,6270 +25744,9292 +25745,21149 +25746,7918 +25747,8927 +25748,9155 +25749,7695 +25750,7629 +25751,8927 +25752,7744 +25753,7744 +25754,8927 +25755,9155 +25756,7695 +25757,7629 +25758,37774 +25759,44606 +25760,34891 +25761,39296 +25762,41636 +25763,48502 +25764,40169 +25765,634 +25766,24154 +25767,37780 +25768,37780 +25769,37780 +25770,37442 +25771,37442 +25772,39359 +25773,43642 +25774,39357 +25775,4284 +25776,9853 +25777,29719 +25778,16892 +25779,41951 +25780,52783 +25781,27372 +25782,34031 +25783,39103 +25784,15420 +25785,9839 +25786,26551 +25787,6502 +25788,29000 +25789,27323 +25790,19020 +25791,17263 +25792,26261 +25793,37798 +25794,37799 +25795,14698 +25796,37800 +25797,37801 +25798,35442 +25799,36257 +25800,29797 +25801,35445 +25802,5287 +25803,33135 +25804,24022 +25805,34812 +25806,44596 +25807,18093 +25808,37803 +25809,31899 +25810,37805 +25811,31905 +25812,39446 +25813,15851 +25814,11947 +25815,16452 +25816,37828 +25817,4134 +25818,37829 +25819,39288 +25820,25826 +25821,17137 +25822,39286 +25823,30699 +25824,23629 +25825,28561 +25826,9842 +25827,35077 +25828,22805 +25829,23714 +25830,44876 +25831,41143 +25832,41142 +25833,41140 +25834,41138 +25835,20269 +25836,28194 +25837,3164 +25838,31934 +25839,1768 +25840,1288 +25841,37870 +25842,3233 +25843,39727 +25844,39729 +25845,39731 +25846,1102 +25847,1102 +25848,7798 +25849,7798 +25850,37879 +25851,37880 +25852,37888 +25853,37891 +25854,40622 +25855,41234 +25856,40056 +25857,40059 +25858,39952 +25859,7040 +25860,37078 +25861,20777 +25862,21369 +25863,6380 +25864,37911 +25865,30600 +25866,18010 +25867,39202 +25868,39204 +25869,1102 +25870,1102 +25871,37935 +25872,16752 +25873,20779 +25874,39740 +25875,20783 +25876,26358 +25877,26361 +25878,20773 +25879,37989 +25880,38750 +25881,38751 +25882,38752 +25883,38753 +25884,38754 +25885,20378 +25886,34282 +25887,15274 +25888,1102 +25889,4136 +25890,39205 +25891,4810 +25892,7987 +25893,39205 +25894,39205 +25895,39205 +25896,39203 +25897,39203 +25898,39203 +25899,39203 +25900,1246 +25901,39203 +25902,1102 +25903,1102 +25904,1102 +25905,6270 +25906,6270 +25907,6270 +25908,1102 +25909,6270 +25910,1102 +25911,29616 +25912,35301 +25913,31616 +25914,32395 +25915,32077 +25916,42669 +25917,28345 +25918,20601 +25919,38098 +25920,38099 +25921,28831 +25922,28364 +25923,27106 +25924,44456 +25925,44462 +25926,9834 +25927,38101 +25928,9857 +25929,26651 +25930,30889 +25931,19000 +25932,14278 +25933,26572 +25934,6808 +25935,20257 +25936,31287 +25937,31287 +25938,36578 +25939,39208 +25940,34955 +25941,43158 +25942,43146 +25943,39218 +25944,47478 +25945,43201 +25946,43173 +25947,43162 +25948,26437 +25949,18929 +25950,39226 +25951,22680 +25952,39228 +25953,43202 +25954,38560 +25955,45175 +25956,43141 +25957,43192 +25958,27420 +25959,39485 +25960,19806 +25961,26205 +25962,33534 +25963,35423 +25964,41428 +25965,44372 +25966,33732 +25967,27336 +25968,26965 +25969,27766 +25970,16881 +25971,25606 +25972,28331 +25973,20851 +25974,45177 +25975,45176 +25976,45178 +25977,45179 +25978,20619 +25979,21961 +25980,28069 +25981,28590 +25982,28421 +25983,27206 +25984,33139 +25985,42613 +25986,35968 +25987,26589 +25988,24646 +25989,9657 +25990,23728 +25991,28830 +25992,9657 +25993,9657 +25994,38129 +25995,38127 +25996,38130 +25997,41144 +25998,44009 +25999,41149 +26000,41145 +26001,41148 +26002,35178 +26003,38142 +26004,16551 +26005,38266 +26006,7533 +26007,14450 +26008,25867 +26009,12865 +26010,16821 +26011,16563 +26012,16554 +26013,28051 +26014,16927 +26015,28168 +26016,23050 +26017,15248 +26018,19029 +26019,38267 +26020,19030 +26021,7834 +26022,41379 +26023,19032 +26024,19033 +26025,16991 +26026,19034 +26027,14533 +26028,25864 +26029,16566 +26030,38268 +26031,26936 +26032,26932 +26033,4339 +26034,27175 +26035,28998 +26036,26927 +26037,26939 +26038,26930 +26039,6864 +26040,26928 +26041,26938 +26042,38158 +26043,38158 +26044,38160 +26045,28862 +26046,19764 +26047,37331 +26048,24593 +26049,12992 +26050,37192 +26051,5226 +26052,38269 +26053,1547 +26054,38265 +26055,32335 +26056,16704 +26057,16703 +26058,16700 +26059,16702 +26060,18422 +26061,16701 +26062,16706 +26063,9894 +26064,16704 +26065,16703 +26066,16700 +26067,16702 +26068,18422 +26069,16701 +26070,16706 +26071,9894 +26072,16704 +26073,16703 +26074,16700 +26075,16702 +26076,18422 +26077,16701 +26078,16706 +26079,9894 +26080,16704 +26081,16703 +26082,16700 +26083,16702 +26084,18422 +26085,16701 +26086,16706 +26087,9894 +26088,16704 +26089,16703 +26090,16700 +26091,16702 +26092,18422 +26093,16701 +26094,16706 +26095,9894 +26096,16704 +26097,16703 +26098,16700 +26099,16702 +26100,18422 +26101,16701 +26102,16706 +26103,9894 +26104,16704 +26105,16703 +26106,16700 +26107,16702 +26108,18422 +26109,16701 +26110,16706 +26111,9894 +26112,16704 +26113,16703 +26114,16700 +26115,16702 +26116,18422 +26117,16701 +26118,16706 +26119,9894 +26120,16704 +26121,16703 +26122,16700 +26123,16702 +26124,18422 +26125,16701 +26126,16706 +26127,9894 +26128,16704 +26129,16703 +26130,16700 +26131,16702 +26132,18422 +26133,16701 +26134,16706 +26135,9894 +26136,16704 +26137,16703 +26138,16700 +26139,16702 +26140,18422 +26141,16701 +26142,16706 +26143,9894 +26144,16704 +26145,16703 +26146,16700 +26147,16702 +26148,18422 +26149,16701 +26150,16706 +26151,9894 +26152,16704 +26153,16703 +26154,16700 +26155,16702 +26156,18422 +26157,16701 +26158,16706 +26159,9894 +26160,16704 +26161,16703 +26162,16700 +26163,16702 +26164,18422 +26165,16701 +26166,16706 +26167,9894 +26168,16704 +26169,16703 +26170,16700 +26171,16702 +26172,18422 +26173,16701 +26174,16706 +26175,9894 +26176,16704 +26177,16703 +26178,16700 +26179,16702 +26180,18422 +26181,16701 +26182,16706 +26183,9894 +26184,16704 +26185,16703 +26186,16700 +26187,16702 +26188,18422 +26189,16701 +26190,16706 +26191,9894 +26192,16704 +26193,16703 +26194,16700 +26195,16702 +26196,18422 +26197,16701 +26198,16706 +26199,9894 +26200,16704 +26201,16703 +26202,16700 +26203,16702 +26204,18422 +26205,16701 +26206,16706 +26207,9894 +26208,16704 +26209,16703 +26210,16700 +26211,16702 +26212,18422 +26213,16701 +26214,16706 +26215,9894 +26216,16704 +26217,16703 +26218,16700 +26219,16702 +26220,18422 +26221,16701 +26222,16706 +26223,9894 +26224,16704 +26225,16703 +26226,16700 +26227,16702 +26228,18422 +26229,16701 +26230,16706 +26231,9894 +26232,16704 +26233,16703 +26234,16700 +26235,16702 +26236,18422 +26237,16701 +26238,16706 +26239,9894 +26240,16704 +26241,16703 +26242,16700 +26243,16702 +26244,18422 +26245,16701 +26246,16706 +26247,9894 +26248,16704 +26249,16703 +26250,16700 +26251,16702 +26252,18422 +26253,16701 +26254,16706 +26255,9894 +26256,43783 +26257,43782 +26258,43778 +26259,43781 +26260,43777 +26261,43779 +26262,43784 +26263,43780 +26264,16704 +26265,16703 +26266,16700 +26267,16702 +26268,18422 +26269,16701 +26270,16706 +26271,9894 +26272,16704 +26273,16703 +26274,16700 +26275,16702 +26276,18422 +26277,16701 +26278,16706 +26279,9894 +26280,16704 +26281,16703 +26282,16700 +26283,16702 +26284,18422 +26285,16701 +26286,16706 +26287,9894 +26288,16704 +26289,16703 +26290,16700 +26291,16702 +26292,18422 +26293,16701 +26294,16706 +26295,9894 +26296,16704 +26297,16703 +26298,16700 +26299,16702 +26300,18422 +26301,16701 +26302,16706 +26303,9894 +26304,16704 +26305,16703 +26306,16700 +26307,16702 +26308,18422 +26309,16701 +26310,16706 +26311,9894 +26312,16704 +26313,16703 +26314,16700 +26315,16702 +26316,18422 +26317,16701 +26318,16706 +26319,9894 +26320,16704 +26321,16703 +26322,16700 +26323,16702 +26324,18422 +26325,16701 +26326,16706 +26327,9894 +26328,16704 +26329,16703 +26330,16700 +26331,16702 +26332,18422 +26333,16701 +26334,16706 +26335,9894 +26336,16704 +26337,16703 +26338,16700 +26339,16702 +26340,18422 +26341,16701 +26342,16706 +26343,9894 +26344,16704 +26345,16703 +26346,16700 +26347,16702 +26348,18422 +26349,16701 +26350,16706 +26351,9894 +26352,16704 +26353,16703 +26354,16700 +26355,16702 +26356,18422 +26357,16701 +26358,16706 +26359,9894 +26360,16704 +26361,16703 +26362,16700 +26363,16702 +26364,18422 +26365,16701 +26366,16706 +26367,9894 +26368,16704 +26369,16703 +26370,16700 +26371,16702 +26372,18422 +26373,16701 +26374,16706 +26375,9894 +26376,16704 +26377,16703 +26378,16700 +26379,16702 +26380,18422 +26381,16701 +26382,16706 +26383,9894 +26384,16704 +26385,16703 +26386,16700 +26387,16702 +26388,18422 +26389,16701 +26390,16706 +26391,9894 +26392,16704 +26393,16703 +26394,16700 +26395,16702 +26396,18422 +26397,16701 +26398,16706 +26399,9894 +26400,16704 +26401,16703 +26402,16700 +26403,16702 +26404,18422 +26405,16701 +26406,16706 +26407,9894 +26408,16704 +26409,16703 +26410,16700 +26411,16702 +26412,18422 +26413,16701 +26414,16706 +26415,9894 +26416,16704 +26417,16703 +26418,16700 +26419,16702 +26420,18422 +26421,16701 +26422,16706 +26423,9894 +26424,16704 +26425,16703 +26426,16700 +26427,16702 +26428,18422 +26429,16701 +26430,16706 +26431,9894 +26432,16704 +26433,16703 +26434,16700 +26435,16702 +26436,18422 +26437,16701 +26438,16706 +26439,9894 +26440,16704 +26441,16703 +26442,16700 +26443,16702 +26444,18422 +26445,16701 +26446,16706 +26447,9894 +26448,16704 +26449,16703 +26450,16700 +26451,16702 +26452,18422 +26453,16701 +26454,16706 +26455,9894 +26456,16704 +26457,16703 +26458,16700 +26459,16702 +26460,18422 +26461,16701 +26462,16706 +26463,9894 +26464,16704 +26465,16703 +26466,16700 +26467,16702 +26468,18422 +26469,16701 +26470,16706 +26471,9894 +26472,16704 +26473,16703 +26474,16700 +26475,16702 +26476,18422 +26477,16701 +26478,16706 +26479,9894 +26480,16704 +26481,16703 +26482,16700 +26483,16702 +26484,18422 +26485,16701 +26486,16706 +26487,9894 +26488,16704 +26489,16703 +26490,16700 +26491,16702 +26492,18422 +26493,16701 +26494,16706 +26495,9894 +26496,16704 +26497,16703 +26498,16700 +26499,16702 +26500,18422 +26501,16701 +26502,16706 +26503,9894 +26504,16707 +26505,16707 +26506,16707 +26507,16707 +26508,16707 +26509,16707 +26510,16707 +26511,16707 +26512,16707 +26513,16707 +26514,16707 +26515,16707 +26516,16707 +26517,16707 +26518,9834 +26519,9834 +26520,9834 +26521,9834 +26522,9834 +26523,9834 +26524,9834 +26525,9834 +26526,9834 +26527,9834 +26528,9834 +26529,9834 +26530,9834 +26531,9834 +26532,4841 +26533,4841 +26534,4841 +26535,4841 +26536,4841 +26537,4841 +26538,4841 +26539,4841 +26540,4841 +26541,4841 +26542,4841 +26543,4841 +26544,4841 +26545,4841 +26546,28449 +26547,28449 +26548,28449 +26549,28449 +26550,28449 +26551,28449 +26552,28449 +26553,28449 +26554,28449 +26555,28449 +26556,28449 +26557,28449 +26558,28449 +26559,28449 +26560,22923 +26561,22923 +26562,22923 +26563,22923 +26564,22923 +26565,22923 +26566,22923 +26567,22923 +26568,22923 +26569,22923 +26570,22923 +26571,22923 +26572,22923 +26573,22923 +26574,22118 +26575,22118 +26576,22118 +26577,22118 +26578,22118 +26579,22118 +26580,22118 +26581,22118 +26582,22118 +26583,22118 +26584,22118 +26585,43775 +26586,22118 +26587,22118 +26588,22118 +26589,5203 +26590,22118 +26591,22118 +26592,22118 +26593,22118 +26594,22118 +26595,22118 +26596,22118 +26597,22118 +26598,22118 +26599,22118 +26600,22118 +26601,22118 +26602,33299 +26603,33299 +26604,33299 +26605,33299 +26606,33299 +26607,33299 +26608,33299 +26609,33299 +26610,33299 +26611,33299 +26612,33299 +26613,33299 +26614,33299 +26615,33299 +26616,22118 +26617,22118 +26618,22118 +26619,22118 +26620,22118 +26621,22118 +26622,22118 +26623,22118 +26624,22118 +26625,22118 +26626,22118 +26627,43773 +26628,22118 +26629,22118 +26630,33299 +26631,33299 +26632,33299 +26633,33299 +26634,33299 +26635,33299 +26636,33299 +26637,33299 +26638,33299 +26639,33299 +26640,33299 +26641,33299 +26642,33299 +26643,50656 +26644,33299 +26645,33299 +26646,33299 +26647,33299 +26648,33299 +26649,33299 +26650,33299 +26651,33299 +26652,33299 +26653,33299 +26654,33299 +26655,33299 +26656,33299 +26657,33299 +26658,22118 +26659,22118 +26660,22118 +26661,22118 +26662,22118 +26663,22118 +26664,22118 +26665,22118 +26666,22118 +26667,22118 +26668,22118 +26669,22118 +26670,22118 +26671,22118 +26672,22118 +26673,22118 +26674,22118 +26675,22118 +26676,22118 +26677,22118 +26678,22118 +26679,22118 +26680,22118 +26681,22118 +26682,22118 +26683,22118 +26684,22118 +26685,22118 +26686,33299 +26687,33299 +26688,33299 +26689,33299 +26690,33299 +26691,33299 +26692,33299 +26693,33299 +26694,33299 +26695,33299 +26696,33299 +26697,33299 +26698,33299 +26699,33299 +26700,33299 +26701,33299 +26702,33299 +26703,33299 +26704,33299 +26705,33299 +26706,33299 +26707,33299 +26708,33299 +26709,33299 +26710,33299 +26711,33299 +26712,33299 +26713,33299 +26714,2786 +26715,2786 +26716,2786 +26717,2786 +26718,2786 +26719,2786 +26720,2786 +26721,2786 +26722,2786 +26723,2786 +26724,2786 +26725,2786 +26726,2786 +26727,2786 +26728,10671 +26729,10671 +26730,10671 +26731,10671 +26732,10671 +26733,10671 +26734,10671 +26735,10671 +26736,10671 +26737,10671 +26738,10671 +26739,10671 +26740,10671 +26741,10671 +26742,10671 +26743,10671 +26744,10671 +26745,10671 +26746,10671 +26747,10671 +26748,10671 +26749,10671 +26750,10671 +26751,10671 +26752,10671 +26753,10671 +26754,10671 +26755,10671 +26756,10671 +26757,10671 +26758,10671 +26759,10671 +26760,10671 +26761,10671 +26762,10671 +26763,10671 +26764,10671 +26765,10671 +26766,10671 +26767,10671 +26768,10671 +26769,10671 +26770,22118 +26771,22118 +26772,22118 +26773,22118 +26774,22118 +26775,22118 +26776,22118 +26777,22118 +26778,22118 +26779,22118 +26780,22118 +26781,22118 +26782,22118 +26783,22118 +26784,22118 +26785,22118 +26786,22118 +26787,22118 +26788,22118 +26789,22118 +26790,22118 +26791,22118 +26792,22118 +26793,22118 +26794,22118 +26795,22118 +26796,22118 +26797,22118 +26798,33299 +26799,33299 +26800,33299 +26801,33299 +26802,33299 +26803,33299 +26804,33299 +26805,33299 +26806,33299 +26807,33299 +26808,33299 +26809,33299 +26810,33299 +26811,33299 +26812,16704 +26813,16703 +26814,16700 +26815,16702 +26816,18422 +26817,16701 +26818,16706 +26819,9894 +26820,16704 +26821,16703 +26822,16700 +26823,16702 +26824,18422 +26825,16701 +26826,16706 +26827,9894 +26828,16704 +26829,16703 +26830,16700 +26831,16702 +26832,18422 +26833,16701 +26834,16706 +26835,9894 +26836,16704 +26837,16703 +26838,16700 +26839,16702 +26840,18422 +26841,16701 +26842,16706 +26843,9894 +26844,16704 +26845,16703 +26846,16700 +26847,16702 +26848,18422 +26849,16701 +26850,16706 +26851,9894 +26852,16704 +26853,16703 +26854,16700 +26855,16702 +26856,18422 +26857,16701 +26858,16706 +26859,9894 +26860,16704 +26861,16703 +26862,16700 +26863,16702 +26864,18422 +26865,16701 +26866,16706 +26867,9894 +26868,16704 +26869,16703 +26870,16700 +26871,16702 +26872,18422 +26873,16701 +26874,16706 +26875,9894 +26876,16704 +26877,16703 +26878,16700 +26879,16702 +26880,18422 +26881,16701 +26882,16706 +26883,9894 +26884,16704 +26885,16703 +26886,16700 +26887,16702 +26888,18422 +26889,16701 +26890,16706 +26891,9894 +26892,16704 +26893,16703 +26894,16700 +26895,16702 +26896,18422 +26897,16701 +26898,16706 +26899,9894 +26900,16704 +26901,16703 +26902,16700 +26903,16702 +26904,18422 +26905,16701 +26906,16706 +26907,9894 +26908,16704 +26909,16703 +26910,16700 +26911,16702 +26912,18422 +26913,16701 +26914,16706 +26915,9894 +26916,16704 +26917,16703 +26918,16700 +26919,16702 +26920,18422 +26921,16701 +26922,16706 +26923,9894 +26924,16704 +26925,16703 +26926,16700 +26927,16702 +26928,18422 +26929,16701 +26930,16706 +26931,9894 +26932,16704 +26933,16703 +26934,16700 +26935,16702 +26936,18422 +26937,16701 +26938,16706 +26939,9894 +26940,16704 +26941,16703 +26942,16700 +26943,16702 +26944,18422 +26945,16701 +26946,16706 +26947,9894 +26948,16704 +26949,16703 +26950,16700 +26951,16702 +26952,18422 +26953,16701 +26954,16706 +26955,9894 +26956,16704 +26957,16703 +26958,16700 +26959,16702 +26960,18422 +26961,16701 +26962,16706 +26963,9894 +26964,16704 +26965,16703 +26966,16700 +26967,16702 +26968,18422 +26969,16701 +26970,16706 +26971,9894 +26972,16704 +26973,16703 +26974,16700 +26975,16702 +26976,18422 +26977,16701 +26978,16706 +26979,9894 +26980,16704 +26981,16703 +26982,16700 +26983,16702 +26984,18422 +26985,16701 +26986,16706 +26987,9894 +26988,16704 +26989,16703 +26990,16700 +26991,16702 +26992,18422 +26993,16701 +26994,16706 +26995,9894 +26996,16704 +26997,16703 +26998,16700 +26999,16702 +27000,18422 +27001,16701 +27002,16706 +27003,9894 +27004,16704 +27005,16703 +27006,16700 +27007,16702 +27008,18422 +27009,16701 +27010,16706 +27011,9894 +27012,16704 +27013,16703 +27014,16700 +27015,16702 +27016,18422 +27017,16701 +27018,16706 +27019,9894 +27020,16704 +27021,16703 +27022,16700 +27023,16702 +27024,18422 +27025,16701 +27026,16706 +27027,9894 +27028,16704 +27029,16703 +27030,16700 +27031,16702 +27032,18422 +27033,16701 +27034,16706 +27035,9894 +27036,16704 +27037,16703 +27038,16700 +27039,16702 +27040,18422 +27041,16701 +27042,16706 +27043,9894 +27044,16704 +27045,16703 +27046,16700 +27047,16702 +27048,18422 +27049,16701 +27050,16706 +27051,9894 +27052,16704 +27053,16703 +27054,16700 +27055,16702 +27056,18422 +27057,16701 +27058,16706 +27059,9894 +27060,16704 +27061,16703 +27062,16700 +27063,16702 +27064,18422 +27065,16701 +27066,16706 +27067,9894 +27068,16704 +27069,16703 +27070,16700 +27071,16702 +27072,18422 +27073,16701 +27074,16706 +27075,9894 +27076,16704 +27077,16703 +27078,16700 +27079,16702 +27080,18422 +27081,16701 +27082,16706 +27083,9894 +27084,16704 +27085,16703 +27086,16700 +27087,16702 +27088,18422 +27089,16701 +27090,16706 +27091,9894 +27092,16704 +27093,16703 +27094,16700 +27095,16702 +27096,18422 +27097,16701 +27098,16706 +27099,9894 +27100,16704 +27101,16703 +27102,16700 +27103,16702 +27104,18422 +27105,16701 +27106,16706 +27107,9894 +27108,16704 +27109,16703 +27110,16700 +27111,16702 +27112,18422 +27113,16701 +27114,16706 +27115,9894 +27116,16704 +27117,16703 +27118,16700 +27119,16702 +27120,18422 +27121,16701 +27122,16706 +27123,9894 +27124,16704 +27125,16703 +27126,16700 +27127,16702 +27128,18422 +27129,16701 +27130,16706 +27131,9894 +27132,16704 +27133,16703 +27134,16700 +27135,16702 +27136,18422 +27137,16701 +27138,16706 +27139,9894 +27140,16704 +27141,16703 +27142,16700 +27143,16702 +27144,18422 +27145,16701 +27146,16706 +27147,9894 +27148,16707 +27149,16707 +27150,16707 +27151,16707 +27152,16707 +27153,16707 +27154,16707 +27155,16707 +27156,16707 +27157,16707 +27158,16707 +27159,26202 +27160,16707 +27161,16707 +27162,9834 +27163,9834 +27164,9834 +27165,9834 +27166,9834 +27167,9834 +27168,9834 +27169,9834 +27170,9834 +27171,9834 +27172,9834 +27173,9834 +27174,9834 +27175,9834 +27176,4841 +27177,4841 +27178,4841 +27179,4841 +27180,4841 +27181,4841 +27182,4841 +27183,4841 +27184,4841 +27185,4841 +27186,4841 +27187,4841 +27188,4841 +27189,4841 +27190,16707 +27191,16707 +27192,16707 +27193,16707 +27194,16707 +27195,16707 +27196,16707 +27197,16707 +27198,16707 +27199,16707 +27200,16707 +27201,16707 +27202,16707 +27203,16707 +27204,9834 +27205,9834 +27206,9834 +27207,9834 +27208,9834 +27209,9834 +27210,9834 +27211,9834 +27212,9834 +27213,9834 +27214,9834 +27215,9834 +27216,9834 +27217,9834 +27218,4841 +27219,4841 +27220,4841 +27221,4841 +27222,4841 +27223,4841 +27224,4841 +27225,4841 +27226,4841 +27227,4841 +27228,4841 +27229,4841 +27230,4841 +27231,4841 +27232,16707 +27233,16707 +27234,16707 +27235,16707 +27236,16707 +27237,16707 +27238,16707 +27239,16707 +27240,16707 +27241,16707 +27242,16707 +27243,16707 +27244,16707 +27245,16707 +27246,9834 +27247,9834 +27248,9834 +27249,9834 +27250,9834 +27251,9834 +27252,9834 +27253,9834 +27254,9834 +27255,9834 +27256,9834 +27257,9834 +27258,9834 +27259,9834 +27260,4841 +27261,4841 +27262,4841 +27263,4841 +27264,4841 +27265,4841 +27266,4841 +27267,4841 +27268,4841 +27269,4841 +27270,4841 +27271,4841 +27272,4841 +27273,4841 +27274,16707 +27275,16707 +27276,16707 +27277,16707 +27278,16707 +27279,16707 +27280,16707 +27281,16707 +27282,16707 +27283,16707 +27284,16707 +27285,16707 +27286,16707 +27287,16707 +27288,9834 +27289,9834 +27290,9834 +27291,9834 +27292,9834 +27293,9834 +27294,9834 +27295,9834 +27296,9834 +27297,9834 +27298,9834 +27299,9834 +27300,9834 +27301,9834 +27302,4841 +27303,4841 +27304,4841 +27305,4841 +27306,4841 +27307,4841 +27308,4841 +27309,4841 +27310,4841 +27311,4841 +27312,4841 +27313,4841 +27314,4841 +27315,4841 +27316,9632 +27317,2351 +27318,9632 +27319,9632 +27320,9632 +27321,9632 +27322,9632 +27323,9632 +27324,9632 +27325,9632 +27326,9632 +27327,9632 +27328,9632 +27329,9632 +27330,9632 +27331,9632 +27332,9632 +27333,9632 +27334,9632 +27335,9632 +27336,9632 +27337,9632 +27338,9632 +27339,9632 +27340,9632 +27341,9632 +27342,9632 +27343,9632 +27344,9632 +27345,9632 +27346,9632 +27347,9632 +27348,9632 +27349,9632 +27350,9632 +27351,9632 +27352,9632 +27353,9632 +27354,9632 +27355,9632 +27356,9632 +27357,9731 +27358,9632 +27359,9632 +27360,9632 +27361,9632 +27362,9632 +27363,9632 +27364,9632 +27365,9632 +27366,9632 +27367,9632 +27368,9632 +27369,9632 +27370,9632 +27371,9632 +27372,9632 +27373,9632 +27374,9632 +27375,9632 +27376,9632 +27377,9632 +27378,9632 +27379,9632 +27380,9632 +27381,9632 +27382,9632 +27383,9632 +27384,9632 +27385,9632 +27386,9632 +27387,9632 +27388,24629 +27389,20074 +27390,38270 +27391,9632 +27392,9632 +27393,9632 +27394,9632 +27395,9632 +27396,9632 +27397,9632 +27398,28503 +27399,38258 +27400,18523 +27401,38260 +27402,22929 +27403,39743 +27404,28218 +27405,38181 +27406,38182 +27407,38183 +27408,44873 +27409,43180 +27410,43184 +27411,43185 +27412,43210 +27413,31800 +27414,44407 +27415,45101 +27416,39365 +27417,43181 +27418,43193 +27419,1013 +27420,43147 +27421,992 +27422,38896 +27423,38794 +27424,38797 +27425,38899 +27426,43204 +27427,43205 +27428,43164 +27429,38893 +27430,43206 +27431,43207 +27432,35431 +27433,43186 +27434,43209 +27435,38901 +27436,28830 +27437,24713 +27438,38897 +27439,24629 +27440,38809 +27441,38898 +27442,39145 +27443,7842 +27444,38902 +27445,58861 +27446,24053 +27447,42865 +27448,26431 +27449,41645 +27450,43008 +27451,43084 +27452,42996 +27453,31664 +27454,42910 +27455,44408 +27456,42953 +27457,43639 +27458,42927 +27459,42832 +27460,40034 +27461,43015 +27462,42896 +27463,41881 +27464,31899 +27465,43073 +27466,49090 +27467,43017 +27468,42452 +27469,41144 +27470,41145 +27471,44009 +27472,41148 +27473,41149 +27474,42581 +27475,40830 +27476,41769 +27477,41655 +27478,43045 +27479,35178 +27480,38195 +27481,11449 +27482,7913 +27483,42965 +27484,5563 +27485,15163 +27486,38197 +27487,42839 +27488,44409 +27489,42851 +27490,39964 +27491,39128 +27492,42966 +27493,42903 +27494,42885 +27495,43085 +27496,38198 +27497,43035 +27498,3331 +27499,2616 +27500,1093 +27501,2616 +27502,1093 +27503,3331 +27504,3331 +27505,42867 +27506,42997 +27507,41423 +27508,42371 +27509,42410 +27510,42568 +27511,2618 +27512,41418 +27513,7913 +27514,42945 +27515,50502 +27516,50501 +27517,42975 +27518,39645 +27519,43086 +27520,42829 +27521,43009 +27522,42908 +27523,39126 +27524,44954 +27525,43087 +27526,40908 +27527,42831 +27528,43052 +27529,40039 +27530,16704 +27531,43064 +27532,1246 +27533,41452 +27534,41654 +27535,42355 +27536,42576 +27537,42446 +27538,44612 +27539,42853 +27540,43088 +27541,42887 +27542,42999 +27543,42825 +27544,39639 +27545,43018 +27546,40035 +27547,42987 +27548,42862 +27549,42931 +27550,43089 +27551,40036 +27552,28249 +27553,18114 +27554,9632 +27555,9632 +27556,9632 +27557,9632 +27558,9632 +27559,9632 +27560,9632 +27561,9632 +27562,9632 +27563,9632 +27564,9632 +27565,9632 +27566,9632 +27567,9632 +27568,9632 +27569,9632 +27570,9632 +27571,9632 +27572,9632 +27573,9632 +27574,9632 +27575,9632 +27576,9632 +27577,9632 +27578,9632 +27579,9632 +27580,9632 +27581,9632 +27582,9632 +27583,9632 +27584,9632 +27585,9632 +27586,9632 +27587,9632 +27588,9632 +27589,9632 +27590,9632 +27591,9632 +27592,9632 +27593,9632 +27594,9632 +27595,9632 +27596,9632 +27597,9632 +27598,9632 +27599,9632 +27600,9632 +27601,9632 +27602,9632 +27603,9632 +27604,9632 +27605,9632 +27606,9632 +27607,9632 +27608,9632 +27609,9632 +27610,9632 +27611,9632 +27612,9632 +27613,9632 +27614,9632 +27615,9632 +27616,9632 +27617,9632 +27618,9632 +27619,9632 +27620,9632 +27621,9632 +27622,9632 +27623,9632 +27624,9632 +27625,9632 +27626,9632 +27627,9632 +27628,9632 +27629,9632 +27630,9632 +27631,38370 +27632,38249 +27633,38250 +27634,34961 +27635,22194 +27636,39721 +27637,38261 +27638,34244 +27639,38286 +27640,38263 +27641,38264 +27642,34241 +27643,34241 +27644,38286 +27645,34244 +27646,34241 +27647,38278 +27648,38280 +27649,38276 +27650,33041 +27651,39718 +27652,38279 +27653,38285 +27654,38285 +27655,35831 +27656,39717 +27657,39719 +27658,25481 +27659,25468 +27660,39720 +27661,39114 +27662,39116 +27663,39115 +27664,39118 +27665,39119 +27666,38273 +27667,38272 +27668,25466 +27669,25472 +27670,9657 +27671,39723 +27672,42833 +27673,43090 +27674,25475 +27675,18707 +27676,38282 +27677,39726 +27678,39725 +27679,18707 +27680,21202 +27681,39724 +27682,25466 +27683,16209 +27684,1301 +27685,811 +27686,811 +27687,1102 +27688,1301 +27689,1301 +27690,1301 +27691,1301 +27692,1301 +27693,1301 +27694,1301 +27695,1301 +27696,1301 +27697,1301 +27698,1301 +27699,1301 +27700,1301 +27701,38288 +27702,41133 +27703,41134 +27704,41135 +27705,41136 +27706,41137 +27707,41154 +27708,41794 +27709,41155 +27710,42171 +27711,41157 +27712,31620 +27713,43044 +27714,43091 +27715,42217 +27716,19730 +27717,687 +27718,24506 +27719,17137 +27720,19141 +27721,34708 +27722,27791 +27723,29954 +27724,27569 +27725,44422 +27726,27057 +27727,18367 +27728,13051 +27729,4262 +27730,28303 +27731,23118 +27732,24928 +27733,31905 +27734,963 +27735,6497 +27736,1134 +27737,42454 +27738,42372 +27739,42351 +27740,28733 +27741,41771 +27742,43026 +27743,42911 +27744,39640 +27745,42886 +27746,43025 +27747,42408 +27748,42859 +27749,20293 +27750,28629 +27751,25630 +27752,20072 +27753,40214 +27754,26572 +27755,42868 +27756,16126 +27757,40358 +27758,39210 +27759,44410 +27760,43065 +27761,33808 +27762,33534 +27763,44411 +27764,42985 +27765,42948 +27766,40038 +27767,41772 +27768,42977 +27769,41773 +27770,43092 +27771,43034 +27772,42409 +27773,43010 +27774,7122 +27775,42577 +27776,42414 +27777,10449 +27778,42447 +27779,32087 +27780,24646 +27781,45147 +27782,7122 +27783,42967 +27784,39121 +27785,35917 +27786,35842 +27787,42946 +27788,42841 +27789,43093 +27790,42860 +27791,40836 +27792,40040 +27793,42912 +27794,41431 +27795,42897 +27796,42443 +27797,43066 +27798,42869 +27799,42898 +27800,42955 +27801,42583 +27802,42573 +27803,42360 +27804,43094 +27805,43407 +27806,42932 +27807,38368 +27808,38369 +27809,35842 +27810,35843 +27811,7122 +27812,10449 +27813,42835 +27814,41884 +27815,40043 +27816,43027 +27817,39230 +27818,42969 +27819,17494 +27820,35917 +27821,42902 +27822,40044 +27823,42891 +27824,42978 +27825,43020 +27826,42933 +27827,42956 +27828,40045 +27829,41776 +27830,31655 +27831,42949 +27832,31655 +27833,31655 +27834,31655 +27835,42936 +27836,38387 +27837,43067 +27838,42369 +27839,42354 +27840,41777 +27841,38389 +27842,40359 +27843,43078 +27844,42872 +27845,42915 +27846,42172 +27847,42836 +27848,43024 +27849,782 +27850,38411 +27851,38412 +27852,38413 +27853,17494 +27854,20803 +27855,40696 +27856,40697 +27857,40695 +27858,40834 +27859,40850 +27860,40852 +27861,38433 +27862,37525 +27863,35718 +27864,35718 +27865,43012 +27866,44412 +27867,42950 +27868,42561 +27869,31664 +27870,43037 +27871,40047 +27872,39965 +27873,42453 +27874,42582 +27875,42578 +27876,41778 +27877,40371 +27878,43096 +27879,41133 +27880,41134 +27881,41135 +27882,41136 +27883,41137 +27884,42870 +27885,41671 +27886,40048 +27887,43238 +27888,42889 +27889,42985 +27890,43449 +27891,40049 +27892,29827 +27893,42871 +27894,18095 +27895,35313 +27896,40050 +27897,42863 +27898,41432 +27899,41787 +27900,40051 +27901,41780 +27902,42982 +27903,40367 +27904,39125 +27905,41781 +27906,42845 +27907,43076 +27908,42413 +27909,42572 +27910,42285 +27911,43021 +27912,42944 +27913,43097 +27914,42972 +27915,42894 +27916,38370 +27917,34961 +27918,42847 +27919,43003 +27920,38571 +27921,38572 +27922,31603 +27923,24503 +27924,31603 +27925,24022 +27926,38556 +27927,38556 +27928,38679 +27929,38679 +27930,28827 +27931,28827 +27932,6360 +27933,959 +27934,6360 +27935,959 +27936,43055 +27937,39833 +27938,44904 +27939,44558 +27940,32008 +27941,4841 +27942,44558 +27943,37388 +27944,31889 +27945,9860 +27946,43099 +27947,25246 +27948,42448 +27949,34961 +27950,16704 +27951,16703 +27952,16700 +27953,16702 +27954,18422 +27955,16701 +27956,16706 +27957,9894 +27958,4841 +27959,9834 +27960,16707 +27961,33299 +27962,33299 +27963,16704 +27964,16703 +27965,16700 +27966,16702 +27967,18422 +27968,16701 +27969,16706 +27970,9894 +27971,4841 +27972,9834 +27973,16707 +27974,33299 +27975,33299 +27976,6510 +27977,42363 +27978,9858 +27979,31603 +27980,41871 +27981,31351 +27982,6484 +27983,34961 +27984,25246 +27985,43042 +27986,39958 +27987,41791 +27988,43100 +27989,34955 +27990,34955 +27991,8042 +27992,32073 +27993,44874 +27994,42900 +27995,43019 +27996,39128 +27997,16704 +27998,16703 +27999,16700 +28000,16702 +28001,18422 +28002,16701 +28003,16706 +28004,9894 +28005,4841 +28006,9834 +28007,16707 +28008,33299 +28009,33299 +28010,16704 +28011,16703 +28012,16700 +28013,16702 +28014,18422 +28015,16701 +28016,16706 +28017,9894 +28018,4841 +28019,9834 +28020,16707 +28021,33299 +28022,33299 +28023,38576 +28024,30953 +28025,17785 +28026,44599 +28027,39689 +28028,28247 +28029,19915 +28030,39271 +28031,39277 +28032,39279 +28033,40838 +28034,43101 +28035,25484 +28036,6399 +28037,38642 +28038,38659 +28039,25483 +28040,38671 +28041,38671 +28042,38671 +28043,36755 +28044,38674 +28045,23031 +28046,25271 +28047,22071 +28048,25483 +28049,38673 +28050,8660 +28051,27739 +28052,27866 +28053,40199 +28054,26871 +28055,38359 +28056,40200 +28057,25742 +28058,959 +28059,9292 +28060,40525 +28061,40524 +28062,40715 +28063,28747 +28064,39635 +28065,34961 +28066,34957 +28067,36698 +28068,1246 +28069,38711 +28070,30862 +28071,1246 +28072,1246 +28073,1246 +28074,19912 +28075,33841 +28076,9632 +28077,9632 +28078,9632 +28079,9632 +28080,9632 +28081,9632 +28082,9632 +28083,9632 +28084,9632 +28085,9632 +28086,9632 +28087,36376 +28088,9632 +28089,9632 +28090,9632 +28091,9632 +28092,9632 +28093,9632 +28094,9632 +28095,9632 +28096,9632 +28097,9632 +28098,9632 +28099,6270 +28100,24212 +28101,23731 +28102,34431 +28103,38722 +28104,38720 +28105,30953 +28106,41644 +28107,25271 +28108,15853 +28109,15853 +28110,38659 +28111,38766 +28112,21975 +28113,1102 +28114,1102 +28115,34112 +28116,36687 +28117,4777 +28118,6006 +28119,18707 +28120,20978 +28121,40037 +28122,7221 +28123,7339 +28124,42947 +28125,38930 +28126,41443 +28127,47172 +28128,41445 +28129,41758 +28130,41446 +28131,38994 +28132,39014 +28133,43826 +28134,43423 +28135,8928 +28136,41443 +28137,47172 +28138,41445 +28139,41758 +28140,41446 +28141,16554 +28142,17113 +28143,6864 +28144,20476 +28145,17051 +28146,16918 +28147,28045 +28148,22685 +28149,7560 +28150,15248 +28151,28159 +28152,20550 +28153,18659 +28154,14458 +28155,4511 +28156,28056 +28157,16868 +28158,28012 +28159,28046 +28160,11563 +28161,4339 +28162,6864 +28163,6905 +28164,20087 +28165,39107 +28166,20900 +28167,28824 +28168,39210 +28169,41972 +28170,24793 +28171,31620 +28172,31639 +28173,39666 +28174,4607 +28175,32167 +28176,38702 +28177,32755 +28178,11571 +28179,31140 +28180,32900 +28181,42213 +28182,33901 +28183,34690 +28184,41782 +28185,42980 +28186,43011 +28187,43102 +28188,37290 +28189,41417 +28190,43103 +28191,43075 +28192,43057 +28193,43759 +28194,42939 +28195,39146 +28196,39147 +28197,39148 +28198,39149 +28199,39150 +28200,39151 +28201,39154 +28202,42456 +28203,42352 +28204,42411 +28205,42359 +28206,44609 +28207,42846 +28208,39159 +28209,1399 +28210,42212 +28211,43104 +28212,43028 +28213,42566 +28214,42971 +28215,43013 +28216,41783 +28217,43105 +28218,43002 +28219,42892 +28220,64903 +28221,42864 +28222,41784 +28223,43108 +28224,47897 +28225,43040 +28226,42560 +28227,39124 +28228,42579 +28229,42367 +28230,42574 +28231,42567 +28232,42449 +28233,31889 +28234,37840 +28235,37840 +28236,37840 +28237,37840 +28238,37840 +28239,37841 +28240,37841 +28241,37841 +28242,37841 +28243,37841 +28244,39162 +28245,39162 +28246,39129 +28247,39129 +28248,43109 +28249,43110 +28250,43004 +28251,42961 +28252,43029 +28253,41554 +28254,35437 +28255,42974 +28256,26431 +28257,41785 +28258,43111 +28259,39121 +28260,42564 +28261,17785 +28262,42838 +28263,41786 +28264,43069 +28265,41448 +28266,42919 +28267,40855 +28268,42963 +28269,41396 +28270,7798 +28271,7798 +28272,7798 +28273,7798 +28274,7798 +28275,48247 +28276,7798 +28277,7798 +28278,42370 +28279,7798 +28280,7798 +28281,7798 +28282,7798 +28283,16265 +28284,18079 +28285,42353 +28286,41433 +28287,2515 +28288,41449 +28289,39189 +28290,35848 +28291,15274 +28292,39227 +28293,42069 +28294,42385 +28295,42379 +28296,39650 +28297,67267 +28298,41560 +28299,41558 +28300,41562 +28301,35430 +28302,39278 +28303,28682 +28304,43005 +28305,39278 +28306,43014 +28307,42379 +28308,41559 +28309,41559 +28310,42380 +28311,40856 +28312,42380 +28313,42759 +28314,42760 +28315,42173 +28316,43239 +28317,42984 +28318,43043 +28319,38679 +28320,46606 +28321,33808 +28322,43112 +28323,24022 +28324,42849 +28325,40355 +28326,39330 +28327,39121 +28328,43113 +28329,32103 +28330,32100 +28331,42882 +28332,40626 +28333,40628 +28334,40623 +28335,40624 +28336,1103 +28337,42873 +28338,42904 +28339,43071 +28340,42964 +28341,41788 +28342,30868 +28343,31899 +28344,42895 +28345,43917 +28346,39505 +28347,43114 +28348,44610 +28349,42571 +28350,42362 +28351,39343 +28352,39344 +28353,31176 +28354,39351 +28355,34953 +28356,34960 +28357,25246 +28358,42376 +28359,9155 +28360,7122 +28361,7122 +28362,4777 +28363,7221 +28364,35916 +28365,39393 +28366,33529 +28367,41789 +28368,39432 +28369,39944 +28370,40413 +28371,43115 +28372,43117 +28373,23119 +28374,42983 +28375,42848 +28376,1102 +28377,27088 +28378,27088 +28379,27088 +28380,27088 +28381,30369 +28382,27273 +28383,39546 +28384,43059 +28385,39544 +28386,44799 +28387,21962 +28388,4777 +28389,18707 +28390,42837 +28391,42918 +28392,42174 +28393,39847 +28394,35423 +28395,8042 +28396,42952 +28397,41424 +28398,42962 +28399,40853 +28400,41790 +28401,43054 +28402,41164 +28403,43039 +28404,41475 +28405,41255 +28406,43082 +28407,43120 +28408,20772 +28409,40090 +28410,47914 +28411,41265 +28412,43118 +28413,42764 +28414,42722 +28415,44903 +28416,43246 +28417,7987 +28418,43122 +28419,35437 +28420,39548 +28421,39549 +28422,41480 +28423,41476 +28424,30801 +28425,41118 +28426,41390 +28427,41389 +28428,39570 +28429,39572 +28430,39571 +28431,41628 +28432,41629 +28433,41630 +28434,39576 +28435,39577 +28436,39578 +28437,39579 +28438,45769 +28439,39581 +28440,39582 +28441,39583 +28442,39584 +28443,41474 +28444,41478 +28445,41253 +28446,41474 +28447,41482 +28448,41253 +28449,40631 +28450,40630 +28451,41250 +28452,34364 +28453,40492 +28454,40494 +28455,39227 +28456,40438 +28457,23475 +28458,20977 +28459,20977 +28460,20977 +28461,20977 +28462,20977 +28463,6673 +28464,6673 +28465,6673 +28466,35016 +28467,35016 +28468,35016 +28469,35016 +28470,35016 +28471,8093 +28472,3331 +28473,2616 +28474,39631 +28475,40586 +28476,41558 +28477,40489 +28478,41644 +28479,38758 +28480,35044 +28481,39653 +28482,39654 +28483,39661 +28484,39660 +28485,39659 +28486,21203 +28487,39673 +28488,39678 +28489,39679 +28490,39456 +28491,39368 +28492,39694 +28493,39706 +28494,39709 +28495,39700 +28496,39701 +28497,39705 +28498,39708 +28499,2588 +28500,39707 +28501,39716 +28502,40496 +28503,40495 +28504,41421 +28505,45870 +28506,43427 +28507,43428 +28508,43429 +28509,34034 +28510,24646 +28511,40490 +28512,40497 +28513,33970 +28514,42248 +28515,40491 +28516,34274 +28517,42327 +28518,45860 +28519,45878 +28520,45877 +28521,43441 +28522,45798 +28523,43430 +28524,37063 +28525,41657 +28526,20977 +28527,6371 +28528,43431 +28529,34337 +28530,34303 +28531,39991 +28532,39992 +28533,41459 +28534,39995 +28535,39996 +28536,39997 +28537,39998 +28538,39999 +28539,44586 +28540,40001 +28541,40002 +28542,40003 +28543,40004 +28544,40005 +28545,43442 +28546,39824 +28547,31199 +28548,39827 +28549,7636 +28550,35178 +28551,8931 +28552,1317 +28553,39129 +28554,39848 +28555,39129 +28556,39205 +28557,39205 +28558,39857 +28559,27338 +28560,27338 +28561,37894 +28562,24188 +28563,39859 +28564,41533 +28565,40507 +28566,40515 +28567,40513 +28568,43434 +28569,42332 +28570,34239 +28571,2571 +28572,42286 +28573,39957 +28574,37894 +28575,37894 +28576,32133 +28577,32133 +28578,43448 +28579,39888 +28580,2616 +28581,41430 +28582,38976 +28583,31117 +28584,30595 +28585,39899 +28586,45369 +28587,39421 +28588,43491 +28589,45856 +28590,43456 +28591,43451 +28592,34959 +28593,45858 +28594,43453 +28595,35930 +28596,1102 +28597,45864 +28598,9129 +28599,45881 +28600,43462 +28601,43463 +28602,43469 +28603,42562 +28604,40899 +28605,41259 +28606,40865 +28607,39940 +28608,45861 +28609,31899 +28610,45876 +28611,42406 +28612,45873 +28613,41196 +28614,41198 +28615,41200 +28616,41201 +28617,41202 +28618,43573 +28619,41796 +28620,41210 +28621,45867 +28622,41211 +28623,41212 +28624,41203 +28625,42194 +28626,41205 +28627,41206 +28628,41207 +28629,41477 +28630,41481 +28631,45882 +28632,1102 +28633,40370 +28634,35133 +28635,39946 +28636,30891 +28637,4776 +28638,41259 +28639,41477 +28640,41481 +28641,41165 +28642,41167 +28643,41257 +28644,41165 +28645,41167 +28646,41262 +28647,43476 +28648,23175 +28649,33728 +28650,39287 +28651,24188 +28652,40509 +28653,41396 +28654,40508 +28655,40512 +28656,40514 +28657,44823 +28658,40369 +28659,45739 +28660,24160 +28661,31655 +28662,45868 +28663,40500 +28664,7630 +28665,1504 +28666,45865 +28667,39962 +28668,22193 +28669,59593 +28670,41484 +28671,43842 +28672,43488 +28673,43916 +28674,39210 +28675,26001 +28676,3320 +28677,1246 +28678,39974 +28679,38292 +28680,30321 +28681,38294 +28682,38295 +28683,38296 +28684,41213 +28685,41797 +28686,41215 +28687,41216 +28688,41217 +28689,32103 +28690,32100 +28691,32133 +28692,32127 +28693,32128 +28694,32103 +28695,32100 +28696,32133 +28697,32127 +28698,32128 +28699,41183 +28700,26753 +28701,41184 +28702,41185 +28703,41186 +28704,41218 +28705,42195 +28706,41220 +28707,41221 +28708,41222 +28709,38292 +28710,30321 +28711,38294 +28712,38295 +28713,38296 +28714,41187 +28715,42196 +28716,41189 +28717,41190 +28718,41191 +28719,43573 +28720,41796 +28721,41210 +28722,41211 +28723,41212 +28724,38295 +28725,39984 +28726,45872 +28727,35400 +28728,41454 +28729,41414 +28730,28733 +28731,39212 +28732,44608 +28733,40516 +28734,41453 +28735,45875 +28736,34109 +28737,29702 +28738,31347 +28739,31346 +28740,45880 +28741,43499 +28742,43500 +28743,45863 +28744,45874 +28745,15420 +28746,42331 +28747,42329 +28748,45862 +28749,41416 +28750,40511 +28751,45879 +28752,47479 +28753,9846 +28754,40867 +28755,43511 +28756,45871 +28757,33864 +28758,32133 +28759,37311 +28760,37311 +28761,27338 +28762,35358 +28763,9847 +28764,33096 +28765,43292 +28766,38976 +28767,40066 +28768,40937 +28769,40053 +28770,43098 +28771,40923 +28772,40859 +28773,40922 +28774,40366 +28775,44840 +28776,43523 +28777,43525 +28778,43524 +28779,43522 +28780,43527 +28781,40783 +28782,41555 +28783,43915 +28784,23520 +28785,35445 +28786,36693 +28787,31200 +28788,35396 +28789,43528 +28790,44357 +28791,44841 +28792,39126 +28793,39127 +28794,45804 +28795,43529 +28796,44608 +28797,29719 +28798,40076 +28799,42649 +28800,43531 +28801,44884 +28802,43036 +28803,44896 +28804,44566 +28805,32103 +28806,32100 +28807,32133 +28808,32127 +28809,32128 +28810,42334 +28811,43571 +28812,39032 +28813,39033 +28814,39034 +28815,39035 +28816,31664 +28817,37308 +28818,37311 +28819,41223 +28820,37312 +28821,37313 +28822,43535 +28823,31839 +28824,43435 +28825,40862 +28826,43543 +28827,43436 +28828,43542 +28829,6563 +28830,1503 +28831,41247 +28832,41248 +28833,42199 +28834,41249 +28835,41228 +28836,37893 +28837,37894 +28838,37895 +28839,37898 +28840,37897 +28841,32103 +28842,32100 +28843,32133 +28844,32127 +28845,32128 +28846,32103 +28847,32100 +28848,32133 +28849,32127 +28850,32128 +28851,37299 +28852,37303 +28853,37300 +28854,37301 +28855,37302 +28856,37308 +28857,37311 +28858,37310 +28859,37312 +28860,37313 +28861,41229 +28862,41230 +28863,41933 +28864,41231 +28865,41232 +28866,33089 +28867,32999 +28868,32997 +28869,33085 +28870,41182 +28871,43571 +28872,39032 +28873,39033 +28874,39034 +28875,39035 +28876,30690 +28877,6270 +28878,40108 +28879,6270 +28880,6270 +28881,40107 +28882,40110 +28883,30690 +28884,30690 +28885,40111 +28886,40107 +28887,40109 +28888,40112 +28889,40082 +28890,6270 +28891,15274 +28892,15274 +28893,40088 +28894,15274 +28895,6270 +28896,6270 +28897,6270 +28898,6270 +28899,15274 +28900,15274 +28901,15274 +28902,15274 +28903,40393 +28904,40105 +28905,40874 +28906,40875 +28907,40098 +28908,40099 +28909,40394 +28910,40103 +28911,40104 +28912,40106 +28913,16028 +28914,23283 +28915,40261 +28916,41066 +28917,42068 +28918,39261 +28919,40981 +28920,42070 +28921,42070 +28922,42072 +28923,42073 +28924,42067 +28925,42067 +28926,42074 +28927,40116 +28928,42075 +28929,42076 +28930,42076 +28931,42077 +28932,38679 +28933,42071 +28934,16028 +28935,42078 +28936,40117 +28937,42074 +28938,42079 +28939,31746 +28940,40976 +28941,42092 +28942,42081 +28943,31996 +28944,42082 +28945,42083 +28946,40960 +28947,42085 +28948,40958 +28949,42086 +28950,42080 +28951,42080 +28952,42087 +28953,42088 +28954,42090 +28955,42090 +28956,42087 +28957,31379 +28958,38679 +28959,42091 +28960,42084 +28961,31746 +28962,40122 +28963,40480 +28964,40482 +28965,40127 +28966,40481 +28967,40684 +28968,40479 +28969,40162 +28970,40163 +28971,18050 +28972,23723 +28973,41266 +28974,40630 +28975,40631 +28976,41474 +28977,41482 +28978,41270 +28979,40187 +28980,41475 +28981,41272 +28982,41484 +28983,41165 +28984,41275 +28985,41167 +28986,41476 +28987,41480 +28988,30804 +28989,41259 +28990,41477 +28991,41481 +28992,41259 +28993,41477 +28994,41481 +28995,39544 +28996,41285 +28997,39546 +28998,41165 +28999,41275 +29000,41167 +29001,40090 +29002,41288 +29003,41483 +29004,41474 +29005,41482 +29006,41270 +29007,40190 +29008,40191 +29009,40192 +29010,40193 +29011,47568 +29012,40484 +29013,40194 +29014,40195 +29015,40487 +29016,40488 +29017,40485 +29018,40122 +29019,40484 +29020,40485 +29021,47568 +29022,40487 +29023,40488 +29024,41192 +29025,40122 +29026,36597 +29027,8622 +29028,44008 +29029,40445 +29030,40447 +29031,40641 +29032,41381 +29033,40445 +29034,41381 +29035,44008 +29036,40447 +29037,40641 +29038,40445 +29039,41381 +29040,44008 +29041,36597 +29042,40447 +29043,40641 +29044,45810 +29045,45812 +29046,45814 +29047,45811 +29048,45813 +29049,45819 +29050,40455 +29051,40858 +29052,40248 +29053,42288 +29054,40459 +29055,40456 +29056,40455 +29057,42287 +29058,45819 +29059,42288 +29060,40459 +29061,40646 +29062,40474 +29063,40478 +29064,40651 +29065,40473 +29066,40474 +29067,40473 +29068,40646 +29069,40478 +29070,40651 +29071,40474 +29072,40473 +29073,40646 +29074,40478 +29075,40651 +29076,41063 +29077,40468 +29078,41384 +29079,40645 +29080,41385 +29081,40451 +29082,40448 +29083,40454 +29084,40453 +29085,40831 +29086,46214 +29087,40460 +29088,40833 +29089,40642 +29090,41383 +29091,40460 +29092,41383 +29093,46214 +29094,40833 +29095,40642 +29096,40460 +29097,41383 +29098,46214 +29099,40833 +29100,40642 +29101,6338 +29102,40261 +29103,40261 +29104,40261 +29105,40261 +29106,36597 +29107,40276 +29108,13078 +29109,28236 +29110,40292 +29111,40293 +29112,18080 +29113,9731 +29114,40311 +29115,41948 +29116,6786 +29117,40315 +29118,1282 +29119,35358 +29120,1102 +29121,42061 +29122,38932 +29123,6494 +29124,42065 +29125,42060 +29126,35438 +29127,44551 +29128,35423 +29129,40870 +29130,40322 +29131,40323 +29132,7122 +29133,35363 +29134,44413 +29135,40327 +29136,40329 +29137,42056 +29138,40904 +29139,40918 +29140,40917 +29141,40335 +29142,41949 +29143,40337 +29144,40338 +29145,9840 +29146,31616 +29147,28179 +29148,40915 +29149,40876 +29150,40920 +29151,41915 +29152,30926 +29153,42542 +29154,40346 +29155,42544 +29156,41929 +29157,38541 +29158,28830 +29159,31616 +29160,23608 +29161,36540 +29162,36540 +29163,40378 +29164,40379 +29165,40914 +29166,42057 +29167,42064 +29168,23728 +29169,31905 +29170,41914 +29171,41913 +29172,35472 +29173,15420 +29174,42481 +29175,42289 +29176,40901 +29177,35423 +29178,35423 +29179,40386 +29180,40387 +29181,36597 +29182,40947 +29183,40390 +29184,40391 +29185,40392 +29186,40396 +29187,40395 +29188,40397 +29189,40398 +29190,40398 +29191,40399 +29192,40400 +29193,40402 +29194,39639 +29195,40403 +29196,40404 +29197,40404 +29198,40405 +29199,40406 +29200,20729 +29201,40409 +29202,40410 +29203,40411 +29204,40412 +29205,40413 +29206,40414 +29207,40878 +29208,9632 +29209,35300 +29210,26358 +29211,23723 +29212,32693 +29213,6270 +29214,6270 +29215,6270 +29216,36597 +29217,6270 +29218,6270 +29219,6270 +29220,44581 +29221,44580 +29222,44582 +29223,44583 +29224,44584 +29225,44585 +29226,8622 +29227,40261 +29228,40261 +29229,40261 +29230,40261 +29231,40261 +29232,1102 +29233,39343 +29234,1103 +29235,39344 +29236,31176 +29237,42366 +29238,42606 +29239,42607 +29240,42591 +29241,42590 +29242,42592 +29243,42595 +29244,42593 +29245,42594 +29246,46559 +29247,46574 +29248,67447 +29249,42589 +29250,42587 +29251,42588 +29252,42605 +29253,42603 +29254,42604 +29255,42602 +29256,35519 +29257,42600 +29258,42601 +29259,42586 +29260,22293 +29261,42584 +29262,42585 +29263,42598 +29264,42596 +29265,42597 +29266,42622 +29267,42621 +29268,42620 +29269,42630 +29270,42624 +29271,42563 +29272,42626 +29273,42625 +29274,42628 +29275,42617 +29276,40518 +29277,40518 +29278,40518 +29279,40518 +29280,40518 +29281,40518 +29282,40518 +29283,40518 +29284,40518 +29285,40518 +29286,40518 +29287,40518 +29288,40518 +29289,40518 +29290,40518 +29291,40518 +29292,21327 +29293,22200 +29294,43095 +29295,43095 +29296,43095 +29297,39126 +29298,43095 +29299,43095 +29300,43095 +29301,39126 +29302,43095 +29303,43095 +29304,43095 +29305,39126 +29306,43095 +29307,43095 +29308,43095 +29309,39126 +29310,40520 +29311,9129 +29312,40537 +29313,30438 +29314,33148 +29315,40539 +29316,39080 +29317,39068 +29318,39223 +29319,38545 +29320,31664 +29321,31664 +29322,31664 +29323,31906 +29324,33173 +29325,38784 +29326,39065 +29327,39064 +29328,38542 +29329,40563 +29330,40565 +29331,1143 +29332,42478 +29333,35358 +29334,31889 +29335,9852 +29336,39210 +29337,40585 +29338,40583 +29339,38704 +29340,31639 +29341,25039 +29342,30737 +29343,33148 +29344,27944 +29345,38787 +29346,42225 +29347,43125 +29348,42348 +29349,15420 +29350,35262 +29351,42220 +29352,39123 +29353,42218 +29354,43292 +29355,42203 +29356,42219 +29357,43107 +29358,41648 +29359,43116 +29360,42224 +29361,40593 +29362,36716 +29363,18067 +29364,17284 +29365,40710 +29366,40606 +29367,39122 +29368,35437 +29369,42615 +29370,42608 +29371,40607 +29372,40608 +29373,35431 +29374,39211 +29375,42611 +29376,42609 +29377,40616 +29378,40612 +29379,33808 +29380,40614 +29381,9852 +29382,40592 +29383,42610 +29384,38541 +29385,35366 +29386,33906 +29387,42612 +29388,34960 +29389,42614 +29390,34953 +29391,44593 +29392,19479 +29393,40621 +29394,40637 +29395,40652 +29396,40606 +29397,40606 +29398,31664 +29399,40650 +29400,40648 +29401,40652 +29402,40653 +29403,40654 +29404,40655 +29405,40655 +29406,40656 +29407,40657 +29408,40662 +29409,40661 +29410,40660 +29411,40606 +29412,26733 +29413,40663 +29414,40664 +29415,40665 +29416,40666 +29417,40678 +29418,40668 +29419,40669 +29420,40671 +29421,40673 +29422,40677 +29423,40675 +29424,40676 +29425,40679 +29426,40680 +29427,40681 +29428,40714 +29429,7624 +29430,40716 +29431,40750 +29432,40751 +29433,40752 +29434,40753 +29435,40754 +29436,40755 +29437,40760 +29438,40778 +29439,40780 +29440,40784 +29441,40800 +29442,40821 +29443,18115 +29444,40828 +29445,40829 +29446,40863 +29447,31201 +29448,40841 +29449,38634 +29450,22414 +29451,21327 +29452,40844 +29453,40699 +29454,40694 +29455,67223 +29456,39310 +29457,40881 +29458,45817 +29459,26551 +29460,40888 +29461,33552 +29462,40889 +29463,43425 +29464,4689 +29465,59463 +29466,29447 +29467,17343 +29468,30608 +29469,16208 +29470,17786 +29471,17606 +29472,17494 +29473,40902 +29474,37662 +29475,20798 +29476,35850 +29477,35850 +29478,7287 +29479,39841 +29480,39724 +29481,40948 +29482,37856 +29483,40966 +29484,39840 +29485,40964 +29486,18525 +29487,40970 +29488,40965 +29489,40988 +29490,40989 +29491,40990 +29492,44266 +29493,44267 +29494,44268 +29495,34710 +29496,40998 +29497,40997 +29498,42855 +29499,42857 +29500,42858 +29501,8903 +29502,45844 +29503,41014 +29504,45802 +29505,45801 +29506,41021 +29507,41024 +29508,44092 +29509,41038 +29510,41037 +29511,41036 +29512,41034 +29513,15867 +29514,44595 +29515,43455 +29516,43414 +29517,43413 +29518,22079 +29519,45937 +29520,44103 +29521,44102 +29522,45820 +29523,45822 +29524,45823 +29525,45057 +29526,45056 +29527,45055 +29528,41050 +29529,41062 +29530,41060 +29531,41061 +29532,41059 +29533,47590 +29534,47591 +29535,47592 +29536,47592 +29537,41057 +29538,41070 +29539,37083 +29540,24496 +29541,41071 +29542,41072 +29543,41073 +29544,41074 +29545,3029 +29546,3048 +29547,21364 +29548,41081 +29549,1143 +29550,1103 +29551,18092 +29552,959 +29553,9140 +29554,37672 +29555,3668 +29556,41121 +29557,37887 +29558,34035 +29559,41122 +29560,41124 +29561,7126 +29562,30593 +29563,44288 +29564,7886 +29565,3759 +29566,19573 +29567,1498 +29568,41153 +29569,18721 +29570,41158 +29571,9319 +29572,41168 +29573,34493 +29574,7155 +29575,32955 +29576,41171 +29577,13433 +29578,41175 +29579,36866 +29580,41176 +29581,41177 +29582,41178 +29583,41179 +29584,41181 +29585,41193 +29586,41195 +29587,25271 +29588,5567 +29589,5567 +29590,5567 +29591,17458 +29592,37841 +29593,37840 +29594,31183 +29595,27279 +29596,31185 +29597,31186 +29598,30072 +29599,30382 +29600,41954 +29601,41236 +29602,41237 +29603,41238 +29604,42200 +29605,41240 +29606,32126 +29607,32100 +29608,32127 +29609,32103 +29610,32133 +29611,32128 +29612,41241 +29613,41242 +29614,41243 +29615,41244 +29616,42200 +29617,41245 +29618,23475 +29619,41279 +29620,41280 +29621,41281 +29622,41282 +29623,41283 +29624,18204 +29625,18204 +29626,44573 +29627,41291 +29628,41292 +29629,41293 +29630,41294 +29631,41295 +29632,41296 +29633,41297 +29634,41298 +29635,41299 +29636,41300 +29637,41301 +29638,41302 +29639,41303 +29640,41304 +29641,41305 +29642,41306 +29643,41307 +29644,41308 +29645,41309 +29646,41310 +29647,41311 +29648,41312 +29649,41313 +29650,41314 +29651,41315 +29652,41316 +29653,41317 +29654,41318 +29655,41319 +29656,41320 +29657,41321 +29658,41322 +29659,41323 +29660,41324 +29661,41325 +29662,41326 +29663,41327 +29664,1102 +29665,41328 +29666,41329 +29667,41330 +29668,41331 +29669,15274 +29670,41332 +29671,41333 +29672,15274 +29673,15274 +29674,15274 +29675,15274 +29676,41334 +29677,2571 +29678,41335 +29679,41336 +29680,41337 +29681,41338 +29682,2571 +29683,41339 +29684,2571 +29685,41340 +29686,41341 +29687,41342 +29688,41343 +29689,2571 +29690,41344 +29691,2571 +29692,41345 +29693,2571 +29694,41346 +29695,41347 +29696,41348 +29697,41349 +29698,2571 +29699,41350 +29700,2571 +29701,2571 +29702,2571 +29703,2571 +29704,2571 +29705,41351 +29706,41352 +29707,41353 +29708,41354 +29709,41355 +29710,41356 +29711,41357 +29712,41358 +29713,6270 +29714,15274 +29715,41359 +29716,41360 +29717,6270 +29718,15274 +29719,1301 +29720,1301 +29721,1301 +29722,1301 +29723,1096 +29724,1096 +29725,1096 +29726,1096 +29727,1096 +29728,1096 +29729,1096 +29730,1096 +29731,1096 +29732,1096 +29733,1096 +29734,1096 +29735,31325 +29736,23292 +29737,3665 +29738,9731 +29739,1103 +29740,41378 +29741,41380 +29742,41387 +29743,44587 +29744,44588 +29745,44589 +29746,44590 +29747,44591 +29748,40371 +29749,6387 +29750,41411 +29751,41413 +29752,35044 +29753,41438 +29754,41438 +29755,41438 +29756,41440 +29757,41440 +29758,41440 +29759,41441 +29760,41441 +29761,41441 +29762,19486 +29763,19486 +29764,19486 +29765,41442 +29766,41442 +29767,41442 +29768,4045 +29769,32845 +29770,41425 +29771,16603 +29772,4532 +29773,38338 +29774,26824 +29775,9854 +29776,33520 +29777,39391 +29778,41434 +29779,31628 +29780,25834 +29781,29919 +29782,15810 +29783,25226 +29784,31630 +29785,27314 +29786,26874 +29787,28262 +29788,16487 +29789,26332 +29790,25482 +29791,27511 +29792,27176 +29793,23728 +29794,31604 +29795,38758 +29796,41350 +29797,3029 +29798,41434 +29799,18096 +29800,9292 +29801,21470 +29802,37083 +29803,36529 +29804,27741 +29805,41450 +29806,25811 +29807,24514 +29808,26268 +29809,25410 +29810,18939 +29811,25800 +29812,26872 +29813,33144 +29814,9837 +29815,9852 +29816,41460 +29817,36571 +29818,41461 +29819,41464 +29820,41464 +29821,41465 +29822,36597 +29823,40465 +29824,40465 +29825,35819 +29826,35819 +29827,35819 +29828,35819 +29829,40484 +29830,40484 +29831,41414 +29832,41414 +29833,40922 +29834,40922 +29835,35618 +29836,35618 +29837,7899 +29838,7899 +29839,7899 +29840,7899 +29841,7899 +29842,7899 +29843,7899 +29844,7899 +29845,7899 +29846,36684 +29847,36684 +29848,7899 +29849,7899 +29850,7899 +29851,7899 +29852,7899 +29853,7899 +29854,7899 +29855,40468 +29856,7899 +29857,7899 +29858,7899 +29859,7899 +29860,7899 +29861,7899 +29862,7899 +29863,7899 +29864,7899 +29865,40468 +29866,7899 +29867,7899 +29868,7899 +29869,7899 +29870,7899 +29871,7899 +29872,7899 +29873,7899 +29874,7899 +29875,40482 +29876,40482 +29877,39888 +29878,36354 +29879,36354 +29880,40922 +29881,40922 +29882,40448 +29883,40448 +29884,41430 +29885,40526 +29886,9632 +29887,9632 +29888,41430 +29889,1282 +29890,35159 +29891,35159 +29892,35159 +29893,35159 +29894,41133 +29895,41133 +29896,40445 +29897,40445 +29898,35752 +29899,35752 +29900,41487 +29901,57527 +29902,57527 +29903,57527 +29904,57527 +29905,36862 +29906,41488 +29907,41489 +29908,28334 +29909,20299 +29910,20298 +29911,24015 +29912,5567 +29913,28561 +29914,41494 +29915,39876 +29916,42393 +29917,40895 +29918,42645 +29919,41496 +29920,35472 +29921,46088 +29922,39120 +29923,42176 +29924,42177 +29925,46126 +29926,43935 +29927,44579 +29928,43932 +29929,43928 +29930,43927 +29931,42398 +29932,43919 +29933,43918 +29934,43922 +29935,41517 +29936,41518 +29937,43923 +29938,42396 +29939,43921 +29940,21294 +29941,41525 +29942,43920 +29943,44607 +29944,41531 +29945,41532 +29946,19769 +29947,43562 +29948,42823 +29949,42178 +29950,46074 +29951,45912 +29952,41542 +29953,41547 +29954,41548 +29955,41549 +29956,41547 +29957,41547 +29958,41547 +29959,41550 +29960,34488 +29961,6513 +29962,42179 +29963,41565 +29964,41569 +29965,42699 +29966,45022 +29967,41827 +29968,22481 +29969,42995 +29970,41574 +29971,41605 +29972,46127 +29973,41580 +29974,44156 +29975,41583 +29976,46094 +29977,46128 +29978,41828 +29979,21701 +29980,26814 +29981,42180 +29982,42181 +29983,46577 +29984,46105 +29985,46093 +29986,46216 +29987,46119 +29988,47435 +29989,46123 +29990,46506 +29991,46092 +29992,46124 +29993,42183 +29994,46125 +29995,46106 +29996,41873 +29997,39126 +29998,46076 +29999,41830 +30000,13195 +30001,41831 +30002,41829 +30003,17223 +30004,41596 +30005,18497 +30006,963 +30007,34303 +30008,31889 +30009,43952 +30010,41598 +30011,41599 +30012,41600 +30013,44767 +30014,41838 +30015,32008 +30016,42994 +30017,35437 +30018,35358 +30019,32760 +30020,46114 +30021,42184 +30022,34204 +30023,39638 +30024,46120 +30025,38370 +30026,46085 +30027,44966 +30028,28733 +30029,46103 +30030,46089 +30031,45920 +30032,46075 +30033,45913 +30034,46072 +30035,45917 +30036,46115 +30037,46116 +30038,46112 +30039,45915 +30040,46102 +30041,45914 +30042,46104 +30043,45919 +30044,46090 +30045,46091 +30046,46087 +30047,46095 +30048,46078 +30049,42185 +30050,42701 +30051,43580 +30052,35472 +30053,46348 +30054,46099 +30055,46353 +30056,46130 +30057,42650 +30058,42193 +30059,33906 +30060,45821 +30061,31908 +30062,43584 +30063,34961 +30064,42702 +30065,46080 +30066,44951 +30067,45911 +30068,46097 +30069,41604 +30070,41607 +30071,41615 +30072,41614 +30073,41613 +30074,41616 +30075,43589 +30076,41617 +30077,41620 +30078,41619 +30079,46131 +30080,41668 +30081,42168 +30082,42187 +30083,24646 +30084,46349 +30085,46355 +30086,44893 +30087,42713 +30088,41631 +30089,41635 +30090,41558 +30091,46100 +30092,45909 +30093,41638 +30094,41639 +30095,42188 +30096,42651 +30097,46096 +30098,43597 +30099,43599 +30100,45910 +30101,47437 +30102,46082 +30103,42189 +30104,45845 +30105,43834 +30106,42636 +30107,46133 +30108,47438 +30109,33534 +30110,31616 +30111,46110 +30112,46079 +30113,42297 +30114,42299 +30115,47594 +30116,42298 +30117,42300 +30118,42297 +30119,42299 +30120,47594 +30121,42298 +30122,42300 +30123,42306 +30124,42307 +30125,44050 +30126,42309 +30127,42310 +30128,31210 +30129,42306 +30130,42307 +30131,44050 +30132,42309 +30133,42310 +30134,42306 +30135,42307 +30136,44050 +30137,42309 +30138,42310 +30139,42698 +30140,43749 +30141,43750 +30142,43751 +30143,43752 +30144,45017 +30145,45016 +30146,45018 +30147,41653 +30148,45019 +30149,45020 +30150,42290 +30151,42291 +30152,42879 +30153,42295 +30154,42294 +30155,30997 +30156,1301 +30157,41658 +30158,41659 +30159,42290 +30160,42291 +30161,45797 +30162,42295 +30163,42294 +30164,43613 +30165,43698 +30166,44516 +30167,43618 +30168,43617 +30169,43613 +30170,43698 +30171,63412 +30172,43619 +30173,43617 +30174,35023 +30175,6359 +30176,41663 +30177,36520 +30178,41691 +30179,41692 +30180,41693 +30181,41694 +30182,41696 +30183,41679 +30184,30532 +30185,43613 +30186,41706 +30187,45149 +30188,45236 +30189,43698 +30190,63411 +30191,7899 +30192,43619 +30193,7899 +30194,43617 +30195,7899 +30196,42640 +30197,7899 +30198,7899 +30199,7899 +30200,44788 +30201,41713 +30202,41735 +30203,41736 +30204,41740 +30205,42641 +30206,44020 +30207,42643 +30208,41752 +30209,41753 +30210,42644 +30211,42302 +30212,42305 +30213,42303 +30214,42313 +30215,42304 +30216,43620 +30217,43621 +30218,41756 +30219,50531 +30220,43623 +30221,43624 +30222,43620 +30223,43621 +30224,41757 +30225,26829 +30226,41779 +30227,39999 +30228,50531 +30229,43623 +30230,43624 +30231,43620 +30232,43621 +30233,50531 +30234,43623 +30235,43624 +30236,41438 +30237,41438 +30238,41438 +30239,41440 +30240,41440 +30241,41440 +30242,41441 +30243,41441 +30244,41441 +30245,41442 +30246,41442 +30247,41442 +30248,19486 +30249,19486 +30250,19486 +30251,35360 +30252,21018 +30253,16633 +30254,41836 +30255,27155 +30256,31910 +30257,41799 +30258,41800 +30259,6554 +30260,21586 +30261,41801 +30262,41839 +30263,41803 +30264,41840 +30265,41805 +30266,41806 +30267,41807 +30268,41808 +30269,41810 +30270,26351 +30271,41811 +30272,42515 +30273,41813 +30274,41814 +30275,42668 +30276,9858 +30277,41816 +30278,41856 +30279,8258 +30280,1096 +30281,1096 +30282,1096 +30283,1096 +30284,41817 +30285,41818 +30286,41819 +30287,17234 +30288,42516 +30289,41821 +30290,13206 +30291,41835 +30292,41837 +30293,41858 +30294,41859 +30295,41860 +30296,41861 +30297,41938 +30298,28663 +30299,33888 +30300,41916 +30301,1096 +30302,1096 +30303,1096 +30304,1096 +30305,1096 +30306,1096 +30307,1096 +30308,1096 +30309,18115 +30310,41866 +30311,41867 +30312,41872 +30313,41895 +30314,40867 +30315,6563 +30316,41560 +30317,41873 +30318,41875 +30319,42468 +30320,34273 +30321,1096 +30322,1096 +30323,1096 +30324,1096 +30325,18050 +30326,7155 +30327,19312 +30328,41917 +30329,41918 +30330,27418 +30331,9912 +30332,4494 +30333,41919 +30334,41920 +30335,41925 +30336,41926 +30337,41928 +30338,27152 +30339,2854 +30340,41936 +30341,39897 +30342,22678 +30343,37841 +30344,37841 +30345,37841 +30346,37841 +30347,8026 +30348,37840 +30349,37840 +30350,37840 +30351,37840 +30352,26794 +30353,7921 +30354,41946 +30355,39115 +30356,6380 +30357,41971 +30358,42169 +30359,39717 +30360,18051 +30361,42170 +30362,15550 +30363,12723 +30364,41974 +30365,28733 +30366,9839 +30367,41957 +30368,41959 +30369,41960 +30370,41961 +30371,41962 +30372,33885 +30373,17197 +30374,41963 +30375,41964 +30376,41965 +30377,9657 +30378,33135 +30379,41967 +30380,26158 +30381,26875 +30382,30693 +30383,25998 +30384,17014 +30385,9388 +30386,41968 +30387,41873 +30388,41560 +30389,41872 +30390,41875 +30391,40867 +30392,41895 +30393,41867 +30394,20167 +30395,28499 +30396,25632 +30397,41969 +30398,42519 +30399,27706 +30400,37350 +30401,42517 +30402,24511 +30403,41973 +30404,2873 +30405,41975 +30406,41976 +30407,41977 +30408,41978 +30409,41979 +30410,41980 +30411,41981 +30412,41983 +30413,41984 +30414,41985 +30415,41986 +30416,7111 +30417,41998 +30418,41999 +30419,6539 +30420,9842 +30421,28682 +30422,31906 +30423,42000 +30424,42001 +30425,19312 +30426,36756 +30427,23229 +30428,1037 +30429,26381 +30430,42031 +30431,42032 +30432,42033 +30433,42034 +30434,41350 +30435,42043 +30436,42039 +30437,42038 +30438,42040 +30439,42042 +30440,42044 +30441,42049 +30442,41565 +30443,15274 +30444,1102 +30445,42062 +30446,43551 +30447,43547 +30448,43548 +30449,43553 +30450,43560 +30451,42066 +30452,43519 +30453,32845 +30454,15590 +30455,30886 +30456,34102 +30457,40852 +30458,1087 +30459,42100 +30460,42102 +30461,42101 +30462,30959 +30463,13678 +30464,4063 +30465,42110 +30466,7129 +30467,42112 +30468,42114 +30469,1301 +30470,1301 +30471,1301 +30472,1301 +30473,1301 +30474,1301 +30475,30601 +30476,33239 +30477,9291 +30478,13715 +30479,10365 +30480,42122 +30481,42226 +30482,42125 +30483,1301 +30484,42160 +30485,42162 +30486,45972 +30487,45973 +30488,47593 +30489,45971 +30490,45970 +30491,42168 +30492,32644 +30493,32644 +30494,32644 +30495,32644 +30496,32822 +30497,35093 +30498,35175 +30499,18079 +30500,18050 +30501,20503 +30502,42252 +30503,3486 +30504,20425 +30505,14739 +30506,18050 +30507,4721 +30508,9585 +30509,42254 +30510,42255 +30511,42256 +30512,8940 +30513,7129 +30514,28756 +30515,42279 +30516,43150 +30517,15823 +30518,8720 +30519,4272 +30520,16892 +30521,31634 +30522,20298 +30523,42278 +30524,42280 +30525,42281 +30526,42282 +30527,7257 +30528,35159 +30529,31500 +30530,31500 +30531,42316 +30532,42315 +30533,42326 +30534,42325 +30535,42314 +30536,42318 +30537,42444 +30538,42319 +30539,1096 +30540,2571 +30541,42324 +30542,41640 +30543,43424 +30544,40162 +30545,39214 +30546,39929 +30547,39931 +30548,39930 +30549,39929 +30550,39930 +30551,39931 +30552,39929 +30553,39931 +30554,39931 +30555,39929 +30556,39931 +30557,41874 +30558,39931 +30559,39931 +30560,39930 +30561,39202 +30562,39930 +30563,39929 +30564,39931 +30565,39931 +30566,39929 +30567,39203 +30568,40002 +30569,5129 +30570,42336 +30571,7053 +30572,39929 +30573,39931 +30574,39929 +30575,39931 +30576,42337 +30577,42340 +30578,42341 +30579,42342 +30580,42343 +30581,39931 +30582,39931 +30583,39930 +30584,39931 +30585,39931 +30586,39930 +30587,39931 +30588,39931 +30589,39930 +30590,39930 +30591,39931 +30592,39930 +30593,39931 +30594,39930 +30595,14993 +30596,38757 +30597,42336 +30598,7053 +30599,40002 +30600,39929 +30601,39931 +30602,39930 +30603,39929 +30604,39931 +30605,39930 +30606,39930 +30607,39931 +30608,39930 +30609,42378 +30610,20803 +30611,40199 +30612,42382 +30613,1504 +30614,43310 +30615,18059 +30616,20503 +30617,36488 +30618,2473 +30619,43559 +30620,43609 +30621,43605 +30622,22477 +30623,22477 +30624,42420 +30625,42421 +30626,43601 +30627,43595 +30628,42430 +30629,35439 +30630,42490 +30631,35301 +30632,1134 +30633,22071 +30634,22185 +30635,3118 +30636,42434 +30637,22477 +30638,8928 +30639,42440 +30640,35300 +30641,40499 +30642,42491 +30643,40513 +30644,42492 +30645,30603 +30646,18721 +30647,42504 +30648,42514 +30649,3029 +30650,5658 +30651,42537 +30652,42538 +30653,42539 +30654,13435 +30655,39203 +30656,42540 +30657,42548 +30658,1815 +30659,1815 +30660,43350 +30661,42551 +30662,42552 +30663,43598 +30664,43579 +30665,43585 +30666,35437 +30667,35472 +30668,35183 +30669,40075 +30670,42555 +30671,42556 +30672,42557 +30673,40508 +30674,42247 +30675,40508 +30676,29954 +30677,41041 +30678,35614 +30679,42565 +30680,41483 +30681,41899 +30682,42334 +30683,40499 +30684,40390 +30685,45055 +30686,40494 +30687,36248 +30688,9154 +30689,16161 +30690,44025 +30691,40888 +30692,42619 +30693,41387 +30694,41411 +30695,42629 +30696,38758 +30697,42655 +30698,42660 +30699,43903 +30700,36868 +30701,8622 +30702,7040 +30703,40853 +30704,42679 +30705,30829 +30706,42679 +30707,11571 +30708,30492 +30709,42681 +30710,32087 +30711,17514 +30712,22477 +30713,1246 +30714,42704 +30715,42705 +30716,42706 +30717,42679 +30718,12645 +30719,42708 +30720,43588 +30721,42708 +30722,43263 +30723,43267 +30724,41433 +30725,43269 +30726,35358 +30727,43284 +30728,44683 +30729,28891 +30730,44598 +30731,44879 +30732,43253 +30733,43259 +30734,43249 +30735,22995 +30736,39129 +30737,43251 +30738,9834 +30739,43254 +30740,43258 +30741,43261 +30742,42723 +30743,42742 +30744,31783 +30745,42743 +30746,2588 +30747,3237 +30748,2591 +30749,42751 +30750,42750 +30751,42749 +30752,42748 +30753,42754 +30754,42757 +30755,42758 +30756,42342 +30757,44885 +30758,44723 +30759,44724 +30760,42771 +30761,31685 +30762,31673 +30763,41901 +30764,28754 +30765,42775 +30766,28843 +30767,43447 +30768,42672 +30769,21580 +30770,33690 +30771,42777 +30772,36426 +30773,32360 +30774,42778 +30775,44270 +30776,33840 +30777,42782 +30778,42783 +30779,42784 +30780,42787 +30781,42786 +30782,42990 +30783,42991 +30784,42788 +30785,42789 +30786,42790 +30787,40855 +30788,41428 +30789,47478 +30790,24472 +30791,36601 +30792,43402 +30793,3664 +30794,21807 +30795,42793 +30796,41755 +30797,42795 +30798,2460 +30799,42796 +30800,42797 +30801,42807 +30802,42820 +30803,12997 +30804,31800 +30805,42821 +30806,3565 +30807,7086 +30808,1246 +30809,40679 +30810,34382 +30811,2616 +30812,8284 +30813,2798 +30814,7350 +30815,32885 +30816,42822 +30817,1297 +30818,19502 +30819,42827 +30820,6636 +30821,42828 +30822,12331 +30823,42834 +30824,42861 +30825,44358 +30826,6270 +30827,9129 +30828,42905 +30829,39204 +30830,42906 +30831,42907 +30832,42909 +30833,1301 +30834,31908 +30835,42916 +30836,42917 +30837,42942 +30838,42941 +30839,41580 +30840,42924 +30841,1317 +30842,2571 +30843,2571 +30844,2571 +30845,42958 +30846,42960 +30847,67050 +30848,42979 +30849,1438 +30850,19312 +30851,42988 +30852,42989 +30853,44246 +30854,1246 +30855,18377 +30856,43000 +30857,7557 +30858,18079 +30859,43007 +30860,31800 +30861,45748 +30862,45741 +30863,45746 +30864,45744 +30865,45233 +30866,45759 +30867,5287 +30868,45753 +30869,45750 +30870,45745 +30871,45743 +30872,45211 +30873,45240 +30874,45232 +30875,43032 +30876,43032 +30877,7899 +30878,45212 +30879,45245 +30880,45239 +30881,45799 +30882,44863 +30883,45224 +30884,45749 +30885,45737 +30886,45238 +30887,45767 +30888,45241 +30889,44865 +30890,43061 +30891,45800 +30892,45735 +30893,45229 +30894,45742 +30895,45242 +30896,45222 +30897,48291 +30898,45227 +30899,45755 +30900,47778 +30901,45209 +30902,45776 +30903,46359 +30904,46351 +30905,46352 +30906,45265 +30907,46356 +30908,45205 +30909,45204 +30910,45360 +30911,39420 +30912,45218 +30913,45771 +30914,45244 +30915,45243 +30916,45219 +30917,45752 +30918,45346 +30919,45247 +30920,43211 +30921,43212 +30922,43213 +30923,43214 +30924,30768 +30925,43346 +30926,43216 +30927,43217 +30928,43218 +30929,43219 +30930,43220 +30931,43221 +30932,26435 +30933,43222 +30934,43223 +30935,43230 +30936,38516 +30937,43343 +30938,43227 +30939,43347 +30940,34685 +30941,43231 +30942,44550 +30943,43235 +30944,43233 +30945,43236 +30946,43237 +30947,43241 +30948,44018 +30949,43244 +30950,43247 +30951,43348 +30952,43250 +30953,43252 +30954,43255 +30955,44732 +30956,28806 +30957,43260 +30958,43262 +30959,43272 +30960,43274 +30961,43277 +30962,43345 +30963,43280 +30964,43344 +30965,43288 +30966,43283 +30967,43349 +30968,43287 +30969,45659 +30970,45659 +30971,15163 +30972,49684 +30973,33534 +30974,49684 +30975,45658 +30976,45658 +30977,45660 +30978,45660 +30979,45661 +30980,45661 +30981,35358 +30982,45685 +30983,46357 +30984,42285 +30985,45685 +30986,41645 +30987,45684 +30988,46358 +30989,45684 +30990,46350 +30991,45683 +30992,45683 +30993,45686 +30994,45686 +30995,45686 +30996,45884 +30997,45884 +30998,45884 +30999,43309 +31000,43312 +31001,45679 +31002,1930 +31003,45680 +31004,45678 +31005,45681 +31006,45682 +31007,45670 +31008,45670 +31009,43313 +31010,44011 +31011,45670 +31012,45669 +31013,43315 +31014,45669 +31015,45669 +31016,45668 +31017,45668 +31018,45668 +31019,45671 +31020,45671 +31021,45671 +31022,45672 +31023,45672 +31024,45672 +31025,43316 +31026,45426 +31027,45434 +31028,45425 +31029,45428 +31030,45436 +31031,43317 +31032,45664 +31033,43318 +31034,45664 +31035,45664 +31036,43323 +31037,45663 +31038,43353 +31039,45663 +31040,45663 +31041,45662 +31042,45662 +31043,45662 +31044,45665 +31045,45666 +31046,45665 +31047,45667 +31048,45667 +31049,45667 +31050,45673 +31051,45674 +31052,45677 +31053,45675 +31054,45676 +31055,45121 +31056,45449 +31057,45119 +31058,45122 +31059,45126 +31060,44977 +31061,44977 +31062,43355 +31063,45770 +31064,45770 +31065,44979 +31066,44979 +31067,44976 +31068,44976 +31069,44978 +31070,44978 +31071,43356 +31072,43384 +31073,43645 +31074,31899 +31075,43332 +31076,43335 +31077,43339 +31078,43340 +31079,43406 +31080,43360 +31081,42704 +31082,41558 +31083,43386 +31084,36675 +31085,35851 +31086,35850 +31087,36597 +31088,44225 +31089,41438 +31090,41438 +31091,41438 +31092,41440 +31093,41440 +31094,41440 +31095,41441 +31096,41441 +31097,41441 +31098,41442 +31099,41442 +31100,41442 +31101,19486 +31102,19486 +31103,19486 +31104,43514 +31105,45168 +31106,43517 +31107,43516 +31108,39435 +31109,44680 +31110,43501 +31111,31135 +31112,43478 +31113,31029 +31114,43483 +31115,43490 +31116,39929 +31117,39929 +31118,39929 +31119,3673 +31120,15274 +31121,7418 +31122,43656 +31123,20628 +31124,24052 +31125,43043 +31126,43235 +31127,43626 +31128,2618 +31129,3673 +31130,43636 +31131,43065 +31132,1438 +31133,21963 +31134,43638 +31135,17902 +31136,43140 +31137,43640 +31138,43045 +31139,43644 +31140,42907 +31141,43646 +31142,43649 +31143,23422 +31144,2618 +31145,43653 +31146,13082 +31147,15420 +31148,28179 +31149,43073 +31150,43654 +31151,42848 +31152,27407 +31153,43655 +31154,35358 +31155,43666 +31156,43665 +31157,16482 +31158,43667 +31159,43661 +31160,26273 +31161,43669 +31162,43668 +31163,43672 +31164,43671 +31165,43673 +31166,43675 +31167,40372 +31168,43676 +31169,43677 +31170,43679 +31171,43680 +31172,43681 +31173,30438 +31174,43682 +31175,43166 +31176,43684 +31177,43686 +31178,40413 +31179,43689 +31180,41964 +31181,43691 +31182,43692 +31183,43695 +31184,43697 +31185,27293 +31186,43313 +31187,32755 +31188,43699 +31189,43700 +31190,43669 +31191,32090 +31192,27601 +31193,43645 +31194,43701 +31195,43702 +31196,39211 +31197,43703 +31198,43704 +31199,43214 +31200,4404 +31201,43705 +31202,41962 +31203,43706 +31204,43708 +31205,41487 +31206,33835 +31207,43711 +31208,43712 +31209,43713 +31210,33029 +31211,43714 +31212,33149 +31213,43715 +31214,33045 +31215,43717 +31216,43718 +31217,43719 +31218,43721 +31219,43723 +31220,43724 +31221,43725 +31222,45175 +31223,43726 +31224,43727 +31225,33328 +31226,42966 +31227,43730 +31228,43729 +31229,43731 +31230,43718 +31231,43732 +31232,43734 +31233,43735 +31234,43736 +31235,28617 +31236,43737 +31237,43738 +31238,43407 +31239,43739 +31240,42842 +31241,43739 +31242,43740 +31243,43741 +31244,43742 +31245,43739 +31246,39886 +31247,43743 +31248,43744 +31249,43745 +31250,43747 +31251,43739 +31252,43739 +31253,43753 +31254,26233 +31255,26202 +31256,44431 +31257,43754 +31258,43120 +31259,43756 +31260,4110 +31261,39631 +31262,24051 +31263,44432 +31264,44430 +31265,43760 +31266,43771 +31267,43763 +31268,8466 +31269,43772 +31270,43774 +31271,992 +31272,43761 +31273,41554 +31274,43785 +31275,43701 +31276,42841 +31277,33808 +31278,24036 +31279,43794 +31280,42932 +31281,45101 +31282,43183 +31283,43732 +31284,42847 +31285,8660 +31286,38704 +31287,43792 +31288,38993 +31289,43796 +31290,28733 +31291,43799 +31292,43800 +31293,43159 +31294,43801 +31295,43222 +31296,43802 +31297,12675 +31298,32167 +31299,43830 +31300,1443 +31301,43810 +31302,43811 +31303,43809 +31304,43812 +31305,43813 +31306,43814 +31307,40606 +31308,43817 +31309,43818 +31310,39435 +31311,43820 +31312,43821 +31313,43822 +31314,43823 +31315,43824 +31316,9154 +31317,43827 +31318,43828 +31319,33808 +31320,43829 +31321,39209 +31322,43831 +31323,43836 +31324,37681 +31325,43835 +31326,43837 +31327,43838 +31328,42325 +31329,42615 +31330,43843 +31331,43846 +31332,41417 +31333,45167 +31334,43858 +31335,42314 +31336,43859 +31337,3667 +31338,39162 +31339,39122 +31340,43861 +31341,43867 +31342,43866 +31343,43424 +31344,7065 +31345,9129 +31346,12734 +31347,12733 +31348,43880 +31349,1168 +31350,30959 +31351,43881 +31352,33020 +31353,43936 +31354,15274 +31355,15274 +31356,15274 +31357,15274 +31358,6270 +31359,15274 +31360,43898 +31361,1301 +31362,1301 +31363,43897 +31364,43902 +31365,26460 +31366,57501 +31367,43907 +31368,43906 +31369,43941 +31370,43940 +31371,43939 +31372,7071 +31373,5287 +31374,1310 +31375,41443 +31376,47172 +31377,41445 +31378,41758 +31379,41446 +31380,39125 +31381,39127 +31382,39124 +31383,39126 +31384,43905 +31385,43948 +31386,15867 +31387,43905 +31388,43949 +31389,6334 +31390,1096 +31391,1096 +31392,1096 +31393,1096 +31394,1096 +31395,1096 +31396,41144 +31397,41145 +31398,44357 +31399,44086 +31400,41147 +31401,1096 +31402,1096 +31403,20611 +31404,43794 +31405,43950 +31406,41148 +31407,41149 +31408,16028 +31409,41154 +31410,41794 +31411,41155 +31412,42171 +31413,41157 +31414,43951 +31415,43953 +31416,25604 +31417,43954 +31418,26540 +31419,43989 +31420,43991 +31421,43992 +31422,43994 +31423,43995 +31424,43993 +31425,43997 +31426,3658 +31427,43998 +31428,43996 +31429,44001 +31430,44000 +31431,26103 +31432,43999 +31433,43965 +31434,44002 +31435,43987 +31436,43968 +31437,21845 +31438,44004 +31439,44005 +31440,44003 +31441,43988 +31442,43972 +31443,44006 +31444,43974 +31445,44007 +31446,43976 +31447,43977 +31448,43978 +31449,43979 +31450,41488 +31451,37856 +31452,44016 +31453,44017 +31454,43982 +31455,44019 +31456,43984 +31457,44021 +31458,44022 +31459,19730 +31460,42862 +31461,34628 +31462,44028 +31463,35843 +31464,44027 +31465,27325 +31466,44023 +31467,44024 +31468,44026 +31469,31434 +31470,44119 +31471,44120 +31472,44121 +31473,44122 +31474,44118 +31475,44116 +31476,44117 +31477,44112 +31478,44114 +31479,44113 +31480,44111 +31481,44108 +31482,18981 +31483,44325 +31484,44110 +31485,44107 +31486,44105 +31487,43987 +31488,44106 +31489,44035 +31490,44294 +31491,44293 +31492,44292 +31493,44041 +31494,44042 +31495,44035 +31496,1103 +31497,44046 +31498,1103 +31499,44047 +31500,1103 +31501,1103 +31502,1155 +31503,1155 +31504,35930 +31505,3426 +31506,3426 +31507,1246 +31508,32924 +31509,38932 +31510,44124 +31511,44129 +31512,14774 +31513,44126 +31514,44130 +31515,44127 +31516,44125 +31517,44061 +31518,44062 +31519,44128 +31520,44131 +31521,44123 +31522,21586 +31523,9851 +31524,39454 +31525,3665 +31526,44086 +31527,31576 +31528,35431 +31529,27809 +31530,39461 +31531,44066 +31532,44067 +31533,44068 +31534,29014 +31535,13710 +31536,22071 +31537,44069 +31538,44070 +31539,44071 +31540,44072 +31541,25640 +31542,44073 +31543,28511 +31544,44074 +31545,44075 +31546,44076 +31547,44077 +31548,44078 +31549,44079 +31550,2571 +31551,44085 +31552,30588 +31553,44163 +31554,44159 +31555,44167 +31556,44161 +31557,44162 +31558,44168 +31559,44164 +31560,44881 +31561,44183 +31562,44178 +31563,44192 +31564,44180 +31565,44187 +31566,44186 +31567,44185 +31568,44575 +31569,44206 +31570,44199 +31571,44208 +31572,44198 +31573,44200 +31574,44207 +31575,44201 +31576,44574 +31577,44218 +31578,44214 +31579,44224 +31580,44215 +31581,44219 +31582,44220 +31583,44221 +31584,43571 +31585,39032 +31586,39033 +31587,39034 +31588,39035 +31589,43573 +31590,41796 +31591,41210 +31592,41211 +31593,41212 +31594,41474 +31595,41482 +31596,41474 +31597,41482 +31598,41253 +31599,41270 +31600,44148 +31601,44150 +31602,44085 +31603,44152 +31604,44153 +31605,44155 +31606,36540 +31607,24051 +31608,44213 +31609,44233 +31610,44226 +31611,44234 +31612,44236 +31613,41133 +31614,41134 +31615,44237 +31616,41135 +31617,30696 +31618,41136 +31619,41137 +31620,41218 +31621,37308 +31622,42195 +31623,41220 +31624,41221 +31625,41222 +31626,37311 +31627,37310 +31628,37312 +31629,37313 +31630,38292 +31631,30321 +31632,38294 +31633,38295 +31634,38296 +31635,41247 +31636,41248 +31637,42199 +31638,41249 +31639,41228 +31640,32103 +31641,32100 +31642,32133 +31643,32127 +31644,32128 +31645,22071 +31646,32103 +31647,32100 +31648,32133 +31649,32127 +31650,32128 +31651,44245 +31652,35850 +31653,41488 +31654,44250 +31655,34378 +31656,44276 +31657,44326 +31658,44254 +31659,44255 +31660,44257 +31661,6739 +31662,11160 +31663,44259 +31664,44260 +31665,44269 +31666,35133 +31667,44286 +31668,44287 +31669,44289 +31670,2473 +31671,44290 +31672,21327 +31673,44291 +31674,1301 +31675,1301 +31676,37864 +31677,44295 +31678,21206 +31679,38721 +31680,6270 +31681,6270 +31682,6270 +31683,44304 +31684,44305 +31685,44022 +31686,26846 +31687,44307 +31688,45180 +31689,44312 +31690,44313 +31691,39211 +31692,39214 +31693,39212 +31694,39209 +31695,39210 +31696,39162 +31697,44306 +31698,7733 +31699,44308 +31700,21968 +31701,44310 +31702,36477 +31703,44314 +31704,37250 +31705,22071 +31706,1310 +31707,24153 +31708,39631 +31709,44475 +31710,44476 +31711,44322 +31712,44323 +31713,15431 +31714,44324 +31715,44316 +31716,44317 +31717,44557 +31718,44319 +31719,44556 +31720,44555 +31721,44321 +31722,27454 +31723,20331 +31724,21027 +31725,16603 +31726,43701 +31727,34318 +31728,9839 +31729,9865 +31730,9847 +31731,28493 +31732,44351 +31733,2708 +31734,44369 +31735,44356 +31736,30690 +31737,40523 +31738,13082 +31739,9124 +31740,15274 +31741,44367 +31742,44368 +31743,44370 +31744,1103 +31745,44375 +31746,31655 +31747,31889 +31748,31889 +31749,31889 +31750,7148 +31751,44377 +31752,20774 +31753,35852 +31754,44405 +31755,22071 +31756,44417 +31757,44416 +31758,44418 +31759,44417 +31760,34488 +31761,44419 +31762,44420 +31763,44428 +31764,44423 +31765,44424 +31766,45370 +31767,20774 +31768,44450 +31769,23295 +31770,44451 +31771,44431 +31772,38758 +31773,44433 +31774,44434 +31775,44435 +31776,44436 +31777,44437 +31778,44438 +31779,44439 +31780,44440 +31781,44441 +31782,44472 +31783,34302 +31784,45164 +31785,44470 +31786,44484 +31787,44447 +31788,44478 +31789,44483 +31790,7570 +31791,43837 +31792,44458 +31793,41549 +31794,44479 +31795,32395 +31796,44480 +31797,44482 +31798,44485 +31799,44487 +31800,2588 +31801,44489 +31802,44490 +31803,44491 +31804,44494 +31805,44497 +31806,44498 +31807,44416 +31808,9840 +31809,928 +31810,41062 +31811,44306 +31812,44523 +31813,4134 +31814,3429 +31815,36540 +31816,44530 +31817,44533 +31818,9852 +31819,44536 +31820,31905 +31821,44546 +31822,26572 +31823,44544 +31824,44548 +31825,41062 +31826,44549 +31827,20774 +31828,32395 +31829,40261 +31830,40261 +31831,40261 +31832,40261 +31833,40261 +31834,40261 +31835,40261 +31836,40261 +31837,1143 +31838,24212 +31839,24212 +31840,30533 +31841,30533 +31842,7899 +31843,7899 +31844,7899 +31845,7899 +31846,7899 +31847,7899 +31848,7899 +31849,7899 +31850,31664 +31851,31664 +31852,24212 +31853,24212 +31854,30533 +31855,30533 +31856,44707 +31857,44709 +31858,44708 +31859,44706 +31860,35848 +31861,39925 +31862,35847 +31863,39929 +31864,35847 +31865,39929 +31866,35845 +31867,39931 +31868,39931 +31869,35845 +31870,15274 +31871,15274 +31872,15274 +31873,15274 +31874,15274 +31875,6270 +31876,6270 +31877,6270 +31878,6270 +31879,6270 +31880,30959 +31881,30959 +31882,44705 +31883,44705 +31884,44705 +31885,44705 +31886,44705 +31887,44705 +31888,44705 +31889,44705 +31890,31755 +31891,31755 +31892,44702 +31893,44702 +31894,44702 +31895,44702 +31896,44702 +31897,31756 +31898,44702 +31899,44702 +31900,44702 +31901,44704 +31902,44704 +31903,44704 +31904,44704 +31905,44704 +31906,44704 +31907,31755 +31908,44704 +31909,44704 +31910,44701 +31911,44701 +31912,44701 +31913,44701 +31914,31755 +31915,44701 +31916,44701 +31917,44701 +31918,44701 +31919,35431 +31920,35472 +31921,35423 +31922,35367 +31923,35438 +31924,35313 +31925,28682 +31926,31616 +31927,33534 +31928,24022 +31929,38541 +31930,36755 +31931,31899 +31932,39211 +31933,39212 +31934,9852 +31935,44633 +31936,44632 +31937,27658 +31938,44631 +31939,44630 +31940,35358 +31941,44624 +31942,44634 +31943,39128 +31944,41640 +31945,44655 +31946,32899 +31947,41533 +31948,40924 +31949,40522 +31950,19498 +31951,44666 +31952,9632 +31953,37862 +31954,13118 +31955,1285 +31956,40888 +31957,40633 +31958,39278 +31959,41558 +31960,45963 +31961,45964 +31962,45965 +31963,45966 +31964,45967 +31965,41559 +31966,41560 +31967,45993 +31968,45998 +31969,47129 +31970,41445 +31971,45996 +31972,45997 +31973,45974 +31974,45975 +31975,46107 +31976,45976 +31977,45978 +31978,39505 +31979,45979 +31980,45980 +31981,45981 +31982,45982 +31983,46108 +31984,41561 +31985,41559 +31986,42385 +31987,45993 +31988,45998 +31989,47129 +31990,45996 +31991,45997 +31992,46009 +31993,46010 +31994,41411 +31995,46008 +31996,46012 +31997,46224 +31998,45958 +31999,45959 +32000,45960 +32001,45961 +32002,45962 +32003,42760 +32004,46017 +32005,46109 +32006,46507 +32007,46022 +32008,46023 +32009,46017 +32010,46109 +32011,46507 +32012,46022 +32013,46023 +32014,41558 +32015,46029 +32016,46188 +32017,46032 +32018,46033 +32019,46035 +32020,46009 +32021,46010 +32022,46224 +32023,46008 +32024,46012 +32025,41562 +32026,39278 +32027,42379 +32028,42759 +32029,46017 +32030,46109 +32031,46507 +32032,46022 +32033,46023 +32034,46029 +32035,46188 +32036,46032 +32037,46033 +32038,46035 +32039,46009 +32040,46010 +32041,46224 +32042,46008 +32043,46012 +32044,42380 +32045,42376 +32046,42380 +32047,45953 +32048,45954 +32049,45955 +32050,45956 +32051,45957 +32052,42379 +32053,67267 +32054,38679 +32055,41557 +32056,45993 +32057,45998 +32058,47129 +32059,45996 +32060,45997 +32061,33941 +32062,44795 +32063,44794 +32064,44685 +32065,44690 +32066,44691 +32067,44796 +32068,44797 +32069,41387 +32070,1102 +32071,1102 +32072,44697 +32073,44698 +32074,12334 +32075,9129 +32076,34516 +32077,42547 +32078,44699 +32079,41387 +32080,44700 +32081,44703 +32082,44710 +32083,44711 +32084,45803 +32085,43013 +32086,34217 +32087,44904 +32088,47180 +32089,38932 +32090,38932 +32091,32332 +32092,44722 +32093,41203 +32094,42194 +32095,41205 +32096,41206 +32097,41207 +32098,42195 +32099,41220 +32100,41218 +32101,41221 +32102,41222 +32103,41218 +32104,42195 +32105,41220 +32106,41221 +32107,41222 +32108,41187 +32109,42196 +32110,41189 +32111,41190 +32112,41191 +32113,43573 +32114,41796 +32115,41210 +32116,41211 +32117,41212 +32118,43573 +32119,41796 +32120,41215 +32121,41211 +32122,41210 +32123,41212 +32124,41213 +32125,41797 +32126,41216 +32127,41217 +32128,43573 +32129,41796 +32130,41210 +32131,41211 +32132,41212 +32133,41196 +32134,41198 +32135,41200 +32136,41201 +32137,41202 +32138,32103 +32139,32100 +32140,32133 +32141,32127 +32142,32128 +32143,32103 +32144,32100 +32145,32133 +32146,32127 +32147,32128 +32148,32103 +32149,32100 +32150,32133 +32151,32127 +32152,32128 +32153,38292 +32154,30321 +32155,38294 +32156,38295 +32157,38296 +32158,38292 +32159,30321 +32160,38294 +32161,38295 +32162,38296 +32163,41183 +32164,26753 +32165,41184 +32166,41185 +32167,41186 +32168,38292 +32169,30321 +32170,38294 +32171,38295 +32172,38296 +32173,42080 +32174,42082 +32175,40960 +32176,42080 +32177,42087 +32178,42090 +32179,42090 +32180,42087 +32181,42081 +32182,42083 +32183,40958 +32184,42086 +32185,42091 +32186,31996 +32187,42084 +32188,42085 +32189,42088 +32190,31379 +32191,42092 +32192,40976 +32193,44920 +32194,44920 +32195,44920 +32196,44920 +32197,44920 +32198,44920 +32199,44920 +32200,44930 +32201,44930 +32202,44930 +32203,44930 +32204,44926 +32205,44926 +32206,44926 +32207,44926 +32208,44926 +32209,44926 +32210,44926 +32211,44924 +32212,44924 +32213,44924 +32214,44924 +32215,44924 +32216,44924 +32217,44927 +32218,44927 +32219,44927 +32220,44927 +32221,44927 +32222,44927 +32223,44921 +32224,44921 +32225,44921 +32226,44921 +32227,44919 +32228,44929 +32229,44925 +32230,44923 +32231,44928 +32232,45289 +32233,45596 +32234,45712 +32235,52634 +32236,44959 +32237,45294 +32238,39123 +32239,45732 +32240,45721 +32241,45764 +32242,45278 +32243,45332 +32244,24675 +32245,45349 +32246,44728 +32247,39129 +32248,45318 +32249,44922 +32250,45760 +32251,45358 +32252,45327 +32253,45491 +32254,44960 +32255,44869 +32256,45356 +32257,45315 +32258,45765 +32259,45762 +32260,39214 +32261,44357 +32262,45345 +32263,45334 +32264,45731 +32265,45730 +32266,44358 +32267,45918 +32268,45324 +32269,47605 +32270,45292 +32271,45724 +32272,44738 +32273,45704 +32274,1096 +32275,45670 +32276,45763 +32277,1096 +32278,46487 +32279,45347 +32280,45715 +32281,1096 +32282,1096 +32283,1096 +32284,1096 +32285,1096 +32286,1096 +32287,1096 +32288,1096 +32289,1096 +32290,1096 +32291,1096 +32292,1096 +32293,1096 +32294,1096 +32295,1096 +32296,1096 +32297,1096 +32298,1096 +32299,1096 +32300,1096 +32301,1096 +32302,1096 +32303,1096 +32304,1096 +32305,1096 +32306,1096 +32307,1096 +32308,1096 +32309,1096 +32310,1096 +32311,1096 +32312,1096 +32313,41350 +32314,44739 +32315,12997 +32316,44739 +32317,44739 +32318,44739 +32319,44739 +32320,44756 +32321,3673 +32322,44765 +32323,45886 +32324,47436 +32325,44962 +32326,45738 +32327,45335 +32328,45707 +32329,47433 +32330,43430 +32331,45885 +32332,45350 +32333,45299 +32334,45355 +32335,44841 +32336,45485 +32337,46490 +32338,45705 +32339,45264 +32340,45714 +32341,46488 +32342,45298 +32343,45357 +32344,47434 +32345,45287 +32346,45277 +32347,45718 +32348,45492 +32349,45351 +32350,41453 +32351,45288 +32352,45326 +32353,45716 +32354,45843 +32355,44771 +32356,44770 +32357,44772 +32358,1246 +32359,34778 +32360,44776 +32361,45275 +32362,4841 +32363,41668 +32364,12310 +32365,45311 +32366,45729 +32367,45319 +32368,34960 +32369,47226 +32370,39212 +32371,44787 +32372,36540 +32373,45722 +32374,45161 +32375,45653 +32376,45713 +32377,45816 +32378,20772 +32379,44783 +32380,12331 +32381,1301 +32382,19562 +32383,44798 +32384,31867 +32385,7188 +32386,7188 +32387,45754 +32388,2480 +32389,42917 +32390,44824 +32391,45787 +32392,44826 +32393,44829 +32394,44830 +32395,44831 +32396,44828 +32397,44836 +32398,45786 +32399,44835 +32400,44833 +32401,27429 +32402,45785 +32403,44839 +32404,44837 +32405,26571 +32406,45135 +32407,44842 +32408,44843 +32409,39203 +32410,39205 +32411,6270 +32412,6270 +32413,52741 +32414,40487 +32415,40487 +32416,40487 +32417,40487 +32418,40487 +32419,40487 +32420,45480 +32421,43539 +32422,43539 +32423,36527 +32424,18102 +32425,44850 +32426,7264 +32427,33296 +32428,44851 +32429,2571 +32430,2571 +32431,2571 +32432,2571 +32433,2571 +32434,2571 +32435,2571 +32436,2571 +32437,2571 +32438,2571 +32439,2571 +32440,2571 +32441,2571 +32442,2571 +32443,2571 +32444,2571 +32445,44852 +32446,9731 +32447,2571 +32448,44855 +32449,24730 +32450,44858 +32451,44858 +32452,39505 +32453,38430 +32454,7694 +32455,44861 +32456,7888 +32457,7887 +32458,44872 +32459,44889 +32460,44892 +32461,45779 +32462,20709 +32463,44932 +32464,36189 +32465,44946 +32466,41428 +32467,1246 +32468,20614 +32469,16161 +32470,44940 +32471,45487 +32472,43889 +32473,43886 +32474,45783 +32475,45780 +32476,45778 +32477,34296 +32478,44949 +32479,45782 +32480,43886 +32481,43430 +32482,41367 +32483,45364 +32484,44955 +32485,44974 +32486,45849 +32487,45853 +32488,45850 +32489,35130 +32490,45854 +32491,45855 +32492,45851 +32493,45852 +32494,43891 +32495,45781 +32496,45488 +32497,45362 +32498,44964 +32499,45630 +32500,45365 +32501,45337 +32502,4045 +32503,25481 +32504,44971 +32505,45322 +32506,45651 +32507,45510 +32508,32395 +32509,32547 +32510,45733 +32511,15274 +32512,44866 +32513,45359 +32514,24022 +32515,42650 +32516,40490 +32517,45757 +32518,45758 +32519,45263 +32520,45003 +32521,46205 +32522,45006 +32523,1246 +32524,45476 +32525,45702 +32526,31616 +32527,31616 +32528,31616 +32529,45008 +32530,45011 +32531,9860 +32532,45029 +32533,45030 +32534,36755 +32535,28733 +32536,45040 +32537,31321 +32538,45042 +32539,45043 +32540,45048 +32541,45050 +32542,45058 +32543,12333 +32544,12333 +32545,12333 +32546,12333 +32547,12333 +32548,12333 +32549,12333 +32550,12333 +32551,12333 +32552,12333 +32553,12333 +32554,12333 +32555,12333 +32556,12333 +32557,12333 +32558,12333 +32559,12333 +32560,12333 +32561,12333 +32562,45059 +32563,2474 +32564,1246 +32565,45060 +32566,45061 +32567,7394 +32568,45404 +32569,45306 +32570,45413 +32571,45402 +32572,45305 +32573,45407 +32574,45399 +32575,45408 +32576,6513 +32577,45403 +32578,6334 +32579,45408 +32580,45775 +32581,45773 +32582,45401 +32583,45774 +32584,45400 +32585,45412 +32586,45400 +32587,45409 +32588,45063 +32589,31899 +32590,46124 +32591,39210 +32592,45283 +32593,45352 +32594,16700 +32595,20611 +32596,15734 +32597,45064 +32598,15736 +32599,15738 +32600,15715 +32601,15737 +32602,45112 +32603,45069 +32604,45073 +32605,45087 +32606,44866 +32607,45095 +32608,45728 +32609,45706 +32610,45096 +32611,45396 +32612,45110 +32613,45111 +32614,45118 +32615,45117 +32616,59501 +32617,59499 +32618,45112 +32619,45132 +32620,7629 +32621,45133 +32622,45134 +32623,9127 +32624,45143 +32625,45144 +32626,45143 +32627,45144 +32628,45143 +32629,45143 +32630,45144 +32631,45144 +32632,45150 +32633,45146 +32634,44923 +32635,35917 +32636,7279 +32637,7221 +32638,39932 +32639,44730 +32640,39205 +32641,39203 +32642,20774 +32643,20774 +32644,22178 +32645,45154 +32646,13024 +32647,45155 +32648,45472 +32649,29935 +32650,45159 +32651,45160 +32652,45163 +32653,15120 +32654,36540 +32655,46204 +32656,45185 +32657,45186 +32658,45197 +32659,45187 +32660,12284 +32661,45188 +32662,45189 +32663,40300 +32664,9847 +32665,45191 +32666,38748 +32667,18079 +32668,18115 +32669,45198 +32670,40300 +32671,45188 +32672,45197 +32673,45187 +32674,12284 +32675,45200 +32676,45184 +32677,45199 +32678,9847 +32679,45189 +32680,45201 +32681,20914 +32682,20914 +32683,20914 +32684,20914 +32685,38273 +32686,1438 +32687,1244 +32688,18170 +32689,18170 +32690,18170 +32691,18170 +32692,18170 +32693,18170 +32694,43551 +32695,43551 +32696,35852 +32697,42032 +32698,43599 +32699,45308 +32700,18170 +32701,18170 +32702,18170 +32703,18170 +32704,18170 +32705,18170 +32706,18170 +32707,18170 +32708,18170 +32709,18170 +32710,18170 +32711,18170 +32712,18170 +32713,18170 +32714,959 +32715,7266 +32716,3146 +32717,45467 +32718,45468 +32719,45367 +32720,1257 +32721,45616 +32722,45617 +32723,11448 +32724,36188 +32725,45389 +32726,45390 +32727,3665 +32728,45391 +32729,45392 +32730,45393 +32731,36036 +32732,45395 +32733,41193 +32734,45398 +32735,39930 +32736,1096 +32737,1096 +32738,1096 +32739,1096 +32740,45416 +32741,45608 +32742,9129 +32743,43355 +32744,1096 +32745,1096 +32746,1096 +32747,1096 +32748,1096 +32749,1096 +32750,1096 +32751,1096 +32752,1096 +32753,1096 +32754,1096 +32755,1096 +32756,45445 +32757,29935 +32758,18080 +32759,41644 +32760,40523 +32761,45435 +32762,45156 +32763,45437 +32764,37850 +32765,37852 +32766,37851 +32767,19547 +32768,45443 +32769,43021 +32770,45453 +32771,45452 +32772,9837 +32773,42619 +32774,24022 +32775,12310 +32776,26680 +32777,45448 +32778,43043 +32779,39124 +32780,41433 +32781,21620 +32782,34149 +32783,15718 +32784,15713 +32785,46053 +32786,46059 +32787,46064 +32788,46059 +32789,46044 +32790,46056 +32791,46049 +32792,46049 +32793,46041 +32794,46044 +32795,46067 +32796,46059 +32797,46052 +32798,46058 +32799,46062 +32800,46058 +32801,46042 +32802,46054 +32803,46048 +32804,46048 +32805,46039 +32806,46042 +32807,46065 +32808,46058 +32809,46051 +32810,46060 +32811,46063 +32812,46060 +32813,46043 +32814,46057 +32815,30804 +32816,46047 +32817,46047 +32818,46040 +32819,46043 +32820,46066 +32821,46060 +32822,45465 +32823,1013 +32824,23875 +32825,45466 +32826,43383 +32827,45469 +32828,45495 +32829,45475 +32830,28513 +32831,47595 +32832,45474 +32833,46253 +32834,22271 +32835,1282 +32836,46252 +32837,45479 +32838,45481 +32839,46254 +32840,37816 +32841,45493 +32842,39435 +32843,32922 +32844,37812 +32845,37810 +32846,37815 +32847,37814 +32848,45135 +32849,46255 +32850,46256 +32851,46257 +32852,46258 +32853,32922 +32854,45496 +32855,39205 +32856,45497 +32857,36142 +32858,36142 +32859,36142 +32860,36142 +32861,36142 +32862,36142 +32863,45500 +32864,43551 +32865,45503 +32866,45505 +32867,45502 +32868,45504 +32869,45506 +32870,45507 +32871,43277 +32872,45508 +32873,45509 +32874,45518 +32875,45526 +32876,45530 +32877,45585 +32878,45549 +32879,45544 +32880,45547 +32881,45547 +32882,44356 +32883,44356 +32884,45557 +32885,45559 +32886,45560 +32887,45564 +32888,18010 +32889,45568 +32890,45569 +32891,45580 +32892,45579 +32893,45595 +32894,45594 +32895,30953 +32896,634 +32897,45597 +32898,37850 +32899,37851 +32900,19547 +32901,37852 +32902,45612 +32903,45156 +32904,45437 +32905,45611 +32906,47089 +32907,3673 +32908,45613 +32909,15718 +32910,15713 +32911,33470 +32912,47520 +32913,18115 +32914,36741 +32915,47477 +32916,8927 +32917,47477 +32918,47477 +32919,47477 +32920,47477 +32921,33469 +32922,45632 +32923,45633 +32924,45634 +32925,45635 +32926,45636 +32927,45637 +32928,45638 +32929,45639 +32930,45640 +32931,45641 +32932,45642 +32933,45643 +32934,45644 +32935,45645 +32936,45646 +32937,45647 +32938,45648 +32939,45649 +32940,45650 +32941,24087 +32942,23728 +32943,45345 +32944,45689 +32945,45890 +32946,45889 +32947,37807 +32948,37808 +32949,45692 +32950,45693 +32951,45692 +32952,7899 +32953,45777 +32954,29863 +32955,29863 +32956,29863 +32957,29859 +32958,29859 +32959,29859 +32960,45784 +32961,39505 +32962,46606 +32963,44858 +32964,44858 +32965,45808 +32966,20874 +32967,45809 +32968,7118 +32969,45827 +32970,45828 +32971,22198 +32972,45840 +32973,41255 +32974,41475 +32975,41164 +32976,41475 +32977,41272 +32978,41484 +32979,46068 +32980,46069 +32981,46071 +32982,41165 +32983,41257 +32984,41167 +32985,41165 +32986,41275 +32987,41167 +32988,46042 +32989,46043 +32990,46044 +32991,41259 +32992,41477 +32993,41481 +32994,41259 +32995,41477 +32996,41481 +32997,46047 +32998,46048 +32999,46049 +33000,29860 +33001,35023 +33002,45887 +33003,35442 +33004,16211 +33005,45896 +33006,46964 +33007,1096 +33008,45900 +33009,25475 +33010,7263 +33011,10822 +33012,45907 +33013,1322 +33014,45908 +33015,45923 +33016,49972 +33017,49974 +33018,49974 +33019,49974 +33020,49974 +33021,49974 +33022,33469 +33023,47110 +33024,47111 +33025,47112 +33026,47113 +33027,51619 +33028,18102 +33029,18102 +33030,18102 +33031,18102 +33032,18102 +33033,18102 +33034,18102 +33035,18102 +33036,18102 +33037,34742 +33038,45927 +33039,45928 +33040,45931 +33041,12925 +33042,19873 +33043,47114 +33044,45938 +33045,19595 +33046,37840 +33047,45840 +33048,32650 +33049,45945 +33050,35025 +33051,34751 +33052,44291 +33053,39119 +33054,31657 +33055,44841 +33056,39129 +33057,39129 +33058,31905 +33059,39129 +33060,43108 +33061,23458 +33062,47446 +33063,6399 +33064,39129 +33065,39162 +33066,39162 +33067,39162 +33068,39162 +33069,43599 +33070,6327 +33071,45984 +33072,35178 +33073,46034 +33074,46037 +33075,46038 +33076,9659 +33077,1103 +33078,46045 +33079,46046 +33080,46081 +33081,46134 +33082,18168 +33083,46142 +33084,46722 +33085,46154 +33086,7111 +33087,46176 +33088,43677 +33089,46177 +33090,21473 +33091,46184 +33092,45437 +33093,45156 +33094,5122 +33095,7111 +33096,18102 +33097,35431 +33098,7889 +33099,2515 +33100,46200 +33101,37388 +33102,15794 +33103,46209 +33104,46210 +33105,41734 +33106,7048 +33107,2622 +33108,46211 +33109,6017 +33110,46220 +33111,3397 +33112,6387 +33113,35178 +33114,34749 +33115,34749 +33116,46231 +33117,46716 +33118,40622 +33119,7292 +33120,2599 +33121,31906 +33122,26202 +33123,46245 +33124,6270 +33125,46247 +33126,46248 +33127,2757 +33128,46249 +33129,46251 +33130,44920 +33131,44920 +33132,44920 +33133,44920 +33134,44920 +33135,44930 +33136,44930 +33137,44930 +33138,44926 +33139,44926 +33140,44926 +33141,44926 +33142,44926 +33143,44926 +33144,44926 +33145,6270 +33146,39635 +33147,39635 +33148,7798 +33149,7798 +33150,7798 +33151,7798 +33152,7798 +33153,7798 +33154,32955 +33155,6270 +33156,6270 +33157,6270 +33158,6270 +33159,6270 +33160,6270 +33161,46260 +33162,46260 +33163,35406 +33164,35178 +33165,7798 +33166,46273 +33167,46298 +33168,46294 +33169,46424 +33170,46369 +33171,46297 +33172,46322 +33173,46324 +33174,6270 +33175,19497 +33176,56954 +33177,46331 +33178,46523 +33179,46325 +33180,20640 +33181,46336 +33182,56954 +33183,47504 +33184,56954 +33185,9635 +33186,15274 +33187,7162 +33188,11183 +33189,56954 +33190,18063 +33191,46781 +33192,48216 +33193,35431 +33194,35431 +33195,35431 +33196,35431 +33197,9858 +33198,9852 +33199,9858 +33200,9858 +33201,31603 +33202,6327 +33203,47159 +33204,46382 +33205,1096 +33206,47032 +33207,46784 +33208,22191 +33209,15274 +33210,46383 +33211,46785 +33212,46413 +33213,46410 +33214,46789 +33215,47020 +33216,49359 +33217,3225 +33218,21473 +33219,21473 +33220,46425 +33221,22271 +33222,46792 +33223,46524 +33224,59462 +33225,59462 +33226,3225 +33227,46427 +33228,46430 +33229,46431 +33230,46432 +33231,46433 +33232,46434 +33233,46435 +33234,40694 +33235,13675 +33236,40853 +33237,46437 +33238,39726 +33239,46438 +33240,8712 +33241,46439 +33242,46440 +33243,46441 +33244,46442 +33245,46443 +33246,35639 +33247,46444 +33248,38664 +33249,46445 +33250,46446 +33251,46447 +33252,46448 +33253,46449 +33254,25481 +33255,46462 +33256,46461 +33257,46452 +33258,46463 +33259,46454 +33260,46455 +33261,35076 +33262,9837 +33263,9834 +33264,9847 +33265,9854 +33266,46456 +33267,46457 +33268,46458 +33269,46459 +33270,20214 +33271,20110 +33272,46460 +33273,20667 +33274,38651 +33275,46485 +33276,46486 +33277,9135 +33278,35178 +33279,42651 +33280,46793 +33281,33906 +33282,13122 +33283,46801 +33284,22071 +33285,42602 +33286,47037 +33287,46803 +33288,46195 +33289,6270 +33290,46764 +33291,46804 +33292,46514 +33293,44358 +33294,46520 +33295,41333 +33296,46805 +33297,43701 +33298,47127 +33299,46807 +33300,46809 +33301,46522 +33302,7280 +33303,46810 +33304,46812 +33305,6270 +33306,4939 +33307,7798 +33308,13885 +33309,42376 +33310,46563 +33311,43105 +33312,1659 +33313,42376 +33314,46575 +33315,7899 +33316,1103 +33317,48222 +33318,7590 +33319,46588 +33320,46589 +33321,14019 +33322,46813 +33323,39448 +33324,47038 +33325,46817 +33326,48211 +33327,47898 +33328,46978 +33329,46979 +33330,3918 +33331,47021 +33332,48212 +33333,43292 +33334,46981 +33335,34279 +33336,7358 +33337,1438 +33338,46602 +33339,46575 +33340,46760 +33341,7358 +33342,46563 +33343,14019 +33344,39448 +33345,46575 +33346,46575 +33347,6270 +33348,46608 +33349,2515 +33350,46609 +33351,46612 +33352,25467 +33353,39723 +33354,46982 +33355,38760 +33356,46983 +33357,41484 +33358,46613 +33359,4615 +33360,9894 +33361,46614 +33362,46615 +33363,46616 +33364,46617 +33365,6306 +33366,4614 +33367,46618 +33368,46619 +33369,46620 +33370,46621 +33371,46622 +33372,46629 +33373,46630 +33374,46631 +33375,46632 +33376,46633 +33377,46634 +33378,10179 +33379,9726 +33380,46623 +33381,5401 +33382,46624 +33383,46625 +33384,46626 +33385,46628 +33386,47036 +33387,46627 +33388,46985 +33389,46986 +33390,46642 +33391,46643 +33392,46644 +33393,46645 +33394,46646 +33395,46647 +33396,37344 +33397,46635 +33398,46636 +33399,46637 +33400,46638 +33401,46639 +33402,46640 +33403,46641 +33404,46649 +33405,46650 +33406,46651 +33407,46648 +33408,46652 +33409,46653 +33410,46654 +33411,33399 +33412,46655 +33413,46656 +33414,46657 +33415,40746 +33416,46658 +33417,46659 +33418,12926 +33419,46660 +33420,39724 +33421,46987 +33422,46666 +33423,5009 +33424,20446 +33425,46665 +33426,8479 +33427,46664 +33428,46663 +33429,8537 +33430,46661 +33431,8694 +33432,47173 +33433,46668 +33434,46671 +33435,50806 +33436,46669 +33437,46673 +33438,46674 +33439,46672 +33440,42217 +33441,39724 +33442,47710 +33443,50875 +33444,50587 +33445,50880 +33446,46989 +33447,56990 +33448,56989 +33449,50868 +33450,17514 +33451,50869 +33452,50870 +33453,48434 +33454,50873 +33455,46679 +33456,20802 +33457,3331 +33458,2616 +33459,1093 +33460,2616 +33461,1093 +33462,3331 +33463,48436 +33464,46990 +33465,46991 +33466,9852 +33467,46992 +33468,46994 +33469,46995 +33470,46711 +33471,46996 +33472,35178 +33473,46998 +33474,48215 +33475,46609 +33476,46999 +33477,44290 +33478,47042 +33479,47001 +33480,47002 +33481,47003 +33482,45845 +33483,47005 +33484,47589 +33485,46687 +33486,46689 +33487,44291 +33488,23229 +33489,47007 +33490,47008 +33491,47010 +33492,47011 +33493,47012 +33494,46916 +33495,47176 +33496,33534 +33497,35313 +33498,31576 +33499,45362 +33500,39120 +33501,47015 +33502,34961 +33503,34959 +33504,34960 +33505,46045 +33506,47071 +33507,47072 +33508,47073 +33509,39640 +33510,47088 +33511,46691 +33512,47016 +33513,47017 +33514,47018 +33515,47022 +33516,47023 +33517,47024 +33518,47025 +33519,47026 +33520,47027 +33521,46692 +33522,49359 +33523,46784 +33524,40515 +33525,46693 +33526,46694 +33527,47029 +33528,47030 +33529,47031 +33530,47177 +33531,47034 +33532,47035 +33533,47160 +33534,47034 +33535,47035 +33536,46089 +33537,47041 +33538,47045 +33539,47044 +33540,47043 +33541,46698 +33542,40066 +33543,40937 +33544,46700 +33545,46703 +33546,959 +33547,3307 +33548,37654 +33549,18092 +33550,6699 +33551,6636 +33552,47049 +33553,6625 +33554,46709 +33555,6699 +33556,28878 +33557,45753 +33558,37035 +33559,46105 +33560,21368 +33561,2874 +33562,7350 +33563,6748 +33564,16065 +33565,16065 +33566,47050 +33567,50522 +33568,50523 +33569,6002 +33570,46712 +33571,1645 +33572,46712 +33573,46712 +33574,46712 +33575,3307 +33576,7089 +33577,47054 +33578,47055 +33579,47056 +33580,47057 +33581,7015 +33582,49057 +33583,47060 +33584,47061 +33585,48224 +33586,48227 +33587,48226 +33588,47062 +33589,47065 +33590,47067 +33591,47068 +33592,42615 +33593,47069 +33594,46750 +33595,46751 +33596,46752 +33597,46748 +33598,46753 +33599,23739 +33600,46712 +33601,46712 +33602,46712 +33603,46712 +33604,46763 +33605,39928 +33606,36592 +33607,39928 +33608,46769 +33609,46770 +33610,3422 +33611,20951 +33612,6680 +33613,46780 +33614,49608 +33615,46773 +33616,37857 +33617,17882 +33618,46775 +33619,4133 +33620,20342 +33621,49799 +33622,6270 +33623,46712 +33624,46712 +33625,46712 +33626,46712 +33627,2515 +33628,4811 +33629,6699 +33630,7129 +33631,1498 +33632,7089 +33633,39203 +33634,25483 +33635,34798 +33636,45714 +33637,46782 +33638,46786 +33639,46787 +33640,47175 +33641,42376 +33642,39278 +33643,41558 +33644,45963 +33645,45964 +33646,45965 +33647,45966 +33648,45967 +33649,41559 +33650,41560 +33651,45993 +33652,45998 +33653,46347 +33654,45996 +33655,45997 +33656,45974 +33657,45975 +33658,46107 +33659,45976 +33660,42651 +33661,42376 +33662,47606 +33663,47742 +33664,46880 +33665,46883 +33666,47951 +33667,46882 +33668,46881 +33669,46962 +33670,47732 +33671,46941 +33672,48262 +33673,46946 +33674,46944 +33675,46945 +33676,48285 +33677,46871 +33678,46872 +33679,46876 +33680,46873 +33681,39505 +33682,46876 +33683,46871 +33684,48285 +33685,46873 +33686,46872 +33687,47740 +33688,46900 +33689,46962 +33690,46941 +33691,48261 +33692,46946 +33693,46944 +33694,46945 +33695,47949 +33696,46949 +33697,47759 +33698,46951 +33699,46953 +33700,46940 +33701,47825 +33702,46937 +33703,46938 +33704,46939 +33705,46967 +33706,46891 +33707,46892 +33708,46894 +33709,46895 +33710,46890 +33711,46891 +33712,46892 +33713,46894 +33714,46895 +33715,46890 +33716,47744 +33717,46932 +33718,48113 +33719,46925 +33720,46926 +33721,46927 +33722,47949 +33723,46949 +33724,47759 +33725,46951 +33726,46953 +33727,40368 +33728,46867 +33729,46868 +33730,49686 +33731,46866 +33732,46865 +33733,47606 +33734,46970 +33735,42376 +33736,39505 +33737,46966 +33738,46891 +33739,46892 +33740,46894 +33741,46895 +33742,46890 +33743,47740 +33744,46932 +33745,48113 +33746,46925 +33747,46926 +33748,46927 +33749,47949 +33750,46949 +33751,47759 +33752,46951 +33753,46953 +33754,47733 +33755,42376 +33756,47733 +33757,46928 +33758,47799 +33759,46930 +33760,46931 +33761,46933 +33762,46970 +33763,46973 +33764,46606 +33765,38679 +33766,47743 +33767,46941 +33768,48262 +33769,46946 +33770,46944 +33771,46945 +33772,46012 +33773,49657 +33774,46782 +33775,6358 +33776,6358 +33777,6358 +33778,7270 +33779,7015 +33780,1093 +33781,1103 +33782,39930 +33783,6270 +33784,20774 +33785,46712 +33786,46712 +33787,46712 +33788,46712 +33789,46831 +33790,46832 +33791,46839 +33792,15274 +33793,46840 +33794,46851 +33795,46863 +33796,38759 +33797,47356 +33798,46916 +33799,45840 +33800,46560 +33801,47733 +33802,38757 +33803,26497 +33804,1102 +33805,47004 +33806,47009 +33807,13082 +33808,51920 +33809,40160 +33810,47019 +33811,47047 +33812,44735 +33813,47092 +33814,12989 +33815,47048 +33816,33467 +33817,33467 +33818,33467 +33819,38757 +33820,47051 +33821,5283 +33822,1208 +33823,24711 +33824,38902 +33825,46273 +33826,45651 +33827,8093 +33828,47091 +33829,47093 +33830,35439 +33831,47094 +33832,47095 +33833,45500 +33834,47098 +33835,19764 +33836,46252 +33837,47096 +33838,22200 +33839,47100 +33840,41681 +33841,9659 +33842,1103 +33843,46045 +33844,47102 +33845,34732 +33846,3673 +33847,31434 +33848,47100 +33849,47104 +33850,47836 +33851,47096 +33852,47096 +33853,39129 +33854,13714 +33855,26001 +33856,7695 +33857,9151 +33858,43101 +33859,928 +33860,31205 +33861,47106 +33862,47130 +33863,47220 +33864,47255 +33865,47109 +33866,42924 +33867,24711 +33868,51758 +33869,15274 +33870,15274 +33871,6270 +33872,39720 +33873,15274 +33874,25469 +33875,15274 +33876,47405 +33877,47406 +33878,47408 +33879,47409 +33880,47428 +33881,47411 +33882,47412 +33883,47413 +33884,47414 +33885,47409 +33886,47428 +33887,47411 +33888,47415 +33889,47416 +33890,47417 +33891,47900 +33892,47403 +33893,46057 +33894,47418 +33895,47419 +33896,47420 +33897,47418 +33898,47419 +33899,47420 +33900,47421 +33901,47422 +33902,47423 +33903,47415 +33904,47416 +33905,47417 +33906,47418 +33907,47419 +33908,47420 +33909,47415 +33910,47416 +33911,47417 +33912,47425 +33913,47426 +33914,47427 +33915,47409 +33916,47428 +33917,47411 +33918,39129 +33919,39129 +33920,39162 +33921,39162 +33922,39162 +33923,39162 +33924,47763 +33925,6270 +33926,47123 +33927,8935 +33928,47124 +33929,18102 +33930,31846 +33931,31846 +33932,31846 +33933,31846 +33934,47132 +33935,47133 +33936,34960 +33937,34960 +33938,34960 +33939,25246 +33940,25246 +33941,25246 +33942,34953 +33943,34953 +33944,34953 +33945,34953 +33946,34953 +33947,34953 +33948,34960 +33949,34960 +33950,34960 +33951,25246 +33952,25246 +33953,25246 +33954,1096 +33955,7744 +33956,18102 +33957,47144 +33958,47144 +33959,47144 +33960,47149 +33961,47149 +33962,47149 +33963,47311 +33964,47037 +33965,46995 +33966,47221 +33967,47170 +33968,47254 +33969,47256 +33970,46990 +33971,47049 +33972,46983 +33973,46803 +33974,47171 +33975,47174 +33976,17343 +33977,17343 +33978,47178 +33979,47188 +33980,47192 +33981,47198 +33982,47207 +33983,47212 +33984,47225 +33985,7066 +33986,26537 +33987,26537 +33988,26537 +33989,26537 +33990,47230 +33991,47228 +33992,47229 +33993,52793 +33994,26537 +33995,26537 +33996,26537 +33997,26537 +33998,26537 +33999,47934 +34000,50842 +34001,50845 +34002,50843 +34003,50844 +34004,50845 +34005,50842 +34006,50843 +34007,50844 +34008,45840 +34009,47248 +34010,47249 +34011,47250 +34012,47252 +34013,39116 +34014,47771 +34015,46962 +34016,46967 +34017,18102 +34018,18102 +34019,18102 +34020,18102 +34021,18102 +34022,18102 +34023,49608 +34024,46773 +34025,47264 +34026,21207 +34027,50540 +34028,47178 +34029,47330 +34030,47270 +34031,1134 +34032,47304 +34033,39505 +34034,47277 +34035,44246 +34036,7899 +34037,7899 +34038,7899 +34039,30926 +34040,992 +34041,7956 +34042,1013 +34043,13799 +34044,29131 +34045,47285 +34046,47291 +34047,47293 +34048,4933 +34049,47294 +34050,47696 +34051,47307 +34052,56459 +34053,56458 +34054,56462 +34055,56461 +34056,56460 +34057,56465 +34058,46753 +34059,46606 +34060,47773 +34061,47774 +34062,47912 +34063,25469 +34064,35831 +34065,40695 +34066,46606 +34067,2593 +34068,47314 +34069,47316 +34070,47317 +34071,46266 +34072,23161 +34073,47325 +34074,47325 +34075,47325 +34076,6693 +34077,49426 +34078,47304 +34079,47346 +34080,36381 +34081,8928 +34082,45931 +34083,47355 +34084,20897 +34085,48130 +34086,47629 +34087,48131 +34088,46627 +34089,3093 +34090,24051 +34091,24051 +34092,42378 +34093,39902 +34094,26537 +34095,26537 +34096,47439 +34097,47440 +34098,47444 +34099,2585 +34100,21712 +34101,13121 +34102,18098 +34103,811 +34104,811 +34105,47447 +34106,47559 +34107,47454 +34108,47460 +34109,1588 +34110,7798 +34111,22717 +34112,4112 +34113,36529 +34114,1301 +34115,37780 +34116,37780 +34117,22377 +34118,13100 +34119,13100 +34120,47462 +34121,22717 +34122,47467 +34123,47468 +34124,22717 +34125,40653 +34126,2571 +34127,32261 +34128,53045 +34129,49164 +34130,4836 +34131,31515 +34132,32846 +34133,17288 +34134,47483 +34135,7389 +34136,38748 +34137,13692 +34138,47487 +34139,47488 +34140,47492 +34141,47493 +34142,40304 +34143,40304 +34144,47488 +34145,55480 +34146,47488 +34147,47487 +34148,47487 +34149,47487 +34150,47917 +34151,47507 +34152,47508 +34153,47509 +34154,47510 +34155,47511 +34156,47512 +34157,47730 +34158,44439 +34159,44440 +34160,39126 +34161,7111 +34162,47521 +34163,47522 +34164,48078 +34165,49970 +34166,39123 +34167,47988 +34168,47990 +34169,47975 +34170,48295 +34171,7798 +34172,15274 +34173,15274 +34174,15274 +34175,15274 +34176,47992 +34177,48511 +34178,48507 +34179,48894 +34180,47991 +34181,48296 +34182,49132 +34183,47996 +34184,48509 +34185,48907 +34186,47993 +34187,47526 +34188,47995 +34189,31655 +34190,48869 +34191,47527 +34192,50016 +34193,50017 +34194,47998 +34195,47999 +34196,48294 +34197,49971 +34198,48290 +34199,48908 +34200,811 +34201,811 +34202,50013 +34203,48002 +34204,48512 +34205,48870 +34206,48895 +34207,47528 +34208,48004 +34209,48005 +34210,50012 +34211,48011 +34212,48012 +34213,45948 +34214,48079 +34215,48015 +34216,48016 +34217,47534 +34218,811 +34219,45864 +34220,39205 +34221,6270 +34222,47460 +34223,16028 +34224,37888 +34225,24592 +34226,34798 +34227,43407 +34228,48014 +34229,48013 +34230,44358 +34231,48906 +34232,48299 +34233,48300 +34234,48018 +34235,6506 +34236,33566 +34237,13291 +34238,47561 +34239,47562 +34240,48905 +34241,48868 +34242,48871 +34243,48022 +34244,48020 +34245,48019 +34246,42861 +34247,48023 +34248,31200 +34249,47772 +34250,4233 +34251,24591 +34252,47577 +34253,47581 +34254,19497 +34255,4045 +34256,46252 +34257,47604 +34258,47607 +34259,23739 +34260,6748 +34261,15274 +34262,811 +34263,47630 +34264,47631 +34265,47632 +34266,47633 +34267,47634 +34268,47636 +34269,47637 +34270,47638 +34271,47639 +34272,47640 +34273,43880 +34274,47641 +34275,47642 +34276,47643 +34277,43383 +34278,47644 +34279,47645 +34280,45469 +34281,43519 +34282,47646 +34283,47647 +34284,47648 +34285,47649 +34286,47650 +34287,47653 +34288,47652 +34289,47654 +34290,47655 +34291,47656 +34292,47657 +34293,47658 +34294,47659 +34295,47660 +34296,47661 +34297,47662 +34298,47663 +34299,47664 +34300,47665 +34301,47666 +34302,47667 +34303,47668 +34304,47669 +34305,47670 +34306,47671 +34307,47672 +34308,47673 +34309,47674 +34310,47675 +34311,47676 +34312,37194 +34313,47677 +34314,47678 +34315,47679 +34316,47680 +34317,47681 +34318,47682 +34319,15274 +34320,47683 +34321,47684 +34322,47685 +34323,47686 +34324,47687 +34325,45530 +34326,47688 +34327,47689 +34328,47690 +34329,48026 +34330,38762 +34331,48028 +34332,48025 +34333,48024 +34334,48902 +34335,48029 +34336,48031 +34337,48030 +34338,35023 +34339,50018 +34340,50019 +34341,48032 +34342,48305 +34343,48034 +34344,48306 +34345,48033 +34346,48038 +34347,48040 +34348,48042 +34349,48035 +34350,48037 +34351,48039 +34352,48036 +34353,44949 +34354,45779 +34355,45778 +34356,45783 +34357,43886 +34358,39214 +34359,45351 +34360,45351 +34361,39126 +34362,31616 +34363,31616 +34364,48925 +34365,48921 +34366,48923 +34367,48920 +34368,47694 +34369,48912 +34370,48018 +34371,48916 +34372,48917 +34373,48913 +34374,48914 +34375,48918 +34376,48919 +34377,48927 +34378,48926 +34379,48928 +34380,48905 +34381,48043 +34382,48045 +34383,48050 +34384,47975 +34385,47975 +34386,48307 +34387,47702 +34388,50015 +34389,50017 +34390,48004 +34391,48005 +34392,48052 +34393,50014 +34394,48015 +34395,48053 +34396,48013 +34397,48054 +34398,48055 +34399,48384 +34400,48058 +34401,48057 +34402,48025 +34403,48019 +34404,48019 +34405,50020 +34406,48387 +34407,48059 +34408,48059 +34409,48060 +34410,47915 +34411,47918 +34412,47919 +34413,811 +34414,34874 +34415,25134 +34416,18999 +34417,28688 +34418,47699 +34419,26358 +34420,3331 +34421,28439 +34422,34708 +34423,47700 +34424,47701 +34425,47926 +34426,29902 +34427,48503 +34428,48506 +34429,48505 +34430,48504 +34431,48313 +34432,48312 +34433,48314 +34434,48321 +34435,48321 +34436,48349 +34437,48325 +34438,48325 +34439,48326 +34440,17889 +34441,48347 +34442,48348 +34443,48315 +34444,48311 +34445,48322 +34446,48322 +34447,48316 +34448,48324 +34449,47711 +34450,47712 +34451,47713 +34452,39978 +34453,47714 +34454,47715 +34455,47716 +34456,47717 +34457,47718 +34458,47719 +34459,47720 +34460,47721 +34461,47722 +34462,47723 +34463,47724 +34464,34779 +34465,19495 +34466,36511 +34467,40548 +34468,12331 +34469,7841 +34470,48163 +34471,48177 +34472,48172 +34473,48158 +34474,7841 +34475,47731 +34476,7841 +34477,9154 +34478,47745 +34479,13686 +34480,47746 +34481,15274 +34482,20709 +34483,39827 +34484,47760 +34485,48355 +34486,47761 +34487,48355 +34488,48355 +34489,47765 +34490,31783 +34491,15274 +34492,47777 +34493,47931 +34494,47780 +34495,19115 +34496,8117 +34497,47779 +34498,47769 +34499,47770 +34500,47776 +34501,36187 +34502,29165 +34503,12331 +34504,11448 +34505,47802 +34506,47803 +34507,47804 +34508,47805 +34509,47806 +34510,47807 +34511,47808 +34512,47809 +34513,47810 +34514,47811 +34515,47812 +34516,39488 +34517,39004 +34518,47816 +34519,47817 +34520,47818 +34521,47819 +34522,47820 +34523,47821 +34524,47822 +34525,47823 +34526,47824 +34527,48356 +34528,48356 +34529,43083 +34530,48183 +34531,47879 +34532,47908 +34533,47969 +34534,23211 +34535,47892 +34536,47894 +34537,38720 +34538,36862 +34539,36862 +34540,47743 +34541,48359 +34542,48358 +34543,48358 +34544,47899 +34545,48358 +34546,48360 +34547,48361 +34548,12644 +34549,48353 +34550,26537 +34551,26537 +34552,47909 +34553,47911 +34554,48352 +34555,48352 +34556,48352 +34557,48354 +34558,48357 +34559,48366 +34560,48366 +34561,48366 +34562,48367 +34563,48368 +34564,48371 +34565,48370 +34566,48370 +34567,48370 +34568,48372 +34569,48372 +34570,48364 +34571,48363 +34572,48363 +34573,48362 +34574,48365 +34575,48369 +34576,47522 +34577,47521 +34578,47095 +34579,47294 +34580,47696 +34581,40522 +34582,44356 +34583,26420 +34584,26420 +34585,26420 +34586,47920 +34587,26420 +34588,47907 +34589,47921 +34590,47911 +34591,47908 +34592,26420 +34593,26420 +34594,26420 +34595,26420 +34596,47923 +34597,16211 +34598,7714 +34599,35178 +34600,20983 +34601,48174 +34602,48164 +34603,48157 +34604,48166 +34605,48155 +34606,48161 +34607,48165 +34608,48170 +34609,48169 +34610,48171 +34611,48159 +34612,42604 +34613,48173 +34614,48175 +34615,48167 +34616,48156 +34617,33284 +34618,39116 +34619,46046 +34620,46046 +34621,13713 +34622,47933 +34623,7714 +34624,47946 +34625,31906 +34626,44269 +34627,47950 +34628,41438 +34629,41438 +34630,41438 +34631,41440 +34632,41440 +34633,41440 +34634,41441 +34635,41441 +34636,41441 +34637,47970 +34638,47971 +34639,47972 +34640,47973 +34641,15736 +34642,2873 +34643,19572 +34644,47978 +34645,45064 +34646,48901 +34647,7128 +34648,51496 +34649,51498 +34650,51494 +34651,51497 +34652,51495 +34653,51500 +34654,33117 +34655,51501 +34656,51499 +34657,6539 +34658,963 +34659,49738 +34660,47978 +34661,49742 +34662,40411 +34663,19571 +34664,37215 +34665,33237 +34666,48062 +34667,48061 +34668,3243 +34669,51800 +34670,37049 +34671,48065 +34672,37209 +34673,48066 +34674,48067 +34675,48068 +34676,48070 +34677,31889 +34678,39212 +34679,48071 +34680,43085 +34681,48076 +34682,48075 +34683,48964 +34684,48992 +34685,48963 +34686,48802 +34687,3018 +34688,36756 +34689,6270 +34690,31257 +34691,39924 +34692,35178 +34693,48192 +34694,48193 +34695,3032 +34696,48199 +34697,42896 +34698,43012 +34699,31300 +34700,48201 +34701,17137 +34702,34812 +34703,41417 +34704,39126 +34705,42996 +34706,40044 +34707,42961 +34708,43086 +34709,28999 +34710,48202 +34711,23727 +34712,9837 +34713,48203 +34714,18080 +34715,48203 +34716,48228 +34717,48229 +34718,48231 +34719,1588 +34720,36488 +34721,56049 +34722,56050 +34723,24704 +34724,24704 +34725,24704 +34726,24704 +34727,24704 +34728,24704 +34729,24704 +34730,24704 +34731,24704 +34732,24704 +34733,24704 +34734,24704 +34735,44290 +34736,50873 +34737,44290 +34738,44290 +34739,44290 +34740,44290 +34741,44290 +34742,44290 +34743,44290 +34744,44290 +34745,44290 +34746,44290 +34747,53863 +34748,53880 +34749,47467 +34750,53879 +34751,39719 +34752,35831 +34753,54539 +34754,50871 +34755,53791 +34756,25468 +34757,25481 +34758,31742 +34759,54538 +34760,54535 +34761,54537 +34762,39115 +34763,54534 +34764,54536 +34765,39119 +34766,39114 +34767,54531 +34768,54528 +34769,53881 +34770,39114 +34771,48239 +34772,38667 +34773,48240 +34774,48242 +34775,12996 +34776,26537 +34777,48243 +34778,41673 +34779,41673 +34780,40696 +34781,48244 +34782,48245 +34783,48248 +34784,48249 +34785,40902 +34786,33552 +34787,18574 +34788,48252 +34789,48253 +34790,39389 +34791,48255 +34792,38794 +34793,48256 +34794,39958 +34795,48257 +34796,48258 +34797,44339 +34798,24022 +34799,48259 +34800,41681 +34801,8927 +34802,48260 +34803,42490 +34804,7414 +34805,26537 +34806,40048 +34807,48286 +34808,48287 +34809,48985 +34810,47067 +34811,42557 +34812,48310 +34813,17514 +34814,40045 +34815,45437 +34816,48327 +34817,48328 +34818,48329 +34819,48331 +34820,48332 +34821,48333 +34822,48335 +34823,30738 +34824,48336 +34825,48337 +34826,963 +34827,15322 +34828,48805 +34829,48339 +34830,35178 +34831,44725 +34832,18119 +34833,7290 +34834,15274 +34835,49259 +34836,48720 +34837,31800 +34838,48342 +34839,11947 +34840,4283 +34841,8562 +34842,48346 +34843,30593 +34844,17514 +34845,34796 +34846,1282 +34847,43891 +34848,48373 +34849,48374 +34850,48900 +34851,48374 +34852,34509 +34853,48377 +34854,48376 +34855,34831 +34856,34833 +34857,48378 +34858,48379 +34859,48380 +34860,7842 +34861,48725 +34862,48382 +34863,3568 +34864,48388 +34865,48743 +34866,18538 +34867,48744 +34868,48742 +34869,31257 +34870,48346 +34871,21586 +34872,7798 +34873,48395 +34874,48396 +34875,48397 +34876,48398 +34877,48399 +34878,48400 +34879,48401 +34880,48402 +34881,48403 +34882,48404 +34883,48405 +34884,48406 +34885,48407 +34886,48408 +34887,49005 +34888,45362 +34889,44358 +34890,43095 +34891,48899 +34892,49114 +34893,49113 +34894,48888 +34895,48887 +34896,49111 +34897,39014 +34898,48935 +34899,48416 +34900,48446 +34901,48449 +34902,48452 +34903,48967 +34904,47171 +34905,48456 +34906,48450 +34907,7162 +34908,9154 +34909,37249 +34910,48454 +34911,48451 +34912,48466 +34913,7287 +34914,48468 +34915,48431 +34916,48467 +34917,48469 +34918,47064 +34919,42327 +34920,48433 +34921,48471 +34922,48470 +34923,48291 +34924,48481 +34925,48482 +34926,48479 +34927,48484 +34928,48486 +34929,48483 +34930,48487 +34931,48493 +34932,48490 +34933,48491 +34934,48492 +34935,48358 +34936,48494 +34937,45319 +34938,48495 +34939,48496 +34940,45220 +34941,42651 +34942,48476 +34943,46359 +34944,48477 +34945,48473 +34946,48474 +34947,48472 +34948,50181 +34949,48888 +34950,49112 +34951,49112 +34952,48888 +34953,48966 +34954,42114 +34955,59498 +34956,18519 +34957,43108 +34958,48459 +34959,23721 +34960,48460 +34961,34378 +34962,23458 +34963,48462 +34964,48462 +34965,47022 +34966,47022 +34967,43108 +34968,48462 +34969,15305 +34970,15305 +34971,39435 +34972,7842 +34973,34432 +34974,48499 +34975,8926 +34976,48500 +34977,5086 +34978,48499 +34979,33940 +34980,7188 +34981,44269 +34982,18051 +34983,29164 +34984,19394 +34985,46606 +34986,49154 +34987,47994 +34988,49136 +34989,49993 +34990,48604 +34991,48605 +34992,48606 +34993,48608 +34994,48609 +34995,49150 +34996,49150 +34997,49149 +34998,49966 +34999,48601 +35000,48603 +35001,48591 +35002,49968 +35003,48618 +35004,50005 +35005,49952 +35006,50009 +35007,49954 +35008,39505 +35009,50009 +35010,50005 +35011,48618 +35012,49954 +35013,49955 +35014,49135 +35015,49137 +35016,39505 +35017,49150 +35018,49138 +35019,34953 +35020,34953 +35021,9659 +35022,49966 +35023,48602 +35024,48603 +35025,48591 +35026,49968 +35027,50001 +35028,48640 +35029,48740 +35030,50002 +35031,50003 +35032,49965 +35033,48739 +35034,48597 +35035,48598 +35036,48599 +35037,49139 +35038,49139 +35039,34960 +35040,1103 +35041,34960 +35042,49969 +35043,48611 +35044,48613 +35045,48615 +35046,48616 +35047,49140 +35048,49969 +35049,48611 +35050,48613 +35051,48615 +35052,48616 +35053,49960 +35054,50007 +35055,49964 +35056,50010 +35057,49963 +35058,49141 +35059,50001 +35060,48640 +35061,48740 +35062,50002 +35063,50003 +35064,49142 +35065,46606 +35066,49999 +35067,49998 +35068,49685 +35069,49996 +35070,49995 +35071,49136 +35072,49143 +35073,49153 +35074,39505 +35075,49393 +35076,49145 +35077,49969 +35078,48611 +35079,48614 +35080,48615 +35081,48616 +35082,49146 +35083,49960 +35084,50007 +35085,49964 +35086,50010 +35087,49963 +35088,50001 +35089,48640 +35090,48740 +35091,50002 +35092,50003 +35093,49141 +35094,49155 +35095,49141 +35096,50011 +35097,50008 +35098,49957 +35099,49958 +35100,49959 +35101,49143 +35102,49147 +35103,49148 +35104,25246 +35105,25246 +35106,46045 +35107,46606 +35108,38679 +35109,47994 +35110,49152 +35111,49966 +35112,48601 +35113,48603 +35114,48591 +35115,49968 +35116,19394 +35117,48521 +35118,32777 +35119,17893 +35120,50273 +35121,47467 +35122,1096 +35123,48528 +35124,32777 +35125,7041 +35126,48534 +35127,38747 +35128,29946 +35129,39129 +35130,39129 +35131,39129 +35132,39162 +35133,39162 +35134,39162 +35135,39162 +35136,48672 +35137,48678 +35138,48685 +35139,48678 +35140,48663 +35141,48679 +35142,48675 +35143,48675 +35144,48688 +35145,48663 +35146,48669 +35147,48675 +35148,48663 +35149,48691 +35150,48678 +35151,48671 +35152,48676 +35153,48683 +35154,48676 +35155,48660 +35156,48677 +35157,48674 +35158,48674 +35159,48686 +35160,48660 +35161,48661 +35162,48674 +35163,48660 +35164,48689 +35165,48676 +35166,48670 +35167,48681 +35168,48684 +35169,48681 +35170,48662 +35171,48682 +35172,48673 +35173,48673 +35174,48687 +35175,48662 +35176,48664 +35177,48673 +35178,48662 +35179,48690 +35180,48681 +35181,45781 +35182,43886 +35183,45782 +35184,45780 +35185,43889 +35186,7085 +35187,7085 +35188,7723 +35189,7085 +35190,7085 +35191,7085 +35192,7085 +35193,7085 +35194,7085 +35195,7085 +35196,7085 +35197,7085 +35198,7085 +35199,7085 +35200,7085 +35201,7085 +35202,7085 +35203,7085 +35204,7085 +35205,7085 +35206,7085 +35207,7085 +35208,7085 +35209,7085 +35210,7085 +35211,7085 +35212,7085 +35213,7085 +35214,7085 +35215,7085 +35216,7085 +35217,7085 +35218,7085 +35219,7085 +35220,47994 +35221,48576 +35222,11448 +35223,48708 +35224,48579 +35225,48951 +35226,48948 +35227,48807 +35228,48583 +35229,35023 +35230,3331 +35231,48617 +35232,20342 +35233,48645 +35234,23315 +35235,48667 +35236,48680 +35237,48692 +35238,1096 +35239,1096 +35240,1096 +35241,1096 +35242,1096 +35243,1096 +35244,1096 +35245,1096 +35246,1096 +35247,1096 +35248,1096 +35249,1096 +35250,1096 +35251,1096 +35252,1096 +35253,1096 +35254,1096 +35255,1096 +35256,1096 +35257,1096 +35258,1096 +35259,1096 +35260,1096 +35261,1096 +35262,1096 +35263,1096 +35264,1096 +35265,1096 +35266,1096 +35267,1096 +35268,1096 +35269,1096 +35270,1096 +35271,1096 +35272,45186 +35273,1155 +35274,34149 +35275,8132 +35276,33940 +35277,5567 +35278,3673 +35279,48709 +35280,48710 +35281,43317 +35282,39129 +35283,39129 +35284,39129 +35285,4813 +35286,4813 +35287,24521 +35288,21366 +35289,26371 +35290,39162 +35291,39162 +35292,39162 +35293,24188 +35294,15274 +35295,15274 +35296,15274 +35297,7798 +35298,7798 +35299,7798 +35300,1096 +35301,1096 +35302,1096 +35303,1096 +35304,6270 +35305,6270 +35306,6270 +35307,6270 +35308,6270 +35309,6270 +35310,6270 +35311,6270 +35312,48712 +35313,38896 +35314,7415 +35315,39925 +35316,39931 +35317,39162 +35318,39930 +35319,39162 +35320,39129 +35321,46812 +35322,6270 +35323,6270 +35324,43292 +35325,6270 +35326,39984 +35327,39984 +35328,48717 +35329,48719 +35330,48721 +35331,48722 +35332,48723 +35333,48726 +35334,48727 +35335,48728 +35336,48729 +35337,48730 +35338,48728 +35339,48726 +35340,48727 +35341,48729 +35342,48730 +35343,48733 +35344,48734 +35345,48735 +35346,48736 +35347,41182 +35348,3568 +35349,33467 +35350,33467 +35351,42378 +35352,42557 +35353,1096 +35354,15274 +35355,15274 +35356,48745 +35357,48746 +35358,48747 +35359,48748 +35360,48750 +35361,48745 +35362,48746 +35363,48747 +35364,48748 +35365,48750 +35366,48751 +35367,48752 +35368,48753 +35369,48754 +35370,48755 +35371,48751 +35372,48746 +35373,48747 +35374,48748 +35375,48750 +35376,48759 +35377,48760 +35378,48761 +35379,48762 +35380,48763 +35381,48756 +35382,48757 +35383,48758 +35384,48764 +35385,48765 +35386,48756 +35387,48757 +35388,48758 +35389,48764 +35390,48765 +35391,48756 +35392,48757 +35393,48758 +35394,48764 +35395,48765 +35396,48809 +35397,16598 +35398,48810 +35399,48811 +35400,48812 +35401,48791 +35402,48792 +35403,48793 +35404,48794 +35405,48795 +35406,48796 +35407,48797 +35408,48798 +35409,48799 +35410,48800 +35411,48801 +35412,48792 +35413,48793 +35414,48794 +35415,48795 +35416,48796 +35417,48813 +35418,48814 +35419,48819 +35420,48820 +35421,48822 +35422,48821 +35423,48823 +35424,48826 +35425,48827 +35426,48828 +35427,48829 +35428,48830 +35429,48831 +35430,48832 +35431,48833 +35432,48834 +35433,48835 +35434,48836 +35435,48838 +35436,48839 +35437,48837 +35438,48840 +35439,48841 +35440,48842 +35441,48843 +35442,48844 +35443,48845 +35444,43104 +35445,48846 +35446,48847 +35447,48848 +35448,48849 +35449,48850 +35450,48852 +35451,48853 +35452,48854 +35453,48855 +35454,48856 +35455,21204 +35456,48857 +35457,48858 +35458,48859 +35459,48860 +35460,48861 +35461,30995 +35462,48862 +35463,48806 +35464,48723 +35465,48733 +35466,48726 +35467,48730 +35468,48751 +35469,48750 +35470,48748 +35471,48751 +35472,48756 +35473,48757 +35474,48758 +35475,48760 +35476,48796 +35477,48793 +35478,48799 +35479,50196 +35480,1134 +35481,1317 +35482,3426 +35483,48863 +35484,48864 +35485,40556 +35486,50458 +35487,44920 +35488,44920 +35489,44920 +35490,48865 +35491,35178 +35492,48866 +35493,1482 +35494,15239 +35495,15239 +35496,15239 +35497,15239 +35498,7798 +35499,25482 +35500,7798 +35501,39203 +35502,1102 +35503,39205 +35504,48873 +35505,1301 +35506,38249 +35507,31907 +35508,12567 +35509,39212 +35510,48875 +35511,31603 +35512,35023 +35513,53793 +35514,48878 +35515,48879 +35516,20342 +35517,1096 +35518,1096 +35519,1096 +35520,1096 +35521,1096 +35522,1096 +35523,1096 +35524,1096 +35525,1096 +35526,1096 +35527,1096 +35528,1096 +35529,1096 +35530,1096 +35531,1096 +35532,1096 +35533,7085 +35534,7085 +35535,7085 +35536,7085 +35537,7085 +35538,7085 +35539,7085 +35540,7085 +35541,7085 +35542,7085 +35543,7085 +35544,7085 +35545,7085 +35546,7085 +35547,7085 +35548,7085 +35549,7085 +35550,7085 +35551,7085 +35552,7085 +35553,7085 +35554,7085 +35555,7085 +35556,7085 +35557,29169 +35558,3032 +35559,48884 +35560,48884 +35561,48884 +35562,1762 +35563,25473 +35564,1301 +35565,25468 +35566,1301 +35567,7270 +35568,20874 +35569,20874 +35570,48957 +35571,52204 +35572,52529 +35573,52436 +35574,49353 +35575,49354 +35576,49356 +35577,49358 +35578,51885 +35579,49363 +35580,49361 +35581,46155 +35582,6270 +35583,51691 +35584,52337 +35585,52336 +35586,48903 +35587,50603 +35588,52338 +35589,35423 +35590,49368 +35591,49369 +35592,51109 +35593,52341 +35594,52340 +35595,49373 +35596,52210 +35597,39121 +35598,42564 +35599,52212 +35600,52211 +35601,52437 +35602,51577 +35603,50507 +35604,52213 +35605,49378 +35606,40342 +35607,54506 +35608,54507 +35609,54753 +35610,34303 +35611,54508 +35612,51301 +35613,54509 +35614,54510 +35615,54511 +35616,51576 +35617,43088 +35618,50599 +35619,52335 +35620,50602 +35621,41678 +35622,59542 +35623,55234 +35624,59541 +35625,55237 +35626,41677 +35627,55238 +35628,6672 +35629,48910 +35630,50603 +35631,35437 +35632,52216 +35633,50604 +35634,50605 +35635,52217 +35636,50607 +35637,50609 +35638,50612 +35639,50615 +35640,52214 +35641,50618 +35642,54988 +35643,49876 +35644,54996 +35645,54997 +35646,52344 +35647,54998 +35648,48952 +35649,53207 +35650,52363 +35651,55003 +35652,54986 +35653,55004 +35654,55005 +35655,51711 +35656,51712 +35657,52222 +35658,51713 +35659,52223 +35660,51715 +35661,34336 +35662,52224 +35663,52221 +35664,51717 +35665,51718 +35666,51719 +35667,48953 +35668,48959 +35669,48955 +35670,61307 +35671,50733 +35672,52494 +35673,52351 +35674,41913 +35675,52353 +35676,51528 +35677,51529 +35678,51532 +35679,52491 +35680,48510 +35681,51533 +35682,52362 +35683,51458 +35684,48965 +35685,36595 +35686,4584 +35687,49219 +35688,16452 +35689,44358 +35690,48972 +35691,35301 +35692,48969 +35693,48970 +35694,39917 +35695,1301 +35696,1301 +35697,1301 +35698,1301 +35699,1301 +35700,39918 +35701,44287 +35702,39915 +35703,48971 +35704,37891 +35705,22377 +35706,13493 +35707,39929 +35708,6270 +35709,48982 +35710,20803 +35711,11449 +35712,48983 +35713,48725 +35714,40075 +35715,7015 +35716,37854 +35717,37853 +35718,34281 +35719,48996 +35720,1656 +35721,47901 +35722,40551 +35723,44843 +35724,49030 +35725,7065 +35726,11448 +35727,49051 +35728,40103 +35729,40104 +35730,40106 +35731,40394 +35732,49062 +35733,39123 +35734,46245 +35735,48472 +35736,50446 +35737,7629 +35738,1588 +35739,1317 +35740,49074 +35741,49075 +35742,49076 +35743,49077 +35744,44707 +35745,49078 +35746,24687 +35747,49081 +35748,49082 +35749,49082 +35750,49082 +35751,49082 +35752,1301 +35753,1301 +35754,1301 +35755,1301 +35756,7798 +35757,49086 +35758,44921 +35759,44921 +35760,44927 +35761,44926 +35762,1096 +35763,1096 +35764,1096 +35765,1096 +35766,1096 +35767,1096 +35768,1096 +35769,1096 +35770,43359 +35771,43359 +35772,43359 +35773,43359 +35774,44246 +35775,33399 +35776,992 +35777,32845 +35778,7957 +35779,49089 +35780,49091 +35781,49096 +35782,19488 +35783,5567 +35784,36488 +35785,49104 +35786,49105 +35787,31756 +35788,49106 +35789,31756 +35790,35299 +35791,13123 +35792,1625 +35793,45233 +35794,25472 +35795,29165 +35796,7921 +35797,16836 +35798,7394 +35799,6340 +35800,32426 +35801,23432 +35802,34377 +35803,49124 +35804,49121 +35805,49122 +35806,44920 +35807,49232 +35808,49199 +35809,49200 +35810,49233 +35811,49202 +35812,49203 +35813,31335 +35814,51032 +35815,56441 +35816,51067 +35817,51091 +35818,49464 +35819,34751 +35820,49251 +35821,51077 +35822,51094 +35823,49206 +35824,49221 +35825,37541 +35826,57489 +35827,56892 +35828,49127 +35829,49222 +35830,49468 +35831,39725 +35832,53642 +35833,49264 +35834,49470 +35835,56195 +35836,6340 +35837,49128 +35838,39725 +35839,9858 +35840,4717 +35841,49251 +35842,56309 +35843,49473 +35844,49474 +35845,40005 +35846,56328 +35847,49129 +35848,51090 +35849,49223 +35850,44246 +35851,49468 +35852,49207 +35853,2247 +35854,49130 +35855,49131 +35856,49226 +35857,51453 +35858,50191 +35859,51040 +35860,49903 +35861,51072 +35862,51087 +35863,51035 +35864,49263 +35865,51454 +35866,51089 +35867,49225 +35868,49241 +35869,49496 +35870,49227 +35871,51045 +35872,49241 +35873,51074 +35874,34865 +35875,61307 +35876,37556 +35877,49246 +35878,51061 +35879,51085 +35880,51038 +35881,26001 +35882,49505 +35883,51096 +35884,51049 +35885,49255 +35886,9860 +35887,51088 +35888,51039 +35889,56355 +35890,49362 +35891,49510 +35892,51235 +35893,52377 +35894,51075 +35895,49512 +35896,51044 +35897,49230 +35898,51062 +35899,51083 +35900,51050 +35901,49258 +35902,49521 +35903,51093 +35904,6490 +35905,49247 +35906,44590 +35907,20798 +35908,18080 +35909,51078 +35910,51095 +35911,28812 +35912,15206 +35913,51043 +35914,49246 +35915,51070 +35916,51098 +35917,49538 +35918,49263 +35919,51079 +35920,53048 +35921,49536 +35922,26391 +35923,51068 +35924,51082 +35925,49229 +35926,49930 +35927,51076 +35928,56188 +35929,51042 +35930,49261 +35931,51061 +35932,28812 +35933,49527 +35934,51084 +35935,34188 +35936,49267 +35937,16283 +35938,49231 +35939,49195 +35940,46253 +35941,16161 +35942,49218 +35943,7602 +35944,2853 +35945,30634 +35946,49228 +35947,50877 +35948,50874 +35949,50879 +35950,50878 +35951,50872 +35952,50876 +35953,50871 +35954,51030 +35955,52069 +35956,52104 +35957,52219 +35958,52118 +35959,52516 +35960,52120 +35961,49536 +35962,52071 +35963,52126 +35964,52125 +35965,52218 +35966,51145 +35967,51203 +35968,52123 +35969,49538 +35970,52122 +35971,52069 +35972,52104 +35973,52219 +35974,52118 +35975,52516 +35976,52120 +35977,49536 +35978,52071 +35979,52126 +35980,52125 +35981,52218 +35982,51145 +35983,51203 +35984,52123 +35985,49538 +35986,52122 +35987,52069 +35988,52104 +35989,52219 +35990,52118 +35991,52516 +35992,52120 +35993,49536 +35994,52071 +35995,52126 +35996,52125 +35997,52218 +35998,51145 +35999,51203 +36000,52123 +36001,49538 +36002,52122 +36003,52069 +36004,52104 +36005,52219 +36006,52118 +36007,52516 +36008,52120 +36009,49536 +36010,52071 +36011,52126 +36012,52125 +36013,52218 +36014,51145 +36015,51203 +36016,52123 +36017,49538 +36018,52122 +36019,52069 +36020,52112 +36021,51845 +36022,51837 +36023,52103 +36024,52106 +36025,52109 +36026,51777 +36027,51783 +36028,52117 +36029,52032 +36030,51780 +36031,51192 +36032,52114 +36033,52068 +36034,52113 +36035,52110 +36036,52112 +36037,51845 +36038,51837 +36039,52103 +36040,52106 +36041,52109 +36042,51777 +36043,51783 +36044,52117 +36045,52032 +36046,51840 +36047,51192 +36048,52114 +36049,52068 +36050,52113 +36051,52110 +36052,52112 +36053,51845 +36054,51837 +36055,52103 +36056,52106 +36057,52109 +36058,51777 +36059,51783 +36060,52073 +36061,52220 +36062,51780 +36063,51192 +36064,51781 +36065,52068 +36066,51777 +36067,49257 +36068,49903 +36069,49790 +36070,49251 +36071,49797 +36072,49241 +36073,49246 +36074,49256 +36075,49257 +36076,49903 +36077,49790 +36078,49251 +36079,49797 +36080,49241 +36081,49246 +36082,49256 +36083,49814 +36084,49905 +36085,49255 +36086,49912 +36087,49264 +36088,49850 +36089,49845 +36090,49859 +36091,49815 +36092,49904 +36093,49811 +36094,49911 +36095,49842 +36096,49851 +36097,49847 +36098,49860 +36099,49815 +36100,49904 +36101,49811 +36102,49911 +36103,49842 +36104,49851 +36105,49847 +36106,49860 +36107,49816 +36108,49906 +36109,49813 +36110,49913 +36111,49843 +36112,49852 +36113,49848 +36114,49863 +36115,49817 +36116,49902 +36117,49809 +36118,49910 +36119,49844 +36120,49853 +36121,49849 +36122,49864 +36123,49817 +36124,49902 +36125,49809 +36126,49910 +36127,49844 +36128,49853 +36129,49849 +36130,49864 +36131,49908 +36132,49901 +36133,49914 +36134,49909 +36135,51784 +36136,49927 +36137,49898 +36138,49899 +36139,49908 +36140,49901 +36141,49914 +36142,49909 +36143,51784 +36144,49927 +36145,49898 +36146,49899 +36147,49924 +36148,49978 +36149,49921 +36150,49984 +36151,52517 +36152,49928 +36153,49918 +36154,49981 +36155,49925 +36156,49979 +36157,49922 +36158,49985 +36159,52518 +36160,49929 +36161,49919 +36162,49982 +36163,49925 +36164,49979 +36165,49922 +36166,49985 +36167,52518 +36168,49929 +36169,49919 +36170,49982 +36171,49926 +36172,49980 +36173,49923 +36174,49986 +36175,52519 +36176,49930 +36177,49920 +36178,49983 +36179,52133 +36180,52135 +36181,52128 +36182,52129 +36183,52496 +36184,52155 +36185,51237 +36186,51075 +36187,52145 +36188,52146 +36189,52147 +36190,52148 +36191,52497 +36192,52153 +36193,52151 +36194,51212 +36195,52133 +36196,52135 +36197,52128 +36198,52129 +36199,52495 +36200,52155 +36201,51237 +36202,51075 +36203,52145 +36204,52146 +36205,52147 +36206,52148 +36207,52498 +36208,52153 +36209,52151 +36210,51212 +36211,52133 +36212,52135 +36213,52128 +36214,52129 +36215,52495 +36216,52155 +36217,51237 +36218,51075 +36219,52145 +36220,52146 +36221,52147 +36222,52148 +36223,52498 +36224,52153 +36225,52151 +36226,51212 +36227,52133 +36228,52135 +36229,52128 +36230,52129 +36231,52495 +36232,52155 +36233,51237 +36234,51075 +36235,52145 +36236,52146 +36237,52147 +36238,52148 +36239,52498 +36240,52153 +36241,52151 +36242,51212 +36243,52166 +36244,52163 +36245,51887 +36246,52164 +36247,51872 +36248,52167 +36249,51883 +36250,52165 +36251,52166 +36252,52163 +36253,51887 +36254,52164 +36255,51872 +36256,52167 +36257,51883 +36258,52165 +36259,57612 +36260,52163 +36261,51887 +36262,52164 +36263,51872 +36264,52167 +36265,51883 +36266,52165 +36267,52166 +36268,52163 +36269,51887 +36270,52164 +36271,51872 +36272,52167 +36273,51883 +36274,52165 +36275,52166 +36276,52163 +36277,51887 +36278,52164 +36279,51872 +36280,52167 +36281,51883 +36282,52165 +36283,52166 +36284,52163 +36285,51887 +36286,52164 +36287,51872 +36288,52167 +36289,51883 +36290,52165 +36291,51653 +36292,51657 +36293,51652 +36294,51656 +36295,61307 +36296,51658 +36297,51951 +36298,51654 +36299,51662 +36300,51131 +36301,51660 +36302,51661 +36303,51207 +36304,51663 +36305,51949 +36306,51659 +36307,51676 +36308,51669 +36309,51665 +36310,51668 +36311,61308 +36312,51671 +36313,51950 +36314,51672 +36315,51653 +36316,51657 +36317,51652 +36318,51673 +36319,61307 +36320,51674 +36321,51951 +36322,51654 +36323,51675 +36324,51131 +36325,51660 +36326,51661 +36327,51207 +36328,51663 +36329,51949 +36330,51659 +36331,51676 +36332,51669 +36333,51665 +36334,51668 +36335,61308 +36336,51671 +36337,51950 +36338,51672 +36339,51653 +36340,51657 +36341,51652 +36342,51673 +36343,61307 +36344,51674 +36345,51951 +36346,51654 +36347,51948 +36348,51131 +36349,51660 +36350,51645 +36351,51207 +36352,51663 +36353,51949 +36354,51659 +36355,51953 +36356,52046 +36357,52048 +36358,51954 +36359,51891 +36360,51955 +36361,51892 +36362,51897 +36363,52043 +36364,52045 +36365,52049 +36366,52042 +36367,50905 +36368,52044 +36369,49725 +36370,52039 +36371,52051 +36372,52052 +36373,51633 +36374,52050 +36375,51641 +36376,51640 +36377,49512 +36378,51636 +36379,52055 +36380,52057 +36381,52053 +36382,52054 +36383,51904 +36384,52056 +36385,51297 +36386,52058 +36387,52063 +36388,52045 +36389,52049 +36390,52042 +36391,50905 +36392,52044 +36393,49725 +36394,52064 +36395,51771 +36396,51775 +36397,51769 +36398,51772 +36399,51773 +36400,51774 +36401,51770 +36402,51776 +36403,50050 +36404,50051 +36405,50052 +36406,50053 +36407,50054 +36408,50055 +36409,15076 +36410,50057 +36411,50058 +36412,23091 +36413,15196 +36414,50059 +36415,50061 +36416,50062 +36417,4284 +36418,31800 +36419,24646 +36420,9865 +36421,2854 +36422,31800 +36423,31616 +36424,23728 +36425,9836 +36426,31616 +36427,9834 +36428,31800 +36429,9840 +36430,23897 +36431,39000 +36432,9859 +36433,9857 +36434,31889 +36435,15420 +36436,9658 +36437,6539 +36438,9860 +36439,9859 +36440,9854 +36441,9858 +36442,31603 +36443,12567 +36444,9852 +36445,52185 +36446,52187 +36447,52183 +36448,52188 +36449,52191 +36450,52190 +36451,52182 +36452,52189 +36453,52186 +36454,52176 +36455,52184 +36456,52180 +36457,52181 +36458,52179 +36459,50236 +36460,24061 +36461,50245 +36462,50238 +36463,50239 +36464,50313 +36465,50241 +36466,27756 +36467,21605 +36468,22923 +36469,31120 +36470,50313 +36471,28337 +36472,50243 +36473,50118 +36474,50119 +36475,50124 +36476,50121 +36477,50119 +36478,49206 +36479,50122 +36480,50119 +36481,50118 +36482,50123 +36483,50121 +36484,50125 +36485,49206 +36486,50126 +36487,50197 +36488,50198 +36489,50199 +36490,49201 +36491,50200 +36492,50201 +36493,50202 +36494,50203 +36495,50204 +36496,50202 +36497,50206 +36498,50205 +36499,50201 +36500,50210 +36501,50320 +36502,50247 +36503,49203 +36504,50316 +36505,50319 +36506,50325 +36507,50320 +36508,50252 +36509,50253 +36510,50254 +36511,50315 +36512,50254 +36513,50322 +36514,50321 +36515,50260 +36516,50261 +36517,50262 +36518,50267 +36519,50264 +36520,49199 +36521,50265 +36522,50266 +36523,50268 +36524,50269 +36525,50265 +36526,50270 +36527,50263 +36528,50271 +36529,49223 +36530,50334 +36531,50327 +36532,50331 +36533,50326 +36534,50332 +36535,50328 +36536,50329 +36537,50326 +36538,50333 +36539,50327 +36540,50330 +36541,50332 +36542,50326 +36543,50134 +36544,50135 +36545,50136 +36546,50137 +36547,50138 +36548,50139 +36549,50346 +36550,50344 +36551,50143 +36552,50347 +36553,50345 +36554,50146 +36555,50147 +36556,50343 +36557,31314 +36558,50370 +36559,50371 +36560,50370 +36561,50370 +36562,50371 +36563,50371 +36564,31314 +36565,31314 +36566,50370 +36567,50370 +36568,50371 +36569,31314 +36570,31314 +36571,50063 +36572,50064 +36573,50073 +36574,50067 +36575,50068 +36576,50070 +36577,50074 +36578,50072 +36579,50065 +36580,50075 +36581,50071 +36582,50069 +36583,50076 +36584,50066 +36585,50337 +36586,50342 +36587,50340 +36588,50336 +36589,49227 +36590,50335 +36591,50341 +36592,50337 +36593,50336 +36594,50338 +36595,50339 +36596,50340 +36597,50335 +36598,50336 +36599,50353 +36600,50358 +36601,50354 +36602,50357 +36603,50349 +36604,50352 +36605,50359 +36606,50356 +36607,50351 +36608,50355 +36609,50348 +36610,50354 +36611,50350 +36612,50357 +36613,50149 +36614,50150 +36615,50158 +36616,50149 +36617,50150 +36618,49222 +36619,50153 +36620,50159 +36621,50154 +36622,50157 +36623,50156 +36624,50155 +36625,50152 +36626,50151 +36627,50160 +36628,50161 +36629,49202 +36630,50162 +36631,50163 +36632,50164 +36633,50165 +36634,50166 +36635,50166 +36636,50168 +36637,50167 +36638,50162 +36639,50164 +36640,50167 +36641,18405 +36642,18405 +36643,18405 +36644,18405 +36645,18405 +36646,18405 +36647,18405 +36648,18405 +36649,18405 +36650,18405 +36651,18405 +36652,18405 +36653,18405 +36654,18405 +36655,50366 +36656,50362 +36657,19902 +36658,50364 +36659,50361 +36660,9062 +36661,50363 +36662,50368 +36663,50360 +36664,50361 +36665,50369 +36666,25076 +36667,50367 +36668,50365 +36669,50127 +36670,50125 +36671,50128 +36672,50121 +36673,50129 +36674,50122 +36675,50118 +36676,49207 +36677,50128 +36678,49206 +36679,50130 +36680,50121 +36681,50129 +36682,50131 +36683,50209 +36684,50203 +36685,50208 +36686,50199 +36687,50208 +36688,50205 +36689,50198 +36690,50205 +36691,49233 +36692,50199 +36693,50205 +36694,50197 +36695,50209 +36696,50208 +36697,50139 +36698,53556 +36699,50148 +36700,50147 +36701,50346 +36702,50139 +36703,50136 +36704,50138 +36705,50135 +36706,50137 +36707,50134 +36708,50138 +36709,50343 +36710,50344 +36711,16752 +36712,16752 +36713,40002 +36714,16752 +36715,40002 +36716,16752 +36717,20782 +36718,40002 +36719,16752 +36720,16752 +36721,16752 +36722,40002 +36723,39991 +36724,16752 +36725,36189 +36726,49234 +36727,18704 +36728,50442 +36729,38748 +36730,22304 +36731,39117 +36732,49803 +36733,929 +36734,44269 +36735,30953 +36736,49244 +36737,49152 +36738,7111 +36739,39910 +36740,24691 +36741,3914 +36742,49274 +36743,6340 +36744,1246 +36745,24687 +36746,49274 +36747,49274 +36748,18101 +36749,20154 +36750,49285 +36751,49292 +36752,36540 +36753,36675 +36754,36597 +36755,49295 +36756,3029 +36757,7697 +36758,6340 +36759,49296 +36760,36595 +36761,46247 +36762,49297 +36763,9154 +36764,49298 +36765,8560 +36766,61981 +36767,61982 +36768,15787 +36769,17882 +36770,17882 +36771,10924 +36772,11449 +36773,21402 +36774,16299 +36775,44321 +36776,2599 +36777,48462 +36778,49311 +36779,49320 +36780,7263 +36781,16212 +36782,54540 +36783,54311 +36784,54313 +36785,49330 +36786,49330 +36787,36190 +36788,18092 +36789,7134 +36790,49337 +36791,49338 +36792,49339 +36793,13291 +36794,6631 +36795,6636 +36796,49346 +36797,20915 +36798,20914 +36799,1659 +36800,4826 +36801,6002 +36802,6666 +36803,13489 +36804,3429 +36805,26546 +36806,26546 +36807,48394 +36808,3429 +36809,36675 +36810,37249 +36811,7342 +36812,20818 +36813,7342 +36814,20818 +36815,24778 +36816,4719 +36817,4721 +36818,34796 +36819,39723 +36820,1246 +36821,4719 +36822,4721 +36823,37653 +36824,7202 +36825,31577 +36826,49385 +36827,35930 +36828,35850 +36829,6690 +36830,2637 +36831,21327 +36832,3032 +36833,3032 +36834,49385 +36835,35843 +36836,33298 +36837,11431 +36838,11431 +36839,11431 +36840,9135 +36841,811 +36842,15274 +36843,6270 +36844,1096 +36845,17882 +36846,35851 +36847,35852 +36848,7629 +36849,34751 +36850,34754 +36851,34753 +36852,23440 +36853,12904 +36854,24188 +36855,24188 +36856,24188 +36857,17923 +36858,17922 +36859,49406 +36860,55236 +36861,1246 +36862,52015 +36863,52014 +36864,24188 +36865,44269 +36866,31639 +36867,26871 +36868,40304 +36869,49422 +36870,34059 +36871,38671 +36872,52817 +36873,49584 +36874,24187 +36875,25472 +36876,10365 +36877,8927 +36878,50143 +36879,50204 +36880,51559 +36881,49233 +36882,50158 +36883,49223 +36884,51229 +36885,51200 +36886,51213 +36887,49473 +36888,51201 +36889,8026 +36890,8026 +36891,8026 +36892,8026 +36893,8026 +36894,8026 +36895,6009 +36896,21610 +36897,21610 +36898,56467 +36899,36862 +36900,47904 +36901,49931 +36902,1442 +36903,52259 +36904,50454 +36905,52247 +36906,52248 +36907,50453 +36908,52249 +36909,50593 +36910,52908 +36911,38648 +36912,57335 +36913,52705 +36914,39489 +36915,39490 +36916,50594 +36917,54249 +36918,54315 +36919,61268 +36920,54257 +36921,54317 +36922,60328 +36923,54262 +36924,54319 +36925,60331 +36926,54305 +36927,54324 +36928,60329 +36929,54264 +36930,54321 +36931,60327 +36932,54284 +36933,54322 +36934,60330 +36935,49441 +36936,44269 +36937,52499 +36938,51204 +36939,51555 +36940,1143 +36941,49625 +36942,46609 +36943,35359 +36944,50971 +36945,50973 +36946,52229 +36947,50974 +36948,50908 +36949,52225 +36950,51520 +36951,50979 +36952,50982 +36953,51300 +36954,52230 +36955,1246 +36956,49509 +36957,49519 +36958,49520 +36959,1246 +36960,1246 +36961,31498 +36962,49356 +36963,1246 +36964,1246 +36965,1246 +36966,1246 +36967,1246 +36968,1246 +36969,52500 +36970,1246 +36971,52226 +36972,1103 +36973,52231 +36974,52233 +36975,50988 +36976,52227 +36977,52998 +36978,50995 +36979,31905 +36980,51691 +36981,51924 +36982,51199 +36983,51925 +36984,51922 +36985,49474 +36986,42919 +36987,49549 +36988,39211 +36989,51931 +36990,49548 +36991,52361 +36992,52350 +36993,17776 +36994,41433 +36995,51932 +36996,50908 +36997,52340 +36998,56207 +36999,52342 +37000,51933 +37001,49526 +37002,51109 +37003,7733 +37004,51125 +37005,51154 +37006,33296 +37007,51164 +37008,49362 +37009,51269 +37010,3164 +37011,56954 +37012,49561 +37013,13885 +37014,50200 +37015,56890 +37016,56889 +37017,49206 +37018,51175 +37019,51091 +37020,7169 +37021,51152 +37022,51246 +37023,49202 +37024,51545 +37025,49227 +37026,50138 +37027,49582 +37028,40005 +37029,51168 +37030,49203 +37031,50133 +37032,50063 +37033,50191 +37034,51196 +37035,49583 +37036,50130 +37037,49373 +37038,44799 +37039,51268 +37040,53002 +37041,50198 +37042,51180 +37043,52235 +37044,49202 +37045,49586 +37046,50319 +37047,56891 +37048,30783 +37049,49226 +37050,50515 +37051,41655 +37052,49353 +37053,32008 +37054,50340 +37055,52234 +37056,52568 +37057,49354 +37058,39121 +37059,47158 +37060,50509 +37061,50511 +37062,50615 +37063,34059 +37064,43092 +37065,50514 +37066,52997 +37067,49369 +37068,50507 +37069,52232 +37070,55282 +37071,49587 +37072,51189 +37073,49232 +37074,51182 +37075,50121 +37076,51166 +37077,51241 +37078,51258 +37079,9835 +37080,50328 +37081,51597 +37082,53001 +37083,51598 +37084,28695 +37085,6376 +37086,51600 +37087,50825 +37088,51601 +37089,4664 +37090,49602 +37091,2616 +37092,2616 +37093,1093 +37094,1093 +37095,52343 +37096,31899 +37097,2616 +37098,2616 +37099,51602 +37100,55111 +37101,55105 +37102,3663 +37103,6381 +37104,49604 +37105,52421 +37106,51603 +37107,51453 +37108,51606 +37109,51577 +37110,52399 +37111,19785 +37112,55984 +37113,52398 +37114,51608 +37115,49876 +37116,49362 +37117,49363 +37118,56317 +37119,49611 +37120,49612 +37121,49613 +37122,50149 +37123,49616 +37124,6851 +37125,49586 +37126,47264 +37127,49650 +37128,49636 +37129,2515 +37130,7459 +37131,49641 +37132,49642 +37133,49643 +37134,50990 +37135,52500 +37136,49644 +37137,49645 +37138,50907 +37139,49369 +37140,44704 +37141,35437 +37142,42891 +37143,44704 +37144,52327 +37145,44705 +37146,49691 +37147,44705 +37148,7629 +37149,50908 +37150,50909 +37151,33728 +37152,50910 +37153,52225 +37154,16946 +37155,52323 +37156,44704 +37157,44704 +37158,44704 +37159,44705 +37160,44705 +37161,44705 +37162,50911 +37163,31755 +37164,31755 +37165,49354 +37166,52326 +37167,52316 +37168,44704 +37169,50987 +37170,53811 +37171,53806 +37172,53824 +37173,33173 +37174,29719 +37175,50917 +37176,50918 +37177,43088 +37178,51686 +37179,51688 +37180,51003 +37181,50971 +37182,52302 +37183,51689 +37184,52330 +37185,25467 +37186,33808 +37187,35407 +37188,59543 +37189,52328 +37190,51691 +37191,51692 +37192,49005 +37193,53810 +37194,53821 +37195,39122 +37196,52234 +37197,51374 +37198,42557 +37199,50821 +37200,47467 +37201,6371 +37202,49655 +37203,51266 +37204,51227 +37205,51199 +37206,51214 +37207,51252 +37208,51188 +37209,52530 +37210,51042 +37211,51187 +37212,51224 +37213,51188 +37214,51234 +37215,51198 +37216,51721 +37217,51722 +37218,52310 +37219,51723 +37220,51724 +37221,52309 +37222,52307 +37223,51235 +37224,51172 +37225,51556 +37226,51233 +37227,49361 +37228,51236 +37229,24778 +37230,50979 +37231,9086 +37232,31657 +37233,22192 +37234,51192 +37235,51726 +37236,51727 +37237,52995 +37238,51806 +37239,51191 +37240,53807 +37241,51808 +37242,51809 +37243,51728 +37244,52308 +37245,52312 +37246,49667 +37247,15773 +37248,52864 +37249,49681 +37250,7039 +37251,16452 +37252,49687 +37253,35584 +37254,7245 +37255,50996 +37256,52325 +37257,32323 +37258,52317 +37259,52864 +37260,50998 +37261,50999 +37262,52313 +37263,50609 +37264,51001 +37265,49761 +37266,49709 +37267,9135 +37268,9135 +37269,9135 +37270,51194 +37271,51161 +37272,51208 +37273,51153 +37274,51203 +37275,51199 +37276,51183 +37277,51534 +37278,51042 +37279,51044 +37280,51172 +37281,51135 +37282,51136 +37283,51218 +37284,51138 +37285,51140 +37286,51136 +37287,45186 +37288,50994 +37289,52324 +37290,33906 +37291,51004 +37292,50609 +37293,51003 +37294,52492 +37295,51051 +37296,51145 +37297,4841 +37298,23714 +37299,811 +37300,12927 +37301,49722 +37302,7287 +37303,2480 +37304,35738 +37305,1096 +37306,35178 +37307,2480 +37308,49745 +37309,41489 +37310,49750 +37311,45500 +37312,21115 +37313,39186 +37314,65930 +37315,56324 +37316,49241 +37317,49261 +37318,56322 +37319,49913 +37320,49246 +37321,49241 +37322,51173 +37323,56318 +37324,56314 +37325,51217 +37326,11431 +37327,11431 +37328,11431 +37329,11431 +37330,11431 +37331,11431 +37332,11431 +37333,11431 +37334,11431 +37335,11431 +37336,11431 +37337,11431 +37338,11431 +37339,56750 +37340,56741 +37341,11431 +37342,11431 +37343,11431 +37344,56750 +37345,11431 +37346,11431 +37347,56741 +37348,9135 +37349,56741 +37350,1134 +37351,51201 +37352,49255 +37353,51264 +37354,49906 +37355,51265 +37356,49256 +37357,51242 +37358,49234 +37359,36189 +37360,55717 +37361,53822 +37362,53808 +37363,51010 +37364,51005 +37365,52314 +37366,51006 +37367,51700 +37368,51701 +37369,52334 +37370,52329 +37371,26001 +37372,49771 +37373,52333 +37374,51702 +37375,51262 +37376,51604 +37377,51703 +37378,49864 +37379,51704 +37380,51210 +37381,49782 +37382,56376 +37383,51250 +37384,50988 +37385,51251 +37386,49848 +37387,49980 +37388,51263 +37389,49358 +37390,51706 +37391,51294 +37392,49847 +37393,49911 +37394,49816 +37395,51707 +37396,51211 +37397,4841 +37398,49362 +37399,49246 +37400,49859 +37401,51695 +37402,49255 +37403,49906 +37404,49264 +37405,49848 +37406,49851 +37407,51697 +37408,53823 +37409,53819 +37410,51708 +37411,50676 +37412,49784 +37413,49785 +37414,49527 +37415,51221 +37416,49783 +37417,51066 +37418,51067 +37419,49521 +37420,51245 +37421,51215 +37422,51212 +37423,51244 +37424,51237 +37425,51223 +37426,51257 +37427,51267 +37428,51260 +37429,51181 +37430,39927 +37431,7363 +37432,49788 +37433,51148 +37434,51113 +37435,51137 +37436,51248 +37437,51071 +37438,49788 +37439,51239 +37440,51240 +37441,51237 +37442,51148 +37443,51238 +37444,59543 +37445,50443 +37446,51231 +37447,53181 +37448,56315 +37449,4836 +37450,51109 +37451,54935 +37452,49798 +37453,51146 +37454,51071 +37455,51141 +37456,51067 +37457,56323 +37458,51137 +37459,44269 +37460,11907 +37461,49801 +37462,49800 +37463,22794 +37464,50664 +37465,49804 +37466,56326 +37467,9319 +37468,51086 +37469,51144 +37470,49512 +37471,51106 +37472,56321 +37473,51527 +37474,56316 +37475,51125 +37476,51094 +37477,51087 +37478,52372 +37479,56188 +37480,51207 +37481,51087 +37482,51206 +37483,61308 +37484,51162 +37485,56387 +37486,51190 +37487,51254 +37488,18079 +37489,18079 +37490,18079 +37491,18079 +37492,18079 +37493,18079 +37494,18079 +37495,18079 +37496,18079 +37497,18079 +37498,18079 +37499,18079 +37500,13824 +37501,4813 +37502,12925 +37503,44924 +37504,1096 +37505,56330 +37506,56354 +37507,56386 +37508,49725 +37509,51247 +37510,51259 +37511,56392 +37512,51151 +37513,51184 +37514,51133 +37515,51197 +37516,51504 +37517,49725 +37518,56189 +37519,51904 +37520,51453 +37521,50911 +37522,51162 +37523,28830 +37524,26001 +37525,51277 +37526,51230 +37527,51243 +37528,23629 +37529,23728 +37530,9840 +37531,49225 +37532,51243 +37533,29697 +37534,40005 +37535,50137 +37536,49233 +37537,50142 +37538,7261 +37539,16325 +37540,8093 +37541,34318 +37542,3673 +37543,9852 +37544,34034 +37545,9860 +37546,6490 +37547,50203 +37548,35437 +37549,9858 +37550,49722 +37551,49819 +37552,43316 +37553,34960 +37554,43317 +37555,45851 +37556,39927 +37557,16283 +37558,52820 +37559,29947 +37560,51112 +37561,52821 +37562,22639 +37563,34188 +37564,51256 +37565,15706 +37566,51160 +37567,20628 +37568,2925 +37569,49822 +37570,9731 +37571,7695 +37572,15692 +37573,39640 +37574,5563 +37575,47072 +37576,32426 +37577,6506 +37578,34188 +37579,49829 +37580,16190 +37581,21411 +37582,29722 +37583,50455 +37584,37659 +37585,13715 +37586,49839 +37587,51709 +37588,49840 +37589,40557 +37590,51710 +37591,54513 +37592,57540 +37593,49369 +37594,54514 +37595,31899 +37596,49873 +37597,23262 +37598,49870 +37599,7695 +37600,1464 +37601,1246 +37602,57290 +37603,811 +37604,49880 +37605,49881 +37606,4584 +37607,1246 +37608,49891 +37609,49892 +37610,49893 +37611,36741 +37612,51520 +37613,52311 +37614,54516 +37615,54501 +37616,49357 +37617,54504 +37618,52568 +37619,55720 +37620,54039 +37621,38667 +37622,54519 +37623,54520 +37624,35472 +37625,54517 +37626,53117 +37627,51927 +37628,53118 +37629,53116 +37630,47068 +37631,57305 +37632,50507 +37633,50615 +37634,53120 +37635,51577 +37636,50908 +37637,53121 +37638,53122 +37639,53123 +37640,53124 +37641,53126 +37642,31657 +37643,53815 +37644,53820 +37645,53132 +37646,53133 +37647,23018 +37648,53134 +37649,49373 +37650,51459 +37651,31906 +37652,51460 +37653,51512 +37654,52363 +37655,52355 +37656,52360 +37657,51518 +37658,51520 +37659,2380 +37660,31282 +37661,17896 +37662,7137 +37663,57336 +37664,55088 +37665,21411 +37666,51519 +37667,51521 +37668,51632 +37669,52345 +37670,53809 +37671,51516 +37672,50991 +37673,51301 +37674,9319 +37675,51612 +37676,42378 +37677,21205 +37678,51613 +37679,57604 +37680,52347 +37681,50603 +37682,50510 +37683,9852 +37684,52529 +37685,44841 +37686,52397 +37687,52400 +37688,51615 +37689,48511 +37690,49876 +37691,52407 +37692,52414 +37693,54894 +37694,34189 +37695,53835 +37696,51939 +37697,50971 +37698,51577 +37699,51610 +37700,55240 +37701,60020 +37702,55241 +37703,55243 +37704,55242 +37705,60021 +37706,63661 +37707,21115 +37708,20618 +37709,44269 +37710,44269 +37711,32278 +37712,52568 +37713,49943 +37714,52565 +37715,52529 +37716,49944 +37717,52567 +37718,52569 +37719,49950 +37720,42947 +37721,52571 +37722,51520 +37723,52572 +37724,52573 +37725,52398 +37726,50612 +37727,7287 +37728,43096 +37729,52619 +37730,52620 +37731,52618 +37732,31664 +37733,52574 +37734,52576 +37735,52338 +37736,7695 +37737,7695 +37738,7134 +37739,49147 +37740,49146 +37741,32847 +37742,32276 +37743,50506 +37744,52467 +37745,50025 +37746,52544 +37747,50024 +37748,9657 +37749,42173 +37750,7273 +37751,50376 +37752,52464 +37753,52458 +37754,52545 +37755,52472 +37756,15063 +37757,52448 +37758,40413 +37759,43654 +37760,27601 +37761,43732 +37762,52520 +37763,52475 +37764,51715 +37765,52488 +37766,52513 +37767,53372 +37768,52515 +37769,52482 +37770,52514 +37771,52480 +37772,49362 +37773,52476 +37774,52481 +37775,53371 +37776,52501 +37777,52485 +37778,52473 +37779,52484 +37780,52502 +37781,52487 +37782,52477 +37783,51927 +37784,33728 +37785,52509 +37786,52483 +37787,52302 +37788,53817 +37789,52512 +37790,51704 +37791,53814 +37792,52450 +37793,52304 +37794,52454 +37795,52451 +37796,52453 +37797,23422 +37798,53825 +37799,52605 +37800,52610 +37801,52611 +37802,52445 +37803,51691 +37804,50536 +37805,50006 +37806,52446 +37807,52457 +37808,52455 +37809,49368 +37810,51721 +37811,52456 +37812,52460 +37813,52449 +37814,51577 +37815,50543 +37816,7273 +37817,52465 +37818,52359 +37819,26001 +37820,33856 +37821,28733 +37822,52459 +37823,36902 +37824,56898 +37825,52364 +37826,51934 +37827,29447 +37828,51020 +37829,50216 +37830,1143 +37831,1143 +37832,23904 +37833,31604 +37834,23904 +37835,26622 +37836,51567 +37837,50000 +37838,2618 +37839,21416 +37840,43086 +37841,51936 +37842,49378 +37843,52348 +37844,52614 +37845,52615 +37846,52616 +37847,50507 +37848,51938 +37849,52304 +37850,52347 +37851,52357 +37852,55709 +37853,51939 +37854,53826 +37855,53818 +37856,49373 +37857,59544 +37858,54902 +37859,50541 +37860,50544 +37861,31603 +37862,52512 +37863,44269 +37864,37840 +37865,37841 +37866,42849 +37867,53625 +37868,55009 +37869,28831 +37870,55011 +37871,54989 +37872,55012 +37873,44237 +37874,55019 +37875,54933 +37876,52334 +37877,50106 +37878,16325 +37879,18574 +37880,32546 +37881,50180 +37882,22793 +37883,54903 +37884,53893 +37885,42831 +37886,55006 +37887,22793 +37888,50183 +37889,54985 +37890,55007 +37891,55008 +37892,50189 +37893,59619 +37894,59619 +37895,59619 +37896,59619 +37897,59619 +37898,18079 +37899,18079 +37900,18079 +37901,18079 +37902,18079 +37903,18079 +37904,18079 +37905,18079 +37906,18079 +37907,18079 +37908,18079 +37909,18079 +37910,24153 +37911,24153 +37912,24153 +37913,24153 +37914,50213 +37915,1102 +37916,50214 +37917,50215 +37919,50451 +37920,31577 +37921,49932 +37922,1815 +37923,43101 +37924,50282 +37925,46209 +37926,37808 +37927,39129 +37928,39162 +37929,39162 +37930,23229 +37931,8093 +37932,50374 +37933,6506 +37934,45948 +37936,51284 +37937,51172 +37938,51370 +37939,34318 +37940,51301 +37941,51145 +37942,53251 +37943,51287 +37944,51368 +37945,51334 +37946,51338 +37947,51317 +37948,51208 +37949,51004 +37950,51355 +37951,51326 +37952,28812 +37953,52624 +37954,52623 +37955,27658 +37956,51388 +37957,51361 +37958,52516 +37959,49464 +37960,51278 +37961,52626 +37962,53257 +37963,52625 +37964,51359 +37965,51203 +37966,51044 +37967,51276 +37968,51369 +37969,51372 +37970,52493 +37971,51312 +37972,51339 +37973,51327 +37974,15218 +37975,49464 +37976,31889 +37977,51199 +37978,51304 +37979,51232 +37980,49247 +37981,49851 +37982,28830 +37983,49911 +37984,56470 +37985,49848 +37986,51264 +37987,51360 +37988,51375 +37989,51332 +37990,51318 +37991,49809 +37992,9852 +37993,51343 +37994,49842 +37995,51286 +37996,51392 +37997,6490 +37998,49903 +37999,51354 +38000,49255 +38001,49845 +38002,51373 +38003,51333 +38004,51319 +38005,49256 +38006,49258 +38007,56372 +38008,51316 +38009,26001 +38010,51164 +38011,51335 +38012,51356 +38013,49246 +38014,49251 +38015,56436 +38016,56446 +38017,49251 +38018,56450 +38019,56452 +38020,56457 +38021,49842 +38022,49920 +38023,51213 +38024,51148 +38025,51390 +38026,51358 +38027,59545 +38028,28812 +38029,56310 +38030,56443 +38031,56312 +38032,9658 +38033,51309 +38034,51320 +38035,51077 +38036,51275 +38037,51303 +38038,51293 +38039,51300 +38040,51260 +38041,51321 +38042,51280 +38043,56200 +38044,54933 +38045,52303 +38046,51394 +38047,51072 +38048,51221 +38049,51322 +38050,50456 +38051,51347 +38052,49847 +38053,51071 +38054,51357 +38055,51181 +38056,51311 +38057,51238 +38058,51213 +38059,50457 +38060,56447 +38061,56451 +38062,56453 +38063,56468 +38064,51351 +38065,52499 +38066,51077 +38067,23629 +38068,24087 +38069,34034 +38070,16283 +38071,34188 +38072,53466 +38073,34188 +38074,34188 +38075,34188 +38076,16283 +38077,34188 +38078,16283 +38079,16283 +38080,16283 +38081,16283 +38082,50459 +38083,19459 +38084,56393 +38085,51197 +38086,61308 +38087,51391 +38088,56370 +38089,22423 +38090,23728 +38091,44841 +38092,49512 +38093,56469 +38094,50905 +38095,51330 +38096,56195 +38097,51315 +38098,37860 +38099,50461 +38100,56394 +38101,51131 +38102,51393 +38103,51204 +38104,51288 +38105,51302 +38106,51162 +38107,51108 +38108,56138 +38109,51337 +38110,49478 +38111,51133 +38112,51297 +38113,51391 +38114,56445 +38115,51346 +38116,51331 +38117,51314 +38118,51397 +38119,51904 +38120,51899 +38121,49725 +38122,56454 +38123,51295 +38124,51087 +38125,56189 +38126,50143 +38127,50208 +38128,50146 +38129,50141 +38130,51365 +38131,50139 +38132,50147 +38133,50146 +38134,51364 +38135,50197 +38136,49232 +38137,50144 +38138,51367 +38139,49233 +38140,49232 +38141,50138 +38142,51366 +38143,50137 +38144,10924 +38145,1282 +38146,51377 +38147,963 +38148,51381 +38149,50485 +38150,50167 +38151,50122 +38152,50208 +38153,51171 +38154,51380 +38155,50121 +38156,49227 +38157,50152 +38158,50266 +38159,51152 +38160,50578 +38161,51271 +38162,50579 +38163,50489 +38164,26391 +38165,50493 +38166,49226 +38167,40005 +38168,50158 +38169,51168 +38170,50201 +38171,50325 +38172,50166 +38173,51403 +38174,50206 +38175,31419 +38176,49201 +38177,51174 +38178,50338 +38179,51152 +38180,51171 +38181,50329 +38182,50326 +38183,49221 +38184,50130 +38185,50149 +38186,36861 +38187,51464 +38188,51171 +38189,49207 +38190,49206 +38191,50130 +38192,40005 +38193,49203 +38194,29163 +38195,49223 +38196,51463 +38197,51385 +38198,51402 +38199,49199 +38200,49202 +38201,57175 +38202,57176 +38203,57174 +38204,57179 +38205,57178 +38206,56894 +38207,56895 +38208,50157 +38209,50504 +38210,40368 +38211,50505 +38212,52818 +38213,45851 +38214,51185 +38215,50521 +38216,50527 +38217,50191 +38218,24022 +38219,35423 +38220,39121 +38221,43086 +38222,43086 +38223,30783 +38224,51362 +38225,50459 +38226,9860 +38227,9858 +38228,6490 +38229,1102 +38230,9858 +38231,9860 +38232,6490 +38233,50537 +38234,26532 +38235,45626 +38236,7008 +38237,53056 +38238,51110 +38239,49232 +38240,49232 +38241,50850 +38242,49207 +38243,50533 +38244,50532 +38245,50535 +38246,50534 +38247,49373 +38248,50536 +38249,50542 +38250,49225 +38251,26391 +38252,28812 +38253,15206 +38254,15206 +38255,23043 +38256,49231 +38257,50547 +38258,3673 +38259,7371 +38260,50548 +38261,9154 +38262,20309 +38263,50549 +38264,8121 +38265,44590 +38266,37182 +38267,3093 +38268,50561 +38269,48232 +38270,22024 +38271,44290 +38272,13531 +38273,50556 +38274,50559 +38275,50564 +38276,50565 +38277,50566 +38278,50567 +38279,50568 +38280,7921 +38281,7921 +38282,50572 +38283,1588 +38284,51279 +38285,50582 +38286,50581 +38287,50583 +38288,50584 +38289,45850 +38290,50586 +38291,3152 +38292,39926 +38293,51363 +38294,3664 +38295,51424 +38296,50591 +38297,50592 +38298,50595 +38299,26532 +38300,3663 +38301,50733 +38302,49326 +38303,6340 +38304,50627 +38305,50628 +38306,50629 +38307,34780 +38308,50630 +38309,50860 +38310,50861 +38311,50863 +38312,50686 +38313,50859 +38314,50862 +38315,50730 +38316,10448 +38317,34059 +38318,51795 +38319,9152 +38320,18119 +38321,17896 +38322,23171 +38323,50649 +38324,50650 +38325,41680 +38326,26534 +38327,1102 +38328,1102 +38329,50652 +38330,11909 +38331,32546 +38332,37859 +38333,32284 +38334,34121 +38335,926 +38336,40606 +38337,37860 +38338,2793 +38339,9134 +38340,35401 +38341,18047 +38342,2351 +38343,37859 +38344,1498 +38345,52701 +38346,51396 +38347,50663 +38348,7394 +38349,36687 +38350,40694 +38351,15794 +38352,50689 +38353,57171 +38354,31131 +38355,57172 +38356,56897 +38357,43111 +38358,43092 +38359,43092 +38360,54347 +38361,50537 +38362,5563 +38363,1103 +38364,5562 +38365,39640 +38366,54349 +38367,55823 +38368,57173 +38369,13354 +38370,52829 +38371,56642 +38372,56641 +38373,56643 +38374,56644 +38375,55478 +38376,55479 +38377,50675 +38378,37083 +38379,47969 +38380,31995 +38381,8383 +38382,47969 +38383,34188 +38384,51996 +38385,37549 +38386,18098 +38387,50680 +38388,50680 +38389,50680 +38390,50680 +38391,41615 +38392,41773 +38393,18053 +38394,32582 +38395,20550 +38396,38893 +38397,15789 +38398,37814 +38399,31783 +38400,52902 +38401,49794 +38402,49246 +38403,49253 +38404,52901 +38405,52584 +38406,53050 +38407,53051 +38408,53052 +38409,64114 +38410,53054 +38411,49920 +38412,55193 +38413,52950 +38414,57751 +38415,52951 +38416,51213 +38417,56692 +38418,56684 +38419,56690 +38420,51109 +38421,56688 +38422,56691 +38423,8098 +38424,52151 +38425,55477 +38426,50693 +38427,50696 +38428,47114 +38429,18084 +38430,38430 +38431,40852 +38432,18119 +38433,49256 +38434,53055 +38435,56687 +38436,57750 +38437,52906 +38438,51784 +38439,51293 +38440,57541 +38441,56696 +38442,16700 +38443,16706 +38444,17171 +38445,18418 +38446,14408 +38447,16972 +38448,17069 +38449,16994 +38450,11138 +38451,4486 +38452,57078 +38453,49480 +38454,57084 +38455,57083 +38456,57089 +38457,57087 +38458,51182 +38459,57081 +38460,56896 +38461,53470 +38462,57086 +38463,57085 +38464,57082 +38465,51533 +38466,35744 +38467,41541 +38468,50603 +38469,50708 +38470,50709 +38471,8256 +38472,50721 +38473,7134 +38474,41062 +38475,41061 +38476,41050 +38477,34925 +38478,41050 +38479,47773 +38480,50713 +38481,3797 +38482,22242 +38483,50724 +38484,31664 +38485,31664 +38486,3332 +38487,50715 +38488,50716 +38489,3332 +38490,50722 +38491,50718 +38492,16700 +38493,16701 +38494,16706 +38495,16702 +38496,9894 +38497,18422 +38498,50719 +38499,50740 +38500,50743 +38501,50744 +38502,50742 +38503,50741 +38504,47969 +38505,50725 +38506,50565 +38507,50729 +38508,50731 +38509,50732 +38510,47969 +38511,50736 +38512,54213 +38513,46626 +38514,5283 +38515,48310 +38516,30601 +38517,33239 +38518,50737 +38519,50739 +38520,9319 +38521,53379 +38522,41412 +38523,50746 +38524,56373 +38525,51286 +38526,34188 +38527,51310 +38528,51201 +38529,51369 +38530,51413 +38531,51411 +38532,56337 +38533,50753 +38534,50752 +38535,51414 +38536,51188 +38537,56397 +38538,50748 +38539,51978 +38540,50772 +38541,50770 +38542,51412 +38543,50771 +38544,30969 +38545,4777 +38546,20978 +38547,7221 +38548,7339 +38549,6006 +38550,18707 +38551,31577 +38552,19498 +38553,18089 +38554,50766 +38555,50802 +38556,50768 +38557,56646 +38558,56645 +38559,50775 +38560,8931 +38561,50776 +38562,20658 +38563,929 +38564,18089 +38565,50797 +38566,50798 +38567,5563 +38568,50799 +38569,50800 +38570,50801 +38571,7374 +38572,43092 +38573,50803 +38574,50814 +38575,7162 +38576,40160 +38577,21833 +38578,36754 +38579,51682 +38580,50854 +38581,7741 +38582,36754 +38583,13715 +38584,7103 +38585,23332 +38586,35014 +38587,50881 +38588,37841 +38589,37840 +38590,56676 +38591,56678 +38592,52938 +38593,811 +38594,15274 +38595,6270 +38596,1096 +38597,811 +38598,811 +38599,811 +38600,50883 +38601,7261 +38602,50884 +38603,50885 +38604,32837 +38605,3093 +38606,50886 +38607,50887 +38608,3093 +38609,50890 +38610,6690 +38611,39122 +38612,19091 +38613,9854 +38614,51531 +38615,52352 +38616,51514 +38617,51515 +38618,51163 +38619,7083 +38620,50899 +38621,52507 +38622,2593 +38623,39204 +38624,34892 +38625,50901 +38626,51731 +38627,32426 +38628,50919 +38629,7270 +38630,50962 +38631,51447 +38632,52261 +38633,50966 +38635,50972 +38636,44523 +38637,7162 +38638,15964 +38639,51013 +38640,51029 +38641,51021 +38642,31906 +38643,9430 +38644,32276 +38645,51052 +38646,51053 +38647,51054 +38648,32060 +38649,51055 +38650,15340 +38651,25833 +38652,51056 +38653,17881 +38654,16161 +38655,21975 +38656,51057 +38657,51118 +38658,51143 +38659,51177 +38660,31899 +38661,51738 +38662,31899 +38663,51956 +38664,51733 +38665,51798 +38666,51632 +38667,51787 +38668,51915 +38669,51637 +38670,51990 +38671,31664 +38672,39122 +38673,51272 +38674,51914 +38675,51912 +38676,18096 +38677,24037 +38678,31899 +38679,811 +38680,51272 +38681,8619 +38682,57287 +38683,51588 +38684,48462 +38685,1093 +38686,55392 +38687,51396 +38688,51395 +38689,3673 +38690,13291 +38691,51405 +38692,51406 +38693,29677 +38694,34688 +38695,24156 +38696,20899 +38697,21845 +38698,40652 +38699,36902 +38700,18204 +38701,51425 +38702,51426 +38703,53378 +38704,51446 +38705,22436 +38706,26731 +38707,51427 +38708,38758 +38709,38758 +38710,51044 +38711,51145 +38712,52493 +38713,51208 +38714,51312 +38715,53251 +38716,51203 +38717,51334 +38718,49464 +38719,51370 +38720,51448 +38721,51449 +38722,51450 +38723,51451 +38724,7270 +38725,7270 +38726,51145 +38727,51312 +38728,51334 +38729,53251 +38730,51208 +38731,51452 +38732,51334 +38733,51370 +38734,51203 +38735,51370 +38736,51044 +38737,51203 +38738,51312 +38739,51044 +38740,51370 +38741,51145 +38742,51208 +38743,51279 +38744,51279 +38745,51279 +38746,51279 +38747,51279 +38748,51279 +38749,51279 +38750,51279 +38751,34318 +38752,34318 +38753,34318 +38754,34318 +38755,54070 +38756,15218 +38757,15218 +38758,15218 +38759,15218 +38760,57689 +38761,57688 +38762,57687 +38763,48007 +38764,45112 +38765,48007 +38766,811 +38767,811 +38768,811 +38769,811 +38770,811 +38771,811 +38772,811 +38773,811 +38774,811 +38775,811 +38776,811 +38777,811 +38778,811 +38779,811 +38780,811 +38781,811 +38782,811 +38783,811 +38784,811 +38785,811 +38786,811 +38787,811 +38788,811 +38789,811 +38790,811 +38791,811 +38792,811 +38793,811 +38794,811 +38795,811 +38796,811 +38797,811 +38798,811 +38799,811 +38800,811 +38801,811 +38802,811 +38803,811 +38804,811 +38805,811 +38806,811 +38807,811 +38808,811 +38809,811 +38810,811 +38811,811 +38812,811 +38813,811 +38814,811 +38815,811 +38816,811 +38817,811 +38818,811 +38819,811 +38820,811 +38821,811 +38822,811 +38823,811 +38824,811 +38825,811 +38826,811 +38827,811 +38828,811 +38829,811 +38830,811 +38831,811 +38832,811 +38833,811 +38834,811 +38835,811 +38836,811 +38837,811 +38838,811 +38839,811 +38840,811 +38841,811 +38842,811 +38843,811 +38844,811 +38845,811 +38846,811 +38847,811 +38848,811 +38849,811 +38850,811 +38851,811 +38852,811 +38853,811 +38854,811 +38855,811 +38856,811 +38857,811 +38858,811 +38859,811 +38860,811 +38861,811 +38862,811 +38863,811 +38864,811 +38865,811 +38866,811 +38867,811 +38868,811 +38869,811 +38870,811 +38871,811 +38872,811 +38873,811 +38874,811 +38875,811 +38876,811 +38877,811 +38878,811 +38879,811 +38880,811 +38881,811 +38882,811 +38883,811 +38884,811 +38885,811 +38886,811 +38887,811 +38888,811 +38889,811 +38890,811 +38891,811 +38892,811 +38893,811 +38894,811 +38895,811 +38896,811 +38897,811 +38898,811 +38899,811 +38900,811 +38901,811 +38902,811 +38903,811 +38904,811 +38905,811 +38906,811 +38907,811 +38908,811 +38909,811 +38910,811 +38911,811 +38912,811 +38913,811 +38914,811 +38915,811 +38916,811 +38917,811 +38918,811 +38919,811 +38920,811 +38921,811 +38922,811 +38923,811 +38924,811 +38925,811 +38926,811 +38927,811 +38928,811 +38929,811 +38930,811 +38931,811 +38932,811 +38933,811 +38934,811 +38935,811 +38936,811 +38937,811 +38938,811 +38939,811 +38940,811 +38941,811 +38942,811 +38943,811 +38944,811 +38945,811 +38946,811 +38947,811 +38948,811 +38949,811 +38950,811 +38951,811 +38952,811 +38953,811 +38954,811 +38955,811 +38956,811 +38957,811 +38958,811 +38959,811 +38960,811 +38961,811 +38962,811 +38963,811 +38964,811 +38965,811 +38966,811 +38967,811 +38968,811 +38969,811 +38970,811 +38971,811 +38972,811 +38973,811 +38974,811 +38975,811 +38976,811 +38977,811 +38978,811 +38979,811 +38980,811 +38981,811 +38982,811 +38983,811 +38984,811 +38985,811 +38986,811 +38987,811 +38988,811 +38989,811 +38990,811 +38991,811 +38992,811 +38993,811 +38994,811 +38995,811 +38996,811 +38997,811 +38998,811 +38999,811 +39000,811 +39001,811 +39002,811 +39003,811 +39004,811 +39005,811 +39006,811 +39007,57309 +39008,57323 +39009,51091 +39010,51091 +39011,51091 +39012,51091 +39013,49251 +39014,1588 +39015,56012 +39016,49809 +39017,56333 +39018,56357 +39019,51333 +39020,51164 +39021,51356 +39022,49842 +39023,51307 +39024,51461 +39025,51356 +39026,49246 +39027,51333 +39028,56389 +39029,51316 +39030,51333 +39031,49903 +39032,51462 +39033,51307 +39034,56332 +39035,49903 +39036,51307 +39037,51333 +39038,51356 +39039,51164 +39040,49251 +39041,43536 +39042,49246 +39043,51303 +39044,51148 +39045,51213 +39046,51300 +39047,51324 +39048,51310 +39049,51293 +39050,51322 +39051,51077 +39052,51309 +39053,51238 +39054,51181 +39055,51390 +39056,51357 +39057,51238 +39058,51324 +39059,51357 +39060,51300 +39061,1103 +39062,49246 +39063,34364 +39064,51310 +39065,51322 +39066,51324 +39067,51148 +39068,51357 +39069,51310 +39070,51181 +39071,51300 +39072,51094 +39073,56893 +39074,15206 +39075,51247 +39076,51325 +39077,61308 +39078,51131 +39079,51899 +39080,51387 +39081,51288 +39082,51149 +39083,54815 +39084,54813 +39085,51503 +39086,54814 +39087,54812 +39088,54809 +39089,49478 +39090,56330 +39091,51892 +39092,51288 +39093,51306 +39094,51247 +39095,51387 +39096,51325 +39097,51131 +39098,51131 +39099,56106 +39100,51353 +39101,51536 +39102,51131 +39103,51298 +39104,51353 +39105,51247 +39106,51387 +39107,51247 +39108,51288 +39109,51382 +39110,51382 +39111,51382 +39112,51152 +39113,51171 +39114,49227 +39115,49227 +39116,50325 +39117,50329 +39118,54735 +39119,51174 +39120,50137 +39121,50146 +39122,50137 +39123,51530 +39124,54734 +39125,50122 +39126,50122 +39127,50266 +39128,51377 +39129,49207 +39130,49207 +39131,50166 +39132,49221 +39133,51365 +39134,50152 +39135,50149 +39136,51463 +39137,51463 +39138,40005 +39139,55381 +39140,35245 +39141,35431 +39142,50208 +39143,50208 +39144,49201 +39145,50208 +39146,35373 +39147,51537 +39148,51538 +39149,24694 +39150,51541 +39151,54599 +39152,8117 +39153,8117 +39154,51551 +39155,51552 +39156,51553 +39157,51591 +39158,7742 +39159,40606 +39160,51995 +39161,3307 +39162,51563 +39163,51565 +39164,34493 +39165,51566 +39166,51553 +39167,47902 +39168,51577 +39169,51576 +39170,51569 +39171,51575 +39172,49876 +39173,51568 +39174,51572 +39175,51571 +39176,51574 +39177,51573 +39178,51570 +39179,56375 +39180,51582 +39181,51587 +39182,51584 +39183,51585 +39184,5636 +39185,40409 +39186,51579 +39187,51586 +39188,53829 +39189,57095 +39190,54214 +39191,53833 +39192,53836 +39193,35472 +39194,53838 +39195,55378 +39196,54223 +39197,53841 +39198,53842 +39199,53843 +39200,53844 +39201,18170 +39202,7464 +39203,1588 +39204,1588 +39205,16721 +39206,51590 +39207,18089 +39208,51913 +39209,4719 +39210,4721 +39211,57468 +39212,57478 +39213,8625 +39214,38671 +39215,57007 +39216,56607 +39217,53847 +39218,6002 +39219,1645 +39220,20977 +39221,35259 +39222,2874 +39223,7350 +39224,53848 +39225,35446 +39226,35250 +39227,8736 +39228,53850 +39229,35361 +39230,53852 +39231,35423 +39232,35358 +39233,35573 +39234,55381 +39235,54208 +39236,54229 +39237,53883 +39238,51596 +39239,53884 +39240,53885 +39241,35444 +39242,53887 +39243,53888 +39244,35313 +39245,53889 +39246,35437 +39247,54209 +39248,53890 +39249,53891 +39250,35313 +39251,57073 +39252,56603 +39253,34872 +39254,54227 +39255,54799 +39256,55718 +39257,35442 +39258,53286 +39259,53898 +39260,57522 +39261,54220 +39262,53901 +39263,53902 +39264,51620 +39265,11199 +39266,37250 +39267,53903 +39268,51634 +39269,30953 +39270,53904 +39271,54038 +39272,35430 +39273,56612 +39274,53906 +39275,53907 +39276,53908 +39277,35431 +39278,54207 +39279,54215 +39280,53912 +39281,35642 +39282,35373 +39283,54211 +39284,55327 +39285,53915 +39286,57896 +39287,51677 +39288,51678 +39289,51679 +39290,51680 +39291,53918 +39292,35439 +39293,53920 +39294,57542 +39295,53925 +39296,35870 +39297,35366 +39298,55382 +39299,53926 +39300,20628 +39301,32276 +39302,7270 +39303,51685 +39304,7270 +39305,7742 +39306,53850 +39307,57072 +39308,54217 +39309,53646 +39310,55326 +39311,53931 +39312,46322 +39313,51716 +39314,27454 +39315,51729 +39316,1093 +39317,7733 +39318,7827 +39319,51730 +39320,51734 +39321,51737 +39322,51736 +39323,49464 +39324,51749 +39325,42655 +39326,51750 +39327,51751 +39328,6674 +39329,6674 +39330,51838 +39331,51849 +39332,51851 +39333,52612 +39334,54602 +39335,51853 +39336,51850 +39337,51854 +39338,54605 +39339,54604 +39340,54613 +39341,54611 +39342,54608 +39343,54600 +39344,53932 +39345,55379 +39346,52103 +39347,51840 +39348,51841 +39349,57288 +39350,57289 +39351,8114 +39352,45064 +39353,9657 +39354,57387 +39355,5567 +39356,8120 +39357,1096 +39358,1096 +39359,46750 +39360,1096 +39361,1096 +39362,2757 +39363,51842 +39364,51192 +39365,51845 +39366,49464 +39367,52103 +39368,51848 +39369,54224 +39370,51427 +39371,8078 +39372,49464 +39373,56365 +39374,51864 +39375,49898 +39376,51866 +39377,51867 +39378,51868 +39379,54219 +39380,51870 +39381,51760 +39382,51761 +39383,49979 +39384,51762 +39385,51860 +39386,53935 +39387,51856 +39388,35445 +39389,35438 +39390,54212 +39391,53937 +39392,35437 +39393,53938 +39394,35242 +39395,53653 +39396,53939 +39397,53940 +39398,53884 +39399,53942 +39400,49920 +39401,35472 +39402,51858 +39403,53653 +39404,35444 +39405,57543 +39406,51855 +39407,35367 +39408,54029 +39409,54028 +39410,51859 +39411,51861 +39412,49901 +39413,51863 +39414,51865 +39415,35408 +39416,55041 +39417,55712 +39418,18721 +39419,53805 +39420,35819 +39421,35373 +39422,54032 +39423,35574 +39424,54036 +39425,35366 +39426,54033 +39427,55715 +39428,51872 +39429,51885 +39430,51886 +39431,51887 +39432,51888 +39433,51889 +39434,7827 +39435,51890 +39436,59543 +39437,54935 +39438,51875 +39439,51877 +39440,51878 +39441,51879 +39442,51880 +39443,51884 +39444,51881 +39445,51882 +39446,51883 +39447,51764 +39448,51891 +39449,51897 +39450,51892 +39451,49725 +39452,51905 +39453,51906 +39454,51907 +39455,51908 +39456,51766 +39457,51893 +39458,51306 +39459,51895 +39460,51896 +39461,51901 +39462,51902 +39463,51900 +39464,51899 +39465,51898 +39466,51639 +39467,55380 +39468,35818 +39469,55096 +39470,35359 +39471,51903 +39472,35437 +39473,55710 +39474,51279 +39475,34318 +39476,7273 +39477,7273 +39478,56190 +39479,15218 +39480,52268 +39481,51279 +39482,51279 +39483,34318 +39484,34318 +39485,34318 +39486,50534 +39487,51909 +39488,56888 +39489,13884 +39490,51910 +39491,57531 +39492,54443 +39493,55170 +39494,56597 +39495,57016 +39496,54399 +39497,56474 +39498,54283 +39499,54308 +39500,57017 +39501,57389 +39502,57390 +39503,51904 +39504,1317 +39505,57293 +39506,24156 +39507,51797 +39508,51894 +39509,51796 +39510,3486 +39511,31769 +39512,37249 +39513,36675 +39514,54387 +39515,54269 +39516,15851 +39517,54280 +39518,54302 +39519,54422 +39520,40652 +39521,54387 +39522,51801 +39523,54269 +39524,37653 +39525,7202 +39526,51802 +39527,51803 +39528,54280 +39529,54302 +39530,54422 +39531,57538 +39532,44288 +39533,7886 +39534,51927 +39535,53000 +39536,52613 +39537,42919 +39538,56071 +39539,54274 +39540,18704 +39541,51810 +39542,54290 +39543,54407 +39544,54407 +39545,57538 +39546,54274 +39547,54230 +39548,54290 +39549,37657 +39550,19566 +39551,13715 +39552,7103 +39553,57539 +39554,54261 +39555,54273 +39556,54290 +39557,54406 +39558,54256 +39559,14019 +39560,54423 +39561,54396 +39562,3429 +39563,26546 +39564,54281 +39565,54289 +39566,51811 +39567,8284 +39568,2798 +39569,2798 +39570,3668 +39571,51799 +39572,51813 +39573,7262 +39574,20791 +39575,19520 +39576,15733 +39577,51816 +39578,54375 +39579,54254 +39580,54275 +39581,54296 +39582,54408 +39583,57068 +39584,7270 +39585,7270 +39586,7270 +39587,7270 +39588,57023 +39589,57069 +39590,57071 +39591,57066 +39592,57023 +39593,57066 +39594,57068 +39595,57069 +39596,57071 +39597,57023 +39598,51820 +39599,46612 +39600,51822 +39601,57025 +39602,57055 +39603,57027 +39604,57070 +39605,54403 +39606,55369 +39607,55376 +39608,56214 +39609,55371 +39610,54403 +39611,55369 +39612,55375 +39613,56213 +39614,51835 +39615,1815 +39616,51836 +39617,55484 +39618,55486 +39619,55485 +39620,55489 +39621,55491 +39622,55372 +39623,55484 +39624,55488 +39625,55485 +39626,55487 +39627,55490 +39628,57546 +39629,54255 +39630,54277 +39631,54299 +39632,54419 +39633,54255 +39634,54420 +39635,57546 +39636,54278 +39637,54300 +39638,54255 +39639,54419 +39640,57546 +39641,54279 +39642,54301 +39643,20875 +39644,15274 +39645,13370 +39646,33940 +39647,7649 +39648,24022 +39649,35423 +39650,34336 +39651,51921 +39652,31899 +39653,31899 +39654,8093 +39655,31899 +39656,51926 +39657,51886 +39658,51968 +39659,51969 +39660,51972 +39661,51977 +39662,51980 +39663,51986 +39664,51730 +39665,3164 +39666,46209 +39667,51997 +39668,9140 +39669,51999 +39670,40606 +39671,42031 +39672,52002 +39673,52004 +39674,56388 +39675,52005 +39676,42896 +39677,34688 +39678,42956 +39679,43012 +39680,50994 +39681,52194 +39682,52193 +39683,52198 +39684,52196 +39685,52197 +39686,52195 +39687,25482 +39688,52011 +39689,33296 +39690,31198 +39691,52013 +39692,1102 +39693,33298 +39694,2516 +39695,52017 +39696,52018 +39697,52019 +39698,52525 +39699,52023 +39700,23256 +39701,54625 +39702,54616 +39703,54711 +39704,54708 +39705,34688 +39706,55395 +39707,49252 +39708,49845 +39709,56693 +39710,49258 +39711,56694 +39712,54697 +39713,18499 +39714,54757 +39715,51913 +39716,56656 +39717,55393 +39718,54622 +39719,55324 +39720,54703 +39721,54713 +39722,54715 +39723,53198 +39724,54624 +39725,53670 +39726,54620 +39727,54695 +39728,25246 +39729,55385 +39730,57331 +39731,54709 +39732,54696 +39733,54698 +39734,57091 +39735,56604 +39736,52030 +39737,18115 +39738,18102 +39739,40697 +39740,31800 +39741,52062 +39742,52038 +39743,53015 +39744,52078 +39745,52081 +39746,52084 +39747,12309 +39748,26571 +39749,52088 +39750,52087 +39751,52090 +39752,52100 +39753,52098 +39754,52099 +39756,54803 +39757,54700 +39758,54739 +39759,55383 +39760,54847 +39761,54702 +39762,54716 +39763,56662 +39764,55384 +39765,54714 +39766,54740 +39767,54719 +39768,54623 +39769,57732 +39770,51284 +39771,52403 +39772,52387 +39773,51208 +39774,55108 +39775,52444 +39776,52386 +39777,52373 +39778,56351 +39779,52395 +39780,51073 +39781,51370 +39782,51353 +39783,52380 +39784,50133 +39785,51370 +39786,52374 +39787,51388 +39788,52416 +39789,51208 +39790,51393 +39791,51236 +39792,52439 +39793,52417 +39794,52381 +39795,52045 +39796,56360 +39797,51284 +39798,52438 +39799,52425 +39800,52420 +39801,56362 +39802,50331 +39803,52408 +39804,52392 +39805,56381 +39806,52379 +39807,15120 +39808,50136 +39809,52441 +39810,52340 +39811,34188 +39812,52123 +39813,51145 +39814,53251 +39815,52382 +39816,51229 +39817,49512 +39818,50160 +39819,34188 +39820,50118 +39821,34188 +39822,51168 +39823,50209 +39824,50342 +39825,52378 +39826,51402 +39827,52396 +39828,52423 +39829,52411 +39830,52404 +39831,52405 +39832,50191 +39833,52432 +39834,49247 +39835,51286 +39836,49848 +39837,49910 +39838,52433 +39839,52332 +39840,9657 +39841,56191 +39842,56349 +39843,52430 +39844,52440 +39845,52372 +39846,56350 +39847,56192 +39848,52419 +39849,52376 +39850,51357 +39851,51891 +39852,52429 +39853,50148 +39854,52412 +39855,52406 +39856,56352 +39857,52424 +39858,31131 +39859,56332 +39860,52428 +39861,51333 +39862,51265 +39863,52431 +39864,56335 +39865,50533 +39866,52409 +39867,56329 +39868,51264 +39869,52401 +39870,52402 +39871,52434 +39872,52410 +39873,52443 +39874,52415 +39875,52442 +39876,52370 +39877,51906 +39878,18047 +39879,49246 +39880,51260 +39881,49246 +39882,52393 +39883,18047 +39884,51148 +39885,51306 +39886,49251 +39887,51324 +39888,51298 +39889,53142 +39890,49478 +39891,51641 +39892,52159 +39893,52371 +39894,5116 +39895,17195 +39896,52160 +39897,52161 +39898,52162 +39899,52160 +39900,54251 +39901,35847 +39902,35930 +39903,51978 +39904,51978 +39905,54251 +39906,54251 +39907,54251 +39908,54251 +39909,54251 +39910,54251 +39911,54251 +39912,54258 +39913,31769 +39914,54258 +39915,54258 +39916,54258 +39917,54258 +39918,54258 +39919,54263 +39920,54263 +39921,52199 +39922,52200 +39923,52201 +39924,52202 +39925,38258 +39926,52203 +39927,54263 +39928,52205 +39929,52206 +39930,52207 +39931,52209 +39932,54263 +39933,54303 +39934,54303 +39935,54303 +39936,54303 +39937,54303 +39938,54303 +39939,54303 +39940,54303 +39941,54303 +39942,54303 +39943,54303 +39944,54303 +39945,54303 +39946,54265 +39947,54265 +39948,54265 +39949,54265 +39950,54265 +39951,54265 +39952,54265 +39953,54265 +39954,54265 +39955,54265 +39956,54265 +39957,54265 +39958,54265 +39959,54265 +39960,54265 +39961,54265 +39962,54265 +39963,54265 +39964,54265 +39965,54265 +39966,54265 +39967,54265 +39968,54285 +39969,20901 +39970,34863 +39971,47132 +39972,41062 +39973,3917 +39974,54285 +39975,54285 +39976,54285 +39977,54285 +39978,54285 +39979,54285 +39980,54285 +39981,54285 +39982,54285 +39983,54285 +39984,54285 +39985,54285 +39986,54285 +39987,52254 +39988,54285 +39989,54285 +39990,54285 +39991,54285 +39992,54285 +39993,52251 +39994,52252 +39995,52256 +39996,54316 +39997,54316 +39998,54316 +39999,54316 +40000,54316 +40001,54316 +40002,54316 +40003,54316 +40004,20084 +40005,2738 +40006,20176 +40007,16753 +40008,54320 +40009,54320 +40010,54320 +40011,54320 +40012,54318 +40013,54318 +40014,54318 +40015,54318 +40016,54318 +40017,54318 +40018,52257 +40019,9062 +40020,21022 +40021,25077 +40022,54325 +40023,54325 +40024,54325 +40025,54325 +40026,54325 +40027,54325 +40028,54325 +40029,54325 +40030,54325 +40031,54325 +40032,54325 +40033,54325 +40034,54325 +40035,18099 +40036,18060 +40037,55026 +40038,55026 +40039,55026 +40040,55026 +40041,55026 +40042,18059 +40043,55026 +40044,55026 +40045,55026 +40046,55026 +40047,55026 +40048,55026 +40049,55026 +40050,55026 +40051,55026 +40052,55026 +40053,55026 +40054,55026 +40055,55026 +40056,55026 +40057,55026 +40058,55026 +40059,55026 +40060,51941 +40061,54710 +40062,54626 +40063,54704 +40064,35437 +40065,35358 +40066,926 +40067,37814 +40068,51814 +40069,35373 +40070,56991 +40071,35359 +40072,2345 +40073,52490 +40074,35431 +40075,35423 +40076,56994 +40077,16325 +40078,56992 +40079,57031 +40080,35472 +40081,55318 +40082,9731 +40083,9731 +40084,36862 +40085,54323 +40086,54323 +40087,56993 +40088,54323 +40089,54323 +40090,54323 +40091,54323 +40092,54323 +40093,55319 +40094,54323 +40095,54323 +40096,54323 +40097,57032 +40098,54323 +40099,54323 +40100,54323 +40101,54323 +40102,54323 +40103,54323 +40104,54323 +40105,54323 +40106,54323 +40107,35313 +40108,35367 +40109,37811 +40110,12566 +40111,58601 +40112,58601 +40113,58601 +40114,58601 +40115,58601 +40116,58601 +40117,58601 +40118,58601 +40119,56636 +40120,56636 +40121,56636 +40122,56636 +40123,58714 +40124,58714 +40125,58714 +40126,58714 +40127,58714 +40128,58714 +40129,60326 +40130,60326 +40131,60326 +40132,60326 +40133,60326 +40134,60326 +40135,60326 +40136,60326 +40137,60326 +40138,60326 +40139,60326 +40140,60326 +40141,60326 +40142,60324 +40143,60324 +40144,60324 +40145,60324 +40146,60324 +40147,60324 +40148,60324 +40149,60324 +40150,60324 +40151,60324 +40152,60324 +40153,60324 +40154,60324 +40155,60324 +40156,60324 +40157,60324 +40158,60324 +40159,60324 +40160,60324 +40161,60324 +40162,60324 +40163,60324 +40164,60325 +40165,60325 +40166,60325 +40167,60325 +40168,60325 +40169,60325 +40170,60325 +40171,60325 +40172,60325 +40173,60325 +40174,60325 +40175,60325 +40176,60325 +40177,60325 +40178,60325 +40179,60325 +40180,60325 +40181,60325 +40182,60325 +40183,52258 +40184,54770 +40185,54790 +40186,54714 +40187,54787 +40188,54620 +40189,54760 +40190,57301 +40191,34960 +40192,52465 +40193,54800 +40194,53622 +40195,3663 +40196,54849 +40197,54779 +40198,56602 +40199,53139 +40200,54762 +40201,54783 +40202,42827 +40203,54767 +40204,51008 +40205,54792 +40206,55394 +40207,51913 +40208,54772 +40209,57075 +40210,54768 +40211,57024 +40212,55320 +40213,44797 +40214,37844 +40215,45612 +40216,44796 +40217,44795 +40218,52272 +40219,52287 +40220,52275 +40221,52276 +40222,52277 +40223,52278 +40224,52279 +40225,52280 +40226,52281 +40227,52282 +40228,52283 +40229,52284 +40230,52288 +40231,52286 +40232,39930 +40233,54796 +40234,54782 +40235,57544 +40236,54789 +40237,57094 +40238,54778 +40239,56658 +40240,53669 +40241,54784 +40242,54781 +40243,54775 +40244,54793 +40245,54774 +40246,54763 +40247,54769 +40248,52290 +40249,54804 +40250,35430 +40251,35312 +40252,35444 +40253,35366 +40254,35446 +40255,35442 +40256,35361 +40257,35439 +40258,35429 +40259,54784 +40260,54792 +40261,54843 +40262,54852 +40263,55389 +40264,54557 +40265,54834 +40266,54755 +40267,54871 +40268,34961 +40269,56085 +40270,57008 +40271,54713 +40272,57077 +40273,54844 +40274,54839 +40275,54845 +40276,53592 +40277,54872 +40278,55389 +40279,54767 +40280,55774 +40281,55719 +40282,54616 +40283,54848 +40284,54866 +40285,54846 +40286,55325 +40287,54769 +40288,54867 +40289,55324 +40290,52491 +40291,57525 +40292,52303 +40293,52304 +40294,51612 +40295,52302 +40296,54841 +40297,55393 +40298,54847 +40299,54865 +40300,54870 +40301,54840 +40302,54835 +40303,54874 +40304,54623 +40305,53289 +40306,55386 +40307,52294 +40308,52293 +40309,52295 +40310,52383 +40311,52297 +40312,52298 +40313,52384 +40314,52300 +40315,54865 +40316,54881 +40317,55389 +40318,54891 +40319,54879 +40320,54787 +40321,34954 +40322,50456 +40323,54715 +40324,57074 +40325,54876 +40326,54789 +40327,57076 +40328,53198 +40329,54841 +40330,55385 +40331,54889 +40332,54839 +40333,54702 +40334,54708 +40335,54977 +40336,54893 +40337,34960 +40338,54875 +40339,54883 +40340,57544 +40341,54762 +40342,43434 +40343,54560 +40344,57545 +40345,54878 +40346,54886 +40347,54914 +40348,55711 +40349,54882 +40350,54614 +40351,55325 +40352,54890 +40353,18948 +40354,52385 +40355,47892 +40356,40697 +40357,35584 +40358,7071 +40359,25475 +40360,6691 +40361,37424 +40362,54970 +40363,54912 +40364,3410 +40365,54767 +40366,53198 +40367,54770 +40368,54974 +40369,35437 +40370,35431 +40371,35442 +40372,35429 +40373,35445 +40374,35373 +40375,35313 +40376,54973 +40377,53670 +40378,35358 +40379,54972 +40380,54971 +40381,54788 +40382,35442 +40383,57324 +40384,57248 +40385,57465 +40386,57466 +40387,35373 +40388,56236 +40389,45931 +40390,52469 +40391,19284 +40392,4775 +40393,7393 +40394,44290 +40395,57250 +40396,56663 +40397,52474 +40398,51941 +40399,35472 +40400,57003 +40401,57263 +40402,55906 +40403,35446 +40404,9731 +40405,35312 +40406,56959 +40407,55975 +40408,54463 +40409,57009 +40410,35430 +40411,52489 +40412,35359 +40413,52490 +40414,54790 +40415,57018 +40416,57532 +40417,54276 +40418,54268 +40419,56599 +40420,57020 +40421,55167 +40422,55169 +40423,56476 +40424,55172 +40425,44523 +40426,44357 +40427,53194 +40428,53653 +40429,53195 +40430,53197 +40431,53285 +40432,53291 +40433,45362 +40434,52522 +40435,52523 +40436,52524 +40437,53289 +40438,53654 +40439,53657 +40440,49999 +40441,49998 +40442,49685 +40443,49996 +40444,49995 +40445,55072 +40446,53655 +40447,54387 +40448,55073 +40449,55075 +40450,55074 +40451,57545 +40452,52540 +40453,53290 +40454,55072 +40455,53294 +40456,54387 +40457,55073 +40458,55075 +40459,55074 +40460,55218 +40461,57536 +40462,55224 +40463,55228 +40464,52542 +40465,55227 +40466,55218 +40467,57536 +40468,55224 +40469,55228 +40470,55227 +40471,55228 +40472,55219 +40473,57537 +40474,53560 +40475,53562 +40476,37840 +40477,37841 +40478,52556 +40479,46351 +40480,23875 +40481,46351 +40482,3486 +40483,40036 +40484,52559 +40485,52560 +40486,39212 +40487,52564 +40488,49366 +40489,62285 +40490,52360 +40491,53563 +40492,52575 +40493,55226 +40494,55227 +40495,55076 +40496,55077 +40497,53559 +40498,42410 +40499,55078 +40500,55079 +40501,50213 +40502,55080 +40503,55214 +40504,55210 +40505,55211 +40506,55212 +40507,55213 +40508,57057 +40509,57059 +40510,57061 +40511,53658 +40512,57062 +40513,57064 +40514,57057 +40515,57059 +40516,57061 +40517,57062 +40518,57064 +40519,53659 +40520,57060 +40521,57058 +40522,57065 +40523,57057 +40524,57063 +40525,55788 +40526,53649 +40527,55790 +40528,55229 +40529,55793 +40530,57006 +40531,53630 +40532,45465 +40533,7375 +40534,52579 +40535,53225 +40536,52838 +40537,52583 +40538,7841 +40539,53635 +40540,52585 +40541,53637 +40542,52586 +40543,57545 +40544,55788 +40545,55791 +40546,55229 +40547,55792 +40548,57022 +40549,53661 +40550,55492 +40551,52617 +40552,55494 +40553,52609 +40554,55493 +40555,55325 +40556,55497 +40557,55499 +40558,53660 +40559,55492 +40560,53664 +40561,53663 +40562,53652 +40563,55495 +40564,53666 +40565,55493 +40566,53667 +40567,55496 +40568,55498 +40569,55173 +40570,55174 +40571,57547 +40572,55177 +40573,55209 +40574,55173 +40575,55180 +40576,57547 +40577,55179 +40578,55208 +40579,55173 +40580,55174 +40581,57547 +40582,6418 +40583,55178 +40584,55181 +40585,52459 +40586,52632 +40587,24152 +40588,53668 +40589,53655 +40590,53670 +40591,53671 +40592,53672 +40593,52633 +40594,53673 +40595,52645 +40596,52646 +40597,52655 +40598,52656 +40599,7899 +40600,17786 +40601,52664 +40602,54788 +40603,7359 +40604,45324 +40605,51056 +40606,52667 +40607,52669 +40608,52670 +40609,52671 +40610,41438 +40611,41438 +40612,41438 +40613,41440 +40614,41440 +40615,41440 +40616,41441 +40617,41441 +40618,41441 +40619,41442 +40620,41442 +40621,41442 +40622,19486 +40623,19486 +40624,19486 +40625,41438 +40626,41438 +40627,41438 +40628,41440 +40629,41440 +40630,41440 +40631,41441 +40632,41441 +40633,41441 +40634,41442 +40635,41442 +40636,41442 +40637,19486 +40638,19486 +40639,19486 +40640,7234 +40641,22377 +40642,52676 +40643,52678 +40644,52679 +40645,7407 +40646,46351 +40647,46351 +40648,52297 +40649,52297 +40650,45748 +40651,45748 +40652,22377 +40653,20629 +40654,45335 +40655,45335 +40656,45335 +40657,45335 +40658,50012 +40659,50012 +40660,50012 +40661,50012 +40662,51007 +40663,51007 +40664,51007 +40665,51007 +40666,1096 +40667,45198 +40668,52694 +40669,51675 +40670,52861 +40671,51131 +40672,54827 +40673,51207 +40674,54828 +40675,54829 +40676,7367 +40677,42031 +40678,35358 +40679,35437 +40680,35373 +40681,35359 +40682,53630 +40683,54045 +40684,29947 +40685,54046 +40686,7627 +40687,52702 +40688,54051 +40689,54050 +40690,52703 +40691,54059 +40692,54052 +40693,54053 +40694,54055 +40695,54056 +40696,56606 +40697,54058 +40698,54063 +40699,54062 +40700,54069 +40701,54068 +40702,54464 +40703,54471 +40704,57481 +40705,34959 +40706,34960 +40707,34961 +40708,57574 +40709,34956 +40710,34958 +40711,54481 +40712,54483 +40713,54484 +40714,51913 +40715,51913 +40716,54465 +40717,33728 +40718,38541 +40719,44358 +40720,44086 +40721,54667 +40722,54673 +40723,54674 +40724,33096 +40725,52704 +40726,20733 +40727,8926 +40728,39725 +40729,52706 +40730,19316 +40731,52708 +40732,22477 +40733,54619 +40734,54678 +40735,51807 +40736,54681 +40737,54682 +40738,54684 +40739,54685 +40740,54686 +40741,54687 +40742,56996 +40743,56997 +40744,36187 +40745,56062 +40746,56998 +40747,57093 +40748,56999 +40749,57011 +40750,57001 +40751,57002 +40752,54562 +40753,57300 +40754,33436 +40755,51628 +40756,52484 +40757,52480 +40758,52491 +40759,52724 +40760,52726 +40761,52737 +40762,57521 +40763,52732 +40764,52734 +40765,52736 +40766,52735 +40767,36444 +40768,31202 +40769,52739 +40770,52740 +40771,52741 +40772,57379 +40773,7409 +40774,52745 +40775,59465 +40776,31199 +40777,40160 +40778,55801 +40779,55500 +40780,55821 +40781,55819 +40782,55820 +40783,55806 +40784,55817 +40785,55816 +40786,55811 +40787,58717 +40788,58853 +40789,58791 +40790,62199 +40791,60864 +40792,60895 +40793,49999 +40794,49999 +40795,49999 +40796,24156 +40797,55802 +40798,55841 +40799,55840 +40800,31199 +40801,55807 +40802,55839 +40803,55838 +40804,55812 +40805,55837 +40806,55836 +40807,58792 +40808,58855 +40809,58718 +40810,62198 +40811,60865 +40812,60915 +40813,49998 +40814,49998 +40815,49998 +40816,55803 +40817,57533 +40818,55528 +40819,55808 +40820,57534 +40821,55531 +40822,51913 +40823,55813 +40824,57535 +40825,55723 +40826,58793 +40827,58720 +40828,59568 +40829,61830 +40830,61554 +40831,61470 +40832,51913 +40833,49685 +40834,49685 +40835,49685 +40836,55804 +40837,55834 +40838,55835 +40839,51913 +40840,55809 +40841,55831 +40842,55833 +40843,40697 +40844,55814 +40845,55829 +40846,55830 +40847,58794 +40848,58721 +40849,58854 +40850,62196 +40851,60200 +40852,60898 +40853,49996 +40854,49996 +40855,49996 +40856,55805 +40857,55505 +40858,55828 +40859,55810 +40860,55512 +40861,55827 +40862,55815 +40863,55733 +40864,55826 +40865,36444 +40866,58795 +40867,51913 +40868,58722 +40869,58860 +40870,61831 +40871,60866 +40872,60908 +40873,49995 +40874,49995 +40875,51913 +40876,49995 +40877,55645 +40878,55650 +40879,55754 +40880,55755 +40881,59245 +40882,59251 +40883,61472 +40884,62208 +40885,48661 +40886,48669 +40887,55635 +40888,55753 +40889,59240 +40890,61477 +40891,48664 +40892,52779 +40893,52780 +40894,52781 +40895,57759 +40896,58828 +40897,58828 +40898,55821 +40899,58828 +40900,58828 +40901,58828 +40902,58828 +40903,58828 +40904,55820 +40905,55816 +40906,58828 +40907,58853 +40908,58828 +40909,58828 +40910,60895 +40911,50001 +40912,58828 +40913,58828 +40914,58828 +40915,58828 +40916,58828 +40917,52787 +40918,55841 +40919,58828 +40920,58828 +40921,58828 +40922,58828 +40923,58828 +40924,58828 +40925,55839 +40926,55837 +40927,58855 +40928,60915 +40929,48640 +40930,55528 +40931,55531 +40932,55723 +40933,58857 +40934,61470 +40935,48740 +40936,55835 +40937,55833 +40938,55830 +40939,58854 +40940,60898 +40941,50002 +40942,54816 +40943,54825 +40944,4826 +40945,35178 +40946,3673 +40947,34753 +40948,52559 +40949,54823 +40950,54826 +40951,54824 +40952,54074 +40953,54822 +40954,54072 +40955,54816 +40956,54821 +40957,54819 +40958,54820 +40959,54818 +40960,55828 +40961,55827 +40962,55826 +40963,58860 +40964,60908 +40965,50003 +40966,60017 +40967,52809 +40968,52810 +40969,7367 +40970,39239 +40971,37879 +40972,55634 +40973,55651 +40974,55727 +40975,55728 +40976,59241 +40977,59246 +40978,61471 +40979,61473 +40980,48660 +40981,48663 +40982,55726 +40983,59238 +40984,61476 +40985,48662 +40986,56926 +40987,56926 +40988,56925 +40989,56925 +40990,56922 +40991,56922 +40992,58864 +40993,58864 +40994,61553 +40995,61553 +40996,49969 +40997,49969 +40998,56940 +40999,56939 +41000,56938 +41001,58866 +41002,60883 +41003,48611 +41004,56940 +41005,56939 +41006,56938 +41007,58866 +41008,60883 +41009,48611 +41010,56936 +41011,56935 +41012,56934 +41013,64904 +41014,64922 +41015,48613 +41016,56936 +41017,56935 +41018,56934 +41019,64904 +41020,64922 +41021,48613 +41022,52830 +41023,56932 +41024,56944 +41025,56931 +41026,56928 +41027,58867 +41028,60891 +41029,48615 +41030,56932 +41031,56931 +41032,56928 +41033,58867 +41034,60891 +41035,48615 +41036,56942 +41037,56941 +41038,59053 +41039,61280 +41040,48616 +41041,56944 +41042,56942 +41043,56941 +41044,59053 +41045,61280 +41046,48616 +41047,56945 +41048,56948 +41049,56949 +41050,56947 +41051,59262 +41052,61463 +41053,48674 +41054,56950 +41055,59255 +41056,61466 +41057,48675 +41058,44246 +41059,56946 +41060,59265 +41061,61467 +41062,48673 +41063,56945 +41064,56946 +41065,59265 +41066,61467 +41067,48673 +41068,56947 +41069,56948 +41070,59262 +41071,61463 +41072,48674 +41073,56949 +41074,56950 +41075,59255 +41076,61466 +41077,48675 +41078,56926 +41079,56925 +41080,56922 +41081,58864 +41082,61553 +41083,49969 +41084,56965 +41085,55847 +41086,55848 +41087,58802 +41088,60192 +41089,53567 +41090,52835 +41091,36529 +41092,58832 +41093,31198 +41094,58832 +41095,58832 +41096,58832 +41097,58832 +41098,58832 +41099,58832 +41100,58832 +41101,58832 +41102,58832 +41103,58832 +41104,58832 +41105,58832 +41106,58832 +41107,58832 +41108,58832 +41109,58832 +41110,58832 +41111,52839 +41112,45782 +41113,52178 +41114,54076 +41115,9145 +41116,54075 +41117,52862 +41118,52863 +41119,52864 +41120,1096 +41121,52868 +41122,1096 +41123,1096 +41124,1096 +41125,52742 +41126,54811 +41127,55300 +41128,54809 +41129,54810 +41130,52889 +41131,4136 +41132,16265 +41133,62988 +41134,56940 +41135,56939 +41136,56938 +41137,58866 +41138,60883 +41139,48611 +41140,56966 +41141,55844 +41142,55614 +41143,59681 +41144,61457 +41145,48611 +41146,7268 +41147,46698 +41148,56936 +41149,56935 +41150,56934 +41151,64904 +41152,64922 +41153,48613 +41154,56967 +41155,56145 +41156,56143 +41157,58804 +41158,62161 +41159,48613 +41160,56932 +41161,40710 +41162,56931 +41163,52909 +41164,62931 +41165,18275 +41166,64140 +41167,7326 +41168,57237 +41169,7409 +41170,7409 +41171,7409 +41172,7409 +41173,7409 +41174,7409 +41175,52923 +41176,52920 +41177,52919 +41178,52918 +41179,16265 +41180,52921 +41181,52941 +41182,50271 +41183,51403 +41184,51403 +41185,52926 +41186,53477 +41187,53477 +41188,53478 +41189,52931 +41190,51612 +41191,13291 +41192,13291 +41193,13291 +41194,13291 +41195,13291 +41196,13291 +41197,16265 +41198,56928 +41199,58867 +41200,60891 +41201,48615 +41202,56968 +41203,55854 +41204,55855 +41205,58805 +41206,60195 +41207,48615 +41208,56944 +41209,56942 +41210,56941 +41211,59053 +41212,61280 +41213,48616 +41214,56969 +41215,55626 +41216,55618 +41217,58807 +41218,61461 +41219,48616 +41220,48673 +41221,48674 +41222,48675 +41223,55638 +41224,56970 +41225,59266 +41226,61468 +41227,48673 +41228,55652 +41229,56972 +41230,59268 +41231,61465 +41232,48675 +41233,55646 +41234,56971 +41235,59264 +41236,61462 +41237,48674 +41238,56697 +41239,50270 +41240,50197 +41241,52939 +41242,50334 +41243,50076 +41244,52943 +41245,52942 +41246,52948 +41247,29946 +41248,52955 +41249,52956 +41250,52957 +41251,52958 +41252,52959 +41253,52960 +41254,52961 +41255,52962 +41256,12857 +41257,52966 +41258,52971 +41259,52968 +41260,42619 +41261,52972 +41262,30953 +41263,41089 +41264,56681 +41265,52979 +41266,54468 +41267,40632 +41268,55398 +41269,55399 +41270,55874 +41271,55404 +41272,55862 +41273,55417 +41274,56421 +41275,59046 +41276,61447 +41277,48591 +41278,55404 +41279,55417 +41280,56421 +41281,59046 +41282,61447 +41283,48591 +41284,55397 +41285,54469 +41286,56418 +41287,59410 +41288,60856 +41289,49966 +41290,55398 +41291,55397 +41292,56418 +41293,59410 +41294,60856 +41295,49966 +41296,55872 +41297,56419 +41298,59414 +41299,60860 +41300,48603 +41301,55874 +41302,55872 +41303,56419 +41304,59414 +41305,60860 +41306,48603 +41307,54469 +41308,55861 +41309,56420 +41310,59442 +41311,61969 +41312,49968 +41313,55862 +41314,55861 +41315,56420 +41316,59442 +41317,61969 +41318,49968 +41319,55411 +41320,56417 +41321,59411 +41322,60858 +41323,48602 +41324,55399 +41325,55411 +41326,56417 +41327,59412 +41328,60858 +41329,48602 +41330,55643 +41331,55647 +41332,55632 +41333,54469 +41334,54466 +41335,54469 +41336,52989 +41337,3257 +41338,7411 +41339,54469 +41340,52981 +41341,18052 +41342,52991 +41343,52993 +41344,52304 +41345,52996 +41346,52999 +41347,53003 +41348,53004 +41349,53110 +41350,52302 +41351,51604 +41352,53005 +41353,50991 +41354,51710 +41355,54830 +41356,53007 +41357,53008 +41358,53012 +41359,53019 +41360,53014 +41361,48725 +41362,43599 +41363,6690 +41364,53160 +41365,53017 +41366,53013 +41367,22651 +41368,53020 +41369,53021 +41370,53022 +41371,53023 +41372,53149 +41373,4138 +41374,18060 +41375,54469 +41376,54469 +41377,54469 +41378,54469 +41379,54469 +41380,54467 +41381,54467 +41382,54467 +41383,53030 +41384,53032 +41385,54467 +41386,55310 +41387,55311 +41388,55312 +41389,54467 +41390,53039 +41391,53036 +41392,53037 +41393,53042 +41394,53038 +41395,54467 +41396,54467 +41397,54467 +41398,54467 +41399,7064 +41400,54469 +41401,54467 +41402,1102 +41403,6270 +41404,6270 +41405,6270 +41406,6270 +41407,6270 +41408,6270 +41409,6270 +41410,6270 +41411,6270 +41412,6270 +41413,6270 +41414,6270 +41415,6270 +41416,6270 +41417,6270 +41418,6270 +41419,6270 +41420,6270 +41421,6270 +41422,6270 +41423,6270 +41424,13002 +41425,53043 +41426,53044 +41427,34282 +41428,22377 +41429,54295 +41430,53049 +41431,53057 +41432,54292 +41433,54292 +41434,54292 +41435,54292 +41436,54292 +41437,54292 +41438,54292 +41439,54292 +41440,54294 +41441,54294 +41442,54294 +41443,54294 +41444,54293 +41445,54293 +41446,54293 +41447,54293 +41448,54293 +41449,54293 +41450,54307 +41451,54307 +41452,54307 +41453,54307 +41454,54307 +41455,54307 +41456,54307 +41457,54307 +41458,54307 +41459,54307 +41460,54307 +41461,54307 +41462,54307 +41463,54298 +41464,54298 +41465,54298 +41466,54298 +41467,54298 +41468,54298 +41469,54298 +41470,54298 +41471,54298 +41472,54298 +41473,54298 +41474,54298 +41475,54298 +41476,54298 +41477,54298 +41478,54298 +41479,54298 +41480,54298 +41481,54298 +41482,54295 +41483,54295 +41484,54295 +41485,54295 +41486,54295 +41487,54295 +41488,54295 +41489,54295 +41490,54295 +41491,54295 +41492,54295 +41493,54295 +41494,54295 +41495,54295 +41496,54295 +41497,54295 +41498,54295 +41499,54295 +41500,54295 +41501,54295 +41502,54295 +41503,36190 +41504,53069 +41505,53070 +41506,53071 +41507,53076 +41508,56884 +41509,1007 +41510,57460 +41511,57461 +41512,53082 +41513,53090 +41514,53080 +41515,53084 +41516,55367 +41517,58839 +41518,58839 +41519,51140 +41520,53086 +41521,52491 +41522,53087 +41523,53088 +41524,58839 +41525,53084 +41526,58839 +41527,58839 +41528,53082 +41529,58839 +41530,58839 +41531,58839 +41532,58839 +41533,58839 +41534,58839 +41535,58839 +41536,58839 +41537,58839 +41538,58839 +41539,58839 +41540,58839 +41541,58839 +41542,58839 +41543,53092 +41544,53093 +41545,53094 +41546,53381 +41547,58839 +41548,53096 +41549,53097 +41550,53098 +41551,51355 +41552,58839 +41553,53096 +41554,53097 +41555,51355 +41556,53100 +41557,20657 +41558,53103 +41559,15274 +41560,15274 +41561,15274 +41562,15274 +41563,15274 +41564,15274 +41565,15274 +41566,15274 +41567,15274 +41568,15274 +41569,15274 +41570,15274 +41571,15274 +41572,15274 +41573,15274 +41574,15274 +41575,15274 +41576,6270 +41577,6270 +41578,6270 +41579,6270 +41580,6270 +41581,6270 +41582,6270 +41583,53106 +41584,40524 +41585,53100 +41586,40200 +41587,39984 +41588,47522 +41589,47095 +41590,47294 +41591,27088 +41592,27088 +41593,56047 +41594,56046 +41595,56048 +41596,53109 +41597,33942 +41598,21202 +41599,34780 +41600,34796 +41601,42716 +41602,42717 +41603,42716 +41604,42717 +41605,42717 +41606,42717 +41607,42615 +41608,42615 +41609,55336 +41610,55335 +41611,53111 +41612,53112 +41613,53113 +41614,42706 +41615,7096 +41616,56423 +41617,59416 +41618,61455 +41619,48676 +41620,56424 +41621,59418 +41622,61453 +41623,48678 +41624,56422 +41625,59415 +41626,61450 +41627,48681 +41628,55643 +41629,56423 +41630,59416 +41631,61455 +41632,48676 +41633,55647 +41634,56424 +41635,59418 +41636,61453 +41637,48678 +41638,55632 +41639,56422 +41640,59415 +41641,61450 +41642,48681 +41643,55867 +41644,55431 +41645,55876 +41646,55435 +41647,55859 +41648,55858 +41649,55857 +41650,58796 +41651,62214 +41652,48599 +41653,55873 +41654,55869 +41655,58799 +41656,62213 +41657,48597 +41658,55862 +41659,55861 +41660,56420 +41661,59442 +41662,61969 +41663,48599 +41664,55874 +41665,55872 +41666,56419 +41667,59414 +41668,60860 +41669,48597 +41670,55740 +41671,55432 +41672,58798 +41673,62212 +41674,48739 +41675,55399 +41676,55411 +41677,56417 +41678,59411 +41679,60858 +41680,48739 +41681,55742 +41682,55439 +41683,58800 +41684,60929 +41685,48598 +41686,6270 +41687,6270 +41688,6270 +41689,6270 +41690,6270 +41691,52583 +41692,6270 +41693,6270 +41694,6270 +41695,53115 +41696,6270 +41697,6270 +41698,6270 +41699,6270 +41701,6270 +41702,6270 +41703,6270 +41704,6270 +41705,6270 +41706,6270 +41707,6270 +41708,6270 +41709,6270 +41710,6270 +41711,6270 +41712,55404 +41713,55417 +41714,56421 +41715,59046 +41716,61447 +41717,48598 +41718,6270 +41719,6270 +41720,6270 +41721,6270 +41722,6270 +41723,6270 +41724,6270 +41725,6270 +41726,6270 +41727,6270 +41728,6270 +41729,53135 +41730,6270 +41731,18091 +41732,6270 +41733,6270 +41734,6270 +41735,6270 +41736,6270 +41737,6270 +41738,6270 +41739,6270 +41740,6270 +41741,53136 +41742,6270 +41743,6270 +41744,6270 +41745,53137 +41746,53138 +41747,6270 +41748,48879 +41749,48879 +41750,53147 +41751,36728 +41752,53145 +41753,52564 +41754,53146 +41755,50146 +41756,53242 +41757,49813 +41758,56344 +41759,52428 +41760,53244 +41761,53245 +41762,53246 +41763,53243 +41764,53161 +41765,55866 +41766,55865 +41767,61799 +41768,62211 +41769,49965 +41770,55398 +41771,55397 +41772,56418 +41773,59410 +41774,60856 +41775,49965 +41776,7270 +41777,6270 +41778,6270 +41779,6270 +41780,6270 +41781,6270 +41782,6270 +41783,6270 +41784,6270 +41785,6270 +41786,6270 +41787,6270 +41788,6270 +41789,6270 +41790,6270 +41791,6270 +41792,6270 +41793,6270 +41794,6270 +41795,6270 +41796,6270 +41797,6270 +41798,6270 +41799,6270 +41800,53166 +41801,53167 +41802,53168 +41803,50901 +41804,53169 +41805,53170 +41806,53171 +41807,53172 +41808,51803 +41809,53173 +41810,54747 +41811,53175 +41812,53176 +41813,53177 +41814,53178 +41815,60069 +41816,53200 +41817,6270 +41818,6270 +41819,6270 +41820,6270 +41821,53207 +41822,50603 +41823,53005 +41824,53201 +41825,53206 +41826,53233 +41827,55748 +41828,55749 +41829,57524 +41830,55747 +41831,55642 +41832,59304 +41833,62215 +41834,48677 +41835,55648 +41836,59305 +41837,62216 +41838,48679 +41839,55633 +41840,59303 +41841,62217 +41842,48682 +41843,13885 +41844,56366 +41845,49725 +41846,53235 +41847,55541 +41848,55545 +41849,55539 +41850,55549 +41851,55897 +41852,55560 +41853,55561 +41854,58847 +41855,60157 +41856,50007 +41857,55895 +41858,55890 +41859,59202 +41860,61421 +41861,49963 +41862,55888 +41863,55885 +41864,58849 +41865,60893 +41866,49964 +41867,55570 +41868,55569 +41869,58850 +41870,60161 +41871,50010 +41872,55881 +41873,55878 +41874,58848 +41875,60151 +41876,49960 +41877,55644 +41878,55637 +41879,55654 +41880,55673 +41881,59296 +41882,61481 +41883,48686 +41884,55661 +41885,59301 +41886,61483 +41887,48688 +41888,1282 +41889,53192 +41890,53238 +41891,53240 +41892,55670 +41893,59298 +41894,61484 +41895,48687 +41896,55641 +41897,55750 +41898,59294 +41899,61478 +41900,48686 +41901,55653 +41902,55752 +41903,59299 +41904,61479 +41905,56378 +41906,48688 +41907,56444 +41908,55751 +41909,59297 +41910,61480 +41911,48687 +41912,55545 +41913,55560 +41914,55561 +41915,58847 +41916,60157 +41917,50007 +41918,55897 +41919,55895 +41920,55890 +41921,59202 +41922,61421 +41923,49963 +41924,55539 +41925,55888 +41926,55885 +41927,58849 +41928,60893 +41929,49964 +41930,55549 +41931,55570 +41932,53241 +41933,55569 +41934,58850 +41935,60161 +41936,50010 +41937,55541 +41938,55881 +41939,55878 +41940,58848 +41941,60151 +41942,49960 +41943,56437 +41944,55590 +41945,55735 +41946,59576 +41947,60168 +41948,50007 +41949,56442 +41950,55896 +41951,55894 +41952,49963 +41953,59624 +41954,61422 +41955,49963 +41956,56439 +41957,55889 +41958,55886 +41959,58755 +41960,61423 +41961,49964 +41962,55595 +41963,55575 +41964,55734 +41965,58967 +41966,60169 +41967,50010 +41968,56438 +41969,55882 +41970,55880 +41971,58753 +41972,61419 +41973,49960 +41974,54071 +41975,54073 +41976,39340 +41977,53226 +41978,53227 +41979,53228 +41980,53229 +41981,53230 +41982,53231 +41983,53232 +41984,53250 +41985,53252 +41986,53253 +41987,53255 +41988,53254 +41989,12018 +41990,56429 +41991,56149 +41992,56153 +41993,63408 +41994,60183 +41995,50007 +41996,56434 +41997,56163 +41998,58785 +41999,61420 +42000,49963 +42001,56156 +42002,56432 +42003,56426 +42004,56164 +42005,58788 +42006,63203 +42007,49964 +42008,56428 +42009,56159 +42010,56158 +42011,58789 +42012,61425 +42013,50010 +42014,56431 +42015,56154 +42016,56160 +42017,58786 +42018,61418 +42019,49960 +42020,39162 +42021,39162 +42022,39162 +42023,39162 +42024,39162 +42025,39162 +42026,39162 +42027,39162 +42028,39162 +42029,39162 +42030,39162 +42031,39162 +42032,39162 +42033,39162 +42034,39162 +42035,39162 +42036,39162 +42037,39162 +42038,39162 +42039,39162 +42040,39162 +42041,39162 +42042,39162 +42043,39162 +42044,39162 +42045,39162 +42046,39162 +42047,39162 +42048,39162 +42049,39162 +42050,39162 +42051,39162 +42052,39162 +42053,39162 +42054,39162 +42055,55663 +42056,55663 +42057,55663 +42058,55663 +42059,55663 +42060,49738 +42061,49738 +42062,55663 +42063,55663 +42064,55663 +42065,55663 +42066,55663 +42067,49738 +42068,49738 +42069,55663 +42070,55663 +42071,55663 +42072,55663 +42073,55663 +42074,49738 +42075,49738 +42076,61562 +42077,61563 +42078,61648 +42079,61563 +42080,61562 +42081,61564 +42082,42615 +42083,53264 +42084,39736 +42085,53264 +42086,53264 +42087,53264 +42088,53265 +42089,53264 +42090,53264 +42091,53910 +42092,3708 +42093,51140 +42094,27687 +42095,53270 +42096,53271 +42097,28822 +42098,53273 +42099,36771 +42100,55340 +42101,55341 +42102,55330 +42103,51587 +42104,7999 +42105,19149 +42106,18072 +42107,53277 +42108,53279 +42109,7340 +42110,39129 +42111,55334 +42112,39129 +42113,55331 +42114,39129 +42115,39129 +42116,39129 +42117,39129 +42118,39129 +42119,39129 +42120,39129 +42121,39129 +42122,48071 +42123,56635 +42124,37840 +42125,37840 +42126,37841 +42127,37841 +42128,47095 +42129,47095 +42130,47095 +42131,47095 +42132,47095 +42133,47095 +42134,47095 +42135,47095 +42136,47095 +42137,47095 +42138,6270 +42139,53318 +42140,53319 +42141,2516 +42142,61981 +42143,61981 +42144,61981 +42145,61982 +42146,61982 +42147,24156 +42148,61983 +42149,61983 +42150,61983 +42151,61981 +42152,61981 +42153,61981 +42154,61981 +42155,61982 +42156,61983 +42157,61983 +42158,61983 +42159,53325 +42160,53326 +42161,53327 +42162,53329 +42163,1625 +42164,53333 +42165,53361 +42166,53362 +42167,53363 +42168,39358 +42169,53364 +42170,53373 +42171,53374 +42172,15274 +42173,15274 +42174,15274 +42175,15274 +42176,15274 +42177,15274 +42178,15274 +42179,15274 +42180,811 +42181,811 +42182,811 +42183,811 +42184,811 +42185,811 +42186,811 +42187,811 +42188,811 +42189,811 +42190,811 +42191,811 +42192,811 +42193,811 +42194,811 +42195,811 +42196,811 +42197,1096 +42198,1096 +42199,1096 +42200,1096 +42201,1096 +42202,1096 +42203,53380 +42204,53380 +42205,53382 +42206,56240 +42207,56204 +42208,56208 +42209,56202 +42210,60811 +42211,49150 +42212,56240 +42213,56240 +42214,56240 +42215,56227 +42216,56227 +42217,56227 +42218,55950 +42219,55949 +42220,55949 +42221,55953 +42222,55953 +42223,57299 +42224,57299 +42225,55024 +42226,56204 +42227,56208 +42228,56202 +42229,60825 +42230,49150 +42231,56204 +42232,56208 +42233,56202 +42234,60809 +42235,49150 +42236,56204 +42237,56208 +42238,58932 +42239,49152 +42240,49152 +42241,56226 +42242,56411 +42243,56227 +42244,60817 +42245,49141 +42246,53392 +42247,56226 +42248,56411 +42249,56227 +42250,60846 +42251,49141 +42252,53399 +42253,54964 +42254,56226 +42255,56411 +42256,56227 +42257,60817 +42258,49141 +42259,56257 +42260,55948 +42261,55945 +42262,60821 +42263,49145 +42264,56256 +42265,55946 +42266,55944 +42267,60831 +42268,49139 +42269,56256 +42270,55946 +42271,55944 +42272,60830 +42273,49139 +42274,55955 +42275,55954 +42276,58957 +42277,60839 +42278,49136 +42279,55955 +42280,55954 +42281,58957 +42282,60807 +42283,49136 +42284,57298 +42285,57297 +42286,58965 +42287,60840 +42288,49143 +42289,57298 +42290,57297 +42291,58965 +42292,60840 +42293,49143 +42294,55927 +42295,56957 +42296,55965 +42297,57464 +42298,6270 +42299,6270 +42300,6270 +42301,6270 +42302,6270 +42303,6270 +42304,6270 +42305,6270 +42306,6270 +42307,6270 +42308,6270 +42309,6270 +42310,6270 +42311,6270 +42312,6270 +42313,6270 +42314,6270 +42315,6270 +42316,55925 +42317,55926 +42318,55927 +42319,60813 +42320,49149 +42321,56956 +42322,56955 +42323,58961 +42324,60808 +42325,49993 +42326,55966 +42327,56412 +42328,55965 +42329,60837 +42330,49142 +42331,57463 +42332,57462 +42333,57464 +42334,60823 +42335,49137 +42336,28682 +42337,29697 +42338,53407 +42339,31604 +42340,35367 +42341,53455 +42342,53408 +42343,56247 +42344,56241 +42345,56220 +42346,56247 +42347,56258 +42348,60848 +42349,49147 +42350,53433 +42351,56255 +42352,56410 +42353,58959 +42354,60818 +42355,49146 +42356,56238 +42357,47994 +42358,49148 +42359,56252 +42360,53409 +42361,53412 +42362,56409 +42363,53411 +42364,56238 +42365,53972 +42366,60806 +42367,47994 +42368,53414 +42369,53415 +42370,53417 +42371,53418 +42372,53419 +42373,53420 +42374,53421 +42375,53423 +42376,53424 +42377,53425 +42378,53426 +42379,53428 +42380,53429 +42381,53432 +42382,56238 +42383,56252 +42384,56409 +42385,56238 +42386,60816 +42387,47994 +42388,56248 +42389,56259 +42390,56413 +42391,56248 +42392,60849 +42393,47994 +42394,53380 +42395,53454 +42396,58834 +42397,58834 +42398,58834 +42399,58834 +42400,58834 +42401,58834 +42402,58834 +42403,58834 +42404,58834 +42405,58834 +42406,58834 +42407,58834 +42408,58834 +42409,58834 +42410,58834 +42411,58834 +42412,58834 +42413,53453 +42414,58834 +42415,58834 +42416,58834 +42417,58834 +42418,53456 +42419,13082 +42420,22652 +42421,30690 +42422,22071 +42423,53461 +42424,50798 +42425,53462 +42426,53464 +42427,55891 +42428,57314 +42429,57318 +42430,57315 +42431,40637 +42432,6342 +42433,57313 +42434,57317 +42435,53471 +42436,57312 +42437,47763 +42438,57316 +42439,6342 +42440,53473 +42441,53474 +42442,53472 +42443,53476 +42444,38679 +42445,55930 +42446,55933 +42447,56175 +42448,56614 +42449,38679 +42450,38679 +42451,38679 +42452,38679 +42453,58841 +42454,58841 +42455,58841 +42456,58841 +42457,58841 +42458,58841 +42459,58841 +42460,58841 +42461,58841 +42462,58841 +42463,58841 +42464,58841 +42465,58841 +42466,58841 +42467,58841 +42468,58841 +42469,58841 +42470,58841 +42471,58841 +42472,58841 +42473,58841 +42474,39193 +42475,34751 +42476,7629 +42477,53483 +42478,53484 +42479,53485 +42480,50963 +42481,56648 +42482,7737 +42483,60853 +42484,56176 +42485,56177 +42486,56175 +42487,60844 +42488,49393 +42489,55929 +42490,55928 +42491,58933 +42492,60833 +42493,49140 +42494,55932 +42495,55931 +42496,58935 +42497,49138 +42498,60828 +42499,56648 +42500,55060 +42501,56616 +42502,56617 +42503,56613 +42504,60851 +42505,46606 +42506,53529 +42507,53530 +42508,53532 +42509,53533 +42510,39446 +42511,56614 +42512,56616 +42513,56617 +42514,56613 +42515,60805 +42516,46606 +42517,56614 +42518,56616 +42519,56617 +42520,56613 +42521,60836 +42522,46606 +42523,39505 +42524,39505 +42525,39505 +42526,39505 +42527,39505 +42528,39505 +42529,39505 +42530,39505 +42531,39505 +42532,39505 +42533,39505 +42534,39505 +42535,39505 +42536,39505 +42537,39505 +42538,39505 +42539,39505 +42540,39505 +42541,53538 +42542,38747 +42543,53550 +42544,53551 +42545,57717 +42546,24052 +42547,53553 +42548,8546 +42549,43886 +42550,45779 +42551,53564 +42552,43886 +42553,44949 +42554,45780 +42555,53564 +42556,56885 +42557,56414 +42558,56886 +42559,56887 +42560,59214 +42561,56501 +42562,49155 +42563,56415 +42564,56416 +42565,56415 +42566,60854 +42567,49153 +42568,56414 +42569,56415 +42570,56416 +42571,56414 +42572,51721 +42573,49153 +42574,34953 +42575,34953 +42576,9659 +42577,9659 +42578,9659 +42579,9659 +42580,9659 +42581,9659 +42582,34953 +42583,34953 +42584,34953 +42585,34953 +42586,34953 +42587,34953 +42588,34953 +42589,34953 +42590,33681 +42591,34953 +42592,34953 +42593,25246 +42594,25246 +42595,46045 +42596,46045 +42597,46045 +42598,46045 +42599,46045 +42600,46045 +42601,25246 +42602,25246 +42603,25246 +42604,25246 +42605,25246 +42606,25246 +42607,25246 +42608,25246 +42609,25246 +42610,25246 +42611,34960 +42612,1103 +42613,1103 +42614,1103 +42615,1103 +42616,1103 +42617,1103 +42618,51913 +42619,51913 +42620,51913 +42621,51913 +42622,51913 +42623,51913 +42624,53325 +42625,39539 +42626,39540 +42627,44561 +42628,45932 +42629,39543 +42630,41133 +42631,41134 +42632,41135 +42633,41136 +42634,41137 +42635,41133 +42636,41134 +42637,41135 +42638,41136 +42639,41137 +42640,53565 +42641,40555 +42642,39126 +42643,39128 +42644,39124 +42645,32008 +42646,53566 +42647,39214 +42648,6270 +42649,6270 +42650,6270 +42651,6270 +42652,6270 +42653,6270 +42654,39539 +42655,39540 +42656,44561 +42657,45932 +42658,39543 +42659,41144 +42660,41145 +42661,44009 +42662,41148 +42663,41149 +42664,41144 +42665,41145 +42666,41147 +42667,41148 +42668,41149 +42669,41144 +42670,41145 +42671,44009 +42672,41148 +42673,41149 +42674,40623 +42675,40624 +42676,42882 +42677,40626 +42678,40628 +42679,53569 +42680,41443 +42681,47172 +42682,41445 +42683,41758 +42684,41446 +42685,41443 +42686,47172 +42687,41445 +42688,41758 +42689,41446 +42690,41443 +42691,47172 +42692,41445 +42693,41758 +42694,41446 +42695,41138 +42696,44876 +42697,41140 +42698,41142 +42699,41143 +42700,53573 +42701,54312 +42702,54314 +42703,41154 +42704,41794 +42705,41155 +42706,42171 +42707,41157 +42708,41154 +42709,41794 +42710,41155 +42711,42171 +42712,41157 +42713,40622 +42714,41234 +42715,40059 +42716,40056 +42717,39952 +42718,41706 +42719,45149 +42720,45236 +42721,44788 +42722,41713 +42723,54817 +42724,53007 +42725,52233 +42726,53577 +42727,51577 +42728,50615 +42729,53578 +42730,52568 +42731,56715 +42732,53581 +42733,52981 +42734,58830 +42735,58830 +42736,58830 +42737,58830 +42738,58830 +42739,58830 +42740,58830 +42741,58830 +42742,58830 +42743,58830 +42744,58830 +42745,58830 +42746,58830 +42747,58830 +42748,58830 +42749,58830 +42750,58830 +42751,58830 +42752,58830 +42753,58830 +42754,58830 +42755,53593 +42756,34802 +42757,53602 +42758,53633 +42759,53603 +42760,53625 +42761,53632 +42762,53626 +42763,56342 +42764,53619 +42765,53639 +42766,53627 +42767,49734 +42768,53629 +42769,44246 +42770,5283 +42771,53675 +42772,9129 +42773,53677 +42774,53680 +42775,53690 +42776,34116 +42777,53692 +42778,6345 +42779,53694 +42780,53695 +42781,53696 +42782,53697 +42783,53698 +42784,20692 +42785,56093 +42786,56004 +42787,56034 +42788,56007 +42789,55901 +42790,55476 +42791,56103 +42792,56141 +42793,31603 +42794,50147 +42795,56055 +42796,56045 +42797,20692 +42798,56081 +42799,50326 +42800,56012 +42801,56577 +42802,56333 +42803,55908 +42804,56132 +42805,49919 +42806,56578 +42807,55892 +42808,52417 +42809,56579 +42810,51873 +42811,56140 +42812,52373 +42813,56582 +42814,55903 +42815,56092 +42816,56585 +42817,56587 +42818,56136 +42819,50201 +42820,51885 +42821,56589 +42822,31210 +42823,50199 +42824,51385 +42825,51899 +42826,56018 +42827,56106 +42828,50142 +42829,50905 +42830,56102 +42831,56076 +42832,56596 +42833,56598 +42834,51297 +42835,56600 +42836,56584 +42837,21206 +42838,7061 +42839,53699 +42840,48462 +42841,56056 +42842,56011 +42843,52491 +42844,56105 +42845,55905 +42846,56091 +42847,56137 +42848,50125 +42849,56005 +42850,51192 +42851,1103 +42852,34960 +42853,34960 +42854,34960 +42855,34960 +42856,6543 +42857,50141 +42858,56001 +42859,50316 +42860,55904 +42861,50121 +42862,56025 +42863,56113 +42864,49229 +42865,56006 +42866,56009 +42867,49928 +42868,50203 +42869,49920 +42870,56021 +42871,56580 +42872,56098 +42873,53703 +42874,49979 +42875,56581 +42876,51297 +42877,51900 +42878,51904 +42879,51904 +42880,51895 +42881,55845 +42882,56391 +42883,56042 +42884,56133 +42885,51891 +42886,56583 +42887,49362 +42888,51886 +42889,56601 +42890,56099 +42891,56590 +42892,51886 +42893,54933 +42894,13082 +42895,56575 +42896,56576 +42897,58829 +42898,58829 +42899,58829 +42900,58829 +42901,58829 +42902,58829 +42903,58829 +42904,58829 +42905,58829 +42906,58829 +42907,58829 +42908,58829 +42909,58829 +42910,58829 +42911,58829 +42912,58829 +42913,58829 +42914,58829 +42915,58829 +42916,58829 +42917,58829 +42918,53699 +42919,49149 +42920,53708 +42921,53709 +42922,31755 +42923,53723 +42924,53724 +42925,53725 +42926,36727 +42927,1438 +42928,53745 +42929,16205 +42930,7342 +42931,20818 +42932,53774 +42933,53773 +42934,53775 +42935,53776 +42936,53777 +42937,53778 +42938,53779 +42939,53780 +42940,53781 +42941,53786 +42942,54527 +42943,23904 +42944,23248 +42945,25648 +42946,30926 +42947,45947 +42948,34109 +42949,29964 +42950,15809 +42951,30925 +42952,28179 +42953,9152 +42954,58836 +42955,58836 +42956,58836 +42957,58836 +42958,58836 +42959,58836 +42960,58836 +42961,58836 +42962,58836 +42963,58836 +42964,58836 +42965,58836 +42966,58836 +42967,58836 +42968,58836 +42969,58836 +42970,58836 +42971,58836 +42972,58836 +42973,58836 +42974,58836 +42975,31760 +42976,31755 +42977,31760 +42978,31760 +42979,31760 +42980,31760 +42981,31760 +42982,31760 +42983,31760 +42984,25700 +42985,29798 +42986,53790 +42987,56181 +42988,56182 +42989,56178 +42990,56179 +42991,6337 +42992,24784 +42993,39118 +42994,22194 +42995,53135 +42996,54533 +42997,39720 +42998,53858 +42999,54529 +43000,39117 +43001,39718 +43002,40541 +43003,34104 +43004,44291 +43005,54532 +43006,7287 +43007,56115 +43008,60263 +43009,53856 +43010,53857 +43011,25475 +43012,52981 +43013,53859 +43014,53860 +43015,53864 +43016,32746 +43017,15274 +43018,15274 +43019,15274 +43020,15274 +43021,15274 +43022,15274 +43023,15274 +43024,15274 +43025,15274 +43026,15274 +43027,15274 +43028,15274 +43029,15274 +43030,15274 +43031,15274 +43032,15274 +43033,15274 +43034,15274 +43035,15274 +43036,15274 +43037,15274 +43038,7627 +43039,31755 +43040,35556 +43041,53960 +43042,53953 +43043,53959 +43044,36481 +43045,36480 +43046,53971 +43047,35557 +43048,35554 +43049,35555 +43050,35550 +43051,36077 +43052,53955 +43053,53947 +43054,53963 +43055,53969 +43056,53970 +43057,53975 +43058,53956 +43059,37293 +43060,53973 +43061,53974 +43062,53980 +43063,53981 +43064,53975 +43065,53978 +43066,53983 +43067,53984 +43068,54462 +43069,54459 +43070,54460 +43071,54461 +43072,54448 +43073,54449 +43074,54447 +43075,14658 +43076,54454 +43077,54453 +43078,54451 +43079,54452 +43080,54457 +43081,54458 +43082,54456 +43083,54455 +43084,37877 +43085,54064 +43086,18099 +43087,6410 +43088,54066 +43089,13799 +43090,38757 +43091,54098 +43092,54099 +43093,54100 +43094,38760 +43095,1317 +43096,54102 +43097,54103 +43098,38475 +43099,57505 +43100,19488 +43101,34500 +43102,43520 +43103,54612 +43104,54601 +43105,54607 +43106,54609 +43107,54610 +43108,54603 +43109,54606 +43110,54107 +43111,54113 +43112,54109 +43113,54110 +43114,54111 +43115,55102 +43116,55107 +43117,55099 +43118,55106 +43119,55110 +43120,55097 +43121,55101 +43122,55100 +43123,55104 +43124,55113 +43125,55098 +43126,55103 +43127,55112 +43128,21794 +43129,56722 +43130,52333 +43131,53236 +43132,56718 +43133,56716 +43134,38758 +43135,20220 +43136,57504 +43137,50875 +43138,57502 +43139,57503 +43140,9110 +43141,38759 +43142,57516 +43143,18168 +43144,57515 +43145,57291 +43146,57292 +43147,34500 +43148,21115 +43149,46254 +43150,35847 +43151,54158 +43152,54168 +43153,47133 +43154,54171 +43155,54175 +43156,54177 +43157,54176 +43158,54178 +43159,54182 +43160,54189 +43161,54194 +43162,54195 +43163,54196 +43164,57269 +43165,57270 +43166,54198 +43167,51888 +43168,57264 +43169,54202 +43170,16211 +43171,57267 +43172,57268 +43173,56485 +43174,57271 +43175,54203 +43176,49734 +43177,56875 +43178,56874 +43179,56873 +43180,41951 +43181,49464 +43182,51715 +43183,54933 +43184,51577 +43185,56148 +43186,57177 +43187,56150 +43188,56100 +43189,51243 +43190,56027 +43191,56035 +43192,56104 +43193,56072 +43194,56591 +43195,56135 +43196,54266 +43197,56097 +43198,51927 +43199,54267 +43200,56131 +43201,56054 +43202,56595 +43203,56033 +43204,56026 +43205,54286 +43206,54291 +43207,56605 +43208,56608 +43209,56609 +43210,56017 +43211,56610 +43212,56014 +43213,51932 +43214,54338 +43215,48232 +43216,54348 +43217,35851 +43218,4714 +43219,54409 +43220,54421 +43221,54433 +43222,54434 +43223,54435 +43224,54437 +43225,54438 +43226,54439 +43227,54440 +43228,54441 +43229,37555 +43230,13710 +43231,13710 +43232,13707 +43233,13707 +43234,37278 +43235,37278 +43236,38430 +43237,34432 +43238,54473 +43239,35930 +43240,54474 +43241,54482 +43242,54486 +43243,54487 +43244,12567 +43245,31603 +43246,31616 +43247,31800 +43248,4284 +43249,9836 +43250,54488 +43251,34189 +43252,39120 +43253,31664 +43254,47969 +43255,56726 +43256,54952 +43257,56695 +43258,54950 +43259,54486 +43260,56701 +43261,56720 +43262,54925 +43263,54924 +43264,54920 +43265,57622 +43266,57621 +43267,36376 +43268,54494 +43269,31604 +43270,54498 +43271,54923 +43272,6490 +43273,56719 +43274,54503 +43275,29174 +43276,54505 +43277,44841 +43278,54512 +43279,51520 +43280,52500 +43281,54521 +43282,33906 +43283,54522 +43284,54525 +43285,34204 +43286,54523 +43287,52348 +43288,52705 +43289,50663 +43290,54524 +43291,54526 +43292,54541 +43293,54542 +43294,54543 +43295,54544 +43296,54545 +43297,54552 +43298,54555 +43299,54552 +43300,54556 +43301,54559 +43302,40107 +43303,40107 +43304,40107 +43305,51925 +43306,53042 +43307,40753 +43308,40753 +43309,51280 +43310,52931 +43311,50612 +43312,51519 +43313,54579 +43314,31120 +43315,54598 +43316,58827 +43317,6270 +43318,6270 +43319,6270 +43320,6270 +43321,35852 +43322,54629 +43323,22304 +43324,57518 +43325,54649 +43326,54648 +43327,54646 +43328,21469 +43329,54653 +43330,12410 +43331,58827 +43332,58827 +43333,3673 +43334,58827 +43335,58827 +43336,52559 +43337,52559 +43338,59343 +43339,58831 +43340,58833 +43341,54654 +43342,58835 +43343,58837 +43344,58838 +43345,39459 +43346,21202 +43347,21202 +43348,54722 +43349,54723 +43350,59343 +43351,59343 +43352,33467 +43353,51615 +43354,59343 +43355,59343 +43356,59343 +43357,58831 +43358,54999 +43359,58831 +43360,58831 +43361,58831 +43362,57365 +43363,55000 +43364,58831 +43365,58833 +43366,58833 +43367,58833 +43368,58833 +43369,58833 +43370,58835 +43371,58835 +43372,58835 +43373,58835 +43374,58835 +43375,55001 +43376,58837 +43377,58837 +43378,58837 +43379,58837 +43380,58837 +43381,58838 +43382,44703 +43383,54596 +43384,54596 +43385,58838 +43386,58838 +43387,51927 +43388,58838 +43389,58840 +43390,58840 +43391,58840 +43392,58840 +43393,58840 +43394,58840 +43395,58843 +43396,58843 +43397,58843 +43398,58843 +43399,58843 +43400,58843 +43401,55014 +43402,55015 +43403,50908 +43404,39212 +43405,50507 +43406,28693 +43407,57084 +43408,39126 +43409,55017 +43410,55018 +43411,54732 +43412,58842 +43413,58842 +43414,58842 +43415,58842 +43416,58842 +43417,58842 +43418,58842 +43419,58842 +43420,58842 +43421,58842 +43422,58842 +43423,58842 +43424,58842 +43425,58842 +43426,58842 +43427,58842 +43428,58842 +43429,58842 +43430,58842 +43431,58842 +43432,58842 +43433,56706 +43434,56703 +43435,56702 +43436,56704 +43437,56709 +43438,56705 +43439,56708 +43440,54524 +43441,54524 +43442,54935 +43443,52363 +43444,56585 +43445,54937 +43446,54932 +43447,56735 +43448,56736 +43449,54933 +43450,56728 +43451,56733 +43452,57620 +43453,55018 +43454,56729 +43455,50611 +43456,56731 +43457,56732 +43458,56587 +43459,56711 +43460,56712 +43461,51109 +43462,18102 +43463,3331 +43464,3331 +43465,3331 +43466,3331 +43467,1093 +43468,1093 +43469,56724 +43470,18117 +43471,18099 +43472,18115 +43473,18119 +43474,54736 +43475,54932 +43476,52514 +43477,54737 +43478,54539 +43479,54741 +43480,54539 +43481,51715 +43482,31664 +43483,41731 +43484,55207 +43485,6270 +43486,63017 +43487,54742 +43488,54743 +43489,63121 +43490,54746 +43491,3428 +43492,53174 +43493,54748 +43494,54750 +43495,55206 +43496,53880 +43497,6270 +43498,31664 +43499,18059 +43500,53286 +43501,18046 +43502,55205 +43503,56699 +43504,29902 +43505,15274 +43506,15274 +43507,15274 +43508,15274 +43509,15274 +43510,15274 +43511,54771 +43512,54771 +43513,54795 +43514,44964 +43515,54808 +43516,42378 +43517,62988 +43518,54854 +43519,8932 +43520,19528 +43521,32335 +43522,54962 +43523,54855 +43524,54856 +43525,54899 +43526,54904 +43527,54905 +43528,54910 +43529,54909 +43530,37808 +43531,37807 +43532,54947 +43533,58825 +43534,58825 +43535,58826 +43536,58825 +43537,58825 +43538,58825 +43539,58826 +43540,54953 +43541,58825 +43542,58825 +43543,58825 +43544,58826 +43545,58825 +43546,58825 +43547,58825 +43548,58825 +43549,58825 +43550,58825 +43551,58825 +43552,58825 +43553,58825 +43554,58825 +43555,54963 +43556,31783 +43557,54965 +43558,13489 +43559,54966 +43560,54967 +43561,20899 +43562,54968 +43563,54969 +43564,1282 +43565,56737 +43566,56738 +43567,54980 +43568,54987 +43569,54994 +43570,54995 +43571,24694 +43572,55023 +43573,55033 +43574,34561 +43575,26381 +43576,8932 +43577,37424 +43578,55034 +43579,55038 +43580,46410 +43581,48329 +43582,39123 +43583,55040 +43584,55048 +43585,55042 +43586,35276 +43587,55047 +43588,55044 +43589,55045 +43590,35290 +43591,55046 +43592,55049 +43593,36436 +43594,55050 +43595,55054 +43596,55059 +43597,6270 +43598,55062 +43599,59466 +43600,53147 +43601,52564 +43602,4135 +43603,15791 +43604,37857 +43605,17889 +43606,37849 +43607,37846 +43608,55088 +43609,55089 +43610,55093 +43611,8090 +43612,47933 +43613,43846 +43614,55320 +43615,55095 +43616,55115 +43617,55120 +43618,55121 +43619,55122 +43620,55318 +43621,55319 +43622,9632 +43623,55162 +43624,9632 +43625,55166 +43626,55185 +43627,55217 +43628,55217 +43629,55217 +43630,55217 +43631,55217 +43632,55217 +43633,55217 +43634,55217 +43635,55217 +43636,55217 +43637,55217 +43638,55217 +43639,55217 +43640,55217 +43641,55217 +43642,55248 +43643,55248 +43644,55248 +43645,55249 +43646,55251 +43647,18535 +43648,52268 +43649,52268 +43650,55252 +43651,20619 +43652,24131 +43653,9134 +43654,55787 +43655,55959 +43656,55956 +43657,55960 +43658,55284 +43659,55261 +43660,55264 +43661,55980 +43662,55262 +43663,55981 +43664,55982 +43665,55263 +43666,55264 +43667,55265 +43668,55268 +43669,31477 +43670,55271 +43671,58826 +43672,58826 +43673,58826 +43674,58827 +43675,55248 +43676,55248 +43677,55248 +43678,55248 +43679,55248 +43680,55248 +43681,55248 +43682,55248 +43683,55248 +43684,55248 +43685,55248 +43686,55248 +43687,55248 +43688,55272 +43689,55273 +43690,55274 +43691,55275 +43692,55276 +43693,26858 +43694,55285 +43695,18078 +43696,18078 +43697,55278 +43698,55280 +43699,55281 +43700,55287 +43701,55288 +43702,55288 +43703,55288 +43704,55288 +43705,55288 +43706,55288 +43707,55288 +43708,55288 +43709,55288 +43710,55288 +43711,55288 +43712,55288 +43713,55288 +43714,55288 +43715,55288 +43716,55288 +43717,55288 +43718,55288 +43719,55288 +43720,55288 +43721,55288 +43722,55288 +43723,55288 +43724,28682 +43725,58838 +43726,55293 +43727,54256 +43728,54423 +43729,54396 +43730,54281 +43731,54289 +43732,54387 +43733,54387 +43734,54408 +43735,54375 +43736,54275 +43737,54296 +43738,54254 +43739,54253 +43740,48928 +43741,54432 +43742,54403 +43743,54405 +43744,54403 +43745,54272 +43746,54271 +43747,54310 +43748,54309 +43749,57538 +43750,54407 +43751,54406 +43752,54407 +43753,57539 +43754,57538 +43755,54274 +43756,54273 +43757,54290 +43758,54290 +43759,54290 +43760,54274 +43761,54230 +43762,54260 +43763,54398 +43764,45014 +43765,54424 +43766,45014 +43767,54259 +43768,54397 +43769,54397 +43770,45228 +43771,45228 +43772,54306 +43773,54304 +43774,54304 +43775,54259 +43776,54282 +43777,57530 +43778,54418 +43779,54276 +43780,54268 +43781,54297 +43782,54422 +43783,54422 +43784,54280 +43785,54302 +43786,54280 +43787,54399 +43788,54431 +43789,54283 +43790,54270 +43791,54308 +43792,54269 +43793,54255 +43794,54255 +43795,57546 +43796,54420 +43797,54419 +43798,54277 +43799,54419 +43800,57546 +43801,57546 +43802,54279 +43803,54278 +43804,54301 +43805,54300 +43806,54299 +43807,54255 +43808,54269 +43809,54253 +43810,54302 +43811,48928 +43812,54371 +43813,51834 +43814,54405 +43815,54370 +43816,54272 +43817,54271 +43818,54288 +43819,54287 +43820,54261 +43821,55294 +43822,54261 +43823,55295 +43824,1317 +43825,58825 +43826,58825 +43827,58825 +43828,56560 +43829,6337 +43830,51299 +43831,51906 +43832,50326 +43833,56343 +43834,50138 +43835,50208 +43836,56783 +43837,56782 +43838,56786 +43839,56496 +43840,51860 +43841,56205 +43842,52372 +43843,56501 +43844,51892 +43845,56569 +43846,51904 +43847,51895 +43848,51899 +43849,35359 +43850,55297 +43851,55298 +43852,50746 +43853,22071 +43854,9154 +43855,56034 +43856,55367 +43857,55901 +43858,50133 +43859,56509 +43860,55301 +43861,26064 +43862,56573 +43863,52420 +43864,55302 +43865,55306 +43866,56571 +43867,58832 +43868,58832 +43869,58832 +43870,50905 +43871,55309 +43872,52068 +43873,56562 +43874,56567 +43875,50073 +43876,18164 +43877,53242 +43878,56572 +43879,56565 +43880,56479 +43881,53244 +43882,52491 +43883,50326 +43884,51280 +43885,50325 +43886,50191 +43887,56493 +43888,50203 +43889,56488 +43890,51152 +43891,56484 +43892,56335 +43893,57391 +43894,49979 +43895,56568 +43896,56564 +43897,51463 +43898,51463 +43899,51385 +43900,56482 +43901,56495 +43902,51297 +43903,51243 +43904,51865 +43905,51860 +43906,56400 +43907,49918 +43908,56359 +43909,56334 +43910,56510 +43911,49207 +43912,56504 +43913,53055 +43914,56497 +43915,49206 +43916,50210 +43917,56140 +43918,50162 +43919,49206 +43920,50145 +43921,50133 +43922,49199 +43923,49199 +43924,56566 +43925,56557 +43926,56558 +43927,50141 +43928,56508 +43929,50325 +43930,51896 +43931,56485 +43932,56483 +43933,51884 +43934,56561 +43935,56512 +43936,56331 +43937,52303 +43938,54812 +43939,56371 +43940,56574 +43941,49725 +43942,51899 +43943,56563 +43944,51899 +43945,56505 +43946,56500 +43947,51906 +43948,56346 +43949,41435 +43950,31029 +43951,56306 +43952,57552 +43953,56307 +43954,57480 +43955,56174 +43956,56368 +43957,44588 +43958,56380 +43959,56368 +43960,44588 +43961,56380 +43962,56650 +43963,56649 +43964,56647 +43965,36142 +43966,55391 +43967,55346 +43968,55316 +43969,55370 +43970,55368 +43971,52493 +43972,55363 +43973,51301 +43974,55366 +43975,55364 +43976,56374 +43977,56570 +43978,51873 +43979,54195 +43980,51882 +43981,56499 +43982,49362 +43983,55351 +43984,34752 +43985,55362 +43986,57480 +43987,6270 +43988,56114 +43989,56216 +43990,56117 +43991,56121 +43992,48510 +43993,43407 +43994,53912 +43995,56122 +43996,53830 +43997,55452 +43998,56120 +43999,39123 +44000,56127 +44001,16452 +44002,56126 +44003,54865 +44004,56128 +44005,35312 +44006,56129 +44007,54623 +44008,56215 +44009,55463 +44010,19520 +44011,56130 +44012,55462 +44013,43122 +44014,56514 +44015,56513 +44016,56521 +44017,35358 +44018,56522 +44019,56527 +44020,56537 +44021,56539 +44022,31138 +44023,56553 +44024,56540 +44025,28693 +44026,56538 +44027,56070 +44028,52445 +44029,52571 +44030,56541 +44031,56542 +44032,50607 +44033,40035 +44034,9857 +44035,56781 +44036,56516 +44037,56517 +44038,56518 +44039,56558 +44040,52304 +44041,56523 +44042,56524 +44043,56526 +44044,57523 +44045,56534 +44046,56532 +44047,42619 +44048,55088 +44049,53864 +44050,55572 +44051,55573 +44052,55574 +44053,57482 +44054,55608 +44055,55611 +44056,55588 +44057,55605 +44058,55612 +44059,55604 +44060,55603 +44061,55606 +44062,55607 +44063,55609 +44064,18169 +44065,37858 +44066,54318 +44067,40103 +44068,40106 +44069,40395 +44070,55664 +44071,24131 +44072,53880 +44073,55773 +44074,34188 +44075,40403 +44076,54469 +44077,56368 +44078,54469 +44079,44588 +44080,56380 +44081,54469 +44082,54469 +44083,56368 +44084,54469 +44085,44588 +44086,56380 +44087,54467 +44088,54467 +44089,54467 +44090,15809 +44091,3363 +44092,23264 +44093,28636 +44094,21956 +44095,20298 +44096,29769 +44097,37841 +44098,37840 +44099,28282 +44100,29971 +44101,34651 +44102,34697 +44103,25687 +44104,55691 +44105,34643 +44106,43065 +44107,23737 +44108,55698 +44109,57526 +44110,58223 +44111,55695 +44112,55696 +44113,55689 +44114,56112 +44115,55700 +44116,55757 +44117,55760 +44118,55762 +44119,1102 +44120,55772 +44121,55758 +44122,55763 +44123,55771 +44124,40395 +44125,40103 +44126,40103 +44127,7918 +44128,55780 +44129,55785 +44130,55783 +44131,55781 +44132,55786 +44133,55782 +44134,55784 +44135,40399 +44136,55786 +44137,55961 +44138,55996 +44139,55994 +44140,55947 +44141,55823 +44142,44704 +44143,31756 +44144,31762 +44145,31762 +44146,31762 +44147,31762 +44148,31755 +44149,55997 +44150,55995 +44151,56308 +44152,40395 +44153,8031 +44154,31756 +44155,31756 +44156,31756 +44157,31756 +44158,31755 +44159,55863 +44160,56308 +44161,44704 +44162,55796 +44163,44704 +44164,56308 +44165,31762 +44166,55818 +44167,51004 +44168,56308 +44169,55822 +44170,51003 +44171,55825 +44172,55824 +44173,51703 +44174,50536 +44175,56308 +44176,51686 +44177,56308 +44178,56307 +44179,55856 +44180,55877 +44181,55884 +44182,55900 +44183,53132 +44184,31755 +44185,31755 +44186,55773 +44187,50514 +44188,55943 +44189,55962 +44190,55964 +44191,53056 +44192,55974 +44193,49373 +44194,55976 +44195,49876 +44196,55993 +44197,55990 +44198,55983 +44199,55984 +44200,55989 +44201,55986 +44202,55987 +44203,55988 +44204,55991 +44205,55992 +44206,19497 +44207,19498 +44208,929 +44209,7111 +44210,23171 +44211,53085 +44212,56067 +44213,6497 +44214,9063 +44215,7271 +44216,56070 +44217,56069 +44218,56086 +44219,56080 +44220,56079 +44221,59338 +44222,56075 +44223,56647 +44224,56647 +44225,56649 +44226,56649 +44227,56157 +44228,56118 +44229,59337 +44230,44588 +44231,44588 +44232,56123 +44233,56124 +44234,56347 +44235,56347 +44236,7459 +44237,20502 +44238,56142 +44239,56180 +44240,56183 +44241,56203 +44242,56190 +44243,56196 +44244,56206 +44245,56210 +44246,27454 +44247,55312 +44248,56218 +44249,56219 +44250,52928 +44251,41488 +44252,56245 +44253,56181 +44254,56181 +44255,56181 +44256,56260 +44257,56261 +44258,56262 +44259,31755 +44260,56263 +44261,56263 +44262,56263 +44263,56263 +44264,56263 +44265,56263 +44266,56263 +44267,56263 +44268,56264 +44269,56264 +44270,56264 +44271,56264 +44272,56264 +44273,56264 +44274,56264 +44275,56264 +44276,31755 +44277,56265 +44278,56265 +44279,56265 +44280,56265 +44281,56265 +44282,56265 +44283,44357 +44284,56265 +44285,56265 +44286,56266 +44287,56266 +44288,56266 +44289,56266 +44290,56266 +44291,56266 +44292,56266 +44293,56266 +44294,31755 +44295,56267 +44296,56269 +44297,56399 +44298,56283 +44299,1442 +44300,56288 +44301,56864 +44302,56293 +44303,56295 +44304,56867 +44305,56296 +44306,56297 +44307,48394 +44308,53042 +44309,56301 +44310,56302 +44311,56304 +44312,56305 +44313,42409 +44314,56319 +44315,56320 +44316,44704 +44317,44704 +44318,44704 +44319,56361 +44320,56363 +44321,56364 +44322,56385 +44323,56385 +44324,56385 +44325,17904 +44326,31755 +44327,57010 +44328,57005 +44329,57012 +44330,57013 +44331,57014 +44332,57021 +44333,56398 +44334,41951 +44335,51243 +44336,56339 +44337,56664 +44338,51044 +44339,53245 +44340,51357 +44341,51899 +44342,56054 +44343,56056 +44344,51324 +44345,51902 +44346,56870 +44347,56871 +44348,56869 +44349,56872 +44350,56011 +44351,51857 +44352,51927 +44353,51883 +44354,51310 +44355,56784 +44356,56785 +44357,56787 +44358,52441 +44359,49903 +44360,51195 +44361,51131 +44362,56759 +44363,51884 +44364,56758 +44365,51145 +44366,52387 +44367,56774 +44368,52485 +44369,50752 +44370,49464 +44371,51857 +44372,51883 +44373,51577 +44374,9857 +44375,34204 +44376,9657 +44377,9852 +44378,56011 +44379,51857 +44380,51883 +44381,49876 +44382,51370 +44383,56777 +44384,51310 +44385,50025 +44386,56764 +44387,56766 +44388,56765 +44389,51280 +44390,9860 +44391,32008 +44392,43701 +44393,50166 +44394,55296 +44395,55296 +44396,51145 +44397,49251 +44398,51884 +44399,52406 +44400,31603 +44401,34034 +44402,15420 +44403,9859 +44404,56788 +44405,52514 +44406,52412 +44407,56789 +44408,52530 +44409,56791 +44410,56792 +44411,52302 +44412,52302 +44413,53078 +44414,47149 +44415,56238 +44416,56238 +44417,56252 +44418,56252 +44419,56409 +44420,56409 +44421,56238 +44422,56238 +44423,60816 +44424,60804 +44425,47994 +44426,47994 +44427,52945 +44428,55018 +44429,27088 +44430,55248 +44431,27088 +44432,56592 +44433,56637 +44434,56639 +44435,56640 +44436,56673 +44437,55018 +44438,56675 +44439,56651 +44440,56680 +44441,56679 +44442,56677 +44443,56672 +44444,55018 +44445,56725 +44446,20342 +44447,56652 +44448,56653 +44449,811 +44450,43101 +44451,56467 +44452,56657 +44453,811 +44454,30956 +44455,811 +44456,811 +44457,811 +44458,811 +44459,7629 +44460,7629 +44461,7629 +44462,56665 +44463,811 +44464,56667 +44465,811 +44466,811 +44467,811 +44468,7695 +44469,811 +44470,811 +44471,56741 +44472,56741 +44473,56750 +44474,9429 +44475,11448 +44476,58369 +44477,4826 +44478,58371 +44479,58370 +44480,56780 +44481,34389 +44482,56790 +44483,56750 +44484,56741 +44485,56741 +44486,56750 +44487,56750 +44488,56741 +44489,56741 +44490,56741 +44491,56741 +44492,56750 +44493,811 +44494,56750 +44495,56750 +44496,56750 +44497,811 +44498,56741 +44499,36512 +44500,18724 +44501,56795 +44502,1096 +44503,1096 +44504,57236 +44505,56796 +44506,8928 +44507,11448 +44508,37858 +44509,6270 +44510,6270 +44511,6270 +44512,6270 +44513,6270 +44514,6270 +44515,6270 +44516,6270 +44517,6270 +44518,6270 +44519,6270 +44520,6270 +44521,6270 +44522,6270 +44523,6270 +44524,6270 +44525,6270 +44526,6270 +44527,6270 +44528,6270 +44529,8931 +44530,6270 +44531,6270 +44532,6270 +44533,6270 +44534,6270 +44535,6270 +44536,6270 +44537,6270 +44538,6270 +44539,6270 +44540,6270 +44541,6270 +44542,6270 +44543,6270 +44544,6270 +44545,6270 +44546,1096 +44547,1096 +44548,1096 +44549,1096 +44550,1096 +44551,1096 +44552,1096 +44553,1096 +44554,58859 +44555,39461 +44556,39460 +44557,42161 +44558,59464 +44559,6270 +44560,6270 +44561,6270 +44562,6270 +44563,6270 +44564,15274 +44565,15274 +44566,15274 +44567,15274 +44568,15274 +44569,31029 +44570,18060 +44571,18114 +44572,18085 +44573,21845 +44574,40852 +44575,18059 +44576,39448 +44577,31029 +44578,9733 +44579,23716 +44580,53565 +44581,31029 +44582,31029 +44583,56868 +44584,1096 +44585,1096 +44586,1096 +44587,1096 +44588,1096 +44589,1096 +44590,56876 +44591,56876 +44592,56869 +44593,56870 +44594,56868 +44595,56871 +44596,56872 +44597,23716 +44598,25482 +44599,56877 +44600,1103 +44601,56878 +44602,3426 +44603,56879 +44604,46701 +44605,56881 +44606,58017 +44607,6372 +44608,40841 +44609,6413 +44610,6343 +44611,54107 +44612,6425 +44613,40695 +44614,7287 +44615,28859 +44616,47919 +44617,18060 +44618,18060 +44619,18060 +44620,18060 +44621,18080 +44622,47356 +44623,18078 +44624,47763 +44625,18079 +44626,8383 +44627,56985 +44628,47763 +44629,8383 +44630,47763 +44631,6371 +44632,8383 +44633,56978 +44634,56976 +44635,56908 +44636,56901 +44637,56909 +44638,56903 +44639,56902 +44640,40300 +44641,56907 +44642,39387 +44643,56904 +44644,26361 +44645,56905 +44646,11908 +44647,57029 +44648,57033 +44649,56883 +44650,13291 +44651,13291 +44652,39978 +44653,37850 +44654,56910 +44655,56912 +44656,56914 +44657,31899 +44658,39212 +44659,31604 +44660,9658 +44661,6490 +44662,23713 +44663,56915 +44664,39210 +44665,9854 +44666,55359 +44667,56924 +44668,56927 +44669,56929 +44670,56930 +44671,56937 +44672,56943 +44673,56951 +44674,56953 +44675,56958 +44676,56963 +44677,56964 +44678,56981 +44679,56995 +44680,56982 +44681,3258 +44682,45351 +44683,34336 +44684,58830 +44685,51883 +44686,56988 +44687,51733 +44688,39432 +44689,39239 +44690,59468 +44691,51899 +44692,57042 +44693,50486 +44694,57043 +44695,51904 +44696,56516 +44697,57051 +44698,57052 +44699,57623 +44700,7714 +44701,40395 +44702,40395 +44703,57080 +44704,16265 +44705,57090 +44706,57097 +44707,56308 +44708,31265 +44709,1103 +44710,57168 +44711,35620 +44712,39915 +44713,23721 +44714,3426 +44715,57220 +44716,21845 +44717,37845 +44718,37861 +44719,57578 +44720,26537 +44721,57246 +44722,57242 +44723,59502 +44724,36861 +44725,36861 +44726,57257 +44727,57258 +44728,57028 +44729,38477 +44730,44949 +44731,6487 +44732,57302 +44733,57308 +44734,57332 +44735,57334 +44736,52928 +44737,57337 +44738,57375 +44739,57360 +44740,45782 +44741,45782 +44742,45782 +44743,15337 +44744,45938 +44745,57384 +44746,49373 +44747,57385 +44748,50535 +44749,50876 +44750,57416 +44751,32231 +44752,57467 +44753,57468 +44754,57469 +44755,37651 +44756,8283 +44757,57470 +44758,57471 +44759,57468 +44760,18095 +44761,57472 +44762,57467 +44763,7134 +44764,18092 +44765,37654 +44766,28257 +44767,53565 +44768,18092 +44769,37654 +44770,23332 +44771,35014 +44772,18092 +44773,57474 +44774,30601 +44775,33239 +44776,57475 +44777,57476 +44778,8381 +44779,29087 +44780,57477 +44781,19569 +44782,57477 +44783,41153 +44784,57488 +44785,58015 +44786,58011 +44787,58014 +44788,58013 +44789,21333 +44790,7287 +44791,57528 +44792,928 +44793,1103 +44794,58059 +44795,57529 +44796,57511 +44797,13117 +44798,57566 +44799,57510 +44800,58603 +44801,6560 +44802,57617 +44803,59492 +44804,39888 +44805,39888 +44806,18173 +44807,57517 +44808,54629 +44809,57519 +44810,57548 +44811,1103 +44812,57549 +44813,57551 +44814,15966 +44815,811 +44816,47314 +44817,56640 +44818,58062 +44819,59467 +44820,32426 +44821,57599 +44822,19089 +44823,57527 +44824,15798 +44825,59495 +44826,19091 +44827,17284 +44828,20629 +44829,41547 +44832,57619 +44833,57619 +44834,4112 +44835,19496 +44836,59857 +44837,59855 +44838,59858 +44839,59854 +44840,59856 +44841,57630 +44842,41547 +44843,41547 +44844,6338 +44845,33731 +44846,33830 +44847,33017 +44848,35710 +44849,57664 +44851,2757 +44852,11994 +44853,37842 +44854,50879 +44855,6624 +44856,7416 +44857,41547 +44858,9135 +44859,9135 +44860,9135 +44861,9135 +44862,9135 +44865,52575 +44866,8928 +44867,8928 +44869,55773 +44870,34188 +44871,55782 +44872,55784 +44873,55786 +44874,40399 +44875,40395 +44876,40395 +44877,55863 +44878,55995 +44879,55997 +44880,55823 +44881,55947 +44882,55994 +44883,55996 +44884,55961 +44885,44739 +44890,14019 +44891,55647 +44892,55647 +44893,55749 +44894,55651 +44895,55650 +44896,56949 +44897,56949 +44898,55652 +44899,55653 +44900,55654 +44901,55312 +44902,55311 +44903,57526 +44904,58223 +44905,58223 +44906,57700 +44907,57700 +44908,57705 +44909,57707 +44910,57706 +44912,39984 +44914,57709 +44915,34365 +44916,15274 +44917,15274 +44918,15274 +44919,15274 +44920,58831 +44921,18050 +44922,58827 +44923,58838 +44924,57733 +44926,52261 +44928,58828 +44930,57749 +44931,57748 +44932,1096 +44933,1096 +44934,52459 +44935,52632 +44936,57753 +44937,6270 +44938,6270 +44939,37851 +44940,47113 +44941,40652 +44943,2516 +44944,56750 +44945,56750 +44946,6270 +44947,811 +44948,50965 +44949,45782 +44950,57760 +44951,11449 +44952,40367 +44953,25466 +44954,15274 +44955,58830 +44956,1317 +44957,57782 +44958,18080 +44963,31387 +44964,57819 +44965,7573 +44970,57877 +44971,51143 +44972,31202 +44973,57886 +44974,57887 +44977,1102 +44978,57897 +44980,57899 +44981,51447 +44982,57915 +44983,57916 +44984,13489 +44986,3664 +44987,29691 +44988,57922 +44989,57923 +44990,58368 +44991,57925 +44992,57926 +44993,57927 +44994,57928 +44996,6337 +44997,57930 +44998,57931 +45000,19496 +45002,57942 +45003,57950 +45005,57952 +45006,54994 +45007,57030 +45008,57028 +45009,54995 +45010,55265 +45011,58557 +45013,58558 +45014,58554 +45015,58555 +45016,58559 +45017,58556 +45018,58553 +45019,58552 +45020,58551 +45021,58550 +45022,57931 +45024,31498 +45026,7061 +45028,7061 +45029,7061 +45030,7061 +45031,7061 +45032,7061 +45033,7061 +45034,7061 +45035,7061 +45036,7061 +45037,57994 +45038,57996 +45039,57996 +45041,60428 +45045,1312 +45046,45984 +45047,58224 +45048,58002 +45049,58498 +45050,11431 +45052,46626 +45053,58012 +45054,22652 +45055,2775 +45056,6270 +45057,50458 +45058,2757 +45059,56750 +45060,6270 +45061,58186 +45062,2757 +45063,58057 +45064,36540 +45067,57617 +45070,36540 +45072,58062 +45073,58372 +45074,59509 +45075,59077 +45076,59078 +45077,59583 +45078,59080 +45080,18075 +45081,58123 +45082,33941 +45083,58154 +45084,58153 +45085,58166 +45086,58948 +45087,58413 +45088,1096 +45089,1096 +45090,1096 +45091,1096 +45092,1096 +45093,1096 +45094,1096 +45095,1096 +45096,1096 +45097,1096 +45098,1096 +45099,1096 +45100,1096 +45101,1096 +45102,1096 +45103,1096 +45104,1096 +45105,1096 +45106,43837 +45107,59701 +45108,59741 +45109,59631 +45110,59382 +45111,59713 +45112,44841 +45113,35367 +45114,25246 +45115,61864 +45116,35358 +45117,59730 +45118,59280 +45119,61867 +45120,58167 +45121,58169 +45122,58170 +45123,8568 +45124,58171 +45125,25132 +45126,58179 +45127,48534 +45128,59623 +45129,59079 +45130,59581 +45131,59068 +45132,58897 +45133,39211 +45134,59702 +45135,58980 +45136,59136 +45137,58902 +45138,58998 +45139,59708 +45140,59210 +45141,58763 +45142,58939 +45143,59273 +45144,51913 +45145,34960 +45146,59027 +45147,58909 +45148,59249 +45149,59100 +45150,61871 +45151,59153 +45152,31603 +45153,34318 +45154,31604 +45155,39211 +45156,59042 +45157,33808 +45158,59320 +45159,59066 +45160,59064 +45161,59700 +45162,59738 +45163,53629 +45164,59660 +45165,58876 +45166,59707 +45167,59207 +45168,44841 +45169,61970 +45170,59390 +45171,58920 +45172,36741 +45173,36741 +45174,47771 +45175,58378 +45176,58187 +45177,58188 +45178,58189 +45179,58190 +45180,25593 +45181,59043 +45182,54517 +45183,59067 +45184,59044 +45185,59112 +45186,61862 +45187,59284 +45188,34863 +45189,54648 +45190,2618 +45191,58192 +45192,47701 +45193,39209 +45194,58198 +45195,58199 +45196,54648 +45197,58200 +45198,1442 +45199,6615 +45200,53169 +45201,4718 +45202,58201 +45203,59082 +45204,59510 +45205,59595 +45206,9860 +45207,43701 +45208,59511 +45209,59073 +45210,59582 +45211,49378 +45212,59626 +45213,48508 +45214,59585 +45215,59074 +45216,54517 +45217,59075 +45218,55986 +45219,59069 +45220,51519 +45221,59076 +45222,59594 +45223,39210 +45224,51374 +45225,61879 +45226,59191 +45227,59252 +45228,59710 +45229,50216 +45230,50216 +45231,50216 +45232,59743 +45233,58947 +45234,58931 +45235,39125 +45236,40051 +45237,59128 +45238,59733 +45239,59272 +45240,61875 +45241,59695 +45242,58997 +45243,35437 +45244,59248 +45245,59744 +45246,59369 +45247,52632 +45248,59697 +45249,59248 +45250,43407 +45251,59715 +45252,59205 +45253,59015 +45254,51913 +45255,54871 +45256,58927 +45257,59389 +45258,59735 +45259,59271 +45260,59094 +45261,58899 +45262,48510 +45263,59318 +45264,61876 +45265,59744 +45266,58937 +45267,59714 +45268,54711 +45269,59213 +45270,34954 +45271,61877 +45272,59508 +45273,59006 +45274,59257 +45275,59728 +45276,45156 +45277,45437 +45278,4722 +45279,53864 +45280,61552 +45281,58208 +45282,58912 +45283,59302 +45284,59378 +45285,9860 +45286,59324 +45287,59383 +45288,59766 +45289,59721 +45290,58209 +45291,58987 +45292,59311 +45293,59759 +45294,59392 +45295,59217 +45296,58949 +45297,39124 +45298,58941 +45299,59158 +45300,59778 +45301,59773 +45302,59590 +45303,11990 +45304,59232 +45305,59748 +45306,58979 +45307,59770 +45308,59524 +45309,58901 +45310,59306 +45311,58916 +45312,59096 +45313,59313 +45314,58973 +45315,58736 +45316,59763 +45317,59029 +45318,58995 +45319,35430 +45320,59704 +45321,59753 +45322,58985 +45323,58625 +45324,59101 +45325,58761 +45326,35313 +45327,58878 +45328,24131 +45329,59633 +45330,59150 +45331,58940 +45332,59376 +45333,59764 +45334,59716 +45335,58229 +45336,58231 +45337,58230 +45338,58330 +45339,58233 +45340,58229 +45341,58247 +45342,58231 +45343,58329 +45344,58249 +45345,58239 +45346,59573 +45347,58335 +45348,58337 +45349,58243 +45350,58242 +45351,58239 +45352,58243 +45353,58335 +45354,58337 +45355,58250 +45356,59574 +45357,58334 +45358,59055 +45359,58243 +45360,58338 +45361,59656 +45362,58256 +45363,58257 +45364,58253 +45365,59670 +45366,58258 +45367,59431 +45368,59517 +45369,58262 +45370,58265 +45371,59612 +45372,59611 +45373,59617 +45374,59618 +45375,59610 +45376,58270 +45377,59611 +45378,59757 +45379,59614 +45380,59616 +45381,59610 +45382,59611 +45383,58275 +45384,59613 +45385,59615 +45386,58284 +45387,58331 +45388,58332 +45389,58333 +45390,58283 +45391,58284 +45392,58331 +45393,58283 +45394,58332 +45395,58333 +45396,58287 +45397,58288 +45398,59648 +45399,58290 +45400,58291 +45401,58293 +45402,59647 +45403,58339 +45404,58296 +45405,59485 +45406,58293 +45407,59061 +45408,59647 +45409,58339 +45410,58296 +45411,59485 +45412,59646 +45413,59488 +45414,58298 +45415,58301 +45416,58639 +45417,59396 +45418,39124 +45419,58302 +45420,58327 +45421,58328 +45422,58307 +45423,59723 +45424,58308 +45425,59677 +45426,58309 +45427,58311 +45428,58312 +45429,58308 +45430,58313 +45431,59677 +45432,58314 +45433,58315 +45434,59204 +45435,61871 +45436,34961 +45437,58943 +45438,31905 +45439,59184 +45440,59139 +45441,61873 +45442,58908 +45443,7271 +45444,59632 +45445,59197 +45446,61881 +45447,44703 +45448,59373 +45449,58895 +45450,61884 +45451,39123 +45452,59201 +45453,59746 +45454,59236 +45455,59755 +45456,44841 +45457,58930 +45458,58874 +45459,9852 +45460,59159 +45461,58996 +45462,59121 +45463,59365 +45464,59672 +45466,59237 +45467,59148 +45468,61887 +45469,43095 +45470,65031 +45471,44086 +45472,59706 +45473,59737 +45474,59270 +45479,58925 +45480,9858 +45481,59699 +45482,59127 +45483,59727 +45484,58881 +45485,48507 +45486,59002 +45487,61889 +45488,59732 +45489,59387 +45490,59319 +45491,58747 +45492,59132 +45493,58977 +45494,59379 +45495,43407 +45496,59035 +45497,59988 +45498,58915 +45499,54686 +45500,58345 +45501,59696 +45502,59711 +45503,31616 +45504,59185 +45505,59194 +45506,44303 +45507,34132 +45508,59726 +45509,54700 +45510,34960 +45511,59391 +45512,59123 +45513,59166 +45514,59015 +45515,34336 +45516,58946 +45517,54999 +45518,59269 +45519,59129 +45520,59009 +45521,58910 +45522,59322 +45523,59739 +45524,61885 +45525,43095 +45527,58888 +45528,58347 +45529,59028 +45530,50376 +45531,61886 +45532,59989 +45533,58913 +45534,53042 +45535,59317 +45536,59740 +45537,59037 +45538,31604 +45539,48512 +45540,45948 +45541,51736 +45542,59219 +45543,59274 +45544,59258 +45547,59742 +45548,58641 +45549,59731 +45550,55389 +45551,59224 +45552,59209 +45553,59145 +45554,59157 +45555,59111 +45556,59084 +45557,58978 +45558,58990 +45559,53671 +45560,59667 +45561,59212 +45562,59168 +45563,59652 +45564,59117 +45565,59093 +45566,59433 +45567,61873 +45568,7061 +45569,7061 +45570,58880 +45574,59981 +45575,58377 +45577,59977 +45578,59976 +45579,59974 +45580,59975 +45581,59978 +45582,59979 +45583,59983 +45584,59982 +45585,59980 +45586,58398 +45587,59295 +45588,59001 +45589,58399 +45590,58400 +45591,58401 +45592,58402 +45593,58403 +45594,59712 +45595,58404 +45596,58406 +45597,58407 +45599,59703 +45601,58828 +45602,58828 +45603,58828 +45604,58828 +45605,60171 +45606,51720 +45607,58884 +45608,45362 +45609,59321 +45610,59658 +45611,59745 +45612,61654 +45613,58921 +45614,24646 +45615,59649 +45616,59135 +45617,58971 +45618,59034 +45619,59032 +45620,58885 +45621,44797 +45622,58828 +45623,58828 +45624,41435 +45625,58829 +45626,58419 +45627,9852 +45628,811 +45629,58418 +45630,58420 +45631,18155 +45632,41438 +45633,41438 +45634,41438 +45635,41438 +45636,41438 +45637,41438 +45638,41441 +45639,41441 +45640,41441 +45641,41440 +45642,41440 +45643,41440 +45644,41440 +45645,41440 +45646,41440 +45647,41441 +45648,41441 +45649,41441 +45650,41442 +45651,41442 +45652,41442 +45653,41442 +45654,41442 +45655,41442 +45656,19486 +45657,19486 +45658,19486 +45659,19486 +45660,19486 +45661,19486 +45663,59694 +45664,58541 +45665,59734 +45666,58538 +45667,58542 +45668,58536 +45669,58540 +45670,58535 +45671,58537 +45672,58539 +45673,58543 +45674,58544 +45675,53560 +45676,59167 +45677,59116 +45679,59775 +45680,59747 +45682,59289 +45685,59374 +45686,59761 +45687,59769 +45688,52632 +45689,52459 +45690,52632 +45691,52459 +45692,58439 +45693,58440 +45694,59718 +45695,58923 +45696,31907 +45697,59229 +45698,59754 +45699,48509 +45700,58942 +45701,59768 +45702,52632 +45703,59326 +45704,54674 +45705,34342 +45706,58463 +45707,59288 +45708,59300 +45709,59105 +45711,59776 +45712,59138 +45713,58952 +45714,58577 +45715,58578 +45716,58579 +45717,58580 +45718,58584 +45719,58581 +45720,58582 +45721,58583 +45722,58585 +45723,58586 +45724,58497 +45725,47934 +45726,58502 +45727,58503 +45728,40609 +45729,58506 +45730,58505 +45731,58829 +45732,58829 +45733,58829 +45734,58829 +45735,58829 +45736,58830 +45737,58830 +45738,58830 +45739,58830 +45740,58830 +45741,58832 +45742,58832 +45743,58832 +45744,58832 +45745,58832 +45746,58832 +45747,58832 +45748,58507 +45749,50138 +45750,58509 +45751,58510 +45752,58512 +45753,58834 +45754,58514 +45755,58834 +45756,58834 +45757,58834 +45758,58834 +45759,58806 +45760,58834 +45761,58836 +45762,58836 +45763,58520 +45764,58836 +45765,59445 +45766,58836 +45767,58836 +45768,58836 +45769,58836 +45770,58839 +45771,58839 +45772,58839 +45773,20503 +45774,811 +45775,58839 +45776,58839 +45777,58839 +45778,58839 +45779,58841 +45780,58841 +45781,58841 +45782,58841 +45783,58841 +45784,58548 +45785,58841 +45786,58546 +45787,58547 +45788,58545 +45789,58841 +45790,58842 +45791,58549 +45792,58842 +45793,58842 +45794,58842 +45795,58842 +45796,58526 +45797,58842 +45798,58526 +45799,58825 +45800,58825 +45801,59690 +45802,59690 +45803,58825 +45804,58825 +45805,58825 +45806,58825 +45808,31800 +45809,45948 +45810,55663 +45811,49738 +45812,51280 +45813,31603 +45814,58545 +45815,58546 +45816,58547 +45817,58523 +45819,48508 +45820,48512 +45821,48507 +45822,48510 +45823,6543 +45824,58746 +45825,58770 +45826,58756 +45827,58743 +45828,58773 +45829,58747 +45830,58745 +45831,58769 +45832,59722 +45833,58748 +45834,58750 +45835,58749 +45836,58760 +45837,58758 +45838,58761 +45839,58762 +45840,61878 +45841,58767 +45842,58774 +45843,58766 +45844,58764 +45845,58765 +45846,58763 +45847,58772 +45848,58768 +45849,55956 +45850,55265 +45851,55265 +45852,55265 +45853,55265 +45854,55265 +45855,58549 +45856,58575 +45857,44303 +45858,20619 +45859,31616 +45860,58587 +45861,58588 +45862,58601 +45863,58589 +45864,59758 +45865,59020 +45866,48007 +45867,59765 +45868,59364 +45869,59091 +45870,58900 +45871,59327 +45872,58739 +45873,59040 +45874,31616 +45875,39463 +45876,58736 +45877,59287 +45878,39463 +45879,58601 +45880,56636 +45881,56636 +45882,58714 +45883,58601 +45884,53115 +45886,58919 +45887,61838 +45888,59170 +45889,39505 +45890,39505 +45891,39505 +45892,59367 +45893,59092 +45894,59012 +45895,59772 +45896,57996 +45897,58602 +45899,58617 +45900,61972 +45901,44291 +45902,58620 +45903,58621 +45904,58622 +45905,24704 +45907,9134 +45908,58836 +45909,19284 +45910,58520 +45912,1103 +45913,50138 +45914,58518 +45915,58507 +45916,58514 +45917,58509 +45918,58505 +45919,58498 +45920,58512 +45921,58506 +45922,58510 +45923,40609 +45924,16065 +45925,58521 +45926,58676 +45927,59719 +45928,59751 +45929,59325 +45930,59371 +45931,48009 +45932,53565 +45933,59307 +45934,58928 +45935,59676 +45936,59752 +45937,56176 +45938,58934 +45939,55932 +45940,59119 +45941,59774 +45942,58737 +45943,61842 +45945,59308 +45946,39127 +45947,58938 +45948,55925 +45949,58962 +45950,57463 +45951,58963 +45952,56259 +45953,56252 +45954,56252 +45955,56252 +45956,56252 +45957,56204 +45958,56226 +45959,58958 +45960,58966 +45961,56204 +45962,56226 +45963,56256 +45964,58958 +45965,58966 +45966,56204 +45967,56226 +45968,58951 +45969,56257 +45970,56220 +45971,58960 +45972,58906 +45973,56737 +45974,59760 +45975,59749 +45976,59033 +45977,40714 +45978,58679 +45979,58680 +45980,58681 +45981,58682 +45982,59163 +45983,58701 +45984,58710 +45985,58713 +45986,54724 +45987,58714 +45988,59218 +45989,59779 +45990,58735 +45991,58715 +45992,58716 +45993,59279 +45994,31664 +45995,35359 +45996,58914 +45997,58235 +45998,37617 +45999,30634 +46000,20977 +46001,35842 +46002,33297 +46003,35844 +46004,55318 +46005,55318 +46006,58725 +46007,2591 +46008,34034 +46009,59756 +46010,34336 +46011,59375 +46012,59725 +46013,59031 +46014,59026 +46015,31899 +46016,58945 +46017,61655 +46018,58879 +46019,59777 +46020,58733 +46021,59316 +46022,34274 +46023,21431 +46024,59372 +46025,58917 +46026,811 +46027,56793 +46028,59750 +46029,41434 +46030,59036 +46031,58877 +46032,58999 +46033,58926 +46034,59720 +46035,61656 +46036,58944 +46037,59143 +46038,59323 +46039,59233 +46040,48507 +46041,59140 +46042,59000 +46043,59526 +46044,59771 +46045,59018 +46046,44357 +46047,48508 +46048,44358 +46049,59762 +46050,59724 +46051,59328 +46052,58742 +46053,58742 +46054,1134 +46055,1246 +46057,58776 +46058,58775 +46059,58777 +46060,58778 +46061,58778 +46062,58779 +46063,59684 +46064,59684 +46065,52361 +46066,58783 +46067,58911 +46068,59717 +46069,58809 +46070,58873 +46071,60347 +46072,60346 +46073,60345 +46074,60345 +46075,60344 +46076,58814 +46077,58814 +46078,58815 +46079,58816 +46080,58817 +46081,58820 +46082,58819 +46083,58822 +46084,58823 +46085,58821 +46086,58824 +46087,58824 +46088,58824 +46089,58873 +46090,58809 +46092,58869 +46093,58870 +46095,59114 +46096,28831 +46097,58740 +46098,811 +46099,16208 +46100,29448 +46101,17786 +46102,17494 +46103,59429 +46104,59430 +46105,52955 +46106,59115 +46107,59115 +46108,1103 +46109,59435 +46110,20503 +46111,58246 +46112,59329 +46113,58748 +46114,55297 +46115,59332 +46116,58969 +46117,59334 +46118,58246 +46119,59335 +46120,59332 +46121,60033 +46122,59336 +46123,59057 +46124,59340 +46125,59341 +46126,59342 +46127,59344 +46129,61892 +46130,62580 +46131,58258 +46132,61878 +46133,61894 +46134,61895 +46135,61912 +46136,61913 +46137,61917 +46138,34954 +46139,61918 +46140,61919 +46141,59058 +46142,61840 +46143,59659 +46144,59404 +46145,59407 +46146,59047 +46148,59417 +46149,59419 +46150,59420 +46151,59675 +46152,59608 +46153,59606 +46154,59602 +46155,59427 +46156,59603 +46157,59436 +46158,59437 +46159,59438 +46160,59439 +46161,59441 +46162,59047 +46163,61891 +46164,59446 +46165,59447 +46166,59675 +46167,59448 +46168,59451 +46169,59449 +46170,59450 +46171,59504 +46172,59480 +46173,59602 +46174,59458 +46175,59603 +46176,59605 +46177,59607 +46178,59602 +46179,59458 +46180,59603 +46181,59604 +46182,59609 +46183,59477 +46184,59572 +46185,59479 +46186,59438 +46187,59436 +46188,61891 +46189,59477 +46190,59447 +46191,59572 +46192,59479 +46193,59451 +46194,59438 +46195,59450 +46196,59436 +46197,59480 +46198,59486 +46199,59481 +46200,59483 +46201,59644 +46202,59484 +46203,59487 +46204,59489 +46205,59486 +46206,59486 +46207,59481 +46208,59491 +46209,59644 +46210,58339 +46211,59489 +46212,59643 +46213,58264 +46214,58264 +46215,58269 +46216,58270 +46217,58265 +46218,58274 +46219,58275 +46220,58269 +46221,58269 +46222,58277 +46223,58277 +46224,59454 +46225,58278 +46226,58272 +46227,58268 +46228,59051 +46229,58280 +46230,58280 +46231,58284 +46232,58229 +46233,58229 +46234,58231 +46235,58247 +46236,58230 +46237,58231 +46238,58330 +46239,58329 +46240,58233 +46241,58249 +46242,58302 +46243,59396 +46244,58327 +46245,58328 +46246,58307 +46247,58331 +46248,58331 +46249,58258 +46250,58259 +46251,59431 +46252,58262 +46253,58261 +46254,58332 +46255,58283 +46256,58332 +46257,58333 +46258,58333 +46259,58283 +46260,58250 +46261,58239 +46262,58251 +46263,58242 +46264,58335 +46265,58334 +46266,58243 +46267,59055 +46268,58337 +46269,58243 +46270,58243 +46271,58335 +46272,58337 +46273,58338 +46274,58255 +46275,58256 +46276,58257 +46277,58253 +46278,58308 +46279,58308 +46280,58313 +46281,59677 +46282,59677 +46283,58309 +46284,58311 +46285,58314 +46286,58312 +46287,58315 +46288,58287 +46289,58288 +46290,58322 +46291,58290 +46292,58291 +46293,59488 +46294,58299 +46295,58293 +46296,58298 +46297,58293 +46298,59485 +46299,58294 +46300,58294 +46301,58339 +46302,58339 +46303,58301 +46304,58296 +46305,58296 +46306,59485 +46307,58639 +46308,17786 +46309,58239 +46312,34132 +46313,59573 +46319,18102 +46320,59001 +46321,59034 +46322,45362 +46323,24646 +46324,39121 +46326,59528 +46327,59529 +46328,59530 +46329,59531 +46330,59532 +46331,59533 +46332,59534 +46333,59535 +46334,59537 +46335,59539 +46336,56991 +46339,58899 +46340,59306 +46341,26233 +46342,59552 +46343,31907 +46344,59031 +46345,59747 +46346,59650 +46347,59553 +46348,56793 +46349,59630 +46350,58928 +46351,58908 +46358,59577 +46359,59578 +46360,59579 +46361,23717 +46362,59587 +46364,59588 +46367,59598 +46368,45923 +46369,59600 +46371,59619 +46372,58828 +46373,39162 +46374,39162 +46375,39162 +46376,54995 +46377,54994 +46378,57030 +46379,57028 +46380,22193 +46381,37681 +46382,18053 +46393,33257 +46394,33258 +46395,6682 +46396,30959 +46397,30959 +46398,20629 +46399,18102 +46400,18102 +46401,18102 +46402,18102 +46403,18102 +46544,59827 +46545,59828 +46547,34365 +46689,59838 +46690,60079 +46691,60078 +46693,59853 +46707,44587 +46708,59504 +46709,35133 +46710,811 +46711,7301 +46712,59878 +46717,59878 +46718,59878 +46723,59905 +46725,60707 +46733,59919 +46735,59921 +46736,59923 +46737,59924 +46738,59925 +46740,29902 +46743,58403 +46744,58401 +46745,58400 +46746,58407 +46747,58399 +46748,58398 +46749,58404 +46750,58402 +46751,58406 +46752,25132 +46755,58402 +46756,58400 +46757,58404 +46758,25132 +46759,58401 +46760,58403 +46761,58406 +46762,58398 +46763,58399 +46764,58407 +46765,55112 +46766,55101 +46767,51620 +46775,59954 +46778,18051 +46779,60005 +46780,60006 +46783,59969 +46784,3225 +46793,50879 +46796,3225 +46797,6624 +46799,4112 +46800,59999 +46802,18051 +46803,9135 +46804,9135 +46805,9135 +46806,9135 +46807,9135 +46809,1588 +46810,1588 +46812,58497 +46813,47934 +46814,44756 +46815,25132 +46816,58406 +46817,61333 +46818,61334 +46820,60025 +46821,60025 +46824,60042 +46830,60051 +46831,55089 +46837,60071 +46839,31479 +46840,31479 +46841,7481 +46842,44357 +46843,60075 +46844,39162 +46845,8625 +46846,8625 +46847,7624 +46849,35023 +46852,8928 +46854,60089 +46859,60111 +46860,60348 +46861,60349 +46862,58797 +46863,58798 +46864,58799 +46865,58800 +46866,58796 +46870,36578 +46873,54171 +46874,60400 +46875,1102 +46876,1102 +46877,1102 +46878,1102 +46879,1102 +46880,1102 +46881,1102 +46882,1102 +46883,1102 +46884,1102 +46885,3673 +46886,60170 +46887,60172 +46888,60173 +46889,60175 +46890,25593 +46891,60207 +46892,25593 +46893,60208 +46894,1262 +46895,34378 +46897,6270 +46898,6270 +46899,6270 +46900,6270 +46901,6270 +46902,6270 +46903,6270 +46904,6270 +46905,6270 +46906,6270 +46907,6270 +46908,6270 +46909,6270 +46910,6270 +46911,6270 +46912,6270 +46913,6270 +46914,6270 +46915,6270 +46916,6270 +46917,6270 +46918,6270 +46919,6270 +46920,6270 +46921,6270 +46922,6270 +46923,6270 +46924,6270 +46925,6270 +46926,6270 +46927,6270 +46928,6270 +46929,6270 +46930,6270 +46931,6270 +46932,6270 +46933,6270 +46934,6270 +46935,6270 +46936,6270 +46937,6270 +46938,6270 +46939,6270 +46940,6270 +46941,6270 +46942,6270 +46943,6270 +46944,6270 +46945,6270 +46946,6270 +46947,6270 +46948,6270 +46949,6270 +46950,6270 +46951,6270 +46952,6270 +46953,6270 +46954,53326 +46955,30593 +46956,6270 +46957,60253 +46958,60576 +46959,53042 +46960,61825 +46961,62005 +46962,61000 +46963,61780 +46964,61780 +46965,61825 +46966,53042 +46967,62005 +46968,61000 +46969,60610 +46970,61403 +46971,61403 +46972,61233 +46973,61233 +46974,61927 +46975,61927 +46976,61401 +46977,61401 +46978,34958 +46979,60577 +46980,60577 +46981,31754 +46982,60254 +46983,60261 +46984,60264 +46985,61365 +46986,61365 +46987,60258 +46988,61707 +46989,61707 +46990,61939 +46991,61939 +46992,61722 +46993,61722 +46994,60579 +46995,60664 +46996,60578 +46997,61372 +46998,60259 +46999,61342 +47000,61930 +47001,60649 +47002,61342 +47003,61372 +47004,61930 +47005,60262 +47006,60271 +47007,6270 +47008,6270 +47009,60274 +47010,6270 +47011,6270 +47012,6270 +47013,60281 +47014,60282 +47015,6270 +47016,6270 +47017,6270 +47018,6270 +47019,6270 +47020,6270 +47021,6270 +47022,6270 +47023,6270 +47024,55906 +47025,58880 +47026,58746 +47027,59219 +47028,59746 +47029,7111 +47030,39014 +47031,60283 +47032,60284 +47033,60291 +47034,60286 +47035,35920 +47036,60296 +47037,39119 +47041,59319 +47042,26064 +47043,39210 +47048,58170 +47051,61170 +47052,62025 +47053,61788 +47054,39126 +47055,61650 +47056,62050 +47057,62024 +47059,59319 +47060,39210 +47061,62025 +47062,61170 +47063,26064 +47064,61788 +47065,39123 +47066,61650 +47067,62024 +47068,62050 +47069,60580 +47070,39127 +47071,61706 +47072,61368 +47073,62051 +47074,62051 +47075,39127 +47076,61368 +47077,61706 +47078,60650 +47079,61781 +47080,61410 +47081,61234 +47082,61347 +47083,61988 +47084,61234 +47085,61781 +47086,61347 +47087,61988 +47088,61410 +47089,61405 +47090,61961 +47092,61235 +47093,62004 +47094,61713 +47095,61405 +47096,61713 +47097,61235 +47098,62004 +47099,61961 +47100,17606 +47101,17786 +47102,60350 +47103,60352 +47104,60610 +47105,39209 +47106,61941 +47107,61652 +47108,62000 +47109,61941 +47110,39209 +47111,62000 +47112,61652 +47113,60610 +47114,60582 +47115,61413 +47116,48509 +47117,23248 +47118,23904 +47119,15809 +47120,34109 +47121,62026 +47122,30926 +47123,45947 +47124,24784 +47125,30925 +47126,61721 +47127,29964 +47128,25700 +47129,61721 +47130,60653 +47131,61413 +47132,62026 +47133,48509 +47134,28179 +47135,6337 +47136,29798 +47137,25648 +47138,61377 +47139,39162 +47140,61639 +47141,61236 +47142,61849 +47143,61236 +47144,39162 +47145,61639 +47146,61377 +47147,61849 +47148,60613 +47149,39123 +47150,62290 +47151,61653 +47152,61962 +47153,61962 +47154,62290 +47155,61653 +47156,60578 +47157,39123 +47158,59148 +47159,59696 +47160,59741 +47161,55906 +47162,35313 +47170,60526 +47171,60525 +47172,55312 +47173,60523 +47174,60457 +47175,60524 +47176,60528 +47177,60530 +47178,60531 +47179,60401 +47180,60687 +47181,60527 +47182,59316 +47183,33732 +47184,62162 +47185,60529 +47186,61926 +47187,61185 +47188,59316 +47189,61185 +47190,61926 +47191,62162 +47192,33732 +47193,61659 +47194,61237 +47195,61341 +47196,60403 +47197,60532 +47199,60638 +47200,39125 +47201,60639 +47202,55856 +47203,61238 +47204,59179 +47205,61237 +47206,61660 +47207,61341 +47208,61238 +47209,59179 +47210,60465 +47211,60537 +47212,60539 +47213,48010 +47214,61414 +47215,59322 +47216,61415 +47217,60536 +47218,60540 +47219,39212 +47220,60478 +47221,60545 +47222,49005 +47223,50376 +47224,50376 +47225,15040 +47226,60518 +47227,60544 +47228,60546 +47229,60641 +47230,60549 +47231,60640 +47232,31131 +47233,60657 +47234,62059 +47235,61243 +47236,61243 +47237,39126 +47238,15040 +47239,60657 +47240,62059 +47241,62232 +47242,60746 +47243,39129 +47244,60551 +47245,60505 +47246,6270 +47247,6270 +47248,60642 +47249,60550 +47250,60488 +47251,61219 +47252,53042 +47253,62143 +47254,61525 +47255,60591 +47256,61402 +47257,61404 +47258,59003 +47259,61250 +47260,61785 +47261,60592 +47262,61249 +47263,61540 +47264,62082 +47265,61254 +47266,60659 +47267,60595 +47268,62138 +47269,61545 +47270,61208 +47271,59319 +47272,39210 +47273,62127 +47274,62074 +47275,43290 +47276,61790 +47277,61182 +47278,50376 +47279,62119 +47280,61113 +47281,61253 +47282,39127 +47283,62137 +47284,61173 +47285,60596 +47286,61872 +47287,62299 +47288,61485 +47289,62102 +47290,61410 +47291,61406 +47292,61720 +47293,62109 +47294,61550 +47295,61114 +47296,61104 +47297,39209 +47298,61550 +47299,61181 +47300,60660 +47301,61866 +47302,60598 +47303,61413 +47304,62122 +47305,48509 +47306,61827 +47307,39162 +47308,62081 +47309,61791 +47310,61499 +47311,61103 +47312,62140 +47313,61175 +47314,60603 +47315,39123 +47316,59316 +47317,62076 +47318,61252 +47319,62101 +47320,26141 +47321,62110 +47322,60685 +47323,62136 +47324,61814 +47325,62104 +47326,62069 +47327,39126 +47328,15163 +47329,60602 +47330,62113 +47331,58748 +47332,58913 +47333,59028 +47334,39123 +47335,59734 +47336,59181 +47337,59004 +47338,59194 +47339,59368 +47340,59727 +47341,58998 +47342,59185 +47343,59127 +47344,59732 +47345,59249 +47346,35313 +47347,55906 +47348,59741 +47349,59696 +47350,59148 +47351,59207 +47352,59661 +47353,59112 +47354,59307 +47355,59728 +47356,48510 +47357,59697 +47358,59322 +47359,58927 +47360,59508 +47361,59371 +47362,59114 +47363,59713 +47364,39209 +47365,59248 +47366,59166 +47367,59205 +47368,59024 +47369,59129 +47370,58997 +47371,59320 +47372,59257 +47373,59705 +47374,61786 +47375,59726 +47376,58876 +47377,59738 +47378,58770 +47379,33808 +47380,59236 +47381,59159 +47382,59201 +47383,39123 +47384,59100 +47385,61790 +47386,35430 +47387,59010 +47388,59714 +47389,9858 +47390,59319 +47391,59746 +47392,59219 +47393,58746 +47394,58880 +47395,34869 +47396,55906 +47397,59153 +47398,59021 +47399,59204 +47400,59094 +47401,58888 +47402,59290 +47403,58763 +47404,59003 +47405,51374 +47406,59028 +47407,59371 +47408,59716 +47409,59698 +47410,53042 +47411,61858 +47412,61219 +47413,53042 +47414,62143 +47415,61525 +47416,60591 +47417,61402 +47418,61404 +47419,59003 +47420,61250 +47421,61785 +47422,60592 +47423,61249 +47424,61551 +47425,62082 +47426,61112 +47427,60659 +47428,60595 +47429,62138 +47430,61545 +47431,61208 +47432,59319 +47433,39210 +47434,62127 +47435,62074 +47436,43290 +47437,61790 +47438,61182 +47439,50376 +47440,62119 +47441,61113 +47442,61253 +47443,39127 +47444,62137 +47445,61173 +47446,60596 +47447,61872 +47448,62299 +47449,61485 +47450,62102 +47451,61410 +47452,61406 +47453,61720 +47454,62109 +47455,61550 +47456,61114 +47457,61104 +47458,39209 +47459,61550 +47460,61181 +47461,60660 +47462,61866 +47463,60598 +47464,61413 +47465,62122 +47466,48509 +47467,61827 +47468,39162 +47469,62081 +47470,61791 +47471,61499 +47472,61103 +47473,62140 +47474,61175 +47475,60603 +47476,39123 +47477,59316 +47478,62076 +47479,61205 +47480,62101 +47481,26141 +47482,62110 +47483,61657 +47484,62136 +47485,59004 +47486,62104 +47487,62069 +47488,39123 +47489,39126 +47490,15163 +47491,60602 +47492,62113 +47493,60562 +47494,39162 +47495,60555 +47496,60557 +47497,60556 +47498,60554 +47499,57028 +47500,60564 +47501,61408 +47502,60502 +47503,60560 +47504,60643 +47505,60430 +47506,60617 +47507,15274 +47508,60561 +47509,61663 +47510,60644 +47511,63410 +47512,33534 +47513,60674 +47514,60508 +47515,60665 +47516,60670 +47517,60666 +47518,60671 +47519,60652 +47520,60669 +47521,60667 +47522,40365 +47523,60623 +47524,60611 +47525,60672 +47526,61679 +47527,60570 +47528,60673 +47529,60510 +47541,60689 +47542,59202 +47543,59202 +47544,59202 +47545,61260 +47546,61400 +47547,61260 +47548,61400 +47549,61260 +47550,61400 +47551,61400 +47552,61260 +47553,61260 +47554,61400 +47555,59028 +47556,60436 +47557,41438 +47558,41438 +47559,41438 +47560,60568 +47561,60569 +47562,39211 +47563,60646 +47564,60520 +47565,60575 +47566,40038 +47567,60574 +47568,60647 +47569,60572 +47570,61897 +47571,62141 +47572,62003 +47573,62142 +47574,62002 +47575,61550 +47576,62051 +47577,61253 +47578,35431 +47579,62050 +47580,61113 +47581,61653 +47582,61175 +47583,61650 +47584,61182 +47585,61241 +47586,61827 +47587,61238 +47588,61814 +47589,62047 +47590,61485 +47591,61347 +47592,62052 +47593,61849 +47594,61499 +47595,61825 +47596,61219 +47597,59179 +47598,62104 +47599,61930 +47600,61208 +47601,61720 +47602,61713 +47603,61717 +47604,61866 +47605,61722 +47606,62082 +47607,34274 +47608,61706 +47609,62065 +47610,62051 +47611,62001 +47612,60605 +47613,61932 +47614,62006 +47615,62008 +47616,61938 +47617,61682 +47618,39123 +47619,59307 +47620,61170 +47621,61939 +47622,1096 +47623,1096 +47624,1096 +47625,1096 +47626,1096 +47627,1096 +47628,1096 +47629,1096 +47630,1096 +47631,1096 +47632,1096 +47633,1096 +47634,1096 +47635,1096 +47636,1096 +47637,1096 +47638,1096 +47639,1096 +47640,1096 +47641,1096 +47642,1096 +47643,1096 +47644,1096 +47645,1096 +47646,1096 +47647,1096 +47648,1096 +47649,1096 +47650,1096 +47651,1096 +47652,1096 +47653,1096 +47654,1096 +47655,1096 +47656,1096 +47657,1096 +47658,60586 +47659,60590 +47660,60588 +47661,34960 +47662,34961 +47663,61241 +47664,34960 +47665,25246 +47666,54871 +47667,62300 +47668,54700 +47669,61639 +47670,34954 +47671,34954 +47672,51913 +47673,51913 +47674,62039 +47675,62115 +47676,60610 +47677,62027 +47678,62117 +47679,48510 +47680,61999 +47681,62035 +47682,62116 +47683,61941 +47684,62098 +47685,61984 +47686,61985 +47687,62053 +47688,61210 +47689,62160 +47690,62159 +47691,61198 +47692,62073 +47693,61162 +47694,61188 +47695,62071 +47696,61731 +47697,62010 +47698,62011 +47699,62134 +47700,39128 +47701,62133 +47702,62014 +47703,39120 +47704,61995 +47705,62107 +47706,61226 +47707,61938 +47708,61933 +47709,61213 +47710,61201 +47711,61297 +47712,61932 +47713,61190 +47714,62092 +47715,61172 +47716,62087 +47717,62035 +47718,61984 +47719,61903 +47720,62009 +47721,61561 +47724,60658 +47725,61409 +47726,45854 +47727,7244 +47728,48009 +47729,44841 +47730,33808 +47731,35313 +47732,43095 +47733,39123 +47734,59322 +47735,59320 +47736,60609 +47737,60608 +47738,61372 +47739,61930 +47740,60607 +47741,60579 +47742,60705 +47743,60611 +47744,62093 +47745,61243 +47746,62159 +47747,59307 +47748,61162 +47749,61721 +47750,61189 +47751,61190 +47752,61163 +47753,61163 +47754,61162 +47755,61189 +47756,61721 +47757,61190 +47758,61190 +47759,61721 +47760,61189 +47761,61162 +47762,61163 +47763,62066 +47764,62070 +47765,62075 +47766,62080 +47767,62090 +47768,62090 +47769,62080 +47770,62075 +47771,62070 +47772,62066 +47773,62066 +47774,62070 +47775,62075 +47776,62080 +47777,62090 +47778,61184 +47779,61717 +47780,61185 +47781,61187 +47782,61183 +47783,61183 +47784,61184 +47785,61185 +47786,61717 +47787,61187 +47788,61183 +47789,61184 +47790,61185 +47791,61717 +47792,61187 +47793,62092 +47794,62083 +47795,62076 +47796,62073 +47797,62068 +47798,62092 +47799,62083 +47800,62076 +47801,62073 +47802,62068 +47803,62068 +47804,62073 +47805,62076 +47806,62083 +47807,62092 +47808,60613 +47809,61659 +47810,60617 +47811,62045 +47812,61777 +47813,61985 +47814,61692 +47815,60611 +47816,60675 +47828,60494 +47829,61995 +47830,62021 +47832,61933 +47834,60619 +47835,61776 +47836,62023 +47837,61233 +47838,61721 +47840,59504 +47842,40557 +47844,60542 +47846,60543 +47849,34274 +47850,61253 +47851,61486 +47852,61535 +47853,62079 +47854,35431 +47855,61861 +47856,61271 +47857,61201 +47858,62136 +47859,62137 +47860,61226 +47861,61827 +47862,39123 +47863,61179 +47864,59307 +47865,62074 +47866,61254 +47867,61104 +47868,39120 +47869,61541 +47870,62138 +47871,60621 +47872,48510 +47873,62108 +47874,60592 +47875,62098 +47876,62115 +47877,62129 +47878,61209 +47879,45854 +47880,48009 +47881,61409 +47882,7244 +47883,60623 +47884,60682 +47885,61551 +47886,60625 +47887,61208 +47888,39128 +47889,61865 +47890,59307 +47891,61198 +47892,60626 +47893,62095 +47894,61658 +47895,62145 +47896,61499 +47897,62053 +47898,60603 +47899,60628 +47900,60672 +47901,62106 +47902,62118 +47903,60684 +47904,61213 +47905,60673 +47906,62080 +47907,60686 +47908,62119 +47909,61806 +47910,61783 +47911,60633 +47913,60704 +47914,61188 +47915,34274 +47916,62051 +47917,62065 +47918,62001 +47919,61706 +47920,35431 +47921,61682 +47922,60605 +47923,61932 +47924,62008 +47925,62007 +47926,61938 +47927,61241 +47928,39123 +47929,61639 +47930,59307 +47931,61170 +47932,61939 +47933,61941 +47934,39120 +47935,61999 +47936,61722 +47937,61354 +47938,60610 +47939,48510 +47940,61561 +47941,60658 +47942,61984 +47943,62035 +47944,62009 +47945,61903 +47946,45854 +47947,48009 +47948,61409 +47949,7244 +47950,60607 +47951,60608 +47952,61372 +47953,60609 +47954,61930 +47955,39128 +47956,61243 +47957,59307 +47958,60705 +47959,62159 +47960,60611 +47961,62093 +47962,61659 +47963,61777 +47964,62045 +47965,61985 +47966,60613 +47967,60617 +47968,60611 +47969,61995 +47970,62021 +47971,61692 +47972,61933 +47973,60675 +47974,61721 +47975,60579 +47976,62023 +47977,61233 +47978,61776 +47979,60619 +47980,61170 +47981,61172 +47982,61168 +47983,61168 +47984,61188 +47985,61170 +47986,61722 +47987,61172 +47988,34274 +47989,61253 +47990,61486 +47991,61535 +47992,62079 +47993,35431 +47994,61861 +47995,61271 +47996,61201 +47997,62136 +47998,62137 +47999,61226 +48000,61827 +48001,39123 +48002,61179 +48003,59307 +48004,62074 +48005,61254 +48006,61104 +48007,39120 +48008,61541 +48009,62138 +48010,60621 +48011,48510 +48012,62108 +48013,60592 +48014,62098 +48015,62115 +48016,62129 +48017,61209 +48018,45854 +48019,48009 +48020,61409 +48021,7244 +48022,60623 +48023,60682 +48024,61551 +48025,60625 +48026,61208 +48027,39128 +48028,61865 +48029,61172 +48030,59307 +48031,61722 +48032,60704 +48033,61170 +48034,61198 +48035,61188 +48036,60626 +48037,61168 +48038,62095 +48039,61658 +48040,62145 +48041,61499 +48042,62053 +48043,60603 +48044,60628 +48045,60672 +48046,62106 +48047,62118 +48048,60684 +48049,61213 +48050,60673 +48051,62080 +48052,60686 +48053,62119 +48054,61806 +48055,61783 +48056,60663 +48057,62067 +48058,62071 +48059,62074 +48060,62082 +48061,62087 +48062,62087 +48063,62082 +48064,62074 +48065,62071 +48066,62067 +48067,62067 +48068,62071 +48069,62074 +48070,62082 +48071,62087 +48072,61168 +48073,61188 +48074,61170 +48075,61722 +48076,61172 +48077,61168 +48078,61188 +48079,61170 +48080,61722 +48081,61172 +48082,61172 +48083,61722 +48084,61170 +48085,61188 +48086,61168 +48087,62067 +48088,62071 +48089,62074 +48090,62082 +48091,62087 +48092,62087 +48093,62082 +48094,62074 +48095,62071 +48096,62067 +48097,62067 +48098,62071 +48099,62074 +48100,62082 +48101,62087 +48102,62159 +48112,30111 +48114,30111 +48116,60636 +48118,60636 +48120,60636 +48122,60636 +48124,30111 +48126,30111 +48129,61713 +48130,61926 +48131,61932 +48132,61902 +48133,61902 +48134,62159 +48135,61926 +48136,61713 +48137,61932 +48138,61932 +48139,61713 +48140,61926 +48141,62159 +48142,61902 +48143,61197 +48144,61198 +48145,61205 +48146,61720 +48147,61201 +48148,61201 +48149,61720 +48150,61205 +48151,61198 +48152,61197 +48153,61197 +48154,61198 +48155,61205 +48156,61720 +48157,61201 +48158,62159 +48159,61713 +48160,61926 +48161,61932 +48162,61902 +48163,61902 +48164,62159 +48165,61926 +48166,61713 +48167,61932 +48168,61932 +48169,61713 +48170,61926 +48171,62159 +48172,61902 +48173,61197 +48174,61198 +48175,61205 +48176,61720 +48177,61201 +48178,61201 +48179,61720 +48180,61205 +48181,61198 +48182,61197 +48183,61197 +48184,61198 +48185,61205 +48186,61720 +48187,61201 +48188,61203 +48189,61720 +48190,61204 +48191,61201 +48192,61202 +48193,61202 +48194,61203 +48195,61204 +48196,61720 +48197,61201 +48198,61201 +48199,61720 +48200,61204 +48201,61203 +48202,61202 +48203,61902 +48204,62159 +48205,61926 +48206,61713 +48207,61932 +48208,61932 +48209,61713 +48210,61926 +48211,62159 +48212,61902 +48213,61902 +48214,62159 +48215,61926 +48216,61713 +48217,61932 +48218,62160 +48219,61930 +48220,61927 +48221,61933 +48222,61903 +48223,61930 +48224,61903 +48225,62160 +48226,61927 +48227,61933 +48228,61933 +48229,61927 +48230,62160 +48231,61903 +48232,61930 +48233,61208 +48234,61209 +48235,61210 +48236,61250 +48237,61213 +48238,61213 +48239,61250 +48240,61210 +48241,61209 +48242,61208 +48243,61208 +48244,61209 +48245,61210 +48246,61250 +48247,61213 +48250,61984 +48251,61825 +48252,62162 +48253,61995 +48254,62094 +48255,61825 +48256,62094 +48257,61984 +48258,62162 +48259,61995 +48260,61995 +48261,62162 +48262,61984 +48263,62094 +48264,61828 +48265,61219 +48266,62096 +48267,62098 +48268,62101 +48269,62107 +48270,62107 +48271,62101 +48272,62098 +48273,62096 +48274,61219 +48275,61096 +48276,62096 +48277,62098 +48278,62101 +48279,62107 +48280,61985 +48281,59179 +48282,61988 +48283,61938 +48284,62093 +48285,59179 +48286,62093 +48287,61985 +48288,61988 +48289,61938 +48290,61938 +48291,61988 +48292,61985 +48293,62093 +48294,59179 +48295,62104 +48296,62095 +48297,62053 +48298,62102 +48299,61226 +48300,62104 +48301,62095 +48302,62053 +48303,62102 +48304,61226 +48305,62104 +48306,62095 +48307,62053 +48308,62102 +48309,61226 +48310,59181 +48311,59181 +48312,62093 +48313,61985 +48314,61988 +48315,61938 +48316,59179 +48317,62093 +48318,61985 +48319,61988 +48320,61938 +48321,61938 +48322,61988 +48323,61985 +48324,62093 +48325,59179 +48326,62104 +48327,62095 +48328,62053 +48329,62102 +48330,61226 +48331,61226 +48332,62102 +48333,62053 +48334,62095 +48335,62104 +48336,62104 +48337,62095 +48338,62053 +48339,62102 +48340,61226 +48341,59179 +48342,62093 +48343,61985 +48344,61988 +48345,61938 +48346,59179 +48347,62093 +48348,61985 +48349,61988 +48350,61938 +48351,61938 +48352,61988 +48353,61985 +48354,62093 +48355,59179 +48356,62105 +48357,62097 +48358,62100 +48359,62103 +48360,61226 +48361,61226 +48362,62103 +48363,62100 +48364,62097 +48365,62105 +48366,62104 +48367,62097 +48368,62100 +48369,62103 +48370,61226 +48371,62039 +48372,62048 +48373,62019 +48374,62010 +48375,62064 +48376,62048 +48377,62064 +48378,62039 +48379,62019 +48380,62010 +48381,62010 +48382,62019 +48383,62039 +48384,62064 +48385,62048 +48386,61525 +48387,62113 +48388,62117 +48389,62118 +48390,62135 +48391,61525 +48392,62113 +48393,62117 +48394,62118 +48395,62135 +48396,61525 +48397,62113 +48398,62117 +48399,62118 +48400,62135 +48402,60850 +48404,60808 +48406,60810 +48408,60834 +48410,60812 +48412,60804 +48414,60812 +48416,59906 +48418,60706 +48420,60841 +48422,60842 +48424,60847 +48426,60814 +48428,60815 +48429,62039 +48430,62039 +48432,60830 +48433,62039 +48435,60838 +48436,62048 +48438,60832 +48440,60825 +48442,60817 +48444,60829 +48445,62020 +48446,62020 +48447,62020 +48448,62009 +48449,62064 +48450,62048 +48451,62048 +48452,62064 +48453,62064 +48454,62009 +48455,62009 +48456,61525 +48457,62114 +48458,62117 +48459,62127 +48460,62129 +48461,61525 +48462,62114 +48463,62117 +48464,62127 +48465,62129 +48466,61525 +48467,62114 +48468,62117 +48469,62127 +48470,62129 +48472,62032 +48474,61347 +48476,61853 +48478,62012 +48480,62059 +48481,61347 +48482,62059 +48483,62032 +48484,61853 +48485,62012 +48486,62012 +48487,61853 +48488,62032 +48489,62059 +48490,61347 +48491,61485 +48492,61486 +48493,62115 +48494,62122 +48495,62130 +48496,62130 +48497,62122 +48498,62115 +48499,61486 +48500,61485 +48501,61485 +48502,61486 +48503,62115 +48504,62122 +48505,62130 +48507,60811 +48509,60817 +48511,60852 +48513,60832 +48515,60821 +48517,60826 +48519,60845 +48521,60812 +48523,60822 +48527,33967 +48529,62032 +48531,61347 +48533,61854 +48535,62011 +48537,62059 +48538,61347 +48539,62059 +48540,62032 +48541,61854 +48542,62011 +48543,62011 +48544,61854 +48545,62032 +48546,62059 +48547,61347 +48548,61485 +48549,61487 +48550,62115 +48551,62123 +48552,62131 +48553,62131 +48554,62123 +48555,62115 +48556,61487 +48557,61485 +48558,61485 +48559,61487 +48560,62115 +48561,62123 +48562,62131 +48564,62035 +48566,61849 +48568,61856 +48572,62014 +48574,62062 +48575,61849 +48576,62062 +48577,62035 +48578,61856 +48579,62014 +48580,62014 +48581,61856 +48582,62035 +48583,62062 +48584,61849 +48585,62133 +48586,62119 +48587,62116 +48588,62112 +48589,61499 +48590,62133 +48591,62119 +48592,62116 +48593,62112 +48594,61499 +48595,62133 +48596,62119 +48597,62116 +48598,62112 +48599,61499 +48601,1816 +48602,61849 +48603,62062 +48604,62035 +48605,61846 +48606,62015 +48607,61849 +48608,62062 +48609,62035 +48610,61846 +48611,62015 +48612,62015 +48613,61846 +48614,62035 +48615,62062 +48616,61849 +48617,61499 +48618,62111 +48619,62116 +48620,62124 +48621,62132 +48622,62132 +48623,62124 +48624,62116 +48625,62111 +48626,61499 +48627,62132 +48628,62124 +48629,62116 +48630,62111 +48631,61499 +48632,61849 +48633,62062 +48634,62035 +48635,61855 +48636,62013 +48637,62013 +48638,61855 +48639,62035 +48640,62062 +48641,61849 +48642,61849 +48643,62062 +48644,62035 +48645,61855 +48646,62013 +48647,62134 +48648,62126 +48649,62116 +48650,62112 +48651,61499 +48652,61499 +48653,62112 +48654,62116 +48655,62126 +48656,62134 +48657,61499 +48658,62112 +48659,62116 +48660,62126 +48661,62134 +48663,60715 +48666,61400 +48667,61400 +48668,61400 +48669,61400 +48670,61400 +48671,61260 +48672,61260 +48673,61260 +48674,61260 +48675,61260 +48677,28712 +48679,60716 +48681,60716 +48683,31416 +48685,29958 +48687,25699 +48689,28160 +48691,29792 +48693,61658 +48695,60596 +48697,62470 +48699,60673 +48701,61689 +48703,61676 +48705,61690 +48708,60666 +48709,61659 +48710,61686 +48711,61687 +48712,61678 +48713,61688 +48714,60675 +48716,28799 +48718,31265 +48720,58828 +48722,59320 +48724,59322 +48725,61163 +48726,62177 +48727,61189 +48728,61721 +48729,61190 +48730,62066 +48731,62070 +48732,62075 +48733,62182 +48734,62090 +48735,62068 +48736,62073 +48737,62076 +48738,62083 +48739,62092 +48740,61183 +48741,62178 +48742,61185 +48743,61717 +48744,61187 +48745,62176 +48746,61168 +48747,61170 +48748,61171 +48749,61172 +48750,62071 +48751,62067 +48752,62074 +48753,62082 +48754,62087 +48755,62176 +48756,61168 +48757,61172 +48758,61170 +48759,61722 +48760,62071 +48761,62067 +48762,62087 +48763,62074 +48764,62082 +48769,61197 +48770,61198 +48771,62088 +48772,61720 +48773,61201 +48774,61901 +48775,62171 +48776,61709 +48777,61713 +48778,61931 +48781,61198 +48782,61197 +48783,61201 +48784,62088 +48785,61720 +48786,62171 +48787,61901 +48788,61931 +48789,61709 +48790,61713 +48794,61202 +48795,61203 +48796,62089 +48797,61720 +48798,61201 +48799,61902 +48800,62172 +48801,61926 +48802,61713 +48803,61931 +48804,61208 +48805,61209 +48806,61210 +48807,61250 +48808,61213 +48809,61930 +48810,61903 +48811,62174 +48812,61927 +48813,62175 +48814,62096 +48815,62098 +48816,62101 +48817,62107 +48818,61096 +48819,62169 +48820,61942 +48821,62162 +48822,61995 +48823,61825 +48824,62165 +48825,61980 +48826,62164 +48827,61938 +48828,59179 +48829,62095 +48830,62053 +48831,62102 +48832,61226 +48833,62104 +48836,62165 +48837,59181 +48838,61980 +48839,62164 +48840,61938 +48841,62095 +48842,62104 +48843,62193 +48844,62103 +48845,61226 +48846,59179 +48847,61953 +48848,62166 +48849,61996 +48850,61988 +48851,62104 +48852,62190 +48853,62097 +48854,62192 +48855,62103 +48860,61525 +48861,62113 +48862,62117 +48863,62118 +48864,62135 +48865,59705 +48866,58748 +48867,62040 +48868,62019 +48869,62010 +48870,61525 +48871,62117 +48872,62114 +48873,62127 +48874,62129 +48875,62049 +48876,62038 +48877,59709 +48878,62020 +48879,62009 +48880,61485 +48881,61486 +48882,62115 +48883,62122 +48884,62130 +48885,61485 +48886,61350 +48887,62033 +48888,61853 +48889,62012 +48890,61485 +48891,62115 +48892,61487 +48893,62123 +48894,62131 +48895,59716 +48896,62031 +48897,61386 +48898,61854 +48899,62011 +48900,61849 +48901,62014 +48902,62036 +48903,61856 +48904,61394 +48905,61499 +48906,62133 +48907,62116 +48908,62119 +48909,62112 +48910,61499 +48911,62111 +48912,62116 +48913,62124 +48914,62132 +48915,61849 +48916,58748 +48917,62037 +48918,61846 +48919,62015 +48922,61499 +48923,62116 +48924,62112 +48925,62126 +48926,62134 +48927,61849 +48928,62034 +48929,59709 +48930,61855 +48931,62013 +48933,60797 +48945,19667 +48947,60827 +48949,60835 +48954,52632 +48955,52459 +48956,52632 +48957,52459 +48974,48681 +48975,48681 +48976,48682 +48977,48662 +48978,48664 +48979,48687 +48980,48673 +48981,48673 +48982,48673 +48983,60195 +48984,60860 +48985,60200 +48986,60184 +48987,60860 +48988,60877 +48989,60886 +48990,60891 +48991,60893 +48992,60898 +48993,58794 +48994,60891 +48995,60159 +48996,60898 +48997,60916 +48998,60860 +48999,39129 +49000,39129 +49016,23917 +49018,60973 +49020,60978 +49022,60979 +49024,60980 +49040,61018 +49044,25132 +49046,16208 +49050,6270 +49052,61012 +49054,61013 +49070,61020 +49072,61021 +49074,29947 +49076,43431 +49078,18047 +49080,53485 +49084,58843 +49086,58700 +49096,60687 +49098,61039 +49106,61058 +49110,54314 +49112,6270 +49116,49636 +49118,49650 +49120,23262 +49121,47325 +49122,51920 +49123,47325 +49124,47325 +49126,51920 +49128,31419 +49148,61095 +49152,61115 +49154,61117 +49156,61133 +49158,61136 +49160,61143 +49177,61330 +49179,61481 +49181,61480 +49183,61482 +49185,60836 +49187,39505 +49189,60848 +49191,60834 +49192,7695 +49193,7695 +49198,61565 +49205,1301 +49206,40660 +49209,37657 +49223,57288 +49224,61964 +49225,8623 +49227,61992 +49231,61235 +49232,62109 +49233,62109 +49234,61235 +49235,61961 +49236,61114 +49237,61114 +49238,61961 +49278,62218 +49282,40160 +49283,59462 +49284,59462 +49285,48951 +49286,48948 +49287,62280 +49288,2618 +49289,62237 +49290,18051 +49291,64907 +49292,62259 +49293,62244 +49294,1282 +49295,30271 +49296,62984 +49297,62983 +49298,62970 +49299,62985 +49301,62977 +49302,62977 +49303,52784 +49304,62971 +49305,63201 +49306,16132 +49307,29719 +49308,29717 +49309,9823 +49310,26374 +49311,62257 +49312,30764 +49313,26391 +49314,9860 +49315,62986 +49316,62980 +49317,62980 +49318,62978 +49319,62976 +49320,62987 +49321,62987 +49322,62981 +49323,62979 +49324,62979 +49325,62979 +49326,64902 +49327,64902 +49328,64902 +49329,62982 +49330,62982 +49331,62982 +49332,62974 +49333,62974 +49334,20914 +49335,62270 +49340,62281 +49341,62282 +49342,62283 +49343,63022 +49344,62286 +49345,62287 +49346,62288 +49349,62351 +49351,38720 +49352,37851 +49353,62366 +49357,62414 +49358,62413 +49362,51621 +49363,62481 +49372,8623 +49373,61964 +49374,57288 +49377,62525 +49426,64062 +49437,62972 +49463,26374 +49464,26374 +49465,62972 +49466,62974 +49467,62974 +49468,62982 +49469,62982 +49470,62982 +49471,64902 +49472,64902 +49473,64902 +49474,62979 +49475,62979 +49476,62979 +49477,62981 +49478,62987 +49479,62987 +49480,34367 +49481,62978 +49482,62980 +49483,62980 +49484,62986 +49485,9860 +49486,26391 +49487,30764 +49488,26374 +49489,9823 +49490,29717 +49491,29719 +49492,16132 +49493,63201 +49494,62971 +49495,52784 +49496,62977 +49497,62977 +49498,62985 +49499,62970 +49500,62983 +49501,62984 +49536,62650 +49623,65153 +49631,13884 +49632,62832 +49633,41050 +49634,41061 +49635,55297 +49636,62879 +49637,62880 +49638,62881 +49640,62885 +49641,34656 +49643,28496 +49644,28496 +49645,62890 +49646,62891 +49648,39940 +49653,62902 +49654,62906 +49655,13291 +49658,62910 +49659,62911 +49660,62912 +49661,16028 +49662,62935 +49663,62968 +49664,54324 +49665,62969 +49666,57463 +49667,60716 +49668,62923 +49669,62924 +49670,34674 +49675,62218 +49676,62932 +49677,62932 +49678,15027 +49680,21333 +49681,62933 +49682,59375 +49684,62934 +49686,62936 +49687,62943 +49689,62949 +49690,63283 +49691,62961 +49692,62991 +49693,31577 +49698,1103 +49702,63020 +49703,34282 +49704,47906 +49706,63051 +49708,63063 +49709,63077 +49713,60577 +49714,60610 +49715,63867 +49716,58921 +49717,61659 +49718,63117 +49719,60617 +49720,61781 +49721,60666 +49722,61788 +49723,63118 +49724,60611 +49725,60675 +49726,54064 +49727,60674 +49728,62299 +49729,60671 +49730,61790 +49731,61658 +49732,59289 +49733,60682 +49734,60660 +49735,60815 +49736,60626 +49737,60673 +49738,61785 +49739,63119 +49740,63120 +49741,63118 +49750,63135 +49761,61687 +49762,60623 +49763,56663 +49764,60592 +49766,63135 +49767,63202 +49768,56319 +49773,63226 +49774,63232 +49775,63233 +49777,63273 +49778,2380 +49783,64744 +49784,64844 +49785,64561 +49786,65307 +49787,64666 +49788,64613 +49789,64743 +49790,64742 +49791,64845 +49792,64640 +49793,64741 +49794,64722 +49795,64721 +49796,64614 +49797,64724 +49798,64665 +49799,54999 +49800,33534 +49801,64739 +49802,64740 +49803,31657 +49804,64650 +49805,64579 +49806,64562 +49807,64737 +49808,64847 +49809,64591 +49810,64699 +49811,64662 +49812,31906 +49813,52413 +49814,63334 +49816,64854 +49817,64563 +49818,9852 +49819,64951 +49820,64696 +49821,64881 +49822,64621 +49823,17238 +49824,64946 +49825,64616 +49826,64680 +49827,64757 +49828,64597 +49829,64718 +49830,64949 +49831,64710 +49832,64647 +49833,64753 +49834,64607 +49835,64882 +49836,64712 +49837,64682 +49838,64564 +49839,64750 +49840,64749 +49841,64533 +49842,64648 +49843,64723 +49844,64748 +49845,65164 +49846,64746 +49847,64662 +49848,64558 +49849,64599 +49851,64950 +49852,64745 +49853,64856 +49854,64606 +49855,64843 +49856,55097 +49857,55110 +49858,63368 +49859,55106 +49860,63367 +49861,55102 +49862,63363 +49863,34584 +49864,63366 +49865,63369 +49867,11448 +49868,63381 +49869,63382 +49870,63135 +49871,64620 +49872,60285 +49873,62961 +49879,63135 +49886,63405 +49888,63876 +49889,63135 +49890,64343 +49891,64241 +49892,43421 +49893,65408 +49894,64489 +49895,64414 +49896,65409 +49897,65410 +49898,64486 +49899,64416 +49900,65038 +49901,64821 +49902,64852 +49903,64848 +49904,64848 +49905,64846 +49906,64789 +49907,64789 +49908,63554 +49909,40293 +49911,63419 +49912,7251 +49913,64028 +49914,63421 +49915,8040 +49916,63430 +49917,41434 +49918,3426 +49919,64393 +49920,63119 +49922,1103 +49923,8628 +49924,16065 +49925,1103 +49926,63437 +49927,34508 +49931,63202 +49933,63463 +49935,63448 +49936,34656 +49937,34656 +49938,34656 +49939,34656 +49940,34656 +49941,34656 +49942,34656 +49943,34656 +49949,64169 +49950,64414 +49951,64569 +49952,67434 +49953,1096 +49954,1096 +49955,1096 +49956,1096 +49957,1096 +49958,1096 +49959,1096 +49960,64796 +49961,1096 +49962,1096 +49963,1096 +49964,64572 +49965,1096 +49966,1096 +49967,64230 +49968,64646 +49969,1096 +49970,1096 +49971,1096 +49972,1096 +49973,1096 +49974,1096 +49975,64194 +49976,65030 +49977,64176 +49978,64347 +49979,64491 +49980,64998 +49981,64371 +49982,64669 +49983,64789 +49984,63467 +49985,64229 +49986,64570 +49987,64398 +49988,64821 +49989,64190 +49990,33864 +49991,64243 +49992,64342 +49993,65036 +49994,64345 +49995,64668 +49996,64490 +49997,64508 +49998,64304 +49999,64169 +50000,64824 +50001,64426 +50002,64795 +50003,64622 +50004,34132 +50005,64219 +50006,64160 +50007,59319 +50008,64170 +50009,64489 +50010,64660 +50011,65002 +50012,64480 +50013,59318 +50014,64300 +50015,65035 +50016,64681 +50019,64307 +50020,64622 +50021,64424 +50022,64819 +50023,64213 +50024,64569 +50025,64225 +50026,64488 +50027,64658 +50028,64514 +50029,59249 +50030,65034 +50032,64165 +50033,64357 +50034,65744 +50035,64461 +50036,64784 +50037,64571 +50038,64828 +50039,63548 +50040,64340 +50041,64486 +50042,64416 +50043,63549 +50045,58830 +50046,64153 +50047,64153 +50048,64152 +50049,64152 +50050,41873 +50051,64954 +50052,64158 +50055,6442 +50056,64241 +50057,37170 +50058,59127 +50059,65033 +50060,64688 +50061,64203 +50062,64343 +50063,64208 +50064,65032 +50065,65056 +50066,59318 +50067,64422 +50068,64546 +50069,64492 +50070,64557 +50071,64822 +50072,64570 +50073,64427 +50074,54674 +50075,64571 +50076,12547 +50077,58841 +50078,64523 +50079,64525 +50080,64527 +50081,64568 +50082,64618 +50083,63560 +50084,63561 +50085,63563 +50087,63692 +50088,63693 +50089,63690 +50090,63691 +50091,12547 +50092,12547 +50093,12547 +50094,64592 +50095,64593 +50096,64594 +50097,64595 +50098,64705 +50099,63570 +50100,63569 +50101,63568 +50102,63688 +50103,63581 +50104,63694 +50105,63689 +50106,64730 +50107,64448 +50108,64446 +50109,64458 +50110,63592 +50111,63593 +50112,63595 +50113,64457 +50114,64810 +50115,65130 +50116,64812 +50117,64804 +50118,64814 +50119,63604 +50120,63605 +50121,63606 +50123,63605 +50124,63606 +50125,58828 +50129,63625 +50130,7889 +50131,58440 +50132,35431 +50133,35431 +50151,34535 +50160,18721 +50161,15692 +50163,7341 +50164,64023 +50166,36488 +50167,36488 +50168,36488 +50169,64770 +50170,64174 +50171,64496 +50172,64162 +50173,64440 +50174,64173 +50175,64689 +50176,64214 +50177,65039 +50178,64379 +50179,64500 +50180,64201 +50181,64337 +50182,64222 +50183,64677 +50184,64463 +50185,64170 +50186,64227 +50187,64784 +50188,64823 +50190,64789 +50191,64769 +50192,64572 +50193,64605 +50194,64830 +50195,64211 +50196,64207 +50197,64693 +50198,64254 +50199,64667 +50201,59257 +50202,65040 +50203,64768 +50204,64700 +50205,28951 +50206,65136 +50207,64721 +50208,64813 +50209,64696 +50210,64767 +50211,43085 +50212,64550 +50213,64565 +50214,64650 +50215,64721 +50216,63750 +50217,63754 +50221,63784 +50224,63806 +50225,63807 +50226,63829 +50227,64766 +50228,34034 +50229,64722 +50230,64833 +50231,19312 +50233,64698 +50234,64853 +50235,67667 +50240,64283 +50241,64286 +50242,64287 +50243,64288 +50244,64289 +50245,63839 +50246,63840 +50247,63845 +50248,63854 +50249,63855 +50250,63856 +50251,63787 +50252,63548 +50254,63135 +50255,31657 +50256,63787 +50257,63859 +50259,64256 +50260,64252 +50262,64765 +50263,64952 +50264,64552 +50265,64662 +50266,64608 +50267,64764 +50268,64763 +50269,64553 +50270,64699 +50271,9833 +50272,64836 +50273,64762 +50274,63877 +50275,64267 +50276,64892 +50277,64269 +50278,64858 +50279,64893 +50280,63884 +50281,63885 +50282,63886 +50283,64665 +50284,64723 +50285,64854 +50286,64579 +50287,63888 +50289,38894 +50290,64761 +50291,64760 +50292,64609 +50293,64558 +50294,64716 +50295,64701 +50296,64758 +50297,64703 +50298,65155 +50299,64581 +50300,64559 +50301,35407 +50302,64756 +50303,64755 +50304,64704 +50305,64857 +50306,26537 +50307,50628 +50308,64560 +50309,64447 +50310,64197 +50311,64950 +50312,64547 +50313,44358 +50314,64953 +50315,41398 +50316,39459 +50317,39459 +50318,64373 +50319,64754 +50320,34656 +50321,63928 +50322,63927 +50323,63934 +50324,64999 +50325,64633 +50326,64630 +50327,64627 +50328,64637 +50329,63935 +50330,63935 +50331,63935 +50332,63935 +50333,64421 +50335,55782 +50336,55784 +50337,55786 +50338,40399 +50339,64261 +50340,43609 +50341,64923 +50342,61413 +50343,61413 +50344,64923 +50345,43609 +50346,64261 +50347,61409 +50348,64245 +50349,64239 +50350,61409 +50351,64711 +50352,64239 +50353,64245 +50354,64237 +50355,48008 +50356,64264 +50357,64236 +50358,64631 +50359,64236 +50360,64247 +50361,64251 +50362,64244 +50363,64244 +50364,64251 +50365,64247 +50366,64236 +50367,55997 +50368,55863 +50369,55995 +50370,40395 +50372,40395 +50373,40395 +50375,63959 +50376,63958 +50377,63960 +50378,63949 +50379,63120 +50380,63120 +50384,63960 +50386,63949 +50387,63958 +50388,63959 +50389,64164 +50390,64165 +50391,64257 +50392,64258 +50393,64255 +50394,64167 +50395,64166 +50396,64183 +50397,63960 +50398,63960 +50399,63949 +50400,63949 +50401,63958 +50402,63958 +50403,63959 +50404,63959 +50406,56741 +50411,64472 +50412,64535 +50413,64820 +50414,64173 +50415,64879 +50416,64664 +50417,64474 +50418,64242 +50419,63998 +50421,64216 +50422,7627 +50423,64441 +50424,31498 +50425,64390 +50426,64996 +50427,64531 +50428,64520 +50429,64334 +50431,64008 +50432,8952 +50433,64009 +50434,61565 +50435,59504 +50442,64030 +50444,64366 +50446,8283 +50447,64173 +50449,64163 +50450,65037 +50451,64660 +50452,64272 +50453,64174 +50454,58200 +50455,54524 +50456,39652 +50457,64624 +50458,64629 +50459,64573 +50460,64625 +50461,64626 +50462,64615 +50463,64628 +50464,46045 +50466,64328 +50467,33096 +50468,59028 +50469,58977 +50470,64326 +50471,64034 +50472,64360 +50474,64454 +50475,63834 +50476,33808 +50477,59660 +50478,61879 +50479,59738 +50480,58888 +50481,35358 +50482,50376 +50483,59713 +50484,59714 +50485,59726 +50486,44841 +50487,59123 +50488,61888 +50489,59210 +50490,33808 +50491,59631 +50492,59700 +50493,58881 +50494,52632 +50495,59201 +50496,59697 +50497,59707 +50498,59280 +50499,48510 +50500,58977 +50501,59508 +50502,59100 +50503,59389 +50504,59204 +50505,54999 +50506,61409 +50507,61877 +50508,50376 +50509,61409 +50510,58878 +50511,59696 +50512,59711 +50513,60171 +50514,52632 +50515,61862 +50516,50376 +50517,59185 +50518,59744 +50519,9852 +50520,58920 +50521,59128 +50522,54711 +50523,59728 +50524,59166 +50525,51374 +50526,58877 +50527,59236 +50528,59746 +50529,43095 +50530,40051 +50531,61876 +50532,59715 +50533,59989 +50534,61409 +50535,61891 +50536,34336 +50537,59094 +50538,61409 +50539,59194 +50540,59028 +50541,61409 +50542,59745 +50543,59153 +50544,59382 +50545,59252 +50546,59704 +50547,58761 +50548,60171 +50549,58998 +50550,31616 +50551,59184 +50552,59207 +50553,59716 +50554,48510 +50555,61409 +50556,59389 +50557,58909 +50558,56215 +50559,59284 +50560,59148 +50561,61885 +50562,59699 +50563,59708 +50564,59387 +50565,43095 +50566,59733 +50567,58927 +50568,59479 +50569,58763 +50570,59139 +50571,59735 +50572,35358 +50573,59191 +50574,61867 +50575,59272 +50576,58735 +50577,59112 +50578,61409 +50579,58747 +50580,58908 +50581,58876 +50582,59387 +50583,59248 +50584,59701 +50585,59739 +50586,44841 +50587,59132 +50588,59710 +50589,61875 +50590,59035 +50591,61864 +50592,50376 +50593,59205 +50594,59006 +50595,59271 +50596,40051 +50597,58931 +50598,61409 +50599,58915 +50600,9852 +50601,57003 +50603,63834 +50604,64169 +50605,65131 +50606,64584 +50607,64437 +50608,64649 +50609,64194 +50610,64230 +50611,64799 +50612,64588 +50613,64349 +50614,64176 +50615,64510 +50616,65029 +50617,65000 +50618,64227 +50619,64827 +50620,64798 +50621,64678 +50622,64170 +50623,64674 +50624,64588 +50625,64797 +50626,65175 +50627,64211 +50628,28951 +50629,64279 +50630,64484 +50631,64360 +50632,64672 +50633,64216 +50634,61409 +50635,64441 +50636,31498 +50637,61409 +50638,64356 +50639,64797 +50640,64587 +50641,64671 +50642,64229 +50643,64278 +50644,33864 +50645,64832 +50646,64431 +50647,64190 +50648,64342 +50649,64507 +50650,64694 +50651,64361 +50652,65187 +50653,64304 +50654,64472 +50655,64831 +50656,64435 +50657,64169 +50658,64219 +50659,64800 +50660,64707 +50661,64224 +50662,61409 +50663,64359 +50664,64170 +50665,64489 +50666,61409 +50667,64702 +50668,64300 +50669,61409 +50670,64439 +50671,65186 +50672,64536 +50673,64829 +50674,64707 +50675,64434 +50676,64683 +50677,64307 +50678,64225 +50679,64503 +50680,64695 +50681,64584 +50682,64213 +50683,61409 +50684,64357 +50685,64515 +50686,64231 +50687,65185 +50688,64837 +50689,64838 +50690,64585 +50691,64798 +50692,64462 +50693,64173 +50694,64291 +50695,64340 +50696,64502 +50697,64432 +50698,65176 +50699,64351 +50700,64203 +50701,64692 +50702,64389 +50703,65174 +50704,64542 +50705,64501 +50706,64711 +50707,64430 +50708,64511 +50709,64879 +50710,64464 +50711,64835 +50712,64587 +50713,64429 +50714,64174 +50715,64444 +50716,64585 +50717,64860 +50718,54674 +50719,64440 +50720,64173 +50721,64690 +50722,64383 +50723,65173 +50724,64222 +50725,64337 +50726,64237 +50727,64554 +50728,64201 +50729,65055 +50730,64397 +50731,64334 +50732,64530 +50733,64371 +50734,64521 +50735,64554 +50736,64997 +50737,64480 +50738,64313 +50741,64043 +50747,61878 +50748,61892 +50749,61894 +50750,62580 +50751,61895 +50752,64049 +50753,64050 +50754,55822 +50755,64055 +50756,64053 +50757,53229 +50758,64059 +50759,64471 +50760,64516 +50761,64396 +50762,64809 +50763,64199 +50764,61403 +50765,64258 +50766,64257 +50767,64183 +50768,64167 +50769,64255 +50771,64544 +50772,64655 +50773,64374 +50774,65224 +50775,64633 +50776,64354 +50777,64810 +50778,63688 +50779,64527 +50780,64408 +50781,64433 +50782,64295 +50783,64469 +50784,65226 +50785,64376 +50786,64775 +50787,64472 +50788,64771 +50789,64818 +50790,64171 +50791,64325 +50792,64804 +50793,64675 +50794,64409 +50795,64470 +50796,64772 +50797,65227 +50798,64321 +50799,64402 +50800,64817 +50801,64523 +50802,64772 +50803,64174 +50804,64296 +50805,64341 +50806,64458 +50807,64258 +50808,64568 +50809,64218 +50810,64499 +50811,64525 +50812,64816 +50814,63202 +50815,64073 +50816,811 +50817,20726 +50818,58122 +50819,64457 +50820,64458 +50821,64446 +50822,64448 +50823,64730 +50824,64457 +50825,64458 +50826,64446 +50827,64448 +50828,64456 +50830,65228 +50831,65230 +50832,65227 +50833,65232 +50834,65233 +50835,65228 +50836,65230 +50837,65227 +50838,65232 +50839,65233 +50840,64086 +50841,65228 +50842,65230 +50843,65227 +50844,65232 +50845,65233 +50846,64618 +50847,64568 +50848,64527 +50849,64525 +50850,64523 +50851,1262 +50852,53560 +50853,64705 +50854,64595 +50855,64594 +50856,64593 +50857,64592 +50858,63691 +50859,35430 +50860,64999 +50861,64633 +50862,64630 +50863,64627 +50864,64637 +50865,64999 +50866,64633 +50867,64630 +50868,64627 +50869,64637 +50870,63571 +50871,63572 +50872,63573 +50873,63574 +50874,63575 +50875,63575 +50876,63574 +50877,63573 +50878,63572 +50879,63571 +50880,63596 +50881,63590 +50882,63589 +50883,63588 +50884,63587 +50885,64085 +50886,63588 +50887,63589 +50888,63590 +50889,63596 +50890,63587 +50891,63588 +50892,63589 +50893,63590 +50894,63596 +50895,63602 +50896,63603 +50897,63600 +50898,63599 +50899,63597 +50900,63883 +50901,63882 +50902,63881 +50903,63880 +50904,63879 +50905,63929 +50906,63930 +50907,63931 +50908,64061 +50909,63933 +50910,63929 +50911,63930 +50912,63931 +50913,64061 +50914,63933 +50915,63929 +50916,63930 +50917,63931 +50918,64061 +50919,63933 +50920,63975 +50921,63976 +50922,63978 +50923,63973 +50924,63974 +50925,63974 +50926,64087 +50927,63978 +50928,63976 +50929,63975 +50930,63693 +50931,63692 +50932,63691 +50933,63690 +50934,63689 +50935,57057 +50936,57060 +50937,57058 +50938,57065 +50939,57063 +50940,57057 +50941,57060 +50942,57058 +50943,57065 +50944,57063 +50945,57057 +50946,57060 +50947,57058 +50948,57065 +50949,57063 +50950,63846 +50951,63844 +50952,63984 +50953,63842 +50954,63841 +50955,63566 +50956,63565 +50957,63830 +50958,63562 +50959,63559 +50960,63559 +50961,63562 +50962,63830 +50963,63565 +50964,63566 +50965,64569 +50966,64330 +50967,64627 +50968,64569 +50969,64658 +50970,64828 +50971,65039 +50972,64426 +50973,64490 +50974,64350 +50975,64162 +50976,64668 +50977,64571 +50978,64571 +50979,64823 +50980,65032 +50981,64491 +50982,64424 +50983,65002 +50984,64214 +50985,64455 +50986,64176 +50987,64784 +50988,64183 +50989,64660 +50990,64269 +50991,64784 +50992,65035 +50993,64820 +50994,64492 +50995,64635 +50996,64347 +50997,64208 +50998,64336 +50999,48157 +51000,64774 +51001,64229 +51002,65130 +51003,64466 +51004,64506 +51005,64369 +51006,65259 +51007,64294 +51008,64203 +51009,64442 +51010,64537 +51011,64656 +51012,64213 +51013,63690 +51014,64618 +51015,64804 +51016,64205 +51017,64348 +51018,64637 +51019,65231 +51020,64893 +51021,64540 +51022,64382 +51023,64399 +51024,64230 +51025,64568 +51026,64092 +51027,64092 +51028,60670 +51029,60171 +51030,63571 +51031,63572 +51032,63573 +51033,63574 +51034,63575 +51035,63575 +51036,63574 +51037,63573 +51038,63572 +51039,63571 +51040,63596 +51041,63590 +51042,63589 +51043,63588 +51044,63587 +51045,64085 +51046,63588 +51047,63589 +51048,63590 +51049,63596 +51050,63587 +51051,63588 +51052,63589 +51053,63590 +51054,63596 +51055,63602 +51056,63603 +51057,63600 +51058,63599 +51059,63597 +51060,63883 +51061,63882 +51062,63881 +51063,63880 +51064,63879 +51065,63929 +51066,63930 +51067,63931 +51068,64061 +51069,63933 +51070,63929 +51071,63930 +51072,63931 +51073,64061 +51074,63933 +51075,63929 +51076,63930 +51077,63931 +51078,64061 +51079,63933 +51080,63975 +51081,63976 +51082,63978 +51083,63973 +51084,63974 +51085,63974 +51086,64087 +51087,63978 +51088,63976 +51089,63975 +51090,63693 +51091,63692 +51092,63691 +51093,63690 +51094,63689 +51095,57057 +51096,57060 +51097,57058 +51098,57065 +51099,57063 +51100,57057 +51101,57060 +51102,57058 +51103,57065 +51104,57063 +51105,57057 +51106,57060 +51107,57058 +51108,57065 +51109,57063 +51110,63846 +51111,63844 +51112,63984 +51113,63842 +51114,63841 +51115,63566 +51116,63565 +51117,63830 +51118,63562 +51119,63559 +51120,63559 +51121,63562 +51122,63830 +51123,63565 +51124,63566 +51125,64706 +51126,64603 +51127,64601 +51128,64602 +51129,64600 +51130,64706 +51131,64603 +51132,64602 +51133,64601 +51134,64600 +51135,64496 +51136,64486 +51137,64488 +51138,64494 +51139,64732 +51140,64496 +51141,64490 +51142,64486 +51143,64488 +51144,64494 +51145,64732 +51146,64486 +51147,64496 +51148,64494 +51149,64488 +51150,64828 +51151,64819 +51152,64821 +51153,65129 +51154,64823 +51155,64895 +51156,64242 +51157,64241 +51158,65647 +51159,64235 +51160,64998 +51161,64667 +51162,64688 +51163,64668 +51164,64658 +51165,64658 +51166,64998 +51167,64688 +51168,64667 +51169,64668 +51170,64998 +51171,64667 +51172,64668 +51173,64688 +51174,64658 +51175,64163 +51176,64162 +51177,64212 +51178,64160 +51179,64159 +51180,64162 +51181,64212 +51182,64163 +51183,64159 +51184,64160 +51185,64398 +51186,64416 +51187,64427 +51188,64943 +51189,64426 +51190,65039 +51191,65032 +51192,65040 +51193,65038 +51194,65033 +51195,65039 +51196,65032 +51197,65040 +51198,65038 +51199,65033 +51200,65039 +51201,65032 +51202,65040 +51203,65038 +51204,65033 +51205,64277 +51206,64276 +51207,64290 +51208,64274 +51209,64284 +51210,64622 +51211,64572 +51212,64570 +51213,64571 +51214,64569 +51215,64622 +51216,64572 +51217,64571 +51218,64570 +51219,64569 +51220,64580 +51221,64577 +51222,64578 +51223,64576 +51224,64623 +51225,64580 +51226,64578 +51227,64577 +51228,64576 +51229,64623 +51230,64285 +51231,64281 +51232,64291 +51233,64279 +51234,64278 +51235,65176 +51236,65172 +51237,65175 +51238,65174 +51239,65173 +51240,65176 +51241,65172 +51242,65175 +51243,65174 +51244,65173 +51245,65176 +51246,65172 +51247,65175 +51248,65174 +51249,65173 +51250,64435 +51251,64944 +51252,64429 +51253,64432 +51254,64431 +51255,64224 +51256,64386 +51257,64221 +51258,64385 +51259,64860 +51260,64386 +51261,64224 +51262,64385 +51263,64860 +51264,64221 +51265,64695 +51266,64692 +51267,64694 +51268,64697 +51269,65000 +51270,64694 +51271,64674 +51272,64692 +51273,65000 +51274,64695 +51275,64695 +51276,64694 +51277,64692 +51278,64674 +51279,65000 +51280,64250 +51281,64897 +51282,64246 +51283,64859 +51284,64896 +51285,64827 +51286,65131 +51287,64832 +51288,64829 +51289,64840 +51290,64503 +51291,64504 +51292,64444 +51293,64502 +51294,64734 +51295,64504 +51296,64503 +51297,64502 +51298,64507 +51299,64444 +51300,64734 +51301,64504 +51302,64503 +51303,64502 +51304,64444 +51305,64584 +51306,64587 +51307,64585 +51308,64588 +51309,64707 +51310,64584 +51311,64585 +51312,64587 +51313,64588 +51314,64707 +51315,7243 +51316,64093 +51317,54319 +51318,38543 +51319,16204 +51320,64096 +51321,15711 +51322,58876 +51323,59382 +51324,57003 +51325,64809 +51326,64995 +51327,65289 +51328,65290 +51329,65296 +51330,61562 +51331,39162 +51332,61563 +51333,39162 +51334,61648 +51335,39162 +51336,39129 +51337,65443 +51338,65291 +51339,65296 +51340,65179 +51341,65182 +51342,65178 +51343,65179 +51344,65182 +51345,65178 +51346,61563 +51347,39162 +51348,61562 +51349,39162 +51350,65459 +51351,65461 +51352,65458 +51353,39162 +51354,61564 +51355,39162 +51356,42615 +51357,39162 +51358,39129 +51359,65239 +51360,65241 +51361,65244 +51362,65240 +51363,65242 +51364,65245 +51365,65443 +51366,65444 +51367,65445 +51368,65200 +51369,65201 +51370,65199 +51371,65236 +51372,65237 +51373,65238 +51374,65236 +51375,65237 +51376,65238 +51377,37840 +51378,37841 +51379,64167 +51380,64372 +51381,64225 +51382,64323 +51383,64618 +51384,64654 +51385,64363 +51386,64780 +51387,44357 +51388,65309 +51389,65310 +51390,65314 +51391,65312 +51392,65315 +51393,65316 +51394,65318 +51395,65317 +51396,39505 +51397,65320 +51398,65325 +51399,65323 +51400,65332 +51401,65331 +51402,65333 +51403,65334 +51404,65332 +51405,65331 +51406,65324 +51407,39505 +51408,39505 +51409,39505 +51410,65366 +51411,65335 +51412,65337 +51413,65246 +51414,65247 +51415,65248 +51416,65249 +51417,51913 +51418,65579 +51419,65162 +51420,65152 +51421,65154 +51422,65157 +51423,9659 +51424,65649 +51425,65162 +51426,65152 +51427,65154 +51428,65157 +51429,34953 +51430,65649 +51431,65166 +51432,65167 +51433,65162 +51434,65152 +51435,65154 +51436,65157 +51437,34953 +51438,65649 +51439,65357 +51440,65361 +51441,65343 +51442,65342 +51443,65308 +51444,65349 +51445,65377 +51446,65378 +51447,65390 +51448,65385 +51449,65364 +51450,65365 +51451,65370 +51452,65580 +51453,65379 +51454,65380 +51455,65581 +51456,65327 +51457,65330 +51458,65463 +51459,65464 +51460,65919 +51461,65465 +51462,65214 +51463,65274 +51464,65279 +51465,65280 +51466,65282 +51467,65285 +51468,65271 +51469,65272 +51470,65270 +51471,65273 +51472,1103 +51473,65268 +51474,65271 +51475,65272 +51476,65270 +51477,65273 +51478,34960 +51479,65268 +51480,65382 +51481,65648 +51482,65447 +51483,65952 +51484,65281 +51485,65451 +51486,65286 +51487,65447 +51488,65452 +51489,65281 +51490,65451 +51491,65286 +51492,65198 +51493,65188 +51494,65195 +51495,65203 +51496,65202 +51497,65218 +51498,65219 +51499,65221 +51500,65235 +51501,46045 +51502,65597 +51503,65218 +51504,65219 +51505,65221 +51506,65235 +51507,25246 +51508,65597 +51509,65218 +51510,65219 +51511,65221 +51512,65235 +51513,25246 +51514,65597 +51515,65363 +51516,65361 +51517,65401 +51518,65340 +51519,65372 +51520,65376 +51521,65389 +51522,65388 +51523,65353 +51524,65404 +51525,65363 +51526,65361 +51527,65401 +51528,65340 +51529,65350 +51530,65351 +51531,65371 +51532,65369 +51533,65582 +51534,58691 +51535,65394 +51536,65275 +51537,65277 +51538,65284 +51539,65283 +51540,65288 +51541,65251 +51542,65252 +51543,65253 +51544,65266 +51545,65267 +51548,64190 +51550,63691 +51551,65228 +51552,64457 +51553,64358 +51554,64892 +51555,64661 +51556,64525 +51557,52459 +51558,52459 +51559,52632 +51560,52632 +51561,64365 +51562,64393 +51563,64779 +51564,64774 +51565,63689 +51566,64812 +51568,39162 +51569,39162 +51570,61563 +51571,61564 +51572,60169 +51573,60161 +51574,61447 +51575,61447 +51576,60929 +51577,61461 +51578,61280 +51579,61280 +51580,61831 +51581,60908 +51582,64338 +51583,65276 +51584,46455 +51585,64446 +51586,64999 +51587,63571 +51588,63572 +51589,63573 +51590,63574 +51591,63575 +51592,63575 +51593,63574 +51594,63573 +51595,63572 +51596,63571 +51597,63596 +51598,63590 +51599,63589 +51600,63588 +51601,63587 +51602,64085 +51603,63588 +51604,63589 +51605,63590 +51606,63596 +51607,63587 +51608,63588 +51609,63589 +51610,63590 +51611,63596 +51612,63602 +51613,63603 +51614,63600 +51615,63599 +51616,63597 +51617,63883 +51618,63882 +51619,63881 +51620,63880 +51621,63879 +51622,63929 +51623,63930 +51624,63931 +51625,64061 +51626,63933 +51627,63929 +51628,63930 +51629,63931 +51630,64061 +51631,63933 +51632,63929 +51633,63930 +51634,63931 +51635,64061 +51636,63933 +51637,63975 +51638,63976 +51639,63978 +51640,63973 +51641,63974 +51642,63974 +51643,64087 +51644,63978 +51645,63976 +51646,63975 +51647,63693 +51648,63692 +51649,63691 +51650,63690 +51651,63689 +51652,57057 +51653,57060 +51654,57058 +51655,57065 +51656,57063 +51657,57057 +51658,57060 +51659,57058 +51660,57065 +51661,57063 +51662,57057 +51663,57060 +51664,57058 +51665,57065 +51666,57063 +51667,63846 +51668,63844 +51669,63984 +51670,63842 +51671,63841 +51672,63566 +51673,63565 +51674,63830 +51675,63562 +51676,63559 +51677,63559 +51678,63562 +51679,63830 +51680,63565 +51681,63566 +51682,64705 +51683,64595 +51684,64594 +51685,64593 +51686,64592 +51687,64592 +51688,64593 +51689,64594 +51690,64595 +51691,64705 +51692,64457 +51693,64458 +51694,64446 +51695,64448 +51696,64730 +51697,64456 +51698,64448 +51699,64446 +51700,64458 +51701,64457 +51702,64731 +51703,64448 +51704,64446 +51705,64458 +51706,64457 +51707,64814 +51708,64804 +51709,64812 +51710,65130 +51711,64810 +51712,64271 +51713,64270 +51714,64269 +51715,64268 +51716,64267 +51717,64637 +51718,64627 +51719,64630 +51720,64633 +51721,64999 +51722,64637 +51723,64627 +51724,64630 +51725,64633 +51726,64999 +51727,64637 +51728,64627 +51729,64630 +51730,64633 +51731,64999 +51732,64255 +51733,64196 +51734,64183 +51735,64257 +51736,64258 +51737,64258 +51738,64257 +51739,64183 +51740,64196 +51741,64255 +51742,63693 +51743,63692 +51744,63691 +51745,63690 +51746,63689 +51747,65228 +51748,65230 +51749,65227 +51750,65232 +51751,65233 +51752,65228 +51753,64776 +51754,65227 +51755,65232 +51756,65233 +51757,65278 +51758,65230 +51759,65227 +51760,65232 +51761,65233 +51762,64289 +51763,64288 +51764,64287 +51765,64286 +51766,64283 +51767,64618 +51768,64568 +51769,64527 +51770,64525 +51771,64523 +51772,64523 +51773,64525 +51774,64527 +51775,64568 +51776,64618 +51777,64255 +51779,6510 +51782,64774 +51783,64405 +51784,64468 +51785,64816 +51786,64568 +51787,64771 +51788,64645 +51789,64448 +51790,64858 +51791,64415 +51792,65233 +51795,64485 +51796,64555 +51797,64352 +51798,64518 +51799,64172 +51800,64678 +51801,64467 +51802,64370 +51803,64651 +51804,43423 +51805,52417 +51806,9854 +51807,45351 +51808,54999 +51809,64151 +51811,65033 +51812,64417 +51813,64312 +51814,64479 +51815,64646 +51816,64781 +51817,64595 +51818,64822 +51819,64468 +51820,64421 +51821,64786 +51822,6510 +51823,64200 +51824,64998 +51825,65160 +51826,46455 +51827,65032 +51828,64338 +51829,64821 +51830,64419 +51831,64786 +51832,64790 +51833,63834 +51834,64365 +51835,64593 +51836,64660 +51837,64302 +51838,64358 +51839,64478 +51840,65039 +51841,64416 +51842,64190 +51843,44357 +51844,64791 +51845,64363 +51846,64653 +51847,64705 +51848,64323 +51849,64225 +51850,64198 +51851,64168 +51852,64995 +51853,64820 +51854,64595 +51855,64230 +51856,64414 +51857,64379 +51858,64541 +51859,64301 +51860,65038 +51861,64658 +51862,64181 +51863,64205 +51864,64819 +51865,64705 +51866,64427 +51867,64213 +51868,64657 +51869,64539 +51870,64476 +51871,64203 +51872,64298 +51873,65036 +51874,64377 +51875,64512 +51876,64466 +51877,65132 +51878,64229 +51879,64786 +51880,48157 +51881,64336 +51882,64311 +51883,64179 +51884,64176 +51885,64483 +51886,64668 +51887,64330 +51888,35430 +51889,64416 +51890,53560 +51891,64822 +51892,64593 +51893,64509 +51894,64218 +51895,64595 +51896,64945 +51897,64481 +51898,64341 +51899,64310 +51900,64174 +51901,64782 +51902,64592 +51903,64825 +51904,64424 +51905,64320 +51906,65040 +51907,64782 +51908,64477 +51909,64410 +51910,64676 +51911,64819 +51912,64325 +51913,64171 +51914,64824 +51915,64781 +51916,64472 +51917,64787 +51918,64204 +51919,65035 +51920,64475 +51921,64303 +51922,40786 +51923,64423 +51924,64594 +51925,64422 +51926,64823 +51927,64353 +51928,64667 +51929,65034 +51930,64378 +51931,64664 +51932,64549 +51933,61403 +51934,64199 +51935,64820 +51936,64556 +51937,64517 +51938,64471 +51939,64645 +51940,64370 +51941,64467 +51942,65104 +51943,64172 +51944,64519 +51945,64352 +51946,64394 +51947,64485 +51949,64234 +51954,64403 +51955,64403 +51958,64735 +51959,49925 +51960,49985 +51961,49919 +51962,49982 +51963,49979 +51964,49925 +51965,49985 +51966,49919 +51967,52117 +51968,51783 +51969,52068 +51970,51840 +51971,51783 +51972,52113 +51973,51840 +51974,52068 +51975,51883 +51976,51883 +51977,52166 +51978,52166 +51979,52164 +51980,52164 +51981,52165 +51982,52163 +51983,51297 +51984,51297 +51985,52055 +51986,52055 +51987,52054 +51988,52054 +51989,52058 +51990,52057 +51991,26537 +51992,31800 +51993,50059 +51994,50059 +51995,31603 +51996,31603 +51997,51883 +51998,49919 +51999,56915 +52000,56915 +52001,56915 +52002,56915 +52003,56915 +52004,56915 +52005,56915 +52006,64736 +52007,53563 +52008,51453 +52009,35563 +52010,50350 +52011,51606 +52012,48290 +52015,54760 +52016,55711 +52019,64872 +52020,64870 +52021,64928 +52022,1096 +52023,1096 +52025,64877 +52026,64877 +52027,64877 +52028,64878 +52029,64878 +52030,64878 +52033,64905 +52034,64906 +52037,64910 +52042,64994 +52058,43809 +52062,65082 +52189,2351 +52200,58122 +52201,67489 +52202,2351 +52251,32321 +52252,65733 +52253,41449 +52272,65424 +52274,21202 +52275,11185 +52276,11185 +52344,21202 +52345,65424 +52356,65519 +52357,65520 +52358,65521 +52359,65521 +52361,65526 +52541,40553 +52562,34752 +52563,34751 +52565,45202 +52566,44269 +52567,52632 +52569,63958 +52570,63958 +52571,63958 +52572,63958 +52676,39458 +52686,65871 +52706,65893 +52707,65893 +52709,22299 +52713,65909 +52729,65920 +52731,3027 +52835,23712 +53048,34752 +53055,66128 +53056,66129 +53096,60714 +53097,66184 +53103,6510 +53110,64230 +53111,64771 +53112,64779 +53113,64804 +53114,64408 +53115,64323 +53116,64225 +53117,64448 +53118,64348 +53119,65259 +53121,64661 +53125,64789 +53126,64421 +53127,64822 +53129,64789 +53132,64190 +53133,64225 +53134,64484 +53473,66207 +53474,66212 +53475,66213 +53476,66218 +53477,66228 +53486,64345 +53487,64664 +53488,65035 +53489,28951 +53490,64230 +53491,59713 +53492,34336 +53493,59185 +53494,59194 +53495,26537 +53496,61884 +53497,59000 +53498,61875 +53499,34034 +53500,64836 +53501,9833 +53502,39209 +53503,64207 +53504,59094 +53505,64854 +53506,51374 +53507,59727 +53508,64559 +53509,43085 +53510,66265 +53637,8442 +53641,43520 +53785,66474 +53835,66550 +53889,53119 +53890,66549 +53891,66551 +53924,46788 +53933,52200 +53934,52199 +53935,52201 +53936,52202 +53937,23976 +53938,38258 +53963,67204 +54068,66745 +54069,66746 +54212,67469 +54215,67328 +54218,22192 +54291,67003 +54343,44269 +54436,47926 +54437,57664 +54438,67092 +54452,67105 +54455,17902 +54467,67129 +54468,23293 +54469,24677 +54470,67130 +54516,67153 +54535,47493 +54536,67167 +54537,40293 +54555,67187 +54556,64323 +54557,6510 +54558,65259 +54559,64779 +54560,64448 +54561,64408 +54562,64348 +54563,64225 +54564,64771 +54565,64661 +54566,64804 +54567,64230 +54569,68109 +54571,68107 +54572,68106 +54573,68108 +54576,64225 +54577,64822 +54578,64789 +54579,64789 +54580,64421 +54581,64190 +54582,64345 +54583,28951 +54584,64484 +54585,64230 +54586,64664 +54587,65035 +54588,68106 +54589,68108 +54590,68109 +54591,68107 +54592,65224 +54612,67215 +54617,66212 +54637,67279 +54647,66184 +54651,58579 +54653,58582 +54797,67577 +54798,6270 +54801,15239 +54802,15239 +54803,15239 +54804,15239 +54805,15239 +54806,48878 +54810,67453 +54811,67452 +54822,67444 +54847,67475 +54848,65233 +54857,25593 +54860,67573 +56806,68742 \ No newline at end of file diff --git a/HermesProxy/CSV/ItemModifiedAppearance1.csv b/HermesProxy/CSV/ItemModifiedAppearance1.csv new file mode 100644 index 00000000..3f49eb98 --- /dev/null +++ b/HermesProxy/CSV/ItemModifiedAppearance1.csv @@ -0,0 +1,9283 @@ +ID,ItemID,ItemAppearanceModifierID,ItemAppearanceID,OrderIndex,TransmogSourceTypeEnum +146735,2101,0,57187,0,0 +146736,2662,0,57188,0,0 +146737,3573,0,57189,0,0 +146738,3605,0,57190,0,0 +146739,5439,0,57191,0,0 +146740,7278,0,57192,0,0 +146741,7371,0,57193,0,0 +146742,8217,0,57194,0,0 +146743,11362,0,57195,0,0 +146744,18714,0,57188,0,0 +146745,19319,0,57188,0,0 +156038,17,0,63222,0,0 +156039,25,0,63223,0,0 +156040,35,0,63224,0,0 +156041,36,0,63225,0,0 +156042,37,0,63226,0,0 +156043,38,0,63227,0,0 +156044,39,0,63228,0,0 +156045,40,0,63229,0,0 +156046,43,0,63230,0,0 +156047,44,0,63231,0,0 +156048,45,0,63232,0,0 +156049,47,0,63233,0,0 +156050,48,0,63234,0,0 +156051,49,0,63235,0,0 +156052,51,0,63236,0,0 +156053,52,0,63237,0,0 +156054,53,0,63238,0,0 +156055,55,0,63230,0,0 +156056,56,0,63239,0,0 +156057,57,0,63240,0,0 +156058,59,0,63241,0,0 +156059,60,0,63242,0,0 +156060,61,0,63243,0,0 +156061,79,0,63244,0,0 +156062,80,0,63245,0,0 +156063,85,0,63246,0,0 +156064,120,0,63247,0,0 +156065,121,0,63248,0,0 +156066,127,0,63249,0,0 +156067,129,0,63250,0,0 +156068,139,0,63251,0,0 +156069,140,0,63252,0,0 +156070,143,0,63253,0,0 +156071,147,0,63254,0,0 +156072,148,0,63255,0,0 +156073,153,0,63256,0,0 +156074,154,0,63257,0,0 +156075,192,0,63258,0,0 +156076,193,0,63259,0,0 +156077,194,0,63260,0,0 +156078,195,0,63261,0,0 +156079,200,0,63262,0,0 +156080,201,0,63263,0,0 +156081,202,0,63264,0,0 +156082,203,0,63265,0,0 +156083,209,0,63266,0,0 +156084,210,0,63267,0,0 +156085,236,0,63268,0,0 +156086,237,0,63269,0,0 +156087,238,0,63270,0,0 +156088,239,0,63271,0,0 +156089,285,0,63272,0,0 +156090,286,0,63273,0,0 +156091,287,0,63274,0,0 +156092,647,0,63275,0,0 +156093,710,0,63276,0,0 +156094,711,0,63277,0,0 +156095,714,0,63278,0,0 +156096,718,0,63279,0,0 +156097,719,0,63280,0,0 +156098,720,0,63281,0,0 +156099,727,0,63282,0,0 +156100,746,0,63283,0,0 +156101,753,0,63284,0,0 +156102,754,0,63285,0,0 +156103,756,0,63286,0,0 +156104,763,0,63287,0,0 +156105,766,0,63288,0,0 +156106,767,0,63289,0,0 +156107,768,0,63290,0,0 +156108,776,0,63291,0,0 +156109,778,0,63292,0,0 +156110,781,0,63293,0,0 +156111,788,0,63294,0,0 +156112,789,0,63295,0,0 +156113,790,0,63296,0,0 +156114,791,0,63297,0,0 +156115,792,0,63298,0,0 +156116,793,0,63299,0,0 +156117,794,0,63300,0,0 +156118,795,0,63301,0,0 +156119,796,0,63302,0,0 +156120,797,0,63303,0,0 +156121,798,0,63304,0,0 +156122,799,0,63305,0,0 +156123,809,0,63306,0,0 +156124,810,0,63307,0,0 +156125,811,0,63308,0,0 +156126,812,0,63309,0,0 +156127,816,0,63310,0,0 +156128,820,0,63311,0,0 +156129,821,0,63312,0,0 +156130,826,0,63313,0,0 +156131,827,0,63314,0,0 +156132,832,0,63315,0,0 +156133,837,0,63316,0,0 +156134,838,0,63317,0,0 +156135,839,0,63318,0,0 +156136,840,0,63319,0,0 +156137,843,0,63320,0,0 +156138,844,0,63321,0,0 +156139,845,0,63322,0,0 +156140,846,0,63323,0,0 +156141,847,0,63324,0,0 +156142,848,0,63325,0,0 +156143,849,0,63326,0,0 +156144,850,0,63327,0,0 +156145,851,0,63328,0,0 +156146,852,0,63329,0,0 +156147,853,0,63330,0,0 +156148,854,0,63331,0,0 +156149,859,0,63332,0,0 +156150,860,0,63333,0,0 +156151,863,0,63334,0,0 +156152,864,0,63335,0,0 +156153,865,0,63336,0,0 +156154,866,0,63337,0,0 +156155,867,0,63338,0,0 +156156,868,0,63339,0,0 +156157,869,0,63340,0,0 +156158,870,0,63341,0,0 +156159,871,0,63342,0,0 +156160,872,0,63343,0,0 +156161,873,0,63344,0,0 +156162,876,0,63345,0,0 +156163,880,0,63346,0,0 +156164,885,0,63347,0,0 +156165,886,0,63348,0,0 +156166,888,0,63349,0,0 +156167,890,0,63350,0,0 +156168,892,0,63351,0,0 +156169,897,0,63352,0,0 +156170,899,0,63353,0,0 +156171,905,0,63354,0,0 +156172,906,0,63355,0,0 +156173,907,0,63356,0,0 +156174,908,0,63357,0,0 +156175,909,0,63358,0,0 +156176,911,0,63359,0,0 +156177,913,0,63360,0,0 +156178,914,0,63361,0,0 +156179,920,0,63362,0,0 +156180,922,0,63363,0,0 +156181,923,0,63364,0,0 +156182,924,0,63365,0,0 +156183,925,0,63366,0,0 +156184,926,0,63367,0,0 +156185,927,0,63296,0,0 +156186,928,0,63368,0,0 +156187,934,0,63369,0,0 +156188,935,0,63370,0,0 +156189,936,0,63371,0,0 +156190,937,0,63372,0,0 +156191,940,0,63373,0,0 +156192,943,0,63374,0,0 +156193,944,0,63375,0,0 +156194,945,0,63376,0,0 +156195,948,0,63376,0,0 +156196,983,0,63377,0,0 +156197,1008,0,63378,0,0 +156198,1009,0,63379,0,0 +156199,1010,0,63380,0,0 +156200,1011,0,63381,0,0 +156201,1018,0,63382,0,0 +156202,1117,0,63383,0,0 +156203,1121,0,63384,0,0 +156204,1131,0,63385,0,0 +156205,1154,0,63315,0,0 +156206,1155,0,63386,0,0 +156207,1158,0,63387,0,0 +156208,1159,0,63388,0,0 +156209,1161,0,63389,0,0 +156210,1162,0,63390,0,0 +156211,1163,0,63391,0,0 +156212,1168,0,63392,0,0 +156213,1169,0,63393,0,0 +156214,1171,0,63394,0,0 +156215,1172,0,63395,0,0 +156216,1173,0,63396,0,0 +156217,1182,0,63397,0,0 +156218,1183,0,63398,0,0 +156219,1190,0,63399,0,0 +156220,1194,0,63400,0,0 +156221,1195,0,63401,0,0 +156222,1196,0,63402,0,0 +156223,1197,0,63403,0,0 +156224,1198,0,63404,0,0 +156225,1200,0,63405,0,0 +156226,1201,0,63406,0,0 +156227,1202,0,63407,0,0 +156228,1203,0,63408,0,0 +156229,1204,0,63409,0,0 +156230,1207,0,63410,0,0 +156231,1211,0,63411,0,0 +156232,1213,0,63412,0,0 +156233,1214,0,63413,0,0 +156234,1215,0,63414,0,0 +156235,1216,0,63415,0,0 +156236,1218,0,63416,0,0 +156237,1219,0,63417,0,0 +156238,1220,0,63418,0,0 +156239,1254,0,63419,0,0 +156240,1259,0,63420,0,0 +156241,1263,0,63421,0,0 +156242,1264,0,63422,0,0 +156243,1265,0,63423,0,0 +156244,1270,0,63424,0,0 +156245,1273,0,63425,0,0 +156246,1275,0,63324,0,0 +156247,1276,0,63426,0,0 +156248,1280,0,63427,0,0 +156249,1282,0,63428,0,0 +156250,1287,0,63429,0,0 +156251,1292,0,63430,0,0 +156252,1296,0,63431,0,0 +156253,1297,0,63432,0,0 +156254,1299,0,63433,0,0 +156255,1300,0,63434,0,0 +156256,1302,0,63435,0,0 +156257,1303,0,63327,0,0 +156258,1304,0,63436,0,0 +156259,1306,0,63437,0,0 +156260,1310,0,63438,0,0 +156261,1314,0,63439,0,0 +156262,1317,0,63440,0,0 +156263,1318,0,63441,0,0 +156264,1351,0,63442,0,0 +156265,1355,0,63443,0,0 +156266,1359,0,63444,0,0 +156267,1360,0,63445,0,0 +156268,1364,0,63446,0,0 +156269,1366,0,63447,0,0 +156270,1367,0,63448,0,0 +156271,1368,0,63449,0,0 +156272,1369,0,63450,0,0 +156273,1370,0,63451,0,0 +156274,1372,0,63443,0,0 +156275,1374,0,63452,0,0 +156276,1376,0,63453,0,0 +156277,1377,0,63454,0,0 +156278,1378,0,63455,0,0 +156279,1380,0,63456,0,0 +156280,1382,0,63457,0,0 +156281,1383,0,63458,0,0 +156282,1384,0,63459,0,0 +156283,1386,0,63460,0,0 +156284,1387,0,63461,0,0 +156285,1388,0,63462,0,0 +156286,1389,0,63463,0,0 +156287,1391,0,63464,0,0 +156288,1394,0,63465,0,0 +156289,1395,0,63231,0,0 +156290,1396,0,63466,0,0 +156291,1405,0,63467,0,0 +156292,1406,0,63468,0,0 +156293,1411,0,63469,0,0 +156294,1412,0,63470,0,0 +156295,1413,0,63471,0,0 +156296,1414,0,63472,0,0 +156297,1415,0,63473,0,0 +156298,1416,0,63458,0,0 +156299,1417,0,63474,0,0 +156300,1418,0,63475,0,0 +156301,1419,0,63476,0,0 +156302,1420,0,63477,0,0 +156303,1421,0,63478,0,0 +156304,1422,0,63479,0,0 +156305,1423,0,63480,0,0 +156306,1425,0,63481,0,0 +156307,1427,0,63482,0,0 +156308,1429,0,63424,0,0 +156309,1430,0,63483,0,0 +156310,1431,0,63484,0,0 +156311,1433,0,63485,0,0 +156312,1436,0,63486,0,0 +156313,1438,0,63487,0,0 +156314,1440,0,63488,0,0 +156315,1445,0,63489,0,0 +156316,1446,0,63490,0,0 +156317,1448,0,63491,0,0 +156318,1454,0,63492,0,0 +156319,1455,0,63493,0,0 +156320,1457,0,63494,0,0 +156321,1458,0,63495,0,0 +156322,1459,0,63496,0,0 +156323,1460,0,63497,0,0 +156324,1461,0,63498,0,0 +156325,1465,0,63499,0,0 +156326,1469,0,63500,0,0 +156327,1473,0,63501,0,0 +156328,1479,0,63502,0,0 +156329,1480,0,63503,0,0 +156330,1481,0,63504,0,0 +156331,1482,0,63505,0,0 +156332,1483,0,63506,0,0 +156333,1484,0,63507,0,0 +156334,1485,0,63508,0,0 +156335,1486,0,63509,0,0 +156336,1488,0,63510,0,0 +156337,1489,0,63511,0,0 +156338,1493,0,63512,0,0 +156339,1495,0,63513,0,0 +156340,1497,0,63514,0,0 +156341,1498,0,63515,0,0 +156342,1499,0,63516,0,0 +156343,1501,0,63517,0,0 +156344,1502,0,63518,0,0 +156345,1503,0,63519,0,0 +156346,1504,0,63520,0,0 +156347,1505,0,63521,0,0 +156348,1506,0,63522,0,0 +156349,1507,0,63523,0,0 +156350,1509,0,63524,0,0 +156351,1510,0,63525,0,0 +156352,1511,0,63526,0,0 +156353,1512,0,63527,0,0 +156354,1513,0,63528,0,0 +156355,1514,0,63529,0,0 +156356,1515,0,63530,0,0 +156357,1516,0,63531,0,0 +156358,1521,0,63532,0,0 +156359,1522,0,63533,0,0 +156360,1523,0,63534,0,0 +156361,1539,0,63535,0,0 +156362,1547,0,63536,0,0 +156363,1557,0,63537,0,0 +156364,1560,0,63538,0,0 +156365,1561,0,63539,0,0 +156366,1566,0,63540,0,0 +156367,1602,0,63541,0,0 +156368,1604,0,63542,0,0 +156369,1607,0,63543,0,0 +156370,1608,0,63544,0,0 +156371,1613,0,63545,0,0 +156372,1624,0,63546,0,0 +156373,1625,0,63547,0,0 +156374,1639,0,63548,0,0 +156375,1640,0,63549,0,0 +156376,1659,0,63550,0,0 +156377,1664,0,63551,0,0 +156378,1677,0,63552,0,0 +156379,1678,0,63553,0,0 +156380,1679,0,63554,0,0 +156381,1680,0,63555,0,0 +156382,1715,0,63552,0,0 +156383,1716,0,63556,0,0 +156384,1717,0,63510,0,0 +156385,1718,0,63557,0,0 +156386,1720,0,63558,0,0 +156387,1721,0,63559,0,0 +156388,1722,0,63560,0,0 +156389,1726,0,63561,0,0 +156390,1727,0,63562,0,0 +156391,1728,0,63563,0,0 +156392,1730,0,63564,0,0 +156393,1731,0,63565,0,0 +156394,1732,0,63566,0,0 +156395,1733,0,63567,0,0 +156396,1734,0,63568,0,0 +156397,1735,0,63569,0,0 +156398,1737,0,63570,0,0 +156399,1738,0,63564,0,0 +156400,1739,0,63565,0,0 +156401,1740,0,63566,0,0 +156402,1741,0,63571,0,0 +156403,1742,0,63568,0,0 +156404,1743,0,63569,0,0 +156405,1744,0,63572,0,0 +156406,1745,0,63570,0,0 +156407,1746,0,63564,0,0 +156408,1747,0,63565,0,0 +156409,1748,0,63566,0,0 +156410,1749,0,63573,0,0 +156411,1750,0,63568,0,0 +156412,1751,0,63569,0,0 +156413,1752,0,63572,0,0 +156414,1753,0,63570,0,0 +156415,1754,0,63564,0,0 +156416,1755,0,63565,0,0 +156417,1756,0,63566,0,0 +156418,1757,0,63574,0,0 +156419,1758,0,63568,0,0 +156420,1759,0,63569,0,0 +156421,1760,0,63572,0,0 +156422,1761,0,63570,0,0 +156423,1764,0,63575,0,0 +156424,1766,0,63576,0,0 +156425,1767,0,63577,0,0 +156426,1768,0,63578,0,0 +156427,1769,0,63579,0,0 +156428,1770,0,63580,0,0 +156429,1772,0,63581,0,0 +156430,1774,0,63582,0,0 +156431,1775,0,63583,0,0 +156432,1776,0,63584,0,0 +156433,1777,0,63585,0,0 +156434,1778,0,63586,0,0 +156435,1780,0,63587,0,0 +156436,1782,0,63588,0,0 +156437,1783,0,63589,0,0 +156438,1784,0,63590,0,0 +156439,1785,0,63591,0,0 +156440,1786,0,63592,0,0 +156441,1787,0,63593,0,0 +156442,1788,0,63594,0,0 +156443,1789,0,63595,0,0 +156444,1790,0,63596,0,0 +156445,1791,0,63597,0,0 +156446,1792,0,63598,0,0 +156447,1793,0,63355,0,0 +156448,1794,0,63599,0,0 +156449,1795,0,63600,0,0 +156450,1796,0,63601,0,0 +156451,1797,0,63602,0,0 +156452,1798,0,63478,0,0 +156453,1799,0,63603,0,0 +156454,1800,0,63604,0,0 +156455,1801,0,63605,0,0 +156456,1802,0,63606,0,0 +156457,1803,0,63607,0,0 +156458,1804,0,63608,0,0 +156459,1805,0,63609,0,0 +156460,1806,0,63610,0,0 +156461,1807,0,63611,0,0 +156462,1808,0,63612,0,0 +156463,1809,0,63613,0,0 +156464,1810,0,63614,0,0 +156465,1811,0,63615,0,0 +156466,1812,0,63616,0,0 +156467,1813,0,63617,0,0 +156468,1814,0,63618,0,0 +156469,1815,0,63225,0,0 +156470,1816,0,63458,0,0 +156471,1817,0,63619,0,0 +156472,1818,0,63620,0,0 +156473,1819,0,63292,0,0 +156474,1820,0,63621,0,0 +156475,1821,0,63622,0,0 +156476,1822,0,63623,0,0 +156477,1823,0,63624,0,0 +156478,1824,0,63625,0,0 +156479,1825,0,63626,0,0 +156480,1826,0,63627,0,0 +156481,1827,0,63430,0,0 +156482,1828,0,63628,0,0 +156483,1829,0,63629,0,0 +156484,1830,0,63630,0,0 +156485,1831,0,63631,0,0 +156486,1832,0,63632,0,0 +156487,1835,0,63633,0,0 +156488,1836,0,63634,0,0 +156489,1839,0,63635,0,0 +156490,1840,0,63636,0,0 +156491,1843,0,63637,0,0 +156492,1844,0,63638,0,0 +156493,1845,0,63564,0,0 +156494,1846,0,63639,0,0 +156495,1849,0,63640,0,0 +156496,1850,0,63641,0,0 +156497,1852,0,63642,0,0 +156498,1853,0,63315,0,0 +156499,1893,0,63292,0,0 +156500,1895,0,63459,0,0 +156501,1896,0,63643,0,0 +156502,1897,0,63644,0,0 +156503,1899,0,63378,0,0 +156504,1900,0,63328,0,0 +156505,1901,0,63463,0,0 +156506,1902,0,63645,0,0 +156507,1903,0,63646,0,0 +156508,1904,0,63458,0,0 +156509,1905,0,63647,0,0 +156510,1906,0,63395,0,0 +156511,1907,0,63648,0,0 +156512,1908,0,63224,0,0 +156513,1909,0,63649,0,0 +156514,1910,0,63292,0,0 +156515,1911,0,63650,0,0 +156516,1913,0,63651,0,0 +156517,1917,0,63652,0,0 +156518,1925,0,63653,0,0 +156519,1926,0,63654,0,0 +156520,1927,0,63655,0,0 +156521,1928,0,63656,0,0 +156522,1929,0,63657,0,0 +156523,1930,0,63658,0,0 +156524,1933,0,63659,0,0 +156525,1934,0,63660,0,0 +156526,1935,0,63661,0,0 +156527,1936,0,63662,0,0 +156528,1937,0,63663,0,0 +156529,1938,0,63664,0,0 +156530,1943,0,63325,0,0 +156531,1944,0,63665,0,0 +156532,1945,0,63666,0,0 +156533,1951,0,63667,0,0 +156534,1955,0,63668,0,0 +156535,1957,0,63669,0,0 +156536,1958,0,63670,0,0 +156537,1959,0,63292,0,0 +156538,1961,0,63671,0,0 +156539,1965,0,63672,0,0 +156540,1974,0,63673,0,0 +156541,1975,0,63674,0,0 +156542,1976,0,63675,0,0 +156543,1978,0,63676,0,0 +156544,1979,0,63677,0,0 +156545,1981,0,63678,0,0 +156546,1982,0,63679,0,0 +156547,1983,0,63680,0,0 +156548,1984,0,63406,0,0 +156549,1985,0,63681,0,0 +156550,1986,0,63682,0,0 +156551,1988,0,63683,0,0 +156552,1990,0,63684,0,0 +156553,1991,0,63401,0,0 +156554,1992,0,63685,0,0 +156555,1994,0,63686,0,0 +156556,1997,0,63687,0,0 +156557,1998,0,63688,0,0 +156558,2000,0,63689,0,0 +156559,2011,0,63690,0,0 +156560,2013,0,63691,0,0 +156561,2014,0,63692,0,0 +156562,2015,0,63693,0,0 +156563,2016,0,63694,0,0 +156564,2017,0,63695,0,0 +156565,2018,0,63696,0,0 +156566,2020,0,63353,0,0 +156567,2021,0,63697,0,0 +156568,2023,0,63698,0,0 +156569,2024,0,63699,0,0 +156570,2025,0,63700,0,0 +156571,2026,0,63701,0,0 +156572,2027,0,63629,0,0 +156573,2028,0,63702,0,0 +156574,2029,0,63703,0,0 +156575,2030,0,63704,0,0 +156576,2032,0,63705,0,0 +156577,2033,0,63706,0,0 +156578,2034,0,63707,0,0 +156579,2035,0,63708,0,0 +156580,2036,0,63709,0,0 +156581,2037,0,63710,0,0 +156582,2040,0,63711,0,0 +156583,2041,0,63712,0,0 +156584,2042,0,63713,0,0 +156585,2044,0,63714,0,0 +156586,2046,0,63376,0,0 +156587,2047,0,63715,0,0 +156588,2048,0,63716,0,0 +156589,2051,0,63717,0,0 +156590,2052,0,63717,0,0 +156591,2053,0,63718,0,0 +156592,2054,0,63719,0,0 +156593,2055,0,63645,0,0 +156594,2056,0,63716,0,0 +156595,2057,0,63720,0,0 +156596,2058,0,63721,0,0 +156597,2059,0,63722,0,0 +156598,2064,0,63723,0,0 +156599,2065,0,63724,0,0 +156600,2066,0,63725,0,0 +156601,2067,0,63726,0,0 +156602,2069,0,63727,0,0 +156603,2072,0,63728,0,0 +156604,2073,0,63729,0,0 +156605,2074,0,63730,0,0 +156606,2075,0,63654,0,0 +156607,2077,0,63731,0,0 +156608,2078,0,63732,0,0 +156609,2079,0,63733,0,0 +156610,2080,0,63734,0,0 +156611,2081,0,63395,0,0 +156612,2084,0,63735,0,0 +156613,2087,0,63736,0,0 +156614,2088,0,63737,0,0 +156615,2089,0,63738,0,0 +156616,2092,0,63739,0,0 +156617,2098,0,63740,0,0 +156618,2099,0,63741,0,0 +156619,2100,0,63742,0,0 +156620,2105,0,63743,0,0 +156621,2108,0,63744,0,0 +156622,2109,0,63570,0,0 +156623,2110,0,63745,0,0 +156624,2112,0,63746,0,0 +156625,2114,0,63747,0,0 +156626,2117,0,63748,0,0 +156627,2119,0,63749,0,0 +156628,2120,0,63750,0,0 +156629,2121,0,63751,0,0 +156630,2122,0,63752,0,0 +156631,2123,0,63753,0,0 +156632,2124,0,63754,0,0 +156633,2125,0,63755,0,0 +156634,2126,0,63756,0,0 +156635,2127,0,63757,0,0 +156636,2129,0,63758,0,0 +156637,2130,0,63465,0,0 +156638,2131,0,63759,0,0 +156639,2132,0,63760,0,0 +156640,2134,0,63761,0,0 +156641,2137,0,63762,0,0 +156642,2138,0,63763,0,0 +156643,2139,0,63764,0,0 +156644,2140,0,63765,0,0 +156645,2141,0,63766,0,0 +156646,2142,0,63767,0,0 +156647,2143,0,63768,0,0 +156648,2144,0,63769,0,0 +156649,2145,0,63770,0,0 +156650,2146,0,63771,0,0 +156651,2147,0,63772,0,0 +156652,2148,0,63773,0,0 +156653,2149,0,63774,0,0 +156654,2150,0,63775,0,0 +156655,2151,0,63776,0,0 +156656,2152,0,63777,0,0 +156657,2153,0,63552,0,0 +156658,2156,0,63778,0,0 +156659,2158,0,63779,0,0 +156660,2159,0,63780,0,0 +156661,2160,0,63781,0,0 +156662,2163,0,63782,0,0 +156663,2164,0,63783,0,0 +156664,2165,0,63443,0,0 +156665,2166,0,63784,0,0 +156666,2167,0,63785,0,0 +156667,2168,0,63786,0,0 +156668,2169,0,63787,0,0 +156669,2172,0,63788,0,0 +156670,2173,0,63475,0,0 +156671,2175,0,63789,0,0 +156672,2176,0,63790,0,0 +156673,2177,0,63791,0,0 +156674,2178,0,63792,0,0 +156675,2179,0,63793,0,0 +156676,2180,0,63794,0,0 +156677,2181,0,63795,0,0 +156678,2182,0,63796,0,0 +156679,2183,0,63797,0,0 +156680,2184,0,63739,0,0 +156681,2186,0,63635,0,0 +156682,2189,0,63798,0,0 +156683,2194,0,63799,0,0 +156684,2195,0,63800,0,0 +156685,2196,0,63801,0,0 +156686,2197,0,63802,0,0 +156687,2198,0,63803,0,0 +156688,2199,0,63804,0,0 +156689,2200,0,63805,0,0 +156690,2201,0,63806,0,0 +156691,2202,0,63807,0,0 +156692,2203,0,63808,0,0 +156693,2204,0,63809,0,0 +156694,2205,0,63810,0,0 +156695,2207,0,63811,0,0 +156696,2208,0,63812,0,0 +156697,2209,0,63813,0,0 +156698,2210,0,63814,0,0 +156699,2211,0,63815,0,0 +156700,2212,0,63816,0,0 +156701,2213,0,63717,0,0 +156702,2214,0,63817,0,0 +156703,2215,0,63818,0,0 +156704,2216,0,63819,0,0 +156705,2217,0,63820,0,0 +156706,2218,0,63821,0,0 +156707,2219,0,63822,0,0 +156708,2220,0,63823,0,0 +156709,2221,0,63824,0,0 +156710,2222,0,63681,0,0 +156711,2224,0,63800,0,0 +156712,2225,0,63825,0,0 +156713,2226,0,63826,0,0 +156714,2227,0,63827,0,0 +156715,2230,0,63828,0,0 +156716,2231,0,63829,0,0 +156717,2232,0,63830,0,0 +156718,2233,0,63831,0,0 +156719,2234,0,63832,0,0 +156720,2235,0,63833,0,0 +156721,2236,0,63834,0,0 +156722,2237,0,63835,0,0 +156723,2238,0,63836,0,0 +156724,2240,0,63837,0,0 +156725,2241,0,63838,0,0 +156726,2243,0,63839,0,0 +156727,2244,0,63840,0,0 +156728,2245,0,63841,0,0 +156729,2248,0,63842,0,0 +156730,2249,0,63671,0,0 +156731,2254,0,63843,0,0 +156732,2256,0,63844,0,0 +156733,2257,0,63845,0,0 +156734,2258,0,63389,0,0 +156735,2259,0,63846,0,0 +156736,2260,0,63847,0,0 +156737,2263,0,63848,0,0 +156738,2264,0,63849,0,0 +156739,2265,0,63850,0,0 +156740,2266,0,63851,0,0 +156741,2267,0,63329,0,0 +156742,2268,0,63852,0,0 +156743,2271,0,63853,0,0 +156744,2273,0,63854,0,0 +156745,2274,0,63279,0,0 +156746,2276,0,63855,0,0 +156747,2277,0,63856,0,0 +156748,2278,0,63857,0,0 +156749,2280,0,63858,0,0 +156750,2281,0,63850,0,0 +156751,2282,0,63859,0,0 +156752,2283,0,63860,0,0 +156753,2284,0,63424,0,0 +156754,2291,0,63861,0,0 +156755,2292,0,63862,0,0 +156756,2299,0,63863,0,0 +156757,2300,0,63864,0,0 +156758,2301,0,63865,0,0 +156759,2302,0,63320,0,0 +156760,2303,0,63322,0,0 +156761,2307,0,63866,0,0 +156762,2308,0,63867,0,0 +156763,2309,0,63868,0,0 +156764,2310,0,63869,0,0 +156765,2311,0,63870,0,0 +156766,2312,0,63871,0,0 +156767,2314,0,63872,0,0 +156768,2315,0,63873,0,0 +156769,2316,0,63837,0,0 +156770,2317,0,63874,0,0 +156771,2326,0,63875,0,0 +156772,2327,0,63876,0,0 +156773,2361,0,63877,0,0 +156774,2362,0,63878,0,0 +156775,2364,0,63879,0,0 +156776,2366,0,63880,0,0 +156777,2367,0,63881,0,0 +156778,2369,0,63882,0,0 +156779,2370,0,63883,0,0 +156780,2371,0,63884,0,0 +156781,2372,0,63885,0,0 +156782,2373,0,63886,0,0 +156783,2374,0,63887,0,0 +156784,2375,0,63888,0,0 +156785,2376,0,63889,0,0 +156786,2379,0,63570,0,0 +156787,2380,0,63564,0,0 +156788,2381,0,63569,0,0 +156789,2383,0,63565,0,0 +156790,2384,0,63566,0,0 +156791,2385,0,63568,0,0 +156792,2386,0,63890,0,0 +156793,2387,0,63564,0,0 +156794,2388,0,63784,0,0 +156795,2389,0,63891,0,0 +156796,2390,0,63892,0,0 +156797,2391,0,63491,0,0 +156798,2392,0,63893,0,0 +156799,2393,0,63564,0,0 +156800,2394,0,63569,0,0 +156801,2395,0,63565,0,0 +156802,2396,0,63566,0,0 +156803,2397,0,63894,0,0 +156804,2398,0,63694,0,0 +156805,2399,0,63564,0,0 +156806,2400,0,63784,0,0 +156807,2401,0,63891,0,0 +156808,2402,0,63892,0,0 +156809,2403,0,63491,0,0 +156810,2410,0,63395,0,0 +156811,2417,0,63895,0,0 +156812,2418,0,63896,0,0 +156813,2419,0,63897,0,0 +156814,2420,0,63898,0,0 +156815,2421,0,63899,0,0 +156816,2422,0,63900,0,0 +156817,2423,0,63901,0,0 +156818,2424,0,63902,0,0 +156819,2425,0,63903,0,0 +156820,2426,0,63904,0,0 +156821,2427,0,63905,0,0 +156822,2428,0,63906,0,0 +156823,2429,0,63907,0,0 +156824,2431,0,63908,0,0 +156825,2432,0,63909,0,0 +156826,2434,0,63910,0,0 +156827,2435,0,63911,0,0 +156828,2437,0,63912,0,0 +156829,2438,0,63913,0,0 +156830,2440,0,63914,0,0 +156831,2445,0,63915,0,0 +156832,2446,0,63916,0,0 +156833,2448,0,63917,0,0 +156834,2451,0,63918,0,0 +156835,2463,0,63919,0,0 +156836,2464,0,63920,0,0 +156837,2465,0,63921,0,0 +156838,2467,0,63922,0,0 +156839,2468,0,63923,0,0 +156840,2469,0,63924,0,0 +156841,2470,0,63925,0,0 +156842,2471,0,63926,0,0 +156843,2472,0,63927,0,0 +156844,2473,0,63928,0,0 +156845,2474,0,63929,0,0 +156846,2475,0,63930,0,0 +156847,2479,0,63931,0,0 +156848,2480,0,63932,0,0 +156849,2488,0,63223,0,0 +156850,2489,0,63680,0,0 +156851,2490,0,63458,0,0 +156852,2491,0,63933,0,0 +156853,2492,0,63934,0,0 +156854,2493,0,63935,0,0 +156855,2494,0,63936,0,0 +156856,2495,0,63937,0,0 +156857,2504,0,63938,0,0 +156858,2505,0,63939,0,0 +156859,2506,0,63940,0,0 +156860,2507,0,63941,0,0 +156861,2508,0,63942,0,0 +156862,2509,0,63943,0,0 +156863,2510,0,63942,0,0 +156864,2511,0,63944,0,0 +156865,2512,0,63945,0,0 +156866,2515,0,63945,0,0 +156867,2516,0,63946,0,0 +156868,2519,0,63946,0,0 +156869,2520,0,63947,0,0 +156870,2521,0,63948,0,0 +156871,2522,0,63949,0,0 +156872,2523,0,63950,0,0 +156873,2524,0,63951,0,0 +156874,2525,0,63952,0,0 +156875,2526,0,63953,0,0 +156876,2527,0,63954,0,0 +156877,2528,0,63772,0,0 +156878,2529,0,63955,0,0 +156879,2530,0,63956,0,0 +156880,2531,0,63957,0,0 +156881,2532,0,63958,0,0 +156882,2533,0,63959,0,0 +156883,2534,0,63960,0,0 +156884,2535,0,63961,0,0 +156885,2543,0,63598,0,0 +156886,2545,0,63962,0,0 +156887,2546,0,63963,0,0 +156888,2547,0,63568,0,0 +156889,2549,0,63964,0,0 +156890,2550,0,63938,0,0 +156891,2551,0,63965,0,0 +156892,2552,0,63943,0,0 +156893,2557,0,63966,0,0 +156894,2558,0,63967,0,0 +156895,2559,0,63968,0,0 +156896,2562,0,63969,0,0 +156897,2564,0,63970,0,0 +156898,2565,0,63971,0,0 +156899,2566,0,63972,0,0 +156900,2567,0,63973,0,0 +156901,2568,0,63974,0,0 +156902,2569,0,63975,0,0 +156903,2570,0,63576,0,0 +156904,2571,0,63976,0,0 +156905,2572,0,63977,0,0 +156906,2575,0,63978,0,0 +156907,2576,0,63979,0,0 +156908,2577,0,63980,0,0 +156909,2578,0,63981,0,0 +156910,2579,0,63982,0,0 +156911,2580,0,63983,0,0 +156912,2582,0,63984,0,0 +156913,2583,0,63985,0,0 +156914,2584,0,63986,0,0 +156915,2585,0,63987,0,0 +156916,2586,0,63988,0,0 +156917,2587,0,63989,0,0 +156918,2612,0,63990,0,0 +156919,2613,0,63991,0,0 +156920,2614,0,63992,0,0 +156921,2615,0,63993,0,0 +156922,2616,0,63994,0,0 +156923,2617,0,63995,0,0 +156924,2618,0,63996,0,0 +156925,2620,0,63997,0,0 +156926,2621,0,63998,0,0 +156927,2622,0,63999,0,0 +156928,2623,0,64000,0,0 +156929,2624,0,64001,0,0 +156930,2632,0,64002,0,0 +156931,2635,0,63564,0,0 +156932,2642,0,63565,0,0 +156933,2643,0,63566,0,0 +156934,2644,0,64003,0,0 +156935,2645,0,63568,0,0 +156936,2646,0,63569,0,0 +156937,2648,0,63570,0,0 +156938,2649,0,63564,0,0 +156939,2650,0,63565,0,0 +156940,2651,0,63566,0,0 +156941,2652,0,64004,0,0 +156942,2653,0,63568,0,0 +156943,2654,0,63569,0,0 +156944,2656,0,63570,0,0 +156945,2664,0,64005,0,0 +156946,2690,0,64006,0,0 +156947,2691,0,63565,0,0 +156948,2694,0,64007,0,0 +156949,2695,0,63465,0,0 +156950,2703,0,64008,0,0 +156951,2704,0,64009,0,0 +156952,2705,0,64010,0,0 +156953,2706,0,64011,0,0 +156954,2707,0,64012,0,0 +156955,2708,0,64013,0,0 +156956,2709,0,64014,0,0 +156957,2710,0,63969,0,0 +156958,2711,0,63291,0,0 +156959,2714,0,64015,0,0 +156960,2715,0,64016,0,0 +156961,2716,0,64017,0,0 +156962,2717,0,64018,0,0 +156963,2718,0,64019,0,0 +156964,2721,0,64020,0,0 +156965,2754,0,64021,0,0 +156966,2763,0,63762,0,0 +156967,2764,0,63652,0,0 +156968,2765,0,64022,0,0 +156969,2766,0,64023,0,0 +156970,2773,0,64024,0,0 +156971,2774,0,64025,0,0 +156972,2777,0,64026,0,0 +156973,2778,0,64025,0,0 +156974,2780,0,64027,0,0 +156975,2781,0,64028,0,0 +156976,2782,0,64029,0,0 +156977,2783,0,64030,0,0 +156978,2785,0,64031,0,0 +156979,2786,0,64032,0,0 +156980,2787,0,64033,0,0 +156981,2800,0,64034,0,0 +156982,2801,0,64035,0,0 +156983,2805,0,64036,0,0 +156984,2807,0,64037,0,0 +156985,2809,0,63651,0,0 +156986,2810,0,64038,0,0 +156987,2813,0,64039,0,0 +156988,2815,0,64040,0,0 +156989,2816,0,64041,0,0 +156990,2817,0,64042,0,0 +156991,2818,0,64043,0,0 +156992,2819,0,64044,0,0 +156993,2821,0,64045,0,0 +156994,2822,0,64046,0,0 +156995,2823,0,64047,0,0 +156996,2824,0,64048,0,0 +156997,2825,0,64049,0,0 +156998,2827,0,63430,0,0 +156999,2844,0,63366,0,0 +157000,2845,0,64050,0,0 +157001,2847,0,64051,0,0 +157002,2848,0,64052,0,0 +157003,2849,0,64053,0,0 +157004,2850,0,63459,0,0 +157005,2851,0,64054,0,0 +157006,2852,0,64055,0,0 +157007,2853,0,64056,0,0 +157008,2854,0,64057,0,0 +157009,2857,0,64058,0,0 +157010,2864,0,64059,0,0 +157011,2865,0,64060,0,0 +157012,2866,0,64061,0,0 +157013,2867,0,64056,0,0 +157014,2868,0,64062,0,0 +157015,2869,0,64063,0,0 +157016,2870,0,64064,0,0 +157017,2877,0,64065,0,0 +157018,2878,0,64066,0,0 +157019,2879,0,64067,0,0 +157020,2884,0,64068,0,0 +157021,2898,0,64069,0,0 +157022,2899,0,64070,0,0 +157023,2900,0,64071,0,0 +157024,2901,0,63286,0,0 +157025,2902,0,64072,0,0 +157026,2903,0,64073,0,0 +157027,2904,0,64074,0,0 +157028,2905,0,63596,0,0 +157029,2906,0,63962,0,0 +157030,2907,0,64075,0,0 +157031,2908,0,64076,0,0 +157032,2910,0,64077,0,0 +157033,2911,0,64078,0,0 +157034,2912,0,64079,0,0 +157035,2913,0,64080,0,0 +157036,2915,0,64081,0,0 +157037,2916,0,64082,0,0 +157038,2941,0,64083,0,0 +157039,2942,0,64084,0,0 +157040,2943,0,64085,0,0 +157041,2944,0,64086,0,0 +157042,2946,0,64087,0,0 +157043,2947,0,64088,0,0 +157044,2949,0,64089,0,0 +157045,2950,0,64090,0,0 +157046,2952,0,64091,0,0 +157047,2953,0,64092,0,0 +157048,2954,0,64093,0,0 +157049,2955,0,64094,0,0 +157050,2957,0,64095,0,0 +157051,2958,0,64096,0,0 +157052,2959,0,64097,0,0 +157053,2960,0,64098,0,0 +157054,2961,0,64099,0,0 +157055,2962,0,64100,0,0 +157056,2963,0,64101,0,0 +157057,2964,0,64102,0,0 +157058,2965,0,64103,0,0 +157059,2966,0,64104,0,0 +157060,2967,0,64105,0,0 +157061,2968,0,64106,0,0 +157062,2969,0,64107,0,0 +157063,2970,0,64108,0,0 +157064,2971,0,64109,0,0 +157065,2972,0,64110,0,0 +157066,2973,0,64111,0,0 +157067,2974,0,64112,0,0 +157068,2975,0,64113,0,0 +157069,2976,0,64114,0,0 +157070,2977,0,63694,0,0 +157071,2978,0,63784,0,0 +157072,2979,0,63891,0,0 +157073,2980,0,64115,0,0 +157074,2981,0,64116,0,0 +157075,2982,0,64117,0,0 +157076,2983,0,64118,0,0 +157077,2984,0,64119,0,0 +157078,2985,0,64120,0,0 +157079,2986,0,64121,0,0 +157080,2987,0,64122,0,0 +157081,2988,0,64123,0,0 +157082,2989,0,64124,0,0 +157083,2990,0,64125,0,0 +157084,2991,0,64126,0,0 +157085,2992,0,64127,0,0 +157086,3000,0,64128,0,0 +157087,3008,0,63867,0,0 +157088,3011,0,64129,0,0 +157089,3018,0,64130,0,0 +157090,3019,0,64131,0,0 +157091,3020,0,64132,0,0 +157092,3021,0,64133,0,0 +157093,3022,0,64134,0,0 +157094,3023,0,64135,0,0 +157095,3024,0,64136,0,0 +157096,3025,0,64137,0,0 +157097,3026,0,64138,0,0 +157098,3027,0,64139,0,0 +157099,3028,0,63938,0,0 +157100,3030,0,63945,0,0 +157101,3033,0,63946,0,0 +157102,3036,0,64140,0,0 +157103,3037,0,64141,0,0 +157104,3038,0,64026,0,0 +157105,3039,0,64142,0,0 +157106,3040,0,64143,0,0 +157107,3041,0,64144,0,0 +157108,3042,0,64145,0,0 +157109,3043,0,63945,0,0 +157110,3045,0,64146,0,0 +157111,3047,0,64147,0,0 +157112,3048,0,64148,0,0 +157113,3049,0,64149,0,0 +157114,3053,0,64150,0,0 +157115,3055,0,64151,0,0 +157116,3056,0,64152,0,0 +157117,3057,0,64153,0,0 +157118,3058,0,64154,0,0 +157119,3065,0,64155,0,0 +157120,3066,0,63265,0,0 +157121,3067,0,63263,0,0 +157122,3069,0,64156,0,0 +157123,3070,0,64157,0,0 +157124,3071,0,64158,0,0 +157125,3072,0,64159,0,0 +157126,3073,0,64160,0,0 +157127,3074,0,64161,0,0 +157128,3075,0,63391,0,0 +157129,3076,0,64162,0,0 +157130,3078,0,64163,0,0 +157131,3079,0,64028,0,0 +157132,3103,0,64164,0,0 +157133,3104,0,64165,0,0 +157134,3105,0,64165,0,0 +157135,3106,0,64165,0,0 +157136,3107,0,64166,0,0 +157137,3108,0,64167,0,0 +157138,3111,0,64168,0,0 +157139,3131,0,64169,0,0 +157140,3135,0,64170,0,0 +157141,3137,0,64171,0,0 +157142,3145,0,64172,0,0 +157143,3151,0,64150,0,0 +157144,3152,0,64173,0,0 +157145,3153,0,64174,0,0 +157146,3154,0,64175,0,0 +157147,3158,0,63636,0,0 +157148,3160,0,64176,0,0 +157149,3161,0,64177,0,0 +157150,3166,0,64178,0,0 +157151,3184,0,64179,0,0 +157152,3185,0,64180,0,0 +157153,3186,0,64181,0,0 +157154,3187,0,64182,0,0 +157155,3188,0,64183,0,0 +157156,3189,0,64184,0,0 +157157,3190,0,63403,0,0 +157158,3191,0,64185,0,0 +157159,3192,0,64186,0,0 +157160,3193,0,64187,0,0 +157161,3194,0,64188,0,0 +157162,3195,0,64189,0,0 +157163,3196,0,64190,0,0 +157164,3197,0,64191,0,0 +157165,3198,0,64192,0,0 +157166,3199,0,64193,0,0 +157167,3200,0,64194,0,0 +157168,3201,0,64195,0,0 +157169,3202,0,64196,0,0 +157170,3203,0,64197,0,0 +157171,3204,0,64198,0,0 +157172,3205,0,64199,0,0 +157173,3206,0,64200,0,0 +157174,3207,0,64201,0,0 +157175,3208,0,64202,0,0 +157176,3209,0,64203,0,0 +157177,3210,0,64204,0,0 +157178,3211,0,64205,0,0 +157179,3212,0,64206,0,0 +157180,3213,0,63892,0,0 +157181,3214,0,64207,0,0 +157182,3216,0,64208,0,0 +157183,3217,0,64209,0,0 +157184,3222,0,64210,0,0 +157185,3223,0,64211,0,0 +157186,3224,0,64212,0,0 +157187,3225,0,63762,0,0 +157188,3227,0,64213,0,0 +157189,3228,0,64214,0,0 +157190,3229,0,64215,0,0 +157191,3230,0,64216,0,0 +157192,3231,0,64217,0,0 +157193,3260,0,64218,0,0 +157194,3261,0,64219,0,0 +157195,3262,0,64220,0,0 +157196,3263,0,64221,0,0 +157197,3267,0,64222,0,0 +157198,3268,0,63800,0,0 +157199,3269,0,64223,0,0 +157200,3270,0,64224,0,0 +157201,3272,0,64225,0,0 +157202,3273,0,64069,0,0 +157203,3274,0,64226,0,0 +157204,3275,0,64227,0,0 +157205,3276,0,64228,0,0 +157206,3277,0,64229,0,0 +157207,3278,0,63840,0,0 +157208,3279,0,64230,0,0 +157209,3280,0,64231,0,0 +157210,3281,0,64232,0,0 +157211,3282,0,64233,0,0 +157212,3283,0,64234,0,0 +157213,3284,0,64235,0,0 +157214,3285,0,64194,0,0 +157215,3286,0,64236,0,0 +157216,3287,0,64237,0,0 +157217,3288,0,64238,0,0 +157218,3289,0,64239,0,0 +157219,3290,0,64240,0,0 +157220,3291,0,64241,0,0 +157221,3292,0,64242,0,0 +157222,3293,0,63703,0,0 +157223,3294,0,63465,0,0 +157224,3295,0,63459,0,0 +157225,3296,0,63739,0,0 +157226,3302,0,64243,0,0 +157227,3303,0,64244,0,0 +157228,3304,0,64245,0,0 +157229,3305,0,64246,0,0 +157230,3306,0,64247,0,0 +157231,3307,0,64248,0,0 +157232,3308,0,64249,0,0 +157233,3309,0,64250,0,0 +157234,3310,0,64251,0,0 +157235,3311,0,64252,0,0 +157236,3312,0,64253,0,0 +157237,3313,0,64254,0,0 +157238,3314,0,64255,0,0 +157239,3315,0,64256,0,0 +157240,3319,0,63328,0,0 +157241,3320,0,64257,0,0 +157242,3321,0,63581,0,0 +157243,3322,0,64258,0,0 +157244,3323,0,64259,0,0 +157245,3324,0,64260,0,0 +157246,3325,0,64261,0,0 +157247,3326,0,64262,0,0 +157248,3327,0,64263,0,0 +157249,3328,0,64264,0,0 +157250,3329,0,63465,0,0 +157251,3330,0,64265,0,0 +157252,3331,0,64266,0,0 +157253,3332,0,63668,0,0 +157254,3334,0,63401,0,0 +157255,3335,0,64267,0,0 +157256,3336,0,63851,0,0 +157257,3341,0,63327,0,0 +157258,3342,0,64268,0,0 +157259,3344,0,64269,0,0 +157260,3345,0,64270,0,0 +157261,3346,0,63401,0,0 +157262,3350,0,63670,0,0 +157263,3351,0,64271,0,0 +157264,3359,0,63465,0,0 +157265,3360,0,64272,0,0 +157266,3361,0,63410,0,0 +157267,3362,0,64267,0,0 +157268,3363,0,64273,0,0 +157269,3364,0,64274,0,0 +157270,3365,0,64275,0,0 +157271,3366,0,64035,0,0 +157272,3367,0,63508,0,0 +157273,3368,0,64276,0,0 +157274,3370,0,64277,0,0 +157275,3373,0,64278,0,0 +157276,3374,0,64279,0,0 +157277,3375,0,64280,0,0 +157278,3376,0,64281,0,0 +157279,3377,0,64282,0,0 +157280,3378,0,64283,0,0 +157281,3379,0,64284,0,0 +157282,3380,0,64285,0,0 +157283,3381,0,64286,0,0 +157284,3392,0,64287,0,0 +157285,3398,0,64288,0,0 +157286,3400,0,63364,0,0 +157287,3413,0,64289,0,0 +157288,3414,0,64052,0,0 +157289,3415,0,64290,0,0 +157290,3416,0,64265,0,0 +157291,3417,0,64291,0,0 +157292,3419,0,64014,0,0 +157293,3420,0,64292,0,0 +157294,3421,0,64013,0,0 +157295,3422,0,64293,0,0 +157296,3423,0,64294,0,0 +157297,3424,0,64295,0,0 +157298,3426,0,64296,0,0 +157299,3427,0,64297,0,0 +157300,3428,0,63989,0,0 +157301,3429,0,64298,0,0 +157302,3430,0,64299,0,0 +157303,3431,0,64300,0,0 +157304,3432,0,64301,0,0 +157305,3433,0,64302,0,0 +157306,3435,0,64303,0,0 +157307,3437,0,63635,0,0 +157308,3439,0,64304,0,0 +157309,3440,0,64305,0,0 +157310,3442,0,64306,0,0 +157311,3443,0,63458,0,0 +157312,3444,0,64307,0,0 +157313,3445,0,64308,0,0 +157314,3446,0,64309,0,0 +157315,3447,0,64310,0,0 +157316,3449,0,64311,0,0 +157317,3450,0,64312,0,0 +157318,3451,0,64313,0,0 +157319,3452,0,64314,0,0 +157320,3453,0,64315,0,0 +157321,3454,0,64316,0,0 +157322,3455,0,64317,0,0 +157323,3457,0,64318,0,0 +157324,3458,0,64319,0,0 +157325,3461,0,64320,0,0 +157326,3462,0,64321,0,0 +157327,3463,0,64322,0,0 +157328,3464,0,63945,0,0 +157329,3465,0,63946,0,0 +157330,3469,0,64323,0,0 +157331,3471,0,64324,0,0 +157332,3472,0,64325,0,0 +157333,3473,0,64326,0,0 +157334,3474,0,64327,0,0 +157335,3475,0,64328,0,0 +157336,3479,0,64329,0,0 +157337,3480,0,64330,0,0 +157338,3481,0,64331,0,0 +157339,3482,0,64332,0,0 +157340,3483,0,64333,0,0 +157341,3484,0,64334,0,0 +157342,3485,0,64335,0,0 +157343,3487,0,64336,0,0 +157344,3488,0,64337,0,0 +157345,3489,0,64338,0,0 +157346,3490,0,64023,0,0 +157347,3491,0,64339,0,0 +157348,3492,0,64340,0,0 +157349,3493,0,64341,0,0 +157350,3494,0,64342,0,0 +157351,3511,0,64343,0,0 +157352,3528,0,64344,0,0 +157353,3532,0,63557,0,0 +157354,3533,0,64345,0,0 +157355,3534,0,64346,0,0 +157356,3535,0,64347,0,0 +157357,3537,0,64348,0,0 +157358,3539,0,64349,0,0 +157359,3541,0,64350,0,0 +157360,3543,0,64351,0,0 +157361,3545,0,64352,0,0 +157362,3547,0,64353,0,0 +157363,3548,0,64354,0,0 +157364,3549,0,64355,0,0 +157365,3555,0,64356,0,0 +157366,3556,0,64357,0,0 +157367,3557,0,64358,0,0 +157368,3558,0,64359,0,0 +157369,3559,0,64360,0,0 +157370,3560,0,64361,0,0 +157371,3561,0,64362,0,0 +157372,3562,0,64363,0,0 +157373,3563,0,64364,0,0 +157374,3565,0,64365,0,0 +157375,3566,0,64366,0,0 +157376,3567,0,64367,0,0 +157377,3569,0,64368,0,0 +157378,3570,0,63457,0,0 +157379,3571,0,64369,0,0 +157380,3572,0,63622,0,0 +157381,3578,0,64370,0,0 +157382,3579,0,64371,0,0 +157383,3581,0,64372,0,0 +157384,3582,0,64373,0,0 +157385,3583,0,64374,0,0 +157386,3585,0,64375,0,0 +157387,3586,0,64376,0,0 +157388,3587,0,64377,0,0 +157389,3588,0,64378,0,0 +157390,3589,0,64379,0,0 +157391,3590,0,64380,0,0 +157392,3591,0,64381,0,0 +157393,3592,0,64382,0,0 +157394,3593,0,64383,0,0 +157395,3594,0,64384,0,0 +157396,3595,0,64385,0,0 +157397,3596,0,64386,0,0 +157398,3597,0,64387,0,0 +157399,3598,0,64388,0,0 +157400,3599,0,64389,0,0 +157401,3600,0,64390,0,0 +157402,3602,0,64391,0,0 +157403,3603,0,64392,0,0 +157404,3606,0,64393,0,0 +157405,3607,0,64394,0,0 +157406,3641,0,64395,0,0 +157407,3642,0,64396,0,0 +157408,3643,0,64397,0,0 +157409,3644,0,64398,0,0 +157410,3645,0,64399,0,0 +157411,3647,0,64400,0,0 +157412,3649,0,64401,0,0 +157413,3650,0,64402,0,0 +157414,3651,0,64403,0,0 +157415,3652,0,64404,0,0 +157416,3653,0,64405,0,0 +157417,3654,0,63669,0,0 +157418,3655,0,64406,0,0 +157419,3656,0,64407,0,0 +157420,3661,0,64408,0,0 +157421,3694,0,63806,0,0 +157422,3695,0,63804,0,0 +157423,3696,0,64409,0,0 +157424,3697,0,63803,0,0 +157425,3698,0,63805,0,0 +157426,3699,0,64410,0,0 +157427,3719,0,64411,0,0 +157428,3732,0,64412,0,0 +157429,3733,0,64413,0,0 +157430,3738,0,64414,0,0 +157431,3740,0,63376,0,0 +157432,3741,0,64415,0,0 +157433,3742,0,64416,0,0 +157434,3743,0,63718,0,0 +157435,3747,0,64417,0,0 +157436,3748,0,64418,0,0 +157437,3749,0,64419,0,0 +157438,3750,0,64420,0,0 +157439,3751,0,64421,0,0 +157440,3752,0,64422,0,0 +157441,3753,0,64423,0,0 +157442,3754,0,64424,0,0 +157443,3755,0,64425,0,0 +157444,3756,0,64018,0,0 +157445,3757,0,64017,0,0 +157446,3758,0,63564,0,0 +157447,3759,0,64426,0,0 +157448,3761,0,64427,0,0 +157449,3763,0,64428,0,0 +157450,3764,0,64429,0,0 +157451,3765,0,64430,0,0 +157452,3774,0,64431,0,0 +157453,3778,0,64432,0,0 +157454,3779,0,64433,0,0 +157455,3780,0,64030,0,0 +157456,3781,0,64434,0,0 +157457,3782,0,63721,0,0 +157458,3783,0,64435,0,0 +157459,3784,0,64436,0,0 +157460,3785,0,64037,0,0 +157461,3786,0,64437,0,0 +157462,3787,0,64438,0,0 +157463,3792,0,64439,0,0 +157464,3793,0,64440,0,0 +157465,3794,0,64441,0,0 +157466,3795,0,63576,0,0 +157467,3796,0,64442,0,0 +157468,3797,0,64443,0,0 +157469,3798,0,64444,0,0 +157470,3799,0,64445,0,0 +157471,3800,0,64446,0,0 +157472,3801,0,64447,0,0 +157473,3802,0,64448,0,0 +157474,3803,0,64449,0,0 +157475,3804,0,64450,0,0 +157476,3805,0,64451,0,0 +157477,3806,0,64452,0,0 +157478,3807,0,64453,0,0 +157479,3808,0,63564,0,0 +157480,3809,0,63565,0,0 +157481,3810,0,63566,0,0 +157482,3811,0,64454,0,0 +157483,3812,0,63568,0,0 +157484,3813,0,63569,0,0 +157485,3814,0,63572,0,0 +157486,3815,0,63570,0,0 +157487,3816,0,64455,0,0 +157488,3817,0,64071,0,0 +157489,3822,0,64456,0,0 +157490,3833,0,64457,0,0 +157491,3834,0,64458,0,0 +157492,3835,0,64459,0,0 +157493,3836,0,64460,0,0 +157494,3837,0,64461,0,0 +157495,3840,0,64462,0,0 +157496,3841,0,64463,0,0 +157497,3842,0,64464,0,0 +157498,3843,0,64465,0,0 +157499,3844,0,64466,0,0 +157500,3845,0,64467,0,0 +157501,3846,0,64468,0,0 +157502,3847,0,64469,0,0 +157503,3848,0,64470,0,0 +157504,3849,0,64471,0,0 +157505,3850,0,64472,0,0 +157506,3851,0,64473,0,0 +157507,3852,0,64474,0,0 +157508,3853,0,64475,0,0 +157509,3854,0,64476,0,0 +157510,3855,0,64477,0,0 +157511,3856,0,64478,0,0 +157512,3865,0,64479,0,0 +157513,3889,0,64480,0,0 +157514,3890,0,64481,0,0 +157515,3891,0,64482,0,0 +157516,3892,0,64483,0,0 +157517,3893,0,64484,0,0 +157518,3894,0,64485,0,0 +157519,3895,0,64486,0,0 +157520,3896,0,64487,0,0 +157521,3902,0,64488,0,0 +157522,3935,0,63793,0,0 +157523,3936,0,64489,0,0 +157524,3937,0,64490,0,0 +157525,3938,0,64491,0,0 +157526,3939,0,64362,0,0 +157527,3940,0,64492,0,0 +157528,3941,0,64493,0,0 +157529,3942,0,64494,0,0 +157530,3943,0,64495,0,0 +157531,3944,0,64496,0,0 +157532,3945,0,64155,0,0 +157533,3946,0,64497,0,0 +157534,3947,0,64498,0,0 +157535,3948,0,64499,0,0 +157536,3949,0,64500,0,0 +157537,3950,0,64501,0,0 +157538,3951,0,64502,0,0 +157539,3952,0,64503,0,0 +157540,3953,0,64504,0,0 +157541,3954,0,64505,0,0 +157542,3955,0,64506,0,0 +157543,3956,0,64507,0,0 +157544,3957,0,64508,0,0 +157545,3958,0,64509,0,0 +157546,3959,0,64510,0,0 +157547,3961,0,64511,0,0 +157548,3962,0,64512,0,0 +157549,3963,0,64513,0,0 +157550,3964,0,64411,0,0 +157551,3965,0,64514,0,0 +157552,3966,0,64515,0,0 +157553,3967,0,64516,0,0 +157554,3968,0,64517,0,0 +157555,3969,0,64518,0,0 +157556,3970,0,64519,0,0 +157557,3971,0,64520,0,0 +157558,3972,0,64521,0,0 +157559,3973,0,64522,0,0 +157560,3974,0,64523,0,0 +157561,3975,0,64524,0,0 +157562,3976,0,64525,0,0 +157563,3977,0,64526,0,0 +157564,3978,0,64527,0,0 +157565,3979,0,64528,0,0 +157566,3980,0,64529,0,0 +157567,3981,0,64530,0,0 +157568,3982,0,64531,0,0 +157569,3983,0,64532,0,0 +157570,3984,0,64533,0,0 +157571,3985,0,64534,0,0 +157572,3986,0,64535,0,0 +157573,3987,0,64536,0,0 +157574,3988,0,64537,0,0 +157575,3989,0,64538,0,0 +157576,3990,0,64539,0,0 +157577,3991,0,64540,0,0 +157578,3992,0,64541,0,0 +157579,3993,0,64542,0,0 +157580,3994,0,64543,0,0 +157581,3995,0,64544,0,0 +157582,3996,0,64545,0,0 +157583,3997,0,64546,0,0 +157584,3998,0,64547,0,0 +157585,3999,0,64548,0,0 +157586,4000,0,64549,0,0 +157587,4001,0,64550,0,0 +157588,4002,0,64056,0,0 +157589,4003,0,64498,0,0 +157590,4004,0,64551,0,0 +157591,4005,0,64060,0,0 +157592,4006,0,64217,0,0 +157593,4007,0,64552,0,0 +157594,4008,0,64553,0,0 +157595,4009,0,64332,0,0 +157596,4010,0,64554,0,0 +157597,4011,0,64555,0,0 +157598,4012,0,64556,0,0 +157599,4013,0,64557,0,0 +157600,4014,0,64331,0,0 +157601,4015,0,64063,0,0 +157602,4017,0,64471,0,0 +157603,4018,0,64558,0,0 +157604,4019,0,63719,0,0 +157605,4020,0,64559,0,0 +157606,4021,0,63624,0,0 +157607,4022,0,64560,0,0 +157608,4023,0,64561,0,0 +157609,4024,0,64562,0,0 +157610,4025,0,64563,0,0 +157611,4026,0,64564,0,0 +157612,4035,0,64565,0,0 +157613,4036,0,64566,0,0 +157614,4037,0,64567,0,0 +157615,4038,0,64568,0,0 +157616,4039,0,63427,0,0 +157617,4040,0,64569,0,0 +157618,4041,0,64570,0,0 +157619,4042,0,64571,0,0 +157620,4043,0,64572,0,0 +157621,4044,0,64573,0,0 +157622,4045,0,64574,0,0 +157623,4046,0,64575,0,0 +157624,4047,0,64576,0,0 +157625,4048,0,64577,0,0 +157626,4049,0,64578,0,0 +157627,4050,0,64579,0,0 +157628,4051,0,64580,0,0 +157629,4052,0,64581,0,0 +157630,4054,0,64582,0,0 +157631,4055,0,64583,0,0 +157632,4057,0,64584,0,0 +157633,4058,0,64585,0,0 +157634,4059,0,64586,0,0 +157635,4060,0,64587,0,0 +157636,4061,0,64588,0,0 +157637,4062,0,64589,0,0 +157638,4063,0,64590,0,0 +157639,4064,0,64591,0,0 +157640,4065,0,64592,0,0 +157641,4066,0,64593,0,0 +157642,4067,0,64428,0,0 +157643,4068,0,64594,0,0 +157644,4069,0,64595,0,0 +157645,4070,0,64596,0,0 +157646,4071,0,64597,0,0 +157647,4072,0,64598,0,0 +157648,4073,0,64599,0,0 +157649,4074,0,64600,0,0 +157650,4075,0,64601,0,0 +157651,4076,0,64602,0,0 +157652,4077,0,64603,0,0 +157653,4078,0,64604,0,0 +157654,4079,0,64605,0,0 +157655,4080,0,64606,0,0 +157656,4081,0,64607,0,0 +157657,4082,0,63854,0,0 +157658,4083,0,63279,0,0 +157659,4084,0,63273,0,0 +157660,4086,0,64608,0,0 +157661,4087,0,64609,0,0 +157662,4088,0,64610,0,0 +157663,4089,0,63943,0,0 +157664,4090,0,64611,0,0 +157665,4091,0,64612,0,0 +157666,4107,0,64613,0,0 +157667,4108,0,64614,0,0 +157668,4109,0,64615,0,0 +157669,4113,0,64616,0,0 +157670,4114,0,64617,0,0 +157671,4115,0,64618,0,0 +157672,4116,0,64619,0,0 +157673,4117,0,64620,0,0 +157674,4118,0,64621,0,0 +157675,4119,0,64622,0,0 +157676,4120,0,64623,0,0 +157677,4121,0,63930,0,0 +157678,4122,0,63314,0,0 +157679,4123,0,64624,0,0 +157680,4124,0,64625,0,0 +157681,4125,0,64626,0,0 +157682,4126,0,64627,0,0 +157683,4127,0,64628,0,0 +157684,4128,0,63401,0,0 +157685,4129,0,64629,0,0 +157686,4131,0,64630,0,0 +157687,4132,0,64056,0,0 +157688,4133,0,64631,0,0 +157689,4134,0,64632,0,0 +157690,4136,0,64550,0,0 +157691,4137,0,64633,0,0 +157692,4138,0,64634,0,0 +157693,4139,0,64635,0,0 +157694,4140,0,64636,0,0 +157695,4190,0,64637,0,0 +157696,4191,0,64638,0,0 +157697,4192,0,64639,0,0 +157698,4194,0,64640,0,0 +157699,4195,0,64641,0,0 +157700,4197,0,64642,0,0 +157701,4237,0,63637,0,0 +157702,4239,0,64643,0,0 +157703,4242,0,64644,0,0 +157704,4243,0,64645,0,0 +157705,4244,0,64646,0,0 +157706,4246,0,64647,0,0 +157707,4247,0,64648,0,0 +157708,4248,0,64649,0,0 +157709,4249,0,64650,0,0 +157710,4250,0,64651,0,0 +157711,4251,0,64652,0,0 +157712,4252,0,64653,0,0 +157713,4253,0,64654,0,0 +157714,4254,0,64655,0,0 +157715,4255,0,64656,0,0 +157716,4256,0,64657,0,0 +157717,4257,0,64658,0,0 +157718,4258,0,64659,0,0 +157719,4259,0,64660,0,0 +157720,4260,0,64661,0,0 +157721,4261,0,64662,0,0 +157722,4262,0,64663,0,0 +157723,4263,0,64664,0,0 +157724,4264,0,64665,0,0 +157725,4290,0,64666,0,0 +157726,4302,0,63763,0,0 +157727,4303,0,64667,0,0 +157728,4307,0,64668,0,0 +157729,4308,0,64669,0,0 +157730,4309,0,64670,0,0 +157731,4310,0,64671,0,0 +157732,4311,0,63582,0,0 +157733,4312,0,64672,0,0 +157734,4313,0,64673,0,0 +157735,4314,0,64674,0,0 +157736,4315,0,64675,0,0 +157737,4316,0,64676,0,0 +157738,4317,0,64677,0,0 +157739,4318,0,64678,0,0 +157740,4319,0,64679,0,0 +157741,4320,0,64680,0,0 +157742,4321,0,64681,0,0 +157743,4322,0,64682,0,0 +157744,4323,0,64683,0,0 +157745,4324,0,64684,0,0 +157746,4325,0,64685,0,0 +157747,4326,0,64686,0,0 +157748,4327,0,64687,0,0 +157749,4328,0,64688,0,0 +157750,4329,0,64689,0,0 +157751,4330,0,64690,0,0 +157752,4331,0,64691,0,0 +157753,4332,0,64692,0,0 +157754,4333,0,64693,0,0 +157755,4334,0,64694,0,0 +157756,4335,0,64695,0,0 +157757,4336,0,64696,0,0 +157758,4343,0,64697,0,0 +157759,4344,0,64698,0,0 +157760,4362,0,63943,0,0 +157761,4368,0,64699,0,0 +157762,4369,0,64700,0,0 +157763,4372,0,63942,0,0 +157764,4373,0,64701,0,0 +157765,4379,0,64702,0,0 +157766,4383,0,64703,0,0 +157767,4385,0,64704,0,0 +157768,4393,0,64705,0,0 +157769,4434,0,64706,0,0 +157770,4436,0,64707,0,0 +157771,4437,0,64708,0,0 +157772,4438,0,64056,0,0 +157773,4439,0,63951,0,0 +157774,4443,0,64709,0,0 +157775,4444,0,64710,0,0 +157776,4445,0,64711,0,0 +157777,4446,0,64712,0,0 +157778,4447,0,64713,0,0 +157779,4448,0,64714,0,0 +157780,4449,0,64715,0,0 +157781,4454,0,64716,0,0 +157782,4455,0,64717,0,0 +157783,4456,0,64718,0,0 +157784,4462,0,64719,0,0 +157785,4463,0,64720,0,0 +157786,4464,0,63274,0,0 +157787,4465,0,63279,0,0 +157788,4474,0,64721,0,0 +157789,4476,0,64722,0,0 +157790,4477,0,64723,0,0 +157791,4478,0,64465,0,0 +157792,4491,0,64724,0,0 +157793,4504,0,64725,0,0 +157794,4505,0,64726,0,0 +157795,4507,0,64727,0,0 +157796,4508,0,64728,0,0 +157797,4509,0,64729,0,0 +157798,4511,0,64730,0,0 +157799,4534,0,64731,0,0 +157800,4543,0,64732,0,0 +157801,4545,0,64733,0,0 +157802,4547,0,64734,0,0 +157803,4548,0,64735,0,0 +157804,4560,0,63772,0,0 +157805,4561,0,63719,0,0 +157806,4562,0,64736,0,0 +157807,4563,0,64039,0,0 +157808,4564,0,64737,0,0 +157809,4565,0,64738,0,0 +157810,4566,0,64739,0,0 +157811,4567,0,64740,0,0 +157812,4568,0,64741,0,0 +157813,4569,0,64742,0,0 +157814,4570,0,64743,0,0 +157815,4571,0,64744,0,0 +157816,4574,0,64371,0,0 +157817,4575,0,64745,0,0 +157818,4576,0,64746,0,0 +157819,4577,0,63943,0,0 +157820,4616,0,63286,0,0 +157821,4642,0,63803,0,0 +157822,4643,0,64544,0,0 +157823,4652,0,64747,0,0 +157824,4653,0,64748,0,0 +157825,4658,0,64749,0,0 +157826,4659,0,63788,0,0 +157827,4660,0,64750,0,0 +157828,4661,0,64751,0,0 +157829,4662,0,64752,0,0 +157830,4663,0,64753,0,0 +157831,4665,0,64258,0,0 +157832,4666,0,64754,0,0 +157833,4668,0,64755,0,0 +157834,4669,0,64756,0,0 +157835,4671,0,64457,0,0 +157836,4672,0,64757,0,0 +157837,4674,0,64758,0,0 +157838,4675,0,64754,0,0 +157839,4676,0,64759,0,0 +157840,4677,0,64760,0,0 +157841,4678,0,64761,0,0 +157842,4680,0,64762,0,0 +157843,4681,0,64763,0,0 +157844,4683,0,63424,0,0 +157845,4684,0,64764,0,0 +157846,4686,0,64765,0,0 +157847,4687,0,64766,0,0 +157848,4689,0,64767,0,0 +157849,4690,0,64374,0,0 +157850,4692,0,64258,0,0 +157851,4693,0,63633,0,0 +157852,4694,0,64768,0,0 +157853,4695,0,64769,0,0 +157854,4696,0,64611,0,0 +157855,4697,0,64770,0,0 +157856,4698,0,64771,0,0 +157857,4699,0,64772,0,0 +157858,4700,0,64773,0,0 +157859,4701,0,64774,0,0 +157860,4705,0,64775,0,0 +157861,4706,0,64776,0,0 +157862,4707,0,64777,0,0 +157863,4708,0,64496,0,0 +157864,4709,0,64778,0,0 +157865,4710,0,64449,0,0 +157866,4711,0,64779,0,0 +157867,4712,0,64780,0,0 +157868,4713,0,64781,0,0 +157869,4714,0,64782,0,0 +157870,4715,0,64783,0,0 +157871,4716,0,64784,0,0 +157872,4717,0,64553,0,0 +157873,4718,0,64785,0,0 +157874,4719,0,64786,0,0 +157875,4720,0,64787,0,0 +157876,4721,0,64788,0,0 +157877,4722,0,64789,0,0 +157878,4723,0,64790,0,0 +157879,4724,0,64287,0,0 +157880,4725,0,64791,0,0 +157881,4726,0,64792,0,0 +157882,4727,0,64793,0,0 +157883,4728,0,64794,0,0 +157884,4729,0,64795,0,0 +157885,4731,0,64796,0,0 +157886,4732,0,64797,0,0 +157887,4733,0,63356,0,0 +157888,4734,0,64798,0,0 +157889,4735,0,64799,0,0 +157890,4736,0,64800,0,0 +157891,4737,0,64801,0,0 +157892,4738,0,64802,0,0 +157893,4741,0,64803,0,0 +157894,4744,0,64804,0,0 +157895,4745,0,64805,0,0 +157896,4746,0,64806,0,0 +157897,4765,0,64807,0,0 +157898,4766,0,64808,0,0 +157899,4767,0,64809,0,0 +157900,4768,0,64810,0,0 +157901,4771,0,64767,0,0 +157902,4772,0,64811,0,0 +157903,4777,0,64812,0,0 +157904,4778,0,64813,0,0 +157905,4781,0,64814,0,0 +157906,4782,0,64815,0,0 +157907,4785,0,64816,0,0 +157908,4786,0,64817,0,0 +157909,4788,0,64487,0,0 +157910,4789,0,63396,0,0 +157911,4790,0,64266,0,0 +157912,4792,0,64818,0,0 +157913,4793,0,64819,0,0 +157914,4794,0,64820,0,0 +157915,4795,0,64821,0,0 +157916,4796,0,64822,0,0 +157917,4797,0,63838,0,0 +157918,4798,0,64725,0,0 +157919,4799,0,64823,0,0 +157920,4800,0,63325,0,0 +157921,4810,0,64824,0,0 +157922,4816,0,64825,0,0 +157923,4817,0,64826,0,0 +157924,4818,0,64827,0,0 +157925,4820,0,64828,0,0 +157926,4821,0,64405,0,0 +157927,4822,0,64593,0,0 +157928,4824,0,63649,0,0 +157929,4825,0,64829,0,0 +157930,4826,0,64830,0,0 +157931,4827,0,64831,0,0 +157932,4828,0,64832,0,0 +157933,4829,0,64707,0,0 +157934,4830,0,64833,0,0 +157935,4831,0,64834,0,0 +157936,4832,0,64835,0,0 +157937,4833,0,64836,0,0 +157938,4835,0,64837,0,0 +157939,4836,0,64838,0,0 +157940,4837,0,64839,0,0 +157941,4838,0,64839,0,0 +157942,4840,0,64840,0,0 +157943,4854,0,64219,0,0 +157944,4861,0,64841,0,0 +157945,4899,0,63965,0,0 +157946,4900,0,63561,0,0 +157947,4901,0,64842,0,0 +157948,4906,0,64843,0,0 +157949,4907,0,64844,0,0 +157950,4908,0,64845,0,0 +157951,4909,0,64846,0,0 +157952,4910,0,64847,0,0 +157953,4911,0,64848,0,0 +157954,4912,0,64849,0,0 +157955,4913,0,64850,0,0 +157956,4914,0,64851,0,0 +157957,4915,0,64852,0,0 +157958,4916,0,64853,0,0 +157959,4917,0,64854,0,0 +157960,4919,0,64855,0,0 +157961,4920,0,63610,0,0 +157962,4921,0,64856,0,0 +157963,4922,0,64069,0,0 +157964,4923,0,63531,0,0 +157965,4924,0,64857,0,0 +157966,4925,0,64172,0,0 +157967,4928,0,64858,0,0 +157968,4929,0,64859,0,0 +157969,4931,0,64860,0,0 +157970,4932,0,64861,0,0 +157971,4933,0,64862,0,0 +157972,4935,0,63564,0,0 +157973,4936,0,64863,0,0 +157974,4937,0,64864,0,0 +157975,4938,0,64865,0,0 +157976,4939,0,63404,0,0 +157977,4940,0,64866,0,0 +157978,4942,0,64867,0,0 +157979,4944,0,64868,0,0 +157980,4946,0,64869,0,0 +157981,4947,0,64870,0,0 +157982,4948,0,63651,0,0 +157983,4949,0,64871,0,0 +157984,4951,0,63593,0,0 +157985,4954,0,64872,0,0 +157986,4956,0,64873,0,0 +157987,4958,0,64874,0,0 +157988,4960,0,63946,0,0 +157989,4961,0,64875,0,0 +157990,4962,0,64876,0,0 +157991,4963,0,64758,0,0 +157992,4964,0,64877,0,0 +157993,4967,0,64878,0,0 +157994,4968,0,64533,0,0 +157995,4969,0,64879,0,0 +157996,4970,0,64880,0,0 +157997,4971,0,64881,0,0 +157998,4972,0,64869,0,0 +157999,4973,0,64882,0,0 +158000,4974,0,63763,0,0 +158001,4975,0,64883,0,0 +158002,4976,0,64884,0,0 +158003,4977,0,64885,0,0 +158004,4978,0,64886,0,0 +158005,4979,0,64887,0,0 +158006,4980,0,64888,0,0 +158007,4982,0,64889,0,0 +158008,4983,0,64890,0,0 +158009,4984,0,63685,0,0 +158010,4985,0,64849,0,0 +158011,4987,0,64891,0,0 +158012,4989,0,64892,0,0 +158013,4990,0,64893,0,0 +158014,4991,0,64894,0,0 +158015,4993,0,63385,0,0 +158016,4994,0,64895,0,0 +158017,4996,0,64896,0,0 +158018,5016,0,64897,0,0 +158019,5028,0,64898,0,0 +158020,5031,0,64899,0,0 +158021,5032,0,63630,0,0 +158022,5033,0,63630,0,0 +158023,5034,0,63630,0,0 +158024,5035,0,63630,0,0 +158025,5036,0,64899,0,0 +158026,5037,0,63630,0,0 +158027,5039,0,63630,0,0 +158028,5040,0,64900,0,0 +158029,5069,0,64901,0,0 +158030,5070,0,64902,0,0 +158031,5071,0,64903,0,0 +158032,5092,0,64904,0,0 +158033,5093,0,64905,0,0 +158034,5094,0,64906,0,0 +158035,5107,0,64907,0,0 +158036,5109,0,64908,0,0 +158037,5110,0,64909,0,0 +158038,5111,0,63399,0,0 +158039,5112,0,64910,0,0 +158040,5181,0,64911,0,0 +158041,5182,0,64912,0,0 +158042,5183,0,64838,0,0 +158043,5187,0,64262,0,0 +158044,5191,0,63793,0,0 +158045,5192,0,64913,0,0 +158046,5193,0,64914,0,0 +158047,5194,0,64915,0,0 +158048,5195,0,64916,0,0 +158049,5196,0,63797,0,0 +158050,5197,0,64271,0,0 +158051,5198,0,64917,0,0 +158052,5199,0,64918,0,0 +158053,5200,0,64276,0,0 +158054,5201,0,64919,0,0 +158055,5202,0,64920,0,0 +158056,5207,0,64921,0,0 +158057,5208,0,64922,0,0 +158058,5209,0,64923,0,0 +158059,5210,0,64924,0,0 +158060,5211,0,64925,0,0 +158061,5212,0,64926,0,0 +158062,5213,0,64927,0,0 +158063,5214,0,64928,0,0 +158064,5215,0,64929,0,0 +158065,5216,0,64930,0,0 +158066,5236,0,64931,0,0 +158067,5238,0,64924,0,0 +158068,5239,0,64925,0,0 +158069,5240,0,64904,0,0 +158070,5241,0,64901,0,0 +158071,5242,0,64932,0,0 +158072,5243,0,64933,0,0 +158073,5244,0,64934,0,0 +158074,5245,0,64935,0,0 +158075,5246,0,64932,0,0 +158076,5247,0,64936,0,0 +158077,5248,0,64937,0,0 +158078,5249,0,64927,0,0 +158079,5250,0,64938,0,0 +158080,5252,0,64939,0,0 +158081,5253,0,64940,0,0 +158082,5254,0,64941,0,0 +158083,5255,0,63850,0,0 +158084,5256,0,64942,0,0 +158085,5257,0,64943,0,0 +158086,5258,0,64721,0,0 +158087,5259,0,64944,0,0 +158088,5260,0,64024,0,0 +158089,5261,0,64945,0,0 +158090,5262,0,64048,0,0 +158091,5267,0,64946,0,0 +158092,5274,0,64675,0,0 +158093,5275,0,64947,0,0 +158094,5276,0,64408,0,0 +158095,5277,0,63464,0,0 +158096,5278,0,64470,0,0 +158097,5279,0,64948,0,0 +158098,5280,0,64308,0,0 +158099,5281,0,64044,0,0 +158100,5282,0,63429,0,0 +158101,5283,0,64289,0,0 +158102,5284,0,64949,0,0 +158103,5285,0,64948,0,0 +158104,5286,0,64829,0,0 +158105,5287,0,64477,0,0 +158106,5288,0,63548,0,0 +158107,5289,0,63549,0,0 +158108,5290,0,64721,0,0 +158109,5291,0,64950,0,0 +158110,5292,0,63877,0,0 +158111,5293,0,63403,0,0 +158112,5299,0,64951,0,0 +158113,5300,0,63416,0,0 +158114,5301,0,63495,0,0 +158115,5302,0,64952,0,0 +158116,5303,0,64953,0,0 +158117,5304,0,64954,0,0 +158118,5305,0,64955,0,0 +158119,5306,0,64953,0,0 +158120,5309,0,64032,0,0 +158121,5310,0,64956,0,0 +158122,5311,0,64957,0,0 +158123,5312,0,64759,0,0 +158124,5314,0,64767,0,0 +158125,5315,0,64958,0,0 +158126,5316,0,64959,0,0 +158127,5317,0,64960,0,0 +158128,5318,0,64961,0,0 +158129,5319,0,64962,0,0 +158130,5320,0,64542,0,0 +158131,5321,0,64963,0,0 +158132,5322,0,63721,0,0 +158133,5323,0,64015,0,0 +158134,5324,0,63646,0,0 +158135,5325,0,64964,0,0 +158136,5326,0,64901,0,0 +158137,5327,0,64965,0,0 +158138,5328,0,64541,0,0 +158139,5337,0,64966,0,0 +158140,5340,0,64967,0,0 +158141,5341,0,64968,0,0 +158142,5343,0,64969,0,0 +158143,5344,0,63949,0,0 +158144,5345,0,64970,0,0 +158145,5346,0,64971,0,0 +158146,5347,0,64972,0,0 +158147,5355,0,64973,0,0 +158148,5356,0,64974,0,0 +158149,5357,0,63671,0,0 +158150,5379,0,64975,0,0 +158151,5387,0,63478,0,0 +158152,5392,0,63800,0,0 +158153,5393,0,64976,0,0 +158154,5394,0,63479,0,0 +158155,5395,0,64977,0,0 +158156,5398,0,64978,0,0 +158157,5399,0,64979,0,0 +158158,5404,0,64980,0,0 +158159,5405,0,63983,0,0 +158160,5419,0,63887,0,0 +158161,5420,0,64981,0,0 +158162,5422,0,64982,0,0 +158163,5423,0,64983,0,0 +158164,5425,0,64984,0,0 +158165,5426,0,64985,0,0 +158166,5443,0,64540,0,0 +158167,5444,0,64004,0,0 +158168,5458,0,64986,0,0 +158169,5459,0,64987,0,0 +158170,5491,0,64473,0,0 +158171,5495,0,64473,0,0 +158172,5502,0,64894,0,0 +158173,5516,0,63737,0,0 +158174,5522,0,64839,0,0 +158175,5532,0,63971,0,0 +158176,5540,0,64988,0,0 +158177,5541,0,64989,0,0 +158178,5542,0,64818,0,0 +158179,5545,0,64842,0,0 +158180,5546,0,64990,0,0 +158181,5548,0,64133,0,0 +158182,5549,0,63800,0,0 +158183,5550,0,63943,0,0 +158184,5551,0,63715,0,0 +158185,5552,0,64189,0,0 +158186,5553,0,63225,0,0 +158187,5554,0,63684,0,0 +158188,5555,0,64991,0,0 +158189,5556,0,64992,0,0 +158190,5557,0,63468,0,0 +158191,5558,0,63388,0,0 +158192,5559,0,64993,0,0 +158193,5560,0,64901,0,0 +158194,5561,0,64994,0,0 +158195,5568,0,63946,0,0 +158196,5579,0,64877,0,0 +158197,5580,0,64995,0,0 +158198,5581,0,64996,0,0 +158199,5586,0,63471,0,0 +158200,5587,0,64997,0,0 +158201,5589,0,64998,0,0 +158202,5590,0,64999,0,0 +158203,5591,0,65000,0,0 +158204,5592,0,64850,0,0 +158205,5593,0,65001,0,0 +158206,5595,0,65002,0,0 +158207,5596,0,65003,0,0 +158208,5597,0,65004,0,0 +158209,5598,0,65005,0,0 +158210,5599,0,65006,0,0 +158211,5600,0,65007,0,0 +158212,5604,0,65008,0,0 +158213,5605,0,64437,0,0 +158214,5606,0,65009,0,0 +158215,5608,0,65010,0,0 +158216,5609,0,64446,0,0 +158217,5610,0,64311,0,0 +158218,5611,0,65011,0,0 +158219,5612,0,65012,0,0 +158220,5613,0,65013,0,0 +158221,5614,0,65014,0,0 +158222,5615,0,65015,0,0 +158223,5616,0,65016,0,0 +158224,5617,0,65017,0,0 +158225,5618,0,65018,0,0 +158226,5624,0,65019,0,0 +158227,5626,0,65020,0,0 +158228,5627,0,65021,0,0 +158229,5629,0,65022,0,0 +158230,5630,0,63755,0,0 +158231,5739,0,65023,0,0 +158232,5742,0,64949,0,0 +158233,5744,0,63667,0,0 +158234,5745,0,65024,0,0 +158235,5746,0,65025,0,0 +158236,5747,0,65026,0,0 +158237,5748,0,65027,0,0 +158238,5749,0,65028,0,0 +158239,5750,0,64553,0,0 +158240,5751,0,65029,0,0 +158241,5752,0,65030,0,0 +158242,5753,0,65031,0,0 +158243,5755,0,65032,0,0 +158244,5756,0,65033,0,0 +158245,5757,0,63951,0,0 +158246,5761,0,64877,0,0 +158247,5766,0,65034,0,0 +158248,5767,0,65035,0,0 +158249,5770,0,65036,0,0 +158250,5776,0,65037,0,0 +158251,5777,0,65038,0,0 +158252,5778,0,65039,0,0 +158253,5779,0,65040,0,0 +158254,5780,0,64374,0,0 +158255,5781,0,65041,0,0 +158256,5782,0,65042,0,0 +158257,5783,0,64543,0,0 +158258,5812,0,65043,0,0 +158259,5813,0,65044,0,0 +158260,5814,0,65045,0,0 +158261,5815,0,65046,0,0 +158262,5817,0,65047,0,0 +158263,5818,0,65048,0,0 +158264,5819,0,64461,0,0 +158265,5820,0,65049,0,0 +158266,5821,0,64447,0,0 +158267,5822,0,65050,0,0 +158268,5856,0,64168,0,0 +158269,5870,0,65051,0,0 +158270,5936,0,65052,0,0 +158271,5939,0,63449,0,0 +158272,5940,0,64666,0,0 +158273,5941,0,64546,0,0 +158274,5943,0,65053,0,0 +158275,5944,0,64542,0,0 +158276,5953,0,65054,0,0 +158277,5954,0,65055,0,0 +158278,5956,0,63646,0,0 +158279,5957,0,64841,0,0 +158280,5958,0,63835,0,0 +158281,5961,0,65056,0,0 +158282,5962,0,65057,0,0 +158283,5963,0,65058,0,0 +158284,5964,0,65059,0,0 +158285,5965,0,65060,0,0 +158286,5966,0,65061,0,0 +158287,5967,0,65062,0,0 +158288,5968,0,63396,0,0 +158289,5969,0,65063,0,0 +158290,5970,0,65064,0,0 +158291,5971,0,65065,0,0 +158292,5975,0,65066,0,0 +158293,5976,0,65067,0,0 +158294,6036,0,63499,0,0 +158295,6040,0,65068,0,0 +158296,6058,0,65069,0,0 +158297,6059,0,63981,0,0 +158298,6060,0,65070,0,0 +158299,6061,0,64207,0,0 +158300,6062,0,65071,0,0 +158301,6063,0,63491,0,0 +158302,6070,0,63412,0,0 +158303,6076,0,65072,0,0 +158304,6078,0,65073,0,0 +158305,6084,0,65074,0,0 +158306,6085,0,65075,0,0 +158307,6087,0,64421,0,0 +158308,6088,0,65076,0,0 +158309,6092,0,65077,0,0 +158310,6093,0,65078,0,0 +158311,6094,0,65079,0,0 +158312,6095,0,65080,0,0 +158313,6096,0,65081,0,0 +158314,6097,0,65082,0,0 +158315,6098,0,65083,0,0 +158316,6116,0,65084,0,0 +158317,6117,0,65085,0,0 +158318,6118,0,63466,0,0 +158319,6119,0,65086,0,0 +158320,6120,0,65087,0,0 +158321,6121,0,65088,0,0 +158322,6122,0,65089,0,0 +158323,6123,0,65090,0,0 +158324,6124,0,65091,0,0 +158325,6125,0,65092,0,0 +158326,6126,0,65093,0,0 +158327,6127,0,65094,0,0 +158328,6128,0,65095,0,0 +158329,6129,0,65096,0,0 +158330,6134,0,65097,0,0 +158331,6135,0,65098,0,0 +158332,6136,0,65099,0,0 +158333,6137,0,65100,0,0 +158334,6138,0,65101,0,0 +158335,6139,0,65102,0,0 +158336,6140,0,65103,0,0 +158337,6141,0,63234,0,0 +158338,6142,0,65104,0,0 +158339,6143,0,63233,0,0 +158340,6144,0,65105,0,0 +158341,6147,0,65106,0,0 +158342,6148,0,65107,0,0 +158343,6171,0,63449,0,0 +158344,6173,0,65108,0,0 +158345,6174,0,65109,0,0 +158346,6176,0,65110,0,0 +158347,6177,0,65111,0,0 +158348,6179,0,65112,0,0 +158349,6180,0,64548,0,0 +158350,6182,0,63395,0,0 +158351,6185,0,63521,0,0 +158352,6186,0,65113,0,0 +158353,6187,0,65114,0,0 +158354,6188,0,65115,0,0 +158355,6189,0,65116,0,0 +158356,6191,0,65117,0,0 +158357,6194,0,65118,0,0 +158358,6195,0,65119,0,0 +158359,6196,0,63624,0,0 +158360,6197,0,65120,0,0 +158361,6198,0,65121,0,0 +158362,6200,0,65122,0,0 +158363,6201,0,65123,0,0 +158364,6202,0,65124,0,0 +158365,6203,0,65125,0,0 +158366,6204,0,65126,0,0 +158367,6205,0,63401,0,0 +158368,6206,0,65127,0,0 +158369,6214,0,65128,0,0 +158370,6215,0,63648,0,0 +158371,6219,0,63650,0,0 +158372,6220,0,65129,0,0 +158373,6223,0,63408,0,0 +158374,6224,0,63692,0,0 +158375,6225,0,65130,0,0 +158376,6226,0,65131,0,0 +158377,6227,0,64994,0,0 +158378,6228,0,65132,0,0 +158379,6229,0,65133,0,0 +158380,6230,0,64904,0,0 +158381,6231,0,65134,0,0 +158382,6232,0,63969,0,0 +158383,6233,0,64293,0,0 +158384,6234,0,65135,0,0 +158385,6235,0,64292,0,0 +158386,6236,0,65136,0,0 +158387,6237,0,64295,0,0 +158388,6238,0,65137,0,0 +158389,6239,0,65138,0,0 +158390,6240,0,65139,0,0 +158391,6241,0,65140,0,0 +158392,6242,0,65141,0,0 +158393,6243,0,65142,0,0 +158394,6254,0,65143,0,0 +158395,6255,0,63943,0,0 +158396,6256,0,65144,0,0 +158397,6263,0,65145,0,0 +158398,6264,0,65146,0,0 +158399,6266,0,65147,0,0 +158400,6267,0,65148,0,0 +158401,6268,0,65149,0,0 +158402,6269,0,65150,0,0 +158403,6282,0,65151,0,0 +158404,6292,0,65132,0,0 +158405,6294,0,65132,0,0 +158406,6295,0,65132,0,0 +158407,6309,0,65130,0,0 +158408,6310,0,65130,0,0 +158409,6311,0,65130,0,0 +158410,6314,0,65152,0,0 +158411,6315,0,63965,0,0 +158412,6318,0,65153,0,0 +158413,6319,0,65154,0,0 +158414,6320,0,65155,0,0 +158415,6322,0,65156,0,0 +158416,6323,0,65157,0,0 +158417,6324,0,65158,0,0 +158418,6327,0,65159,0,0 +158419,6331,0,65160,0,0 +158420,6333,0,63738,0,0 +158421,6334,0,64052,0,0 +158422,6335,0,65161,0,0 +158423,6336,0,65162,0,0 +158424,6337,0,65074,0,0 +158425,6340,0,64130,0,0 +158426,6341,0,64016,0,0 +158427,6350,0,64550,0,0 +158428,6360,0,65132,0,0 +158429,6363,0,65130,0,0 +158430,6364,0,65130,0,0 +158431,6365,0,63383,0,0 +158432,6366,0,65163,0,0 +158433,6367,0,63383,0,0 +158434,6378,0,65164,0,0 +158435,6379,0,64518,0,0 +158436,6380,0,64405,0,0 +158437,6381,0,65165,0,0 +158438,6382,0,65166,0,0 +158439,6383,0,65167,0,0 +158440,6384,0,65168,0,0 +158441,6385,0,65169,0,0 +158442,6386,0,65170,0,0 +158443,6387,0,65171,0,0 +158444,6388,0,65172,0,0 +158445,6389,0,64461,0,0 +158446,6392,0,65173,0,0 +158447,6393,0,65174,0,0 +158448,6394,0,65175,0,0 +158449,6395,0,65176,0,0 +158450,6396,0,65177,0,0 +158451,6397,0,65178,0,0 +158452,6398,0,65179,0,0 +158453,6399,0,65180,0,0 +158454,6400,0,65181,0,0 +158455,6402,0,65182,0,0 +158456,6403,0,65183,0,0 +158457,6404,0,65184,0,0 +158458,6405,0,65185,0,0 +158459,6406,0,65186,0,0 +158460,6407,0,65187,0,0 +158461,6408,0,65188,0,0 +158462,6409,0,65189,0,0 +158463,6410,0,65190,0,0 +158464,6411,0,65191,0,0 +158465,6412,0,65192,0,0 +158466,6413,0,65193,0,0 +158467,6415,0,65194,0,0 +158468,6416,0,65195,0,0 +158469,6417,0,64506,0,0 +158470,6418,0,65196,0,0 +158471,6419,0,65197,0,0 +158472,6420,0,65198,0,0 +158473,6421,0,65199,0,0 +158474,6422,0,65200,0,0 +158475,6423,0,63274,0,0 +158476,6424,0,65201,0,0 +158477,6425,0,63315,0,0 +158478,6426,0,65202,0,0 +158479,6427,0,65203,0,0 +158480,6428,0,65204,0,0 +158481,6429,0,65205,0,0 +158482,6430,0,65206,0,0 +158483,6431,0,65207,0,0 +158484,6432,0,65208,0,0 +158485,6433,0,65209,0,0 +158486,6434,0,65210,0,0 +158487,6447,0,65211,0,0 +158488,6448,0,65212,0,0 +158489,6449,0,65213,0,0 +158490,6459,0,65214,0,0 +158491,6460,0,65215,0,0 +158492,6461,0,65216,0,0 +158493,6465,0,65217,0,0 +158494,6466,0,63869,0,0 +158495,6467,0,65218,0,0 +158496,6468,0,65219,0,0 +158497,6469,0,65220,0,0 +158498,6472,0,64898,0,0 +158499,6473,0,65221,0,0 +158500,6477,0,65222,0,0 +158501,6478,0,65223,0,0 +158502,6480,0,65224,0,0 +158503,6481,0,65225,0,0 +158504,6482,0,65226,0,0 +158505,6502,0,65227,0,0 +158506,6503,0,65228,0,0 +158507,6504,0,65229,0,0 +158508,6505,0,65230,0,0 +158509,6506,0,64310,0,0 +158510,6507,0,63397,0,0 +158511,6508,0,65231,0,0 +158512,6509,0,65232,0,0 +158513,6510,0,65233,0,0 +158514,6511,0,65234,0,0 +158515,6512,0,65235,0,0 +158516,6513,0,65236,0,0 +158517,6514,0,64868,0,0 +158518,6515,0,64671,0,0 +158519,6517,0,65237,0,0 +158520,6518,0,65238,0,0 +158521,6519,0,65239,0,0 +158522,6520,0,63867,0,0 +158523,6521,0,65240,0,0 +158524,6523,0,65241,0,0 +158525,6524,0,65242,0,0 +158526,6525,0,65243,0,0 +158527,6526,0,65244,0,0 +158528,6527,0,65095,0,0 +158529,6528,0,65245,0,0 +158530,6531,0,65246,0,0 +158531,6536,0,65247,0,0 +158532,6537,0,65248,0,0 +158533,6538,0,65249,0,0 +158534,6539,0,65250,0,0 +158535,6540,0,65251,0,0 +158536,6541,0,65252,0,0 +158537,6542,0,65253,0,0 +158538,6543,0,65254,0,0 +158539,6545,0,65255,0,0 +158540,6546,0,65256,0,0 +158541,6547,0,65257,0,0 +158542,6548,0,65258,0,0 +158543,6549,0,65259,0,0 +158544,6550,0,65260,0,0 +158545,6551,0,64077,0,0 +158546,6552,0,65261,0,0 +158547,6553,0,65262,0,0 +158548,6554,0,65263,0,0 +158549,6555,0,63610,0,0 +158550,6556,0,65264,0,0 +158551,6557,0,65265,0,0 +158552,6558,0,65266,0,0 +158553,6559,0,63426,0,0 +158554,6560,0,65267,0,0 +158555,6561,0,65268,0,0 +158556,6562,0,65269,0,0 +158557,6563,0,65270,0,0 +158558,6564,0,65271,0,0 +158559,6565,0,65272,0,0 +158560,6566,0,65273,0,0 +158561,6567,0,65274,0,0 +158562,6568,0,65275,0,0 +158563,6569,0,65276,0,0 +158564,6570,0,65277,0,0 +158565,6571,0,65278,0,0 +158566,6572,0,65279,0,0 +158567,6573,0,65280,0,0 +158568,6574,0,65281,0,0 +158569,6575,0,65282,0,0 +158570,6576,0,65283,0,0 +158571,6577,0,65284,0,0 +158572,6578,0,65285,0,0 +158573,6579,0,65116,0,0 +158574,6580,0,65286,0,0 +158575,6581,0,63640,0,0 +158576,6582,0,65287,0,0 +158577,6583,0,65288,0,0 +158578,6584,0,65289,0,0 +158579,6585,0,63869,0,0 +158580,6586,0,65290,0,0 +158581,6587,0,65291,0,0 +158582,6588,0,65292,0,0 +158583,6590,0,65293,0,0 +158584,6591,0,65294,0,0 +158585,6592,0,65295,0,0 +158586,6593,0,63722,0,0 +158587,6594,0,65296,0,0 +158588,6595,0,65297,0,0 +158589,6596,0,65298,0,0 +158590,6597,0,65299,0,0 +158591,6598,0,65300,0,0 +158592,6599,0,65301,0,0 +158593,6600,0,65302,0,0 +158594,6601,0,65303,0,0 +158595,6602,0,65304,0,0 +158596,6603,0,65305,0,0 +158597,6604,0,65152,0,0 +158598,6605,0,65306,0,0 +158599,6606,0,64524,0,0 +158600,6607,0,65307,0,0 +158601,6608,0,65308,0,0 +158602,6609,0,65309,0,0 +158603,6610,0,64568,0,0 +158604,6611,0,65310,0,0 +158605,6612,0,65311,0,0 +158606,6613,0,65312,0,0 +158607,6614,0,65313,0,0 +158608,6615,0,65314,0,0 +158609,6616,0,65315,0,0 +158610,6617,0,65316,0,0 +158611,6618,0,64839,0,0 +158612,6622,0,65317,0,0 +158613,6627,0,65318,0,0 +158614,6628,0,65319,0,0 +158615,6629,0,65271,0,0 +158616,6630,0,63426,0,0 +158617,6631,0,65320,0,0 +158618,6632,0,63571,0,0 +158619,6633,0,63382,0,0 +158620,6641,0,65321,0,0 +158621,6642,0,64124,0,0 +158622,6651,0,65322,0,0 +158623,6653,0,63934,0,0 +158624,6654,0,63395,0,0 +158625,6659,0,65323,0,0 +158626,6660,0,65324,0,0 +158627,6664,0,65325,0,0 +158628,6665,0,65326,0,0 +158629,6666,0,65327,0,0 +158630,6667,0,65164,0,0 +158631,6668,0,65328,0,0 +158632,6670,0,65329,0,0 +158633,6671,0,64060,0,0 +158634,6675,0,65330,0,0 +158635,6676,0,65331,0,0 +158636,6677,0,65332,0,0 +158637,6679,0,63698,0,0 +158638,6680,0,65333,0,0 +158639,6681,0,64033,0,0 +158640,6682,0,65334,0,0 +158641,6685,0,65335,0,0 +158642,6686,0,65336,0,0 +158643,6687,0,65337,0,0 +158644,6688,0,65338,0,0 +158645,6689,0,65339,0,0 +158646,6690,0,65340,0,0 +158647,6691,0,65341,0,0 +158648,6692,0,65342,0,0 +158649,6694,0,64591,0,0 +158650,6696,0,65343,0,0 +158651,6697,0,65344,0,0 +158652,6709,0,65345,0,0 +158653,6713,0,65346,0,0 +158654,6719,0,65347,0,0 +158655,6720,0,65348,0,0 +158656,6721,0,64063,0,0 +158657,6722,0,64554,0,0 +158658,6725,0,64538,0,0 +158659,6726,0,65349,0,0 +158660,6727,0,65350,0,0 +158661,6729,0,65351,0,0 +158662,6730,0,65119,0,0 +158663,6731,0,65352,0,0 +158664,6732,0,65353,0,0 +158665,6733,0,65354,0,0 +158666,6737,0,65355,0,0 +158667,6738,0,65356,0,0 +158668,6739,0,64945,0,0 +158669,6740,0,65357,0,0 +158670,6741,0,65358,0,0 +158671,6742,0,65359,0,0 +158672,6744,0,65360,0,0 +158673,6745,0,65361,0,0 +158674,6746,0,65362,0,0 +158675,6747,0,65363,0,0 +158676,6751,0,63514,0,0 +158677,6752,0,65364,0,0 +158678,6773,0,64265,0,0 +158679,6774,0,65365,0,0 +158680,6780,0,65366,0,0 +158681,6784,0,65367,0,0 +158682,6786,0,65368,0,0 +158683,6787,0,65369,0,0 +158684,6788,0,65370,0,0 +158685,6789,0,65371,0,0 +158686,6791,0,65372,0,0 +158687,6792,0,65373,0,0 +158688,6793,0,65053,0,0 +158689,6794,0,64346,0,0 +158690,6795,0,65374,0,0 +158691,6796,0,65375,0,0 +158692,6797,0,65376,0,0 +158693,6798,0,65377,0,0 +158694,6801,0,65378,0,0 +158695,6802,0,65379,0,0 +158696,6803,0,63964,0,0 +158697,6804,0,65380,0,0 +158698,6806,0,65381,0,0 +158699,6828,0,65382,0,0 +158700,6829,0,63947,0,0 +158701,6830,0,65383,0,0 +158702,6831,0,65384,0,0 +158703,6832,0,65385,0,0 +158704,6833,0,65386,0,0 +158705,6834,0,65387,0,0 +158706,6835,0,65388,0,0 +158707,6836,0,65389,0,0 +158708,6886,0,64087,0,0 +158709,6896,0,65390,0,0 +158710,6898,0,64086,0,0 +158711,6900,0,65391,0,0 +158712,6901,0,65152,0,0 +158713,6902,0,65392,0,0 +158714,6903,0,65393,0,0 +158715,6904,0,65394,0,0 +158716,6905,0,65395,0,0 +158717,6906,0,65050,0,0 +158718,6907,0,65396,0,0 +158719,6908,0,65397,0,0 +158720,6909,0,65398,0,0 +158721,6910,0,65399,0,0 +158722,6911,0,65400,0,0 +158723,6946,0,65401,0,0 +158724,6953,0,65402,0,0 +158725,6966,0,65403,0,0 +158726,6967,0,65404,0,0 +158727,6968,0,65405,0,0 +158728,6969,0,65406,0,0 +158729,6970,0,65407,0,0 +158730,6971,0,64604,0,0 +158731,6972,0,65408,0,0 +158732,6973,0,65409,0,0 +158733,6974,0,65410,0,0 +158734,6975,0,65411,0,0 +158735,6976,0,65412,0,0 +158736,6977,0,65413,0,0 +158737,6978,0,65414,0,0 +158738,6979,0,65415,0,0 +158739,6980,0,65416,0,0 +158740,6981,0,65406,0,0 +158741,6982,0,65417,0,0 +158742,6983,0,65418,0,0 +158743,6984,0,65419,0,0 +158744,6985,0,65420,0,0 +158745,6998,0,65421,0,0 +158746,7000,0,64651,0,0 +158747,7001,0,65422,0,0 +158748,7002,0,64428,0,0 +158749,7003,0,65423,0,0 +158750,7004,0,63838,0,0 +158751,7005,0,63765,0,0 +158752,7026,0,65424,0,0 +158753,7027,0,65425,0,0 +158754,7046,0,65426,0,0 +158755,7047,0,65427,0,0 +158756,7048,0,65428,0,0 +158757,7049,0,65429,0,0 +158758,7050,0,65430,0,0 +158759,7051,0,65431,0,0 +158760,7052,0,65432,0,0 +158761,7053,0,65433,0,0 +158762,7054,0,65434,0,0 +158763,7055,0,65435,0,0 +158764,7056,0,65436,0,0 +158765,7057,0,65437,0,0 +158766,7058,0,65438,0,0 +158767,7059,0,65439,0,0 +158768,7060,0,65440,0,0 +158769,7061,0,65441,0,0 +158770,7062,0,65442,0,0 +158771,7063,0,65443,0,0 +158772,7064,0,65444,0,0 +158773,7065,0,65445,0,0 +158774,7066,0,65446,0,0 +158775,7094,0,63331,0,0 +158776,7095,0,65447,0,0 +158777,7106,0,65448,0,0 +158778,7107,0,65449,0,0 +158779,7108,0,65450,0,0 +158780,7109,0,65451,0,0 +158781,7110,0,65452,0,0 +158782,7111,0,65453,0,0 +158783,7112,0,65454,0,0 +158784,7113,0,65455,0,0 +158785,7115,0,63761,0,0 +158786,7116,0,65456,0,0 +158787,7117,0,65457,0,0 +158788,7118,0,65458,0,0 +158789,7120,0,65459,0,0 +158790,7129,0,65460,0,0 +158791,7130,0,64604,0,0 +158792,7132,0,64825,0,0 +158793,7133,0,64265,0,0 +158794,7166,0,65461,0,0 +158795,7167,0,63800,0,0 +158796,7169,0,65461,0,0 +158797,7170,0,65462,0,0 +158798,7171,0,65463,0,0 +158799,7187,0,65464,0,0 +158800,7188,0,63253,0,0 +158801,7189,0,65465,0,0 +158802,7229,0,64548,0,0 +158803,7230,0,65466,0,0 +158804,7248,0,64371,0,0 +158805,7276,0,63521,0,0 +158806,7277,0,65467,0,0 +158807,7280,0,65468,0,0 +158808,7281,0,65469,0,0 +158809,7282,0,65470,0,0 +158810,7283,0,63869,0,0 +158811,7284,0,63611,0,0 +158812,7285,0,65471,0,0 +158813,7297,0,65472,0,0 +158814,7298,0,65473,0,0 +158815,7299,0,65474,0,0 +158816,7326,0,65475,0,0 +158817,7327,0,65416,0,0 +158818,7328,0,65476,0,0 +158819,7329,0,65477,0,0 +158820,7330,0,63671,0,0 +158821,7331,0,65478,0,0 +158822,7332,0,65479,0,0 +158823,7334,0,65480,0,0 +158824,7335,0,65481,0,0 +158825,7336,0,65482,0,0 +158826,7344,0,65472,0,0 +158827,7348,0,64654,0,0 +158828,7349,0,63351,0,0 +158829,7350,0,65483,0,0 +158830,7351,0,65484,0,0 +158831,7352,0,65485,0,0 +158832,7353,0,65486,0,0 +158833,7354,0,65487,0,0 +158834,7355,0,65488,0,0 +158835,7356,0,64419,0,0 +158836,7357,0,65489,0,0 +158837,7358,0,65490,0,0 +158838,7359,0,65491,0,0 +158839,7366,0,65492,0,0 +158840,7367,0,65493,0,0 +158841,7368,0,65494,0,0 +158842,7369,0,65495,0,0 +158843,7370,0,65496,0,0 +158844,7373,0,65497,0,0 +158845,7374,0,65498,0,0 +158846,7375,0,64178,0,0 +158847,7377,0,65499,0,0 +158848,7378,0,64448,0,0 +158849,7386,0,65500,0,0 +158850,7387,0,65501,0,0 +158851,7390,0,65502,0,0 +158852,7391,0,65503,0,0 +158853,7406,0,64446,0,0 +158854,7407,0,63511,0,0 +158855,7408,0,64452,0,0 +158856,7409,0,64447,0,0 +158857,7410,0,64448,0,0 +158858,7411,0,64914,0,0 +158859,7412,0,64450,0,0 +158860,7413,0,65504,0,0 +158861,7414,0,64451,0,0 +158862,7415,0,65505,0,0 +158863,7416,0,65506,0,0 +158864,7417,0,65507,0,0 +158865,7418,0,65508,0,0 +158866,7419,0,65509,0,0 +158867,7420,0,65510,0,0 +158868,7421,0,65511,0,0 +158869,7422,0,65512,0,0 +158870,7423,0,65513,0,0 +158871,7424,0,65514,0,0 +158872,7429,0,65515,0,0 +158873,7430,0,65516,0,0 +158874,7431,0,65517,0,0 +158875,7432,0,65518,0,0 +158876,7433,0,65519,0,0 +158877,7434,0,65520,0,0 +158878,7435,0,65521,0,0 +158879,7436,0,65522,0,0 +158880,7437,0,65523,0,0 +158881,7438,0,65524,0,0 +158882,7439,0,65525,0,0 +158883,7440,0,65526,0,0 +158884,7441,0,65527,0,0 +158885,7443,0,65528,0,0 +158886,7444,0,65529,0,0 +158887,7445,0,65530,0,0 +158888,7446,0,65531,0,0 +158889,7447,0,65532,0,0 +158890,7448,0,65533,0,0 +158891,7454,0,65534,0,0 +158892,7455,0,65535,0,0 +158893,7456,0,65536,0,0 +158894,7457,0,65537,0,0 +158895,7458,0,65538,0,0 +158896,7459,0,65539,0,0 +158897,7460,0,65540,0,0 +158898,7461,0,65541,0,0 +158899,7462,0,65542,0,0 +158900,7463,0,64593,0,0 +158901,7465,0,65543,0,0 +158902,7468,0,65544,0,0 +158903,7469,0,65545,0,0 +158904,7470,0,65546,0,0 +158905,7471,0,65547,0,0 +158906,7472,0,65548,0,0 +158907,7473,0,65549,0,0 +158908,7474,0,65550,0,0 +158909,7475,0,65551,0,0 +158910,7476,0,65552,0,0 +158911,7477,0,65553,0,0 +158912,7478,0,65554,0,0 +158913,7479,0,64625,0,0 +158914,7480,0,65555,0,0 +158915,7481,0,65556,0,0 +158916,7482,0,65557,0,0 +158917,7483,0,65558,0,0 +158918,7484,0,65559,0,0 +158919,7485,0,65560,0,0 +158920,7486,0,65561,0,0 +158921,7487,0,65562,0,0 +158922,7488,0,65563,0,0 +158923,7489,0,65564,0,0 +158924,7490,0,65565,0,0 +158925,7491,0,65566,0,0 +158926,7492,0,65567,0,0 +158927,7493,0,65568,0,0 +158928,7494,0,65569,0,0 +158929,7495,0,64952,0,0 +158930,7496,0,65570,0,0 +158931,7507,0,65571,0,0 +158932,7508,0,65571,0,0 +158933,7509,0,65572,0,0 +158934,7510,0,65573,0,0 +158935,7511,0,65574,0,0 +158936,7512,0,65575,0,0 +158937,7513,0,65576,0,0 +158938,7514,0,65577,0,0 +158939,7515,0,65578,0,0 +158940,7517,0,65579,0,0 +158941,7518,0,65580,0,0 +158942,7519,0,65581,0,0 +158943,7520,0,65582,0,0 +158944,7521,0,65583,0,0 +158945,7522,0,65584,0,0 +158946,7523,0,65585,0,0 +158947,7524,0,64687,0,0 +158948,7525,0,65586,0,0 +158949,7526,0,65587,0,0 +158950,7527,0,65588,0,0 +158951,7528,0,65589,0,0 +158952,7529,0,64132,0,0 +158953,7530,0,65590,0,0 +158954,7531,0,65591,0,0 +158955,7532,0,65592,0,0 +158956,7533,0,65593,0,0 +158957,7534,0,65594,0,0 +158958,7535,0,65595,0,0 +158959,7536,0,65596,0,0 +158960,7537,0,65597,0,0 +158961,7538,0,63678,0,0 +158962,7539,0,63777,0,0 +158963,7540,0,65598,0,0 +158964,7541,0,63776,0,0 +158965,7542,0,63774,0,0 +158966,7543,0,63358,0,0 +158967,7544,0,65599,0,0 +158968,7545,0,63775,0,0 +158969,7546,0,63773,0,0 +158970,7554,0,65600,0,0 +158971,7555,0,64902,0,0 +158972,7556,0,64086,0,0 +158973,7557,0,65601,0,0 +158974,7558,0,65602,0,0 +158975,7559,0,64309,0,0 +158976,7606,0,65603,0,0 +158977,7607,0,65604,0,0 +158978,7608,0,64008,0,0 +158979,7609,0,65605,0,0 +158980,7610,0,64085,0,0 +158981,7611,0,65606,0,0 +158982,7612,0,65607,0,0 +158983,7677,0,64826,0,0 +158984,7682,0,63971,0,0 +158985,7683,0,65608,0,0 +158986,7684,0,65609,0,0 +158987,7685,0,65610,0,0 +158988,7687,0,65611,0,0 +158989,7688,0,65612,0,0 +158990,7689,0,65613,0,0 +158991,7690,0,65614,0,0 +158992,7691,0,65615,0,0 +158993,7706,0,65616,0,0 +158994,7707,0,65617,0,0 +158995,7708,0,64939,0,0 +158996,7709,0,65618,0,0 +158997,7710,0,65619,0,0 +158998,7711,0,65620,0,0 +158999,7712,0,65621,0,0 +159000,7713,0,63791,0,0 +159001,7714,0,65622,0,0 +159002,7717,0,65607,0,0 +159003,7718,0,65623,0,0 +159004,7719,0,65624,0,0 +159005,7720,0,65625,0,0 +159006,7721,0,65626,0,0 +159007,7723,0,65627,0,0 +159008,7724,0,65628,0,0 +159009,7726,0,65629,0,0 +159010,7727,0,64836,0,0 +159011,7728,0,65630,0,0 +159012,7729,0,64703,0,0 +159013,7730,0,65631,0,0 +159014,7736,0,64950,0,0 +159015,7738,0,65632,0,0 +159016,7739,0,65018,0,0 +159017,7747,0,65633,0,0 +159018,7749,0,65634,0,0 +159019,7750,0,65635,0,0 +159020,7751,0,65303,0,0 +159021,7752,0,65636,0,0 +159022,7753,0,65637,0,0 +159023,7754,0,65638,0,0 +159024,7755,0,65639,0,0 +159025,7756,0,65640,0,0 +159026,7757,0,65641,0,0 +159027,7758,0,65642,0,0 +159028,7759,0,65643,0,0 +159029,7760,0,65644,0,0 +159030,7761,0,65645,0,0 +159031,7786,0,65646,0,0 +159032,7787,0,65382,0,0 +159033,7826,0,63309,0,0 +159034,7913,0,64217,0,0 +159035,7914,0,65647,0,0 +159036,7915,0,65648,0,0 +159037,7916,0,65649,0,0 +159038,7917,0,65650,0,0 +159039,7918,0,65651,0,0 +159040,7919,0,65652,0,0 +159041,7920,0,63273,0,0 +159042,7921,0,65653,0,0 +159043,7922,0,65598,0,0 +159044,7924,0,63642,0,0 +159045,7925,0,63279,0,0 +159046,7926,0,65654,0,0 +159047,7927,0,65655,0,0 +159048,7928,0,65656,0,0 +159049,7929,0,65657,0,0 +159050,7930,0,65032,0,0 +159051,7931,0,64604,0,0 +159052,7932,0,65658,0,0 +159053,7933,0,65659,0,0 +159054,7934,0,65660,0,0 +159055,7935,0,65661,0,0 +159056,7936,0,65662,0,0 +159057,7937,0,65663,0,0 +159058,7938,0,65664,0,0 +159059,7939,0,65665,0,0 +159060,7940,0,64478,0,0 +159061,7941,0,65666,0,0 +159062,7942,0,65667,0,0 +159063,7943,0,65668,0,0 +159064,7944,0,65669,0,0 +159065,7945,0,63410,0,0 +159066,7946,0,65670,0,0 +159067,7947,0,65671,0,0 +159068,7948,0,65672,0,0 +159069,7949,0,65673,0,0 +159070,7950,0,65674,0,0 +159071,7951,0,65675,0,0 +159072,7952,0,65676,0,0 +159073,7953,0,65677,0,0 +159074,7954,0,63796,0,0 +159075,7955,0,65678,0,0 +159076,7956,0,65679,0,0 +159077,7957,0,65680,0,0 +159078,7958,0,65681,0,0 +159079,7959,0,65682,0,0 +159080,7960,0,64475,0,0 +159081,7961,0,65683,0,0 +159082,7963,0,65684,0,0 +159083,7996,0,64480,0,0 +159084,7997,0,65685,0,0 +159085,8006,0,65686,0,0 +159086,8067,0,63946,0,0 +159087,8068,0,63946,0,0 +159088,8069,0,63946,0,0 +159089,8071,0,64932,0,0 +159090,8080,0,65687,0,0 +159091,8081,0,63963,0,0 +159092,8082,0,65688,0,0 +159093,8083,0,64621,0,0 +159094,8084,0,65689,0,0 +159095,8085,0,65690,0,0 +159096,8086,0,65691,0,0 +159097,8088,0,65692,0,0 +159098,8089,0,65693,0,0 +159099,8090,0,65694,0,0 +159100,8091,0,65695,0,0 +159101,8092,0,63546,0,0 +159102,8093,0,65696,0,0 +159103,8094,0,65697,0,0 +159104,8106,0,65698,0,0 +159105,8107,0,65699,0,0 +159106,8108,0,65700,0,0 +159107,8109,0,65371,0,0 +159108,8110,0,65701,0,0 +159109,8111,0,65702,0,0 +159110,8112,0,65703,0,0 +159111,8113,0,65704,0,0 +159112,8114,0,65705,0,0 +159113,8115,0,65706,0,0 +159114,8116,0,65707,0,0 +159115,8117,0,65708,0,0 +159116,8118,0,65709,0,0 +159117,8119,0,65710,0,0 +159118,8120,0,65711,0,0 +159119,8121,0,65712,0,0 +159120,8122,0,65713,0,0 +159121,8123,0,65714,0,0 +159122,8124,0,65715,0,0 +159123,8125,0,65716,0,0 +159124,8126,0,65717,0,0 +159125,8127,0,65718,0,0 +159126,8128,0,65719,0,0 +159127,8129,0,65720,0,0 +159128,8130,0,65721,0,0 +159129,8131,0,65722,0,0 +159130,8132,0,65723,0,0 +159131,8133,0,65724,0,0 +159132,8134,0,65725,0,0 +159133,8135,0,64906,0,0 +159134,8137,0,65726,0,0 +159135,8138,0,65727,0,0 +159136,8139,0,65728,0,0 +159137,8140,0,65729,0,0 +159138,8141,0,65730,0,0 +159139,8142,0,65660,0,0 +159140,8143,0,65731,0,0 +159141,8144,0,65732,0,0 +159142,8156,0,65733,0,0 +159143,8157,0,65734,0,0 +159144,8158,0,65735,0,0 +159145,8159,0,65449,0,0 +159146,8160,0,65736,0,0 +159147,8161,0,65737,0,0 +159148,8162,0,65738,0,0 +159149,8163,0,65651,0,0 +159150,8174,0,65739,0,0 +159151,8175,0,65740,0,0 +159152,8176,0,65741,0,0 +159153,8177,0,65742,0,0 +159154,8178,0,65743,0,0 +159155,8179,0,65744,0,0 +159156,8180,0,65745,0,0 +159157,8181,0,63944,0,0 +159158,8182,0,65746,0,0 +159159,8183,0,65747,0,0 +159160,8184,0,65748,0,0 +159161,8185,0,65749,0,0 +159162,8186,0,65422,0,0 +159163,8187,0,65750,0,0 +159164,8188,0,65751,0,0 +159165,8189,0,65752,0,0 +159166,8190,0,65753,0,0 +159167,8191,0,64625,0,0 +159168,8192,0,65754,0,0 +159169,8193,0,65755,0,0 +159170,8194,0,65756,0,0 +159171,8195,0,64713,0,0 +159172,8196,0,64913,0,0 +159173,8197,0,65757,0,0 +159174,8198,0,65758,0,0 +159175,8199,0,65759,0,0 +159176,8200,0,65495,0,0 +159177,8201,0,65760,0,0 +159178,8202,0,65761,0,0 +159179,8203,0,65710,0,0 +159180,8204,0,65712,0,0 +159181,8205,0,65709,0,0 +159182,8206,0,65714,0,0 +159183,8207,0,64788,0,0 +159184,8208,0,65200,0,0 +159185,8209,0,65708,0,0 +159186,8210,0,65762,0,0 +159187,8211,0,65763,0,0 +159188,8212,0,65764,0,0 +159189,8213,0,65765,0,0 +159190,8214,0,64625,0,0 +159191,8215,0,65558,0,0 +159192,8216,0,65766,0,0 +159193,8223,0,65767,0,0 +159194,8224,0,65768,0,0 +159195,8225,0,65769,0,0 +159196,8226,0,65770,0,0 +159197,8245,0,65771,0,0 +159198,8246,0,65772,0,0 +159199,8247,0,65773,0,0 +159200,8248,0,65774,0,0 +159201,8249,0,65775,0,0 +159202,8250,0,65776,0,0 +159203,8251,0,65777,0,0 +159204,8252,0,65778,0,0 +159205,8253,0,65779,0,0 +159206,8254,0,65780,0,0 +159207,8255,0,65595,0,0 +159208,8256,0,65781,0,0 +159209,8257,0,65782,0,0 +159210,8258,0,65783,0,0 +159211,8259,0,65784,0,0 +159212,8260,0,65785,0,0 +159213,8261,0,65209,0,0 +159214,8262,0,65786,0,0 +159215,8263,0,65787,0,0 +159216,8264,0,65788,0,0 +159217,8265,0,65789,0,0 +159218,8266,0,65790,0,0 +159219,8267,0,65791,0,0 +159220,8268,0,65792,0,0 +159221,8269,0,65793,0,0 +159222,8270,0,65660,0,0 +159223,8271,0,65794,0,0 +159224,8272,0,65795,0,0 +159225,8273,0,65796,0,0 +159226,8274,0,65797,0,0 +159227,8275,0,64312,0,0 +159228,8276,0,65798,0,0 +159229,8277,0,65799,0,0 +159230,8278,0,65800,0,0 +159231,8279,0,65801,0,0 +159232,8280,0,65802,0,0 +159233,8281,0,65803,0,0 +159234,8282,0,65804,0,0 +159235,8283,0,65805,0,0 +159236,8284,0,65806,0,0 +159237,8285,0,65807,0,0 +159238,8286,0,65808,0,0 +159239,8287,0,65809,0,0 +159240,8288,0,65810,0,0 +159241,8289,0,65811,0,0 +159242,8290,0,65812,0,0 +159243,8291,0,65813,0,0 +159244,8292,0,65814,0,0 +159245,8293,0,65815,0,0 +159246,8294,0,65816,0,0 +159247,8295,0,65817,0,0 +159248,8296,0,65818,0,0 +159249,8297,0,65819,0,0 +159250,8298,0,65820,0,0 +159251,8299,0,65821,0,0 +159252,8300,0,65822,0,0 +159253,8301,0,65823,0,0 +159254,8302,0,65824,0,0 +159255,8303,0,65825,0,0 +159256,8304,0,65826,0,0 +159257,8305,0,65827,0,0 +159258,8306,0,65828,0,0 +159259,8307,0,65829,0,0 +159260,8308,0,65830,0,0 +159261,8309,0,65831,0,0 +159262,8310,0,65832,0,0 +159263,8311,0,65833,0,0 +159264,8312,0,65834,0,0 +159265,8313,0,65835,0,0 +159266,8314,0,65836,0,0 +159267,8315,0,65837,0,0 +159268,8316,0,65838,0,0 +159269,8317,0,65839,0,0 +159270,8318,0,65840,0,0 +159271,8319,0,65841,0,0 +159272,8320,0,65842,0,0 +159273,8345,0,65843,0,0 +159274,8346,0,65197,0,0 +159275,8347,0,64127,0,0 +159276,8348,0,65844,0,0 +159277,8349,0,64637,0,0 +159278,8367,0,64124,0,0 +159279,8624,0,65845,0,0 +159280,8625,0,65846,0,0 +159281,8626,0,65847,0,0 +159282,8708,0,65848,0,0 +159283,8746,0,65849,0,0 +159284,8747,0,65504,0,0 +159285,8748,0,63428,0,0 +159286,8749,0,65850,0,0 +159287,8750,0,64287,0,0 +159288,8751,0,64604,0,0 +159289,8752,0,65851,0,0 +159290,8753,0,65200,0,0 +159291,8754,0,65852,0,0 +159292,8755,0,63546,0,0 +159293,9042,0,64342,0,0 +159294,9239,0,64953,0,0 +159295,9285,0,65853,0,0 +159296,9286,0,65854,0,0 +159297,9287,0,65855,0,0 +159298,9288,0,65856,0,0 +159299,9289,0,65857,0,0 +159300,9290,0,63546,0,0 +159301,9291,0,65858,0,0 +159302,9292,0,65859,0,0 +159303,9359,0,63934,0,0 +159304,9366,0,65860,0,0 +159305,9372,0,65861,0,0 +159306,9375,0,65862,0,0 +159307,9376,0,65863,0,0 +159308,9377,0,63794,0,0 +159309,9378,0,65127,0,0 +159310,9379,0,65864,0,0 +159311,9381,0,65865,0,0 +159312,9382,0,65503,0,0 +159313,9383,0,65866,0,0 +159314,9384,0,65867,0,0 +159315,9385,0,65868,0,0 +159316,9386,0,65869,0,0 +159317,9387,0,65870,0,0 +159318,9388,0,65871,0,0 +159319,9389,0,65872,0,0 +159320,9390,0,65873,0,0 +159321,9391,0,63401,0,0 +159322,9392,0,65874,0,0 +159323,9393,0,64016,0,0 +159324,9394,0,65875,0,0 +159325,9395,0,65876,0,0 +159326,9396,0,65877,0,0 +159327,9397,0,65878,0,0 +159328,9398,0,65879,0,0 +159329,9399,0,63945,0,0 +159330,9400,0,65880,0,0 +159331,9401,0,63644,0,0 +159332,9402,0,65881,0,0 +159333,9403,0,65882,0,0 +159334,9404,0,65883,0,0 +159335,9405,0,65884,0,0 +159336,9406,0,65885,0,0 +159337,9407,0,65886,0,0 +159338,9408,0,65887,0,0 +159339,9409,0,65888,0,0 +159340,9410,0,65889,0,0 +159341,9411,0,63356,0,0 +159342,9412,0,65890,0,0 +159343,9413,0,65891,0,0 +159344,9414,0,65892,0,0 +159345,9415,0,65893,0,0 +159346,9416,0,65894,0,0 +159347,9418,0,65895,0,0 +159348,9419,0,65896,0,0 +159349,9420,0,65897,0,0 +159350,9422,0,65898,0,0 +159351,9423,0,65899,0,0 +159352,9424,0,65900,0,0 +159353,9425,0,65901,0,0 +159354,9426,0,65902,0,0 +159355,9427,0,65903,0,0 +159356,9428,0,65904,0,0 +159357,9429,0,65905,0,0 +159358,9430,0,65906,0,0 +159359,9431,0,65907,0,0 +159360,9432,0,65833,0,0 +159361,9433,0,65908,0,0 +159362,9434,0,65909,0,0 +159363,9435,0,65719,0,0 +159364,9444,0,65001,0,0 +159365,9445,0,65910,0,0 +159366,9446,0,64274,0,0 +159367,9448,0,64491,0,0 +159368,9449,0,65911,0,0 +159369,9450,0,65676,0,0 +159370,9452,0,65912,0,0 +159371,9453,0,65913,0,0 +159372,9454,0,65914,0,0 +159373,9455,0,65915,0,0 +159374,9456,0,65916,0,0 +159375,9457,0,65917,0,0 +159376,9458,0,65918,0,0 +159377,9459,0,65919,0,0 +159378,9465,0,65127,0,0 +159379,9467,0,65920,0,0 +159380,9469,0,63678,0,0 +159381,9470,0,65760,0,0 +159382,9473,0,65921,0,0 +159383,9474,0,65922,0,0 +159384,9475,0,64301,0,0 +159385,9476,0,65592,0,0 +159386,9477,0,65923,0,0 +159387,9478,0,65924,0,0 +159388,9479,0,65925,0,0 +159389,9480,0,65926,0,0 +159390,9481,0,65927,0,0 +159391,9482,0,65928,0,0 +159392,9483,0,64931,0,0 +159393,9484,0,65929,0,0 +159394,9485,0,65930,0,0 +159395,9486,0,65931,0,0 +159396,9487,0,65932,0,0 +159397,9488,0,65933,0,0 +159398,9489,0,65934,0,0 +159399,9490,0,65935,0,0 +159400,9491,0,64426,0,0 +159401,9492,0,65936,0,0 +159402,9508,0,65937,0,0 +159403,9509,0,65497,0,0 +159404,9510,0,65938,0,0 +159405,9511,0,65939,0,0 +159406,9512,0,65940,0,0 +159407,9513,0,65941,0,0 +159408,9514,0,65942,0,0 +159409,9515,0,65943,0,0 +159410,9516,0,65944,0,0 +159411,9517,0,65945,0,0 +159412,9518,0,65946,0,0 +159413,9519,0,65947,0,0 +159414,9520,0,65948,0,0 +159415,9521,0,65949,0,0 +159416,9522,0,65001,0,0 +159417,9527,0,65950,0,0 +159418,9531,0,65951,0,0 +159419,9534,0,65952,0,0 +159420,9535,0,65953,0,0 +159421,9536,0,65954,0,0 +159422,9598,0,64815,0,0 +159423,9599,0,64246,0,0 +159424,9600,0,65955,0,0 +159425,9601,0,65956,0,0 +159426,9603,0,65957,0,0 +159427,9604,0,65958,0,0 +159428,9605,0,64419,0,0 +159429,9607,0,65959,0,0 +159430,9608,0,63650,0,0 +159431,9609,0,65960,0,0 +159432,9623,0,65961,0,0 +159433,9624,0,65755,0,0 +159434,9625,0,65535,0,0 +159435,9626,0,65962,0,0 +159436,9627,0,64016,0,0 +159437,9630,0,65963,0,0 +159438,9631,0,64613,0,0 +159439,9632,0,65785,0,0 +159440,9633,0,65781,0,0 +159441,9634,0,65964,0,0 +159442,9635,0,65965,0,0 +159443,9636,0,64269,0,0 +159444,9637,0,65966,0,0 +159445,9638,0,65967,0,0 +159446,9639,0,65968,0,0 +159447,9640,0,65969,0,0 +159448,9643,0,65970,0,0 +159449,9644,0,64068,0,0 +159450,9645,0,65971,0,0 +159451,9646,0,65972,0,0 +159452,9647,0,65754,0,0 +159453,9648,0,65973,0,0 +159454,9649,0,65974,0,0 +159455,9650,0,65975,0,0 +159456,9651,0,65976,0,0 +159457,9652,0,65977,0,0 +159458,9653,0,65978,0,0 +159459,9654,0,65979,0,0 +159460,9656,0,65650,0,0 +159461,9657,0,64802,0,0 +159462,9658,0,65980,0,0 +159463,9659,0,65968,0,0 +159464,9660,0,65981,0,0 +159465,9661,0,65982,0,0 +159466,9662,0,65983,0,0 +159467,9663,0,65717,0,0 +159468,9664,0,65984,0,0 +159469,9665,0,65985,0,0 +159470,9666,0,65986,0,0 +159471,9678,0,65159,0,0 +159472,9679,0,65987,0,0 +159473,9680,0,65988,0,0 +159474,9682,0,65302,0,0 +159475,9683,0,65989,0,0 +159476,9684,0,65990,0,0 +159477,9686,0,65991,0,0 +159478,9687,0,63920,0,0 +159479,9698,0,64424,0,0 +159480,9699,0,65992,0,0 +159481,9700,0,65847,0,0 +159482,9701,0,65845,0,0 +159483,9702,0,65846,0,0 +159484,9703,0,65993,0,0 +159485,9704,0,65994,0,0 +159486,9705,0,64718,0,0 +159487,9706,0,65995,0,0 +159488,9718,0,65996,0,0 +159489,9742,0,64391,0,0 +159490,9743,0,65997,0,0 +159491,9744,0,64441,0,0 +159492,9745,0,65998,0,0 +159493,9746,0,64442,0,0 +159494,9747,0,64443,0,0 +159495,9748,0,65961,0,0 +159496,9749,0,64445,0,0 +159497,9750,0,65999,0,0 +159498,9751,0,66000,0,0 +159499,9752,0,64845,0,0 +159500,9753,0,64538,0,0 +159501,9754,0,66001,0,0 +159502,9755,0,66002,0,0 +159503,9756,0,64856,0,0 +159504,9757,0,66003,0,0 +159505,9758,0,66004,0,0 +159506,9759,0,66005,0,0 +159507,9760,0,66006,0,0 +159508,9761,0,66007,0,0 +159509,9762,0,66008,0,0 +159510,9763,0,65749,0,0 +159511,9764,0,66009,0,0 +159512,9765,0,66010,0,0 +159513,9766,0,64720,0,0 +159514,9767,0,66011,0,0 +159515,9768,0,66012,0,0 +159516,9769,0,66013,0,0 +159517,9770,0,63424,0,0 +159518,9771,0,63280,0,0 +159519,9772,0,66014,0,0 +159520,9773,0,66015,0,0 +159521,9774,0,64908,0,0 +159522,9775,0,63640,0,0 +159523,9776,0,65077,0,0 +159524,9777,0,66016,0,0 +159525,9778,0,65362,0,0 +159526,9779,0,63837,0,0 +159527,9780,0,63665,0,0 +159528,9781,0,63438,0,0 +159529,9782,0,63242,0,0 +159530,9783,0,64265,0,0 +159531,9784,0,63668,0,0 +159532,9785,0,66017,0,0 +159533,9786,0,66018,0,0 +159534,9787,0,65460,0,0 +159535,9788,0,66019,0,0 +159536,9789,0,64825,0,0 +159537,9790,0,63669,0,0 +159538,9791,0,66020,0,0 +159539,9792,0,65269,0,0 +159540,9793,0,65254,0,0 +159541,9794,0,66021,0,0 +159542,9795,0,66022,0,0 +159543,9796,0,63579,0,0 +159544,9797,0,66023,0,0 +159545,9798,0,65276,0,0 +159546,9799,0,66024,0,0 +159547,9800,0,66025,0,0 +159548,9801,0,64298,0,0 +159549,9802,0,63768,0,0 +159550,9803,0,63609,0,0 +159551,9804,0,63671,0,0 +159552,9805,0,63478,0,0 +159553,9806,0,63770,0,0 +159554,9807,0,66026,0,0 +159555,9808,0,63771,0,0 +159556,9809,0,66027,0,0 +159557,9810,0,63326,0,0 +159558,9811,0,63639,0,0 +159559,9812,0,66028,0,0 +159560,9813,0,63327,0,0 +159561,9814,0,66029,0,0 +159562,9815,0,63325,0,0 +159563,9816,0,66030,0,0 +159564,9817,0,66031,0,0 +159565,9818,0,63324,0,0 +159566,9819,0,63509,0,0 +159567,9820,0,64155,0,0 +159568,9821,0,64497,0,0 +159569,9822,0,66032,0,0 +159570,9823,0,64507,0,0 +159571,9824,0,64501,0,0 +159572,9825,0,64790,0,0 +159573,9826,0,66033,0,0 +159574,9827,0,64446,0,0 +159575,9828,0,66034,0,0 +159576,9829,0,63641,0,0 +159577,9830,0,63426,0,0 +159578,9831,0,66035,0,0 +159579,9832,0,66036,0,0 +159580,9833,0,63269,0,0 +159581,9834,0,66037,0,0 +159582,9835,0,63268,0,0 +159583,9836,0,66038,0,0 +159584,9837,0,66039,0,0 +159585,9838,0,65567,0,0 +159586,9839,0,66040,0,0 +159587,9840,0,66041,0,0 +159588,9841,0,66042,0,0 +159589,9842,0,66043,0,0 +159590,9843,0,66044,0,0 +159591,9844,0,66045,0,0 +159592,9845,0,66046,0,0 +159593,9846,0,66047,0,0 +159594,9847,0,66048,0,0 +159595,9848,0,66049,0,0 +159596,9849,0,65706,0,0 +159597,9850,0,64642,0,0 +159598,9851,0,66050,0,0 +159599,9852,0,66051,0,0 +159600,9853,0,66052,0,0 +159601,9854,0,65481,0,0 +159602,9855,0,65219,0,0 +159603,9856,0,65503,0,0 +159604,9857,0,66053,0,0 +159605,9858,0,64404,0,0 +159606,9859,0,66054,0,0 +159607,9860,0,65152,0,0 +159608,9861,0,66055,0,0 +159609,9862,0,66056,0,0 +159610,9863,0,64778,0,0 +159611,9864,0,66057,0,0 +159612,9865,0,66058,0,0 +159613,9866,0,66059,0,0 +159614,9867,0,66060,0,0 +159615,9868,0,66061,0,0 +159616,9869,0,66062,0,0 +159617,9870,0,66063,0,0 +159618,9871,0,66064,0,0 +159619,9872,0,66065,0,0 +159620,9873,0,65918,0,0 +159621,9874,0,66066,0,0 +159622,9875,0,66067,0,0 +159623,9876,0,66068,0,0 +159624,9877,0,66069,0,0 +159625,9878,0,66070,0,0 +159626,9879,0,66071,0,0 +159627,9880,0,66072,0,0 +159628,9881,0,66073,0,0 +159629,9882,0,66074,0,0 +159630,9883,0,66075,0,0 +159631,9884,0,66076,0,0 +159632,9885,0,66077,0,0 +159633,9886,0,64198,0,0 +159634,9887,0,65045,0,0 +159635,9889,0,66078,0,0 +159636,9890,0,65531,0,0 +159637,9891,0,64423,0,0 +159638,9892,0,66079,0,0 +159639,9893,0,66080,0,0 +159640,9894,0,63857,0,0 +159641,9895,0,66081,0,0 +159642,9896,0,66082,0,0 +159643,9897,0,66083,0,0 +159644,9898,0,66084,0,0 +159645,9899,0,64747,0,0 +159646,9900,0,66085,0,0 +159647,9901,0,66086,0,0 +159648,9902,0,64482,0,0 +159649,9903,0,66087,0,0 +159650,9904,0,66088,0,0 +159651,9905,0,66089,0,0 +159652,9906,0,65432,0,0 +159653,9907,0,65080,0,0 +159654,9908,0,66090,0,0 +159655,9909,0,63276,0,0 +159656,9910,0,65809,0,0 +159657,9911,0,66091,0,0 +159658,9912,0,66092,0,0 +159659,9913,0,66093,0,0 +159660,9914,0,65917,0,0 +159661,9915,0,66094,0,0 +159662,9916,0,64630,0,0 +159663,9917,0,65765,0,0 +159664,9918,0,66095,0,0 +159665,9919,0,66096,0,0 +159666,9920,0,66097,0,0 +159667,9921,0,64129,0,0 +159668,9922,0,65764,0,0 +159669,9923,0,66098,0,0 +159670,9924,0,65763,0,0 +159671,9925,0,66099,0,0 +159672,9926,0,66100,0,0 +159673,9927,0,66101,0,0 +159674,9928,0,66102,0,0 +159675,9929,0,66103,0,0 +159676,9930,0,66104,0,0 +159677,9931,0,66105,0,0 +159678,9932,0,65648,0,0 +159679,9933,0,66106,0,0 +159680,9934,0,66107,0,0 +159681,9935,0,66108,0,0 +159682,9936,0,65080,0,0 +159683,9937,0,63276,0,0 +159684,9938,0,66090,0,0 +159685,9939,0,64679,0,0 +159686,9940,0,66109,0,0 +159687,9941,0,66110,0,0 +159688,9942,0,66091,0,0 +159689,9943,0,66111,0,0 +159690,9944,0,66112,0,0 +159691,9945,0,65432,0,0 +159692,9946,0,66089,0,0 +159693,9947,0,66113,0,0 +159694,9948,0,66114,0,0 +159695,9949,0,66115,0,0 +159696,9950,0,66116,0,0 +159697,9951,0,66117,0,0 +159698,9952,0,66118,0,0 +159699,9953,0,63999,0,0 +159700,9954,0,66119,0,0 +159701,9955,0,66120,0,0 +159702,9956,0,66121,0,0 +159703,9957,0,66122,0,0 +159704,9958,0,66123,0,0 +159705,9959,0,66124,0,0 +159706,9960,0,63338,0,0 +159707,9961,0,66125,0,0 +159708,9962,0,66126,0,0 +159709,9963,0,66127,0,0 +159710,9964,0,66128,0,0 +159711,9965,0,66129,0,0 +159712,9966,0,66130,0,0 +159713,9967,0,66131,0,0 +159714,9968,0,66132,0,0 +159715,9969,0,66133,0,0 +159716,9970,0,66134,0,0 +159717,9971,0,66135,0,0 +159718,9972,0,66136,0,0 +159719,9973,0,66137,0,0 +159720,9974,0,65210,0,0 +159721,9978,0,66138,0,0 +159722,9998,0,66139,0,0 +159723,9999,0,66140,0,0 +159724,10001,0,66141,0,0 +159725,10002,0,66142,0,0 +159726,10003,0,66143,0,0 +159727,10004,0,66144,0,0 +159728,10006,0,66145,0,0 +159729,10007,0,66146,0,0 +159730,10008,0,66147,0,0 +159731,10009,0,65777,0,0 +159732,10010,0,65545,0,0 +159733,10011,0,65547,0,0 +159734,10018,0,66148,0,0 +159735,10019,0,66149,0,0 +159736,10020,0,66150,0,0 +159737,10021,0,66151,0,0 +159738,10023,0,66152,0,0 +159739,10024,0,66153,0,0 +159740,10025,0,66154,0,0 +159741,10026,0,66155,0,0 +159742,10027,0,66156,0,0 +159743,10028,0,66157,0,0 +159744,10029,0,66158,0,0 +159745,10030,0,66159,0,0 +159746,10031,0,66160,0,0 +159747,10032,0,66161,0,0 +159748,10033,0,66162,0,0 +159749,10034,0,65386,0,0 +159750,10035,0,65388,0,0 +159751,10036,0,65387,0,0 +159752,10037,0,66147,0,0 +159753,10038,0,64798,0,0 +159754,10039,0,65548,0,0 +159755,10040,0,66163,0,0 +159756,10041,0,66164,0,0 +159757,10042,0,66165,0,0 +159758,10043,0,66166,0,0 +159759,10044,0,66167,0,0 +159760,10045,0,63300,0,0 +159761,10046,0,65107,0,0 +159762,10047,0,66168,0,0 +159763,10048,0,66169,0,0 +159764,10052,0,66170,0,0 +159765,10053,0,66171,0,0 +159766,10054,0,66172,0,0 +159767,10055,0,66173,0,0 +159768,10056,0,66174,0,0 +159769,10057,0,66175,0,0 +159770,10058,0,66176,0,0 +159771,10059,0,66177,0,0 +159772,10060,0,64617,0,0 +159773,10061,0,66178,0,0 +159774,10062,0,66179,0,0 +159775,10063,0,66180,0,0 +159776,10064,0,66181,0,0 +159777,10065,0,66182,0,0 +159778,10066,0,66183,0,0 +159779,10067,0,66184,0,0 +159780,10068,0,66185,0,0 +159781,10069,0,66186,0,0 +159782,10070,0,66187,0,0 +159783,10071,0,65711,0,0 +159784,10072,0,66188,0,0 +159785,10073,0,64287,0,0 +159786,10074,0,65977,0,0 +159787,10075,0,66189,0,0 +159788,10076,0,66190,0,0 +159789,10077,0,66191,0,0 +159790,10078,0,66192,0,0 +159791,10079,0,66193,0,0 +159792,10080,0,66194,0,0 +159793,10081,0,66195,0,0 +159794,10082,0,66196,0,0 +159795,10083,0,66197,0,0 +159796,10084,0,66198,0,0 +159797,10085,0,66199,0,0 +159798,10086,0,66200,0,0 +159799,10087,0,66201,0,0 +159800,10088,0,66202,0,0 +159801,10089,0,66203,0,0 +159802,10090,0,65336,0,0 +159803,10091,0,66204,0,0 +159804,10092,0,66205,0,0 +159805,10093,0,66192,0,0 +159806,10094,0,66206,0,0 +159807,10095,0,66207,0,0 +159808,10096,0,66208,0,0 +159809,10097,0,66209,0,0 +159810,10098,0,66210,0,0 +159811,10099,0,66211,0,0 +159812,10100,0,66212,0,0 +159813,10101,0,66213,0,0 +159814,10102,0,66214,0,0 +159815,10103,0,66215,0,0 +159816,10104,0,66216,0,0 +159817,10105,0,66217,0,0 +159818,10106,0,66218,0,0 +159819,10107,0,66219,0,0 +159820,10108,0,66220,0,0 +159821,10109,0,66221,0,0 +159822,10110,0,66222,0,0 +159823,10111,0,64481,0,0 +159824,10112,0,66223,0,0 +159825,10113,0,66224,0,0 +159826,10118,0,66225,0,0 +159827,10119,0,66226,0,0 +159828,10120,0,66227,0,0 +159829,10121,0,66228,0,0 +159830,10122,0,66229,0,0 +159831,10123,0,66230,0,0 +159832,10124,0,66231,0,0 +159833,10125,0,66232,0,0 +159834,10126,0,66233,0,0 +159835,10127,0,66234,0,0 +159836,10128,0,66235,0,0 +159837,10129,0,66236,0,0 +159838,10130,0,66237,0,0 +159839,10131,0,66238,0,0 +159840,10132,0,66239,0,0 +159841,10133,0,66240,0,0 +159842,10134,0,65656,0,0 +159843,10135,0,66241,0,0 +159844,10136,0,66242,0,0 +159845,10137,0,66243,0,0 +159846,10138,0,66244,0,0 +159847,10139,0,66245,0,0 +159848,10140,0,66246,0,0 +159849,10141,0,66247,0,0 +159850,10142,0,66248,0,0 +159851,10143,0,66249,0,0 +159852,10144,0,66250,0,0 +159853,10145,0,66251,0,0 +159854,10146,0,66252,0,0 +159855,10147,0,66253,0,0 +159856,10148,0,66254,0,0 +159857,10149,0,66255,0,0 +159858,10150,0,65713,0,0 +159859,10151,0,66256,0,0 +159860,10152,0,66257,0,0 +159861,10153,0,66258,0,0 +159862,10154,0,66259,0,0 +159863,10155,0,66260,0,0 +159864,10156,0,66261,0,0 +159865,10157,0,66262,0,0 +159866,10158,0,66263,0,0 +159867,10159,0,64328,0,0 +159868,10160,0,66264,0,0 +159869,10161,0,66265,0,0 +159870,10162,0,66266,0,0 +159871,10163,0,66267,0,0 +159872,10164,0,66268,0,0 +159873,10165,0,66269,0,0 +159874,10166,0,66270,0,0 +159875,10167,0,66271,0,0 +159876,10168,0,66272,0,0 +159877,10169,0,66273,0,0 +159878,10170,0,66274,0,0 +159879,10171,0,66275,0,0 +159880,10172,0,66276,0,0 +159881,10173,0,64378,0,0 +159882,10174,0,66277,0,0 +159883,10175,0,66278,0,0 +159884,10176,0,66279,0,0 +159885,10177,0,63912,0,0 +159886,10178,0,66280,0,0 +159887,10179,0,63913,0,0 +159888,10180,0,64377,0,0 +159889,10181,0,66281,0,0 +159890,10182,0,64344,0,0 +159891,10183,0,64345,0,0 +159892,10184,0,64347,0,0 +159893,10185,0,66282,0,0 +159894,10186,0,66283,0,0 +159895,10187,0,66284,0,0 +159896,10188,0,63557,0,0 +159897,10189,0,66285,0,0 +159898,10190,0,66286,0,0 +159899,10191,0,66082,0,0 +159900,10192,0,66081,0,0 +159901,10193,0,66083,0,0 +159902,10194,0,66287,0,0 +159903,10195,0,66288,0,0 +159904,10196,0,66085,0,0 +159905,10197,0,66086,0,0 +159906,10198,0,66289,0,0 +159907,10199,0,66087,0,0 +159908,10200,0,66290,0,0 +159909,10201,0,66291,0,0 +159910,10202,0,66292,0,0 +159911,10203,0,66293,0,0 +159912,10204,0,64403,0,0 +159913,10205,0,65889,0,0 +159914,10206,0,66294,0,0 +159915,10207,0,66295,0,0 +159916,10208,0,66296,0,0 +159917,10209,0,66297,0,0 +159918,10210,0,66298,0,0 +159919,10211,0,65584,0,0 +159920,10212,0,66299,0,0 +159921,10213,0,65586,0,0 +159922,10214,0,65583,0,0 +159923,10215,0,66300,0,0 +159924,10216,0,65441,0,0 +159925,10217,0,66301,0,0 +159926,10218,0,66302,0,0 +159927,10219,0,66264,0,0 +159928,10220,0,66303,0,0 +159929,10221,0,66304,0,0 +159930,10222,0,66305,0,0 +159931,10223,0,66306,0,0 +159932,10224,0,66307,0,0 +159933,10225,0,65614,0,0 +159934,10226,0,66308,0,0 +159935,10227,0,66309,0,0 +159936,10228,0,66310,0,0 +159937,10229,0,66311,0,0 +159938,10230,0,66312,0,0 +159939,10231,0,66313,0,0 +159940,10232,0,66314,0,0 +159941,10233,0,66315,0,0 +159942,10234,0,66316,0,0 +159943,10235,0,65624,0,0 +159944,10236,0,66317,0,0 +159945,10237,0,66318,0,0 +159946,10238,0,66319,0,0 +159947,10239,0,66320,0,0 +159948,10240,0,66321,0,0 +159949,10241,0,66322,0,0 +159950,10242,0,66323,0,0 +159951,10243,0,65815,0,0 +159952,10244,0,66324,0,0 +159953,10245,0,66325,0,0 +159954,10246,0,66326,0,0 +159955,10247,0,63830,0,0 +159956,10248,0,64733,0,0 +159957,10249,0,66327,0,0 +159958,10250,0,66328,0,0 +159959,10251,0,65174,0,0 +159960,10252,0,63856,0,0 +159961,10253,0,66156,0,0 +159962,10254,0,66329,0,0 +159963,10255,0,66184,0,0 +159964,10256,0,66330,0,0 +159965,10257,0,66331,0,0 +159966,10258,0,66117,0,0 +159967,10259,0,65799,0,0 +159968,10260,0,66332,0,0 +159969,10261,0,66333,0,0 +159970,10262,0,66334,0,0 +159971,10263,0,66335,0,0 +159972,10264,0,66336,0,0 +159973,10265,0,66337,0,0 +159974,10266,0,66338,0,0 +159975,10267,0,66339,0,0 +159976,10268,0,66340,0,0 +159977,10269,0,66341,0,0 +159978,10270,0,66342,0,0 +159979,10271,0,66263,0,0 +159980,10272,0,66343,0,0 +159981,10273,0,66344,0,0 +159982,10274,0,66345,0,0 +159983,10275,0,66346,0,0 +159984,10276,0,66347,0,0 +159985,10277,0,66348,0,0 +159986,10278,0,66349,0,0 +159987,10279,0,64460,0,0 +159988,10280,0,66350,0,0 +159989,10281,0,66351,0,0 +159990,10282,0,66352,0,0 +159991,10287,0,65273,0,0 +159992,10288,0,66353,0,0 +159993,10289,0,66354,0,0 +159994,10328,0,66355,0,0 +159995,10329,0,66356,0,0 +159996,10330,0,64854,0,0 +159997,10331,0,66357,0,0 +159998,10332,0,66358,0,0 +159999,10333,0,66359,0,0 +160000,10358,0,65953,0,0 +160001,10359,0,66360,0,0 +160002,10362,0,66361,0,0 +160003,10363,0,66362,0,0 +160004,10364,0,65959,0,0 +160005,10365,0,66363,0,0 +160006,10366,0,66364,0,0 +160007,10367,0,66365,0,0 +160008,10368,0,66366,0,0 +160009,10369,0,66367,0,0 +160010,10370,0,66368,0,0 +160011,10371,0,66369,0,0 +160012,10372,0,66370,0,0 +160013,10373,0,66371,0,0 +160014,10374,0,66372,0,0 +160015,10375,0,66373,0,0 +160016,10376,0,66374,0,0 +160017,10377,0,66375,0,0 +160018,10378,0,66376,0,0 +160019,10379,0,65624,0,0 +160020,10380,0,66377,0,0 +160021,10381,0,66378,0,0 +160022,10382,0,66379,0,0 +160023,10383,0,66380,0,0 +160024,10384,0,66381,0,0 +160025,10385,0,66382,0,0 +160026,10386,0,66383,0,0 +160027,10387,0,66384,0,0 +160028,10388,0,66385,0,0 +160029,10389,0,66386,0,0 +160030,10390,0,66387,0,0 +160031,10391,0,66388,0,0 +160032,10399,0,66389,0,0 +160033,10400,0,66390,0,0 +160034,10401,0,65490,0,0 +160035,10402,0,66391,0,0 +160036,10403,0,65069,0,0 +160037,10404,0,64503,0,0 +160038,10405,0,65292,0,0 +160039,10406,0,66392,0,0 +160040,10407,0,64836,0,0 +160041,10408,0,66393,0,0 +160042,10409,0,66394,0,0 +160043,10410,0,65761,0,0 +160044,10411,0,66395,0,0 +160045,10412,0,66396,0,0 +160046,10413,0,66397,0,0 +160047,10421,0,63570,0,0 +160048,10422,0,64464,0,0 +160049,10423,0,64557,0,0 +160050,10461,0,66398,0,0 +160051,10462,0,66399,0,0 +160052,10499,0,66400,0,0 +160053,10500,0,66401,0,0 +160054,10501,0,66402,0,0 +160055,10502,0,66403,0,0 +160056,10503,0,66404,0,0 +160057,10504,0,66405,0,0 +160058,10506,0,66406,0,0 +160059,10508,0,65890,0,0 +160060,10510,0,66407,0,0 +160061,10512,0,63946,0,0 +160062,10513,0,63946,0,0 +160063,10515,0,65156,0,0 +160064,10518,0,66408,0,0 +160065,10542,0,66409,0,0 +160066,10543,0,65862,0,0 +160067,10544,0,66410,0,0 +160068,10545,0,66411,0,0 +160069,10547,0,63310,0,0 +160070,10549,0,66412,0,0 +160071,10550,0,66413,0,0 +160072,10553,0,66414,0,0 +160073,10554,0,66415,0,0 +160074,10567,0,66416,0,0 +160075,10568,0,65159,0,0 +160076,10570,0,66417,0,0 +160077,10571,0,64272,0,0 +160078,10572,0,66418,0,0 +160079,10573,0,66419,0,0 +160080,10574,0,66420,0,0 +160081,10578,0,66421,0,0 +160082,10579,0,63945,0,0 +160083,10581,0,66422,0,0 +160084,10582,0,65328,0,0 +160085,10583,0,66423,0,0 +160086,10584,0,66424,0,0 +160087,10588,0,66425,0,0 +160088,10591,0,65976,0,0 +160089,10611,0,65356,0,0 +160090,10612,0,66426,0,0 +160091,10613,0,66427,0,0 +160092,10614,0,66428,0,0 +160093,10615,0,65939,0,0 +160094,10616,0,66429,0,0 +160095,10617,0,65160,0,0 +160096,10618,0,66430,0,0 +160097,10619,0,64182,0,0 +160098,10623,0,66431,0,0 +160099,10624,0,64133,0,0 +160100,10625,0,66430,0,0 +160101,10626,0,66432,0,0 +160102,10627,0,66433,0,0 +160103,10628,0,66434,0,0 +160104,10629,0,66435,0,0 +160105,10630,0,66436,0,0 +160106,10631,0,66437,0,0 +160107,10632,0,66438,0,0 +160108,10633,0,66439,0,0 +160109,10635,0,66440,0,0 +160110,10636,0,64530,0,0 +160111,10637,0,66441,0,0 +160112,10638,0,66442,0,0 +160113,10652,0,66443,0,0 +160114,10653,0,65638,0,0 +160115,10654,0,66444,0,0 +160116,10655,0,66445,0,0 +160117,10656,0,64247,0,0 +160118,10657,0,66446,0,0 +160119,10658,0,66447,0,0 +160120,10685,0,63721,0,0 +160121,10686,0,66448,0,0 +160122,10696,0,66449,0,0 +160123,10697,0,66450,0,0 +160124,10698,0,66451,0,0 +160125,10700,0,66452,0,0 +160126,10701,0,66453,0,0 +160127,10702,0,66454,0,0 +160128,10703,0,66455,0,0 +160129,10704,0,66456,0,0 +160130,10705,0,66457,0,0 +160131,10706,0,66237,0,0 +160132,10707,0,66458,0,0 +160133,10708,0,66459,0,0 +160134,10709,0,65610,0,0 +160135,10721,0,65501,0,0 +160136,10724,0,66460,0,0 +160137,10726,0,66138,0,0 +160138,10740,0,66296,0,0 +160139,10741,0,66461,0,0 +160140,10742,0,66462,0,0 +160141,10743,0,66463,0,0 +160142,10744,0,65990,0,0 +160143,10745,0,66464,0,0 +160144,10746,0,66465,0,0 +160145,10747,0,66466,0,0 +160146,10748,0,64345,0,0 +160147,10749,0,66467,0,0 +160148,10750,0,64949,0,0 +160149,10751,0,66468,0,0 +160150,10756,0,65466,0,0 +160151,10758,0,66469,0,0 +160152,10760,0,65555,0,0 +160153,10761,0,66470,0,0 +160154,10762,0,66471,0,0 +160155,10763,0,65737,0,0 +160156,10764,0,66472,0,0 +160157,10765,0,66473,0,0 +160158,10766,0,66474,0,0 +160159,10767,0,66475,0,0 +160160,10768,0,66476,0,0 +160161,10770,0,66459,0,0 +160162,10771,0,66477,0,0 +160163,10772,0,63430,0,0 +160164,10774,0,66478,0,0 +160165,10775,0,66479,0,0 +160166,10776,0,64506,0,0 +160167,10777,0,66480,0,0 +160168,10781,0,65783,0,0 +160169,10782,0,66481,0,0 +160170,10783,0,66325,0,0 +160171,10784,0,66482,0,0 +160172,10785,0,65307,0,0 +160173,10786,0,66483,0,0 +160174,10787,0,66484,0,0 +160175,10788,0,66485,0,0 +160176,10796,0,65610,0,0 +160177,10797,0,66486,0,0 +160178,10798,0,66487,0,0 +160179,10799,0,65333,0,0 +160180,10800,0,66488,0,0 +160181,10801,0,66489,0,0 +160182,10802,0,65965,0,0 +160183,10803,0,66490,0,0 +160184,10804,0,66491,0,0 +160185,10805,0,63686,0,0 +160186,10806,0,66492,0,0 +160187,10807,0,66493,0,0 +160188,10808,0,66494,0,0 +160189,10820,0,66495,0,0 +160190,10821,0,66496,0,0 +160191,10823,0,63794,0,0 +160192,10825,0,66497,0,0 +160193,10826,0,66498,0,0 +160194,10827,0,66499,0,0 +160195,10828,0,66500,0,0 +160196,10833,0,66501,0,0 +160197,10835,0,65570,0,0 +160198,10836,0,66502,0,0 +160199,10837,0,65990,0,0 +160200,10838,0,66503,0,0 +160201,10842,0,66504,0,0 +160202,10843,0,66277,0,0 +160203,10844,0,66505,0,0 +160204,10845,0,66506,0,0 +160205,10846,0,66260,0,0 +160206,10847,0,66507,0,0 +160207,10878,0,66490,0,0 +160208,10898,0,63284,0,0 +160209,10919,0,66508,0,0 +160210,11019,0,66509,0,0 +160211,11021,0,64299,0,0 +160212,11025,0,63810,0,0 +160213,11041,0,64407,0,0 +160214,11042,0,66510,0,0 +160215,11086,0,66511,0,0 +160216,11087,0,66469,0,0 +160217,11120,0,66512,0,0 +160218,11121,0,63284,0,0 +160219,11123,0,66513,0,0 +160220,11124,0,66514,0,0 +160221,11182,0,65211,0,0 +160222,11183,0,65211,0,0 +160223,11187,0,66012,0,0 +160224,11189,0,66515,0,0 +160225,11190,0,64110,0,0 +160226,11191,0,63975,0,0 +160227,11192,0,65471,0,0 +160228,11193,0,64344,0,0 +160229,11194,0,66516,0,0 +160230,11195,0,66122,0,0 +160231,11199,0,66517,0,0 +160232,11200,0,66518,0,0 +160233,11201,0,66519,0,0 +160234,11229,0,64777,0,0 +160235,11262,0,66520,0,0 +160236,11263,0,66521,0,0 +160237,11264,0,65157,0,0 +160238,11265,0,66522,0,0 +160239,11284,0,63946,0,0 +160240,11285,0,63945,0,0 +160241,11287,0,66523,0,0 +160242,11288,0,66523,0,0 +160243,11289,0,66524,0,0 +160244,11290,0,66525,0,0 +160245,11303,0,63938,0,0 +160246,11304,0,64563,0,0 +160247,11305,0,66526,0,0 +160248,11306,0,65027,0,0 +160249,11307,0,66527,0,0 +160250,11308,0,66528,0,0 +160251,11310,0,65344,0,0 +160252,11311,0,66529,0,0 +160253,11314,0,66530,0,0 +160254,11317,0,66531,0,0 +160255,11321,0,66532,0,0 +160256,11322,0,63682,0,0 +160257,11323,0,66533,0,0 +160258,11342,0,65901,0,0 +160259,11343,0,66534,0,0 +160260,11344,0,66535,0,0 +160261,11345,0,65058,0,0 +160262,11365,0,63374,0,0 +160263,11369,0,66536,0,0 +160264,11383,0,64942,0,0 +160265,11411,0,63670,0,0 +160266,11424,0,65037,0,0 +160267,11469,0,64578,0,0 +160268,11475,0,66537,0,0 +160269,11502,0,66538,0,0 +160270,11505,0,66539,0,0 +160271,11506,0,66540,0,0 +160272,11508,0,66541,0,0 +160273,11522,0,66542,0,0 +160274,11542,0,65923,0,0 +160275,11585,0,66517,0,0 +160276,11586,0,66518,0,0 +160277,11587,0,66519,0,0 +160278,11588,0,66543,0,0 +160279,11589,0,63677,0,0 +160280,11591,0,65759,0,0 +160281,11603,0,66544,0,0 +160282,11604,0,66545,0,0 +160283,11605,0,66546,0,0 +160284,11606,0,66547,0,0 +160285,11607,0,66531,0,0 +160286,11608,0,65412,0,0 +160287,11623,0,65385,0,0 +160288,11624,0,66548,0,0 +160289,11625,0,65634,0,0 +160290,11626,0,66313,0,0 +160291,11627,0,66549,0,0 +160292,11628,0,66550,0,0 +160293,11629,0,64299,0,0 +160294,11630,0,63946,0,0 +160295,11631,0,66551,0,0 +160296,11632,0,66552,0,0 +160297,11633,0,66553,0,0 +160298,11634,0,65064,0,0 +160299,11635,0,66554,0,0 +160300,11662,0,66555,0,0 +160301,11665,0,65785,0,0 +160302,11675,0,66305,0,0 +160303,11677,0,66556,0,0 +160304,11678,0,66557,0,0 +160305,11679,0,66558,0,0 +160306,11684,0,66536,0,0 +160307,11685,0,66559,0,0 +160308,11686,0,65370,0,0 +160309,11702,0,66560,0,0 +160310,11703,0,65837,0,0 +160311,11722,0,65373,0,0 +160312,11726,0,65789,0,0 +160313,11728,0,65794,0,0 +160314,11729,0,66561,0,0 +160315,11730,0,66562,0,0 +160316,11731,0,66563,0,0 +160317,11735,0,63390,0,0 +160318,11743,0,64084,0,0 +160319,11744,0,66564,0,0 +160320,11745,0,66565,0,0 +160321,11746,0,66566,0,0 +160322,11747,0,66567,0,0 +160323,11748,0,66568,0,0 +160324,11749,0,66266,0,0 +160325,11750,0,66534,0,0 +160326,11762,0,63729,0,0 +160327,11763,0,65475,0,0 +160328,11764,0,66569,0,0 +160329,11765,0,66570,0,0 +160330,11766,0,65773,0,0 +160331,11767,0,66571,0,0 +160332,11768,0,63673,0,0 +160333,11782,0,66572,0,0 +160334,11783,0,66573,0,0 +160335,11784,0,63708,0,0 +160336,11785,0,64535,0,0 +160337,11786,0,66574,0,0 +160338,11787,0,66575,0,0 +160339,11802,0,66386,0,0 +160340,11803,0,66576,0,0 +160341,11805,0,66577,0,0 +160342,11807,0,66578,0,0 +160343,11808,0,66579,0,0 +160344,11809,0,66580,0,0 +160345,11812,0,66581,0,0 +160346,11814,0,66582,0,0 +160347,11816,0,66583,0,0 +160348,11817,0,66584,0,0 +160349,11820,0,65825,0,0 +160350,11821,0,66585,0,0 +160351,11822,0,66586,0,0 +160352,11823,0,66587,0,0 +160353,11838,0,66588,0,0 +160354,11839,0,66589,0,0 +160355,11840,0,66590,0,0 +160356,11841,0,65581,0,0 +160357,11842,0,66591,0,0 +160358,11847,0,66592,0,0 +160359,11848,0,64215,0,0 +160360,11849,0,64207,0,0 +160361,11850,0,64174,0,0 +160362,11851,0,63736,0,0 +160363,11852,0,66593,0,0 +160364,11853,0,65101,0,0 +160365,11854,0,66594,0,0 +160366,11855,0,63650,0,0 +160367,11856,0,66595,0,0 +160368,11857,0,65641,0,0 +160369,11858,0,66596,0,0 +160370,11859,0,66074,0,0 +160371,11860,0,66597,0,0 +160372,11861,0,63773,0,0 +160373,11863,0,66540,0,0 +160374,11864,0,66598,0,0 +160375,11865,0,65772,0,0 +160376,11866,0,66259,0,0 +160377,11867,0,66599,0,0 +160378,11870,0,66600,0,0 +160379,11871,0,66224,0,0 +160380,11872,0,66601,0,0 +160381,11873,0,66602,0,0 +160382,11874,0,66603,0,0 +160383,11875,0,64574,0,0 +160384,11876,0,66604,0,0 +160385,11882,0,66042,0,0 +160386,11884,0,64795,0,0 +160387,11888,0,66605,0,0 +160388,11889,0,66606,0,0 +160389,11902,0,66607,0,0 +160390,11904,0,66542,0,0 +160391,11906,0,66608,0,0 +160392,11907,0,66609,0,0 +160393,11908,0,66176,0,0 +160394,11909,0,65189,0,0 +160395,11910,0,66371,0,0 +160396,11911,0,66213,0,0 +160397,11913,0,66610,0,0 +160398,11915,0,66611,0,0 +160399,11916,0,66612,0,0 +160400,11917,0,66613,0,0 +160401,11918,0,66614,0,0 +160402,11919,0,66615,0,0 +160403,11920,0,66616,0,0 +160404,11921,0,66617,0,0 +160405,11922,0,66618,0,0 +160406,11923,0,66619,0,0 +160407,11924,0,65778,0,0 +160408,11925,0,66620,0,0 +160409,11926,0,66621,0,0 +160410,11927,0,66622,0,0 +160411,11928,0,63839,0,0 +160412,11929,0,65618,0,0 +160413,11930,0,64371,0,0 +160414,11931,0,66623,0,0 +160415,11932,0,63790,0,0 +160416,11935,0,64838,0,0 +160417,11936,0,64757,0,0 +160418,11962,0,65773,0,0 +160419,11963,0,66624,0,0 +160420,11964,0,63366,0,0 +160421,12000,0,66625,0,0 +160422,12018,0,66626,0,0 +160423,12021,0,66627,0,0 +160424,12041,0,64589,0,0 +160425,12049,0,66628,0,0 +160426,12050,0,63830,0,0 +160427,12051,0,66629,0,0 +160428,12061,0,66630,0,0 +160429,12062,0,63661,0,0 +160430,12063,0,66580,0,0 +160431,12064,0,66631,0,0 +160432,12066,0,66124,0,0 +160433,12082,0,66632,0,0 +160434,12083,0,66633,0,0 +160435,12104,0,66634,0,0 +160436,12105,0,65723,0,0 +160437,12106,0,66635,0,0 +160438,12107,0,66636,0,0 +160439,12108,0,66637,0,0 +160440,12109,0,66572,0,0 +160441,12110,0,66638,0,0 +160442,12111,0,66639,0,0 +160443,12112,0,66640,0,0 +160444,12113,0,66641,0,0 +160445,12114,0,66642,0,0 +160446,12115,0,66294,0,0 +160447,12142,0,63840,0,0 +160448,12182,0,63344,0,0 +160449,12183,0,66643,0,0 +160450,12185,0,66644,0,0 +160451,12187,0,65643,0,0 +160452,12188,0,65643,0,0 +160453,12189,0,65643,0,0 +160454,12221,0,63383,0,0 +160455,12222,0,64480,0,0 +160456,12225,0,63383,0,0 +160457,12243,0,64842,0,0 +160458,12244,0,65643,0,0 +160459,12245,0,65643,0,0 +160460,12246,0,66645,0,0 +160461,12247,0,66646,0,0 +160462,12248,0,66647,0,0 +160463,12249,0,66648,0,0 +160464,12250,0,65337,0,0 +160465,12251,0,63617,0,0 +160466,12252,0,66649,0,0 +160467,12253,0,66650,0,0 +160468,12254,0,65060,0,0 +160469,12255,0,64117,0,0 +160470,12256,0,65777,0,0 +160471,12257,0,66651,0,0 +160472,12258,0,66349,0,0 +160473,12259,0,64561,0,0 +160474,12260,0,66652,0,0 +160475,12282,0,65038,0,0 +160476,12285,0,65383,0,0 +160477,12290,0,66653,0,0 +160478,12294,0,66654,0,0 +160479,12295,0,63750,0,0 +160480,12296,0,66655,0,0 +160481,12297,0,66656,0,0 +160482,12298,0,63782,0,0 +160483,12299,0,64966,0,0 +160484,12304,0,66657,0,0 +160485,12322,0,66658,0,0 +160486,12328,0,64263,0,0 +160487,12329,0,65039,0,0 +160488,12331,0,66659,0,0 +160489,12332,0,66660,0,0 +160490,12333,0,66661,0,0 +160491,12338,0,66661,0,0 +160492,12348,0,66653,0,0 +160493,12385,0,64256,0,0 +160494,12403,0,64842,0,0 +160495,12405,0,66662,0,0 +160496,12406,0,66378,0,0 +160497,12407,0,66663,0,0 +160498,12408,0,66664,0,0 +160499,12409,0,65870,0,0 +160500,12410,0,66665,0,0 +160501,12413,0,66666,0,0 +160502,12414,0,66667,0,0 +160503,12415,0,66668,0,0 +160504,12416,0,66669,0,0 +160505,12417,0,66264,0,0 +160506,12418,0,66670,0,0 +160507,12419,0,66671,0,0 +160508,12420,0,66672,0,0 +160509,12421,0,65641,0,0 +160510,12422,0,66673,0,0 +160511,12423,0,66385,0,0 +160512,12424,0,66674,0,0 +160513,12425,0,66675,0,0 +160514,12426,0,66676,0,0 +160515,12427,0,66677,0,0 +160516,12428,0,66678,0,0 +160517,12429,0,66679,0,0 +160518,12442,0,66680,0,0 +160519,12443,0,66680,0,0 +160520,12446,0,63943,0,0 +160521,12447,0,63939,0,0 +160522,12448,0,64025,0,0 +160523,12449,0,65744,0,0 +160524,12452,0,66475,0,0 +160525,12453,0,65995,0,0 +160526,12454,0,66681,0,0 +160527,12456,0,65982,0,0 +160528,12461,0,66682,0,0 +160529,12462,0,66683,0,0 +160530,12463,0,66684,0,0 +160531,12464,0,66685,0,0 +160532,12465,0,66686,0,0 +160533,12466,0,66633,0,0 +160534,12468,0,64901,0,0 +160535,12469,0,66687,0,0 +160536,12470,0,66688,0,0 +160537,12471,0,63462,0,0 +160538,12482,0,66689,0,0 +160539,12502,0,66690,0,0 +160540,12522,0,66691,0,0 +160541,12523,0,64136,0,0 +160542,12527,0,66692,0,0 +160543,12528,0,66693,0,0 +160544,12531,0,66694,0,0 +160545,12532,0,66695,0,0 +160546,12535,0,66696,0,0 +160547,12542,0,66697,0,0 +160548,12546,0,66698,0,0 +160549,12547,0,66699,0,0 +160550,12549,0,66566,0,0 +160551,12550,0,66700,0,0 +160552,12551,0,66701,0,0 +160553,12552,0,66702,0,0 +160554,12553,0,66252,0,0 +160555,12554,0,66703,0,0 +160556,12555,0,66704,0,0 +160557,12556,0,66705,0,0 +160558,12557,0,66706,0,0 +160559,12582,0,66707,0,0 +160560,12583,0,66661,0,0 +160561,12584,0,66708,0,0 +160562,12587,0,66709,0,0 +160563,12588,0,66710,0,0 +160564,12589,0,66711,0,0 +160565,12590,0,66712,0,0 +160566,12591,0,65013,0,0 +160567,12592,0,66713,0,0 +160568,12593,0,66714,0,0 +160569,12602,0,66715,0,0 +160570,12603,0,66716,0,0 +160571,12604,0,66717,0,0 +160572,12605,0,66718,0,0 +160573,12606,0,66719,0,0 +160574,12608,0,66720,0,0 +160575,12609,0,66721,0,0 +160576,12610,0,66267,0,0 +160577,12611,0,66722,0,0 +160578,12612,0,65624,0,0 +160579,12613,0,66723,0,0 +160580,12614,0,66724,0,0 +160581,12615,0,66725,0,0 +160582,12616,0,66726,0,0 +160583,12617,0,66727,0,0 +160584,12618,0,66728,0,0 +160585,12619,0,66729,0,0 +160586,12620,0,65839,0,0 +160587,12621,0,66730,0,0 +160588,12624,0,66731,0,0 +160589,12625,0,66732,0,0 +160590,12626,0,65187,0,0 +160591,12628,0,65191,0,0 +160592,12629,0,64741,0,0 +160593,12631,0,66733,0,0 +160594,12632,0,66734,0,0 +160595,12633,0,66735,0,0 +160596,12634,0,66736,0,0 +160597,12636,0,66737,0,0 +160598,12637,0,66738,0,0 +160599,12639,0,66739,0,0 +160600,12640,0,66289,0,0 +160601,12641,0,66740,0,0 +160602,12651,0,66741,0,0 +160603,12653,0,66742,0,0 +160604,12654,0,63945,0,0 +160605,12686,0,66743,0,0 +160606,12709,0,64948,0,0 +160607,12742,0,66744,0,0 +160608,12743,0,66744,0,0 +160609,12744,0,66745,0,0 +160610,12745,0,66745,0,0 +160611,12746,0,65610,0,0 +160612,12747,0,65610,0,0 +160613,12748,0,66746,0,0 +160614,12749,0,66746,0,0 +160615,12750,0,66747,0,0 +160616,12751,0,66748,0,0 +160617,12752,0,66749,0,0 +160618,12754,0,66750,0,0 +160619,12755,0,66713,0,0 +160620,12756,0,66751,0,0 +160621,12757,0,66752,0,0 +160622,12764,0,66753,0,0 +160623,12767,0,65671,0,0 +160624,12769,0,66754,0,0 +160625,12772,0,64474,0,0 +160626,12773,0,66755,0,0 +160627,12774,0,66756,0,0 +160628,12775,0,66757,0,0 +160629,12776,0,63966,0,0 +160630,12777,0,66758,0,0 +160631,12779,0,65356,0,0 +160632,12781,0,63951,0,0 +160633,12782,0,66759,0,0 +160634,12783,0,66760,0,0 +160635,12784,0,66761,0,0 +160636,12786,0,66762,0,0 +160637,12787,0,66763,0,0 +160638,12788,0,66764,0,0 +160639,12790,0,66765,0,0 +160640,12791,0,66766,0,0 +160641,12792,0,65896,0,0 +160642,12793,0,66767,0,0 +160643,12794,0,63796,0,0 +160644,12795,0,66768,0,0 +160645,12796,0,66769,0,0 +160646,12797,0,66770,0,0 +160647,12798,0,66771,0,0 +160648,12801,0,66772,0,0 +160649,12802,0,66773,0,0 +160650,12850,0,66774,0,0 +160651,12851,0,66774,0,0 +160652,12852,0,66775,0,0 +160653,12853,0,66775,0,0 +160654,12854,0,66776,0,0 +160655,12855,0,66776,0,0 +160656,12856,0,66777,0,0 +160657,12857,0,66777,0,0 +160658,12858,0,66778,0,0 +160659,12859,0,66778,0,0 +160660,12860,0,66748,0,0 +160661,12861,0,66747,0,0 +160662,12862,0,66779,0,0 +160663,12863,0,66779,0,0 +160664,12864,0,66780,0,0 +160665,12865,0,66780,0,0 +160666,12866,0,66781,0,0 +160667,12867,0,66781,0,0 +160668,12868,0,66782,0,0 +160669,12869,0,66782,0,0 +160670,12870,0,64410,0,0 +160671,12882,0,66783,0,0 +160672,12883,0,66784,0,0 +160673,12889,0,66785,0,0 +160674,12890,0,65055,0,0 +160675,12892,0,66786,0,0 +160676,12893,0,63393,0,0 +160677,12895,0,66787,0,0 +160678,12901,0,66788,0,0 +160679,12902,0,66789,0,0 +160680,12903,0,66790,0,0 +160681,12904,0,66791,0,0 +160682,12905,0,66581,0,0 +160683,12927,0,66792,0,0 +160684,12931,0,64664,0,0 +160685,12932,0,66793,0,0 +160686,12933,0,65629,0,0 +160687,12934,0,65896,0,0 +160688,12935,0,66794,0,0 +160689,12936,0,66795,0,0 +160690,12937,0,63388,0,0 +160691,12939,0,66796,0,0 +160692,12940,0,66797,0,0 +160693,12941,0,66798,0,0 +160694,12943,0,66799,0,0 +160695,12944,0,66800,0,0 +160696,12945,0,66790,0,0 +160697,12948,0,65472,0,0 +160698,12949,0,66801,0,0 +160699,12950,0,63560,0,0 +160700,12951,0,64185,0,0 +160701,12952,0,66802,0,0 +160702,12953,0,64604,0,0 +160703,12959,0,66803,0,0 +160704,12960,0,66804,0,0 +160705,12961,0,66805,0,0 +160706,12962,0,63597,0,0 +160707,12963,0,66806,0,0 +160708,12964,0,63896,0,0 +160709,12965,0,66807,0,0 +160710,12966,0,64352,0,0 +160711,12967,0,66596,0,0 +160712,12968,0,66808,0,0 +160713,12969,0,66809,0,0 +160714,12971,0,66810,0,0 +160715,12972,0,66810,0,0 +160716,12974,0,66811,0,0 +160717,12975,0,66812,0,0 +160718,12976,0,63370,0,0 +160719,12977,0,65174,0,0 +160720,12978,0,66813,0,0 +160721,12979,0,66814,0,0 +160722,12980,0,65596,0,0 +160723,12981,0,64406,0,0 +160724,12982,0,63710,0,0 +160725,12983,0,66815,0,0 +160726,12984,0,65332,0,0 +160727,12986,0,64302,0,0 +160728,12987,0,66816,0,0 +160729,12988,0,66817,0,0 +160730,12989,0,66818,0,0 +160731,12990,0,66819,0,0 +160732,12991,0,65988,0,0 +160733,12992,0,65678,0,0 +160734,12993,0,64472,0,0 +160735,12994,0,66040,0,0 +160736,12995,0,66362,0,0 +160737,12997,0,66820,0,0 +160738,12998,0,64361,0,0 +160739,12999,0,66053,0,0 +160740,13000,0,66821,0,0 +160741,13003,0,66623,0,0 +160742,13004,0,66822,0,0 +160743,13005,0,65878,0,0 +160744,13006,0,66823,0,0 +160745,13007,0,66824,0,0 +160746,13008,0,66825,0,0 +160747,13009,0,66826,0,0 +160748,13010,0,66827,0,0 +160749,13011,0,66828,0,0 +160750,13012,0,66829,0,0 +160751,13013,0,66830,0,0 +160752,13014,0,66831,0,0 +160753,13015,0,66832,0,0 +160754,13016,0,66833,0,0 +160755,13017,0,66834,0,0 +160756,13018,0,66654,0,0 +160757,13019,0,66835,0,0 +160758,13020,0,66836,0,0 +160759,13021,0,66416,0,0 +160760,13022,0,66837,0,0 +160761,13023,0,66838,0,0 +160762,13024,0,66839,0,0 +160763,13025,0,66840,0,0 +160764,13026,0,66841,0,0 +160765,13027,0,66842,0,0 +160766,13028,0,66843,0,0 +160767,13029,0,66844,0,0 +160768,13030,0,64272,0,0 +160769,13031,0,66845,0,0 +160770,13032,0,66846,0,0 +160771,13033,0,66847,0,0 +160772,13034,0,66848,0,0 +160773,13035,0,66849,0,0 +160774,13036,0,66850,0,0 +160775,13037,0,66741,0,0 +160776,13038,0,66851,0,0 +160777,13039,0,66852,0,0 +160778,13040,0,66741,0,0 +160779,13041,0,66853,0,0 +160780,13042,0,66854,0,0 +160781,13043,0,66855,0,0 +160782,13044,0,66856,0,0 +160783,13045,0,66857,0,0 +160784,13046,0,66858,0,0 +160785,13047,0,63554,0,0 +160786,13048,0,66859,0,0 +160787,13049,0,66860,0,0 +160788,13050,0,65950,0,0 +160789,13051,0,66861,0,0 +160790,13052,0,66532,0,0 +160791,13053,0,66862,0,0 +160792,13054,0,66863,0,0 +160793,13055,0,66864,0,0 +160794,13056,0,66865,0,0 +160795,13057,0,66866,0,0 +160796,13058,0,66867,0,0 +160797,13059,0,66868,0,0 +160798,13060,0,66869,0,0 +160799,13061,0,63467,0,0 +160800,13062,0,65865,0,0 +160801,13063,0,64734,0,0 +160802,13064,0,66870,0,0 +160803,13065,0,66871,0,0 +160804,13066,0,66872,0,0 +160805,13067,0,66873,0,0 +160806,13068,0,66874,0,0 +160807,13069,0,66821,0,0 +160808,13070,0,66875,0,0 +160809,13071,0,66876,0,0 +160810,13072,0,66877,0,0 +160811,13073,0,66878,0,0 +160812,13074,0,66622,0,0 +160813,13075,0,66879,0,0 +160814,13076,0,66880,0,0 +160815,13077,0,66881,0,0 +160816,13078,0,66882,0,0 +160817,13079,0,64710,0,0 +160818,13080,0,66883,0,0 +160819,13081,0,65804,0,0 +160820,13082,0,66884,0,0 +160821,13083,0,66885,0,0 +160822,13090,0,66886,0,0 +160823,13099,0,66887,0,0 +160824,13100,0,65117,0,0 +160825,13101,0,66888,0,0 +160826,13102,0,66343,0,0 +160827,13103,0,66889,0,0 +160828,13104,0,63342,0,0 +160829,13105,0,66890,0,0 +160830,13106,0,66891,0,0 +160831,13107,0,66892,0,0 +160832,13108,0,66893,0,0 +160833,13109,0,66307,0,0 +160834,13110,0,66894,0,0 +160835,13111,0,66895,0,0 +160836,13112,0,66896,0,0 +160837,13113,0,66897,0,0 +160838,13114,0,63921,0,0 +160839,13115,0,66189,0,0 +160840,13116,0,66898,0,0 +160841,13117,0,66899,0,0 +160842,13118,0,66900,0,0 +160843,13119,0,65392,0,0 +160844,13120,0,64586,0,0 +160845,13121,0,66032,0,0 +160846,13122,0,66327,0,0 +160847,13123,0,66901,0,0 +160848,13124,0,66902,0,0 +160849,13125,0,64243,0,0 +160850,13126,0,66903,0,0 +160851,13127,0,66904,0,0 +160852,13128,0,66905,0,0 +160853,13129,0,66906,0,0 +160854,13130,0,66907,0,0 +160855,13131,0,66908,0,0 +160856,13132,0,66909,0,0 +160857,13133,0,66910,0,0 +160858,13134,0,66911,0,0 +160859,13135,0,66912,0,0 +160860,13136,0,66913,0,0 +160861,13137,0,66914,0,0 +160862,13138,0,66915,0,0 +160863,13139,0,63741,0,0 +160864,13142,0,66916,0,0 +160865,13144,0,66917,0,0 +160866,13145,0,66918,0,0 +160867,13146,0,66919,0,0 +160868,13147,0,66920,0,0 +160869,13148,0,66921,0,0 +160870,13150,0,66922,0,0 +160871,13160,0,64558,0,0 +160872,13161,0,63374,0,0 +160873,13162,0,66923,0,0 +160874,13163,0,66924,0,0 +160875,13165,0,66925,0,0 +160876,13166,0,66926,0,0 +160877,13167,0,66927,0,0 +160878,13168,0,66928,0,0 +160879,13169,0,66309,0,0 +160880,13170,0,66929,0,0 +160881,13173,0,66930,0,0 +160882,13175,0,66931,0,0 +160883,13179,0,66932,0,0 +160884,13181,0,65775,0,0 +160885,13182,0,64435,0,0 +160886,13183,0,64038,0,0 +160887,13184,0,66933,0,0 +160888,13185,0,66934,0,0 +160889,13198,0,66935,0,0 +160890,13199,0,66936,0,0 +160891,13203,0,64792,0,0 +160892,13204,0,66937,0,0 +160893,13205,0,66938,0,0 +160894,13206,0,65618,0,0 +160895,13208,0,66939,0,0 +160896,13210,0,66454,0,0 +160897,13211,0,66940,0,0 +160898,13216,0,65019,0,0 +160899,13218,0,66941,0,0 +160900,13219,0,65472,0,0 +160901,13220,0,65472,0,0 +160902,13221,0,66942,0,0 +160903,13222,0,66943,0,0 +160904,13243,0,66885,0,0 +160905,13244,0,66944,0,0 +160906,13245,0,66945,0,0 +160907,13246,0,66946,0,0 +160908,13248,0,64703,0,0 +160909,13249,0,66947,0,0 +160910,13252,0,64511,0,0 +160911,13253,0,66948,0,0 +160912,13254,0,66681,0,0 +160913,13255,0,66949,0,0 +160914,13256,0,66950,0,0 +160915,13257,0,66951,0,0 +160916,13258,0,65614,0,0 +160917,13259,0,66952,0,0 +160918,13260,0,66953,0,0 +160919,13261,0,66954,0,0 +160920,13262,0,66955,0,0 +160921,13282,0,64162,0,0 +160922,13284,0,66956,0,0 +160923,13285,0,66957,0,0 +160924,13286,0,66958,0,0 +160925,13289,0,66950,0,0 +160926,13290,0,66959,0,0 +160927,13291,0,66960,0,0 +160928,13292,0,66961,0,0 +160929,13293,0,66962,0,0 +160930,13294,0,66963,0,0 +160931,13312,0,66964,0,0 +160932,13314,0,66965,0,0 +160933,13315,0,66966,0,0 +160934,13316,0,66967,0,0 +160935,13318,0,63711,0,0 +160936,13319,0,66938,0,0 +160937,13336,0,66968,0,0 +160938,13337,0,66969,0,0 +160939,13338,0,66970,0,0 +160940,13339,0,66971,0,0 +160941,13340,0,66972,0,0 +160942,13341,0,64409,0,0 +160943,13344,0,66085,0,0 +160944,13346,0,66973,0,0 +160945,13348,0,66801,0,0 +160946,13349,0,63339,0,0 +160947,13353,0,66747,0,0 +160948,13358,0,66974,0,0 +160949,13359,0,66975,0,0 +160950,13360,0,66470,0,0 +160951,13361,0,66976,0,0 +160952,13368,0,66977,0,0 +160953,13369,0,66978,0,0 +160954,13371,0,63419,0,0 +160955,13372,0,65619,0,0 +160956,13374,0,66979,0,0 +160957,13375,0,66980,0,0 +160958,13376,0,66244,0,0 +160959,13377,0,63946,0,0 +160960,13378,0,66981,0,0 +160961,13380,0,65890,0,0 +160962,13381,0,66982,0,0 +160963,13383,0,66983,0,0 +160964,13384,0,66984,0,0 +160965,13385,0,66781,0,0 +160966,13386,0,66985,0,0 +160967,13387,0,66986,0,0 +160968,13388,0,66987,0,0 +160969,13389,0,66988,0,0 +160970,13390,0,66989,0,0 +160971,13391,0,66990,0,0 +160972,13393,0,66991,0,0 +160973,13394,0,66992,0,0 +160974,13395,0,66993,0,0 +160975,13396,0,66994,0,0 +160976,13397,0,66701,0,0 +160977,13398,0,66305,0,0 +160978,13399,0,66540,0,0 +160979,13400,0,66995,0,0 +160980,13401,0,63371,0,0 +160981,13402,0,66996,0,0 +160982,13403,0,66997,0,0 +160983,13404,0,66147,0,0 +160984,13405,0,66998,0,0 +160985,13406,0,63801,0,0 +160986,13407,0,63807,0,0 +160987,13408,0,66999,0,0 +160988,13409,0,67000,0,0 +160989,13472,0,67001,0,0 +160990,13474,0,65377,0,0 +160991,13498,0,67002,0,0 +160992,13502,0,67003,0,0 +160993,13504,0,67004,0,0 +160994,13505,0,63795,0,0 +160995,13516,0,67001,0,0 +160996,13524,0,63385,0,0 +160997,13525,0,67005,0,0 +160998,13526,0,66286,0,0 +160999,13527,0,67006,0,0 +161000,13528,0,67007,0,0 +161001,13529,0,63393,0,0 +161002,13530,0,67008,0,0 +161003,13531,0,65786,0,0 +161004,13532,0,67009,0,0 +161005,13533,0,67010,0,0 +161006,13534,0,67011,0,0 +161007,13535,0,67012,0,0 +161008,13537,0,67013,0,0 +161009,13538,0,67014,0,0 +161010,13539,0,67015,0,0 +161011,13586,0,65643,0,0 +161012,13602,0,64839,0,0 +161013,13603,0,64839,0,0 +161014,13604,0,66772,0,0 +161015,13605,0,67016,0,0 +161016,13606,0,67017,0,0 +161017,13607,0,67017,0,0 +161018,13608,0,67016,0,0 +161019,13609,0,64016,0,0 +161020,13610,0,64015,0,0 +161021,13611,0,63971,0,0 +161022,13612,0,67018,0,0 +161023,13622,0,67019,0,0 +161024,13623,0,67020,0,0 +161025,13625,0,65924,0,0 +161026,13627,0,67021,0,0 +161027,13628,0,66715,0,0 +161028,13629,0,66945,0,0 +161029,13630,0,66980,0,0 +161030,13631,0,66864,0,0 +161031,13632,0,67022,0,0 +161032,13698,0,67023,0,0 +161033,13699,0,63419,0,0 +161034,13700,0,63419,0,0 +161035,13701,0,63419,0,0 +161036,13705,0,67024,0,0 +161037,13706,0,67025,0,0 +161038,13707,0,67026,0,0 +161039,13708,0,67027,0,0 +161040,13709,0,67028,0,0 +161041,13710,0,65643,0,0 +161042,13711,0,65643,0,0 +161043,13712,0,65643,0,0 +161044,13713,0,65643,0,0 +161045,13714,0,65643,0,0 +161046,13715,0,65643,0,0 +161047,13716,0,65643,0,0 +161048,13717,0,65643,0,0 +161049,13718,0,66486,0,0 +161050,13719,0,67029,0,0 +161051,13720,0,67030,0,0 +161052,13721,0,63535,0,0 +161053,13722,0,67031,0,0 +161054,13723,0,67032,0,0 +161055,13727,0,64371,0,0 +161056,13728,0,64371,0,0 +161057,13729,0,64371,0,0 +161058,13730,0,64371,0,0 +161059,13731,0,64371,0,0 +161060,13735,0,64371,0,0 +161061,13736,0,64371,0,0 +161062,13737,0,64371,0,0 +161063,13738,0,64371,0,0 +161064,13739,0,64371,0,0 +161065,13740,0,64371,0,0 +161066,13741,0,64371,0,0 +161067,13742,0,64371,0,0 +161068,13743,0,64371,0,0 +161069,13744,0,64371,0,0 +161070,13745,0,64371,0,0 +161071,13746,0,64371,0,0 +161072,13747,0,64371,0,0 +161073,13748,0,64371,0,0 +161074,13749,0,64371,0,0 +161075,13750,0,67033,0,0 +161076,13751,0,67034,0,0 +161077,13753,0,67035,0,0 +161078,13762,0,64371,0,0 +161079,13763,0,64371,0,0 +161080,13764,0,64371,0,0 +161081,13765,0,64371,0,0 +161082,13766,0,64371,0,0 +161083,13767,0,64371,0,0 +161084,13768,0,64371,0,0 +161085,13769,0,64371,0,0 +161086,13770,0,64371,0,0 +161087,13771,0,64371,0,0 +161088,13772,0,64371,0,0 +161089,13773,0,64371,0,0 +161090,13774,0,64371,0,0 +161091,13775,0,64371,0,0 +161092,13776,0,64371,0,0 +161093,13777,0,64371,0,0 +161094,13778,0,64371,0,0 +161095,13779,0,64371,0,0 +161096,13780,0,64371,0,0 +161097,13781,0,64371,0,0 +161098,13782,0,64371,0,0 +161099,13783,0,64371,0,0 +161100,13784,0,64371,0,0 +161101,13785,0,64371,0,0 +161102,13786,0,64371,0,0 +161103,13788,0,64371,0,0 +161104,13789,0,64371,0,0 +161105,13791,0,64371,0,0 +161106,13792,0,64371,0,0 +161107,13794,0,64371,0,0 +161108,13795,0,64371,0,0 +161109,13797,0,64371,0,0 +161110,13798,0,64371,0,0 +161111,13799,0,64371,0,0 +161112,13800,0,64371,0,0 +161113,13801,0,64371,0,0 +161114,13802,0,64371,0,0 +161115,13803,0,64371,0,0 +161116,13804,0,64371,0,0 +161117,13805,0,64371,0,0 +161118,13806,0,64371,0,0 +161119,13807,0,64371,0,0 +161120,13808,0,64371,0,0 +161121,13809,0,64371,0,0 +161122,13814,0,67036,0,0 +161123,13816,0,64471,0,0 +161124,13817,0,64558,0,0 +161125,13818,0,63719,0,0 +161126,13819,0,64559,0,0 +161127,13820,0,63624,0,0 +161128,13821,0,67037,0,0 +161129,13822,0,64561,0,0 +161130,13823,0,64562,0,0 +161131,13824,0,64563,0,0 +161132,13825,0,64564,0,0 +161133,13842,0,65130,0,0 +161134,13843,0,65130,0,0 +161135,13844,0,65130,0,0 +161136,13845,0,65130,0,0 +161137,13846,0,65130,0,0 +161138,13847,0,65130,0,0 +161139,13848,0,65130,0,0 +161140,13849,0,65130,0,0 +161141,13854,0,64009,0,0 +161142,13855,0,64010,0,0 +161143,13856,0,67038,0,0 +161144,13857,0,67039,0,0 +161145,13858,0,67040,0,0 +161146,13859,0,64008,0,0 +161147,13860,0,67041,0,0 +161148,13861,0,64611,0,0 +161149,13862,0,64611,0,0 +161150,13863,0,67042,0,0 +161151,13864,0,67043,0,0 +161152,13865,0,66929,0,0 +161153,13866,0,67044,0,0 +161154,13867,0,67045,0,0 +161155,13868,0,67046,0,0 +161156,13869,0,67047,0,0 +161157,13870,0,65547,0,0 +161158,13871,0,64575,0,0 +161159,13882,0,65132,0,0 +161160,13883,0,65132,0,0 +161161,13884,0,65132,0,0 +161162,13885,0,65132,0,0 +161163,13886,0,65132,0,0 +161164,13887,0,65132,0,0 +161165,13894,0,63506,0,0 +161166,13895,0,67048,0,0 +161167,13896,0,67049,0,0 +161168,13897,0,67050,0,0 +161169,13898,0,67051,0,0 +161170,13899,0,67052,0,0 +161171,13900,0,67053,0,0 +161172,13901,0,65130,0,0 +161173,13902,0,65130,0,0 +161174,13903,0,65130,0,0 +161175,13904,0,65130,0,0 +161176,13905,0,65130,0,0 +161177,13906,0,65130,0,0 +161178,13914,0,65133,0,0 +161179,13915,0,65133,0,0 +161180,13916,0,65133,0,0 +161181,13917,0,65133,0,0 +161182,13919,0,67054,0,0 +161183,13922,0,64727,0,0 +161184,13923,0,66915,0,0 +161185,13924,0,67055,0,0 +161186,13925,0,64735,0,0 +161187,13937,0,66803,0,0 +161188,13938,0,67056,0,0 +161189,13944,0,64348,0,0 +161190,13950,0,67057,0,0 +161191,13951,0,67058,0,0 +161192,13952,0,67059,0,0 +161193,13953,0,67060,0,0 +161194,13954,0,67061,0,0 +161195,13955,0,67062,0,0 +161196,13956,0,67063,0,0 +161197,13957,0,67064,0,0 +161198,13958,0,65586,0,0 +161199,13959,0,67065,0,0 +161200,13961,0,67066,0,0 +161201,13962,0,66221,0,0 +161202,13963,0,63900,0,0 +161203,13964,0,67067,0,0 +161204,13967,0,67068,0,0 +161205,13969,0,67069,0,0 +161206,13982,0,66922,0,0 +161207,13983,0,67070,0,0 +161208,13984,0,67071,0,0 +161209,13986,0,67072,0,0 +161210,14002,0,67036,0,0 +161211,14024,0,64716,0,0 +161212,14025,0,64855,0,0 +161213,14042,0,67073,0,0 +161214,14043,0,65775,0,0 +161215,14044,0,67074,0,0 +161216,14045,0,67075,0,0 +161217,14082,0,67076,0,0 +161218,14084,0,64873,0,0 +161219,14085,0,67077,0,0 +161220,14086,0,67078,0,0 +161221,14087,0,64380,0,0 +161222,14088,0,63424,0,0 +161223,14089,0,67079,0,0 +161224,14090,0,64956,0,0 +161225,14091,0,67080,0,0 +161226,14092,0,67081,0,0 +161227,14093,0,67082,0,0 +161228,14094,0,67083,0,0 +161229,14095,0,65070,0,0 +161230,14096,0,67084,0,0 +161231,14097,0,65955,0,0 +161232,14098,0,63588,0,0 +161233,14099,0,64720,0,0 +161234,14100,0,67085,0,0 +161235,14101,0,63265,0,0 +161236,14102,0,64227,0,0 +161237,14103,0,67086,0,0 +161238,14104,0,67087,0,0 +161239,14105,0,66416,0,0 +161240,14106,0,67088,0,0 +161241,14107,0,65442,0,0 +161242,14108,0,65772,0,0 +161243,14109,0,67089,0,0 +161244,14110,0,64226,0,0 +161245,14111,0,65615,0,0 +161246,14112,0,65621,0,0 +161247,14113,0,67090,0,0 +161248,14114,0,67091,0,0 +161249,14115,0,67092,0,0 +161250,14116,0,63453,0,0 +161251,14117,0,64161,0,0 +161252,14118,0,65343,0,0 +161253,14119,0,67093,0,0 +161254,14120,0,67094,0,0 +161255,14121,0,67095,0,0 +161256,14122,0,64275,0,0 +161257,14123,0,65998,0,0 +161258,14124,0,63454,0,0 +161259,14125,0,63455,0,0 +161260,14126,0,67096,0,0 +161261,14127,0,65573,0,0 +161262,14128,0,67097,0,0 +161263,14129,0,67098,0,0 +161264,14130,0,67099,0,0 +161265,14131,0,64273,0,0 +161266,14132,0,63657,0,0 +161267,14133,0,67100,0,0 +161268,14134,0,67086,0,0 +161269,14136,0,67046,0,0 +161270,14137,0,65811,0,0 +161271,14138,0,67101,0,0 +161272,14139,0,67102,0,0 +161273,14140,0,66094,0,0 +161274,14141,0,65893,0,0 +161275,14142,0,65429,0,0 +161276,14143,0,67103,0,0 +161277,14144,0,65151,0,0 +161278,14145,0,67104,0,0 +161279,14146,0,64351,0,0 +161280,14147,0,67105,0,0 +161281,14148,0,67106,0,0 +161282,14149,0,64758,0,0 +161283,14150,0,65573,0,0 +161284,14151,0,64210,0,0 +161285,14152,0,65203,0,0 +161286,14153,0,67107,0,0 +161287,14154,0,67108,0,0 +161288,14157,0,64444,0,0 +161289,14158,0,63249,0,0 +161290,14159,0,67109,0,0 +161291,14160,0,64315,0,0 +161292,14161,0,64362,0,0 +161293,14162,0,66441,0,0 +161294,14163,0,63456,0,0 +161295,14164,0,64720,0,0 +161296,14165,0,67110,0,0 +161297,14166,0,67111,0,0 +161298,14167,0,67112,0,0 +161299,14168,0,67113,0,0 +161300,14169,0,67114,0,0 +161301,14170,0,67115,0,0 +161302,14171,0,65442,0,0 +161303,14172,0,67116,0,0 +161304,14173,0,65349,0,0 +161305,14174,0,66435,0,0 +161306,14175,0,67117,0,0 +161307,14176,0,67118,0,0 +161308,14177,0,65908,0,0 +161309,14178,0,67119,0,0 +161310,14179,0,65271,0,0 +161311,14180,0,64422,0,0 +161312,14181,0,66444,0,0 +161313,14182,0,66446,0,0 +161314,14183,0,64726,0,0 +161315,14184,0,67085,0,0 +161316,14185,0,65222,0,0 +161317,14186,0,65440,0,0 +161318,14187,0,65523,0,0 +161319,14188,0,65313,0,0 +161320,14189,0,65428,0,0 +161321,14190,0,67120,0,0 +161322,14191,0,67121,0,0 +161323,14192,0,63432,0,0 +161324,14193,0,65517,0,0 +161325,14194,0,65524,0,0 +161326,14195,0,65520,0,0 +161327,14196,0,64490,0,0 +161328,14197,0,64491,0,0 +161329,14198,0,66032,0,0 +161330,14199,0,64492,0,0 +161331,14200,0,63998,0,0 +161332,14201,0,64501,0,0 +161333,14202,0,67122,0,0 +161334,14203,0,64493,0,0 +161335,14204,0,67123,0,0 +161336,14205,0,64489,0,0 +161337,14206,0,65908,0,0 +161338,14207,0,64726,0,0 +161339,14208,0,67124,0,0 +161340,14209,0,67125,0,0 +161341,14210,0,67126,0,0 +161342,14211,0,66444,0,0 +161343,14212,0,65437,0,0 +161344,14213,0,67127,0,0 +161345,14214,0,67118,0,0 +161346,14215,0,67128,0,0 +161347,14216,0,67129,0,0 +161348,14217,0,66997,0,0 +161349,14218,0,64490,0,0 +161350,14219,0,66032,0,0 +161351,14220,0,67130,0,0 +161352,14221,0,64491,0,0 +161353,14222,0,64492,0,0 +161354,14223,0,65635,0,0 +161355,14224,0,64493,0,0 +161356,14225,0,66697,0,0 +161357,14226,0,63673,0,0 +161358,14228,0,67131,0,0 +161359,14229,0,64616,0,0 +161360,14230,0,67132,0,0 +161361,14231,0,65427,0,0 +161362,14232,0,67133,0,0 +161363,14233,0,67134,0,0 +161364,14234,0,67088,0,0 +161365,14235,0,67135,0,0 +161366,14236,0,65425,0,0 +161367,14237,0,65486,0,0 +161368,14238,0,65487,0,0 +161369,14239,0,66277,0,0 +161370,14240,0,65488,0,0 +161371,14241,0,65492,0,0 +161372,14242,0,65494,0,0 +161373,14243,0,67136,0,0 +161374,14244,0,65495,0,0 +161375,14245,0,65496,0,0 +161376,14246,0,67137,0,0 +161377,14247,0,66110,0,0 +161378,14248,0,65523,0,0 +161379,14249,0,65515,0,0 +161380,14250,0,65520,0,0 +161381,14251,0,65878,0,0 +161382,14252,0,67138,0,0 +161383,14253,0,65519,0,0 +161384,14254,0,64568,0,0 +161385,14255,0,65357,0,0 +161386,14257,0,65517,0,0 +161387,14258,0,67139,0,0 +161388,14259,0,65226,0,0 +161389,14260,0,67140,0,0 +161390,14261,0,67141,0,0 +161391,14262,0,65444,0,0 +161392,14263,0,65685,0,0 +161393,14264,0,67142,0,0 +161394,14265,0,66165,0,0 +161395,14266,0,65439,0,0 +161396,14267,0,67143,0,0 +161397,14268,0,65807,0,0 +161398,14269,0,67144,0,0 +161399,14270,0,64797,0,0 +161400,14271,0,67138,0,0 +161401,14272,0,67145,0,0 +161402,14273,0,64798,0,0 +161403,14274,0,66513,0,0 +161404,14275,0,67146,0,0 +161405,14276,0,65813,0,0 +161406,14277,0,66422,0,0 +161407,14278,0,67147,0,0 +161408,14279,0,65187,0,0 +161409,14280,0,65385,0,0 +161410,14281,0,67148,0,0 +161411,14282,0,64569,0,0 +161412,14283,0,65185,0,0 +161413,14284,0,67149,0,0 +161414,14285,0,65186,0,0 +161415,14286,0,64787,0,0 +161416,14287,0,65453,0,0 +161417,14288,0,67150,0,0 +161418,14289,0,67151,0,0 +161419,14290,0,65980,0,0 +161420,14291,0,64893,0,0 +161421,14292,0,65371,0,0 +161422,14293,0,66164,0,0 +161423,14294,0,66948,0,0 +161424,14295,0,65929,0,0 +161425,14296,0,67152,0,0 +161426,14297,0,67153,0,0 +161427,14298,0,66276,0,0 +161428,14299,0,67154,0,0 +161429,14300,0,67155,0,0 +161430,14301,0,67156,0,0 +161431,14302,0,66494,0,0 +161432,14303,0,67107,0,0 +161433,14304,0,67157,0,0 +161434,14305,0,66493,0,0 +161435,14306,0,67158,0,0 +161436,14307,0,67159,0,0 +161437,14308,0,67160,0,0 +161438,14309,0,67161,0,0 +161439,14310,0,67162,0,0 +161440,14311,0,67163,0,0 +161441,14312,0,66230,0,0 +161442,14313,0,65819,0,0 +161443,14314,0,67164,0,0 +161444,14315,0,67165,0,0 +161445,14316,0,67166,0,0 +161446,14317,0,67167,0,0 +161447,14318,0,67168,0,0 +161448,14319,0,67169,0,0 +161449,14320,0,67170,0,0 +161450,14321,0,66720,0,0 +161451,14322,0,67171,0,0 +161452,14323,0,67172,0,0 +161453,14324,0,67173,0,0 +161454,14325,0,67174,0,0 +161455,14326,0,65974,0,0 +161456,14327,0,67175,0,0 +161457,14328,0,67176,0,0 +161458,14329,0,67177,0,0 +161459,14330,0,67178,0,0 +161460,14331,0,65766,0,0 +161461,14332,0,67179,0,0 +161462,14333,0,67180,0,0 +161463,14334,0,67181,0,0 +161464,14335,0,66548,0,0 +161465,14336,0,67182,0,0 +161466,14337,0,67183,0,0 +161467,14340,0,67184,0,0 +161468,14364,0,64852,0,0 +161469,14365,0,67185,0,0 +161470,14366,0,65071,0,0 +161471,14367,0,67186,0,0 +161472,14368,0,67187,0,0 +161473,14369,0,67188,0,0 +161474,14370,0,65346,0,0 +161475,14371,0,67189,0,0 +161476,14372,0,67190,0,0 +161477,14373,0,65397,0,0 +161478,14374,0,67191,0,0 +161479,14375,0,67192,0,0 +161480,14376,0,67193,0,0 +161481,14377,0,65360,0,0 +161482,14378,0,67194,0,0 +161483,14379,0,65355,0,0 +161484,14380,0,67195,0,0 +161485,14397,0,67196,0,0 +161486,14398,0,67197,0,0 +161487,14399,0,67198,0,0 +161488,14400,0,67193,0,0 +161489,14401,0,65010,0,0 +161490,14402,0,64400,0,0 +161491,14403,0,67199,0,0 +161492,14404,0,67200,0,0 +161493,14405,0,63456,0,0 +161494,14406,0,67201,0,0 +161495,14407,0,67202,0,0 +161496,14408,0,67203,0,0 +161497,14409,0,64072,0,0 +161498,14410,0,67204,0,0 +161499,14411,0,65429,0,0 +161500,14412,0,67205,0,0 +161501,14413,0,67206,0,0 +161502,14414,0,67103,0,0 +161503,14415,0,65151,0,0 +161504,14416,0,63442,0,0 +161505,14417,0,67207,0,0 +161506,14418,0,67208,0,0 +161507,14419,0,63705,0,0 +161508,14420,0,67209,0,0 +161509,14421,0,67210,0,0 +161510,14422,0,64916,0,0 +161511,14423,0,67211,0,0 +161512,14424,0,65399,0,0 +161513,14425,0,66567,0,0 +161514,14426,0,67212,0,0 +161515,14427,0,67213,0,0 +161516,14428,0,67214,0,0 +161517,14429,0,67215,0,0 +161518,14430,0,67216,0,0 +161519,14431,0,65876,0,0 +161520,14432,0,65316,0,0 +161521,14433,0,67217,0,0 +161522,14434,0,65516,0,0 +161523,14435,0,64381,0,0 +161524,14436,0,66245,0,0 +161525,14437,0,65698,0,0 +161526,14438,0,65699,0,0 +161527,14439,0,65700,0,0 +161528,14440,0,65371,0,0 +161529,14441,0,67218,0,0 +161530,14442,0,65701,0,0 +161531,14443,0,65702,0,0 +161532,14444,0,65703,0,0 +161533,14445,0,65704,0,0 +161534,14446,0,65705,0,0 +161535,14447,0,66160,0,0 +161536,14448,0,66398,0,0 +161537,14449,0,66127,0,0 +161538,14450,0,66244,0,0 +161539,14451,0,66152,0,0 +161540,14452,0,67045,0,0 +161541,14453,0,67219,0,0 +161542,14454,0,66399,0,0 +161543,14455,0,67220,0,0 +161544,14456,0,67221,0,0 +161545,14457,0,67222,0,0 +161546,14458,0,67223,0,0 +161547,14459,0,67224,0,0 +161548,14460,0,67225,0,0 +161549,14461,0,67226,0,0 +161550,14462,0,67227,0,0 +161551,14463,0,67228,0,0 +161552,14464,0,67229,0,0 +161553,14465,0,67230,0,0 +161554,14475,0,63418,0,0 +161555,14487,0,67231,0,0 +161556,14502,0,65199,0,0 +161557,14503,0,67232,0,0 +161558,14522,0,65723,0,0 +161559,14524,0,67233,0,0 +161560,14525,0,67234,0,0 +161561,14527,0,67235,0,0 +161562,14528,0,67236,0,0 +161563,14531,0,67237,0,0 +161564,14532,0,65631,0,0 +161565,14533,0,64340,0,0 +161566,14534,0,63541,0,0 +161567,14535,0,66921,0,0 +161568,14536,0,66083,0,0 +161569,14537,0,67238,0,0 +161570,14538,0,67239,0,0 +161571,14539,0,67240,0,0 +161572,14541,0,67241,0,0 +161573,14543,0,67242,0,0 +161574,14545,0,67243,0,0 +161575,14548,0,67244,0,0 +161576,14549,0,67245,0,0 +161577,14550,0,67013,0,0 +161578,14551,0,67246,0,0 +161579,14552,0,67247,0,0 +161580,14553,0,65370,0,0 +161581,14554,0,67248,0,0 +161582,14555,0,64479,0,0 +161583,14559,0,64872,0,0 +161584,14560,0,67249,0,0 +161585,14561,0,64882,0,0 +161586,14562,0,67250,0,0 +161587,14563,0,67251,0,0 +161588,14564,0,67252,0,0 +161589,14565,0,64880,0,0 +161590,14566,0,67253,0,0 +161591,14567,0,63637,0,0 +161592,14568,0,64867,0,0 +161593,14569,0,63638,0,0 +161594,14570,0,64091,0,0 +161595,14571,0,67254,0,0 +161596,14572,0,64876,0,0 +161597,14573,0,65530,0,0 +161598,14574,0,63322,0,0 +161599,14575,0,66937,0,0 +161600,14576,0,67255,0,0 +161601,14577,0,66247,0,0 +161602,14578,0,64973,0,0 +161603,14579,0,65328,0,0 +161604,14580,0,65392,0,0 +161605,14581,0,67256,0,0 +161606,14582,0,67257,0,0 +161607,14583,0,65367,0,0 +161608,14584,0,64481,0,0 +161609,14585,0,64982,0,0 +161610,14586,0,66927,0,0 +161611,14587,0,64941,0,0 +161612,14588,0,65302,0,0 +161613,14589,0,65303,0,0 +161614,14590,0,65304,0,0 +161615,14591,0,65527,0,0 +161616,14592,0,65305,0,0 +161617,14593,0,67258,0,0 +161618,14594,0,65306,0,0 +161619,14595,0,65307,0,0 +161620,14596,0,63857,0,0 +161621,14598,0,65533,0,0 +161622,14599,0,65529,0,0 +161623,14600,0,65532,0,0 +161624,14601,0,65525,0,0 +161625,14602,0,67259,0,0 +161626,14603,0,64824,0,0 +161627,14604,0,67260,0,0 +161628,14605,0,65526,0,0 +161629,14606,0,65528,0,0 +161630,14607,0,65804,0,0 +161631,14608,0,64591,0,0 +161632,14611,0,67261,0,0 +161633,14612,0,65388,0,0 +161634,14614,0,67262,0,0 +161635,14615,0,67263,0,0 +161636,14616,0,67264,0,0 +161637,14617,0,67265,0,0 +161638,14618,0,67266,0,0 +161639,14620,0,67065,0,0 +161640,14621,0,67267,0,0 +161641,14622,0,67268,0,0 +161642,14623,0,67269,0,0 +161643,14624,0,66992,0,0 +161644,14626,0,67270,0,0 +161645,14629,0,64566,0,0 +161646,14631,0,67271,0,0 +161647,14632,0,63856,0,0 +161648,14633,0,67272,0,0 +161649,14636,0,64782,0,0 +161650,14637,0,67273,0,0 +161651,14638,0,64567,0,0 +161652,14640,0,65174,0,0 +161653,14641,0,65175,0,0 +161654,14642,0,67274,0,0 +161655,14643,0,64189,0,0 +161656,14652,0,66119,0,0 +161657,14653,0,66114,0,0 +161658,14654,0,66115,0,0 +161659,14655,0,67275,0,0 +161660,14656,0,67257,0,0 +161661,14657,0,66118,0,0 +161662,14658,0,64132,0,0 +161663,14659,0,67276,0,0 +161664,14660,0,67277,0,0 +161665,14661,0,66983,0,0 +161666,14662,0,66489,0,0 +161667,14663,0,67278,0,0 +161668,14664,0,67279,0,0 +161669,14665,0,67280,0,0 +161670,14666,0,67281,0,0 +161671,14667,0,65821,0,0 +161672,14668,0,67282,0,0 +161673,14669,0,67283,0,0 +161674,14670,0,67275,0,0 +161675,14671,0,66114,0,0 +161676,14672,0,66115,0,0 +161677,14673,0,67284,0,0 +161678,14674,0,66119,0,0 +161679,14675,0,66118,0,0 +161680,14676,0,65713,0,0 +161681,14677,0,66119,0,0 +161682,14678,0,66120,0,0 +161683,14680,0,65783,0,0 +161684,14681,0,65781,0,0 +161685,14682,0,65782,0,0 +161686,14683,0,67280,0,0 +161687,14684,0,65595,0,0 +161688,14685,0,65785,0,0 +161689,14686,0,65209,0,0 +161690,14687,0,65786,0,0 +161691,14688,0,65787,0,0 +161692,14689,0,64105,0,0 +161693,14690,0,64207,0,0 +161694,14692,0,67285,0,0 +161695,14693,0,63788,0,0 +161696,14694,0,64106,0,0 +161697,14695,0,64104,0,0 +161698,14697,0,64103,0,0 +161699,14698,0,63694,0,0 +161700,14699,0,63891,0,0 +161701,14700,0,63892,0,0 +161702,14701,0,67286,0,0 +161703,14702,0,64761,0,0 +161704,14703,0,64115,0,0 +161705,14704,0,63784,0,0 +161706,14705,0,66805,0,0 +161707,14706,0,65941,0,0 +161708,14707,0,64865,0,0 +161709,14722,0,67287,0,0 +161710,14723,0,67288,0,0 +161711,14724,0,67289,0,0 +161712,14725,0,67290,0,0 +161713,14726,0,67291,0,0 +161714,14727,0,67290,0,0 +161715,14728,0,67292,0,0 +161716,14729,0,66945,0,0 +161717,14730,0,67293,0,0 +161718,14742,0,67294,0,0 +161719,14743,0,67007,0,0 +161720,14744,0,66637,0,0 +161721,14745,0,66556,0,0 +161722,14746,0,67295,0,0 +161723,14747,0,67296,0,0 +161724,14748,0,67297,0,0 +161725,14749,0,67298,0,0 +161726,14750,0,67299,0,0 +161727,14751,0,67300,0,0 +161728,14752,0,67301,0,0 +161729,14753,0,67302,0,0 +161730,14754,0,67303,0,0 +161731,14755,0,67262,0,0 +161732,14756,0,67304,0,0 +161733,14757,0,67305,0,0 +161734,14758,0,67306,0,0 +161735,14759,0,67307,0,0 +161736,14760,0,67308,0,0 +161737,14761,0,67309,0,0 +161738,14762,0,67310,0,0 +161739,14763,0,67311,0,0 +161740,14764,0,67312,0,0 +161741,14765,0,65851,0,0 +161742,14766,0,67313,0,0 +161743,14767,0,67314,0,0 +161744,14768,0,67315,0,0 +161745,14769,0,67316,0,0 +161746,14770,0,67317,0,0 +161747,14771,0,64328,0,0 +161748,14772,0,66738,0,0 +161749,14773,0,67318,0,0 +161750,14774,0,67319,0,0 +161751,14775,0,67320,0,0 +161752,14776,0,67321,0,0 +161753,14777,0,64176,0,0 +161754,14778,0,64805,0,0 +161755,14779,0,64634,0,0 +161756,14780,0,66365,0,0 +161757,14781,0,66824,0,0 +161758,14782,0,67322,0,0 +161759,14783,0,67323,0,0 +161760,14784,0,67324,0,0 +161761,14785,0,67325,0,0 +161762,14786,0,67326,0,0 +161763,14787,0,67327,0,0 +161764,14788,0,67328,0,0 +161765,14789,0,67329,0,0 +161766,14790,0,67330,0,0 +161767,14791,0,65567,0,0 +161768,14792,0,67331,0,0 +161769,14793,0,67332,0,0 +161770,14794,0,67333,0,0 +161771,14795,0,65722,0,0 +161772,14796,0,67334,0,0 +161773,14797,0,67335,0,0 +161774,14798,0,67336,0,0 +161775,14799,0,67337,0,0 +161776,14800,0,66364,0,0 +161777,14801,0,67338,0,0 +161778,14802,0,67339,0,0 +161779,14803,0,67340,0,0 +161780,14804,0,67341,0,0 +161781,14805,0,67342,0,0 +161782,14806,0,66267,0,0 +161783,14807,0,66571,0,0 +161784,14808,0,64984,0,0 +161785,14809,0,63553,0,0 +161786,14810,0,65053,0,0 +161787,14811,0,67343,0,0 +161788,14812,0,66715,0,0 +161789,14813,0,67344,0,0 +161790,14814,0,63428,0,0 +161791,14815,0,67345,0,0 +161792,14816,0,67346,0,0 +161793,14817,0,67347,0,0 +161794,14818,0,67348,0,0 +161795,14819,0,67235,0,0 +161796,14820,0,67237,0,0 +161797,14821,0,67349,0,0 +161798,14822,0,67350,0,0 +161799,14823,0,67351,0,0 +161800,14824,0,67352,0,0 +161801,14825,0,66884,0,0 +161802,14826,0,67353,0,0 +161803,14827,0,67354,0,0 +161804,14828,0,67355,0,0 +161805,14829,0,67356,0,0 +161806,14830,0,67357,0,0 +161807,14831,0,67358,0,0 +161808,14832,0,67359,0,0 +161809,14833,0,67360,0,0 +161810,14834,0,67361,0,0 +161811,14835,0,67362,0,0 +161812,14836,0,66451,0,0 +161813,14837,0,67363,0,0 +161814,14838,0,67364,0,0 +161815,14839,0,67365,0,0 +161816,14840,0,67366,0,0 +161817,14841,0,67367,0,0 +161818,14842,0,67368,0,0 +161819,14843,0,67369,0,0 +161820,14844,0,67370,0,0 +161821,14845,0,67371,0,0 +161822,14846,0,67372,0,0 +161823,14847,0,67373,0,0 +161824,14848,0,67374,0,0 +161825,14849,0,66289,0,0 +161826,14850,0,67375,0,0 +161827,14851,0,67376,0,0 +161828,14852,0,63677,0,0 +161829,14853,0,66891,0,0 +161830,14854,0,67377,0,0 +161831,14855,0,66734,0,0 +161832,14856,0,67378,0,0 +161833,14857,0,67379,0,0 +161834,14858,0,67380,0,0 +161835,14859,0,67381,0,0 +161836,14860,0,67382,0,0 +161837,14861,0,66664,0,0 +161838,14862,0,67383,0,0 +161839,14863,0,67384,0,0 +161840,14864,0,67385,0,0 +161841,14865,0,67386,0,0 +161842,14866,0,67387,0,0 +161843,14867,0,67388,0,0 +161844,14868,0,67389,0,0 +161845,14869,0,67390,0,0 +161846,14870,0,66757,0,0 +161847,14871,0,67391,0,0 +161848,14873,0,67392,0,0 +161849,14874,0,66999,0,0 +161850,14875,0,66819,0,0 +161851,14876,0,67393,0,0 +161852,14877,0,66958,0,0 +161853,14878,0,65044,0,0 +161854,14879,0,67394,0,0 +161855,14880,0,67395,0,0 +161856,14881,0,67396,0,0 +161857,14882,0,67397,0,0 +161858,14883,0,67398,0,0 +161859,14884,0,67399,0,0 +161860,14885,0,67400,0,0 +161861,14886,0,67401,0,0 +161862,14887,0,67402,0,0 +161863,14888,0,67403,0,0 +161864,14889,0,67404,0,0 +161865,14890,0,67405,0,0 +161866,14891,0,67406,0,0 +161867,14892,0,65005,0,0 +161868,14893,0,66831,0,0 +161869,14895,0,66557,0,0 +161870,14896,0,67407,0,0 +161871,14897,0,67408,0,0 +161872,14898,0,67409,0,0 +161873,14899,0,67410,0,0 +161874,14900,0,67411,0,0 +161875,14901,0,67412,0,0 +161876,14902,0,66681,0,0 +161877,14903,0,66995,0,0 +161878,14904,0,67413,0,0 +161879,14905,0,67414,0,0 +161880,14906,0,67415,0,0 +161881,14907,0,65336,0,0 +161882,14908,0,66794,0,0 +161883,14909,0,67416,0,0 +161884,14910,0,67417,0,0 +161885,14911,0,67418,0,0 +161886,14912,0,63677,0,0 +161887,14913,0,66601,0,0 +161888,14914,0,67419,0,0 +161889,14915,0,67420,0,0 +161890,14916,0,65211,0,0 +161891,14917,0,67421,0,0 +161892,14918,0,67422,0,0 +161893,14919,0,67423,0,0 +161894,14920,0,67424,0,0 +161895,14921,0,67425,0,0 +161896,14922,0,66627,0,0 +161897,14923,0,67426,0,0 +161898,14924,0,67427,0,0 +161899,14925,0,65801,0,0 +161900,14926,0,67428,0,0 +161901,14927,0,67429,0,0 +161902,14928,0,67430,0,0 +161903,14929,0,67431,0,0 +161904,14930,0,66475,0,0 +161905,14931,0,67432,0,0 +161906,14932,0,66704,0,0 +161907,14933,0,67433,0,0 +161908,14934,0,67434,0,0 +161909,14935,0,66501,0,0 +161910,14936,0,67435,0,0 +161911,14937,0,67436,0,0 +161912,14938,0,67437,0,0 +161913,14939,0,66725,0,0 +161914,14940,0,67438,0,0 +161915,14941,0,67439,0,0 +161916,14942,0,67440,0,0 +161917,14943,0,67441,0,0 +161918,14944,0,67442,0,0 +161919,14945,0,67443,0,0 +161920,14946,0,67444,0,0 +161921,14947,0,66980,0,0 +161922,14948,0,67445,0,0 +161923,14949,0,67446,0,0 +161924,14950,0,67447,0,0 +161925,14951,0,67448,0,0 +161926,14952,0,66385,0,0 +161927,14953,0,67449,0,0 +161928,14954,0,65629,0,0 +161929,14955,0,67450,0,0 +161930,14956,0,67451,0,0 +161931,14957,0,67452,0,0 +161932,14958,0,67453,0,0 +161933,14959,0,67454,0,0 +161934,14960,0,67455,0,0 +161935,14961,0,67456,0,0 +161936,14962,0,67457,0,0 +161937,14963,0,67458,0,0 +161938,14964,0,66715,0,0 +161939,14965,0,67459,0,0 +161940,14966,0,67460,0,0 +161941,14967,0,67461,0,0 +161942,14968,0,67462,0,0 +161943,14969,0,67463,0,0 +161944,14970,0,67464,0,0 +161945,14971,0,67465,0,0 +161946,14972,0,67466,0,0 +161947,14973,0,65995,0,0 +161948,14974,0,67467,0,0 +161949,14975,0,67468,0,0 +161950,14976,0,67469,0,0 +161951,14977,0,67470,0,0 +161952,14978,0,67471,0,0 +161953,14979,0,67472,0,0 +161954,14980,0,67473,0,0 +161955,14981,0,67474,0,0 +161956,14982,0,66030,0,0 +161957,14983,0,67475,0,0 +161958,15003,0,64947,0,0 +161959,15004,0,64957,0,0 +161960,15005,0,64858,0,0 +161961,15006,0,65451,0,0 +161962,15007,0,63610,0,0 +161963,15008,0,67476,0,0 +161964,15009,0,64846,0,0 +161965,15010,0,63411,0,0 +161966,15011,0,63637,0,0 +161967,15012,0,63320,0,0 +161968,15013,0,63638,0,0 +161969,15014,0,67477,0,0 +161970,15015,0,63596,0,0 +161971,15016,0,64876,0,0 +161972,15017,0,63322,0,0 +161973,15018,0,64091,0,0 +161974,15019,0,65530,0,0 +161975,15045,0,67478,0,0 +161976,15046,0,67479,0,0 +161977,15047,0,66262,0,0 +161978,15048,0,67480,0,0 +161979,15049,0,67481,0,0 +161980,15050,0,67482,0,0 +161981,15051,0,67483,0,0 +161982,15052,0,67484,0,0 +161983,15053,0,67485,0,0 +161984,15054,0,67486,0,0 +161985,15055,0,67487,0,0 +161986,15056,0,67488,0,0 +161987,15057,0,64349,0,0 +161988,15058,0,66974,0,0 +161989,15059,0,67489,0,0 +161990,15060,0,67490,0,0 +161991,15061,0,67491,0,0 +161992,15062,0,65058,0,0 +161993,15063,0,64655,0,0 +161994,15064,0,65023,0,0 +161995,15065,0,64256,0,0 +161996,15066,0,67492,0,0 +161997,15067,0,67493,0,0 +161998,15068,0,66187,0,0 +161999,15069,0,65977,0,0 +162000,15070,0,66188,0,0 +162001,15071,0,66185,0,0 +162002,15072,0,67494,0,0 +162003,15073,0,64615,0,0 +162004,15074,0,65350,0,0 +162005,15075,0,67495,0,0 +162006,15076,0,66303,0,0 +162007,15077,0,66306,0,0 +162008,15078,0,65614,0,0 +162009,15079,0,66309,0,0 +162010,15080,0,67496,0,0 +162011,15081,0,67497,0,0 +162012,15082,0,66304,0,0 +162013,15083,0,67498,0,0 +162014,15084,0,67499,0,0 +162015,15085,0,67500,0,0 +162016,15086,0,66153,0,0 +162017,15087,0,66585,0,0 +162018,15088,0,64872,0,0 +162019,15089,0,66303,0,0 +162020,15090,0,66826,0,0 +162021,15091,0,67501,0,0 +162022,15092,0,66253,0,0 +162023,15093,0,67502,0,0 +162024,15094,0,67503,0,0 +162025,15095,0,66257,0,0 +162026,15096,0,66258,0,0 +162027,15104,0,67504,0,0 +162028,15105,0,66882,0,0 +162029,15106,0,67505,0,0 +162030,15107,0,65578,0,0 +162031,15108,0,65578,0,0 +162032,15109,0,67506,0,0 +162033,15110,0,64298,0,0 +162034,15111,0,67507,0,0 +162035,15112,0,64820,0,0 +162036,15113,0,64405,0,0 +162037,15114,0,67508,0,0 +162038,15115,0,64648,0,0 +162039,15116,0,64652,0,0 +162040,15117,0,64918,0,0 +162041,15118,0,67509,0,0 +162042,15119,0,66142,0,0 +162043,15120,0,67510,0,0 +162044,15121,0,67511,0,0 +162045,15122,0,63695,0,0 +162046,15123,0,65300,0,0 +162047,15124,0,64411,0,0 +162048,15125,0,64654,0,0 +162049,15126,0,64043,0,0 +162050,15127,0,65485,0,0 +162051,15128,0,63872,0,0 +162052,15129,0,67512,0,0 +162053,15130,0,66423,0,0 +162054,15131,0,65161,0,0 +162055,15132,0,67513,0,0 +162056,15133,0,67514,0,0 +162057,15134,0,65844,0,0 +162058,15135,0,67515,0,0 +162059,15136,0,64665,0,0 +162060,15137,0,64655,0,0 +162061,15138,0,67001,0,0 +162062,15139,0,65058,0,0 +162063,15140,0,67516,0,0 +162064,15141,0,67482,0,0 +162065,15142,0,64304,0,0 +162066,15143,0,64303,0,0 +162067,15144,0,63870,0,0 +162068,15145,0,67330,0,0 +162069,15146,0,64732,0,0 +162070,15147,0,67517,0,0 +162071,15148,0,67518,0,0 +162072,15149,0,63672,0,0 +162073,15150,0,67205,0,0 +162074,15151,0,64225,0,0 +162075,15152,0,65638,0,0 +162076,15153,0,66307,0,0 +162077,15154,0,65154,0,0 +162078,15155,0,66480,0,0 +162079,15156,0,65952,0,0 +162080,15157,0,63831,0,0 +162081,15158,0,67519,0,0 +162082,15159,0,67520,0,0 +162083,15160,0,64216,0,0 +162084,15161,0,66304,0,0 +162085,15162,0,67521,0,0 +162086,15163,0,67522,0,0 +162087,15164,0,67523,0,0 +162088,15165,0,64862,0,0 +162089,15166,0,67524,0,0 +162090,15167,0,67525,0,0 +162091,15168,0,64833,0,0 +162092,15169,0,67526,0,0 +162093,15170,0,65710,0,0 +162094,15171,0,65708,0,0 +162095,15172,0,65709,0,0 +162096,15173,0,67527,0,0 +162097,15174,0,65712,0,0 +162098,15175,0,67528,0,0 +162099,15176,0,65714,0,0 +162100,15177,0,67529,0,0 +162101,15178,0,66113,0,0 +162102,15179,0,65588,0,0 +162103,15180,0,65589,0,0 +162104,15181,0,65591,0,0 +162105,15182,0,65594,0,0 +162106,15183,0,67530,0,0 +162107,15184,0,65590,0,0 +162108,15185,0,67531,0,0 +162109,15186,0,65589,0,0 +162110,15187,0,67532,0,0 +162111,15188,0,66306,0,0 +162112,15189,0,66305,0,0 +162113,15190,0,67533,0,0 +162114,15191,0,66304,0,0 +162115,15192,0,65614,0,0 +162116,15193,0,67534,0,0 +162117,15194,0,67535,0,0 +162118,15195,0,67536,0,0 +162119,15196,0,67537,0,0 +162120,15197,0,67538,0,0 +162121,15198,0,67539,0,0 +162122,15199,0,67540,0,0 +162123,15202,0,63756,0,0 +162124,15203,0,67541,0,0 +162125,15204,0,67542,0,0 +162126,15205,0,65932,0,0 +162127,15206,0,66013,0,0 +162128,15207,0,67543,0,0 +162129,15210,0,67544,0,0 +162130,15211,0,67545,0,0 +162131,15212,0,67546,0,0 +162132,15213,0,67547,0,0 +162133,15214,0,66925,0,0 +162134,15215,0,67548,0,0 +162135,15216,0,67549,0,0 +162136,15217,0,67550,0,0 +162137,15218,0,67551,0,0 +162138,15219,0,63792,0,0 +162139,15220,0,67552,0,0 +162140,15221,0,67553,0,0 +162141,15222,0,63314,0,0 +162142,15223,0,65611,0,0 +162143,15224,0,67554,0,0 +162144,15225,0,67555,0,0 +162145,15226,0,67556,0,0 +162146,15227,0,63366,0,0 +162147,15228,0,63410,0,0 +162148,15229,0,65626,0,0 +162149,15230,0,67557,0,0 +162150,15231,0,67558,0,0 +162151,15232,0,63703,0,0 +162152,15233,0,66426,0,0 +162153,15234,0,63541,0,0 +162154,15235,0,63649,0,0 +162155,15236,0,67559,0,0 +162156,15237,0,65645,0,0 +162157,15238,0,67560,0,0 +162158,15239,0,67561,0,0 +162159,15240,0,66771,0,0 +162160,15241,0,64372,0,0 +162161,15242,0,67562,0,0 +162162,15243,0,67563,0,0 +162163,15244,0,66646,0,0 +162164,15245,0,64289,0,0 +162165,15246,0,66760,0,0 +162166,15247,0,65016,0,0 +162167,15248,0,67564,0,0 +162168,15249,0,67565,0,0 +162169,15250,0,67566,0,0 +162170,15251,0,67567,0,0 +162171,15252,0,67568,0,0 +162172,15253,0,67569,0,0 +162173,15254,0,63735,0,0 +162174,15255,0,67570,0,0 +162175,15256,0,67571,0,0 +162176,15257,0,67572,0,0 +162177,15258,0,66753,0,0 +162178,15259,0,67573,0,0 +162179,15260,0,67574,0,0 +162180,15261,0,67235,0,0 +162181,15262,0,67575,0,0 +162182,15263,0,63966,0,0 +162183,15264,0,67576,0,0 +162184,15265,0,67577,0,0 +162185,15266,0,67578,0,0 +162186,15267,0,67579,0,0 +162187,15268,0,67580,0,0 +162188,15269,0,67581,0,0 +162189,15270,0,67582,0,0 +162190,15271,0,67583,0,0 +162191,15272,0,67584,0,0 +162192,15273,0,67585,0,0 +162193,15274,0,63507,0,0 +162194,15275,0,67586,0,0 +162195,15276,0,66543,0,0 +162196,15278,0,67587,0,0 +162197,15279,0,64935,0,0 +162198,15280,0,67588,0,0 +162199,15281,0,67589,0,0 +162200,15282,0,67590,0,0 +162201,15283,0,67591,0,0 +162202,15284,0,67592,0,0 +162203,15285,0,64031,0,0 +162204,15286,0,67593,0,0 +162205,15287,0,64163,0,0 +162206,15288,0,67594,0,0 +162207,15289,0,67595,0,0 +162208,15291,0,67596,0,0 +162209,15294,0,67597,0,0 +162210,15295,0,64944,0,0 +162211,15296,0,67598,0,0 +162212,15297,0,64528,0,0 +162213,15298,0,67599,0,0 +162214,15299,0,63443,0,0 +162215,15300,0,64530,0,0 +162216,15301,0,64527,0,0 +162217,15302,0,64526,0,0 +162218,15303,0,64531,0,0 +162219,15304,0,67600,0,0 +162220,15305,0,67601,0,0 +162221,15306,0,63887,0,0 +162222,15307,0,65362,0,0 +162223,15308,0,63884,0,0 +162224,15309,0,64758,0,0 +162225,15310,0,67602,0,0 +162226,15311,0,67603,0,0 +162227,15312,0,67604,0,0 +162228,15313,0,67605,0,0 +162229,15322,0,63942,0,0 +162230,15323,0,67606,0,0 +162231,15324,0,67607,0,0 +162232,15325,0,63742,0,0 +162233,15326,0,67608,0,0 +162234,15327,0,67609,0,0 +162235,15329,0,64374,0,0 +162236,15330,0,64113,0,0 +162237,15331,0,64201,0,0 +162238,15332,0,65278,0,0 +162239,15333,0,67610,0,0 +162240,15334,0,64114,0,0 +162241,15335,0,67611,0,0 +162242,15336,0,64112,0,0 +162243,15337,0,67612,0,0 +162244,15338,0,64636,0,0 +162245,15339,0,67613,0,0 +162246,15340,0,64449,0,0 +162247,15341,0,67614,0,0 +162248,15342,0,65211,0,0 +162249,15343,0,67615,0,0 +162250,15344,0,64112,0,0 +162251,15345,0,64636,0,0 +162252,15346,0,67612,0,0 +162253,15347,0,64374,0,0 +162254,15348,0,64201,0,0 +162255,15349,0,65347,0,0 +162256,15350,0,67616,0,0 +162257,15351,0,67617,0,0 +162258,15352,0,67618,0,0 +162259,15353,0,67619,0,0 +162260,15354,0,65593,0,0 +162261,15355,0,65218,0,0 +162262,15356,0,65885,0,0 +162263,15357,0,64751,0,0 +162264,15358,0,65224,0,0 +162265,15359,0,67620,0,0 +162266,15360,0,67621,0,0 +162267,15361,0,64511,0,0 +162268,15362,0,64512,0,0 +162269,15363,0,65338,0,0 +162270,15364,0,67622,0,0 +162271,15365,0,64514,0,0 +162272,15366,0,64515,0,0 +162273,15367,0,67623,0,0 +162274,15368,0,63849,0,0 +162275,15369,0,64718,0,0 +162276,15370,0,67521,0,0 +162277,15371,0,67624,0,0 +162278,15372,0,67524,0,0 +162279,15373,0,66804,0,0 +162280,15374,0,64833,0,0 +162281,15375,0,66285,0,0 +162282,15376,0,67523,0,0 +162283,15377,0,67522,0,0 +162284,15378,0,66113,0,0 +162285,15379,0,65591,0,0 +162286,15380,0,65594,0,0 +162287,15381,0,65588,0,0 +162288,15382,0,66117,0,0 +162289,15383,0,65590,0,0 +162290,15384,0,66804,0,0 +162291,15385,0,65589,0,0 +162292,15386,0,67516,0,0 +162293,15387,0,67278,0,0 +162294,15388,0,66983,0,0 +162295,15389,0,66489,0,0 +162296,15390,0,67625,0,0 +162297,15391,0,67626,0,0 +162298,15392,0,67627,0,0 +162299,15393,0,67281,0,0 +162300,15394,0,66983,0,0 +162301,15395,0,63857,0,0 +162302,15396,0,65341,0,0 +162303,15397,0,63648,0,0 +162304,15398,0,64672,0,0 +162305,15399,0,67628,0,0 +162306,15400,0,67629,0,0 +162307,15401,0,63502,0,0 +162308,15402,0,67630,0,0 +162309,15403,0,64528,0,0 +162310,15404,0,64850,0,0 +162311,15405,0,67631,0,0 +162312,15406,0,66005,0,0 +162313,15413,0,67632,0,0 +162314,15418,0,67633,0,0 +162315,15421,0,67634,0,0 +162316,15424,0,64185,0,0 +162317,15425,0,67635,0,0 +162318,15426,0,66454,0,0 +162319,15427,0,66307,0,0 +162320,15428,0,67636,0,0 +162321,15429,0,67637,0,0 +162322,15430,0,67638,0,0 +162323,15431,0,67639,0,0 +162324,15432,0,67640,0,0 +162325,15433,0,67641,0,0 +162326,15434,0,67642,0,0 +162327,15435,0,67643,0,0 +162328,15436,0,67644,0,0 +162329,15437,0,67155,0,0 +162330,15438,0,67645,0,0 +162331,15439,0,67646,0,0 +162332,15440,0,67647,0,0 +162333,15441,0,65872,0,0 +162334,15442,0,66499,0,0 +162335,15443,0,67648,0,0 +162336,15444,0,67649,0,0 +162337,15445,0,66762,0,0 +162338,15449,0,64318,0,0 +162339,15450,0,65470,0,0 +162340,15451,0,63962,0,0 +162341,15452,0,64958,0,0 +162342,15453,0,64253,0,0 +162343,15455,0,67012,0,0 +162344,15456,0,64515,0,0 +162345,15457,0,64501,0,0 +162346,15458,0,67650,0,0 +162347,15459,0,67651,0,0 +162348,15460,0,67652,0,0 +162349,15461,0,67208,0,0 +162350,15462,0,64513,0,0 +162351,15463,0,67653,0,0 +162352,15464,0,67654,0,0 +162353,15465,0,67655,0,0 +162354,15466,0,67618,0,0 +162355,15468,0,67656,0,0 +162356,15469,0,66899,0,0 +162357,15470,0,67657,0,0 +162358,15471,0,67520,0,0 +162359,15472,0,67658,0,0 +162360,15473,0,67659,0,0 +162361,15474,0,67660,0,0 +162362,15475,0,67661,0,0 +162363,15476,0,67630,0,0 +162364,15477,0,64007,0,0 +162365,15478,0,64906,0,0 +162366,15479,0,67662,0,0 +162367,15480,0,67663,0,0 +162368,15481,0,67664,0,0 +162369,15482,0,67105,0,0 +162370,15483,0,67289,0,0 +162371,15484,0,67665,0,0 +162372,15485,0,66440,0,0 +162373,15486,0,63677,0,0 +162374,15487,0,67666,0,0 +162375,15488,0,67667,0,0 +162376,15489,0,67668,0,0 +162377,15490,0,67289,0,0 +162378,15491,0,67669,0,0 +162379,15492,0,67262,0,0 +162380,15493,0,67670,0,0 +162381,15494,0,66938,0,0 +162382,15495,0,67671,0,0 +162383,15496,0,67672,0,0 +162384,15497,0,67673,0,0 +162385,15498,0,67674,0,0 +162386,15499,0,67675,0,0 +162387,15500,0,67676,0,0 +162388,15501,0,67677,0,0 +162389,15502,0,67678,0,0 +162390,15503,0,67679,0,0 +162391,15504,0,67680,0,0 +162392,15505,0,67681,0,0 +162393,15506,0,67682,0,0 +162394,15507,0,67683,0,0 +162395,15508,0,67684,0,0 +162396,15509,0,67685,0,0 +162397,15510,0,67686,0,0 +162398,15511,0,67687,0,0 +162399,15512,0,64878,0,0 +162400,15513,0,67688,0,0 +162401,15514,0,67689,0,0 +162402,15515,0,67690,0,0 +162403,15516,0,67691,0,0 +162404,15517,0,67069,0,0 +162405,15518,0,67692,0,0 +162406,15519,0,67693,0,0 +162407,15520,0,67694,0,0 +162408,15521,0,67695,0,0 +162409,15522,0,65597,0,0 +162410,15523,0,67696,0,0 +162411,15524,0,67697,0,0 +162412,15525,0,67698,0,0 +162413,15526,0,67699,0,0 +162414,15527,0,67700,0,0 +162415,15528,0,67701,0,0 +162416,15529,0,67702,0,0 +162417,15530,0,64727,0,0 +162418,15531,0,63358,0,0 +162419,15532,0,67703,0,0 +162420,15533,0,67159,0,0 +162421,15534,0,67704,0,0 +162422,15535,0,67651,0,0 +162423,15536,0,66886,0,0 +162424,15537,0,65201,0,0 +162425,15538,0,67705,0,0 +162426,15539,0,67706,0,0 +162427,15540,0,67707,0,0 +162428,15541,0,67708,0,0 +162429,15542,0,63489,0,0 +162430,15543,0,66044,0,0 +162431,15544,0,67709,0,0 +162432,15545,0,67710,0,0 +162433,15546,0,67711,0,0 +162434,15547,0,67712,0,0 +162435,15548,0,67713,0,0 +162436,15549,0,67714,0,0 +162437,15550,0,65510,0,0 +162438,15551,0,67715,0,0 +162439,15552,0,67716,0,0 +162440,15553,0,67717,0,0 +162441,15554,0,67718,0,0 +162442,15555,0,67719,0,0 +162443,15556,0,67720,0,0 +162444,15557,0,67721,0,0 +162445,15558,0,67722,0,0 +162446,15559,0,67723,0,0 +162447,15560,0,67724,0,0 +162448,15561,0,67725,0,0 +162449,15562,0,67726,0,0 +162450,15563,0,67727,0,0 +162451,15565,0,67728,0,0 +162452,15566,0,67729,0,0 +162453,15567,0,67730,0,0 +162454,15568,0,67731,0,0 +162455,15569,0,63681,0,0 +162456,15570,0,67732,0,0 +162457,15571,0,67733,0,0 +162458,15572,0,65536,0,0 +162459,15573,0,67734,0,0 +162460,15574,0,65539,0,0 +162461,15575,0,67735,0,0 +162462,15576,0,67736,0,0 +162463,15577,0,67737,0,0 +162464,15578,0,67738,0,0 +162465,15579,0,67508,0,0 +162466,15580,0,64461,0,0 +162467,15581,0,67739,0,0 +162468,15582,0,67740,0,0 +162469,15583,0,67741,0,0 +162470,15584,0,64747,0,0 +162471,15585,0,65427,0,0 +162472,15587,0,65347,0,0 +162473,15588,0,66485,0,0 +162474,15589,0,67742,0,0 +162475,15590,0,67743,0,0 +162476,15591,0,67744,0,0 +162477,15592,0,67745,0,0 +162478,15593,0,67746,0,0 +162479,15594,0,67747,0,0 +162480,15595,0,67748,0,0 +162481,15596,0,67749,0,0 +162482,15597,0,67750,0,0 +162483,15598,0,67751,0,0 +162484,15599,0,67752,0,0 +162485,15600,0,67753,0,0 +162486,15601,0,67754,0,0 +162487,15602,0,67755,0,0 +162488,15603,0,67699,0,0 +162489,15604,0,63407,0,0 +162490,15605,0,66923,0,0 +162491,15606,0,67756,0,0 +162492,15607,0,67757,0,0 +162493,15608,0,67758,0,0 +162494,15609,0,67759,0,0 +162495,15610,0,67760,0,0 +162496,15611,0,66227,0,0 +162497,15612,0,67761,0,0 +162498,15613,0,65986,0,0 +162499,15614,0,67762,0,0 +162500,15615,0,65598,0,0 +162501,15616,0,66439,0,0 +162502,15617,0,63358,0,0 +162503,15618,0,65596,0,0 +162504,15619,0,67673,0,0 +162505,15620,0,65871,0,0 +162506,15621,0,63671,0,0 +162507,15622,0,67763,0,0 +162508,15623,0,67764,0,0 +162509,15624,0,65065,0,0 +162510,15625,0,67765,0,0 +162511,15626,0,67766,0,0 +162512,15627,0,67767,0,0 +162513,15628,0,67493,0,0 +162514,15629,0,67768,0,0 +162515,15630,0,67769,0,0 +162516,15631,0,67770,0,0 +162517,15632,0,67771,0,0 +162518,15633,0,65842,0,0 +162519,15634,0,66197,0,0 +162520,15635,0,67772,0,0 +162521,15636,0,67773,0,0 +162522,15637,0,67774,0,0 +162523,15638,0,67775,0,0 +162524,15639,0,67776,0,0 +162525,15640,0,67777,0,0 +162526,15641,0,67778,0,0 +162527,15642,0,67779,0,0 +162528,15643,0,66596,0,0 +162529,15644,0,67780,0,0 +162530,15645,0,67781,0,0 +162531,15646,0,67782,0,0 +162532,15647,0,67783,0,0 +162533,15648,0,66980,0,0 +162534,15649,0,67784,0,0 +162535,15650,0,67785,0,0 +162536,15651,0,66264,0,0 +162537,15652,0,64328,0,0 +162538,15653,0,67786,0,0 +162539,15654,0,67787,0,0 +162540,15655,0,67788,0,0 +162541,15656,0,65951,0,0 +162542,15657,0,67514,0,0 +162543,15658,0,67789,0,0 +162544,15659,0,67790,0,0 +162545,15660,0,67791,0,0 +162546,15661,0,67771,0,0 +162547,15662,0,67792,0,0 +162548,15663,0,67793,0,0 +162549,15664,0,63546,0,0 +162550,15665,0,67794,0,0 +162551,15666,0,67795,0,0 +162552,15667,0,67796,0,0 +162553,15668,0,67797,0,0 +162554,15669,0,67798,0,0 +162555,15670,0,67799,0,0 +162556,15671,0,64328,0,0 +162557,15672,0,67800,0,0 +162558,15673,0,67801,0,0 +162559,15674,0,67802,0,0 +162560,15675,0,66263,0,0 +162561,15676,0,67803,0,0 +162562,15677,0,67804,0,0 +162563,15678,0,67805,0,0 +162564,15679,0,67806,0,0 +162565,15680,0,67807,0,0 +162566,15681,0,66339,0,0 +162567,15682,0,67808,0,0 +162568,15683,0,67809,0,0 +162569,15684,0,67325,0,0 +162570,15685,0,67810,0,0 +162571,15686,0,67327,0,0 +162572,15687,0,65725,0,0 +162573,15691,0,64074,0,0 +162574,15692,0,67811,0,0 +162575,15693,0,67812,0,0 +162576,15694,0,67813,0,0 +162577,15695,0,65478,0,0 +162578,15697,0,66243,0,0 +162579,15698,0,67814,0,0 +162580,15703,0,67815,0,0 +162581,15705,0,67816,0,0 +162582,15706,0,67817,0,0 +162583,15707,0,67818,0,0 +162584,15708,0,67819,0,0 +162585,15709,0,67434,0,0 +162586,15782,0,63512,0,0 +162587,15783,0,67820,0,0 +162588,15784,0,67152,0,0 +162589,15786,0,67625,0,0 +162590,15787,0,67821,0,0 +162591,15789,0,67822,0,0 +162592,15791,0,66067,0,0 +162593,15792,0,67823,0,0 +162594,15794,0,67824,0,0 +162595,15795,0,67825,0,0 +162596,15796,0,67675,0,0 +162597,15797,0,67417,0,0 +162598,15800,0,67826,0,0 +162599,15801,0,67827,0,0 +162600,15802,0,65806,0,0 +162601,15804,0,67193,0,0 +162602,15805,0,64014,0,0 +162603,15806,0,67828,0,0 +162604,15807,0,63965,0,0 +162605,15808,0,63965,0,0 +162606,15809,0,63965,0,0 +162607,15810,0,63468,0,0 +162608,15811,0,63561,0,0 +162609,15812,0,67829,0,0 +162610,15813,0,67830,0,0 +162611,15814,0,66490,0,0 +162612,15815,0,66282,0,0 +162613,15822,0,67831,0,0 +162614,15823,0,67832,0,0 +162615,15824,0,65974,0,0 +162616,15825,0,67833,0,0 +162617,15827,0,67834,0,0 +162618,15853,0,67835,0,0 +162619,15854,0,67836,0,0 +162620,15857,0,67837,0,0 +162621,15858,0,67838,0,0 +162622,15859,0,67839,0,0 +162623,15860,0,67437,0,0 +162624,15861,0,67840,0,0 +162625,15862,0,67841,0,0 +162626,15863,0,64339,0,0 +162627,15864,0,67842,0,0 +162628,15865,0,67843,0,0 +162629,15866,0,66745,0,0 +162630,15887,0,65918,0,0 +162631,15890,0,67680,0,0 +162632,15891,0,66980,0,0 +162633,15892,0,67844,0,0 +162634,15893,0,65918,0,0 +162635,15894,0,65167,0,0 +162636,15895,0,67845,0,0 +162637,15903,0,64342,0,0 +162638,15904,0,66544,0,0 +162639,15905,0,65608,0,0 +162640,15906,0,65608,0,0 +162641,15907,0,66540,0,0 +162642,15909,0,67846,0,0 +162643,15910,0,66588,0,0 +162644,15912,0,67847,0,0 +162645,15918,0,67848,0,0 +162646,15925,0,67849,0,0 +162647,15926,0,66520,0,0 +162648,15927,0,66520,0,0 +162649,15928,0,63845,0,0 +162650,15929,0,66844,0,0 +162651,15930,0,67850,0,0 +162652,15931,0,66746,0,0 +162653,15932,0,64611,0,0 +162654,15933,0,65365,0,0 +162655,15934,0,63507,0,0 +162656,15935,0,67851,0,0 +162657,15936,0,67852,0,0 +162658,15937,0,67853,0,0 +162659,15938,0,67854,0,0 +162660,15939,0,67855,0,0 +162661,15940,0,67856,0,0 +162662,15941,0,67857,0,0 +162663,15942,0,64436,0,0 +162664,15943,0,66030,0,0 +162665,15944,0,63419,0,0 +162666,15945,0,65037,0,0 +162667,15946,0,67858,0,0 +162668,15947,0,63790,0,0 +162669,15962,0,67859,0,0 +162670,15963,0,67860,0,0 +162671,15964,0,67861,0,0 +162672,15965,0,64626,0,0 +162673,15966,0,67853,0,0 +162674,15967,0,67862,0,0 +162675,15968,0,65610,0,0 +162676,15969,0,63419,0,0 +162677,15970,0,65365,0,0 +162678,15971,0,66968,0,0 +162679,15972,0,64008,0,0 +162680,15973,0,65601,0,0 +162681,15974,0,64996,0,0 +162682,15975,0,67863,0,0 +162683,15976,0,67864,0,0 +162684,15977,0,67853,0,0 +162685,15978,0,65606,0,0 +162686,15979,0,63551,0,0 +162687,15980,0,67865,0,0 +162688,15981,0,67866,0,0 +162689,15982,0,67867,0,0 +162690,15983,0,67868,0,0 +162691,15984,0,67869,0,0 +162692,15985,0,65600,0,0 +162693,15986,0,65013,0,0 +162694,15987,0,66025,0,0 +162695,15988,0,65634,0,0 +162696,15989,0,63791,0,0 +162697,15990,0,67870,0,0 +162698,15991,0,65597,0,0 +162699,15995,0,65377,0,0 +162700,15997,0,63946,0,0 +162701,15999,0,67871,0,0 +162702,16004,0,67872,0,0 +162703,16007,0,67055,0,0 +162704,16008,0,67873,0,0 +162705,16026,0,67874,0,0 +162706,16027,0,67875,0,0 +162707,16028,0,67876,0,0 +162708,16029,0,67877,0,0 +162709,16030,0,67878,0,0 +162710,16031,0,67879,0,0 +162711,16033,0,67880,0,0 +162712,16034,0,67881,0,0 +162713,16035,0,67882,0,0 +162714,16036,0,67883,0,0 +162715,16037,0,67884,0,0 +162716,16038,0,67885,0,0 +162717,16039,0,67233,0,0 +162718,16059,0,64698,0,0 +162719,16060,0,63979,0,0 +162720,16061,0,65437,0,0 +162721,16062,0,65524,0,0 +162722,16063,0,65492,0,0 +162723,16064,0,65524,0,0 +162724,16065,0,65503,0,0 +162725,16066,0,65503,0,0 +162726,16116,0,67508,0,0 +162727,16117,0,65492,0,0 +162728,16118,0,64493,0,0 +162729,16119,0,65488,0,0 +162730,16120,0,65524,0,0 +162731,16121,0,63998,0,0 +162732,16122,0,65437,0,0 +162733,16126,0,65524,0,0 +162734,16127,0,65488,0,0 +162735,16128,0,63998,0,0 +162736,16129,0,65503,0,0 +162737,16130,0,63998,0,0 +162738,16131,0,65524,0,0 +162739,16132,0,65488,0,0 +162740,16133,0,63998,0,0 +162741,16134,0,65437,0,0 +162742,16135,0,65503,0,0 +162743,16136,0,65524,0,0 +162744,16137,0,65488,0,0 +162745,16138,0,63998,0,0 +162746,16139,0,65504,0,0 +162747,16140,0,65504,0,0 +162748,16141,0,65510,0,0 +162749,16142,0,65541,0,0 +162750,16143,0,67886,0,0 +162751,16144,0,65505,0,0 +162752,16145,0,65524,0,0 +162753,16146,0,63998,0,0 +162754,16147,0,65437,0,0 +162755,16148,0,65505,0,0 +162756,16149,0,67886,0,0 +162757,16150,0,65219,0,0 +162758,16151,0,65503,0,0 +162759,16152,0,65524,0,0 +162760,16153,0,65488,0,0 +162761,16154,0,65437,0,0 +162762,16155,0,65219,0,0 +162763,16156,0,65504,0,0 +162764,16157,0,65503,0,0 +162765,16158,0,65541,0,0 +162766,16159,0,65510,0,0 +162767,16160,0,67887,0,0 +162768,16161,0,67888,0,0 +162769,16162,0,67887,0,0 +162770,16163,0,66062,0,0 +162771,16164,0,66061,0,0 +162772,16165,0,65513,0,0 +162773,16172,0,67888,0,0 +162774,16211,0,65643,0,0 +162775,16212,0,65055,0,0 +162776,16213,0,65643,0,0 +162777,16315,0,67889,0,0 +162778,16336,0,67889,0,0 +162779,16337,0,67889,0,0 +162780,16341,0,67890,0,0 +162781,16342,0,67889,0,0 +162782,16345,0,67891,0,0 +162783,16367,0,67892,0,0 +162784,16369,0,67893,0,0 +162785,16370,0,67894,0,0 +162786,16391,0,67895,0,0 +162787,16392,0,67896,0,0 +162788,16393,0,67897,0,0 +162789,16394,0,67898,0,0 +162790,16395,0,67898,0,0 +162791,16396,0,67899,0,0 +162792,16397,0,67900,0,0 +162793,16398,0,67901,0,0 +162794,16399,0,67901,0,0 +162795,16400,0,67902,0,0 +162796,16401,0,67903,0,0 +162797,16402,0,67904,0,0 +162798,16403,0,67905,0,0 +162799,16405,0,67878,0,0 +162800,16406,0,67877,0,0 +162801,16409,0,67906,0,0 +162802,16410,0,67907,0,0 +162803,16411,0,67908,0,0 +162804,16412,0,67880,0,0 +162805,16413,0,67909,0,0 +162806,16414,0,67910,0,0 +162807,16415,0,67911,0,0 +162808,16416,0,67912,0,0 +162809,16417,0,67913,0,0 +162810,16418,0,67914,0,0 +162811,16419,0,67915,0,0 +162812,16420,0,67916,0,0 +162813,16421,0,67917,0,0 +162814,16422,0,67918,0,0 +162815,16423,0,67919,0,0 +162816,16424,0,67920,0,0 +162817,16425,0,67921,0,0 +162818,16426,0,67922,0,0 +162819,16427,0,67923,0,0 +162820,16428,0,67924,0,0 +162821,16429,0,67925,0,0 +162822,16430,0,67926,0,0 +162823,16431,0,67876,0,0 +162824,16432,0,67879,0,0 +162825,16433,0,67927,0,0 +162826,16434,0,67928,0,0 +162827,16435,0,67929,0,0 +162828,16436,0,67930,0,0 +162829,16437,0,67931,0,0 +162830,16438,0,67932,0,0 +162831,16439,0,67933,0,0 +162832,16440,0,67934,0,0 +162833,16441,0,67935,0,0 +162834,16442,0,66247,0,0 +162835,16443,0,67936,0,0 +162836,16444,0,67937,0,0 +162837,16445,0,67938,0,0 +162838,16446,0,67939,0,0 +162839,16447,0,67940,0,0 +162840,16448,0,67899,0,0 +162841,16449,0,67916,0,0 +162842,16450,0,67915,0,0 +162843,16451,0,67914,0,0 +162844,16452,0,67913,0,0 +162845,16453,0,67913,0,0 +162846,16454,0,67899,0,0 +162847,16455,0,67914,0,0 +162848,16456,0,67915,0,0 +162849,16457,0,67916,0,0 +162850,16458,0,67940,0,0 +162851,16459,0,67939,0,0 +162852,16460,0,67938,0,0 +162853,16461,0,67941,0,0 +162854,16462,0,67942,0,0 +162855,16463,0,67943,0,0 +162856,16464,0,67944,0,0 +162857,16465,0,67945,0,0 +162858,16466,0,67946,0,0 +162859,16467,0,67947,0,0 +162860,16468,0,67948,0,0 +162861,16469,0,67949,0,0 +162862,16470,0,67950,0,0 +162863,16471,0,67907,0,0 +162864,16472,0,67906,0,0 +162865,16473,0,67927,0,0 +162866,16474,0,67928,0,0 +162867,16475,0,67929,0,0 +162868,16476,0,67930,0,0 +162869,16477,0,67927,0,0 +162870,16478,0,67928,0,0 +162871,16479,0,67929,0,0 +162872,16480,0,67930,0,0 +162873,16481,0,67949,0,0 +162874,16482,0,67950,0,0 +162875,16483,0,67906,0,0 +162876,16484,0,67907,0,0 +162877,16485,0,67951,0,0 +162878,16486,0,67952,0,0 +162879,16487,0,67953,0,0 +162880,16488,0,67954,0,0 +162881,16489,0,67955,0,0 +162882,16490,0,66513,0,0 +162883,16491,0,67956,0,0 +162884,16492,0,67957,0,0 +162885,16493,0,67958,0,0 +162886,16494,0,67959,0,0 +162887,16495,0,67960,0,0 +162888,16496,0,67961,0,0 +162889,16497,0,67962,0,0 +162890,16498,0,67963,0,0 +162891,16499,0,67964,0,0 +162892,16500,0,67960,0,0 +162893,16501,0,67965,0,0 +162894,16502,0,67966,0,0 +162895,16503,0,67967,0,0 +162896,16504,0,67968,0,0 +162897,16505,0,67969,0,0 +162898,16506,0,67970,0,0 +162899,16507,0,67971,0,0 +162900,16508,0,67972,0,0 +162901,16509,0,67973,0,0 +162902,16510,0,67974,0,0 +162903,16513,0,67975,0,0 +162904,16514,0,67976,0,0 +162905,16515,0,67977,0,0 +162906,16516,0,67978,0,0 +162907,16517,0,67979,0,0 +162908,16518,0,67980,0,0 +162909,16519,0,67981,0,0 +162910,16521,0,67982,0,0 +162911,16522,0,67983,0,0 +162912,16523,0,67984,0,0 +162913,16524,0,67985,0,0 +162914,16525,0,67986,0,0 +162915,16526,0,67987,0,0 +162916,16527,0,67988,0,0 +162917,16528,0,67989,0,0 +162918,16529,0,67990,0,0 +162919,16530,0,67991,0,0 +162920,16531,0,67992,0,0 +162921,16532,0,67979,0,0 +162922,16533,0,67993,0,0 +162923,16534,0,66142,0,0 +162924,16535,0,67994,0,0 +162925,16536,0,67995,0,0 +162926,16537,0,67996,0,0 +162927,16538,0,67997,0,0 +162928,16539,0,67998,0,0 +162929,16540,0,67999,0,0 +162930,16541,0,68000,0,0 +162931,16542,0,68001,0,0 +162932,16543,0,68002,0,0 +162933,16544,0,68003,0,0 +162934,16545,0,68004,0,0 +162935,16546,0,68005,0,0 +162936,16547,0,68006,0,0 +162937,16548,0,68007,0,0 +162938,16549,0,68008,0,0 +162939,16550,0,68009,0,0 +162940,16551,0,68010,0,0 +162941,16552,0,68011,0,0 +162942,16553,0,67962,0,0 +162943,16554,0,68012,0,0 +162944,16555,0,68013,0,0 +162945,16556,0,68014,0,0 +162946,16557,0,68014,0,0 +162947,16558,0,68015,0,0 +162948,16559,0,67962,0,0 +162949,16560,0,68016,0,0 +162950,16561,0,68017,0,0 +162951,16562,0,68018,0,0 +162952,16563,0,68019,0,0 +162953,16564,0,68020,0,0 +162954,16565,0,68021,0,0 +162955,16566,0,68022,0,0 +162956,16567,0,68023,0,0 +162957,16568,0,68024,0,0 +162958,16569,0,68025,0,0 +162959,16570,0,68026,0,0 +162960,16571,0,68027,0,0 +162961,16572,0,68028,0,0 +162962,16573,0,68029,0,0 +162963,16574,0,68030,0,0 +162964,16575,0,68028,0,0 +162965,16576,0,68026,0,0 +162966,16577,0,68031,0,0 +162967,16578,0,68032,0,0 +162968,16579,0,68033,0,0 +162969,16580,0,68034,0,0 +162970,16582,0,68035,0,0 +162971,16604,0,68036,0,0 +162972,16605,0,64208,0,0 +162973,16606,0,68037,0,0 +162974,16607,0,68038,0,0 +162975,16608,0,63518,0,0 +162976,16622,0,64048,0,0 +162977,16658,0,67508,0,0 +162978,16659,0,67636,0,0 +162979,16660,0,68039,0,0 +162980,16661,0,68040,0,0 +162981,16666,0,68041,0,0 +162982,16667,0,68042,0,0 +162983,16668,0,68043,0,0 +162984,16669,0,68044,0,0 +162985,16670,0,68045,0,0 +162986,16671,0,68046,0,0 +162987,16672,0,68047,0,0 +162988,16673,0,68048,0,0 +162989,16674,0,68049,0,0 +162990,16675,0,68050,0,0 +162991,16676,0,68051,0,0 +162992,16677,0,68052,0,0 +162993,16678,0,68053,0,0 +162994,16679,0,68054,0,0 +162995,16680,0,68055,0,0 +162996,16681,0,68056,0,0 +162997,16682,0,68057,0,0 +162998,16683,0,68058,0,0 +162999,16684,0,68059,0,0 +163000,16685,0,68060,0,0 +163001,16686,0,68061,0,0 +163002,16687,0,67142,0,0 +163003,16688,0,68062,0,0 +163004,16689,0,68063,0,0 +163005,16690,0,68064,0,0 +163006,16691,0,68065,0,0 +163007,16692,0,68066,0,0 +163008,16693,0,68067,0,0 +163009,16694,0,68068,0,0 +163010,16695,0,68069,0,0 +163011,16696,0,68070,0,0 +163012,16697,0,68071,0,0 +163013,16698,0,68072,0,0 +163014,16699,0,68073,0,0 +163015,16700,0,68074,0,0 +163016,16701,0,68075,0,0 +163017,16702,0,68076,0,0 +163018,16703,0,68077,0,0 +163019,16704,0,68078,0,0 +163020,16705,0,68079,0,0 +163021,16706,0,68080,0,0 +163022,16707,0,68081,0,0 +163023,16708,0,68082,0,0 +163024,16709,0,68083,0,0 +163025,16710,0,67013,0,0 +163026,16711,0,68084,0,0 +163027,16712,0,68085,0,0 +163028,16713,0,63640,0,0 +163029,16714,0,68086,0,0 +163030,16715,0,68087,0,0 +163031,16716,0,68088,0,0 +163032,16717,0,68089,0,0 +163033,16718,0,68090,0,0 +163034,16719,0,68091,0,0 +163035,16720,0,68092,0,0 +163036,16721,0,67833,0,0 +163037,16722,0,68093,0,0 +163038,16723,0,68094,0,0 +163039,16724,0,68095,0,0 +163040,16725,0,68096,0,0 +163041,16726,0,68097,0,0 +163042,16727,0,68098,0,0 +163043,16728,0,68099,0,0 +163044,16729,0,68100,0,0 +163045,16730,0,68101,0,0 +163046,16731,0,68102,0,0 +163047,16732,0,68103,0,0 +163048,16733,0,68104,0,0 +163049,16734,0,68105,0,0 +163050,16735,0,68106,0,0 +163051,16736,0,68107,0,0 +163052,16737,0,68108,0,0 +163053,16738,0,65876,0,0 +163054,16739,0,68109,0,0 +163055,16740,0,66444,0,0 +163056,16741,0,64530,0,0 +163057,16768,0,66777,0,0 +163058,16769,0,65968,0,0 +163059,16788,0,63537,0,0 +163060,16789,0,68110,0,0 +163061,16791,0,66398,0,0 +163062,16793,0,68111,0,0 +163063,16794,0,68112,0,0 +163064,16795,0,68113,0,0 +163065,16796,0,68114,0,0 +163066,16797,0,68115,0,0 +163067,16798,0,68116,0,0 +163068,16799,0,68117,0,0 +163069,16800,0,68118,0,0 +163070,16801,0,68119,0,0 +163071,16802,0,68120,0,0 +163072,16803,0,68121,0,0 +163073,16804,0,68122,0,0 +163074,16805,0,68123,0,0 +163075,16806,0,68124,0,0 +163076,16807,0,68125,0,0 +163077,16808,0,68126,0,0 +163078,16809,0,68127,0,0 +163079,16810,0,68128,0,0 +163080,16811,0,68129,0,0 +163081,16812,0,68130,0,0 +163082,16813,0,68131,0,0 +163083,16814,0,66213,0,0 +163084,16815,0,68132,0,0 +163085,16816,0,68133,0,0 +163086,16817,0,68134,0,0 +163087,16818,0,68135,0,0 +163088,16819,0,68136,0,0 +163089,16820,0,68137,0,0 +163090,16821,0,68138,0,0 +163091,16822,0,68139,0,0 +163092,16823,0,68140,0,0 +163093,16824,0,68141,0,0 +163094,16825,0,68142,0,0 +163095,16826,0,68143,0,0 +163096,16827,0,68144,0,0 +163097,16828,0,68145,0,0 +163098,16829,0,68146,0,0 +163099,16830,0,68147,0,0 +163100,16831,0,68148,0,0 +163101,16832,0,68149,0,0 +163102,16833,0,68150,0,0 +163103,16834,0,68151,0,0 +163104,16835,0,68152,0,0 +163105,16836,0,68153,0,0 +163106,16837,0,68154,0,0 +163107,16838,0,68155,0,0 +163108,16839,0,68156,0,0 +163109,16840,0,68157,0,0 +163110,16841,0,68158,0,0 +163111,16842,0,68159,0,0 +163112,16843,0,68160,0,0 +163113,16844,0,68161,0,0 +163114,16845,0,68162,0,0 +163115,16846,0,68163,0,0 +163116,16847,0,68164,0,0 +163117,16848,0,68165,0,0 +163118,16849,0,68166,0,0 +163119,16850,0,68167,0,0 +163120,16851,0,68168,0,0 +163121,16852,0,68169,0,0 +163122,16853,0,68170,0,0 +163123,16854,0,68171,0,0 +163124,16855,0,68172,0,0 +163125,16856,0,68173,0,0 +163126,16857,0,68174,0,0 +163127,16858,0,68175,0,0 +163128,16859,0,68176,0,0 +163129,16860,0,68177,0,0 +163130,16861,0,68178,0,0 +163131,16862,0,68179,0,0 +163132,16863,0,68180,0,0 +163133,16864,0,68181,0,0 +163134,16865,0,68182,0,0 +163135,16866,0,68183,0,0 +163136,16867,0,68184,0,0 +163137,16868,0,68185,0,0 +163138,16873,0,68186,0,0 +163139,16886,0,68187,0,0 +163140,16887,0,68188,0,0 +163141,16889,0,68189,0,0 +163142,16890,0,68190,0,0 +163143,16891,0,68191,0,0 +163144,16894,0,68192,0,0 +163145,16897,0,68193,0,0 +163146,16898,0,68194,0,0 +163147,16899,0,68195,0,0 +163148,16900,0,68196,0,0 +163149,16901,0,68197,0,0 +163150,16902,0,68198,0,0 +163151,16903,0,68199,0,0 +163152,16904,0,68200,0,0 +163153,16905,0,68201,0,0 +163154,16906,0,68202,0,0 +163155,16907,0,68203,0,0 +163156,16908,0,68204,0,0 +163157,16909,0,68205,0,0 +163158,16910,0,68206,0,0 +163159,16911,0,68207,0,0 +163160,16912,0,68208,0,0 +163161,16913,0,68209,0,0 +163162,16914,0,68210,0,0 +163163,16915,0,68211,0,0 +163164,16916,0,68212,0,0 +163165,16917,0,68213,0,0 +163166,16918,0,68214,0,0 +163167,16919,0,68215,0,0 +163168,16920,0,68216,0,0 +163169,16921,0,68217,0,0 +163170,16922,0,68218,0,0 +163171,16923,0,68219,0,0 +163172,16924,0,68220,0,0 +163173,16925,0,68221,0,0 +163174,16926,0,68222,0,0 +163175,16927,0,68223,0,0 +163176,16928,0,68224,0,0 +163177,16929,0,68225,0,0 +163178,16930,0,67142,0,0 +163179,16931,0,68226,0,0 +163180,16932,0,68227,0,0 +163181,16933,0,68228,0,0 +163182,16934,0,68229,0,0 +163183,16935,0,68230,0,0 +163184,16936,0,68231,0,0 +163185,16937,0,68232,0,0 +163186,16938,0,68233,0,0 +163187,16939,0,68234,0,0 +163188,16940,0,68235,0,0 +163189,16941,0,68236,0,0 +163190,16942,0,68237,0,0 +163191,16943,0,68238,0,0 +163192,16944,0,68239,0,0 +163193,16945,0,68240,0,0 +163194,16946,0,68241,0,0 +163195,16947,0,68242,0,0 +163196,16948,0,68243,0,0 +163197,16949,0,68244,0,0 +163198,16950,0,68245,0,0 +163199,16951,0,68246,0,0 +163200,16952,0,68247,0,0 +163201,16953,0,68248,0,0 +163202,16954,0,68249,0,0 +163203,16955,0,68250,0,0 +163204,16956,0,68251,0,0 +163205,16957,0,68252,0,0 +163206,16958,0,68253,0,0 +163207,16959,0,68254,0,0 +163208,16960,0,68255,0,0 +163209,16961,0,68256,0,0 +163210,16962,0,68257,0,0 +163211,16963,0,68258,0,0 +163212,16964,0,68259,0,0 +163213,16965,0,68260,0,0 +163214,16966,0,68261,0,0 +163215,16967,0,65133,0,0 +163216,16975,0,65397,0,0 +163217,16977,0,64512,0,0 +163218,16978,0,67678,0,0 +163219,16979,0,68262,0,0 +163220,16980,0,68263,0,0 +163221,16981,0,64275,0,0 +163222,16982,0,68264,0,0 +163223,16983,0,68265,0,0 +163224,16984,0,68266,0,0 +163225,16985,0,67203,0,0 +163226,16986,0,67653,0,0 +163227,16987,0,63884,0,0 +163228,16988,0,66387,0,0 +163229,16989,0,68267,0,0 +163230,16990,0,68268,0,0 +163231,16992,0,66914,0,0 +163232,16993,0,64938,0,0 +163233,16994,0,63672,0,0 +163234,16995,0,67205,0,0 +163235,16996,0,68269,0,0 +163236,16997,0,68270,0,0 +163237,16998,0,68271,0,0 +163238,17002,0,68272,0,0 +163239,17003,0,68273,0,0 +163240,17004,0,68274,0,0 +163241,17005,0,67620,0,0 +163242,17006,0,67679,0,0 +163243,17007,0,68275,0,0 +163244,17013,0,68276,0,0 +163245,17014,0,67776,0,0 +163246,17015,0,67026,0,0 +163247,17016,0,66999,0,0 +163248,17039,0,68277,0,0 +163249,17040,0,68278,0,0 +163250,17041,0,68279,0,0 +163251,17042,0,65746,0,0 +163252,17043,0,67085,0,0 +163253,17046,0,68280,0,0 +163254,17047,0,64795,0,0 +163255,17050,0,68281,0,0 +163256,17054,0,68282,0,0 +163257,17055,0,65670,0,0 +163258,17061,0,68283,0,0 +163259,17066,0,68284,0,0 +163260,17067,0,68285,0,0 +163261,17068,0,68286,0,0 +163262,17069,0,68287,0,0 +163263,17070,0,68288,0,0 +163264,17071,0,68289,0,0 +163265,17072,0,67652,0,0 +163266,17073,0,68290,0,0 +163267,17074,0,68291,0,0 +163268,17075,0,68292,0,0 +163269,17076,0,68293,0,0 +163270,17077,0,68294,0,0 +163271,17078,0,64797,0,0 +163272,17102,0,67815,0,0 +163273,17103,0,68295,0,0 +163274,17104,0,68296,0,0 +163275,17105,0,68297,0,0 +163276,17106,0,68298,0,0 +163277,17107,0,68299,0,0 +163278,17112,0,68300,0,0 +163279,17113,0,68301,0,0 +163280,17123,0,66849,0,0 +163281,17142,0,68302,0,0 +163282,17182,0,68303,0,0 +163283,17183,0,67599,0,0 +163284,17184,0,68304,0,0 +163285,17185,0,68305,0,0 +163286,17186,0,67330,0,0 +163287,17187,0,68306,0,0 +163288,17188,0,68307,0,0 +163289,17189,0,63718,0,0 +163290,17190,0,64591,0,0 +163291,17192,0,64176,0,0 +163292,17193,0,68308,0,0 +163293,17223,0,68309,0,0 +163294,17282,0,68310,0,0 +163295,17283,0,64946,0,0 +163296,17342,0,63382,0,0 +163297,17343,0,65643,0,0 +163298,17382,0,68311,0,0 +163299,17383,0,67585,0,0 +163300,17462,0,68312,0,0 +163301,17463,0,66754,0,0 +163302,17482,0,65725,0,0 +163303,17508,0,64593,0,0 +163304,17523,0,68313,0,0 +163305,17562,0,68314,0,0 +163306,17563,0,67894,0,0 +163307,17564,0,68315,0,0 +163308,17565,0,67892,0,0 +163309,17566,0,68316,0,0 +163310,17567,0,68317,0,0 +163311,17568,0,68318,0,0 +163312,17569,0,68319,0,0 +163313,17570,0,67882,0,0 +163314,17571,0,67134,0,0 +163315,17572,0,68320,0,0 +163316,17573,0,68321,0,0 +163317,17574,0,67954,0,0 +163318,17575,0,67952,0,0 +163319,17576,0,68322,0,0 +163320,17577,0,68323,0,0 +163321,17578,0,68324,0,0 +163322,17579,0,66929,0,0 +163323,17580,0,68325,0,0 +163324,17581,0,68326,0,0 +163325,17582,0,67932,0,0 +163326,17583,0,68327,0,0 +163327,17584,0,68328,0,0 +163328,17585,0,67933,0,0 +163329,17586,0,68329,0,0 +163330,17587,0,67997,0,0 +163331,17588,0,68330,0,0 +163332,17589,0,67996,0,0 +163333,17590,0,68331,0,0 +163334,17591,0,68332,0,0 +163335,17592,0,68333,0,0 +163336,17593,0,65185,0,0 +163337,17594,0,68334,0,0 +163338,17595,0,67894,0,0 +163339,17596,0,68335,0,0 +163340,17597,0,67892,0,0 +163341,17598,0,68336,0,0 +163342,17599,0,66301,0,0 +163343,17600,0,68337,0,0 +163344,17601,0,68338,0,0 +163345,17602,0,68339,0,0 +163346,17603,0,66181,0,0 +163347,17604,0,68340,0,0 +163348,17605,0,68341,0,0 +163349,17606,0,67932,0,0 +163350,17607,0,68342,0,0 +163351,17608,0,68343,0,0 +163352,17609,0,67933,0,0 +163353,17610,0,68344,0,0 +163354,17611,0,65185,0,0 +163355,17612,0,68345,0,0 +163356,17613,0,68346,0,0 +163357,17614,0,67954,0,0 +163358,17615,0,67952,0,0 +163359,17616,0,68347,0,0 +163360,17617,0,68348,0,0 +163361,17618,0,68349,0,0 +163362,17619,0,67997,0,0 +163363,17620,0,68350,0,0 +163364,17621,0,67996,0,0 +163365,17622,0,68351,0,0 +163366,17623,0,68352,0,0 +163367,17624,0,68353,0,0 +163368,17625,0,64726,0,0 +163369,17686,0,66550,0,0 +163370,17687,0,63742,0,0 +163371,17688,0,68354,0,0 +163372,17695,0,68355,0,0 +163373,17704,0,68356,0,0 +163374,17705,0,68357,0,0 +163375,17710,0,68358,0,0 +163376,17711,0,67794,0,0 +163377,17714,0,66940,0,0 +163378,17715,0,68359,0,0 +163379,17717,0,64299,0,0 +163380,17718,0,66518,0,0 +163381,17719,0,68360,0,0 +163382,17721,0,68361,0,0 +163383,17723,0,68362,0,0 +163384,17728,0,65207,0,0 +163385,17730,0,68363,0,0 +163386,17732,0,68364,0,0 +163387,17734,0,66566,0,0 +163388,17736,0,67653,0,0 +163389,17737,0,68365,0,0 +163390,17738,0,67846,0,0 +163391,17739,0,68366,0,0 +163392,17740,0,66804,0,0 +163393,17741,0,65480,0,0 +163394,17742,0,68367,0,0 +163395,17743,0,66658,0,0 +163396,17745,0,68368,0,0 +163397,17746,0,68369,0,0 +163398,17748,0,68370,0,0 +163399,17749,0,68371,0,0 +163400,17750,0,68372,0,0 +163401,17751,0,65554,0,0 +163402,17752,0,63782,0,0 +163403,17753,0,68373,0,0 +163404,17754,0,68374,0,0 +163405,17755,0,64393,0,0 +163406,17766,0,68375,0,0 +163407,17767,0,68376,0,0 +163408,17770,0,68377,0,0 +163409,17775,0,68378,0,0 +163410,17776,0,68379,0,0 +163411,17777,0,68380,0,0 +163412,17778,0,64630,0,0 +163413,17779,0,68381,0,0 +163414,17780,0,68382,0,0 +163415,17922,0,63599,0,0 +163416,17942,0,63959,0,0 +163417,17943,0,63559,0,0 +163418,18002,0,68383,0,0 +163419,18042,0,68384,0,0 +163420,18043,0,68385,0,0 +163421,18044,0,64009,0,0 +163422,18047,0,66549,0,0 +163423,18048,0,64896,0,0 +163424,18062,0,68386,0,0 +163425,18082,0,64953,0,0 +163426,18083,0,68387,0,0 +163427,18102,0,65186,0,0 +163428,18104,0,67706,0,0 +163429,18122,0,68388,0,0 +163430,18123,0,68389,0,0 +163431,18161,0,63252,0,0 +163432,18162,0,63252,0,0 +163433,18163,0,63252,0,0 +163434,18164,0,63252,0,0 +163435,18165,0,63252,0,0 +163436,18166,0,68390,0,0 +163437,18167,0,65770,0,0 +163438,18168,0,66519,0,0 +163439,18202,0,68391,0,0 +163440,18203,0,68392,0,0 +163441,18204,0,68393,0,0 +163442,18208,0,64687,0,0 +163443,18231,0,68394,0,0 +163444,18238,0,65614,0,0 +163445,18263,0,67522,0,0 +163446,18282,0,68395,0,0 +163447,18293,0,68396,0,0 +163448,18295,0,68397,0,0 +163449,18296,0,66058,0,0 +163450,18298,0,67647,0,0 +163451,18301,0,68398,0,0 +163452,18303,0,64593,0,0 +163453,18304,0,68399,0,0 +163454,18305,0,68400,0,0 +163455,18306,0,64569,0,0 +163456,18307,0,64576,0,0 +163457,18308,0,68401,0,0 +163458,18309,0,66055,0,0 +163459,18310,0,63382,0,0 +163460,18311,0,63791,0,0 +163461,18312,0,68402,0,0 +163462,18313,0,68403,0,0 +163463,18316,0,66844,0,0 +163464,18318,0,64334,0,0 +163465,18319,0,64604,0,0 +163466,18320,0,67327,0,0 +163467,18321,0,63336,0,0 +163468,18322,0,68404,0,0 +163469,18323,0,64860,0,0 +163470,18324,0,65395,0,0 +163471,18325,0,65677,0,0 +163472,18326,0,67454,0,0 +163473,18327,0,64078,0,0 +163474,18328,0,67126,0,0 +163475,18337,0,68405,0,0 +163476,18338,0,64734,0,0 +163477,18339,0,68406,0,0 +163478,18341,0,67038,0,0 +163479,18342,0,64964,0,0 +163480,18344,0,65350,0,0 +163481,18346,0,63300,0,0 +163482,18347,0,65666,0,0 +163483,18348,0,68407,0,0 +163484,18349,0,65511,0,0 +163485,18350,0,63399,0,0 +163486,18351,0,68408,0,0 +163487,18352,0,66945,0,0 +163488,18353,0,64309,0,0 +163489,18366,0,68409,0,0 +163490,18367,0,68410,0,0 +163491,18368,0,65263,0,0 +163492,18369,0,63502,0,0 +163493,18372,0,65671,0,0 +163494,18373,0,65553,0,0 +163495,18374,0,66974,0,0 +163496,18375,0,65904,0,0 +163497,18376,0,65917,0,0 +163498,18377,0,66480,0,0 +163499,18378,0,63777,0,0 +163500,18379,0,67068,0,0 +163501,18380,0,68411,0,0 +163502,18382,0,66702,0,0 +163503,18383,0,66269,0,0 +163504,18384,0,68412,0,0 +163505,18385,0,66141,0,0 +163506,18386,0,65581,0,0 +163507,18387,0,64571,0,0 +163508,18388,0,64990,0,0 +163509,18389,0,64819,0,0 +163510,18390,0,65764,0,0 +163511,18391,0,68413,0,0 +163512,18392,0,64044,0,0 +163513,18393,0,68414,0,0 +163514,18394,0,64805,0,0 +163515,18396,0,66657,0,0 +163516,18405,0,68415,0,0 +163517,18407,0,65775,0,0 +163518,18408,0,64346,0,0 +163519,18409,0,68416,0,0 +163520,18410,0,68417,0,0 +163521,18411,0,68418,0,0 +163522,18413,0,68419,0,0 +163523,18419,0,66625,0,0 +163524,18420,0,65046,0,0 +163525,18421,0,68420,0,0 +163526,18424,0,65676,0,0 +163527,18425,0,64009,0,0 +163528,18427,0,67890,0,0 +163529,18429,0,68421,0,0 +163530,18430,0,68421,0,0 +163531,18432,0,67979,0,0 +163532,18434,0,67958,0,0 +163533,18435,0,67962,0,0 +163534,18436,0,67958,0,0 +163535,18437,0,67952,0,0 +163536,18439,0,67890,0,0 +163537,18440,0,67889,0,0 +163538,18441,0,67889,0,0 +163539,18445,0,67880,0,0 +163540,18447,0,67880,0,0 +163541,18448,0,68422,0,0 +163542,18449,0,68422,0,0 +163543,18450,0,65630,0,0 +163544,18451,0,68423,0,0 +163545,18452,0,67938,0,0 +163546,18453,0,67938,0,0 +163547,18454,0,67898,0,0 +163548,18455,0,67898,0,0 +163549,18456,0,67894,0,0 +163550,18457,0,67894,0,0 +163551,18458,0,65716,0,0 +163552,18459,0,65796,0,0 +163553,18460,0,65916,0,0 +163554,18461,0,67890,0,0 +163555,18462,0,68424,0,0 +163556,18463,0,64738,0,0 +163557,18475,0,65552,0,0 +163558,18476,0,68425,0,0 +163559,18477,0,65340,0,0 +163560,18478,0,65329,0,0 +163561,18479,0,66463,0,0 +163562,18480,0,66133,0,0 +163563,18481,0,65159,0,0 +163564,18482,0,63938,0,0 +163565,18483,0,65577,0,0 +163566,18484,0,66847,0,0 +163567,18485,0,65982,0,0 +163568,18486,0,68426,0,0 +163569,18490,0,64287,0,0 +163570,18491,0,65341,0,0 +163571,18493,0,68427,0,0 +163572,18494,0,64217,0,0 +163573,18495,0,65940,0,0 +163574,18496,0,68428,0,0 +163575,18497,0,68429,0,0 +163576,18498,0,64050,0,0 +163577,18499,0,64727,0,0 +163578,18502,0,64842,0,0 +163579,18503,0,68430,0,0 +163580,18504,0,65199,0,0 +163581,18505,0,65560,0,0 +163582,18506,0,68431,0,0 +163583,18507,0,65311,0,0 +163584,18508,0,68432,0,0 +163585,18509,0,65981,0,0 +163586,18510,0,68433,0,0 +163587,18511,0,68434,0,0 +163588,18520,0,68435,0,0 +163589,18521,0,67762,0,0 +163590,18523,0,67858,0,0 +163591,18524,0,68436,0,0 +163592,18525,0,65559,0,0 +163593,18526,0,66343,0,0 +163594,18527,0,68437,0,0 +163595,18528,0,63613,0,0 +163596,18529,0,68438,0,0 +163597,18530,0,66010,0,0 +163598,18531,0,64192,0,0 +163599,18532,0,68439,0,0 +163600,18533,0,68440,0,0 +163601,18534,0,65606,0,0 +163602,18535,0,66681,0,0 +163603,18536,0,66780,0,0 +163604,18538,0,68441,0,0 +163605,18541,0,67627,0,0 +163606,18542,0,68442,0,0 +163607,18544,0,68443,0,0 +163608,18545,0,64575,0,0 +163609,18546,0,68444,0,0 +163610,18547,0,68445,0,0 +163611,18582,0,68446,0,0 +163612,18583,0,68447,0,0 +163613,18584,0,68448,0,0 +163614,18596,0,67835,0,0 +163615,18602,0,66780,0,0 +163616,18608,0,68449,0,0 +163617,18609,0,68450,0,0 +163618,18610,0,63376,0,0 +163619,18611,0,63254,0,0 +163620,18612,0,63891,0,0 +163621,18644,0,68451,0,0 +163622,18671,0,68452,0,0 +163623,18672,0,67865,0,0 +163624,18673,0,64666,0,0 +163625,18676,0,67830,0,0 +163626,18677,0,64454,0,0 +163627,18680,0,68453,0,0 +163628,18681,0,66180,0,0 +163629,18682,0,63247,0,0 +163630,18683,0,68277,0,0 +163631,18686,0,64624,0,0 +163632,18689,0,64943,0,0 +163633,18690,0,67269,0,0 +163634,18692,0,68454,0,0 +163635,18693,0,68455,0,0 +163636,18694,0,63274,0,0 +163637,18695,0,66781,0,0 +163638,18696,0,65804,0,0 +163639,18697,0,68456,0,0 +163640,18698,0,68457,0,0 +163641,18699,0,68458,0,0 +163642,18700,0,67307,0,0 +163643,18702,0,68459,0,0 +163644,18709,0,68460,0,0 +163645,18710,0,65532,0,0 +163646,18711,0,66932,0,0 +163647,18712,0,66891,0,0 +163648,18713,0,68461,0,0 +163649,18715,0,68462,0,0 +163650,18716,0,68463,0,0 +163651,18717,0,63966,0,0 +163652,18718,0,66566,0,0 +163653,18720,0,65439,0,0 +163654,18721,0,66086,0,0 +163655,18722,0,68464,0,0 +163656,18725,0,68465,0,0 +163657,18726,0,68466,0,0 +163658,18727,0,68467,0,0 +163659,18729,0,64416,0,0 +163660,18730,0,63914,0,0 +163661,18732,0,67540,0,0 +163662,18733,0,67539,0,0 +163663,18734,0,64943,0,0 +163664,18735,0,68468,0,0 +163665,18736,0,65673,0,0 +163666,18737,0,64425,0,0 +163667,18738,0,63965,0,0 +163668,18739,0,68469,0,0 +163669,18740,0,68470,0,0 +163670,18741,0,68471,0,0 +163671,18742,0,63356,0,0 +163672,18743,0,68472,0,0 +163673,18744,0,65528,0,0 +163674,18745,0,66825,0,0 +163675,18747,0,67911,0,0 +163676,18754,0,66234,0,0 +163677,18755,0,68473,0,0 +163678,18756,0,68474,0,0 +163679,18757,0,67045,0,0 +163680,18758,0,65948,0,0 +163681,18759,0,68475,0,0 +163682,18761,0,68476,0,0 +163683,18762,0,66025,0,0 +163684,18763,0,68477,0,0 +163685,18764,0,68478,0,0 +163686,18765,0,68479,0,0 +163687,18800,0,68480,0,0 +163688,18801,0,68481,0,0 +163689,18803,0,68482,0,0 +163690,18805,0,68483,0,0 +163691,18806,0,68484,0,0 +163692,18807,0,68485,0,0 +163693,18808,0,68486,0,0 +163694,18809,0,65173,0,0 +163695,18810,0,68487,0,0 +163696,18811,0,67530,0,0 +163697,18812,0,68488,0,0 +163698,18816,0,68489,0,0 +163699,18817,0,66579,0,0 +163700,18822,0,68490,0,0 +163701,18823,0,66332,0,0 +163702,18824,0,68491,0,0 +163703,18825,0,68492,0,0 +163704,18826,0,68493,0,0 +163705,18827,0,68494,0,0 +163706,18828,0,68495,0,0 +163707,18829,0,68496,0,0 +163708,18830,0,68497,0,0 +163709,18831,0,68498,0,0 +163710,18832,0,66656,0,0 +163711,18833,0,68499,0,0 +163712,18835,0,68500,0,0 +163713,18836,0,68501,0,0 +163714,18837,0,68502,0,0 +163715,18838,0,68503,0,0 +163716,18840,0,68504,0,0 +163717,18842,0,68505,0,0 +163718,18843,0,68506,0,0 +163719,18844,0,68507,0,0 +163720,18847,0,68508,0,0 +163721,18848,0,68509,0,0 +163722,18855,0,68510,0,0 +163723,18860,0,68511,0,0 +163724,18861,0,68512,0,0 +163725,18865,0,68513,0,0 +163726,18866,0,68514,0,0 +163727,18867,0,68515,0,0 +163728,18868,0,68516,0,0 +163729,18869,0,68517,0,0 +163730,18870,0,68518,0,0 +163731,18871,0,68519,0,0 +163732,18872,0,65545,0,0 +163733,18873,0,68520,0,0 +163734,18874,0,68521,0,0 +163735,18875,0,64354,0,0 +163736,18876,0,68522,0,0 +163737,18877,0,68523,0,0 +163738,18878,0,68524,0,0 +163739,18881,0,68303,0,0 +163740,18882,0,68525,0,0 +163741,18948,0,68526,0,0 +163742,18957,0,68527,0,0 +163743,18983,0,68528,0,0 +163744,18985,0,68529,0,0 +163745,19014,0,64741,0,0 +163746,19015,0,63647,0,0 +163747,19019,0,68530,0,0 +163748,19022,0,63383,0,0 +163749,19028,0,68531,0,0 +163750,19031,0,68532,0,0 +163751,19032,0,68533,0,0 +163752,19037,0,66325,0,0 +163753,19039,0,68534,0,0 +163754,19040,0,68535,0,0 +163755,19041,0,68536,0,0 +163756,19042,0,68537,0,0 +163757,19043,0,68538,0,0 +163758,19044,0,65999,0,0 +163759,19047,0,64787,0,0 +163760,19048,0,68539,0,0 +163761,19049,0,68540,0,0 +163762,19050,0,68541,0,0 +163763,19051,0,68459,0,0 +163764,19052,0,68542,0,0 +163765,19053,0,64626,0,0 +163766,19056,0,68543,0,0 +163767,19057,0,68544,0,0 +163768,19058,0,68545,0,0 +163769,19059,0,68546,0,0 +163770,19082,0,68547,0,0 +163771,19083,0,67822,0,0 +163772,19084,0,67338,0,0 +163773,19085,0,68548,0,0 +163774,19086,0,63838,0,0 +163775,19087,0,66202,0,0 +163776,19088,0,65283,0,0 +163777,19089,0,65199,0,0 +163778,19090,0,64800,0,0 +163779,19091,0,68549,0,0 +163780,19092,0,66356,0,0 +163781,19093,0,66286,0,0 +163782,19094,0,65779,0,0 +163783,19099,0,68550,0,0 +163784,19100,0,68551,0,0 +163785,19101,0,68552,0,0 +163786,19102,0,68553,0,0 +163787,19103,0,68554,0,0 +163788,19104,0,66964,0,0 +163789,19105,0,68555,0,0 +163790,19106,0,68556,0,0 +163791,19107,0,66851,0,0 +163792,19108,0,65934,0,0 +163793,19110,0,68557,0,0 +163794,19111,0,64709,0,0 +163795,19112,0,68558,0,0 +163796,19113,0,66186,0,0 +163797,19114,0,68559,0,0 +163798,19115,0,63805,0,0 +163799,19116,0,65701,0,0 +163800,19117,0,66324,0,0 +163801,19118,0,68560,0,0 +163802,19119,0,65555,0,0 +163803,19121,0,68561,0,0 +163804,19123,0,66143,0,0 +163805,19124,0,68562,0,0 +163806,19125,0,64984,0,0 +163807,19126,0,68409,0,0 +163808,19127,0,68563,0,0 +163809,19128,0,68564,0,0 +163810,19129,0,66567,0,0 +163811,19130,0,68565,0,0 +163812,19131,0,66990,0,0 +163813,19132,0,66468,0,0 +163814,19133,0,66140,0,0 +163815,19134,0,68566,0,0 +163816,19135,0,65187,0,0 +163817,19136,0,67139,0,0 +163818,19137,0,68567,0,0 +163819,19139,0,67532,0,0 +163820,19142,0,66779,0,0 +163821,19143,0,68568,0,0 +163822,19144,0,68569,0,0 +163823,19145,0,68570,0,0 +163824,19146,0,64347,0,0 +163825,19148,0,68571,0,0 +163826,19149,0,68572,0,0 +163827,19156,0,68573,0,0 +163828,19157,0,68574,0,0 +163829,19158,0,68303,0,0 +163830,19160,0,68575,0,0 +163831,19162,0,68576,0,0 +163832,19163,0,68577,0,0 +163833,19164,0,68578,0,0 +163834,19165,0,68579,0,0 +163835,19166,0,63782,0,0 +163836,19167,0,68580,0,0 +163837,19168,0,68581,0,0 +163838,19169,0,68582,0,0 +163839,19170,0,68583,0,0 +163840,19214,0,64309,0,0 +163841,19226,0,63943,0,0 +163842,19285,0,64994,0,0 +163843,19286,0,63946,0,0 +163844,19292,0,68584,0,0 +163845,19293,0,63801,0,0 +163846,19294,0,64293,0,0 +163847,19295,0,64011,0,0 +163848,19308,0,66748,0,0 +163849,19309,0,66747,0,0 +163850,19310,0,66782,0,0 +163851,19311,0,66780,0,0 +163852,19312,0,64293,0,0 +163853,19315,0,68585,0,0 +163854,19316,0,68586,0,0 +163855,19317,0,63946,0,0 +163856,19321,0,68587,0,0 +163857,19323,0,68588,0,0 +163858,19324,0,68589,0,0 +163859,19334,0,68590,0,0 +163860,19335,0,68591,0,0 +163861,19346,0,68592,0,0 +163862,19347,0,68593,0,0 +163863,19348,0,68594,0,0 +163864,19349,0,68595,0,0 +163865,19350,0,68596,0,0 +163866,19351,0,68597,0,0 +163867,19352,0,68598,0,0 +163868,19353,0,68599,0,0 +163869,19354,0,68600,0,0 +163870,19355,0,68601,0,0 +163871,19356,0,68602,0,0 +163872,19357,0,68603,0,0 +163873,19358,0,68604,0,0 +163874,19359,0,68591,0,0 +163875,19360,0,68605,0,0 +163876,19361,0,68606,0,0 +163877,19362,0,68607,0,0 +163878,19363,0,68608,0,0 +163879,19364,0,68609,0,0 +163880,19365,0,68610,0,0 +163881,19366,0,68611,0,0 +163882,19367,0,68612,0,0 +163883,19368,0,68479,0,0 +163884,19369,0,67199,0,0 +163885,19370,0,66156,0,0 +163886,19372,0,68613,0,0 +163887,19373,0,63356,0,0 +163888,19374,0,66242,0,0 +163889,19375,0,68614,0,0 +163890,19378,0,68283,0,0 +163891,19380,0,68615,0,0 +163892,19381,0,66331,0,0 +163893,19385,0,66988,0,0 +163894,19386,0,66084,0,0 +163895,19387,0,68616,0,0 +163896,19388,0,66711,0,0 +163897,19389,0,68617,0,0 +163898,19390,0,68618,0,0 +163899,19391,0,68619,0,0 +163900,19392,0,68620,0,0 +163901,19393,0,68621,0,0 +163902,19394,0,68622,0,0 +163903,19396,0,68623,0,0 +163904,19398,0,67074,0,0 +163905,19399,0,68624,0,0 +163906,19400,0,64377,0,0 +163907,19401,0,63896,0,0 +163908,19402,0,68625,0,0 +163909,19404,0,68605,0,0 +163910,19405,0,68626,0,0 +163911,19407,0,68627,0,0 +163912,19430,0,64725,0,0 +163913,19433,0,68628,0,0 +163914,19435,0,68629,0,0 +163915,19436,0,68630,0,0 +163916,19437,0,66243,0,0 +163917,19438,0,68631,0,0 +163918,19439,0,66716,0,0 +163919,19485,0,65130,0,0 +163920,19486,0,64994,0,0 +163921,19487,0,65132,0,0 +163922,19488,0,65133,0,0 +163923,19505,0,68632,0,0 +163924,19506,0,68633,0,0 +163925,19507,0,66092,0,0 +163926,19508,0,64520,0,0 +163927,19509,0,66394,0,0 +163928,19526,0,68634,0,0 +163929,19527,0,68635,0,0 +163930,19528,0,67624,0,0 +163931,19529,0,64758,0,0 +163932,19530,0,68636,0,0 +163933,19531,0,64521,0,0 +163934,19532,0,67622,0,0 +163935,19533,0,65000,0,0 +163936,19542,0,64179,0,0 +163937,19543,0,64179,0,0 +163938,19544,0,64179,0,0 +163939,19545,0,64179,0,0 +163940,19546,0,64561,0,0 +163941,19547,0,64561,0,0 +163942,19548,0,64561,0,0 +163943,19549,0,64561,0,0 +163944,19550,0,68637,0,0 +163945,19551,0,68637,0,0 +163946,19552,0,68637,0,0 +163947,19553,0,68637,0,0 +163948,19554,0,64955,0,0 +163949,19555,0,64955,0,0 +163950,19556,0,64955,0,0 +163951,19557,0,64955,0,0 +163952,19558,0,68559,0,0 +163953,19559,0,68559,0,0 +163954,19560,0,68559,0,0 +163955,19561,0,68559,0,0 +163956,19562,0,64048,0,0 +163957,19563,0,64048,0,0 +163958,19564,0,64048,0,0 +163959,19565,0,64048,0,0 +163960,19566,0,63964,0,0 +163961,19567,0,63964,0,0 +163962,19568,0,63964,0,0 +163963,19569,0,63964,0,0 +163964,19570,0,63551,0,0 +163965,19571,0,63551,0,0 +163966,19572,0,63551,0,0 +163967,19573,0,63551,0,0 +163968,19578,0,68638,0,0 +163969,19580,0,68638,0,0 +163970,19581,0,68638,0,0 +163971,19582,0,68639,0,0 +163972,19583,0,68639,0,0 +163973,19584,0,68639,0,0 +163974,19587,0,65817,0,0 +163975,19589,0,65817,0,0 +163976,19590,0,65817,0,0 +163977,19595,0,68640,0,0 +163978,19596,0,68640,0,0 +163979,19597,0,68640,0,0 +163980,19623,0,68641,0,0 +163981,19682,0,68642,0,0 +163982,19683,0,67142,0,0 +163983,19684,0,68643,0,0 +163984,19685,0,65789,0,0 +163985,19686,0,68644,0,0 +163986,19687,0,65788,0,0 +163987,19688,0,67485,0,0 +163988,19689,0,68645,0,0 +163989,19690,0,68646,0,0 +163990,19691,0,67416,0,0 +163991,19692,0,67414,0,0 +163992,19693,0,68647,0,0 +163993,19694,0,68648,0,0 +163994,19695,0,68649,0,0 +163995,19742,0,68650,0,0 +163996,19743,0,66481,0,0 +163997,19762,0,68651,0,0 +163998,19763,0,64710,0,0 +163999,19808,0,65133,0,0 +164000,19822,0,68652,0,0 +164001,19823,0,66368,0,0 +164002,19824,0,68653,0,0 +164003,19825,0,68654,0,0 +164004,19826,0,68655,0,0 +164005,19827,0,68656,0,0 +164006,19828,0,66346,0,0 +164007,19829,0,66349,0,0 +164008,19830,0,66352,0,0 +164009,19831,0,68657,0,0 +164010,19832,0,66476,0,0 +164011,19833,0,66570,0,0 +164012,19834,0,67488,0,0 +164013,19835,0,66974,0,0 +164014,19836,0,64352,0,0 +164015,19838,0,66256,0,0 +164016,19839,0,68623,0,0 +164017,19840,0,66253,0,0 +164018,19841,0,65439,0,0 +164019,19842,0,68658,0,0 +164020,19843,0,68659,0,0 +164021,19845,0,66156,0,0 +164022,19846,0,68659,0,0 +164023,19848,0,68659,0,0 +164024,19849,0,66979,0,0 +164025,19852,0,68660,0,0 +164026,19853,0,68661,0,0 +164027,19854,0,68662,0,0 +164028,19855,0,68663,0,0 +164029,19857,0,66972,0,0 +164030,19859,0,68664,0,0 +164031,19861,0,68665,0,0 +164032,19862,0,68666,0,0 +164033,19864,0,68667,0,0 +164034,19865,0,68668,0,0 +164035,19866,0,68668,0,0 +164036,19867,0,68669,0,0 +164037,19869,0,65590,0,0 +164038,19870,0,68670,0,0 +164039,19874,0,68671,0,0 +164040,19875,0,65648,0,0 +164041,19877,0,68672,0,0 +164042,19878,0,67516,0,0 +164043,19879,0,68521,0,0 +164044,19884,0,68673,0,0 +164045,19886,0,68674,0,0 +164046,19887,0,68436,0,0 +164047,19888,0,68675,0,0 +164048,19889,0,65714,0,0 +164049,19890,0,68676,0,0 +164050,19891,0,68677,0,0 +164051,19892,0,68678,0,0 +164052,19894,0,68679,0,0 +164053,19895,0,68680,0,0 +164054,19896,0,68681,0,0 +164055,19897,0,67177,0,0 +164056,19899,0,68682,0,0 +164057,19900,0,68683,0,0 +164058,19901,0,68684,0,0 +164059,19903,0,68685,0,0 +164060,19904,0,66628,0,0 +164061,19906,0,65708,0,0 +164062,19907,0,68686,0,0 +164063,19908,0,68687,0,0 +164064,19909,0,68688,0,0 +164065,19910,0,68689,0,0 +164066,19913,0,68690,0,0 +164067,19915,0,68691,0,0 +164068,19916,0,64898,0,0 +164069,19917,0,66013,0,0 +164070,19918,0,68692,0,0 +164071,19919,0,66549,0,0 +164072,19921,0,67835,0,0 +164073,19922,0,68693,0,0 +164074,19924,0,68694,0,0 +164075,19927,0,68695,0,0 +164076,19928,0,68696,0,0 +164077,19929,0,68697,0,0 +164078,19944,0,68698,0,0 +164079,19945,0,63390,0,0 +164080,19946,0,68699,0,0 +164081,19961,0,68700,0,0 +164082,19962,0,68701,0,0 +164083,19963,0,68702,0,0 +164084,19964,0,68703,0,0 +164085,19965,0,68704,0,0 +164086,19967,0,68705,0,0 +164087,19968,0,68706,0,0 +164088,19969,0,68707,0,0 +164089,19970,0,63383,0,0 +164090,19972,0,64480,0,0 +164091,19980,0,67067,0,0 +164092,19981,0,68708,0,0 +164093,19982,0,64781,0,0 +164094,19983,0,68709,0,0 +164095,19984,0,68710,0,0 +164096,19985,0,68711,0,0 +164097,19986,0,63390,0,0 +164098,19987,0,66500,0,0 +164099,19988,0,68712,0,0 +164100,19989,0,68713,0,0 +164101,19993,0,68714,0,0 +164102,19998,0,68715,0,0 +164103,19999,0,67871,0,0 +164104,20003,0,68716,0,0 +164105,20005,0,68717,0,0 +164106,20032,0,65443,0,0 +164107,20033,0,68718,0,0 +164108,20034,0,68426,0,0 +164109,20035,0,68719,0,0 +164110,20038,0,68720,0,0 +164111,20039,0,68721,0,0 +164112,20041,0,68438,0,0 +164113,20042,0,68438,0,0 +164114,20043,0,63897,0,0 +164115,20044,0,63897,0,0 +164116,20045,0,66184,0,0 +164117,20046,0,66184,0,0 +164118,20047,0,66184,0,0 +164119,20048,0,66704,0,0 +164120,20049,0,66704,0,0 +164121,20050,0,66953,0,0 +164122,20051,0,66953,0,0 +164123,20052,0,68722,0,0 +164124,20053,0,68722,0,0 +164125,20054,0,66176,0,0 +164126,20055,0,68723,0,0 +164127,20056,0,68724,0,0 +164128,20057,0,68725,0,0 +164129,20058,0,68725,0,0 +164130,20059,0,66974,0,0 +164131,20060,0,66974,0,0 +164132,20061,0,68726,0,0 +164133,20068,0,64781,0,0 +164134,20069,0,68727,0,0 +164135,20070,0,68728,0,0 +164136,20073,0,64781,0,0 +164137,20082,0,68729,0,0 +164138,20083,0,68730,0,0 +164139,20086,0,68731,0,0 +164140,20088,0,63897,0,0 +164141,20089,0,63897,0,0 +164142,20090,0,63897,0,0 +164143,20091,0,66953,0,0 +164144,20092,0,66953,0,0 +164145,20093,0,66953,0,0 +164146,20094,0,66176,0,0 +164147,20095,0,66176,0,0 +164148,20096,0,66176,0,0 +164149,20097,0,66184,0,0 +164150,20098,0,66184,0,0 +164151,20099,0,66184,0,0 +164152,20100,0,68722,0,0 +164153,20101,0,68722,0,0 +164154,20102,0,68722,0,0 +164155,20103,0,66184,0,0 +164156,20104,0,66184,0,0 +164157,20105,0,66184,0,0 +164158,20106,0,68438,0,0 +164159,20107,0,68438,0,0 +164160,20108,0,68438,0,0 +164161,20109,0,66704,0,0 +164162,20110,0,66704,0,0 +164163,20111,0,66704,0,0 +164164,20112,0,68722,0,0 +164165,20113,0,68722,0,0 +164166,20114,0,68722,0,0 +164167,20115,0,66184,0,0 +164168,20116,0,66184,0,0 +164169,20117,0,66184,0,0 +164170,20118,0,63897,0,0 +164171,20119,0,63897,0,0 +164172,20120,0,63897,0,0 +164173,20121,0,66953,0,0 +164174,20122,0,66953,0,0 +164175,20123,0,66953,0,0 +164176,20124,0,68438,0,0 +164177,20125,0,68438,0,0 +164178,20126,0,68438,0,0 +164179,20127,0,66704,0,0 +164180,20128,0,66704,0,0 +164181,20129,0,66704,0,0 +164182,20131,0,68732,0,0 +164183,20132,0,68733,0,0 +164184,20133,0,68734,0,0 +164185,20134,0,68735,0,0 +164186,20150,0,63897,0,0 +164187,20151,0,63897,0,0 +164188,20152,0,63897,0,0 +164189,20153,0,63897,0,0 +164190,20154,0,66953,0,0 +164191,20155,0,66953,0,0 +164192,20156,0,66953,0,0 +164193,20157,0,66953,0,0 +164194,20158,0,68723,0,0 +164195,20159,0,66176,0,0 +164196,20160,0,66176,0,0 +164197,20161,0,66176,0,0 +164198,20162,0,66176,0,0 +164199,20163,0,66184,0,0 +164200,20164,0,66184,0,0 +164201,20165,0,66184,0,0 +164202,20166,0,66184,0,0 +164203,20167,0,68722,0,0 +164204,20168,0,68722,0,0 +164205,20169,0,68722,0,0 +164206,20170,0,68722,0,0 +164207,20171,0,66184,0,0 +164208,20172,0,66184,0,0 +164209,20173,0,66184,0,0 +164210,20174,0,66184,0,0 +164211,20175,0,66974,0,0 +164212,20176,0,68726,0,0 +164213,20177,0,68438,0,0 +164214,20178,0,68438,0,0 +164215,20179,0,68438,0,0 +164216,20180,0,68438,0,0 +164217,20181,0,66704,0,0 +164218,20182,0,66704,0,0 +164219,20183,0,66704,0,0 +164220,20184,0,68725,0,0 +164221,20185,0,66704,0,0 +164222,20186,0,68722,0,0 +164223,20187,0,68722,0,0 +164224,20188,0,68722,0,0 +164225,20189,0,68722,0,0 +164226,20190,0,66184,0,0 +164227,20191,0,66184,0,0 +164228,20192,0,66184,0,0 +164229,20193,0,66184,0,0 +164230,20194,0,66974,0,0 +164231,20195,0,63897,0,0 +164232,20196,0,63897,0,0 +164233,20197,0,63897,0,0 +164234,20198,0,63897,0,0 +164235,20199,0,66953,0,0 +164236,20200,0,66953,0,0 +164237,20201,0,66953,0,0 +164238,20202,0,66953,0,0 +164239,20203,0,68724,0,0 +164240,20204,0,68438,0,0 +164241,20205,0,68438,0,0 +164242,20206,0,68438,0,0 +164243,20207,0,68438,0,0 +164244,20208,0,66704,0,0 +164245,20209,0,66704,0,0 +164246,20210,0,66704,0,0 +164247,20211,0,66704,0,0 +164248,20212,0,68725,0,0 +164249,20213,0,68736,0,0 +164250,20214,0,68728,0,0 +164251,20215,0,68737,0,0 +164252,20216,0,65302,0,0 +164253,20217,0,67135,0,0 +164254,20218,0,68738,0,0 +164255,20219,0,68739,0,0 +164256,20220,0,68727,0,0 +164257,20255,0,68740,0,0 +164258,20257,0,66348,0,0 +164259,20258,0,68741,0,0 +164260,20259,0,64888,0,0 +164261,20260,0,66350,0,0 +164262,20261,0,68413,0,0 +164263,20262,0,67068,0,0 +164264,20263,0,66514,0,0 +164265,20264,0,68742,0,0 +164266,20265,0,68743,0,0 +164267,20266,0,68411,0,0 +164268,20294,0,68084,0,0 +164269,20295,0,66907,0,0 +164270,20296,0,68744,0,0 +164271,20326,0,68057,0,0 +164272,20337,0,68745,0,0 +164273,20340,0,68057,0,0 +164274,20353,0,68057,0,0 +164275,20369,0,68746,0,0 +164276,20370,0,63374,0,0 +164277,20372,0,63374,0,0 +164278,20380,0,64247,0,0 +164279,20386,0,68747,0,0 +164280,20391,0,68748,0,0 +164281,20392,0,68749,0,0 +164282,20406,0,68750,0,0 +164283,20407,0,68751,0,0 +164284,20408,0,68752,0,0 +164285,20412,0,68753,0,0 +164286,20417,0,67397,0,0 +164287,20425,0,63964,0,0 +164288,20427,0,64758,0,0 +164289,20428,0,65000,0,0 +164290,20430,0,68637,0,0 +164291,20434,0,63551,0,0 +164292,20437,0,68559,0,0 +164293,20438,0,64048,0,0 +164294,20440,0,64955,0,0 +164295,20441,0,64179,0,0 +164296,20443,0,64561,0,0 +164297,20468,0,66025,0,0 +164298,20476,0,67419,0,0 +164299,20477,0,67421,0,0 +164300,20478,0,68754,0,0 +164301,20479,0,66635,0,0 +164302,20480,0,65969,0,0 +164303,20481,0,67361,0,0 +164304,20487,0,68462,0,0 +164305,20488,0,68461,0,0 +164306,20502,0,66945,0,0 +164307,20504,0,68755,0,0 +164308,20517,0,68756,0,0 +164309,20521,0,68757,0,0 +164310,20522,0,68758,0,0 +164311,20523,0,68114,0,0 +164312,20524,0,65291,0,0 +164313,20529,0,68759,0,0 +164314,20530,0,68760,0,0 +164315,20536,0,68761,0,0 +164316,20537,0,67271,0,0 +164317,20538,0,66140,0,0 +164318,20539,0,68762,0,0 +164319,20549,0,68763,0,0 +164320,20550,0,68764,0,0 +164321,20551,0,66370,0,0 +164322,20556,0,66968,0,0 +164323,20561,0,68765,0,0 +164324,20562,0,68766,0,0 +164325,20563,0,68767,0,0 +164326,20564,0,68768,0,0 +164327,20565,0,68769,0,0 +164328,20566,0,68770,0,0 +164329,20567,0,68771,0,0 +164330,20568,0,68772,0,0 +164331,20569,0,68773,0,0 +164332,20570,0,68774,0,0 +164333,20571,0,68775,0,0 +164334,20572,0,68776,0,0 +164335,20573,0,68777,0,0 +164336,20574,0,68778,0,0 +164337,20575,0,65289,0,0 +164338,20577,0,68779,0,0 +164339,20578,0,68780,0,0 +164340,20579,0,68781,0,0 +164341,20580,0,68782,0,0 +164342,20581,0,68783,0,0 +164343,20582,0,67853,0,0 +164344,20583,0,68766,0,0 +164345,20584,0,68749,0,0 +164346,20585,0,68769,0,0 +164347,20586,0,68767,0,0 +164348,20587,0,68773,0,0 +164349,20588,0,68775,0,0 +164350,20589,0,68771,0,0 +164351,20590,0,68778,0,0 +164352,20591,0,68765,0,0 +164353,20592,0,68748,0,0 +164354,20593,0,68770,0,0 +164355,20594,0,68768,0,0 +164356,20595,0,68774,0,0 +164357,20596,0,68776,0,0 +164358,20597,0,68772,0,0 +164359,20598,0,68777,0,0 +164360,20599,0,68784,0,0 +164361,20615,0,68785,0,0 +164362,20616,0,65833,0,0 +164363,20617,0,64803,0,0 +164364,20618,0,66211,0,0 +164365,20619,0,68786,0,0 +164366,20621,0,68787,0,0 +164367,20623,0,68788,0,0 +164368,20625,0,66183,0,0 +164369,20626,0,64733,0,0 +164370,20627,0,65554,0,0 +164371,20628,0,68789,0,0 +164372,20629,0,68790,0,0 +164373,20630,0,68791,0,0 +164374,20631,0,68792,0,0 +164375,20633,0,68793,0,0 +164376,20634,0,68794,0,0 +164377,20635,0,68795,0,0 +164378,20637,0,68796,0,0 +164379,20638,0,68797,0,0 +164380,20639,0,68798,0,0 +164381,20640,0,66467,0,0 +164382,20641,0,67271,0,0 +164383,20642,0,63832,0,0 +164384,20643,0,68799,0,0 +164385,20646,0,66836,0,0 +164386,20647,0,64712,0,0 +164387,20648,0,63799,0,0 +164388,20650,0,68800,0,0 +164389,20652,0,66155,0,0 +164390,20653,0,68409,0,0 +164391,20654,0,67033,0,0 +164392,20655,0,68801,0,0 +164393,20656,0,63553,0,0 +164394,20657,0,68310,0,0 +164395,20658,0,68802,0,0 +164396,20659,0,67345,0,0 +164397,20660,0,68803,0,0 +164398,20661,0,68804,0,0 +164399,20662,0,65870,0,0 +164400,20663,0,64944,0,0 +164401,20664,0,65779,0,0 +164402,20665,0,68805,0,0 +164403,20666,0,65611,0,0 +164404,20667,0,68806,0,0 +164405,20668,0,67346,0,0 +164406,20669,0,63692,0,0 +164407,20670,0,64984,0,0 +164408,20671,0,68562,0,0 +164409,20672,0,68807,0,0 +164410,20673,0,66183,0,0 +164411,20674,0,66140,0,0 +164412,20675,0,68808,0,0 +164413,20680,0,63356,0,0 +164414,20681,0,68809,0,0 +164415,20683,0,65656,0,0 +164416,20684,0,65053,0,0 +164417,20686,0,65344,0,0 +164418,20687,0,66664,0,0 +164419,20688,0,67745,0,0 +164420,20689,0,65872,0,0 +164421,20690,0,68810,0,0 +164422,20691,0,65385,0,0 +164423,20693,0,65993,0,0 +164424,20694,0,66844,0,0 +164425,20696,0,68811,0,0 +164426,20697,0,65550,0,0 +164427,20698,0,68812,0,0 +164428,20699,0,66350,0,0 +164429,20700,0,66350,0,0 +164430,20701,0,64464,0,0 +164431,20702,0,64464,0,0 +164432,20703,0,65764,0,0 +164433,20704,0,65764,0,0 +164434,20705,0,66213,0,0 +164435,20706,0,66213,0,0 +164436,20707,0,66213,0,0 +164437,20710,0,68813,0,0 +164438,20711,0,68813,0,0 +164439,20712,0,68814,0,0 +164440,20713,0,68814,0,0 +164441,20714,0,66252,0,0 +164442,20715,0,66252,0,0 +164443,20716,0,68815,0,0 +164444,20717,0,68815,0,0 +164445,20718,0,68816,0,0 +164446,20719,0,68817,0,0 +164447,20720,0,63737,0,0 +164448,20722,0,68473,0,0 +164449,20723,0,63292,0,0 +164450,20724,0,68818,0,0 +164451,20738,0,68819,0,0 +164452,20814,0,67609,0,0 +164453,20905,0,68820,0,0 +164454,21040,0,68821,0,0 +164455,21101,0,68822,0,0 +164456,21102,0,68823,0,0 +164457,21121,0,68824,0,0 +164458,21122,0,65622,0,0 +164459,21123,0,68825,0,0 +164460,21124,0,68826,0,0 +164461,21125,0,68827,0,0 +164462,21126,0,68828,0,0 +164463,21127,0,68829,0,0 +164464,21128,0,68827,0,0 +164465,21129,0,68830,0,0 +164466,21134,0,68831,0,0 +164467,21135,0,67608,0,0 +164468,21154,0,68832,0,0 +164469,21157,0,68833,0,0 +164470,21169,0,64008,0,0 +164471,21170,0,64008,0,0 +164472,21172,0,64008,0,0 +164473,21178,0,67281,0,0 +164474,21183,0,68834,0,0 +164475,21184,0,68440,0,0 +164476,21185,0,68835,0,0 +164477,21186,0,66398,0,0 +164478,21187,0,68836,0,0 +164479,21188,0,68837,0,0 +164480,21192,0,68520,0,0 +164481,21242,0,68838,0,0 +164482,21244,0,68839,0,0 +164483,21268,0,68840,0,0 +164484,21269,0,68841,0,0 +164485,21272,0,68842,0,0 +164486,21273,0,68823,0,0 +164487,21275,0,68843,0,0 +164488,21276,0,68822,0,0 +164489,21278,0,64351,0,0 +164490,21286,0,63957,0,0 +164491,21311,0,64510,0,0 +164492,21312,0,65799,0,0 +164493,21316,0,65657,0,0 +164494,21317,0,68844,0,0 +164495,21318,0,65876,0,0 +164496,21319,0,64613,0,0 +164497,21320,0,65797,0,0 +164498,21322,0,68430,0,0 +164499,21329,0,68845,0,0 +164500,21330,0,68846,0,0 +164501,21331,0,68847,0,0 +164502,21332,0,68848,0,0 +164503,21333,0,68849,0,0 +164504,21334,0,68850,0,0 +164505,21335,0,68851,0,0 +164506,21336,0,68852,0,0 +164507,21337,0,68853,0,0 +164508,21338,0,68854,0,0 +164509,21339,0,68855,0,0 +164510,21343,0,68856,0,0 +164511,21344,0,68857,0,0 +164512,21345,0,68858,0,0 +164513,21346,0,68859,0,0 +164514,21347,0,68860,0,0 +164515,21348,0,68861,0,0 +164516,21349,0,68862,0,0 +164517,21350,0,68863,0,0 +164518,21351,0,68864,0,0 +164519,21352,0,68865,0,0 +164520,21353,0,68866,0,0 +164521,21354,0,68867,0,0 +164522,21355,0,68868,0,0 +164523,21356,0,68869,0,0 +164524,21357,0,68870,0,0 +164525,21359,0,68871,0,0 +164526,21360,0,68872,0,0 +164527,21361,0,68873,0,0 +164528,21362,0,68874,0,0 +164529,21364,0,68875,0,0 +164530,21365,0,68876,0,0 +164531,21366,0,68877,0,0 +164532,21367,0,68878,0,0 +164533,21368,0,68879,0,0 +164534,21370,0,68880,0,0 +164535,21372,0,68881,0,0 +164536,21373,0,68882,0,0 +164537,21374,0,68883,0,0 +164538,21375,0,68884,0,0 +164539,21376,0,68885,0,0 +164540,21387,0,68886,0,0 +164541,21388,0,68887,0,0 +164542,21389,0,68888,0,0 +164543,21390,0,68889,0,0 +164544,21391,0,68890,0,0 +164545,21392,0,68891,0,0 +164546,21394,0,66972,0,0 +164547,21395,0,68892,0,0 +164548,21397,0,68893,0,0 +164549,21398,0,68894,0,0 +164550,21400,0,65790,0,0 +164551,21401,0,68891,0,0 +164552,21403,0,68895,0,0 +164553,21404,0,68896,0,0 +164554,21406,0,64943,0,0 +164555,21407,0,68894,0,0 +164556,21409,0,66096,0,0 +164557,21410,0,68894,0,0 +164558,21412,0,65522,0,0 +164559,21413,0,68892,0,0 +164560,21415,0,65550,0,0 +164561,21416,0,68896,0,0 +164562,21418,0,66124,0,0 +164563,21419,0,68897,0,0 +164564,21420,0,68898,0,0 +164565,21421,0,68899,0,0 +164566,21422,0,68900,0,0 +164567,21423,0,68901,0,0 +164568,21424,0,68901,0,0 +164569,21425,0,68902,0,0 +164570,21426,0,68903,0,0 +164571,21427,0,68904,0,0 +164572,21428,0,68905,0,0 +164573,21429,0,68906,0,0 +164574,21430,0,68907,0,0 +164575,21431,0,68908,0,0 +164576,21432,0,68909,0,0 +164577,21433,0,68910,0,0 +164578,21434,0,68911,0,0 +164579,21435,0,68910,0,0 +164580,21437,0,68912,0,0 +164581,21439,0,68913,0,0 +164582,21440,0,68914,0,0 +164583,21441,0,68915,0,0 +164584,21442,0,68916,0,0 +164585,21443,0,68917,0,0 +164586,21444,0,68918,0,0 +164587,21445,0,68915,0,0 +164588,21446,0,68919,0,0 +164589,21447,0,68899,0,0 +164590,21448,0,68920,0,0 +164591,21449,0,68921,0,0 +164592,21450,0,68922,0,0 +164593,21451,0,68923,0,0 +164594,21452,0,68822,0,0 +164595,21453,0,66274,0,0 +164596,21454,0,68924,0,0 +164597,21455,0,68925,0,0 +164598,21456,0,68926,0,0 +164599,21457,0,68927,0,0 +164600,21458,0,68928,0,0 +164601,21459,0,68929,0,0 +164602,21460,0,66239,0,0 +164603,21461,0,66636,0,0 +164604,21462,0,65064,0,0 +164605,21463,0,68621,0,0 +164606,21464,0,64378,0,0 +164607,21465,0,68930,0,0 +164608,21466,0,68931,0,0 +164609,21467,0,68932,0,0 +164610,21468,0,66276,0,0 +164611,21469,0,64729,0,0 +164612,21470,0,65878,0,0 +164613,21471,0,68933,0,0 +164614,21472,0,68934,0,0 +164615,21474,0,68935,0,0 +164616,21475,0,68936,0,0 +164617,21476,0,68937,0,0 +164618,21478,0,68938,0,0 +164619,21479,0,68939,0,0 +164620,21480,0,68940,0,0 +164621,21481,0,68941,0,0 +164622,21482,0,67068,0,0 +164623,21484,0,68942,0,0 +164624,21485,0,68943,0,0 +164625,21486,0,68944,0,0 +164626,21487,0,68945,0,0 +164627,21489,0,68946,0,0 +164628,21490,0,68947,0,0 +164629,21491,0,66939,0,0 +164630,21492,0,68948,0,0 +164631,21493,0,68463,0,0 +164632,21494,0,67502,0,0 +164633,21495,0,68949,0,0 +164634,21496,0,64572,0,0 +164635,21497,0,68950,0,0 +164636,21498,0,68951,0,0 +164637,21499,0,68952,0,0 +164638,21500,0,65196,0,0 +164639,21501,0,68443,0,0 +164640,21502,0,68953,0,0 +164641,21503,0,68549,0,0 +164642,21517,0,66791,0,0 +164643,21520,0,68597,0,0 +164644,21521,0,68954,0,0 +164645,21522,0,68955,0,0 +164646,21523,0,68956,0,0 +164647,21524,0,68957,0,0 +164648,21525,0,68958,0,0 +164649,21527,0,68439,0,0 +164650,21530,0,65794,0,0 +164651,21532,0,67061,0,0 +164652,21538,0,68959,0,0 +164653,21539,0,68960,0,0 +164654,21541,0,68961,0,0 +164655,21542,0,68962,0,0 +164656,21543,0,68963,0,0 +164657,21544,0,68964,0,0 +164658,21549,0,68493,0,0 +164659,21550,0,68965,0,0 +164660,21551,0,68503,0,0 +164661,21553,0,68522,0,0 +164662,21554,0,68511,0,0 +164663,21555,0,68515,0,0 +164664,21564,0,68510,0,0 +164665,21572,0,68492,0,0 +164666,21573,0,66708,0,0 +164667,21580,0,68966,0,0 +164668,21581,0,68967,0,0 +164669,21582,0,68968,0,0 +164670,21583,0,68969,0,0 +164671,21584,0,68970,0,0 +164672,21585,0,68971,0,0 +164673,21586,0,68972,0,0 +164674,21587,0,68973,0,0 +164675,21588,0,68974,0,0 +164676,21594,0,68975,0,0 +164677,21597,0,68976,0,0 +164678,21598,0,68977,0,0 +164679,21599,0,68978,0,0 +164680,21600,0,68979,0,0 +164681,21602,0,68980,0,0 +164682,21603,0,68981,0,0 +164683,21604,0,68982,0,0 +164684,21605,0,68983,0,0 +164685,21606,0,68984,0,0 +164686,21607,0,68985,0,0 +164687,21609,0,68986,0,0 +164688,21610,0,68987,0,0 +164689,21611,0,68988,0,0 +164690,21612,0,68989,0,0 +164691,21613,0,68990,0,0 +164692,21614,0,68991,0,0 +164693,21615,0,68401,0,0 +164694,21616,0,68992,0,0 +164695,21617,0,68993,0,0 +164696,21618,0,68994,0,0 +164697,21619,0,68995,0,0 +164698,21621,0,68996,0,0 +164699,21622,0,68997,0,0 +164700,21623,0,68998,0,0 +164701,21624,0,68999,0,0 +164702,21626,0,69000,0,0 +164703,21627,0,69001,0,0 +164704,21635,0,69002,0,0 +164705,21639,0,69003,0,0 +164706,21645,0,69004,0,0 +164707,21648,0,66207,0,0 +164708,21650,0,69005,0,0 +164709,21651,0,69006,0,0 +164710,21652,0,69007,0,0 +164711,21663,0,69008,0,0 +164712,21665,0,69009,0,0 +164713,21666,0,69010,0,0 +164714,21667,0,69011,0,0 +164715,21668,0,66907,0,0 +164716,21669,0,65821,0,0 +164717,21671,0,69012,0,0 +164718,21672,0,69013,0,0 +164719,21673,0,69014,0,0 +164720,21674,0,67825,0,0 +164721,21675,0,68986,0,0 +164722,21676,0,65777,0,0 +164723,21679,0,69015,0,0 +164724,21680,0,69016,0,0 +164725,21682,0,66097,0,0 +164726,21683,0,69017,0,0 +164727,21684,0,69018,0,0 +164728,21686,0,69019,0,0 +164729,21688,0,69020,0,0 +164730,21689,0,64355,0,0 +164731,21691,0,69021,0,0 +164732,21692,0,68459,0,0 +164733,21693,0,69022,0,0 +164734,21694,0,69023,0,0 +164735,21696,0,63373,0,0 +164736,21697,0,69024,0,0 +164737,21698,0,65822,0,0 +164738,21699,0,69025,0,0 +164739,21701,0,66686,0,0 +164740,21703,0,69026,0,0 +164741,21704,0,69027,0,0 +164742,21705,0,69028,0,0 +164743,21706,0,69029,0,0 +164744,21708,0,69030,0,0 +164745,21710,0,69031,0,0 +164746,21715,0,68840,0,0 +164747,21794,0,69015,0,0 +164748,21795,0,68843,0,0 +164749,21796,0,68976,0,0 +164750,21797,0,69032,0,0 +164751,21798,0,69032,0,0 +164752,21799,0,69033,0,0 +164753,21800,0,69034,0,0 +164754,21801,0,68826,0,0 +164755,21802,0,69035,0,0 +164756,21803,0,63546,0,0 +164757,21804,0,69036,0,0 +164758,21805,0,69037,0,0 +164759,21806,0,69038,0,0 +164760,21810,0,69039,0,0 +164761,21814,0,69040,0,0 +164762,21832,0,66463,0,0 +164763,21837,0,63796,0,0 +164764,21838,0,68718,0,0 +164765,21839,0,69041,0,0 +164766,21856,0,66757,0,0 +164767,21888,0,69042,0,0 +164768,21889,0,69043,0,0 +164769,21890,0,69044,0,0 +164770,21994,0,69045,0,0 +164771,21995,0,69046,0,0 +164772,21996,0,69047,0,0 +164773,21997,0,69048,0,0 +164774,21998,0,69049,0,0 +164775,21999,0,69050,0,0 +164776,22000,0,69051,0,0 +164777,22001,0,69052,0,0 +164778,22002,0,69053,0,0 +164779,22003,0,69054,0,0 +164780,22004,0,69055,0,0 +164781,22005,0,69056,0,0 +164782,22006,0,69057,0,0 +164783,22007,0,69058,0,0 +164784,22008,0,69059,0,0 +164785,22009,0,69060,0,0 +164786,22010,0,69061,0,0 +164787,22011,0,69062,0,0 +164788,22013,0,69063,0,0 +164789,22015,0,69064,0,0 +164790,22016,0,69065,0,0 +164791,22017,0,69066,0,0 +164792,22060,0,69067,0,0 +164793,22061,0,69068,0,0 +164794,22062,0,69069,0,0 +164795,22063,0,69070,0,0 +164796,22064,0,69071,0,0 +164797,22065,0,69072,0,0 +164798,22066,0,69073,0,0 +164799,22067,0,69074,0,0 +164800,22068,0,69075,0,0 +164801,22069,0,69076,0,0 +164802,22070,0,69077,0,0 +164803,22071,0,69078,0,0 +164804,22072,0,69079,0,0 +164805,22073,0,69080,0,0 +164806,22074,0,69081,0,0 +164807,22075,0,69082,0,0 +164808,22076,0,69083,0,0 +164809,22077,0,69084,0,0 +164810,22078,0,69085,0,0 +164811,22079,0,69086,0,0 +164812,22080,0,69087,0,0 +164813,22081,0,69088,0,0 +164814,22082,0,69089,0,0 +164815,22083,0,69090,0,0 +164816,22084,0,69091,0,0 +164817,22085,0,69092,0,0 +164818,22086,0,69093,0,0 +164819,22087,0,69094,0,0 +164820,22088,0,69095,0,0 +164821,22089,0,69096,0,0 +164822,22090,0,69097,0,0 +164823,22091,0,69098,0,0 +164824,22092,0,69099,0,0 +164825,22093,0,69100,0,0 +164826,22095,0,69101,0,0 +164827,22096,0,69102,0,0 +164828,22097,0,69103,0,0 +164829,22098,0,69104,0,0 +164830,22099,0,69105,0,0 +164831,22100,0,69106,0,0 +164832,22101,0,69107,0,0 +164833,22102,0,69108,0,0 +164834,22106,0,69109,0,0 +164835,22107,0,69110,0,0 +164836,22108,0,69111,0,0 +164837,22109,0,69112,0,0 +164838,22110,0,69113,0,0 +164839,22111,0,69114,0,0 +164840,22112,0,69115,0,0 +164841,22113,0,69116,0,0 +164842,22191,0,66886,0,0 +164843,22194,0,67705,0,0 +164844,22195,0,67706,0,0 +164845,22196,0,69117,0,0 +164846,22197,0,67706,0,0 +164847,22198,0,69118,0,0 +164848,22199,0,66761,0,0 +164849,22204,0,68526,0,0 +164850,22205,0,66880,0,0 +164851,22206,0,63969,0,0 +164852,22207,0,66251,0,0 +164853,22208,0,69119,0,0 +164854,22210,0,66564,0,0 +164855,22211,0,66564,0,0 +164856,22212,0,63358,0,0 +164857,22213,0,63839,0,0 +164858,22215,0,66977,0,0 +164859,22223,0,69120,0,0 +164860,22225,0,69121,0,0 +164861,22230,0,65558,0,0 +164862,22231,0,69122,0,0 +164863,22232,0,64006,0,0 +164864,22234,0,65049,0,0 +164865,22240,0,69123,0,0 +164866,22241,0,69124,0,0 +164867,22242,0,69125,0,0 +164868,22245,0,69126,0,0 +164869,22247,0,69127,0,0 +164870,22253,0,66781,0,0 +164871,22254,0,69128,0,0 +164872,22256,0,68416,0,0 +164873,22266,0,63971,0,0 +164874,22267,0,68555,0,0 +164875,22269,0,66972,0,0 +164876,22270,0,66291,0,0 +164877,22271,0,64587,0,0 +164878,22272,0,67489,0,0 +164879,22273,0,69129,0,0 +164880,22274,0,63727,0,0 +164881,22275,0,64345,0,0 +164882,22276,0,69130,0,0 +164883,22277,0,69131,0,0 +164884,22278,0,69132,0,0 +164885,22279,0,69133,0,0 +164886,22280,0,69134,0,0 +164887,22281,0,69135,0,0 +164888,22282,0,69136,0,0 +164889,22301,0,65158,0,0 +164890,22302,0,69137,0,0 +164891,22303,0,69138,0,0 +164892,22304,0,69139,0,0 +164893,22305,0,69140,0,0 +164894,22306,0,69141,0,0 +164895,22311,0,69142,0,0 +164896,22313,0,69141,0,0 +164897,22314,0,69143,0,0 +164898,22315,0,64896,0,0 +164899,22317,0,66935,0,0 +164900,22318,0,69144,0,0 +164901,22319,0,69145,0,0 +164902,22322,0,63410,0,0 +164903,22325,0,65069,0,0 +164904,22328,0,66622,0,0 +164905,22329,0,69146,0,0 +164906,22330,0,69147,0,0 +164907,22332,0,69148,0,0 +164908,22333,0,64735,0,0 +164909,22335,0,69149,0,0 +164910,22336,0,65804,0,0 +164911,22337,0,67815,0,0 +164912,22341,0,68273,0,0 +164913,22342,0,66140,0,0 +164914,22343,0,68814,0,0 +164915,22346,0,68588,0,0 +164916,22347,0,66741,0,0 +164917,22348,0,67351,0,0 +164918,22377,0,63833,0,0 +164919,22378,0,69150,0,0 +164920,22379,0,66470,0,0 +164921,22380,0,69151,0,0 +164922,22383,0,69152,0,0 +164923,22384,0,69153,0,0 +164924,22385,0,69154,0,0 +164925,22391,0,69149,0,0 +164926,22394,0,69155,0,0 +164927,22404,0,66768,0,0 +164928,22405,0,65776,0,0 +164929,22406,0,65013,0,0 +164930,22407,0,69156,0,0 +164931,22408,0,69157,0,0 +164932,22409,0,69158,0,0 +164933,22410,0,69159,0,0 +164934,22411,0,67781,0,0 +164935,22412,0,65549,0,0 +164936,22416,0,69160,0,0 +164937,22417,0,69161,0,0 +164938,22418,0,69162,0,0 +164939,22419,0,69163,0,0 +164940,22420,0,69164,0,0 +164941,22421,0,69165,0,0 +164942,22422,0,69166,0,0 +164943,22423,0,69167,0,0 +164944,22424,0,69168,0,0 +164945,22425,0,69169,0,0 +164946,22426,0,69170,0,0 +164947,22427,0,69171,0,0 +164948,22428,0,69172,0,0 +164949,22429,0,69173,0,0 +164950,22430,0,69174,0,0 +164951,22431,0,69175,0,0 +164952,22436,0,69176,0,0 +164953,22437,0,69177,0,0 +164954,22438,0,69178,0,0 +164955,22439,0,69179,0,0 +164956,22440,0,69180,0,0 +164957,22441,0,69181,0,0 +164958,22442,0,69182,0,0 +164959,22443,0,69183,0,0 +164960,22458,0,63551,0,0 +164961,22464,0,69184,0,0 +164962,22465,0,69185,0,0 +164963,22466,0,69186,0,0 +164964,22467,0,69187,0,0 +164965,22468,0,69188,0,0 +164966,22469,0,69189,0,0 +164967,22470,0,69190,0,0 +164968,22471,0,69191,0,0 +164969,22472,0,66305,0,0 +164970,22476,0,69192,0,0 +164971,22477,0,69193,0,0 +164972,22478,0,69194,0,0 +164973,22479,0,69195,0,0 +164974,22480,0,69196,0,0 +164975,22481,0,69197,0,0 +164976,22482,0,69198,0,0 +164977,22483,0,69199,0,0 +164978,22488,0,69200,0,0 +164979,22489,0,69201,0,0 +164980,22490,0,69202,0,0 +164981,22491,0,69203,0,0 +164982,22492,0,69204,0,0 +164983,22493,0,69205,0,0 +164984,22494,0,69206,0,0 +164985,22495,0,69207,0,0 +164986,22496,0,69208,0,0 +164987,22497,0,69209,0,0 +164988,22498,0,69210,0,0 +164989,22499,0,69211,0,0 +164990,22500,0,69212,0,0 +164991,22501,0,69213,0,0 +164992,22502,0,69214,0,0 +164993,22503,0,69215,0,0 +164994,22504,0,69216,0,0 +164995,22505,0,69217,0,0 +164996,22506,0,69218,0,0 +164997,22507,0,69219,0,0 +164998,22508,0,69220,0,0 +164999,22509,0,69221,0,0 +165000,22510,0,69222,0,0 +165001,22511,0,69223,0,0 +165002,22512,0,69224,0,0 +165003,22513,0,69225,0,0 +165004,22514,0,69226,0,0 +165005,22515,0,69227,0,0 +165006,22516,0,69228,0,0 +165007,22517,0,69229,0,0 +165008,22518,0,69230,0,0 +165009,22519,0,69231,0,0 +165010,22589,0,69232,0,0 +165011,22596,0,68435,0,0 +165012,22630,0,69233,0,0 +165013,22631,0,69234,0,0 +165014,22632,0,69235,0,0 +165015,22651,0,66790,0,0 +165016,22652,0,69236,0,0 +165017,22654,0,69237,0,0 +165018,22655,0,69238,0,0 +165019,22656,0,64628,0,0 +165020,22658,0,64799,0,0 +165021,22660,0,66021,0,0 +165022,22661,0,69239,0,0 +165023,22662,0,69240,0,0 +165024,22663,0,69241,0,0 +165025,22664,0,69242,0,0 +165026,22665,0,69243,0,0 +165027,22666,0,69244,0,0 +165028,22667,0,63276,0,0 +165029,22668,0,66016,0,0 +165030,22669,0,69245,0,0 +165031,22670,0,69246,0,0 +165032,22671,0,69247,0,0 +165033,22672,0,66790,0,0 +165034,22673,0,68937,0,0 +165035,22676,0,68937,0,0 +165036,22688,0,65686,0,0 +165037,22689,0,69248,0,0 +165038,22690,0,64104,0,0 +165039,22691,0,69249,0,0 +165040,22699,0,69250,0,0 +165041,22700,0,69251,0,0 +165042,22701,0,69252,0,0 +165043,22702,0,69253,0,0 +165044,22709,0,69249,0,0 +165045,22711,0,65385,0,0 +165046,22712,0,69254,0,0 +165047,22713,0,69255,0,0 +165048,22714,0,67268,0,0 +165049,22715,0,69256,0,0 +165050,22716,0,69257,0,0 +165051,22718,0,65685,0,0 +165052,22720,0,66791,0,0 +165053,22724,0,69258,0,0 +165054,22730,0,66711,0,0 +165055,22731,0,69259,0,0 +165056,22736,0,69260,0,0 +165057,22738,0,69260,0,0 +165058,22740,0,64349,0,0 +165059,22741,0,66257,0,0 +165060,22742,0,69261,0,0 +165061,22743,0,64269,0,0 +165062,22744,0,66435,0,0 +165063,22745,0,63300,0,0 +165064,22747,0,66140,0,0 +165065,22748,0,68937,0,0 +165066,22749,0,64349,0,0 +165067,22750,0,66257,0,0 +165068,22751,0,66790,0,0 +165069,22752,0,66140,0,0 +165070,22753,0,69262,0,0 +165071,22756,0,69263,0,0 +165072,22757,0,69264,0,0 +165073,22758,0,69265,0,0 +165074,22759,0,69266,0,0 +165075,22760,0,69267,0,0 +165076,22761,0,69268,0,0 +165077,22762,0,66346,0,0 +165078,22763,0,69269,0,0 +165079,22764,0,69270,0,0 +165080,22798,0,69271,0,0 +165081,22799,0,69272,0,0 +165082,22800,0,69273,0,0 +165083,22801,0,69274,0,0 +165084,22802,0,69275,0,0 +165085,22803,0,69276,0,0 +165086,22804,0,69277,0,0 +165087,22805,0,69278,0,0 +165088,22806,0,69278,0,0 +165089,22807,0,69279,0,0 +165090,22808,0,69280,0,0 +165091,22809,0,69281,0,0 +165092,22810,0,69282,0,0 +165093,22811,0,69283,0,0 +165094,22812,0,69284,0,0 +165095,22813,0,69285,0,0 +165096,22814,0,69286,0,0 +165097,22815,0,69287,0,0 +165098,22816,0,69288,0,0 +165099,22817,0,69289,0,0 +165100,22818,0,69290,0,0 +165101,22819,0,69291,0,0 +165102,22820,0,69292,0,0 +165103,22821,0,69293,0,0 +165104,22843,0,67992,0,0 +165105,22852,0,67959,0,0 +165106,22855,0,68322,0,0 +165107,22856,0,67963,0,0 +165108,22857,0,67980,0,0 +165109,22858,0,67973,0,0 +165110,22859,0,68347,0,0 +165111,22860,0,67951,0,0 +165112,22862,0,67991,0,0 +165113,22863,0,67961,0,0 +165114,22864,0,67964,0,0 +165115,22865,0,68323,0,0 +165116,22867,0,67981,0,0 +165117,22868,0,67974,0,0 +165118,22869,0,68348,0,0 +165119,22870,0,67953,0,0 +165120,22872,0,67975,0,0 +165121,22873,0,67977,0,0 +165122,22874,0,67986,0,0 +165123,22875,0,67988,0,0 +165124,22876,0,67983,0,0 +165125,22877,0,67968,0,0 +165126,22878,0,67966,0,0 +165127,22879,0,67969,0,0 +165128,22880,0,67972,0,0 +165129,22881,0,67134,0,0 +165130,22882,0,65185,0,0 +165131,22883,0,66513,0,0 +165132,22884,0,68320,0,0 +165133,22885,0,68345,0,0 +165134,22886,0,67956,0,0 +165135,22887,0,67984,0,0 +165136,22936,0,69294,0,0 +165137,22937,0,69295,0,0 +165138,22938,0,69296,0,0 +165139,22940,0,69297,0,0 +165140,22941,0,69298,0,0 +165141,22942,0,69299,0,0 +165142,22960,0,69300,0,0 +165143,22967,0,69301,0,0 +165144,22968,0,69301,0,0 +165145,22983,0,69302,0,0 +165146,22988,0,69303,0,0 +165147,22994,0,69304,0,0 +165148,22999,0,69305,0,0 +165149,23000,0,69306,0,0 +165150,23009,0,69292,0,0 +165151,23014,0,69307,0,0 +165152,23017,0,69308,0,0 +165153,23019,0,69309,0,0 +165154,23020,0,69310,0,0 +165155,23021,0,69311,0,0 +165156,23029,0,69312,0,0 +165157,23030,0,69313,0,0 +165158,23032,0,69314,0,0 +165159,23033,0,69315,0,0 +165160,23034,0,69316,0,0 +165161,23035,0,69317,0,0 +165162,23039,0,69289,0,0 +165163,23043,0,69318,0,0 +165164,23044,0,69319,0,0 +165165,23045,0,69320,0,0 +165166,23048,0,69321,0,0 +165167,23049,0,69322,0,0 +165168,23050,0,69323,0,0 +165169,23054,0,69324,0,0 +165170,23056,0,69325,0,0 +165171,23068,0,69326,0,0 +165172,23069,0,69327,0,0 +165173,23070,0,69328,0,0 +165174,23071,0,69329,0,0 +165175,23072,0,69330,0,0 +165176,23073,0,64350,0,0 +165177,23075,0,69331,0,0 +165178,23078,0,69332,0,0 +165179,23081,0,69333,0,0 +165180,23082,0,69334,0,0 +165181,23084,0,69335,0,0 +165182,23085,0,69336,0,0 +165183,23087,0,69337,0,0 +165184,23088,0,69338,0,0 +165185,23089,0,69339,0,0 +165186,23090,0,69340,0,0 +165187,23091,0,69341,0,0 +165188,23092,0,69342,0,0 +165189,23093,0,69343,0,0 +165190,23124,0,69344,0,0 +165191,23126,0,69345,0,0 +165192,23127,0,68419,0,0 +165193,23128,0,66143,0,0 +165194,23129,0,68429,0,0 +165195,23132,0,68529,0,0 +165196,23139,0,63393,0,0 +165197,23156,0,64272,0,0 +165198,23168,0,69346,0,0 +165199,23170,0,65719,0,0 +165200,23171,0,66812,0,0 +165201,23173,0,66816,0,0 +165202,23177,0,69347,0,0 +165203,23178,0,64506,0,0 +165204,23192,0,63283,0,0 +165205,23219,0,67065,0,0 +165206,23220,0,68281,0,0 +165207,23221,0,69348,0,0 +165208,23226,0,69016,0,0 +165209,23238,0,69349,0,0 +165210,23242,0,69350,0,0 +165211,23243,0,67978,0,0 +165212,23244,0,67976,0,0 +165213,23251,0,67987,0,0 +165214,23252,0,67989,0,0 +165215,23253,0,67967,0,0 +165216,23254,0,67965,0,0 +165217,23255,0,67882,0,0 +165218,23256,0,68321,0,0 +165219,23257,0,67970,0,0 +165220,23258,0,67971,0,0 +165221,23259,0,67982,0,0 +165222,23260,0,67985,0,0 +165223,23261,0,68344,0,0 +165224,23262,0,68346,0,0 +165225,23263,0,67955,0,0 +165226,23264,0,67957,0,0 +165227,23272,0,67927,0,0 +165228,23273,0,67929,0,0 +165229,23274,0,67907,0,0 +165230,23275,0,67906,0,0 +165231,23276,0,67928,0,0 +165232,23277,0,67930,0,0 +165233,23278,0,67903,0,0 +165234,23279,0,67905,0,0 +165235,23280,0,67900,0,0 +165236,23281,0,67897,0,0 +165237,23282,0,68315,0,0 +165238,23283,0,68314,0,0 +165239,23284,0,67899,0,0 +165240,23285,0,67896,0,0 +165241,23286,0,67877,0,0 +165242,23287,0,67878,0,0 +165243,23288,0,68335,0,0 +165244,23289,0,68334,0,0 +165245,23290,0,67895,0,0 +165246,23291,0,67893,0,0 +165247,23292,0,67921,0,0 +165248,23293,0,67922,0,0 +165249,23294,0,67917,0,0 +165250,23295,0,67918,0,0 +165251,23296,0,68317,0,0 +165252,23297,0,68318,0,0 +165253,23298,0,67913,0,0 +165254,23299,0,67915,0,0 +165255,23300,0,67926,0,0 +165256,23301,0,67876,0,0 +165257,23302,0,66301,0,0 +165258,23303,0,68337,0,0 +165259,23304,0,67910,0,0 +165260,23305,0,67909,0,0 +165261,23306,0,69351,0,0 +165262,23307,0,67923,0,0 +165263,23308,0,69352,0,0 +165264,23309,0,67919,0,0 +165265,23310,0,68316,0,0 +165266,23311,0,68319,0,0 +165267,23312,0,67914,0,0 +165268,23313,0,67916,0,0 +165269,23314,0,69353,0,0 +165270,23315,0,67879,0,0 +165271,23316,0,68336,0,0 +165272,23317,0,68338,0,0 +165273,23318,0,67912,0,0 +165274,23319,0,67911,0,0 +165275,23323,0,69354,0,0 +165276,23324,0,69355,0,0 +165277,23328,0,69356,0,0 +165278,23356,0,63392,0,0 +165279,23369,0,69357,0,0 +165280,23451,0,69358,0,0 +165281,23452,0,69359,0,0 +165282,23453,0,69360,0,0 +165283,23454,0,69361,0,0 +165284,23455,0,69362,0,0 +165285,23456,0,69363,0,0 +165286,23464,0,69364,0,0 +165287,23465,0,69365,0,0 +165288,23466,0,69366,0,0 +165289,23467,0,69367,0,0 +165290,23468,0,69368,0,0 +165291,23469,0,69369,0,0 +165292,23557,0,69034,0,0 +165293,23577,0,69370,0,0 +165294,23582,0,69288,0,0 +165295,23583,0,69303,0,0 +165296,23663,0,68985,0,0 +165297,23664,0,69371,0,0 +165298,23665,0,69372,0,0 +165299,23666,0,68655,0,0 +165300,23667,0,69373,0,0 +165301,23668,0,68411,0,0 +165302,23705,0,69374,0,0 +165303,23709,0,69375,0,0 +165304,23710,0,69376,0,0 +165305,23743,0,69278,0,0 +165306,24071,0,63739,0,0 +165307,24222,0,65671,0,0 +165308,171470,0,68530,0,0 diff --git a/HermesProxy/CSV/ItemModifiedAppearance2.csv b/HermesProxy/CSV/ItemModifiedAppearance2.csv new file mode 100644 index 00000000..e5c8479c --- /dev/null +++ b/HermesProxy/CSV/ItemModifiedAppearance2.csv @@ -0,0 +1,16747 @@ +ID,ItemID,ItemAppearanceModifierID,ItemAppearanceID,OrderIndex,TransmogSourceTypeEnum +116764,185976,0,48327,0,6 +116768,185977,0,48329,0,6 +116769,185998,0,48322,0,6 +116770,185999,0,48321,0,6 +116771,186001,0,48324,0,6 +116772,186002,0,48325,0,6 +116784,186015,0,48328,0,6 +116785,186016,0,48326,0,6 +116786,186018,0,55082,0,6 +116787,186019,0,55085,0,6 +116788,186020,0,55083,0,6 +116789,186021,0,55086,0,6 +116790,186022,0,55089,0,6 +116791,186023,0,55087,0,6 +116792,186024,0,55090,0,6 +116793,186025,0,55081,0,6 +116794,186026,0,55095,0,6 +116795,186027,0,55096,0,6 +116796,186028,0,55097,0,6 +116797,186029,0,55098,0,6 +116798,186030,0,55099,0,6 +116799,186031,0,55100,0,6 +116800,186032,0,55101,0,6 +116801,186033,0,55102,0,6 +116802,186034,0,47086,0,6 +116803,186035,0,47668,0,6 +116804,186036,0,47083,0,6 +116805,186037,0,47036,0,6 +116806,186038,0,55091,0,6 +116807,186039,0,47085,0,6 +116808,186040,0,47667,0,6 +116809,186041,0,47084,0,6 +116811,186044,0,55103,0,6 +116812,186045,0,47267,0,6 +116813,186046,0,55088,0,6 +116814,186047,0,48086,0,6 +116815,186075,0,47267,0,6 +116816,186076,0,55101,0,6 +116818,186078,0,55095,0,6 +116819,186079,0,55099,0,6 +116820,186080,0,55096,0,6 +116821,186081,0,47086,0,6 +116822,186082,0,55091,0,6 +116823,186083,0,47668,0,6 +116824,186084,0,47667,0,6 +116825,186085,0,48321,0,6 +116826,186086,0,48327,0,6 +116827,186087,0,48328,0,6 +116828,186088,0,48329,0,6 +116881,17,0,45701,0,0 +116882,25,0,45702,0,0 +116883,35,0,45703,0,0 +116884,36,0,45704,0,0 +116885,37,0,45705,0,0 +116886,38,0,45706,0,0 +116887,39,0,45707,0,0 +116888,40,0,45708,0,0 +116889,43,0,45709,0,0 +116890,44,0,45710,0,0 +116891,45,0,45711,0,0 +116892,47,0,45712,0,0 +116893,48,0,45713,0,0 +116894,49,0,45714,0,0 +116895,51,0,45715,0,0 +116896,52,0,45716,0,0 +116897,53,0,45717,0,0 +116898,55,0,45718,0,0 +116899,56,0,45719,0,0 +116900,57,0,45720,0,0 +116901,59,0,45721,0,0 +116902,60,0,45722,0,0 +116903,61,0,45723,0,0 +116904,79,0,45724,0,0 +116905,80,0,45725,0,0 +116906,85,0,45726,0,0 +116909,120,0,45728,0,0 +116910,121,0,45729,0,0 +116911,127,0,45730,0,0 +116912,129,0,45731,0,0 +116913,139,0,45732,0,0 +116914,140,0,45733,0,0 +116915,143,0,45734,0,0 +116916,147,0,45735,0,0 +116917,148,0,45736,0,0 +116918,153,0,45737,0,0 +116919,154,0,45738,0,0 +116922,192,0,45739,0,0 +116923,193,0,45740,0,0 +116924,194,0,45741,0,0 +116925,195,0,45742,0,0 +116926,200,0,45743,0,0 +116927,201,0,45744,0,0 +116928,202,0,45745,0,0 +116929,203,0,45746,0,0 +116930,209,0,45747,0,0 +116931,210,0,45748,0,0 +116932,236,0,45749,0,0 +116933,237,0,45750,0,0 +116934,238,0,45751,0,0 +116935,239,0,45752,0,0 +116936,285,0,45753,0,0 +116937,286,0,45754,0,0 +116938,287,0,45755,0,0 +116944,647,0,45756,0,0 +116945,710,0,45757,0,0 +116946,711,0,45758,0,0 +116947,714,0,45759,0,0 +116948,718,0,45760,0,0 +116949,719,0,45761,0,0 +116950,720,0,45762,0,0 +116954,727,0,45763,0,0 +116970,746,0,45764,0,0 +116974,753,0,45765,0,0 +116975,754,0,45766,0,0 +116977,756,0,45767,0,0 +116979,763,0,45768,0,0 +116981,766,0,45769,0,0 +116982,767,0,45770,0,0 +116983,768,0,45771,0,0 +116990,776,0,45772,0,0 +116992,778,0,45773,0,0 +116995,781,0,45774,0,0 +117000,788,0,45775,0,0 +117001,789,0,45776,0,0 +117002,790,0,45777,0,0 +117003,791,0,45778,0,0 +117004,792,0,45779,0,0 +117005,793,0,45780,0,0 +117006,794,0,45781,0,0 +117007,795,0,45782,0,0 +117008,796,0,45783,0,0 +117009,797,0,45784,0,0 +117010,798,0,45785,0,0 +117011,799,0,45786,0,0 +117014,809,0,45787,0,0 +117015,810,0,45788,0,0 +117016,811,0,45789,0,0 +117017,812,0,45790,0,0 +117020,816,0,45791,0,0 +117022,820,0,45792,0,0 +117023,821,0,45793,0,0 +117024,826,0,45794,0,0 +117025,827,0,45795,0,0 +117028,832,0,45796,0,0 +117031,837,0,45797,0,0 +117032,838,0,45798,0,0 +117033,839,0,45799,0,0 +117034,840,0,45800,0,0 +117036,843,0,45801,0,0 +117037,844,0,45802,0,0 +117038,845,0,45803,0,0 +117039,846,0,45804,0,0 +117040,847,0,45805,0,0 +117041,848,0,45806,0,0 +117042,849,0,45807,0,0 +117043,850,0,45808,0,0 +117044,851,0,45809,0,0 +117045,852,0,45810,0,0 +117046,853,0,45811,0,0 +117047,854,0,45812,0,0 +117051,859,0,45813,0,0 +117052,860,0,45814,0,0 +117054,863,0,45815,0,0 +117055,864,0,45816,0,0 +117056,865,0,45817,0,0 +117057,866,0,45818,0,0 +117058,867,0,45819,0,0 +117059,868,0,45820,0,0 +117060,869,0,45821,0,0 +117061,870,0,45822,0,0 +117062,871,0,45823,0,0 +117063,872,0,45824,0,0 +117064,873,0,45825,0,0 +117066,876,0,45826,0,0 +117068,880,0,45827,0,0 +117070,885,0,45828,0,0 +117071,886,0,45829,0,0 +117073,888,0,45830,0,0 +117075,890,0,45831,0,0 +117076,892,0,45832,0,0 +117080,897,0,45833,0,0 +117081,899,0,45834,0,0 +117082,905,0,45835,0,0 +117083,906,0,45836,0,0 +117084,907,0,45837,0,0 +117085,908,0,45838,0,0 +117086,909,0,45839,0,0 +117088,911,0,45840,0,0 +117089,913,0,45841,0,0 +117090,914,0,45842,0,0 +117094,920,0,45843,0,0 +117096,922,0,45844,0,0 +117097,923,0,45845,0,0 +117098,924,0,45846,0,0 +117099,925,0,45847,0,0 +117100,926,0,45848,0,0 +117101,927,0,45777,0,0 +117102,928,0,45849,0,0 +117106,934,0,45850,0,0 +117107,935,0,45851,0,0 +117108,936,0,45852,0,0 +117109,937,0,45853,0,0 +117112,940,0,45854,0,0 +117114,943,0,45855,0,0 +117115,944,0,45856,0,0 +117116,945,0,45857,0,0 +117117,948,0,45857,0,0 +117124,983,0,45858,0,0 +117127,1008,0,45859,0,0 +117128,1009,0,45860,0,0 +117129,1010,0,45861,0,0 +117130,1011,0,45862,0,0 +117134,1018,0,45863,0,0 +117148,1117,0,45864,0,0 +117149,1121,0,45865,0,0 +117153,1131,0,45866,0,0 +117157,1154,0,45796,0,0 +117158,1155,0,45867,0,0 +117160,1158,0,45868,0,0 +117161,1159,0,45869,0,0 +117162,1161,0,45870,0,0 +117163,1162,0,45871,0,0 +117164,1163,0,45872,0,0 +117167,1168,0,45873,0,0 +117168,1169,0,45874,0,0 +117169,1171,0,45875,0,0 +117170,1172,0,45876,0,0 +117171,1173,0,45877,0,0 +117178,1182,0,45878,0,0 +117179,1183,0,45879,0,0 +117182,1190,0,45880,0,0 +117184,1194,0,45881,0,0 +117185,1195,0,45882,0,0 +117186,1196,0,45883,0,0 +117187,1197,0,45884,0,0 +117188,1198,0,45885,0,0 +117189,1200,0,45886,0,0 +117190,1201,0,45887,0,0 +117191,1202,0,45888,0,0 +117192,1203,0,45889,0,0 +117193,1204,0,45890,0,0 +117196,1207,0,45891,0,0 +117199,1211,0,45892,0,0 +117201,1213,0,45893,0,0 +117202,1214,0,45894,0,0 +117203,1215,0,45895,0,0 +117204,1216,0,45896,0,0 +117206,1218,0,45897,0,0 +117207,1219,0,45898,0,0 +117208,1220,0,45899,0,0 +117217,1259,0,45901,0,0 +117221,1263,0,45902,0,0 +117222,1264,0,45903,0,0 +117223,1265,0,45904,0,0 +117224,1270,0,45905,0,0 +117225,1273,0,45906,0,0 +117227,1275,0,45805,0,0 +117228,1276,0,45907,0,0 +117229,1280,0,45908,0,0 +117230,1282,0,45909,0,0 +117233,1287,0,45910,0,0 +117235,1292,0,45911,0,0 +117238,1296,0,45912,0,0 +117239,1297,0,45913,0,0 +117240,1299,0,45914,0,0 +117241,1300,0,45915,0,0 +117242,1302,0,45916,0,0 +117243,1303,0,45808,0,0 +117244,1304,0,45917,0,0 +117245,1306,0,45918,0,0 +117248,1310,0,45919,0,0 +117249,1314,0,45920,0,0 +117251,1317,0,45921,0,0 +117252,1318,0,45922,0,0 +117259,1351,0,45923,0,0 +117262,1355,0,45924,0,0 +117266,1359,0,45925,0,0 +117267,1360,0,45926,0,0 +117270,1364,0,45927,0,0 +117271,1366,0,45928,0,0 +117272,1367,0,45929,0,0 +117273,1368,0,45930,0,0 +117274,1369,0,45931,0,0 +117275,1370,0,45932,0,0 +117276,1372,0,45924,0,0 +117277,1374,0,45933,0,0 +117278,1376,0,45934,0,0 +117279,1377,0,45935,0,0 +117280,1378,0,45936,0,0 +117281,1380,0,45937,0,0 +117283,1382,0,45938,0,0 +117284,1383,0,45939,0,0 +117285,1384,0,45940,0,0 +117286,1386,0,45941,0,0 +117287,1387,0,45942,0,0 +117288,1388,0,45943,0,0 +117289,1389,0,45944,0,0 +117290,1391,0,45945,0,0 +117291,1394,0,45946,0,0 +117292,1395,0,45710,0,0 +117293,1396,0,45947,0,0 +117297,1405,0,45948,0,0 +117298,1406,0,45949,0,0 +117303,1411,0,45950,0,0 +117304,1412,0,45951,0,0 +117305,1413,0,45952,0,0 +117306,1414,0,45953,0,0 +117307,1415,0,45954,0,0 +117308,1416,0,45939,0,0 +117309,1417,0,45955,0,0 +117310,1418,0,45956,0,0 +117311,1419,0,45957,0,0 +117312,1420,0,45958,0,0 +117313,1421,0,45959,0,0 +117314,1422,0,45960,0,0 +117315,1423,0,45961,0,0 +117316,1425,0,45962,0,0 +117317,1427,0,45963,0,0 +117318,1429,0,45905,0,0 +117319,1430,0,45964,0,0 +117320,1431,0,45965,0,0 +117321,1433,0,45966,0,0 +117323,1436,0,45967,0,0 +117324,1438,0,45968,0,0 +117325,1440,0,45969,0,0 +117327,1445,0,45970,0,0 +117328,1446,0,45971,0,0 +117330,1448,0,45972,0,0 +117335,1454,0,45973,0,0 +117336,1455,0,45974,0,0 +117337,1457,0,45975,0,0 +117338,1458,0,45976,0,0 +117339,1459,0,45977,0,0 +117340,1460,0,45978,0,0 +117341,1461,0,45979,0,0 +117344,1465,0,45980,0,0 +117347,1469,0,45981,0,0 +117349,1473,0,45982,0,0 +117354,1479,0,45983,0,0 +117355,1480,0,45984,0,0 +117356,1481,0,45985,0,0 +117357,1482,0,45986,0,0 +117358,1483,0,45987,0,0 +117359,1484,0,45988,0,0 +117360,1485,0,45989,0,0 +117361,1486,0,45990,0,0 +117363,1488,0,45991,0,0 +117364,1489,0,45992,0,0 +117367,1493,0,45993,0,0 +117368,1495,0,45994,0,0 +117369,1497,0,45995,0,0 +117370,1498,0,45996,0,0 +117371,1499,0,45997,0,0 +117373,1501,0,45998,0,0 +117374,1502,0,45999,0,0 +117375,1503,0,46000,0,0 +117376,1504,0,46001,0,0 +117377,1505,0,46002,0,0 +117378,1506,0,46003,0,0 +117379,1507,0,46004,0,0 +117380,1509,0,46005,0,0 +117381,1510,0,46006,0,0 +117382,1511,0,46007,0,0 +117383,1512,0,46008,0,0 +117384,1513,0,46009,0,0 +117385,1514,0,46010,0,0 +117386,1515,0,46011,0,0 +117387,1516,0,46012,0,0 +117391,1521,0,46013,0,0 +117392,1522,0,46014,0,0 +117393,1523,0,46015,0,0 +117399,1539,0,46016,0,0 +117400,1547,0,46017,0,0 +117401,1557,0,46018,0,0 +117402,1560,0,46019,0,0 +117403,1561,0,46020,0,0 +117404,1566,0,46021,0,0 +117407,1602,0,46022,0,0 +117408,1604,0,46023,0,0 +117409,1607,0,46024,0,0 +117410,1608,0,46025,0,0 +117411,1613,0,46026,0,0 +117412,1624,0,46027,0,0 +117413,1625,0,46028,0,0 +117416,1639,0,46029,0,0 +117417,1640,0,46030,0,0 +117421,1659,0,46031,0,0 +117422,1664,0,46032,0,0 +117423,1677,0,46033,0,0 +117424,1678,0,46034,0,0 +117425,1679,0,46035,0,0 +117426,1680,0,46036,0,0 +117445,1715,0,46033,0,0 +117446,1716,0,46037,0,0 +117447,1717,0,45991,0,0 +117448,1718,0,46038,0,0 +117449,1720,0,46039,0,0 +117450,1721,0,46040,0,0 +117451,1722,0,46041,0,0 +117453,1726,0,46042,0,0 +117454,1727,0,46043,0,0 +117455,1728,0,46044,0,0 +117457,1730,0,46045,0,0 +117458,1731,0,46046,0,0 +117459,1732,0,46047,0,0 +117460,1733,0,46048,0,0 +117461,1734,0,46049,0,0 +117462,1735,0,46050,0,0 +117463,1737,0,46051,0,0 +117464,1738,0,46045,0,0 +117465,1739,0,46046,0,0 +117466,1740,0,46047,0,0 +117467,1741,0,46052,0,0 +117468,1742,0,46049,0,0 +117469,1743,0,46050,0,0 +117470,1744,0,46053,0,0 +117471,1745,0,46051,0,0 +117472,1746,0,46045,0,0 +117473,1747,0,46046,0,0 +117474,1748,0,46047,0,0 +117475,1749,0,46054,0,0 +117476,1750,0,46049,0,0 +117477,1751,0,46050,0,0 +117478,1752,0,46053,0,0 +117479,1753,0,46051,0,0 +117480,1754,0,46045,0,0 +117481,1755,0,46046,0,0 +117482,1756,0,46047,0,0 +117483,1757,0,46055,0,0 +117484,1758,0,46049,0,0 +117485,1759,0,46050,0,0 +117486,1760,0,46053,0,0 +117487,1761,0,46051,0,0 +117488,1764,0,46056,0,0 +117489,1766,0,46057,0,0 +117490,1767,0,46058,0,0 +117491,1768,0,46059,0,0 +117492,1769,0,46060,0,0 +117493,1770,0,46061,0,0 +117494,1772,0,46062,0,0 +117495,1774,0,46063,0,0 +117496,1775,0,46064,0,0 +117497,1776,0,46065,0,0 +117498,1777,0,46066,0,0 +117499,1778,0,46067,0,0 +117500,1780,0,46068,0,0 +117501,1782,0,46069,0,0 +117502,1783,0,46070,0,0 +117503,1784,0,46071,0,0 +117504,1785,0,46072,0,0 +117505,1786,0,46073,0,0 +117506,1787,0,46074,0,0 +117507,1788,0,46075,0,0 +117508,1789,0,46076,0,0 +117509,1790,0,46077,0,0 +117510,1791,0,46078,0,0 +117511,1792,0,46079,0,0 +117512,1793,0,45836,0,0 +117513,1794,0,46080,0,0 +117514,1795,0,46081,0,0 +117515,1796,0,46082,0,0 +117516,1797,0,46083,0,0 +117517,1798,0,45959,0,0 +117518,1799,0,46084,0,0 +117519,1800,0,46085,0,0 +117520,1801,0,46086,0,0 +117521,1802,0,46087,0,0 +117522,1803,0,46088,0,0 +117523,1804,0,46089,0,0 +117524,1805,0,46090,0,0 +117525,1806,0,46091,0,0 +117526,1807,0,46092,0,0 +117527,1808,0,46093,0,0 +117528,1809,0,46094,0,0 +117529,1810,0,46095,0,0 +117530,1811,0,46096,0,0 +117531,1812,0,46097,0,0 +117532,1813,0,46098,0,0 +117533,1814,0,46099,0,0 +117534,1815,0,45704,0,0 +117535,1816,0,45939,0,0 +117536,1817,0,46100,0,0 +117537,1818,0,46101,0,0 +117538,1819,0,45773,0,0 +117539,1820,0,46102,0,0 +117540,1821,0,46103,0,0 +117541,1822,0,46104,0,0 +117542,1823,0,46105,0,0 +117543,1824,0,46106,0,0 +117544,1825,0,46107,0,0 +117545,1826,0,46108,0,0 +117546,1827,0,45911,0,0 +117547,1828,0,46109,0,0 +117548,1829,0,46110,0,0 +117549,1830,0,46111,0,0 +117550,1831,0,46112,0,0 +117551,1832,0,46113,0,0 +117552,1835,0,46114,0,0 +117553,1836,0,46115,0,0 +117554,1839,0,46116,0,0 +117555,1840,0,46117,0,0 +117556,1843,0,46118,0,0 +117557,1844,0,46119,0,0 +117558,1845,0,46045,0,0 +117559,1846,0,46120,0,0 +117560,1849,0,46121,0,0 +117561,1850,0,46122,0,0 +117563,1852,0,46123,0,0 +117564,1853,0,45796,0,0 +117566,1893,0,45773,0,0 +117568,1895,0,45940,0,0 +117569,1896,0,46124,0,0 +117570,1897,0,46125,0,0 +117571,1899,0,45859,0,0 +117572,1900,0,45809,0,0 +117573,1901,0,45944,0,0 +117574,1902,0,46126,0,0 +117575,1903,0,46127,0,0 +117576,1904,0,45939,0,0 +117577,1905,0,46128,0,0 +117578,1906,0,45876,0,0 +117579,1907,0,46129,0,0 +117580,1908,0,45703,0,0 +117581,1909,0,46130,0,0 +117582,1910,0,45773,0,0 +117583,1911,0,46131,0,0 +117584,1913,0,46132,0,0 +117585,1917,0,46133,0,0 +117588,1925,0,46134,0,0 +117589,1926,0,46135,0,0 +117590,1927,0,46136,0,0 +117591,1928,0,46137,0,0 +117592,1929,0,46138,0,0 +117593,1930,0,46139,0,0 +117595,1933,0,46140,0,0 +117596,1934,0,46141,0,0 +117597,1935,0,46142,0,0 +117598,1936,0,46143,0,0 +117599,1937,0,46144,0,0 +117600,1938,0,46145,0,0 +117604,1943,0,45806,0,0 +117605,1944,0,46146,0,0 +117606,1945,0,46147,0,0 +117608,1951,0,46148,0,0 +117609,1955,0,46149,0,0 +117611,1957,0,46150,0,0 +117612,1958,0,46151,0,0 +117613,1959,0,45773,0,0 +117614,1961,0,46152,0,0 +117616,1965,0,46153,0,0 +117622,1974,0,46154,0,0 +117623,1975,0,46155,0,0 +117624,1976,0,46156,0,0 +117625,1978,0,46157,0,0 +117626,1979,0,46158,0,0 +117628,1981,0,46159,0,0 +117629,1982,0,46160,0,0 +117630,1983,0,46161,0,0 +117631,1984,0,45887,0,0 +117632,1985,0,46162,0,0 +117633,1986,0,46163,0,0 +117635,1988,0,46164,0,0 +117636,1990,0,46165,0,0 +117637,1991,0,45882,0,0 +117638,1992,0,46166,0,0 +117640,1994,0,46167,0,0 +117642,1997,0,46168,0,0 +117643,1998,0,46169,0,0 +117644,2000,0,46170,0,0 +117650,2011,0,46171,0,0 +117651,2013,0,46172,0,0 +117652,2014,0,46173,0,0 +117653,2015,0,46174,0,0 +117654,2016,0,45842,0,0 +117655,2017,0,46175,0,0 +117656,2018,0,46176,0,0 +117657,2020,0,45834,0,0 +117658,2021,0,46177,0,0 +117659,2023,0,46178,0,0 +117660,2024,0,46179,0,0 +117661,2025,0,46180,0,0 +117662,2026,0,46181,0,0 +117663,2027,0,46110,0,0 +117664,2028,0,46182,0,0 +117665,2029,0,46183,0,0 +117666,2030,0,46184,0,0 +117667,2032,0,46185,0,0 +117668,2033,0,46186,0,0 +117669,2034,0,46187,0,0 +117670,2035,0,46188,0,0 +117671,2036,0,46189,0,0 +117672,2037,0,46190,0,0 +117674,2040,0,46191,0,0 +117675,2041,0,46192,0,0 +117676,2042,0,46193,0,0 +117678,2044,0,46194,0,0 +117679,2046,0,45857,0,0 +117680,2047,0,46195,0,0 +117681,2048,0,46196,0,0 +117682,2051,0,46197,0,0 +117683,2052,0,46197,0,0 +117684,2053,0,46198,0,0 +117685,2054,0,46199,0,0 +117686,2055,0,46126,0,0 +117687,2056,0,46196,0,0 +117688,2057,0,46200,0,0 +117689,2058,0,46201,0,0 +117690,2059,0,46202,0,0 +117691,2064,0,46203,0,0 +117692,2065,0,46204,0,0 +117693,2066,0,46205,0,0 +117694,2067,0,46206,0,0 +117695,2069,0,46207,0,0 +117697,2072,0,46208,0,0 +117698,2073,0,46209,0,0 +117699,2074,0,46210,0,0 +117700,2075,0,46135,0,0 +117701,2077,0,46211,0,0 +117702,2078,0,46212,0,0 +117703,2079,0,46213,0,0 +117704,2080,0,46214,0,0 +117705,2081,0,45876,0,0 +117707,2084,0,46215,0,0 +117709,2087,0,46216,0,0 +117710,2088,0,46217,0,0 +117711,2089,0,46218,0,0 +117713,2092,0,46219,0,0 +117714,2098,0,46220,0,0 +117715,2099,0,46221,0,0 +117716,2100,0,46222,0,0 +117719,2105,0,46224,0,0 +117720,2108,0,46225,0,0 +117721,2109,0,46051,0,0 +117722,2110,0,46226,0,0 +117723,2112,0,46227,0,0 +117725,2114,0,46228,0,0 +117726,2117,0,46229,0,0 +117727,2119,0,46230,0,0 +117728,2120,0,46231,0,0 +117729,2121,0,46232,0,0 +117730,2122,0,46233,0,0 +117731,2123,0,46234,0,0 +117732,2124,0,46235,0,0 +117733,2125,0,46236,0,0 +117734,2126,0,46237,0,0 +117735,2127,0,46238,0,0 +117736,2129,0,46239,0,0 +117737,2130,0,45946,0,0 +117738,2131,0,46240,0,0 +117739,2132,0,46241,0,0 +117740,2134,0,46242,0,0 +117742,2137,0,46243,0,0 +117743,2138,0,46244,0,0 +117744,2139,0,46245,0,0 +117745,2140,0,46246,0,0 +117746,2141,0,46247,0,0 +117747,2142,0,46248,0,0 +117748,2143,0,46249,0,0 +117749,2144,0,46250,0,0 +117750,2145,0,46251,0,0 +117751,2146,0,46252,0,0 +117752,2147,0,46253,0,0 +117753,2148,0,46254,0,0 +117754,2149,0,46255,0,0 +117755,2150,0,46256,0,0 +117756,2151,0,46257,0,0 +117757,2152,0,46258,0,0 +117758,2153,0,46033,0,0 +117760,2156,0,46259,0,0 +117761,2158,0,46260,0,0 +117762,2159,0,46261,0,0 +117763,2160,0,46262,0,0 +117766,2163,0,46263,0,0 +117767,2164,0,46264,0,0 +117768,2165,0,45924,0,0 +117769,2166,0,46265,0,0 +117770,2167,0,46266,0,0 +117771,2168,0,46267,0,0 +117772,2169,0,46268,0,0 +117773,2172,0,46269,0,0 +117774,2173,0,45956,0,0 +117775,2175,0,46270,0,0 +117776,2176,0,46271,0,0 +117777,2177,0,46272,0,0 +117778,2178,0,46273,0,0 +117779,2179,0,46274,0,0 +117780,2180,0,46275,0,0 +117781,2181,0,46276,0,0 +117782,2182,0,46277,0,0 +117783,2183,0,46278,0,0 +117784,2184,0,46219,0,0 +117785,2186,0,46116,0,0 +117788,2189,0,46279,0,0 +117789,2194,0,46280,0,0 +117790,2195,0,46281,0,0 +117791,2196,0,46282,0,0 +117792,2197,0,46283,0,0 +117793,2198,0,46284,0,0 +117794,2199,0,46285,0,0 +117795,2200,0,46286,0,0 +117796,2201,0,46287,0,0 +117797,2202,0,46288,0,0 +117798,2203,0,46289,0,0 +117799,2204,0,46290,0,0 +117800,2205,0,46291,0,0 +117801,2207,0,46292,0,0 +117802,2208,0,46293,0,0 +117803,2209,0,46294,0,0 +117804,2210,0,46295,0,0 +117805,2211,0,46296,0,0 +117806,2212,0,46297,0,0 +117807,2213,0,46197,0,0 +117808,2214,0,46298,0,0 +117809,2215,0,46299,0,0 +117810,2216,0,46300,0,0 +117811,2217,0,46301,0,0 +117812,2218,0,46302,0,0 +117813,2219,0,46303,0,0 +117814,2220,0,46304,0,0 +117815,2221,0,46305,0,0 +117816,2222,0,46162,0,0 +117818,2224,0,46281,0,0 +117819,2225,0,46306,0,0 +117820,2226,0,46307,0,0 +117821,2227,0,46308,0,0 +117822,2230,0,46309,0,0 +117823,2231,0,46310,0,0 +117824,2232,0,46311,0,0 +117825,2233,0,46312,0,0 +117826,2234,0,46313,0,0 +117827,2235,0,46314,0,0 +117828,2236,0,46315,0,0 +117829,2237,0,46316,0,0 +117830,2238,0,46317,0,0 +117832,2240,0,46318,0,0 +117833,2241,0,46319,0,0 +117834,2243,0,46320,0,0 +117835,2244,0,46321,0,0 +117836,2245,0,46322,0,0 +117838,2248,0,46323,0,0 +117839,2249,0,46152,0,0 +117843,2254,0,46324,0,0 +117844,2256,0,46325,0,0 +117845,2257,0,46326,0,0 +117846,2258,0,45870,0,0 +117847,2259,0,46327,0,0 +117848,2260,0,46328,0,0 +117850,2263,0,46329,0,0 +117851,2264,0,46330,0,0 +117852,2265,0,46331,0,0 +117853,2266,0,46332,0,0 +117854,2267,0,45810,0,0 +117855,2268,0,46333,0,0 +117856,2271,0,46334,0,0 +117857,2273,0,46335,0,0 +117858,2274,0,45760,0,0 +117859,2276,0,46336,0,0 +117860,2277,0,46337,0,0 +117861,2278,0,46338,0,0 +117862,2280,0,46339,0,0 +117863,2281,0,46331,0,0 +117864,2282,0,46340,0,0 +117865,2283,0,46341,0,0 +117866,2284,0,45905,0,0 +117871,2291,0,46342,0,0 +117872,2292,0,46343,0,0 +117875,2299,0,46344,0,0 +117876,2300,0,46345,0,0 +117877,2301,0,46346,0,0 +117878,2302,0,45801,0,0 +117879,2303,0,45803,0,0 +117881,2307,0,46347,0,0 +117882,2308,0,46348,0,0 +117883,2309,0,46349,0,0 +117884,2310,0,46350,0,0 +117885,2311,0,46351,0,0 +117886,2312,0,46352,0,0 +117888,2314,0,46353,0,0 +117889,2315,0,46354,0,0 +117890,2316,0,46318,0,0 +117891,2317,0,46355,0,0 +117898,2326,0,46356,0,0 +117899,2327,0,46357,0,0 +117900,2361,0,46358,0,0 +117901,2362,0,46359,0,0 +117902,2364,0,46360,0,0 +117903,2366,0,46361,0,0 +117904,2367,0,46362,0,0 +117905,2369,0,46363,0,0 +117906,2370,0,46364,0,0 +117907,2371,0,46365,0,0 +117908,2372,0,46366,0,0 +117909,2373,0,46367,0,0 +117910,2374,0,46368,0,0 +117911,2375,0,46369,0,0 +117912,2376,0,46370,0,0 +117914,2379,0,46051,0,0 +117915,2380,0,46045,0,0 +117916,2381,0,46050,0,0 +117918,2383,0,46046,0,0 +117919,2384,0,46047,0,0 +117920,2385,0,46049,0,0 +117921,2386,0,46371,0,0 +117922,2387,0,46045,0,0 +117923,2388,0,46265,0,0 +117924,2389,0,46372,0,0 +117925,2390,0,46373,0,0 +117926,2391,0,45972,0,0 +117927,2392,0,46374,0,0 +117928,2393,0,46045,0,0 +117929,2394,0,46050,0,0 +117930,2395,0,46046,0,0 +117931,2396,0,46047,0,0 +117932,2397,0,46375,0,0 +117933,2398,0,45842,0,0 +117934,2399,0,46045,0,0 +117935,2400,0,46265,0,0 +117936,2401,0,46372,0,0 +117937,2402,0,46373,0,0 +117938,2403,0,45972,0,0 +117943,2410,0,45876,0,0 +117946,2417,0,46376,0,0 +117947,2418,0,46377,0,0 +117948,2419,0,46378,0,0 +117949,2420,0,46379,0,0 +117950,2421,0,46380,0,0 +117951,2422,0,46381,0,0 +117952,2423,0,46382,0,0 +117953,2424,0,46383,0,0 +117954,2425,0,46384,0,0 +117955,2426,0,46385,0,0 +117956,2427,0,46386,0,0 +117957,2428,0,46387,0,0 +117958,2429,0,46388,0,0 +117959,2431,0,46389,0,0 +117960,2432,0,46390,0,0 +117961,2434,0,46391,0,0 +117962,2435,0,46392,0,0 +117963,2437,0,46393,0,0 +117964,2438,0,46394,0,0 +117965,2440,0,46395,0,0 +117966,2445,0,46396,0,0 +117967,2446,0,46397,0,0 +117969,2448,0,46398,0,0 +117972,2451,0,46399,0,0 +117982,2463,0,46400,0,0 +117983,2464,0,46401,0,0 +117984,2465,0,46402,0,0 +117986,2467,0,46403,0,0 +117987,2468,0,46404,0,0 +117988,2469,0,46405,0,0 +117989,2470,0,46406,0,0 +117990,2471,0,46407,0,0 +117991,2472,0,46408,0,0 +117992,2473,0,46409,0,0 +117993,2474,0,46410,0,0 +117994,2475,0,46411,0,0 +117997,2479,0,46412,0,0 +117998,2480,0,46413,0,0 +117999,2488,0,45702,0,0 +118000,2489,0,46161,0,0 +118001,2490,0,45939,0,0 +118002,2491,0,46414,0,0 +118003,2492,0,46415,0,0 +118004,2493,0,46416,0,0 +118005,2494,0,46417,0,0 +118006,2495,0,46418,0,0 +118007,2504,0,46419,0,0 +118008,2505,0,46420,0,0 +118009,2506,0,46421,0,0 +118010,2507,0,46422,0,0 +118011,2508,0,46423,0,0 +118012,2509,0,46424,0,0 +118013,2510,0,46423,0,0 +118014,2511,0,46425,0,0 +118015,2512,0,46426,0,0 +118016,2515,0,46426,0,0 +118017,2516,0,46427,0,0 +118018,2519,0,46427,0,0 +118019,2520,0,46428,0,0 +118020,2521,0,46429,0,0 +118021,2522,0,46430,0,0 +118022,2523,0,46431,0,0 +118023,2524,0,46432,0,0 +118024,2525,0,46433,0,0 +118025,2526,0,46434,0,0 +118026,2527,0,46435,0,0 +118027,2528,0,46253,0,0 +118028,2529,0,46436,0,0 +118029,2530,0,46437,0,0 +118030,2531,0,46438,0,0 +118031,2532,0,46439,0,0 +118032,2533,0,46440,0,0 +118033,2534,0,46441,0,0 +118034,2535,0,46442,0,0 +118036,2543,0,46079,0,0 +118037,2545,0,46443,0,0 +118038,2546,0,46444,0,0 +118039,2547,0,46049,0,0 +118041,2549,0,46445,0,0 +118042,2550,0,46419,0,0 +118043,2551,0,46446,0,0 +118044,2552,0,46424,0,0 +118048,2557,0,46447,0,0 +118049,2558,0,46448,0,0 +118050,2559,0,46449,0,0 +118053,2562,0,46450,0,0 +118055,2564,0,46451,0,0 +118056,2565,0,46452,0,0 +118057,2566,0,46453,0,0 +118058,2567,0,46454,0,0 +118059,2568,0,46455,0,0 +118060,2569,0,46456,0,0 +118061,2570,0,46057,0,0 +118062,2571,0,46457,0,0 +118063,2572,0,46458,0,0 +118064,2575,0,46459,0,0 +118065,2576,0,46460,0,0 +118066,2577,0,46461,0,0 +118067,2578,0,46462,0,0 +118068,2579,0,46463,0,0 +118069,2580,0,46464,0,0 +118071,2582,0,46465,0,0 +118072,2583,0,46466,0,0 +118073,2584,0,46467,0,0 +118074,2585,0,46468,0,0 +118075,2586,0,46469,0,0 +118076,2587,0,46470,0,0 +118095,2612,0,46471,0,0 +118096,2613,0,46472,0,0 +118097,2614,0,46473,0,0 +118098,2615,0,46474,0,0 +118099,2616,0,46475,0,0 +118100,2617,0,46476,0,0 +118101,2618,0,46477,0,0 +118103,2620,0,46478,0,0 +118104,2621,0,46479,0,0 +118105,2622,0,46480,0,0 +118106,2623,0,46481,0,0 +118107,2624,0,46482,0,0 +118111,2632,0,46483,0,0 +118114,2635,0,46045,0,0 +118119,2642,0,46046,0,0 +118120,2643,0,46047,0,0 +118121,2644,0,46484,0,0 +118122,2645,0,46049,0,0 +118123,2646,0,46050,0,0 +118124,2648,0,46051,0,0 +118125,2649,0,46045,0,0 +118126,2650,0,46046,0,0 +118127,2651,0,46047,0,0 +118128,2652,0,46485,0,0 +118129,2653,0,46049,0,0 +118130,2654,0,46050,0,0 +118131,2656,0,46051,0,0 +118139,2664,0,46487,0,0 +118163,2690,0,46488,0,0 +118164,2691,0,46046,0,0 +118166,2694,0,46489,0,0 +118167,2695,0,45946,0,0 +118175,2703,0,46490,0,0 +118176,2704,0,46491,0,0 +118177,2705,0,46492,0,0 +118178,2706,0,46493,0,0 +118179,2707,0,46494,0,0 +118180,2708,0,46495,0,0 +118181,2709,0,46496,0,0 +118182,2710,0,46450,0,0 +118183,2711,0,45772,0,0 +118186,2714,0,46497,0,0 +118187,2715,0,46498,0,0 +118188,2716,0,46499,0,0 +118189,2717,0,46500,0,0 +118190,2718,0,46501,0,0 +118193,2721,0,46502,0,0 +118212,2754,0,46503,0,0 +118221,2763,0,46243,0,0 +118222,2764,0,46133,0,0 +118223,2765,0,46504,0,0 +118224,2766,0,46505,0,0 +118229,2773,0,46506,0,0 +118230,2774,0,46507,0,0 +118233,2777,0,46508,0,0 +118234,2778,0,46507,0,0 +118236,2780,0,46509,0,0 +118237,2781,0,46510,0,0 +118238,2782,0,46511,0,0 +118239,2783,0,46512,0,0 +118241,2785,0,46513,0,0 +118242,2786,0,46514,0,0 +118243,2787,0,46515,0,0 +118250,2800,0,46516,0,0 +118251,2801,0,46517,0,0 +118253,2805,0,46518,0,0 +118255,2807,0,46519,0,0 +118256,2809,0,46132,0,0 +118257,2810,0,46520,0,0 +118258,2813,0,46521,0,0 +118259,2815,0,46522,0,0 +118260,2816,0,46523,0,0 +118261,2817,0,46524,0,0 +118262,2818,0,46525,0,0 +118263,2819,0,46526,0,0 +118265,2821,0,46527,0,0 +118266,2822,0,46528,0,0 +118267,2823,0,46529,0,0 +118268,2824,0,46530,0,0 +118269,2825,0,46531,0,0 +118270,2827,0,45911,0,0 +118287,2844,0,45847,0,0 +118288,2845,0,46532,0,0 +118290,2847,0,46533,0,0 +118291,2848,0,46534,0,0 +118292,2849,0,46535,0,0 +118293,2850,0,45940,0,0 +118294,2851,0,46536,0,0 +118295,2852,0,46537,0,0 +118296,2853,0,46538,0,0 +118297,2854,0,46539,0,0 +118300,2857,0,46540,0,0 +118305,2864,0,46541,0,0 +118306,2865,0,46542,0,0 +118307,2866,0,46543,0,0 +118308,2867,0,46538,0,0 +118309,2868,0,46544,0,0 +118310,2869,0,46545,0,0 +118311,2870,0,46546,0,0 +118317,2877,0,46547,0,0 +118318,2878,0,46548,0,0 +118319,2879,0,46549,0,0 +118324,2884,0,46550,0,0 +118335,2898,0,46551,0,0 +118336,2899,0,46552,0,0 +118337,2900,0,46553,0,0 +118338,2901,0,45767,0,0 +118339,2902,0,46554,0,0 +118340,2903,0,46555,0,0 +118341,2904,0,46556,0,0 +118342,2905,0,46077,0,0 +118343,2906,0,46443,0,0 +118344,2907,0,46557,0,0 +118345,2908,0,46558,0,0 +118347,2910,0,46559,0,0 +118348,2911,0,46560,0,0 +118349,2912,0,46561,0,0 +118350,2913,0,46562,0,0 +118351,2915,0,46563,0,0 +118352,2916,0,46564,0,0 +118368,2941,0,46565,0,0 +118369,2942,0,46566,0,0 +118370,2943,0,46567,0,0 +118371,2944,0,46568,0,0 +118374,2949,0,46571,0,0 +118375,2950,0,46572,0,0 +118377,2952,0,46573,0,0 +118378,2953,0,46574,0,0 +118379,2954,0,46575,0,0 +118380,2955,0,46576,0,0 +118382,2957,0,46577,0,0 +118383,2958,0,46578,0,0 +118384,2959,0,46579,0,0 +118385,2960,0,46580,0,0 +118386,2961,0,46581,0,0 +118387,2962,0,46582,0,0 +118388,2963,0,46583,0,0 +118389,2964,0,46584,0,0 +118390,2965,0,46585,0,0 +118391,2966,0,46586,0,0 +118392,2967,0,46587,0,0 +118393,2968,0,46588,0,0 +118394,2969,0,46589,0,0 +118395,2970,0,46590,0,0 +118396,2971,0,46591,0,0 +118397,2972,0,46592,0,0 +118398,2973,0,46593,0,0 +118399,2974,0,46594,0,0 +118400,2975,0,46595,0,0 +118401,2976,0,46596,0,0 +118402,2977,0,45842,0,0 +118403,2978,0,46265,0,0 +118404,2979,0,46372,0,0 +118405,2980,0,46597,0,0 +118406,2981,0,46598,0,0 +118407,2982,0,46599,0,0 +118408,2983,0,46600,0,0 +118409,2984,0,46601,0,0 +118410,2985,0,46602,0,0 +118411,2986,0,46603,0,0 +118412,2987,0,46604,0,0 +118413,2988,0,46605,0,0 +118414,2989,0,46606,0,0 +118415,2990,0,46607,0,0 +118416,2991,0,46608,0,0 +118417,2992,0,46609,0,0 +118422,3000,0,46610,0,0 +118423,3008,0,46348,0,0 +118425,3011,0,46611,0,0 +118431,3018,0,46612,0,0 +118432,3019,0,46613,0,0 +118433,3020,0,46614,0,0 +118434,3021,0,46615,0,0 +118435,3022,0,46616,0,0 +118436,3023,0,46617,0,0 +118437,3024,0,46618,0,0 +118438,3025,0,46619,0,0 +118439,3026,0,46620,0,0 +118440,3027,0,46621,0,0 +118441,3028,0,46419,0,0 +118442,3030,0,46426,0,0 +118443,3033,0,46427,0,0 +118445,3036,0,46622,0,0 +118446,3037,0,46623,0,0 +118447,3038,0,46508,0,0 +118448,3039,0,46624,0,0 +118449,3040,0,46625,0,0 +118450,3041,0,46626,0,0 +118451,3042,0,46627,0,0 +118452,3043,0,46426,0,0 +118453,3045,0,46628,0,0 +118454,3047,0,46629,0,0 +118455,3048,0,46630,0,0 +118456,3049,0,46631,0,0 +118457,3053,0,46632,0,0 +118458,3055,0,46633,0,0 +118459,3056,0,46634,0,0 +118460,3057,0,46635,0,0 +118461,3058,0,46636,0,0 +118462,3065,0,46637,0,0 +118463,3066,0,45746,0,0 +118464,3067,0,45744,0,0 +118465,3069,0,46638,0,0 +118466,3070,0,46639,0,0 +118467,3071,0,46640,0,0 +118468,3072,0,46641,0,0 +118469,3073,0,46642,0,0 +118470,3074,0,46643,0,0 +118471,3075,0,45872,0,0 +118472,3076,0,46644,0,0 +118473,3078,0,46645,0,0 +118474,3079,0,46510,0,0 +118483,3103,0,46646,0,0 +118495,3145,0,46654,0,0 +118496,3151,0,46632,0,0 +118497,3152,0,46655,0,0 +118498,3153,0,46656,0,0 +118499,3154,0,46657,0,0 +118503,3158,0,46117,0,0 +118504,3160,0,46658,0,0 +118505,3161,0,46659,0,0 +118510,3166,0,46660,0,0 +118527,3184,0,46661,0,0 +118528,3185,0,46662,0,0 +118529,3186,0,46663,0,0 +118530,3187,0,46664,0,0 +118531,3188,0,46665,0,0 +118532,3189,0,46666,0,0 +118533,3190,0,45884,0,0 +118534,3191,0,46667,0,0 +118535,3192,0,46668,0,0 +118536,3193,0,46669,0,0 +118537,3194,0,46670,0,0 +118538,3195,0,46671,0,0 +118539,3196,0,46672,0,0 +118540,3197,0,46673,0,0 +118541,3198,0,46674,0,0 +118542,3199,0,46675,0,0 +118543,3200,0,46676,0,0 +118544,3201,0,46677,0,0 +118545,3202,0,46678,0,0 +118546,3203,0,46679,0,0 +118547,3204,0,46680,0,0 +118548,3205,0,46681,0,0 +118549,3206,0,46682,0,0 +118550,3207,0,46683,0,0 +118551,3208,0,46684,0,0 +118552,3209,0,46685,0,0 +118553,3210,0,46686,0,0 +118554,3211,0,46687,0,0 +118555,3212,0,46688,0,0 +118556,3213,0,46373,0,0 +118557,3214,0,46689,0,0 +118558,3216,0,46690,0,0 +118559,3217,0,46691,0,0 +118562,3222,0,46692,0,0 +118563,3223,0,46693,0,0 +118564,3224,0,46694,0,0 +118565,3225,0,46243,0,0 +118566,3227,0,46695,0,0 +118567,3228,0,46696,0,0 +118568,3229,0,46697,0,0 +118569,3230,0,46698,0,0 +118570,3231,0,46699,0,0 +118591,3260,0,46700,0,0 +118592,3261,0,46701,0,0 +118593,3262,0,46702,0,0 +118594,3263,0,46703,0,0 +118598,3267,0,46704,0,0 +118599,3268,0,46281,0,0 +118600,3269,0,46705,0,0 +118601,3270,0,46706,0,0 +118602,3272,0,46707,0,0 +118603,3273,0,46551,0,0 +118604,3274,0,46708,0,0 +118605,3275,0,46709,0,0 +118606,3276,0,46710,0,0 +118607,3277,0,46711,0,0 +118608,3278,0,46321,0,0 +118609,3279,0,46712,0,0 +118610,3280,0,46713,0,0 +118611,3281,0,46714,0,0 +118612,3282,0,46715,0,0 +118613,3283,0,46716,0,0 +118614,3284,0,46717,0,0 +118615,3285,0,46676,0,0 +118616,3286,0,46718,0,0 +118617,3287,0,46719,0,0 +118618,3288,0,46720,0,0 +118619,3289,0,46721,0,0 +118620,3290,0,46722,0,0 +118621,3291,0,46723,0,0 +118622,3292,0,46724,0,0 +118623,3293,0,46183,0,0 +118624,3294,0,45946,0,0 +118625,3295,0,45940,0,0 +118626,3296,0,46219,0,0 +118631,3302,0,46725,0,0 +118632,3303,0,46726,0,0 +118633,3304,0,46727,0,0 +118634,3305,0,46728,0,0 +118635,3306,0,46729,0,0 +118636,3307,0,46730,0,0 +118637,3308,0,46731,0,0 +118638,3309,0,46732,0,0 +118639,3310,0,46733,0,0 +118640,3311,0,46734,0,0 +118641,3312,0,46735,0,0 +118642,3313,0,46736,0,0 +118643,3314,0,46737,0,0 +118644,3315,0,46738,0,0 +118648,3319,0,45809,0,0 +118649,3320,0,46739,0,0 +118650,3321,0,46062,0,0 +118651,3322,0,46740,0,0 +118652,3323,0,46741,0,0 +118653,3324,0,46742,0,0 +118654,3325,0,46743,0,0 +118655,3326,0,46744,0,0 +118656,3327,0,46745,0,0 +118657,3328,0,46746,0,0 +118658,3329,0,45946,0,0 +118659,3330,0,46747,0,0 +118660,3331,0,46748,0,0 +118661,3332,0,46149,0,0 +118662,3334,0,45882,0,0 +118663,3335,0,46749,0,0 +118664,3336,0,46332,0,0 +118668,3341,0,45808,0,0 +118669,3342,0,46750,0,0 +118671,3344,0,46751,0,0 +118672,3345,0,46752,0,0 +118673,3346,0,45882,0,0 +118677,3350,0,46151,0,0 +118678,3351,0,46753,0,0 +118686,3359,0,45946,0,0 +118687,3360,0,46754,0,0 +118688,3361,0,45891,0,0 +118689,3362,0,46749,0,0 +118690,3363,0,46755,0,0 +118691,3364,0,46756,0,0 +118692,3365,0,46757,0,0 +118693,3366,0,46517,0,0 +118694,3367,0,45989,0,0 +118695,3368,0,46758,0,0 +118697,3370,0,46759,0,0 +118700,3373,0,46760,0,0 +118701,3374,0,46761,0,0 +118702,3375,0,46762,0,0 +118703,3376,0,46763,0,0 +118704,3377,0,46764,0,0 +118705,3378,0,46765,0,0 +118706,3379,0,46766,0,0 +118707,3380,0,46767,0,0 +118708,3381,0,46768,0,0 +118719,3392,0,46769,0,0 +118725,3398,0,46770,0,0 +118727,3400,0,45845,0,0 +118739,3413,0,46771,0,0 +118740,3414,0,46534,0,0 +118741,3415,0,46772,0,0 +118742,3416,0,46747,0,0 +118743,3417,0,46773,0,0 +118745,3419,0,46496,0,0 +118746,3420,0,46774,0,0 +118747,3421,0,46495,0,0 +118748,3422,0,46775,0,0 +118749,3423,0,46776,0,0 +118750,3424,0,46777,0,0 +118752,3426,0,46778,0,0 +118753,3427,0,46779,0,0 +118754,3428,0,46470,0,0 +118755,3429,0,46780,0,0 +118756,3430,0,46781,0,0 +118757,3431,0,46782,0,0 +118758,3432,0,46783,0,0 +118759,3433,0,46784,0,0 +118761,3435,0,46785,0,0 +118762,3437,0,46116,0,0 +118763,3439,0,46786,0,0 +118764,3440,0,46787,0,0 +118765,3442,0,46788,0,0 +118766,3443,0,45939,0,0 +118767,3444,0,46789,0,0 +118768,3445,0,46790,0,0 +118769,3446,0,46791,0,0 +118770,3447,0,46792,0,0 +118772,3449,0,46793,0,0 +118773,3450,0,46794,0,0 +118774,3451,0,46795,0,0 +118775,3452,0,46796,0,0 +118776,3453,0,46797,0,0 +118777,3454,0,46798,0,0 +118778,3455,0,46799,0,0 +118780,3457,0,46800,0,0 +118781,3458,0,46801,0,0 +118783,3461,0,46802,0,0 +118784,3462,0,46803,0,0 +118786,3464,0,46426,0,0 +118787,3465,0,46427,0,0 +118791,3469,0,46805,0,0 +118793,3471,0,46806,0,0 +118794,3472,0,46807,0,0 +118795,3473,0,46808,0,0 +118796,3474,0,46809,0,0 +118797,3475,0,46810,0,0 +118801,3479,0,46811,0,0 +118802,3480,0,46812,0,0 +118803,3481,0,46813,0,0 +118804,3482,0,46814,0,0 +118805,3483,0,46815,0,0 +118806,3484,0,46816,0,0 +118807,3485,0,46817,0,0 +118809,3487,0,46818,0,0 +118810,3488,0,46819,0,0 +118811,3489,0,46820,0,0 +118812,3490,0,46505,0,0 +118813,3491,0,46821,0,0 +118814,3492,0,46822,0,0 +118815,3493,0,46823,0,0 +118816,3494,0,46824,0,0 +118828,3511,0,46825,0,0 +118837,3528,0,46826,0,0 +118840,3532,0,46038,0,0 +118841,3533,0,46827,0,0 +118842,3534,0,46828,0,0 +118843,3535,0,46829,0,0 +118844,3537,0,46830,0,0 +118845,3539,0,46831,0,0 +118846,3541,0,46832,0,0 +118847,3543,0,46833,0,0 +118848,3545,0,46834,0,0 +118849,3547,0,46835,0,0 +118850,3548,0,46836,0,0 +118851,3549,0,46837,0,0 +118857,3555,0,46838,0,0 +118858,3556,0,46839,0,0 +118859,3557,0,46840,0,0 +118860,3558,0,46841,0,0 +118861,3559,0,46842,0,0 +118862,3560,0,46843,0,0 +118863,3561,0,46844,0,0 +118864,3562,0,46845,0,0 +118865,3563,0,46846,0,0 +118867,3565,0,46847,0,0 +118868,3566,0,46848,0,0 +118869,3567,0,46849,0,0 +118870,3569,0,46850,0,0 +118871,3570,0,45938,0,0 +118872,3571,0,46851,0,0 +118873,3572,0,46103,0,0 +118879,3578,0,46853,0,0 +118881,3581,0,46854,0,0 +118882,3582,0,46855,0,0 +118883,3583,0,46856,0,0 +118884,3585,0,46857,0,0 +118885,3586,0,46858,0,0 +118886,3587,0,46859,0,0 +118887,3588,0,46860,0,0 +118888,3589,0,46861,0,0 +118889,3590,0,46862,0,0 +118890,3591,0,46863,0,0 +118891,3592,0,46864,0,0 +118892,3593,0,46865,0,0 +118893,3594,0,46866,0,0 +118894,3595,0,46867,0,0 +118895,3596,0,46868,0,0 +118896,3597,0,46869,0,0 +118897,3598,0,46870,0,0 +118898,3599,0,46871,0,0 +118899,3600,0,46872,0,0 +118901,3602,0,46873,0,0 +118902,3603,0,46874,0,0 +118905,3606,0,46876,0,0 +118906,3607,0,46877,0,0 +118939,3641,0,46878,0,0 +118940,3642,0,46879,0,0 +118941,3643,0,46880,0,0 +118942,3644,0,46881,0,0 +118943,3645,0,46882,0,0 +118944,3647,0,46883,0,0 +118945,3649,0,46884,0,0 +118946,3650,0,46885,0,0 +118947,3651,0,46886,0,0 +118948,3652,0,46887,0,0 +118949,3653,0,46888,0,0 +118950,3654,0,46150,0,0 +118951,3655,0,46889,0,0 +118952,3656,0,46890,0,0 +118957,3661,0,46891,0,0 +118986,3694,0,46287,0,0 +118987,3695,0,46285,0,0 +118988,3696,0,46892,0,0 +118989,3697,0,46284,0,0 +118990,3698,0,46286,0,0 +118991,3699,0,46893,0,0 +119010,3719,0,46894,0,0 +119023,3732,0,46895,0,0 +119024,3733,0,46896,0,0 +119029,3738,0,46897,0,0 +119031,3740,0,45857,0,0 +119032,3741,0,46898,0,0 +119033,3742,0,46899,0,0 +119034,3743,0,46198,0,0 +119037,3747,0,46900,0,0 +119038,3748,0,46901,0,0 +119039,3749,0,46902,0,0 +119040,3750,0,46903,0,0 +119041,3751,0,46904,0,0 +119042,3752,0,46905,0,0 +119043,3753,0,46906,0,0 +119044,3754,0,46907,0,0 +119045,3755,0,46908,0,0 +119046,3756,0,46500,0,0 +119047,3757,0,46499,0,0 +119048,3758,0,46045,0,0 +119049,3759,0,46909,0,0 +119051,3761,0,46910,0,0 +119052,3763,0,46911,0,0 +119053,3764,0,46912,0,0 +119054,3765,0,46913,0,0 +119061,3774,0,46914,0,0 +119065,3778,0,46915,0,0 +119066,3779,0,46916,0,0 +119067,3780,0,46512,0,0 +119068,3781,0,46917,0,0 +119069,3782,0,46201,0,0 +119070,3783,0,46918,0,0 +119071,3784,0,46919,0,0 +119072,3785,0,46519,0,0 +119073,3786,0,46920,0,0 +119074,3787,0,46921,0,0 +119075,3792,0,46922,0,0 +119076,3793,0,46923,0,0 +119077,3794,0,46924,0,0 +119078,3795,0,46057,0,0 +119079,3796,0,46925,0,0 +119080,3797,0,46926,0,0 +119081,3798,0,46927,0,0 +119082,3799,0,46928,0,0 +119083,3800,0,46929,0,0 +119084,3801,0,46930,0,0 +119085,3802,0,46931,0,0 +119086,3803,0,46932,0,0 +119087,3804,0,46933,0,0 +119088,3805,0,46934,0,0 +119089,3806,0,46935,0,0 +119090,3807,0,46936,0,0 +119091,3808,0,46045,0,0 +119092,3809,0,46046,0,0 +119093,3810,0,46047,0,0 +119094,3811,0,46937,0,0 +119095,3812,0,46049,0,0 +119096,3813,0,46050,0,0 +119097,3814,0,46053,0,0 +119098,3815,0,46051,0,0 +119099,3816,0,46938,0,0 +119100,3817,0,46553,0,0 +119105,3822,0,46939,0,0 +119116,3833,0,46940,0,0 +119117,3834,0,46941,0,0 +119118,3835,0,46942,0,0 +119119,3836,0,46943,0,0 +119120,3837,0,46944,0,0 +119123,3840,0,46945,0,0 +119124,3841,0,46946,0,0 +119125,3842,0,46947,0,0 +119126,3843,0,46948,0,0 +119127,3844,0,46949,0,0 +119128,3845,0,46950,0,0 +119129,3846,0,46951,0,0 +119130,3847,0,46952,0,0 +119131,3848,0,46953,0,0 +119132,3849,0,46954,0,0 +119133,3850,0,46955,0,0 +119134,3851,0,46956,0,0 +119135,3852,0,46957,0,0 +119136,3853,0,46958,0,0 +119137,3854,0,46959,0,0 +119138,3855,0,46960,0,0 +119139,3856,0,46961,0,0 +119148,3865,0,46962,0,0 +119164,3889,0,46963,0,0 +119165,3890,0,46964,0,0 +119166,3891,0,46965,0,0 +119167,3892,0,46966,0,0 +119168,3893,0,46967,0,0 +119169,3894,0,46968,0,0 +119170,3895,0,46969,0,0 +119171,3896,0,46970,0,0 +119177,3902,0,46971,0,0 +119208,3935,0,46274,0,0 +119209,3936,0,46972,0,0 +119210,3937,0,46973,0,0 +119211,3938,0,46974,0,0 +119212,3939,0,46844,0,0 +119213,3940,0,46975,0,0 +119214,3941,0,46976,0,0 +119215,3942,0,46977,0,0 +119216,3943,0,46978,0,0 +119217,3944,0,46979,0,0 +119218,3945,0,46637,0,0 +119219,3946,0,46980,0,0 +119220,3947,0,46981,0,0 +119221,3948,0,46982,0,0 +119222,3949,0,46983,0,0 +119223,3950,0,46984,0,0 +119224,3951,0,46985,0,0 +119225,3952,0,46986,0,0 +119226,3953,0,46987,0,0 +119227,3954,0,46988,0,0 +119228,3955,0,46989,0,0 +119229,3956,0,46990,0,0 +119230,3957,0,46991,0,0 +119231,3958,0,46992,0,0 +119232,3959,0,46993,0,0 +119234,3961,0,46994,0,0 +119235,3962,0,46995,0,0 +119236,3963,0,46996,0,0 +119237,3964,0,46894,0,0 +119238,3965,0,46997,0,0 +119239,3966,0,46998,0,0 +119240,3967,0,46999,0,0 +119241,3968,0,47000,0,0 +119242,3969,0,47001,0,0 +119243,3970,0,47002,0,0 +119244,3971,0,47003,0,0 +119245,3972,0,47004,0,0 +119246,3973,0,47005,0,0 +119247,3974,0,47006,0,0 +119248,3975,0,47007,0,0 +119249,3976,0,47008,0,0 +119250,3977,0,47009,0,0 +119251,3978,0,47010,0,0 +119252,3979,0,47011,0,0 +119253,3980,0,47012,0,0 +119254,3981,0,47013,0,0 +119255,3982,0,47014,0,0 +119256,3983,0,47015,0,0 +119257,3984,0,47016,0,0 +119258,3985,0,47017,0,0 +119259,3986,0,47018,0,0 +119260,3987,0,47019,0,0 +119261,3988,0,47020,0,0 +119262,3989,0,47021,0,0 +119263,3990,0,47022,0,0 +119264,3991,0,47023,0,0 +119265,3992,0,47024,0,0 +119266,3993,0,47025,0,0 +119267,3994,0,47026,0,0 +119268,3995,0,47027,0,0 +119269,3996,0,47028,0,0 +119270,3997,0,47029,0,0 +119271,3998,0,47030,0,0 +119272,3999,0,47031,0,0 +119273,4000,0,47032,0,0 +119274,4001,0,47033,0,0 +119275,4002,0,46538,0,0 +119276,4003,0,46981,0,0 +119277,4004,0,47034,0,0 +119278,4005,0,46542,0,0 +119279,4006,0,46699,0,0 +119280,4007,0,47035,0,0 +119281,4008,0,47036,0,0 +119282,4009,0,46814,0,0 +119283,4010,0,47037,0,0 +119284,4011,0,47038,0,0 +119285,4012,0,47039,0,0 +119286,4013,0,47040,0,0 +119287,4014,0,46813,0,0 +119288,4015,0,46545,0,0 +119290,4017,0,46954,0,0 +119291,4018,0,47041,0,0 +119292,4019,0,46199,0,0 +119293,4020,0,47042,0,0 +119294,4021,0,46105,0,0 +119295,4022,0,47043,0,0 +119296,4023,0,47044,0,0 +119297,4024,0,47045,0,0 +119298,4025,0,47046,0,0 +119299,4026,0,47047,0,0 +119304,4035,0,47048,0,0 +119305,4036,0,47049,0,0 +119306,4037,0,47050,0,0 +119307,4038,0,47051,0,0 +119308,4039,0,45908,0,0 +119309,4040,0,47052,0,0 +119310,4041,0,55084,0,0 +119311,4042,0,47054,0,0 +119312,4043,0,47055,0,0 +119313,4044,0,47056,0,0 +119314,4045,0,47057,0,0 +119315,4046,0,47058,0,0 +119316,4047,0,47059,0,0 +119317,4048,0,47060,0,0 +119318,4049,0,47061,0,0 +119319,4050,0,47062,0,0 +119320,4051,0,47063,0,0 +119321,4052,0,47064,0,0 +119323,4054,0,47065,0,0 +119324,4055,0,47066,0,0 +119326,4057,0,47067,0,0 +119327,4058,0,47068,0,0 +119328,4059,0,47069,0,0 +119329,4060,0,47070,0,0 +119330,4061,0,47071,0,0 +119331,4062,0,47072,0,0 +119332,4063,0,47073,0,0 +119333,4064,0,47074,0,0 +119334,4065,0,47075,0,0 +119335,4066,0,47076,0,0 +119336,4067,0,46911,0,0 +119337,4068,0,47077,0,0 +119338,4069,0,47078,0,0 +119339,4070,0,47079,0,0 +119340,4071,0,47080,0,0 +119341,4072,0,47081,0,0 +119342,4073,0,47082,0,0 +119343,4074,0,47083,0,0 +119344,4075,0,47084,0,0 +119345,4076,0,47085,0,0 +119346,4077,0,47086,0,0 +119347,4078,0,47087,0,0 +119348,4079,0,47088,0,0 +119349,4080,0,47089,0,0 +119350,4081,0,47090,0,0 +119351,4082,0,46335,0,0 +119352,4083,0,45760,0,0 +119353,4084,0,45754,0,0 +119355,4086,0,47091,0,0 +119356,4087,0,47092,0,0 +119357,4088,0,47093,0,0 +119358,4089,0,46424,0,0 +119359,4090,0,47094,0,0 +119360,4091,0,47095,0,0 +119375,4107,0,47096,0,0 +119376,4108,0,47097,0,0 +119377,4109,0,47098,0,0 +119379,4113,0,47099,0,0 +119380,4114,0,47100,0,0 +119381,4115,0,47101,0,0 +119382,4116,0,47102,0,0 +119383,4117,0,47103,0,0 +119384,4118,0,47104,0,0 +119385,4119,0,47105,0,0 +119386,4120,0,47106,0,0 +119387,4121,0,46411,0,0 +119388,4122,0,45795,0,0 +119389,4123,0,47107,0,0 +119390,4124,0,47108,0,0 +119391,4125,0,47109,0,0 +119392,4126,0,47110,0,0 +119393,4127,0,47111,0,0 +119394,4128,0,45882,0,0 +119395,4129,0,47112,0,0 +119397,4131,0,47113,0,0 +119398,4132,0,46538,0,0 +119399,4133,0,47114,0,0 +119400,4134,0,47115,0,0 +119402,4136,0,47033,0,0 +119403,4137,0,47116,0,0 +119404,4138,0,47117,0,0 +119405,4139,0,47118,0,0 +119406,4140,0,47119,0,0 +119409,4190,0,47120,0,0 +119410,4191,0,47121,0,0 +119411,4192,0,47122,0,0 +119412,4194,0,47123,0,0 +119413,4195,0,47124,0,0 +119414,4197,0,47125,0,0 +119422,4237,0,46118,0,0 +119424,4239,0,47126,0,0 +119427,4242,0,47127,0,0 +119428,4243,0,47128,0,0 +119429,4244,0,47129,0,0 +119431,4246,0,47130,0,0 +119432,4247,0,47131,0,0 +119433,4248,0,47132,0,0 +119434,4249,0,47133,0,0 +119435,4250,0,47134,0,0 +119436,4251,0,47135,0,0 +119437,4252,0,47136,0,0 +119438,4253,0,47137,0,0 +119439,4254,0,47138,0,0 +119440,4255,0,47139,0,0 +119441,4256,0,47140,0,0 +119442,4257,0,47141,0,0 +119443,4258,0,47142,0,0 +119444,4259,0,47143,0,0 +119445,4260,0,47144,0,0 +119446,4261,0,47145,0,0 +119447,4262,0,47146,0,0 +119448,4263,0,47147,0,0 +119449,4264,0,47148,0,0 +119453,4290,0,47149,0,0 +119464,4302,0,46244,0,0 +119465,4303,0,47150,0,0 +119469,4307,0,47151,0,0 +119470,4308,0,47152,0,0 +119471,4309,0,47153,0,0 +119472,4310,0,47154,0,0 +119473,4311,0,46063,0,0 +119474,4312,0,47155,0,0 +119475,4313,0,47156,0,0 +119476,4314,0,47157,0,0 +119477,4315,0,47158,0,0 +119478,4316,0,47159,0,0 +119479,4317,0,47160,0,0 +119480,4318,0,47161,0,0 +119481,4319,0,47162,0,0 +119482,4320,0,47163,0,0 +119483,4321,0,47164,0,0 +119484,4322,0,47165,0,0 +119485,4323,0,47166,0,0 +119486,4324,0,47167,0,0 +119487,4325,0,47168,0,0 +119488,4326,0,47169,0,0 +119489,4327,0,47170,0,0 +119490,4328,0,47171,0,0 +119491,4329,0,47172,0,0 +119492,4330,0,47173,0,0 +119493,4331,0,47174,0,0 +119494,4332,0,47175,0,0 +119495,4333,0,47176,0,0 +119496,4334,0,47177,0,0 +119497,4335,0,47178,0,0 +119498,4336,0,47179,0,0 +119505,4343,0,47180,0,0 +119506,4344,0,47181,0,0 +119524,4362,0,46424,0,0 +119530,4368,0,47182,0,0 +119531,4369,0,47183,0,0 +119534,4372,0,46423,0,0 +119535,4373,0,47184,0,0 +119541,4379,0,47185,0,0 +119545,4383,0,47186,0,0 +119547,4385,0,47187,0,0 +119555,4393,0,47188,0,0 +119593,4434,0,47189,0,0 +119595,4436,0,47190,0,0 +119596,4437,0,47191,0,0 +119597,4438,0,46538,0,0 +119598,4439,0,46432,0,0 +119601,4443,0,47192,0,0 +119602,4444,0,47193,0,0 +119603,4445,0,47194,0,0 +119604,4446,0,47195,0,0 +119605,4447,0,47196,0,0 +119606,4448,0,47197,0,0 +119607,4449,0,47198,0,0 +119610,4454,0,47199,0,0 +119611,4455,0,47200,0,0 +119612,4456,0,47201,0,0 +119618,4462,0,47202,0,0 +119619,4463,0,47203,0,0 +119620,4464,0,45755,0,0 +119621,4465,0,45760,0,0 +119630,4474,0,47204,0,0 +119631,4476,0,47205,0,0 +119632,4477,0,47206,0,0 +119633,4478,0,46948,0,0 +119645,4491,0,47207,0,0 +119657,4504,0,47208,0,0 +119658,4505,0,47209,0,0 +119660,4507,0,47210,0,0 +119661,4508,0,47211,0,0 +119662,4509,0,47212,0,0 +119664,4511,0,47213,0,0 +119686,4534,0,47214,0,0 +119695,4543,0,47215,0,0 +119697,4545,0,47216,0,0 +119699,4547,0,47217,0,0 +119700,4548,0,47218,0,0 +119712,4560,0,46253,0,0 +119713,4561,0,46199,0,0 +119714,4562,0,47219,0,0 +119715,4563,0,46521,0,0 +119716,4564,0,47220,0,0 +119717,4565,0,47221,0,0 +119718,4566,0,47222,0,0 +119719,4567,0,47223,0,0 +119720,4568,0,47224,0,0 +119721,4569,0,47225,0,0 +119722,4570,0,47226,0,0 +119723,4571,0,47227,0,0 +119726,4575,0,47228,0,0 +119727,4576,0,47229,0,0 +119728,4577,0,46424,0,0 +119765,4616,0,45767,0,0 +119787,4642,0,46284,0,0 +119788,4643,0,47027,0,0 +119797,4652,0,47230,0,0 +119798,4653,0,47231,0,0 +119802,4658,0,47232,0,0 +119803,4659,0,46269,0,0 +119804,4660,0,47233,0,0 +119805,4661,0,47234,0,0 +119806,4662,0,47235,0,0 +119807,4663,0,47236,0,0 +119808,4665,0,46740,0,0 +119809,4666,0,47237,0,0 +119810,4668,0,47238,0,0 +119811,4669,0,47239,0,0 +119812,4671,0,46940,0,0 +119813,4672,0,47240,0,0 +119814,4674,0,47241,0,0 +119815,4675,0,47237,0,0 +119816,4676,0,47242,0,0 +119817,4677,0,47243,0,0 +119818,4678,0,47244,0,0 +119819,4680,0,47245,0,0 +119820,4681,0,47246,0,0 +119821,4683,0,45905,0,0 +119822,4684,0,47247,0,0 +119823,4686,0,47248,0,0 +119824,4687,0,47249,0,0 +119825,4689,0,47250,0,0 +119826,4690,0,46856,0,0 +119827,4692,0,46740,0,0 +119828,4693,0,46114,0,0 +119829,4694,0,47251,0,0 +119830,4695,0,47252,0,0 +119831,4696,0,47094,0,0 +119832,4697,0,47253,0,0 +119833,4698,0,47254,0,0 +119834,4699,0,47255,0,0 +119835,4700,0,47256,0,0 +119836,4701,0,47257,0,0 +119839,4705,0,47258,0,0 +119840,4706,0,47259,0,0 +119841,4707,0,47260,0,0 +119842,4708,0,46979,0,0 +119843,4709,0,47261,0,0 +119844,4710,0,46932,0,0 +119845,4711,0,47262,0,0 +119846,4712,0,47263,0,0 +119847,4713,0,47264,0,0 +119848,4714,0,47265,0,0 +119849,4715,0,47266,0,0 +119850,4716,0,47267,0,0 +119851,4717,0,47036,0,0 +119852,4718,0,47268,0,0 +119853,4719,0,47269,0,0 +119854,4720,0,47270,0,0 +119855,4721,0,47271,0,0 +119856,4722,0,47272,0,0 +119857,4723,0,47273,0,0 +119858,4724,0,46769,0,0 +119859,4725,0,47274,0,0 +119860,4726,0,47275,0,0 +119861,4727,0,47276,0,0 +119862,4728,0,47277,0,0 +119863,4729,0,47278,0,0 +119864,4731,0,47279,0,0 +119865,4732,0,47280,0,0 +119866,4733,0,45837,0,0 +119867,4734,0,47281,0,0 +119868,4735,0,47282,0,0 +119869,4736,0,47283,0,0 +119870,4737,0,47284,0,0 +119871,4738,0,47285,0,0 +119874,4741,0,47286,0,0 +119877,4744,0,47287,0,0 +119878,4745,0,47288,0,0 +119879,4746,0,47289,0,0 +119890,4765,0,47290,0,0 +119891,4766,0,47291,0,0 +119892,4767,0,47292,0,0 +119893,4768,0,47293,0,0 +119896,4771,0,47250,0,0 +119897,4772,0,47294,0,0 +119900,4777,0,47295,0,0 +119901,4778,0,47296,0,0 +119904,4781,0,47297,0,0 +119905,4782,0,47298,0,0 +119908,4785,0,47299,0,0 +119909,4786,0,47300,0,0 +119911,4788,0,46970,0,0 +119912,4789,0,45877,0,0 +119913,4790,0,46748,0,0 +119915,4792,0,47301,0,0 +119916,4793,0,47302,0,0 +119917,4794,0,47303,0,0 +119918,4795,0,47304,0,0 +119919,4796,0,47305,0,0 +119920,4797,0,46319,0,0 +119921,4798,0,47208,0,0 +119922,4799,0,47306,0,0 +119923,4800,0,45806,0,0 +119933,4810,0,47307,0,0 +119936,4816,0,47308,0,0 +119937,4817,0,47309,0,0 +119938,4818,0,47310,0,0 +119940,4820,0,47311,0,0 +119941,4821,0,46888,0,0 +119942,4822,0,47076,0,0 +119944,4824,0,46130,0,0 +119945,4825,0,47312,0,0 +119946,4826,0,47313,0,0 +119947,4827,0,47314,0,0 +119948,4828,0,47315,0,0 +119949,4829,0,47190,0,0 +119950,4830,0,47316,0,0 +119951,4831,0,47317,0,0 +119952,4832,0,47318,0,0 +119953,4833,0,47319,0,0 +119955,4835,0,47320,0,0 +119956,4836,0,47321,0,0 +119957,4837,0,47322,0,0 +119958,4838,0,47322,0,0 +119959,4840,0,47323,0,0 +119971,4854,0,46701,0,0 +119974,4861,0,47324,0,0 +120008,4899,0,46446,0,0 +120009,4900,0,46042,0,0 +120010,4901,0,47325,0,0 +120014,4906,0,47326,0,0 +120015,4907,0,47327,0,0 +120016,4908,0,47328,0,0 +120017,4909,0,47329,0,0 +120018,4910,0,47330,0,0 +120019,4911,0,47331,0,0 +120020,4912,0,47332,0,0 +120021,4913,0,47333,0,0 +120022,4914,0,47334,0,0 +120023,4915,0,47335,0,0 +120024,4916,0,47336,0,0 +120025,4917,0,47337,0,0 +120027,4919,0,47338,0,0 +120028,4920,0,46091,0,0 +120029,4921,0,47339,0,0 +120030,4922,0,46551,0,0 +120031,4923,0,46012,0,0 +120032,4924,0,47340,0,0 +120033,4925,0,46654,0,0 +120035,4928,0,47341,0,0 +120036,4929,0,47342,0,0 +120037,4931,0,47343,0,0 +120038,4932,0,47344,0,0 +120039,4933,0,47345,0,0 +120040,4935,0,46045,0,0 +120041,4936,0,47346,0,0 +120042,4937,0,47347,0,0 +120043,4938,0,47348,0,0 +120044,4939,0,45885,0,0 +120045,4940,0,47349,0,0 +120047,4942,0,47350,0,0 +120048,4944,0,47351,0,0 +120050,4946,0,47352,0,0 +120051,4947,0,47353,0,0 +120052,4948,0,46132,0,0 +120053,4949,0,47354,0,0 +120054,4951,0,46074,0,0 +120057,4954,0,47355,0,0 +120058,4956,0,47356,0,0 +120060,4958,0,47357,0,0 +120061,4960,0,46427,0,0 +120062,4961,0,47358,0,0 +120063,4962,0,47359,0,0 +120064,4963,0,47241,0,0 +120065,4964,0,47360,0,0 +120066,4967,0,47361,0,0 +120067,4968,0,47016,0,0 +120068,4969,0,47362,0,0 +120069,4970,0,47363,0,0 +120070,4971,0,47364,0,0 +120071,4972,0,47352,0,0 +120072,4973,0,47365,0,0 +120073,4974,0,46244,0,0 +120074,4975,0,47366,0,0 +120075,4976,0,47367,0,0 +120076,4977,0,47368,0,0 +120077,4978,0,47369,0,0 +120078,4979,0,47370,0,0 +120079,4980,0,47371,0,0 +120080,4982,0,47372,0,0 +120081,4983,0,47373,0,0 +120082,4984,0,46166,0,0 +120083,4985,0,47332,0,0 +120085,4987,0,47374,0,0 +120087,4989,0,47375,0,0 +120088,4990,0,47376,0,0 +120089,4991,0,47377,0,0 +120091,4993,0,45866,0,0 +120092,4994,0,47378,0,0 +120094,4996,0,47379,0,0 +120111,5016,0,47380,0,0 +120122,5028,0,47381,0,0 +120125,5031,0,47382,0,0 +120126,5032,0,46111,0,0 +120127,5033,0,46111,0,0 +120128,5034,0,46111,0,0 +120129,5035,0,46111,0,0 +120130,5036,0,47382,0,0 +120131,5037,0,46111,0,0 +120133,5039,0,46111,0,0 +120134,5040,0,47383,0,0 +120161,5069,0,47384,0,0 +120162,5070,0,47385,0,0 +120163,5071,0,47386,0,0 +120182,5092,0,47387,0,0 +120183,5093,0,47388,0,0 +120184,5094,0,47389,0,0 +120195,5107,0,47390,0,0 +120196,5109,0,47391,0,0 +120197,5110,0,47392,0,0 +120198,5111,0,45880,0,0 +120199,5112,0,47393,0,0 +120244,5181,0,47394,0,0 +120245,5182,0,47395,0,0 +120246,5183,0,47321,0,0 +120250,5187,0,46744,0,0 +120254,5191,0,46274,0,0 +120255,5192,0,47396,0,0 +120256,5193,0,47397,0,0 +120257,5194,0,47398,0,0 +120258,5195,0,47399,0,0 +120259,5196,0,46278,0,0 +120260,5197,0,46753,0,0 +120261,5198,0,47400,0,0 +120262,5199,0,47401,0,0 +120263,5200,0,46758,0,0 +120264,5201,0,47402,0,0 +120265,5202,0,47403,0,0 +120270,5207,0,47404,0,0 +120271,5208,0,47405,0,0 +120272,5209,0,47406,0,0 +120273,5210,0,47407,0,0 +120274,5211,0,47408,0,0 +120275,5212,0,47409,0,0 +120276,5213,0,47410,0,0 +120277,5214,0,47411,0,0 +120278,5215,0,47412,0,0 +120279,5216,0,47413,0,0 +120292,5236,0,47414,0,0 +120294,5238,0,47407,0,0 +120295,5239,0,47408,0,0 +120296,5240,0,47387,0,0 +120297,5241,0,47384,0,0 +120298,5242,0,47415,0,0 +120299,5243,0,47416,0,0 +120300,5244,0,47417,0,0 +120301,5245,0,47418,0,0 +120302,5246,0,47415,0,0 +120303,5247,0,47419,0,0 +120304,5248,0,47420,0,0 +120305,5249,0,47410,0,0 +120306,5250,0,47421,0,0 +120308,5252,0,47422,0,0 +120309,5253,0,47423,0,0 +120310,5254,0,47424,0,0 +120311,5255,0,46331,0,0 +120312,5256,0,47425,0,0 +120313,5257,0,47426,0,0 +120314,5258,0,47204,0,0 +120315,5259,0,47427,0,0 +120316,5260,0,46506,0,0 +120317,5261,0,47428,0,0 +120318,5262,0,46530,0,0 +120322,5267,0,47429,0,0 +120329,5274,0,47158,0,0 +120330,5275,0,47430,0,0 +120331,5276,0,46891,0,0 +120332,5277,0,45945,0,0 +120333,5278,0,46953,0,0 +120334,5279,0,47431,0,0 +120335,5280,0,46790,0,0 +120336,5281,0,46526,0,0 +120337,5282,0,45910,0,0 +120338,5283,0,46771,0,0 +120339,5284,0,47432,0,0 +120340,5285,0,47431,0,0 +120341,5286,0,47312,0,0 +120342,5287,0,46960,0,0 +120343,5288,0,46029,0,0 +120344,5289,0,46030,0,0 +120345,5290,0,47204,0,0 +120346,5291,0,47433,0,0 +120347,5292,0,46358,0,0 +120348,5293,0,45884,0,0 +120349,5299,0,47434,0,0 +120350,5300,0,45897,0,0 +120351,5301,0,45976,0,0 +120352,5302,0,47435,0,0 +120353,5303,0,47436,0,0 +120354,5304,0,47437,0,0 +120355,5305,0,47438,0,0 +120356,5306,0,47436,0,0 +120357,5309,0,46514,0,0 +120358,5310,0,47439,0,0 +120359,5311,0,47440,0,0 +120360,5312,0,47242,0,0 +120362,5314,0,47250,0,0 +120363,5315,0,47441,0,0 +120364,5316,0,47442,0,0 +120365,5317,0,47443,0,0 +120366,5318,0,47444,0,0 +120367,5319,0,47445,0,0 +120368,5320,0,47025,0,0 +120369,5321,0,47446,0,0 +120370,5322,0,46201,0,0 +120371,5323,0,46497,0,0 +120372,5324,0,46127,0,0 +120373,5325,0,47447,0,0 +120374,5326,0,47384,0,0 +120375,5327,0,47448,0,0 +120376,5328,0,47024,0,0 +120383,5337,0,47449,0,0 +120386,5340,0,47450,0,0 +120387,5341,0,47451,0,0 +120389,5343,0,47452,0,0 +120390,5344,0,46430,0,0 +120391,5345,0,47453,0,0 +120392,5346,0,47454,0,0 +120393,5347,0,47455,0,0 +120401,5355,0,47456,0,0 +120402,5356,0,47457,0,0 +120403,5357,0,46152,0,0 +120428,5387,0,45959,0,0 +120433,5392,0,46281,0,0 +120434,5393,0,47459,0,0 +120435,5394,0,45960,0,0 +120436,5395,0,47460,0,0 +120439,5398,0,47461,0,0 +120440,5399,0,47462,0,0 +120441,5404,0,47463,0,0 +120442,5405,0,46464,0,0 +120452,5419,0,46368,0,0 +120453,5420,0,47464,0,0 +120455,5422,0,47465,0,0 +120456,5423,0,47466,0,0 +120458,5425,0,47467,0,0 +120459,5426,0,47468,0,0 +120473,5443,0,47023,0,0 +120474,5444,0,46485,0,0 +120484,5458,0,47470,0,0 +120485,5459,0,47471,0,0 +120517,5491,0,46956,0,0 +120520,5495,0,46956,0,0 +120525,5502,0,47377,0,0 +120538,5516,0,46217,0,0 +120544,5522,0,47322,0,0 +120553,5532,0,46452,0,0 +120561,5540,0,47472,0,0 +120562,5541,0,47473,0,0 +120563,5542,0,47301,0,0 +120566,5545,0,47325,0,0 +120567,5546,0,47474,0,0 +120569,5548,0,46615,0,0 +120570,5549,0,46281,0,0 +120571,5550,0,46424,0,0 +120572,5551,0,46195,0,0 +120573,5552,0,46671,0,0 +120574,5553,0,45704,0,0 +120575,5554,0,47475,0,0 +120576,5555,0,45870,0,0 +120577,5556,0,47476,0,0 +120578,5557,0,45949,0,0 +120579,5558,0,45869,0,0 +120581,5560,0,47384,0,0 +120582,5561,0,47478,0,0 +120586,5568,0,46427,0,0 +120597,5579,0,47360,0,0 +120598,5580,0,47479,0,0 +120599,5581,0,47480,0,0 +120604,5586,0,45952,0,0 +120605,5587,0,47481,0,0 +120607,5589,0,47482,0,0 +120608,5590,0,47483,0,0 +120609,5591,0,47484,0,0 +120610,5592,0,47333,0,0 +120611,5593,0,47485,0,0 +120613,5595,0,47486,0,0 +120614,5596,0,47487,0,0 +120615,5597,0,47488,0,0 +120616,5598,0,47489,0,0 +120617,5599,0,47490,0,0 +120618,5600,0,47491,0,0 +120621,5604,0,47492,0,0 +120622,5605,0,46920,0,0 +120623,5606,0,47493,0,0 +120624,5608,0,47494,0,0 +120625,5609,0,46929,0,0 +120626,5610,0,46793,0,0 +120627,5611,0,47495,0,0 +120628,5612,0,47496,0,0 +120629,5613,0,47497,0,0 +120630,5614,0,47498,0,0 +120631,5615,0,47499,0,0 +120632,5616,0,47500,0,0 +120633,5617,0,47501,0,0 +120634,5618,0,47502,0,0 +120640,5624,0,47503,0,0 +120641,5626,0,47504,0,0 +120642,5627,0,47505,0,0 +120644,5629,0,47506,0,0 +120645,5630,0,46236,0,0 +120692,5739,0,47507,0,0 +120695,5742,0,47432,0,0 +120697,5744,0,46148,0,0 +120698,5745,0,47508,0,0 +120699,5746,0,47509,0,0 +120700,5747,0,47510,0,0 +120701,5748,0,47511,0,0 +120702,5749,0,47512,0,0 +120703,5750,0,47036,0,0 +120704,5751,0,47513,0,0 +120705,5752,0,47514,0,0 +120706,5753,0,47515,0,0 +120708,5755,0,47516,0,0 +120709,5756,0,47517,0,0 +120710,5757,0,46432,0,0 +120714,5761,0,47360,0,0 +120719,5766,0,47518,0,0 +120720,5767,0,47519,0,0 +120723,5770,0,47520,0,0 +120729,5776,0,47521,0,0 +120730,5777,0,47522,0,0 +120731,5778,0,47523,0,0 +120732,5779,0,47524,0,0 +120733,5780,0,46856,0,0 +120734,5781,0,47525,0,0 +120735,5782,0,47526,0,0 +120736,5783,0,47026,0,0 +120765,5812,0,47527,0,0 +120766,5813,0,47528,0,0 +120767,5814,0,47529,0,0 +120768,5815,0,47530,0,0 +120770,5817,0,47531,0,0 +120771,5818,0,47532,0,0 +120772,5819,0,46944,0,0 +120773,5820,0,47533,0,0 +120774,5821,0,46930,0,0 +120775,5822,0,47534,0,0 +120822,5870,0,47535,0,0 +120843,5936,0,47536,0,0 +120846,5939,0,45930,0,0 +120847,5940,0,47149,0,0 +120848,5941,0,47029,0,0 +120850,5943,0,47537,0,0 +120851,5944,0,47025,0,0 +120860,5953,0,47538,0,0 +120861,5954,0,47539,0,0 +120862,5956,0,46127,0,0 +120863,5957,0,47324,0,0 +120864,5958,0,46316,0,0 +120867,5961,0,47540,0,0 +120868,5962,0,47541,0,0 +120869,5963,0,47542,0,0 +120870,5964,0,47543,0,0 +120871,5965,0,47544,0,0 +120872,5966,0,47545,0,0 +120873,5967,0,47546,0,0 +120874,5968,0,45877,0,0 +120875,5969,0,47547,0,0 +120876,5970,0,47548,0,0 +120877,5971,0,47549,0,0 +120881,5975,0,47550,0,0 +120882,5976,0,47551,0,0 +120887,6036,0,45980,0,0 +120891,6040,0,47552,0,0 +120909,6058,0,47553,0,0 +120910,6059,0,46462,0,0 +120911,6060,0,47554,0,0 +120912,6061,0,46689,0,0 +120913,6062,0,47555,0,0 +120914,6063,0,45972,0,0 +120921,6070,0,45893,0,0 +120927,6076,0,47556,0,0 +120929,6078,0,47557,0,0 +120935,6084,0,47558,0,0 +120936,6085,0,47559,0,0 +120938,6087,0,46904,0,0 +120939,6088,0,47560,0,0 +120942,6092,0,47561,0,0 +120943,6093,0,47562,0,0 +120944,6094,0,47563,0,0 +120945,6095,0,47564,0,0 +120946,6096,0,47565,0,0 +120947,6097,0,47566,0,0 +120948,6098,0,47567,0,0 +120949,6116,0,47568,0,0 +120950,6117,0,47569,0,0 +120951,6118,0,45947,0,0 +120952,6119,0,47570,0,0 +120953,6120,0,47571,0,0 +120954,6121,0,47572,0,0 +120955,6122,0,47573,0,0 +120956,6123,0,47574,0,0 +120957,6124,0,47575,0,0 +120958,6125,0,47576,0,0 +120959,6126,0,47577,0,0 +120960,6127,0,47578,0,0 +120961,6128,0,47579,0,0 +120962,6129,0,47580,0,0 +120963,6134,0,47581,0,0 +120964,6135,0,47582,0,0 +120965,6136,0,47583,0,0 +120966,6137,0,47584,0,0 +120967,6138,0,47585,0,0 +120968,6139,0,47586,0,0 +120969,6140,0,47587,0,0 +120970,6141,0,45713,0,0 +120971,6142,0,47588,0,0 +120972,6143,0,45712,0,0 +120973,6144,0,47589,0,0 +120976,6147,0,47590,0,0 +120977,6148,0,47591,0,0 +120985,6171,0,45930,0,0 +120987,6173,0,47592,0,0 +120988,6174,0,47593,0,0 +120990,6176,0,47594,0,0 +120991,6177,0,47595,0,0 +120993,6179,0,47596,0,0 +120994,6180,0,47031,0,0 +120996,6182,0,45876,0,0 +120999,6185,0,46002,0,0 +121000,6186,0,47597,0,0 +121001,6187,0,47598,0,0 +121002,6188,0,47599,0,0 +121003,6189,0,47600,0,0 +121005,6191,0,47601,0,0 +121008,6194,0,47602,0,0 +121009,6195,0,47603,0,0 +121010,6196,0,46105,0,0 +121011,6197,0,47604,0,0 +121012,6198,0,47605,0,0 +121014,6200,0,47606,0,0 +121015,6201,0,47607,0,0 +121016,6202,0,47608,0,0 +121017,6203,0,47609,0,0 +121018,6204,0,47610,0,0 +121019,6205,0,45882,0,0 +121020,6206,0,47611,0,0 +121028,6214,0,47612,0,0 +121029,6215,0,46129,0,0 +121033,6219,0,46131,0,0 +121034,6220,0,47613,0,0 +121036,6223,0,45889,0,0 +121037,6224,0,46173,0,0 +121038,6225,0,47614,0,0 +121039,6226,0,47615,0,0 +121040,6227,0,47478,0,0 +121041,6228,0,47616,0,0 +121042,6229,0,47617,0,0 +121043,6230,0,47387,0,0 +121044,6231,0,47618,0,0 +121045,6232,0,46450,0,0 +121046,6233,0,46775,0,0 +121047,6234,0,47619,0,0 +121048,6235,0,46774,0,0 +121049,6236,0,47620,0,0 +121050,6237,0,46777,0,0 +121051,6238,0,47621,0,0 +121052,6239,0,47622,0,0 +121053,6240,0,47623,0,0 +121054,6241,0,47624,0,0 +121055,6242,0,47625,0,0 +121056,6243,0,47626,0,0 +121066,6254,0,47627,0,0 +121067,6255,0,46424,0,0 +121068,6256,0,47628,0,0 +121075,6263,0,47629,0,0 +121076,6264,0,47630,0,0 +121078,6266,0,47631,0,0 +121079,6267,0,47632,0,0 +121080,6268,0,47633,0,0 +121081,6269,0,47634,0,0 +121094,6282,0,47635,0,0 +121104,6292,0,47616,0,0 +121106,6294,0,47616,0,0 +121107,6295,0,47616,0,0 +121121,6309,0,47614,0,0 +121122,6310,0,47614,0,0 +121123,6311,0,47614,0,0 +121126,6314,0,47636,0,0 +121127,6315,0,46446,0,0 +121130,6318,0,47637,0,0 +121131,6319,0,47638,0,0 +121132,6320,0,47639,0,0 +121134,6322,0,47640,0,0 +121135,6323,0,47641,0,0 +121136,6324,0,47642,0,0 +121139,6327,0,47643,0,0 +121143,6331,0,47644,0,0 +121145,6333,0,46218,0,0 +121146,6334,0,46534,0,0 +121147,6335,0,47645,0,0 +121148,6336,0,47646,0,0 +121149,6337,0,47558,0,0 +121152,6340,0,46612,0,0 +121153,6341,0,46498,0,0 +121160,6350,0,47033,0,0 +121170,6360,0,47616,0,0 +121173,6363,0,47614,0,0 +121174,6364,0,47614,0,0 +121175,6365,0,45864,0,0 +121176,6366,0,47647,0,0 +121177,6367,0,45864,0,0 +121187,6378,0,47648,0,0 +121188,6379,0,47001,0,0 +121189,6380,0,46888,0,0 +121190,6381,0,47649,0,0 +121191,6382,0,47650,0,0 +121192,6383,0,47651,0,0 +121193,6384,0,47652,0,0 +121194,6385,0,47653,0,0 +121195,6386,0,47654,0,0 +121196,6387,0,47655,0,0 +121197,6388,0,47656,0,0 +121198,6389,0,46944,0,0 +121201,6392,0,47657,0,0 +121202,6393,0,47658,0,0 +121203,6394,0,47659,0,0 +121204,6395,0,47660,0,0 +121205,6396,0,47661,0,0 +121206,6397,0,47662,0,0 +121207,6398,0,47663,0,0 +121208,6399,0,47664,0,0 +121209,6400,0,47665,0,0 +121211,6402,0,47666,0,0 +121212,6403,0,47667,0,0 +121213,6404,0,47668,0,0 +121214,6405,0,47669,0,0 +121215,6406,0,47670,0,0 +121216,6407,0,47671,0,0 +121217,6408,0,47672,0,0 +121218,6409,0,47673,0,0 +121219,6410,0,47674,0,0 +121220,6411,0,47675,0,0 +121221,6412,0,47676,0,0 +121222,6413,0,47677,0,0 +121224,6415,0,47678,0,0 +121225,6416,0,47679,0,0 +121226,6417,0,46989,0,0 +121227,6418,0,47680,0,0 +121228,6419,0,47681,0,0 +121229,6420,0,47682,0,0 +121230,6421,0,47683,0,0 +121231,6422,0,47684,0,0 +121232,6423,0,45755,0,0 +121233,6424,0,47685,0,0 +121234,6425,0,45796,0,0 +121235,6426,0,47686,0,0 +121236,6427,0,47687,0,0 +121237,6428,0,47688,0,0 +121238,6429,0,47689,0,0 +121239,6430,0,47690,0,0 +121240,6431,0,47691,0,0 +121241,6432,0,47692,0,0 +121242,6433,0,47693,0,0 +121243,6434,0,47694,0,0 +121255,6447,0,47695,0,0 +121256,6448,0,47696,0,0 +121257,6449,0,47697,0,0 +121267,6459,0,47698,0,0 +121268,6460,0,47699,0,0 +121269,6461,0,47700,0,0 +121273,6465,0,47701,0,0 +121274,6466,0,46350,0,0 +121275,6467,0,47702,0,0 +121276,6468,0,47703,0,0 +121277,6469,0,47704,0,0 +121280,6472,0,47381,0,0 +121281,6473,0,47705,0,0 +121285,6477,0,47706,0,0 +121286,6478,0,47707,0,0 +121288,6480,0,47708,0,0 +121289,6481,0,47709,0,0 +121290,6482,0,47710,0,0 +121306,6502,0,47711,0,0 +121307,6503,0,47712,0,0 +121308,6504,0,47713,0,0 +121309,6505,0,47714,0,0 +121310,6506,0,46792,0,0 +121311,6507,0,45878,0,0 +121312,6508,0,47715,0,0 +121313,6509,0,47716,0,0 +121314,6510,0,47717,0,0 +121315,6511,0,47718,0,0 +121316,6512,0,47719,0,0 +121317,6513,0,47720,0,0 +121318,6514,0,47351,0,0 +121319,6515,0,47154,0,0 +121321,6517,0,47721,0,0 +121322,6518,0,47722,0,0 +121323,6519,0,47723,0,0 +121324,6520,0,46348,0,0 +121325,6521,0,47724,0,0 +121327,6523,0,47725,0,0 +121328,6524,0,47726,0,0 +121329,6525,0,47727,0,0 +121330,6526,0,47728,0,0 +121331,6527,0,47579,0,0 +121332,6528,0,47729,0,0 +121335,6531,0,47730,0,0 +121340,6536,0,47731,0,0 +121341,6537,0,47732,0,0 +121342,6538,0,47733,0,0 +121343,6539,0,47734,0,0 +121344,6540,0,47735,0,0 +121345,6541,0,47736,0,0 +121346,6542,0,47737,0,0 +121347,6543,0,47738,0,0 +121349,6545,0,47739,0,0 +121350,6546,0,47740,0,0 +121351,6547,0,47741,0,0 +121352,6548,0,47742,0,0 +121353,6549,0,47743,0,0 +121354,6550,0,47744,0,0 +121355,6551,0,46559,0,0 +121356,6552,0,47745,0,0 +121357,6553,0,47746,0,0 +121358,6554,0,47747,0,0 +121359,6555,0,46091,0,0 +121360,6556,0,47748,0,0 +121361,6557,0,47749,0,0 +121362,6558,0,47750,0,0 +121363,6559,0,45907,0,0 +121364,6560,0,47751,0,0 +121365,6561,0,47752,0,0 +121366,6562,0,47753,0,0 +121367,6563,0,47754,0,0 +121368,6564,0,47755,0,0 +121369,6565,0,47756,0,0 +121370,6566,0,47757,0,0 +121371,6567,0,47758,0,0 +121372,6568,0,47759,0,0 +121373,6569,0,47760,0,0 +121374,6570,0,47761,0,0 +121375,6571,0,47762,0,0 +121376,6572,0,47763,0,0 +121377,6573,0,47764,0,0 +121378,6574,0,47765,0,0 +121379,6575,0,47766,0,0 +121380,6576,0,47767,0,0 +121381,6577,0,47768,0,0 +121382,6578,0,47769,0,0 +121383,6579,0,47600,0,0 +121384,6580,0,47770,0,0 +121385,6581,0,46121,0,0 +121386,6582,0,47771,0,0 +121387,6583,0,47772,0,0 +121388,6584,0,47773,0,0 +121389,6585,0,46350,0,0 +121390,6586,0,47774,0,0 +121391,6587,0,47775,0,0 +121392,6588,0,47776,0,0 +121393,6590,0,47777,0,0 +121394,6591,0,47778,0,0 +121395,6592,0,47779,0,0 +121396,6593,0,46202,0,0 +121397,6594,0,47780,0,0 +121398,6595,0,47781,0,0 +121399,6596,0,47782,0,0 +121400,6597,0,47783,0,0 +121401,6598,0,47784,0,0 +121402,6599,0,47785,0,0 +121403,6600,0,47786,0,0 +121404,6601,0,47787,0,0 +121405,6602,0,47788,0,0 +121406,6603,0,47789,0,0 +121407,6604,0,47636,0,0 +121408,6605,0,47790,0,0 +121409,6606,0,47007,0,0 +121410,6607,0,47791,0,0 +121411,6608,0,47792,0,0 +121412,6609,0,47793,0,0 +121413,6610,0,47051,0,0 +121414,6611,0,47794,0,0 +121415,6612,0,47795,0,0 +121416,6613,0,47796,0,0 +121417,6614,0,47797,0,0 +121418,6615,0,47798,0,0 +121419,6616,0,47799,0,0 +121420,6617,0,47800,0,0 +121421,6618,0,47322,0,0 +121423,6622,0,47801,0,0 +121428,6627,0,47802,0,0 +121429,6628,0,47803,0,0 +121430,6629,0,47755,0,0 +121431,6630,0,45907,0,0 +121432,6631,0,47804,0,0 +121433,6632,0,46052,0,0 +121434,6633,0,45863,0,0 +121441,6641,0,47805,0,0 +121442,6642,0,46606,0,0 +121449,6651,0,47806,0,0 +121451,6653,0,46415,0,0 +121452,6654,0,45876,0,0 +121457,6659,0,47807,0,0 +121458,6660,0,47808,0,0 +121462,6664,0,47809,0,0 +121463,6665,0,47810,0,0 +121464,6666,0,47811,0,0 +121465,6667,0,47648,0,0 +121466,6668,0,47812,0,0 +121468,6670,0,47813,0,0 +121469,6671,0,46542,0,0 +121473,6675,0,47814,0,0 +121474,6676,0,47815,0,0 +121475,6677,0,47816,0,0 +121477,6679,0,46178,0,0 +121478,6680,0,47817,0,0 +121479,6681,0,46515,0,0 +121480,6682,0,47818,0,0 +121482,6685,0,47819,0,0 +121483,6686,0,47820,0,0 +121484,6687,0,47821,0,0 +121485,6688,0,47822,0,0 +121486,6689,0,47823,0,0 +121487,6690,0,47824,0,0 +121488,6691,0,47825,0,0 +121489,6692,0,47826,0,0 +121491,6694,0,47074,0,0 +121493,6696,0,47827,0,0 +121494,6697,0,47828,0,0 +121496,6709,0,47829,0,0 +121499,6713,0,47830,0,0 +121505,6719,0,47831,0,0 +121506,6720,0,47832,0,0 +121507,6721,0,46545,0,0 +121508,6722,0,47037,0,0 +121510,6725,0,47021,0,0 +121511,6726,0,47833,0,0 +121512,6727,0,47834,0,0 +121513,6729,0,47835,0,0 +121514,6730,0,47603,0,0 +121515,6731,0,47836,0,0 +121516,6732,0,47837,0,0 +121517,6733,0,47838,0,0 +121521,6737,0,47839,0,0 +121522,6738,0,47840,0,0 +121523,6739,0,47428,0,0 +121524,6740,0,47841,0,0 +121525,6741,0,47842,0,0 +121526,6742,0,47843,0,0 +121528,6744,0,47844,0,0 +121529,6745,0,47845,0,0 +121530,6746,0,47846,0,0 +121531,6747,0,47847,0,0 +121535,6751,0,45995,0,0 +121536,6752,0,47848,0,0 +121548,6773,0,46747,0,0 +121549,6774,0,47849,0,0 +121555,6780,0,47850,0,0 +121559,6784,0,47851,0,0 +121561,6786,0,47852,0,0 +121562,6787,0,47853,0,0 +121563,6788,0,47854,0,0 +121564,6789,0,47855,0,0 +121566,6791,0,47856,0,0 +121567,6792,0,47857,0,0 +121568,6793,0,47537,0,0 +121569,6794,0,46828,0,0 +121570,6795,0,47858,0,0 +121571,6796,0,47859,0,0 +121572,6797,0,47860,0,0 +121573,6798,0,47861,0,0 +121576,6801,0,47862,0,0 +121577,6802,0,47863,0,0 +121578,6803,0,46445,0,0 +121579,6804,0,47864,0,0 +121581,6806,0,47865,0,0 +121590,6828,0,47866,0,0 +121591,6829,0,46428,0,0 +121592,6830,0,47867,0,0 +121593,6831,0,47868,0,0 +121594,6832,0,47869,0,0 +121595,6833,0,47870,0,0 +121596,6834,0,47871,0,0 +121597,6835,0,47872,0,0 +121598,6836,0,47873,0,0 +121625,6896,0,47874,0,0 +121626,6898,0,46568,0,0 +121627,6900,0,47875,0,0 +121628,6901,0,47636,0,0 +121629,6902,0,47876,0,0 +121630,6903,0,47877,0,0 +121631,6904,0,47878,0,0 +121632,6905,0,47879,0,0 +121633,6906,0,47534,0,0 +121634,6907,0,47880,0,0 +121635,6908,0,47881,0,0 +121636,6909,0,47882,0,0 +121637,6910,0,47883,0,0 +121638,6911,0,47884,0,0 +121650,6946,0,47885,0,0 +121657,6953,0,47886,0,0 +121658,6966,0,47887,0,0 +121659,6967,0,47888,0,0 +121660,6968,0,47889,0,0 +121661,6969,0,47890,0,0 +121662,6970,0,47891,0,0 +121663,6971,0,47087,0,0 +121664,6972,0,47892,0,0 +121665,6973,0,47893,0,0 +121666,6974,0,47894,0,0 +121667,6975,0,47895,0,0 +121668,6976,0,47896,0,0 +121669,6977,0,47897,0,0 +121670,6978,0,47898,0,0 +121671,6979,0,47899,0,0 +121672,6980,0,47900,0,0 +121673,6981,0,47890,0,0 +121674,6982,0,47901,0,0 +121675,6983,0,47902,0,0 +121676,6984,0,47903,0,0 +121677,6985,0,47904,0,0 +121689,6998,0,47905,0,0 +121691,7000,0,47134,0,0 +121692,7001,0,47906,0,0 +121693,7002,0,46911,0,0 +121694,7003,0,47907,0,0 +121695,7004,0,46319,0,0 +121696,7005,0,46246,0,0 +121699,7026,0,47908,0,0 +121700,7027,0,47909,0,0 +121701,7046,0,47910,0,0 +121702,7047,0,47911,0,0 +121703,7048,0,47912,0,0 +121704,7049,0,47913,0,0 +121705,7050,0,47914,0,0 +121706,7051,0,47915,0,0 +121707,7052,0,47916,0,0 +121708,7053,0,47917,0,0 +121709,7054,0,47918,0,0 +121710,7055,0,47919,0,0 +121711,7056,0,47920,0,0 +121712,7057,0,47921,0,0 +121713,7058,0,47922,0,0 +121714,7059,0,47923,0,0 +121715,7060,0,47924,0,0 +121716,7061,0,47925,0,0 +121717,7062,0,47926,0,0 +121718,7063,0,47927,0,0 +121719,7064,0,47928,0,0 +121720,7065,0,47929,0,0 +121721,7066,0,47930,0,0 +121749,7094,0,45812,0,0 +121750,7095,0,47931,0,0 +121757,7106,0,47932,0,0 +121758,7107,0,47933,0,0 +121759,7108,0,47934,0,0 +121760,7109,0,47935,0,0 +121761,7110,0,47936,0,0 +121762,7111,0,47937,0,0 +121763,7112,0,47938,0,0 +121764,7113,0,47939,0,0 +121766,7115,0,46242,0,0 +121767,7116,0,47940,0,0 +121768,7117,0,47941,0,0 +121769,7118,0,47942,0,0 +121771,7120,0,47943,0,0 +121775,7129,0,47944,0,0 +121776,7130,0,47087,0,0 +121778,7132,0,47308,0,0 +121779,7133,0,46747,0,0 +121785,7166,0,47945,0,0 +121786,7167,0,46281,0,0 +121788,7169,0,47945,0,0 +121789,7170,0,47946,0,0 +121790,7171,0,47947,0,0 +121791,7187,0,47948,0,0 +121792,7188,0,45734,0,0 +121793,7189,0,47949,0,0 +121803,7229,0,47031,0,0 +121804,7230,0,47950,0,0 +121820,7276,0,46002,0,0 +121821,7277,0,47951,0,0 +121824,7280,0,47953,0,0 +121825,7281,0,47954,0,0 +121826,7282,0,47955,0,0 +121827,7283,0,46350,0,0 +121828,7284,0,46092,0,0 +121829,7285,0,47956,0,0 +121841,7297,0,47957,0,0 +121842,7298,0,47958,0,0 +121843,7299,0,47959,0,0 +121848,7326,0,47960,0,0 +121849,7327,0,47900,0,0 +121850,7328,0,47961,0,0 +121851,7329,0,47962,0,0 +121852,7330,0,46152,0,0 +121853,7331,0,47963,0,0 +121854,7332,0,47964,0,0 +121856,7334,0,47965,0,0 +121857,7335,0,47966,0,0 +121858,7336,0,47967,0,0 +121866,7344,0,47957,0,0 +121870,7348,0,47137,0,0 +121871,7349,0,45832,0,0 +121872,7350,0,47968,0,0 +121873,7351,0,47969,0,0 +121874,7352,0,47970,0,0 +121875,7353,0,47971,0,0 +121876,7354,0,47972,0,0 +121877,7355,0,47973,0,0 +121878,7356,0,46902,0,0 +121879,7357,0,47974,0,0 +121880,7358,0,47975,0,0 +121881,7359,0,47976,0,0 +121888,7366,0,47977,0,0 +121889,7367,0,47978,0,0 +121890,7368,0,47979,0,0 +121891,7369,0,47980,0,0 +121892,7370,0,47981,0,0 +121895,7373,0,47983,0,0 +121896,7374,0,47984,0,0 +121897,7375,0,46660,0,0 +121899,7377,0,47985,0,0 +121900,7378,0,46931,0,0 +121901,7386,0,47986,0,0 +121902,7387,0,47987,0,0 +121905,7390,0,47988,0,0 +121906,7391,0,47989,0,0 +121908,7406,0,46929,0,0 +121909,7407,0,45992,0,0 +121910,7408,0,46935,0,0 +121911,7409,0,46930,0,0 +121912,7410,0,46931,0,0 +121913,7411,0,47397,0,0 +121914,7412,0,46933,0,0 +121915,7413,0,47990,0,0 +121916,7414,0,46934,0,0 +121917,7415,0,47991,0,0 +121918,7416,0,47992,0,0 +121919,7417,0,47993,0,0 +121920,7418,0,47994,0,0 +121921,7419,0,47995,0,0 +121922,7420,0,47996,0,0 +121923,7421,0,47997,0,0 +121924,7422,0,47998,0,0 +121925,7423,0,47999,0,0 +121926,7424,0,48000,0,0 +121929,7429,0,48001,0,0 +121930,7430,0,48002,0,0 +121931,7431,0,48003,0,0 +121932,7432,0,48004,0,0 +121933,7433,0,48005,0,0 +121934,7434,0,48006,0,0 +121935,7435,0,48007,0,0 +121936,7436,0,48008,0,0 +121937,7437,0,48009,0,0 +121938,7438,0,48010,0,0 +121939,7439,0,48011,0,0 +121940,7440,0,48012,0,0 +121941,7441,0,48013,0,0 +121943,7443,0,48014,0,0 +121944,7444,0,48015,0,0 +121945,7445,0,48016,0,0 +121946,7446,0,48017,0,0 +121947,7447,0,48018,0,0 +121948,7448,0,48019,0,0 +121954,7454,0,48020,0,0 +121955,7455,0,48021,0,0 +121956,7456,0,48022,0,0 +121957,7457,0,48023,0,0 +121958,7458,0,48024,0,0 +121959,7459,0,48025,0,0 +121960,7460,0,48026,0,0 +121961,7461,0,48027,0,0 +121962,7462,0,48028,0,0 +121963,7463,0,47076,0,0 +121965,7465,0,48029,0,0 +121966,7468,0,48030,0,0 +121967,7469,0,48031,0,0 +121968,7470,0,48032,0,0 +121969,7471,0,48033,0,0 +121970,7472,0,48034,0,0 +121971,7473,0,48035,0,0 +121972,7474,0,48036,0,0 +121973,7475,0,48037,0,0 +121974,7476,0,48038,0,0 +121975,7477,0,48039,0,0 +121976,7478,0,48040,0,0 +121977,7479,0,47108,0,0 +121978,7480,0,48041,0,0 +121979,7481,0,48042,0,0 +121980,7482,0,48043,0,0 +121981,7483,0,48044,0,0 +121982,7484,0,48045,0,0 +121983,7485,0,48046,0,0 +121984,7486,0,48047,0,0 +121985,7487,0,48048,0,0 +121986,7488,0,48049,0,0 +121987,7489,0,48050,0,0 +121988,7490,0,48051,0,0 +121989,7491,0,48052,0,0 +121990,7492,0,48053,0,0 +121991,7493,0,48054,0,0 +121992,7494,0,48055,0,0 +121993,7495,0,47435,0,0 +121994,7496,0,48056,0,0 +121999,7507,0,48058,0,0 +122000,7508,0,48058,0,0 +122001,7509,0,48059,0,0 +122002,7510,0,48060,0,0 +122003,7511,0,48061,0,0 +122004,7512,0,48062,0,0 +122005,7513,0,48063,0,0 +122006,7514,0,48064,0,0 +122007,7515,0,48065,0,0 +122009,7517,0,48066,0,0 +122010,7518,0,48067,0,0 +122011,7519,0,48068,0,0 +122012,7520,0,48069,0,0 +122013,7521,0,48070,0,0 +122014,7522,0,48071,0,0 +122015,7523,0,48072,0,0 +122016,7524,0,47170,0,0 +122017,7525,0,48073,0,0 +122018,7526,0,48074,0,0 +122019,7527,0,48075,0,0 +122020,7528,0,48076,0,0 +122021,7529,0,46614,0,0 +122022,7530,0,48077,0,0 +122023,7531,0,48078,0,0 +122024,7532,0,48079,0,0 +122025,7533,0,48080,0,0 +122026,7534,0,48081,0,0 +122027,7535,0,48082,0,0 +122028,7536,0,48083,0,0 +122029,7537,0,48084,0,0 +122030,7538,0,46159,0,0 +122031,7539,0,46258,0,0 +122032,7540,0,48085,0,0 +122033,7541,0,46257,0,0 +122034,7542,0,46255,0,0 +122035,7543,0,45839,0,0 +122036,7544,0,48086,0,0 +122037,7545,0,46256,0,0 +122038,7546,0,46254,0,0 +122044,7554,0,48087,0,0 +122045,7555,0,47385,0,0 +122046,7556,0,46568,0,0 +122047,7557,0,48088,0,0 +122048,7558,0,48089,0,0 +122049,7559,0,46791,0,0 +122058,7606,0,48090,0,0 +122059,7607,0,48091,0,0 +122060,7608,0,46490,0,0 +122061,7609,0,48092,0,0 +122062,7610,0,46567,0,0 +122063,7611,0,48093,0,0 +122064,7612,0,48094,0,0 +122082,7677,0,47309,0,0 +122086,7682,0,46452,0,0 +122087,7683,0,48095,0,0 +122088,7684,0,48096,0,0 +122089,7685,0,48097,0,0 +122091,7687,0,48098,0,0 +122092,7688,0,48099,0,0 +122093,7689,0,48100,0,0 +122094,7690,0,48101,0,0 +122095,7691,0,48102,0,0 +122096,7706,0,48103,0,0 +122097,7707,0,48104,0,0 +122098,7708,0,47422,0,0 +122099,7709,0,48105,0,0 +122100,7710,0,48106,0,0 +122101,7711,0,48107,0,0 +122102,7712,0,48108,0,0 +122103,7713,0,46272,0,0 +122104,7714,0,48109,0,0 +122107,7717,0,48094,0,0 +122108,7718,0,48110,0,0 +122109,7719,0,48111,0,0 +122110,7720,0,48112,0,0 +122111,7721,0,48113,0,0 +122113,7723,0,48114,0,0 +122114,7724,0,48115,0,0 +122115,7726,0,48116,0,0 +122116,7727,0,47319,0,0 +122117,7728,0,48117,0,0 +122118,7729,0,47186,0,0 +122119,7730,0,48118,0,0 +122125,7736,0,47433,0,0 +122127,7738,0,48119,0,0 +122128,7739,0,47502,0,0 +122133,7747,0,48120,0,0 +122134,7749,0,48121,0,0 +122135,7750,0,48122,0,0 +122136,7751,0,47787,0,0 +122137,7752,0,48123,0,0 +122138,7753,0,48124,0,0 +122139,7754,0,48125,0,0 +122140,7755,0,48126,0,0 +122141,7756,0,48127,0,0 +122142,7757,0,48128,0,0 +122143,7758,0,48129,0,0 +122144,7759,0,48130,0,0 +122145,7760,0,48131,0,0 +122146,7761,0,48132,0,0 +122153,7786,0,48133,0,0 +122154,7787,0,47866,0,0 +122162,7826,0,45790,0,0 +122182,7913,0,46699,0,0 +122183,7914,0,48134,0,0 +122184,7915,0,48135,0,0 +122185,7916,0,48136,0,0 +122186,7917,0,48137,0,0 +122187,7918,0,48138,0,0 +122188,7919,0,48139,0,0 +122189,7920,0,45754,0,0 +122190,7921,0,48140,0,0 +122191,7922,0,48085,0,0 +122193,7924,0,46123,0,0 +122194,7925,0,45760,0,0 +122195,7926,0,48141,0,0 +122196,7927,0,48142,0,0 +122197,7928,0,48143,0,0 +122198,7929,0,48144,0,0 +122199,7930,0,47516,0,0 +122200,7931,0,47087,0,0 +122201,7932,0,48145,0,0 +122202,7933,0,48146,0,0 +122203,7934,0,48147,0,0 +122204,7935,0,48148,0,0 +122205,7936,0,48149,0,0 +122206,7937,0,48150,0,0 +122207,7938,0,48151,0,0 +122208,7939,0,48152,0,0 +122209,7940,0,46961,0,0 +122210,7941,0,48153,0,0 +122211,7942,0,48154,0,0 +122212,7943,0,48155,0,0 +122213,7944,0,48156,0,0 +122214,7945,0,45891,0,0 +122215,7946,0,48157,0,0 +122216,7947,0,48158,0,0 +122217,7948,0,48159,0,0 +122218,7949,0,48160,0,0 +122219,7950,0,48161,0,0 +122220,7951,0,48162,0,0 +122221,7952,0,48163,0,0 +122222,7953,0,48164,0,0 +122223,7954,0,46277,0,0 +122224,7955,0,48165,0,0 +122225,7956,0,48166,0,0 +122226,7957,0,48167,0,0 +122227,7958,0,48168,0,0 +122228,7959,0,48169,0,0 +122229,7960,0,46958,0,0 +122230,7961,0,48170,0,0 +122232,7963,0,48171,0,0 +122265,7996,0,46963,0,0 +122266,7997,0,48172,0,0 +122267,8006,0,48173,0,0 +122285,8067,0,46427,0,0 +122286,8068,0,46427,0,0 +122287,8069,0,46427,0,0 +122289,8071,0,47415,0,0 +122298,8080,0,48174,0,0 +122299,8081,0,46444,0,0 +122300,8082,0,48175,0,0 +122301,8083,0,47104,0,0 +122302,8084,0,48176,0,0 +122303,8085,0,48177,0,0 +122304,8086,0,48178,0,0 +122306,8088,0,48179,0,0 +122307,8089,0,48180,0,0 +122308,8090,0,48181,0,0 +122309,8091,0,48182,0,0 +122310,8092,0,46027,0,0 +122311,8093,0,48183,0,0 +122312,8094,0,48184,0,0 +122314,8106,0,48185,0,0 +122315,8107,0,48186,0,0 +122316,8108,0,48187,0,0 +122317,8109,0,47855,0,0 +122318,8110,0,48188,0,0 +122319,8111,0,48189,0,0 +122320,8112,0,48190,0,0 +122321,8113,0,48191,0,0 +122322,8114,0,48192,0,0 +122323,8115,0,48193,0,0 +122324,8116,0,48194,0,0 +122325,8117,0,48195,0,0 +122326,8118,0,48196,0,0 +122327,8119,0,48197,0,0 +122328,8120,0,48198,0,0 +122329,8121,0,48199,0,0 +122330,8122,0,48200,0,0 +122331,8123,0,48201,0,0 +122332,8124,0,48202,0,0 +122333,8125,0,48203,0,0 +122334,8126,0,48204,0,0 +122335,8127,0,48205,0,0 +122336,8128,0,48206,0,0 +122337,8129,0,48207,0,0 +122338,8130,0,48208,0,0 +122339,8131,0,48209,0,0 +122340,8132,0,48210,0,0 +122341,8133,0,48211,0,0 +122342,8134,0,48212,0,0 +122343,8135,0,47389,0,0 +122345,8137,0,48213,0,0 +122346,8138,0,48214,0,0 +122347,8139,0,48215,0,0 +122348,8140,0,48216,0,0 +122349,8141,0,48217,0,0 +122350,8142,0,48147,0,0 +122351,8143,0,48218,0,0 +122352,8144,0,48219,0,0 +122363,8156,0,48220,0,0 +122364,8157,0,48221,0,0 +122365,8158,0,48222,0,0 +122366,8159,0,47933,0,0 +122367,8160,0,48223,0,0 +122368,8161,0,48224,0,0 +122369,8162,0,48225,0,0 +122370,8163,0,48138,0,0 +122381,8174,0,48226,0,0 +122382,8175,0,48227,0,0 +122383,8176,0,48228,0,0 +122384,8177,0,48229,0,0 +122385,8178,0,48230,0,0 +122386,8179,0,48231,0,0 +122387,8180,0,48232,0,0 +122388,8181,0,46425,0,0 +122389,8182,0,48233,0,0 +122390,8183,0,48234,0,0 +122391,8184,0,48235,0,0 +122392,8185,0,48236,0,0 +122393,8186,0,47906,0,0 +122394,8187,0,48237,0,0 +122395,8188,0,48238,0,0 +122396,8189,0,48239,0,0 +122397,8190,0,48240,0,0 +122398,8191,0,47108,0,0 +122399,8192,0,48241,0,0 +122400,8193,0,48242,0,0 +122401,8194,0,48243,0,0 +122402,8195,0,47196,0,0 +122403,8196,0,47396,0,0 +122404,8197,0,48244,0,0 +122405,8198,0,48245,0,0 +122406,8199,0,48246,0,0 +122407,8200,0,47980,0,0 +122408,8201,0,48247,0,0 +122409,8202,0,48248,0,0 +122410,8203,0,48197,0,0 +122411,8204,0,48199,0,0 +122412,8205,0,48196,0,0 +122413,8206,0,48201,0,0 +122414,8207,0,47271,0,0 +122415,8208,0,47684,0,0 +122416,8209,0,48195,0,0 +122417,8210,0,48249,0,0 +122418,8211,0,48250,0,0 +122419,8212,0,48251,0,0 +122420,8213,0,48252,0,0 +122421,8214,0,47108,0,0 +122422,8215,0,48044,0,0 +122423,8216,0,48253,0,0 +122426,8223,0,48255,0,0 +122427,8224,0,48256,0,0 +122428,8225,0,48257,0,0 +122429,8226,0,48258,0,0 +122432,8245,0,48259,0,0 +122433,8246,0,48260,0,0 +122434,8247,0,48261,0,0 +122435,8248,0,48262,0,0 +122436,8249,0,48263,0,0 +122437,8250,0,48264,0,0 +122438,8251,0,48265,0,0 +122439,8252,0,48266,0,0 +122440,8253,0,48267,0,0 +122441,8254,0,48268,0,0 +122442,8255,0,48082,0,0 +122443,8256,0,48269,0,0 +122444,8257,0,48270,0,0 +122445,8258,0,48271,0,0 +122446,8259,0,48272,0,0 +122447,8260,0,48273,0,0 +122448,8261,0,47693,0,0 +122449,8262,0,48274,0,0 +122450,8263,0,48275,0,0 +122451,8264,0,48276,0,0 +122452,8265,0,48277,0,0 +122453,8266,0,48278,0,0 +122454,8267,0,48279,0,0 +122455,8268,0,48280,0,0 +122456,8269,0,48281,0,0 +122457,8270,0,48147,0,0 +122458,8271,0,48282,0,0 +122459,8272,0,48283,0,0 +122460,8273,0,48284,0,0 +122461,8274,0,48285,0,0 +122462,8275,0,46794,0,0 +122463,8276,0,48286,0,0 +122464,8277,0,48287,0,0 +122465,8278,0,48288,0,0 +122466,8279,0,48289,0,0 +122467,8280,0,48290,0,0 +122468,8281,0,48291,0,0 +122469,8282,0,48292,0,0 +122470,8283,0,48293,0,0 +122471,8284,0,48294,0,0 +122472,8285,0,48295,0,0 +122473,8286,0,48296,0,0 +122474,8287,0,48297,0,0 +122475,8288,0,48298,0,0 +122476,8289,0,48299,0,0 +122477,8290,0,48300,0,0 +122478,8291,0,48301,0,0 +122479,8292,0,48302,0,0 +122480,8293,0,48303,0,0 +122481,8294,0,48304,0,0 +122482,8295,0,48305,0,0 +122483,8296,0,48306,0,0 +122484,8297,0,48307,0,0 +122485,8298,0,48308,0,0 +122486,8299,0,48309,0,0 +122487,8300,0,48310,0,0 +122488,8301,0,48311,0,0 +122489,8302,0,48312,0,0 +122490,8303,0,48313,0,0 +122491,8304,0,48314,0,0 +122492,8305,0,48315,0,0 +122493,8306,0,48316,0,0 +122494,8307,0,48317,0,0 +122495,8308,0,48318,0,0 +122496,8309,0,48319,0,0 +122497,8310,0,48320,0,0 +122498,8311,0,48321,0,0 +122499,8312,0,48322,0,0 +122500,8313,0,48323,0,0 +122501,8314,0,48324,0,0 +122502,8315,0,48325,0,0 +122503,8316,0,48326,0,0 +122504,8317,0,48327,0,0 +122505,8318,0,48328,0,0 +122506,8319,0,48329,0,0 +122507,8320,0,48330,0,0 +122511,8345,0,48331,0,0 +122512,8346,0,47681,0,0 +122513,8347,0,46609,0,0 +122514,8348,0,48332,0,0 +122515,8349,0,47120,0,0 +122521,8367,0,46606,0,0 +122617,8624,0,48333,0,0 +122618,8625,0,48334,0,0 +122619,8626,0,48335,0,0 +122643,8708,0,48336,0,0 +122646,8746,0,48337,0,0 +122647,8747,0,47990,0,0 +122648,8748,0,45909,0,0 +122649,8749,0,48338,0,0 +122650,8750,0,46769,0,0 +122651,8751,0,47087,0,0 +122652,8752,0,48339,0,0 +122653,8753,0,47684,0,0 +122654,8754,0,48340,0,0 +122655,8755,0,46027,0,0 +122685,9042,0,46824,0,0 +122712,9239,0,47436,0,0 +122750,9285,0,48341,0,0 +122751,9286,0,48342,0,0 +122752,9287,0,48343,0,0 +122753,9288,0,48344,0,0 +122754,9289,0,48345,0,0 +122755,9290,0,46027,0,0 +122756,9291,0,48346,0,0 +122757,9292,0,48347,0,0 +122806,9359,0,46415,0,0 +122813,9366,0,48348,0,0 +122819,9372,0,48349,0,0 +122820,9375,0,48350,0,0 +122821,9376,0,48351,0,0 +122822,9377,0,46275,0,0 +122823,9378,0,47611,0,0 +122824,9379,0,48352,0,0 +122825,9381,0,48353,0,0 +122826,9382,0,47989,0,0 +122827,9383,0,48354,0,0 +122828,9384,0,48355,0,0 +122829,9385,0,48356,0,0 +122830,9386,0,48357,0,0 +122831,9387,0,48358,0,0 +122832,9388,0,48359,0,0 +122833,9389,0,48360,0,0 +122834,9390,0,48361,0,0 +122835,9391,0,45882,0,0 +122836,9392,0,48362,0,0 +122837,9393,0,46498,0,0 +122838,9394,0,48363,0,0 +122839,9395,0,48364,0,0 +122840,9396,0,48365,0,0 +122841,9397,0,48366,0,0 +122842,9398,0,48367,0,0 +122843,9399,0,46426,0,0 +122844,9400,0,48368,0,0 +122845,9401,0,46125,0,0 +122846,9402,0,48369,0,0 +122847,9403,0,48370,0,0 +122848,9404,0,48371,0,0 +122849,9405,0,48372,0,0 +122850,9406,0,48373,0,0 +122851,9407,0,48374,0,0 +122852,9408,0,48375,0,0 +122853,9409,0,48376,0,0 +122854,9410,0,48377,0,0 +122855,9411,0,45837,0,0 +122856,9412,0,48378,0,0 +122857,9413,0,48379,0,0 +122858,9414,0,48380,0,0 +122859,9415,0,48381,0,0 +122860,9416,0,48382,0,0 +122861,9418,0,48383,0,0 +122862,9419,0,48384,0,0 +122863,9420,0,48385,0,0 +122865,9422,0,48386,0,0 +122866,9423,0,48387,0,0 +122867,9424,0,48388,0,0 +122868,9425,0,48389,0,0 +122869,9426,0,48390,0,0 +122870,9427,0,48391,0,0 +122871,9428,0,48392,0,0 +122872,9429,0,48393,0,0 +122873,9430,0,48394,0,0 +122874,9431,0,48395,0,0 +122875,9432,0,48321,0,0 +122876,9433,0,48396,0,0 +122877,9434,0,48397,0,0 +122878,9435,0,48206,0,0 +122887,9444,0,47485,0,0 +122888,9445,0,48398,0,0 +122889,9446,0,46756,0,0 +122891,9448,0,46974,0,0 +122892,9449,0,48399,0,0 +122893,9450,0,48163,0,0 +122895,9452,0,48400,0,0 +122896,9453,0,48401,0,0 +122897,9454,0,48402,0,0 +122898,9455,0,48403,0,0 +122899,9456,0,48404,0,0 +122900,9457,0,48405,0,0 +122901,9458,0,48406,0,0 +122902,9459,0,48407,0,0 +122907,9465,0,47611,0,0 +122909,9467,0,48408,0,0 +122911,9469,0,46159,0,0 +122912,9470,0,48247,0,0 +122915,9473,0,48409,0,0 +122916,9474,0,48410,0,0 +122917,9475,0,46783,0,0 +122918,9476,0,48079,0,0 +122919,9477,0,48411,0,0 +122920,9478,0,48412,0,0 +122921,9479,0,48331,0,0 +122922,9480,0,48413,0,0 +122923,9481,0,48414,0,0 +122924,9482,0,48415,0,0 +122925,9483,0,47414,0,0 +122926,9484,0,48416,0,0 +122927,9485,0,48417,0,0 +122928,9486,0,48418,0,0 +122929,9487,0,48419,0,0 +122930,9488,0,48420,0,0 +122931,9489,0,48421,0,0 +122932,9490,0,48422,0,0 +122933,9491,0,46909,0,0 +122934,9492,0,48423,0,0 +122936,9508,0,48424,0,0 +122937,9509,0,47983,0,0 +122938,9510,0,48425,0,0 +122939,9511,0,48426,0,0 +122940,9512,0,48427,0,0 +122941,9513,0,48428,0,0 +122942,9514,0,48429,0,0 +122943,9515,0,48430,0,0 +122944,9516,0,48431,0,0 +122945,9517,0,48432,0,0 +122946,9518,0,48433,0,0 +122947,9519,0,48434,0,0 +122948,9520,0,48435,0,0 +122949,9521,0,48436,0,0 +122950,9522,0,47485,0,0 +122952,9527,0,48437,0,0 +122956,9531,0,48438,0,0 +122959,9534,0,48439,0,0 +122960,9535,0,48440,0,0 +122961,9536,0,48441,0,0 +123018,9598,0,47298,0,0 +123019,9599,0,46728,0,0 +123020,9600,0,48442,0,0 +123021,9601,0,48443,0,0 +123022,9603,0,48444,0,0 +123023,9604,0,48445,0,0 +123024,9605,0,46902,0,0 +123026,9607,0,48446,0,0 +123027,9608,0,46131,0,0 +123028,9609,0,48447,0,0 +123034,9623,0,48448,0,0 +123035,9624,0,48242,0,0 +123036,9625,0,48021,0,0 +123037,9626,0,48449,0,0 +123038,9627,0,46498,0,0 +123041,9630,0,48450,0,0 +123042,9631,0,47096,0,0 +123043,9632,0,48273,0,0 +123044,9633,0,48269,0,0 +123045,9634,0,48451,0,0 +123046,9635,0,48452,0,0 +123047,9636,0,46751,0,0 +123048,9637,0,48453,0,0 +123049,9638,0,48454,0,0 +123050,9639,0,48455,0,0 +123051,9640,0,48456,0,0 +123054,9643,0,48457,0,0 +123055,9644,0,46550,0,0 +123056,9645,0,48458,0,0 +123057,9646,0,48459,0,0 +123058,9647,0,48241,0,0 +123059,9648,0,48460,0,0 +123060,9649,0,48461,0,0 +123061,9650,0,48462,0,0 +123062,9651,0,48463,0,0 +123063,9652,0,48464,0,0 +123064,9653,0,48465,0,0 +123065,9654,0,48466,0,0 +123067,9656,0,48137,0,0 +123068,9657,0,47285,0,0 +123069,9658,0,48467,0,0 +123070,9659,0,48455,0,0 +123071,9660,0,48468,0,0 +123072,9661,0,48469,0,0 +123073,9662,0,48470,0,0 +123074,9663,0,48204,0,0 +123075,9664,0,48471,0,0 +123076,9665,0,48472,0,0 +123077,9666,0,48473,0,0 +123078,9678,0,47643,0,0 +123079,9679,0,48474,0,0 +123080,9680,0,48475,0,0 +123082,9682,0,47786,0,0 +123083,9683,0,48476,0,0 +123084,9684,0,48477,0,0 +123085,9686,0,48478,0,0 +123086,9687,0,46401,0,0 +123087,9698,0,46907,0,0 +123088,9699,0,48479,0,0 +123089,9700,0,48335,0,0 +123090,9701,0,48333,0,0 +123091,9702,0,48334,0,0 +123092,9703,0,48480,0,0 +123093,9704,0,48481,0,0 +123094,9705,0,47201,0,0 +123095,9706,0,48482,0,0 +123096,9718,0,48483,0,0 +123097,9719,0,48483,0,0 +123102,9742,0,46873,0,0 +123103,9743,0,48484,0,0 +123104,9744,0,46924,0,0 +123105,9745,0,48485,0,0 +123106,9746,0,46925,0,0 +123107,9747,0,46926,0,0 +123108,9748,0,48448,0,0 +123109,9749,0,46928,0,0 +123110,9750,0,48486,0,0 +123111,9751,0,48487,0,0 +123112,9752,0,47328,0,0 +123113,9753,0,47021,0,0 +123114,9754,0,48488,0,0 +123115,9755,0,48489,0,0 +123116,9756,0,47339,0,0 +123117,9757,0,48490,0,0 +123118,9758,0,48491,0,0 +123119,9759,0,48492,0,0 +123120,9760,0,48493,0,0 +123121,9761,0,48494,0,0 +123122,9762,0,48495,0,0 +123123,9763,0,48236,0,0 +123124,9764,0,48496,0,0 +123125,9765,0,48497,0,0 +123126,9766,0,47203,0,0 +123127,9767,0,48498,0,0 +123128,9768,0,48499,0,0 +123129,9769,0,48500,0,0 +123130,9770,0,45905,0,0 +123131,9771,0,45761,0,0 +123132,9772,0,48501,0,0 +123133,9773,0,48502,0,0 +123134,9774,0,47391,0,0 +123135,9775,0,46121,0,0 +123136,9776,0,47561,0,0 +123137,9777,0,48503,0,0 +123138,9778,0,47846,0,0 +123139,9779,0,46318,0,0 +123140,9780,0,46146,0,0 +123141,9781,0,45919,0,0 +123142,9782,0,45722,0,0 +123143,9783,0,46747,0,0 +123144,9784,0,46149,0,0 +123145,9785,0,48504,0,0 +123146,9786,0,48505,0,0 +123147,9787,0,47944,0,0 +123148,9788,0,48506,0,0 +123149,9789,0,47308,0,0 +123150,9790,0,46150,0,0 +123151,9791,0,48507,0,0 +123152,9792,0,47753,0,0 +123153,9793,0,47738,0,0 +123154,9794,0,48508,0,0 +123155,9795,0,48509,0,0 +123156,9796,0,46060,0,0 +123157,9797,0,48510,0,0 +123158,9798,0,47760,0,0 +123159,9799,0,48511,0,0 +123160,9800,0,48512,0,0 +123161,9801,0,46780,0,0 +123162,9802,0,46249,0,0 +123163,9803,0,46090,0,0 +123164,9804,0,46152,0,0 +123165,9805,0,45959,0,0 +123166,9806,0,46251,0,0 +123167,9807,0,48513,0,0 +123168,9808,0,46252,0,0 +123169,9809,0,48514,0,0 +123170,9810,0,45807,0,0 +123171,9811,0,46120,0,0 +123172,9812,0,48515,0,0 +123173,9813,0,45808,0,0 +123174,9814,0,48516,0,0 +123175,9815,0,45806,0,0 +123176,9816,0,48517,0,0 +123177,9817,0,48518,0,0 +123178,9818,0,45805,0,0 +123179,9819,0,45990,0,0 +123180,9820,0,46637,0,0 +123181,9821,0,46980,0,0 +123182,9822,0,48519,0,0 +123183,9823,0,46990,0,0 +123184,9824,0,46984,0,0 +123185,9825,0,47273,0,0 +123186,9826,0,48520,0,0 +123187,9827,0,46929,0,0 +123188,9828,0,48521,0,0 +123189,9829,0,46122,0,0 +123190,9830,0,45907,0,0 +123191,9831,0,48522,0,0 +123192,9832,0,48523,0,0 +123193,9833,0,45750,0,0 +123194,9834,0,48524,0,0 +123195,9835,0,45749,0,0 +123196,9836,0,48525,0,0 +123197,9837,0,48526,0,0 +123198,9838,0,48053,0,0 +123199,9839,0,48527,0,0 +123200,9840,0,48528,0,0 +123201,9841,0,48529,0,0 +123202,9842,0,48530,0,0 +123203,9843,0,48531,0,0 +123204,9844,0,48532,0,0 +123205,9845,0,48533,0,0 +123206,9846,0,48534,0,0 +123207,9847,0,48535,0,0 +123208,9848,0,48536,0,0 +123209,9849,0,48193,0,0 +123210,9850,0,47125,0,0 +123211,9851,0,48537,0,0 +123212,9852,0,48538,0,0 +123213,9853,0,48539,0,0 +123214,9854,0,47966,0,0 +123215,9855,0,47703,0,0 +123216,9856,0,47989,0,0 +123217,9857,0,48540,0,0 +123218,9858,0,46887,0,0 +123219,9859,0,48541,0,0 +123220,9860,0,47636,0,0 +123221,9861,0,48542,0,0 +123222,9862,0,48543,0,0 +123223,9863,0,47261,0,0 +123224,9864,0,48544,0,0 +123225,9865,0,48545,0,0 +123226,9866,0,48546,0,0 +123227,9867,0,48547,0,0 +123228,9868,0,48548,0,0 +123229,9869,0,48549,0,0 +123230,9870,0,48550,0,0 +123231,9871,0,48551,0,0 +123232,9872,0,48552,0,0 +123233,9873,0,48406,0,0 +123234,9874,0,48553,0,0 +123235,9875,0,48554,0,0 +123236,9876,0,48555,0,0 +123237,9877,0,48556,0,0 +123238,9878,0,48557,0,0 +123239,9879,0,48558,0,0 +123240,9880,0,48559,0,0 +123241,9881,0,48560,0,0 +123242,9882,0,48561,0,0 +123243,9883,0,48562,0,0 +123244,9884,0,48563,0,0 +123245,9885,0,48564,0,0 +123246,9886,0,46680,0,0 +123247,9887,0,47529,0,0 +123248,9889,0,48565,0,0 +123249,9890,0,48017,0,0 +123250,9891,0,46906,0,0 +123251,9892,0,48566,0,0 +123252,9893,0,48567,0,0 +123253,9894,0,46338,0,0 +123254,9895,0,48568,0,0 +123255,9896,0,48569,0,0 +123256,9897,0,48570,0,0 +123257,9898,0,48571,0,0 +123258,9899,0,47230,0,0 +123259,9900,0,48572,0,0 +123260,9901,0,48573,0,0 +123261,9902,0,46965,0,0 +123262,9903,0,48574,0,0 +123263,9904,0,48575,0,0 +123264,9905,0,48576,0,0 +123265,9906,0,47916,0,0 +123266,9907,0,47564,0,0 +123267,9908,0,48577,0,0 +123268,9909,0,45757,0,0 +123269,9910,0,48297,0,0 +123270,9911,0,48578,0,0 +123271,9912,0,48579,0,0 +123272,9913,0,48580,0,0 +123273,9914,0,48405,0,0 +123274,9915,0,48581,0,0 +123275,9916,0,47113,0,0 +123276,9917,0,48252,0,0 +123277,9918,0,48582,0,0 +123278,9919,0,48583,0,0 +123279,9920,0,48584,0,0 +123280,9921,0,46611,0,0 +123281,9922,0,48251,0,0 +123282,9923,0,48585,0,0 +123283,9924,0,48250,0,0 +123284,9925,0,48586,0,0 +123285,9926,0,48587,0,0 +123286,9927,0,48588,0,0 +123287,9928,0,48589,0,0 +123288,9929,0,48590,0,0 +123289,9930,0,48591,0,0 +123290,9931,0,48592,0,0 +123291,9932,0,48135,0,0 +123292,9933,0,48593,0,0 +123293,9934,0,48594,0,0 +123294,9935,0,48595,0,0 +123295,9936,0,47564,0,0 +123296,9937,0,45757,0,0 +123297,9938,0,48577,0,0 +123298,9939,0,47162,0,0 +123299,9940,0,48596,0,0 +123300,9941,0,48597,0,0 +123301,9942,0,48578,0,0 +123302,9943,0,48598,0,0 +123303,9944,0,48599,0,0 +123304,9945,0,47916,0,0 +123305,9946,0,48576,0,0 +123306,9947,0,48600,0,0 +123307,9948,0,48601,0,0 +123308,9949,0,48602,0,0 +123309,9950,0,48603,0,0 +123310,9951,0,48604,0,0 +123311,9952,0,48605,0,0 +123312,9953,0,46480,0,0 +123313,9954,0,48606,0,0 +123314,9955,0,48607,0,0 +123315,9956,0,48608,0,0 +123316,9957,0,48609,0,0 +123317,9958,0,48610,0,0 +123318,9959,0,48611,0,0 +123319,9960,0,45819,0,0 +123320,9961,0,48612,0,0 +123321,9962,0,48613,0,0 +123322,9963,0,48614,0,0 +123323,9964,0,48615,0,0 +123324,9965,0,48616,0,0 +123325,9966,0,48617,0,0 +123326,9967,0,48618,0,0 +123327,9968,0,48619,0,0 +123328,9969,0,48620,0,0 +123329,9970,0,48621,0,0 +123330,9971,0,48622,0,0 +123331,9972,0,48623,0,0 +123332,9973,0,48624,0,0 +123333,9974,0,47694,0,0 +123334,9978,0,48625,0,0 +123335,9998,0,48626,0,0 +123336,9999,0,48627,0,0 +123338,10001,0,48628,0,0 +123339,10002,0,48629,0,0 +123340,10003,0,48630,0,0 +123341,10004,0,48631,0,0 +123343,10006,0,48632,0,0 +123344,10007,0,48633,0,0 +123345,10008,0,48634,0,0 +123346,10009,0,48265,0,0 +123347,10010,0,48031,0,0 +123348,10011,0,48033,0,0 +123349,10018,0,48635,0,0 +123350,10019,0,48636,0,0 +123351,10020,0,48637,0,0 +123352,10021,0,48638,0,0 +123354,10023,0,48639,0,0 +123355,10024,0,48640,0,0 +123356,10025,0,48641,0,0 +123357,10026,0,48642,0,0 +123358,10027,0,48643,0,0 +123359,10028,0,48644,0,0 +123360,10029,0,48645,0,0 +123361,10030,0,48646,0,0 +123362,10031,0,48647,0,0 +123363,10032,0,48648,0,0 +123364,10033,0,48649,0,0 +123365,10034,0,47870,0,0 +123366,10035,0,47872,0,0 +123367,10036,0,47871,0,0 +123368,10037,0,48650,0,0 +123369,10038,0,47281,0,0 +123370,10039,0,48034,0,0 +123371,10040,0,48651,0,0 +123372,10041,0,48652,0,0 +123373,10042,0,48653,0,0 +123374,10043,0,48654,0,0 +123375,10044,0,48655,0,0 +123376,10045,0,45781,0,0 +123377,10046,0,47591,0,0 +123378,10047,0,48656,0,0 +123379,10048,0,48657,0,0 +123382,10052,0,48658,0,0 +123383,10053,0,48659,0,0 +123384,10054,0,48660,0,0 +123385,10055,0,48661,0,0 +123386,10056,0,48662,0,0 +123387,10057,0,48663,0,0 +123388,10058,0,48664,0,0 +123389,10059,0,48665,0,0 +123390,10060,0,47100,0,0 +123391,10061,0,48666,0,0 +123392,10062,0,48667,0,0 +123393,10063,0,48668,0,0 +123394,10064,0,48669,0,0 +123395,10065,0,48670,0,0 +123396,10066,0,48671,0,0 +123397,10067,0,48672,0,0 +123398,10068,0,48673,0,0 +123399,10069,0,48674,0,0 +123400,10070,0,48675,0,0 +123401,10071,0,48198,0,0 +123402,10072,0,48676,0,0 +123403,10073,0,46769,0,0 +123404,10074,0,48464,0,0 +123405,10075,0,48677,0,0 +123406,10076,0,48678,0,0 +123407,10077,0,48679,0,0 +123408,10078,0,48680,0,0 +123409,10079,0,48681,0,0 +123410,10080,0,48682,0,0 +123411,10081,0,48683,0,0 +123412,10082,0,48684,0,0 +123413,10083,0,48685,0,0 +123414,10084,0,48686,0,0 +123415,10085,0,48687,0,0 +123416,10086,0,48688,0,0 +123417,10087,0,48689,0,0 +123418,10088,0,48690,0,0 +123419,10089,0,48691,0,0 +123420,10090,0,47820,0,0 +123421,10091,0,48692,0,0 +123422,10092,0,48693,0,0 +123423,10093,0,48680,0,0 +123424,10094,0,48694,0,0 +123425,10095,0,48695,0,0 +123426,10096,0,48696,0,0 +123427,10097,0,48697,0,0 +123428,10098,0,48698,0,0 +123429,10099,0,48699,0,0 +123430,10100,0,48700,0,0 +123431,10101,0,48701,0,0 +123432,10102,0,48702,0,0 +123433,10103,0,48703,0,0 +123434,10104,0,48704,0,0 +123435,10105,0,48705,0,0 +123436,10106,0,48706,0,0 +123437,10107,0,48707,0,0 +123438,10108,0,48708,0,0 +123439,10109,0,48709,0,0 +123440,10110,0,48710,0,0 +123441,10111,0,46964,0,0 +123442,10112,0,48711,0,0 +123443,10113,0,48712,0,0 +123444,10118,0,48713,0,0 +123445,10119,0,48714,0,0 +123446,10120,0,48715,0,0 +123447,10121,0,48716,0,0 +123448,10122,0,48717,0,0 +123449,10123,0,48718,0,0 +123450,10124,0,48719,0,0 +123451,10125,0,48720,0,0 +123452,10126,0,48721,0,0 +123453,10127,0,48722,0,0 +123454,10128,0,48723,0,0 +123455,10129,0,48724,0,0 +123456,10130,0,48725,0,0 +123457,10131,0,48726,0,0 +123458,10132,0,48727,0,0 +123459,10133,0,48728,0,0 +123460,10134,0,48143,0,0 +123461,10135,0,48729,0,0 +123462,10136,0,48730,0,0 +123463,10137,0,48731,0,0 +123464,10138,0,48732,0,0 +123465,10139,0,48733,0,0 +123466,10140,0,48734,0,0 +123467,10141,0,48735,0,0 +123468,10142,0,48736,0,0 +123469,10143,0,48737,0,0 +123470,10144,0,48738,0,0 +123471,10145,0,48739,0,0 +123472,10146,0,48740,0,0 +123473,10147,0,48741,0,0 +123474,10148,0,48742,0,0 +123475,10149,0,48743,0,0 +123476,10150,0,48200,0,0 +123477,10151,0,48744,0,0 +123478,10152,0,48745,0,0 +123479,10153,0,48746,0,0 +123480,10154,0,48747,0,0 +123481,10155,0,48748,0,0 +123482,10156,0,48749,0,0 +123483,10157,0,48750,0,0 +123484,10158,0,48751,0,0 +123485,10159,0,46810,0,0 +123486,10160,0,48752,0,0 +123487,10161,0,48753,0,0 +123488,10162,0,48754,0,0 +123489,10163,0,48755,0,0 +123490,10164,0,48756,0,0 +123491,10165,0,48757,0,0 +123492,10166,0,48758,0,0 +123493,10167,0,48759,0,0 +123494,10168,0,48760,0,0 +123495,10169,0,48761,0,0 +123496,10170,0,48762,0,0 +123497,10171,0,48763,0,0 +123498,10172,0,48764,0,0 +123499,10173,0,46860,0,0 +123500,10174,0,48765,0,0 +123501,10175,0,48766,0,0 +123502,10176,0,48767,0,0 +123503,10177,0,46393,0,0 +123504,10178,0,48768,0,0 +123505,10179,0,46394,0,0 +123506,10180,0,46859,0,0 +123507,10181,0,48769,0,0 +123508,10182,0,46826,0,0 +123509,10183,0,46827,0,0 +123510,10184,0,46829,0,0 +123511,10185,0,48770,0,0 +123512,10186,0,48771,0,0 +123513,10187,0,48772,0,0 +123514,10188,0,46038,0,0 +123515,10189,0,48773,0,0 +123516,10190,0,48774,0,0 +123517,10191,0,48569,0,0 +123518,10192,0,48568,0,0 +123519,10193,0,48570,0,0 +123520,10194,0,48775,0,0 +123521,10195,0,48776,0,0 +123522,10196,0,48572,0,0 +123523,10197,0,48573,0,0 +123524,10198,0,48777,0,0 +123525,10199,0,48574,0,0 +123526,10200,0,48778,0,0 +123527,10201,0,48779,0,0 +123528,10202,0,48780,0,0 +123529,10203,0,48781,0,0 +123530,10204,0,46886,0,0 +123531,10205,0,48377,0,0 +123532,10206,0,48782,0,0 +123533,10207,0,48783,0,0 +123534,10208,0,48784,0,0 +123535,10209,0,48785,0,0 +123536,10210,0,48786,0,0 +123537,10211,0,48071,0,0 +123538,10212,0,48787,0,0 +123539,10213,0,48073,0,0 +123540,10214,0,48070,0,0 +123541,10215,0,48788,0,0 +123542,10216,0,47925,0,0 +123543,10217,0,48789,0,0 +123544,10218,0,48790,0,0 +123545,10219,0,48752,0,0 +123546,10220,0,48791,0,0 +123547,10221,0,48792,0,0 +123548,10222,0,48793,0,0 +123549,10223,0,48794,0,0 +123550,10224,0,48795,0,0 +123551,10225,0,48101,0,0 +123552,10226,0,48796,0,0 +123553,10227,0,48797,0,0 +123554,10228,0,48798,0,0 +123555,10229,0,48799,0,0 +123556,10230,0,48800,0,0 +123557,10231,0,48801,0,0 +123558,10232,0,48802,0,0 +123559,10233,0,48803,0,0 +123560,10234,0,48804,0,0 +123561,10235,0,48111,0,0 +123562,10236,0,48805,0,0 +123563,10237,0,48806,0,0 +123564,10238,0,48807,0,0 +123565,10239,0,48808,0,0 +123566,10240,0,48809,0,0 +123567,10241,0,48810,0,0 +123568,10242,0,48811,0,0 +123569,10243,0,48303,0,0 +123570,10244,0,48812,0,0 +123571,10245,0,48813,0,0 +123572,10246,0,48814,0,0 +123573,10247,0,46311,0,0 +123574,10248,0,47216,0,0 +123575,10249,0,48815,0,0 +123576,10250,0,48816,0,0 +123577,10251,0,47658,0,0 +123578,10252,0,46337,0,0 +123579,10253,0,48643,0,0 +123580,10254,0,48817,0,0 +123581,10255,0,48672,0,0 +123582,10256,0,48818,0,0 +123583,10257,0,48819,0,0 +123584,10258,0,48604,0,0 +123585,10259,0,48287,0,0 +123586,10260,0,48820,0,0 +123587,10261,0,48821,0,0 +123588,10262,0,48822,0,0 +123589,10263,0,48823,0,0 +123590,10264,0,48824,0,0 +123591,10265,0,48825,0,0 +123592,10266,0,48826,0,0 +123593,10267,0,48827,0,0 +123594,10268,0,48828,0,0 +123595,10269,0,48829,0,0 +123596,10270,0,48830,0,0 +123597,10271,0,48751,0,0 +123598,10272,0,48831,0,0 +123599,10273,0,48832,0,0 +123600,10274,0,48833,0,0 +123601,10275,0,48834,0,0 +123602,10276,0,48835,0,0 +123603,10277,0,48836,0,0 +123604,10278,0,48837,0,0 +123605,10279,0,46943,0,0 +123606,10280,0,48838,0,0 +123607,10281,0,48839,0,0 +123608,10282,0,48840,0,0 +123613,10287,0,47757,0,0 +123614,10288,0,48841,0,0 +123615,10289,0,48842,0,0 +123647,10328,0,48843,0,0 +123648,10329,0,48844,0,0 +123649,10330,0,47337,0,0 +123650,10331,0,48845,0,0 +123651,10332,0,48846,0,0 +123652,10333,0,48847,0,0 +123654,10358,0,48440,0,0 +123655,10359,0,48848,0,0 +123658,10362,0,48849,0,0 +123659,10363,0,48850,0,0 +123660,10364,0,48446,0,0 +123661,10365,0,48851,0,0 +123662,10366,0,48852,0,0 +123663,10367,0,48853,0,0 +123664,10368,0,48854,0,0 +123665,10369,0,48855,0,0 +123666,10370,0,48856,0,0 +123667,10371,0,48857,0,0 +123668,10372,0,48858,0,0 +123669,10373,0,48859,0,0 +123670,10374,0,48860,0,0 +123671,10375,0,48861,0,0 +123672,10376,0,48862,0,0 +123673,10377,0,48863,0,0 +123674,10378,0,48864,0,0 +123675,10379,0,48111,0,0 +123676,10380,0,48865,0,0 +123677,10381,0,48866,0,0 +123678,10382,0,48867,0,0 +123679,10383,0,48868,0,0 +123680,10384,0,48869,0,0 +123681,10385,0,48870,0,0 +123682,10386,0,48871,0,0 +123683,10387,0,48872,0,0 +123684,10388,0,48873,0,0 +123685,10389,0,48874,0,0 +123686,10390,0,48875,0,0 +123687,10391,0,48876,0,0 +123692,10399,0,48877,0,0 +123693,10400,0,48878,0,0 +123694,10401,0,47975,0,0 +123695,10402,0,48879,0,0 +123696,10403,0,47553,0,0 +123697,10404,0,46986,0,0 +123698,10405,0,47776,0,0 +123699,10406,0,48880,0,0 +123700,10407,0,47319,0,0 +123701,10408,0,48881,0,0 +123702,10409,0,48882,0,0 +123703,10410,0,48248,0,0 +123704,10411,0,48883,0,0 +123705,10412,0,48884,0,0 +123706,10413,0,48885,0,0 +123711,10421,0,46051,0,0 +123712,10422,0,46947,0,0 +123713,10423,0,47040,0,0 +123738,10461,0,48886,0,0 +123739,10462,0,48887,0,0 +123748,10499,0,48888,0,0 +123749,10500,0,48889,0,0 +123750,10501,0,48890,0,0 +123751,10502,0,48891,0,0 +123752,10503,0,48892,0,0 +123753,10504,0,48893,0,0 +123755,10506,0,48894,0,0 +123757,10508,0,48378,0,0 +123759,10510,0,48895,0,0 +123761,10512,0,46427,0,0 +123762,10513,0,46427,0,0 +123764,10515,0,47640,0,0 +123765,10518,0,48896,0,0 +123770,10542,0,48897,0,0 +123771,10543,0,48350,0,0 +123772,10544,0,48898,0,0 +123773,10545,0,48899,0,0 +123775,10547,0,45791,0,0 +123777,10549,0,48900,0,0 +123778,10550,0,48901,0,0 +123781,10553,0,48902,0,0 +123782,10554,0,48903,0,0 +123793,10567,0,48904,0,0 +123794,10568,0,47643,0,0 +123796,10570,0,48905,0,0 +123797,10571,0,46754,0,0 +123798,10572,0,48906,0,0 +123799,10573,0,48907,0,0 +123800,10574,0,48908,0,0 +123804,10578,0,48909,0,0 +123805,10579,0,46426,0,0 +123807,10581,0,48910,0,0 +123808,10582,0,47812,0,0 +123809,10583,0,48911,0,0 +123810,10584,0,48912,0,0 +123814,10588,0,48913,0,0 +123817,10591,0,48463,0,0 +123834,10611,0,47840,0,0 +123835,10612,0,48914,0,0 +123836,10613,0,48915,0,0 +123837,10614,0,48916,0,0 +123838,10615,0,48426,0,0 +123839,10616,0,48917,0,0 +123840,10617,0,47644,0,0 +123841,10618,0,48918,0,0 +123842,10619,0,46664,0,0 +123846,10623,0,48919,0,0 +123847,10624,0,46615,0,0 +123848,10625,0,48918,0,0 +123849,10626,0,48920,0,0 +123850,10627,0,48921,0,0 +123851,10628,0,48922,0,0 +123852,10629,0,48923,0,0 +123853,10630,0,48924,0,0 +123854,10631,0,48925,0,0 +123855,10632,0,48926,0,0 +123856,10633,0,48927,0,0 +123858,10635,0,48928,0,0 +123859,10636,0,47013,0,0 +123860,10637,0,48929,0,0 +123861,10638,0,48930,0,0 +123874,10652,0,48931,0,0 +123875,10653,0,48125,0,0 +123876,10654,0,48932,0,0 +123877,10655,0,48933,0,0 +123878,10656,0,46729,0,0 +123879,10657,0,48934,0,0 +123880,10658,0,48935,0,0 +123893,10685,0,46201,0,0 +123894,10686,0,48936,0,0 +123904,10696,0,48937,0,0 +123905,10697,0,48938,0,0 +123906,10698,0,48939,0,0 +123908,10700,0,48940,0,0 +123909,10701,0,48941,0,0 +123910,10702,0,48942,0,0 +123911,10703,0,48943,0,0 +123912,10704,0,48944,0,0 +123913,10705,0,48945,0,0 +123914,10706,0,48725,0,0 +123915,10707,0,48946,0,0 +123916,10708,0,48947,0,0 +123917,10709,0,48097,0,0 +123929,10721,0,47987,0,0 +123932,10724,0,48948,0,0 +123934,10726,0,48625,0,0 +123939,10740,0,48784,0,0 +123940,10741,0,47684,0,0 +123941,10742,0,48949,0,0 +123942,10743,0,48950,0,0 +123943,10744,0,48477,0,0 +123944,10745,0,48951,0,0 +123945,10746,0,48952,0,0 +123946,10747,0,48953,0,0 +123947,10748,0,46827,0,0 +123948,10749,0,48954,0,0 +123949,10750,0,47432,0,0 +123950,10751,0,48955,0,0 +123955,10756,0,47950,0,0 +123957,10758,0,48956,0,0 +123959,10760,0,48041,0,0 +123960,10761,0,48957,0,0 +123961,10762,0,48958,0,0 +123962,10763,0,48224,0,0 +123963,10764,0,48959,0,0 +123964,10765,0,48960,0,0 +123965,10766,0,48961,0,0 +123966,10767,0,48962,0,0 +123967,10768,0,48963,0,0 +123969,10770,0,48947,0,0 +123970,10771,0,48964,0,0 +123971,10772,0,45911,0,0 +123973,10774,0,48965,0,0 +123974,10775,0,48966,0,0 +123975,10776,0,46989,0,0 +123976,10777,0,48967,0,0 +123980,10781,0,48271,0,0 +123981,10782,0,48968,0,0 +123982,10783,0,48813,0,0 +123983,10784,0,48969,0,0 +123984,10785,0,47791,0,0 +123985,10786,0,48970,0,0 +123986,10787,0,48971,0,0 +123987,10788,0,48972,0,0 +123995,10796,0,48097,0,0 +123996,10797,0,48973,0,0 +123997,10798,0,48974,0,0 +123998,10799,0,47817,0,0 +123999,10800,0,48975,0,0 +124000,10801,0,48976,0,0 +124001,10802,0,48452,0,0 +124002,10803,0,48977,0,0 +124003,10804,0,48978,0,0 +124004,10805,0,46167,0,0 +124005,10806,0,48979,0,0 +124006,10807,0,48980,0,0 +124007,10808,0,48981,0,0 +124010,10820,0,48982,0,0 +124011,10821,0,48983,0,0 +124013,10823,0,46275,0,0 +124015,10825,0,48984,0,0 +124016,10826,0,48985,0,0 +124017,10827,0,48986,0,0 +124018,10828,0,48987,0,0 +124023,10833,0,48988,0,0 +124025,10835,0,48056,0,0 +124026,10836,0,48989,0,0 +124027,10837,0,48477,0,0 +124028,10838,0,48990,0,0 +124032,10842,0,48991,0,0 +124033,10843,0,48765,0,0 +124034,10844,0,48992,0,0 +124035,10845,0,48993,0,0 +124036,10846,0,48748,0,0 +124037,10847,0,48994,0,0 +124039,10878,0,48977,0,0 +124040,10898,0,45765,0,0 +124042,10919,0,48995,0,0 +124056,11019,0,48996,0,0 +124058,11021,0,46781,0,0 +124062,11025,0,46291,0,0 +124068,11041,0,46890,0,0 +124069,11042,0,48997,0,0 +124079,11086,0,48998,0,0 +124080,11087,0,48956,0,0 +124101,11120,0,48999,0,0 +124102,11121,0,45765,0,0 +124104,11123,0,49000,0,0 +124105,11124,0,49001,0,0 +124151,11182,0,47695,0,0 +124152,11183,0,47695,0,0 +124156,11187,0,48499,0,0 +124158,11189,0,49002,0,0 +124159,11190,0,46592,0,0 +124160,11191,0,46456,0,0 +124161,11192,0,47956,0,0 +124162,11193,0,46826,0,0 +124163,11194,0,49003,0,0 +124164,11195,0,48609,0,0 +124168,11199,0,49004,0,0 +124169,11200,0,49005,0,0 +124170,11201,0,49006,0,0 +124185,11229,0,47260,0,0 +124190,11262,0,49007,0,0 +124191,11263,0,49008,0,0 +124192,11264,0,47641,0,0 +124193,11265,0,49009,0,0 +124201,11284,0,46427,0,0 +124202,11285,0,46426,0,0 +124204,11287,0,49010,0,0 +124205,11288,0,49010,0,0 +124206,11289,0,49011,0,0 +124207,11290,0,49012,0,0 +124210,11303,0,46419,0,0 +124211,11304,0,47046,0,0 +124212,11305,0,49013,0,0 +124213,11306,0,47511,0,0 +124214,11307,0,49014,0,0 +124215,11308,0,49015,0,0 +124217,11310,0,47828,0,0 +124218,11311,0,49016,0,0 +124221,11314,0,49017,0,0 +124224,11317,0,49018,0,0 +124228,11321,0,49019,0,0 +124229,11322,0,46163,0,0 +124230,11323,0,49020,0,0 +124233,11342,0,48389,0,0 +124234,11343,0,49021,0,0 +124235,11344,0,49022,0,0 +124236,11345,0,47542,0,0 +124239,11365,0,45855,0,0 +124243,11369,0,49024,0,0 +124247,11383,0,47425,0,0 +124269,11411,0,46151,0,0 +124281,11424,0,47521,0,0 +124293,11469,0,47061,0,0 +124299,11475,0,49025,0,0 +124306,11502,0,49026,0,0 +124309,11505,0,49027,0,0 +124310,11506,0,49028,0,0 +124312,11508,0,49029,0,0 +124321,11522,0,49030,0,0 +124322,11542,0,48411,0,0 +124335,11585,0,49004,0,0 +124336,11586,0,49005,0,0 +124337,11587,0,49006,0,0 +124338,11588,0,49031,0,0 +124339,11589,0,46158,0,0 +124341,11591,0,48246,0,0 +124343,11603,0,49032,0,0 +124344,11604,0,49033,0,0 +124345,11605,0,49034,0,0 +124346,11606,0,49035,0,0 +124347,11607,0,49018,0,0 +124348,11608,0,47896,0,0 +124359,11623,0,47869,0,0 +124360,11624,0,49036,0,0 +124361,11625,0,48121,0,0 +124362,11626,0,48801,0,0 +124363,11627,0,49037,0,0 +124364,11628,0,49038,0,0 +124365,11629,0,46781,0,0 +124366,11630,0,46427,0,0 +124367,11631,0,49039,0,0 +124368,11632,0,49040,0,0 +124369,11633,0,49041,0,0 +124370,11634,0,47548,0,0 +124371,11635,0,49042,0,0 +124380,11662,0,49043,0,0 +124383,11665,0,48273,0,0 +124393,11675,0,48793,0,0 +124395,11677,0,49044,0,0 +124396,11678,0,49045,0,0 +124397,11679,0,49046,0,0 +124400,11684,0,49024,0,0 +124401,11685,0,49047,0,0 +124402,11686,0,47854,0,0 +124403,11702,0,49048,0,0 +124404,11703,0,48325,0,0 +124405,11722,0,47857,0,0 +124409,11726,0,48277,0,0 +124411,11728,0,48282,0,0 +124412,11729,0,49049,0,0 +124413,11730,0,49050,0,0 +124414,11731,0,49051,0,0 +124418,11735,0,45871,0,0 +124422,11743,0,46566,0,0 +124423,11744,0,49052,0,0 +124424,11745,0,49053,0,0 +124425,11746,0,49054,0,0 +124426,11747,0,49055,0,0 +124427,11748,0,49056,0,0 +124428,11749,0,48754,0,0 +124429,11750,0,49021,0,0 +124435,11762,0,46209,0,0 +124436,11763,0,47960,0,0 +124437,11764,0,49057,0,0 +124438,11765,0,49058,0,0 +124439,11766,0,48261,0,0 +124440,11767,0,49059,0,0 +124441,11768,0,46154,0,0 +124442,11782,0,49060,0,0 +124443,11783,0,49061,0,0 +124444,11784,0,46188,0,0 +124445,11785,0,47018,0,0 +124446,11786,0,49062,0,0 +124447,11787,0,49063,0,0 +124448,11802,0,48874,0,0 +124449,11803,0,49064,0,0 +124451,11805,0,49065,0,0 +124453,11807,0,49066,0,0 +124454,11808,0,49067,0,0 +124455,11809,0,49068,0,0 +124458,11812,0,49069,0,0 +124460,11814,0,49070,0,0 +124462,11816,0,49071,0,0 +124463,11817,0,49072,0,0 +124466,11820,0,48313,0,0 +124467,11821,0,49073,0,0 +124468,11822,0,49074,0,0 +124469,11823,0,49075,0,0 +124484,11838,0,49076,0,0 +124485,11839,0,49077,0,0 +124486,11840,0,49078,0,0 +124487,11841,0,48068,0,0 +124488,11842,0,49079,0,0 +124493,11847,0,49080,0,0 +124494,11848,0,46697,0,0 +124495,11849,0,46689,0,0 +124496,11850,0,46656,0,0 +124497,11851,0,46216,0,0 +124498,11852,0,49081,0,0 +124499,11853,0,47585,0,0 +124500,11854,0,49082,0,0 +124501,11855,0,46131,0,0 +124502,11856,0,49083,0,0 +124503,11857,0,48128,0,0 +124504,11858,0,49084,0,0 +124505,11859,0,48561,0,0 +124506,11860,0,49085,0,0 +124507,11861,0,46254,0,0 +124509,11863,0,49028,0,0 +124510,11864,0,49086,0,0 +124511,11865,0,48260,0,0 +124512,11866,0,48747,0,0 +124513,11867,0,49087,0,0 +124516,11870,0,49088,0,0 +124517,11871,0,48712,0,0 +124518,11872,0,49089,0,0 +124519,11873,0,49090,0,0 +124520,11874,0,49091,0,0 +124521,11875,0,47057,0,0 +124522,11876,0,49092,0,0 +124523,11882,0,48529,0,0 +124525,11884,0,47278,0,0 +124526,11885,0,45876,0,0 +124529,11888,0,49093,0,0 +124530,11889,0,49094,0,0 +124531,11902,0,49095,0,0 +124533,11904,0,49030,0,0 +124535,11906,0,49097,0,0 +124536,11907,0,49098,0,0 +124537,11908,0,48664,0,0 +124538,11909,0,47673,0,0 +124539,11910,0,48859,0,0 +124540,11911,0,48701,0,0 +124542,11913,0,49099,0,0 +124544,11915,0,49100,0,0 +124545,11916,0,49101,0,0 +124546,11917,0,49102,0,0 +124547,11918,0,49103,0,0 +124548,11919,0,49104,0,0 +124549,11920,0,49105,0,0 +124550,11921,0,49106,0,0 +124551,11922,0,49107,0,0 +124552,11923,0,49108,0,0 +124553,11924,0,48266,0,0 +124554,11925,0,49109,0,0 +124555,11926,0,49110,0,0 +124556,11927,0,49111,0,0 +124557,11928,0,46320,0,0 +124558,11929,0,48105,0,0 +124560,11931,0,49112,0,0 +124561,11932,0,46271,0,0 +124564,11935,0,47321,0,0 +124565,11936,0,47240,0,0 +124585,11962,0,48261,0,0 +124586,11963,0,49113,0,0 +124587,11964,0,45847,0,0 +124623,12000,0,49114,0,0 +124641,12018,0,49115,0,0 +124644,12021,0,49116,0,0 +124664,12041,0,47072,0,0 +124672,12049,0,49117,0,0 +124673,12050,0,46311,0,0 +124674,12051,0,49118,0,0 +124684,12061,0,49119,0,0 +124685,12062,0,46142,0,0 +124686,12063,0,49068,0,0 +124687,12064,0,49120,0,0 +124689,12066,0,48611,0,0 +124690,12082,0,49121,0,0 +124691,12083,0,49122,0,0 +124694,12104,0,49123,0,0 +124695,12105,0,48210,0,0 +124696,12106,0,49124,0,0 +124697,12107,0,49125,0,0 +124698,12108,0,49126,0,0 +124699,12109,0,49060,0,0 +124700,12110,0,49127,0,0 +124701,12111,0,49128,0,0 +124702,12112,0,49129,0,0 +124703,12113,0,49130,0,0 +124704,12114,0,49131,0,0 +124705,12115,0,48782,0,0 +124707,12142,0,46321,0,0 +124713,12182,0,45825,0,0 +124714,12183,0,49132,0,0 +124716,12185,0,49133,0,0 +124717,12187,0,48130,0,0 +124718,12188,0,48130,0,0 +124719,12189,0,48130,0,0 +124742,12221,0,45864,0,0 +124743,12222,0,46963,0,0 +124746,12225,0,45864,0,0 +124764,12243,0,47325,0,0 +124765,12244,0,48130,0,0 +124766,12245,0,48130,0,0 +124767,12246,0,49134,0,0 +124768,12247,0,49135,0,0 +124769,12248,0,49136,0,0 +124770,12249,0,49137,0,0 +124771,12250,0,47821,0,0 +124772,12251,0,46098,0,0 +124773,12252,0,49138,0,0 +124774,12253,0,49139,0,0 +124775,12254,0,47544,0,0 +124776,12255,0,46599,0,0 +124777,12256,0,48265,0,0 +124778,12257,0,49140,0,0 +124779,12258,0,48837,0,0 +124780,12259,0,47044,0,0 +124781,12260,0,49141,0,0 +124786,12282,0,47522,0,0 +124789,12285,0,47867,0,0 +124794,12290,0,49142,0,0 +124798,12294,0,49143,0,0 +124799,12295,0,46231,0,0 +124800,12296,0,49144,0,0 +124801,12297,0,49145,0,0 +124802,12298,0,46263,0,0 +124803,12299,0,47449,0,0 +124808,12304,0,49146,0,0 +124809,12322,0,49147,0,0 +124815,12328,0,46745,0,0 +124816,12329,0,47523,0,0 +124818,12331,0,49148,0,0 +124819,12332,0,49149,0,0 +124820,12333,0,49150,0,0 +124825,12338,0,49150,0,0 +124835,12348,0,49142,0,0 +124860,12385,0,46738,0,0 +124862,12403,0,47325,0,0 +124864,12405,0,49151,0,0 +124865,12406,0,48866,0,0 +124866,12407,0,49152,0,0 +124867,12408,0,49153,0,0 +124868,12409,0,48358,0,0 +124869,12410,0,49154,0,0 +124872,12413,0,49155,0,0 +124873,12414,0,49156,0,0 +124874,12415,0,49157,0,0 +124875,12416,0,49158,0,0 +124876,12417,0,48752,0,0 +124877,12418,0,49159,0,0 +124878,12419,0,49160,0,0 +124879,12420,0,49161,0,0 +124880,12421,0,48128,0,0 +124881,12422,0,49162,0,0 +124882,12423,0,48873,0,0 +124883,12424,0,49163,0,0 +124884,12425,0,49164,0,0 +124885,12426,0,49165,0,0 +124886,12427,0,49166,0,0 +124887,12428,0,49167,0,0 +124888,12429,0,49168,0,0 +124901,12442,0,49169,0,0 +124902,12443,0,49169,0,0 +124905,12446,0,46424,0,0 +124906,12447,0,46420,0,0 +124907,12448,0,46507,0,0 +124908,12449,0,48231,0,0 +124911,12452,0,48962,0,0 +124912,12453,0,48482,0,0 +124913,12454,0,49170,0,0 +124915,12456,0,48469,0,0 +124920,12461,0,49171,0,0 +124921,12462,0,49172,0,0 +124922,12463,0,49173,0,0 +124923,12464,0,49174,0,0 +124924,12465,0,49175,0,0 +124925,12466,0,49122,0,0 +124927,12468,0,47384,0,0 +124928,12469,0,49176,0,0 +124929,12470,0,49177,0,0 +124930,12471,0,45943,0,0 +124932,12482,0,49178,0,0 +124933,12502,0,49179,0,0 +124934,12522,0,49180,0,0 +124935,12523,0,46618,0,0 +124939,12527,0,49181,0,0 +124940,12528,0,49182,0,0 +124943,12531,0,49183,0,0 +124944,12532,0,49184,0,0 +124947,12535,0,49185,0,0 +124948,12542,0,49186,0,0 +124952,12546,0,49187,0,0 +124953,12547,0,49188,0,0 +124955,12549,0,49054,0,0 +124956,12550,0,49189,0,0 +124957,12551,0,49190,0,0 +124958,12552,0,49191,0,0 +124959,12553,0,48740,0,0 +124960,12554,0,49192,0,0 +124961,12555,0,49193,0,0 +124962,12556,0,49194,0,0 +124963,12557,0,49195,0,0 +124971,12582,0,49197,0,0 +124972,12583,0,49150,0,0 +124973,12584,0,49198,0,0 +124976,12587,0,49199,0,0 +124977,12588,0,49200,0,0 +124978,12589,0,49201,0,0 +124979,12590,0,49202,0,0 +124980,12591,0,47497,0,0 +124981,12592,0,49203,0,0 +124982,12593,0,49204,0,0 +124983,12602,0,49205,0,0 +124984,12603,0,49206,0,0 +124985,12604,0,49207,0,0 +124986,12605,0,49208,0,0 +124987,12606,0,49209,0,0 +124989,12608,0,49210,0,0 +124990,12609,0,49211,0,0 +124991,12610,0,48755,0,0 +124992,12611,0,49212,0,0 +124993,12612,0,48111,0,0 +124994,12613,0,49213,0,0 +124995,12614,0,49214,0,0 +124996,12615,0,49215,0,0 +124997,12616,0,49216,0,0 +124998,12617,0,49217,0,0 +124999,12618,0,49218,0,0 +125000,12619,0,49219,0,0 +125001,12620,0,48327,0,0 +125002,12621,0,49220,0,0 +125005,12624,0,49221,0,0 +125006,12625,0,49222,0,0 +125007,12626,0,47671,0,0 +125009,12628,0,47675,0,0 +125010,12629,0,47224,0,0 +125012,12631,0,49223,0,0 +125013,12632,0,49224,0,0 +125014,12633,0,49225,0,0 +125015,12634,0,49226,0,0 +125017,12636,0,49227,0,0 +125018,12637,0,49228,0,0 +125020,12639,0,49229,0,0 +125021,12640,0,48777,0,0 +125022,12641,0,49230,0,0 +125032,12651,0,49231,0,0 +125034,12653,0,49232,0,0 +125035,12654,0,46426,0,0 +125043,12686,0,49233,0,0 +125066,12709,0,47431,0,0 +125099,12742,0,49234,0,0 +125100,12743,0,49234,0,0 +125101,12744,0,49235,0,0 +125102,12745,0,49235,0,0 +125103,12746,0,48097,0,0 +125104,12747,0,48097,0,0 +125105,12748,0,49236,0,0 +125106,12749,0,49236,0,0 +125107,12750,0,49237,0,0 +125108,12751,0,49238,0,0 +125109,12752,0,49239,0,0 +125111,12754,0,49240,0,0 +125112,12755,0,49203,0,0 +125113,12756,0,49241,0,0 +125114,12757,0,49242,0,0 +125117,12764,0,49243,0,0 +125120,12767,0,48158,0,0 +125122,12769,0,49244,0,0 +125125,12772,0,46957,0,0 +125126,12773,0,49245,0,0 +125127,12774,0,49246,0,0 +125128,12775,0,49247,0,0 +125129,12776,0,46447,0,0 +125130,12777,0,49248,0,0 +125132,12779,0,47840,0,0 +125134,12781,0,46432,0,0 +125135,12782,0,49249,0,0 +125136,12783,0,49250,0,0 +125137,12784,0,49251,0,0 +125139,12786,0,49252,0,0 +125140,12787,0,49253,0,0 +125141,12788,0,49254,0,0 +125143,12790,0,49255,0,0 +125144,12791,0,49256,0,0 +125145,12792,0,48384,0,0 +125146,12793,0,49257,0,0 +125147,12794,0,46277,0,0 +125148,12795,0,49258,0,0 +125149,12796,0,49259,0,0 +125150,12797,0,49260,0,0 +125151,12798,0,49261,0,0 +125154,12801,0,49262,0,0 +125155,12802,0,49263,0,0 +125203,12850,0,49264,0,0 +125204,12851,0,49264,0,0 +125205,12852,0,49265,0,0 +125206,12853,0,49265,0,0 +125207,12854,0,49266,0,0 +125208,12855,0,49266,0,0 +125209,12856,0,49267,0,0 +125210,12857,0,49267,0,0 +125211,12858,0,49268,0,0 +125212,12859,0,49268,0,0 +125213,12860,0,49238,0,0 +125214,12861,0,49237,0,0 +125215,12862,0,49269,0,0 +125216,12863,0,49269,0,0 +125217,12864,0,49270,0,0 +125218,12865,0,49270,0,0 +125219,12866,0,49271,0,0 +125220,12867,0,49271,0,0 +125221,12868,0,49272,0,0 +125222,12869,0,49272,0,0 +125223,12870,0,46893,0,0 +125225,12882,0,49273,0,0 +125226,12883,0,49274,0,0 +125232,12889,0,49275,0,0 +125233,12890,0,47539,0,0 +125235,12892,0,49276,0,0 +125236,12893,0,45874,0,0 +125238,12895,0,49277,0,0 +125244,12901,0,49278,0,0 +125245,12902,0,49279,0,0 +125246,12903,0,49280,0,0 +125247,12904,0,49281,0,0 +125248,12905,0,49069,0,0 +125256,12927,0,49282,0,0 +125260,12931,0,47147,0,0 +125261,12932,0,49283,0,0 +125262,12933,0,48116,0,0 +125263,12934,0,48384,0,0 +125264,12935,0,49284,0,0 +125265,12936,0,49285,0,0 +125266,12937,0,45869,0,0 +125268,12939,0,49286,0,0 +125269,12940,0,49287,0,0 +125270,12941,0,49288,0,0 +125272,12943,0,49289,0,0 +125273,12944,0,49290,0,0 +125274,12945,0,49280,0,0 +125277,12948,0,47957,0,0 +125278,12949,0,49291,0,0 +125279,12950,0,46041,0,0 +125280,12951,0,46667,0,0 +125281,12952,0,49292,0,0 +125282,12953,0,47087,0,0 +125288,12959,0,49293,0,0 +125289,12960,0,49294,0,0 +125290,12961,0,49295,0,0 +125291,12962,0,46078,0,0 +125292,12963,0,49296,0,0 +125293,12964,0,46377,0,0 +125294,12965,0,49297,0,0 +125295,12966,0,46834,0,0 +125296,12967,0,49084,0,0 +125297,12968,0,49298,0,0 +125298,12969,0,49299,0,0 +125299,12971,0,49300,0,0 +125300,12972,0,49300,0,0 +125302,12974,0,49301,0,0 +125303,12975,0,49302,0,0 +125304,12976,0,45851,0,0 +125305,12977,0,47658,0,0 +125306,12978,0,49303,0,0 +125307,12979,0,49304,0,0 +125308,12980,0,48083,0,0 +125309,12981,0,46889,0,0 +125310,12982,0,46190,0,0 +125311,12983,0,49305,0,0 +125312,12984,0,47816,0,0 +125314,12986,0,46784,0,0 +125315,12987,0,49306,0,0 +125316,12988,0,49307,0,0 +125317,12989,0,49308,0,0 +125318,12990,0,49309,0,0 +125319,12991,0,48475,0,0 +125320,12992,0,48165,0,0 +125321,12993,0,46955,0,0 +125322,12994,0,48527,0,0 +125323,12995,0,48850,0,0 +125325,12997,0,49310,0,0 +125326,12998,0,46843,0,0 +125327,12999,0,48540,0,0 +125328,13000,0,49311,0,0 +125331,13003,0,49112,0,0 +125332,13004,0,49312,0,0 +125333,13005,0,48366,0,0 +125334,13006,0,49313,0,0 +125335,13007,0,49314,0,0 +125336,13008,0,49315,0,0 +125337,13009,0,49316,0,0 +125338,13010,0,49317,0,0 +125339,13011,0,49318,0,0 +125340,13012,0,49319,0,0 +125341,13013,0,49320,0,0 +125342,13014,0,49321,0,0 +125343,13015,0,49322,0,0 +125344,13016,0,49323,0,0 +125345,13017,0,49324,0,0 +125346,13018,0,49143,0,0 +125347,13019,0,49325,0,0 +125348,13020,0,49326,0,0 +125349,13021,0,48904,0,0 +125350,13022,0,49327,0,0 +125351,13023,0,49328,0,0 +125352,13024,0,49329,0,0 +125353,13025,0,49330,0,0 +125354,13026,0,49331,0,0 +125355,13027,0,49332,0,0 +125356,13028,0,49333,0,0 +125357,13029,0,49334,0,0 +125358,13030,0,46754,0,0 +125359,13031,0,49335,0,0 +125360,13032,0,49336,0,0 +125361,13033,0,49337,0,0 +125362,13034,0,49338,0,0 +125363,13035,0,49339,0,0 +125364,13036,0,49340,0,0 +125365,13037,0,49231,0,0 +125366,13038,0,49341,0,0 +125367,13039,0,49342,0,0 +125368,13040,0,49231,0,0 +125369,13041,0,49343,0,0 +125370,13042,0,49344,0,0 +125371,13043,0,49345,0,0 +125372,13044,0,49346,0,0 +125373,13045,0,49347,0,0 +125374,13046,0,49348,0,0 +125375,13047,0,46035,0,0 +125376,13048,0,49349,0,0 +125377,13049,0,49350,0,0 +125378,13050,0,48437,0,0 +125379,13051,0,49351,0,0 +125380,13052,0,49019,0,0 +125381,13053,0,49352,0,0 +125382,13054,0,49353,0,0 +125383,13055,0,49354,0,0 +125384,13056,0,49355,0,0 +125385,13057,0,49356,0,0 +125386,13058,0,49357,0,0 +125387,13059,0,49358,0,0 +125388,13060,0,49359,0,0 +125389,13061,0,45948,0,0 +125390,13062,0,48353,0,0 +125391,13063,0,47217,0,0 +125392,13064,0,49360,0,0 +125393,13065,0,49361,0,0 +125394,13066,0,49362,0,0 +125395,13067,0,49363,0,0 +125396,13068,0,49364,0,0 +125397,13069,0,49311,0,0 +125398,13070,0,49365,0,0 +125399,13071,0,49366,0,0 +125400,13072,0,49367,0,0 +125401,13073,0,49368,0,0 +125402,13074,0,49111,0,0 +125403,13075,0,49369,0,0 +125404,13076,0,49370,0,0 +125405,13077,0,49371,0,0 +125406,13078,0,49372,0,0 +125407,13079,0,47193,0,0 +125408,13080,0,49373,0,0 +125409,13081,0,48292,0,0 +125410,13082,0,49374,0,0 +125411,13083,0,49375,0,0 +125418,13090,0,49376,0,0 +125426,13099,0,49377,0,0 +125427,13100,0,47601,0,0 +125428,13101,0,49378,0,0 +125429,13102,0,48831,0,0 +125430,13103,0,49379,0,0 +125431,13104,0,45823,0,0 +125432,13105,0,49380,0,0 +125433,13106,0,49381,0,0 +125434,13107,0,49382,0,0 +125435,13108,0,49383,0,0 +125436,13109,0,48795,0,0 +125437,13110,0,49384,0,0 +125438,13111,0,49385,0,0 +125439,13112,0,49386,0,0 +125440,13113,0,49387,0,0 +125441,13114,0,46402,0,0 +125442,13115,0,48677,0,0 +125443,13116,0,49388,0,0 +125444,13117,0,49389,0,0 +125445,13118,0,49390,0,0 +125446,13119,0,47876,0,0 +125447,13120,0,47069,0,0 +125448,13121,0,48519,0,0 +125449,13122,0,48815,0,0 +125450,13123,0,49391,0,0 +125451,13124,0,49392,0,0 +125452,13125,0,46725,0,0 +125453,13126,0,49393,0,0 +125454,13127,0,49394,0,0 +125455,13128,0,49395,0,0 +125456,13129,0,49396,0,0 +125457,13130,0,49397,0,0 +125458,13131,0,49398,0,0 +125459,13132,0,49399,0,0 +125460,13133,0,49400,0,0 +125461,13134,0,49401,0,0 +125462,13135,0,49402,0,0 +125463,13136,0,49403,0,0 +125464,13137,0,49404,0,0 +125465,13138,0,49405,0,0 +125466,13139,0,46221,0,0 +125469,13142,0,49406,0,0 +125471,13144,0,49407,0,0 +125472,13145,0,49408,0,0 +125473,13146,0,49409,0,0 +125474,13147,0,49410,0,0 +125475,13148,0,49411,0,0 +125477,13150,0,49412,0,0 +125487,13160,0,47041,0,0 +125488,13161,0,45855,0,0 +125489,13162,0,49413,0,0 +125490,13163,0,49414,0,0 +125492,13165,0,49415,0,0 +125493,13166,0,49416,0,0 +125494,13167,0,49417,0,0 +125495,13168,0,49418,0,0 +125496,13169,0,48797,0,0 +125497,13170,0,49419,0,0 +125502,13175,0,49421,0,0 +125506,13179,0,49422,0,0 +125508,13181,0,48263,0,0 +125509,13182,0,46918,0,0 +125510,13183,0,46520,0,0 +125511,13184,0,49423,0,0 +125512,13185,0,49424,0,0 +125525,13198,0,49425,0,0 +125526,13199,0,49426,0,0 +125528,13203,0,47275,0,0 +125529,13204,0,49427,0,0 +125530,13205,0,49428,0,0 +125531,13206,0,48105,0,0 +125533,13208,0,49429,0,0 +125535,13210,0,48942,0,0 +125536,13211,0,49430,0,0 +125540,13216,0,47503,0,0 +125542,13218,0,49431,0,0 +125543,13219,0,47957,0,0 +125544,13220,0,47957,0,0 +125545,13221,0,49432,0,0 +125546,13222,0,49433,0,0 +125548,13243,0,49375,0,0 +125549,13244,0,49434,0,0 +125550,13245,0,49435,0,0 +125551,13246,0,49436,0,0 +125553,13248,0,47186,0,0 +125554,13249,0,49437,0,0 +125557,13252,0,46994,0,0 +125558,13253,0,49438,0,0 +125559,13254,0,49170,0,0 +125560,13255,0,49439,0,0 +125561,13256,0,49440,0,0 +125562,13257,0,49441,0,0 +125563,13258,0,48101,0,0 +125564,13259,0,49442,0,0 +125565,13260,0,49443,0,0 +125566,13261,0,49444,0,0 +125567,13262,0,49445,0,0 +125568,13282,0,46644,0,0 +125570,13284,0,49446,0,0 +125571,13285,0,49447,0,0 +125572,13286,0,49448,0,0 +125575,13289,0,49440,0,0 +125576,13290,0,49449,0,0 +125577,13291,0,49450,0,0 +125578,13292,0,49451,0,0 +125579,13293,0,49452,0,0 +125580,13294,0,49453,0,0 +125591,13312,0,49454,0,0 +125593,13314,0,49455,0,0 +125594,13315,0,49456,0,0 +125595,13316,0,49457,0,0 +125597,13318,0,46191,0,0 +125598,13319,0,49428,0,0 +125615,13336,0,49458,0,0 +125616,13337,0,49459,0,0 +125617,13338,0,49460,0,0 +125618,13339,0,49461,0,0 +125619,13340,0,49462,0,0 +125620,13341,0,46892,0,0 +125623,13344,0,48572,0,0 +125625,13346,0,49463,0,0 +125627,13348,0,49291,0,0 +125628,13349,0,45820,0,0 +125632,13353,0,49237,0,0 +125637,13358,0,49464,0,0 +125638,13359,0,49465,0,0 +125639,13360,0,48957,0,0 +125640,13361,0,49466,0,0 +125647,13368,0,49467,0,0 +125648,13369,0,49468,0,0 +125651,13372,0,48106,0,0 +125653,13374,0,49469,0,0 +125654,13375,0,49470,0,0 +125655,13376,0,48732,0,0 +125656,13377,0,46427,0,0 +125657,13378,0,49471,0,0 +125659,13380,0,48378,0,0 +125660,13381,0,49472,0,0 +125662,13383,0,49473,0,0 +125663,13384,0,49474,0,0 +125664,13385,0,49271,0,0 +125665,13386,0,49475,0,0 +125666,13387,0,49476,0,0 +125667,13388,0,49477,0,0 +125668,13389,0,49478,0,0 +125669,13390,0,49479,0,0 +125670,13391,0,49480,0,0 +125672,13393,0,49481,0,0 +125673,13394,0,49482,0,0 +125674,13395,0,49483,0,0 +125675,13396,0,49484,0,0 +125676,13397,0,49190,0,0 +125677,13398,0,48793,0,0 +125678,13399,0,49028,0,0 +125679,13400,0,49485,0,0 +125680,13401,0,45852,0,0 +125681,13402,0,49486,0,0 +125682,13403,0,49487,0,0 +125683,13404,0,48634,0,0 +125684,13405,0,49488,0,0 +125685,13406,0,46282,0,0 +125686,13407,0,46288,0,0 +125687,13408,0,49489,0,0 +125688,13409,0,49490,0,0 +125721,13472,0,49491,0,0 +125723,13474,0,47861,0,0 +125747,13498,0,49492,0,0 +125751,13502,0,49493,0,0 +125753,13504,0,49494,0,0 +125754,13505,0,46276,0,0 +125765,13516,0,49491,0,0 +125773,13524,0,45866,0,0 +125774,13525,0,49495,0,0 +125775,13526,0,48774,0,0 +125776,13527,0,49496,0,0 +125777,13528,0,49497,0,0 +125778,13529,0,45874,0,0 +125779,13530,0,49498,0,0 +125780,13531,0,48274,0,0 +125781,13532,0,49499,0,0 +125782,13533,0,49500,0,0 +125783,13534,0,49501,0,0 +125784,13535,0,49502,0,0 +125786,13537,0,49503,0,0 +125787,13538,0,49504,0,0 +125788,13539,0,49505,0,0 +125799,13586,0,48130,0,0 +125800,13602,0,47322,0,0 +125801,13603,0,47322,0,0 +125802,13604,0,49262,0,0 +125803,13605,0,49507,0,0 +125804,13606,0,49508,0,0 +125805,13607,0,49508,0,0 +125806,13608,0,49507,0,0 +125807,13609,0,46498,0,0 +125808,13610,0,46497,0,0 +125809,13611,0,46452,0,0 +125810,13612,0,49509,0,0 +125811,13622,0,49510,0,0 +125812,13623,0,49511,0,0 +125814,13625,0,48412,0,0 +125816,13627,0,49512,0,0 +125817,13628,0,49205,0,0 +125818,13629,0,49435,0,0 +125819,13630,0,49470,0,0 +125820,13631,0,49354,0,0 +125821,13632,0,49513,0,0 +125878,13698,0,49514,0,0 +125885,13705,0,49515,0,0 +125886,13706,0,49516,0,0 +125887,13707,0,49517,0,0 +125888,13708,0,49518,0,0 +125889,13709,0,49519,0,0 +125890,13710,0,48130,0,0 +125891,13711,0,48130,0,0 +125892,13712,0,48130,0,0 +125893,13713,0,48130,0,0 +125894,13714,0,48130,0,0 +125895,13715,0,48130,0,0 +125896,13716,0,48130,0,0 +125897,13717,0,48130,0,0 +125898,13718,0,48973,0,0 +125899,13719,0,49520,0,0 +125900,13720,0,49521,0,0 +125901,13721,0,46016,0,0 +125902,13722,0,49522,0,0 +125903,13723,0,49523,0,0 +125926,13750,0,49524,0,0 +125927,13751,0,49525,0,0 +125929,13753,0,49526,0,0 +125986,13814,0,49527,0,0 +125988,13816,0,46954,0,0 +125989,13817,0,47041,0,0 +125990,13818,0,46199,0,0 +125991,13819,0,47042,0,0 +125992,13820,0,46105,0,0 +125993,13821,0,49528,0,0 +125994,13822,0,47044,0,0 +125995,13823,0,47045,0,0 +125996,13824,0,47046,0,0 +125997,13825,0,47047,0,0 +125998,13842,0,47614,0,0 +125999,13843,0,47614,0,0 +126000,13844,0,47614,0,0 +126001,13845,0,47614,0,0 +126002,13846,0,47614,0,0 +126003,13847,0,47614,0,0 +126004,13848,0,47614,0,0 +126005,13849,0,47614,0,0 +126010,13854,0,46491,0,0 +126011,13855,0,46492,0,0 +126012,13856,0,49529,0,0 +126013,13857,0,49530,0,0 +126014,13858,0,49531,0,0 +126015,13859,0,46490,0,0 +126016,13860,0,49532,0,0 +126017,13861,0,47094,0,0 +126018,13862,0,47094,0,0 +126019,13863,0,49533,0,0 +126020,13864,0,49534,0,0 +126021,13865,0,49419,0,0 +126022,13866,0,49535,0,0 +126023,13867,0,49536,0,0 +126024,13868,0,49537,0,0 +126025,13869,0,49538,0,0 +126026,13870,0,48033,0,0 +126027,13871,0,47058,0,0 +126032,13876,0,47616,0,0 +126033,13877,0,47616,0,0 +126034,13878,0,47616,0,0 +126035,13879,0,47616,0,0 +126036,13880,0,47616,0,0 +126038,13882,0,47616,0,0 +126039,13883,0,47616,0,0 +126040,13884,0,47616,0,0 +126041,13885,0,47616,0,0 +126042,13886,0,47616,0,0 +126043,13887,0,47616,0,0 +126050,13894,0,45987,0,0 +126051,13895,0,49540,0,0 +126052,13896,0,49541,0,0 +126053,13897,0,49542,0,0 +126054,13898,0,49543,0,0 +126055,13899,0,49544,0,0 +126056,13900,0,49545,0,0 +126057,13901,0,47614,0,0 +126058,13902,0,47614,0,0 +126059,13903,0,47614,0,0 +126060,13904,0,47614,0,0 +126061,13905,0,47614,0,0 +126062,13906,0,47614,0,0 +126070,13914,0,47617,0,0 +126071,13915,0,47617,0,0 +126072,13916,0,47617,0,0 +126073,13917,0,47617,0,0 +126075,13919,0,49546,0,0 +126077,13922,0,47210,0,0 +126078,13923,0,49405,0,0 +126079,13924,0,49547,0,0 +126080,13925,0,47218,0,0 +126091,13937,0,49548,0,0 +126092,13938,0,49549,0,0 +126098,13944,0,46830,0,0 +126104,13950,0,49550,0,0 +126105,13951,0,49551,0,0 +126106,13952,0,49552,0,0 +126107,13953,0,49553,0,0 +126108,13954,0,49554,0,0 +126109,13955,0,49555,0,0 +126110,13956,0,49556,0,0 +126111,13957,0,49557,0,0 +126112,13958,0,48073,0,0 +126113,13959,0,49558,0,0 +126115,13961,0,49559,0,0 +126116,13962,0,48709,0,0 +126117,13963,0,46381,0,0 +126118,13964,0,49560,0,0 +126121,13967,0,49561,0,0 +126123,13969,0,49562,0,0 +126124,13982,0,49412,0,0 +126125,13983,0,49563,0,0 +126126,13984,0,49564,0,0 +126128,13986,0,49565,0,0 +126129,14002,0,49527,0,0 +126132,14024,0,47199,0,0 +126133,14025,0,47338,0,0 +126134,14042,0,49566,0,0 +126135,14043,0,48263,0,0 +126136,14044,0,49567,0,0 +126137,14045,0,49568,0,0 +126142,14082,0,49569,0,0 +126143,14084,0,47356,0,0 +126144,14085,0,49570,0,0 +126145,14086,0,49571,0,0 +126146,14087,0,46862,0,0 +126147,14088,0,45905,0,0 +126148,14089,0,49572,0,0 +126149,14090,0,47439,0,0 +126150,14091,0,49573,0,0 +126151,14092,0,49574,0,0 +126152,14093,0,49575,0,0 +126153,14094,0,49576,0,0 +126154,14095,0,47554,0,0 +126155,14096,0,49577,0,0 +126156,14097,0,48442,0,0 +126157,14098,0,46069,0,0 +126158,14099,0,47203,0,0 +126159,14100,0,49578,0,0 +126160,14101,0,45746,0,0 +126161,14102,0,46709,0,0 +126162,14103,0,49579,0,0 +126163,14104,0,49580,0,0 +126164,14105,0,48904,0,0 +126165,14106,0,49581,0,0 +126166,14107,0,47926,0,0 +126167,14108,0,48260,0,0 +126168,14109,0,49582,0,0 +126169,14110,0,46708,0,0 +126170,14111,0,48102,0,0 +126171,14112,0,48108,0,0 +126172,14113,0,49583,0,0 +126173,14114,0,49584,0,0 +126174,14115,0,49585,0,0 +126175,14116,0,45934,0,0 +126176,14117,0,46643,0,0 +126177,14118,0,47827,0,0 +126178,14119,0,49586,0,0 +126179,14120,0,49587,0,0 +126180,14121,0,49588,0,0 +126181,14122,0,46757,0,0 +126182,14123,0,48485,0,0 +126183,14124,0,45935,0,0 +126184,14125,0,45936,0,0 +126185,14126,0,49589,0,0 +126186,14127,0,48060,0,0 +126187,14128,0,49590,0,0 +126188,14129,0,49591,0,0 +126189,14130,0,49592,0,0 +126190,14131,0,46755,0,0 +126191,14132,0,46138,0,0 +126192,14133,0,49593,0,0 +126193,14134,0,49579,0,0 +126195,14136,0,49537,0,0 +126196,14137,0,48299,0,0 +126197,14138,0,49594,0,0 +126198,14139,0,49595,0,0 +126199,14140,0,48581,0,0 +126200,14141,0,48381,0,0 +126201,14142,0,47913,0,0 +126202,14143,0,49596,0,0 +126203,14144,0,47635,0,0 +126204,14145,0,49597,0,0 +126205,14146,0,46833,0,0 +126206,14147,0,49598,0,0 +126207,14148,0,49599,0,0 +126208,14149,0,47241,0,0 +126209,14150,0,48060,0,0 +126210,14151,0,46692,0,0 +126211,14152,0,47687,0,0 +126212,14153,0,49600,0,0 +126213,14154,0,49601,0,0 +126216,14157,0,46927,0,0 +126217,14158,0,45730,0,0 +126218,14159,0,49602,0,0 +126219,14160,0,46797,0,0 +126220,14161,0,46844,0,0 +126221,14162,0,48929,0,0 +126222,14163,0,45937,0,0 +126223,14164,0,47203,0,0 +126224,14165,0,49603,0,0 +126225,14166,0,49604,0,0 +126226,14167,0,49605,0,0 +126227,14168,0,49606,0,0 +126228,14169,0,49607,0,0 +126229,14170,0,49608,0,0 +126230,14171,0,47926,0,0 +126231,14172,0,49609,0,0 +126232,14173,0,47833,0,0 +126233,14174,0,48923,0,0 +126234,14175,0,49610,0,0 +126235,14176,0,49611,0,0 +126236,14177,0,48396,0,0 +126237,14178,0,49612,0,0 +126238,14179,0,47755,0,0 +126239,14180,0,46905,0,0 +126240,14181,0,48932,0,0 +126241,14182,0,48934,0,0 +126242,14183,0,47209,0,0 +126243,14184,0,49578,0,0 +126244,14185,0,47706,0,0 +126245,14186,0,47924,0,0 +126246,14187,0,48009,0,0 +126247,14188,0,47797,0,0 +126248,14189,0,47912,0,0 +126249,14190,0,49613,0,0 +126250,14191,0,49614,0,0 +126251,14192,0,45913,0,0 +126252,14193,0,48003,0,0 +126253,14194,0,48010,0,0 +126254,14195,0,48006,0,0 +126255,14196,0,46973,0,0 +126256,14197,0,46974,0,0 +126257,14198,0,48519,0,0 +126258,14199,0,46975,0,0 +126259,14200,0,46479,0,0 +126260,14201,0,46984,0,0 +126261,14202,0,49615,0,0 +126262,14203,0,46976,0,0 +126263,14204,0,49616,0,0 +126264,14205,0,46972,0,0 +126265,14206,0,48396,0,0 +126266,14207,0,47209,0,0 +126267,14208,0,49617,0,0 +126268,14209,0,49618,0,0 +126269,14210,0,49619,0,0 +126270,14211,0,48932,0,0 +126271,14212,0,47921,0,0 +126272,14213,0,49620,0,0 +126273,14214,0,49611,0,0 +126274,14215,0,49621,0,0 +126275,14216,0,49622,0,0 +126276,14217,0,49487,0,0 +126277,14218,0,46973,0,0 +126278,14219,0,48519,0,0 +126279,14220,0,49623,0,0 +126280,14221,0,46974,0,0 +126281,14222,0,46975,0,0 +126282,14223,0,48122,0,0 +126283,14224,0,46976,0,0 +126284,14225,0,49186,0,0 +126285,14226,0,46154,0,0 +126287,14228,0,49624,0,0 +126288,14229,0,47099,0,0 +126289,14230,0,49625,0,0 +126290,14231,0,47911,0,0 +126291,14232,0,49626,0,0 +126292,14233,0,49627,0,0 +126293,14234,0,49581,0,0 +126294,14235,0,49628,0,0 +126295,14236,0,47909,0,0 +126296,14237,0,47971,0,0 +126297,14238,0,47972,0,0 +126298,14239,0,48765,0,0 +126299,14240,0,47973,0,0 +126300,14241,0,47977,0,0 +126301,14242,0,47979,0,0 +126302,14243,0,49629,0,0 +126303,14244,0,47980,0,0 +126304,14245,0,47981,0,0 +126305,14246,0,49630,0,0 +126306,14247,0,48597,0,0 +126307,14248,0,48009,0,0 +126308,14249,0,48001,0,0 +126309,14250,0,48006,0,0 +126310,14251,0,48366,0,0 +126311,14252,0,49631,0,0 +126312,14253,0,48005,0,0 +126313,14254,0,47051,0,0 +126314,14255,0,47841,0,0 +126316,14257,0,48003,0,0 +126317,14258,0,49632,0,0 +126318,14259,0,47710,0,0 +126319,14260,0,49633,0,0 +126320,14261,0,49634,0,0 +126321,14262,0,47928,0,0 +126322,14263,0,48172,0,0 +126323,14264,0,49635,0,0 +126324,14265,0,48653,0,0 +126325,14266,0,47923,0,0 +126326,14267,0,49636,0,0 +126327,14268,0,48295,0,0 +126328,14269,0,49637,0,0 +126329,14270,0,47280,0,0 +126330,14271,0,49631,0,0 +126331,14272,0,49638,0,0 +126332,14273,0,47281,0,0 +126333,14274,0,49000,0,0 +126334,14275,0,49639,0,0 +126335,14276,0,48301,0,0 +126336,14277,0,48910,0,0 +126337,14278,0,49640,0,0 +126338,14279,0,47671,0,0 +126339,14280,0,47869,0,0 +126340,14281,0,49641,0,0 +126341,14282,0,47052,0,0 +126342,14283,0,47669,0,0 +126343,14284,0,49642,0,0 +126344,14285,0,47670,0,0 +126345,14286,0,47270,0,0 +126346,14287,0,47937,0,0 +126347,14288,0,49643,0,0 +126348,14289,0,49644,0,0 +126349,14290,0,48467,0,0 +126350,14291,0,47376,0,0 +126351,14292,0,47855,0,0 +126352,14293,0,48652,0,0 +126353,14294,0,49438,0,0 +126354,14295,0,48416,0,0 +126355,14296,0,49645,0,0 +126356,14297,0,49646,0,0 +126357,14298,0,48764,0,0 +126358,14299,0,49647,0,0 +126359,14300,0,49648,0,0 +126360,14301,0,49649,0,0 +126361,14302,0,48981,0,0 +126362,14303,0,49600,0,0 +126363,14304,0,49650,0,0 +126364,14305,0,48980,0,0 +126365,14306,0,49651,0,0 +126366,14307,0,49652,0,0 +126367,14308,0,49653,0,0 +126368,14309,0,49654,0,0 +126369,14310,0,49655,0,0 +126370,14311,0,49656,0,0 +126371,14312,0,48718,0,0 +126372,14313,0,48307,0,0 +126373,14314,0,49657,0,0 +126374,14315,0,49658,0,0 +126375,14316,0,49659,0,0 +126376,14317,0,49660,0,0 +126377,14318,0,49661,0,0 +126378,14319,0,49662,0,0 +126379,14320,0,49663,0,0 +126380,14321,0,49210,0,0 +126381,14322,0,49664,0,0 +126382,14323,0,49665,0,0 +126383,14324,0,49666,0,0 +126384,14325,0,49667,0,0 +126385,14326,0,48461,0,0 +126386,14327,0,49668,0,0 +126387,14328,0,49669,0,0 +126388,14329,0,49670,0,0 +126389,14330,0,49671,0,0 +126390,14331,0,48253,0,0 +126391,14332,0,49672,0,0 +126392,14333,0,49673,0,0 +126393,14334,0,49674,0,0 +126394,14335,0,49036,0,0 +126395,14336,0,49675,0,0 +126396,14337,0,49676,0,0 +126399,14340,0,49677,0,0 +126405,14364,0,47335,0,0 +126406,14365,0,49678,0,0 +126407,14366,0,47555,0,0 +126408,14367,0,49679,0,0 +126409,14368,0,49680,0,0 +126410,14369,0,49681,0,0 +126411,14370,0,47830,0,0 +126412,14371,0,49682,0,0 +126413,14372,0,49683,0,0 +126414,14373,0,47881,0,0 +126415,14374,0,49684,0,0 +126416,14375,0,49685,0,0 +126417,14376,0,49686,0,0 +126418,14377,0,47844,0,0 +126419,14378,0,49687,0,0 +126420,14379,0,47839,0,0 +126421,14380,0,49688,0,0 +126425,14397,0,49689,0,0 +126426,14398,0,49690,0,0 +126427,14399,0,49691,0,0 +126428,14400,0,49686,0,0 +126429,14401,0,47494,0,0 +126430,14402,0,46883,0,0 +126431,14403,0,49692,0,0 +126432,14404,0,49693,0,0 +126433,14405,0,45937,0,0 +126434,14406,0,49694,0,0 +126435,14407,0,49695,0,0 +126436,14408,0,49696,0,0 +126437,14409,0,46554,0,0 +126438,14410,0,49697,0,0 +126439,14411,0,47913,0,0 +126440,14412,0,49698,0,0 +126441,14413,0,49699,0,0 +126442,14414,0,49596,0,0 +126443,14415,0,47635,0,0 +126444,14416,0,45923,0,0 +126445,14417,0,49700,0,0 +126446,14418,0,49701,0,0 +126447,14419,0,46185,0,0 +126448,14420,0,49702,0,0 +126449,14421,0,49703,0,0 +126450,14422,0,47399,0,0 +126451,14423,0,49704,0,0 +126452,14424,0,47883,0,0 +126453,14425,0,49055,0,0 +126454,14426,0,49705,0,0 +126455,14427,0,49706,0,0 +126456,14428,0,49707,0,0 +126457,14429,0,49708,0,0 +126458,14430,0,49709,0,0 +126459,14431,0,48364,0,0 +126460,14432,0,47800,0,0 +126461,14433,0,49710,0,0 +126462,14434,0,48002,0,0 +126463,14435,0,46863,0,0 +126464,14436,0,48733,0,0 +126465,14437,0,48185,0,0 +126466,14438,0,48186,0,0 +126467,14439,0,48187,0,0 +126468,14440,0,47855,0,0 +126469,14441,0,49711,0,0 +126470,14442,0,48188,0,0 +126471,14443,0,48189,0,0 +126472,14444,0,48190,0,0 +126473,14445,0,48191,0,0 +126474,14446,0,48192,0,0 +126475,14447,0,48647,0,0 +126476,14448,0,48886,0,0 +126477,14449,0,48614,0,0 +126478,14450,0,48732,0,0 +126479,14451,0,48639,0,0 +126480,14452,0,49536,0,0 +126481,14453,0,49712,0,0 +126482,14454,0,48887,0,0 +126483,14455,0,49713,0,0 +126484,14456,0,49714,0,0 +126485,14457,0,49715,0,0 +126486,14458,0,49716,0,0 +126487,14459,0,49717,0,0 +126488,14460,0,49718,0,0 +126489,14461,0,49719,0,0 +126490,14462,0,49720,0,0 +126491,14463,0,49721,0,0 +126492,14464,0,49722,0,0 +126493,14465,0,49723,0,0 +126500,14475,0,45899,0,0 +126505,14487,0,49724,0,0 +126516,14502,0,47683,0,0 +126517,14503,0,49725,0,0 +126527,14522,0,48210,0,0 +126529,14524,0,49726,0,0 +126530,14525,0,49727,0,0 +126532,14527,0,49728,0,0 +126533,14528,0,49729,0,0 +126536,14531,0,49730,0,0 +126537,14532,0,48118,0,0 +126538,14533,0,46822,0,0 +126539,14534,0,46022,0,0 +126540,14535,0,49411,0,0 +126541,14536,0,48570,0,0 +126542,14537,0,49731,0,0 +126543,14538,0,49732,0,0 +126544,14539,0,49733,0,0 +126546,14541,0,49734,0,0 +126548,14543,0,49735,0,0 +126550,14545,0,49736,0,0 +126553,14548,0,49737,0,0 +126554,14549,0,49738,0,0 +126555,14550,0,49503,0,0 +126556,14551,0,49739,0,0 +126557,14552,0,49740,0,0 +126558,14553,0,47854,0,0 +126559,14554,0,49741,0,0 +126560,14555,0,46962,0,0 +126564,14559,0,47355,0,0 +126565,14560,0,49742,0,0 +126566,14561,0,47365,0,0 +126567,14562,0,49743,0,0 +126568,14563,0,49744,0,0 +126569,14564,0,49745,0,0 +126570,14565,0,47363,0,0 +126571,14566,0,49746,0,0 +126572,14567,0,46118,0,0 +126573,14568,0,47350,0,0 +126574,14569,0,46119,0,0 +126575,14570,0,46573,0,0 +126576,14571,0,49747,0,0 +126577,14572,0,47359,0,0 +126578,14573,0,48016,0,0 +126579,14574,0,45803,0,0 +126580,14575,0,49427,0,0 +126581,14576,0,49748,0,0 +126582,14577,0,48735,0,0 +126583,14578,0,47456,0,0 +126584,14579,0,47812,0,0 +126585,14580,0,47876,0,0 +126586,14581,0,49749,0,0 +126587,14582,0,49750,0,0 +126588,14583,0,47851,0,0 +126589,14584,0,46964,0,0 +126590,14585,0,47465,0,0 +126591,14586,0,49417,0,0 +126592,14587,0,47424,0,0 +126593,14588,0,47786,0,0 +126594,14589,0,47787,0,0 +126595,14590,0,47788,0,0 +126596,14591,0,48013,0,0 +126597,14592,0,47789,0,0 +126598,14593,0,49751,0,0 +126599,14594,0,47790,0,0 +126600,14595,0,47791,0,0 +126601,14596,0,46338,0,0 +126602,14598,0,48019,0,0 +126603,14599,0,48015,0,0 +126604,14600,0,48018,0,0 +126605,14601,0,48011,0,0 +126606,14602,0,49752,0,0 +126607,14603,0,47307,0,0 +126608,14604,0,49753,0,0 +126609,14605,0,48012,0,0 +126610,14606,0,48014,0,0 +126611,14607,0,48292,0,0 +126612,14608,0,47074,0,0 +126614,14611,0,49754,0,0 +126615,14612,0,47872,0,0 +126617,14614,0,49755,0,0 +126618,14615,0,49756,0,0 +126619,14616,0,49757,0,0 +126620,14617,0,49758,0,0 +126621,14618,0,49759,0,0 +126623,14620,0,49558,0,0 +126624,14621,0,49760,0,0 +126625,14622,0,49761,0,0 +126626,14623,0,49762,0,0 +126627,14624,0,49482,0,0 +126629,14626,0,49763,0,0 +126632,14629,0,47049,0,0 +126634,14631,0,49764,0,0 +126635,14632,0,46337,0,0 +126636,14633,0,49765,0,0 +126639,14636,0,47265,0,0 +126640,14637,0,49766,0,0 +126641,14638,0,47050,0,0 +126643,14640,0,47658,0,0 +126644,14641,0,47659,0,0 +126645,14642,0,49767,0,0 +126646,14643,0,46671,0,0 +126655,14652,0,48606,0,0 +126656,14653,0,48601,0,0 +126657,14654,0,48602,0,0 +126658,14655,0,49768,0,0 +126659,14656,0,49750,0,0 +126660,14657,0,48605,0,0 +126661,14658,0,46614,0,0 +126662,14659,0,49769,0,0 +126663,14660,0,49770,0,0 +126664,14661,0,49473,0,0 +126665,14662,0,48976,0,0 +126666,14663,0,49771,0,0 +126667,14664,0,49772,0,0 +126668,14665,0,49773,0,0 +126669,14666,0,49774,0,0 +126670,14667,0,48309,0,0 +126671,14668,0,49775,0,0 +126672,14669,0,49776,0,0 +126673,14670,0,49768,0,0 +126674,14671,0,48601,0,0 +126675,14672,0,48602,0,0 +126676,14673,0,49777,0,0 +126677,14674,0,48606,0,0 +126678,14675,0,48605,0,0 +126679,14676,0,48200,0,0 +126680,14677,0,48606,0,0 +126681,14678,0,48607,0,0 +126683,14680,0,48271,0,0 +126684,14681,0,48269,0,0 +126685,14682,0,48270,0,0 +126686,14683,0,49773,0,0 +126687,14684,0,48082,0,0 +126688,14685,0,48273,0,0 +126689,14686,0,47693,0,0 +126690,14687,0,48274,0,0 +126691,14688,0,48275,0,0 +126692,14689,0,46587,0,0 +126693,14690,0,46689,0,0 +126694,14692,0,49778,0,0 +126695,14693,0,46269,0,0 +126696,14694,0,46588,0,0 +126697,14695,0,46586,0,0 +126698,14697,0,46585,0,0 +126699,14698,0,45842,0,0 +126700,14699,0,46372,0,0 +126701,14700,0,46373,0,0 +126702,14701,0,49779,0,0 +126703,14702,0,47244,0,0 +126704,14703,0,46597,0,0 +126705,14704,0,46265,0,0 +126706,14705,0,49295,0,0 +126707,14706,0,48428,0,0 +126708,14707,0,47348,0,0 +126709,14722,0,49780,0,0 +126710,14723,0,49781,0,0 +126711,14724,0,49782,0,0 +126712,14725,0,49783,0,0 +126713,14726,0,49784,0,0 +126714,14727,0,49783,0,0 +126715,14728,0,49785,0,0 +126716,14729,0,49435,0,0 +126717,14730,0,49786,0,0 +126718,14742,0,49787,0,0 +126719,14743,0,49497,0,0 +126720,14744,0,49126,0,0 +126721,14745,0,49044,0,0 +126722,14746,0,49788,0,0 +126723,14747,0,49789,0,0 +126724,14748,0,49790,0,0 +126725,14749,0,49791,0,0 +126726,14750,0,49792,0,0 +126727,14751,0,49793,0,0 +126728,14752,0,49794,0,0 +126729,14753,0,49795,0,0 +126730,14754,0,49796,0,0 +126731,14755,0,49755,0,0 +126732,14756,0,49797,0,0 +126733,14757,0,49798,0,0 +126734,14758,0,49799,0,0 +126735,14759,0,49800,0,0 +126736,14760,0,49801,0,0 +126737,14761,0,49802,0,0 +126738,14762,0,49803,0,0 +126739,14763,0,49804,0,0 +126740,14764,0,49805,0,0 +126741,14765,0,48339,0,0 +126742,14766,0,49806,0,0 +126743,14767,0,49807,0,0 +126744,14768,0,49808,0,0 +126745,14769,0,49809,0,0 +126746,14770,0,49810,0,0 +126747,14771,0,46810,0,0 +126748,14772,0,49228,0,0 +126749,14773,0,49811,0,0 +126750,14774,0,49812,0,0 +126751,14775,0,49813,0,0 +126752,14776,0,49814,0,0 +126753,14777,0,46658,0,0 +126754,14778,0,47288,0,0 +126755,14779,0,47117,0,0 +126756,14780,0,48853,0,0 +126757,14781,0,49314,0,0 +126758,14782,0,49815,0,0 +126759,14783,0,49816,0,0 +126760,14784,0,49817,0,0 +126761,14785,0,49818,0,0 +126762,14786,0,49819,0,0 +126763,14787,0,49820,0,0 +126764,14788,0,49821,0,0 +126765,14789,0,49822,0,0 +126766,14790,0,49823,0,0 +126767,14791,0,48053,0,0 +126768,14792,0,49824,0,0 +126769,14793,0,49825,0,0 +126770,14794,0,49826,0,0 +126771,14795,0,48209,0,0 +126772,14796,0,49827,0,0 +126773,14797,0,49828,0,0 +126774,14798,0,49829,0,0 +126775,14799,0,49830,0,0 +126776,14800,0,48852,0,0 +126777,14801,0,49831,0,0 +126778,14802,0,49832,0,0 +126779,14803,0,49833,0,0 +126780,14804,0,48332,0,0 +126781,14805,0,49834,0,0 +126782,14806,0,48755,0,0 +126783,14807,0,49059,0,0 +126784,14808,0,47467,0,0 +126785,14809,0,46034,0,0 +126786,14810,0,47537,0,0 +126787,14811,0,49835,0,0 +126788,14812,0,49205,0,0 +126789,14813,0,49836,0,0 +126790,14814,0,45909,0,0 +126791,14815,0,49837,0,0 +126792,14816,0,49838,0,0 +126793,14817,0,49839,0,0 +126794,14818,0,49840,0,0 +126795,14819,0,49728,0,0 +126796,14820,0,49730,0,0 +126797,14821,0,49841,0,0 +126798,14822,0,49842,0,0 +126799,14823,0,49843,0,0 +126800,14824,0,49844,0,0 +126801,14825,0,49374,0,0 +126802,14826,0,49845,0,0 +126803,14827,0,49846,0,0 +126804,14828,0,49847,0,0 +126805,14829,0,49848,0,0 +126806,14830,0,49849,0,0 +126807,14831,0,49850,0,0 +126808,14832,0,49851,0,0 +126809,14833,0,49852,0,0 +126810,14834,0,49853,0,0 +126811,14835,0,49854,0,0 +126812,14836,0,48939,0,0 +126813,14837,0,49855,0,0 +126814,14838,0,49856,0,0 +126815,14839,0,49857,0,0 +126816,14840,0,49858,0,0 +126817,14841,0,49859,0,0 +126818,14842,0,49860,0,0 +126819,14843,0,49861,0,0 +126820,14844,0,49862,0,0 +126821,14845,0,49863,0,0 +126822,14846,0,49864,0,0 +126823,14847,0,49865,0,0 +126824,14848,0,49866,0,0 +126825,14849,0,48777,0,0 +126826,14850,0,49867,0,0 +126827,14851,0,49868,0,0 +126828,14852,0,46158,0,0 +126829,14853,0,49381,0,0 +126830,14854,0,49869,0,0 +126831,14855,0,49224,0,0 +126832,14856,0,49870,0,0 +126833,14857,0,49871,0,0 +126834,14858,0,49872,0,0 +126835,14859,0,49873,0,0 +126836,14860,0,49874,0,0 +126837,14861,0,49153,0,0 +126838,14862,0,49875,0,0 +126839,14863,0,49876,0,0 +126840,14864,0,49877,0,0 +126841,14865,0,49878,0,0 +126842,14866,0,49879,0,0 +126843,14867,0,49880,0,0 +126844,14868,0,49881,0,0 +126845,14869,0,49882,0,0 +126846,14870,0,49247,0,0 +126847,14871,0,49883,0,0 +126849,14873,0,49884,0,0 +126850,14874,0,49489,0,0 +126851,14875,0,49309,0,0 +126852,14876,0,49885,0,0 +126853,14877,0,49448,0,0 +126854,14878,0,47528,0,0 +126855,14879,0,49886,0,0 +126856,14880,0,49887,0,0 +126857,14881,0,49888,0,0 +126858,14882,0,49889,0,0 +126859,14883,0,49890,0,0 +126860,14884,0,49891,0,0 +126861,14885,0,49892,0,0 +126862,14886,0,49893,0,0 +126863,14887,0,49894,0,0 +126864,14888,0,49895,0,0 +126865,14889,0,49896,0,0 +126866,14890,0,49897,0,0 +126867,14891,0,49898,0,0 +126868,14892,0,47489,0,0 +126869,14893,0,49321,0,0 +126871,14895,0,49045,0,0 +126872,14896,0,49899,0,0 +126873,14897,0,49900,0,0 +126874,14898,0,49901,0,0 +126875,14899,0,49902,0,0 +126876,14900,0,49903,0,0 +126877,14901,0,49904,0,0 +126878,14902,0,49170,0,0 +126879,14903,0,49485,0,0 +126880,14904,0,49905,0,0 +126881,14905,0,49906,0,0 +126882,14906,0,49907,0,0 +126883,14907,0,47820,0,0 +126884,14908,0,49284,0,0 +126885,14909,0,49908,0,0 +126886,14910,0,49909,0,0 +126887,14911,0,49910,0,0 +126888,14912,0,46158,0,0 +126889,14913,0,49089,0,0 +126890,14914,0,49911,0,0 +126891,14915,0,49912,0,0 +126892,14916,0,47695,0,0 +126893,14917,0,49913,0,0 +126894,14918,0,49914,0,0 +126895,14919,0,49915,0,0 +126896,14920,0,49916,0,0 +126897,14921,0,49917,0,0 +126898,14922,0,49116,0,0 +126899,14923,0,49918,0,0 +126900,14924,0,49919,0,0 +126901,14925,0,48289,0,0 +126902,14926,0,49920,0,0 +126903,14927,0,49921,0,0 +126904,14928,0,49922,0,0 +126905,14929,0,49923,0,0 +126906,14930,0,48962,0,0 +126907,14931,0,49924,0,0 +126908,14932,0,49193,0,0 +126909,14933,0,49925,0,0 +126910,14934,0,49926,0,0 +126911,14935,0,48988,0,0 +126912,14936,0,49927,0,0 +126913,14937,0,49928,0,0 +126914,14938,0,49929,0,0 +126915,14939,0,49215,0,0 +126916,14940,0,49930,0,0 +126917,14941,0,49931,0,0 +126918,14942,0,49932,0,0 +126919,14943,0,49933,0,0 +126920,14944,0,49934,0,0 +126921,14945,0,49935,0,0 +126922,14946,0,49936,0,0 +126923,14947,0,49470,0,0 +126924,14948,0,49937,0,0 +126925,14949,0,49938,0,0 +126926,14950,0,49939,0,0 +126927,14951,0,49940,0,0 +126928,14952,0,48873,0,0 +126929,14953,0,49941,0,0 +126930,14954,0,48116,0,0 +126931,14955,0,49942,0,0 +126932,14956,0,49943,0,0 +126933,14957,0,49944,0,0 +126934,14958,0,49945,0,0 +126935,14959,0,49946,0,0 +126936,14960,0,49947,0,0 +126937,14961,0,49948,0,0 +126938,14962,0,49949,0,0 +126939,14963,0,49950,0,0 +126940,14964,0,49205,0,0 +126941,14965,0,49951,0,0 +126942,14966,0,49952,0,0 +126943,14967,0,49953,0,0 +126944,14968,0,49954,0,0 +126945,14969,0,49955,0,0 +126946,14970,0,49956,0,0 +126947,14971,0,49957,0,0 +126948,14972,0,49958,0,0 +126949,14973,0,48482,0,0 +126950,14974,0,49959,0,0 +126951,14975,0,49960,0,0 +126952,14976,0,49961,0,0 +126953,14977,0,49962,0,0 +126954,14978,0,49963,0,0 +126955,14979,0,49964,0,0 +126956,14980,0,49965,0,0 +126957,14981,0,49966,0,0 +126958,14982,0,48517,0,0 +126959,14983,0,49967,0,0 +126961,15003,0,47430,0,0 +126962,15004,0,47440,0,0 +126963,15005,0,47341,0,0 +126964,15006,0,47935,0,0 +126965,15007,0,46091,0,0 +126966,15008,0,49968,0,0 +126967,15009,0,47329,0,0 +126968,15010,0,45892,0,0 +126969,15011,0,46118,0,0 +126970,15012,0,45801,0,0 +126971,15013,0,46119,0,0 +126972,15014,0,49969,0,0 +126973,15015,0,46077,0,0 +126974,15016,0,47359,0,0 +126975,15017,0,45803,0,0 +126976,15018,0,46573,0,0 +126977,15019,0,48016,0,0 +126982,15045,0,49970,0,0 +126983,15046,0,49971,0,0 +126984,15047,0,48750,0,0 +126985,15048,0,49972,0,0 +126986,15049,0,49973,0,0 +126987,15050,0,49974,0,0 +126988,15051,0,49975,0,0 +126989,15052,0,49976,0,0 +126990,15053,0,49977,0,0 +126991,15054,0,49978,0,0 +126992,15055,0,49979,0,0 +126993,15056,0,49980,0,0 +126994,15057,0,46831,0,0 +126995,15058,0,49464,0,0 +126996,15059,0,49981,0,0 +126997,15060,0,49982,0,0 +126998,15061,0,49983,0,0 +126999,15062,0,47542,0,0 +127000,15063,0,47138,0,0 +127001,15064,0,47507,0,0 +127002,15065,0,46738,0,0 +127003,15066,0,49984,0,0 +127004,15067,0,49985,0,0 +127005,15068,0,48675,0,0 +127006,15069,0,48464,0,0 +127007,15070,0,48676,0,0 +127008,15071,0,48673,0,0 +127009,15072,0,49986,0,0 +127010,15073,0,47098,0,0 +127011,15074,0,47834,0,0 +127012,15075,0,49987,0,0 +127013,15076,0,48791,0,0 +127014,15077,0,48794,0,0 +127015,15078,0,48101,0,0 +127016,15079,0,48797,0,0 +127017,15080,0,49988,0,0 +127018,15081,0,49989,0,0 +127019,15082,0,48792,0,0 +127020,15083,0,49990,0,0 +127021,15084,0,49991,0,0 +127022,15085,0,49992,0,0 +127023,15086,0,48640,0,0 +127024,15087,0,49073,0,0 +127025,15088,0,47355,0,0 +127026,15089,0,48791,0,0 +127027,15090,0,49316,0,0 +127028,15091,0,49993,0,0 +127029,15092,0,48741,0,0 +127030,15093,0,49994,0,0 +127031,15094,0,49995,0,0 +127032,15095,0,48745,0,0 +127033,15096,0,48746,0,0 +127036,15104,0,49996,0,0 +127037,15105,0,49372,0,0 +127038,15106,0,49997,0,0 +127039,15107,0,48065,0,0 +127040,15108,0,48065,0,0 +127041,15109,0,49998,0,0 +127042,15110,0,46780,0,0 +127043,15111,0,49999,0,0 +127044,15112,0,47303,0,0 +127045,15113,0,46888,0,0 +127046,15114,0,50000,0,0 +127047,15115,0,47131,0,0 +127048,15116,0,47135,0,0 +127049,15117,0,47401,0,0 +127050,15118,0,50001,0,0 +127051,15119,0,48629,0,0 +127052,15120,0,50002,0,0 +127053,15121,0,50003,0,0 +127054,15122,0,46175,0,0 +127055,15123,0,47784,0,0 +127056,15124,0,46894,0,0 +127057,15125,0,47137,0,0 +127058,15126,0,46525,0,0 +127059,15127,0,47970,0,0 +127060,15128,0,46353,0,0 +127061,15129,0,50004,0,0 +127062,15130,0,48911,0,0 +127063,15131,0,47645,0,0 +127064,15132,0,50005,0,0 +127065,15133,0,50006,0,0 +127066,15134,0,48332,0,0 +127067,15135,0,50007,0,0 +127068,15136,0,47148,0,0 +127069,15137,0,47138,0,0 +127070,15138,0,49491,0,0 +127071,15139,0,47542,0,0 +127072,15140,0,50008,0,0 +127073,15141,0,49974,0,0 +127074,15142,0,46786,0,0 +127075,15143,0,46785,0,0 +127076,15144,0,46351,0,0 +127077,15145,0,49823,0,0 +127078,15146,0,47215,0,0 +127079,15147,0,50009,0,0 +127080,15148,0,50010,0,0 +127081,15149,0,46153,0,0 +127082,15150,0,49698,0,0 +127083,15151,0,46707,0,0 +127084,15152,0,48125,0,0 +127085,15153,0,48795,0,0 +127086,15154,0,47638,0,0 +127087,15155,0,48967,0,0 +127088,15156,0,48439,0,0 +127089,15157,0,46312,0,0 +127090,15158,0,50011,0,0 +127091,15159,0,50012,0,0 +127092,15160,0,46698,0,0 +127093,15161,0,48792,0,0 +127094,15162,0,50013,0,0 +127095,15163,0,50014,0,0 +127096,15164,0,50015,0,0 +127097,15165,0,47345,0,0 +127098,15166,0,50016,0,0 +127099,15167,0,50017,0,0 +127100,15168,0,47316,0,0 +127101,15169,0,50018,0,0 +127102,15170,0,48197,0,0 +127103,15171,0,48195,0,0 +127104,15172,0,48196,0,0 +127105,15173,0,50019,0,0 +127106,15174,0,48199,0,0 +127107,15175,0,50020,0,0 +127108,15176,0,48201,0,0 +127109,15177,0,50021,0,0 +127110,15178,0,48600,0,0 +127111,15179,0,48075,0,0 +127112,15180,0,48076,0,0 +127113,15181,0,48078,0,0 +127114,15182,0,48081,0,0 +127115,15183,0,50022,0,0 +127116,15184,0,48077,0,0 +127117,15185,0,50023,0,0 +127118,15186,0,48076,0,0 +127119,15187,0,50024,0,0 +127120,15188,0,48794,0,0 +127121,15189,0,48793,0,0 +127122,15190,0,50025,0,0 +127123,15191,0,48792,0,0 +127124,15192,0,48101,0,0 +127125,15193,0,50026,0,0 +127126,15194,0,50027,0,0 +127127,15195,0,50028,0,0 +127128,15196,0,50029,0,0 +127129,15197,0,50030,0,0 +127130,15198,0,50031,0,0 +127131,15199,0,50032,0,0 +127133,15202,0,46237,0,0 +127134,15203,0,50033,0,0 +127135,15204,0,50034,0,0 +127136,15205,0,48419,0,0 +127137,15206,0,48500,0,0 +127138,15207,0,48851,0,0 +127141,15210,0,50035,0,0 +127142,15211,0,50036,0,0 +127143,15212,0,50037,0,0 +127144,15213,0,50038,0,0 +127145,15214,0,49415,0,0 +127146,15215,0,50039,0,0 +127147,15216,0,50040,0,0 +127148,15217,0,50041,0,0 +127149,15218,0,50042,0,0 +127150,15219,0,46273,0,0 +127151,15220,0,50043,0,0 +127152,15221,0,50044,0,0 +127153,15222,0,45795,0,0 +127154,15223,0,48098,0,0 +127155,15224,0,50045,0,0 +127156,15225,0,50046,0,0 +127157,15226,0,50047,0,0 +127158,15227,0,45847,0,0 +127159,15228,0,45891,0,0 +127160,15229,0,48113,0,0 +127161,15230,0,50048,0,0 +127162,15231,0,50049,0,0 +127163,15232,0,46183,0,0 +127164,15233,0,48914,0,0 +127165,15234,0,46022,0,0 +127166,15235,0,46130,0,0 +127167,15236,0,50050,0,0 +127168,15237,0,48132,0,0 +127169,15238,0,50051,0,0 +127170,15239,0,50052,0,0 +127171,15240,0,49261,0,0 +127172,15241,0,46854,0,0 +127173,15242,0,50053,0,0 +127174,15243,0,50054,0,0 +127175,15244,0,49135,0,0 +127176,15245,0,46771,0,0 +127177,15246,0,49250,0,0 +127178,15247,0,47500,0,0 +127179,15248,0,50055,0,0 +127180,15249,0,50056,0,0 +127181,15250,0,50057,0,0 +127182,15251,0,50058,0,0 +127183,15252,0,50059,0,0 +127184,15253,0,50060,0,0 +127185,15254,0,46215,0,0 +127186,15255,0,50061,0,0 +127187,15256,0,50062,0,0 +127188,15257,0,50063,0,0 +127189,15258,0,49243,0,0 +127190,15259,0,50064,0,0 +127191,15260,0,50065,0,0 +127192,15261,0,49728,0,0 +127193,15262,0,50066,0,0 +127194,15263,0,46447,0,0 +127195,15264,0,50067,0,0 +127196,15265,0,50068,0,0 +127197,15266,0,50069,0,0 +127198,15267,0,50070,0,0 +127199,15268,0,50071,0,0 +127200,15269,0,50072,0,0 +127201,15270,0,50073,0,0 +127202,15271,0,50074,0,0 +127203,15272,0,50075,0,0 +127204,15273,0,50076,0,0 +127205,15274,0,45988,0,0 +127206,15275,0,50077,0,0 +127207,15276,0,49031,0,0 +127209,15278,0,50078,0,0 +127210,15279,0,47418,0,0 +127211,15280,0,50079,0,0 +127212,15281,0,50080,0,0 +127213,15282,0,50081,0,0 +127214,15283,0,50082,0,0 +127215,15284,0,50083,0,0 +127216,15285,0,46513,0,0 +127217,15286,0,50084,0,0 +127218,15287,0,46645,0,0 +127219,15288,0,50085,0,0 +127220,15289,0,50086,0,0 +127222,15291,0,50087,0,0 +127225,15294,0,50088,0,0 +127226,15295,0,47427,0,0 +127227,15296,0,50089,0,0 +127228,15297,0,47011,0,0 +127229,15298,0,50090,0,0 +127230,15299,0,45924,0,0 +127231,15300,0,47013,0,0 +127232,15301,0,47010,0,0 +127233,15302,0,47009,0,0 +127234,15303,0,47014,0,0 +127235,15304,0,50091,0,0 +127236,15305,0,50092,0,0 +127237,15306,0,46368,0,0 +127238,15307,0,47846,0,0 +127239,15308,0,46365,0,0 +127240,15309,0,47241,0,0 +127241,15310,0,50093,0,0 +127242,15311,0,50094,0,0 +127243,15312,0,50095,0,0 +127244,15313,0,50096,0,0 +127246,15322,0,46423,0,0 +127247,15323,0,50097,0,0 +127248,15324,0,50098,0,0 +127249,15325,0,46222,0,0 +127253,15329,0,46856,0,0 +127254,15330,0,46595,0,0 +127255,15331,0,46683,0,0 +127256,15332,0,47762,0,0 +127257,15333,0,50101,0,0 +127258,15334,0,46596,0,0 +127259,15335,0,50102,0,0 +127260,15336,0,46594,0,0 +127261,15337,0,50103,0,0 +127262,15338,0,47119,0,0 +127263,15339,0,50104,0,0 +127264,15340,0,46932,0,0 +127265,15341,0,50105,0,0 +127266,15342,0,47695,0,0 +127267,15343,0,50106,0,0 +127268,15344,0,46594,0,0 +127269,15345,0,47119,0,0 +127270,15346,0,50103,0,0 +127271,15347,0,46856,0,0 +127272,15348,0,46683,0,0 +127273,15349,0,47831,0,0 +127274,15350,0,50107,0,0 +127275,15351,0,50108,0,0 +127276,15352,0,50109,0,0 +127277,15353,0,50110,0,0 +127278,15354,0,48080,0,0 +127279,15355,0,47702,0,0 +127280,15356,0,48373,0,0 +127281,15357,0,47234,0,0 +127282,15358,0,47708,0,0 +127283,15359,0,50111,0,0 +127284,15360,0,50112,0,0 +127285,15361,0,46994,0,0 +127286,15362,0,46995,0,0 +127287,15363,0,47822,0,0 +127288,15364,0,50113,0,0 +127289,15365,0,46997,0,0 +127290,15366,0,46998,0,0 +127291,15367,0,50114,0,0 +127292,15368,0,46330,0,0 +127293,15369,0,47201,0,0 +127294,15370,0,50013,0,0 +127295,15371,0,50115,0,0 +127296,15372,0,50016,0,0 +127297,15373,0,49294,0,0 +127298,15374,0,47316,0,0 +127299,15375,0,48773,0,0 +127300,15376,0,50015,0,0 +127301,15377,0,50014,0,0 +127302,15378,0,48600,0,0 +127303,15379,0,48078,0,0 +127304,15380,0,48081,0,0 +127305,15381,0,48075,0,0 +127306,15382,0,48604,0,0 +127307,15383,0,48077,0,0 +127308,15384,0,49294,0,0 +127309,15385,0,48076,0,0 +127310,15386,0,50008,0,0 +127311,15387,0,49771,0,0 +127312,15388,0,49473,0,0 +127313,15389,0,48976,0,0 +127314,15390,0,50116,0,0 +127315,15391,0,50117,0,0 +127316,15392,0,50118,0,0 +127317,15393,0,49774,0,0 +127318,15394,0,49473,0,0 +127319,15395,0,46338,0,0 +127320,15396,0,47825,0,0 +127321,15397,0,46129,0,0 +127322,15398,0,47155,0,0 +127323,15399,0,50119,0,0 +127324,15400,0,50120,0,0 +127325,15401,0,45983,0,0 +127326,15402,0,50121,0,0 +127327,15403,0,47011,0,0 +127328,15404,0,47333,0,0 +127329,15405,0,50122,0,0 +127330,15406,0,48492,0,0 +127337,15413,0,50123,0,0 +127342,15418,0,50124,0,0 +127345,15421,0,50125,0,0 +127348,15424,0,46667,0,0 +127349,15425,0,50126,0,0 +127350,15426,0,48942,0,0 +127351,15427,0,48795,0,0 +127352,15428,0,50127,0,0 +127353,15429,0,50128,0,0 +127354,15430,0,50129,0,0 +127355,15431,0,50130,0,0 +127356,15432,0,50131,0,0 +127357,15433,0,50132,0,0 +127358,15434,0,50133,0,0 +127359,15435,0,50134,0,0 +127360,15436,0,50135,0,0 +127361,15437,0,49648,0,0 +127362,15438,0,50136,0,0 +127363,15439,0,50137,0,0 +127364,15440,0,50138,0,0 +127365,15441,0,48360,0,0 +127366,15442,0,48986,0,0 +127367,15443,0,50139,0,0 +127368,15444,0,50140,0,0 +127369,15445,0,49252,0,0 +127373,15449,0,46800,0,0 +127374,15450,0,47955,0,0 +127375,15451,0,46443,0,0 +127376,15452,0,47441,0,0 +127377,15453,0,46735,0,0 +127379,15455,0,49502,0,0 +127380,15456,0,46998,0,0 +127381,15457,0,46984,0,0 +127382,15458,0,50141,0,0 +127383,15459,0,50142,0,0 +127384,15460,0,50143,0,0 +127385,15461,0,49701,0,0 +127386,15462,0,46996,0,0 +127387,15463,0,50144,0,0 +127388,15464,0,50145,0,0 +127389,15465,0,50146,0,0 +127390,15466,0,50109,0,0 +127392,15468,0,50147,0,0 +127393,15469,0,49389,0,0 +127394,15470,0,50148,0,0 +127395,15471,0,50012,0,0 +127396,15472,0,50149,0,0 +127397,15473,0,50150,0,0 +127398,15474,0,50151,0,0 +127399,15475,0,50152,0,0 +127400,15476,0,50121,0,0 +127401,15477,0,46489,0,0 +127402,15478,0,47389,0,0 +127403,15479,0,50153,0,0 +127404,15480,0,50154,0,0 +127405,15481,0,50155,0,0 +127406,15482,0,49598,0,0 +127407,15483,0,49782,0,0 +127408,15484,0,50156,0,0 +127409,15485,0,48928,0,0 +127410,15486,0,46158,0,0 +127411,15487,0,50157,0,0 +127412,15488,0,50158,0,0 +127413,15489,0,50159,0,0 +127414,15490,0,49782,0,0 +127415,15491,0,50160,0,0 +127416,15492,0,49755,0,0 +127417,15493,0,50161,0,0 +127418,15494,0,49428,0,0 +127419,15495,0,50162,0,0 +127420,15496,0,50163,0,0 +127421,15497,0,50164,0,0 +127422,15498,0,50165,0,0 +127423,15499,0,50166,0,0 +127424,15500,0,50167,0,0 +127425,15501,0,50168,0,0 +127426,15502,0,50169,0,0 +127427,15503,0,50170,0,0 +127428,15504,0,50171,0,0 +127429,15505,0,50172,0,0 +127430,15506,0,50173,0,0 +127431,15507,0,50174,0,0 +127432,15508,0,50175,0,0 +127433,15509,0,50176,0,0 +127434,15510,0,50177,0,0 +127435,15511,0,50178,0,0 +127436,15512,0,47361,0,0 +127437,15513,0,50179,0,0 +127438,15514,0,50180,0,0 +127439,15515,0,50181,0,0 +127440,15516,0,50182,0,0 +127441,15517,0,49562,0,0 +127442,15518,0,50183,0,0 +127443,15519,0,50184,0,0 +127444,15520,0,50185,0,0 +127445,15521,0,50186,0,0 +127446,15522,0,48084,0,0 +127447,15523,0,50187,0,0 +127448,15524,0,50188,0,0 +127449,15525,0,50189,0,0 +127450,15526,0,50190,0,0 +127451,15527,0,50191,0,0 +127452,15528,0,50192,0,0 +127453,15529,0,50193,0,0 +127454,15530,0,47210,0,0 +127455,15531,0,45839,0,0 +127456,15532,0,50194,0,0 +127457,15533,0,49652,0,0 +127458,15534,0,50195,0,0 +127459,15535,0,50142,0,0 +127460,15536,0,49376,0,0 +127461,15537,0,47685,0,0 +127462,15538,0,50196,0,0 +127463,15539,0,50197,0,0 +127464,15540,0,50198,0,0 +127465,15541,0,50199,0,0 +127466,15542,0,45970,0,0 +127467,15543,0,48531,0,0 +127468,15544,0,50200,0,0 +127469,15545,0,50201,0,0 +127470,15546,0,50202,0,0 +127471,15547,0,50203,0,0 +127472,15548,0,50204,0,0 +127473,15549,0,50205,0,0 +127474,15550,0,47996,0,0 +127475,15551,0,50206,0,0 +127476,15552,0,50207,0,0 +127477,15553,0,50208,0,0 +127478,15554,0,50209,0,0 +127479,15555,0,50210,0,0 +127480,15556,0,50211,0,0 +127481,15557,0,50212,0,0 +127482,15558,0,50213,0,0 +127483,15559,0,50214,0,0 +127484,15560,0,50215,0,0 +127485,15561,0,50216,0,0 +127486,15562,0,50217,0,0 +127487,15563,0,50218,0,0 +127489,15565,0,50219,0,0 +127490,15566,0,50220,0,0 +127491,15567,0,50221,0,0 +127492,15568,0,50222,0,0 +127493,15569,0,46162,0,0 +127494,15570,0,50223,0,0 +127495,15571,0,50224,0,0 +127496,15572,0,48022,0,0 +127497,15573,0,50225,0,0 +127498,15574,0,48025,0,0 +127499,15575,0,50226,0,0 +127500,15576,0,50227,0,0 +127501,15577,0,50228,0,0 +127502,15578,0,50229,0,0 +127503,15579,0,50000,0,0 +127504,15580,0,46944,0,0 +127505,15581,0,50230,0,0 +127506,15582,0,50231,0,0 +127507,15583,0,50232,0,0 +127508,15584,0,47230,0,0 +127509,15585,0,47911,0,0 +127511,15587,0,47831,0,0 +127512,15588,0,48972,0,0 +127513,15589,0,50233,0,0 +127514,15590,0,50234,0,0 +127515,15591,0,50235,0,0 +127516,15592,0,50236,0,0 +127517,15593,0,50237,0,0 +127518,15594,0,50238,0,0 +127519,15595,0,50239,0,0 +127520,15596,0,50240,0,0 +127521,15597,0,50241,0,0 +127522,15598,0,50242,0,0 +127523,15599,0,50243,0,0 +127524,15600,0,50244,0,0 +127525,15601,0,50245,0,0 +127526,15602,0,50246,0,0 +127527,15603,0,50190,0,0 +127528,15604,0,45888,0,0 +127529,15605,0,49413,0,0 +127530,15606,0,50247,0,0 +127531,15607,0,50248,0,0 +127532,15608,0,50249,0,0 +127533,15609,0,50250,0,0 +127534,15610,0,50251,0,0 +127535,15611,0,48715,0,0 +127536,15612,0,50252,0,0 +127537,15613,0,48473,0,0 +127538,15614,0,50253,0,0 +127539,15615,0,48085,0,0 +127540,15616,0,48927,0,0 +127541,15617,0,45839,0,0 +127542,15618,0,48083,0,0 +127543,15619,0,50164,0,0 +127544,15620,0,48359,0,0 +127545,15621,0,46152,0,0 +127546,15622,0,50254,0,0 +127547,15623,0,50255,0,0 +127548,15624,0,47549,0,0 +127549,15625,0,50256,0,0 +127550,15626,0,50257,0,0 +127551,15627,0,50258,0,0 +127552,15628,0,49985,0,0 +127553,15629,0,50259,0,0 +127554,15630,0,50260,0,0 +127555,15631,0,50261,0,0 +127556,15632,0,50262,0,0 +127557,15633,0,48330,0,0 +127558,15634,0,48685,0,0 +127559,15635,0,50263,0,0 +127560,15636,0,50264,0,0 +127561,15637,0,50265,0,0 +127562,15638,0,50266,0,0 +127563,15639,0,50267,0,0 +127564,15640,0,50268,0,0 +127565,15641,0,50269,0,0 +127566,15642,0,50270,0,0 +127567,15643,0,49084,0,0 +127568,15644,0,50271,0,0 +127569,15645,0,50272,0,0 +127570,15646,0,50273,0,0 +127571,15647,0,50274,0,0 +127572,15648,0,49470,0,0 +127573,15649,0,50275,0,0 +127574,15650,0,50276,0,0 +127575,15651,0,48752,0,0 +127576,15652,0,46810,0,0 +127577,15653,0,50277,0,0 +127578,15654,0,50278,0,0 +127579,15655,0,50279,0,0 +127580,15656,0,48438,0,0 +127581,15657,0,50006,0,0 +127582,15658,0,50280,0,0 +127583,15659,0,50281,0,0 +127584,15660,0,50282,0,0 +127585,15661,0,50262,0,0 +127586,15662,0,50283,0,0 +127587,15663,0,50284,0,0 +127588,15664,0,46027,0,0 +127589,15665,0,50285,0,0 +127590,15666,0,50286,0,0 +127591,15667,0,50287,0,0 +127592,15668,0,50288,0,0 +127593,15669,0,50289,0,0 +127594,15670,0,48873,0,0 +127595,15671,0,46810,0,0 +127596,15672,0,50290,0,0 +127597,15673,0,50291,0,0 +127598,15674,0,50292,0,0 +127599,15675,0,48751,0,0 +127600,15676,0,50293,0,0 +127601,15677,0,50294,0,0 +127602,15678,0,50295,0,0 +127603,15679,0,50296,0,0 +127604,15680,0,50297,0,0 +127605,15681,0,48827,0,0 +127606,15682,0,50298,0,0 +127607,15683,0,50299,0,0 +127608,15684,0,49818,0,0 +127609,15685,0,50300,0,0 +127610,15686,0,49820,0,0 +127611,15687,0,48212,0,0 +127615,15691,0,46556,0,0 +127616,15692,0,50301,0,0 +127617,15693,0,50302,0,0 +127618,15694,0,50303,0,0 +127619,15695,0,47963,0,0 +127621,15697,0,48731,0,0 +127622,15698,0,50304,0,0 +127625,15703,0,50305,0,0 +127627,15705,0,50306,0,0 +127628,15706,0,50307,0,0 +127629,15707,0,50308,0,0 +127630,15708,0,50309,0,0 +127631,15709,0,49926,0,0 +127693,15782,0,45993,0,0 +127694,15783,0,50310,0,0 +127695,15784,0,49645,0,0 +127697,15786,0,50116,0,0 +127698,15787,0,50311,0,0 +127700,15789,0,50312,0,0 +127702,15791,0,48554,0,0 +127703,15792,0,50313,0,0 +127705,15794,0,50314,0,0 +127706,15795,0,50315,0,0 +127707,15796,0,50166,0,0 +127708,15797,0,49909,0,0 +127711,15800,0,50316,0,0 +127712,15801,0,50317,0,0 +127713,15802,0,48294,0,0 +127715,15804,0,49686,0,0 +127716,15805,0,46496,0,0 +127717,15806,0,50318,0,0 +127718,15807,0,46446,0,0 +127719,15808,0,46446,0,0 +127720,15809,0,46446,0,0 +127721,15810,0,45949,0,0 +127722,15811,0,46042,0,0 +127723,15812,0,50319,0,0 +127724,15813,0,50320,0,0 +127725,15814,0,48977,0,0 +127726,15815,0,48770,0,0 +127727,15822,0,50321,0,0 +127728,15823,0,50322,0,0 +127729,15824,0,48461,0,0 +127730,15825,0,50323,0,0 +127732,15827,0,50324,0,0 +127744,15853,0,50325,0,0 +127745,15854,0,50326,0,0 +127748,15857,0,50327,0,0 +127749,15858,0,50328,0,0 +127750,15859,0,50329,0,0 +127751,15860,0,49929,0,0 +127752,15861,0,50330,0,0 +127753,15862,0,50331,0,0 +127754,15863,0,46821,0,0 +127755,15864,0,50332,0,0 +127756,15865,0,50333,0,0 +127757,15866,0,49235,0,0 +127778,15887,0,48406,0,0 +127779,15890,0,50171,0,0 +127780,15891,0,49470,0,0 +127781,15892,0,50334,0,0 +127782,15893,0,48406,0,0 +127783,15894,0,47651,0,0 +127784,15895,0,50335,0,0 +127786,15903,0,46824,0,0 +127787,15904,0,49032,0,0 +127788,15905,0,48095,0,0 +127789,15906,0,48095,0,0 +127790,15907,0,49028,0,0 +127792,15909,0,50336,0,0 +127793,15910,0,49076,0,0 +127795,15912,0,50337,0,0 +127801,15918,0,50338,0,0 +127808,15925,0,50339,0,0 +127809,15926,0,49007,0,0 +127810,15927,0,49007,0,0 +127811,15928,0,46326,0,0 +127812,15929,0,49334,0,0 +127813,15930,0,50340,0,0 +127814,15931,0,49236,0,0 +127815,15932,0,47094,0,0 +127816,15933,0,47849,0,0 +127817,15934,0,45988,0,0 +127818,15935,0,50341,0,0 +127819,15936,0,50342,0,0 +127820,15937,0,50343,0,0 +127821,15938,0,50344,0,0 +127822,15939,0,50345,0,0 +127823,15940,0,50346,0,0 +127824,15941,0,50347,0,0 +127825,15942,0,46919,0,0 +127826,15943,0,48517,0,0 +127828,15945,0,47521,0,0 +127829,15946,0,50348,0,0 +127830,15947,0,46271,0,0 +127831,15962,0,50349,0,0 +127832,15963,0,50350,0,0 +127833,15964,0,50351,0,0 +127834,15965,0,47109,0,0 +127835,15966,0,50343,0,0 +127836,15967,0,50352,0,0 +127837,15968,0,48097,0,0 +127839,15970,0,47849,0,0 +127840,15971,0,49458,0,0 +127841,15972,0,46490,0,0 +127842,15973,0,48088,0,0 +127843,15974,0,47480,0,0 +127844,15975,0,50353,0,0 +127845,15976,0,50354,0,0 +127846,15977,0,50343,0,0 +127847,15978,0,48093,0,0 +127848,15979,0,46032,0,0 +127849,15980,0,50355,0,0 +127850,15981,0,50356,0,0 +127851,15982,0,50357,0,0 +127852,15983,0,50358,0,0 +127853,15984,0,50359,0,0 +127854,15985,0,48087,0,0 +127855,15986,0,47497,0,0 +127856,15987,0,48512,0,0 +127857,15988,0,48121,0,0 +127858,15989,0,46272,0,0 +127859,15990,0,50360,0,0 +127860,15991,0,48084,0,0 +127864,15995,0,47861,0,0 +127866,15997,0,46427,0,0 +127868,15999,0,50361,0,0 +127873,16004,0,50362,0,0 +127876,16007,0,49547,0,0 +127877,16008,0,50363,0,0 +127883,16026,0,50364,0,0 +127884,16027,0,50365,0,0 +127885,16028,0,50366,0,0 +127886,16029,0,50367,0,0 +127887,16030,0,50368,0,0 +127888,16031,0,50369,0,0 +127890,16033,0,50370,0,0 +127891,16034,0,50371,0,0 +127892,16035,0,50372,0,0 +127893,16036,0,50373,0,0 +127894,16037,0,50374,0,0 +127895,16038,0,50375,0,0 +127896,16039,0,49726,0,0 +127915,16059,0,47181,0,0 +127916,16060,0,46460,0,0 +127917,16061,0,47921,0,0 +127918,16062,0,48010,0,0 +127919,16063,0,47977,0,0 +127920,16064,0,48010,0,0 +127921,16065,0,47989,0,0 +127922,16066,0,47989,0,0 +127950,16116,0,50000,0,0 +127951,16117,0,47977,0,0 +127952,16118,0,46976,0,0 +127953,16119,0,47973,0,0 +127954,16120,0,48010,0,0 +127955,16121,0,46479,0,0 +127956,16122,0,47921,0,0 +127960,16126,0,48010,0,0 +127961,16127,0,47973,0,0 +127962,16128,0,46479,0,0 +127963,16129,0,47989,0,0 +127964,16130,0,46479,0,0 +127965,16131,0,48010,0,0 +127966,16132,0,47973,0,0 +127967,16133,0,46479,0,0 +127968,16134,0,47921,0,0 +127969,16135,0,47989,0,0 +127970,16136,0,48010,0,0 +127971,16137,0,47973,0,0 +127972,16138,0,46479,0,0 +127973,16139,0,47990,0,0 +127974,16140,0,47990,0,0 +127975,16141,0,47996,0,0 +127976,16142,0,48027,0,0 +127977,16143,0,50376,0,0 +127978,16144,0,47991,0,0 +127979,16145,0,48010,0,0 +127980,16146,0,46479,0,0 +127981,16147,0,47921,0,0 +127982,16148,0,47991,0,0 +127983,16149,0,50376,0,0 +127984,16150,0,47703,0,0 +127985,16151,0,47989,0,0 +127986,16152,0,48010,0,0 +127987,16153,0,47973,0,0 +127988,16154,0,47921,0,0 +127989,16155,0,47703,0,0 +127990,16156,0,47990,0,0 +127991,16157,0,47989,0,0 +127992,16158,0,48027,0,0 +127993,16159,0,47996,0,0 +127994,16160,0,50377,0,0 +127995,16161,0,50378,0,0 +127996,16162,0,50377,0,0 +127997,16163,0,48549,0,0 +127998,16164,0,48548,0,0 +127999,16165,0,47999,0,0 +128006,16172,0,50378,0,0 +128036,16211,0,48130,0,0 +128037,16212,0,47539,0,0 +128038,16213,0,48130,0,0 +128081,16315,0,50379,0,0 +128101,16336,0,50379,0,0 +128102,16337,0,50379,0,0 +128105,16341,0,50380,0,0 +128106,16342,0,50379,0,0 +128109,16345,0,50381,0,0 +128131,16367,0,50382,0,0 +128133,16369,0,50383,0,0 +128134,16370,0,50384,0,0 +128155,16391,0,50385,0,0 +128156,16392,0,50386,0,0 +128157,16393,0,50387,0,0 +128158,16394,0,50388,0,0 +128159,16395,0,50388,0,0 +128160,16396,0,50389,0,0 +128161,16397,0,50390,0,0 +128162,16398,0,50391,0,0 +128163,16399,0,50391,0,0 +128164,16400,0,50392,0,0 +128165,16401,0,50393,0,0 +128166,16402,0,50394,0,0 +128167,16403,0,50395,0,0 +128168,16405,0,50368,0,0 +128169,16406,0,50367,0,0 +128171,16409,0,50396,0,0 +128172,16410,0,50397,0,0 +128173,16411,0,50398,0,0 +128174,16412,0,50370,0,0 +128175,16413,0,50399,0,0 +128176,16414,0,50400,0,0 +128177,16415,0,50401,0,0 +128178,16416,0,50402,0,0 +128179,16417,0,50403,0,0 +128180,16418,0,50404,0,0 +128181,16419,0,50405,0,0 +128182,16420,0,50406,0,0 +128183,16421,0,50407,0,0 +128184,16422,0,50408,0,0 +128185,16423,0,50409,0,0 +128186,16424,0,50410,0,0 +128187,16425,0,50411,0,0 +128188,16426,0,50412,0,0 +128189,16427,0,50413,0,0 +128190,16428,0,50414,0,0 +128191,16429,0,50415,0,0 +128192,16430,0,50416,0,0 +128193,16431,0,50366,0,0 +128194,16432,0,50369,0,0 +128195,16433,0,50417,0,0 +128196,16434,0,50418,0,0 +128197,16435,0,50419,0,0 +128198,16436,0,50420,0,0 +128199,16437,0,50421,0,0 +128200,16438,0,50422,0,0 +128201,16439,0,50423,0,0 +128202,16440,0,50424,0,0 +128203,16441,0,50425,0,0 +128204,16442,0,48735,0,0 +128205,16443,0,50426,0,0 +128206,16444,0,50427,0,0 +128207,16445,0,50428,0,0 +128208,16446,0,50429,0,0 +128209,16447,0,50430,0,0 +128210,16448,0,50389,0,0 +128211,16449,0,50406,0,0 +128212,16450,0,50405,0,0 +128213,16451,0,50404,0,0 +128214,16452,0,50403,0,0 +128215,16453,0,50403,0,0 +128216,16454,0,50389,0,0 +128217,16455,0,50404,0,0 +128218,16456,0,50405,0,0 +128219,16457,0,50406,0,0 +128220,16458,0,50430,0,0 +128221,16459,0,50429,0,0 +128222,16460,0,50428,0,0 +128223,16461,0,50431,0,0 +128224,16462,0,50432,0,0 +128225,16463,0,50433,0,0 +128226,16464,0,50434,0,0 +128227,16465,0,50435,0,0 +128228,16466,0,50436,0,0 +128229,16467,0,50437,0,0 +128230,16468,0,50438,0,0 +128231,16469,0,50439,0,0 +128232,16470,0,50440,0,0 +128233,16471,0,50397,0,0 +128234,16472,0,50396,0,0 +128235,16473,0,50417,0,0 +128236,16474,0,50418,0,0 +128237,16475,0,50419,0,0 +128238,16476,0,50420,0,0 +128239,16477,0,50417,0,0 +128240,16478,0,50441,0,0 +128241,16479,0,50419,0,0 +128242,16480,0,50420,0,0 +128243,16481,0,50439,0,0 +128244,16482,0,50440,0,0 +128245,16483,0,50396,0,0 +128246,16484,0,50397,0,0 +128247,16485,0,50442,0,0 +128248,16486,0,50443,0,0 +128249,16487,0,50444,0,0 +128250,16488,0,50445,0,0 +128251,16489,0,50446,0,0 +128252,16490,0,49000,0,0 +128253,16491,0,50447,0,0 +128254,16492,0,50448,0,0 +128255,16493,0,50449,0,0 +128256,16494,0,50450,0,0 +128257,16495,0,50451,0,0 +128258,16496,0,50452,0,0 +128259,16497,0,50453,0,0 +128260,16498,0,50454,0,0 +128261,16499,0,50455,0,0 +128262,16500,0,50451,0,0 +128263,16501,0,50456,0,0 +128264,16502,0,50457,0,0 +128265,16503,0,50458,0,0 +128266,16504,0,50459,0,0 +128267,16505,0,50460,0,0 +128268,16506,0,50461,0,0 +128269,16507,0,50462,0,0 +128270,16508,0,50463,0,0 +128271,16509,0,50464,0,0 +128272,16510,0,50465,0,0 +128273,16513,0,50466,0,0 +128274,16514,0,50467,0,0 +128275,16515,0,50468,0,0 +128276,16516,0,50469,0,0 +128277,16517,0,50470,0,0 +128278,16518,0,50471,0,0 +128279,16519,0,50472,0,0 +128280,16521,0,50473,0,0 +128281,16522,0,50474,0,0 +128282,16523,0,50475,0,0 +128283,16524,0,50476,0,0 +128284,16525,0,50477,0,0 +128285,16526,0,50478,0,0 +128286,16527,0,50479,0,0 +128287,16528,0,50480,0,0 +128288,16529,0,50481,0,0 +128289,16530,0,50482,0,0 +128290,16531,0,50483,0,0 +128291,16532,0,50470,0,0 +128292,16533,0,50484,0,0 +128293,16534,0,48629,0,0 +128294,16535,0,50485,0,0 +128295,16536,0,50486,0,0 +128296,16537,0,50487,0,0 +128297,16538,0,50488,0,0 +128298,16539,0,50489,0,0 +128299,16540,0,50490,0,0 +128300,16541,0,50491,0,0 +128301,16542,0,50492,0,0 +128302,16543,0,50493,0,0 +128303,16544,0,50494,0,0 +128304,16545,0,50495,0,0 +128305,16546,0,50496,0,0 +128306,16547,0,50497,0,0 +128307,16548,0,50498,0,0 +128308,16549,0,50499,0,0 +128309,16550,0,50500,0,0 +128310,16551,0,50501,0,0 +128311,16552,0,50502,0,0 +128312,16553,0,50453,0,0 +128313,16554,0,50503,0,0 +128314,16555,0,50504,0,0 +128315,16556,0,50505,0,0 +128316,16557,0,50505,0,0 +128317,16558,0,50506,0,0 +128318,16559,0,50453,0,0 +128319,16560,0,50507,0,0 +128320,16561,0,50508,0,0 +128321,16562,0,50509,0,0 +128322,16563,0,50510,0,0 +128323,16564,0,50511,0,0 +128324,16565,0,50512,0,0 +128325,16566,0,50513,0,0 +128326,16567,0,50514,0,0 +128327,16568,0,50515,0,0 +128328,16569,0,50516,0,0 +128329,16570,0,50517,0,0 +128330,16571,0,50518,0,0 +128331,16572,0,50519,0,0 +128332,16573,0,50520,0,0 +128333,16574,0,50521,0,0 +128334,16575,0,50519,0,0 +128335,16576,0,50517,0,0 +128336,16577,0,50522,0,0 +128337,16578,0,50523,0,0 +128338,16579,0,50524,0,0 +128339,16580,0,50525,0,0 +128341,16582,0,50526,0,0 +128345,16604,0,50527,0,0 +128346,16605,0,46690,0,0 +128347,16606,0,50528,0,0 +128348,16607,0,50529,0,0 +128349,16608,0,45999,0,0 +128350,16622,0,46530,0,0 +128368,16658,0,50000,0,0 +128369,16659,0,50127,0,0 +128370,16660,0,50530,0,0 +128371,16661,0,50531,0,0 +128375,16666,0,50532,0,0 +128376,16667,0,50533,0,0 +128377,16668,0,50534,0,0 +128378,16669,0,50535,0,0 +128379,16670,0,50536,0,0 +128380,16671,0,50537,0,0 +128381,16672,0,50538,0,0 +128382,16673,0,50539,0,0 +128383,16674,0,50540,0,0 +128384,16675,0,50541,0,0 +128385,16676,0,50542,0,0 +128386,16677,0,50543,0,0 +128387,16678,0,50544,0,0 +128388,16679,0,50545,0,0 +128389,16680,0,50546,0,0 +128390,16681,0,50547,0,0 +128391,16682,0,50548,0,0 +128392,16683,0,50549,0,0 +128393,16684,0,50550,0,0 +128394,16685,0,50551,0,0 +128395,16686,0,50552,0,0 +128396,16687,0,49635,0,0 +128397,16688,0,50553,0,0 +128398,16689,0,50554,0,0 +128399,16690,0,50555,0,0 +128400,16691,0,50556,0,0 +128401,16692,0,50557,0,0 +128402,16693,0,50558,0,0 +128403,16694,0,50559,0,0 +128404,16695,0,50560,0,0 +128405,16696,0,50561,0,0 +128406,16697,0,50562,0,0 +128407,16698,0,50563,0,0 +128408,16699,0,50564,0,0 +128409,16700,0,50565,0,0 +128410,16701,0,50566,0,0 +128411,16702,0,50567,0,0 +128412,16703,0,50568,0,0 +128413,16704,0,50569,0,0 +128414,16705,0,50570,0,0 +128415,16706,0,50571,0,0 +128416,16707,0,50572,0,0 +128417,16708,0,50573,0,0 +128418,16709,0,50574,0,0 +128419,16710,0,49503,0,0 +128420,16711,0,50575,0,0 +128421,16712,0,50576,0,0 +128422,16713,0,46121,0,0 +128423,16714,0,50577,0,0 +128424,16715,0,50578,0,0 +128425,16716,0,50579,0,0 +128426,16717,0,50580,0,0 +128427,16718,0,50581,0,0 +128428,16719,0,50582,0,0 +128429,16720,0,50583,0,0 +128430,16721,0,50323,0,0 +128431,16722,0,50584,0,0 +128432,16723,0,50585,0,0 +128433,16724,0,50586,0,0 +128434,16725,0,50587,0,0 +128435,16726,0,50588,0,0 +128436,16727,0,50589,0,0 +128437,16728,0,50590,0,0 +128438,16729,0,50591,0,0 +128439,16730,0,50592,0,0 +128440,16731,0,50593,0,0 +128441,16732,0,50594,0,0 +128442,16733,0,50595,0,0 +128443,16734,0,50596,0,0 +128444,16735,0,50597,0,0 +128445,16736,0,50598,0,0 +128446,16737,0,50599,0,0 +128447,16738,0,48364,0,0 +128448,16739,0,50600,0,0 +128449,16740,0,48932,0,0 +128450,16741,0,47013,0,0 +128464,16768,0,49267,0,0 +128465,16769,0,48455,0,0 +128472,16788,0,46018,0,0 +128473,16789,0,50601,0,0 +128475,16791,0,48886,0,0 +128476,16793,0,50602,0,0 +128477,16794,0,50603,0,0 +128478,16795,0,50604,0,0 +128479,16796,0,50605,0,0 +128480,16797,0,50606,0,0 +128481,16798,0,50607,0,0 +128482,16799,0,50608,0,0 +128483,16800,0,50609,0,0 +128484,16801,0,50610,0,0 +128485,16802,0,50611,0,0 +128486,16803,0,50612,0,0 +128487,16804,0,50613,0,0 +128488,16805,0,50614,0,0 +128489,16806,0,50615,0,0 +128490,16807,0,50616,0,0 +128491,16808,0,50617,0,0 +128492,16809,0,50618,0,0 +128493,16810,0,50619,0,0 +128494,16811,0,50620,0,0 +128495,16812,0,50621,0,0 +128496,16813,0,50622,0,0 +128497,16814,0,48701,0,0 +128498,16815,0,50623,0,0 +128499,16816,0,50624,0,0 +128500,16817,0,50625,0,0 +128501,16818,0,50626,0,0 +128502,16819,0,50627,0,0 +128503,16820,0,50628,0,0 +128504,16821,0,50629,0,0 +128505,16822,0,50630,0,0 +128506,16823,0,50631,0,0 +128507,16824,0,50632,0,0 +128508,16825,0,50633,0,0 +128509,16826,0,50634,0,0 +128510,16827,0,50635,0,0 +128511,16828,0,50636,0,0 +128512,16829,0,50637,0,0 +128513,16830,0,50638,0,0 +128514,16831,0,50639,0,0 +128515,16832,0,50640,0,0 +128516,16833,0,50641,0,0 +128517,16834,0,50642,0,0 +128518,16835,0,50643,0,0 +128519,16836,0,50644,0,0 +128520,16837,0,50645,0,0 +128521,16838,0,50646,0,0 +128522,16839,0,50647,0,0 +128523,16840,0,50648,0,0 +128524,16841,0,50649,0,0 +128525,16842,0,50650,0,0 +128526,16843,0,50651,0,0 +128527,16844,0,50652,0,0 +128528,16845,0,50653,0,0 +128529,16846,0,50654,0,0 +128530,16847,0,50655,0,0 +128531,16848,0,50656,0,0 +128532,16849,0,50657,0,0 +128533,16850,0,50658,0,0 +128534,16851,0,50659,0,0 +128535,16852,0,50660,0,0 +128536,16853,0,50661,0,0 +128537,16854,0,50662,0,0 +128538,16855,0,50663,0,0 +128539,16856,0,50664,0,0 +128540,16857,0,50665,0,0 +128541,16858,0,50666,0,0 +128542,16859,0,50667,0,0 +128543,16860,0,50668,0,0 +128544,16861,0,50669,0,0 +128545,16862,0,50670,0,0 +128546,16863,0,50671,0,0 +128547,16864,0,50672,0,0 +128548,16865,0,50673,0,0 +128549,16866,0,50674,0,0 +128550,16867,0,50675,0,0 +128551,16868,0,50676,0,0 +128556,16873,0,50677,0,0 +128561,16886,0,50678,0,0 +128562,16887,0,50679,0,0 +128564,16889,0,50680,0,0 +128565,16890,0,50681,0,0 +128566,16891,0,50682,0,0 +128569,16894,0,50683,0,0 +128572,16897,0,50684,0,0 +128573,16898,0,50685,0,0 +128574,16899,0,50686,0,0 +128575,16900,0,50687,0,0 +128576,16901,0,50688,0,0 +128577,16902,0,50689,0,0 +128578,16903,0,50690,0,0 +128579,16904,0,50691,0,0 +128580,16905,0,50692,0,0 +128581,16906,0,50693,0,0 +128582,16907,0,50694,0,0 +128583,16908,0,50695,0,0 +128584,16909,0,50696,0,0 +128585,16910,0,50697,0,0 +128586,16911,0,50698,0,0 +128587,16912,0,50699,0,0 +128588,16913,0,50700,0,0 +128589,16914,0,50701,0,0 +128590,16915,0,50702,0,0 +128591,16916,0,50703,0,0 +128592,16917,0,50704,0,0 +128593,16918,0,50705,0,0 +128594,16919,0,50706,0,0 +128595,16920,0,50707,0,0 +128596,16921,0,50708,0,0 +128597,16922,0,50709,0,0 +128598,16923,0,50710,0,0 +128599,16924,0,50711,0,0 +128600,16925,0,50712,0,0 +128601,16926,0,50713,0,0 +128602,16927,0,50714,0,0 +128603,16928,0,50715,0,0 +128604,16929,0,50716,0,0 +128605,16930,0,49635,0,0 +128606,16931,0,50717,0,0 +128607,16932,0,50718,0,0 +128608,16933,0,50719,0,0 +128609,16934,0,50720,0,0 +128610,16935,0,50721,0,0 +128611,16936,0,50722,0,0 +128612,16937,0,50723,0,0 +128613,16938,0,50724,0,0 +128614,16939,0,50725,0,0 +128615,16940,0,50726,0,0 +128616,16941,0,50727,0,0 +128617,16942,0,50728,0,0 +128618,16943,0,50729,0,0 +128619,16944,0,50730,0,0 +128620,16945,0,50731,0,0 +128621,16946,0,50732,0,0 +128622,16947,0,50733,0,0 +128623,16948,0,50734,0,0 +128624,16949,0,50735,0,0 +128625,16950,0,50736,0,0 +128626,16951,0,50737,0,0 +128627,16952,0,50738,0,0 +128628,16953,0,50739,0,0 +128629,16954,0,50740,0,0 +128630,16955,0,50741,0,0 +128631,16956,0,50742,0,0 +128632,16957,0,50743,0,0 +128633,16958,0,50744,0,0 +128634,16959,0,50745,0,0 +128635,16960,0,50746,0,0 +128636,16961,0,50747,0,0 +128637,16962,0,50748,0,0 +128638,16963,0,50749,0,0 +128639,16964,0,50750,0,0 +128640,16965,0,50751,0,0 +128641,16966,0,50752,0,0 +128642,16967,0,47617,0,0 +128650,16975,0,47881,0,0 +128652,16977,0,46995,0,0 +128653,16978,0,50169,0,0 +128654,16979,0,50753,0,0 +128655,16980,0,50754,0,0 +128656,16981,0,46757,0,0 +128657,16982,0,50755,0,0 +128658,16983,0,50756,0,0 +128659,16984,0,50757,0,0 +128660,16985,0,49696,0,0 +128661,16986,0,50144,0,0 +128662,16987,0,46365,0,0 +128663,16988,0,48875,0,0 +128664,16989,0,50758,0,0 +128665,16990,0,50759,0,0 +128667,16992,0,49404,0,0 +128668,16993,0,47421,0,0 +128669,16994,0,46153,0,0 +128670,16995,0,49698,0,0 +128671,16996,0,50760,0,0 +128672,16997,0,50761,0,0 +128673,16998,0,50762,0,0 +128676,17002,0,50763,0,0 +128677,17003,0,50764,0,0 +128678,17004,0,50765,0,0 +128679,17005,0,50111,0,0 +128680,17006,0,50170,0,0 +128681,17007,0,50766,0,0 +128687,17013,0,50767,0,0 +128688,17014,0,50267,0,0 +128689,17015,0,49517,0,0 +128690,17016,0,49489,0,0 +128713,17039,0,50768,0,0 +128714,17040,0,50769,0,0 +128715,17041,0,50770,0,0 +128716,17042,0,48233,0,0 +128717,17043,0,49578,0,0 +128720,17046,0,50771,0,0 +128721,17047,0,47278,0,0 +128724,17050,0,50772,0,0 +128728,17054,0,50773,0,0 +128729,17055,0,48157,0,0 +128735,17061,0,50774,0,0 +128740,17066,0,50775,0,0 +128741,17067,0,50776,0,0 +128742,17068,0,50777,0,0 +128743,17069,0,50778,0,0 +128744,17070,0,50779,0,0 +128745,17071,0,50780,0,0 +128746,17072,0,50143,0,0 +128747,17073,0,50781,0,0 +128748,17074,0,50782,0,0 +128749,17075,0,50783,0,0 +128750,17076,0,50784,0,0 +128751,17077,0,50785,0,0 +128752,17078,0,47280,0,0 +128754,17102,0,50305,0,0 +128755,17103,0,50786,0,0 +128756,17104,0,50787,0,0 +128757,17105,0,50788,0,0 +128758,17106,0,50789,0,0 +128759,17107,0,50790,0,0 +128764,17112,0,50791,0,0 +128765,17113,0,50792,0,0 +128773,17123,0,49339,0,0 +128777,17142,0,50793,0,0 +128780,17182,0,50794,0,0 +128781,17183,0,50090,0,0 +128782,17184,0,50795,0,0 +128783,17185,0,50796,0,0 +128784,17186,0,49823,0,0 +128785,17187,0,50797,0,0 +128786,17188,0,50798,0,0 +128787,17189,0,46198,0,0 +128788,17190,0,47074,0,0 +128790,17192,0,46658,0,0 +128791,17193,0,50799,0,0 +128804,17223,0,50800,0,0 +128808,17282,0,50801,0,0 +128809,17283,0,47429,0,0 +128831,17342,0,45863,0,0 +128832,17343,0,48130,0,0 +128848,17382,0,50802,0,0 +128849,17383,0,50076,0,0 +128866,17462,0,50803,0,0 +128867,17463,0,49244,0,0 +128868,17482,0,48212,0,0 +128875,17508,0,47076,0,0 +128877,17523,0,50804,0,0 +128879,17562,0,50805,0,0 +128880,17563,0,50384,0,0 +128881,17564,0,50806,0,0 +128882,17565,0,50382,0,0 +128883,17566,0,50807,0,0 +128884,17567,0,50808,0,0 +128885,17568,0,50809,0,0 +128886,17569,0,50810,0,0 +128887,17570,0,50372,0,0 +128888,17571,0,49627,0,0 +128889,17572,0,50811,0,0 +128890,17573,0,50812,0,0 +128891,17574,0,50445,0,0 +128892,17575,0,50443,0,0 +128893,17576,0,50813,0,0 +128894,17577,0,50814,0,0 +128895,17578,0,50815,0,0 +128896,17579,0,49419,0,0 +128897,17580,0,50816,0,0 +128898,17581,0,50817,0,0 +128899,17582,0,50422,0,0 +128900,17583,0,50818,0,0 +128901,17584,0,50819,0,0 +128902,17585,0,50423,0,0 +128903,17586,0,50820,0,0 +128904,17587,0,50488,0,0 +128905,17588,0,50821,0,0 +128906,17589,0,50487,0,0 +128907,17590,0,50822,0,0 +128908,17591,0,50823,0,0 +128909,17592,0,50824,0,0 +128910,17593,0,47669,0,0 +128911,17594,0,50825,0,0 +128912,17595,0,50384,0,0 +128913,17596,0,50826,0,0 +128914,17597,0,50382,0,0 +128915,17598,0,50827,0,0 +128916,17599,0,48789,0,0 +128917,17600,0,50828,0,0 +128918,17601,0,50829,0,0 +128919,17602,0,50830,0,0 +128920,17603,0,48669,0,0 +128921,17604,0,50831,0,0 +128922,17605,0,50832,0,0 +128923,17606,0,50422,0,0 +128924,17607,0,50833,0,0 +128925,17608,0,50834,0,0 +128926,17609,0,50423,0,0 +128927,17610,0,50835,0,0 +128928,17611,0,47669,0,0 +128929,17612,0,50836,0,0 +128930,17613,0,50837,0,0 +128931,17614,0,50445,0,0 +128932,17615,0,50443,0,0 +128933,17616,0,50838,0,0 +128934,17617,0,50839,0,0 +128935,17618,0,50840,0,0 +128936,17619,0,50488,0,0 +128937,17620,0,50841,0,0 +128938,17621,0,50487,0,0 +128939,17622,0,50842,0,0 +128940,17623,0,50843,0,0 +128941,17624,0,50844,0,0 +128942,17625,0,47209,0,0 +128951,17686,0,49038,0,0 +128952,17687,0,46222,0,0 +128953,17688,0,50845,0,0 +128960,17695,0,50846,0,0 +128964,17704,0,50847,0,0 +128965,17705,0,50848,0,0 +128970,17710,0,50849,0,0 +128971,17711,0,50285,0,0 +128974,17714,0,49430,0,0 +128975,17715,0,50850,0,0 +128977,17717,0,46781,0,0 +128978,17718,0,49005,0,0 +128979,17719,0,50851,0,0 +128981,17721,0,50852,0,0 +128983,17723,0,50853,0,0 +128988,17728,0,47691,0,0 +128990,17730,0,50854,0,0 +128992,17732,0,50855,0,0 +128993,17734,0,49054,0,0 +128995,17736,0,50144,0,0 +128996,17737,0,50856,0,0 +128997,17738,0,50336,0,0 +128998,17739,0,50857,0,0 +128999,17740,0,49294,0,0 +129000,17741,0,47965,0,0 +129001,17742,0,50858,0,0 +129002,17743,0,49147,0,0 +129004,17745,0,50859,0,0 +129005,17746,0,50860,0,0 +129007,17748,0,50861,0,0 +129008,17749,0,50862,0,0 +129009,17750,0,50863,0,0 +129010,17751,0,48040,0,0 +129011,17752,0,46263,0,0 +129012,17753,0,50864,0,0 +129013,17754,0,50865,0,0 +129014,17755,0,46876,0,0 +129025,17766,0,50866,0,0 +129026,17767,0,50867,0,0 +129028,17770,0,50868,0,0 +129033,17775,0,50869,0,0 +129034,17776,0,50870,0,0 +129035,17777,0,50871,0,0 +129036,17778,0,47113,0,0 +129037,17779,0,50872,0,0 +129038,17780,0,50873,0,0 +129111,17922,0,46080,0,0 +129112,17942,0,46440,0,0 +129113,17943,0,46040,0,0 +129121,18002,0,50874,0,0 +129124,18042,0,50875,0,0 +129125,18043,0,50876,0,0 +129126,18044,0,46491,0,0 +129129,18047,0,49037,0,0 +129130,18048,0,47379,0,0 +129131,18062,0,50877,0,0 +129132,18082,0,47436,0,0 +129133,18083,0,50878,0,0 +129134,18102,0,47670,0,0 +129136,18104,0,50197,0,0 +129139,18122,0,50879,0,0 +129140,18123,0,50880,0,0 +129160,18161,0,45733,0,0 +129161,18162,0,45733,0,0 +129162,18163,0,45733,0,0 +129163,18164,0,45733,0,0 +129164,18165,0,45733,0,0 +129165,18166,0,50881,0,0 +129166,18167,0,48258,0,0 +129167,18168,0,49006,0,0 +129174,18202,0,50882,0,0 +129175,18203,0,50883,0,0 +129176,18204,0,50884,0,0 +129180,18208,0,47170,0,0 +129191,18231,0,50885,0,0 +129198,18238,0,48101,0,0 +129223,18263,0,50014,0,0 +129230,18282,0,50886,0,0 +129241,18293,0,50887,0,0 +129243,18295,0,50888,0,0 +129244,18296,0,48545,0,0 +129246,18298,0,50138,0,0 +129249,18301,0,50889,0,0 +129251,18303,0,47076,0,0 +129252,18304,0,50890,0,0 +129253,18305,0,50891,0,0 +129254,18306,0,47052,0,0 +129255,18307,0,47059,0,0 +129256,18308,0,50892,0,0 +129257,18309,0,48542,0,0 +129258,18310,0,45863,0,0 +129259,18311,0,46272,0,0 +129260,18312,0,50893,0,0 +129261,18313,0,49394,0,0 +129264,18316,0,49334,0,0 +129266,18318,0,46816,0,0 +129267,18319,0,47087,0,0 +129268,18320,0,49820,0,0 +129269,18321,0,45817,0,0 +129270,18322,0,50894,0,0 +129271,18323,0,47343,0,0 +129272,18324,0,47879,0,0 +129273,18325,0,48164,0,0 +129274,18326,0,49946,0,0 +129275,18327,0,46560,0,0 +129276,18328,0,49619,0,0 +129285,18337,0,50895,0,0 +129286,18338,0,47217,0,0 +129287,18339,0,50896,0,0 +129289,18341,0,49529,0,0 +129290,18342,0,47447,0,0 +129292,18344,0,47834,0,0 +129294,18346,0,45781,0,0 +129295,18347,0,48153,0,0 +129296,18348,0,50897,0,0 +129297,18349,0,47997,0,0 +129298,18350,0,45880,0,0 +129299,18351,0,50898,0,0 +129300,18352,0,49435,0,0 +129301,18353,0,46791,0,0 +129314,18366,0,50899,0,0 +129315,18367,0,50900,0,0 +129316,18368,0,47747,0,0 +129317,18369,0,45983,0,0 +129320,18372,0,48158,0,0 +129321,18373,0,48039,0,0 +129322,18374,0,49464,0,0 +129323,18375,0,48392,0,0 +129324,18376,0,48405,0,0 +129325,18377,0,48967,0,0 +129326,18378,0,46258,0,0 +129327,18379,0,49561,0,0 +129328,18380,0,50901,0,0 +129330,18382,0,49191,0,0 +129331,18383,0,48757,0,0 +129332,18384,0,50902,0,0 +129333,18385,0,48628,0,0 +129334,18386,0,48068,0,0 +129335,18387,0,47054,0,0 +129336,18388,0,47474,0,0 +129337,18389,0,47302,0,0 +129338,18390,0,48251,0,0 +129339,18391,0,50903,0,0 +129340,18392,0,46526,0,0 +129341,18393,0,50904,0,0 +129342,18394,0,47288,0,0 +129344,18396,0,49146,0,0 +129353,18405,0,50905,0,0 +129355,18407,0,48263,0,0 +129356,18408,0,46828,0,0 +129357,18409,0,50906,0,0 +129358,18410,0,50907,0,0 +129359,18411,0,50908,0,0 +129361,18413,0,50909,0,0 +129367,18419,0,49114,0,0 +129368,18420,0,47530,0,0 +129369,18421,0,50910,0,0 +129372,18424,0,48163,0,0 +129373,18425,0,46491,0,0 +129375,18427,0,50380,0,0 +129377,18429,0,50911,0,0 +129378,18430,0,50911,0,0 +129379,18432,0,50470,0,0 +129380,18434,0,50449,0,0 +129381,18435,0,50453,0,0 +129382,18436,0,50449,0,0 +129383,18437,0,50443,0,0 +129385,18439,0,50380,0,0 +129386,18440,0,50379,0,0 +129387,18441,0,50379,0,0 +129391,18445,0,50370,0,0 +129392,18447,0,50370,0,0 +129393,18448,0,50912,0,0 +129394,18449,0,50912,0,0 +129395,18450,0,48117,0,0 +129396,18451,0,50913,0,0 +129397,18452,0,50428,0,0 +129398,18453,0,50428,0,0 +129399,18454,0,50388,0,0 +129400,18455,0,50388,0,0 +129401,18456,0,50384,0,0 +129402,18457,0,50384,0,0 +129403,18458,0,48203,0,0 +129404,18459,0,48284,0,0 +129405,18460,0,48404,0,0 +129406,18461,0,50380,0,0 +129407,18462,0,50914,0,0 +129408,18463,0,47221,0,0 +129420,18475,0,48038,0,0 +129421,18476,0,50915,0,0 +129422,18477,0,47824,0,0 +129423,18478,0,47813,0,0 +129424,18479,0,48950,0,0 +129425,18480,0,48620,0,0 +129426,18481,0,47643,0,0 +129427,18482,0,46419,0,0 +129428,18483,0,48064,0,0 +129429,18484,0,49337,0,0 +129430,18485,0,48469,0,0 +129431,18486,0,50916,0,0 +129435,18490,0,46769,0,0 +129436,18491,0,47825,0,0 +129438,18493,0,50917,0,0 +129439,18494,0,46699,0,0 +129440,18495,0,48427,0,0 +129441,18496,0,50918,0,0 +129442,18497,0,50919,0,0 +129443,18498,0,46532,0,0 +129444,18499,0,47210,0,0 +129447,18502,0,47325,0,0 +129448,18503,0,50920,0,0 +129449,18504,0,47683,0,0 +129450,18505,0,48046,0,0 +129451,18506,0,50921,0,0 +129452,18507,0,47795,0,0 +129453,18508,0,50922,0,0 +129454,18509,0,48468,0,0 +129455,18510,0,50923,0,0 +129456,18511,0,50924,0,0 +129465,18520,0,50925,0,0 +129466,18521,0,50253,0,0 +129468,18523,0,50348,0,0 +129469,18524,0,50926,0,0 +129470,18525,0,48045,0,0 +129471,18526,0,48831,0,0 +129472,18527,0,50927,0,0 +129473,18528,0,46094,0,0 +129474,18529,0,50928,0,0 +129475,18530,0,48497,0,0 +129476,18531,0,46674,0,0 +129477,18532,0,50929,0,0 +129478,18533,0,50930,0,0 +129479,18534,0,48093,0,0 +129480,18535,0,49170,0,0 +129481,18536,0,49270,0,0 +129483,18538,0,50931,0,0 +129486,18541,0,50118,0,0 +129487,18542,0,50932,0,0 +129489,18544,0,50933,0,0 +129490,18545,0,47058,0,0 +129491,18546,0,50934,0,0 +129492,18547,0,50935,0,0 +129497,18582,0,50936,0,0 +129498,18583,0,50937,0,0 +129499,18584,0,50938,0,0 +129509,18596,0,50325,0,0 +129515,18602,0,49270,0,0 +129521,18608,0,50939,0,0 +129522,18609,0,50940,0,0 +129523,18610,0,45857,0,0 +129524,18611,0,45735,0,0 +129525,18612,0,46372,0,0 +129548,18644,0,50941,0,0 +129575,18671,0,50942,0,0 +129576,18672,0,50355,0,0 +129577,18673,0,47149,0,0 +129580,18676,0,50320,0,0 +129581,18677,0,46937,0,0 +129584,18680,0,50943,0,0 +129585,18681,0,48668,0,0 +129586,18682,0,45728,0,0 +129587,18683,0,50768,0,0 +129590,18686,0,47107,0,0 +129593,18689,0,47426,0,0 +129594,18690,0,49762,0,0 +129596,18692,0,50944,0,0 +129597,18693,0,50945,0,0 +129598,18694,0,45755,0,0 +129599,18695,0,49271,0,0 +129600,18696,0,48292,0,0 +129601,18697,0,50946,0,0 +129602,18698,0,50947,0,0 +129603,18699,0,50948,0,0 +129604,18700,0,49800,0,0 +129606,18702,0,50949,0,0 +129613,18709,0,50950,0,0 +129614,18710,0,48018,0,0 +129615,18711,0,49422,0,0 +129616,18712,0,49381,0,0 +129617,18713,0,50951,0,0 +129619,18715,0,50952,0,0 +129620,18716,0,50953,0,0 +129621,18717,0,46447,0,0 +129622,18718,0,49054,0,0 +129624,18720,0,47923,0,0 +129625,18721,0,48573,0,0 +129626,18722,0,50954,0,0 +129629,18725,0,50955,0,0 +129630,18726,0,50956,0,0 +129631,18727,0,50957,0,0 +129633,18729,0,46899,0,0 +129634,18730,0,46395,0,0 +129636,18732,0,50032,0,0 +129637,18733,0,50031,0,0 +129638,18734,0,47426,0,0 +129639,18735,0,50958,0,0 +129640,18736,0,48160,0,0 +129641,18737,0,46908,0,0 +129642,18738,0,46446,0,0 +129643,18739,0,50959,0,0 +129644,18740,0,50960,0,0 +129645,18741,0,50961,0,0 +129646,18742,0,45837,0,0 +129647,18743,0,50962,0,0 +129648,18744,0,48014,0,0 +129649,18745,0,49315,0,0 +129651,18747,0,50401,0,0 +129658,18754,0,48722,0,0 +129659,18755,0,50963,0,0 +129660,18756,0,50964,0,0 +129661,18757,0,49536,0,0 +129662,18758,0,48435,0,0 +129663,18759,0,50965,0,0 +129665,18761,0,50966,0,0 +129666,18762,0,48512,0,0 +129667,18763,0,50967,0,0 +129668,18764,0,50968,0,0 +129669,18765,0,50969,0,0 +129704,18800,0,50970,0,0 +129705,18801,0,50971,0,0 +129707,18803,0,50972,0,0 +129709,18805,0,50973,0,0 +129710,18806,0,50974,0,0 +129711,18807,0,50867,0,0 +129712,18808,0,50975,0,0 +129713,18809,0,47657,0,0 +129714,18810,0,50976,0,0 +129715,18811,0,50022,0,0 +129716,18812,0,50977,0,0 +129720,18816,0,50978,0,0 +129721,18817,0,49067,0,0 +129726,18822,0,50979,0,0 +129727,18823,0,48820,0,0 +129728,18824,0,50980,0,0 +129729,18825,0,50981,0,0 +129730,18826,0,50982,0,0 +129731,18827,0,50983,0,0 +129732,18828,0,50984,0,0 +129733,18829,0,50985,0,0 +129734,18830,0,50986,0,0 +129735,18831,0,50987,0,0 +129736,18832,0,49145,0,0 +129737,18833,0,50988,0,0 +129739,18835,0,50989,0,0 +129740,18836,0,50990,0,0 +129741,18837,0,50991,0,0 +129742,18838,0,50992,0,0 +129744,18840,0,50993,0,0 +129746,18842,0,50994,0,0 +129747,18843,0,50995,0,0 +129748,18844,0,50996,0,0 +129751,18847,0,50997,0,0 +129752,18848,0,50998,0,0 +129759,18855,0,50999,0,0 +129764,18860,0,51000,0,0 +129765,18861,0,51001,0,0 +129769,18865,0,51002,0,0 +129770,18866,0,51003,0,0 +129771,18867,0,51004,0,0 +129772,18868,0,51005,0,0 +129773,18869,0,51006,0,0 +129774,18870,0,51007,0,0 +129775,18871,0,51008,0,0 +129776,18872,0,48031,0,0 +129777,18873,0,51009,0,0 +129778,18874,0,51010,0,0 +129779,18875,0,46836,0,0 +129780,18876,0,51011,0,0 +129781,18877,0,51012,0,0 +129782,18878,0,51013,0,0 +129785,18881,0,50794,0,0 +129786,18882,0,51014,0,0 +129797,18948,0,51015,0,0 +129806,18957,0,51016,0,0 +129823,18983,0,51017,0,0 +129825,18985,0,51018,0,0 +129840,19014,0,47224,0,0 +129841,19015,0,46128,0,0 +129845,19019,0,51019,0,0 +129847,19022,0,45864,0,0 +129853,19028,0,51020,0,0 +129856,19031,0,51021,0,0 +129857,19032,0,51022,0,0 +129862,19037,0,48813,0,0 +129864,19039,0,51023,0,0 +129865,19040,0,51024,0,0 +129866,19041,0,51025,0,0 +129867,19042,0,51026,0,0 +129868,19043,0,51027,0,0 +129869,19044,0,48486,0,0 +129872,19047,0,47270,0,0 +129873,19048,0,51028,0,0 +129874,19049,0,51029,0,0 +129875,19050,0,51030,0,0 +129876,19051,0,50949,0,0 +129877,19052,0,51031,0,0 +129878,19053,0,47109,0,0 +129881,19056,0,51032,0,0 +129882,19057,0,51033,0,0 +129883,19058,0,51034,0,0 +129884,19059,0,51035,0,0 +129897,19082,0,51036,0,0 +129898,19083,0,50312,0,0 +129899,19084,0,49831,0,0 +129900,19085,0,51037,0,0 +129901,19086,0,46319,0,0 +129902,19087,0,48690,0,0 +129903,19088,0,47767,0,0 +129904,19089,0,47683,0,0 +129905,19090,0,47283,0,0 +129906,19091,0,51038,0,0 +129907,19092,0,48844,0,0 +129908,19093,0,48774,0,0 +129909,19094,0,48267,0,0 +129914,19099,0,51039,0,0 +129915,19100,0,51040,0,0 +129916,19101,0,51041,0,0 +129917,19102,0,51042,0,0 +129918,19103,0,51043,0,0 +129919,19104,0,49454,0,0 +129920,19105,0,51044,0,0 +129921,19106,0,51045,0,0 +129922,19107,0,49341,0,0 +129923,19108,0,48421,0,0 +129925,19110,0,51046,0,0 +129926,19111,0,47192,0,0 +129927,19112,0,51047,0,0 +129928,19113,0,48674,0,0 +129929,19114,0,51048,0,0 +129930,19115,0,46286,0,0 +129931,19116,0,48188,0,0 +129932,19117,0,48812,0,0 +129933,19118,0,51049,0,0 +129934,19119,0,48041,0,0 +129936,19121,0,51050,0,0 +129937,19123,0,48630,0,0 +129938,19124,0,51051,0,0 +129939,19125,0,47467,0,0 +129940,19126,0,50899,0,0 +129941,19127,0,51052,0,0 +129942,19128,0,51053,0,0 +129943,19129,0,49055,0,0 +129944,19130,0,51054,0,0 +129945,19131,0,49480,0,0 +129946,19132,0,48955,0,0 +129947,19133,0,48627,0,0 +129948,19134,0,51055,0,0 +129949,19135,0,47671,0,0 +129950,19136,0,49632,0,0 +129951,19137,0,51056,0,0 +129953,19139,0,50024,0,0 +129956,19142,0,49269,0,0 +129957,19143,0,51057,0,0 +129958,19144,0,51058,0,0 +129959,19145,0,51059,0,0 +129960,19146,0,46829,0,0 +129962,19148,0,51060,0,0 +129963,19149,0,51061,0,0 +129970,19156,0,51062,0,0 +129971,19157,0,51063,0,0 +129972,19158,0,50794,0,0 +129974,19160,0,51064,0,0 +129975,19162,0,51065,0,0 +129976,19163,0,51066,0,0 +129977,19164,0,51067,0,0 +129978,19165,0,51068,0,0 +129979,19166,0,46263,0,0 +129980,19167,0,51069,0,0 +129981,19168,0,51070,0,0 +129982,19169,0,51071,0,0 +129983,19170,0,51072,0,0 +129998,19214,0,46791,0,0 +130010,19226,0,46424,0,0 +130069,19285,0,47478,0,0 +130070,19286,0,46427,0,0 +130076,19292,0,51073,0,0 +130077,19293,0,46282,0,0 +130078,19294,0,46775,0,0 +130079,19295,0,46493,0,0 +130092,19308,0,49238,0,0 +130093,19309,0,49237,0,0 +130094,19310,0,49272,0,0 +130095,19311,0,49270,0,0 +130096,19312,0,46775,0,0 +130097,19315,0,51074,0,0 +130098,19316,0,51075,0,0 +130099,19317,0,46427,0,0 +130103,19321,0,51076,0,0 +130104,19323,0,51077,0,0 +130105,19324,0,51078,0,0 +130115,19334,0,51079,0,0 +130116,19335,0,51080,0,0 +130127,19346,0,51081,0,0 +130128,19347,0,51082,0,0 +130129,19348,0,51083,0,0 +130130,19349,0,51084,0,0 +130131,19350,0,51085,0,0 +130132,19351,0,51086,0,0 +130133,19352,0,51087,0,0 +130134,19353,0,51088,0,0 +130135,19354,0,51089,0,0 +130136,19355,0,51090,0,0 +130137,19356,0,51091,0,0 +130138,19357,0,51092,0,0 +130139,19358,0,51093,0,0 +130140,19359,0,51080,0,0 +130141,19360,0,51094,0,0 +130142,19361,0,51095,0,0 +130143,19362,0,51096,0,0 +130144,19363,0,51097,0,0 +130145,19364,0,51098,0,0 +130146,19365,0,51099,0,0 +130147,19366,0,51100,0,0 +130148,19367,0,51101,0,0 +130149,19368,0,50969,0,0 +130150,19369,0,49692,0,0 +130151,19370,0,48643,0,0 +130153,19372,0,51102,0,0 +130154,19373,0,45837,0,0 +130155,19374,0,48730,0,0 +130156,19375,0,51103,0,0 +130159,19378,0,50774,0,0 +130161,19380,0,51104,0,0 +130162,19381,0,48819,0,0 +130166,19385,0,49478,0,0 +130167,19386,0,48571,0,0 +130168,19387,0,51105,0,0 +130169,19388,0,49201,0,0 +130170,19389,0,51106,0,0 +130171,19390,0,51107,0,0 +130172,19391,0,51108,0,0 +130173,19392,0,51109,0,0 +130174,19393,0,51110,0,0 +130175,19394,0,51111,0,0 +130177,19396,0,51112,0,0 +130179,19398,0,49567,0,0 +130180,19399,0,51113,0,0 +130181,19400,0,46859,0,0 +130182,19401,0,46377,0,0 +130183,19402,0,51114,0,0 +130185,19404,0,51094,0,0 +130186,19405,0,51115,0,0 +130188,19407,0,51116,0,0 +130195,19430,0,47208,0,0 +130198,19433,0,51117,0,0 +130200,19435,0,51118,0,0 +130201,19436,0,51119,0,0 +130202,19437,0,48731,0,0 +130203,19438,0,51120,0,0 +130204,19439,0,49206,0,0 +130224,19485,0,47614,0,0 +130225,19486,0,47478,0,0 +130226,19487,0,47616,0,0 +130227,19488,0,47617,0,0 +130229,19505,0,51121,0,0 +130230,19506,0,51122,0,0 +130231,19507,0,48579,0,0 +130232,19508,0,47003,0,0 +130233,19509,0,48882,0,0 +130250,19526,0,51123,0,0 +130251,19527,0,51124,0,0 +130252,19528,0,50115,0,0 +130253,19529,0,47241,0,0 +130254,19530,0,51125,0,0 +130255,19531,0,47004,0,0 +130256,19532,0,50113,0,0 +130257,19533,0,47484,0,0 +130266,19542,0,46661,0,0 +130267,19543,0,46661,0,0 +130268,19544,0,46661,0,0 +130269,19545,0,46661,0,0 +130270,19546,0,47044,0,0 +130271,19547,0,47044,0,0 +130272,19548,0,47044,0,0 +130273,19549,0,47044,0,0 +130274,19550,0,51126,0,0 +130275,19551,0,51126,0,0 +130276,19552,0,51126,0,0 +130277,19553,0,51126,0,0 +130278,19554,0,47438,0,0 +130279,19555,0,47438,0,0 +130280,19556,0,47438,0,0 +130281,19557,0,47438,0,0 +130282,19558,0,51048,0,0 +130283,19559,0,51048,0,0 +130284,19560,0,51048,0,0 +130285,19561,0,51048,0,0 +130286,19562,0,46530,0,0 +130287,19563,0,46530,0,0 +130288,19564,0,46530,0,0 +130289,19565,0,46530,0,0 +130290,19566,0,46445,0,0 +130291,19567,0,46445,0,0 +130292,19568,0,46445,0,0 +130293,19569,0,46445,0,0 +130294,19570,0,46032,0,0 +130295,19571,0,46032,0,0 +130296,19572,0,46032,0,0 +130297,19573,0,46032,0,0 +130302,19578,0,51127,0,0 +130304,19580,0,51127,0,0 +130305,19581,0,51127,0,0 +130306,19582,0,51128,0,0 +130307,19583,0,51128,0,0 +130308,19584,0,51128,0,0 +130311,19587,0,48305,0,0 +130313,19589,0,48305,0,0 +130314,19590,0,48305,0,0 +130319,19595,0,51129,0,0 +130320,19596,0,51129,0,0 +130321,19597,0,51129,0,0 +130346,19623,0,51130,0,0 +130348,19682,0,51131,0,0 +130349,19683,0,49635,0,0 +130350,19684,0,51132,0,0 +130351,19685,0,48277,0,0 +130352,19686,0,51133,0,0 +130353,19687,0,48276,0,0 +130354,19688,0,49977,0,0 +130355,19689,0,51134,0,0 +130356,19690,0,51135,0,0 +130357,19691,0,49908,0,0 +130358,19692,0,49906,0,0 +130359,19693,0,51136,0,0 +130360,19694,0,51137,0,0 +130361,19695,0,51138,0,0 +130394,19742,0,51139,0,0 +130395,19743,0,48968,0,0 +130396,19762,0,51140,0,0 +130397,19763,0,47193,0,0 +130431,19808,0,47617,0,0 +130442,19822,0,51141,0,0 +130443,19823,0,48856,0,0 +130444,19824,0,51142,0,0 +130445,19825,0,51143,0,0 +130446,19826,0,51144,0,0 +130447,19827,0,51145,0,0 +130448,19828,0,48834,0,0 +130449,19829,0,48837,0,0 +130450,19830,0,48840,0,0 +130451,19831,0,51146,0,0 +130452,19832,0,48963,0,0 +130453,19833,0,49058,0,0 +130454,19834,0,49980,0,0 +130455,19835,0,49464,0,0 +130456,19836,0,46834,0,0 +130457,19838,0,48744,0,0 +130458,19839,0,51112,0,0 +130459,19840,0,48741,0,0 +130460,19841,0,47923,0,0 +130461,19842,0,51147,0,0 +130462,19843,0,51148,0,0 +130463,19845,0,48643,0,0 +130464,19846,0,51148,0,0 +130465,19848,0,51148,0,0 +130466,19849,0,49469,0,0 +130469,19852,0,51149,0,0 +130470,19853,0,51150,0,0 +130471,19854,0,51151,0,0 +130472,19855,0,51152,0,0 +130474,19857,0,49462,0,0 +130476,19859,0,51153,0,0 +130478,19861,0,51154,0,0 +130479,19862,0,51155,0,0 +130481,19864,0,51156,0,0 +130482,19865,0,51157,0,0 +130483,19866,0,51157,0,0 +130484,19867,0,51158,0,0 +130485,19869,0,48077,0,0 +130486,19870,0,51159,0,0 +130490,19874,0,51160,0,0 +130491,19875,0,48135,0,0 +130493,19877,0,51161,0,0 +130494,19878,0,50008,0,0 +130495,19879,0,51010,0,0 +130500,19884,0,51162,0,0 +130502,19886,0,51163,0,0 +130503,19887,0,50926,0,0 +130504,19888,0,51164,0,0 +130505,19889,0,48201,0,0 +130506,19890,0,51165,0,0 +130507,19891,0,51166,0,0 +130508,19892,0,51167,0,0 +130510,19894,0,51168,0,0 +130511,19895,0,51169,0,0 +130512,19896,0,51170,0,0 +130513,19897,0,49670,0,0 +130515,19899,0,51171,0,0 +130516,19900,0,51172,0,0 +130517,19901,0,51173,0,0 +130519,19903,0,51174,0,0 +130520,19904,0,49117,0,0 +130522,19906,0,48195,0,0 +130523,19907,0,51175,0,0 +130524,19908,0,51176,0,0 +130525,19909,0,51177,0,0 +130526,19910,0,51178,0,0 +130529,19913,0,51179,0,0 +130531,19915,0,51180,0,0 +130532,19916,0,47381,0,0 +130533,19917,0,48500,0,0 +130534,19918,0,51181,0,0 +130535,19919,0,49037,0,0 +130537,19921,0,50325,0,0 +130538,19922,0,51182,0,0 +130540,19924,0,51183,0,0 +130542,19927,0,51184,0,0 +130543,19928,0,51185,0,0 +130544,19929,0,51186,0,0 +130559,19944,0,51187,0,0 +130560,19945,0,45871,0,0 +130561,19946,0,51188,0,0 +130576,19961,0,51189,0,0 +130577,19962,0,51190,0,0 +130578,19963,0,51191,0,0 +130579,19964,0,51192,0,0 +130580,19965,0,51193,0,0 +130581,19967,0,51194,0,0 +130582,19968,0,51195,0,0 +130583,19969,0,51196,0,0 +130584,19970,0,45864,0,0 +130586,19972,0,46963,0,0 +130594,19980,0,49560,0,0 +130595,19981,0,51197,0,0 +130596,19982,0,47264,0,0 +130597,19983,0,51198,0,0 +130598,19984,0,51199,0,0 +130599,19985,0,51200,0,0 +130600,19986,0,45871,0,0 +130601,19987,0,48987,0,0 +130602,19988,0,51201,0,0 +130603,19989,0,51202,0,0 +130607,19993,0,51203,0,0 +130612,19998,0,51204,0,0 +130613,19999,0,50361,0,0 +130617,20003,0,51205,0,0 +130619,20005,0,51206,0,0 +130646,20032,0,47927,0,0 +130647,20033,0,51207,0,0 +130648,20034,0,50916,0,0 +130649,20035,0,51208,0,0 +130652,20038,0,51209,0,0 +130653,20039,0,51210,0,0 +130655,20041,0,50928,0,0 +130656,20042,0,50928,0,0 +130657,20043,0,46378,0,0 +130658,20044,0,46378,0,0 +130659,20045,0,48672,0,0 +130660,20046,0,48672,0,0 +130661,20047,0,48672,0,0 +130662,20048,0,49193,0,0 +130663,20049,0,49193,0,0 +130664,20050,0,49443,0,0 +130665,20051,0,49443,0,0 +130666,20052,0,51211,0,0 +130667,20053,0,51211,0,0 +130668,20054,0,48664,0,0 +130669,20055,0,51212,0,0 +130670,20056,0,51213,0,0 +130671,20057,0,51214,0,0 +130672,20058,0,51214,0,0 +130673,20059,0,49464,0,0 +130674,20060,0,49464,0,0 +130675,20061,0,51215,0,0 +130682,20068,0,47264,0,0 +130683,20069,0,51216,0,0 +130684,20070,0,51217,0,0 +130687,20073,0,47264,0,0 +130696,20082,0,51218,0,0 +130697,20083,0,51219,0,0 +130702,20088,0,46378,0,0 +130703,20089,0,46378,0,0 +130704,20090,0,46378,0,0 +130705,20091,0,49443,0,0 +130706,20092,0,49443,0,0 +130707,20093,0,49443,0,0 +130708,20094,0,48664,0,0 +130709,20095,0,48664,0,0 +130710,20096,0,48664,0,0 +130711,20097,0,48672,0,0 +130712,20098,0,48672,0,0 +130713,20099,0,48672,0,0 +130714,20100,0,51211,0,0 +130715,20101,0,51211,0,0 +130716,20102,0,51211,0,0 +130717,20103,0,48672,0,0 +130718,20104,0,48672,0,0 +130719,20105,0,48672,0,0 +130720,20106,0,50928,0,0 +130721,20107,0,50928,0,0 +130722,20108,0,50928,0,0 +130723,20109,0,49193,0,0 +130724,20110,0,49193,0,0 +130725,20111,0,49193,0,0 +130726,20112,0,51211,0,0 +130727,20113,0,51211,0,0 +130728,20114,0,51211,0,0 +130729,20115,0,48672,0,0 +130730,20116,0,48672,0,0 +130731,20117,0,48672,0,0 +130732,20118,0,46378,0,0 +130733,20119,0,46378,0,0 +130734,20120,0,46378,0,0 +130735,20121,0,49443,0,0 +130736,20122,0,49443,0,0 +130737,20123,0,49443,0,0 +130738,20124,0,50928,0,0 +130739,20125,0,50928,0,0 +130740,20126,0,50928,0,0 +130741,20127,0,49193,0,0 +130742,20128,0,49193,0,0 +130743,20129,0,49193,0,0 +130745,20131,0,51221,0,0 +130746,20132,0,51222,0,0 +130747,20133,0,51223,0,0 +130748,20134,0,51224,0,0 +130749,20150,0,46378,0,0 +130750,20151,0,46378,0,0 +130751,20152,0,46378,0,0 +130752,20153,0,46378,0,0 +130753,20154,0,49443,0,0 +130754,20155,0,49443,0,0 +130755,20156,0,49443,0,0 +130756,20157,0,49443,0,0 +130757,20158,0,51212,0,0 +130758,20159,0,48664,0,0 +130759,20160,0,48664,0,0 +130760,20161,0,48664,0,0 +130761,20162,0,48664,0,0 +130762,20163,0,48672,0,0 +130763,20164,0,48672,0,0 +130764,20165,0,48672,0,0 +130765,20166,0,48672,0,0 +130766,20167,0,51211,0,0 +130767,20168,0,51211,0,0 +130768,20169,0,51211,0,0 +130769,20170,0,51211,0,0 +130770,20171,0,48672,0,0 +130771,20172,0,48672,0,0 +130772,20173,0,48672,0,0 +130773,20174,0,48672,0,0 +130774,20175,0,49464,0,0 +130775,20176,0,51215,0,0 +130776,20177,0,50928,0,0 +130777,20178,0,50928,0,0 +130778,20179,0,50928,0,0 +130779,20180,0,50928,0,0 +130780,20181,0,49193,0,0 +130781,20182,0,49193,0,0 +130782,20183,0,49193,0,0 +130783,20184,0,51214,0,0 +130784,20185,0,49193,0,0 +130785,20186,0,51211,0,0 +130786,20187,0,51211,0,0 +130787,20188,0,51211,0,0 +130788,20189,0,51211,0,0 +130789,20190,0,48672,0,0 +130790,20191,0,48672,0,0 +130791,20192,0,48672,0,0 +130792,20193,0,48672,0,0 +130793,20194,0,49464,0,0 +130794,20195,0,46378,0,0 +130795,20196,0,46378,0,0 +130796,20197,0,46378,0,0 +130797,20198,0,46378,0,0 +130798,20199,0,49443,0,0 +130799,20200,0,49443,0,0 +130800,20201,0,49443,0,0 +130801,20202,0,49443,0,0 +130802,20203,0,51213,0,0 +130803,20204,0,50928,0,0 +130804,20205,0,50928,0,0 +130805,20206,0,50928,0,0 +130806,20207,0,50928,0,0 +130807,20208,0,49193,0,0 +130808,20209,0,49193,0,0 +130809,20210,0,49193,0,0 +130810,20211,0,49193,0,0 +130811,20212,0,51214,0,0 +130812,20213,0,51225,0,0 +130813,20214,0,51217,0,0 +130814,20215,0,51226,0,0 +130815,20216,0,47786,0,0 +130816,20217,0,49628,0,0 +130817,20218,0,51227,0,0 +130818,20219,0,51228,0,0 +130819,20220,0,51216,0,0 +130841,20255,0,51229,0,0 +130843,20257,0,48836,0,0 +130844,20258,0,51230,0,0 +130845,20259,0,47371,0,0 +130846,20260,0,48838,0,0 +130847,20261,0,50903,0,0 +130848,20262,0,49561,0,0 +130849,20263,0,49001,0,0 +130850,20264,0,51231,0,0 +130851,20265,0,51232,0,0 +130852,20266,0,50901,0,0 +130853,20294,0,50575,0,0 +130854,20295,0,49397,0,0 +130855,20296,0,51233,0,0 +130857,20326,0,50548,0,0 +130858,20337,0,51234,0,0 +130859,20340,0,50548,0,0 +130860,20353,0,50548,0,0 +130865,20369,0,51235,0,0 +130866,20370,0,45855,0,0 +130868,20372,0,45855,0,0 +130876,20380,0,46729,0,0 +130882,20386,0,51236,0,0 +130887,20391,0,51237,0,0 +130888,20392,0,51238,0,0 +130902,20406,0,51240,0,0 +130903,20407,0,51241,0,0 +130904,20408,0,51242,0,0 +130908,20412,0,51243,0,0 +130913,20417,0,49889,0,0 +130921,20425,0,46445,0,0 +130923,20427,0,47241,0,0 +130924,20428,0,47484,0,0 +130926,20430,0,51126,0,0 +130930,20434,0,46032,0,0 +130933,20437,0,51048,0,0 +130934,20438,0,46530,0,0 +130936,20440,0,47438,0,0 +130937,20441,0,46661,0,0 +130939,20443,0,47044,0,0 +130963,20468,0,48512,0,0 +130971,20476,0,49911,0,0 +130972,20477,0,49913,0,0 +130973,20478,0,51244,0,0 +130974,20479,0,49124,0,0 +130975,20480,0,48456,0,0 +130976,20481,0,49853,0,0 +130982,20487,0,50952,0,0 +130983,20488,0,50951,0,0 +130997,20502,0,49435,0,0 +130999,20504,0,51245,0,0 +131012,20517,0,51246,0,0 +131016,20521,0,46968,0,0 +131017,20522,0,51247,0,0 +131018,20523,0,50605,0,0 +131019,20524,0,47775,0,0 +131024,20529,0,51248,0,0 +131025,20530,0,51249,0,0 +131031,20536,0,51250,0,0 +131032,20537,0,49764,0,0 +131033,20538,0,48627,0,0 +131034,20539,0,51251,0,0 +131044,20549,0,51252,0,0 +131045,20550,0,51253,0,0 +131046,20551,0,48858,0,0 +131051,20556,0,49458,0,0 +131056,20561,0,51254,0,0 +131057,20562,0,51255,0,0 +131058,20563,0,51256,0,0 +131059,20564,0,51257,0,0 +131060,20565,0,51258,0,0 +131061,20566,0,51259,0,0 +131062,20567,0,51260,0,0 +131063,20568,0,51261,0,0 +131064,20569,0,51262,0,0 +131065,20570,0,51263,0,0 +131066,20571,0,51264,0,0 +131067,20572,0,51265,0,0 +131068,20573,0,51266,0,0 +131069,20574,0,51267,0,0 +131070,20575,0,47773,0,0 +131072,20577,0,51268,0,0 +131073,20578,0,51269,0,0 +131074,20579,0,51270,0,0 +131075,20580,0,51271,0,0 +131076,20581,0,51272,0,0 +131077,20582,0,50343,0,0 +131078,20583,0,51255,0,0 +131079,20584,0,51238,0,0 +131080,20585,0,51258,0,0 +131081,20586,0,51256,0,0 +131082,20587,0,51262,0,0 +131083,20588,0,51264,0,0 +131084,20589,0,51260,0,0 +131085,20590,0,51267,0,0 +131086,20591,0,51254,0,0 +131087,20592,0,51237,0,0 +131088,20593,0,51259,0,0 +131089,20594,0,51257,0,0 +131090,20595,0,51263,0,0 +131091,20596,0,51265,0,0 +131092,20597,0,51261,0,0 +131093,20598,0,51266,0,0 +131094,20599,0,51273,0,0 +131110,20615,0,51274,0,0 +131111,20616,0,48321,0,0 +131112,20617,0,47286,0,0 +131113,20618,0,48699,0,0 +131114,20619,0,51275,0,0 +131116,20621,0,51276,0,0 +131118,20623,0,51277,0,0 +131120,20625,0,48671,0,0 +131121,20626,0,47216,0,0 +131122,20627,0,48040,0,0 +131123,20628,0,51278,0,0 +131124,20629,0,51279,0,0 +131125,20630,0,51280,0,0 +131126,20631,0,51281,0,0 +131128,20633,0,51282,0,0 +131129,20634,0,51283,0,0 +131130,20635,0,51284,0,0 +131132,20637,0,51285,0,0 +131133,20638,0,51286,0,0 +131134,20639,0,51287,0,0 +131135,20640,0,48954,0,0 +131136,20641,0,49764,0,0 +131137,20642,0,46313,0,0 +131138,20643,0,51288,0,0 +131141,20646,0,49326,0,0 +131142,20647,0,47195,0,0 +131143,20648,0,46280,0,0 +131145,20650,0,51289,0,0 +131147,20652,0,48642,0,0 +131148,20653,0,50899,0,0 +131149,20654,0,49524,0,0 +131150,20655,0,51290,0,0 +131151,20656,0,46034,0,0 +131152,20657,0,50801,0,0 +131153,20658,0,51291,0,0 +131154,20659,0,49837,0,0 +131155,20660,0,51292,0,0 +131156,20661,0,51293,0,0 +131157,20662,0,48358,0,0 +131158,20663,0,47427,0,0 +131159,20664,0,48267,0,0 +131160,20665,0,51294,0,0 +131161,20666,0,48098,0,0 +131162,20667,0,51295,0,0 +131163,20668,0,49838,0,0 +131164,20669,0,46173,0,0 +131165,20670,0,47467,0,0 +131166,20671,0,51051,0,0 +131167,20672,0,51296,0,0 +131168,20673,0,48671,0,0 +131169,20674,0,48627,0,0 +131170,20675,0,51297,0,0 +131175,20680,0,45837,0,0 +131176,20681,0,51298,0,0 +131178,20683,0,48143,0,0 +131179,20684,0,47537,0,0 +131181,20686,0,47828,0,0 +131182,20687,0,49153,0,0 +131183,20688,0,50236,0,0 +131184,20689,0,48360,0,0 +131185,20690,0,51299,0,0 +131186,20691,0,47869,0,0 +131188,20693,0,48480,0,0 +131189,20694,0,49334,0,0 +131191,20696,0,51300,0,0 +131192,20697,0,48036,0,0 +131193,20698,0,51301,0,0 +131194,20699,0,48838,0,0 +131195,20700,0,48838,0,0 +131196,20701,0,46947,0,0 +131197,20702,0,46947,0,0 +131198,20703,0,48251,0,0 +131199,20704,0,48251,0,0 +131200,20705,0,48701,0,0 +131201,20706,0,48701,0,0 +131202,20707,0,48701,0,0 +131205,20710,0,51302,0,0 +131206,20711,0,51302,0,0 +131207,20712,0,51303,0,0 +131208,20713,0,51303,0,0 +131209,20714,0,48740,0,0 +131210,20715,0,48740,0,0 +131211,20716,0,51304,0,0 +131212,20717,0,51304,0,0 +131213,20718,0,51305,0,0 +131214,20719,0,51306,0,0 +131215,20720,0,46217,0,0 +131217,20722,0,50963,0,0 +131218,20723,0,45773,0,0 +131219,20724,0,51307,0,0 +131233,20738,0,51308,0,0 +131264,20773,0,50533,0,0 +131265,20774,0,50535,0,0 +131266,20775,0,50532,0,0 +131267,20776,0,50537,0,0 +131268,20777,0,50538,0,0 +131269,20778,0,50539,0,0 +131270,20779,0,50534,0,0 +131271,20780,0,50536,0,0 +131273,20782,0,50125,0,0 +131275,20784,0,49251,0,0 +131276,20785,0,50125,0,0 +131277,20786,0,50537,0,0 +131278,20787,0,50536,0,0 +131279,20788,0,51309,0,0 +131280,20789,0,50539,0,0 +131281,20790,0,50538,0,0 +131282,20791,0,50534,0,0 +131284,20793,0,50535,0,0 +131286,20795,0,50532,0,0 +131287,20796,0,49251,0,0 +131302,20811,0,51310,0,0 +131323,20832,0,48955,0,0 +131326,20835,0,51311,0,0 +131327,20836,0,51312,0,0 +131328,20837,0,51313,0,0 +131329,20838,0,46420,0,0 +131330,20839,0,48428,0,0 +131331,20840,0,45704,0,0 +131332,20841,0,51314,0,0 +131340,20849,0,51310,0,0 +131341,20850,0,51315,0,0 +131342,20851,0,51316,0,0 +131343,20852,0,51317,0,0 +131344,20853,0,51318,0,0 +131382,20891,0,51319,0,0 +131383,20892,0,51320,0,0 +131384,20893,0,51321,0,0 +131385,20894,0,45997,0,0 +131386,20895,0,51322,0,0 +131387,20896,0,51323,0,0 +131388,20897,0,51324,0,0 +131389,20898,0,51325,0,0 +131390,20899,0,51326,0,0 +131391,20900,0,51327,0,0 +131392,20901,0,51328,0,0 +131393,20902,0,51329,0,0 +131394,20903,0,51330,0,0 +131395,20904,0,51331,0,0 +131396,20905,0,51332,0,0 +131399,20908,0,51332,0,0 +131401,20910,0,46420,0,0 +131402,20911,0,51333,0,0 +131403,20912,0,51314,0,0 +131404,20913,0,46239,0,0 +131405,20914,0,51334,0,0 +131406,20915,0,51330,0,0 +131407,20916,0,51335,0,0 +131408,20917,0,51336,0,0 +131409,20918,0,51329,0,0 +131410,20919,0,51331,0,0 +131411,20920,0,51337,0,0 +131412,20921,0,51325,0,0 +131413,20922,0,51338,0,0 +131414,20923,0,51339,0,0 +131415,20924,0,51340,0,0 +131416,20925,0,51341,0,0 +131445,20954,0,48095,0,0 +131460,20969,0,48268,0,0 +131468,20977,0,51342,0,0 +131469,20978,0,51343,0,0 +131470,20979,0,51344,0,0 +131471,20980,0,46419,0,0 +131472,20981,0,45912,0,0 +131473,20982,0,46133,0,0 +131474,20983,0,47221,0,0 +131475,20984,0,51345,0,0 +131476,20985,0,46229,0,0 +131477,20986,0,46231,0,0 +131478,20987,0,46230,0,0 +131479,20988,0,46872,0,0 +131480,20989,0,46871,0,0 +131481,20990,0,46232,0,0 +131482,20991,0,46748,0,0 +131483,20992,0,46878,0,0 +131484,20993,0,51339,0,0 +131485,20994,0,51346,0,0 +131486,20995,0,45964,0,0 +131487,20996,0,51347,0,0 +131488,20997,0,51348,0,0 +131489,20998,0,49209,0,0 +131490,20999,0,51349,0,0 +131491,21000,0,51350,0,0 +131492,21001,0,47153,0,0 +131493,21002,0,46763,0,0 +131494,21003,0,46872,0,0 +131495,21004,0,46656,0,0 +131496,21005,0,51351,0,0 +131497,21006,0,47807,0,0 +131498,21007,0,46659,0,0 +131499,21008,0,47155,0,0 +131500,21009,0,45931,0,0 +131501,21010,0,45929,0,0 +131502,21011,0,45932,0,0 +131503,21012,0,45930,0,0 +131504,21013,0,45928,0,0 +131505,21014,0,45927,0,0 +131506,21015,0,48844,0,0 +131507,21016,0,51352,0,0 +131508,21017,0,47337,0,0 +131509,21018,0,51353,0,0 +131510,21019,0,51354,0,0 +131511,21020,0,51355,0,0 +131512,21021,0,47389,0,0 +131513,21022,0,46295,0,0 +131528,21040,0,51357,0,0 +131533,21047,0,50548,0,0 +131534,21060,0,50548,0,0 +131537,21075,0,50548,0,0 +131538,21088,0,50548,0,0 +131541,21101,0,51358,0,0 +131542,21102,0,51359,0,0 +131561,21121,0,51360,0,0 +131562,21122,0,48109,0,0 +131563,21123,0,51361,0,0 +131564,21124,0,51362,0,0 +131565,21125,0,51363,0,0 +131566,21126,0,51364,0,0 +131567,21127,0,51365,0,0 +131568,21128,0,51363,0,0 +131569,21129,0,51366,0,0 +131574,21134,0,51367,0,0 +131594,21154,0,51368,0,0 +131597,21157,0,51369,0,0 +131609,21169,0,46490,0,0 +131610,21170,0,46490,0,0 +131611,21171,0,46490,0,0 +131612,21172,0,46490,0,0 +131613,21173,0,46490,0,0 +131614,21174,0,46490,0,0 +131618,21178,0,49774,0,0 +131623,21183,0,51370,0,0 +131624,21184,0,50930,0,0 +131625,21185,0,51371,0,0 +131626,21186,0,48886,0,0 +131627,21187,0,51372,0,0 +131628,21188,0,51373,0,0 +131632,21192,0,51009,0,0 +131682,21242,0,51374,0,0 +131684,21244,0,51375,0,0 +131708,21268,0,51376,0,0 +131709,21269,0,51377,0,0 +131712,21272,0,51378,0,0 +131713,21273,0,51359,0,0 +131714,21275,0,51379,0,0 +131715,21276,0,51358,0,0 +131717,21278,0,46833,0,0 +131725,21286,0,46438,0,0 +131750,21311,0,46993,0,0 +131751,21312,0,48287,0,0 +131755,21316,0,48144,0,0 +131756,21317,0,51380,0,0 +131757,21318,0,48364,0,0 +131758,21319,0,47096,0,0 +131759,21320,0,48285,0,0 +131761,21322,0,50920,0,0 +131768,21329,0,51381,0,0 +131769,21330,0,51382,0,0 +131770,21331,0,51383,0,0 +131771,21332,0,51384,0,0 +131772,21333,0,51385,0,0 +131773,21334,0,51386,0,0 +131774,21335,0,51387,0,0 +131775,21336,0,51388,0,0 +131776,21337,0,51389,0,0 +131777,21338,0,51390,0,0 +131778,21339,0,51391,0,0 +131782,21343,0,51392,0,0 +131783,21344,0,51393,0,0 +131784,21345,0,51394,0,0 +131785,21346,0,51395,0,0 +131786,21347,0,51396,0,0 +131787,21348,0,51397,0,0 +131788,21349,0,51398,0,0 +131789,21350,0,51399,0,0 +131790,21351,0,51400,0,0 +131791,21352,0,51401,0,0 +131792,21353,0,51402,0,0 +131793,21354,0,51403,0,0 +131794,21355,0,51404,0,0 +131795,21356,0,51405,0,0 +131796,21357,0,51406,0,0 +131798,21359,0,51407,0,0 +131799,21360,0,51408,0,0 +131800,21361,0,51409,0,0 +131801,21362,0,51410,0,0 +131803,21364,0,51411,0,0 +131804,21365,0,51412,0,0 +131805,21366,0,51413,0,0 +131806,21367,0,51414,0,0 +131807,21368,0,51415,0,0 +131809,21370,0,51416,0,0 +131811,21372,0,51417,0,0 +131812,21373,0,51418,0,0 +131813,21374,0,51419,0,0 +131814,21375,0,51420,0,0 +131815,21376,0,51421,0,0 +131826,21387,0,51422,0,0 +131827,21388,0,51423,0,0 +131828,21389,0,51424,0,0 +131829,21390,0,51425,0,0 +131830,21391,0,51426,0,0 +131831,21392,0,51427,0,0 +131833,21394,0,49462,0,0 +131834,21395,0,51428,0,0 +131836,21397,0,51429,0,0 +131837,21398,0,51430,0,0 +131839,21400,0,48278,0,0 +131840,21401,0,51427,0,0 +131842,21403,0,51431,0,0 +131843,21404,0,51432,0,0 +131845,21406,0,47426,0,0 +131846,21407,0,51430,0,0 +131848,21409,0,48583,0,0 +131849,21410,0,51430,0,0 +131851,21412,0,48008,0,0 +131852,21413,0,51428,0,0 +131854,21415,0,48036,0,0 +131855,21416,0,51432,0,0 +131857,21418,0,48611,0,0 +131858,21419,0,51433,0,0 +131859,21420,0,51434,0,0 +131860,21421,0,51435,0,0 +131861,21422,0,51436,0,0 +131862,21423,0,51437,0,0 +131863,21424,0,51437,0,0 +131864,21425,0,51438,0,0 +131865,21426,0,51439,0,0 +131866,21427,0,51440,0,0 +131867,21428,0,51441,0,0 +131868,21429,0,51442,0,0 +131869,21430,0,51443,0,0 +131870,21431,0,51444,0,0 +131871,21432,0,51445,0,0 +131872,21433,0,51446,0,0 +131873,21434,0,51447,0,0 +131874,21435,0,51446,0,0 +131876,21437,0,51448,0,0 +131878,21439,0,51449,0,0 +131879,21440,0,51450,0,0 +131880,21441,0,51451,0,0 +131881,21442,0,51452,0,0 +131882,21443,0,51453,0,0 +131883,21444,0,51454,0,0 +131884,21445,0,51451,0,0 +131885,21446,0,51455,0,0 +131886,21447,0,51435,0,0 +131887,21448,0,51456,0,0 +131888,21449,0,51457,0,0 +131889,21450,0,51458,0,0 +131890,21451,0,51459,0,0 +131891,21452,0,51358,0,0 +131892,21453,0,48762,0,0 +131893,21454,0,51460,0,0 +131894,21455,0,51461,0,0 +131895,21456,0,51462,0,0 +131896,21457,0,51463,0,0 +131897,21458,0,51464,0,0 +131898,21459,0,51465,0,0 +131899,21460,0,48727,0,0 +131900,21461,0,49125,0,0 +131901,21462,0,47548,0,0 +131902,21463,0,51110,0,0 +131903,21464,0,46860,0,0 +131904,21465,0,51466,0,0 +131905,21466,0,51467,0,0 +131906,21467,0,51468,0,0 +131907,21468,0,48764,0,0 +131908,21469,0,47212,0,0 +131909,21470,0,48366,0,0 +131910,21471,0,51469,0,0 +131911,21472,0,51470,0,0 +131913,21474,0,51471,0,0 +131914,21475,0,51472,0,0 +131915,21476,0,51473,0,0 +131917,21478,0,51474,0,0 +131918,21479,0,51475,0,0 +131919,21480,0,51476,0,0 +131920,21481,0,51477,0,0 +131921,21482,0,49561,0,0 +131923,21484,0,51478,0,0 +131924,21485,0,51479,0,0 +131925,21486,0,51480,0,0 +131926,21487,0,51481,0,0 +131928,21489,0,51482,0,0 +131929,21490,0,51483,0,0 +131930,21491,0,49429,0,0 +131931,21492,0,51484,0,0 +131932,21493,0,50953,0,0 +131933,21494,0,49994,0,0 +131934,21495,0,51485,0,0 +131935,21496,0,47055,0,0 +131936,21497,0,51486,0,0 +131937,21498,0,51487,0,0 +131938,21499,0,51488,0,0 +131939,21500,0,47680,0,0 +131940,21501,0,50933,0,0 +131941,21502,0,51489,0,0 +131942,21503,0,51038,0,0 +131955,21517,0,49281,0,0 +131957,21520,0,51086,0,0 +131958,21521,0,51490,0,0 +131959,21522,0,51491,0,0 +131960,21523,0,51492,0,0 +131961,21524,0,51493,0,0 +131962,21525,0,51494,0,0 +131964,21527,0,50929,0,0 +131967,21530,0,48282,0,0 +131969,21532,0,49554,0,0 +131975,21538,0,51495,0,0 +131976,21539,0,51496,0,0 +131978,21541,0,51497,0,0 +131979,21542,0,51498,0,0 +131980,21543,0,51499,0,0 +131981,21544,0,51500,0,0 +131986,21549,0,50982,0,0 +131987,21550,0,51501,0,0 +131988,21551,0,50992,0,0 +131990,21553,0,51011,0,0 +131991,21554,0,51000,0,0 +131992,21555,0,51004,0,0 +132001,21564,0,50999,0,0 +132009,21572,0,50981,0,0 +132010,21573,0,49198,0,0 +132017,21580,0,51502,0,0 +132018,21581,0,51503,0,0 +132019,21582,0,51504,0,0 +132020,21583,0,51505,0,0 +132021,21584,0,51506,0,0 +132022,21585,0,51507,0,0 +132023,21586,0,51508,0,0 +132024,21587,0,51509,0,0 +132025,21588,0,51510,0,0 +132031,21594,0,51511,0,0 +132034,21597,0,51512,0,0 +132035,21598,0,51513,0,0 +132036,21599,0,51514,0,0 +132037,21600,0,51515,0,0 +132039,21602,0,51516,0,0 +132040,21603,0,51517,0,0 +132041,21604,0,51518,0,0 +132042,21605,0,51519,0,0 +132043,21606,0,51520,0,0 +132044,21607,0,51521,0,0 +132046,21609,0,51522,0,0 +132047,21610,0,51523,0,0 +132048,21611,0,51524,0,0 +132049,21612,0,51525,0,0 +132050,21613,0,51526,0,0 +132051,21614,0,51527,0,0 +132052,21615,0,50892,0,0 +132053,21616,0,51528,0,0 +132054,21617,0,51529,0,0 +132055,21618,0,51530,0,0 +132056,21619,0,51531,0,0 +132058,21621,0,51532,0,0 +132059,21622,0,51533,0,0 +132060,21623,0,51534,0,0 +132061,21624,0,51535,0,0 +132063,21626,0,51536,0,0 +132064,21627,0,51537,0,0 +132065,21635,0,51538,0,0 +132066,21639,0,51539,0,0 +132068,21645,0,51540,0,0 +132070,21648,0,48695,0,0 +132071,21650,0,51541,0,0 +132072,21651,0,51542,0,0 +132073,21652,0,51543,0,0 +132074,21663,0,51544,0,0 +132076,21665,0,51545,0,0 +132077,21666,0,51546,0,0 +132078,21667,0,51547,0,0 +132079,21668,0,49397,0,0 +132080,21669,0,48309,0,0 +132082,21671,0,51548,0,0 +132083,21672,0,51549,0,0 +132084,21673,0,51550,0,0 +132085,21674,0,50315,0,0 +132086,21675,0,51522,0,0 +132087,21676,0,48265,0,0 +132090,21679,0,51551,0,0 +132091,21680,0,51552,0,0 +132093,21682,0,48584,0,0 +132094,21683,0,51553,0,0 +132095,21684,0,51554,0,0 +132097,21686,0,51555,0,0 +132099,21688,0,51556,0,0 +132100,21689,0,46837,0,0 +132102,21691,0,51557,0,0 +132103,21692,0,50949,0,0 +132104,21693,0,51558,0,0 +132105,21694,0,51559,0,0 +132107,21696,0,45854,0,0 +132108,21697,0,51560,0,0 +132109,21698,0,48310,0,0 +132110,21699,0,51561,0,0 +132112,21701,0,49175,0,0 +132114,21703,0,51562,0,0 +132115,21704,0,51563,0,0 +132116,21705,0,51564,0,0 +132117,21706,0,51565,0,0 +132119,21708,0,51566,0,0 +132121,21710,0,51567,0,0 +132126,21715,0,51376,0,0 +132185,21774,0,48697,0,0 +132191,21780,0,48752,0,0 +132202,21794,0,51551,0,0 +132203,21795,0,51379,0,0 +132204,21796,0,51512,0,0 +132205,21797,0,51569,0,0 +132206,21798,0,51569,0,0 +132207,21799,0,51570,0,0 +132208,21800,0,51571,0,0 +132209,21801,0,51362,0,0 +132210,21802,0,51572,0,0 +132211,21803,0,46027,0,0 +132212,21804,0,51573,0,0 +132213,21805,0,51574,0,0 +132214,21806,0,51575,0,0 +132218,21810,0,51576,0,0 +132222,21814,0,51577,0,0 +132235,21832,0,48950,0,0 +132240,21837,0,46277,0,0 +132241,21838,0,51207,0,0 +132242,21839,0,51578,0,0 +132249,21846,0,51579,0,0 +132250,21847,0,51580,0,0 +132251,21848,0,51581,0,0 +132252,21849,0,47216,0,0 +132253,21850,0,48672,0,0 +132254,21851,0,47658,0,0 +132255,21852,0,46337,0,0 +132256,21853,0,46311,0,0 +132257,21854,0,48817,0,0 +132258,21855,0,48814,0,0 +132259,21856,0,49247,0,0 +132262,21859,0,51582,0,0 +132263,21860,0,48731,0,0 +132264,21861,0,51583,0,0 +132265,21862,0,51584,0,0 +132266,21863,0,51585,0,0 +132267,21864,0,51586,0,0 +132268,21865,0,51587,0,0 +132269,21866,0,51489,0,0 +132270,21867,0,48731,0,0 +132271,21868,0,51588,0,0 +132272,21869,0,51589,0,0 +132273,21870,0,51590,0,0 +132274,21871,0,51591,0,0 +132276,21873,0,51592,0,0 +132277,21874,0,51593,0,0 +132278,21875,0,51594,0,0 +132291,21888,0,51595,0,0 +132292,21889,0,51596,0,0 +132293,21890,0,51597,0,0 +132394,21994,0,51598,0,0 +132395,21995,0,51599,0,0 +132396,21996,0,51600,0,0 +132397,21997,0,51601,0,0 +132398,21998,0,51602,0,0 +132399,21999,0,51603,0,0 +132400,22000,0,51604,0,0 +132401,22001,0,51605,0,0 +132402,22002,0,51606,0,0 +132403,22003,0,51607,0,0 +132404,22004,0,51608,0,0 +132405,22005,0,51609,0,0 +132406,22006,0,51610,0,0 +132407,22007,0,51611,0,0 +132408,22008,0,51612,0,0 +132409,22009,0,51613,0,0 +132410,22010,0,51614,0,0 +132411,22011,0,51615,0,0 +132413,22013,0,51616,0,0 +132415,22015,0,51617,0,0 +132416,22016,0,51618,0,0 +132417,22017,0,51619,0,0 +132459,22060,0,51620,0,0 +132460,22061,0,51621,0,0 +132461,22062,0,51622,0,0 +132462,22063,0,51623,0,0 +132463,22064,0,51624,0,0 +132464,22065,0,51625,0,0 +132465,22066,0,51626,0,0 +132466,22067,0,51627,0,0 +132467,22068,0,51628,0,0 +132468,22069,0,51629,0,0 +132469,22070,0,51630,0,0 +132470,22071,0,51631,0,0 +132471,22072,0,51632,0,0 +132472,22073,0,51633,0,0 +132473,22074,0,51634,0,0 +132474,22075,0,51635,0,0 +132475,22076,0,51636,0,0 +132476,22077,0,51637,0,0 +132477,22078,0,51638,0,0 +132478,22079,0,51639,0,0 +132479,22080,0,51640,0,0 +132480,22081,0,51641,0,0 +132481,22082,0,51642,0,0 +132482,22083,0,51643,0,0 +132483,22084,0,51644,0,0 +132484,22085,0,51645,0,0 +132485,22086,0,51646,0,0 +132486,22087,0,51647,0,0 +132487,22088,0,51648,0,0 +132488,22089,0,51649,0,0 +132489,22090,0,51650,0,0 +132490,22091,0,51651,0,0 +132491,22092,0,51652,0,0 +132492,22093,0,51653,0,0 +132494,22095,0,51654,0,0 +132495,22096,0,51655,0,0 +132496,22097,0,51656,0,0 +132497,22098,0,51657,0,0 +132498,22099,0,51658,0,0 +132499,22100,0,51659,0,0 +132500,22101,0,51660,0,0 +132501,22102,0,51661,0,0 +132505,22106,0,51662,0,0 +132506,22107,0,51663,0,0 +132507,22108,0,51664,0,0 +132508,22109,0,51665,0,0 +132509,22110,0,51666,0,0 +132510,22111,0,51667,0,0 +132511,22112,0,51668,0,0 +132512,22113,0,51669,0,0 +132590,22191,0,49376,0,0 +132593,22194,0,50196,0,0 +132594,22195,0,50197,0,0 +132595,22196,0,51670,0,0 +132596,22197,0,50197,0,0 +132597,22198,0,51671,0,0 +132598,22199,0,49251,0,0 +132603,22204,0,51015,0,0 +132604,22205,0,49370,0,0 +132605,22206,0,46450,0,0 +132606,22207,0,48739,0,0 +132607,22208,0,51672,0,0 +132609,22210,0,49052,0,0 +132610,22211,0,49052,0,0 +132611,22212,0,45839,0,0 +132612,22213,0,46320,0,0 +132614,22215,0,49467,0,0 +132622,22223,0,51673,0,0 +132624,22225,0,51674,0,0 +132629,22230,0,48044,0,0 +132630,22231,0,51675,0,0 +132631,22232,0,46488,0,0 +132633,22234,0,47533,0,0 +132639,22240,0,51676,0,0 +132640,22241,0,51677,0,0 +132641,22242,0,51678,0,0 +132644,22245,0,51679,0,0 +132646,22247,0,51680,0,0 +132652,22253,0,49271,0,0 +132653,22254,0,51681,0,0 +132655,22256,0,50906,0,0 +132665,22266,0,46452,0,0 +132666,22267,0,51044,0,0 +132668,22269,0,49462,0,0 +132669,22270,0,48779,0,0 +132670,22271,0,47070,0,0 +132671,22272,0,49981,0,0 +132672,22273,0,51682,0,0 +132673,22274,0,46207,0,0 +132674,22275,0,46827,0,0 +132675,22276,0,51683,0,0 +132676,22277,0,51684,0,0 +132677,22278,0,51685,0,0 +132678,22279,0,51686,0,0 +132679,22280,0,51687,0,0 +132680,22281,0,51688,0,0 +132681,22282,0,51689,0,0 +132700,22301,0,47642,0,0 +132701,22302,0,51690,0,0 +132702,22303,0,51691,0,0 +132703,22304,0,51692,0,0 +132704,22305,0,51693,0,0 +132705,22306,0,51694,0,0 +132710,22311,0,51695,0,0 +132712,22313,0,51694,0,0 +132713,22314,0,51696,0,0 +132714,22315,0,47379,0,0 +132716,22317,0,49425,0,0 +132717,22318,0,51697,0,0 +132718,22319,0,51698,0,0 +132721,22322,0,45891,0,0 +132724,22325,0,47553,0,0 +132727,22328,0,49111,0,0 +132728,22329,0,51699,0,0 +132729,22330,0,51700,0,0 +132731,22332,0,51701,0,0 +132732,22333,0,47218,0,0 +132734,22335,0,51702,0,0 +132735,22336,0,48292,0,0 +132736,22337,0,50305,0,0 +132740,22341,0,50764,0,0 +132741,22342,0,48627,0,0 +132742,22343,0,51303,0,0 +132745,22346,0,51077,0,0 +132746,22347,0,49231,0,0 +132747,22348,0,49843,0,0 +132776,22377,0,46314,0,0 +132777,22378,0,51703,0,0 +132778,22379,0,48957,0,0 +132779,22380,0,51704,0,0 +132782,22383,0,51705,0,0 +132783,22384,0,51706,0,0 +132784,22385,0,51707,0,0 +132790,22391,0,51702,0,0 +132793,22394,0,51708,0,0 +132803,22404,0,49258,0,0 +132804,22405,0,48264,0,0 +132805,22406,0,47497,0,0 +132806,22407,0,47108,0,0 +132807,22408,0,51709,0,0 +132808,22409,0,51710,0,0 +132809,22410,0,51711,0,0 +132810,22411,0,50272,0,0 +132811,22412,0,48035,0,0 +132815,22416,0,51712,0,0 +132816,22417,0,51713,0,0 +132817,22418,0,51714,0,0 +132818,22419,0,51715,0,0 +132819,22420,0,51716,0,0 +132820,22421,0,51717,0,0 +132821,22422,0,51718,0,0 +132822,22423,0,51719,0,0 +132823,22424,0,51720,0,0 +132824,22425,0,51721,0,0 +132825,22426,0,51722,0,0 +132826,22427,0,51723,0,0 +132827,22428,0,51724,0,0 +132828,22429,0,51725,0,0 +132829,22430,0,51726,0,0 +132830,22431,0,51727,0,0 +132835,22436,0,51728,0,0 +132836,22437,0,51729,0,0 +132837,22438,0,51730,0,0 +132838,22439,0,51731,0,0 +132839,22440,0,51732,0,0 +132840,22441,0,51733,0,0 +132841,22442,0,51734,0,0 +132842,22443,0,51735,0,0 +132857,22458,0,46032,0,0 +132863,22464,0,51736,0,0 +132864,22465,0,51737,0,0 +132865,22466,0,51738,0,0 +132866,22467,0,51739,0,0 +132867,22468,0,51740,0,0 +132868,22469,0,51741,0,0 +132869,22470,0,51742,0,0 +132870,22471,0,51743,0,0 +132871,22472,0,48793,0,0 +132875,22476,0,51744,0,0 +132876,22477,0,51745,0,0 +132877,22478,0,51746,0,0 +132878,22479,0,51747,0,0 +132879,22480,0,51748,0,0 +132880,22481,0,51749,0,0 +132881,22482,0,51750,0,0 +132882,22483,0,51751,0,0 +132887,22488,0,51752,0,0 +132888,22489,0,51753,0,0 +132889,22490,0,51754,0,0 +132890,22491,0,51755,0,0 +132891,22492,0,51756,0,0 +132892,22493,0,51757,0,0 +132893,22494,0,51758,0,0 +132894,22495,0,51759,0,0 +132895,22496,0,51760,0,0 +132896,22497,0,51761,0,0 +132897,22498,0,51762,0,0 +132898,22499,0,51763,0,0 +132899,22500,0,51764,0,0 +132900,22501,0,51765,0,0 +132901,22502,0,51766,0,0 +132902,22503,0,51767,0,0 +132903,22504,0,51768,0,0 +132904,22505,0,51769,0,0 +132905,22506,0,51770,0,0 +132906,22507,0,51771,0,0 +132907,22508,0,51772,0,0 +132908,22509,0,51773,0,0 +132909,22510,0,51774,0,0 +132910,22511,0,51775,0,0 +132911,22512,0,51776,0,0 +132912,22513,0,51777,0,0 +132913,22514,0,51778,0,0 +132914,22515,0,51779,0,0 +132915,22516,0,51780,0,0 +132916,22517,0,51781,0,0 +132917,22518,0,51782,0,0 +132918,22519,0,51783,0,0 +132988,22589,0,51784,0,0 +132995,22596,0,50925,0,0 +133029,22630,0,51785,0,0 +133030,22631,0,51786,0,0 +133031,22632,0,51787,0,0 +133045,22646,0,47322,0,0 +133050,22651,0,49280,0,0 +133051,22652,0,51788,0,0 +133053,22654,0,51789,0,0 +133054,22655,0,51790,0,0 +133055,22656,0,47111,0,0 +133057,22658,0,47282,0,0 +133059,22660,0,48508,0,0 +133060,22661,0,51791,0,0 +133061,22662,0,51792,0,0 +133062,22663,0,51793,0,0 +133063,22664,0,51794,0,0 +133064,22665,0,51795,0,0 +133065,22666,0,51796,0,0 +133066,22667,0,45757,0,0 +133067,22668,0,48503,0,0 +133068,22669,0,51797,0,0 +133069,22670,0,51798,0,0 +133070,22671,0,51799,0,0 +133071,22672,0,49280,0,0 +133072,22673,0,51473,0,0 +133075,22676,0,51473,0,0 +133087,22688,0,48173,0,0 +133088,22689,0,51800,0,0 +133089,22690,0,46586,0,0 +133090,22691,0,51801,0,0 +133098,22699,0,51802,0,0 +133099,22700,0,51803,0,0 +133100,22701,0,51804,0,0 +133101,22702,0,51805,0,0 +133108,22709,0,51801,0,0 +133110,22711,0,47869,0,0 +133111,22712,0,51806,0,0 +133112,22713,0,51807,0,0 +133113,22714,0,49761,0,0 +133114,22715,0,51808,0,0 +133115,22716,0,51809,0,0 +133117,22718,0,48172,0,0 +133119,22720,0,49281,0,0 +133123,22724,0,51810,0,0 +133129,22730,0,49201,0,0 +133130,22731,0,51811,0,0 +133135,22736,0,51812,0,0 +133137,22738,0,51812,0,0 +133139,22740,0,46831,0,0 +133140,22741,0,48745,0,0 +133141,22742,0,51813,0,0 +133142,22743,0,46751,0,0 +133143,22744,0,48923,0,0 +133144,22745,0,45781,0,0 +133146,22747,0,48627,0,0 +133147,22748,0,51473,0,0 +133148,22749,0,46831,0,0 +133149,22750,0,48745,0,0 +133150,22751,0,49280,0,0 +133151,22752,0,48627,0,0 +133152,22753,0,51814,0,0 +133155,22756,0,51815,0,0 +133156,22757,0,51816,0,0 +133157,22758,0,51817,0,0 +133158,22759,0,51818,0,0 +133159,22760,0,51819,0,0 +133160,22761,0,51820,0,0 +133161,22762,0,48834,0,0 +133162,22763,0,51821,0,0 +133163,22764,0,51822,0,0 +133181,22782,0,45880,0,0 +133182,22783,0,47446,0,0 +133183,22784,0,49007,0,0 +133197,22798,0,51823,0,0 +133198,22799,0,51824,0,0 +133199,22800,0,51825,0,0 +133200,22801,0,51826,0,0 +133201,22802,0,51827,0,0 +133202,22803,0,51828,0,0 +133203,22804,0,51829,0,0 +133204,22805,0,51830,0,0 +133205,22806,0,51830,0,0 +133206,22807,0,51831,0,0 +133207,22808,0,51832,0,0 +133208,22809,0,51833,0,0 +133209,22810,0,51834,0,0 +133210,22811,0,51835,0,0 +133211,22812,0,51836,0,0 +133212,22813,0,51837,0,0 +133213,22814,0,51838,0,0 +133214,22815,0,51839,0,0 +133215,22816,0,51840,0,0 +133216,22817,0,51841,0,0 +133217,22818,0,51842,0,0 +133218,22819,0,51843,0,0 +133219,22820,0,51844,0,0 +133220,22821,0,51845,0,0 +133242,22843,0,50483,0,0 +133251,22852,0,50450,0,0 +133254,22855,0,50813,0,0 +133255,22856,0,50454,0,0 +133256,22857,0,50471,0,0 +133257,22858,0,50464,0,0 +133258,22859,0,50838,0,0 +133259,22860,0,50442,0,0 +133261,22862,0,50482,0,0 +133262,22863,0,50452,0,0 +133263,22864,0,50455,0,0 +133264,22865,0,50814,0,0 +133266,22867,0,50472,0,0 +133267,22868,0,50465,0,0 +133268,22869,0,50839,0,0 +133269,22870,0,50444,0,0 +133271,22872,0,50466,0,0 +133272,22873,0,50468,0,0 +133273,22874,0,50477,0,0 +133274,22875,0,50479,0,0 +133275,22876,0,50474,0,0 +133276,22877,0,50459,0,0 +133277,22878,0,50457,0,0 +133278,22879,0,50460,0,0 +133279,22880,0,50463,0,0 +133280,22881,0,49627,0,0 +133281,22882,0,47669,0,0 +133282,22883,0,49000,0,0 +133283,22884,0,50811,0,0 +133284,22885,0,50836,0,0 +133285,22886,0,50447,0,0 +133286,22887,0,50475,0,0 +133335,22936,0,51846,0,0 +133336,22937,0,51847,0,0 +133337,22938,0,51848,0,0 +133339,22940,0,51849,0,0 +133340,22941,0,51850,0,0 +133341,22942,0,51851,0,0 +133350,22951,0,45735,0,0 +133351,22952,0,45905,0,0 +133352,22953,0,46551,0,0 +133355,22956,0,51852,0,0 +133356,22957,0,45870,0,0 +133357,22958,0,47524,0,0 +133358,22959,0,51853,0,0 +133359,22960,0,51854,0,0 +133362,22963,0,46244,0,0 +133363,22964,0,46689,0,0 +133364,22965,0,46785,0,0 +133365,22966,0,46741,0,0 +133366,22967,0,51855,0,0 +133367,22968,0,51855,0,0 +133368,22969,0,47343,0,0 +133370,22971,0,47492,0,0 +133379,22980,0,51318,0,0 +133381,22982,0,47229,0,0 +133382,22983,0,51856,0,0 +133383,22984,0,51857,0,0 +133384,22985,0,51346,0,0 +133385,22986,0,47289,0,0 +133386,22987,0,45992,0,0 +133387,22988,0,51858,0,0 +133389,22990,0,46202,0,0 +133390,22991,0,51859,0,0 +133391,22992,0,45957,0,0 +133392,22993,0,51860,0,0 +133393,22994,0,51861,0,0 +133394,22995,0,51862,0,0 +133395,22996,0,51314,0,0 +133396,22997,0,47404,0,0 +133397,22998,0,51863,0,0 +133398,22999,0,51864,0,0 +133399,23000,0,51865,0,0 +133408,23009,0,51844,0,0 +133413,23014,0,51866,0,0 +133416,23017,0,51867,0,0 +133418,23019,0,51868,0,0 +133419,23020,0,51869,0,0 +133420,23021,0,51870,0,0 +133428,23029,0,51871,0,0 +133429,23030,0,51872,0,0 +133431,23032,0,51873,0,0 +133432,23033,0,51874,0,0 +133433,23034,0,51875,0,0 +133434,23035,0,51876,0,0 +133438,23039,0,51841,0,0 +133442,23043,0,51877,0,0 +133443,23044,0,51878,0,0 +133444,23045,0,51879,0,0 +133447,23048,0,51880,0,0 +133448,23049,0,51881,0,0 +133449,23050,0,51882,0,0 +133450,23051,0,51209,0,0 +133451,23052,0,51465,0,0 +133453,23054,0,51883,0,0 +133455,23056,0,51884,0,0 +133467,23068,0,51885,0,0 +133468,23069,0,51886,0,0 +133469,23070,0,51887,0,0 +133470,23071,0,51888,0,0 +133471,23072,0,51889,0,0 +133472,23073,0,46832,0,0 +133474,23075,0,51890,0,0 +133477,23078,0,51891,0,0 +133480,23081,0,51892,0,0 +133481,23082,0,51893,0,0 +133483,23084,0,51894,0,0 +133484,23085,0,51895,0,0 +133486,23087,0,51896,0,0 +133487,23088,0,51897,0,0 +133488,23089,0,51898,0,0 +133489,23090,0,51899,0,0 +133490,23091,0,51900,0,0 +133491,23092,0,51901,0,0 +133492,23093,0,51902,0,0 +133523,23124,0,51903,0,0 +133525,23126,0,51904,0,0 +133526,23127,0,50909,0,0 +133527,23128,0,48630,0,0 +133528,23129,0,50919,0,0 +133531,23132,0,51018,0,0 +133538,23139,0,45874,0,0 +133555,23156,0,46754,0,0 +133567,23168,0,51905,0,0 +133569,23170,0,48206,0,0 +133570,23171,0,49302,0,0 +133572,23173,0,49306,0,0 +133573,23174,0,46281,0,0 +133576,23177,0,51906,0,0 +133577,23178,0,46989,0,0 +133591,23192,0,45764,0,0 +133611,23212,0,51907,0,0 +133612,23213,0,45961,0,0 +133618,23219,0,49558,0,0 +133619,23220,0,50772,0,0 +133620,23221,0,51908,0,0 +133624,23225,0,51342,0,0 +133625,23226,0,51552,0,0 +133628,23229,0,47368,0,0 +133629,23230,0,51364,0,0 +133631,23232,0,49287,0,0 +133637,23238,0,51909,0,0 +133639,23240,0,51343,0,0 +133640,23241,0,51312,0,0 +133641,23242,0,51910,0,0 +133642,23243,0,50469,0,0 +133643,23244,0,50467,0,0 +133650,23251,0,50478,0,0 +133651,23252,0,50480,0,0 +133652,23253,0,50458,0,0 +133653,23254,0,50456,0,0 +133654,23255,0,50372,0,0 +133655,23256,0,50812,0,0 +133656,23257,0,50461,0,0 +133657,23258,0,50462,0,0 +133658,23259,0,50473,0,0 +133659,23260,0,50476,0,0 +133660,23261,0,50835,0,0 +133661,23262,0,50837,0,0 +133662,23263,0,50446,0,0 +133663,23264,0,50448,0,0 +133664,23265,0,47333,0,0 +133665,23266,0,51911,0,0 +133666,23267,0,45877,0,0 +133670,23272,0,50417,0,0 +133671,23273,0,50419,0,0 +133672,23274,0,50397,0,0 +133673,23275,0,50396,0,0 +133674,23276,0,50418,0,0 +133675,23277,0,50420,0,0 +133676,23278,0,50393,0,0 +133677,23279,0,50395,0,0 +133678,23280,0,50390,0,0 +133679,23281,0,50387,0,0 +133680,23282,0,50806,0,0 +133681,23283,0,50805,0,0 +133682,23284,0,50389,0,0 +133683,23285,0,50386,0,0 +133684,23286,0,50367,0,0 +133685,23287,0,50368,0,0 +133686,23288,0,50826,0,0 +133687,23289,0,50825,0,0 +133688,23290,0,50385,0,0 +133689,23291,0,50383,0,0 +133690,23292,0,50411,0,0 +133691,23293,0,50412,0,0 +133692,23294,0,50407,0,0 +133693,23295,0,50408,0,0 +133694,23296,0,50808,0,0 +133695,23297,0,50809,0,0 +133696,23298,0,50403,0,0 +133697,23299,0,50405,0,0 +133698,23300,0,50416,0,0 +133699,23301,0,50366,0,0 +133700,23302,0,48789,0,0 +133701,23303,0,50828,0,0 +133702,23304,0,50400,0,0 +133703,23305,0,50399,0,0 +133704,23306,0,51912,0,0 +133705,23307,0,50413,0,0 +133706,23308,0,50410,0,0 +133707,23309,0,50409,0,0 +133708,23310,0,50807,0,0 +133709,23311,0,50810,0,0 +133710,23312,0,50404,0,0 +133711,23313,0,50406,0,0 +133712,23314,0,51913,0,0 +133713,23315,0,50369,0,0 +133714,23316,0,50827,0,0 +133715,23317,0,50829,0,0 +133716,23318,0,50402,0,0 +133717,23319,0,50401,0,0 +133719,23321,0,45719,0,0 +133720,23322,0,51914,0,0 +133721,23323,0,51915,0,0 +133722,23324,0,51916,0,0 +133726,23328,0,51917,0,0 +133733,23335,0,45943,0,0 +133742,23344,0,51918,0,0 +133743,23345,0,51919,0,0 +133744,23346,0,46161,0,0 +133745,23347,0,46446,0,0 +133746,23348,0,51920,0,0 +133747,23349,0,45731,0,0 +133748,23350,0,45735,0,0 +133749,23351,0,45736,0,0 +133754,23356,0,45873,0,0 +133760,23362,0,51921,0,0 +133761,23363,0,51922,0,0 +133762,23365,0,50006,0,0 +133763,23367,0,46472,0,0 +133764,23368,0,47326,0,0 +133765,23369,0,51923,0,0 +133766,23370,0,51924,0,0 +133767,23371,0,47459,0,0 +133768,23372,0,51925,0,0 +133769,23373,0,51926,0,0 +133771,23375,0,51911,0,0 +133772,23376,0,45972,0,0 +133773,23377,0,45724,0,0 +133778,23382,0,51311,0,0 +133784,23388,0,51927,0,0 +133786,23390,0,47524,0,0 +133787,23391,0,46281,0,0 +133788,23392,0,46705,0,0 +133789,23393,0,46704,0,0 +133791,23395,0,50006,0,0 +133792,23396,0,45870,0,0 +133793,23397,0,47493,0,0 +133794,23398,0,46421,0,0 +133795,23399,0,47298,0,0 +133796,23400,0,47257,0,0 +133797,23401,0,49007,0,0 +133798,23402,0,47945,0,0 +133799,23403,0,48236,0,0 +133800,23404,0,45877,0,0 +133801,23405,0,46345,0,0 +133802,23406,0,46687,0,0 +133803,23407,0,47555,0,0 +133804,23408,0,47365,0,0 +133805,23409,0,47046,0,0 +133806,23410,0,51928,0,0 +133807,23411,0,47228,0,0 +133808,23412,0,47599,0,0 +133809,23413,0,46600,0,0 +133810,23414,0,45801,0,0 +133811,23415,0,46244,0,0 +133812,23416,0,51929,0,0 +133815,23419,0,47958,0,0 +133816,23420,0,51930,0,0 +133817,23421,0,45870,0,0 +133818,23422,0,46268,0,0 +133819,23423,0,51931,0,0 +133824,23428,0,47840,0,0 +133825,23429,0,47475,0,0 +133826,23430,0,45870,0,0 +133827,23431,0,46268,0,0 +133828,23432,0,51931,0,0 +133829,23433,0,51932,0,0 +133830,23434,0,46468,0,0 +133846,23450,0,51827,0,0 +133847,23451,0,51933,0,0 +133848,23452,0,51934,0,0 +133849,23453,0,51935,0,0 +133850,23454,0,51936,0,0 +133851,23455,0,51937,0,0 +133852,23456,0,51938,0,0 +133853,23457,0,51939,0,0 +133854,23458,0,51940,0,0 +133855,23459,0,51941,0,0 +133857,23461,0,51942,0,0 +133858,23462,0,51943,0,0 +133859,23463,0,51944,0,0 +133860,23464,0,51941,0,0 +133861,23465,0,51939,0,0 +133862,23466,0,51940,0,0 +133863,23467,0,51942,0,0 +133864,23468,0,51943,0,0 +133865,23469,0,51944,0,0 +133866,23470,0,51919,0,0 +133867,23471,0,51945,0,0 +133868,23472,0,51920,0,0 +133869,23473,0,51946,0,0 +133870,23474,0,51947,0,0 +133871,23475,0,51948,0,0 +133872,23476,0,51949,0,0 +133873,23477,0,51950,0,0 +133874,23478,0,51947,0,0 +133875,23479,0,51951,0,0 +133877,23481,0,51952,0,0 +133878,23482,0,51953,0,0 +133880,23484,0,51225,0,0 +133883,23487,0,51954,0,0 +133884,23488,0,51955,0,0 +133885,23489,0,51956,0,0 +133886,23490,0,51957,0,0 +133887,23491,0,51958,0,0 +133889,23493,0,51959,0,0 +133890,23494,0,51960,0,0 +133893,23497,0,51961,0,0 +133894,23498,0,51962,0,0 +133895,23499,0,51963,0,0 +133898,23502,0,51964,0,0 +133899,23503,0,51965,0,0 +133900,23504,0,51966,0,0 +133901,23505,0,48257,0,0 +133902,23506,0,49882,0,0 +133903,23507,0,49875,0,0 +133904,23508,0,49876,0,0 +133905,23509,0,51967,0,0 +133906,23510,0,51968,0,0 +133907,23511,0,51969,0,0 +133908,23512,0,51970,0,0 +133909,23513,0,51971,0,0 +133910,23514,0,51972,0,0 +133911,23515,0,51973,0,0 +133912,23516,0,51974,0,0 +133913,23517,0,51972,0,0 +133914,23518,0,51975,0,0 +133915,23519,0,51976,0,0 +133916,23520,0,51977,0,0 +133917,23521,0,51978,0,0 +133918,23522,0,51979,0,0 +133919,23523,0,48874,0,0 +133920,23524,0,51980,0,0 +133921,23525,0,51981,0,0 +133922,23526,0,51982,0,0 +133923,23527,0,51983,0,0 +133927,23531,0,51535,0,0 +133928,23532,0,51984,0,0 +133929,23533,0,49761,0,0 +133930,23534,0,51985,0,0 +133931,23535,0,51986,0,0 +133932,23536,0,51987,0,0 +133933,23537,0,51988,0,0 +133934,23538,0,51989,0,0 +133935,23539,0,51990,0,0 +133936,23540,0,51991,0,0 +133937,23541,0,51992,0,0 +133938,23542,0,51993,0,0 +133939,23543,0,51994,0,0 +133940,23544,0,51995,0,0 +133942,23546,0,51996,0,0 +133949,23553,0,46129,0,0 +133950,23554,0,51997,0,0 +133951,23555,0,51998,0,0 +133952,23556,0,51999,0,0 +133953,23557,0,51571,0,0 +133959,23563,0,52000,0,0 +133960,23564,0,52001,0,0 +133961,23565,0,52002,0,0 +133973,23577,0,52003,0,0 +133978,23582,0,51840,0,0 +133979,23583,0,51858,0,0 +133983,23587,0,52004,0,0 +134052,23663,0,51521,0,0 +134053,23664,0,52005,0,0 +134054,23665,0,52006,0,0 +134055,23666,0,51144,0,0 +134056,23667,0,52007,0,0 +134057,23668,0,50901,0,0 +134062,23673,0,52008,0,0 +134078,23691,0,52009,0,0 +134092,23705,0,52010,0,0 +134095,23708,0,52011,0,0 +134096,23709,0,52012,0,0 +134097,23710,0,52013,0,0 +134111,23724,0,52014,0,0 +134128,23741,0,51830,0,0 +134129,23742,0,52015,0,0 +134130,23743,0,51830,0,0 +134133,23746,0,52016,0,0 +134134,23747,0,52017,0,0 +134135,23748,0,52018,0,0 +134145,23758,0,52019,0,0 +134148,23761,0,52020,0,0 +134149,23762,0,52021,0,0 +134150,23763,0,52022,0,0 +134159,23772,0,46427,0,0 +134160,23773,0,46427,0,0 +134211,23824,0,46311,0,0 +134212,23825,0,52023,0,0 +134215,23828,0,52024,0,0 +134216,23829,0,52025,0,0 +134225,23838,0,48350,0,0 +134226,23839,0,48350,0,0 +134230,23844,0,52026,0,0 +134242,23856,0,52027,0,0 +134274,23889,0,50989,0,0 +134290,23906,0,52028,0,0 +134291,23907,0,52029,0,0 +134292,23908,0,52030,0,0 +134293,23909,0,52031,0,0 +134295,23913,0,50318,0,0 +134296,23915,0,50318,0,0 +134301,23923,0,52032,0,0 +134302,23924,0,50527,0,0 +134309,23931,0,46226,0,0 +134374,23996,0,52033,0,0 +134376,23998,0,51784,0,0 +134377,23999,0,52034,0,0 +134382,24004,0,52035,0,0 +134389,24011,0,52036,0,0 +134390,24012,0,52037,0,0 +134391,24013,0,52038,0,0 +134392,24014,0,52039,0,0 +134393,24015,0,52040,0,0 +134394,24016,0,52041,0,0 +134395,24017,0,52042,0,0 +134396,24018,0,52043,0,0 +134397,24019,0,52044,0,0 +134398,24020,0,52045,0,0 +134399,24021,0,52046,0,0 +134400,24022,0,52047,0,0 +134401,24023,0,52048,0,0 +134402,24024,0,52049,0,0 +134412,24034,0,52050,0,0 +134416,24038,0,51345,0,0 +134422,24044,0,52051,0,0 +134424,24046,0,52052,0,0 +134441,24063,0,52053,0,0 +134442,24064,0,52054,0,0 +134447,24069,0,52055,0,0 +134448,24070,0,51702,0,0 +134449,24071,0,46219,0,0 +134461,24083,0,52056,0,0 +134468,24090,0,52057,0,0 +134469,24091,0,52058,0,0 +134472,24094,0,52059,0,0 +134478,24100,0,52060,0,0 +134481,24103,0,52061,0,0 +134482,24104,0,46077,0,0 +134485,24107,0,52062,0,0 +134486,24108,0,45961,0,0 +134487,24109,0,47908,0,0 +134489,24111,0,46351,0,0 +134490,24112,0,45779,0,0 +134491,24113,0,47011,0,0 +134500,24122,0,48697,0,0 +134501,24123,0,49565,0,0 +134507,24129,0,46114,0,0 +134508,24130,0,46708,0,0 +134509,24131,0,46047,0,0 +134511,24133,0,52063,0,0 +134512,24134,0,52064,0,0 +134513,24135,0,52065,0,0 +134514,24136,0,48232,0,0 +134515,24137,0,49465,0,0 +134516,24138,0,46446,0,0 +134519,24141,0,52066,0,0 +134520,24142,0,52067,0,0 +134521,24143,0,51346,0,0 +134522,24144,0,52068,0,0 +134523,24145,0,52069,0,0 +134524,24146,0,52070,0,0 +134528,24150,0,52071,0,0 +134533,24155,0,52072,0,0 +134600,24222,0,48158,0,0 +134605,24227,0,52073,0,0 +134619,24241,0,52074,0,0 +134622,24244,0,52075,0,0 +134627,24249,0,47055,0,0 +134628,24250,0,52076,0,0 +134629,24251,0,52077,0,0 +134630,24252,0,48611,0,0 +134631,24253,0,52078,0,0 +134632,24254,0,49475,0,0 +134633,24255,0,49122,0,0 +134634,24256,0,52079,0,0 +134635,24257,0,52080,0,0 +134636,24258,0,47280,0,0 +134637,24259,0,52081,0,0 +134638,24260,0,52082,0,0 +134639,24261,0,52083,0,0 +134640,24262,0,52084,0,0 +134641,24263,0,52085,0,0 +134642,24264,0,52086,0,0 +134643,24266,0,52087,0,0 +134644,24267,0,52088,0,0 +134696,24319,0,52089,0,0 +134697,24320,0,51315,0,0 +134698,24321,0,51318,0,0 +134699,24322,0,51314,0,0 +134701,24324,0,52090,0,0 +134702,24325,0,52091,0,0 +134703,24326,0,52092,0,0 +134704,24327,0,52093,0,0 +134705,24328,0,51333,0,0 +134706,24329,0,52094,0,0 +134708,24331,0,52095,0,0 +134709,24332,0,52096,0,0 +134710,24333,0,52097,0,0 +134711,24334,0,46018,0,0 +134716,24339,0,51016,0,0 +134717,24340,0,46578,0,0 +134718,24341,0,45926,0,0 +134719,24342,0,48353,0,0 +134720,24343,0,47364,0,0 +134721,24344,0,52098,0,0 +134723,24346,0,52099,0,0 +134724,24347,0,52100,0,0 +134725,24348,0,52101,0,0 +134728,24351,0,52096,0,0 +134729,24352,0,52102,0,0 +134730,24353,0,52103,0,0 +134731,24354,0,52104,0,0 +134733,24356,0,52105,0,0 +134734,24357,0,52106,0,0 +134736,24359,0,52107,0,0 +134737,24360,0,52108,0,0 +134738,24361,0,45739,0,0 +134739,24362,0,51125,0,0 +134740,24363,0,52109,0,0 +134741,24364,0,52110,0,0 +134742,24365,0,52111,0,0 +134743,24366,0,52112,0,0 +134754,24377,0,49250,0,0 +134755,24378,0,52113,0,0 +134756,24379,0,50884,0,0 +134757,24380,0,52114,0,0 +134758,24381,0,51465,0,0 +134761,24384,0,52115,0,0 +134764,24387,0,52116,0,0 +134765,24388,0,52117,0,0 +134766,24389,0,52118,0,0 +134768,24391,0,52119,0,0 +134769,24392,0,52120,0,0 +134770,24393,0,46909,0,0 +134771,24394,0,52121,0,0 +134772,24395,0,52122,0,0 +134773,24396,0,52123,0,0 +134774,24397,0,52124,0,0 +134775,24398,0,52125,0,0 +134786,24409,0,52126,0,0 +134792,24417,0,46426,0,0 +134793,24418,0,51827,0,0 +134798,24423,0,52127,0,0 +134799,24424,0,52128,0,0 +134800,24425,0,52129,0,0 +134805,24430,0,52130,0,0 +134806,24431,0,52131,0,0 +134807,24432,0,52132,0,0 +134808,24433,0,52103,0,0 +134809,24434,0,52133,0,0 +134810,24435,0,52134,0,0 +134811,24436,0,52135,0,0 +134812,24437,0,46872,0,0 +134813,24438,0,52136,0,0 +134814,24439,0,52128,0,0 +134815,24440,0,52137,0,0 +134816,24441,0,52138,0,0 +134817,24442,0,52139,0,0 +134818,24443,0,52135,0,0 +134819,24444,0,52129,0,0 +134820,24445,0,52140,0,0 +134821,24446,0,52141,0,0 +134822,24447,0,52142,0,0 +134823,24448,0,52143,0,0 +134825,24450,0,52144,0,0 +134826,24451,0,52145,0,0 +134827,24452,0,52146,0,0 +134828,24453,0,47199,0,0 +134829,24454,0,52147,0,0 +134830,24455,0,52148,0,0 +134831,24456,0,52149,0,0 +134832,24457,0,52150,0,0 +134833,24458,0,52151,0,0 +134834,24459,0,47099,0,0 +134836,24461,0,52152,0,0 +134838,24463,0,52153,0,0 +134839,24464,0,51364,0,0 +134840,24465,0,52154,0,0 +134841,24466,0,52155,0,0 +134856,24481,0,52156,0,0 +134870,24495,0,52157,0,0 +134887,24512,0,52158,0,0 +134905,24544,0,52159,0,0 +134906,24545,0,52160,0,0 +134907,24546,0,52161,0,0 +134908,24547,0,52162,0,0 +134909,24548,0,50498,0,0 +134910,24549,0,52163,0,0 +134911,24550,0,52164,0,0 +134913,24552,0,52165,0,0 +134914,24553,0,52166,0,0 +134915,24554,0,52167,0,0 +134916,24555,0,52168,0,0 +134917,24556,0,52169,0,0 +134918,24557,0,52170,0,0 +134922,24561,0,50567,0,0 +134923,24562,0,50566,0,0 +134924,24563,0,50563,0,0 +134925,24564,0,50565,0,0 +134926,24565,0,50569,0,0 +134927,24566,0,50570,0,0 +134928,24572,0,50568,0,0 +134930,24575,0,47720,0,0 +134931,24576,0,52171,0,0 +134932,24577,0,47233,0,0 +134933,24578,0,45757,0,0 +134935,24580,0,52172,0,0 +134937,24582,0,45725,0,0 +134938,24583,0,47631,0,0 +134939,24584,0,47154,0,0 +134940,24585,0,48172,0,0 +134941,24586,0,47632,0,0 +134942,24587,0,45836,0,0 +134943,24588,0,47968,0,0 +134944,24589,0,46759,0,0 +134945,24590,0,52173,0,0 +134946,24591,0,45966,0,0 +134947,24592,0,45964,0,0 +134948,24593,0,48439,0,0 +134949,24594,0,45965,0,0 +134950,24595,0,46060,0,0 +134951,24596,0,46760,0,0 +134952,24597,0,48267,0,0 +134953,24598,0,52174,0,0 +134954,24599,0,49530,0,0 +134955,24600,0,52175,0,0 +134956,24601,0,52176,0,0 +134957,24602,0,49419,0,0 +134958,24603,0,47923,0,0 +134959,24604,0,48261,0,0 +134960,24605,0,46765,0,0 +134961,24606,0,45709,0,0 +134962,24607,0,47569,0,0 +134963,24608,0,45983,0,0 +134964,24609,0,52172,0,0 +134965,24610,0,47556,0,0 +134966,24611,0,46066,0,0 +134967,24612,0,46874,0,0 +134968,24613,0,52177,0,0 +134969,24614,0,52178,0,0 +134970,24615,0,52179,0,0 +134971,24616,0,47161,0,0 +134972,24617,0,52180,0,0 +134973,24618,0,52181,0,0 +134974,24619,0,52182,0,0 +134975,24620,0,46762,0,0 +134976,24621,0,46759,0,0 +134977,24622,0,52183,0,0 +134978,24623,0,45966,0,0 +134979,24624,0,45964,0,0 +134980,24625,0,52184,0,0 +134981,24626,0,45965,0,0 +134982,24627,0,52185,0,0 +134983,24628,0,46760,0,0 +134984,24629,0,47247,0,0 +134985,24630,0,46591,0,0 +134986,24631,0,46589,0,0 +134987,24632,0,46592,0,0 +134988,24633,0,48968,0,0 +134989,24634,0,46590,0,0 +134990,24635,0,46060,0,0 +134991,24636,0,46880,0,0 +134992,24637,0,50863,0,0 +134993,24638,0,52186,0,0 +134994,24639,0,52187,0,0 +134995,24640,0,45799,0,0 +134996,24641,0,48193,0,0 +134997,24642,0,52188,0,0 +134998,24643,0,47757,0,0 +134999,24644,0,46356,0,0 +135000,24645,0,52189,0,0 +135001,24646,0,52190,0,0 +135002,24647,0,52191,0,0 +135003,24648,0,52192,0,0 +135004,24649,0,52193,0,0 +135005,24650,0,52194,0,0 +135006,24651,0,47660,0,0 +135007,24652,0,52195,0,0 +135008,24653,0,46763,0,0 +135009,24654,0,47155,0,0 +135010,24655,0,47298,0,0 +135011,24656,0,46847,0,0 +135012,24657,0,47166,0,0 +135013,24658,0,47807,0,0 +135014,24659,0,49607,0,0 +135015,24660,0,46872,0,0 +135016,24661,0,48671,0,0 +135017,24662,0,49764,0,0 +135018,24663,0,52196,0,0 +135019,24664,0,48630,0,0 +135020,24665,0,47053,0,0 +135021,24666,0,52197,0,0 +135022,24667,0,49469,0,0 +135023,24668,0,47216,0,0 +135024,24669,0,49390,0,0 +135025,24670,0,48186,0,0 +135026,24671,0,48185,0,0 +135027,24672,0,48188,0,0 +135028,24673,0,52198,0,0 +135029,24674,0,48190,0,0 +135030,24675,0,48189,0,0 +135031,24676,0,48187,0,0 +135032,24677,0,46979,0,0 +135033,24678,0,46637,0,0 +135034,24679,0,52199,0,0 +135035,24680,0,46982,0,0 +135036,24681,0,48718,0,0 +135037,24682,0,46983,0,0 +135038,24683,0,46984,0,0 +135039,24684,0,46980,0,0 +135040,24685,0,46979,0,0 +135041,24686,0,46637,0,0 +135042,24687,0,46985,0,0 +135043,24688,0,46982,0,0 +135044,24689,0,52184,0,0 +135045,24690,0,46983,0,0 +135046,24691,0,46984,0,0 +135047,24692,0,46980,0,0 +135048,24693,0,52200,0,0 +135049,24694,0,52201,0,0 +135050,24695,0,52202,0,0 +135051,24696,0,52203,0,0 +135052,24697,0,52204,0,0 +135053,24698,0,52205,0,0 +135054,24699,0,52206,0,0 +135055,24700,0,52207,0,0 +135056,24701,0,52208,0,0 +135057,24702,0,52209,0,0 +135058,24703,0,52210,0,0 +135059,24704,0,52211,0,0 +135060,24705,0,47108,0,0 +135061,24706,0,45967,0,0 +135062,24707,0,52212,0,0 +135063,24708,0,47496,0,0 +135064,24709,0,47721,0,0 +135065,24710,0,47722,0,0 +135066,24711,0,52210,0,0 +135067,24712,0,47724,0,0 +135068,24713,0,52213,0,0 +135069,24714,0,47634,0,0 +135070,24715,0,52214,0,0 +135071,24716,0,47723,0,0 +135072,24717,0,47130,0,0 +135073,24718,0,46347,0,0 +135074,24719,0,47128,0,0 +135075,24720,0,46352,0,0 +135076,24721,0,48164,0,0 +135077,24722,0,46316,0,0 +135078,24723,0,46094,0,0 +135079,24724,0,47954,0,0 +135080,24725,0,46401,0,0 +135081,24726,0,46403,0,0 +135082,24727,0,52215,0,0 +135083,24728,0,46405,0,0 +135084,24729,0,52216,0,0 +135085,24730,0,46402,0,0 +135086,24731,0,47543,0,0 +135087,24732,0,46404,0,0 +135088,24733,0,46929,0,0 +135089,24734,0,46930,0,0 +135090,24735,0,45992,0,0 +135091,24736,0,46933,0,0 +135092,24737,0,51199,0,0 +135093,24738,0,46934,0,0 +135094,24739,0,52217,0,0 +135095,24740,0,46931,0,0 +135096,24741,0,46088,0,0 +135097,24742,0,45877,0,0 +135098,24743,0,47327,0,0 +135099,24744,0,45925,0,0 +135100,24745,0,52218,0,0 +135101,24746,0,45723,0,0 +135102,24747,0,48016,0,0 +135103,24748,0,52219,0,0 +135104,24749,0,52220,0,0 +135105,24750,0,46349,0,0 +135106,24751,0,52221,0,0 +135107,24752,0,47126,0,0 +135108,24753,0,48164,0,0 +135109,24754,0,52222,0,0 +135110,24755,0,52223,0,0 +135111,24756,0,46357,0,0 +135112,24757,0,47141,0,0 +135113,24758,0,52224,0,0 +135114,24759,0,47139,0,0 +135115,24760,0,52225,0,0 +135116,24761,0,47108,0,0 +135117,24762,0,52226,0,0 +135118,24763,0,52227,0,0 +135119,24764,0,47143,0,0 +135120,24765,0,45999,0,0 +135121,24766,0,52228,0,0 +135122,24767,0,46005,0,0 +135123,24768,0,52229,0,0 +135124,24769,0,52230,0,0 +135125,24770,0,52231,0,0 +135126,24771,0,47991,0,0 +135127,24772,0,46001,0,0 +135128,24773,0,50010,0,0 +135129,24774,0,52232,0,0 +135130,24775,0,46351,0,0 +135131,24776,0,52233,0,0 +135132,24777,0,51288,0,0 +135133,24778,0,46707,0,0 +135134,24779,0,49698,0,0 +135135,24780,0,46785,0,0 +135136,24781,0,47148,0,0 +135137,24782,0,48559,0,0 +135138,24783,0,47645,0,0 +135139,24784,0,48911,0,0 +135140,24785,0,47138,0,0 +135141,24786,0,52234,0,0 +135142,24787,0,47542,0,0 +135143,24788,0,52235,0,0 +135144,24789,0,50005,0,0 +135145,24790,0,46979,0,0 +135146,24791,0,46637,0,0 +135147,24792,0,46985,0,0 +135148,24793,0,46982,0,0 +135149,24794,0,48340,0,0 +135150,24795,0,46983,0,0 +135151,24796,0,46984,0,0 +135152,24797,0,46980,0,0 +135153,24798,0,46979,0,0 +135154,24799,0,46637,0,0 +135155,24800,0,46985,0,0 +135156,24801,0,46982,0,0 +135157,24802,0,50910,0,0 +135158,24803,0,46983,0,0 +135159,24804,0,46984,0,0 +135160,24805,0,46980,0,0 +135161,24806,0,47333,0,0 +135162,24807,0,47462,0,0 +135163,24808,0,46660,0,0 +135164,24809,0,47330,0,0 +135165,24810,0,52236,0,0 +135166,24811,0,49081,0,0 +135167,24812,0,52237,0,0 +135168,24813,0,52238,0,0 +135169,24814,0,50904,0,0 +135170,24815,0,47599,0,0 +135171,24816,0,46896,0,0 +135172,24817,0,52239,0,0 +135173,24818,0,48950,0,0 +135174,24819,0,52240,0,0 +135175,24820,0,52241,0,0 +135176,24821,0,47595,0,0 +135177,24822,0,52242,0,0 +135178,24823,0,47811,0,0 +135179,24824,0,52243,0,0 +135180,24825,0,52244,0,0 +135181,24826,0,49054,0,0 +135182,24827,0,52245,0,0 +135183,24828,0,52246,0,0 +135184,24829,0,52247,0,0 +135185,24830,0,52248,0,0 +135186,24831,0,47352,0,0 +135187,24832,0,47603,0,0 +135188,24833,0,51597,0,0 +135189,24834,0,47089,0,0 +135190,24835,0,46443,0,0 +135191,24836,0,52249,0,0 +135192,24837,0,47362,0,0 +135193,24838,0,48963,0,0 +135194,24839,0,52250,0,0 +135195,24840,0,52251,0,0 +135196,24841,0,48398,0,0 +135197,24842,0,48135,0,0 +135198,24843,0,50926,0,0 +135199,24844,0,50163,0,0 +135200,24845,0,52252,0,0 +135201,24846,0,47699,0,0 +135202,24847,0,52253,0,0 +135203,24848,0,45906,0,0 +135204,24849,0,52254,0,0 +135205,24850,0,52255,0,0 +135206,24851,0,52256,0,0 +135207,24852,0,47258,0,0 +135208,24853,0,47814,0,0 +135209,24854,0,48506,0,0 +135210,24855,0,46149,0,0 +135211,24856,0,46747,0,0 +135212,24857,0,47944,0,0 +135213,24858,0,52257,0,0 +135214,24859,0,47308,0,0 +135215,24860,0,49799,0,0 +135216,24861,0,48504,0,0 +135217,24862,0,47780,0,0 +135218,24863,0,47777,0,0 +135219,24864,0,47779,0,0 +135220,24865,0,47781,0,0 +135221,24866,0,52258,0,0 +135222,24867,0,52259,0,0 +135223,24868,0,52260,0,0 +135224,24869,0,47778,0,0 +135225,24870,0,52261,0,0 +135226,24871,0,52262,0,0 +135227,24872,0,52263,0,0 +135228,24873,0,52264,0,0 +135229,24874,0,47089,0,0 +135230,24875,0,52265,0,0 +135231,24876,0,46813,0,0 +135232,24877,0,49319,0,0 +135233,24878,0,52266,0,0 +135234,24879,0,52267,0,0 +135235,24880,0,52268,0,0 +135236,24881,0,47534,0,0 +135237,24882,0,52255,0,0 +135238,24883,0,52269,0,0 +135239,24884,0,52270,0,0 +135240,24885,0,47907,0,0 +135241,24886,0,52271,0,0 +135242,24887,0,47811,0,0 +135243,24888,0,52243,0,0 +135244,24889,0,52244,0,0 +135245,24890,0,47087,0,0 +135246,24891,0,52272,0,0 +135247,24892,0,52241,0,0 +135248,24893,0,52247,0,0 +135249,24894,0,52273,0,0 +135250,24895,0,52274,0,0 +135251,24896,0,52275,0,0 +135252,24897,0,52276,0,0 +135253,24898,0,52277,0,0 +135254,24899,0,52278,0,0 +135255,24900,0,52249,0,0 +135256,24901,0,52279,0,0 +135257,24902,0,46979,0,0 +135258,24903,0,46637,0,0 +135259,24904,0,46985,0,0 +135260,24905,0,46982,0,0 +135261,24906,0,48200,0,0 +135262,24907,0,46983,0,0 +135263,24908,0,46984,0,0 +135264,24909,0,46980,0,0 +135265,24910,0,46979,0,0 +135266,24911,0,52280,0,0 +135267,24912,0,46985,0,0 +135268,24913,0,46982,0,0 +135269,24914,0,49394,0,0 +135270,24915,0,46983,0,0 +135271,24916,0,46984,0,0 +135272,24917,0,46980,0,0 +135273,24918,0,48028,0,0 +135274,24919,0,52281,0,0 +135275,24920,0,48020,0,0 +135276,24921,0,48023,0,0 +135277,24922,0,52282,0,0 +135278,24923,0,48021,0,0 +135279,24924,0,52283,0,0 +135280,24925,0,48027,0,0 +135281,24926,0,46444,0,0 +135282,24927,0,52284,0,0 +135283,24928,0,48174,0,0 +135284,24929,0,52285,0,0 +135285,24930,0,48327,0,0 +135286,24931,0,48177,0,0 +135287,24932,0,48178,0,0 +135288,24933,0,47104,0,0 +135289,24934,0,47276,0,0 +135290,24935,0,47676,0,0 +135291,24936,0,47675,0,0 +135292,24937,0,46164,0,0 +135293,24938,0,49861,0,0 +135294,24939,0,47088,0,0 +135295,24940,0,49034,0,0 +135296,24941,0,47677,0,0 +135297,24942,0,52286,0,0 +135298,24943,0,52287,0,0 +135299,24944,0,52288,0,0 +135300,24945,0,52289,0,0 +135301,24946,0,52290,0,0 +135302,24947,0,49396,0,0 +135303,24948,0,52291,0,0 +135304,24949,0,52292,0,0 +135305,24950,0,49556,0,0 +135306,24951,0,52293,0,0 +135307,24952,0,52294,0,0 +135308,24953,0,52295,0,0 +135309,24954,0,52282,0,0 +135310,24955,0,52296,0,0 +135311,24956,0,48143,0,0 +135312,24957,0,52297,0,0 +135313,24958,0,52298,0,0 +135314,24959,0,52299,0,0 +135315,24960,0,52300,0,0 +135316,24961,0,52301,0,0 +135317,24962,0,52302,0,0 +135318,24963,0,52303,0,0 +135319,24964,0,52291,0,0 +135320,24965,0,49426,0,0 +135321,24966,0,52304,0,0 +135322,24967,0,52305,0,0 +135323,24968,0,52306,0,0 +135324,24969,0,52307,0,0 +135325,24970,0,52308,0,0 +135326,24971,0,52309,0,0 +135327,24972,0,52310,0,0 +135328,24973,0,49402,0,0 +135329,24974,0,46045,0,0 +135330,24975,0,52311,0,0 +135331,24976,0,52312,0,0 +135332,24977,0,52313,0,0 +135333,24978,0,52282,0,0 +135334,24979,0,48140,0,0 +135335,24980,0,48143,0,0 +135336,24981,0,46696,0,0 +135337,24982,0,47276,0,0 +135338,24983,0,47676,0,0 +135339,24984,0,47675,0,0 +135340,24985,0,46164,0,0 +135341,24986,0,50272,0,0 +135342,24987,0,47088,0,0 +135343,24988,0,49034,0,0 +135344,24989,0,47677,0,0 +135345,24990,0,48316,0,0 +135346,24991,0,48317,0,0 +135347,24992,0,48313,0,0 +135348,24993,0,48315,0,0 +135349,24994,0,49861,0,0 +135350,24995,0,48319,0,0 +135351,24996,0,52314,0,0 +135352,24997,0,48312,0,0 +135353,24998,0,52315,0,0 +135354,24999,0,52316,0,0 +135355,25000,0,52317,0,0 +135356,25001,0,50378,0,0 +135357,25002,0,48620,0,0 +135358,25003,0,52318,0,0 +135359,25004,0,48438,0,0 +135360,25005,0,46544,0,0 +135361,25006,0,52319,0,0 +135362,25007,0,52320,0,0 +135363,25008,0,52321,0,0 +135364,25009,0,52322,0,0 +135365,25010,0,52323,0,0 +135366,25011,0,52324,0,0 +135367,25012,0,52291,0,0 +135368,25013,0,52325,0,0 +135369,25014,0,52298,0,0 +135370,25015,0,52326,0,0 +135371,25016,0,52327,0,0 +135372,25017,0,52328,0,0 +135373,25018,0,47820,0,0 +135374,25019,0,52303,0,0 +135375,25020,0,52329,0,0 +135376,25021,0,46980,0,0 +135377,25022,0,48316,0,0 +135378,25023,0,48317,0,0 +135379,25024,0,48313,0,0 +135380,25025,0,48315,0,0 +135381,25026,0,48620,0,0 +135382,25027,0,48319,0,0 +135383,25028,0,48438,0,0 +135384,25029,0,48312,0,0 +135385,25030,0,48930,0,0 +135386,25031,0,52330,0,0 +135387,25032,0,52331,0,0 +135388,25033,0,47302,0,0 +135389,25034,0,47272,0,0 +135390,25035,0,46554,0,0 +135391,25036,0,50115,0,0 +135392,25037,0,52332,0,0 +135393,25038,0,49619,0,0 +135394,25039,0,50804,0,0 +135395,25040,0,49686,0,0 +135396,25041,0,48535,0,0 +135397,25042,0,46981,0,0 +135398,25043,0,46981,0,0 +135427,25072,0,47963,0,0 +135428,25073,0,52095,0,0 +135429,25074,0,52333,0,0 +135430,25075,0,48330,0,0 +135431,25076,0,51333,0,0 +135432,25077,0,46911,0,0 +135433,25078,0,52334,0,0 +135434,25079,0,51345,0,0 +135435,25080,0,51333,0,0 +135436,25081,0,51333,0,0 +135437,25082,0,48962,0,0 +135438,25083,0,47389,0,0 +135439,25084,0,48469,0,0 +135440,25085,0,49435,0,0 +135441,25086,0,46494,0,0 +135442,25087,0,50340,0,0 +135443,25088,0,48947,0,0 +135444,25089,0,48333,0,0 +135445,25090,0,52335,0,0 +135446,25091,0,45876,0,0 +135447,25092,0,49334,0,0 +135448,25093,0,48599,0,0 +135449,25094,0,50344,0,0 +135450,25095,0,47109,0,0 +135451,25096,0,52335,0,0 +135452,25097,0,50351,0,0 +135453,25098,0,48058,0,0 +135454,25099,0,48058,0,0 +135455,25100,0,52336,0,0 +135456,25101,0,52337,0,0 +135457,25102,0,52338,0,0 +135458,25103,0,52339,0,0 +135459,25104,0,52340,0,0 +135460,25105,0,52341,0,0 +135461,25106,0,52030,0,0 +135462,25107,0,48987,0,0 +135463,25108,0,46263,0,0 +135464,25109,0,46558,0,0 +135465,25110,0,46268,0,0 +135466,25111,0,49135,0,0 +135467,25112,0,47472,0,0 +135468,25113,0,52341,0,0 +135469,25114,0,51316,0,0 +135470,25115,0,46821,0,0 +135471,25116,0,46135,0,0 +135472,25117,0,46821,0,0 +135473,25118,0,45891,0,0 +135474,25119,0,52342,0,0 +135475,25120,0,45944,0,0 +135476,25121,0,46821,0,0 +135477,25122,0,52343,0,0 +135478,25123,0,52344,0,0 +135479,25124,0,46821,0,0 +135480,25125,0,45852,0,0 +135481,25126,0,45946,0,0 +135482,25127,0,52345,0,0 +135483,25128,0,46787,0,0 +135484,25129,0,46670,0,0 +135485,25130,0,52346,0,0 +135486,25131,0,52347,0,0 +135487,25132,0,46684,0,0 +135488,25133,0,52348,0,0 +135489,25134,0,45840,0,0 +135490,25135,0,52349,0,0 +135491,25136,0,52350,0,0 +135492,25137,0,52043,0,0 +135493,25138,0,52351,0,0 +135494,25139,0,52352,0,0 +135495,25140,0,47886,0,0 +135496,25141,0,52353,0,0 +135497,25142,0,52354,0,0 +135498,25143,0,47438,0,0 +135499,25144,0,52355,0,0 +135500,25145,0,45863,0,0 +135501,25146,0,52356,0,0 +135502,25147,0,48915,0,0 +135503,25148,0,52357,0,0 +135504,25149,0,52358,0,0 +135505,25150,0,46125,0,0 +135506,25151,0,48916,0,0 +135507,25152,0,52359,0,0 +135508,25153,0,52360,0,0 +135509,25154,0,51311,0,0 +135510,25155,0,46103,0,0 +135511,25156,0,46958,0,0 +135512,25157,0,52361,0,0 +135513,25158,0,52362,0,0 +135514,25159,0,52363,0,0 +135515,25160,0,52364,0,0 +135516,25161,0,49346,0,0 +135517,25162,0,52365,0,0 +135518,25163,0,49119,0,0 +135519,25164,0,52366,0,0 +135520,25165,0,47395,0,0 +135521,25166,0,49176,0,0 +135522,25167,0,52367,0,0 +135523,25168,0,52368,0,0 +135524,25169,0,50925,0,0 +135525,25170,0,45982,0,0 +135526,25171,0,50349,0,0 +135527,25172,0,52369,0,0 +135528,25173,0,47523,0,0 +135529,25174,0,52370,0,0 +135530,25175,0,52371,0,0 +135531,25176,0,52372,0,0 +135532,25177,0,46796,0,0 +135533,25178,0,46326,0,0 +135534,25179,0,47523,0,0 +135535,25180,0,52373,0,0 +135536,25181,0,47480,0,0 +135537,25182,0,52369,0,0 +135538,25183,0,48411,0,0 +135539,25184,0,49258,0,0 +135540,25185,0,52374,0,0 +135541,25186,0,46824,0,0 +135542,25187,0,49028,0,0 +135543,25188,0,47491,0,0 +135544,25189,0,49027,0,0 +135545,25190,0,50883,0,0 +135546,25191,0,50882,0,0 +135547,25192,0,50914,0,0 +135548,25193,0,50914,0,0 +135549,25194,0,50914,0,0 +135550,25195,0,48095,0,0 +135551,25196,0,49032,0,0 +135552,25197,0,50336,0,0 +135553,25198,0,52375,0,0 +135554,25199,0,52376,0,0 +135555,25200,0,46820,0,0 +135556,25201,0,45705,0,0 +135557,25202,0,52377,0,0 +135558,25203,0,52378,0,0 +135559,25204,0,46012,0,0 +135560,25205,0,52093,0,0 +135561,25206,0,52379,0,0 +135562,25207,0,47602,0,0 +135563,25208,0,52380,0,0 +135564,25209,0,52381,0,0 +135565,25210,0,46960,0,0 +135566,25211,0,48914,0,0 +135567,25212,0,52382,0,0 +135568,25213,0,52383,0,0 +135569,25214,0,52384,0,0 +135570,25215,0,52385,0,0 +135571,25216,0,52386,0,0 +135572,25217,0,52387,0,0 +135573,25218,0,52388,0,0 +135574,25219,0,51930,0,0 +135575,25220,0,52389,0,0 +135576,25221,0,52390,0,0 +135577,25222,0,51965,0,0 +135578,25223,0,52391,0,0 +135579,25224,0,52392,0,0 +135580,25225,0,46270,0,0 +135581,25226,0,52393,0,0 +135582,25227,0,45949,0,0 +135583,25228,0,52394,0,0 +135584,25229,0,46784,0,0 +135585,25230,0,47325,0,0 +135586,25231,0,51292,0,0 +135587,25232,0,52394,0,0 +135588,25233,0,52395,0,0 +135589,25234,0,52396,0,0 +135590,25235,0,52397,0,0 +135591,25236,0,52395,0,0 +135592,25237,0,52398,0,0 +135593,25238,0,49354,0,0 +135594,25239,0,46783,0,0 +135595,25240,0,52399,0,0 +135596,25241,0,46506,0,0 +135597,25242,0,52400,0,0 +135598,25243,0,52401,0,0 +135599,25244,0,46506,0,0 +135600,25245,0,52402,0,0 +135601,25246,0,52089,0,0 +135602,25247,0,46899,0,0 +135603,25248,0,52403,0,0 +135604,25249,0,46530,0,0 +135605,25250,0,52404,0,0 +135606,25251,0,49328,0,0 +135607,25252,0,46506,0,0 +135608,25253,0,46506,0,0 +135609,25254,0,46446,0,0 +135610,25255,0,52405,0,0 +135611,25256,0,46446,0,0 +135612,25257,0,52406,0,0 +135613,25258,0,49341,0,0 +135614,25259,0,52407,0,0 +135615,25260,0,49341,0,0 +135616,25261,0,52408,0,0 +135617,25262,0,49231,0,0 +135618,25263,0,49231,0,0 +135619,25264,0,49231,0,0 +135620,25265,0,52406,0,0 +135621,25266,0,46446,0,0 +135622,25267,0,46446,0,0 +135623,25268,0,47185,0,0 +135624,25269,0,52409,0,0 +135625,25270,0,52410,0,0 +135626,25271,0,46222,0,0 +135627,25272,0,52411,0,0 +135628,25273,0,48378,0,0 +135629,25274,0,46222,0,0 +135630,25275,0,47186,0,0 +135631,25276,0,48378,0,0 +135632,25277,0,52412,0,0 +135633,25278,0,46424,0,0 +135634,25279,0,47861,0,0 +135635,25280,0,50143,0,0 +135636,25281,0,52411,0,0 +135637,25282,0,50601,0,0 +135638,25283,0,52413,0,0 +135639,25284,0,52414,0,0 +135640,25285,0,49011,0,0 +135641,25286,0,52415,0,0 +135642,25287,0,52416,0,0 +135643,25288,0,52417,0,0 +135644,25289,0,52418,0,0 +135645,25290,0,52419,0,0 +135646,25291,0,52420,0,0 +135647,25292,0,52421,0,0 +135648,25293,0,52422,0,0 +135649,25294,0,52423,0,0 +135650,25295,0,52424,0,0 +135651,25296,0,52425,0,0 +135652,25297,0,49149,0,0 +135653,25298,0,47353,0,0 +135654,25299,0,52426,0,0 +135655,25300,0,52427,0,0 +135656,25301,0,52428,0,0 +135657,25302,0,52429,0,0 +135658,25303,0,52430,0,0 +135659,25304,0,52431,0,0 +135660,25305,0,46692,0,0 +135661,25306,0,46142,0,0 +135662,25307,0,52432,0,0 +135663,25308,0,52339,0,0 +135664,25309,0,46505,0,0 +135665,25310,0,46521,0,0 +135666,25311,0,52343,0,0 +135667,25312,0,50338,0,0 +135668,25313,0,45820,0,0 +135669,25314,0,48098,0,0 +135670,25315,0,51316,0,0 +135671,25316,0,51704,0,0 +135672,25317,0,52433,0,0 +135673,25318,0,45817,0,0 +135674,25319,0,45817,0,0 +135675,25320,0,52434,0,0 +135676,25321,0,45912,0,0 +135677,25322,0,45817,0,0 +135678,25323,0,52344,0,0 +135679,25324,0,51853,0,0 +135680,25325,0,46172,0,0 +135681,25326,0,52435,0,0 +135682,25327,0,51853,0,0 +135683,25328,0,52436,0,0 +135684,25329,0,45831,0,0 +135685,25330,0,52437,0,0 +135686,25331,0,52438,0,0 +135687,25332,0,52439,0,0 +135688,25333,0,46184,0,0 +135689,25334,0,46193,0,0 +135690,25335,0,45831,0,0 +135691,25336,0,46271,0,0 +135692,25337,0,52440,0,0 +135693,25338,0,52441,0,0 +135694,25339,0,52442,0,0 +135695,25340,0,52443,0,0 +135696,25341,0,52171,0,0 +135697,25342,0,47233,0,0 +135698,25343,0,45757,0,0 +135699,25344,0,48559,0,0 +135700,25345,0,52172,0,0 +135701,25346,0,47189,0,0 +135702,25347,0,52442,0,0 +135703,25348,0,52443,0,0 +135704,25349,0,48877,0,0 +135705,25350,0,47553,0,0 +135706,25351,0,52444,0,0 +135707,25352,0,47304,0,0 +135708,25353,0,47975,0,0 +135709,25354,0,52445,0,0 +135710,25355,0,48878,0,0 +135711,25356,0,52446,0,0 +135712,25357,0,48877,0,0 +135713,25358,0,47553,0,0 +135714,25359,0,52444,0,0 +135715,25360,0,47304,0,0 +135716,25361,0,47975,0,0 +135717,25362,0,52445,0,0 +135718,25363,0,48878,0,0 +135719,25364,0,52446,0,0 +135720,25365,0,47603,0,0 +135721,25366,0,52248,0,0 +135722,25367,0,47352,0,0 +135723,25368,0,47362,0,0 +135724,25369,0,48339,0,0 +135725,25370,0,51597,0,0 +135726,25371,0,46443,0,0 +135727,25372,0,52447,0,0 +135728,25373,0,47603,0,0 +135729,25374,0,52248,0,0 +135730,25375,0,47352,0,0 +135731,25376,0,47362,0,0 +135732,25377,0,48339,0,0 +135733,25378,0,51597,0,0 +135734,25379,0,46443,0,0 +135735,25380,0,52447,0,0 +135736,25381,0,52448,0,0 +135737,25382,0,52449,0,0 +135738,25383,0,52450,0,0 +135739,25384,0,52451,0,0 +135740,25385,0,52452,0,0 +135741,25386,0,52282,0,0 +135742,25387,0,52453,0,0 +135743,25388,0,48143,0,0 +135744,25389,0,52448,0,0 +135745,25390,0,52449,0,0 +135746,25391,0,52450,0,0 +135747,25392,0,52451,0,0 +135748,25393,0,52452,0,0 +135749,25394,0,52282,0,0 +135750,25395,0,52453,0,0 +135751,25396,0,48143,0,0 +135752,25397,0,46199,0,0 +135753,25398,0,47042,0,0 +135754,25399,0,46954,0,0 +135755,25400,0,47041,0,0 +135756,25401,0,46105,0,0 +135757,25402,0,49528,0,0 +135758,25403,0,47044,0,0 +135759,25404,0,47045,0,0 +135760,25405,0,47047,0,0 +135761,25406,0,47046,0,0 +135762,25407,0,47021,0,0 +135819,25464,0,52454,0,0 +135833,25478,0,52455,0,0 +135834,25479,0,52456,0,0 +135835,25480,0,52457,0,0 +135836,25481,0,48724,0,0 +135837,25482,0,52456,0,0 +135838,25483,0,52457,0,0 +135840,25485,0,48722,0,0 +135841,25486,0,52459,0,0 +135844,25489,0,52460,0,0 +135847,25492,0,48384,0,0 +135848,25494,0,49031,0,0 +135849,25495,0,49250,0,0 +135850,25496,0,50086,0,0 +135855,25501,0,48708,0,0 +135856,25502,0,51289,0,0 +135857,25503,0,52461,0,0 +135858,25504,0,52462,0,0 +135860,25506,0,49001,0,0 +135861,25507,0,52463,0,0 +135862,25508,0,52464,0,0 +135864,25510,0,52465,0,0 +135865,25511,0,49927,0,0 +135866,25512,0,51346,0,0 +135867,25513,0,51199,0,0 +135868,25514,0,49828,0,0 +135869,25515,0,52466,0,0 +135870,25516,0,48909,0,0 +135872,25518,0,51326,0,0 +135873,25519,0,48999,0,0 +135874,25520,0,52467,0,0 +135876,25522,0,49928,0,0 +135877,25523,0,52468,0,0 +135878,25524,0,51327,0,0 +135879,25525,0,47700,0,0 +135884,25530,0,52469,0,0 +135888,25534,0,52470,0,0 +135890,25536,0,48113,0,0 +135891,25537,0,49114,0,0 +135892,25538,0,52471,0,0 +135894,25540,0,47264,0,0 +135897,25543,0,48158,0,0 +135898,25544,0,50097,0,0 +135899,25545,0,46771,0,0 +135900,25546,0,48285,0,0 +135901,25547,0,50976,0,0 +135903,25549,0,52472,0,0 +135905,25551,0,52473,0,0 +135907,25553,0,47480,0,0 +135910,25556,0,52474,0,0 +135911,25557,0,52475,0,0 +135912,25558,0,48193,0,0 +135913,25559,0,52476,0,0 +135914,25560,0,52477,0,0 +135915,25561,0,48288,0,0 +135919,25565,0,52478,0,0 +135920,25566,0,52479,0,0 +135921,25567,0,52480,0,0 +135922,25568,0,52481,0,0 +135923,25569,0,48723,0,0 +135924,25570,0,52482,0,0 +135925,25571,0,48309,0,0 +135926,25572,0,52481,0,0 +135927,25573,0,48723,0,0 +135928,25574,0,48949,0,0 +135929,25575,0,49955,0,0 +135930,25576,0,52483,0,0 +135931,25577,0,48949,0,0 +135932,25578,0,52483,0,0 +135933,25579,0,52484,0,0 +135934,25580,0,48728,0,0 +135935,25581,0,52485,0,0 +135936,25582,0,52486,0,0 +135937,25583,0,52487,0,0 +135938,25584,0,52485,0,0 +135939,25585,0,48728,0,0 +135941,25587,0,52488,0,0 +135942,25588,0,52489,0,0 +135943,25589,0,50272,0,0 +135945,25591,0,52490,0,0 +135946,25592,0,52491,0,0 +135947,25593,0,48726,0,0 +135948,25594,0,48684,0,0 +135949,25595,0,51284,0,0 +135951,25597,0,48725,0,0 +135952,25598,0,52492,0,0 +135953,25599,0,52493,0,0 +135954,25600,0,52493,0,0 +135955,25601,0,52492,0,0 +135956,25602,0,48725,0,0 +135957,25603,0,49150,0,0 +135959,25605,0,46751,0,0 +135962,25608,0,49150,0,0 +135963,25609,0,46751,0,0 +135964,25610,0,52494,0,0 +135965,25611,0,48033,0,0 +135966,25612,0,47675,0,0 +135967,25613,0,48033,0,0 +135968,25614,0,47675,0,0 +135969,25615,0,52494,0,0 +135970,25616,0,47064,0,0 +135971,25617,0,47064,0,0 +135972,25618,0,48314,0,0 +135975,25621,0,48314,0,0 +135976,25622,0,49458,0,0 +135977,25623,0,50898,0,0 +135978,25624,0,46564,0,0 +135979,25625,0,49147,0,0 +135980,25626,0,50898,0,0 +135981,25627,0,48849,0,0 +135983,25629,0,50889,0,0 +135984,25630,0,48909,0,0 +135985,25631,0,48909,0,0 +135986,25632,0,50889,0,0 +135990,25636,0,47196,0,0 +135991,25637,0,49529,0,0 +135993,25639,0,52409,0,0 +135994,25640,0,51194,0,0 +136000,25646,0,46753,0,0 +136008,25654,0,52495,0,0 +136009,25655,0,52496,0,0 +136010,25656,0,49790,0,0 +136011,25657,0,49126,0,0 +136013,25659,0,52497,0,0 +136014,25660,0,50871,0,0 +136015,25661,0,52498,0,0 +136016,25662,0,52499,0,0 +136017,25663,0,52500,0,0 +136022,25668,0,48819,0,0 +136023,25669,0,48820,0,0 +136024,25670,0,48822,0,0 +136025,25671,0,48824,0,0 +136027,25673,0,52501,0,0 +136028,25674,0,52502,0,0 +136029,25675,0,52503,0,0 +136030,25676,0,52504,0,0 +136034,25680,0,52505,0,0 +136035,25681,0,52506,0,0 +136036,25682,0,52507,0,0 +136037,25683,0,52508,0,0 +136039,25685,0,52509,0,0 +136040,25686,0,52510,0,0 +136041,25687,0,52511,0,0 +136042,25688,0,52362,0,0 +136043,25689,0,52512,0,0 +136044,25690,0,52513,0,0 +136045,25691,0,52514,0,0 +136046,25692,0,52515,0,0 +136047,25693,0,52516,0,0 +136048,25694,0,52517,0,0 +136049,25695,0,52518,0,0 +136050,25696,0,52519,0,0 +136051,25697,0,52520,0,0 +136052,25698,0,52521,0,0 +136055,25701,0,49482,0,0 +136056,25702,0,48210,0,0 +136063,25710,0,49294,0,0 +136064,25711,0,48190,0,0 +136065,25712,0,50924,0,0 +136068,25715,0,48839,0,0 +136069,25716,0,50927,0,0 +136070,25717,0,51229,0,0 +136071,25718,0,49036,0,0 +136105,25758,0,52454,0,0 +136106,25759,0,52522,0,0 +136107,25760,0,51702,0,0 +136108,25761,0,52523,0,0 +136109,25762,0,52524,0,0 +136110,25763,0,52525,0,0 +136111,25764,0,52471,0,0 +136119,25772,0,52526,0,0 +136120,25773,0,45852,0,0 +136121,25774,0,52527,0,0 +136124,25777,0,47280,0,0 +136125,25778,0,47216,0,0 +136126,25779,0,48602,0,0 +136127,25780,0,52528,0,0 +136128,25781,0,48285,0,0 +136129,25782,0,48282,0,0 +136130,25783,0,52529,0,0 +136135,25788,0,48377,0,0 +136136,25789,0,48473,0,0 +136137,25790,0,48677,0,0 +136138,25791,0,48273,0,0 +136139,25792,0,49655,0,0 +136140,25793,0,49662,0,0 +136141,25794,0,50291,0,0 +136142,25795,0,48199,0,0 +136143,25796,0,48202,0,0 +136144,25797,0,52530,0,0 +136146,25799,0,52531,0,0 +136147,25800,0,50564,0,0 +136152,25805,0,50305,0,0 +136153,25806,0,52532,0,0 +136155,25808,0,52533,0,0 +136157,25810,0,51505,0,0 +136163,25816,0,52534,0,0 +136165,25818,0,51909,0,0 +136166,25819,0,52535,0,0 +136167,25820,0,48752,0,0 +136168,25821,0,46038,0,0 +136169,25822,0,52536,0,0 +136170,25823,0,48153,0,0 +136172,25825,0,49415,0,0 +136174,25827,0,48508,0,0 +136175,25828,0,47695,0,0 +136177,25830,0,52537,0,0 +136178,25831,0,52538,0,0 +136179,25832,0,52539,0,0 +136180,25833,0,52540,0,0 +136181,25834,0,52541,0,0 +136182,25835,0,48415,0,0 +136183,25836,0,48455,0,0 +136185,25838,0,51115,0,0 +136186,25839,0,46418,0,0 +136201,25854,0,52542,0,0 +136202,25855,0,52543,0,0 +136203,25856,0,52544,0,0 +136204,25857,0,52545,0,0 +136205,25858,0,52546,0,0 +136218,25871,0,52547,0,0 +136221,25874,0,52548,0,0 +136226,25879,0,52549,0,0 +136232,25885,0,46572,0,0 +136262,25915,0,47438,0,0 +136263,25916,0,52375,0,0 +136264,25917,0,48128,0,0 +136265,25918,0,47900,0,0 +136267,25920,0,52550,0,0 +136269,25922,0,49371,0,0 +136270,25923,0,52551,0,0 +136271,25924,0,52552,0,0 +136272,25925,0,52553,0,0 +136274,25927,0,50125,0,0 +136276,25929,0,49903,0,0 +136277,25930,0,50934,0,0 +136278,25931,0,48652,0,0 +136279,25932,0,45749,0,0 +136280,25933,0,47396,0,0 +136281,25934,0,47296,0,0 +136282,25935,0,45790,0,0 +136286,25939,0,52554,0,0 +136288,25941,0,52555,0,0 +136289,25942,0,52556,0,0 +136290,25943,0,49032,0,0 +136291,25944,0,52557,0,0 +136292,25945,0,48008,0,0 +136293,25946,0,52558,0,0 +136294,25947,0,52559,0,0 +136295,25948,0,49926,0,0 +136296,25949,0,48542,0,0 +136297,25950,0,52560,0,0 +136298,25951,0,46792,0,0 +136299,25952,0,52561,0,0 +136300,25953,0,52562,0,0 +136302,25955,0,52563,0,0 +136303,25956,0,52564,0,0 +136304,25957,0,52565,0,0 +136305,25958,0,48840,0,0 +136306,25959,0,48526,0,0 +136307,25960,0,48975,0,0 +136308,25961,0,47376,0,0 +136311,25964,0,52566,0,0 +136312,25965,0,52567,0,0 +136313,25966,0,48278,0,0 +136314,25967,0,48219,0,0 +136315,25968,0,50187,0,0 +136316,25969,0,48523,0,0 +136317,25970,0,47753,0,0 +136318,25971,0,49328,0,0 +136319,25972,0,50098,0,0 +136320,25973,0,47906,0,0 +136321,25974,0,48331,0,0 +136322,25975,0,48331,0,0 +136323,25976,0,48331,0,0 +136324,25977,0,48331,0,0 +136325,25978,0,45864,0,0 +136326,25979,0,49111,0,0 +136327,25980,0,46729,0,0 +136328,25981,0,46964,0,0 +136329,25982,0,48539,0,0 +136330,25983,0,50264,0,0 +136331,25984,0,48360,0,0 +136332,25985,0,46193,0,0 +136333,25986,0,47475,0,0 +136334,25987,0,50063,0,0 +136344,25997,0,52568,0,0 +136345,25998,0,52569,0,0 +136346,25999,0,52570,0,0 +136347,26000,0,52571,0,0 +136348,26001,0,52572,0,0 +136350,26003,0,52573,0,0 +136351,26004,0,45998,0,0 +136352,26005,0,52574,0,0 +136353,26006,0,47439,0,0 +136354,26007,0,45781,0,0 +136355,26008,0,49572,0,0 +136356,26009,0,47154,0,0 +136357,26010,0,45800,0,0 +136358,26011,0,47969,0,0 +136359,26012,0,46761,0,0 +136360,26013,0,47833,0,0 +136361,26014,0,45879,0,0 +136362,26015,0,47441,0,0 +136363,26016,0,46077,0,0 +136364,26017,0,46319,0,0 +136365,26018,0,48490,0,0 +136366,26019,0,52575,0,0 +136367,26020,0,47339,0,0 +136368,26021,0,46237,0,0 +136369,26022,0,46737,0,0 +136370,26023,0,48489,0,0 +136371,26024,0,48487,0,0 +136372,26025,0,47722,0,0 +136373,26026,0,48486,0,0 +136374,26027,0,46856,0,0 +136375,26028,0,46862,0,0 +136376,26029,0,47968,0,0 +136377,26030,0,52474,0,0 +136378,26031,0,50153,0,0 +136379,26032,0,46715,0,0 +136380,26033,0,47029,0,0 +136381,26034,0,46714,0,0 +136382,26035,0,50121,0,0 +136383,26036,0,46712,0,0 +136384,26037,0,50150,0,0 +136385,26038,0,47239,0,0 +136386,26039,0,46045,0,0 +136387,26040,0,46713,0,0 +136388,26041,0,50151,0,0 +136396,26049,0,46415,0,0 +136397,26050,0,52131,0,0 +136398,26051,0,45884,0,0 +136399,26052,0,52042,0,0 +136400,26053,0,45952,0,0 +136401,26054,0,52576,0,0 +136403,26056,0,46979,0,0 +136404,26057,0,46637,0,0 +136405,26058,0,46985,0,0 +136406,26059,0,46982,0,0 +136407,26060,0,48340,0,0 +136408,26061,0,46983,0,0 +136409,26062,0,46984,0,0 +136410,26063,0,46980,0,0 +136411,26064,0,46979,0,0 +136412,26065,0,46637,0,0 +136413,26066,0,46985,0,0 +136414,26067,0,46982,0,0 +136415,26068,0,48340,0,0 +136416,26069,0,46983,0,0 +136417,26070,0,46984,0,0 +136418,26071,0,46980,0,0 +136419,26072,0,46979,0,0 +136420,26073,0,46637,0,0 +136421,26074,0,46985,0,0 +136422,26075,0,46982,0,0 +136423,26076,0,48340,0,0 +136424,26077,0,46983,0,0 +136425,26078,0,46984,0,0 +136426,26079,0,46980,0,0 +136427,26080,0,46979,0,0 +136428,26081,0,46637,0,0 +136429,26082,0,46985,0,0 +136430,26083,0,46982,0,0 +136431,26084,0,48340,0,0 +136432,26085,0,46983,0,0 +136433,26086,0,46984,0,0 +136434,26087,0,46980,0,0 +136435,26088,0,46979,0,0 +136436,26089,0,46637,0,0 +136437,26090,0,46985,0,0 +136438,26091,0,46982,0,0 +136439,26092,0,48340,0,0 +136440,26093,0,46983,0,0 +136441,26094,0,46984,0,0 +136442,26095,0,46980,0,0 +136443,26096,0,46979,0,0 +136444,26097,0,46637,0,0 +136445,26098,0,46985,0,0 +136446,26099,0,46982,0,0 +136447,26100,0,48340,0,0 +136448,26101,0,46983,0,0 +136449,26102,0,46984,0,0 +136450,26103,0,46980,0,0 +136451,26104,0,46979,0,0 +136452,26105,0,46637,0,0 +136453,26106,0,46985,0,0 +136454,26107,0,46982,0,0 +136455,26108,0,48340,0,0 +136456,26109,0,46983,0,0 +136457,26110,0,46984,0,0 +136458,26111,0,46980,0,0 +136459,26112,0,46979,0,0 +136460,26113,0,46637,0,0 +136461,26114,0,46985,0,0 +136462,26115,0,46982,0,0 +136463,26116,0,48340,0,0 +136464,26117,0,46983,0,0 +136465,26118,0,46984,0,0 +136466,26119,0,46980,0,0 +136467,26120,0,46979,0,0 +136468,26121,0,46637,0,0 +136469,26122,0,46985,0,0 +136470,26123,0,46982,0,0 +136471,26124,0,48340,0,0 +136472,26125,0,46983,0,0 +136473,26126,0,46984,0,0 +136474,26127,0,46980,0,0 +136475,26128,0,46979,0,0 +136476,26129,0,46637,0,0 +136477,26130,0,46985,0,0 +136478,26131,0,46982,0,0 +136479,26132,0,48340,0,0 +136480,26133,0,46983,0,0 +136481,26134,0,46984,0,0 +136482,26135,0,46980,0,0 +136483,26136,0,46979,0,0 +136484,26137,0,46637,0,0 +136485,26138,0,46985,0,0 +136486,26139,0,46982,0,0 +136487,26140,0,48340,0,0 +136488,26141,0,46983,0,0 +136489,26142,0,46984,0,0 +136490,26143,0,46980,0,0 +136491,26144,0,46979,0,0 +136492,26145,0,46637,0,0 +136493,26146,0,46985,0,0 +136494,26147,0,46982,0,0 +136495,26148,0,48340,0,0 +136496,26149,0,46983,0,0 +136497,26150,0,46984,0,0 +136498,26151,0,46980,0,0 +136499,26152,0,46979,0,0 +136500,26153,0,46637,0,0 +136501,26154,0,46985,0,0 +136502,26155,0,46982,0,0 +136503,26156,0,48340,0,0 +136504,26157,0,46983,0,0 +136505,26158,0,46984,0,0 +136506,26159,0,46980,0,0 +136507,26160,0,46979,0,0 +136508,26161,0,46637,0,0 +136509,26162,0,46985,0,0 +136510,26163,0,46982,0,0 +136511,26164,0,48340,0,0 +136512,26165,0,46983,0,0 +136513,26166,0,46984,0,0 +136514,26167,0,46980,0,0 +136515,26168,0,46979,0,0 +136516,26169,0,46637,0,0 +136517,26170,0,46985,0,0 +136518,26171,0,46982,0,0 +136519,26172,0,48340,0,0 +136520,26173,0,46983,0,0 +136521,26174,0,46984,0,0 +136522,26175,0,46980,0,0 +136523,26176,0,46979,0,0 +136524,26177,0,46637,0,0 +136525,26178,0,46985,0,0 +136526,26179,0,46982,0,0 +136527,26180,0,48340,0,0 +136528,26181,0,46983,0,0 +136529,26182,0,46984,0,0 +136530,26183,0,46980,0,0 +136531,26184,0,46979,0,0 +136532,26185,0,46637,0,0 +136533,26186,0,46985,0,0 +136534,26187,0,46982,0,0 +136535,26188,0,48340,0,0 +136536,26189,0,46983,0,0 +136537,26190,0,46984,0,0 +136538,26191,0,46980,0,0 +136539,26192,0,46979,0,0 +136540,26193,0,46637,0,0 +136541,26194,0,46985,0,0 +136542,26195,0,46982,0,0 +136543,26196,0,48340,0,0 +136544,26197,0,46983,0,0 +136545,26198,0,46984,0,0 +136546,26199,0,46980,0,0 +136547,26200,0,46979,0,0 +136548,26201,0,46637,0,0 +136549,26202,0,46985,0,0 +136550,26203,0,46982,0,0 +136551,26204,0,48340,0,0 +136552,26205,0,46983,0,0 +136553,26206,0,46984,0,0 +136554,26207,0,46980,0,0 +136555,26208,0,46979,0,0 +136556,26209,0,46637,0,0 +136557,26210,0,46985,0,0 +136558,26211,0,46982,0,0 +136559,26212,0,48340,0,0 +136560,26213,0,46983,0,0 +136561,26214,0,46984,0,0 +136562,26215,0,46980,0,0 +136563,26216,0,46979,0,0 +136564,26217,0,46637,0,0 +136565,26218,0,46985,0,0 +136566,26219,0,46982,0,0 +136567,26220,0,48340,0,0 +136568,26221,0,46983,0,0 +136569,26222,0,46984,0,0 +136570,26223,0,46980,0,0 +136571,26224,0,46979,0,0 +136572,26225,0,46637,0,0 +136573,26226,0,46985,0,0 +136574,26227,0,46982,0,0 +136575,26228,0,48340,0,0 +136576,26229,0,46983,0,0 +136577,26230,0,46984,0,0 +136578,26231,0,46980,0,0 +136579,26232,0,46979,0,0 +136580,26233,0,46637,0,0 +136581,26234,0,46985,0,0 +136582,26235,0,46982,0,0 +136583,26236,0,48340,0,0 +136584,26237,0,46983,0,0 +136585,26238,0,46984,0,0 +136586,26239,0,46980,0,0 +136587,26240,0,46979,0,0 +136588,26241,0,46637,0,0 +136589,26242,0,46985,0,0 +136590,26243,0,46982,0,0 +136591,26244,0,48340,0,0 +136592,26245,0,46983,0,0 +136593,26246,0,46984,0,0 +136594,26247,0,46980,0,0 +136595,26248,0,46979,0,0 +136596,26249,0,46637,0,0 +136597,26250,0,46985,0,0 +136598,26251,0,46982,0,0 +136599,26252,0,48340,0,0 +136600,26253,0,46983,0,0 +136601,26254,0,46984,0,0 +136602,26255,0,46980,0,0 +136603,26256,0,46929,0,0 +136604,26257,0,51229,0,0 +136605,26258,0,52577,0,0 +136606,26259,0,47774,0,0 +136607,26260,0,51199,0,0 +136608,26261,0,47775,0,0 +136609,26262,0,52578,0,0 +136610,26263,0,47772,0,0 +136611,26264,0,46979,0,0 +136612,26265,0,46637,0,0 +136613,26266,0,46985,0,0 +136614,26267,0,46982,0,0 +136615,26268,0,48340,0,0 +136616,26269,0,46983,0,0 +136617,26270,0,46984,0,0 +136618,26271,0,46980,0,0 +136619,26272,0,46979,0,0 +136620,26273,0,46637,0,0 +136621,26274,0,46985,0,0 +136622,26275,0,46982,0,0 +136623,26276,0,48340,0,0 +136624,26277,0,46983,0,0 +136625,26278,0,46984,0,0 +136626,26279,0,46980,0,0 +136627,26280,0,46979,0,0 +136628,26281,0,46637,0,0 +136629,26282,0,46985,0,0 +136630,26283,0,46982,0,0 +136631,26284,0,48340,0,0 +136632,26285,0,46983,0,0 +136633,26286,0,46984,0,0 +136634,26287,0,46980,0,0 +136635,26288,0,46979,0,0 +136636,26289,0,46637,0,0 +136637,26290,0,46985,0,0 +136638,26291,0,46982,0,0 +136639,26292,0,48340,0,0 +136640,26293,0,46983,0,0 +136641,26294,0,46984,0,0 +136642,26295,0,46980,0,0 +136643,26296,0,46979,0,0 +136644,26297,0,46637,0,0 +136645,26298,0,46985,0,0 +136646,26299,0,46982,0,0 +136647,26300,0,48340,0,0 +136648,26301,0,46983,0,0 +136649,26302,0,46984,0,0 +136650,26303,0,46980,0,0 +136651,26304,0,46979,0,0 +136652,26305,0,46637,0,0 +136653,26306,0,46985,0,0 +136654,26307,0,46982,0,0 +136655,26308,0,48340,0,0 +136656,26309,0,46983,0,0 +136657,26310,0,46984,0,0 +136658,26311,0,46980,0,0 +136659,26312,0,46979,0,0 +136660,26313,0,46637,0,0 +136661,26314,0,46985,0,0 +136662,26315,0,46982,0,0 +136663,26316,0,48340,0,0 +136664,26317,0,46983,0,0 +136665,26318,0,46984,0,0 +136666,26319,0,46980,0,0 +136667,26320,0,46979,0,0 +136668,26321,0,46637,0,0 +136669,26322,0,46985,0,0 +136670,26323,0,46982,0,0 +136671,26324,0,48340,0,0 +136672,26325,0,46983,0,0 +136673,26326,0,46984,0,0 +136674,26327,0,46980,0,0 +136675,26328,0,46979,0,0 +136676,26329,0,46637,0,0 +136677,26330,0,46985,0,0 +136678,26331,0,46982,0,0 +136679,26332,0,48340,0,0 +136680,26333,0,46983,0,0 +136681,26334,0,46984,0,0 +136682,26335,0,46980,0,0 +136683,26336,0,46979,0,0 +136684,26337,0,46637,0,0 +136685,26338,0,46985,0,0 +136686,26339,0,46982,0,0 +136687,26340,0,48340,0,0 +136688,26341,0,46983,0,0 +136689,26342,0,46984,0,0 +136690,26343,0,46980,0,0 +136691,26344,0,46979,0,0 +136692,26345,0,46637,0,0 +136693,26346,0,46985,0,0 +136694,26347,0,46982,0,0 +136695,26348,0,48340,0,0 +136696,26349,0,46983,0,0 +136697,26350,0,46984,0,0 +136698,26351,0,46980,0,0 +136699,26352,0,46979,0,0 +136700,26353,0,46637,0,0 +136701,26354,0,46985,0,0 +136702,26355,0,46982,0,0 +136703,26356,0,48340,0,0 +136704,26357,0,46983,0,0 +136705,26358,0,46984,0,0 +136706,26359,0,46980,0,0 +136707,26360,0,46979,0,0 +136708,26361,0,46637,0,0 +136709,26362,0,46985,0,0 +136710,26363,0,46982,0,0 +136711,26364,0,48340,0,0 +136712,26365,0,46983,0,0 +136713,26366,0,46984,0,0 +136714,26367,0,46980,0,0 +136715,26368,0,46979,0,0 +136716,26369,0,46637,0,0 +136717,26370,0,46985,0,0 +136718,26371,0,46982,0,0 +136719,26372,0,48340,0,0 +136720,26373,0,46983,0,0 +136721,26374,0,46984,0,0 +136722,26375,0,46980,0,0 +136723,26376,0,46979,0,0 +136724,26377,0,46637,0,0 +136725,26378,0,46985,0,0 +136726,26379,0,46982,0,0 +136727,26380,0,48340,0,0 +136728,26381,0,46983,0,0 +136729,26382,0,46984,0,0 +136730,26383,0,46980,0,0 +136731,26384,0,46979,0,0 +136732,26385,0,46637,0,0 +136733,26386,0,46985,0,0 +136734,26387,0,46982,0,0 +136735,26388,0,48340,0,0 +136736,26389,0,46983,0,0 +136737,26390,0,46984,0,0 +136738,26391,0,46980,0,0 +136739,26392,0,46979,0,0 +136740,26393,0,46637,0,0 +136741,26394,0,46985,0,0 +136742,26395,0,46982,0,0 +136743,26396,0,48340,0,0 +136744,26397,0,46983,0,0 +136745,26398,0,46984,0,0 +136746,26399,0,46980,0,0 +136747,26400,0,46979,0,0 +136748,26401,0,46637,0,0 +136749,26402,0,46985,0,0 +136750,26403,0,46982,0,0 +136751,26404,0,48340,0,0 +136752,26405,0,46983,0,0 +136753,26406,0,46984,0,0 +136754,26407,0,46980,0,0 +136755,26408,0,46979,0,0 +136756,26409,0,46637,0,0 +136757,26410,0,46985,0,0 +136758,26411,0,46982,0,0 +136759,26412,0,48340,0,0 +136760,26413,0,46983,0,0 +136761,26414,0,46984,0,0 +136762,26415,0,46980,0,0 +136763,26416,0,46979,0,0 +136764,26417,0,46637,0,0 +136765,26418,0,46985,0,0 +136766,26419,0,46982,0,0 +136767,26420,0,48340,0,0 +136768,26421,0,46983,0,0 +136769,26422,0,46984,0,0 +136770,26423,0,46980,0,0 +136771,26424,0,46979,0,0 +136772,26425,0,46637,0,0 +136773,26426,0,46985,0,0 +136774,26427,0,46982,0,0 +136775,26428,0,48340,0,0 +136776,26429,0,46983,0,0 +136777,26430,0,46984,0,0 +136778,26431,0,46980,0,0 +136779,26432,0,46979,0,0 +136780,26433,0,46637,0,0 +136781,26434,0,46985,0,0 +136782,26435,0,46982,0,0 +136783,26436,0,48340,0,0 +136784,26437,0,46983,0,0 +136785,26438,0,46984,0,0 +136786,26439,0,46980,0,0 +136787,26440,0,46979,0,0 +136788,26441,0,46637,0,0 +136789,26442,0,46985,0,0 +136790,26443,0,46982,0,0 +136791,26444,0,48340,0,0 +136792,26445,0,46983,0,0 +136793,26446,0,46984,0,0 +136794,26447,0,46980,0,0 +136795,26448,0,46979,0,0 +136796,26449,0,46637,0,0 +136797,26450,0,46985,0,0 +136798,26451,0,46982,0,0 +136799,26452,0,48340,0,0 +136800,26453,0,46983,0,0 +136801,26454,0,46984,0,0 +136802,26455,0,46980,0,0 +136803,26456,0,46979,0,0 +136804,26457,0,46637,0,0 +136805,26458,0,46985,0,0 +136806,26459,0,46982,0,0 +136807,26460,0,48340,0,0 +136808,26461,0,46983,0,0 +136809,26462,0,46984,0,0 +136810,26463,0,46980,0,0 +136811,26464,0,46979,0,0 +136812,26465,0,46637,0,0 +136813,26466,0,46985,0,0 +136814,26467,0,46982,0,0 +136815,26468,0,48340,0,0 +136816,26469,0,46983,0,0 +136817,26470,0,46984,0,0 +136818,26471,0,46980,0,0 +136819,26472,0,46979,0,0 +136820,26473,0,46637,0,0 +136821,26474,0,46985,0,0 +136822,26475,0,46982,0,0 +136823,26476,0,48340,0,0 +136824,26477,0,46983,0,0 +136825,26478,0,46984,0,0 +136826,26479,0,46980,0,0 +136827,26480,0,46979,0,0 +136828,26481,0,46637,0,0 +136829,26482,0,46985,0,0 +136830,26483,0,46982,0,0 +136831,26484,0,48340,0,0 +136832,26485,0,46983,0,0 +136833,26486,0,46984,0,0 +136834,26487,0,46980,0,0 +136835,26488,0,46979,0,0 +136836,26489,0,46637,0,0 +136837,26490,0,46985,0,0 +136838,26491,0,46982,0,0 +136839,26492,0,48340,0,0 +136840,26493,0,46983,0,0 +136841,26494,0,46984,0,0 +136842,26495,0,46980,0,0 +136843,26496,0,46979,0,0 +136844,26497,0,46637,0,0 +136845,26498,0,46985,0,0 +136846,26499,0,46982,0,0 +136847,26500,0,48340,0,0 +136848,26501,0,46983,0,0 +136849,26502,0,46984,0,0 +136850,26503,0,46980,0,0 +136851,26504,0,46981,0,0 +136852,26505,0,46981,0,0 +136853,26506,0,46981,0,0 +136854,26507,0,46981,0,0 +136855,26508,0,46981,0,0 +136856,26509,0,46981,0,0 +136857,26510,0,46981,0,0 +136858,26511,0,46981,0,0 +136859,26512,0,46981,0,0 +136860,26513,0,46981,0,0 +136861,26514,0,46981,0,0 +136862,26515,0,46981,0,0 +136863,26516,0,46981,0,0 +136864,26517,0,46981,0,0 +136893,26546,0,50335,0,0 +136894,26547,0,50335,0,0 +136895,26548,0,50335,0,0 +136896,26549,0,50335,0,0 +136897,26550,0,50335,0,0 +136898,26551,0,50335,0,0 +136899,26552,0,50335,0,0 +136900,26553,0,50335,0,0 +136901,26554,0,50335,0,0 +136902,26555,0,50335,0,0 +136903,26556,0,50335,0,0 +136904,26557,0,50335,0,0 +136905,26558,0,50335,0,0 +136906,26559,0,50335,0,0 +136907,26560,0,48058,0,0 +136908,26561,0,48058,0,0 +136909,26562,0,48058,0,0 +136910,26563,0,48058,0,0 +136911,26564,0,48058,0,0 +136912,26565,0,48058,0,0 +136913,26566,0,48058,0,0 +136914,26567,0,48058,0,0 +136915,26568,0,48058,0,0 +136916,26569,0,48058,0,0 +136917,26570,0,48058,0,0 +136918,26571,0,48058,0,0 +136919,26572,0,48058,0,0 +136920,26573,0,48058,0,0 +136921,26574,0,45946,0,0 +136922,26575,0,45946,0,0 +136923,26576,0,45946,0,0 +136924,26577,0,45946,0,0 +136925,26578,0,45946,0,0 +136926,26579,0,45946,0,0 +136927,26580,0,45946,0,0 +136928,26581,0,45946,0,0 +136929,26582,0,45946,0,0 +136930,26583,0,45946,0,0 +136931,26584,0,45946,0,0 +136932,26585,0,52579,0,0 +136933,26586,0,45946,0,0 +136934,26587,0,45946,0,0 +136935,26588,0,45946,0,0 +136936,26589,0,45946,0,0 +136937,26590,0,45946,0,0 +136938,26591,0,45946,0,0 +136939,26592,0,45946,0,0 +136940,26593,0,45946,0,0 +136941,26594,0,45946,0,0 +136942,26595,0,45946,0,0 +136943,26596,0,45946,0,0 +136944,26597,0,45946,0,0 +136945,26598,0,45946,0,0 +136946,26599,0,45946,0,0 +136947,26600,0,45946,0,0 +136948,26601,0,45946,0,0 +136949,26602,0,51343,0,0 +136950,26603,0,51343,0,0 +136951,26604,0,51343,0,0 +136952,26605,0,51343,0,0 +136953,26606,0,51343,0,0 +136954,26607,0,51343,0,0 +136955,26608,0,51343,0,0 +136956,26609,0,51343,0,0 +136957,26610,0,51343,0,0 +136958,26611,0,51343,0,0 +136959,26612,0,51343,0,0 +136960,26613,0,51343,0,0 +136961,26614,0,51343,0,0 +136962,26615,0,51343,0,0 +136963,26616,0,45946,0,0 +136964,26617,0,45946,0,0 +136965,26618,0,45946,0,0 +136966,26619,0,45946,0,0 +136967,26620,0,45946,0,0 +136968,26621,0,45946,0,0 +136969,26622,0,45946,0,0 +136970,26623,0,45946,0,0 +136971,26624,0,45946,0,0 +136972,26625,0,45946,0,0 +136973,26626,0,45946,0,0 +136974,26627,0,48155,0,0 +136975,26628,0,45946,0,0 +136976,26629,0,45946,0,0 +136977,26630,0,51343,0,0 +136978,26631,0,51343,0,0 +136979,26632,0,51343,0,0 +136980,26633,0,51343,0,0 +136981,26634,0,51343,0,0 +136982,26635,0,51343,0,0 +136983,26636,0,51343,0,0 +136984,26637,0,51343,0,0 +136985,26638,0,51343,0,0 +136986,26639,0,51343,0,0 +136987,26640,0,51343,0,0 +136988,26641,0,51343,0,0 +136989,26642,0,51343,0,0 +136990,26643,0,51343,0,0 +136991,26644,0,51343,0,0 +136992,26645,0,51343,0,0 +136993,26646,0,51343,0,0 +136994,26647,0,51343,0,0 +136995,26648,0,51343,0,0 +136996,26649,0,51343,0,0 +136997,26650,0,51343,0,0 +136998,26651,0,51343,0,0 +136999,26652,0,51343,0,0 +137000,26653,0,51343,0,0 +137001,26654,0,51343,0,0 +137002,26655,0,51343,0,0 +137003,26656,0,51343,0,0 +137004,26657,0,51343,0,0 +137005,26658,0,45946,0,0 +137006,26659,0,45946,0,0 +137007,26660,0,45946,0,0 +137008,26661,0,45946,0,0 +137009,26662,0,45946,0,0 +137010,26663,0,45946,0,0 +137011,26664,0,45946,0,0 +137012,26665,0,45946,0,0 +137013,26666,0,45946,0,0 +137014,26667,0,45946,0,0 +137015,26668,0,45946,0,0 +137016,26669,0,45946,0,0 +137017,26670,0,45946,0,0 +137018,26671,0,45946,0,0 +137019,26672,0,45946,0,0 +137020,26673,0,45946,0,0 +137021,26674,0,45946,0,0 +137022,26675,0,45946,0,0 +137023,26676,0,45946,0,0 +137024,26677,0,45946,0,0 +137025,26678,0,45946,0,0 +137026,26679,0,45946,0,0 +137027,26680,0,45946,0,0 +137028,26681,0,45946,0,0 +137029,26682,0,45946,0,0 +137030,26683,0,45946,0,0 +137031,26684,0,45946,0,0 +137032,26685,0,45946,0,0 +137033,26686,0,51343,0,0 +137034,26687,0,51343,0,0 +137035,26688,0,51343,0,0 +137036,26689,0,51343,0,0 +137037,26690,0,51343,0,0 +137038,26691,0,51343,0,0 +137039,26692,0,51343,0,0 +137040,26693,0,51343,0,0 +137041,26694,0,51343,0,0 +137042,26695,0,51343,0,0 +137043,26696,0,51343,0,0 +137044,26697,0,51343,0,0 +137045,26698,0,51343,0,0 +137046,26699,0,51343,0,0 +137047,26700,0,51343,0,0 +137048,26701,0,51343,0,0 +137049,26702,0,51343,0,0 +137050,26703,0,51343,0,0 +137051,26704,0,51343,0,0 +137052,26705,0,51343,0,0 +137053,26706,0,51343,0,0 +137054,26707,0,51343,0,0 +137055,26708,0,51343,0,0 +137056,26709,0,51343,0,0 +137057,26710,0,51343,0,0 +137058,26711,0,51343,0,0 +137059,26712,0,51343,0,0 +137060,26713,0,51343,0,0 +137061,26714,0,46506,0,0 +137062,26715,0,46506,0,0 +137063,26716,0,46506,0,0 +137064,26717,0,46506,0,0 +137065,26718,0,46506,0,0 +137066,26719,0,46506,0,0 +137067,26720,0,46506,0,0 +137068,26721,0,46506,0,0 +137069,26722,0,46506,0,0 +137070,26723,0,46506,0,0 +137071,26724,0,46506,0,0 +137072,26725,0,46506,0,0 +137073,26726,0,46506,0,0 +137074,26727,0,46506,0,0 +137075,26728,0,46446,0,0 +137076,26729,0,46446,0,0 +137077,26730,0,46446,0,0 +137078,26731,0,46446,0,0 +137079,26732,0,46446,0,0 +137080,26733,0,46446,0,0 +137081,26734,0,46446,0,0 +137082,26735,0,46446,0,0 +137083,26736,0,46446,0,0 +137084,26737,0,46446,0,0 +137085,26738,0,46446,0,0 +137086,26739,0,46446,0,0 +137087,26740,0,46446,0,0 +137088,26741,0,46446,0,0 +137089,26742,0,46446,0,0 +137090,26743,0,46446,0,0 +137091,26744,0,46446,0,0 +137092,26745,0,46446,0,0 +137093,26746,0,46446,0,0 +137094,26747,0,46446,0,0 +137095,26748,0,46446,0,0 +137096,26749,0,46446,0,0 +137097,26750,0,46446,0,0 +137098,26751,0,46446,0,0 +137099,26752,0,46446,0,0 +137100,26753,0,46446,0,0 +137101,26754,0,46446,0,0 +137102,26755,0,46446,0,0 +137103,26756,0,46446,0,0 +137104,26757,0,46446,0,0 +137105,26758,0,46446,0,0 +137106,26759,0,46446,0,0 +137107,26760,0,46446,0,0 +137108,26761,0,46446,0,0 +137109,26762,0,46446,0,0 +137110,26763,0,46446,0,0 +137111,26764,0,46446,0,0 +137112,26765,0,46446,0,0 +137113,26766,0,46446,0,0 +137114,26767,0,46446,0,0 +137115,26768,0,46446,0,0 +137116,26769,0,46446,0,0 +137117,26770,0,45946,0,0 +137118,26771,0,45946,0,0 +137119,26772,0,45946,0,0 +137120,26773,0,45946,0,0 +137121,26774,0,45946,0,0 +137122,26775,0,45946,0,0 +137123,26776,0,45946,0,0 +137124,26777,0,45946,0,0 +137125,26778,0,45946,0,0 +137126,26779,0,45946,0,0 +137127,26780,0,45946,0,0 +137128,26781,0,45946,0,0 +137129,26782,0,45946,0,0 +137130,26783,0,45946,0,0 +137131,26784,0,45946,0,0 +137132,26785,0,45946,0,0 +137133,26786,0,45946,0,0 +137134,26787,0,45946,0,0 +137135,26788,0,45946,0,0 +137136,26789,0,45946,0,0 +137137,26790,0,45946,0,0 +137138,26791,0,45946,0,0 +137139,26792,0,45946,0,0 +137140,26793,0,45946,0,0 +137141,26794,0,45946,0,0 +137142,26795,0,45946,0,0 +137143,26796,0,45946,0,0 +137144,26797,0,45946,0,0 +137145,26798,0,51343,0,0 +137146,26799,0,51343,0,0 +137147,26800,0,51343,0,0 +137148,26801,0,51343,0,0 +137149,26802,0,51343,0,0 +137150,26803,0,51343,0,0 +137151,26804,0,51343,0,0 +137152,26805,0,51343,0,0 +137153,26806,0,51343,0,0 +137154,26807,0,51343,0,0 +137155,26808,0,51343,0,0 +137156,26809,0,51343,0,0 +137157,26810,0,51343,0,0 +137158,26811,0,51343,0,0 +137159,26812,0,46979,0,0 +137160,26813,0,46637,0,0 +137161,26814,0,46985,0,0 +137162,26815,0,46982,0,0 +137163,26816,0,48340,0,0 +137164,26817,0,46983,0,0 +137165,26818,0,46984,0,0 +137166,26819,0,46980,0,0 +137167,26820,0,46979,0,0 +137168,26821,0,46637,0,0 +137169,26822,0,46985,0,0 +137170,26823,0,46982,0,0 +137171,26824,0,48340,0,0 +137172,26825,0,46983,0,0 +137173,26826,0,46984,0,0 +137174,26827,0,46980,0,0 +137175,26828,0,46979,0,0 +137176,26829,0,46637,0,0 +137177,26830,0,46985,0,0 +137178,26831,0,46982,0,0 +137179,26832,0,48340,0,0 +137180,26833,0,46983,0,0 +137181,26834,0,46984,0,0 +137182,26835,0,46980,0,0 +137183,26836,0,46979,0,0 +137184,26837,0,46637,0,0 +137185,26838,0,46985,0,0 +137186,26839,0,46982,0,0 +137187,26840,0,48340,0,0 +137188,26841,0,46983,0,0 +137189,26842,0,46984,0,0 +137190,26843,0,46980,0,0 +137191,26844,0,46979,0,0 +137192,26845,0,46637,0,0 +137193,26846,0,46985,0,0 +137194,26847,0,46982,0,0 +137195,26848,0,48340,0,0 +137196,26849,0,46983,0,0 +137197,26850,0,46984,0,0 +137198,26851,0,46980,0,0 +137199,26852,0,46979,0,0 +137200,26853,0,46637,0,0 +137201,26854,0,46985,0,0 +137202,26855,0,46982,0,0 +137203,26856,0,48340,0,0 +137204,26857,0,46983,0,0 +137205,26858,0,46984,0,0 +137206,26859,0,46980,0,0 +137207,26860,0,46979,0,0 +137208,26861,0,46637,0,0 +137209,26862,0,46985,0,0 +137210,26863,0,46982,0,0 +137211,26864,0,48340,0,0 +137212,26865,0,46983,0,0 +137213,26866,0,46984,0,0 +137214,26867,0,46980,0,0 +137215,26868,0,46979,0,0 +137216,26869,0,46637,0,0 +137217,26870,0,46985,0,0 +137218,26871,0,46982,0,0 +137219,26872,0,48340,0,0 +137220,26873,0,46983,0,0 +137221,26874,0,46984,0,0 +137222,26875,0,46980,0,0 +137223,26876,0,46979,0,0 +137224,26877,0,46637,0,0 +137225,26878,0,46985,0,0 +137226,26879,0,46982,0,0 +137227,26880,0,48340,0,0 +137228,26881,0,46983,0,0 +137229,26882,0,46984,0,0 +137230,26883,0,46980,0,0 +137231,26884,0,46979,0,0 +137232,26885,0,46637,0,0 +137233,26886,0,46985,0,0 +137234,26887,0,46982,0,0 +137235,26888,0,48340,0,0 +137236,26889,0,46983,0,0 +137237,26890,0,46984,0,0 +137238,26891,0,46980,0,0 +137239,26892,0,46979,0,0 +137240,26893,0,46637,0,0 +137241,26894,0,46985,0,0 +137242,26895,0,46982,0,0 +137243,26896,0,48340,0,0 +137244,26897,0,46983,0,0 +137245,26898,0,46984,0,0 +137246,26899,0,46980,0,0 +137247,26900,0,46979,0,0 +137248,26901,0,46637,0,0 +137249,26902,0,46985,0,0 +137250,26903,0,46982,0,0 +137251,26904,0,48340,0,0 +137252,26905,0,46983,0,0 +137253,26906,0,46984,0,0 +137254,26907,0,46980,0,0 +137255,26908,0,46979,0,0 +137256,26909,0,46637,0,0 +137257,26910,0,46985,0,0 +137258,26911,0,46982,0,0 +137259,26912,0,48340,0,0 +137260,26913,0,46983,0,0 +137261,26914,0,46984,0,0 +137262,26915,0,46980,0,0 +137263,26916,0,46979,0,0 +137264,26917,0,46637,0,0 +137265,26918,0,46985,0,0 +137266,26919,0,46982,0,0 +137267,26920,0,48340,0,0 +137268,26921,0,46983,0,0 +137269,26922,0,46984,0,0 +137270,26923,0,46980,0,0 +137271,26924,0,46979,0,0 +137272,26925,0,46637,0,0 +137273,26926,0,46985,0,0 +137274,26927,0,46982,0,0 +137275,26928,0,48340,0,0 +137276,26929,0,46983,0,0 +137277,26930,0,46984,0,0 +137278,26931,0,46980,0,0 +137279,26932,0,46979,0,0 +137280,26933,0,46637,0,0 +137281,26934,0,46985,0,0 +137282,26935,0,46982,0,0 +137283,26936,0,48340,0,0 +137284,26937,0,46983,0,0 +137285,26938,0,46984,0,0 +137286,26939,0,46980,0,0 +137287,26940,0,46979,0,0 +137288,26941,0,46637,0,0 +137289,26942,0,46985,0,0 +137290,26943,0,46982,0,0 +137291,26944,0,48340,0,0 +137292,26945,0,46983,0,0 +137293,26946,0,46984,0,0 +137294,26947,0,46980,0,0 +137295,26948,0,46979,0,0 +137296,26949,0,46637,0,0 +137297,26950,0,46985,0,0 +137298,26951,0,46982,0,0 +137299,26952,0,48340,0,0 +137300,26953,0,46983,0,0 +137301,26954,0,46984,0,0 +137302,26955,0,46980,0,0 +137303,26956,0,46979,0,0 +137304,26957,0,46637,0,0 +137305,26958,0,46985,0,0 +137306,26959,0,46982,0,0 +137307,26960,0,48340,0,0 +137308,26961,0,46983,0,0 +137309,26962,0,46984,0,0 +137310,26963,0,46980,0,0 +137311,26964,0,46979,0,0 +137312,26965,0,46637,0,0 +137313,26966,0,46985,0,0 +137314,26967,0,46982,0,0 +137315,26968,0,48340,0,0 +137316,26969,0,46983,0,0 +137317,26970,0,46984,0,0 +137318,26971,0,46980,0,0 +137319,26972,0,46979,0,0 +137320,26973,0,46637,0,0 +137321,26974,0,46985,0,0 +137322,26975,0,46982,0,0 +137323,26976,0,48340,0,0 +137324,26977,0,46983,0,0 +137325,26978,0,46984,0,0 +137326,26979,0,46980,0,0 +137327,26980,0,46979,0,0 +137328,26981,0,46637,0,0 +137329,26982,0,46985,0,0 +137330,26983,0,46982,0,0 +137331,26984,0,48340,0,0 +137332,26985,0,46983,0,0 +137333,26986,0,46984,0,0 +137334,26987,0,46980,0,0 +137335,26988,0,46979,0,0 +137336,26989,0,46637,0,0 +137337,26990,0,46985,0,0 +137338,26991,0,46982,0,0 +137339,26992,0,48340,0,0 +137340,26993,0,46983,0,0 +137341,26994,0,46984,0,0 +137342,26995,0,46980,0,0 +137343,26996,0,46979,0,0 +137344,26997,0,46637,0,0 +137345,26998,0,46985,0,0 +137346,26999,0,46982,0,0 +137347,27000,0,48340,0,0 +137348,27001,0,46983,0,0 +137349,27002,0,46984,0,0 +137350,27003,0,46980,0,0 +137351,27004,0,46979,0,0 +137352,27005,0,46637,0,0 +137353,27006,0,46985,0,0 +137354,27007,0,46982,0,0 +137355,27008,0,48340,0,0 +137356,27009,0,46983,0,0 +137357,27010,0,46984,0,0 +137358,27011,0,46980,0,0 +137359,27012,0,46979,0,0 +137360,27013,0,46637,0,0 +137361,27014,0,46985,0,0 +137362,27015,0,46982,0,0 +137363,27016,0,48340,0,0 +137364,27017,0,46983,0,0 +137365,27018,0,46984,0,0 +137366,27019,0,46980,0,0 +137367,27020,0,46979,0,0 +137368,27021,0,46637,0,0 +137369,27022,0,46985,0,0 +137370,27023,0,46982,0,0 +137371,27024,0,48340,0,0 +137372,27025,0,46983,0,0 +137373,27026,0,46984,0,0 +137374,27027,0,46980,0,0 +137375,27028,0,46979,0,0 +137376,27029,0,46637,0,0 +137377,27030,0,46985,0,0 +137378,27031,0,46982,0,0 +137379,27032,0,48340,0,0 +137380,27033,0,46983,0,0 +137381,27034,0,46984,0,0 +137382,27035,0,46980,0,0 +137383,27036,0,46979,0,0 +137384,27037,0,46637,0,0 +137385,27038,0,46985,0,0 +137386,27039,0,46982,0,0 +137387,27040,0,48340,0,0 +137388,27041,0,46983,0,0 +137389,27042,0,46984,0,0 +137390,27043,0,46980,0,0 +137391,27044,0,46979,0,0 +137392,27045,0,46637,0,0 +137393,27046,0,46985,0,0 +137394,27047,0,46982,0,0 +137395,27048,0,48340,0,0 +137396,27049,0,46983,0,0 +137397,27050,0,46984,0,0 +137398,27051,0,46980,0,0 +137399,27052,0,46979,0,0 +137400,27053,0,46637,0,0 +137401,27054,0,46985,0,0 +137402,27055,0,46982,0,0 +137403,27056,0,48340,0,0 +137404,27057,0,46983,0,0 +137405,27058,0,46984,0,0 +137406,27059,0,46980,0,0 +137407,27060,0,46979,0,0 +137408,27061,0,46637,0,0 +137409,27062,0,46985,0,0 +137410,27063,0,46982,0,0 +137411,27064,0,48340,0,0 +137412,27065,0,46983,0,0 +137413,27066,0,46984,0,0 +137414,27067,0,46980,0,0 +137415,27068,0,46979,0,0 +137416,27069,0,46637,0,0 +137417,27070,0,46985,0,0 +137418,27071,0,46982,0,0 +137419,27072,0,48340,0,0 +137420,27073,0,46983,0,0 +137421,27074,0,46984,0,0 +137422,27075,0,46980,0,0 +137423,27076,0,46979,0,0 +137424,27077,0,46637,0,0 +137425,27078,0,46985,0,0 +137426,27079,0,46982,0,0 +137427,27080,0,48340,0,0 +137428,27081,0,46983,0,0 +137429,27082,0,46984,0,0 +137430,27083,0,46980,0,0 +137431,27084,0,46979,0,0 +137432,27085,0,46637,0,0 +137433,27086,0,46985,0,0 +137434,27087,0,46982,0,0 +137435,27088,0,48340,0,0 +137436,27089,0,46983,0,0 +137437,27090,0,46984,0,0 +137438,27091,0,46980,0,0 +137439,27092,0,46979,0,0 +137440,27093,0,46637,0,0 +137441,27094,0,46985,0,0 +137442,27095,0,46982,0,0 +137443,27096,0,48340,0,0 +137444,27097,0,46983,0,0 +137445,27098,0,46984,0,0 +137446,27099,0,46980,0,0 +137447,27100,0,46979,0,0 +137448,27101,0,46637,0,0 +137449,27102,0,46985,0,0 +137450,27103,0,46982,0,0 +137451,27104,0,48340,0,0 +137452,27105,0,46983,0,0 +137453,27106,0,46984,0,0 +137454,27107,0,46980,0,0 +137455,27108,0,46979,0,0 +137456,27109,0,46637,0,0 +137457,27110,0,46985,0,0 +137458,27111,0,46982,0,0 +137459,27112,0,48340,0,0 +137460,27113,0,46983,0,0 +137461,27114,0,46984,0,0 +137462,27115,0,46980,0,0 +137463,27116,0,46979,0,0 +137464,27117,0,46637,0,0 +137465,27118,0,46985,0,0 +137466,27119,0,46982,0,0 +137467,27120,0,48340,0,0 +137468,27121,0,46983,0,0 +137469,27122,0,46984,0,0 +137470,27123,0,46980,0,0 +137471,27124,0,46979,0,0 +137472,27125,0,46637,0,0 +137473,27126,0,46985,0,0 +137474,27127,0,46982,0,0 +137475,27128,0,48340,0,0 +137476,27129,0,46983,0,0 +137477,27130,0,46984,0,0 +137478,27131,0,46980,0,0 +137479,27132,0,46979,0,0 +137480,27133,0,46637,0,0 +137481,27134,0,46985,0,0 +137482,27135,0,46982,0,0 +137483,27136,0,48340,0,0 +137484,27137,0,46983,0,0 +137485,27138,0,46984,0,0 +137486,27139,0,46980,0,0 +137487,27140,0,46979,0,0 +137488,27141,0,46637,0,0 +137489,27142,0,46985,0,0 +137490,27143,0,46982,0,0 +137491,27144,0,48340,0,0 +137492,27145,0,46983,0,0 +137493,27146,0,46984,0,0 +137494,27147,0,46980,0,0 +137495,27148,0,46981,0,0 +137496,27149,0,46981,0,0 +137497,27150,0,46981,0,0 +137498,27151,0,46981,0,0 +137499,27152,0,46981,0,0 +137500,27153,0,46981,0,0 +137501,27154,0,46981,0,0 +137502,27155,0,46981,0,0 +137503,27156,0,46981,0,0 +137504,27157,0,46981,0,0 +137505,27158,0,46981,0,0 +137506,27159,0,48611,0,0 +137507,27160,0,46981,0,0 +137508,27161,0,46981,0,0 +137537,27190,0,46981,0,0 +137538,27191,0,46981,0,0 +137539,27192,0,46981,0,0 +137540,27193,0,46981,0,0 +137541,27194,0,46981,0,0 +137542,27195,0,46981,0,0 +137543,27196,0,46981,0,0 +137544,27197,0,46981,0,0 +137545,27198,0,46981,0,0 +137546,27199,0,46981,0,0 +137547,27200,0,46981,0,0 +137548,27201,0,46981,0,0 +137549,27202,0,46981,0,0 +137550,27203,0,46981,0,0 +137579,27232,0,46981,0,0 +137580,27233,0,46981,0,0 +137581,27234,0,46981,0,0 +137582,27235,0,46981,0,0 +137583,27236,0,46981,0,0 +137584,27237,0,46981,0,0 +137585,27238,0,46981,0,0 +137586,27239,0,46981,0,0 +137587,27240,0,46981,0,0 +137588,27241,0,46981,0,0 +137589,27242,0,46981,0,0 +137590,27243,0,46981,0,0 +137591,27244,0,46981,0,0 +137592,27245,0,46981,0,0 +137621,27274,0,46981,0,0 +137622,27275,0,46981,0,0 +137623,27276,0,46981,0,0 +137624,27277,0,46981,0,0 +137625,27278,0,46981,0,0 +137626,27279,0,46981,0,0 +137627,27280,0,46981,0,0 +137628,27281,0,46981,0,0 +137629,27282,0,46981,0,0 +137630,27283,0,46981,0,0 +137631,27284,0,46981,0,0 +137632,27285,0,46981,0,0 +137633,27286,0,46981,0,0 +137634,27287,0,46981,0,0 +137736,27389,0,45951,0,0 +137737,27390,0,52130,0,0 +137746,27399,0,52580,0,0 +137747,27400,0,47023,0,0 +137748,27401,0,52581,0,0 +137749,27402,0,49231,0,0 +137750,27403,0,47532,0,0 +137751,27404,0,50034,0,0 +137752,27405,0,52582,0,0 +137753,27406,0,52583,0,0 +137754,27407,0,52584,0,0 +137755,27408,0,52585,0,0 +137756,27409,0,52586,0,0 +137757,27410,0,52587,0,0 +137758,27411,0,52588,0,0 +137759,27412,0,52589,0,0 +137761,27414,0,52590,0,0 +137762,27415,0,52591,0,0 +137764,27417,0,52592,0,0 +137765,27418,0,52593,0,0 +137767,27420,0,52594,0,0 +137770,27423,0,52595,0,0 +137771,27424,0,52596,0,0 +137773,27426,0,52597,0,0 +137774,27427,0,52598,0,0 +137775,27428,0,52599,0,0 +137777,27430,0,52600,0,0 +137778,27431,0,52601,0,0 +137780,27433,0,52602,0,0 +137781,27434,0,52603,0,0 +137794,27447,0,52604,0,0 +137795,27448,0,50305,0,0 +137796,27449,0,52583,0,0 +137797,27450,0,52605,0,0 +137798,27451,0,52606,0,0 +137799,27452,0,52607,0,0 +137801,27454,0,52608,0,0 +137802,27455,0,52609,0,0 +137803,27456,0,52610,0,0 +137804,27457,0,52611,0,0 +137805,27458,0,52612,0,0 +137806,27459,0,52613,0,0 +137808,27461,0,52614,0,0 +137809,27462,0,52615,0,0 +137810,27463,0,52616,0,0 +137812,27465,0,52617,0,0 +137813,27466,0,52618,0,0 +137814,27467,0,52619,0,0 +137815,27468,0,52620,0,0 +137816,27469,0,52568,0,0 +137817,27470,0,52571,0,0 +137818,27471,0,52569,0,0 +137819,27472,0,52572,0,0 +137820,27473,0,52570,0,0 +137821,27474,0,52621,0,0 +137822,27475,0,52622,0,0 +137823,27476,0,52623,0,0 +137824,27477,0,52624,0,0 +137825,27478,0,52625,0,0 +137830,27483,0,52626,0,0 +137832,27485,0,50962,0,0 +137833,27486,0,52627,0,0 +137834,27487,0,52628,0,0 +137835,27488,0,52629,0,0 +137836,27489,0,52630,0,0 +137837,27490,0,52631,0,0 +137839,27492,0,52632,0,0 +137840,27493,0,52633,0,0 +137841,27494,0,52634,0,0 +137843,27496,0,52060,0,0 +137844,27497,0,52635,0,0 +137852,27505,0,52636,0,0 +137853,27506,0,52637,0,0 +137854,27507,0,52638,0,0 +137855,27508,0,52639,0,0 +137856,27509,0,52640,0,0 +137857,27510,0,52641,0,0 +137859,27512,0,52642,0,0 +137861,27514,0,52643,0,0 +137862,27515,0,47478,0,0 +137863,27516,0,47616,0,0 +137864,27517,0,52644,0,0 +137866,27519,0,48708,0,0 +137867,27520,0,52645,0,0 +137868,27521,0,52646,0,0 +137869,27522,0,52647,0,0 +137871,27524,0,52648,0,0 +137872,27525,0,52649,0,0 +137873,27526,0,52650,0,0 +137874,27527,0,52651,0,0 +137875,27528,0,52652,0,0 +137877,27530,0,46979,0,0 +137878,27531,0,52653,0,0 +137880,27533,0,51099,0,0 +137881,27534,0,52654,0,0 +137882,27535,0,52655,0,0 +137883,27536,0,52656,0,0 +137884,27537,0,52657,0,0 +137885,27538,0,52658,0,0 +137886,27539,0,52659,0,0 +137887,27540,0,52660,0,0 +137888,27541,0,52661,0,0 +137889,27542,0,52662,0,0 +137890,27543,0,52663,0,0 +137892,27545,0,52664,0,0 +137894,27547,0,52665,0,0 +137895,27548,0,52666,0,0 +137896,27549,0,52667,0,0 +137897,27550,0,50774,0,0 +137899,27552,0,46216,0,0 +137978,27631,0,52668,0,0 +137984,27637,0,48672,0,0 +137985,27638,0,48672,0,0 +137986,27639,0,52669,0,0 +137987,27640,0,52670,0,0 +137988,27641,0,52671,0,0 +137989,27642,0,46378,0,0 +137990,27643,0,46378,0,0 +137991,27644,0,52669,0,0 +137992,27645,0,48672,0,0 +137993,27646,0,46378,0,0 +137994,27647,0,51473,0,0 +137995,27648,0,49736,0,0 +137996,27649,0,49627,0,0 +137997,27650,0,48242,0,0 +137999,27652,0,45754,0,0 +138000,27653,0,52672,0,0 +138001,27654,0,52672,0,0 +138019,27672,0,52673,0,0 +138020,27673,0,52674,0,0 +138048,27701,0,51858,0,0 +138049,27702,0,52675,0,0 +138050,27703,0,52676,0,0 +138051,27704,0,52677,0,0 +138052,27705,0,52678,0,0 +138053,27706,0,52679,0,0 +138054,27707,0,52680,0,0 +138055,27708,0,52681,0,0 +138056,27709,0,52682,0,0 +138057,27710,0,52683,0,0 +138058,27711,0,52684,0,0 +138059,27712,0,48674,0,0 +138060,27713,0,52685,0,0 +138061,27714,0,52686,0,0 +138062,27715,0,52687,0,0 +138063,27716,0,49213,0,0 +138064,27717,0,46050,0,0 +138065,27718,0,49168,0,0 +138066,27719,0,46038,0,0 +138067,27720,0,48628,0,0 +138068,27721,0,48779,0,0 +138069,27722,0,48572,0,0 +138070,27723,0,47113,0,0 +138071,27724,0,49776,0,0 +138072,27725,0,49034,0,0 +138073,27726,0,50224,0,0 +138074,27727,0,48163,0,0 +138075,27728,0,48034,0,0 +138077,27730,0,50147,0,0 +138078,27731,0,46902,0,0 +138079,27732,0,49579,0,0 +138084,27737,0,52688,0,0 +138085,27738,0,52689,0,0 +138086,27739,0,52690,0,0 +138088,27741,0,51080,0,0 +138089,27742,0,52691,0,0 +138090,27743,0,52646,0,0 +138092,27745,0,52692,0,0 +138093,27746,0,52693,0,0 +138094,27747,0,52694,0,0 +138095,27748,0,52695,0,0 +138096,27749,0,48985,0,0 +138097,27750,0,49009,0,0 +138098,27751,0,49356,0,0 +138099,27752,0,46665,0,0 +138100,27753,0,52425,0,0 +138101,27754,0,47396,0,0 +138102,27755,0,52696,0,0 +138103,27756,0,48153,0,0 +138104,27757,0,52697,0,0 +138106,27759,0,52698,0,0 +138107,27760,0,52699,0,0 +138110,27763,0,52700,0,0 +138111,27764,0,52701,0,0 +138112,27765,0,52702,0,0 +138114,27767,0,52703,0,0 +138115,27768,0,52704,0,0 +138116,27769,0,52705,0,0 +138118,27771,0,52706,0,0 +138119,27772,0,52707,0,0 +138120,27773,0,52708,0,0 +138122,27775,0,52709,0,0 +138123,27776,0,52710,0,0 +138125,27778,0,52711,0,0 +138128,27781,0,52712,0,0 +138130,27783,0,52713,0,0 +138134,27787,0,52714,0,0 +138135,27788,0,52715,0,0 +138136,27789,0,51431,0,0 +138137,27790,0,52716,0,0 +138138,27791,0,52717,0,0 +138140,27793,0,52718,0,0 +138141,27794,0,52719,0,0 +138142,27795,0,52720,0,0 +138143,27796,0,52721,0,0 +138144,27797,0,52722,0,0 +138145,27798,0,52723,0,0 +138146,27799,0,52724,0,0 +138147,27800,0,52725,0,0 +138148,27801,0,52726,0,0 +138149,27802,0,52727,0,0 +138150,27803,0,52728,0,0 +138151,27804,0,48278,0,0 +138153,27806,0,52729,0,0 +138160,27813,0,52730,0,0 +138161,27814,0,52731,0,0 +138163,27816,0,52732,0,0 +138164,27817,0,52733,0,0 +138165,27818,0,52734,0,0 +138168,27821,0,52735,0,0 +138170,27823,0,52736,0,0 +138171,27824,0,52737,0,0 +138172,27825,0,52738,0,0 +138173,27826,0,52739,0,0 +138174,27827,0,52740,0,0 +138176,27829,0,52741,0,0 +138178,27831,0,52742,0,0 +138182,27835,0,52743,0,0 +138183,27836,0,52744,0,0 +138184,27837,0,52745,0,0 +138185,27838,0,52746,0,0 +138186,27839,0,52747,0,0 +138187,27840,0,52748,0,0 +138189,27842,0,52749,0,0 +138190,27843,0,52750,0,0 +138191,27844,0,52751,0,0 +138192,27845,0,52752,0,0 +138193,27846,0,52753,0,0 +138194,27847,0,52754,0,0 +138195,27848,0,52755,0,0 +138196,27849,0,46960,0,0 +138197,27850,0,52756,0,0 +138198,27851,0,48680,0,0 +138199,27852,0,52757,0,0 +138209,27862,0,52489,0,0 +138212,27865,0,52647,0,0 +138213,27866,0,52758,0,0 +138214,27867,0,52759,0,0 +138215,27868,0,52760,0,0 +138217,27870,0,52761,0,0 +138219,27872,0,52762,0,0 +138220,27873,0,52763,0,0 +138221,27874,0,52764,0,0 +138222,27875,0,52765,0,0 +138223,27876,0,52766,0,0 +138224,27877,0,52767,0,0 +138225,27878,0,52768,0,0 +138226,27879,0,52675,0,0 +138227,27880,0,52676,0,0 +138228,27881,0,52677,0,0 +138229,27882,0,52678,0,0 +138230,27883,0,52679,0,0 +138231,27884,0,52769,0,0 +138232,27885,0,52770,0,0 +138234,27887,0,52771,0,0 +138235,27888,0,52772,0,0 +138236,27889,0,52701,0,0 +138237,27890,0,52773,0,0 +138239,27892,0,50790,0,0 +138240,27893,0,52774,0,0 +138244,27897,0,52775,0,0 +138245,27898,0,52776,0,0 +138246,27899,0,52777,0,0 +138248,27901,0,52778,0,0 +138249,27902,0,52779,0,0 +138250,27903,0,52780,0,0 +138252,27905,0,52781,0,0 +138253,27906,0,52782,0,0 +138254,27907,0,52783,0,0 +138255,27908,0,52784,0,0 +138256,27909,0,52785,0,0 +138257,27910,0,52786,0,0 +138258,27911,0,52787,0,0 +138259,27912,0,52788,0,0 +138260,27913,0,52789,0,0 +138261,27914,0,52790,0,0 +138262,27915,0,52791,0,0 +138263,27916,0,52668,0,0 +138265,27918,0,52792,0,0 +138266,27919,0,52793,0,0 +138270,27923,0,49525,0,0 +138277,27930,0,50760,0,0 +138278,27931,0,50760,0,0 +138283,27936,0,52794,0,0 +138284,27937,0,52795,0,0 +138285,27938,0,52796,0,0 +138286,27939,0,52797,0,0 +138289,27942,0,52797,0,0 +138293,27946,0,52798,0,0 +138295,27948,0,52799,0,0 +138297,27950,0,46979,0,0 +138298,27951,0,46637,0,0 +138299,27952,0,46985,0,0 +138300,27953,0,46982,0,0 +138301,27954,0,48340,0,0 +138302,27955,0,46983,0,0 +138303,27956,0,46984,0,0 +138304,27957,0,46980,0,0 +138307,27960,0,46981,0,0 +138308,27961,0,51343,0,0 +138309,27962,0,51343,0,0 +138310,27963,0,46979,0,0 +138311,27964,0,46637,0,0 +138312,27965,0,46985,0,0 +138313,27966,0,46982,0,0 +138314,27967,0,48340,0,0 +138315,27968,0,46983,0,0 +138316,27969,0,46984,0,0 +138317,27970,0,46980,0,0 +138320,27973,0,46981,0,0 +138321,27974,0,51343,0,0 +138322,27975,0,51343,0,0 +138324,27977,0,52800,0,0 +138327,27980,0,52801,0,0 +138328,27981,0,47426,0,0 +138332,27985,0,52802,0,0 +138333,27986,0,52803,0,0 +138334,27987,0,52804,0,0 +138335,27988,0,49717,0,0 +138340,27993,0,52805,0,0 +138341,27994,0,52806,0,0 +138342,27995,0,52807,0,0 +138344,27997,0,46979,0,0 +138345,27998,0,46637,0,0 +138346,27999,0,46985,0,0 +138347,28000,0,46982,0,0 +138348,28001,0,48340,0,0 +138349,28002,0,46983,0,0 +138350,28003,0,46984,0,0 +138351,28004,0,46980,0,0 +138354,28007,0,46981,0,0 +138355,28008,0,51343,0,0 +138356,28009,0,51343,0,0 +138357,28010,0,46979,0,0 +138358,28011,0,46637,0,0 +138359,28012,0,46985,0,0 +138360,28013,0,46982,0,0 +138361,28014,0,48340,0,0 +138362,28015,0,46983,0,0 +138363,28016,0,46984,0,0 +138364,28017,0,46980,0,0 +138367,28020,0,46981,0,0 +138368,28021,0,51343,0,0 +138369,28022,0,51343,0,0 +138370,28023,0,52808,0,0 +138373,28026,0,52809,0,0 +138374,28027,0,46544,0,0 +138375,28028,0,46735,0,0 +138376,28029,0,48945,0,0 +138377,28030,0,51270,0,0 +138378,28031,0,51270,0,0 +138379,28032,0,52810,0,0 +138380,28033,0,52811,0,0 +138384,28037,0,49337,0,0 +138392,28045,0,47280,0,0 +138396,28050,0,47120,0,0 +138397,28051,0,48744,0,0 +138398,28052,0,48790,0,0 +138399,28053,0,46426,0,0 +138400,28054,0,49919,0,0 +138401,28055,0,52288,0,0 +138402,28056,0,46426,0,0 +138403,28057,0,49157,0,0 +138406,28060,0,52812,0,0 +138407,28061,0,52812,0,0 +138408,28062,0,52813,0,0 +138409,28063,0,48906,0,0 +138413,28067,0,51784,0,0 +138415,28069,0,52814,0,0 +138416,28070,0,50927,0,0 +138420,28074,0,48976,0,0 +138421,28075,0,48764,0,0 +138433,28087,0,51866,0,0 +138461,28115,0,50979,0,0 +138470,28124,0,52815,0,0 +138471,28125,0,52816,0,0 +138472,28126,0,52817,0,0 +138473,28127,0,52818,0,0 +138474,28128,0,52819,0,0 +138475,28129,0,52820,0,0 +138476,28130,0,52821,0,0 +138479,28133,0,52822,0,0 +138482,28136,0,52817,0,0 +138483,28137,0,52818,0,0 +138484,28138,0,52819,0,0 +138485,28139,0,52820,0,0 +138486,28140,0,52821,0,0 +138487,28141,0,46761,0,0 +138488,28142,0,47750,0,0 +138489,28143,0,46045,0,0 +138490,28144,0,48995,0,0 +138491,28145,0,46369,0,0 +138492,28146,0,47483,0,0 +138493,28147,0,46368,0,0 +138494,28148,0,48493,0,0 +138495,28149,0,47329,0,0 +138496,28150,0,46319,0,0 +138497,28151,0,47492,0,0 +138498,28152,0,47046,0,0 +138499,28153,0,46794,0,0 +138500,28154,0,46361,0,0 +138501,28155,0,46751,0,0 +138502,28156,0,49606,0,0 +138503,28157,0,46207,0,0 +138504,28158,0,47009,0,0 +138505,28159,0,50093,0,0 +138506,28160,0,47031,0,0 +138507,28161,0,47029,0,0 +138508,28162,0,46045,0,0 +138509,28163,0,46049,0,0 +138510,28164,0,45942,0,0 +138511,28165,0,52823,0,0 +138512,28166,0,48469,0,0 +138513,28167,0,49189,0,0 +138515,28169,0,52824,0,0 +138516,28170,0,49562,0,0 +138517,28171,0,48674,0,0 +138518,28172,0,51052,0,0 +138519,28173,0,52825,0,0 +138520,28174,0,47049,0,0 +138521,28175,0,51137,0,0 +138522,28176,0,51981,0,0 +138523,28177,0,49561,0,0 +138524,28178,0,47659,0,0 +138525,28179,0,52826,0,0 +138526,28180,0,49001,0,0 +138527,28181,0,50910,0,0 +138528,28182,0,51478,0,0 +138529,28183,0,51044,0,0 +138530,28184,0,52827,0,0 +138531,28185,0,52828,0,0 +138532,28186,0,52829,0,0 +138533,28187,0,52830,0,0 +138534,28188,0,52831,0,0 +138535,28189,0,52832,0,0 +138537,28191,0,52833,0,0 +138538,28192,0,52834,0,0 +138539,28193,0,52835,0,0 +138540,28194,0,52836,0,0 +138541,28195,0,52837,0,0 +138542,28196,0,52838,0,0 +138543,28197,0,52839,0,0 +138544,28198,0,52840,0,0 +138545,28199,0,52841,0,0 +138546,28200,0,52842,0,0 +138547,28201,0,52843,0,0 +138548,28202,0,52844,0,0 +138549,28203,0,52845,0,0 +138550,28204,0,52846,0,0 +138551,28205,0,52847,0,0 +138552,28206,0,52848,0,0 +138553,28207,0,52849,0,0 +138554,28208,0,52850,0,0 +138556,28210,0,52851,0,0 +138558,28212,0,52852,0,0 +138559,28213,0,52853,0,0 +138560,28214,0,52854,0,0 +138561,28215,0,52855,0,0 +138562,28216,0,52856,0,0 +138564,28218,0,52857,0,0 +138565,28219,0,52858,0,0 +138566,28220,0,52859,0,0 +138567,28221,0,52860,0,0 +138568,28222,0,52861,0,0 +138570,28224,0,52862,0,0 +138571,28225,0,52863,0,0 +138572,28226,0,52864,0,0 +138574,28228,0,52865,0,0 +138575,28229,0,52866,0,0 +138576,28230,0,52867,0,0 +138577,28231,0,52868,0,0 +138578,28232,0,52869,0,0 +138595,28249,0,49190,0,0 +138596,28250,0,52870,0,0 +138597,28251,0,52871,0,0 +138598,28252,0,52872,0,0 +138599,28253,0,52873,0,0 +138601,28255,0,52874,0,0 +138602,28256,0,50305,0,0 +138603,28257,0,52875,0,0 +138604,28258,0,52876,0,0 +138606,28260,0,52877,0,0 +138608,28262,0,52878,0,0 +138609,28263,0,52879,0,0 +138610,28264,0,52880,0,0 +138612,28266,0,52881,0,0 +138613,28267,0,52882,0,0 +138614,28268,0,52883,0,0 +138615,28269,0,52884,0,0 +138621,28275,0,52885,0,0 +138624,28278,0,52886,0,0 +138631,28285,0,52887,0,0 +138632,28286,0,52888,0,0 +138639,28293,0,52889,0,0 +138640,28294,0,52890,0,0 +138641,28295,0,52891,0,0 +138643,28297,0,52892,0,0 +138644,28298,0,52893,0,0 +138645,28299,0,52894,0,0 +138646,28300,0,52895,0,0 +138647,28301,0,51872,0,0 +138648,28302,0,52896,0,0 +138650,28304,0,52897,0,0 +138651,28305,0,52896,0,0 +138652,28306,0,52898,0,0 +138653,28307,0,52891,0,0 +138654,28308,0,52899,0,0 +138655,28309,0,52899,0,0 +138656,28310,0,52900,0,0 +138657,28311,0,52901,0,0 +138658,28312,0,52900,0,0 +138659,28313,0,52902,0,0 +138660,28314,0,52903,0,0 +138661,28315,0,52904,0,0 +138662,28316,0,52905,0,0 +138663,28317,0,52906,0,0 +138664,28318,0,52907,0,0 +138666,28320,0,52908,0,0 +138668,28322,0,52909,0,0 +138670,28324,0,52910,0,0 +138671,28325,0,52911,0,0 +138674,28328,0,52912,0,0 +138675,28329,0,50522,0,0 +138676,28330,0,50521,0,0 +138677,28331,0,52913,0,0 +138678,28332,0,52914,0,0 +138679,28333,0,52915,0,0 +138680,28334,0,52916,0,0 +138681,28335,0,52917,0,0 +138683,28337,0,52918,0,0 +138684,28338,0,52919,0,0 +138685,28339,0,52920,0,0 +138686,28340,0,52921,0,0 +138687,28341,0,52922,0,0 +138688,28342,0,50929,0,0 +138690,28344,0,52923,0,0 +138691,28345,0,52924,0,0 +138692,28346,0,52925,0,0 +138693,28347,0,52926,0,0 +138694,28348,0,52927,0,0 +138695,28349,0,52928,0,0 +138696,28350,0,52929,0,0 +138700,28354,0,52386,0,0 +138704,28358,0,52930,0,0 +138711,28365,0,52931,0,0 +138712,28366,0,51371,0,0 +138713,28367,0,52932,0,0 +138717,28371,0,52933,0,0 +138719,28373,0,47099,0,0 +138720,28374,0,52934,0,0 +138721,28375,0,52935,0,0 +138723,28377,0,50380,0,0 +138724,28378,0,50380,0,0 +138725,28379,0,50380,0,0 +138726,28380,0,50380,0,0 +138727,28381,0,50496,0,0 +138728,28382,0,50911,0,0 +138729,28383,0,52936,0,0 +138730,28384,0,52937,0,0 +138731,28385,0,52938,0,0 +138732,28386,0,52939,0,0 +138733,28387,0,46320,0,0 +138736,28390,0,52940,0,0 +138737,28391,0,52941,0,0 +138738,28392,0,52942,0,0 +138739,28393,0,52943,0,0 +138742,28396,0,52944,0,0 +138743,28397,0,52945,0,0 +138744,28398,0,52946,0,0 +138746,28400,0,52947,0,0 +138747,28401,0,52948,0,0 +138748,28402,0,52949,0,0 +138749,28403,0,52950,0,0 +138750,28404,0,52951,0,0 +138751,28405,0,52952,0,0 +138752,28406,0,52953,0,0 +138755,28409,0,52954,0,0 +138756,28410,0,52955,0,0 +138757,28411,0,52956,0,0 +138758,28412,0,52957,0,0 +138759,28413,0,52958,0,0 +138760,28414,0,52959,0,0 +138761,28415,0,52960,0,0 +138762,28416,0,52961,0,0 +138768,28422,0,52962,0,0 +138769,28423,0,52963,0,0 +138770,28424,0,50453,0,0 +138771,28425,0,52964,0,0 +138772,28426,0,52965,0,0 +138773,28427,0,52966,0,0 +138774,28428,0,52967,0,0 +138775,28429,0,52968,0,0 +138776,28430,0,52969,0,0 +138777,28431,0,52970,0,0 +138778,28432,0,52971,0,0 +138779,28433,0,52972,0,0 +138780,28434,0,52973,0,0 +138781,28435,0,52974,0,0 +138782,28436,0,52975,0,0 +138783,28437,0,52976,0,0 +138784,28438,0,52977,0,0 +138785,28439,0,52978,0,0 +138786,28440,0,52979,0,0 +138787,28441,0,52980,0,0 +138788,28442,0,52981,0,0 +138789,28443,0,52982,0,0 +138790,28444,0,52983,0,0 +138791,28445,0,52984,0,0 +138792,28446,0,52982,0,0 +138793,28447,0,52985,0,0 +138794,28448,0,52984,0,0 +138795,28449,0,52986,0,0 +138796,28450,0,52987,0,0 +138797,28451,0,52988,0,0 +138799,28453,0,52989,0,0 +138800,28454,0,52990,0,0 +138802,28456,0,52749,0,0 +138822,28476,0,52894,0,0 +138823,28477,0,52991,0,0 +138826,28480,0,51719,0,0 +138829,28483,0,52992,0,0 +138830,28484,0,52993,0,0 +138831,28485,0,52994,0,0 +138833,28487,0,52995,0,0 +138834,28488,0,52996,0,0 +138835,28489,0,52997,0,0 +138837,28491,0,52998,0,0 +138838,28492,0,52999,0,0 +138839,28493,0,47124,0,0 +138840,28494,0,53000,0,0 +138841,28495,0,53001,0,0 +138842,28496,0,53002,0,0 +138843,28497,0,53003,0,0 +138844,28498,0,53004,0,0 +138848,28502,0,53005,0,0 +138849,28503,0,53006,0,0 +138850,28504,0,53007,0,0 +138851,28505,0,53008,0,0 +138852,28506,0,53009,0,0 +138853,28507,0,53010,0,0 +138854,28508,0,53011,0,0 +138857,28511,0,53012,0,0 +138858,28512,0,53013,0,0 +138860,28514,0,53014,0,0 +138861,28515,0,53015,0,0 +138863,28517,0,53016,0,0 +138864,28518,0,53017,0,0 +138865,28519,0,53018,0,0 +138866,28520,0,53019,0,0 +138867,28521,0,53020,0,0 +138868,28522,0,53021,0,0 +138870,28524,0,53022,0,0 +138871,28525,0,53023,0,0 +138875,28529,0,51567,0,0 +138877,28531,0,53024,0,0 +138878,28532,0,53025,0,0 +138879,28533,0,53026,0,0 +138882,28536,0,53027,0,0 +138883,28537,0,53028,0,0 +138884,28538,0,53029,0,0 +138885,28539,0,53030,0,0 +138887,28541,0,53031,0,0 +138888,28542,0,53032,0,0 +138889,28543,0,53033,0,0 +138890,28544,0,53034,0,0 +138891,28545,0,53035,0,0 +138892,28546,0,53036,0,0 +138905,28559,0,48147,0,0 +138906,28560,0,48147,0,0 +138907,28561,0,53037,0,0 +138911,28565,0,53038,0,0 +138912,28566,0,53039,0,0 +138913,28567,0,53040,0,0 +138915,28569,0,53041,0,0 +138916,28570,0,51537,0,0 +138918,28572,0,52900,0,0 +138919,28573,0,53042,0,0 +138920,28574,0,53037,0,0 +138921,28575,0,53037,0,0 +138922,28576,0,50523,0,0 +138923,28577,0,50523,0,0 +138924,28578,0,53043,0,0 +138927,28581,0,53044,0,0 +138928,28582,0,52081,0,0 +138929,28583,0,51309,0,0 +138930,28584,0,50883,0,0 +138931,28585,0,53045,0,0 +138932,28586,0,51876,0,0 +138933,28587,0,52389,0,0 +138934,28588,0,53046,0,0 +138935,28589,0,53047,0,0 +138937,28591,0,53048,0,0 +138939,28593,0,53049,0,0 +138940,28594,0,53050,0,0 +138943,28597,0,53051,0,0 +138945,28599,0,53052,0,0 +138946,28600,0,53053,0,0 +138947,28601,0,53053,0,0 +138948,28602,0,53043,0,0 +138949,28603,0,53054,0,0 +138950,28604,0,53055,0,0 +138951,28605,0,53056,0,0 +138952,28606,0,53057,0,0 +138954,28608,0,53058,0,0 +138956,28610,0,53059,0,0 +138957,28611,0,53060,0,0 +138958,28612,0,53061,0,0 +138959,28613,0,53062,0,0 +138960,28614,0,53063,0,0 +138961,28615,0,53064,0,0 +138962,28616,0,53065,0,0 +138963,28617,0,53066,0,0 +138964,28618,0,50390,0,0 +138965,28619,0,50410,0,0 +138966,28620,0,50408,0,0 +138967,28621,0,53067,0,0 +138968,28622,0,50409,0,0 +138969,28623,0,50407,0,0 +138970,28624,0,53068,0,0 +138971,28625,0,53069,0,0 +138972,28626,0,53070,0,0 +138973,28627,0,53071,0,0 +138974,28628,0,53072,0,0 +138975,28629,0,53073,0,0 +138976,28630,0,53074,0,0 +138977,28631,0,53075,0,0 +138979,28633,0,53076,0,0 +138984,28638,0,53056,0,0 +138985,28639,0,53073,0,0 +138986,28640,0,53074,0,0 +138987,28641,0,53077,0,0 +138988,28642,0,53078,0,0 +138989,28643,0,53079,0,0 +138990,28644,0,53077,0,0 +138991,28645,0,53078,0,0 +138992,28646,0,53080,0,0 +138993,28647,0,53081,0,0 +138994,28648,0,49237,0,0 +138996,28650,0,52395,0,0 +138998,28652,0,53082,0,0 +138999,28653,0,52884,0,0 +139000,28654,0,53083,0,0 +139001,28655,0,53084,0,0 +139002,28656,0,53085,0,0 +139003,28657,0,53086,0,0 +139004,28658,0,53087,0,0 +139005,28659,0,53088,0,0 +139006,28660,0,48427,0,0 +139008,28662,0,53089,0,0 +139009,28663,0,53090,0,0 +139012,28666,0,53091,0,0 +139015,28669,0,53092,0,0 +139016,28670,0,53093,0,0 +139017,28671,0,53094,0,0 +139018,28672,0,53095,0,0 +139019,28673,0,53096,0,0 +139024,28678,0,53097,0,0 +139025,28679,0,50417,0,0 +139026,28680,0,50397,0,0 +139027,28681,0,50418,0,0 +139028,28682,0,50419,0,0 +139029,28683,0,50420,0,0 +139030,28684,0,53098,0,0 +139031,28685,0,50404,0,0 +139032,28686,0,50405,0,0 +139033,28687,0,50406,0,0 +139034,28688,0,50403,0,0 +139035,28689,0,50522,0,0 +139036,28690,0,50521,0,0 +139037,28691,0,50523,0,0 +139038,28692,0,50524,0,0 +139039,28693,0,50525,0,0 +139040,28694,0,50522,0,0 +139041,28695,0,50521,0,0 +139042,28696,0,50523,0,0 +139043,28697,0,50524,0,0 +139044,28698,0,50525,0,0 +139045,28699,0,50416,0,0 +139046,28700,0,50367,0,0 +139047,28701,0,51913,0,0 +139048,28702,0,50366,0,0 +139049,28703,0,50369,0,0 +139050,28704,0,53099,0,0 +139051,28705,0,53100,0,0 +139052,28706,0,53101,0,0 +139053,28707,0,53102,0,0 +139054,28708,0,53103,0,0 +139055,28709,0,50417,0,0 +139056,28710,0,50397,0,0 +139057,28711,0,50418,0,0 +139058,28712,0,50419,0,0 +139059,28713,0,50420,0,0 +139060,28714,0,50427,0,0 +139061,28715,0,50425,0,0 +139062,28716,0,53104,0,0 +139063,28717,0,53105,0,0 +139064,28718,0,53106,0,0 +139065,28719,0,50390,0,0 +139066,28720,0,50410,0,0 +139067,28721,0,50408,0,0 +139068,28722,0,50409,0,0 +139069,28723,0,50407,0,0 +139070,28724,0,50419,0,0 +139072,28726,0,53107,0,0 +139074,28728,0,53108,0,0 +139075,28729,0,53109,0,0 +139078,28732,0,53110,0,0 +139079,28733,0,53111,0,0 +139080,28734,0,53112,0,0 +139081,28735,0,53113,0,0 +139082,28736,0,50788,0,0 +139083,28737,0,50789,0,0 +139084,28738,0,50939,0,0 +139085,28739,0,50940,0,0 +139086,28740,0,53114,0,0 +139087,28741,0,53115,0,0 +139088,28742,0,53116,0,0 +139089,28743,0,53117,0,0 +139090,28744,0,53118,0,0 +139092,28746,0,53119,0,0 +139093,28747,0,53120,0,0 +139094,28748,0,53121,0,0 +139095,28749,0,53122,0,0 +139096,28750,0,53123,0,0 +139097,28751,0,53124,0,0 +139098,28752,0,53125,0,0 +139100,28754,0,53126,0,0 +139101,28755,0,53127,0,0 +139102,28756,0,53128,0,0 +139104,28758,0,50523,0,0 +139105,28759,0,50823,0,0 +139106,28760,0,50823,0,0 +139107,28761,0,48147,0,0 +139110,28764,0,51270,0,0 +139111,28765,0,47170,0,0 +139112,28766,0,52081,0,0 +139113,28767,0,52033,0,0 +139114,28768,0,53130,0,0 +139116,28770,0,53132,0,0 +139117,28771,0,53134,0,0 +139118,28772,0,53136,0,0 +139119,28773,0,53138,0,0 +139120,28774,0,53140,0,0 +139121,28775,0,53141,0,0 +139122,28776,0,53142,0,0 +139123,28777,0,51119,0,0 +139124,28778,0,53143,0,0 +139125,28779,0,53144,0,0 +139126,28780,0,53145,0,0 +139127,28781,0,53146,0,0 +139128,28782,0,53147,0,0 +139129,28783,0,53148,0,0 +139134,28788,0,51864,0,0 +139140,28794,0,53149,0,0 +139141,28795,0,53150,0,0 +139142,28796,0,53110,0,0 +139143,28797,0,47280,0,0 +139145,28799,0,53152,0,0 +139146,28800,0,53153,0,0 +139147,28801,0,53154,0,0 +139148,28802,0,53155,0,0 +139149,28803,0,53156,0,0 +139150,28804,0,53157,0,0 +139151,28805,0,50522,0,0 +139152,28806,0,50521,0,0 +139153,28807,0,50523,0,0 +139154,28808,0,50524,0,0 +139155,28809,0,50525,0,0 +139156,28810,0,53158,0,0 +139157,28811,0,50504,0,0 +139158,28812,0,50500,0,0 +139159,28813,0,50502,0,0 +139160,28814,0,50501,0,0 +139161,28815,0,50499,0,0 +139163,28817,0,50821,0,0 +139164,28818,0,50823,0,0 +139165,28819,0,53159,0,0 +139166,28820,0,50822,0,0 +139167,28821,0,50824,0,0 +139170,28824,0,53160,0,0 +139171,28825,0,53161,0,0 +139172,28826,0,53162,0,0 +139173,28827,0,53163,0,0 +139174,28828,0,53164,0,0 +139177,28831,0,53165,0,0 +139178,28832,0,53166,0,0 +139179,28833,0,53167,0,0 +139180,28834,0,53168,0,0 +139181,28835,0,53169,0,0 +139182,28836,0,50455,0,0 +139183,28837,0,53037,0,0 +139184,28838,0,50463,0,0 +139185,28839,0,53170,0,0 +139186,28840,0,50460,0,0 +139187,28841,0,50522,0,0 +139188,28842,0,50521,0,0 +139189,28843,0,50523,0,0 +139190,28844,0,50524,0,0 +139191,28845,0,50525,0,0 +139192,28846,0,50522,0,0 +139193,28847,0,50521,0,0 +139194,28848,0,50523,0,0 +139195,28849,0,50524,0,0 +139196,28850,0,50525,0,0 +139197,28851,0,50491,0,0 +139198,28852,0,50498,0,0 +139199,28853,0,50492,0,0 +139200,28854,0,50493,0,0 +139201,28855,0,50494,0,0 +139202,28856,0,50821,0,0 +139203,28857,0,50823,0,0 +139204,28858,0,47669,0,0 +139205,28859,0,50822,0,0 +139206,28860,0,50824,0,0 +139207,28861,0,53171,0,0 +139208,28862,0,53172,0,0 +139209,28863,0,53173,0,0 +139210,28864,0,53174,0,0 +139211,28865,0,53175,0,0 +139212,28866,0,50486,0,0 +139213,28867,0,50484,0,0 +139214,28868,0,50490,0,0 +139215,28869,0,50485,0,0 +139216,28870,0,53176,0,0 +139217,28871,0,50504,0,0 +139218,28872,0,50500,0,0 +139219,28873,0,50502,0,0 +139220,28874,0,50501,0,0 +139221,28875,0,50499,0,0 +139251,28905,0,53177,0,0 +139252,28906,0,53178,0,0 +139260,28914,0,49263,0,0 +139262,28916,0,53179,0,0 +139263,28917,0,53180,0,0 +139264,28918,0,50987,0,0 +139265,28919,0,51939,0,0 +139266,28920,0,53181,0,0 +139267,28921,0,53181,0,0 +139268,28922,0,53182,0,0 +139269,28923,0,53183,0,0 +139270,28924,0,53184,0,0 +139271,28925,0,53184,0,0 +139272,28926,0,53185,0,0 +139274,28928,0,53186,0,0 +139275,28929,0,53187,0,0 +139276,28930,0,53187,0,0 +139277,28931,0,53188,0,0 +139279,28933,0,53189,0,0 +139281,28935,0,53190,0,0 +139283,28937,0,53185,0,0 +139284,28938,0,53191,0,0 +139285,28939,0,50982,0,0 +139286,28940,0,50981,0,0 +139287,28941,0,53192,0,0 +139288,28942,0,53193,0,0 +139289,28943,0,51011,0,0 +139290,28944,0,53194,0,0 +139291,28945,0,53195,0,0 +139292,28946,0,50983,0,0 +139293,28947,0,53196,0,0 +139294,28948,0,51937,0,0 +139295,28949,0,53197,0,0 +139296,28950,0,53198,0,0 +139297,28951,0,53198,0,0 +139298,28952,0,53199,0,0 +139299,28953,0,53200,0,0 +139300,28954,0,53201,0,0 +139301,28955,0,53201,0,0 +139302,28956,0,53199,0,0 +139303,28957,0,50992,0,0 +139305,28959,0,53202,0,0 +139306,28960,0,53203,0,0 +139307,28961,0,50982,0,0 +139309,28963,0,53204,0,0 +139310,28964,0,53205,0,0 +139311,28965,0,53206,0,0 +139312,28966,0,53207,0,0 +139313,28967,0,53208,0,0 +139314,28968,0,53209,0,0 +139319,28973,0,50431,0,0 +139320,28974,0,52987,0,0 +139321,28975,0,52986,0,0 +139322,28976,0,52982,0,0 +139323,28977,0,52985,0,0 +139324,28978,0,50388,0,0 +139326,28980,0,52951,0,0 +139327,28981,0,53210,0,0 +139328,28982,0,53093,0,0 +139329,28983,0,53077,0,0 +139330,28984,0,50439,0,0 +139331,28985,0,53078,0,0 +139332,28986,0,52963,0,0 +139333,28987,0,52962,0,0 +139334,28988,0,50428,0,0 +139335,28989,0,53056,0,0 +139336,28990,0,53073,0,0 +139337,28991,0,53074,0,0 +139338,28992,0,53056,0,0 +139339,28993,0,53073,0,0 +139340,28994,0,53074,0,0 +139341,28995,0,52938,0,0 +139342,28996,0,50370,0,0 +139343,28997,0,52936,0,0 +139344,28998,0,53077,0,0 +139345,28999,0,50439,0,0 +139346,29000,0,53078,0,0 +139347,29001,0,52954,0,0 +139348,29002,0,53211,0,0 +139349,29003,0,53212,0,0 +139350,29004,0,52982,0,0 +139351,29005,0,52985,0,0 +139352,29006,0,50388,0,0 +139354,29008,0,53213,0,0 +139356,29010,0,53214,0,0 +139357,29011,0,53215,0,0 +139358,29012,0,53216,0,0 +139359,29013,0,53033,0,0 +139361,29015,0,53217,0,0 +139362,29016,0,53218,0,0 +139363,29017,0,53219,0,0 +139365,29019,0,53216,0,0 +139366,29020,0,53219,0,0 +139367,29021,0,53215,0,0 +139368,29022,0,53217,0,0 +139369,29023,0,53218,0,0 +139374,29028,0,53220,0,0 +139375,29029,0,53221,0,0 +139376,29030,0,53222,0,0 +139377,29031,0,53223,0,0 +139378,29032,0,53224,0,0 +139379,29033,0,53221,0,0 +139380,29034,0,53224,0,0 +139381,29035,0,53220,0,0 +139382,29036,0,53222,0,0 +139383,29037,0,53223,0,0 +139384,29038,0,53221,0,0 +139385,29039,0,53224,0,0 +139386,29040,0,53220,0,0 +139388,29042,0,53222,0,0 +139389,29043,0,53223,0,0 +139390,29044,0,53225,0,0 +139391,29045,0,53226,0,0 +139392,29046,0,53227,0,0 +139393,29047,0,53228,0,0 +139394,29048,0,53229,0,0 +139395,29049,0,53230,0,0 +139396,29050,0,53231,0,0 +139399,29053,0,53232,0,0 +139400,29054,0,53233,0,0 +139401,29055,0,53234,0,0 +139402,29056,0,53231,0,0 +139403,29057,0,53235,0,0 +139404,29058,0,53230,0,0 +139405,29059,0,53232,0,0 +139406,29060,0,53233,0,0 +139407,29061,0,53236,0,0 +139408,29062,0,53237,0,0 +139409,29063,0,53238,0,0 +139410,29064,0,53239,0,0 +139411,29065,0,53240,0,0 +139412,29066,0,53237,0,0 +139413,29067,0,53240,0,0 +139414,29068,0,53236,0,0 +139415,29069,0,53238,0,0 +139416,29070,0,53239,0,0 +139417,29071,0,53237,0,0 +139418,29072,0,53240,0,0 +139419,29073,0,53236,0,0 +139420,29074,0,53238,0,0 +139421,29075,0,53239,0,0 +139422,29076,0,53241,0,0 +139423,29077,0,53242,0,0 +139424,29078,0,53243,0,0 +139425,29079,0,53244,0,0 +139426,29080,0,53245,0,0 +139427,29081,0,53246,0,0 +139428,29082,0,53247,0,0 +139429,29083,0,53248,0,0 +139430,29084,0,53249,0,0 +139431,29085,0,53250,0,0 +139432,29086,0,53251,0,0 +139433,29087,0,53252,0,0 +139434,29088,0,53253,0,0 +139435,29089,0,53254,0,0 +139436,29090,0,53255,0,0 +139437,29091,0,53252,0,0 +139438,29092,0,53255,0,0 +139439,29093,0,53251,0,0 +139440,29094,0,53253,0,0 +139441,29095,0,53254,0,0 +139442,29096,0,53252,0,0 +139443,29097,0,53255,0,0 +139444,29098,0,53251,0,0 +139445,29099,0,53253,0,0 +139446,29100,0,53254,0,0 +139453,29107,0,53256,0,0 +139454,29108,0,46273,0,0 +139455,29109,0,49997,0,0 +139460,29114,0,53257,0,0 +139461,29115,0,53258,0,0 +139462,29116,0,46836,0,0 +139463,29117,0,53259,0,0 +139467,29121,0,53260,0,0 +139468,29122,0,52529,0,0 +139470,29124,0,53261,0,0 +139471,29125,0,53262,0,0 +139473,29127,0,53263,0,0 +139475,29129,0,53264,0,0 +139476,29130,0,53265,0,0 +139477,29131,0,51582,0,0 +139479,29133,0,51853,0,0 +139480,29134,0,53266,0,0 +139481,29135,0,53267,0,0 +139482,29136,0,53268,0,0 +139483,29137,0,50931,0,0 +139484,29138,0,53269,0,0 +139485,29139,0,49475,0,0 +139486,29140,0,51462,0,0 +139487,29141,0,53270,0,0 +139488,29142,0,53271,0,0 +139493,29147,0,50573,0,0 +139494,29148,0,53274,0,0 +139495,29149,0,47423,0,0 +139496,29150,0,53275,0,0 +139497,29151,0,53276,0,0 +139498,29152,0,50943,0,0 +139499,29153,0,51301,0,0 +139501,29155,0,53277,0,0 +139502,29156,0,53278,0,0 +139511,29165,0,53279,0,0 +139512,29166,0,53280,0,0 +139513,29167,0,53281,0,0 +139516,29170,0,53282,0,0 +139517,29171,0,53283,0,0 +139520,29174,0,53284,0,0 +139521,29175,0,53285,0,0 +139522,29176,0,53286,0,0 +139526,29180,0,53287,0,0 +139528,29182,0,53288,0,0 +139529,29183,0,53289,0,0 +139530,29184,0,48859,0,0 +139531,29185,0,53290,0,0 +139546,29200,0,46626,0,0 +139547,29201,0,53291,0,0 +139548,29202,0,53213,0,0 +139549,29203,0,53292,0,0 +139550,29204,0,53293,0,0 +139583,29237,0,53294,0,0 +139584,29238,0,53295,0,0 +139585,29239,0,53296,0,0 +139586,29240,0,53297,0,0 +139587,29241,0,53298,0,0 +139588,29242,0,53299,0,0 +139589,29243,0,53300,0,0 +139590,29244,0,53301,0,0 +139591,29245,0,53302,0,0 +139592,29246,0,53303,0,0 +139593,29247,0,53304,0,0 +139594,29248,0,53305,0,0 +139595,29249,0,53306,0,0 +139596,29250,0,53307,0,0 +139597,29251,0,53308,0,0 +139598,29252,0,53309,0,0 +139599,29253,0,53310,0,0 +139600,29254,0,53311,0,0 +139601,29255,0,53312,0,0 +139602,29256,0,51766,0,0 +139603,29257,0,53313,0,0 +139604,29258,0,53314,0,0 +139605,29259,0,53315,0,0 +139607,29261,0,53316,0,0 +139608,29262,0,53317,0,0 +139609,29263,0,53318,0,0 +139610,29264,0,53319,0,0 +139611,29265,0,53320,0,0 +139612,29266,0,53321,0,0 +139613,29267,0,53322,0,0 +139614,29268,0,53323,0,0 +139615,29269,0,53324,0,0 +139616,29270,0,53325,0,0 +139617,29271,0,53326,0,0 +139618,29272,0,53327,0,0 +139619,29273,0,49266,0,0 +139620,29274,0,53328,0,0 +139621,29275,0,53329,0,0 +139656,29310,0,53330,0,0 +139658,29312,0,52302,0,0 +139659,29313,0,53331,0,0 +139660,29314,0,48251,0,0 +139661,29315,0,48885,0,0 +139662,29316,0,53332,0,0 +139663,29317,0,53333,0,0 +139664,29318,0,52999,0,0 +139665,29319,0,47881,0,0 +139671,29325,0,53334,0,0 +139672,29326,0,53335,0,0 +139673,29327,0,53336,0,0 +139674,29328,0,53337,0,0 +139675,29329,0,53338,0,0 +139676,29330,0,53339,0,0 +139678,29332,0,52031,0,0 +139683,29337,0,53340,0,0 +139685,29339,0,53341,0,0 +139686,29340,0,51052,0,0 +139687,29341,0,49677,0,0 +139688,29342,0,50901,0,0 +139689,29343,0,48251,0,0 +139690,29344,0,49976,0,0 +139691,29345,0,53342,0,0 +139692,29346,0,53343,0,0 +139694,29348,0,53344,0,0 +139696,29350,0,51844,0,0 +139697,29351,0,53345,0,0 +139699,29353,0,53346,0,0 +139700,29354,0,47170,0,0 +139701,29355,0,53347,0,0 +139702,29356,0,53348,0,0 +139703,29357,0,53349,0,0 +139704,29358,0,53350,0,0 +139705,29359,0,53351,0,0 +139706,29360,0,53352,0,0 +139708,29362,0,53353,0,0 +139715,29369,0,53354,0,0 +139717,29371,0,53355,0,0 +139718,29372,0,53356,0,0 +139721,29375,0,52884,0,0 +139723,29377,0,53357,0,0 +139724,29378,0,53358,0,0 +139726,29380,0,51193,0,0 +139728,29382,0,53359,0,0 +139731,29385,0,51854,0,0 +139737,29391,0,53360,0,0 +139745,29399,0,48939,0,0 +139746,29400,0,48452,0,0 +139749,29403,0,53361,0,0 +139750,29404,0,53362,0,0 +139751,29405,0,53362,0,0 +139752,29406,0,53363,0,0 +139753,29407,0,53364,0,0 +139754,29408,0,53365,0,0 +139755,29409,0,53366,0,0 +139756,29410,0,53367,0,0 +139759,29413,0,53368,0,0 +139760,29414,0,53369,0,0 +139761,29415,0,53370,0,0 +139762,29416,0,53371,0,0 +139763,29417,0,53372,0,0 +139764,29418,0,53373,0,0 +139765,29419,0,53374,0,0 +139766,29420,0,53375,0,0 +139767,29421,0,53376,0,0 +139768,29422,0,53377,0,0 +139769,29423,0,53378,0,0 +139770,29424,0,53379,0,0 +139776,29430,0,53380,0,0 +139777,29431,0,53381,0,0 +139778,29432,0,53382,0,0 +139779,29433,0,53383,0,0 +139781,29435,0,53384,0,0 +139782,29436,0,53385,0,0 +139783,29437,0,53386,0,0 +139784,29438,0,53387,0,0 +139785,29439,0,53388,0,0 +139786,29440,0,53389,0,0 +139787,29441,0,53390,0,0 +139788,29442,0,53391,0,0 +139790,29444,0,53392,0,0 +139792,29446,0,53393,0,0 +139801,29455,0,50972,0,0 +139802,29456,0,52358,0,0 +139803,29457,0,52432,0,0 +139804,29458,0,53394,0,0 +139808,29462,0,53395,0,0 +139809,29463,0,53396,0,0 +139825,29479,0,53397,0,0 +139830,29484,0,52896,0,0 +139835,29489,0,53402,0,0 +139836,29490,0,53404,0,0 +139837,29491,0,53406,0,0 +139838,29492,0,53407,0,0 +139839,29493,0,53408,0,0 +139840,29494,0,53409,0,0 +139841,29495,0,47070,0,0 +139842,29496,0,53410,0,0 +139843,29497,0,53411,0,0 +139844,29498,0,51863,0,0 +139845,29499,0,53412,0,0 +139846,29500,0,53413,0,0 +139848,29502,0,53414,0,0 +139849,29503,0,53415,0,0 +139850,29504,0,53416,0,0 +139851,29505,0,53417,0,0 +139852,29506,0,53418,0,0 +139853,29507,0,53419,0,0 +139854,29508,0,53420,0,0 +139855,29509,0,53421,0,0 +139856,29510,0,53422,0,0 +139857,29511,0,53423,0,0 +139858,29512,0,53424,0,0 +139860,29514,0,53425,0,0 +139861,29515,0,53426,0,0 +139862,29516,0,53427,0,0 +139863,29517,0,53428,0,0 +139864,29518,0,46110,0,0 +139865,29519,0,53429,0,0 +139866,29520,0,53430,0,0 +139867,29521,0,53431,0,0 +139868,29522,0,53432,0,0 +139869,29523,0,53433,0,0 +139870,29524,0,53434,0,0 +139871,29525,0,53435,0,0 +139872,29526,0,53436,0,0 +139873,29527,0,53437,0,0 +139883,29537,0,53438,0,0 +139884,29538,0,53439,0,0 +139887,29541,0,53440,0,0 +139888,29542,0,53441,0,0 +139889,29543,0,53442,0,0 +139890,29544,0,53443,0,0 +139929,29583,0,47102,0,0 +139940,29594,0,50471,0,0 +139941,29595,0,50472,0,0 +139942,29596,0,50474,0,0 +139943,29597,0,50475,0,0 +139944,29598,0,50473,0,0 +139945,29599,0,50476,0,0 +139946,29600,0,53444,0,0 +139947,29601,0,53445,0,0 +139948,29602,0,52535,0,0 +139949,29603,0,52672,0,0 +139950,29604,0,53167,0,0 +139951,29605,0,53169,0,0 +139952,29606,0,50520,0,0 +139953,29607,0,50521,0,0 +139954,29608,0,50524,0,0 +139955,29609,0,50522,0,0 +139956,29610,0,50523,0,0 +139957,29611,0,50525,0,0 +139958,29612,0,53446,0,0 +139959,29613,0,53447,0,0 +139960,29614,0,53448,0,0 +139961,29615,0,53449,0,0 +139962,29616,0,53167,0,0 +139963,29617,0,53169,0,0 +139965,29619,0,53450,0,0 +139966,29620,0,53451,0,0 +139967,29621,0,52382,0,0 +139968,29622,0,53452,0,0 +139969,29623,0,52390,0,0 +139972,29626,0,53453,0,0 +139973,29627,0,53454,0,0 +139974,29628,0,53455,0,0 +139975,29629,0,53456,0,0 +139976,29630,0,52433,0,0 +139977,29631,0,52131,0,0 +139978,29632,0,53457,0,0 +139979,29633,0,52343,0,0 +139980,29634,0,53458,0,0 +139981,29635,0,53286,0,0 +139982,29636,0,53459,0,0 +139983,29637,0,53460,0,0 +139984,29638,0,52334,0,0 +139985,29639,0,53461,0,0 +139986,29640,0,53462,0,0 +139987,29641,0,52333,0,0 +139988,29642,0,53463,0,0 +139989,29643,0,53464,0,0 +139990,29644,0,52102,0,0 +139991,29645,0,53465,0,0 +139992,29646,0,52130,0,0 +139993,29647,0,52361,0,0 +139994,29648,0,53466,0,0 +139995,29649,0,53467,0,0 +139996,29650,0,53468,0,0 +139997,29651,0,52387,0,0 +139998,29652,0,52392,0,0 +139999,29653,0,53469,0,0 +140000,29654,0,52383,0,0 +140001,29655,0,52389,0,0 +140002,29656,0,53470,0,0 +140003,29657,0,53471,0,0 +140004,29658,0,53472,0,0 +140005,29659,0,53473,0,0 +140006,29660,0,53474,0,0 +140007,29661,0,53475,0,0 +140008,29662,0,53476,0,0 +140009,29663,0,53477,0,0 +140011,29665,0,53478,0,0 +140012,29666,0,52143,0,0 +140013,29667,0,52360,0,0 +140014,29668,0,53479,0,0 +140016,29670,0,52358,0,0 +140017,29671,0,52045,0,0 +140022,29676,0,52104,0,0 +140024,29678,0,52369,0,0 +140025,29679,0,53480,0,0 +140026,29680,0,52133,0,0 +140027,29681,0,53481,0,0 +140029,29683,0,53482,0,0 +140031,29685,0,52372,0,0 +140032,29686,0,52370,0,0 +140033,29687,0,53483,0,0 +140034,29688,0,53484,0,0 +140036,29690,0,53485,0,0 +140038,29692,0,53486,0,0 +140040,29694,0,52371,0,0 +140041,29695,0,53487,0,0 +140042,29696,0,52671,0,0 +140043,29697,0,53488,0,0 +140051,29705,0,53489,0,0 +140052,29706,0,53490,0,0 +140053,29707,0,53491,0,0 +140054,29708,0,53492,0,0 +140055,29709,0,53493,0,0 +140056,29710,0,53494,0,0 +140057,29711,0,53495,0,0 +140058,29712,0,53496,0,0 +140061,29715,0,53497,0,0 +140062,29716,0,51853,0,0 +140094,29748,0,52767,0,0 +140098,29752,0,51719,0,0 +140117,29771,0,47981,0,0 +140118,29772,0,46780,0,0 +140119,29773,0,49054,0,0 +140120,29774,0,49867,0,0 +140123,29777,0,52332,0,0 +140125,29779,0,51049,0,0 +140126,29780,0,49537,0,0 +140127,29781,0,50858,0,0 +140128,29782,0,46944,0,0 +140129,29783,0,49762,0,0 +140130,29784,0,48041,0,0 +140131,29785,0,50288,0,0 +140132,29786,0,49116,0,0 +140133,29787,0,48999,0,0 +140134,29788,0,48236,0,0 +140135,29789,0,48864,0,0 +140137,29791,0,48620,0,0 +140138,29792,0,49084,0,0 +140150,29804,0,48740,0,0 +140152,29806,0,47084,0,0 +140153,29807,0,49163,0,0 +140154,29808,0,49647,0,0 +140155,29809,0,49247,0,0 +140156,29810,0,48585,0,0 +140157,29811,0,47655,0,0 +140158,29812,0,49920,0,0 +140159,29813,0,48036,0,0 +140162,29816,0,51193,0,0 +140165,29819,0,53498,0,0 +140166,29820,0,53498,0,0 +140167,29821,0,53161,0,0 +140169,29823,0,53226,0,0 +140170,29824,0,53226,0,0 +140171,29825,0,51827,0,0 +140172,29826,0,51827,0,0 +140173,29827,0,51827,0,0 +140174,29828,0,51827,0,0 +140175,29829,0,53216,0,0 +140176,29830,0,53216,0,0 +140177,29831,0,53109,0,0 +140178,29832,0,53109,0,0 +140179,29833,0,53138,0,0 +140180,29834,0,53138,0,0 +140181,29835,0,51721,0,0 +140182,29836,0,51721,0,0 +140201,29855,0,53242,0,0 +140211,29865,0,53242,0,0 +140221,29875,0,53205,0,0 +140222,29876,0,53205,0,0 +140224,29878,0,51776,0,0 +140225,29879,0,51776,0,0 +140226,29880,0,53138,0,0 +140227,29881,0,53138,0,0 +140228,29882,0,53247,0,0 +140229,29883,0,53247,0,0 +140230,29884,0,53044,0,0 +140231,29885,0,46427,0,0 +140234,29888,0,53044,0,0 +140236,29890,0,51752,0,0 +140237,29891,0,51752,0,0 +140238,29892,0,51752,0,0 +140239,29893,0,51752,0,0 +140240,29894,0,52675,0,0 +140241,29895,0,52675,0,0 +140242,29896,0,53221,0,0 +140243,29897,0,53221,0,0 +140244,29898,0,51736,0,0 +140245,29899,0,51736,0,0 +140246,29900,0,51961,0,0 +140253,29907,0,53499,0,0 +140254,29908,0,50074,0,0 +140255,29909,0,49250,0,0 +140256,29910,0,45825,0,0 +140257,29911,0,49459,0,0 +140259,29913,0,49415,0,0 +140260,29914,0,48401,0,0 +140261,29915,0,53500,0,0 +140262,29916,0,52405,0,0 +140263,29917,0,53462,0,0 +140264,29918,0,53501,0,0 +140265,29919,0,53460,0,0 +140267,29921,0,53502,0,0 +140269,29923,0,53503,0,0 +140270,29924,0,53504,0,0 +140271,29925,0,53505,0,0 +140272,29926,0,53506,0,0 +140273,29927,0,46966,0,0 +140274,29928,0,50400,0,0 +140275,29929,0,51584,0,0 +140276,29930,0,53507,0,0 +140277,29931,0,53508,0,0 +140278,29932,0,48570,0,0 +140279,29933,0,48574,0,0 +140280,29934,0,48135,0,0 +140281,29935,0,53263,0,0 +140282,29936,0,53509,0,0 +140283,29937,0,53173,0,0 +140284,29938,0,53510,0,0 +140285,29939,0,53511,0,0 +140286,29940,0,46614,0,0 +140287,29941,0,53512,0,0 +140288,29942,0,52473,0,0 +140289,29943,0,53513,0,0 +140290,29944,0,53514,0,0 +140291,29945,0,53515,0,0 +140292,29946,0,49054,0,0 +140293,29947,0,53516,0,0 +140294,29948,0,53517,0,0 +140295,29949,0,53518,0,0 +140296,29950,0,53519,0,0 +140297,29951,0,53520,0,0 +140300,29954,0,48579,0,0 +140301,29955,0,53521,0,0 +140305,29959,0,53522,0,0 +140308,29962,0,53523,0,0 +140310,29964,0,47983,0,0 +140311,29965,0,53524,0,0 +140312,29966,0,53525,0,0 +140313,29967,0,53526,0,0 +140314,29968,0,47893,0,0 +140315,29969,0,48873,0,0 +140316,29970,0,53527,0,0 +140317,29971,0,49965,0,0 +140318,29972,0,53528,0,0 +140319,29973,0,53529,0,0 +140320,29974,0,53530,0,0 +140321,29975,0,49960,0,0 +140322,29976,0,53531,0,0 +140323,29977,0,53532,0,0 +140324,29978,0,53533,0,0 +140325,29979,0,45871,0,0 +140326,29980,0,49848,0,0 +140327,29981,0,53534,0,0 +140328,29982,0,53535,0,0 +140329,29983,0,53536,0,0 +140330,29984,0,53537,0,0 +140331,29985,0,53538,0,0 +140332,29986,0,53539,0,0 +140333,29987,0,53540,0,0 +140334,29988,0,53541,0,0 +140335,29989,0,53542,0,0 +140336,29990,0,53543,0,0 +140337,29991,0,53544,0,0 +140338,29992,0,53545,0,0 +140339,29993,0,53546,0,0 +140340,29994,0,53547,0,0 +140341,29995,0,53548,0,0 +140342,29996,0,53549,0,0 +140344,29998,0,53550,0,0 +140345,29999,0,53551,0,0 +140346,30000,0,47174,0,0 +140347,30001,0,53552,0,0 +140348,30002,0,49165,0,0 +140349,30003,0,47434,0,0 +140350,30004,0,53553,0,0 +140351,30005,0,48438,0,0 +140355,30009,0,53554,0,0 +140356,30010,0,53555,0,0 +140357,30011,0,53484,0,0 +140358,30012,0,53486,0,0 +140359,30013,0,53556,0,0 +140360,30014,0,53557,0,0 +140362,30016,0,53558,0,0 +140365,30019,0,49397,0,0 +140366,30020,0,53559,0,0 +140367,30021,0,53560,0,0 +140370,30024,0,53561,0,0 +140371,30025,0,52668,0,0 +140372,30026,0,53562,0,0 +140373,30027,0,53563,0,0 +140375,30029,0,53564,0,0 +140376,30030,0,53565,0,0 +140377,30031,0,53566,0,0 +140378,30032,0,53567,0,0 +140379,30033,0,53563,0,0 +140380,30034,0,53524,0,0 +140381,30035,0,53568,0,0 +140382,30036,0,53569,0,0 +140383,30037,0,53570,0,0 +140384,30038,0,53571,0,0 +140385,30039,0,53572,0,0 +140386,30040,0,53573,0,0 +140387,30041,0,53574,0,0 +140388,30042,0,53575,0,0 +140389,30043,0,53576,0,0 +140390,30044,0,53577,0,0 +140391,30045,0,53578,0,0 +140392,30046,0,53579,0,0 +140393,30047,0,53580,0,0 +140394,30048,0,53581,0,0 +140395,30049,0,53582,0,0 +140396,30050,0,53583,0,0 +140399,30053,0,53584,0,0 +140400,30054,0,53585,0,0 +140401,30055,0,53586,0,0 +140402,30056,0,53587,0,0 +140403,30057,0,53588,0,0 +140404,30058,0,53589,0,0 +140406,30060,0,53572,0,0 +140408,30062,0,53590,0,0 +140410,30064,0,53591,0,0 +140411,30065,0,53592,0,0 +140412,30066,0,53576,0,0 +140413,30067,0,53593,0,0 +140414,30068,0,53594,0,0 +140415,30069,0,53595,0,0 +140416,30070,0,53596,0,0 +140417,30071,0,53597,0,0 +140418,30072,0,52376,0,0 +140419,30073,0,48384,0,0 +140420,30074,0,53598,0,0 +140421,30075,0,53053,0,0 +140422,30076,0,53599,0,0 +140423,30077,0,53600,0,0 +140424,30078,0,53601,0,0 +140425,30079,0,53602,0,0 +140426,30080,0,53535,0,0 +140427,30081,0,53603,0,0 +140428,30082,0,52822,0,0 +140430,30084,0,53604,0,0 +140431,30085,0,53605,0,0 +140432,30086,0,53606,0,0 +140433,30087,0,53607,0,0 +140434,30088,0,53472,0,0 +140435,30089,0,53608,0,0 +140436,30090,0,52894,0,0 +140437,30091,0,53609,0,0 +140438,30092,0,53610,0,0 +140439,30093,0,51130,0,0 +140441,30095,0,53611,0,0 +140442,30096,0,53567,0,0 +140443,30097,0,53612,0,0 +140444,30098,0,52798,0,0 +140446,30100,0,53568,0,0 +140447,30101,0,53053,0,0 +140448,30102,0,53613,0,0 +140449,30103,0,53614,0,0 +140450,30104,0,53520,0,0 +140451,30105,0,53615,0,0 +140452,30106,0,53616,0,0 +140453,30107,0,53617,0,0 +140454,30108,0,53618,0,0 +140457,30111,0,53619,0,0 +140458,30112,0,53620,0,0 +140459,30113,0,53621,0,0 +140460,30114,0,53622,0,0 +140461,30115,0,53623,0,0 +140462,30116,0,53624,0,0 +140463,30117,0,53625,0,0 +140464,30118,0,53621,0,0 +140465,30119,0,53622,0,0 +140466,30120,0,53623,0,0 +140467,30121,0,53624,0,0 +140468,30122,0,53625,0,0 +140469,30123,0,53626,0,0 +140470,30124,0,53627,0,0 +140471,30125,0,53628,0,0 +140472,30126,0,53629,0,0 +140473,30127,0,53630,0,0 +140474,30128,0,50886,0,0 +140475,30129,0,53626,0,0 +140476,30130,0,53627,0,0 +140477,30131,0,53628,0,0 +140478,30132,0,53629,0,0 +140479,30133,0,53630,0,0 +140480,30134,0,53626,0,0 +140481,30135,0,53627,0,0 +140482,30136,0,53628,0,0 +140483,30137,0,53629,0,0 +140484,30138,0,53630,0,0 +140485,30139,0,53631,0,0 +140486,30140,0,53632,0,0 +140487,30141,0,53633,0,0 +140488,30142,0,53634,0,0 +140489,30143,0,53635,0,0 +140490,30144,0,53636,0,0 +140491,30145,0,53637,0,0 +140492,30146,0,53638,0,0 +140493,30147,0,53639,0,0 +140494,30148,0,53640,0,0 +140495,30149,0,53641,0,0 +140496,30150,0,53642,0,0 +140497,30151,0,53643,0,0 +140498,30152,0,53644,0,0 +140499,30153,0,53645,0,0 +140500,30154,0,53646,0,0 +140505,30159,0,53642,0,0 +140506,30160,0,53643,0,0 +140507,30161,0,53647,0,0 +140508,30162,0,53645,0,0 +140509,30163,0,53646,0,0 +140510,30164,0,53648,0,0 +140511,30165,0,53649,0,0 +140512,30166,0,53650,0,0 +140513,30167,0,53651,0,0 +140514,30168,0,53652,0,0 +140515,30169,0,53648,0,0 +140516,30170,0,53649,0,0 +140517,30171,0,53650,0,0 +140518,30172,0,53651,0,0 +140519,30173,0,53652,0,0 +140522,30176,0,53653,0,0 +140524,30178,0,53654,0,0 +140525,30179,0,51939,0,0 +140526,30180,0,53655,0,0 +140527,30181,0,51012,0,0 +140528,30182,0,51008,0,0 +140531,30185,0,53648,0,0 +140532,30186,0,52167,0,0 +140533,30187,0,52166,0,0 +140534,30188,0,52169,0,0 +140535,30189,0,53649,0,0 +140536,30190,0,53656,0,0 +140538,30192,0,53651,0,0 +140540,30194,0,53652,0,0 +140542,30196,0,53657,0,0 +140546,30200,0,52165,0,0 +140547,30201,0,52168,0,0 +140548,30202,0,51266,0,0 +140549,30203,0,51916,0,0 +140550,30204,0,53658,0,0 +140551,30205,0,53659,0,0 +140552,30206,0,53660,0,0 +140553,30207,0,53661,0,0 +140554,30208,0,50938,0,0 +140555,30209,0,50937,0,0 +140556,30210,0,53662,0,0 +140557,30211,0,53663,0,0 +140558,30212,0,53664,0,0 +140559,30213,0,53665,0,0 +140560,30214,0,53666,0,0 +140561,30215,0,53667,0,0 +140562,30216,0,53668,0,0 +140563,30217,0,53669,0,0 +140564,30218,0,48360,0,0 +140565,30219,0,53670,0,0 +140566,30220,0,53671,0,0 +140567,30221,0,53672,0,0 +140568,30222,0,53668,0,0 +140569,30223,0,53669,0,0 +140570,30224,0,47944,0,0 +140571,30225,0,49951,0,0 +140572,30226,0,46419,0,0 +140573,30227,0,53029,0,0 +140574,30228,0,53673,0,0 +140575,30229,0,53671,0,0 +140576,30230,0,53672,0,0 +140577,30231,0,53668,0,0 +140578,30232,0,53669,0,0 +140579,30233,0,53670,0,0 +140580,30234,0,53671,0,0 +140581,30235,0,53672,0,0 +140598,30252,0,47816,0,0 +140599,30253,0,48188,0,0 +140600,30254,0,48837,0,0 +140601,30255,0,49822,0,0 +140602,30256,0,53674,0,0 +140603,30257,0,52463,0,0 +140604,30258,0,48723,0,0 +140607,30261,0,53675,0,0 +140608,30262,0,53676,0,0 +140609,30263,0,53677,0,0 +140610,30264,0,53678,0,0 +140611,30265,0,53679,0,0 +140612,30266,0,53680,0,0 +140613,30267,0,53681,0,0 +140614,30268,0,48248,0,0 +140615,30269,0,53682,0,0 +140616,30270,0,48854,0,0 +140617,30271,0,53683,0,0 +140618,30272,0,47983,0,0 +140619,30273,0,47777,0,0 +140620,30274,0,53684,0,0 +140621,30275,0,51574,0,0 +140623,30277,0,47491,0,0 +140624,30278,0,51301,0,0 +140625,30279,0,46222,0,0 +140630,30284,0,53685,0,0 +140631,30285,0,47355,0,0 +140632,30286,0,53686,0,0 +140633,30287,0,48264,0,0 +140634,30288,0,53687,0,0 +140635,30289,0,49816,0,0 +140636,30290,0,48838,0,0 +140637,30291,0,53688,0,0 +140640,30294,0,53689,0,0 +140641,30295,0,46945,0,0 +140642,30296,0,53690,0,0 +140643,30297,0,53691,0,0 +140644,30298,0,49391,0,0 +140645,30299,0,51485,0,0 +140656,30310,0,53692,0,0 +140657,30311,0,53693,0,0 +140658,30312,0,53130,0,0 +140659,30313,0,53147,0,0 +140660,30314,0,53126,0,0 +140662,30316,0,52893,0,0 +140663,30317,0,53549,0,0 +140664,30318,0,52804,0,0 +140665,30319,0,53499,0,0 +140674,30328,0,53694,0,0 +140675,30329,0,53695,0,0 +140676,30330,0,48837,0,0 +140677,30331,0,47190,0,0 +140678,30332,0,47123,0,0 +140679,30333,0,53696,0,0 +140680,30334,0,53697,0,0 +140681,30335,0,53698,0,0 +140682,30336,0,53699,0,0 +140683,30337,0,49915,0,0 +140684,30338,0,49314,0,0 +140687,30341,0,47138,0,0 +140688,30342,0,47716,0,0 +140698,30352,0,49911,0,0 +140708,30362,0,53701,0,0 +140709,30363,0,45906,0,0 +140710,30364,0,53702,0,0 +140713,30367,0,53703,0,0 +140714,30368,0,53704,0,0 +140715,30369,0,48275,0,0 +140716,30370,0,53705,0,0 +140717,30371,0,53706,0,0 +140718,30372,0,49994,0,0 +140719,30373,0,47319,0,0 +140720,30374,0,52456,0,0 +140721,30375,0,49961,0,0 +140722,30376,0,53707,0,0 +140725,30379,0,53708,0,0 +140726,30380,0,48573,0,0 +140727,30381,0,49923,0,0 +140728,30382,0,50895,0,0 +140729,30383,0,49694,0,0 +140730,30384,0,47365,0,0 +140731,30385,0,47104,0,0 +140732,30386,0,51477,0,0 +140733,30387,0,53549,0,0 +140734,30388,0,52893,0,0 +140735,30389,0,53130,0,0 +140736,30390,0,52804,0,0 +140737,30391,0,53126,0,0 +140738,30392,0,53147,0,0 +140739,30393,0,53693,0,0 +140740,30394,0,47805,0,0 +140741,30395,0,50068,0,0 +140742,30396,0,49086,0,0 +140743,30397,0,52670,0,0 +140744,30398,0,53709,0,0 +140745,30399,0,50005,0,0 +140746,30400,0,52450,0,0 +140747,30401,0,53710,0,0 +140748,30402,0,49164,0,0 +140749,30403,0,53711,0,0 +140751,30405,0,53712,0,0 +140752,30406,0,53713,0,0 +140753,30407,0,53597,0,0 +140754,30408,0,53714,0,0 +140755,30409,0,52576,0,0 +140756,30410,0,53715,0,0 +140757,30411,0,53716,0,0 +140758,30412,0,53717,0,0 +140760,30414,0,53138,0,0 +140764,30418,0,53718,0,0 +140769,30423,0,53719,0,0 +140770,30424,0,53720,0,0 +140785,30439,0,53721,0,0 +140786,30440,0,53722,0,0 +140787,30441,0,53723,0,0 +140791,30445,0,47379,0,0 +140798,30452,0,53724,0,0 +140801,30455,0,50932,0,0 +140802,30456,0,53725,0,0 +140805,30459,0,53726,0,0 +140806,30460,0,52080,0,0 +140807,30461,0,52510,0,0 +140809,30463,0,47925,0,0 +140810,30464,0,53727,0,0 +140811,30465,0,53728,0,0 +140828,30482,0,53729,0,0 +140830,30484,0,52827,0,0 +140831,30485,0,53730,0,0 +140832,30486,0,53731,0,0 +140833,30487,0,53732,0,0 +140834,30488,0,53733,0,0 +140835,30489,0,53734,0,0 +140836,30490,0,53735,0,0 +140837,30491,0,53603,0,0 +140838,30492,0,50928,0,0 +140839,30493,0,50928,0,0 +140840,30494,0,50928,0,0 +140841,30495,0,50928,0,0 +140842,30496,0,49193,0,0 +140843,30497,0,51473,0,0 +140844,30498,0,51814,0,0 +140848,30502,0,53478,0,0 +140850,30504,0,47958,0,0 +140851,30505,0,47731,0,0 +140860,30514,0,50754,0,0 +140861,30515,0,53736,0,0 +140862,30516,0,45999,0,0 +140863,30517,0,48105,0,0 +140864,30518,0,47936,0,0 +140865,30519,0,46311,0,0 +140866,30520,0,47216,0,0 +140867,30521,0,48630,0,0 +140868,30522,0,45825,0,0 +140869,30523,0,47816,0,0 +140874,30528,0,51752,0,0 +140877,30531,0,53737,0,0 +140878,30532,0,52107,0,0 +140879,30533,0,52110,0,0 +140880,30534,0,53738,0,0 +140881,30535,0,53739,0,0 +140882,30536,0,53740,0,0 +140883,30537,0,52783,0,0 +140884,30538,0,52784,0,0 +140887,30541,0,52119,0,0 +140889,30543,0,53741,0,0 +140903,30557,0,53742,0,0 +140914,30568,0,53031,0,0 +140915,30569,0,46954,0,0 +140916,30570,0,53743,0,0 +140922,30576,0,53744,0,0 +140923,30577,0,53745,0,0 +140924,30578,0,53746,0,0 +140926,30580,0,52405,0,0 +140943,30597,0,53743,0,0 +140945,30599,0,53031,0,0 +140957,30611,0,46426,0,0 +140958,30612,0,52812,0,0 +140970,30624,0,53747,0,0 +140971,30625,0,53748,0,0 +140982,30636,0,52363,0,0 +140987,30641,0,53749,0,0 +140988,30642,0,47170,0,0 +140989,30643,0,53040,0,0 +140990,30644,0,53750,0,0 +140993,30647,0,53751,0,0 +140994,30648,0,53752,0,0 +141006,30660,0,53753,0,0 +141007,30661,0,53754,0,0 +141008,30662,0,52707,0,0 +141014,30668,0,51773,0,0 +141015,30669,0,53755,0,0 +141016,30670,0,53756,0,0 +141017,30671,0,53757,0,0 +141019,30673,0,53083,0,0 +141020,30674,0,51748,0,0 +141021,30675,0,53083,0,0 +141022,30676,0,47113,0,0 +141023,30677,0,53758,0,0 +141024,30678,0,51727,0,0 +141026,30680,0,53212,0,0 +141027,30681,0,53759,0,0 +141028,30682,0,53158,0,0 +141029,30683,0,53749,0,0 +141030,30684,0,53289,0,0 +141031,30685,0,53437,0,0 +141032,30686,0,52990,0,0 +141033,30687,0,51988,0,0 +141043,30697,0,53760,0,0 +141044,30698,0,53761,0,0 +141045,30699,0,53762,0,0 +141051,30705,0,50917,0,0 +141053,30707,0,47659,0,0 +141054,30708,0,50197,0,0 +141055,30709,0,48265,0,0 +141060,30714,0,53763,0,0 +141061,30715,0,53764,0,0 +141064,30718,0,45720,0,0 +141065,30719,0,53765,0,0 +141067,30721,0,53765,0,0 +141068,30722,0,53766,0,0 +141069,30723,0,53767,0,0 +141070,30724,0,52888,0,0 +141071,30725,0,53768,0,0 +141073,30727,0,53769,0,0 +141074,30728,0,53770,0,0 +141075,30729,0,50774,0,0 +141076,30730,0,53771,0,0 +141077,30731,0,53772,0,0 +141078,30732,0,53755,0,0 +141079,30733,0,53773,0,0 +141080,30734,0,53774,0,0 +141081,30735,0,48765,0,0 +141083,30737,0,53775,0,0 +141085,30739,0,53776,0,0 +141086,30740,0,53777,0,0 +141087,30741,0,53778,0,0 +141095,30749,0,53479,0,0 +141096,30750,0,53467,0,0 +141097,30751,0,49142,0,0 +141098,30752,0,53779,0,0 +141099,30753,0,53780,0,0 +141100,30754,0,46325,0,0 +141101,30755,0,47491,0,0 +141103,30757,0,53781,0,0 +141104,30758,0,53782,0,0 +141105,30759,0,53783,0,0 +141106,30760,0,53784,0,0 +141107,30761,0,51068,0,0 +141108,30762,0,51062,0,0 +141109,30763,0,53785,0,0 +141110,30764,0,50753,0,0 +141111,30765,0,53786,0,0 +141112,30766,0,50767,0,0 +141113,30767,0,51067,0,0 +141114,30768,0,51210,0,0 +141115,30769,0,49033,0,0 +141116,30770,0,51412,0,0 +141117,30771,0,53787,0,0 +141118,30772,0,52006,0,0 +141119,30773,0,49117,0,0 +141120,30774,0,53788,0,0 +141121,30775,0,53789,0,0 +141122,30776,0,51468,0,0 +141123,30777,0,53790,0,0 +141124,30778,0,49978,0,0 +141125,30779,0,53791,0,0 +141126,30780,0,53792,0,0 +141127,30781,0,53793,0,0 +141130,30784,0,53794,0,0 +141133,30787,0,52882,0,0 +141134,30788,0,52566,0,0 +141135,30789,0,52557,0,0 +141136,30790,0,53795,0,0 +141141,30795,0,53796,0,0 +141147,30801,0,53797,0,0 +141148,30802,0,53798,0,0 +141176,30830,0,50800,0,0 +141177,30831,0,53799,0,0 +141178,30832,0,53800,0,0 +141181,30835,0,53801,0,0 +141182,30836,0,48248,0,0 +141183,30837,0,52076,0,0 +141184,30838,0,52509,0,0 +141185,30839,0,53529,0,0 +141193,30847,0,53802,0,0 +141194,30848,0,53803,0,0 +141201,30855,0,47611,0,0 +141202,30856,0,53804,0,0 +141203,30857,0,46497,0,0 +141205,30859,0,53805,0,0 +141207,30861,0,53806,0,0 +141208,30862,0,53807,0,0 +141209,30863,0,53808,0,0 +141210,30864,0,53809,0,0 +141211,30865,0,53810,0,0 +141212,30866,0,53811,0,0 +141214,30868,0,53812,0,0 +141215,30869,0,53813,0,0 +141216,30870,0,53814,0,0 +141217,30871,0,53815,0,0 +141218,30872,0,53816,0,0 +141219,30873,0,53817,0,0 +141220,30874,0,53818,0,0 +141224,30878,0,53819,0,0 +141225,30879,0,53820,0,0 +141226,30880,0,53821,0,0 +141227,30881,0,53822,0,0 +141228,30882,0,53823,0,0 +141229,30883,0,53824,0,0 +141230,30884,0,53825,0,0 +141231,30885,0,53826,0,0 +141232,30886,0,53827,0,0 +141233,30887,0,53828,0,0 +141234,30888,0,53829,0,0 +141235,30889,0,53830,0,0 +141237,30891,0,53831,0,0 +141238,30892,0,53832,0,0 +141239,30893,0,53833,0,0 +141240,30894,0,53834,0,0 +141241,30895,0,53835,0,0 +141242,30896,0,53836,0,0 +141243,30897,0,53837,0,0 +141244,30898,0,53838,0,0 +141245,30899,0,53839,0,0 +141246,30900,0,53840,0,0 +141247,30901,0,53841,0,0 +141248,30902,0,53842,0,0 +141249,30903,0,53843,0,0 +141250,30904,0,53844,0,0 +141251,30905,0,53845,0,0 +141252,30906,0,53846,0,0 +141253,30907,0,53847,0,0 +141254,30908,0,53848,0,0 +141255,30909,0,53849,0,0 +141256,30910,0,53850,0,0 +141257,30911,0,53851,0,0 +141258,30912,0,53852,0,0 +141259,30913,0,53853,0,0 +141260,30914,0,53854,0,0 +141261,30915,0,53855,0,0 +141262,30916,0,53856,0,0 +141263,30917,0,53857,0,0 +141264,30918,0,53858,0,0 +141265,30919,0,53859,0,0 +141266,30920,0,53860,0,0 +141267,30921,0,53861,0,0 +141268,30922,0,53862,0,0 +141269,30923,0,47103,0,0 +141270,30924,0,53863,0,0 +141271,30925,0,53864,0,0 +141272,30926,0,49468,0,0 +141273,30927,0,53865,0,0 +141274,30928,0,53866,0,0 +141275,30929,0,53867,0,0 +141276,30930,0,53868,0,0 +141277,30931,0,53869,0,0 +141278,30932,0,50308,0,0 +141279,30933,0,53870,0,0 +141280,30934,0,51611,0,0 +141281,30935,0,53871,0,0 +141282,30936,0,51606,0,0 +141283,30937,0,53872,0,0 +141284,30938,0,53873,0,0 +141285,30939,0,53874,0,0 +141286,30940,0,51608,0,0 +141287,30941,0,49982,0,0 +141288,30942,0,53875,0,0 +141289,30943,0,53876,0,0 +141290,30944,0,53521,0,0 +141291,30945,0,53877,0,0 +141292,30946,0,53878,0,0 +141293,30947,0,47211,0,0 +141294,30948,0,52825,0,0 +141295,30949,0,48135,0,0 +141296,30950,0,51110,0,0 +141297,30951,0,53879,0,0 +141298,30952,0,53880,0,0 +141299,30953,0,53881,0,0 +141300,30954,0,53882,0,0 +141301,30955,0,50756,0,0 +141302,30956,0,49058,0,0 +141303,30957,0,50926,0,0 +141304,30958,0,53883,0,0 +141305,30959,0,53884,0,0 +141306,30960,0,53885,0,0 +141307,30961,0,50272,0,0 +141308,30962,0,53886,0,0 +141309,30963,0,53887,0,0 +141310,30964,0,53888,0,0 +141311,30965,0,53889,0,0 +141312,30966,0,53890,0,0 +141313,30967,0,53891,0,0 +141314,30968,0,51232,0,0 +141315,30969,0,53892,0,0 +141316,30970,0,53892,0,0 +141317,30971,0,50962,0,0 +141318,30972,0,53893,0,0 +141320,30974,0,53893,0,0 +141321,30975,0,53894,0,0 +141322,30976,0,53894,0,0 +141323,30977,0,53895,0,0 +141324,30978,0,53895,0,0 +141325,30979,0,53896,0,0 +141326,30980,0,53896,0,0 +141328,30982,0,53897,0,0 +141329,30983,0,53897,0,0 +141330,30984,0,52786,0,0 +141331,30985,0,53897,0,0 +141332,30986,0,52583,0,0 +141333,30987,0,53898,0,0 +141334,30988,0,53898,0,0 +141335,30989,0,53898,0,0 +141336,30990,0,53899,0,0 +141337,30991,0,53899,0,0 +141338,30992,0,53899,0,0 +141339,30993,0,53900,0,0 +141340,30994,0,53900,0,0 +141341,30995,0,53900,0,0 +141342,30996,0,53901,0,0 +141343,30997,0,53901,0,0 +141344,30998,0,53901,0,0 +141345,30999,0,51312,0,0 +141346,31000,0,53902,0,0 +141347,31001,0,53903,0,0 +141348,31002,0,46275,0,0 +141349,31003,0,53904,0,0 +141350,31004,0,53905,0,0 +141351,31005,0,53906,0,0 +141352,31006,0,53907,0,0 +141353,31007,0,53908,0,0 +141354,31008,0,53908,0,0 +141355,31009,0,53909,0,0 +141356,31010,0,45902,0,0 +141357,31011,0,53908,0,0 +141358,31012,0,53910,0,0 +141359,31013,0,53911,0,0 +141360,31014,0,53910,0,0 +141361,31015,0,53910,0,0 +141362,31016,0,53912,0,0 +141363,31017,0,53912,0,0 +141364,31018,0,53912,0,0 +141365,31019,0,53913,0,0 +141366,31020,0,53913,0,0 +141367,31021,0,53913,0,0 +141368,31022,0,53914,0,0 +141369,31023,0,53914,0,0 +141370,31024,0,53914,0,0 +141372,31026,0,53915,0,0 +141373,31027,0,53916,0,0 +141374,31028,0,53917,0,0 +141375,31029,0,53918,0,0 +141376,31030,0,53919,0,0 +141378,31032,0,53920,0,0 +141380,31034,0,53920,0,0 +141381,31035,0,53920,0,0 +141382,31036,0,52671,0,0 +141383,31037,0,53921,0,0 +141384,31038,0,53755,0,0 +141385,31039,0,53921,0,0 +141386,31040,0,53921,0,0 +141387,31041,0,53922,0,0 +141388,31042,0,53922,0,0 +141389,31043,0,53922,0,0 +141390,31044,0,53923,0,0 +141391,31045,0,53924,0,0 +141392,31046,0,53923,0,0 +141393,31047,0,53925,0,0 +141394,31048,0,53925,0,0 +141395,31049,0,53925,0,0 +141396,31050,0,53926,0,0 +141397,31051,0,53927,0,0 +141398,31052,0,53928,0,0 +141399,31053,0,53929,0,0 +141400,31054,0,53930,0,0 +141401,31055,0,53931,0,0 +141402,31056,0,53932,0,0 +141403,31057,0,53933,0,0 +141404,31058,0,53934,0,0 +141405,31059,0,53935,0,0 +141406,31060,0,53936,0,0 +141407,31061,0,53936,0,0 +141408,31062,0,53937,0,0 +141409,31063,0,53938,0,0 +141410,31064,0,53938,0,0 +141411,31065,0,53939,0,0 +141412,31066,0,53939,0,0 +141413,31067,0,53940,0,0 +141414,31068,0,53940,0,0 +141415,31069,0,53941,0,0 +141416,31070,0,53941,0,0 +141417,31071,0,53754,0,0 +141418,31072,0,53724,0,0 +141419,31073,0,53942,0,0 +141421,31075,0,48722,0,0 +141422,31076,0,48722,0,0 +141423,31077,0,48722,0,0 +141424,31078,0,48722,0,0 +141427,31081,0,53763,0,0 +141428,31082,0,52894,0,0 +141429,31083,0,53943,0,0 +141450,31104,0,53944,0,0 +141451,31105,0,53945,0,0 +141452,31106,0,53946,0,0 +141453,31107,0,53947,0,0 +141455,31109,0,53948,0,0 +141456,31110,0,53949,0,0 +141457,31111,0,48630,0,0 +141458,31112,0,53950,0,0 +141460,31114,0,48372,0,0 +141461,31115,0,53951,0,0 +141471,31125,0,52907,0,0 +141472,31126,0,53876,0,0 +141473,31127,0,53952,0,0 +141477,31131,0,52699,0,0 +141479,31133,0,48627,0,0 +141480,31134,0,53953,0,0 +141482,31136,0,52109,0,0 +141483,31137,0,53954,0,0 +141484,31138,0,52625,0,0 +141485,31139,0,53955,0,0 +141486,31140,0,53799,0,0 +141488,31142,0,53956,0,0 +141489,31143,0,49567,0,0 +141491,31145,0,53957,0,0 +141494,31148,0,50573,0,0 +141495,31149,0,52617,0,0 +141496,31150,0,53958,0,0 +141497,31151,0,52935,0,0 +141498,31152,0,48756,0,0 +141499,31153,0,53959,0,0 +141501,31155,0,53960,0,0 +141502,31156,0,48277,0,0 +141503,31157,0,48227,0,0 +141504,31158,0,53961,0,0 +141505,31159,0,48438,0,0 +141506,31160,0,48806,0,0 +141507,31161,0,48773,0,0 +141508,31162,0,47923,0,0 +141509,31163,0,53962,0,0 +141510,31164,0,53963,0,0 +141511,31165,0,53964,0,0 +141512,31166,0,53965,0,0 +141514,31168,0,53966,0,0 +141516,31170,0,49117,0,0 +141518,31172,0,53967,0,0 +141519,31173,0,53331,0,0 +141520,31174,0,53968,0,0 +141521,31175,0,52048,0,0 +141522,31176,0,53969,0,0 +141523,31177,0,53970,0,0 +141525,31179,0,53971,0,0 +141526,31180,0,49961,0,0 +141527,31181,0,53972,0,0 +141528,31182,0,51102,0,0 +141529,31183,0,53973,0,0 +141530,31184,0,53974,0,0 +141531,31185,0,48752,0,0 +141532,31186,0,53909,0,0 +141533,31187,0,49561,0,0 +141534,31188,0,53975,0,0 +141535,31189,0,53976,0,0 +141536,31190,0,48773,0,0 +141537,31191,0,48305,0,0 +141538,31192,0,48696,0,0 +141539,31193,0,53942,0,0 +141541,31195,0,48856,0,0 +141543,31197,0,50154,0,0 +141544,31198,0,53977,0,0 +141545,31199,0,47103,0,0 +141546,31200,0,49283,0,0 +141547,31201,0,53978,0,0 +141548,31202,0,53706,0,0 +141550,31204,0,53979,0,0 +141551,31205,0,51961,0,0 +141552,31206,0,51466,0,0 +141553,31207,0,53980,0,0 +141554,31208,0,53981,0,0 +141555,31209,0,51955,0,0 +141556,31210,0,47286,0,0 +141557,31211,0,48310,0,0 +141558,31212,0,48701,0,0 +141559,31213,0,48726,0,0 +141560,31214,0,51279,0,0 +141561,31215,0,53982,0,0 +141562,31216,0,48642,0,0 +141563,31217,0,53983,0,0 +141564,31218,0,53984,0,0 +141565,31219,0,53985,0,0 +141566,31220,0,53986,0,0 +141567,31221,0,53987,0,0 +141568,31222,0,52563,0,0 +141569,31223,0,53988,0,0 +141570,31224,0,52076,0,0 +141571,31225,0,51350,0,0 +141572,31226,0,52632,0,0 +141573,31227,0,53989,0,0 +141574,31228,0,53990,0,0 +141575,31229,0,53991,0,0 +141576,31230,0,48642,0,0 +141577,31231,0,53992,0,0 +141578,31232,0,48946,0,0 +141579,31233,0,49561,0,0 +141580,31234,0,53993,0,0 +141581,31235,0,49377,0,0 +141582,31236,0,53994,0,0 +141583,31237,0,46836,0,0 +141586,31240,0,53407,0,0 +141588,31242,0,48859,0,0 +141589,31243,0,49397,0,0 +141590,31244,0,53995,0,0 +141592,31246,0,48190,0,0 +141593,31247,0,53996,0,0 +141594,31248,0,51460,0,0 +141595,31249,0,48585,0,0 +141596,31250,0,48189,0,0 +141599,31253,0,52767,0,0 +141600,31254,0,49717,0,0 +141601,31255,0,48611,0,0 +141602,31256,0,53997,0,0 +141603,31257,0,53998,0,0 +141605,31259,0,52003,0,0 +141609,31263,0,53999,0,0 +141610,31264,0,54000,0,0 +141611,31265,0,51877,0,0 +141612,31266,0,51008,0,0 +141613,31267,0,52969,0,0 +141614,31268,0,45911,0,0 +141615,31269,0,46448,0,0 +141616,31270,0,54001,0,0 +141618,31272,0,54002,0,0 +141619,31273,0,52873,0,0 +141620,31274,0,54003,0,0 +141622,31276,0,52715,0,0 +141625,31279,0,54004,0,0 +141626,31280,0,52729,0,0 +141627,31281,0,52591,0,0 +141628,31282,0,52124,0,0 +141629,31283,0,53992,0,0 +141630,31284,0,52792,0,0 +141631,31285,0,47120,0,0 +141632,31286,0,53341,0,0 +141633,31287,0,52334,0,0 +141634,31288,0,52510,0,0 +141635,31289,0,52841,0,0 +141637,31291,0,53474,0,0 +141638,31292,0,54005,0,0 +141639,31293,0,52117,0,0 +141640,31294,0,54006,0,0 +141641,31295,0,53870,0,0 +141642,31296,0,50994,0,0 +141643,31297,0,47927,0,0 +141644,31298,0,51137,0,0 +141645,31299,0,54007,0,0 +141647,31301,0,54008,0,0 +141648,31302,0,54009,0,0 +141649,31303,0,52733,0,0 +141650,31304,0,54010,0,0 +141651,31305,0,54011,0,0 +141652,31306,0,54012,0,0 +141654,31308,0,49293,0,0 +141655,31309,0,53560,0,0 +141657,31311,0,54013,0,0 +141658,31312,0,49468,0,0 +141659,31313,0,53333,0,0 +141660,31314,0,54014,0,0 +141661,31315,0,54015,0,0 +141664,31318,0,54016,0,0 +141666,31320,0,53514,0,0 +141668,31322,0,54017,0,0 +141669,31323,0,54018,0,0 +141671,31325,0,53615,0,0 +141673,31327,0,54019,0,0 +141674,31328,0,53738,0,0 +141675,31329,0,53354,0,0 +141676,31330,0,54020,0,0 +141677,31331,0,54021,0,0 +141678,31332,0,52832,0,0 +141679,31333,0,54022,0,0 +141680,31334,0,54023,0,0 +141681,31335,0,53739,0,0 +141682,31336,0,54024,0,0 +141686,31340,0,54025,0,0 +141687,31341,0,54026,0,0 +141688,31342,0,54027,0,0 +141689,31343,0,53741,0,0 +141694,31348,0,54028,0,0 +141698,31352,0,51273,0,0 +141699,31353,0,51297,0,0 +141710,31364,0,54029,0,0 +141712,31366,0,54030,0,0 +141713,31367,0,54031,0,0 +141714,31368,0,54032,0,0 +141715,31369,0,54033,0,0 +141716,31370,0,54034,0,0 +141717,31371,0,54035,0,0 +141721,31375,0,52817,0,0 +141722,31376,0,52818,0,0 +141723,31377,0,52819,0,0 +141724,31378,0,52820,0,0 +141725,31379,0,52821,0,0 +141731,31385,0,54037,0,0 +141734,31388,0,54038,0,0 +141742,31396,0,52568,0,0 +141743,31397,0,52571,0,0 +141746,31400,0,54039,0,0 +141750,31404,0,54004,0,0 +141751,31405,0,54040,0,0 +141752,31406,0,52572,0,0 +141753,31407,0,52570,0,0 +141755,31409,0,52680,0,0 +141756,31410,0,52681,0,0 +141757,31411,0,52682,0,0 +141758,31412,0,52683,0,0 +141759,31413,0,52684,0,0 +141760,31414,0,54041,0,0 +141761,31415,0,46162,0,0 +141762,31416,0,46615,0,0 +141763,31417,0,53998,0,0 +141764,31418,0,50328,0,0 +141765,31419,0,54042,0,0 +141766,31420,0,48051,0,0 +141767,31421,0,48840,0,0 +141768,31422,0,54043,0,0 +141769,31423,0,50325,0,0 +141770,31424,0,54044,0,0 +141771,31425,0,48671,0,0 +141772,31426,0,50332,0,0 +141773,31427,0,46945,0,0 +141774,31428,0,48836,0,0 +141775,31429,0,54045,0,0 +141776,31430,0,47131,0,0 +141777,31431,0,48203,0,0 +141778,31432,0,51483,0,0 +141779,31433,0,48790,0,0 +141780,31434,0,54046,0,0 +141781,31435,0,54047,0,0 +141782,31436,0,49167,0,0 +141784,31438,0,47800,0,0 +141785,31439,0,47371,0,0 +141786,31440,0,48280,0,0 +141787,31441,0,54048,0,0 +141788,31442,0,48627,0,0 +141789,31443,0,46848,0,0 +141790,31444,0,54049,0,0 +141791,31445,0,54050,0,0 +141792,31446,0,46243,0,0 +141793,31447,0,52432,0,0 +141794,31448,0,50793,0,0 +141798,31452,0,54051,0,0 +141799,31453,0,54052,0,0 +141800,31454,0,54053,0,0 +141801,31455,0,54054,0,0 +141802,31456,0,54055,0,0 +141803,31457,0,54056,0,0 +141804,31458,0,54057,0,0 +141805,31459,0,49213,0,0 +141806,31460,0,52666,0,0 +141807,31461,0,51638,0,0 +141808,31462,0,54058,0,0 +141810,31464,0,54059,0,0 +141811,31465,0,48715,0,0 +141812,31466,0,54060,0,0 +141813,31467,0,54061,0,0 +141814,31468,0,54062,0,0 +141816,31470,0,46736,0,0 +141817,31471,0,54063,0,0 +141818,31472,0,49550,0,0 +141819,31473,0,49906,0,0 +141820,31474,0,54064,0,0 +141821,31475,0,54065,0,0 +141822,31476,0,54066,0,0 +141823,31477,0,50975,0,0 +141824,31478,0,48078,0,0 +141825,31479,0,49792,0,0 +141826,31480,0,54067,0,0 +141827,31481,0,49708,0,0 +141828,31482,0,48101,0,0 +141829,31483,0,54068,0,0 +141830,31484,0,50181,0,0 +141831,31485,0,48629,0,0 +141832,31486,0,47067,0,0 +141833,31487,0,54047,0,0 +141834,31488,0,49963,0,0 +141836,31490,0,54060,0,0 +141837,31491,0,54061,0,0 +141838,31492,0,54069,0,0 +141839,31493,0,54070,0,0 +141840,31494,0,54071,0,0 +141843,31497,0,54072,0,0 +141845,31499,0,54073,0,0 +141854,31508,0,48105,0,0 +141855,31509,0,52529,0,0 +141856,31510,0,48699,0,0 +141857,31511,0,54074,0,0 +141858,31512,0,47786,0,0 +141859,31513,0,53977,0,0 +141860,31514,0,48130,0,0 +141861,31515,0,49050,0,0 +141862,31516,0,53976,0,0 +141865,31519,0,51287,0,0 +141866,31520,0,54075,0,0 +141867,31521,0,50902,0,0 +141875,31529,0,48772,0,0 +141877,31531,0,51299,0,0 +141878,31532,0,54076,0,0 +141879,31533,0,54077,0,0 +141880,31534,0,48757,0,0 +141883,31537,0,49468,0,0 +141884,31538,0,54078,0,0 +141885,31539,0,48573,0,0 +141886,31540,0,48763,0,0 +141887,31541,0,49339,0,0 +141888,31542,0,50965,0,0 +141889,31543,0,46272,0,0 +141890,31544,0,54079,0,0 +141891,31545,0,47542,0,0 +141892,31546,0,54002,0,0 +141893,31547,0,53682,0,0 +141894,31548,0,53966,0,0 +141895,31549,0,54080,0,0 +141897,31551,0,54081,0,0 +141898,31552,0,54082,0,0 +141899,31553,0,54083,0,0 +141900,31554,0,52476,0,0 +141901,31555,0,54084,0,0 +141902,31556,0,52463,0,0 +141903,31557,0,52466,0,0 +141904,31558,0,52459,0,0 +141905,31559,0,54085,0,0 +141906,31560,0,54086,0,0 +141907,31561,0,54087,0,0 +141908,31562,0,54088,0,0 +141909,31563,0,54089,0,0 +141910,31564,0,47983,0,0 +141911,31565,0,54090,0,0 +141912,31566,0,54091,0,0 +141913,31567,0,54092,0,0 +141914,31568,0,53701,0,0 +141915,31569,0,54093,0,0 +141916,31570,0,54094,0,0 +141917,31571,0,54095,0,0 +141918,31572,0,54096,0,0 +141919,31573,0,54097,0,0 +141920,31574,0,54098,0,0 +141921,31575,0,54099,0,0 +141922,31576,0,48858,0,0 +141923,31577,0,49928,0,0 +141924,31578,0,49924,0,0 +141925,31579,0,54100,0,0 +141926,31580,0,49927,0,0 +141927,31581,0,54101,0,0 +141928,31582,0,49929,0,0 +141929,31583,0,49925,0,0 +141930,31584,0,50504,0,0 +141931,31585,0,50500,0,0 +141932,31586,0,50502,0,0 +141933,31587,0,50501,0,0 +141934,31588,0,50499,0,0 +141935,31589,0,50390,0,0 +141936,31590,0,50410,0,0 +141937,31591,0,50408,0,0 +141938,31592,0,50409,0,0 +141939,31593,0,50407,0,0 +141940,31594,0,52982,0,0 +141941,31595,0,52985,0,0 +141942,31596,0,52982,0,0 +141943,31597,0,52985,0,0 +141944,31598,0,52984,0,0 +141945,31599,0,50388,0,0 +141946,31600,0,54102,0,0 +141947,31601,0,54103,0,0 +141948,31602,0,54081,0,0 +141949,31603,0,54104,0,0 +141950,31604,0,54105,0,0 +141951,31605,0,54106,0,0 +141954,31608,0,54107,0,0 +141955,31609,0,54108,0,0 +141957,31611,0,52964,0,0 +141958,31612,0,54109,0,0 +141959,31613,0,52675,0,0 +141960,31614,0,52676,0,0 +141962,31616,0,52677,0,0 +141964,31618,0,52678,0,0 +141965,31619,0,52679,0,0 +141966,31620,0,53099,0,0 +141967,31621,0,50821,0,0 +141968,31622,0,53100,0,0 +141969,31623,0,53101,0,0 +141970,31624,0,53102,0,0 +141971,31625,0,53103,0,0 +141972,31626,0,50823,0,0 +141973,31627,0,47669,0,0 +141974,31628,0,50822,0,0 +141975,31629,0,50824,0,0 +141976,31630,0,50417,0,0 +141977,31631,0,50397,0,0 +141978,31632,0,50418,0,0 +141979,31633,0,50419,0,0 +141980,31634,0,50420,0,0 +141981,31635,0,53165,0,0 +141982,31636,0,53166,0,0 +141983,31637,0,53167,0,0 +141984,31638,0,53168,0,0 +141985,31639,0,53169,0,0 +141986,31640,0,50522,0,0 +141987,31641,0,50521,0,0 +141988,31642,0,50523,0,0 +141989,31643,0,50524,0,0 +141990,31644,0,50525,0,0 +141992,31646,0,50522,0,0 +141993,31647,0,50521,0,0 +141994,31648,0,50523,0,0 +141995,31649,0,50524,0,0 +141996,31650,0,50525,0,0 +142000,31654,0,54110,0,0 +142003,31657,0,54111,0,0 +142004,31658,0,54112,0,0 +142005,31659,0,48441,0,0 +142006,31660,0,48159,0,0 +142007,31661,0,47305,0,0 +142015,31669,0,54114,0,0 +142029,31683,0,54115,0,0 +142030,31684,0,54116,0,0 +142031,31685,0,54057,0,0 +142032,31686,0,49869,0,0 +142033,31687,0,54117,0,0 +142034,31688,0,54118,0,0 +142035,31689,0,54119,0,0 +142036,31690,0,49962,0,0 +142045,31699,0,54120,0,0 +142046,31700,0,46271,0,0 +142047,31701,0,48094,0,0 +142049,31703,0,49250,0,0 +142057,31711,0,51281,0,0 +142058,31712,0,48607,0,0 +142059,31713,0,50255,0,0 +142060,31714,0,54121,0,0 +142061,31715,0,53112,0,0 +142063,31717,0,54122,0,0 +142064,31718,0,54123,0,0 +142065,31719,0,54124,0,0 +142066,31720,0,54125,0,0 +142069,31723,0,50054,0,0 +142070,31724,0,48961,0,0 +142071,31725,0,47981,0,0 +142077,31731,0,50351,0,0 +142078,31732,0,50337,0,0 +142079,31733,0,46505,0,0 +142080,31734,0,53462,0,0 +142081,31735,0,46427,0,0 +142083,31737,0,46426,0,0 +142089,31743,0,54126,0,0 +142091,31745,0,54127,0,0 +142102,31756,0,47429,0,0 +142104,31758,0,48158,0,0 +142105,31759,0,47429,0,0 +142107,31761,0,50859,0,0 +142108,31762,0,54128,0,0 +142110,31764,0,48754,0,0 +142111,31765,0,54129,0,0 +142112,31766,0,46839,0,0 +142114,31768,0,50857,0,0 +142116,31770,0,50919,0,0 +142117,31771,0,53997,0,0 +142119,31773,0,54130,0,0 +142120,31774,0,54131,0,0 +142121,31775,0,54132,0,0 +142122,31776,0,54133,0,0 +142123,31777,0,54134,0,0 +142124,31778,0,54135,0,0 +142125,31779,0,54136,0,0 +142126,31780,0,54137,0,0 +142127,31781,0,54138,0,0 +142128,31782,0,54139,0,0 +142129,31783,0,48265,0,0 +142130,31784,0,54140,0,0 +142131,31785,0,54141,0,0 +142132,31786,0,54142,0,0 +142133,31787,0,48758,0,0 +142134,31788,0,54143,0,0 +142135,31789,0,49691,0,0 +142138,31792,0,47995,0,0 +142139,31793,0,53521,0,0 +142140,31794,0,54144,0,0 +142142,31796,0,52468,0,0 +142143,31797,0,54145,0,0 +142144,31798,0,51949,0,0 +142147,31801,0,53998,0,0 +142148,31802,0,54146,0,0 +142149,31803,0,54147,0,0 +142150,31804,0,54148,0,0 +142151,31805,0,54149,0,0 +142152,31806,0,54150,0,0 +142162,31816,0,51925,0,0 +142163,31817,0,54151,0,0 +142165,31819,0,54152,0,0 +142167,31821,0,54153,0,0 +142168,31822,0,47396,0,0 +142169,31823,0,49238,0,0 +142170,31824,0,54154,0,0 +142281,31935,0,47845,0,0 +142282,31936,0,49304,0,0 +142283,31937,0,50118,0,0 +142284,31938,0,47269,0,0 +142285,31939,0,47196,0,0 +142288,31942,0,48468,0,0 +142295,31949,0,46426,0,0 +142304,31958,0,52896,0,0 +142305,31959,0,52894,0,0 +142306,31960,0,54155,0,0 +142307,31961,0,54156,0,0 +142308,31962,0,54157,0,0 +142309,31963,0,54158,0,0 +142310,31964,0,54159,0,0 +142311,31965,0,52899,0,0 +142312,31966,0,52893,0,0 +142313,31967,0,54160,0,0 +142314,31968,0,54161,0,0 +142315,31969,0,54162,0,0 +142316,31970,0,52819,0,0 +142317,31971,0,54163,0,0 +142318,31972,0,54164,0,0 +142319,31973,0,54165,0,0 +142320,31974,0,54166,0,0 +142321,31975,0,54167,0,0 +142322,31976,0,54168,0,0 +142323,31977,0,54169,0,0 +142324,31978,0,52925,0,0 +142325,31979,0,54168,0,0 +142326,31980,0,54166,0,0 +142327,31981,0,54165,0,0 +142328,31982,0,54169,0,0 +142329,31983,0,54167,0,0 +142330,31984,0,52164,0,0 +142331,31985,0,52899,0,0 +142332,31986,0,52890,0,0 +142333,31987,0,54160,0,0 +142334,31988,0,54161,0,0 +142335,31989,0,54162,0,0 +142336,31990,0,54163,0,0 +142337,31991,0,54164,0,0 +142338,31992,0,54170,0,0 +142339,31993,0,54171,0,0 +142341,31995,0,54172,0,0 +142342,31996,0,54173,0,0 +142343,31997,0,54174,0,0 +142344,31998,0,54175,0,0 +142345,31999,0,54176,0,0 +142346,32000,0,54177,0,0 +142347,32001,0,54178,0,0 +142348,32002,0,54179,0,0 +142349,32003,0,52903,0,0 +142350,32004,0,54180,0,0 +142351,32005,0,54181,0,0 +142352,32006,0,54182,0,0 +142353,32007,0,54183,0,0 +142354,32008,0,54184,0,0 +142355,32009,0,54180,0,0 +142356,32010,0,54181,0,0 +142357,32011,0,54182,0,0 +142358,32012,0,54183,0,0 +142359,32013,0,54184,0,0 +142360,32014,0,52894,0,0 +142361,32015,0,54185,0,0 +142362,32016,0,54186,0,0 +142363,32017,0,54187,0,0 +142364,32018,0,54188,0,0 +142365,32019,0,54189,0,0 +142366,32020,0,54170,0,0 +142367,32021,0,54171,0,0 +142368,32022,0,54174,0,0 +142369,32023,0,54172,0,0 +142370,32024,0,54173,0,0 +142371,32025,0,52895,0,0 +142372,32026,0,52896,0,0 +142373,32027,0,52891,0,0 +142374,32028,0,52902,0,0 +142375,32029,0,54180,0,0 +142376,32030,0,54181,0,0 +142377,32031,0,54182,0,0 +142378,32032,0,54183,0,0 +142379,32033,0,54184,0,0 +142380,32034,0,54185,0,0 +142381,32035,0,54186,0,0 +142382,32036,0,54187,0,0 +142383,32037,0,54188,0,0 +142384,32038,0,54189,0,0 +142385,32039,0,54170,0,0 +142386,32040,0,54171,0,0 +142387,32041,0,54174,0,0 +142388,32042,0,54172,0,0 +142389,32043,0,54173,0,0 +142390,32044,0,52900,0,0 +142391,32045,0,52930,0,0 +142392,32046,0,52900,0,0 +142393,32047,0,54190,0,0 +142394,32048,0,54191,0,0 +142395,32049,0,54192,0,0 +142396,32050,0,54193,0,0 +142397,32051,0,54194,0,0 +142398,32052,0,52891,0,0 +142399,32053,0,52892,0,0 +142401,32055,0,52170,0,0 +142402,32056,0,54160,0,0 +142403,32057,0,54161,0,0 +142404,32058,0,54162,0,0 +142405,32059,0,54163,0,0 +142406,32060,0,54164,0,0 +142411,32065,0,54195,0,0 +142412,32066,0,54196,0,0 +142418,32072,0,54197,0,0 +142419,32073,0,54198,0,0 +142422,32076,0,50196,0,0 +142423,32077,0,54199,0,0 +142424,32078,0,54200,0,0 +142426,32080,0,54201,0,0 +142428,32082,0,54202,0,0 +142429,32083,0,54203,0,0 +142430,32084,0,54204,0,0 +142431,32085,0,52855,0,0 +142432,32086,0,50733,0,0 +142433,32087,0,52796,0,0 +142434,32088,0,53417,0,0 +142435,32089,0,52529,0,0 +142436,32090,0,52529,0,0 +142437,32091,0,51010,0,0 +142439,32093,0,53068,0,0 +142440,32094,0,53069,0,0 +142441,32095,0,53070,0,0 +142442,32096,0,53071,0,0 +142443,32097,0,53072,0,0 +142444,32098,0,53100,0,0 +142445,32099,0,53101,0,0 +142446,32100,0,53099,0,0 +142447,32101,0,53102,0,0 +142448,32102,0,53103,0,0 +142449,32103,0,53099,0,0 +142450,32104,0,53100,0,0 +142451,32105,0,53101,0,0 +142452,32106,0,53102,0,0 +142453,32107,0,53103,0,0 +142454,32108,0,50427,0,0 +142455,32109,0,50425,0,0 +142456,32110,0,53104,0,0 +142457,32111,0,53105,0,0 +142458,32112,0,53106,0,0 +142459,32113,0,50390,0,0 +142460,32114,0,50410,0,0 +142461,32115,0,50408,0,0 +142462,32116,0,50409,0,0 +142463,32117,0,50407,0,0 +142464,32118,0,50390,0,0 +142465,32119,0,50410,0,0 +142466,32120,0,50405,0,0 +142467,32121,0,50409,0,0 +142468,32122,0,50408,0,0 +142469,32123,0,50407,0,0 +142470,32124,0,53098,0,0 +142471,32125,0,50404,0,0 +142472,32126,0,50406,0,0 +142473,32127,0,50403,0,0 +142474,32128,0,50390,0,0 +142475,32129,0,50410,0,0 +142476,32130,0,50408,0,0 +142477,32131,0,50409,0,0 +142478,32132,0,50407,0,0 +142479,32133,0,53062,0,0 +142480,32134,0,53063,0,0 +142481,32135,0,53064,0,0 +142482,32136,0,53065,0,0 +142483,32137,0,53066,0,0 +142484,32138,0,50522,0,0 +142485,32139,0,50521,0,0 +142486,32140,0,50523,0,0 +142487,32141,0,50524,0,0 +142488,32142,0,50525,0,0 +142489,32143,0,50522,0,0 +142490,32144,0,50521,0,0 +142491,32145,0,50523,0,0 +142492,32146,0,50524,0,0 +142493,32147,0,50525,0,0 +142494,32148,0,50522,0,0 +142495,32149,0,50521,0,0 +142496,32150,0,50523,0,0 +142497,32151,0,50524,0,0 +142498,32152,0,50525,0,0 +142499,32153,0,50417,0,0 +142500,32154,0,50397,0,0 +142501,32155,0,50418,0,0 +142502,32156,0,50419,0,0 +142503,32157,0,50420,0,0 +142504,32158,0,50417,0,0 +142505,32159,0,50397,0,0 +142506,32160,0,50418,0,0 +142507,32161,0,50419,0,0 +142508,32162,0,50420,0,0 +142509,32163,0,50416,0,0 +142510,32164,0,50367,0,0 +142511,32165,0,51913,0,0 +142512,32166,0,50366,0,0 +142513,32167,0,50369,0,0 +142514,32168,0,50417,0,0 +142515,32169,0,50397,0,0 +142516,32170,0,50418,0,0 +142517,32171,0,50419,0,0 +142518,32172,0,50420,0,0 +142519,32173,0,53198,0,0 +142520,32174,0,53194,0,0 +142521,32175,0,50983,0,0 +142522,32176,0,53198,0,0 +142523,32177,0,53199,0,0 +142524,32178,0,53201,0,0 +142525,32179,0,53201,0,0 +142526,32180,0,53199,0,0 +142527,32181,0,53193,0,0 +142528,32182,0,53195,0,0 +142529,32183,0,51937,0,0 +142530,32184,0,53197,0,0 +142531,32185,0,53202,0,0 +142532,32186,0,51011,0,0 +142533,32187,0,53203,0,0 +142534,32188,0,53196,0,0 +142535,32189,0,53200,0,0 +142536,32190,0,50992,0,0 +142537,32191,0,53192,0,0 +142538,32192,0,50981,0,0 +142578,32232,0,54205,0,0 +142580,32234,0,54206,0,0 +142581,32235,0,54207,0,0 +142582,32236,0,54208,0,0 +142583,32237,0,54209,0,0 +142585,32239,0,54210,0,0 +142586,32240,0,54211,0,0 +142587,32241,0,54212,0,0 +142588,32242,0,54213,0,0 +142589,32243,0,54214,0,0 +142591,32245,0,54215,0,0 +142592,32246,0,46325,0,0 +142594,32248,0,54216,0,0 +142596,32250,0,54217,0,0 +142597,32251,0,54218,0,0 +142598,32252,0,54219,0,0 +142599,32253,0,54220,0,0 +142600,32254,0,54221,0,0 +142601,32255,0,54222,0,0 +142602,32256,0,54223,0,0 +142604,32258,0,54224,0,0 +142605,32259,0,54225,0,0 +142608,32262,0,54226,0,0 +142609,32263,0,53843,0,0 +142610,32264,0,54227,0,0 +142611,32265,0,54228,0,0 +142613,32267,0,53566,0,0 +142614,32268,0,54229,0,0 +142615,32269,0,54230,0,0 +142616,32270,0,54231,0,0 +142617,32271,0,54232,0,0 +142618,32272,0,51087,0,0 +142619,32273,0,54233,0,0 +142621,32275,0,53908,0,0 +142622,32276,0,54234,0,0 +142624,32278,0,54235,0,0 +142625,32279,0,54236,0,0 +142626,32280,0,54237,0,0 +142668,32322,0,54238,0,0 +142669,32323,0,53542,0,0 +142670,32324,0,54239,0,0 +142671,32325,0,54240,0,0 +142672,32326,0,53088,0,0 +142673,32327,0,53853,0,0 +142674,32328,0,54241,0,0 +142675,32329,0,54242,0,0 +142677,32331,0,53545,0,0 +142678,32332,0,54243,0,0 +142679,32333,0,53855,0,0 +142680,32334,0,54244,0,0 +142682,32336,0,54245,0,0 +142683,32337,0,53542,0,0 +142684,32338,0,54246,0,0 +142685,32339,0,53854,0,0 +142686,32340,0,54247,0,0 +142687,32341,0,54248,0,0 +142688,32342,0,54249,0,0 +142689,32343,0,54250,0,0 +142690,32344,0,54251,0,0 +142691,32345,0,54252,0,0 +142692,32346,0,53859,0,0 +142693,32347,0,54253,0,0 +142694,32348,0,54254,0,0 +142696,32350,0,53112,0,0 +142697,32351,0,54255,0,0 +142698,32352,0,54256,0,0 +142699,32353,0,54257,0,0 +142700,32354,0,54258,0,0 +142706,32360,0,52831,0,0 +142707,32361,0,53325,0,0 +142709,32363,0,53535,0,0 +142711,32365,0,54259,0,0 +142712,32366,0,54260,0,0 +142713,32367,0,53856,0,0 +142715,32369,0,54261,0,0 +142717,32371,0,54262,0,0 +142719,32373,0,54263,0,0 +142720,32374,0,54264,0,0 +142721,32375,0,54265,0,0 +142722,32376,0,54266,0,0 +142723,32377,0,54267,0,0 +142730,32384,0,51087,0,0 +142735,32389,0,48248,0,0 +142736,32390,0,48884,0,0 +142737,32391,0,51281,0,0 +142738,32392,0,49490,0,0 +142739,32393,0,52053,0,0 +142740,32394,0,54268,0,0 +142741,32395,0,52048,0,0 +142742,32396,0,52155,0,0 +142743,32397,0,54269,0,0 +142744,32398,0,52516,0,0 +142745,32399,0,54270,0,0 +142746,32400,0,52515,0,0 +142747,32401,0,48725,0,0 +142748,32402,0,48726,0,0 +142749,32403,0,48722,0,0 +142750,32404,0,48728,0,0 +142753,32407,0,54271,0,0 +142760,32414,0,53217,0,0 +142761,32415,0,53217,0,0 +142762,32416,0,53217,0,0 +142763,32417,0,53217,0,0 +142764,32418,0,53217,0,0 +142765,32419,0,53217,0,0 +142766,32420,0,51848,0,0 +142767,32421,0,54272,0,0 +142768,32422,0,54272,0,0 +142771,32425,0,54273,0,0 +142791,32445,0,54274,0,0 +142794,32448,0,54275,0,0 +142796,32450,0,54276,0,0 +142797,32451,0,54276,0,0 +142798,32452,0,52925,0,0 +142806,32460,0,54277,0,0 +142807,32461,0,54278,0,0 +142809,32463,0,54279,0,0 +142812,32466,0,52566,0,0 +142817,32471,0,54280,0,0 +142818,32472,0,52019,0,0 +142819,32473,0,52025,0,0 +142820,32474,0,54281,0,0 +142821,32475,0,54282,0,0 +142822,32476,0,54283,0,0 +142823,32477,0,51550,0,0 +142824,32478,0,52024,0,0 +142825,32479,0,54284,0,0 +142826,32480,0,52025,0,0 +142828,32482,0,54285,0,0 +142830,32484,0,54286,0,0 +142840,32494,0,52022,0,0 +142841,32495,0,54287,0,0 +142845,32499,0,54288,0,0 +142846,32500,0,54289,0,0 +142850,32504,0,54290,0,0 +142853,32507,0,54291,0,0 +142856,32510,0,53821,0,0 +142858,32512,0,54249,0,0 +142859,32513,0,54292,0,0 +142861,32515,0,53588,0,0 +142862,32516,0,53012,0,0 +142863,32517,0,54293,0,0 +142864,32518,0,54294,0,0 +142865,32519,0,54295,0,0 +142866,32520,0,50337,0,0 +142867,32521,0,54296,0,0 +142868,32522,0,46158,0,0 +142870,32524,0,53547,0,0 +142871,32525,0,54297,0,0 +142875,32529,0,54298,0,0 +142876,32530,0,54299,0,0 +142878,32532,0,54300,0,0 +142879,32533,0,54301,0,0 +142882,32536,0,49253,0,0 +142883,32537,0,49333,0,0 +142884,32538,0,54302,0,0 +142885,32539,0,54303,0,0 +142886,32540,0,54304,0,0 +142887,32541,0,54305,0,0 +142908,32562,0,54306,0,0 +142911,32565,0,54307,0,0 +142914,32568,0,54308,0,0 +142916,32570,0,54309,0,0 +142917,32571,0,54310,0,0 +142919,32573,0,54309,0,0 +142920,32574,0,54311,0,0 +142921,32575,0,54312,0,0 +142923,32577,0,54313,0,0 +142925,32579,0,54312,0,0 +142926,32580,0,54314,0,0 +142927,32581,0,54315,0,0 +142928,32582,0,54316,0,0 +142929,32583,0,54315,0,0 +142930,32584,0,54317,0,0 +142931,32585,0,54318,0,0 +142932,32586,0,54317,0,0 +142933,32587,0,54319,0,0 +142936,32590,0,53545,0,0 +142938,32592,0,54320,0,0 +142939,32593,0,54256,0,0 +142940,32594,0,46985,0,0 +142949,32603,0,54321,0,0 +142950,32604,0,54322,0,0 +142951,32605,0,54323,0,0 +142952,32606,0,54249,0,0 +142953,32607,0,53848,0,0 +142954,32608,0,54235,0,0 +142955,32609,0,54324,0,0 +142956,32610,0,54325,0,0 +142957,32611,0,49724,0,0 +142958,32612,0,52803,0,0 +142959,32613,0,54326,0,0 +142960,32614,0,54327,0,0 +142961,32615,0,54328,0,0 +142977,32632,0,54329,0,0 +142978,32633,0,54330,0,0 +142989,32644,0,45825,0,0 +142990,32645,0,52670,0,0 +142992,32647,0,54331,0,0 +142993,32648,0,54332,0,0 +142995,32650,0,54333,0,0 +142996,32651,0,54334,0,0 +142997,32652,0,53463,0,0 +142998,32653,0,45880,0,0 +143000,32655,0,54335,0,0 +143001,32656,0,54336,0,0 +143004,32659,0,54337,0,0 +143005,32660,0,46428,0,0 +143006,32661,0,54338,0,0 +143007,32662,0,54339,0,0 +143008,32663,0,52387,0,0 +143010,32665,0,54340,0,0 +143015,32670,0,52387,0,0 +143016,32671,0,54338,0,0 +143018,32673,0,54337,0,0 +143019,32674,0,46428,0,0 +143021,32676,0,54335,0,0 +143024,32679,0,54339,0,0 +143044,32699,0,54342,0,0 +143073,32729,0,52780,0,0 +143074,32730,0,54343,0,0 +143075,32731,0,51827,0,0 +143084,32740,0,54344,0,0 +143087,32743,0,53937,0,0 +143100,32756,0,54345,0,0 +143104,32760,0,46426,0,0 +143105,32761,0,54346,0,0 +143113,32769,0,52787,0,0 +143120,32776,0,49565,0,0 +143122,32778,0,52907,0,0 +143124,32780,0,52888,0,0 +143125,32781,0,46217,0,0 +143129,32785,0,54347,0,0 +143130,32786,0,54348,0,0 +143131,32787,0,54349,0,0 +143132,32788,0,54348,0,0 +143133,32789,0,54350,0,0 +143134,32790,0,54351,0,0 +143135,32791,0,54352,0,0 +143136,32792,0,54352,0,0 +143137,32793,0,54353,0,0 +143138,32794,0,54350,0,0 +143139,32795,0,54354,0,0 +143140,32796,0,54348,0,0 +143141,32797,0,54355,0,0 +143142,32798,0,54356,0,0 +143143,32799,0,54357,0,0 +143144,32800,0,54356,0,0 +143145,32801,0,54358,0,0 +143146,32802,0,54359,0,0 +143147,32803,0,54360,0,0 +143148,32804,0,54360,0,0 +143149,32805,0,54361,0,0 +143150,32806,0,54358,0,0 +143151,32807,0,54362,0,0 +143152,32808,0,54356,0,0 +143153,32809,0,54363,0,0 +143154,32810,0,54364,0,0 +143155,32811,0,54365,0,0 +143156,32812,0,54364,0,0 +143157,32813,0,54366,0,0 +143158,32814,0,54367,0,0 +143159,32815,0,50428,0,0 +143160,32816,0,54368,0,0 +143161,32817,0,54368,0,0 +143162,32818,0,54369,0,0 +143163,32819,0,54366,0,0 +143164,32820,0,54370,0,0 +143165,32821,0,54364,0,0 +143168,32824,0,49445,0,0 +143170,32826,0,54371,0,0 +143171,32827,0,54372,0,0 +143172,32828,0,54373,0,0 +143173,32829,0,52873,0,0 +143174,32830,0,48093,0,0 +143175,32831,0,54374,0,0 +143176,32832,0,54375,0,0 +143181,32837,0,54329,0,0 +143182,32838,0,54330,0,0 +143185,32841,0,53614,0,0 +143198,32854,0,54376,0,0 +143200,32856,0,54377,0,0 +143209,32865,0,48077,0,0 +143210,32866,0,49104,0,0 +143211,32867,0,49390,0,0 +143212,32868,0,54378,0,0 +143213,32869,0,54379,0,0 +143214,32870,0,54380,0,0 +143215,32871,0,50272,0,0 +143216,32872,0,54381,0,0 +143217,32873,0,54291,0,0 +143218,32874,0,54382,0,0 +143219,32875,0,54383,0,0 +143220,32876,0,52638,0,0 +143221,32877,0,54384,0,0 +143222,32878,0,54385,0,0 +143223,32879,0,54386,0,0 +143224,32880,0,54387,0,0 +143225,32881,0,54387,0,0 +143226,32882,0,46427,0,0 +143227,32883,0,46427,0,0 +143228,32884,0,52697,0,0 +143229,32885,0,54388,0,0 +143230,32886,0,54389,0,0 +143231,32887,0,54390,0,0 +143233,32889,0,54391,0,0 +143234,32890,0,54392,0,0 +143235,32891,0,54222,0,0 +143236,32892,0,54393,0,0 +143237,32893,0,54251,0,0 +143238,32894,0,54394,0,0 +143255,32911,0,46490,0,0 +143256,32912,0,54395,0,0 +143258,32914,0,46219,0,0 +143259,32915,0,54395,0,0 +143261,32917,0,54395,0,0 +143262,32918,0,54395,0,0 +143263,32919,0,54395,0,0 +143264,32920,0,54395,0,0 +143265,32921,0,46490,0,0 +143266,32922,0,54396,0,0 +143267,32923,0,54397,0,0 +143268,32924,0,54398,0,0 +143269,32925,0,54399,0,0 +143270,32926,0,54400,0,0 +143271,32927,0,54401,0,0 +143272,32928,0,54402,0,0 +143273,32929,0,54403,0,0 +143274,32930,0,54404,0,0 +143275,32931,0,54405,0,0 +143276,32932,0,54406,0,0 +143277,32933,0,54407,0,0 +143278,32934,0,54408,0,0 +143279,32935,0,54409,0,0 +143280,32936,0,54410,0,0 +143281,32937,0,54411,0,0 +143282,32938,0,54412,0,0 +143283,32939,0,54413,0,0 +143284,32940,0,54414,0,0 +143287,32943,0,54226,0,0 +143288,32944,0,54415,0,0 +143289,32945,0,54416,0,0 +143290,32946,0,54417,0,0 +143293,32949,0,45863,0,0 +143294,32950,0,45938,0,0 +143295,32951,0,45863,0,0 +143297,32953,0,53842,0,0 +143299,32961,0,52925,0,0 +143300,32962,0,52908,0,0 +143301,32963,0,54276,0,0 +143302,32964,0,54276,0,0 +143307,32969,0,54418,0,0 +143308,32970,0,53786,0,0 +143310,32972,0,52020,0,0 +143311,32973,0,52952,0,0 +143312,32974,0,52951,0,0 +143313,32975,0,52949,0,0 +143314,32976,0,52951,0,0 +143315,32977,0,53210,0,0 +143316,32978,0,53093,0,0 +143317,32979,0,54419,0,0 +143318,32980,0,54420,0,0 +143319,32981,0,54421,0,0 +143320,32982,0,53077,0,0 +143321,32983,0,53079,0,0 +143322,32984,0,53078,0,0 +143323,32985,0,53077,0,0 +143324,32986,0,50439,0,0 +143325,32987,0,53078,0,0 +143326,32988,0,54358,0,0 +143327,32989,0,54366,0,0 +143328,32990,0,54350,0,0 +143329,32991,0,53056,0,0 +143330,32992,0,53073,0,0 +143331,32993,0,53074,0,0 +143332,32994,0,53056,0,0 +143333,32995,0,53073,0,0 +143334,32996,0,53074,0,0 +143335,32997,0,54368,0,0 +143336,32998,0,54360,0,0 +143337,32999,0,54352,0,0 +143339,33002,0,54422,0,0 +143342,33005,0,54423,0,0 +143343,33006,0,54424,0,0 +143348,33011,0,47619,0,0 +143349,33012,0,47619,0,0 +143351,33014,0,50342,0,0 +143353,33016,0,54425,0,0 +143354,33017,0,54425,0,0 +143355,33018,0,54425,0,0 +143356,33019,0,54425,0,0 +143357,33020,0,54425,0,0 +143358,33021,0,54425,0,0 +143359,33022,0,46490,0,0 +143364,33027,0,45946,0,0 +143377,33040,0,48894,0,0 +143384,33047,0,52020,0,0 +143386,33049,0,54426,0,0 +143410,33073,0,54427,0,0 +143411,33074,0,54428,0,0 +143412,33075,0,54429,0,0 +143428,33094,0,46519,0,0 +143436,33105,0,51261,0,0 +143446,33118,0,52542,0,0 +143447,33122,0,48611,0,0 +143449,33125,0,54431,0,0 +143484,33161,0,54432,0,0 +143485,33162,0,54432,0,0 +143490,33173,0,54433,0,0 +143501,33191,0,54435,0,0 +143502,33192,0,54436,0,0 +143513,33203,0,54437,0,0 +143514,33204,0,53870,0,0 +143516,33206,0,54438,0,0 +143517,33207,0,54439,0,0 +143520,33211,0,54359,0,0 +143521,33214,0,54440,0,0 +143522,33215,0,54441,0,0 +143523,33216,0,54442,0,0 +143527,33222,0,54443,0,0 +143532,33228,0,54444,0,0 +143533,33229,0,54445,0,0 +143534,33230,0,54446,0,0 +143535,33231,0,46478,0,0 +143536,33232,0,51242,0,0 +143537,33233,0,54447,0,0 +143539,33235,0,54448,0,0 +143541,33237,0,54449,0,0 +143542,33239,0,54450,0,0 +143543,33240,0,54451,0,0 +143544,33241,0,54452,0,0 +143545,33242,0,54453,0,0 +143546,33243,0,49733,0,0 +143547,33244,0,54454,0,0 +143548,33245,0,54455,0,0 +143550,33247,0,54456,0,0 +143551,33248,0,47543,0,0 +143552,33249,0,54457,0,0 +143553,33250,0,54458,0,0 +143554,33251,0,46545,0,0 +143555,33252,0,54459,0,0 +143556,33253,0,48777,0,0 +143558,33255,0,54460,0,0 +143559,33256,0,54461,0,0 +143560,33257,0,54462,0,0 +143561,33258,0,54463,0,0 +143562,33259,0,48873,0,0 +143563,33260,0,54464,0,0 +143564,33261,0,47282,0,0 +143569,33266,0,54465,0,0 +143570,33267,0,50054,0,0 +143571,33268,0,48355,0,0 +143572,33269,0,46219,0,0 +143573,33270,0,54466,0,0 +143574,33271,0,45845,0,0 +143575,33272,0,47312,0,0 +143576,33273,0,46899,0,0 +143577,33274,0,49341,0,0 +143579,33279,0,53567,0,0 +143580,33280,0,54467,0,0 +143582,33283,0,54468,0,0 +143583,33285,0,53312,0,0 +143584,33286,0,54469,0,0 +143585,33287,0,54470,0,0 +143587,33291,0,54471,0,0 +143588,33292,0,54472,0,0 +143592,33298,0,54473,0,0 +143593,33299,0,54474,0,0 +143594,33300,0,54475,0,0 +143596,33303,0,54476,0,0 +143597,33304,0,54477,0,0 +143601,33309,0,52930,0,0 +143602,33313,0,52930,0,0 +143604,33317,0,54478,0,0 +143605,33322,0,54479,0,0 +143606,33324,0,54480,0,0 +143607,33325,0,54481,0,0 +143608,33326,0,54482,0,0 +143609,33327,0,54483,0,0 +143610,33328,0,54484,0,0 +143611,33329,0,54485,0,0 +143612,33331,0,54486,0,0 +143613,33332,0,54487,0,0 +143614,33333,0,47170,0,0 +143615,33334,0,54488,0,0 +143616,33338,0,54489,0,0 +143617,33354,0,54490,0,0 +143618,33356,0,54491,0,0 +143619,33357,0,53093,0,0 +143620,33386,0,54492,0,0 +143621,33388,0,54493,0,0 +143622,33389,0,54494,0,0 +143623,33421,0,54495,0,0 +143624,33432,0,54496,0,0 +143626,33446,0,54498,0,0 +143627,33453,0,54499,0,0 +143629,33463,0,54500,0,0 +143630,33464,0,54501,0,0 +143631,33465,0,54502,0,0 +143633,33467,0,54503,0,0 +143634,33468,0,54504,0,0 +143635,33469,0,54505,0,0 +143636,33471,0,54506,0,0 +143637,33473,0,54507,0,0 +143638,33474,0,54508,0,0 +143639,33476,0,54509,0,0 +143640,33478,0,54510,0,0 +143641,33479,0,54511,0,0 +143642,33480,0,54512,0,0 +143643,33481,0,54513,0,0 +143644,33482,0,53520,0,0 +143645,33483,0,54514,0,0 +143646,33484,0,54515,0,0 +143647,33489,0,54516,0,0 +143648,33490,0,54517,0,0 +143649,33491,0,54518,0,0 +143650,33492,0,54519,0,0 +143651,33493,0,54520,0,0 +143652,33494,0,54521,0,0 +143653,33495,0,54522,0,0 +143659,33501,0,54523,0,0 +143669,33512,0,54524,0,0 +143670,33513,0,54525,0,0 +143671,33514,0,54526,0,0 +143672,33515,0,54527,0,0 +143673,33516,0,54528,0,0 +143674,33517,0,54529,0,0 +143675,33518,0,54530,0,0 +143676,33519,0,54531,0,0 +143677,33520,0,54532,0,0 +143678,33521,0,47886,0,0 +143679,33522,0,54442,0,0 +143680,33523,0,54439,0,0 +143681,33524,0,53039,0,0 +143682,33527,0,54533,0,0 +143683,33528,0,54534,0,0 +143684,33529,0,54535,0,0 +143685,33530,0,54536,0,0 +143686,33531,0,54537,0,0 +143687,33532,0,54538,0,0 +143688,33533,0,54539,0,0 +143689,33534,0,54537,0,0 +143690,33535,0,54538,0,0 +143691,33536,0,53565,0,0 +143692,33537,0,54540,0,0 +143693,33538,0,54541,0,0 +143694,33539,0,54542,0,0 +143695,33540,0,53525,0,0 +143696,33542,0,52033,0,0 +143697,33543,0,53130,0,0 +143698,33552,0,54543,0,0 +143699,33557,0,53812,0,0 +143700,33559,0,53537,0,0 +143701,33566,0,54479,0,0 +143706,33577,0,54544,0,0 +143707,33578,0,54545,0,0 +143708,33579,0,54479,0,0 +143709,33580,0,54545,0,0 +143710,33582,0,54546,0,0 +143711,33583,0,54547,0,0 +143712,33584,0,53856,0,0 +143713,33585,0,54548,0,0 +143714,33586,0,54549,0,0 +143715,33587,0,54550,0,0 +143716,33588,0,54551,0,0 +143717,33589,0,54552,0,0 +143718,33590,0,53359,0,0 +143719,33591,0,47869,0,0 +143720,33592,0,53354,0,0 +143721,33593,0,51567,0,0 +143732,33636,0,54247,0,0 +143733,33640,0,54553,0,0 +143734,33660,0,53567,0,0 +143735,33661,0,52930,0,0 +143736,33662,0,54554,0,0 +143737,33663,0,54555,0,0 +143738,33664,0,54556,0,0 +143739,33665,0,54557,0,0 +143740,33666,0,54558,0,0 +143741,33667,0,54559,0,0 +143742,33668,0,54560,0,0 +143743,33669,0,54561,0,0 +143744,33670,0,54562,0,0 +143745,33671,0,54563,0,0 +143746,33672,0,54564,0,0 +143747,33673,0,54565,0,0 +143748,33674,0,54566,0,0 +143749,33675,0,54567,0,0 +143750,33676,0,54568,0,0 +143751,33677,0,54569,0,0 +143752,33678,0,54570,0,0 +143753,33679,0,54246,0,0 +143754,33680,0,54571,0,0 +143755,33681,0,52925,0,0 +143756,33682,0,54246,0,0 +143757,33683,0,54569,0,0 +143758,33684,0,54568,0,0 +143759,33685,0,54571,0,0 +143760,33686,0,54570,0,0 +143761,33687,0,54572,0,0 +143762,33688,0,54573,0,0 +143763,33689,0,54561,0,0 +143764,33690,0,54563,0,0 +143765,33691,0,54574,0,0 +143766,33692,0,54565,0,0 +143767,33693,0,54566,0,0 +143768,33694,0,54567,0,0 +143769,33695,0,54575,0,0 +143770,33696,0,54576,0,0 +143771,33697,0,54577,0,0 +143772,33698,0,54578,0,0 +143773,33699,0,54579,0,0 +143774,33700,0,54580,0,0 +143775,33701,0,54581,0,0 +143776,33702,0,54582,0,0 +143777,33703,0,54583,0,0 +143778,33704,0,54584,0,0 +143779,33705,0,54585,0,0 +143780,33706,0,54586,0,0 +143781,33707,0,54587,0,0 +143782,33708,0,54588,0,0 +143783,33709,0,54589,0,0 +143784,33710,0,54590,0,0 +143785,33711,0,54586,0,0 +143786,33712,0,54587,0,0 +143787,33713,0,54588,0,0 +143788,33714,0,54589,0,0 +143789,33715,0,54590,0,0 +143790,33716,0,54591,0,0 +143791,33717,0,54592,0,0 +143792,33718,0,54593,0,0 +143793,33719,0,54594,0,0 +143794,33720,0,54595,0,0 +143795,33721,0,54596,0,0 +143796,33722,0,54575,0,0 +143797,33723,0,54576,0,0 +143798,33724,0,54577,0,0 +143799,33725,0,54578,0,0 +143800,33726,0,54579,0,0 +143801,33727,0,54597,0,0 +143802,33728,0,54598,0,0 +143803,33729,0,54599,0,0 +143804,33730,0,54600,0,0 +143805,33731,0,54601,0,0 +143806,33732,0,54602,0,0 +143807,33733,0,54554,0,0 +143808,33734,0,54603,0,0 +143809,33735,0,52930,0,0 +143810,33736,0,52925,0,0 +143811,33737,0,54604,0,0 +143812,33738,0,54586,0,0 +143813,33739,0,54587,0,0 +143814,33740,0,54588,0,0 +143815,33741,0,54589,0,0 +143816,33742,0,54590,0,0 +143817,33743,0,54572,0,0 +143818,33744,0,54592,0,0 +143819,33745,0,54593,0,0 +143820,33746,0,54594,0,0 +143821,33747,0,54595,0,0 +143822,33748,0,54596,0,0 +143823,33749,0,54575,0,0 +143824,33750,0,54576,0,0 +143825,33751,0,54577,0,0 +143826,33752,0,54578,0,0 +143827,33753,0,54579,0,0 +143828,33754,0,54605,0,0 +143829,33755,0,52930,0,0 +143830,33756,0,54605,0,0 +143831,33757,0,54606,0,0 +143832,33758,0,54607,0,0 +143833,33759,0,54608,0,0 +143834,33760,0,54609,0,0 +143835,33761,0,54610,0,0 +143836,33762,0,54603,0,0 +143837,33763,0,54611,0,0 +143838,33764,0,52908,0,0 +143840,33766,0,54612,0,0 +143841,33767,0,54563,0,0 +143842,33768,0,54564,0,0 +143843,33769,0,54565,0,0 +143844,33770,0,54566,0,0 +143845,33771,0,54567,0,0 +143846,33772,0,54173,0,0 +143857,33789,0,51180,0,0 +143858,33790,0,54613,0,0 +143859,33791,0,47539,0,0 +143861,33793,0,54614,0,0 +143862,33795,0,54615,0,0 +143864,33798,0,54521,0,0 +143865,33799,0,52020,0,0 +143867,33801,0,54605,0,0 +143868,33803,0,46426,0,0 +143870,33805,0,54616,0,0 +143872,33808,0,54617,0,0 +143874,33810,0,54618,0,0 +143875,33811,0,54619,0,0 +143876,33812,0,54620,0,0 +143877,33813,0,54621,0,0 +143883,33820,0,48338,0,0 +143908,33845,0,51688,0,0 +143925,33862,0,54623,0,0 +143926,33863,0,54624,0,0 +143927,33864,0,54625,0,0 +143931,33868,0,54626,0,0 +143939,33876,0,54627,0,0 +143940,33877,0,54628,0,0 +143941,33878,0,54629,0,0 +143942,33879,0,54630,0,0 +143943,33880,0,54631,0,0 +143944,33881,0,54632,0,0 +143945,33882,0,54633,0,0 +143946,33883,0,54634,0,0 +143947,33884,0,54635,0,0 +143948,33885,0,54630,0,0 +143949,33886,0,54631,0,0 +143950,33887,0,54632,0,0 +143951,33888,0,54636,0,0 +143952,33889,0,54637,0,0 +143953,33890,0,54638,0,0 +143954,33891,0,54228,0,0 +143955,33892,0,54639,0,0 +143956,33893,0,54367,0,0 +143957,33894,0,54640,0,0 +143958,33895,0,54641,0,0 +143959,33896,0,54642,0,0 +143960,33897,0,54640,0,0 +143961,33898,0,54641,0,0 +143962,33899,0,54642,0,0 +143963,33900,0,54643,0,0 +143964,33901,0,54644,0,0 +143965,33902,0,54645,0,0 +143966,33903,0,54636,0,0 +143967,33904,0,54637,0,0 +143968,33905,0,54638,0,0 +143969,33906,0,54640,0,0 +143970,33907,0,54641,0,0 +143971,33908,0,54642,0,0 +143972,33909,0,54636,0,0 +143973,33910,0,54637,0,0 +143974,33911,0,54638,0,0 +143975,33912,0,54646,0,0 +143976,33913,0,54647,0,0 +143977,33914,0,54648,0,0 +143978,33915,0,54630,0,0 +143979,33916,0,54631,0,0 +143980,33917,0,54632,0,0 +144023,33963,0,54395,0,0 +144024,33964,0,54469,0,0 +144025,33965,0,54505,0,0 +144026,33966,0,54649,0,0 +144027,33967,0,54650,0,0 +144028,33968,0,54651,0,0 +144029,33969,0,54652,0,0 +144030,33970,0,54501,0,0 +144031,33971,0,54543,0,0 +144032,33972,0,54491,0,0 +144033,33973,0,54470,0,0 +144034,33974,0,54653,0,0 +144035,33975,0,54654,0,0 +144039,33979,0,54655,0,0 +144040,33980,0,54561,0,0 +144041,33981,0,54656,0,0 +144042,33982,0,54657,0,0 +144043,33983,0,54658,0,0 +144044,33984,0,54659,0,0 +144046,33990,0,54660,0,0 +144047,33991,0,54661,0,0 +144048,33992,0,54662,0,0 +144051,34000,0,54663,0,0 +144052,34001,0,54664,0,0 +144053,34002,0,54665,0,0 +144054,34003,0,54666,0,0 +144055,34004,0,54664,0,0 +144056,34005,0,54663,0,0 +144057,34006,0,54665,0,0 +144058,34007,0,54666,0,0 +144059,34008,0,52020,0,0 +144060,34009,0,54667,0,0 +144061,34010,0,53542,0,0 +144062,34011,0,54062,0,0 +144063,34012,0,53547,0,0 +144064,34014,0,54562,0,0 +144065,34015,0,54561,0,0 +144066,34016,0,54585,0,0 +144075,34033,0,52925,0,0 +144080,34045,0,54668,0,0 +144086,34059,0,52908,0,0 +144093,34066,0,52908,0,0 +144101,34085,0,54669,0,0 +144102,34086,0,54670,0,0 +144103,34087,0,54671,0,0 +144106,34098,0,53902,0,0 +144113,34107,0,47819,0,0 +144120,34140,0,54431,0,0 +144130,34158,0,54136,0,0 +144131,34159,0,54137,0,0 +144136,34164,0,54672,0,0 +144137,34165,0,54673,0,0 +144139,34167,0,54674,0,0 +144140,34168,0,54675,0,0 +144141,34169,0,54676,0,0 +144142,34170,0,54677,0,0 +144148,34176,0,54678,0,0 +144151,34179,0,54679,0,0 +144152,34180,0,54680,0,0 +144153,34181,0,54681,0,0 +144154,34182,0,54682,0,0 +144155,34183,0,54683,0,0 +144157,34185,0,54684,0,0 +144158,34186,0,54685,0,0 +144159,34188,0,54686,0,0 +144161,34190,0,54687,0,0 +144163,34192,0,54688,0,0 +144164,34193,0,54689,0,0 +144165,34194,0,54690,0,0 +144166,34195,0,54691,0,0 +144167,34196,0,54692,0,0 +144168,34197,0,54693,0,0 +144169,34198,0,54694,0,0 +144170,34199,0,54695,0,0 +144173,34202,0,54696,0,0 +144174,34203,0,54697,0,0 +144176,34205,0,54698,0,0 +144177,34206,0,54699,0,0 +144179,34208,0,54700,0,0 +144180,34209,0,54701,0,0 +144181,34210,0,54702,0,0 +144182,34211,0,54703,0,0 +144183,34212,0,54704,0,0 +144185,34214,0,54705,0,0 +144186,34215,0,54706,0,0 +144187,34216,0,54707,0,0 +144191,34228,0,54708,0,0 +144192,34229,0,54709,0,0 +144194,34231,0,54710,0,0 +144195,34232,0,54711,0,0 +144196,34233,0,54712,0,0 +144197,34234,0,54713,0,0 +144198,34240,0,54714,0,0 +144199,34241,0,54715,0,0 +144200,34242,0,54716,0,0 +144201,34243,0,54717,0,0 +144202,34244,0,54718,0,0 +144203,34245,0,54719,0,0 +144205,34247,0,54720,0,0 +144220,34263,0,54721,0,0 +144221,34264,0,54722,0,0 +144222,34265,0,54723,0,0 +144223,34266,0,54724,0,0 +144224,34267,0,54725,0,0 +144225,34268,0,54726,0,0 +144226,34269,0,54727,0,0 +144227,34270,0,52403,0,0 +144228,34271,0,52650,0,0 +144229,34272,0,54728,0,0 +144230,34273,0,54028,0,0 +144231,34274,0,54729,0,0 +144232,34275,0,54730,0,0 +144233,34276,0,54731,0,0 +144234,34277,0,54371,0,0 +144235,34278,0,53136,0,0 +144236,34279,0,54732,0,0 +144237,34280,0,54372,0,0 +144238,34281,0,53724,0,0 +144239,34282,0,51310,0,0 +144240,34283,0,51924,0,0 +144241,34284,0,54733,0,0 +144242,34285,0,54734,0,0 +144243,34286,0,54735,0,0 +144244,34287,0,54736,0,0 +144245,34288,0,51926,0,0 +144246,34289,0,52365,0,0 +144247,34290,0,54737,0,0 +144248,34291,0,51862,0,0 +144249,34292,0,54738,0,0 +144250,34293,0,54739,0,0 +144251,34294,0,54740,0,0 +144252,34295,0,54741,0,0 +144253,34296,0,51925,0,0 +144254,34297,0,53606,0,0 +144255,34298,0,54742,0,0 +144256,34299,0,54743,0,0 +144257,34300,0,54744,0,0 +144258,34301,0,52367,0,0 +144259,34302,0,54745,0,0 +144260,34303,0,54746,0,0 +144261,34304,0,54747,0,0 +144262,34305,0,54748,0,0 +144263,34306,0,52705,0,0 +144264,34307,0,54749,0,0 +144265,34308,0,54750,0,0 +144266,34309,0,54751,0,0 +144267,34310,0,54752,0,0 +144268,34311,0,54753,0,0 +144269,34312,0,52103,0,0 +144270,34313,0,53781,0,0 +144271,34314,0,52813,0,0 +144272,34315,0,52406,0,0 +144273,34316,0,54754,0,0 +144274,34317,0,54755,0,0 +144275,34318,0,52138,0,0 +144277,34320,0,54756,0,0 +144278,34321,0,52407,0,0 +144279,34322,0,52670,0,0 +144280,34323,0,52408,0,0 +144281,34324,0,54757,0,0 +144282,34325,0,52638,0,0 +144283,34326,0,54758,0,0 +144284,34327,0,52945,0,0 +144285,34328,0,53007,0,0 +144286,34329,0,54759,0,0 +144288,34331,0,54760,0,0 +144289,34332,0,54761,0,0 +144290,34333,0,54762,0,0 +144291,34334,0,54763,0,0 +144292,34335,0,54764,0,0 +144293,34336,0,54765,0,0 +144294,34337,0,54766,0,0 +144296,34339,0,54767,0,0 +144297,34340,0,54768,0,0 +144298,34341,0,54769,0,0 +144299,34342,0,54770,0,0 +144300,34343,0,54771,0,0 +144301,34344,0,54772,0,0 +144302,34345,0,54773,0,0 +144303,34346,0,54774,0,0 +144304,34347,0,54775,0,0 +144305,34348,0,54776,0,0 +144306,34349,0,54777,0,0 +144307,34350,0,54778,0,0 +144308,34351,0,54779,0,0 +144309,34352,0,54769,0,0 +144310,34353,0,52024,0,0 +144311,34354,0,54278,0,0 +144312,34355,0,54283,0,0 +144313,34356,0,54281,0,0 +144314,34357,0,52025,0,0 +144321,34364,0,54780,0,0 +144322,34365,0,54712,0,0 +144323,34366,0,54781,0,0 +144324,34367,0,54782,0,0 +144326,34369,0,54783,0,0 +144327,34370,0,54713,0,0 +144328,34371,0,54704,0,0 +144329,34372,0,54779,0,0 +144330,34373,0,54784,0,0 +144331,34374,0,54785,0,0 +144332,34375,0,54709,0,0 +144333,34376,0,54778,0,0 +144334,34377,0,54706,0,0 +144335,34378,0,54769,0,0 +144336,34379,0,54707,0,0 +144337,34380,0,54714,0,0 +144338,34381,0,54680,0,0 +144339,34382,0,54786,0,0 +144340,34383,0,54787,0,0 +144341,34384,0,54676,0,0 +144342,34385,0,54676,0,0 +144343,34386,0,54788,0,0 +144344,34388,0,54789,0,0 +144345,34389,0,54689,0,0 +144346,34390,0,54700,0,0 +144347,34391,0,54701,0,0 +144348,34392,0,54790,0,0 +144349,34393,0,54791,0,0 +144350,34394,0,54706,0,0 +144351,34395,0,54707,0,0 +144352,34396,0,54709,0,0 +144353,34397,0,54783,0,0 +144354,34398,0,54792,0,0 +144355,34399,0,54780,0,0 +144356,34400,0,54773,0,0 +144357,34401,0,54717,0,0 +144358,34402,0,54761,0,0 +144359,34403,0,54719,0,0 +144360,34404,0,54719,0,0 +144361,34405,0,54793,0,0 +144362,34406,0,54794,0,0 +144363,34407,0,54779,0,0 +144364,34408,0,54779,0,0 +144365,34409,0,54778,0,0 +144371,34415,0,49374,0,0 +144372,34416,0,48636,0,0 +144373,34417,0,48960,0,0 +144374,34418,0,54795,0,0 +144377,34421,0,46725,0,0 +144378,34422,0,48779,0,0 +144387,34431,0,54796,0,0 +144388,34432,0,54796,0,0 +144389,34433,0,54796,0,0 +144390,34434,0,54797,0,0 +144391,34435,0,54797,0,0 +144392,34436,0,54798,0,0 +144393,34437,0,54799,0,0 +144394,34438,0,54799,0,0 +144395,34439,0,54800,0,0 +144397,34441,0,54801,0,0 +144398,34442,0,54801,0,0 +144399,34443,0,54802,0,0 +144400,34444,0,54803,0,0 +144401,34445,0,54804,0,0 +144402,34446,0,54804,0,0 +144403,34447,0,54805,0,0 +144404,34448,0,54806,0,0 +144405,34449,0,54807,0,0 +144406,34450,0,54808,0,0 +144407,34451,0,52337,0,0 +144408,34452,0,52432,0,0 +144409,34453,0,54809,0,0 +144410,34454,0,54810,0,0 +144411,34455,0,54811,0,0 +144412,34456,0,52431,0,0 +144413,34457,0,53275,0,0 +144414,34458,0,54812,0,0 +144415,34459,0,54813,0,0 +144416,34460,0,54814,0,0 +144417,34461,0,52430,0,0 +144418,34462,0,54815,0,0 +144419,34463,0,54816,0,0 +144439,34484,0,47617,0,0 +144440,34485,0,54817,0,0 +144441,34486,0,47614,0,0 +144442,34487,0,54817,0,0 +144443,34488,0,54817,0,0 +144460,34505,0,54818,0,0 +144461,34506,0,52376,0,0 +144462,34507,0,54819,0,0 +144463,34508,0,51313,0,0 +144464,34509,0,54820,0,0 +144465,34510,0,54821,0,0 +144466,34511,0,54822,0,0 +144467,34512,0,51344,0,0 +144468,34513,0,53607,0,0 +144469,34514,0,52379,0,0 +144470,34515,0,54823,0,0 +144471,34516,0,52344,0,0 +144472,34517,0,51316,0,0 +144475,34520,0,54824,0,0 +144476,34521,0,54825,0,0 +144477,34522,0,54826,0,0 +144478,34523,0,54827,0,0 +144479,34524,0,54828,0,0 +144480,34525,0,54829,0,0 +144481,34526,0,54830,0,0 +144482,34527,0,54831,0,0 +144483,34528,0,54831,0,0 +144484,34529,0,54832,0,0 +144485,34530,0,54833,0,0 +144486,34531,0,52550,0,0 +144487,34532,0,54834,0,0 +144489,34534,0,51036,0,0 +144491,34536,0,54835,0,0 +144495,34540,0,54612,0,0 +144496,34541,0,54836,0,0 +144497,34542,0,54837,0,0 +144498,34543,0,54837,0,0 +144500,34545,0,54837,0,0 +144501,34546,0,54838,0,0 +144502,34547,0,54838,0,0 +144504,34549,0,54839,0,0 +144505,34552,0,54840,0,0 +144506,34553,0,54841,0,0 +144507,34554,0,54842,0,0 +144508,34555,0,54842,0,0 +144509,34556,0,54842,0,0 +144510,34557,0,54843,0,0 +144511,34558,0,54844,0,0 +144512,34559,0,54845,0,0 +144513,34560,0,54845,0,0 +144514,34561,0,54845,0,0 +144515,34562,0,54846,0,0 +144516,34563,0,54846,0,0 +144517,34564,0,54847,0,0 +144518,34565,0,54848,0,0 +144519,34566,0,54848,0,0 +144520,34567,0,54848,0,0 +144521,34568,0,54849,0,0 +144522,34569,0,54849,0,0 +144523,34570,0,54850,0,0 +144524,34571,0,54851,0,0 +144525,34572,0,54851,0,0 +144526,34573,0,54851,0,0 +144527,34574,0,54852,0,0 +144528,34575,0,54853,0,0 +144534,34581,0,46426,0,0 +144535,34582,0,46427,0,0 +144539,34586,0,54854,0,0 +144541,34588,0,54855,0,0 +144542,34589,0,54856,0,0 +144543,34590,0,54841,0,0 +144544,34591,0,54834,0,0 +144549,34596,0,54857,0,0 +144551,34601,0,54858,0,0 +144552,34602,0,54859,0,0 +144553,34603,0,53032,0,0 +144554,34604,0,54860,0,0 +144555,34605,0,53089,0,0 +144556,34606,0,54861,0,0 +144557,34607,0,54862,0,0 +144558,34608,0,52838,0,0 +144559,34609,0,52827,0,0 +144560,34610,0,54863,0,0 +144561,34611,0,54864,0,0 +144562,34612,0,53311,0,0 +144563,34613,0,54865,0,0 +144564,34614,0,52948,0,0 +144565,34615,0,54866,0,0 +144566,34616,0,54867,0,0 +144567,34622,0,54868,0,0 +144583,34665,0,51312,0,0 +144584,34666,0,51342,0,0 +144585,34667,0,52050,0,0 +144586,34670,0,52096,0,0 +144587,34671,0,52097,0,0 +144588,34672,0,52143,0,0 +144589,34673,0,53473,0,0 +144590,34674,0,54869,0,0 +144591,34675,0,54841,0,0 +144592,34676,0,54856,0,0 +144597,34683,0,54870,0,0 +144599,34685,0,54871,0,0 +144602,34697,0,52615,0,0 +144603,34698,0,52647,0,0 +144604,34699,0,54872,0,0 +144605,34700,0,54873,0,0 +144606,34701,0,46038,0,0 +144607,34702,0,50305,0,0 +144608,34703,0,52832,0,0 +144610,34705,0,52607,0,0 +144612,34707,0,52871,0,0 +144613,34708,0,48708,0,0 +144616,34783,0,53032,0,0 +144617,34788,0,51856,0,0 +144618,34789,0,54874,0,0 +144619,34790,0,52433,0,0 +144620,34791,0,54875,0,0 +144621,34792,0,52595,0,0 +144622,34793,0,54876,0,0 +144623,34794,0,52803,0,0 +144624,34795,0,54877,0,0 +144625,34796,0,54878,0,0 +144626,34797,0,51318,0,0 +144628,34799,0,51620,0,0 +144629,34807,0,52907,0,0 +144630,34808,0,54879,0,0 +144631,34809,0,54880,0,0 +144632,34810,0,53359,0,0 +144638,34827,0,45872,0,0 +144639,34828,0,47216,0,0 +144640,34829,0,46492,0,0 +144655,34847,0,52022,0,0 +144667,34859,0,46133,0,0 +144678,34873,0,54882,0,0 +144679,34874,0,54883,0,0 +144680,34875,0,54884,0,0 +144681,34876,0,54885,0,0 +144682,34877,0,54682,0,0 +144683,34878,0,54886,0,0 +144684,34879,0,54887,0,0 +144685,34880,0,53693,0,0 +144686,34881,0,53054,0,0 +144687,34882,0,54888,0,0 +144688,34883,0,52879,0,0 +144689,34884,0,54889,0,0 +144690,34885,0,53549,0,0 +144691,34886,0,53109,0,0 +144696,34891,0,54890,0,0 +144697,34892,0,54891,0,0 +144698,34893,0,54892,0,0 +144699,34894,0,54893,0,0 +144700,34895,0,54894,0,0 +144701,34896,0,54895,0,0 +144702,34898,0,54896,0,0 +144703,34900,0,54897,0,0 +144704,34901,0,54898,0,0 +144705,34902,0,54653,0,0 +144706,34903,0,54897,0,0 +144707,34904,0,54653,0,0 +144708,34905,0,54898,0,0 +144709,34906,0,54897,0,0 +144711,34910,0,54898,0,0 +144712,34911,0,54653,0,0 +144713,34912,0,54899,0,0 +144714,34914,0,54900,0,0 +144715,34916,0,54901,0,0 +144716,34917,0,54902,0,0 +144717,34918,0,54903,0,0 +144718,34919,0,53016,0,0 +144719,34921,0,53844,0,0 +144720,34922,0,54904,0,0 +144721,34923,0,53837,0,0 +144722,34924,0,54905,0,0 +144723,34925,0,54906,0,0 +144724,34926,0,54907,0,0 +144725,34927,0,54908,0,0 +144726,34928,0,53838,0,0 +144727,34929,0,54909,0,0 +144728,34930,0,54910,0,0 +144729,34931,0,54536,0,0 +144730,34932,0,54837,0,0 +144731,34933,0,54910,0,0 +144732,34934,0,54539,0,0 +144733,34935,0,54837,0,0 +144734,34936,0,53853,0,0 +144735,34937,0,53856,0,0 +144736,34938,0,54911,0,0 +144737,34939,0,54259,0,0 +144738,34940,0,53843,0,0 +144739,34941,0,53567,0,0 +144740,34942,0,54259,0,0 +144741,34943,0,53843,0,0 +144742,34944,0,54912,0,0 +144743,34945,0,53844,0,0 +144744,34946,0,54913,0,0 +144745,34947,0,54914,0,0 +144746,34949,0,54893,0,0 +144747,34950,0,54915,0,0 +144748,34951,0,54915,0,0 +144749,34952,0,54893,0,0 +144752,34985,0,52908,0,0 +144753,34986,0,54916,0,0 +144754,34987,0,54917,0,0 +144755,34988,0,54918,0,0 +144756,34989,0,54919,0,0 +144757,34990,0,54920,0,0 +144758,34991,0,54921,0,0 +144759,34992,0,54922,0,0 +144760,34993,0,54923,0,0 +144761,34994,0,54924,0,0 +144762,34995,0,54925,0,0 +144763,34996,0,54925,0,0 +144764,34997,0,54926,0,0 +144765,34998,0,54927,0,0 +144766,34999,0,54928,0,0 +144767,35000,0,54929,0,0 +144768,35001,0,54930,0,0 +144769,35002,0,54931,0,0 +144770,35003,0,54932,0,0 +144771,35004,0,54933,0,0 +144772,35005,0,54934,0,0 +144773,35006,0,54935,0,0 +144774,35007,0,54936,0,0 +144775,35008,0,52925,0,0 +144776,35009,0,54935,0,0 +144777,35010,0,54933,0,0 +144778,35011,0,54932,0,0 +144779,35012,0,54936,0,0 +144780,35013,0,54937,0,0 +144781,35014,0,54938,0,0 +144782,35015,0,54885,0,0 +144783,35016,0,52925,0,0 +144784,35017,0,54925,0,0 +144785,35018,0,54939,0,0 +144789,35022,0,54927,0,0 +144790,35023,0,54940,0,0 +144791,35024,0,54929,0,0 +144792,35025,0,54930,0,0 +144793,35026,0,54931,0,0 +144794,35027,0,54941,0,0 +144795,35028,0,54942,0,0 +144796,35029,0,54943,0,0 +144797,35030,0,54944,0,0 +144798,35031,0,54945,0,0 +144799,35032,0,54946,0,0 +144800,35033,0,54947,0,0 +144801,35034,0,54948,0,0 +144802,35035,0,54949,0,0 +144803,35036,0,54950,0,0 +144804,35037,0,54951,0,0 +144805,35038,0,54951,0,0 +144809,35042,0,54952,0,0 +144810,35043,0,54953,0,0 +144811,35044,0,54954,0,0 +144812,35045,0,54955,0,0 +144813,35046,0,54956,0,0 +144814,35047,0,54957,0,0 +144815,35048,0,54952,0,0 +144816,35049,0,54953,0,0 +144817,35050,0,54954,0,0 +144818,35051,0,54955,0,0 +144819,35052,0,54956,0,0 +144820,35053,0,54958,0,0 +144821,35054,0,54959,0,0 +144822,35055,0,54960,0,0 +144823,35056,0,54961,0,0 +144824,35057,0,54962,0,0 +144825,35058,0,54963,0,0 +144826,35059,0,54941,0,0 +144827,35060,0,54942,0,0 +144828,35061,0,54943,0,0 +144829,35062,0,54944,0,0 +144830,35063,0,54945,0,0 +144831,35064,0,54964,0,0 +144832,35065,0,52908,0,0 +144833,35066,0,54965,0,0 +144834,35067,0,54966,0,0 +144835,35068,0,54967,0,0 +144836,35069,0,54968,0,0 +144837,35070,0,54969,0,0 +144838,35071,0,54918,0,0 +144839,35072,0,54970,0,0 +144840,35073,0,54971,0,0 +144841,35074,0,52925,0,0 +144842,35075,0,54972,0,0 +144843,35076,0,54973,0,0 +144844,35077,0,54952,0,0 +144845,35078,0,54953,0,0 +144846,35079,0,54974,0,0 +144847,35080,0,54955,0,0 +144848,35081,0,54956,0,0 +144849,35082,0,54975,0,0 +144850,35083,0,54958,0,0 +144851,35084,0,54959,0,0 +144852,35085,0,54960,0,0 +144853,35086,0,54961,0,0 +144854,35087,0,54962,0,0 +144855,35088,0,54941,0,0 +144856,35089,0,54942,0,0 +144857,35090,0,54943,0,0 +144858,35091,0,54944,0,0 +144859,35092,0,54945,0,0 +144860,35093,0,54963,0,0 +144861,35094,0,54976,0,0 +144862,35095,0,54963,0,0 +144863,35096,0,54977,0,0 +144864,35097,0,54978,0,0 +144865,35098,0,54958,0,0 +144866,35099,0,54979,0,0 +144867,35100,0,54980,0,0 +144868,35101,0,54970,0,0 +144869,35102,0,54981,0,0 +144870,35103,0,54886,0,0 +144874,35107,0,52908,0,0 +144876,35109,0,54917,0,0 +144877,35110,0,54925,0,0 +144878,35111,0,54927,0,0 +144879,35112,0,54928,0,0 +144880,35113,0,54929,0,0 +144881,35114,0,54930,0,0 +144882,35115,0,54931,0,0 +144883,35117,0,54982,0,0 +144892,35136,0,54983,0,0 +144893,35137,0,54984,0,0 +144894,35138,0,54985,0,0 +144895,35139,0,54984,0,0 +144896,35140,0,54986,0,0 +144897,35141,0,54987,0,0 +144898,35142,0,54988,0,0 +144899,35143,0,54988,0,0 +144900,35144,0,54989,0,0 +144901,35145,0,54986,0,0 +144902,35146,0,54990,0,0 +144903,35147,0,54988,0,0 +144904,35148,0,54986,0,0 +144905,35149,0,54991,0,0 +144906,35150,0,54984,0,0 +144907,35151,0,54992,0,0 +144908,35152,0,54993,0,0 +144909,35153,0,54994,0,0 +144910,35154,0,54993,0,0 +144911,35155,0,54995,0,0 +144912,35156,0,54996,0,0 +144913,35157,0,54997,0,0 +144914,35158,0,54997,0,0 +144915,35159,0,54998,0,0 +144916,35160,0,54995,0,0 +144917,35161,0,54999,0,0 +144918,35162,0,54997,0,0 +144919,35163,0,54995,0,0 +144920,35164,0,55000,0,0 +144921,35165,0,54993,0,0 +144922,35166,0,55001,0,0 +144923,35167,0,55002,0,0 +144924,35168,0,55003,0,0 +144925,35169,0,55002,0,0 +144926,35170,0,55004,0,0 +144927,35171,0,55005,0,0 +144928,35172,0,55006,0,0 +144929,35173,0,55006,0,0 +144930,35174,0,55007,0,0 +144931,35175,0,55004,0,0 +144932,35176,0,55008,0,0 +144933,35177,0,55006,0,0 +144934,35178,0,55004,0,0 +144935,35179,0,55009,0,0 +144936,35180,0,55002,0,0 +144937,35181,0,54287,0,0 +144938,35182,0,52025,0,0 +144939,35183,0,54284,0,0 +144940,35184,0,54282,0,0 +144941,35185,0,52019,0,0 +144975,35220,0,54917,0,0 +144976,35221,0,55010,0,0 +144985,35233,0,55012,0,0 +144986,35236,0,55013,0,0 +145026,35279,0,55014,0,0 +145027,35280,0,55015,0,0 +145063,35321,0,54477,0,0 +145066,35324,0,47170,0,0 +145070,35328,0,55016,0,0 +145071,35329,0,55017,0,0 +145072,35330,0,55018,0,0 +145073,35331,0,55019,0,0 +145074,35332,0,55020,0,0 +145075,35333,0,55021,0,0 +145076,35334,0,55022,0,0 +145077,35335,0,55023,0,0 +145078,35336,0,55024,0,0 +145079,35337,0,55025,0,0 +145080,35338,0,55023,0,0 +145081,35339,0,55021,0,0 +145082,35340,0,55022,0,0 +145083,35341,0,55024,0,0 +145084,35342,0,55025,0,0 +145085,35343,0,55026,0,0 +145086,35344,0,55027,0,0 +145087,35345,0,55028,0,0 +145088,35346,0,55029,0,0 +145089,35347,0,53176,0,0 +145094,35356,0,55030,0,0 +145095,35357,0,55031,0,0 +145096,35358,0,55032,0,0 +145097,35359,0,55033,0,0 +145098,35360,0,55034,0,0 +145099,35361,0,55030,0,0 +145100,35362,0,55031,0,0 +145101,35363,0,55032,0,0 +145102,35364,0,55033,0,0 +145103,35365,0,55034,0,0 +145104,35366,0,55035,0,0 +145105,35367,0,55036,0,0 +145106,35368,0,55037,0,0 +145107,35369,0,54865,0,0 +145108,35370,0,55038,0,0 +145109,35371,0,55035,0,0 +145110,35372,0,55031,0,0 +145111,35373,0,55032,0,0 +145112,35374,0,55033,0,0 +145113,35375,0,55034,0,0 +145114,35376,0,55039,0,0 +145115,35377,0,55040,0,0 +145116,35378,0,52885,0,0 +145117,35379,0,52764,0,0 +145118,35380,0,52726,0,0 +145119,35381,0,55041,0,0 +145120,35382,0,55042,0,0 +145121,35383,0,55043,0,0 +145122,35384,0,55044,0,0 +145123,35385,0,55045,0,0 +145124,35386,0,55041,0,0 +145125,35387,0,55042,0,0 +145126,35388,0,55043,0,0 +145127,35389,0,55044,0,0 +145128,35390,0,55045,0,0 +145129,35391,0,55041,0,0 +145130,35392,0,55042,0,0 +145131,35393,0,55043,0,0 +145132,35394,0,55044,0,0 +145133,35395,0,55045,0,0 +145139,35402,0,55046,0,0 +145140,35403,0,55047,0,0 +145141,35404,0,55048,0,0 +145142,35405,0,55049,0,0 +145143,35406,0,55050,0,0 +145144,35407,0,53051,0,0 +145145,35408,0,53017,0,0 +145146,35409,0,55051,0,0 +145147,35410,0,55052,0,0 +145148,35411,0,55053,0,0 +145149,35412,0,55046,0,0 +145150,35413,0,55047,0,0 +145151,35414,0,55048,0,0 +145152,35415,0,55049,0,0 +145153,35416,0,55050,0,0 +145200,35463,0,54272,0,0 +145201,35464,0,55020,0,0 +145202,35465,0,55026,0,0 +145203,35466,0,55021,0,0 +145204,35467,0,55025,0,0 +145205,35468,0,55035,0,0 +145206,35469,0,55034,0,0 +145207,35470,0,55033,0,0 +145208,35471,0,55035,0,0 +145209,35472,0,55041,0,0 +145210,35473,0,55042,0,0 +145211,35474,0,55043,0,0 +145212,35475,0,55040,0,0 +145213,35476,0,55050,0,0 +145214,35477,0,55047,0,0 +145215,35478,0,55051,0,0 +145220,35494,0,47038,0,0 +145221,35495,0,47038,0,0 +145222,35496,0,47038,0,0 +145223,35497,0,47038,0,0 +145235,35510,0,50914,0,0 +145239,35514,0,55054,0,0 +145289,35581,0,46311,0,0 +145291,35674,0,53283,0,0 +145292,35684,0,55055,0,0 +145307,35712,0,55056,0,0 +145309,35714,0,53755,0,0 +145312,35719,0,55057,0,0 +145322,35732,0,55058,0,0 +145349,36737,0,54925,0,0 +145351,36761,0,54431,0,0 +145354,36941,0,55059,0,0 +145357,37059,0,54425,0,0 +145389,37596,0,55060,0,0 +145390,37597,0,49256,0,0 +145401,37739,0,54981,0,0 +145402,37740,0,54975,0,0 +145411,37892,0,55061,0,0 +145412,37893,0,54425,0,0 +145413,37894,0,54425,0,0 +145414,37895,0,54425,0,0 +145415,37896,0,54425,0,0 +145416,37897,0,54425,0,0 +145436,38089,0,48892,0,0 +145439,38160,0,55062,0,0 +145440,38161,0,55063,0,0 +145441,38162,0,55064,0,0 +145442,38163,0,55065,0,0 +145444,38175,0,51017,0,0 +145450,38275,0,55066,0,0 +145451,38276,0,55067,0,0 +145452,38277,0,55068,0,0 +145453,38278,0,55069,0,0 +145454,38279,0,55070,0,0 +145457,38285,0,55071,0,0 +145458,38286,0,55072,0,0 +145469,38309,0,55073,0,0 +145470,38310,0,55074,0,0 +145471,38311,0,55075,0,0 +145472,38312,0,55076,0,0 +145473,38313,0,55077,0,0 +145474,38314,0,55078,0,0 +145479,38352,0,55073,0,0 +145487,38506,0,55067,0,0 +145498,38579,0,49269,0,0 +145508,171470,0,51019,0,0 +145532,185985,0,49271,0,0 +145534,185987,0,49271,0,0 +145536,186048,0,48957,0,0 +145537,186049,0,46496,0,0 +145538,186050,0,47217,0,0 +145539,186051,0,49311,0,0 +145543,186055,0,49358,0,0 +145544,186056,0,46530,0,0 +145545,186057,0,55080,0,0 +145546,186058,0,51126,0,0 +145547,186060,0,49286,0,0 +145548,186061,0,51046,0,0 +145549,186062,0,48157,0,0 +145550,186063,0,48517,0,0 +145551,186064,0,55092,0,0 +145555,186068,0,47429,0,0 +145556,186069,0,53031,0,0 +145557,186070,0,55093,0,0 +145562,186163,0,51126,0,0 +146055,186682,0,55117,0,0 +146099,3579,0,55320,0,0 +146100,4574,0,55320,0,0 +146101,5856,0,55321,0,0 +146102,6886,0,55322,0,0 +146103,7248,0,55320,0,0 +146104,11930,0,55320,0,0 +146105,13371,0,55323,0,0 +146106,13727,0,55320,0,0 +146107,13728,0,55320,0,0 +146108,13729,0,55320,0,0 +146109,13730,0,55320,0,0 +146110,13731,0,55320,0,0 +146111,13735,0,55320,0,0 +146112,13736,0,55320,0,0 +146113,13737,0,55320,0,0 +146114,13738,0,55320,0,0 +146115,13739,0,55320,0,0 +146116,13740,0,55320,0,0 +146117,13741,0,55320,0,0 +146118,13742,0,55320,0,0 +146119,13743,0,55320,0,0 +146120,13744,0,55320,0,0 +146121,13745,0,55320,0,0 +146122,13746,0,55320,0,0 +146123,13747,0,55320,0,0 +146124,13748,0,55320,0,0 +146125,13749,0,55320,0,0 +146126,13762,0,55320,0,0 +146127,13763,0,55320,0,0 +146128,13764,0,55320,0,0 +146129,13765,0,55320,0,0 +146130,13766,0,55320,0,0 +146131,13767,0,55320,0,0 +146132,13768,0,55320,0,0 +146133,13769,0,55320,0,0 +146134,13770,0,55320,0,0 +146135,13771,0,55320,0,0 +146136,13772,0,55320,0,0 +146137,13773,0,55320,0,0 +146138,13774,0,55320,0,0 +146139,13775,0,55320,0,0 +146140,13776,0,55320,0,0 +146141,13777,0,55320,0,0 +146142,13778,0,55320,0,0 +146143,13779,0,55320,0,0 +146144,13780,0,55320,0,0 +146145,13781,0,55320,0,0 +146146,13782,0,55320,0,0 +146147,13783,0,55320,0,0 +146148,13784,0,55320,0,0 +146149,13785,0,55320,0,0 +146150,13786,0,55320,0,0 +146151,13788,0,55320,0,0 +146152,13789,0,55320,0,0 +146153,13791,0,55320,0,0 +146154,13792,0,55320,0,0 +146155,13794,0,55320,0,0 +146156,13795,0,55320,0,0 +146157,13797,0,55320,0,0 +146158,13798,0,55320,0,0 +146159,13799,0,55320,0,0 +146160,13800,0,55320,0,0 +146161,13801,0,55320,0,0 +146162,13802,0,55320,0,0 +146163,13803,0,55320,0,0 +146164,13804,0,55320,0,0 +146165,13805,0,55320,0,0 +146166,13806,0,55320,0,0 +146167,13807,0,55320,0,0 +146168,13808,0,55320,0,0 +146169,13809,0,55320,0,0 +146170,15944,0,55323,0,0 +146171,15969,0,55323,0,0 +146172,25859,0,55320,0,0 +146173,25860,0,55320,0,0 +146174,25861,0,55321,0,0 +146175,25872,0,55322,0,0 +146176,25873,0,55324,0,0 +146177,25875,0,55325,0,0 +146178,25876,0,55326,0,0 +146179,25877,0,55327,0,0 +146180,25878,0,55328,0,0 +146181,27398,0,55323,0,0 +146182,27928,0,55329,0,0 +146183,27929,0,55329,0,0 +146184,28319,0,55329,0,0 +146185,28408,0,55330,0,0 +146186,28534,0,55327,0,0 +146187,28535,0,55329,0,0 +146188,28540,0,55326,0,0 +146189,28932,0,55329,0,0 +146190,28958,0,55329,0,0 +146191,28972,0,55331,0,0 +146192,28979,0,55332,0,0 +146193,29007,0,55333,0,0 +146194,29009,0,55334,0,0 +146195,29014,0,55324,0,0 +146196,29210,0,55326,0,0 +146197,29211,0,55331,0,0 +146198,29212,0,55335,0,0 +146199,29584,0,55334,0,0 +146200,30702,0,55320,0,0 +146201,32054,0,55329,0,0 +146202,32378,0,55330,0,0 +146203,32968,0,55320,0,0 +146204,33765,0,55329,0,0 +146205,34419,0,55326,0,0 +146206,35108,0,55329,0,0 +146207,186380,0,49417,0,0 +146460,2101,0,55474,0,0 +146461,2662,0,55475,0,0 +146462,3573,0,55476,0,0 +146463,3605,0,55477,0,0 +146464,5439,0,55478,0,0 +146465,7278,0,55479,0,0 +146466,7371,0,55480,0,0 +146467,8217,0,55481,0,0 +146468,11362,0,55482,0,0 +146469,18714,0,55475,0,0 +146470,19319,0,55475,0,0 +146471,29143,0,55483,0,0 +146472,29144,0,55484,0,0 +146473,34100,0,55475,0,0 +146474,34105,0,55475,0,0 diff --git a/HermesProxy/CSV/ItemSparse1.csv b/HermesProxy/CSV/ItemSparse1.csv new file mode 100644 index 00000000..1f3c75ab --- /dev/null +++ b/HermesProxy/CSV/ItemSparse1.csv @@ -0,0 +1,17600 @@ +"Id","AllowableRace","Description","Name4","Name3","Name2","Name1","DmgVariance","DurationInInventory","QualityModifier","BagFamily","RangeMod","StatPercentageOfSocket1","StatPercentageOfSocket2","StatPercentageOfSocket3","StatPercentageOfSocket4","StatPercentageOfSocket5","StatPercentageOfSocket6","StatPercentageOfSocket7","StatPercentageOfSocket8","StatPercentageOfSocket9","StatPercentageOfSocket10","StatPercentEditor1","StatPercentEditor2","StatPercentEditor3","StatPercentEditor4","StatPercentEditor5","StatPercentEditor6","StatPercentEditor7","StatPercentEditor8","StatPercentEditor9","StatPercentEditor10","Stackable","MaxCount","RequiredAbility","SellPrice","BuyPrice","VendorStackCount","PriceVariance","PriceRandomValue","Flags1","Flags2","Flags3","Flags4","OppositeFactionItemId","MaxDurability","ItemNameDescriptionId","RequiredTransmogHoliday","RequiredHoliday","LimitCategory","GemProperties","SocketMatchEnchantmentId","TotemCategoryId","InstanceBound","ZoneBound1","ZoneBound2","ItemSet","LockId","StartQuestId","PageText","Delay","RequiredReputationId","RequiredSkillRank","RequiredSkill","ItemLevel","AllowableClass","ItemRandomSuffixGroupId","RandomProperty","MinDamage1","MinDamage2","MinDamage3","MinDamage4","MinDamage5","MaxDamage1","MaxDamage2","MaxDamage3","MaxDamage4","MaxDamage5","Resistances1","Resistances2","Resistances3","Resistances4","Resistances5","Resistances6","Resistances7","ScalingStatDistributionId","ExpansionId","ArtifactId","SpellWeight","SpellWeightCategory","SocketType1","SocketType2","SocketType3","SheatheType","Material","PageMaterial","PageLanguage","Bonding","DamageType","StatType1","StatType2","StatType3","StatType4","StatType5","StatType6","StatType7","StatType8","StatType9","StatType10","ContainerSlots","RequiredReputationRank","RequiredCityRank","RequiredHonorRank","InventoryType","OverallQualityId","AmmoType","StatValue1","StatValue2","StatValue3","StatValue4","StatValue5","StatValue6","StatValue7","StatValue8","StatValue9","StatValue10","RequiredLevel" +"25","-1","","","","","Worn Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"35","-1","","","","","Bent Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"36","-1","","","","","Worn Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37","-1","","","","","Worn Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"38","-1","","","","","Recruit's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"39","-1","","","","","Recruit's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"40","-1","","","","","Recruit's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"41","-1","","","","","OLDRecruit's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"42","-1","","","","","OLDSquire's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"43","-1","","","","","Squire's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"44","-1","","","","","Squire's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"45","-1","","","","","Squire's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"46","-1","","","","","OLDFootpad's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"47","-1","","","","","Footpad's Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"48","-1","","","","","Footpad's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"49","-1","","","","","Footpad's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"50","-1","","","","","OLDInitiate's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"51","-1","","","","","Neophyte's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"52","-1","","","","","Neophyte's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"53","-1","","","","","Neophyte's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"54","-1","","","","","OLDNovice's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"55","-1","","","","","Apprentice's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"56","-1","","","","","Apprentice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"57","-1","","","","","Acolyte's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"58","-1","","","","","OLDAcolyte's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"59","-1","","","","","Acolyte's Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"60","-1","","","","","Layered Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"61","-1","","","","","Dwarven Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"77","-1","","","","","Deprecated Outfitter Cloth Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","34","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"79","-1","","","","","Dwarven Cloth Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"80","-1","","","","","Soft Fur-lined Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"85","-1","","","","","Dirty Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","62","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"86","-1","","","","","Deprecated Old Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"87","-1","","","","","Deprecated Old Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"88","-1","","","","","Deprecated Old Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"89","-1","","","","","OLDThick Trapper's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"90","-1","","","","","OLDDwarven Initiate's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"91","-1","","","","","OLDDwarven Initiate's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"92","-1","","","","","OLDDwarven Initiate's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"93","-1","","","","","OLDDwarven Initiate's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"94","-1","","","","","Deprecated Dwarven Novice's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"95","-1","","","","","Deprecated Dwarven Novice's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"97","-1","","","","","Deprecated Dwarven Novice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"98","-1","","","","","Deprecated Dwarven Squire's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"99","-1","","","","","Deprecated Dwarven Squire's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"100","-1","","","","","Deprecated Dwarven Squire's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"101","-1","","","","","Deprecated Dwarven Squire's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"102","-1","","","","","Deprecated Dwarven Recruit's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"103","-1","","","","","Deprecated Dwarven Recruit's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"104","-1","","","","","Deprecated Sturdy Brown Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"105","-1","","","","","Deprecated Dwarven Recruit's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"113","-1","","","","","Deprecated Dwarven Apprentice Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"114","-1","","","","","Deprecated Dwarven Apprentice Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"115","-1","","","","","Deprecated Dwarven Apprentice Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"117","-1","","","","","Tough Jerky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"118","-1","","","","","Minor Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"119","-1","","","","","Deprecated Rogue's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"120","-1","","","","","Thug Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"121","-1","","","","","Thug Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"122","-1","","","","","OLDThug Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"123","-1","","","","","Deprecated Orc Apprentice Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"124","-1","","","","","Deprecated Orc Apprentice Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"125","-1","","","","","Deprecated Orc Apprentice Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"126","-1","","","","","Deprecated Orc Apprentice Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"127","-1","","","","","Trapper's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"128","-1","","","","","Deprecated Tauren Trapper's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"129","-1","","","","","Rugged Trapper's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"130","-1","","","","","Deprecated Tauren Trapper's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"131","-1","","","","","Deprecated Orc Acolyte's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"132","-1","","","","","Deprecated Orc Acolyte's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"133","-1","","","","","Deprecated Orc Acolyte's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"134","-1","","","","","Deprecated Stiff Leather Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"135","-1","","","","","Deprecated Stiff Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"136","-1","","","","","Deprecated Old Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"137","-1","","","","","OLDNeophyte's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"138","-1","","","","","Deprecated War Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"139","-1","","","","","Brawler's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"140","-1","","","","","Brawler's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"141","-1","","","","","OLDBrawler's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"143","-1","","","","","Monster - Shield, Stormwind Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"146","-1","","","","","OLDRugged Trapper's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"147","-1","","","","","Rugged Trapper's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"148","-1","","","","","Rugged Trapper's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"149","-1","","","","","Deprecated Tauren Apprentice Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"150","-1","","","","","Deprecated Tauren Apprentice Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"151","-1","","","","","Deprecated Tauren Apprentice Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"152","-1","","","","","OLDPrimitive Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"153","-1","","","","","Primitive Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"154","-1","","","","","Primitive Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"155","-1","","","","","Deprecated Tauren Recruit's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"156","-1","","","","","Deprecated Tauren Recruit's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"157","-1","","","","","Deprecated Tauren Recruit's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"159","-1","","","","","Refreshing Spring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"182","-1","","","","","Garrick's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184","-1","","","","","Deprecated Small Brown Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"193","-1","","","","","Tattered Cloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"194","-1","","","","","Tattered Cloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"195","-1","","","","","Tattered Cloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"200","-1","","","","","Thick Cloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","454","2270","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"201","-1","","","","","Thick Cloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","455","2278","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"202","-1","","","","","Thick Cloth Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","342","1714","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"203","-1","","","","","Thick Cloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1147","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"209","-1","","","","","Dirty Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"210","-1","","","","","Dirty Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"236","-1","","","","","Cured Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","559","2795","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"237","-1","","","","","Cured Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2805","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"238","-1","","","","","Cured Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","422","2112","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"239","-1","","","","","Cured Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","282","1413","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"285","-1","","","","","Scalemail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","3555","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"286","-1","","","","","Scalemail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","645","3229","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"287","-1","","","","","Scalemail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","488","2441","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"414","-1","","","","","Dalaran Sharp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"422","-1","","","","","Dwarven Mild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"527","-1","","","","","Deprecated Gnoll War Beads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"537","-1","","","","","Dull Frenzy Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"555","-1","","","","","Rough Vulture Feathers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"556","-1","","","","","Buzzard Beak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","106","425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"647","-1","","","","","Destiny","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70024","350121","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","52" +"710","-1","","","","","Bracers of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","361","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"711","-1","","","","","Tattered Cloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"714","-1","","","","","Dirty Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"718","-1","","","","","Scalemail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","322","1614","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"719","-1","","","","","Rabbit Handler Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"720","-1","","","","","Brawler Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1070","5350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","7","0","0","0","0","0","0","0","0","23" +"723","-1","","","","","Goretusk Liver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"724","-1","","","","","Goretusk Liver Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"725","-1","","","","","Gnoll Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"727","-1","","","","","Notched Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1224","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","10","-1","0","5168","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","5" +"728","-1","","","","","Recipe: Westfall Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"729","-1","","","","","Stringy Vulture Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","17","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"730","-1","","","","","Murloc Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"731","-1","","","","","Goretusk Snout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"732","-1","","","","","Okra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"733","-1","","","","","Westfall Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"734","-1","Upon this iron disk are stamped the words: ""Footman Malakai Stone""","","","","Deprecated Malakai's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"735","-1","","","","","Rolf and Malakai's Medallions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"737","-1","","","","","Holy Spring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"738","-1","","","","","Sack of Barley","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"739","-1","","","","","Sack of Corn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"740","-1","","","","","Sack of Rye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"741","-1","","","","","Deprecated Copper Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"742","-1","","","","","A Sycamore Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"743","-1","","","","","Bundle of Charred Oak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"744","-1","","","","","Thunderbrew's Boot Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"745","-1","","","","","Marshal McBride's Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"746","-1","","","","","Lord Brandon's Tabard (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","1" +"748","-1","","","","","Stormwind Armor Marker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"750","-1","","","","","Tough Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"751","-1","","","","","Deprecated Wolf Femur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"752","-1","","","","","Red Burlap Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"753","-1","","","","","Dragonmaw Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3842","19211","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","28","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","23" +"754","-1","","","","","Shortsword of Vengeance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23556","117784","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","47","-1","0","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","42" +"755","-1","","","","","Melted Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"756","-1","","","","","Tunnel Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4963","24818","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","29","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","7","0","0","0","0","0","0","0","0","24" +"761","-1","","","","","Deprecated Elwynn Trout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"763","-1","","","","","Ice-covered Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","293","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"765","-1","","","","","Silverleaf","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"766","-1","","","","","Flanged Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","286","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"767","-1","","","","","Long Bo Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","504","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"768","-1","","","","","Lumberjack Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","9","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"769","-1","","","","","Chunk of Boar Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"770","-1","","","","","Pointy Crocolisk Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","316","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"771","-1","","","","","Chipped Boar Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","38","155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"772","-1","","","","","Large Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"773","-1","","","","","Gold Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"774","-1","","","","","Malachite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"776","-1","","","","","Vendetta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5765","28826","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","31","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","26" +"777","-1","","","","","Prowler Teeth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","21","86","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"778","-1","","","","","Kobold Excavation Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","278","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"779","-1","","","","","Shiny Seashell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"780","-1","","","","","Torn Murloc Fin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"781","-1","","","","","Stone Gnoll Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","552","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"782","-1","","","","","Painted Gnoll Armband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"783","-1","","","","","Light Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"784","-1","","","","","Deprecated Tiny Flame Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"785","-1","","","","","Mageroyal","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"786","-1","","","","","Deprecated Pure Copper Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"787","-1","","","","","Slitherskin Mackerel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"788","-1","","","","","Test Fire Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"789","-1","","","","","Stout Battlehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1969","9847","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","22","-1","0","5197","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","17" +"790","-1","","","","","Forester's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2020","10101","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","23","-1","0","5196","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","18" +"791","-1","","","","","Gnarled Ash Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7069","35347","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","65","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","6","0","0","0","0","0","0","0","0","26" +"792","-1","","","","","Knitted Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","207","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"793","-1","","","","","Knitted Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","139","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"794","-1","","","","","Knitted Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","279","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"795","-1","","","","","Knitted Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","280","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"796","-1","","","","","Rough Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","264","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"797","-1","","","","","Rough Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","176","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"798","-1","","","","","Rough Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","354","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"799","-1","","","","","Rough Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","355","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"804","-1","","","","","Large Blue Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"805","-1","","","","","Small Red Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"806","-1","","","","","Deprecated Brown Leather Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"807","-1","","","","","Deprecated Iron Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"808","-1","","","","","Deprecated Malachite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"809","-1","","","","","Bloodrazor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39125","195625","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","70","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","45" +"810","-1","","","","","Hammer of the Northern Wind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45267","226335","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","54","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","49" +"811","-1","","","","","Axe of the Deep Woods","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54123","270619","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","52" +"812","-1","","","","","Glowing Brightwood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57018","285093","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","54","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","15","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","29","15","9","0","0","0","0","0","0","0","49" +"813","-1","","","","","Broken Cog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","58","235","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"814","-1","","","","","Flask of Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"816","-1","","","","","Small Hand Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1527","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","6" +"818","-1","","","","","Tigerseye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"820","-1","","","","","Slicer Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","947","4738","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","17","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","12" +"821","-1","","","","","Riverpaw Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","249","1248","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"823","-1","","","","","Deprecated Horse Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"826","-1","","","","","Brutish Riverpaw Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","732","3661","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","15","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"827","-1","","","","","Wicked Blackjack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4858","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","17","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","12" +"828","-1","","","","","Small Blue Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"829","-1","","","","","Red Leather Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"832","-1","","","","","Silver Defias Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203","1015","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","10" +"833","-1","","","","","Lifestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28000","112000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","51" +"835","-1","","","","","Large Rope Net","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"836","-1","","","","","Deprecated Heavy Net","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"837","-1","","","","","Heavy Weave Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","224","1124","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"838","-1","","","","","Heavy Weave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","1128","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"839","-1","","","","","Heavy Weave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","566","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"840","-1","","","","","Heavy Weave Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","170","853","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"841","-1","","","","","Furlbrow's Pocket Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"842","-1","","","","","Deprecated Wolf Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"843","-1","","","","","Tanned Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"844","-1","","","","","Tanned Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","720","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"845","-1","","","","","Tanned Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","289","1447","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"846","-1","","","","","Tanned Leather Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","290","1452","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"847","-1","","","","","Chainmail Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","349","1749","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"848","-1","","","","","Chainmail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1755","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"849","-1","","","","","Chainmail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","265","1326","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"850","-1","","","","","Chainmail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","883","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"851","-1","","","","","Cutlass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","404","2023","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","15","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","10" +"852","-1","","","","","Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1739","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","9" +"853","-1","","","","","Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","481","2409","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","16","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","11" +"854","-1","","","","","Quarter Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","604","3022","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","16","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","11" +"855","-1","","","","","Deprecated White Leather Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"856","-1","","","","","Blue Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"857","-1","","","","","Large Red Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"858","-1","","","","","Lesser Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","3" +"859","-1","","","","","Fine Cloth Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"860","-1","","","","","Cavalier's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","447","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"862","-1","","","","","Runed Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38222","152890","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","3253","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","45" +"863","-1","","","","","Gloom Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8964","44820","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","5241","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","32" +"864","-1","","","","","Knightly Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9716","48580","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","38","-1","0","5240","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","33" +"865","-1","","","","","Leaden Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5096","25480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","31","-1","0","5224","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","26" +"866","-1","","","","","Monk's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16640","83204","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","42","-1","0","5257","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","37" +"867","-1","","","","","Gloves of Holy Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5344","26720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","37" +"868","-1","","","","","Ardent Custodian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21532","107664","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","43","-1","0","0","48","0","0","0","0","90","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","38" +"869","-1","","","","","Dazzling Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18529","92648","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","41","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","36" +"870","-1","","","","","Fiery War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21528","107640","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","-1","0","0","93","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","35" +"871","-1","","","","","Flurry Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29627","148139","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","47","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","42" +"872","-1","","","","","Rockslicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2011","10058","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","21","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","16" +"873","-1","","","","","Staff of Jordan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21770","108853","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","40","-1","0","0","119","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","11","0","0","0","0","0","0","0","0","35" +"875","-1","","","","","Brown Horse Summoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"876","-1","","","","","Worn Wooden Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"877","-1","","","","","Deprecated Old Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"878","-1","","","","","Fist-sized Spinneret","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"880","-1","","","","","Staff of Horrors","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2692","13460","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","23","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"883","-1","","","","","Deprecated Fire Eyed Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"884","-1","","","","","Ghoul Rib","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"885","-1","","","","","Black Metal Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2300","11504","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","24","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","19" +"886","-1","","","","","Black Metal Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2949","14747","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","4","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","21" +"887","-1","","","","","Pound of Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"888","-1","","","","","Naga Battle Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","980","4903","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","4","4","0","0","0","0","0","0","0","22" +"889","-1","This dusty letter from long ago was never sent.","","","","A Dusty Unsent Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"890","-1","","","","","Twisted Chanter's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3517","17588","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","24","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","6","0","0","0","0","0","0","0","0","19" +"892","-1","","","","","Gnoll Casting Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1849","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"893","-1","","","","","Dire Wolf Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"894","-1","","","","","Deprecated Ravager Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"895","-1","","","","","Worgen Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"896","-1","","","","","Worgen Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"897","-1","","","","","Madwolf Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1022","5112","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","24" +"898","-1","","","","","Deprecated Broken Venomweb Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"899","-1","","","","","Venom Web Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1248","6241","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","19","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","14" +"900","-1","","","","","Deprecated Nightmare Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"901","-1","","","","","Deptecated White Stallion Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"902","-1","","","","","Deprecated Palomino Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"903","-1","","","","","Deprecated Pinto Summoning (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"906","-1","","","","","Tan Leather Shoulderpads (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"907","-1","","","","","Black Mail Shoulderpads of might (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","12","0","0","0","0","0","0","0","0","1" +"908","-1","","","","","Plate Shoulderpad (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"909","-1","","","","","Silver Mail Shoulderpads (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"910","-1","Weathered and old, this letter was never delivered.","","","","An Undelivered Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"911","-1","","","","","Ironwood Treebranch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3324","16622","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","25","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","2","0","0","0","0","0","0","0","0","20" +"913","-1","","","","","Huge Ogre Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5037","25188","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","29","-1","0","0","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","0","0","0","0","0","0","0","0","0","24" +"914","-1","","","","","Large Ogre Chain Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2669","13347","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","1","0","0","0","0","0","0","0","0","25" +"915","-1","","","","","Red Silk Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"916","-1","Only the bottom half of this journal page remains.","","","","A Torn Journal Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"917","-1","","","","","Deprecated Shadow Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","221","1105","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","13" +"918","-1","","","","","Deviate Hide Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"920","-1","","","","","Wicked Spiked Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2821","14106","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","20" +"921","-1","Although most of the text is long faded, some words can still be read.","","","","A Faded Journal Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"922","-1","","","","","Dacian Falx","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2407","12038","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","26","-1","0","0","39","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"923","-1","","","","","Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1748","8743","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","21" +"924","-1","","","","","Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10972","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","37","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"925","-1","","","","","Flail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1559","7797","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","25","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","20" +"926","-1","","","","","Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1956","9784","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","25","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"927","-1","","","","","Double Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1390","6953","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","24","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","19" +"928","-1","","","","","Long Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1972","9860","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"929","-1","","","","","Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"930","-1","","","","","Deprecated Deep Pocket Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"931","-1","","","","","Deprecated Heavy Brown Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"932","-1","","","","","Fel Steed Saddlebags","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","637","2550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"933","-1","","","","","Large Rucksack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"934","-1","","","","","Stalvan's Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10682","53411","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","37","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"935","-1","","","","","Night Watch Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1742","8712","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","15" +"936","-1","","","","","Midnight Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11620","58104","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","38","-1","0","0","45","1","0","0","0","84","10","0","0","0","0","0","0","0","0","10","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","33" +"937","-1","","","","","Black Duskwood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14577","72885","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","33" +"938","-1","Although the pages are covered in mud, some words can be read.","","","","Muddy Journal Pages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"939","-1","Through thick blood a few words still remain legible.","","","","A Bloodstained Journal Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"940","-1","","","","","Robes of Insight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12566","62830","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","15","0","0","0","0","0","0","0","0","42" +"941","-1","","","","","Deprecated Speedstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"942","-1","","","","","Freezing Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","47" +"943","-1","","","","","Warden Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42863","214318","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","48","-1","0","0","89","0","0","0","0","134","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","0","0","0","0","0","0","0","0","0","43" +"944","-1","","","","","Elemental Mage Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83000","415003","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","61","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","20","0","20","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","56" +"945","-1","","","","","Shadow Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"948","-1","","","","","Nature Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"951","-1","","","","","Tome of Whirlwind (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"954","-1","","","","","Scroll of Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"955","-1","","","","","Scroll of Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"956","-1","Your official ""I went to the Jasperlode Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Jasperlode mine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"957","-1","There is a note attached.","","","","William's Shipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"958","-1","Your official ""I went to the Darkhollow Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Darkhollow Mine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"960","-1","Your official ""I went to the Fargodeep Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Fargodeep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"961","-1","","","","","Healing Herb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"962","-1","","","","","Pork Belly Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"964","-1","","","","","Deprecated Red Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"965","-1","","","","","Deprecated Red Linen Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"966","-1","","","","","Tome of Frost Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"967","-1","","","","","Tome of Frost Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"968","-1","","","","","Tome of Fire Blast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"973","-1","","","","","Tome of Fireball II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"974","-1","","","","","Tome of Frost Armor II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"975","-1","","","","","Tome of Chains of Ice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"976","-1","","","","","Tome of Remove Curse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"980","-1","","","","","Tome of Frost Shield II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"981","-1","","","","","Bernice's Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"983","-1","","","","","Red Linen Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","108","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"985","-1","","","","","Tome of Khadgar's Unlocking","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"986","-1","","","","","Tome of Frostbolt II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"989","-1","","","","","Tome of Frost Nova","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"992","-1","","","","","Tome of Fireball III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"994","-1","","","","","Tome of Ice Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"996","-1","","","","","Ring of Righteous Flame (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","1" +"997","-1","","","","","Fire Sword of Crippling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1002","-1","","","","","Tome of Lesser Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1004","-1","","","","","Tome of Chains of Ice II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1006","-1","Princess - First Prize","","","","Brass Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1008","-1","","","","","Well-used Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1009","-1","","","","","Compact Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","490","2451","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"1010","-1","","","","","Gnarled Short Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","498","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","8","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1011","-1","","","","","Sharp Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","400","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","8","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1013","-1","","","","","Iron Rivet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1014","-1","","","","","Large Moneybag (old)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1015","-1","","","","","Lean Wolf Flank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","24","96","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1016","-1","","","","","Deprecated Lurker Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","51","205","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1017","-1","","","","","Seasoned Wolf Kabob","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1018","-1","","","","","Chows Blade of DOOM! (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1019","-1","","","","","Red Linen Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1020","-1","","","","","Leather Helmet D (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1021","-1","","","","","Leather Helmet A (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1022","-1","","","","","Mail Helmet D (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1023","-1","","","","","Mail Helmet C (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1024","-1","","","","","Plate Helmet D2 (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1025","-1","","","","","Plate Helmet D1 (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1026","-1","","","","","Plate Helmet D3 (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1027","-1","","","","","Mail Helmet A (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1028","-1","","","","","Deprecated Dented Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","254","1272","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1029","-1","","","","","Tablet of Serpent Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1030","-1","","","","","Tablet of Unyielding Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1031","-1","","","","","Tablet of Molten Blast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1032","-1","","","","","Tablet of Agitating Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1033","-1","","","","","Tablet of Nullify Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1034","-1","","","","","Tablet of Undying Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1035","-1","","","","","Tablet of Call Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1036","-1","","","","","Tablet of Nullify Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1037","-1","","","","","Tablet of Lightning Bolt II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1038","-1","","","","","Tablet of Restoration II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1041","690","","","","","Horn of the Black Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1042","-1","","","","","Deprecated Summon Winter Wolf (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1043","-1","","","","","Deprecated Summon Redwolf (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1044","-1","","","","","Deprecated Summon Brown Wolf (Mount)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1046","-1","","","","","Deprecated Light Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"1047","-1","","","","","Deprecated Heavy Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"1048","-1","","","","","Tablet of Lightning Shield II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1049","-1","","","","","Tablet of Purge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1052","-1","","","","","Tablet of Spirit Armor II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1053","-1","","","","","Tablet of Molten Blast II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1057","-1","","","","","Tablet of Restoration III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1058","-1","","","","","Tablet of Lightning Bolt III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1061","-1","","","","","Tablet of Nullify Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1063","-1","","","","","Tablet of Nullify Disease II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1072","-1","","","","","Full Moonshine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1074","-1","","","","","Hard Spider Leg Tip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","491","1965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1075","-1","","","","","Shadowhide Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1076","-1","","","","","Defias Renegade Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","20" +"1077","-1","","","","","Defias Mage Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","3","0","0","0","0","0","0","0","0","21" +"1078","-1","Signed by the Honorable Magistrate Solomon.","","","","Deprecated Writ of Lakeshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1080","-1","","","","","Tough Condor Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","78","315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1081","-1","","","","","Crisp Spider Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1082","-1","","","","","Redridge Goulash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1083","-1","","","","","Glyph of Azora","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1084","-1","","","","","Codex of Renew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1085","-1","","","","","Codex of Mind Vision","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1086","-1","","","","","Codex of Inner Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1087","-1","","","","","Codex of Shadow Word: Pain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1088","-1","","","","","Codex of Renew II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1089","-1","","","","","Codex of Nullify Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1090","-1","","","","","Codex of Resurrection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1091","-1","","","","","Codex of Holy Smite II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1092","-1","","","","","Codex of Lesser Heal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1093","-1","","","","","Codex of Remove Curse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1095","-1","","","","","Codex of Dispel Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1096","-1","","","","","Codex of Shadow Word: Pain II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1099","-1","","","","","Deprecated Codex of Sustenance II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"1100","-1","","","","","Codex of Holy Smite III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1101","-1","","","","","Codex of Renew V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"1102","-1","","","","","Codex of Lesser Heal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1105","-1","","","","","Codex of Renew VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"1108","-1","","","","","Codex of Renew III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1109","-1","","","","","Codex of Dominate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1111","-1","","","","","Codex of Sleep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1112","-1","","","","","Codex of Holy Word: Fortitude II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1113","-1","","","","","Conjured Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1114","-1","","","","","Conjured Rye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1115","-1","","","","","Deprecated Ragged Scalp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1116","-1","","","","","Ring of Pure Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","6","0","0","0","0","0","0","0","0","0" +"1117","-1","","","","","Monster - Item, Fishing Pole","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1119","-1","","","","","Bottled Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1121","-1","","","","","Feet of the Lynx","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1075","5375","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","3","0","0","0","0","0","0","0","0","19" +"1122","415","Summons a White Stallion to be your steed.","","","","Deprecated Amulet of the White Stallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1123","415","Summons a Pinto to be your steed.","","","","Deprecated Amulet of the Pinto","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1124","415","Summons a Palamino to be your steed.","","","","Deprecated Amulet of the Palomino","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1125","415","Summons a Nightmare to be your steed.","","","","Deprecated Amulet of the Nightmare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1127","-1","","","","","Flash Bundle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1128","-1","","","","","Deprecated [PH] Redridge Rye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1129","-1","","","","","Ghoul Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1130","-1","","","","","Vial of Spider Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1131","-1","","","","","Totem of Infliction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1136","4545","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1132","690","","","","","Horn of the Timber Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"1133","223","","","","","Horn of the Winter Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1134","690","","","","","Horn of the Gray Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1136","-1","","","","","Libram: Divine Favor II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1138","-1","","","","","Libram: Divine Favor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1139","-1","","","","","Libram: Cleanse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1141","-1","","","","","Libram: Holy Light II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1144","-1","","","","","Libram: Divine Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"1146","-1","","","","","Libram: Resurrection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1149","-1","","","","","Libram: Seal of Might II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1150","-1","","","","","Libram: Purify","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1151","-1","","","","","Libram: Holy Light III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1154","-1","","","","","Belt of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","513","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1155","-1","","","","","Rod of the Sleepwalker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5954","29770","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","10","0","0","0","0","0","0","0","0","24" +"1156","-1","","","","","Lavishly Jeweled Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","812","3250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","2","6","0","0","0","0","0","0","0","0","17" +"1157","-1","","","","","Deprecated Militia Handaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","4","-1","0","0","1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1158","-1","","","","","Solid Metal Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","731","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1159","-1","","","","","Militia Quarterstaff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1161","-1","","","","","Militia Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1162","-1","","","","","Pirates Patch (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","222","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1163","-1","","","","","Dwarven Explorer's Monocle (Test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1164","-1","","","","","Sam's Tome","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","529","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","11","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1165","-1","","","","","Test Food","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1166","-1","","","","","Dented Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1167","-1","","","","","Small Targe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","483","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1168","-1","","","","","Skullflame Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42296","211484","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2256","0","10","0","0","10","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","54" +"1169","-1","","","","","Blackskull Shield","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18815","94076","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","1795","0","0","0","0","10","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","5","0","0","0","0","0","0","0","0","41" +"1170","-1","","","","","Deprecated Brown Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","189","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1171","-1","","","","","Well-stitched Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","277","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1172","-1","","","","","Grayson's Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","968","3875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","0","0","0","0","0","0","0","0","0","0" +"1173","-1","","","","","Weather-worn Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","262","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1174","-1","","","","","Deprecated Light Soldier Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","325","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1175","-1","","","","","A Gold Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1176","-1","","","","","Smelling Salts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32","130","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1177","-1","","","","","Oil of Olaf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1178","-1","","","","","Explosive Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1179","-1","","","","","Ice Cold Milk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1180","-1","","","","","Scroll of Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1181","-1","","","","","Scroll of Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1182","-1","","","","","Brass-studded Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","222","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1183","-1","","","","","Elastic Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","149","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1184","-1","","","","","Deprecated Scarlet Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","308","1235","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1186","-1","","","","","Deprecated Gnoll Taskmaster Whip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","831","3325","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1187","-1","","","","","Spiked Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1081","4325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"1189","-1","","","","","Overseer's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","0","0","0","0","0","0","0","0","0","15" +"1190","-1","","","","","Overseer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","630","3150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"1191","-1","","","","","Bag of Marbles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1192","-1","","","","","Deprecated Overseer's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1263","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1193","-1","","","","","Banded Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","355","1779","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1194","-1","","","","","Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","104","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1195","-1","","","","","Kobold Mining Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","236","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","6","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"1196","-1","","","","","Tabar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","442","2214","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","14","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","9" +"1197","-1","","","","","Giant Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2666","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1198","-1","","","","","Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","535","2676","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","15","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1199","-1","","","","","Charged Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1200","-1","","","","","Large Wooden Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1201","-1","","","","","Dull Heater Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","473","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1202","-1","","","","","Wall Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","367","1839","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1203","-1","","","","","Aegis of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23505","117526","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1867","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","6","0","0","0","0","0","0","0","0","49" +"1204","-1","","","","","The Green Tower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12577","62886","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","7","13","0","0","0","0","0","0","0","0","36" +"1205","-1","","","","","Melon Juice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1206","-1","","","","","Moss Agate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1207","-1","","","","","Murphstar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9892","49460","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","39","-1","0","5242","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","34" +"1208","-1","","","","","Maybell's Love Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1210","-1","","","","","Shadowgem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1211","-1","","","","","Gnoll War Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1738","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","2","0","0","0","0","0","0","0","0","10" +"1212","-1","","","","","Gnoll Spittle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","21","85","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1213","-1","","","","","Gnoll Kindred Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","437","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"1214","-1","","","","","Gnoll Punisher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","930","4651","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","17","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","12" +"1215","-1","","","","","Support Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2347","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","17" +"1216","-1","","","","","Frost Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1197","5989","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","7","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","28" +"1217","-1","It is not known what the reward will be...","","","","Unknown Reward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1218","-1","","","","","Heavy Gnoll War Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2064","10321","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","21","-1","0","0","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","-10","0","0","0","0","0","0","0","0","16" +"1219","-1","","","","","Redridge Machete","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4119","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","16","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","11" +"1220","-1","","","","","Lupine Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","9039","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","20","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"1221","-1","","","","","Underbelly Whelp Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1222","-1","","","","","Broken Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","14","58","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1224","-1","","","","","Grimoire of Sense Demons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1228","-1","","","","","Grimoire of Blood Boil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1229","-1","","","","","Grimoire of Create Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1231","-1","","","","","Grimoire of Shadow Bolt II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1232","-1","","","","","Grimoire of Demon Skin II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1238","-1","","","","","Grimoire of Fear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1239","-1","","","","","Grimoire of Siphon Mana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1243","-1","","","","","Grimoire of Shadow Bolt III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1244","-1","","","","","Grimoire of Demon Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1245","-1","","","","","Grimoire of Immolate II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1246","-1","","","","","Grimoire of Demon Breath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1250","-1","","","","","Grimoire of Detect Lesser Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1251","-1","","","","","Linen Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1252","-1","","","","","Gramma Stonefield's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1253","-1","","","","","Deprecated Summoned Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1254","-1","","","","","Lesser Firestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1255","-1","","","","","Deprecated Conjured Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1256","-1","","","","","Crystal Kelp Frond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1257","-1","","","","","Invisibility Liquor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1258","-1","","","","","Bind On Use Test Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1087","4350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1259","-1","","","","","JYoo test item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","2191","1","3000","2000","1000","4000","1","3000","2000","1000","4000","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1260","-1","","","","","Tharil'zun's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1261","-1","","","","","Midnight Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1262","-1","","","","","Keg of Thunderbrew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111","445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1263","-1","","","","","Brain Hacker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79064","395323","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","60","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","55" +"1264","-1","","","","","Headbasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3671","18357","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","3","0","0","0","0","0","0","0","0","0" +"1265","-1","","","","","Scorpion Sting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11774","58874","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","39","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","34" +"1266","-1","","","","","Deprecated Orcslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","686","3431","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","20","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1267","-1","","","","","Deprecated Cask of Merlot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1268","-1","","","","","Deprecated Bottle of Moonshine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1269","-1","","","","","Deprecated Skin of Sweet Rum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1270","-1","","","","","Finely Woven Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","1067","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"1272","-1","","","","","Deprecated Fine Spun Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","130","653","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1273","-1","","","","","Forest Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1656","8282","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","8","0","0","0","0","0","0","0","0","0" +"1274","-1","","","","","Hops","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1275","-1","","","","","Deputy Chain Coat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1668","8342","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","7","0","0","0","0","0","0","0","0","0" +"1276","-1","","","","","Fire Hardened Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2220","11101","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","0" +"1279","-1","","","","","Deprecated Soft Leather Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","963","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1280","-1","","","","","Cloaked Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3696","18481","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"1281","-1","For Testing Ranged","","","","Deprecated Quiver (TEST)","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1282","-1","","","","","Sparkmetal Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","14125","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","8","0","0","0","0","0","0","0","0","0" +"1283","-1","","","","","Verner's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1284","-1","There's a note attached to this crate.","","","","Crate of Horseshoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1287","-1","","","","","Giant Tarantula Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3518","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1288","-1","","","","","Large Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1292","-1","","","","","Butcher's Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3300","16504","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","25","-1","0","0","23","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","20" +"1293","-1","Written by Magistrate Solomon, this report details the events unfolding in Redridge.","","","","The State of Lakeshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1294","-1","General Marcus Jonathan's response to Magistrate Solomon's plea for help.","","","","The General's Response","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1296","-1","","","","","Blackrock Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1681","8408","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","21","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","16" +"1297","-1","","","","","Robes of the Shadowcaster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2038","10193","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","11","0","0","0","0","0","0","0","0","26" +"1298","-1","","","","","Deprecated Night Mage Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","445","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1299","-1","","","","","Lesser Belt of the Spire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","390","1953","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","17" +"1300","-1","","","","","Lesser Staff of the Spire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1854","9270","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","20","-1","0","0","35","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"1302","-1","","","","","Black Whelp Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","262","1312","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","3","0","0","0","0","0","0","0","0","0" +"1303","-1","","","","","Bridgeworker's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2091","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","2","0","0","0","0","0","0","0","0","0" +"1304","-1","","","","","Riding Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1398","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"1306","-1","","","","","Wolfmane Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","352","1761","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"1307","-1","","","","","Gold Pickup Schedule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","7" +"1309","-1","","","","","Oslow's Toolbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1310","-1","","","","","Smith's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","715","3576","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"1311","-1","","","","","Deprecated Oslow's Wood Cutter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","542","2714","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","18","-1","0","0","19","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1312","-1","","","","","Deprecated Oslow's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2178","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","18","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1313","-1","","","","","Deprecated Oslow's Ice Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","437","2186","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1314","-1","","","","","Ghoul Fingers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","362","1814","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","15" +"1315","-1","","","","","Lei of Lilies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","15","0","0","0","0","0","0","0","0","46" +"1317","-1","","","","","Hardened Root Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","17501","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","25","-1","0","0","44","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","8","0","0","0","0","0","0","0","0","0" +"1318","-1","","","","","Night Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3066","15332","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","23","-1","0","0","52","1","0","0","0","78","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","18" +"1319","-1","","","","","Ring of Iron Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","1850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","2","0","0","0","0","0","0","0","0","0" +"1321","-1","","","","","Deprecated Broiled Sunfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","52","210","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1322","-1","","","","","Fishliver Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1323","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated [PH] Recipe: Broiled Sunfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1324","-1","","","","","Deprecated Parker's Lunch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1325","-1","","","","","Daffodil Bouquet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1326","-1","","","","","Sauteed Sunfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1327","-1","A hastily written note written by Wiley the Black for Gryan Stoutmantle.","","","","Wiley's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1328","-1","","","","","Book of Faerie Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1332","-1","","","","","Book of Cure Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1334","-1","","","","","Book of Rejuvenation II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1335","-1","","","","","Deprecated Book of Nullify Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1339","-1","","","","","Book of Entangling Roots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1341","-1","","","","","Book of Moonfire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1349","-1","This large crate is sealed tight, but it reeks of dead things.","","","","Abercrombie's Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1350","-1","Numerous hexes are stitched onto this ragged doll.","","","","Deprecated Hex Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","171","685","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1351","-1","","","","","Fingerbone Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3843","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","23" +"1352","-1","","","","","Cracked Skull Mortar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1353","-1","Shaw's report on the Stonemason Guild for Gryan Stoutmantle.","","","","Shaw's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1354","-1","","","","","Deprecated Homespun Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1355","-1","","","","","Buckskin Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1259","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"1356","-1","","","","","Commendation - Elwynn Forest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1357","-1","The waterlogged parchment is about to disintegrate.","","","","Captain Sander's Treasure Map","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1358","-1","This torn piece of parchment contains scribbled writing.","","","","A Clue to Sander's Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1359","-1","","","","","Lion-stamped Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","95","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1360","-1","","","","","Stormwind Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1361","-1","This torn piece of parchment contains scribbled writing.","","","","Another Clue to Sander's Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1362","-1","This torn piece of parchment contains scribbled writing.","","","","Final Clue to Sander's Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1363","-1","","","","","Deprecated Captain Sander's Eyepatch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","415","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1364","-1","","","","","Ragged Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","41","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1366","-1","","","","","Ragged Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1367","-1","","","","","Ragged Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1368","-1","","","","","Ragged Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1369","-1","","","","","Ragged Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1370","-1","","","","","Ragged Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1371","-1","","","","","Deprecated Ragged Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1372","-1","","","","","Ragged Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1374","-1","","","","","Frayed Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1376","-1","","","","","Frayed Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1377","-1","","","","","Frayed Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1378","-1","","","","","Frayed Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1379","-1","","","","","Deprecated Frayed Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1380","-1","","","","","Frayed Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1381","-1","This soot-covered note contains some cryptic text.","","","","A Mysterious Message","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1382","-1","","","","","Rock Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1383","-1","","","","","Stone Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1384","-1","","","","","Dull Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1385","-1","","","","","Deprecated Farmer's Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","70","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","4","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1386","-1","","","","","Thistlewood Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1387","-1","","","","","Ghoulfang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1578","7892","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","19","-1","0","0","36","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","14" +"1388","-1","","","","","Crooked Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","71","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","3","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1389","-1","","","","","Kobold Mining Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","291","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","7","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1391","-1","","","","","Riverpaw Mystic Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1392","6961","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","18","-1","0","0","28","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","13" +"1392","-1","","","","","Deprecated Wristguards of the Fen Warden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","883","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1394","-1","","","","","Driftwood Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","740","3700","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1395","-1","","","","","Apprentice's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1396","-1","","","","","Acolyte's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1397","-1","","","","","Deprecated Orc Acolyte's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1398","-1","","","","","Deprecated Dwarven Novice's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1399","-1","","","","","Magic Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1400","-1","","","","","Swiftfeather Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1401","-1","","","","","Green Tea Leaf","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","14","56","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1402","-1","","","","","Brimstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1403","-1","","","","","Deprecated Capstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","175","700","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"1404","-1","","","","","Tidal Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10306","41225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1405","-1","","","","","Foamspittle Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1184","5923","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","17","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","12" +"1406","-1","","","","","Pearl-encrusted Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2079","10398","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","21","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","6","0","0","0","0","0","0","0","0","20" +"1407","-1","","","","","Solomon's Plea to Westfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1408","-1","","","","","Stoutmantle's Response to Solomon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1409","-1","","","","","Solomon's Plea to Darkshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1410","-1","","","","","Ebonlocke's Response to Solomon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1411","-1","","","","","Withered Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1412","-1","","","","","Crude Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","246","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","7","-1","0","0","7","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1413","-1","","","","","Feeble Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","276","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1414","-1","","","","","Cracked Sledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97","486","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","9","-1","0","0","10","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1415","-1","","","","","Carpenter's Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","363","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","9","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1416","-1","","","","","Rusty Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1417","-1","","","","","Beaten Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","326","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1418","-1","","","","","Worn Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1419","-1","","","","","Worn Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","98","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1420","-1","","","","","Worn Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","92","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1421","-1","","","","","Worn Hide Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","5" +"1422","-1","","","","","Worn Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1423","-1","","","","","Worn Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","94","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1424","-1","","","","","Deprecated Worn Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","99","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1425","-1","","","","","Worn Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","188","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1427","-1","","","","","Patchwork Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","147","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","5" +"1429","-1","","","","","Patchwork Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1430","-1","","","","","Patchwork Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1431","-1","","","","","Patchwork Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","101","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1432","-1","","","","","Deprecated Patchwork Cloth Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","107","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1433","-1","","","","","Patchwork Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1434","-1","","","","","Glowing Wax Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","43","175","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1435","-1","","","","","Deprecated Bridge Worker's Yoke","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","517","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1436","-1","","","","","Frontier Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","458","2290","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"1438","-1","","","","","Warrior's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","352","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1440","-1","","","","","Gnoll Skull Basher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1230","6151","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","14" +"1443","-1","","","","","Jeweled Amulet of Cainwyn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21125","84500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","10","8","0","0","0","0","0","0","0","55" +"1444","-1","","","","","Deprecated Inferno Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1131","4525","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","35" +"1445","-1","","","","","Blackrock Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","583","2919","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1446","-1","","","","","Blackrock Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","568","2842","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","3","0","0","0","0","0","0","0","0","14" +"1447","-1","","","","","Ring of Saviors","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22775","91100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","8","0","0","0","0","0","0","0","0","41" +"1448","-1","","","","","Blackrock Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","405","2027","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","15" +"1449","-1","","","","","Minor Channeling Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","4","0","0","0","0","0","0","0","0","0" +"1450","-1","","","","","Potion of Fervor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1451","-1","","","","","Bottle of Zombie Juice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1453","-1","","","","","Spectral Comb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1454","-1","","","","","Axe of the Enforcer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19689","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","22" +"1455","-1","","","","","Blackrock Champion's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2931","14657","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","24","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","19" +"1457","-1","","","","","Shadowhide Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1850","9251","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","22","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","17" +"1458","-1","","","","","Shadowhide Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2623","13117","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","18" +"1459","-1","","","","","Shadowhide Scalper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2380","11902","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","24","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","19" +"1460","-1","","","","","Shadowhide Two-handed Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1768","8842","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","4","0","0","0","0","0","0","0","0","15" +"1461","-1","","","","","Slayer's Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3387","16936","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","5","0","0","0","0","0","0","0","0","20" +"1462","-1","","","","","Ring of the Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1306","5225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"1464","-1","","","","","Buzzard Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1465","-1","","","","","Tigerbane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9824","49124","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","38","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","33" +"1467","-1","","","","","Spotted Sunfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1468","-1","","","","","Murloc Fin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1469","-1","","","","","Scimitar of Atun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1180","5900","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","19","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","14" +"1470","-1","","","","","Murloc Skin Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1472","-1","","","","","Deprecated Polished Lakestone Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1473","-1","","","","","Riverside Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1497","7489","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","19","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"1475","-1","","","","","Small Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1476","-1","","","","","Snapped Spider Limb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1477","-1","","","","","Scroll of Agility II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1478","-1","","","","","Scroll of Protection II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1479","-1","","","","","Salma's Oven Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","238","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1480","-1","","","","","Fist of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","954","4773","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","17","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","0" +"1481","-1","","","","","Grimclaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3337","16688","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","20" +"1482","-1","","","","","Shadowfang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2964","14822","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","24","-1","0","0","29","4","0","0","0","55","8","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","19" +"1483","-1","","","","","Face Smasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","10129","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","3","0","0","0","0","0","0","0","0","16" +"1484","-1","","","","","Witching Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2922","14612","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","22","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","17" +"1485","-1","","","","","Pitchfork","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7053","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","25","-1","0","0","29","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1486","-1","","","","","Tree Bark Jacket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1202","6012","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","6","10","0","0","0","0","0","0","0","0","19" +"1487","-1","","","","","Conjured Pumpernickel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1488","-1","","","","","Avenger's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3379","16899","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","6","0","0","0","0","0","0","0","0","26" +"1489","-1","","","","","Gloomshroud Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1553","7767","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","5","0","0","0","0","0","0","0","0","20" +"1490","-1","","","","","Guardian Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8910","35640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1491","-1","","","","","Ring of Precision","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2207","8830","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","3","0","0","0","0","0","0","0","0","20" +"1492","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated Recipe: Murloc Fin Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1493","-1","","","","","Heavy Marauder Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3922","19610","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","27","-1","0","0","28","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","3","0","0","0","0","0","0","0","0","22" +"1495","-1","","","","","Calico Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1497","-1","","","","","Calico Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","356","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1498","-1","","","","","Calico Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1499","-1","","","","","Calico Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","255","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1500","-1","","","","","Deprecated Calico Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","239","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1501","-1","","","","","Calico Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","402","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1502","-1","","","","","Warped Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","302","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1503","-1","","","","","Warped Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","546","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1504","-1","","","","","Warped Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1505","-1","","","","","Warped Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","244","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1506","-1","","","","","Warped Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","255","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1507","-1","","","","","Warped Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123","616","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1508","-1","","","","","Deprecated Patched Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111","556","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1509","-1","","","","","Warped Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","299","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1510","-1","","","","","Heavy Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","752","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1511","-1","","","","","Commoner's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","969","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1512","-1","","","","","Crude Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","973","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","12","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1513","-1","","","","","Old Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","293","1465","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","14","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1514","-1","","","","","Rusty Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1470","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","14","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1515","-1","","","","","Rough Wooden Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","196","984","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","12","-1","0","0","13","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1516","-1","","","","","Worn Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","237","1185","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","14","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1518","-1","","","","","Ghost Hair Comb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1519","-1","","","","","Bloodscalp Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1520","-1","","","","","Troll Sweat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1521","-1","","","","","Lumbering Ogre Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19205","96027","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","44","-1","0","0","105","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","7","0","0","0","0","0","0","0","0","39" +"1522","-1","","","","","Headhunting Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10224","51121","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","36","-1","0","0","63","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","6","0","0","0","0","0","0","0","0","31" +"1523","-1","","","","","Huge Stone Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51305","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","36","-1","0","0","71","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","14","0","0","0","0","0","0","0","0","0","31" +"1524","-1","","","","","Skullsplitter Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1527","-1","","","","","Deprecated Fistful of Hay","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1528","-1","","","","","Handful of Oats","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1529","-1","","","","","Jade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1532","-1","","","","","Shrunken Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1533","-1","","","","","Deprecated Bloodscalp Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"1534","-1","","","","","Libram: Holy Light IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1535","-1","","","","","Deprecated Bloodscalp Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1894","9471","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","33" +"1536","-1","","","","","Libram: Seal of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1537","-1","","","","","Old Blanchy's Feed Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1539","-1","","","","","Gnarled Hermit's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1572","7861","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","19","-1","0","0","28","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"1544","-1","","","","","Deprecated Candle of Black Smoke","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","700","2800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1545","-1","","","","","Deprecated Mantle of the Seas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124","622","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1547","-1","","","","","Shield of the Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2795","13978","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","0","0","0","0","0","0","0","0","0","0" +"1554","-1","","","","","Tome of Frostbolt III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1557","-1","","","","","Buckler of the Seas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","918","4594","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"1559","-1","","","","","Tome of Arcane Missiles II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1560","-1","","","","","Bluegill Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","513","2568","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","0","0","0","0","0","0","0","0","16" +"1561","-1","","","","","Harvester's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","268","1343","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","0","0","0","0","0","0","0","0","0" +"1566","-1","","","","","Edge of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1132","5663","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","17","-1","0","0","26","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"1567","-1","","","","","Tome of Khadgar's Unlocking II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1568","-1","","","","","Tome of Water Elemental","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1571","-1","","","","","Tome of Frost Nova II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1574","-1","","","","","Tome of Fire Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1588","-1","","","","","Tablet of Molten Blast III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1589","-1","","","","","Tablet of Spirit Armor III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"1591","-1","","","","","Tablet of Lightning Shield III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1596","-1","","","","","Ghost Hair Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1597","-1","","","","","Tablet of Lightning Storm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1598","-1","","","","","Rot Blossom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1599","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated [PH] Recipe: Zombie Juice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1602","-1","","","","","Sickle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11685","58427","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","39","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","6","3","0","0","0","0","0","0","0","34" +"1603","-1","","","","","Tablet of Call Spirit II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1604","-1","","","","","Chromatic Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19463","97319","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","45","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","7","7","7","7","7","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","40" +"1607","-1","","","","","Soulkeeper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43420","217103","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","54","-1","0","0","141","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","11","0","0","0","0","0","0","0","0","49" +"1608","-1","","","","","Skullcrusher Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18940","94703","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","5269","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","42" +"1612","-1","","","","","Deprecated Skullsplitter Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","260","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"1613","-1","","","","","Spiritchaser Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19139","95699","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","5266","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","39" +"1619","-1","","","","","Tablet of Lightning Storm II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1622","-1","","","","","Deprecated Foreman's Whip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","37" +"1623","-1","","","","","Raptor Skin Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1624","-1","","","","","Skullsplitter Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6172","30862","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","38" +"1625","-1","","","","","Exquisite Flamberge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14754","73773","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","41","-1","0","5254","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1630","-1","","","","","Broken Electro-lantern","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","66","265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1637","-1","","","","","Letter to Ello","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1638","-1","","","","","Deprecated Thornstone Chunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1639","-1","","","","","Grinning Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28460","142301","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","49","-1","0","5282","85","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","44" +"1640","-1","","","","","Monstrous War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15637","78188","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","42","-1","0","5255","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","37" +"1641","-1","","","","","Codex of Shadow Word: Pain III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1645","-1","","","","","Moonberry Juice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"1648","-1","","","","","Codex of Heal IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"1649","-1","","","","","Deprecated Ham Sandwich","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","126","504","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1651","-1","","","","","Codex of Holy Word: Shield VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"1652","-1","","","","","Sturdy Lunchbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1654","-1","","","","","Deprecated Strangleslash Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1655","-1","","","","","Deprecated Codex of Sustenance III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1900","7600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"1656","-1","","","","","Translated Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1657","-1","","","","","Codex of Resurrection II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1658","-1","","","","","Codex of Shadow Word: Pain IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1659","-1","","","","","Engineering Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10682","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","8","0","0","0","0","0","0","0","0","35" +"1663","-1","","","","","Deprecated Stranglethorn Mine Map","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1664","-1","","","","","Spellforce Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14695","73475","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","41","-1","0","0","77","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1672","-1","","","","","Deprecated Ogre Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1676","-1","","","","","Codex of Sleep II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1677","-1","","","","","Drake-scale Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10093","50466","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","8","0","0","0","0","0","0","0","0","41" +"1678","-1","","","","","Black Ogre Kickers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4581","22907","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","13","0","0","0","0","0","0","0","0","32" +"1679","-1","","","","","Korg Bat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9635","48177","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","5","0","0","0","0","0","0","0","0","31" +"1680","-1","","","","","Headchopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18234","91170","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","44","-1","0","0","78","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","0","0","0","0","0","0","0","0","0","39" +"1681","-1","","","","","Grimoire of Cripple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1684","-1","","","","","Deprecated Totemic Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11105","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32320","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","39" +"1685","-1","","","","","Troll-hide Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1686","-1","","","","","Bristly Whisker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","733","2935","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1687","-1","","","","","Retractable Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","243","975","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1688","-1","","","","","Long Soft Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","806","3225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1689","-1","","","","","Deprecated Medium Tiger Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","57","230","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1690","-1","","","","","Deprecated Fine Panther Whisker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","331","1325","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1691","-1","","","","","Deprecated Ebony Panther Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","237","950","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1692","-1","","","","","Deprecated Shadowmaw Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1693","-1","","","","","Deprecated Shadowmaw Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","70","280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1694","-1","","","","","Deprecated Lashtail Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1695","-1","","","","","Deprecated Jungle Stalker Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1696","-1","","","","","Curved Raptor Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","606","2425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1697","-1","","","","","Keen Raptor Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","445","1780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1698","-1","","","","","Deprecated Lashtail Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1699","-1","","","","","Deprecated Jungle Stalker Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1700","-1","","","","","Deprecated Blood Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3038","12154","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","33" +"1701","-1","","","","","Curved Basilisk Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","376","1505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1702","-1","","","","","Intact Basilisk Spine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","320","1280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1703","-1","","","","","Crystal Basilisk Spine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1704","-1","","","","","Deprecated Cold Basilisk Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","142","570","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"1705","-1","","","","","Lesser Moonstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1706","-1","","","","","Azuredeep Shards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","86","344","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1707","-1","","","","","Stormwind Brie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1708","-1","","","","","Sweet Nectar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1710","-1","","","","","Greater Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"1711","-1","","","","","Scroll of Stamina II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1712","-1","","","","","Scroll of Spirit II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1713","-1","","","","","Ankh of Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5350","21400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","40" +"1714","-1","","","","","Necklace of Calisea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2535","10140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","7","8","0","0","0","0","0","0","0","38" +"1715","-1","","","","","Polished Jazeraint Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10301","51509","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","10","9","0","0","0","0","0","0","0","39" +"1716","-1","","","","","Robe of the Magi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5067","25335","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","6","5","0","0","0","0","0","0","0","0","35" +"1717","-1","","","","","Double Link Tunic","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3108","15540","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","25" +"1718","-1","","","","","Basilisk Hide Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8040","40202","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","3","8","0","0","0","0","0","0","0","38" +"1719","-1","","","","","Deprecated Flint Troll Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1720","-1","","","","","Tanglewood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26209","131048","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","46","-1","0","0","109","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","9","0","0","0","0","0","0","0","0","41" +"1721","-1","","","","","Viking Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35815","179079","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","54","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","5","0","0","0","0","0","0","0","0","49" +"1722","-1","","","","","Thornstone Sledgehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19407","97038","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","42","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","0","0","0","0","0","0","0","0","0","37" +"1724","-1","","","","","Deprecated Jungle Trail Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1725","-1","","","","","Large Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1726","-1","","","","","Poison-tipped Bone Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12183","60915","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"1727","-1","","","","","Sword of Decay","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4562","22814","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","28","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","23" +"1728","-1","","","","","Teebu's Blazing Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87008","435040","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","65","-1","0","0","96","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"1729","-1","","","","","Gunnysack of the Night Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1730","-1","","","","","Worn Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","243","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1731","-1","","","","","Worn Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1732","-1","","","","","Worn Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","368","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1733","-1","","","","","Worn Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88","443","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1734","-1","","","","","Worn Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","197","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1735","-1","","","","","Worn Mail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1736","-1","","","","","Deprecated Worn Mail Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","436","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1737","-1","","","","","Worn Mail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1738","-1","","","","","Laced Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","735","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1739","-1","","","","","Laced Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1279","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1740","-1","","","","","Laced Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97","487","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1741","-1","","","","","Laced Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112","562","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1742","-1","","","","","Laced Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","129","648","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1743","-1","","","","","Laced Mail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1497","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1744","-1","","","","","Laced Mail Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","260","1302","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1745","-1","","","","","Laced Mail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","198","992","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1746","-1","","","","","Linked Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","332","1662","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1747","-1","","","","","Linked Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1514","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1748","-1","","","","","Linked Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","232","1160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1749","-1","","","","","Linked Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","396","1982","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1750","-1","","","","","Linked Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","298","1491","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1751","-1","","","","","Linked Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","676","3384","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1752","-1","","","","","Linked Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1433","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1753","-1","","","","","Linked Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","439","2196","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1754","-1","","","","","Reinforced Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1796","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1755","-1","","","","","Reinforced Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","597","2989","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1756","-1","","","","","Reinforced Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","438","2190","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1757","-1","","","","","Reinforced Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","728","3643","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1758","-1","","","","","Reinforced Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","534","2670","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1759","-1","","","","","Reinforced Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","732","3661","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1760","-1","","","","","Reinforced Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3045","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1761","-1","","","","","Reinforced Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","892","4463","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1764","-1","","","","","Canvas Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","568","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1766","-1","","","","","Canvas Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1767","-1","","","","","Canvas Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","505","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1768","-1","","","","","Canvas Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","217","1085","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1769","-1","","","","","Canvas Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","816","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1770","-1","","","","","Canvas Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143","719","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1772","-1","","","","","Brocade Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1235","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1774","-1","","","","","Brocade Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1406","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1775","-1","","","","","Brocade Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","1064","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1776","-1","","","","","Brocade Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","257","1287","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1777","-1","","","","","Brocade Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","222","1114","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1778","-1","","","","","Brocade Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1685","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1780","-1","","","","","Cross-stitched Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","489","2445","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1782","-1","","","","","Cross-stitched Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","541","2709","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1783","-1","","","","","Cross-stitched Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1238","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1784","-1","","","","","Cross-stitched Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","546","2734","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1785","-1","","","","","Cross-stitched Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2322","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1786","-1","","","","","Cross-stitched Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3419","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1787","-1","","","","","Patched Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","510","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1788","-1","","","","","Patched Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","884","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1789","-1","","","","","Patched Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","136","680","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1790","-1","","","","","Patched Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93","469","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1791","-1","","","","","Patched Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","450","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1792","-1","","","","","Patched Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1041","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1793","-1","","","","","Patched Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","207","1037","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1794","-1","","","","","Patched Leather Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1387","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1795","-1","","","","","Rawhide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1176","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1796","-1","","","","","Rawhide Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","2001","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1797","-1","","","","","Rawhide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","161","807","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1798","-1","","","","","Rawhide Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1397","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1799","-1","","","","","Rawhide Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1056","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1800","-1","","","","","Rawhide Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2397","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1801","-1","","","","","Rawhide Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2093","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1802","-1","","","","","Rawhide Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1688","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1803","-1","","","","","Tough Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","465","2325","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1804","-1","","","","","Tough Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","478","2391","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1805","-1","","","","","Tough Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1759","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1806","-1","","","","","Tough Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1807","-1","","","","","Tough Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","387","1939","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1808","-1","","","","","Tough Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","856","4284","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1809","-1","","","","","Tough Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","440","2203","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1810","-1","","","","","Tough Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3243","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1811","-1","","","","","Blunt Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","451","2255","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","17","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1812","-1","","","","","Short-handled Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","452","2264","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","17","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1813","-1","","","","","Chipped Quarterstaff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","522","2614","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","18","-1","0","0","17","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1814","-1","","","","","Battered Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","603","3018","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","19","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1815","-1","","","","","Ornamental Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","366","1832","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","17","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1816","-1","","","","","Unbalanced Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","486","2432","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","19","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1817","-1","","","","","Stock Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","501","2507","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","19","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1818","-1","","","","","Standard Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1221","6109","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","24","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1819","-1","","","","","Gouging Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3840","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1820","-1","","","","","Wooden Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","963","4818","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","22","-1","0","0","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1821","-1","","","","","Warped Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","988","4940","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1822","-1","","","","","Cedar Walking Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1096","5484","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","23","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1823","-1","","","","","Bludgeoning Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","779","3896","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1824","-1","","","","","Shiny War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1104","5523","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1825","-1","","","","","Bulky Bludgeon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1548","7742","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1826","-1","","","","","Rock Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1765","8828","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","27","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1827","-1","","","","","Meat Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1282","6412","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","27","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1828","-1","","","","","Stone War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1609","8046","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1829","-1","","","","","Short Cutlass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1563","7818","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","29","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1830","-1","","","","","Long Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1783","8919","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","28","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1831","-1","","","","","Oaken War Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1790","8953","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","28","-1","0","0","33","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1832","-1","","","","","Lucky Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","362","1811","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","3","0","0","0","0","0","0","0","0" +"1835","-1","","","","","Dirty Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1836","-1","","","","","Dirty Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1839","-1","","","","","Rough Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","184","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1840","-1","","","","","Rough Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1843","-1","","","","","Tanned Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","725","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1844","-1","","","","","Tanned Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","728","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1845","-1","","","","","Chainmail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","877","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1846","-1","","","","","Chainmail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","880","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1849","-1","","","","","Cured Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1388","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1850","-1","","","","","Cured Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1393","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1851","-1","","","","","Cleansing Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1785","7143","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1852","-1","","","","","Scalemail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","336","1684","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1853","-1","","","","","Scalemail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","338","1690","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1854","-1","","","","","Deprecated Brooch of the Night Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1875","-1","Foreman Thistlenettle - Member of the Explorers' League","","","","Thistlenettle's Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1877","-1","","","","","Book of Rejuvenation III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1878","-1","","","","","Deprecated Book of Nullify Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"1880","-1","","","","","Deprecated Book of Nullify Disease II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1882","-1","","","","","Book of Moonfire III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1886","-1","","","","","Book of Moonfire II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1893","-1","","","","","Miner's Revenge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1775","8876","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","20","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"1894","-1","","","","","Miners' Union Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1895","-1","","","","","Monster - Sword, Short Rusty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1896","-1","","","","","Monster - Sword, Short Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1897","-1","","","","","Monster - Sword, Scimitar Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1899","-1","","","","","Monster - Sword, Long Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1900","-1","","","","","Monster - Thieves Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1901","-1","","","","","Monster - Mace, Basic Stone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1902","-1","","","","","Monster - Mace, Basic Wooden Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1903","-1","","","","","Monster - Mace, Basic Metal Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1904","-1","","","","","Monster - Axe, Stone Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1905","-1","","","","","Monster - Axe, Metal Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1906","-1","","","","","Monster - Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1907","-1","","","","","Monster - Staff, Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1908","-1","","","","","Monster - Staff, Crooked","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1909","-1","","","","","Monster - Axe, Large Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1910","-1","","","","","Monster - Item, Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1911","-1","","","","","Monster - Tool, Wrench Small","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1912","-1","","","","","Deprecated Reed Pipe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","122","490","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1913","-1","","","","","Studded Blackjack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148","742","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1914","-1","","","","","Deprecated Miniature Silver Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1915","-1","","","","","Deprecated Bag of Teeth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1917","-1","","","","","Jeweled Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1256","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","10","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","5" +"1918","-1","","","","","Deprecated Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1922","-1","A bundle of miscellaneous supplies for Sven.","","","","Supplies for Sven","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1923","-1","","","","","Ambassador's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1924","-1","","","","","Deprecated Hollowed Wooden Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1925","-1","","","","","Defias Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","16","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","11" +"1926","-1","","","","","Weighted Sap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","687","3438","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","15","-1","0","0","12","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1927","-1","","","","","Deadmines Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3451","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","15","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1928","-1","","","","","Defias Mage Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","995","4979","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","11" +"1929","-1","","","","","Silk-threaded Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","434","2171","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","13" +"1930","-1","","","","","Stonemason Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2044","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","13" +"1931","-1","","","","","Huge Gnoll Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1933","-1","","","","","Staff of Conjuring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","905","4529","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","10" +"1934","-1","","","","","Stonemason Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3656","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"1935","-1","","","","","Assassin's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2974","14874","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","24","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","19" +"1936","-1","","","","","Goblin Screwdriver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5569","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","13" +"1937","-1","","","","","Buzz Saw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1700","8500","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","21","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","16" +"1938","-1","","","","","Block Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1962","9810","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","17" +"1939","-1","","","","","Skin of Sweet Rum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1940","-1","","","","","Deprecated Skin of Sweet Rum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1269","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1941","-1","","","","","Cask of Merlot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","203","815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1942","-1","","","","","Bottle of Moonshine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","316","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1943","-1","","","","","Goblin Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","713","3566","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","3","0","0","0","0","0","0","0","0","14" +"1944","-1","","","","","Metalworking Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","259","1296","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"1945","-1","","","","","Woodworking Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1337","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","13" +"1946","-1","","","","","Mary's Looking Glass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1948","-1","","","","","Deprecated Large Broom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2044","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","16","-1","0","0","19","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1950","-1","","","","","Deprecated Gold Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1951","-1","","","","","Blackwater Cutlass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1258","6290","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","14" +"1955","-1","","","","","Dragonmaw Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1573","7868","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","3","0","0","0","0","0","0","0","0","22" +"1956","-1","The spell on this pendant has faded.","","","","Faded Shadowhide Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1957","-1","","","","","Monster - Shield, Small Wooden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1958","-1","","","","","Petrified Shinbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","975","4876","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","17","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","12" +"1959","-1","","","","","Cold Iron Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6117","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","17","-1","0","0","27","1","0","0","0","41","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","12" +"1960","-1","","","","","Deprecated Ironforge Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","670","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1961","-1","","","","","Monster - Shield, Buckler Wooden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1962","-1","This pendant glows with magic.","","","","Glowing Shadowhide Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1963","-1","","","","","Deprecated Bone Chips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","29","119","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1965","-1","","","","","White Wolf Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1968","-1","","","","","Ogre's Monocle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1969","-1","","","","","Deprecated Stormwind Guard Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","427","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1970","-1","","","","","Restoring Balm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1971","-1","","","","","Furlbrow's Deed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1972","-1","","","","","Westfall Deed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1973","-1","","","","","Orb of Deception","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4618","18475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","54" +"1974","-1","","","","","Mindthrust Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2320","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","-5","0","0","0","0","0","0","0","0","17" +"1975","-1","","","","","Pysan's Old Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5744","28721","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","28","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","5","0","0","0","0","0","0","0","0","23" +"1976","-1","","","","","Slaghammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6340","31703","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","11","0","0","0","0","0","0","0","0","24" +"1977","-1","","","","","20-slot Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1978","-1","","","","","Wolfclaw Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","980","4904","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","5","6","0","0","0","0","0","0","0","22" +"1979","-1","","","","","Wall of the Dead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23273","116369","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1937","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","15","0","0","0","0","0","0","0","0","45" +"1980","-1","","","","","Underworld Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6200","24800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","6","0","0","0","0","0","0","0","0","38" +"1981","-1","","","","","Icemail Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14113","70566","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","15","5","0","0","0","0","0","0","0","39" +"1982","-1","","","","","Nightblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29513","147568","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","39" +"1983","-1","","","","","Monster - Sword2H, Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1984","-1","","","","","Monster - Shield, Kite Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1985","-1","","","","","Monster - Shield, Large Wooden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1986","-1","","","","","Gutrender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14861","74309","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","41","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1987","-1","An improved pot, with extra whistles and choppers.","","","","Krazek's Fixed Pot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1988","-1","","","","","Chief Brigadier Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2852","14260","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","5","0","0","0","0","0","0","0","33" +"1990","-1","","","","","Ballast Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10077","50385","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","36","-1","0","5238","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","31" +"1991","-1","","","","","Goblin Power Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8357","41788","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","34","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","10","0","0","0","0","0","0","0","0","29" +"1992","-1","","","","","Swampchill Fetish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","33" +"1993","-1","","","","","Ogremind Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2100","8400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","31" +"1994","-1","","","","","Ebonclaw Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16696","83480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","5268","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","41" +"1995","-1","","","","","Deprecated Cat's Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1996","-1","","","","","Voodoo Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","6880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","32" +"1997","-1","","","","","Pressed Felt Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2538","12694","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","12","0","0","0","0","0","0","0","0","29" +"1998","-1","","","","","Bloodscalp Channeling Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7239","36199","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","33","-1","0","0","50","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","28" +"1999","-1","","","","","Deprecated Torn Leather Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1279","6395","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","29" +"2000","-1","Morgan Ladimore's sword.","","","","Archeus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8827","44136","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","35","-1","0","0","63","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2002","-1","","","","","Deprecated Jordan's Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2003","-1","A big quiver","","","","Deprecated Big Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2004","-1","","","","","Grelin Whitebeard's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2005","-1","Moon over the Vale","","","","The First Troll Legend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2006","-1","Gri'lek the Wanderer","","","","The Second Troll Legend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2007","-1","Fall of Gurubashi","","","","The Third Troll Legend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2008","-1","The Emperor's Tomb","","","","The Fourth Troll Legend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2011","-1","","","","","Twisted Sabre","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3840","19200","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","2","0","0","0","0","0","0","0","0","21" +"2012","-1","","","","","Deprecated Phylactery of Rot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1300","5200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"2013","-1","","","","","Cryptbone Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3644","18222","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","6","4","0","0","0","0","0","0","0","21" +"2014","-1","","","","","Black Metal Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4869","24346","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","29","-1","0","0","52","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","7","0","0","0","0","0","0","0","0","24" +"2015","-1","","","","","Black Metal War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4443","22219","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","28","-1","0","0","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","0","0","0","0","0","0","0","0","0","23" +"2016","-1","","","","","Dusty Chain Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1769","8847","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","2","0","0","0","0","0","0","0","0","21" +"2017","-1","","","","","Glowing Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4477","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","23" +"2018","-1","","","","","Skeletal Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3269","16345","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","27","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","22" +"2020","-1","","","","","Hollowfang Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5249","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","13" +"2021","-1","","","","","Green Carapace Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1025","5129","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","4","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","16" +"2023","-1","","","","","Monster - Spear, Rusty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2024","-1","","","","","Espadon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1215","6078","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","21","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2025","-1","","","","","Bearded Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1060","5304","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2026","-1","","","","","Rock Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1257","6286","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","21","-1","0","0","37","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2027","-1","","","","","Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","763","3815","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","19","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2028","-1","","","","","Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1013","5065","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","21","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2029","-1","","","","","Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","883","4419","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","20","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2030","-1","","","","","Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1108","5544","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","27","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2032","-1","","","","","Gallan Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1665","8328","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"2033","-1","","","","","Ambassador's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","967","4836","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"2034","-1","","","","","Scholarly Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1035","5179","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","8","0","0","0","0","0","0","0","0","20" +"2035","-1","","","","","Sword of the Night Sky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2300","11503","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","24","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","19" +"2036","-1","","","","","Dusty Mining Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","258","1291","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"2037","-1","","","","","Tunneler's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2345","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","0" +"2038","-1","","","","","Deprecated Cougar Head Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","349","1745","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2039","-1","","","","","Plains Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","3","0","0","0","0","0","0","0","0","24" +"2040","-1","","","","","Troll Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15296","76482","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1676","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","43" +"2041","-1","","","","","Tunic of Westfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7060","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","11","0","0","0","0","0","0","0","0","0" +"2042","-1","","","","","Staff of Westfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3639","18195","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","24","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","5","0","0","0","0","0","0","0","0","0" +"2043","-1","","","","","Ring of Forlorn Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","7","0","0","0","0","0","0","0","0","0" +"2044","-1","","","","","Crescent of Forlorn Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7357","36787","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","35","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","0","0","0","0","0","0","0","0","0","0" +"2045","-1","","","","","Deprecated Cowl of Forlorn Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2750","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2046","-1","","","","","Bluegill Kukri","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2461","12307","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","19" +"2047","-1","","","","","Anvilmar Hand Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2048","-1","","","","","Anvilmar Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2050","-1","","","","","Deprecated Silver Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2051","-1","","","","","Monster - Shield, Small Wooden Damaged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2052","-1","","","","","Monster - Shield, Small Metal Damaged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2053","-1","","","","","Monster - Shield, Buckler Metal Damaged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2054","-1","","","","","Trogg Hand Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2055","-1","","","","","Small Wooden Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2056","-1","","","","","The Velvet Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","464","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2057","-1","","","","","Pitted Defias Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2058","-1","","","","","Kazon's Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4197","20986","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","0","0","0","0","0","0","0","0","22" +"2059","-1","","","","","Sentry Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","863","4318","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","5","4","0","0","0","0","0","0","0","0","19" +"2060","-1","","","","","Deprecated Chunk of Boar Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","32","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2064","-1","","","","","Trogg Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","191","958","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2065","-1","","","","","Rockjaw Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","569","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2066","-1","","","","","Skull Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","407","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2067","-1","","","","","Frostbit Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","186","931","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2069","-1","","","","","Black Bear Hide Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","609","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","7" +"2070","-1","","","","","Darnassian Bleu","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2071","-1","","","","","Deprecated Mountain Spring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2072","-1","","","","","Dwarven Magestaff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4414","22070","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","5212","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","22" +"2073","-1","","","","","Dwarven Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","742","3713","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","5169","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","10" +"2074","-1","","","","","Solid Shortblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1054","5271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","18","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"2075","-1","","","","","Priest's Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","386","1932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","12","-1","0","5170","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","7" +"2077","-1","","","","","Magician Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5059","25295","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","29","-1","0","5221","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","24" +"2078","-1","","","","","Northern Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1070","5350","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","18","-1","0","5177","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","13" +"2079","-1","","","","","Sergeant's Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","933","4669","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","17","-1","0","5179","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","12" +"2080","-1","","","","","Hillborne Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6590","32954","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","34","-1","0","5232","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","29" +"2081","-1","","","","","Monster - Torch, Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2082","-1","","","","","Wizbang's Gunnysack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2084","-1","","","","","Darksteel Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5709","28547","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","30","-1","0","0","52","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","7","0","0","0","0","0","0","0","0","25" +"2085","-1","","","","","Chunk of Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2087","-1","","","","","Hard Crawler Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1262","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"2088","-1","","","","","Long Crawler Limb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3648","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","15","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"2089","-1","","","","","Scrimshaw Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5567","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"2091","-1","","","","","Magic Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","213","855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2092","-1","","","","","Worn Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","2","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2098","-1","","","","","Double-barreled Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3020","15104","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","27","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","22" +"2099","-1","","","","","Dwarven Hand Cannon","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45040","225203","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","53" +"2100","-1","","","","","Precisely Calibrated Boomstick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24539","122699","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","48","-1","0","0","38","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","14","0","0","0","0","0","0","0","0","0","43" +"2101","-1","","","","","Light Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2102","-1","","","","","Small Ammo Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2103","-1","","","","","Test Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2104","-1","","","","","Deprecated Standard Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","100","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2105","-1","","","","","Thug Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2106","-1","","","","","Deprecated Worn Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2107","-1","","","","","Deprecated Travel-worn Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2108","-1","","","","","Frostmane Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","40","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2109","-1","","","","","Frostmane Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2110","-1","","","","","Light Magesmith Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2112","-1","","","","","Lumberjack Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2113","-1","","","","","Calor's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2114","-1","","","","","Snowy Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","155","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2115","-1","","","","","Deprecated Small White Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2117","-1","","","","","Thin Cloth Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2119","-1","","","","","Thin Cloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2120","-1","","","","","Thin Cloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2121","-1","","","","","Thin Cloth Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2122","-1","","","","","Cracked Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2123","-1","","","","","Cracked Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2124","-1","","","","","Cracked Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2125","-1","","","","","Cracked Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2126","-1","","","","","Cracked Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2127","-1","","","","","Cracked Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2128","-1","","","","","Scratched Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","4","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2129","-1","","","","","Large Round Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2130","-1","","","","","Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2131","-1","","","","","Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","3","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2132","-1","","","","","Short Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","102","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2133","-1","","","","","Small Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2134","-1","","","","","Hand Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2136","-1","","","","","Conjured Purified Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2137","-1","","","","","Whittling Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2138","-1","","","","","Sharpened Letter Opener","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","192","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","7","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2139","-1","","","","","Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","57","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2140","-1","","","","","Carving Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","323","1616","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","11","-1","0","5171","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","6" +"2141","-1","","","","","Cuirboulli Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5223","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2142","-1","","","","","Cuirboulli Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","524","2620","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2143","-1","","","","","Cuirboulli Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","788","3944","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2144","-1","","","","","Cuirboulli Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","527","2639","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2145","-1","","","","","Cuirboulli Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","529","2648","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2146","-1","","","","","Cuirboulli Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","961","4809","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2147","-1","","","","","Monster - Sword, Falchion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2148","-1","","","","","Polished Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","581","2907","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2149","-1","","","","","Polished Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4397","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2150","-1","","","","","Polished Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2930","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2151","-1","","","","","Polished Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","588","2941","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2152","-1","","","","","Polished Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1181","5906","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2153","-1","","","","","Polished Scale Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1185","5927","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2154","-1","","","","","The Story of Morgan Ladimore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2156","-1","","","","","Padded Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","615","3077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2158","-1","","","","","Padded Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","413","2066","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2159","-1","","","","","Padded Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4148","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2160","-1","","","","","Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","832","4163","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2161","-1","","","","","Book from Sven's Farm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2162","-1","Sarah Ladimore's ring.","","","","Sarah's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2163","-1","","","","","Shadowblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","46710","233550","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","53","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","48" +"2164","-1","","","","","Gut Ripper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27031","135159","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","40" +"2165","-1","","","","","Old Blanchy's Blanket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2166","-1","","","","","Foreman's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","810","4054","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","3","0","0","0","0","0","0","0","15" +"2167","-1","","","","","Foreman's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","339","1695","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","15" +"2168","-1","","","","","Foreman's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2349","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","0","0","0","0","0","0","0","0","16" +"2169","-1","","","","","Buzzer Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","943","4717","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","21","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2170","-1","","","","","Deprecated Shield of the Spider Princess","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","360","1804","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","15" +"2172","-1","","","","","Rustic Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2173","-1","","","","","Old Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2175","-1","","","","","Shadowhide Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13416","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","23","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","18" +"2176","-1","","","","","Monster - Staff, Ornate Priest Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2177","-1","","","","","Monster - Staff, Ornate Mage Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2178","-1","","","","","Monster - Sword, Long Ornate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2179","-1","","","","","Monster - Sword, Scimitar Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2180","-1","","","","","Monster - Sword, Short Ornate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2181","-1","","","","","Monster - Sword2H, Baron Rivendare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2182","-1","","","","","Monster - Mace, Ornate Metal Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2183","-1","","","","","Monster - Axe, Metal Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2184","-1","","","","","Monster - Dagger Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2186","-1","","","","","Outfitter Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2187","-1","","","","","A Stack of Letters","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2188","-1","","","","","A Letter to Grelin Whitebeard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2189","-1","","","","","Tigole's Boomstick (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1152569","5762847","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","63","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","6","0","0","0","0","0","0","0","0","0","0","0","95" +"2191","-1","","","","","Deprecated End Spawn Ticket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2194","-1","","","","","Diamond Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3276","16383","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","4","0","0","0","0","0","0","0","0","20" +"2195","-1","","","","","Anvilmar Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2196","-1","","","","","Monster - Item, Mutton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2197","-1","","","","","Monster - Item, Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2198","-1","","","","","Monster - Item, Potion Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2199","-1","","","","","Monster - Item, Vial Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2200","-1","","","","","Monster - Item, Potion Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2201","-1","","","","","Monster - Item, Vial Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2202","-1","","","","","Monster - Item, Mutton with Bite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2203","-1","","","","","Brashclaw's Chopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1492","7463","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","19","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"2204","-1","","","","","Brashclaw's Skewer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1133","5665","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","17","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","12" +"2205","-1","","","","","Duskbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3961","19806","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","25","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","20" +"2206","-1","","","","","Deprecated Fine Pointed Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","734","3673","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","22","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","17" +"2207","-1","","","","","Jambiya","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","478","2390","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","16","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","11" +"2208","-1","","","","","Poniard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","730","3650","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","19","-1","0","0","7","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2209","-1","","","","","Kris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7115","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2210","-1","","","","","Battered Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2211","-1","","","","","Bent Large Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2212","-1","","","","","Cracked Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2213","-1","","","","","Worn Large Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","121","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2214","-1","","","","","Wooden Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","182","910","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","10" +"2215","-1","","","","","Wooden Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","405","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","6" +"2216","-1","","","","","Simple Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1054","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","11" +"2217","-1","","","","","Rectangular Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1216","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","12" +"2218","-1","","","","","Craftsman's Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","501","2505","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","13","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"2219","-1","","","","","Small Round Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","457","2288","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","17" +"2220","-1","","","","","Box Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2596","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2221","-1","","","","","Targe Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","910","4550","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","23" +"2222","-1","","","","","Tower Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1005","5025","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","24" +"2223","-1","","","","","The Collector's Schedule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2224","-1","","","","","Militia Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2225","-1","","","","","Sharp Kitchen Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","916","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2226","-1","","","","","Ogremage Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4117","20589","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","-5","11","0","0","0","0","0","0","0","0","22" +"2227","-1","","","","","Heavy Ogre War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4133","20667","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","27","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","5","0","0","0","0","0","0","0","0","22" +"2230","-1","","","","","Gloves of Brawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","714","3570","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","0" +"2231","-1","","","","","Inferno Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4386","21933","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2232","-1","","","","","Dark Runner Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","812","4064","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","3","0","0","0","0","0","0","0","0","20" +"2233","-1","","","","","Shadow Weaver Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1690","8452","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","22" +"2234","-1","","","","","Nightwalker Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1806","9033","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","4","0","0","0","0","0","0","0","0","25" +"2235","-1","","","","","Brackclaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1281","6406","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","19","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","14" +"2236","-1","","","","","Blackfang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3386","16931","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","0","0","0","0","0","0","0","0","0","20" +"2237","-1","","","","","Patched Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","377","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2238","-1","","","","","Urchin's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","303","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2239","-1","Engraved with the words 'For years of service: -EVC.'","","","","The Collector's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2240","-1","","","","","Rugged Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151","758","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2241","-1","","","","","Desperado Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","615","3078","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"2243","-1","","","","","Hand of Edward the Odd","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","70554","352770","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","13","0","0","0","0","0","0","0","0","57" +"2244","-1","","","","","Krol Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51857","259289","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","56","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","5","0","0","0","0","0","0","0","0","51" +"2245","-1","","","","","Helm of Narv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27636","138183","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","13","18","32","0","0","0","0","0","0","0","54" +"2246","-1","","","","","Myrmidon's Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","10","7","0","0","0","0","0","0","0","53" +"2249","-1","","","","","Militia Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91","457","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2250","-1","","","","","Dusky Crab Cakes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2251","-1","","","","","Gooey Spider Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2252","-1","A crate of miscellaneous supplies addressed to Private Thorsen.","","","","Miscellaneous Goblin Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2254","-1","","","","","Icepane Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","506","2534","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","12","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","7" +"2255","-1","","","","","Deprecated Thick Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2256","-1","","","","","Skeletal Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2996","14982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","19" +"2257","-1","","","","","Frostmane Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","944","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","10","-1","0","0","14","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2258","-1","","","","","Frostmane Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","416","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2259","-1","","","","","Frostmane Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","378","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2260","-1","","","","","Frostmane Hand Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","532","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2262","-1","","","","","Mark of Kern","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8746","34985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","31" +"2263","-1","","","","","Phytoblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2619","13098","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","100","182","25","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2264","-1","","","","","Mantle of Thieves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1957","9788","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","3","4","0","0","0","0","0","0","0","25" +"2265","-1","","","","","Stonesplinter Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","477","2387","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","8" +"2266","-1","","","","","Stonesplinter Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2396","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","13","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","8" +"2267","-1","","","","","Stonesplinter Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","3558","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"2268","-1","","","","","Stonesplinter Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2271","-1","","","","","Staff of the Blessed Seer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3255","16278","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","2","0","0","0","0","0","0","0","0","18" +"2273","-1","","","","","Guerrilla Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","436","2181","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","10" +"2274","-1","","","","","Sapper's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","289","1447","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","12" +"2275","-1","","","","","Deprecated Sentinel Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","795","3976","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","15" +"2276","-1","","","","","Swampwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4093","20466","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","32" +"2277","-1","","","","","Necromancer Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3620","18104","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","11","12","0","0","0","0","0","0","0","0","30" +"2278","-1","","","","","Forest Tracker Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2326","11633","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","5","0","0","0","0","0","0","0","0","26" +"2280","-1","","","","","Kam's Walking Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4023","20117","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","8","0","0","0","0","0","0","0","0","22" +"2281","-1","","","","","Rodentia Flint Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1504","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","6" +"2282","-1","","","","","Rodentia Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","696","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","10","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2283","-1","","","","","Rat Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","700","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2284","-1","","","","","Rat Cloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1055","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"2287","-1","","","","","Haunch of Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2288","-1","","","","","Conjured Fresh Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2289","-1","","","","","Scroll of Strength II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"2290","-1","","","","","Scroll of Intellect II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2291","-1","","","","","Kang the Decapitator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44580","222900","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","49","-1","0","0","136","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","44" +"2292","-1","","","","","Necrology Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1334","6673","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","3","0","0","0","0","0","0","0","0","20" +"2295","-1","","","","","Large Boar Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2296","-1","","","","","Great Goretusk Snout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2299","-1","","","","","Burning War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8756","43784","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","33","-1","0","0","73","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","28" +"2300","-1","","","","","Embossed Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","962","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"2302","-1","","","","","Handstitched Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","147","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2303","-1","","","","","Handstitched Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","358","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2304","-1","","","","","Light Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2305","-1","","","","","Deprecated Light Winter Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2306","-1","","","","","Deprecated Light Winter Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2307","-1","","","","","Fine Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1216","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","13" +"2308","-1","","","","","Fine Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"2309","-1","","","","","Embossed Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","268","1343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2310","-1","","","","","Embossed Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112","561","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2311","-1","","","","","White Leather Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","751","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2312","-1","","","","","Fine Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181","905","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2313","-1","","","","","Medium Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2314","-1","","","","","Toughened Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3717","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2315","-1","","","","","Dark Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1538","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2316","-1","","","","","Dark Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2043","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2317","-1","","","","","Dark Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","689","3446","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","0","0","0","0","0","0","0","0","0","15" +"2318","-1","","","","","Light Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2319","-1","","","","","Medium Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2320","-1","","","","","Coarse Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2321","-1","","","","","Fine Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2322","-1","","","","","Deprecated Crag Boar Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2323","-1","","","","","Deprecated Longsnout Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","55","223","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2324","-1","","","","","Bleach","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2325","-1","","","","","Black Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2326","-1","","","","","Ivy-weave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","145","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2327","-1","","","","","Sturdy Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2361","-1","","","","","Battleworn Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2362","-1","","","","","Worn Wooden Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2363","-1","","","","","Deprecated Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2364","-1","","","","","Woven Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","296","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2366","-1","","","","","Woven Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","298","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2367","-1","","","","","Woven Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2369","-1","","","","","Woven Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2370","-1","","","","","Battered Leather Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","377","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2371","-1","","","","","Battered Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","189","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2372","-1","","","","","Battered Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2373","-1","","","","","Battered Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","259","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2374","-1","","","","","Battered Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","173","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2375","-1","","","","","Battered Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","173","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2376","-1","","","","","Worn Heater Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","447","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2377","-1","","","","","Round Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2378","-1","","","","","Skeleton Finger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2379","-1","","","","","Tarnished Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","75","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2380","-1","","","","","Tarnished Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2381","-1","","","","","Tarnished Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","75","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2382","-1","","","","","The Embalmer's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2383","-1","","","","","Tarnished Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","57","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2384","-1","","","","","Tarnished Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2385","-1","","","","","Tarnished Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2386","-1","","","","","Rusted Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2387","-1","","","","","Rusted Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2388","-1","","","","","Rusted Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2389","-1","","","","","Rusted Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2390","-1","","","","","Rusted Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2391","-1","","","","","Rusted Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2392","-1","","","","","Light Mail Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","413","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2393","-1","","","","","Light Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","206","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2394","-1","","","","","Light Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","416","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2395","-1","","","","","Light Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64","322","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2396","-1","","","","","Light Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","215","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2397","-1","","","","","Light Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","215","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2398","-1","","","","","Light Chain Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2399","-1","","","","","Light Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","217","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2400","-1","","","","","Light Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2401","-1","","","","","Light Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66","330","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2402","-1","","","","","Light Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","219","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2403","-1","","","","","Light Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","220","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2404","-1","","","","","Deprecated Pattern: Light Winter Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","165","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2405","-1","","","","","Deprecated Pattern: Light Winter Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","165","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2406","-1","","","","","Pattern: Fine Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2407","-1","","","","","Pattern: White Leather Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","165","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2408","-1","","","","","Pattern: Fine Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","165","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2409","-1","","","","","Pattern: Dark Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2410","-1","","","","","Smoky Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2411","1101","","","","","Black Stallion Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2412","415","","","","","Deprecated Nightmare Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187500","750000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2413","223","","","","","Palomino","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2414","1101","","","","","Pinto Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"2415","223","","","","","White Stallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2417","-1","","","","","Augmented Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3134","15673","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2418","-1","","","","","Augmented Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3146","15731","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2419","-1","","","","","Augmented Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1578","7894","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2420","-1","","","","","Augmented Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11937","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2421","-1","","","","","Augmented Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1590","7952","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2422","-1","","","","","Augmented Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1596","7981","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2423","-1","","","","","Brigandine Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8554","42770","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","259","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2424","-1","","","","","Brigandine Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4292","21461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2425","-1","","","","","Brigandine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8615","43077","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2426","-1","","","","","Brigandine Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6513","32568","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2427","-1","","","","","Brigandine Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4029","20146","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2428","-1","","","","","Brigandine Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4044","20222","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2429","-1","","","","","Russet Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","10138","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2431","-1","","","","","Russet Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2043","10215","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2432","-1","","","","","Russet Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1538","7690","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2434","-1","","","","","Russet Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1033","5165","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2435","-1","","","","","Embroidered Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5536","27683","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2437","-1","","","","","Embroidered Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5578","27890","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2438","-1","","","","","Embroidered Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4199","20996","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2440","-1","","","","","Embroidered Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14099","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2441","-1","","","","","Ringed Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3646","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2442","-1","","","","","Reinforced Targe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6564","1","1","1","16","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2443","-1","","","","","Metal Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3417","17085","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2444","-1","","","","","Ornate Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9393","46967","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2445","-1","","","","","Large Metal Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","686","3433","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2446","-1","","","","","Kite Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1236","6182","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2447","-1","","","","","Peacebloom","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2448","-1","","","","","Heavy Pavise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3231","16158","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2449","-1","","","","","Earthroot","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2450","-1","","","","","Briarthorn","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2451","-1","","","","","Crested Heater Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8725","43629","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2452","-1","","","","","Swiftthistle","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2453","-1","","","","","Bruiseweed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2454","-1","","","","","Elixir of Lion's Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2455","-1","","","","","Minor Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2456","-1","","","","","Minor Rejuvenation Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2457","-1","","","","","Elixir of Minor Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2458","-1","","","","","Elixir of Minor Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2459","-1","","","","","Swiftness Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2460","-1","This potion has no effect until we put languages in.","","","","Elixir of Tongues (NYI)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2461","-1","","","","","Deprecated Elemental Resistance Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2462","-1","","","","","Deprecated Potion of Lesser Invulnerability (Fix)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2463","-1","","","","","Studded Doublet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2739","13695","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2464","-1","","","","","Studded Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6871","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2465","-1","","","","","Studded Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2495","12477","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2466","-1","","","","","Skullsplitter Fetish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2467","-1","","","","","Studded Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1886","9430","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2468","-1","","","","","Studded Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1262","6310","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2469","-1","","","","","Studded Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1266","6334","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2470","-1","","","","","Reinforced Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6790","33952","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2471","-1","","","","","Reinforced Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3408","17040","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2472","-1","","","","","Reinforced Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6842","34211","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2473","-1","","","","","Reinforced Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5150","25753","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2474","-1","","","","","Reinforced Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3446","17233","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2475","-1","","","","","Reinforced Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3459","17298","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2476","-1","","","","","Chilled Basilisk Haunch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2477","-1","","","","","Ravager's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2478","-1","","","","","Deprecated Replenishing Font","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1527","6110","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"2479","-1","","","","","Broad Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","107","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2480","-1","","","","","Large Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2481","-1","","","","","Peon Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","86","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2482","-1","","","","","Inferior Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2483","-1","","","","","Rough Broad Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","3","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2484","-1","","","","","Small Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","4","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2485","-1","","","","","Splintered Board","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","53","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2486","-1","","","","","Large Stone Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","66","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2487","-1","","","","","Acolyte Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2488","-1","","","","","Gladius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107","536","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2489","-1","","","","","Two-handed Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","342","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","7","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2490","-1","","","","","Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","540","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","9","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2491","-1","","","","","Large Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","484","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","8","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2492","-1","","","","","Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","284","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","7","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2493","-1","","","","","Wooden Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","701","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","9","-1","0","0","10","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2494","-1","","","","","Stiletto","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","401","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2495","-1","","","","","Walking Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","504","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2496","-1","","","","","Raider Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","404","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2497","-1","","","","","Rusted Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","711","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2498","-1","","","","","Small Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","407","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","8","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2499","-1","","","","","Double-bladed Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143","716","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2500","-1","","","","","Light Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","293","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2501","-1","","","","","Wooden Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","9","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2502","-1","","","","","Scuffed Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","295","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2503","-1","","","","","Adept Short Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","519","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2504","-1","","","","","Worn Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","29","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","2","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"2505","-1","","","","","Polished Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"2506","-1","","","","","Hornwood Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","3" +"2507","-1","","","","","Laminated Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1751","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","16","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","11" +"2508","-1","","","","","Old Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","27","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","2","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"2509","-1","","","","","Ornate Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","414","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","4" +"2510","-1","","","","","Solid Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","41","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","3","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"2511","-1","","","","","Hunter's Boomstick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","264","1324","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","14","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","9" +"2512","-1","","","","","Rough Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2513","-1","","","","","Deprecated Iron Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","25","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2514","-1","","","","","Depricated Sharp Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2515","-1","","","","","Sharp Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","3","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2516","-1","","","","","Light Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2517","-1","","","","","Deprecated Standard Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","25","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2518","-1","","","","","Deprecated Solid Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2519","-1","","","","","Heavy Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","3","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2520","-1","","","","","Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4925","24628","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2521","-1","","","","","Flamberge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6179","30896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","36","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2522","-1","","","","","Crescent Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4509","22548","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","35","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2523","-1","","","","","Bullova","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5657","28285","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","35","-1","0","0","68","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2524","-1","","","","","Truncheon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3838","19192","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","29" +"2525","-1","","","","","War Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5297","26489","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","35","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2526","-1","","","","","Main Gauche","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3867","19336","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","29" +"2527","-1","","","","","Battle Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5871","29356","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","36","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2528","-1","","","","","Falchion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10367","51836","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","46","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2529","-1","","","","","Zweihander","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13006","65031","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","46","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2530","-1","","","","","Francisca","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10443","52219","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","46","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2531","-1","","","","","Great Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11233","56169","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","44","-1","0","0","90","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","39" +"2532","-1","","","","","Morning Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10521","52608","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","46","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2533","-1","","","","","War Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12221","61107","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","45","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2534","-1","","","","","Rondel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9086","45431","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","44","-1","0","0","27","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","39" +"2535","-1","","","","","War Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12311","61556","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","45","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2536","-1","","","","","Trogg Stone Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2545","-1","","","","","Malleable Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1796","8984","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","3","3","0","0","0","0","0","0","0","0" +"2546","-1","","","","","Royal Frostmane Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","276","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2547","-1","","","","","Boar Handler Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2548","-1","","","","","Barrel of Barleybrew Scalder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2549","-1","","","","","Staff of the Shade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5016","25082","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","22" +"2550","-1","","","","","Monster - Bow, Short","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"2551","-1","","","","","Monster - Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"2552","-1","","","","","Monster - Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"2553","-1","","","","","Recipe: Elixir of Minor Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2554","-1","","","","","Deprecated Recipe: Elixir of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2555","-1","","","","","Recipe: Swiftness Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","171","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2556","-1","","","","","Recipe: Elixir of Tongues","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","171","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2557","-1","","","","","Monster - Mace2H, Ornate Metal Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2558","-1","","","","","Monster - Mace, Good Wooden Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2559","-1","","","","","Monster - Staff, Ornate Warlock Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2560","-1","","","","","Jitters' Completed Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2561","-1","","","","","Chok'sul's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2562","-1","","","","","Bouquet of Scarlet Begonias","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","575","2300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2563","-1","","","","","Strange Smelling Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2564","-1","","","","","Elven Spirit Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6817","34085","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","5","0","0","0","0","0","0","0","0","45" +"2565","-1","","","","","Rod of Molten Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3113","12453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","30" +"2566","-1","","","","","Sacrificial Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1322","6613","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","8","0","0","0","0","0","0","0","0","22" +"2567","-1","","","","","Evocator's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2509","12546","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","23","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"2568","-1","","","","","Brown Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","156","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2569","-1","","","","","Linen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2570","-1","","","","","Linen Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2571","-1","","","","","Viny Wrappings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2572","-1","","","","","Red Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","496","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2573","-1","","","","","Deprecated Forest Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2574","-1","","","","","Deprecated Trogg Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","117","585","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","10" +"2575","-1","","","","","Red Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2576","-1","","","","","White Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2577","-1","","","","","Blue Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2578","-1","","","","","Barbaric Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","224","1120","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","2","0","0","0","0","0","0","0","0","9" +"2579","-1","","","","","Green Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2580","-1","","","","","Reinforced Linen Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"2581","-1","","","","","Heavy Linen Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2582","-1","","","","","Green Woolen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1082","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"2583","-1","","","","","Woolen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1796","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","2","0","0","0","0","0","0","0","14" +"2584","-1","","","","","Woolen Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","711","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","11" +"2585","-1","","","","","Gray Woolen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","638","3193","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","5","4","0","0","0","0","0","0","0","0","16" +"2586","-1","","","","","Gamemaster's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2587","-1","","","","","Gray Woolen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2588","-1","","","","","Deprecated Red Leather Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1621","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2589","-1","","","","","Linen Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2590","-1","","","","","Forest Spider Webbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2591","-1","","","","","Dirty Trogg Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2592","-1","","","","","Wool Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2593","-1","","","","","Flask of Stormwind Tawny","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2594","-1","","","","","Flagon of Dwarven Honeymead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2595","-1","","","","","Jug of Badlands Bourbon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2596","-1","","","","","Skin of Dwarven Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2598","-1","","","","","Pattern: Red Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","197","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2599","-1","","","","","Deprecated Pattern: Forest Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","165","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2600","-1","","","","","Deprecated Pattern: Trogg Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","165","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2601","-1","","","","","Pattern: Gray Woolen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","197","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2602","-1","","","","","Deprecated Pattern: Feathered Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2604","-1","","","","","Red Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2605","-1","","","","","Green Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2606","-1","","","","","Lurker Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2607","-1","","","","","Mo'grosh Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2608","-1","","","","","Threshadon Ambergris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2609","-1","","","","","Disarming Colloid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2610","-1","","","","","Disarming Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2611","-1","","","","","Crude Flint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2612","-1","","","","","Plain Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","163","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2613","-1","","","","","Double-stitched Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","607","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2614","-1","","","","","Robe of Apprenticeship","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","232","1161","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","12" +"2615","-1","","","","","Chromatic Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1018","5091","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","24" +"2616","-1","","","","","Shimmering Silk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","531","2659","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2617","-1","","","","","Burning Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2198","10991","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2618","-1","","","","","Silver Dress Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5327","26639","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2619","-1","","","","","Grelin's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2620","-1","","","","","Augural Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3013","15067","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","10","0","0","0","0","0","0","0","0","34" +"2621","-1","","","","","Cowl of Necromancy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11787","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","-5","0","0","0","0","0","0","0","0","31" +"2622","-1","","","","","Nimar's Tribal Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2603","13015","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","7","10","0","0","0","0","0","0","0","32" +"2623","-1","","","","","Holy Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3554","17772","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","11","0","0","0","0","0","0","0","0","36" +"2624","-1","","","","","Thinking Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3852","19264","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","0","0","0","0","0","0","0","0","0","37" +"2625","-1","","","","","Menethil Statuette","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2628","-1","","","","","Senir's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2629","-1","","","","","Intrepid Strongbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2632","-1","","","","","Curved Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","605","3029","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","14","-1","0","5171","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","9" +"2633","-1","","","","","Jungle Remedy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2634","-1","","","","","Venom Fern Extract","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2635","-1","","","","","Loose Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","3" +"2636","-1","","","","","Carved Stone Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2637","-1","","","","","Ironband's Progress Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2638","-1","","","","","Deprecated Ironband's Powder Approval","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2639","-1","","","","","Merrin's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2640","-1","","","","","Miners' Gear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2642","-1","","","","","Loose Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","166","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2643","-1","","","","","Loose Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2644","-1","","","","","Loose Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2645","-1","","","","","Loose Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2646","-1","","","","","Loose Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","159","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","3" +"2647","-1","","","","","Deprecated Loose Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2648","-1","","","","","Loose Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","293","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2649","-1","","","","","Flimsy Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2650","-1","","","","","Flimsy Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2651","-1","","","","","Flimsy Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2652","-1","","","","","Flimsy Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2653","-1","","","","","Flimsy Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2654","-1","","","","","Flimsy Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2655","-1","","","","","Deprecated Flimsy Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2656","-1","","","","","Flimsy Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2657","-1","","","","","Red Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2658","-1","","","","","Ados Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2659","-1","","","","","Modr Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2660","-1","","","","","Golm Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2661","-1","","","","","Neru Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2662","-1","","","","","Ribbly's Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","50" +"2663","-1","","","","","Ribbly's Bandolier","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","50" +"2664","-1","","","","","Spinner Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1073","5369","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","13" +"2665","-1","","","","","Stormwind Seasoning Herbs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2666","-1","","","","","Barrel of Thunder Ale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2667","-1","","","","","MacGrann's Dried Meats","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2668","-1","","","","","Threshadon Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2669","-1","","","","","Threshadon Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2671","-1","","","","","Wendigo Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2672","-1","","","","","Stringy Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2673","-1","","","","","Coyote Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2674","-1","","","","","Crawler Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2675","-1","","","","","Crawler Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","11","44","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2676","-1","","","","","Shimmerweed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2677","-1","","","","","Boar Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2678","-1","Used to enhance the flavor in cooking recipes.","","","","Mild Spices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2679","-1","","","","","Charred Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2680","-1","","","","","Spiced Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2681","-1","","","","","Roasted Boar Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2682","-1","","","","","Cooked Crab Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2683","-1","","","","","Crab Cake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2684","-1","","","","","Coyote Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2685","-1","","","","","Succulent Pork Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2686","-1","","","","","Thunder Ale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2687","-1","","","","","Dry Pork Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2688","-1","","","","","Squirrel Nut","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2690","-1","","","","","Latched Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2691","-1","","","","","Outfitter Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2692","-1","","","","","Hot Spices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2693","-1","","","","","OLD Stormwind Seasoning Salts ","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","20","80","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2694","-1","","","","","Settler's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","539","2697","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"2695","-1","","","","","Monster - Mace, Spiked Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2696","-1","","","","","Cask of Evershine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2697","-1","","","","","Recipe: Goretusk Liver Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2698","-1","","","","","Recipe: Cooked Crab Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2699","-1","","","","","Recipe: Redridge Goulash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2700","-1","","","","","Recipe: Succulent Pork Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2701","-1","","","","","Recipe: Seasoned Wolf Kabob","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2702","-1","","","","","Lightforge Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2703","-1","","","","","Monster - Item, Tankard Wooden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2704","-1","","","","","Monster - Item, Tankard Dirty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2705","-1","","","","","Monster - Item, Tankard Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2706","-1","","","","","Monster - Item, Flower - Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2707","-1","","","","","Monster - Item, Flower - Yellow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2708","-1","","","","","Monster - Item, Bouquet - White & Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2709","-1","","","","","Monster - Item, Flower - Rose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2710","-1","","","","","Monster - Item, Bouquet - Roses","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2711","-1","","","","","Monster - Dagger Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2712","-1","","","","","Crate of Lightforge Ingots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2713","-1","","","","","Ol' Sooty's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2714","-1","","","","","Monster - Item, Lantern - Square","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2715","-1","","","","","Monster - Item, Lantern - Round","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2716","-1","","","","","Monster - Item, Bottle - Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2717","-1","","","","","Monster - Item, Bottle - Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2718","-1","","","","","Monster - Item, Glass - Clear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2719","-1","","","","","Small Brass Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2720","-1","","","","","Muddy Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2721","-1","","","","","Holy Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1982","9914","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","0","0","0","0","0","0","0","0","0","27" +"2722","-1","","","","","Wine Ticket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2723","-1","","","","","Bottle of Dalaran Noir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2724","-1","","","","","Cloth Request","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2725","-1","","","","","Green Hills of Stranglethorn - Page 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2728","-1","","","","","Green Hills of Stranglethorn - Page 4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2730","-1","","","","","Green Hills of Stranglethorn - Page 6","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2732","-1","","","","","Green Hills of Stranglethorn - Page 8","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2734","-1","","","","","Green Hills of Stranglethorn - Page 10","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2735","-1","","","","","Green Hills of Stranglethorn - Page 11","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2738","-1","","","","","Green Hills of Stranglethorn - Page 14","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2740","-1","","","","","Green Hills of Stranglethorn - Page 16","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2742","-1","","","","","Green Hills of Stranglethorn - Page 18","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2744","-1","","","","","Green Hills of Stranglethorn - Page 20","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2745","-1","","","","","Green Hills of Stranglethorn - Page 21","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2748","-1","","","","","Green Hills of Stranglethorn - Page 24","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2749","-1","","","","","Green Hills of Stranglethorn - Page 25","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2750","-1","","","","","Green Hills of Stranglethorn - Page 26","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2751","-1","","","","","Green Hills of Stranglethorn - Page 27","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2754","-1","","","","","Tarnished Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","69","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2755","-1","By Hemet Nesingwary","","","","Green Hills of Stranglethorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2756","-1","","","","","Green Hills of Stranglethorn - Chapter I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2757","-1","","","","","Green Hills of Stranglethorn - Chapter II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2758","-1","","","","","Green Hills of Stranglethorn - Chapter III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2759","-1","","","","","Green Hills of Stranglethorn - Chapter IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2760","-1","","","","","Thurman's Sewing Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2763","-1","","","","","Fisherman Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","14","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","9" +"2764","-1","","","","","Small Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","440","2202","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","13" +"2765","-1","","","","","Hunting Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","811","4057","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2766","-1","","","","","Deft Stiletto","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1564","7823","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","29","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","24" +"2770","-1","","","","","Copper Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2771","-1","","","","","Tin Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2772","-1","","","","","Iron Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2773","-1","","","","","Cracked Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","195","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","8","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","3" +"2774","-1","","","","","Rust-covered Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","140","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","2" +"2775","-1","","","","","Silver Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2776","-1","","","","","Gold Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2777","-1","","","","","Feeble Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","13","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","8" +"2778","-1","","","","","Cheap Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","737","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","5","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","8" +"2779","-1","","","","","Tear of Tilloa","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2780","-1","","","","","Light Hunting Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","374","1872","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","19","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","14" +"2781","-1","","","","","Dirty Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","335","1676","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","18","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","13" +"2782","-1","","","","","Mishandled Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","751","3759","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","24","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","19" +"2783","-1","","","","","Shoddy Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","590","2954","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","22","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","17" +"2784","-1","","","","","Musquash Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2785","-1","","","","","Stiff Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1062","5311","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","23" +"2786","-1","","","","","Oiled Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1173","5865","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","29","-1","0","0","9","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","24" +"2787","-1","","","","","Trogg Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","53","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","3","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2788","-1","","","","","Black Claw Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2789","-1","Opens difficulty 25 locks.","","","","Deprecated Bent Copper Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2790","-1","Opens difficulty 50 locks.","","","","Deprecated Straight Copper Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2791","-1","Opens difficulty 75 locks.","","","","Deprecated Fine Copper Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2792","-1","Opens difficulty 100 locks.","","","","Deprecated Worn Bronze Lockpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2793","-1","","","","","Deprecated Book: The History of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2794","-1","","","","","An Old History Book","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2795","-1","","","","","Book: Stresses of Iron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2797","-1","","","","","Heart of Mokk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2798","-1","","","","","Rethban Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2799","-1","","","","","Gorilla Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","67","270","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2800","-1","","","","","Black Velvet Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1525","7625","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","5","0","0","0","0","0","0","0","0","21" +"2801","-1","","","","","Blade of Hanna","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104729","523648","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","64","-1","0","0","101","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","5","6","7","4","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","11","11","11","11","0","0","0","0","0","59" +"2802","-1","","","","","Blazing Emblem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1625","6500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"2803","-1","","","","","Deprecated Static Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"2804","-1","","","","","Deprecated Freezing Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2125","8500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"2805","-1","","","","","Yeti Fur Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2352","11762","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","3","0","0","0","0","0","0","0","0","0" +"2806","-1","","","","","Package for Stormpike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2807","-1","","","","","Guillotine Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2452","12264","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","3","3","0","0","0","0","0","0","0","0","18" +"2808","-1","","","","","Torch of Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2364","11820","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","29","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2809","-1","","","","","Monster - Mace, Spiked Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2810","-1","","","","","Monster - Mace, Standard Serpent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2811","-1","","","","","Deprecated Lightforge Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2989","14946","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","29","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2812","-1","","","","","Deprecated Lightforge Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2400","12001","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","29","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2813","-1","","","","","Monster - Mace, Standard Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2814","-1","","","","","Deprecated Lightforge Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3104","15520","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","29","-1","0","0","33","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2815","-1","","","","","Curve-bladed Ripper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19778","98890","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","45","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","8","0","0","0","0","0","0","0","0","40" +"2816","-1","","","","","Death Speaker Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7324","36620","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","33","-1","0","0","33","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","1","0","0","0","0","0","0","0","0","0","28" +"2817","-1","","","","","Soft Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","201","1006","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","0" +"2818","-1","","","","","Stretched Leather Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1817","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","0" +"2819","-1","","","","","Cross Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3830","19152","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","28","-1","0","5216","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","23" +"2820","-1","","","","","Nifty Stopwatch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4662","18650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2821","-1","","","","","Mo'grosh Masher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1117","5589","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","18","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","13" +"2822","-1","","","","","Mo'grosh Toothpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1402","7012","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","18","-1","0","0","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","13" +"2823","-1","","","","","Mo'grosh Can Opener","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1618","8092","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","19","-1","0","0","32","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"2824","-1","","","","","Hurricane","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32032","160160","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","53","-1","0","0","34","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","48" +"2825","-1","","","","","Bow of Searing Arrows","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14722","73610","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","37" +"2826","-1","","","","","Deprecated Medal of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2827","-1","","","","","Monster - Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2828","-1","","","","","Nissa's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2829","-1","","","","","Gregor's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2830","-1","","","","","Thurman's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2831","-1","","","","","Devlin's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2832","-1","","","","","Verna's Westfall Stew Recipe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2833","-1","","","","","The Lich's Spellbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2834","-1","","","","","Embalming Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2835","-1","","","","","Rough Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2836","-1","","","","","Coarse Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2837","-1","","","","","Thurman's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2838","-1","","","","","Heavy Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2839","-1","","","","","A Letter to Yvette","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2840","-1","","","","","Copper Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2841","-1","","","","","Bronze Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2842","-1","","","","","Silver Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2843","-1","","","","","Dirty Knucklebones","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2844","-1","","","","","Copper Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","530","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2845","-1","","","","","Copper Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","546","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2846","-1","","","","","Tirisfal Pumpkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2847","-1","","","","","Copper Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2848","-1","","","","","Bronze Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1119","5595","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","22","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2849","-1","","","","","Bronze Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6345","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","23","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2850","-1","","","","","Bronze Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1439","7197","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","24","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2851","-1","","","","","Copper Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","282","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2852","-1","","","","","Copper Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","335","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2853","-1","","","","","Copper Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","85","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2854","-1","","","","","Runed Copper Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","1127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2855","-1","","","","","Putrid Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2856","-1","","","","","Iron Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2857","-1","","","","","Runed Copper Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","198","991","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","13" +"2858","-1","","","","","Darkhound Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2859","-1","","","","","Vile Fin Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2862","-1","","","","","Rough Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2863","-1","","","","","Coarse Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2864","-1","","","","","Runed Copper Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","630","3150","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"2865","-1","","","","","Rough Bronze Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4810","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","4","0","0","0","0","0","0","0","0","16" +"2866","-1","","","","","Rough Bronze Cuirass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","752","3764","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2867","-1","","","","","Rough Bronze Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","629","3148","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","18" +"2868","-1","","","","","Patterned Bronze Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","807","4035","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"2869","-1","","","","","Silvered Bronze Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1831","9155","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","5","4","0","0","0","0","0","0","0","21" +"2870","-1","","","","","Shining Silver Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2935","14677","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","6","0","0","0","0","0","0","0","0","24" +"2871","-1","","","","","Heavy Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2872","-1","","","","","Vicious Night Web Spider Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2874","-1","A letter found on Edwin VanCleef's person.","","","","An Unsent Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2875","-1","","","","","Scarlet Insignia Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2876","-1","","","","","Duskbat Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2877","-1","","","","","Combatant Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8524","42623","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","0","0","0","0","0","0","0","0","28" +"2878","-1","","","","","Bearded Boneaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5143","25718","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","30","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","4","0","0","0","0","0","0","0","0","25" +"2879","-1","","","","","Antipodean Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3121","15605","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","17" +"2880","-1","Used by Blacksmiths to remove impurities.","","","","Weak Flux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2881","-1","","","","","Plans: Runed Copper Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","164","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2882","-1","","","","","Plans: Silvered Bronze Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","164","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2883","-1","","","","","Plans: Deadly Bronze Poniard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","164","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2884","-1","","","","","Monster - Dynamite, Lit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2885","-1","","","","","Scarlet Crusade Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2886","-1","","","","","Crag Boar Rib","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2887","-1","","","","","Ruined Wolf Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2888","-1","","","","","Beer Basted Boar Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2889","-1","","","","","Recipe: Beer Basted Boar Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","185","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2890","-1","","","","","Ruined Boar Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2891","-1","","","","","Letter to the City Architect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2892","-1","","","","","Deadly Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2893","-1","","","","","Deadly Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","55","220","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"2894","-1","","","","","Rhapsody Malt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2895","-1","","","","","Creeping Pain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","40","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2896","-1","","","","","Creeping Anguish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","40","34","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2898","-1","","","","","Mountaineer Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2899","-1","","","","","Wendigo Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","169","846","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","10" +"2900","-1","","","","","Stone Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","446","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2901","-1","Miners need a mining pick for digging.","","","","Mining Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2902","-1","","","","","Cloak of the Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1305","6527","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","0","0","0","0","0","0","0","0","0" +"2903","-1","","","","","Daryl's Hunting Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2578","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"2904","-1","","","","","Daryl's Hunting Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2977","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","16","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"2905","-1","","","","","Goat Fur Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53","266","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2906","-1","","","","","Darkshire Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1810","9051","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","0" +"2907","-1","","","","","Dwarven Tree Chopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1755","8778","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2908","-1","","","","","Thornblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1409","7048","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","20","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"2909","-1","","","","","Red Wool Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2910","-1","","","","","Gold Militia Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1257","6286","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","5","0","0","0","0","0","0","0","0","0" +"2911","-1","","","","","Keller's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","524","2623","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","3","0","0","0","0","0","0","0","0","18" +"2912","-1","","","","","Claw of the Shadowmancer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6731","33656","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","0","0","0","0","0","0","0","0","0","27" +"2913","-1","","","","","Silk Mantle of Gamn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1153","5766","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","4","0","0","0","0","0","0","0","0","0" +"2915","-1","","","","","Taran Icebreaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55289","276447","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","52","-1","0","0","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","47" +"2916","-1","","","","","Gold Lion Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4405","22028","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","5","3","0","0","0","0","0","0","0","0" +"2917","-1","","","","","Tranquil Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","665","2660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","7","0","0","0","0","0","0","0","0","0" +"2918","-1","","","","","Deprecated Coif of Inner Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2633","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2919","-1","","","","","Relic of the Ancients","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","25" +"2920","-1","","","","","Sacred Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2921","-1","","","","","Blessed Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2922","-1","","","","","Spirit Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2923","-1","","","","","Relic of Righteousness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2924","-1","","","","","Crocolisk Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2925","-1","","","","","Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2926","-1","","","","","Head of Bazil Thredd","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2927","-1","","","","","Creeping Torment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","40","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2928","-1","Used by rogues to brew poison.","","","","Dust of Decay","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2929","-1","Used by rogues to brew poison.","","","","Tomb Rot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2930","-1","Used by rogues to brew poison.","","","","Essence of Pain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2931","-1","Used by rogues to brew poison.","","","","Deprecated Maiden's Anguish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2932","-1","Used by rogues to brew poison.","","","","Torment Vine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2933","-1","","","","","Seal of Wrynn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","3","4","5","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","3","3","3","4","0","0","0","0","0","0" +"2934","-1","","","","","Ruined Leather Scraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2939","-1","","","","","Crocolisk Tear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2940","-1","","","","","Bloody Bear Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","43","175","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2941","-1","","","","","Prison Shank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3552","17761","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","21" +"2942","-1","","","","","Iron Knuckles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3663","18316","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","21" +"2943","-1","","","","","Eye of Paleth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","537","2150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2944","-1","","","","","Cursed Eye of Paleth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","-3","0","0","0","0","0","0","0","0","0","26" +"2945","-1","","","","","(OLD)Medium Throwing Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","1" +"2946","-1","","","","","Balanced Throwing Dagger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","30","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","3" +"2947","-1","","","","","Small Throwing Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","15","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","1" +"2948","-1","","","","","Deprecated Talisman of Cleansing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","312","1250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2949","-1","","","","","Mariner Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","5196","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","1","0","0","0","0","0","0","0","0","0" +"2950","-1","","","","","Icicle Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3476","17384","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","25","-1","0","0","51","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"2951","-1","","","","","Ring of the Underwood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","656","2625","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","2","3","0","0","0","0","0","0","0","31" +"2953","-1","","","","","Watch Master's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2321","11606","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","0","0","0","0","0","0","0","0","0","0" +"2954","-1","","","","","Night Watch Pantaloons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2485","12425","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","8","0","0","0","0","0","0","0","0","0" +"2955","-1","","","","","First Mate Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3449","17247","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"2956","-1","","","","","Report on the Defias Brotherhood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2957","-1","","","","","Journeyman's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","596","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2958","-1","","","","","Journeyman's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","473","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2959","-1","","","","","Journeyman's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","164","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2960","-1","","","","","Journeyman's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","109","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2961","-1","","","","","Burnt Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","155","779","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2962","-1","","","","","Burnt Leather Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120","600","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2963","-1","","","","","Burnt Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","208","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2964","-1","","","","","Burnt Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","181","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2965","-1","","","","","Warrior's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","948","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2966","-1","","","","","Warrior's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","731","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2967","-1","","","","","Warrior's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66","331","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2968","-1","","","","","Warrior's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2969","-1","","","","","Spellbinder Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","381","1909","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","0","0","0","0","0","0","0","0","0","12" +"2970","-1","","","","","Spellbinder Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1666","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2971","-1","","","","","Spellbinder Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","544","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2972","-1","","","","","Spellbinder Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2973","-1","","","","","Hunting Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","484","2420","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","2","0","0","0","0","0","0","0","0","12" +"2974","-1","","","","","Hunting Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","392","1962","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2975","-1","","","","","Hunting Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128","642","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2976","-1","","","","","Hunting Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","171","859","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","2","0","0","0","0","0","0","0","0","10" +"2977","-1","","","","","Veteran Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","476","2382","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2978","-1","","","","","Veteran Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2079","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2979","-1","","","","","Veteran Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","157","785","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2980","-1","","","","","Veteran Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1047","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","10" +"2981","-1","","","","","Seer's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3242","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","3","0","0","0","0","0","0","0","0","16" +"2982","-1","","","","","Seer's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","565","2829","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","3","0","0","0","0","0","0","0","0","15" +"2983","-1","","","","","Seer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1400","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","3","0","0","0","0","0","0","0","0","12" +"2984","-1","","","","","Seer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1077","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","0","0","0","0","0","0","0","0","0","13" +"2985","-1","","","","","Inscribed Leather Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","822","4113","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","16" +"2986","-1","","","","","Inscribed Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","718","3590","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"2987","-1","","","","","Inscribed Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2043","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","13" +"2988","-1","","","","","Inscribed Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","314","1571","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","14" +"2989","-1","","","","","Burnished Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1001","5009","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","16" +"2990","-1","","","","","Burnished Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","933","4666","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","16" +"2991","-1","","","","","Burnished Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3528","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","4","0","0","0","0","0","0","0","0","16" +"2992","-1","","","","","Burnished Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2044","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","2","0","0","0","0","0","0","0","0","15" +"2993","-1","","","","","Deprecated Inscribed Leather Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1025","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"2994","-1","","","","","Deprecated Seer's Monocle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","246","1230","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2995","-1","","","","","Deprecated Burnished Chain Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1853","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2996","-1","","","","","Bolt of Linen Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2997","-1","","","","","Bolt of Woolen Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2998","-1","Baros Alexston's first compass.","","","","A Simple Compass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2999","-1","","","","","Steelgrill's Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3000","-1","","","","","Brood Mother Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"3001","-1","","","","","Deprecated Medivh's Folly","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3002","-1","","","","","Relic Horn of Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3003","-1","","","","","Relic of the Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3004","-1","","","","","Relic of the Dead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3005","-1","","","","","Relic of Truth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3006","-1","","","","","Holy Relic Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3007","-1","","","","","Deprecated Dark Iron Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","664","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"3008","-1","","","","","Wendigo Fur Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","218","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3010","-1","","","","","Fine Sand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","101","405","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3011","-1","","","","","Feathered Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2846","14234","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","31" +"3012","-1","","","","","Scroll of Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3013","-1","","","","","Scroll of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3014","-1","","","","","Battleworn Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3015","-1","","","","","Deprecated Chatter's Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","812","3250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3016","-1","","","","","Gunther's Spellbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3017","-1","","","","","Sevren's Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3018","-1","","","","","Hide of Lupos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","781","3906","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","3","0","0","0","0","0","0","0","0","18" +"3019","-1","","","","","Noble's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2115","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","3","3","0","0","0","0","0","0","0","13" +"3020","-1","","","","","Enduring Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2655","13279","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","16","0","0","0","0","0","0","0","0","28" +"3021","-1","","","","","Ranger Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12105","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","25","-1","0","0","23","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","1","0","0","0","0","0","0","0","0","0","20" +"3022","-1","","","","","Bluegill Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1085","5427","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","0","0","0","0","0","0","0","0","0","18" +"3023","-1","","","","","Large Bore Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","754","3771","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","21","-1","0","0","13","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","16" +"3024","-1","","","","","BKP 2700 ""Enforcer""","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1419","7098","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","26","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","21" +"3025","-1","","","","","BKP 42 ""Ultra""","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3695","18478","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","36","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","31" +"3026","-1","","","","","Reinforced Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","762","3812","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","21","-1","0","0","11","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","16" +"3027","-1","","","","","Heavy Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6349","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","25","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","20" +"3028","-1","","","","","Longbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3086","15434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","34","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","29" +"3029","-1","","","","","Depricated Whipwood Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3030","-1","","","","","Razor Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","30","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3031","-1","","","","","Depricated Razor Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","450","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3032","-1","","","","","Deprecated Impact Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3033","-1","","","","","Solid Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","30","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3034","-1","","","","","Deprecated BKP ""Impact"" Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","450","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3035","-1","","","","","Laced Pumpkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3036","-1","","","","","Heavy Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2578","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","15","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","10" +"3037","-1","","","","","Whipwood Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4814","24071","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","34","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","29" +"3039","-1","","","","","Short Ash Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1610","8052","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","23","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","18" +"3040","-1","","","","","Hunter's Muzzle Loader","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4701","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","19","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","14" +"3041","-1","","","","","""Mage-Eye"" Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3769","18846","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","31","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","26" +"3042","-1","","","","","BKP ""Sparrow"" Smallbore","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4577","22887","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","15","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","28" +"3044","-1","","","","","OLDMonster - Mace, Standard Basic Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3045","-1","","","","","Lambent Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1573","7869","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","3","0","0","0","0","0","0","0","0","22" +"3046","-1","","","","","Deprecated Glinting Scale Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","571","2859","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3047","-1","","","","","Lambent Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","5260","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","3","0","0","0","0","0","0","0","0","22" +"3048","-1","","","","","Lambent Scale Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1919","9598","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","4","0","0","0","0","0","0","0","0","21" +"3049","-1","","","","","Lambent Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2119","10595","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","3","0","0","0","0","0","0","0","0","22" +"3050","-1","","","","","Deprecated Winter Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","846","4232","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3051","-1","","","","","Deprecated Winter Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","310","1553","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3052","-1","","","","","Deprecated Winter Mail Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2643","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3053","-1","","","","","Humbert's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2140","10703","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","0","0","0","0","0","0","0","0","0","23" +"3054","-1","","","","","Deprecated Winter Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","430","2153","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","19" +"3055","-1","","","","","Forest Leather Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1526","7631","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","4","0","0","0","0","0","0","0","0","21" +"3056","-1","","","","","Forest Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1532","7660","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3057","-1","","","","","Forest Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","903","4515","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3058","-1","","","","","Forest Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","682","3414","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","20" +"3059","-1","","","","","Deprecated Forest Leather Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2323","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3060","-1","","","","","Deprecated Deepwood Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2564","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","22" +"3061","-1","","","","","Deprecated Deepwood Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","755","3775","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3062","-1","","","","","Deprecated Deepwood Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1385","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3063","-1","","","","","Deprecated Deepwood Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","518","2592","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","22" +"3064","-1","","","","","Deprecated Deepwood Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","558","2791","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3065","-1","","","","","Bright Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","658","3290","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","2","0","0","0","0","0","0","0","0","18" +"3066","-1","","","","","Bright Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","497","2487","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3067","-1","","","","","Bright Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1275","6375","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3068","-1","","","","","Deprecated Silver-thread Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1700","8501","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","8","0","0","0","0","0","0","0","0","27" +"3069","-1","","","","","Bright Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7063","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","4","0","0","0","0","0","0","0","0","22" +"3070","-1","","","","","Ensign Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3071","-1","","","","","Striking Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","231","1155","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3072","-1","","","","","Smoldering Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1207","6036","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3073","-1","","","","","Smoldering Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1211","6059","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","21" +"3074","-1","","","","","Smoldering Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","476","2380","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","5","0","0","0","0","0","0","0","0","19" +"3075","-1","","","","","Eye of Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15073","75368","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","10","10","0","0","0","0","0","0","0","0","49" +"3076","-1","","","","","Smoldering Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","636","3184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","18" +"3077","-1","","","","","Deprecated Stonecloth Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1844","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3078","-1","","","","","Naga Heartpiercer","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2314","11572","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","21" +"3079","-1","","","","","Skorn's Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","297","1486","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","12","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"3080","-1","","","","","Candle of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3081","-1","","","","","Nether Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3082","-1","","","","","Dargol's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3083","-1","","","","","Restabilization Cog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3084","-1","","","","","Gyromechanic Gear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3085","-1","","","","","Barrel of Shimmer Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3086","-1","","","","","Cask of Shimmer Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3087","-1","","","","","Mug of Shimmer Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","11","45","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3088","-1","","","","","Book of Rejuvenation IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3089","-1","","","","","Tome of Flamestrike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3090","-1","","","","","Tome of Frostbolt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3091","-1","","","","","Tome of Arcane Intellect II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3092","-1","","","","","Tome of Flamestrike III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3093","-1","","","","","Tome of Flamestrike II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3094","-1","","","","","Tome of Fire Blast II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3095","-1","","","","","Tome of Fire Blast III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3096","-1","","","","","Tome of Feather Fall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3097","-1","","","","","Tome of Conjure Water II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3098","-1","","","","","Tome of Slow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3099","-1","","","","","Tome of Ice Armor II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3100","-1","","","","","Tome of Blizzard II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3101","-1","","","","","Tome of Frost Nova III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3102","-1","","","","","Tome of Arcane Intellect III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3103","-1","","","","","Coldridge Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2334","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","12","-1","0","0","18","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"3107","-1","","","","","Keen Throwing Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","75","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","11" +"3108","-1","","","","","Heavy Throwing Dagger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","22" +"3109","-1","","","","","(OLD)Wicked Throwing Dagger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","21" +"3110","-1","","","","","Tunnel Rat Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3111","-1","","","","","Crude Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","15","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","1" +"3113","-1","","","","","Codex of Holy Word: Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3114","-1","","","","","Codex of Shadow Word: Befuddle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3115","-1","","","","","Codex of Renew IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3116","-1","","","","","Codex of Holy Word: Shield II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3117","-1","","","","","Hildelve's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3118","-1","","","","","Codex of Greater Heal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3119","-1","","","","","Codex of Holy Word: Shield V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3120","-1","","","","","Codex of Holy Smite IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3121","-1","","","","","Codex of Levitate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"3122","-1","","","","","Codex of Holy Word: Shield III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3123","-1","","","","","Codex of Holy Word: Fortitude III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3124","-1","","","","","Codex of Inner Fire III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3125","-1","","","","","Tablet of Serpent Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3126","-1","","","","","Tablet of Shock II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3127","-1","","","","","Tablet of Shock III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3128","-1","","","","","(OLD)Medium Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","1" +"3129","-1","","","","","Tablet of Lightning Bolt IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3130","-1","","","","","Tablet of Restoration IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3131","-1","","","","","Weighted Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","30","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","3" +"3132","-1","","","","","Tablet of Molten Blast IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3133","-1","","","","","Tablet of Mana Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3134","-1","","","","","Grimoire of Curse of Mannoroth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3135","-1","","","","","Sharp Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","75","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","11" +"3136","-1","","","","","(OLD)Heavy Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","19","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","14" +"3137","-1","","","","","Deadly Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","22" +"3138","-1","","","","","Grimoire of Shadow Bolt IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3139","-1","","","","","Grimoire of Demon Armor II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"3140","-1","","","","","Grimoire of Blood Boil II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3141","-1","","","","","Grimoire of Life Drain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3142","-1","","","","","Grimoire of Curse of Sargeras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3143","-1","","","","","Grimoire of Burning Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3144","-1","","","","","Grimoire of Burning Spirit II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3145","-1","","","","","Off Hand Test Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3146","-1","","","","","Grimoire of Burning Spirit III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3147","-1","","","","","Deprecated Tattered Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3148","-1","","","","","Deprecated Work Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3149","-1","","","","","Deprecated Ripped Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3150","-1","","","","","Deprecated Tattered Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3151","-1","","","","","Siege Brigade Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","437","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3152","-1","","","","","Driving Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","140","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3153","-1","","","","","Oil-stained Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3154","-1","","","","","Thelsamar Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1094","5470","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","18","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3155","-1","This aging scroll is written in the indecipherable language of the Kirin Tor.","","","","Remedy of Arugal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3156","-1","","","","","Glutton Shackle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3157","-1","","","","","Darksoul Shackle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3158","-1","","","","","Burnt Hide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","303","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3159","-1","","","","","Deprecated Crusader's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","661","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3160","-1","","","","","Ironplate Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","470","2351","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3161","-1","","","","","Robe of the Keeper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1474","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3162","-1","","","","","Notched Rib","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3163","-1","","","","","Blackened Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3164","-1","","","","","Discolored Worg Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3165","-1","","","","","Quinn's Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3166","-1","","","","","Ironheart Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","407","2039","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3167","-1","","","","","Thick Spider Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3168","-1","","","","","Chipped Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","22","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3169","-1","","","","","Chipped Bear Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3170","-1","","","","","Large Bear Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","47","190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3171","-1","","","","","Broken Boar Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3172","-1","","","","","Boar Intestines","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3173","-1","","","","","Bear Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3174","-1","","","","","Spider Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3175","-1","","","","","Ruined Dragonhide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3176","-1","","","","","Small Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3177","-1","","","","","Tiny Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3179","-1","","","","","Cracked Dragon Molting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3180","-1","","","","","Flecked Raptor Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3181","-1","","","","","Partially Digested Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3182","-1","","","","","Spider's Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","387","1550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3183","-1","","","","","Mangy Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3184","-1","","","","","Hook Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1394","6973","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","20","-1","0","5189","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","15" +"3185","-1","","","","","Acrobatic Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8088","40440","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","34","-1","0","5239","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","29" +"3186","-1","","","","","Viking Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4436","22180","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","5213","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","25" +"3187","-1","","","","","Sacrificial Kris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14870","74353","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","44","-1","0","5261","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","39" +"3188","-1","","","","","Coral Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4398","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","15","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","10" +"3189","-1","","","","","Wood Chopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","8","-1","0","0","11","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3190","-1","","","","","Beatstick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","499","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","8","-1","0","0","9","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3191","-1","","","","","Arced War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3857","19289","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","26","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3192","-1","","","","","Short Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","495","2479","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","12","-1","0","5173","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","7" +"3193","-1","","","","","Oak Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2072","10361","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","21","-1","0","5193","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","16" +"3194","-1","","","","","Black Malice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2495","12479","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","21","-1","0","0","48","1","0","0","0","73","6","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","16" +"3195","-1","","","","","Barbaric Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6862","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","18","-1","0","5183","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","13" +"3196","-1","","","","","Edged Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1377","6886","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","18","-1","0","5182","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","13" +"3197","-1","","","","","Stonecutter Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9295","46478","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","35","-1","0","5236","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","30" +"3198","-1","","","","","Battering Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2741","13709","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","23","-1","0","5202","37","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"3199","-1","","","","","Battle Slayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2262","11310","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","22","-1","0","5201","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","17" +"3200","-1","","","","","Burnt Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","95","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3201","-1","","","","","Barbarian War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4496","22483","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","28","-1","0","5219","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","23" +"3202","-1","","","","","Forest Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","584","2921","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","19" +"3203","-1","","","","","Dense Triangle Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27184","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","28","-1","0","0","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","10","0","0","0","0","0","0","0","0","23" +"3204","-1","","","","","Deepwood Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","751","3758","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","1","0","0","0","0","0","0","0","0","21" +"3205","-1","","","","","Inscribed Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1149","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","12" +"3206","-1","","","","","Cavalier Two-hander","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4582","22910","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","28","-1","0","5218","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","23" +"3207","-1","","","","","Hunting Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3208","-1","","","","","Conk Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25378","126893","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","48","-1","0","5274","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","43" +"3209","-1","","","","","Ancient War Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6783","33917","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","6","0","0","0","0","0","0","0","0","0" +"3210","-1","","","","","Brutal War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5626","28134","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","30","-1","0","5219","58","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","25" +"3211","-1","","","","","Burnished Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","373","1865","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","14" +"3212","-1","","","","","Lambent Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4645","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","21" +"3213","-1","","","","","Veteran Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","447","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","8" +"3214","-1","","","","","Warrior's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3215","-1","","","","","Deprecated Winter Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","341","1705","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3216","-1","","","","","Warm Winter Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","275","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3217","-1","","","","","Foreman Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","674","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"3218","-1","","","","","Pyrewood Shackle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3219","-1","","","","","Deprecated Mantle of Nobility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124","620","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"3220","-1","","","","","Blood Sausage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3221","-1","","","","","Deprecated Sage Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","410","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3222","-1","","","","","Wicked Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1203","6015","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","19","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","14" +"3223","-1","","","","","Frostmane Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1534","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","6" +"3224","-1","","","","","Silver-lined Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3225","-1","","","","","Bloodstained Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","548","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","9","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3226","-1","","","","","Deprecated Watchman Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","350","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","7" +"3227","-1","","","","","Nightbane Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2633","13169","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","7","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"3228","-1","","","","","Jimmied Handcuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1098","5492","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","3","7","0","0","0","0","0","0","0","0","21" +"3229","-1","","","","","Tarantula Silk Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","424","2122","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","5","0","0","0","0","0","0","0","0","18" +"3230","-1","","","","","Black Wolf Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3842","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","21" +"3231","-1","","","","","Cutthroat Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1266","6332","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"3232","-1","","","","","Deprecated Drake-scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1486","7430","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3233","-1","","","","","Gnoll Hide Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3234","-1","","","","","Deliah's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3235","-1","For Deliah","","","","Ring of Scorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","1650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","-3","4","0","0","0","0","0","0","0","0","0" +"3236","-1","","","","","Rot Hide Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3237","-1","","","","","Sample Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3238","-1","The sealed findings of Apothecary Johaan.","","","","Johaan's Findings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3239","-1","","","","","Rough Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3240","-1","","","","","Coarse Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3241","-1","","","","","Heavy Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3242","-1","","","","","OLDMonster - Chest, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3243","-1","","","","","OLDMonster - Legs, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3244","-1","","","","","OLDMonster - Feet, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3245","-1","","","","","OLDMonster - Hands, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3246","-1","","","","","OLDMonster - Shoulder, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3247","-1","","","","","OLDMonster - Waist, Plate Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3248","-1","","","","","Translated Letter from The Embalmer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3249","-1","An item for testing conjured items","","","","Conjured test Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3250","-1","","","","","Bethor's Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3251","-1","","","","","Bethor's Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3252","-1","","","","","Deathstalker Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3253","-1","","","","","Grizzled Bear Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3254","-1","","","","","Skittering Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3255","-1","","","","","Berard's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3256","-1","","","","","Lake Skulker Moss","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3257","-1","","","","","Lake Creeper Moss","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3258","-1","","","","","Hardened Tumor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3259","-1","","","","","Ruined Bat Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3260","-1","","","","","Scarlet Initiate Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3261","-1","","","","","Webbed Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3262","-1","","","","","Putrid Wooden Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3263","-1","","","","","Webbed Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3264","-1","","","","","Duskbat Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3265","-1","","","","","Scavenger Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3266","-1","","","","","Scarlet Armband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3267","-1","","","","","Forsaken Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3268","-1","","","","","Forsaken Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3269","-1","","","","","Forsaken Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3270","-1","","","","","Flax Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","51","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3271","-1","","","","","Deprecated Flax Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3272","-1","","","","","Zombie Skin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3273","-1","","","","","Rugged Mail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3274","-1","","","","","Flax Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3275","-1","","","","","Flax Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3276","-1","","","","","Deathguard Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3277","-1","","","","","Executor Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3278","-1","","","","","Aura Proc Damage Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","8602","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","25" +"3279","-1","","","","","Battle Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","525","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3280","-1","","","","","Battle Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","165","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3281","-1","","","","","Battle Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","280","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3282","-1","","","","","Battle Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1177","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","7" +"3283","-1","","","","","Battle Chain Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1476","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3284","-1","","","","","Tribal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88","444","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3285","-1","","","","","Tribal Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3286","-1","","","","","Tribal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","297","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3287","-1","","","","","Tribal Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","199","998","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","7" +"3288","-1","","","","","Tribal Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1253","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3289","-1","","","","","Ancestral Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","288","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3290","-1","","","","","Ancestral Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","241","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3291","-1","","","","","Ancestral Woollies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","202","1013","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","0","0","0","0","0","0","0","0","0","8" +"3292","-1","","","","","Ancestral Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203","1016","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3293","-1","","","","","Deadman Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","3","-1","0","0","1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3294","-1","","","","","Deadman Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3295","-1","","","","","Deadman Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","3","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3296","-1","","","","","Deadman Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","3","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3297","-1","","","","","Fel Moss","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3298","-1","","","","","Deprecated Grizzled Bearskin Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3299","-1","","","","","Fractured Canine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","48","195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3300","-1","","","","","Rabbit's Foot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","9","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3301","-1","","","","","Sharp Canine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","102","410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3302","-1","","","","","Brackwater Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","319","1595","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","10" +"3303","-1","","","","","Brackwater Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","353","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3304","-1","","","","","Brackwater Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","533","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3305","-1","","","","","Brackwater Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","492","2463","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"3306","-1","","","","","Brackwater Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","653","3269","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"3307","-1","","","","","Barbaric Cloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1078","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","1","0","0","0","0","0","0","0","0","10" +"3308","-1","","","","","Barbaric Cloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","1","1","0","0","0","0","0","0","0","10" +"3309","-1","","","","","Barbaric Loincloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1666","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"3310","-1","","","","","Barbaric Cloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","442","2211","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","4","0","0","0","0","0","0","0","0","13" +"3311","-1","","","","","Ceremonial Leather Ankleguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","761","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3312","-1","","","","","Ceremonial Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","353","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","8" +"3313","-1","","","","","Ceremonial Leather Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2595","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"3314","-1","","","","","Ceremonial Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","171","856","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"3315","-1","","","","","Ceremonial Leather Loincloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","454","2274","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","12" +"3316","-1","","","","","Alaric's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3317","-1","Its lips are moving!","","","","A Talking Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","460","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3318","-1","","","","","Alaric's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3319","-1","","","","","Short Sabre","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","550","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3320","-1","","","","","Bonecaster Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","110","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3321","-1","","","","","Gray Fur Booties","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","207","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3322","-1","","","","","Wispy Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3323","-1","","","","","Ghostly Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3324","-1","","","","","Ghostly Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1119","5599","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"3325","-1","","","","","Vile Fin Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","703","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3326","-1","","","","","Monster - Mace2H, Basic Stone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3327","-1","","","","","Vile Fin Oracle Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141","708","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","9","-1","0","0","11","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3328","-1","","","","","Spider Web Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","233","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3329","-1","","","","","Spiked Wooden Plank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","896","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3330","-1","","","","","Dargol's Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1405","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3331","-1","","","","","Melrache's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3332","-1","","","","","Perrine's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","242","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3333","-1","","","","","Deprecated Scarlet Captain's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","411","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3334","-1","","","","","Farmer's Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","7","-1","0","0","11","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"3335","-1","","","","","Farmer's Broom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","6","-1","0","0","9","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3336","-1","","","","","Flesh Piercer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3986","19933","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","29","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","24" +"3337","-1","","","","","Dragonmaw War Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3338","-1","","","","","Deprecated Obsidian Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3339","-1","","","","","Dwarven Tinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3340","-1","","","","","Incendicite Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3341","-1","","","","","Gauntlets of Ogre Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1621","8108","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","27" +"3342","-1","","","","","Captain Sander's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3343","-1","","","","","Captain Sander's Booty Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3344","-1","","","","","Captain Sander's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","729","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"3345","-1","","","","","Silk Wizard Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2720","13601","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","32" +"3346","-1","","","","","Monster - Item, Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3347","-1","","","","","Bundle of Crocolisk Skins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3348","-1","","","","","Giant Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3349","-1","It's dripping.","","","","Sida's Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3350","-1","","","","","Monster - Item, Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3351","-1","","","","","Monster - Item, Rolling Pin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3352","-1","","","","","Ooze-covered Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3353","-1","","","","","Rune-inscribed Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3354","-1","","","","","Dalaran Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3355","-1","","","","","Wild Steelbloom","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3356","-1","","","","","Kingsblood","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3357","-1","","","","","Liferoot","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3358","-1","","","","","Khadgar's Whisker","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3360","-1","","","","","Stitches' Femur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3361","-1","","","","","Monster - Mace, Spiked Heavy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3362","-1","","","","","Monster - Item, Broom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3363","-1","","","","","Frayed Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3364","-1","","","","","Monster - Sword, Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3365","-1","","","","","Frayed Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3366","-1","","","","","Monster - Sword2H, Katana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3367","-1","","","","","Monster - Item, Pitchfork","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3368","-1","","","","","Monster - Item, Harpoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3369","-1","","","","","Grave Moss","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3370","-1","","","","","Patchwork Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","3" +"3371","-1","","","","","Empty Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3372","-1","","","","","Leaded Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3373","-1","","","","","Patchwork Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","71","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","4" +"3374","-1","","","","","Calico Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","9" +"3375","-1","","","","","Calico Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","7" +"3376","-1","","","","","Canvas Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","431","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","13" +"3377","-1","","","","","Canvas Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","14" +"3378","-1","","","","","Brocade Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","660","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","16" +"3379","-1","","","","","Brocade Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","762","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","17" +"3380","-1","","","","","Cross-stitched Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","365","1826","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","25" +"3381","-1","","","","","Cross-stitched Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","303","1515","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3382","-1","","","","","Weak Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3383","-1","","","","","Elixir of Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3384","-1","","","","","Minor Magic Resistance Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3385","-1","","","","","Lesser Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3386","-1","","","","","Elixir of Poison Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3387","-1","","","","","Limited Invulnerability Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3388","-1","","","","","Strong Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3389","-1","","","","","Elixir of Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3390","-1","","","","","Elixir of Lesser Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3391","-1","","","","","Elixir of Ogre's Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3392","-1","","","","","Ringed Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1663","8317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","25" +"3393","-1","","","","","Recipe: Minor Magic Resistance Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","171","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3394","-1","","","","","Recipe: Elixir of Poison Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","171","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3395","-1","","","","","Recipe: Limited Invulnerability Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3396","-1","","","","","Recipe: Elixir of Lesser Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","171","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3397","-1","","","","","Young Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3399","-1","","","","","Vulture Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3400","-1","","","","","Lucine Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2761","13806","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3401","-1","","","","","Rough Crocolisk Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3402","-1","","","","","Soft Patch of Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","602","2410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3403","-1","","","","","Ivory Boar Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","321","1285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3404","-1","","","","","Buzzard Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","181","725","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3405","-1","","","","","Raven Claw Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3406","-1","","","","","Black Feather Quill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3407","-1","","","","","Sapphire of Sky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3408","-1","","","","","Rune of Nesting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3409","-1","","","","","Nightsaber Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3410","-1","","","","","Deprecated Glade Bear Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3411","-1","","","","","Strigid Owl Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3412","-1","","","","","Webwood Spider Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3413","-1","","","","","Doomspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3229","16147","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","3","0","0","0","0","0","0","0","0","20" +"3414","-1","","","","","Crested Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4028","20144","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","2","0","0","0","0","0","0","0","0","22" +"3415","-1","","","","","Staff of the Friar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3598","17993","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","4","3","0","0","0","0","0","0","0","19" +"3416","-1","","","","","Martyr's Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2213","11069","1","1","1","0","24580","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","8","8","0","0","0","0","0","0","0","21" +"3417","-1","","","","","Onyx Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4629","23146","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","26","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","6","5","9","0","0","0","0","0","0","0","21" +"3418","-1","","","","","Fel Cone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3419","-1","","","","","Red Rose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3420","-1","","","","","Black Rose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3421","-1","","","","","Simple Wildflowers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3422","-1","","","","","Beautiful Wildflowers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3423","-1","","","","","Bouquet of White Roses","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3424","-1","","","","","Bouquet of Black Roses","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3425","-1","","","","","Woven Wand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3426","-1","","","","","Bold Yellow Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3427","-1","","","","","Stylish Black Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3428","-1","","","","","Common Gray Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3429","-1","","","","","Guardsman Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2931","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3430","-1","","","","","Sniper Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11026","55134","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","44","-1","0","5852","56","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","39" +"3431","-1","","","","","Bone-studded Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1335","6677","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","5","1","0","0","0","0","0","0","0","0" +"3432","-1","","","","","Monster - Glaive - 1 Blade Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3433","-1","","","","","Monster - Spear, Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3434","-1","","","","","Slumber Sand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3435","-1","","","","","Zombie Skin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","98","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3436","-1","","","","","Deprecated Quilted Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3437","-1","","","","","Clasped Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3438","-1","","","","","Ankh of Resurrection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28","115","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3439","-1","","","","","Zombie Skin Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3440","-1","","","","","Bonecracker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","640","3202","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3441","-1","","","","","Deprecated Crippling Agent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3442","-1","","","","","Apprentice Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3443","-1","","","","","Ceremonial Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","691","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3444","-1","","","","","Tiller's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3445","-1","","","","","Ceremonial Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","226","1133","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","12","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3446","-1","","","","","Darkwood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","592","2963","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3447","-1","","","","","Cryptwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","174","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3448","-1","","","","","Senggin Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3449","-1","","","","","Mystic Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","207","1035","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3450","-1","","","","","Faerleia's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","443","2217","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3451","-1","","","","","Nightglow Concoction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","607","2430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3452","-1","","","","","Ceranium Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2322","11610","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","22","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","0" +"3453","-1","","","","","Quilted Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","232","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3454","-1","","","","","Reconnaissance Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","527","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3455","-1","","","","","Deathstalker Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","941","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","11","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3456","-1","","","","","Dog Whistle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6375","25500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","25" +"3457","-1","","","","","Stamped Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","444","2220","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"3458","-1","","","","","Rugged Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","334","1670","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","0" +"3459","-1","","","","","Deprecated Weathered Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61","305","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3460","-1","","","","","Johaan's Special Drink","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3461","-1","","","","","High Robe of the Adjudicator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1005","5029","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","7","0","0","0","0","0","0","0","0","0" +"3462","-1","","","","","Talonstrike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2283","11418","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3463","-1","","","","","Silver Star","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","9","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","4","0","0","0","0","0","0","0","0","0","0","0" +"3464","-1","","","","","Feathered Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3465","-1","","","","","Exploding Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","36","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3466","-1","Used by blacksmiths to remove impurities.","","","","Strong Flux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3467","-1","","","","","Dull Iron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3468","-1","The sealed findings of Apothecary Renferrel.","","","","Renferrel's Findings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3469","-1","","","","","Copper Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","245","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3470","-1","","","","","Rough Grinding Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3471","-1","","","","","Copper Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","712","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"3472","-1","","","","","Runed Copper Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","357","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3473","-1","","","","","Runed Copper Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1498","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","8" +"3474","-1","","","","","Gemmed Copper Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1083","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","749","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","10" +"3475","-1","","","","","Cloak of Flames","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26018","130092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","0","0","0","0","0","0","0","0","0","0","60" +"3476","-1","","","","","Gray Bear Tongue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3477","-1","","","","","Creeper Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3478","-1","","","","","Coarse Grinding Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3480","-1","","","","","Rough Bronze Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2660","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3481","-1","","","","","Silvered Bronze Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1284","6422","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","3","3","3","0","0","0","0","0","0","0","20" +"3482","-1","","","","","Silvered Bronze Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1317","6588","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","3","0","0","0","0","0","0","0","21" +"3483","-1","","","","","Silvered Bronze Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4828","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","3","0","0","0","0","0","0","0","22" +"3484","-1","","","","","Green Iron Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","24" +"3485","-1","","","","","Green Iron Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1295","6477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","25" +"3486","-1","","","","","Heavy Grinding Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3487","-1","","","","","Heavy Copper Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1498","7490","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","27","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"3488","-1","","","","","Copper Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","613","3066","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","8" +"3489","-1","","","","","Thick War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","937","4688","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","17","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","1","0","0","0","0","0","0","0","0","12" +"3490","-1","","","","","Deadly Bronze Poniard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2731","13658","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","25","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","20" +"3491","-1","","","","","Heavy Bronze Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2741","13709","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","25","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","20" +"3492","-1","","","","","Mighty Iron Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4552","22764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","25" +"3493","-1","","","","","Raptor's End","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3426","17133","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","30","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"3494","-1","","","","","Monster - Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3495","-1","","","","","Elixir of Suffering","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3496","-1","","","","","Mountain Lion Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3497","-1","","","","","Elixir of Pain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3498","-1","A crescent moon dangling from a silver chain.","","","","Taretha's Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3499","-1","","","","","Burnished Gold Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3500","-1","","","","","Deprecated Battered Lock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3501","-1","","","","","Deprecated Rusted Lock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3502","-1","","","","","Mudsnout Blossoms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3503","-1","","","","","Deprecated Forboding Document","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3504","-1","","","","","Deprecated Encrypted Letterr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3505","-1","","","","","Alterac Signet Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3506","-1","","","","","Mudsnout Composite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3507","-1","","","","","Deprecated Test Fishliver Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3508","-1","","","","","Mudsnout Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3509","-1","","","","","Daggerspine Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3510","-1","","","","","Torn Fin Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3511","-1","","","","","Cloak of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3513","-1","","","","","Deprecated Contract for the Magistrate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3514","-1","","","","","Mor'Ladim's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3515","-1","","","","","Ataeric's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3516","-1","","","","","Lescovar's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3517","-1","","","","","Keg of Shindigger Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3518","-1","","","","","Decrypted Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3519","-1","","","","","Deprecated DEFAULT QUEST ITEM - Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3520","-1","","","","","Tainted Keg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3521","-1","This letter is encrypted and indecipherable.","","","","Cleverly Encrypted Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3522","-1","","","","","Black Night Elf Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3523","-1","","","","","Unused Black Night Elf Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3524","-1","","","","","Unused Black Night Elf Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3525","-1","","","","","Unused Black Night Elf Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3526","-1","","","","","Black Night Elf Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3527","-1","","","","","White Night Elf Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3528","-1","","","","","Red Leather C03 Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3529","-1","","","","","Black Night Elf Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3530","-1","","","","","Wool Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","28","115","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3531","-1","","","","","Heavy Wool Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","57","230","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3532","-1","","","","","Unused Red Leather C03 Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3533","-1","","","","","Red Leather C03 Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3534","-1","","","","","Unused Red Leather C03 Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3535","-1","","","","","Red Leather C03 Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3536","-1","","","","","Demon Hunter Blindfold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3537","-1","","","","","Black Leather D02 Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3538","-1","","","","","Gray Leather D02 Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3539","-1","","","","","Unused Black Leather D02 Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3540","-1","","","","","Unused Gray Leather D02 Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3541","-1","","","","","Black Leather D02 Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3542","-1","","","","","Gray Leather D02 Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3543","-1","","","","","Unused Black Leather D02 Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3544","-1","","","","","Unused Gray Leather D02 Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3545","-1","","","","","Black Leather D02 Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3546","-1","","","","","Gray Leather D02 Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3547","-1","","","","","White Leather D03 Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3548","-1","","","","","Unused White Leather D03 Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3549","-1","","","","","Unused White Leather D03 Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3550","-1","","","","","Targ's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3551","-1","","","","","Muckrake's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3552","-1","","","","","Glommus's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3553","-1","","","","","Mug'thol's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3554","-1","","","","","Crown of Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3555","-1","","","","","Robe of Solomon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1032","5161","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","3","0","0","0","0","0","0","0","0","0" +"3556","-1","","","","","Dread Mage Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1285","6429","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3557","-1","","","","","Unused Tabard of Chow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","128","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3558","-1","","","","","Fen Keeper Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5220","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","9","0","0","0","0","0","0","0","0","0","0" +"3559","-1","","","","","Night Watch Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","473","2368","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","1","0","0","0","0","0","0","0","0","0" +"3560","-1","","","","","Mantle of Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2102","10514","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3561","-1","","","","","Resilient Poncho","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"3562","-1","","","","","Belt of Vindication","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4117","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","0" +"3563","-1","","","","","Seafarer's Pantaloons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","557","2787","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"3564","-1","","","","","Shipment of Iron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3565","-1","","","","","Beerstained Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1403","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"3566","-1","","","","","Raptorbane Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2023","10116","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3567","-1","Dwarves aren't known for their subtlety.","","","","Dwarven Fishing Pole","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4613","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","-1","0","0","9","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"3568","-1","","","","","Deprecated Oslow's Toolbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3569","-1","","","","","Vicar's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1262","6310","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","7","0","0","0","0","0","0","0","0","21" +"3570","-1","","","","","Bonegrinding Pestle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","839","4197","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","16","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3571","-1","","","","","Trogg Beater","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2118","10593","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","21","-1","0","0","39","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","16" +"3572","-1","","","","","Daryl's Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","972","4861","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","17","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3573","-1","","","","","Hunting Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3574","-1","","","","","Hunting Ammo Sack","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3575","-1","","","","","Iron Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3576","-1","","","","","Tin Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3577","-1","","","","","Gold Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3578","-1","","","","","Harvester's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","339","1699","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","0" +"3580","-1","","","","","Deprecated Iron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3581","-1","","","","","Serrated Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1046","5230","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","18","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"3582","-1","","","","","Acidproof Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","474","2372","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3583","-1","","","","","Weathered Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","288","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3584","-1","","","","","Deprecated Perenolde's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3585","-1","","","","","Camouflaged Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","953","4767","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","2","0","0","0","0","0","0","0","0","0" +"3586","-1","","","","","Logsplitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1034","5171","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","16","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","2","0","0","0","0","0","0","0","0","0" +"3587","-1","","","","","Embroidered Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2862","14314","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3588","-1","","","","","Embroidered Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2873","14365","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3589","-1","","","","","Heavy Weave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","576","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3590","-1","","","","","Heavy Weave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","578","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3591","-1","","","","","Padded Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","419","2097","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3592","-1","","","","","Padded Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2104","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3593","-1","","","","","Russet Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1095","5477","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3594","-1","","","","","Russet Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1099","5497","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3595","-1","","","","","Tattered Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3596","-1","","","","","Tattered Cloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3597","-1","","","","","Thick Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1081","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3598","-1","","","","","Thick Cloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","217","1085","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3599","-1","","","","","Thin Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3600","-1","","","","","Thin Cloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3601","-1","","","","","Syndicate Missive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3602","-1","","","","","Knitted Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","145","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3603","-1","","","","","Knitted Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","145","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3604","-1","","","","","Bandolier of the Night Watch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3605","-1","","","","","Quiver of the Night Watch","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3606","-1","","","","","Woven Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","147","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3607","-1","","","","","Woven Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3608","-1","","","","","Plans: Mighty Iron Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","164","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3609","-1","","","","","Plans: Copper Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","164","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3610","-1","","","","","Plans: Gemmed Copper Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","164","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3611","-1","","","","","Plans: Green Iron Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","164","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3612","-1","","","","","Plans: Green Iron Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3613","-1","","","","","Valdred's Hands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3614","-1","","","","","Yowler's Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3615","-1","","","","","Kurzen's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3616","-1","","","","","Mind's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3617","-1","","","","","Pendant of Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3618","-1","","","","","Gobbler's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3619","-1","","","","","Snellig's Snuffbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3620","-1","","","","","Lillith's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3621","-1","","","","","Ivar's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3622","-1","","","","","Essence of Nightlash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3623","-1","","","","","Thule's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3624","-1","","","","","Deprecated QDROP - Ma'ruk Wyrmscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3625","-1","","","","","Nek'rosh's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3626","-1","","","","","Head of Baron Vardus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3627","-1","","","","","Fang of Vagash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3628","-1","","","","","Hand of Dextren Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3629","-1","","","","","Mistmantle Family Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3630","-1","","","","","Head of Targorr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3631","-1","","","","","Bellygrub's Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3632","-1","","","","","Fangore's Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3633","-1","","","","","Head of Gath'Ilzogg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3634","-1","","","","","Head of Grimson","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3635","-1","","","","","Maggot Eye's Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3636","-1","","","","","Scale of Old Murk-Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3637","-1","","","","","Head of VanCleef","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3638","-1","","","","","Sarltooth's Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3639","-1","","","","","Ear of Balgaras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3640","-1","","","","","Head of Deepfury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3641","-1","","","","","Journeyman's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3642","-1","","","","","Ancestral Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","111","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3643","-1","","","","","Spellbinder Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","355","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3644","-1","","","","","Barbaric Cloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","237","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3645","-1","","","","","Seer's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","947","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"3646","-1","","","","","Deprecated Stonecloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","249","1247","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3647","-1","","","","","Bright Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","433","2169","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","18" +"3648","-1","","","","","Warrior's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","365","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3649","-1","","","","","Tribal Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","575","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3650","-1","","","","","Battle Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","342","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3651","-1","","","","","Veteran Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2176","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","10" +"3652","-1","","","","","Hunting Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1820","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","1","0","0","0","0","0","0","0","0","9" +"3653","-1","","","","","Ceremonial Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","438","2192","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","10" +"3654","-1","","","","","Brackwater Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","366","1834","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","1","0","0","0","0","0","0","0","0","9" +"3655","-1","","","","","Burnished Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1022","5111","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","2","0","0","0","0","0","0","0","0","16" +"3656","-1","","","","","Lambent Scale Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2116","10584","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","0","0","0","0","0","0","0","0","22" +"3657","-1","","","","","Hillsbrad Town Registry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3658","-1","","","","","Recovered Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3659","-1","Arm of Gri'lek","","","","Worn Leather Book","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3660","-1","","","","","Tomes of Alterac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3661","-1","","","","","Handcrafted Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3662","-1","","","","","Crocolisk Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3663","-1","","","","","Murloc Fin Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3664","-1","","","","","Crocolisk Gumbo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3665","-1","","","","","Curiously Tasty Omelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3666","-1","","","","","Gooey Spider Cake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3667","-1","","","","","Tender Crocolisk Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3668","-1","","","","","Assassin's Contract","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3669","-1","","","","","Gelatinous Goo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","195","780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3670","-1","","","","","Large Slimy Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3671","-1","","","","","Lifeless Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","201","805","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3672","-1","","","","","Head of Nagaz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3673","-1","","","","","Broken Arrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3674","-1","","","","","Decomposed Boot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3675","-1","","","","","Burnt Out Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3676","-1","","","","","Slimy Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","106","425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3677","-1","","","","","Deprecated Remington's List","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3678","-1","","","","","Recipe: Crocolisk Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3679","-1","","","","","Recipe: Blood Sausage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3680","-1","","","","","Recipe: Murloc Fin Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3681","-1","","","","","Recipe: Crocolisk Gumbo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3682","-1","","","","","Recipe: Curiously Tasty Omelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3683","-1","","","","","Recipe: Gooey Spider Cake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3684","-1","","","","","Perenolde Tiara","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3685","-1","","","","","Raptor Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3686","-1","","","","","Deprecated Jkaplan TEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3687","-1","","","","","Deprecated Unholy Avenger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57718","288592","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","-1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","6","0","0","0","0","0","0","0","0","0","0","0","35" +"3688","-1","","","","","Bloodstone Oval","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3689","-1","","","","","Bloodstone Marble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3690","-1","","","","","Bloodstone Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3691","-1","","","","","Bloodstone Wedge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3692","-1","","","","","Hillsbrad Human Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3693","-1","","","","","Humbert's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3694","-1","","","","","Monster - Item, Vial Black Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3695","-1","","","","","Monster - Item, Vial Purple Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3696","-1","","","","","Monster - Item, Vial Yellow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3697","-1","","","","","Monster - Item, Potion Blue Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3698","-1","","","","","Monster - Item, Potion Green Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3699","-1","","","","","Monster - Item, Potion Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3701","-1","To be opened by Lord Varimathras.","","","","Darthalia's Sealed Commendation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3702","-1","","","","","Bear Gall Bladder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","498","1995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3703","-1","","","","","Southshore Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","36","145","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3704","-1","","","","","Rusted Iron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3705","-1","","","","","Deprecated Rabid Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","727","2910","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3706","-1","Its letters are enshrouded in magic.","","","","Ensorcelled Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3707","-1","","","","","Nagaz Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3708","-1","","","","","Helcular's Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3710","-1","","","","","Rod of Helcular","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3711","-1","","","","","Belamoore's Research Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3712","-1","","","","","Turtle Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3713","-1","","","","","Soothing Spices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3714","-1","Its magic has faded.","","","","Worn Stone Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3715","-1","","","","","Bracers of Earth Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3716","-1","","","","","Murloc Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3717","-1","","","","","Sack of Murloc Heads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3718","-1","","","","","Foreboding Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3719","-1","","","","","Hillman's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1027","5139","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3720","-1","","","","","Yeti Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3721","-1","","","","","Farren's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3722","-1","","","","","Familiar Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","213","855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3723","-1","","","","","Familiar Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3724","-1","","","","","Familiar Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3725","-1","","","","","Familiar Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","166","666","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3726","-1","","","","","Big Bear Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3727","-1","","","","","Hot Lion Chops","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3728","-1","","","","","Tasty Lion Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3729","-1","","","","","Soothing Turtle Bisque","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3730","-1","","","","","Big Bear Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3731","-1","","","","","Lion Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3732","-1","","","","","Hooded Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","801","4006","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3733","-1","","","","","Orcish War Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6347","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","0" +"3734","-1","","","","","Recipe: Big Bear Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3735","-1","","","","","Recipe: Hot Lion Chops","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3736","-1","","","","","Recipe: Tasty Lion Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3737","-1","","","","","Recipe: Soothing Turtle Bisque","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3738","-1","","","","","Brewing Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3439","17195","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","5","0","0","0","0","0","0","0","0","0" +"3739","-1","","","","","Skull Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"3740","-1","","","","","Decapitating Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2452","12262","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","5195","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","19" +"3741","-1","","","","","Stomping Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4614","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"3742","-1","","","","","Bow of Plunder","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2862","14311","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","28","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"3743","-1","","","","","Sentry Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2451","12256","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","5","0","0","0","0","0","0","0","0","0" +"3744","-1","NYI - THIS ITEM WILL SPAWN A QUEST","","","","Bloodstone Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3745","-1","","","","","Rune of Opening","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3746","-1","","","","","Deprecated Test Strongbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3747","-1","","","","","Meditative Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1092","5462","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","5","0","0","0","0","0","0","0","0","0" +"3748","-1","","","","","Feline Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1304","6524","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","3","2","0","0","0","0","0","0","0","23" +"3749","-1","","","","","High Apothecary Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1320","6603","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","5","0","0","0","0","0","0","0","0","0" +"3750","-1","","","","","Ribbed Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2209","11048","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","5","5","0","0","0","0","0","0","0","0" +"3751","-1","","","","","Mercenary Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2661","13307","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3752","-1","","","","","Grunt Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","745","3729","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","4","0","0","0","0","0","0","0","0","0" +"3753","-1","","","","","Shepherd's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1635","8178","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3754","-1","","","","","Shepherd's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1492","7461","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3755","-1","","","","","Fish Gutter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5447","27236","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","32","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","0" +"3756","-1","","","","","Monster - Item, Bottle - Black Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3757","-1","","","","","Monster - Item, Bottle - Green Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3758","-1","","","","","Crusader Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1817","9086","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3759","-1","","","","","Insulated Sage Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1216","6080","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3760","-1","","","","","Band of the Undercity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","5","0","0","0","0","0","0","0","0","0" +"3761","-1","","","","","Deadskull Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16533","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","7","0","0","0","0","0","0","0","0","0" +"3762","-1","","","","","Librarian's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3763","-1","","","","","Lunar Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6761","33805","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","8","0","0","0","0","0","0","0","0","0" +"3764","-1","","","","","Mantis Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3181","15905","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","7","2","0","0","0","0","0","0","0","0" +"3765","-1","","","","","Brigand's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4811","24057","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"3766","-1","","","","","Gryphon Feather Quill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3767","-1","","","","","Fine Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3768","-1","","","","","Deprecated Anti-magic Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3769","-1","","","","","Broken Wand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3770","-1","","","","","Mutton Chop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3771","-1","","","","","Wild Hog Shank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3772","-1","","","","","Conjured Spring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3773","-1","","","","","Deprecated Murkwood Sap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","126","504","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3774","-1","","","","","Monster - Dynamite, Unlit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3775","-1","","","","","Crippling Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","52","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3776","-1","","","","","Crippling Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"3777","-1","","","","","Lethargy Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3778","-1","","","","","Taut Compound Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1541","7705","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","31","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","26" +"3779","-1","","","","","Hefty War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2835","14175","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3780","-1","","","","","Long-barreled Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1877","9388","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","33","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","28" +"3781","-1","","","","","Broad Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3125","15628","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","34","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3782","-1","","","","","Large War Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3451","17257","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","35","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3783","-1","","","","","Light Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3048","15244","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3784","-1","","","","","Metal Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4208","21042","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","37","-1","0","0","38","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3785","-1","","","","","Keen Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3650","18250","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","38","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3786","-1","","","","","Shiny Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3957","19785","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","39","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3787","-1","","","","","Stone Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4289","21448","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","40","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","35" +"3788","-1","","","","","Soul Crystal Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3789","-1","","","","","Relic Stone of Piety","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3790","-1","","","","","Consecrated Relic Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3791","-1","","","","","Relic of the Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3792","-1","","","","","Interlaced Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","521","2606","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3793","-1","","","","","Interlaced Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3243","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3794","-1","","","","","Interlaced Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","774","3874","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3795","-1","","","","","Interlaced Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","981","4909","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3796","-1","","","","","Interlaced Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","493","2467","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3797","-1","","","","","Interlaced Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1692","8460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3798","-1","","","","","Interlaced Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","902","4510","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3799","-1","","","","","Interlaced Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1460","7304","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3800","-1","","","","","Hardened Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1068","5343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3801","-1","","","","","Hardened Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5156","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3802","-1","","","","","Hardened Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","627","3136","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3803","-1","","","","","Hardened Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1086","5432","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3804","-1","","","","","Hardened Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","765","3825","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3805","-1","","","","","Hardened Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5245","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3806","-1","","","","","Hardened Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1271","6359","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3807","-1","","","","","Hardened Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1162","5813","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3808","-1","","","","","Double Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","770","3851","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3809","-1","","","","","Double Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4813","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3810","-1","","","","","Double Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1145","5728","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3811","-1","","","","","Double-stitched Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","5323","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3812","-1","","","","","Double Mail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4856","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3813","-1","","","","","Double Mail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1772","8862","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3814","-1","","","","","Double Mail Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1891","9457","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3815","-1","","","","","Double Mail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1475","7377","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3816","-1","","","","","Reflective Heater","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2102","10511","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3817","-1","","","","","Reinforced Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1585","7925","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3818","-1","","","","","Fadeleaf","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3819","-1","","","","","Wintersbite","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3820","-1","","","","","Stranglekelp","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3821","-1","","","","","Goldthorn","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3822","-1","","","","","Runic Darkblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6481","32405","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3823","-1","","","","","Lesser Invisibility Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"3824","-1","","","","","Shadow Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3825","-1","","","","","Elixir of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3826","-1","","","","","Mighty Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","105","420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3827","-1","","","","","Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3828","-1","","","","","Elixir of Detect Lesser Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"3829","-1","","","","","Frost Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3830","-1","","","","","Recipe: Elixir of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","171","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3831","-1","","","","","Recipe: Mighty Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","171","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3832","-1","","","","","Recipe: Elixir of Detect Lesser Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","171","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3833","-1","","","","","Adept's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3834","-1","","","","","Sturdy Cloth Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3835","-1","","","","","Green Iron Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1106","5532","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3836","-1","","","","","Green Iron Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3053","15268","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","5","0","0","0","0","0","0","0","0","29" +"3837","-1","","","","","Golden Scale Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4405","22027","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"3838","-1","","","","","Shadowmaw Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3839","-1","","","","","Pristine Tigress Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3840","-1","","","","","Green Iron Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2571","12855","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","4","0","0","0","0","0","0","0","0","27" +"3841","-1","","","","","Golden Scale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3106","15534","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","30" +"3842","-1","","","","","Green Iron Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2906","14531","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","8","0","0","0","0","0","0","0","0","26" +"3843","-1","","","","","Golden Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3882","19413","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","5","0","0","0","0","0","0","0","0","29" +"3844","-1","","","","","Green Iron Hauberk","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5658","28293","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","7","0","0","0","0","0","0","0","0","31" +"3845","-1","","","","","Golden Scale Cuirass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6558","32794","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","6","0","0","0","0","0","0","0","0","35" +"3846","-1","","","","","Polished Steel Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19685","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","32" +"3847","-1","","","","","Golden Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4977","24887","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","35" +"3848","-1","","","","","Big Bronze Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7130","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","20","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","15" +"3849","-1","","","","","Hardened Iron Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","32","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","27" +"3850","-1","","","","","Jade Serpentblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7304","36523","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","35","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","4","0","0","0","0","0","0","0","0","30" +"3851","-1","","","","","Solid Iron Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6258","31294","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","31","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","0","0","0","0","0","0","0","0","0","26" +"3852","-1","","","","","Golden Iron Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8360","41804","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2750","0","0","0","34","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","4","0","0","0","0","0","0","0","0","29" +"3853","-1","","","","","Moonsteel Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10153","50768","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","36","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","12","0","0","0","0","0","0","0","0","31" +"3854","-1","","","","","Frost Tiger Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14120","70603","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","-1","0","0","78","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","35" +"3855","-1","","","","","Massive Iron Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11248","56243","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","37","-1","0","0","71","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","7","0","0","0","0","0","0","0","0","32" +"3856","-1","","","","","Shadow Crescent Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14221","71106","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","40","-1","0","0","58","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","10","0","0","0","0","0","0","0","0","35" +"3857","-1","","","","","Coal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3858","-1","","","","","Mithril Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3859","-1","","","","","Steel Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3860","-1","","","","","Mithril Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3861","-1","","","","","Blacksteel Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3862","-1","","","","","Aged Gorilla Sinew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3863","-1","","","","","Jungle Stalker Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3864","-1","","","","","Citrine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3865","-1","","","","","Test Offhand Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3866","-1","","","","","Plans: Jade Serpentblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3867","-1","","","","","Plans: Golden Iron Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","164","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3868","-1","","","","","Plans: Frost Tiger Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3869","-1","","","","","Plans: Shadow Crescent Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3870","-1","","","","","Plans: Green Iron Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3871","-1","","","","","Plans: Golden Scale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"3872","-1","","","","","Plans: Golden Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","800","3200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","164","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3873","-1","","","","","Plans: Golden Scale Cuirass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","164","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3874","-1","","","","","Plans: Polished Steel Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3875","-1","","","","","Plans: Golden Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"3876","-1","","","","","Fang of Bhag'thera","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3877","-1","","","","","Talon of Tethis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3878","-1","","","","","Deprecated Conjured Mana Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"3879","-1","","","","","Paw of Sin'Dall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3880","-1","","","","","Head of Bangalash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3881","-1","","","","","Deprecated Kurzen's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3882","-1","","","","","Buzzard Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3883","-1","","","","","Deprecated Thick Cloth Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1665","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3884","-1","","","","","Deprecated Cured Leather Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2090","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3885","-1","","","","","Deprecated Scalemail Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","503","2517","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3886","-1","","","","","Deprecated Padded Cloth Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","604","3020","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3887","-1","","","","","Deprecated Cuirboulli Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","757","3789","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3888","-1","","","","","Deprecated Polished Scale Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","913","4565","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3889","-1","","","","","Russet Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1584","7922","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3890","-1","","","","","Studded Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2040","10201","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3891","-1","","","","","Augmented Chain Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2456","12284","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3892","-1","","","","","Embroidered Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4388","21940","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3893","-1","","","","","Reinforced Leather Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5504","27523","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3894","-1","","","","","Brigandine Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5997","29986","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3895","-1","","","","","TEST Legendary","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10287","51437","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","30","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","0","0","0","0","0","0","0","0","0","0","25" +"3897","-1","","","","","Dizzy's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3898","-1","","","","","Library Scrip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3899","-1","Stone of the Tides","","","","Legends of the Gurubashi, Volume 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3900","-1","","","","","Pupellyverbos Port","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3901","-1","","","","","Bloodscalp Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3902","-1","","","","","Staff of Nobles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1317","6588","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","18","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","13" +"3904","-1","","","","","Gan'zulah's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3905","-1","","","","","Nezzliok's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3906","-1","","","","","Balia'mah Trophy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3907","-1","","","","","Ziata'jai Trophy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3908","-1","","","","","Zul'Mamwe Trophy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3909","-1","","","","","Broken Armor of Ana'thek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3910","-1","","","","","Snuff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3911","-1","","","","","Pulsing Blue Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3912","-1","","","","","Soul Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3913","-1","A glowing gem filled with the soul of Yenniku.","","","","Filled Soul Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3914","-1","","","","","Journeyman's Backpack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3915","-1","","","","","Bloody Bone Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3916","-1","","","","","Split Bone Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3917","-1","","","","","Singing Blue Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3918","-1","","","","","Singing Crystal Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3919","-1","","","","","Mistvale Giblets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3920","-1","","","","","Bloodsail Charts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3921","-1","","","","","Bloodsail Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3922","-1","","","","","Shaky's Payment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3923","-1","","","","","Water Elemental Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3924","-1","It jingles when shaken.","","","","Maury's Clubbed Foot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3925","-1","","","","","Jon-Jon's Golden Spyglass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3926","-1","","","","","Chucky's Huge Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3927","-1","","","","","Fine Aged Cheddar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3928","-1","","","","","Superior Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3929","-1","","","","","Maury's Loot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3930","-1","","","","","Maury's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3931","-1","","","","","Poisoned Spider Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3932","-1","","","","","Smotts' Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3933","-1","","","","","Deprecated Moon Glaive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2670","13353","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","23","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","6","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","18" +"3934","-1","","","","","Deprecated Warden Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2739","13699","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","24","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","19" +"3935","-1","","","","","Smotts' Cutlass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","25","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3936","-1","","","","","Crochet Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","985","4926","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3937","-1","","","","","Crochet Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2018","10092","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","41" +"3938","-1","","","","","Crochet Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1189","5949","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","39" +"3939","-1","","","","","Crochet Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2256","11283","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","42" +"3940","-1","","","","","Crochet Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1630","8154","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3941","-1","","","","","Crochet Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2598","12993","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","40" +"3942","-1","","","","","Crochet Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2636","13183","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","44" +"3943","-1","","","","","Crochet Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2244","11221","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","38" +"3944","-1","","","","","Twill Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2277","11389","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3945","-1","","","","","Twill Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3852","19263","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3946","-1","","","","","Twill Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2431","12159","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","49" +"3947","-1","","","","","Twill Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3258","16292","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3948","-1","","","","","Twill Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3092","15463","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3949","-1","","","","","Twill Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6517","32586","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3950","-1","","","","","Twill Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4157","20789","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3951","-1","","","","","Twill Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5897","29487","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3952","-1","","","","","Mesh Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5109","25547","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3953","-1","","","","","Mesh Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6327","31635","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","59" +"3954","-1","","","","","Mesh Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4133","20665","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3955","-1","","","","","Mesh Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5375","26879","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","57" +"3956","-1","","","","","Mesh Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3776","18884","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","58" +"3957","-1","","","","","Mesh Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9216","46082","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","62" +"3958","-1","","","","","Mesh Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7649","38247","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","64" +"3959","-1","","","","","Mesh Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8843","44216","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"3960","-1","","","","","Bag of Water Elemental Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3961","-1","","","","","Thick Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1503","7518","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","39" +"3962","-1","","","","","Thick Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3079","15399","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3963","-1","","","","","Thick Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1402","7012","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","38" +"3964","-1","","","","","Thick Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2127","10638","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","41" +"3965","-1","","","","","Thick Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11105","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","44" +"3966","-1","","","","","Thick Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2625","13128","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3967","-1","","","","","Thick Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2903","14519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","42" +"3968","-1","","","","","Thick Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3331","16656","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","40" +"3969","-1","","","","","Smooth Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3256","16283","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3970","-1","","","","","Smooth Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4296","21481","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","49" +"3971","-1","","","","","Smooth Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3811","19057","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3972","-1","","","","","Smooth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3891","19456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3973","-1","","","","","Smooth Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3657","18286","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3974","-1","","","","","Smooth Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3975","-1","","","","","Smooth Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3896","19482","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3976","-1","","","","","Smooth Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6978","34894","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3977","-1","","","","","Strapped Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4738","23692","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","58" +"3978","-1","","","","","Strapped Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9560","47803","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","64" +"3979","-1","","","","","Strapped Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5802","29011","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","62" +"3980","-1","","","","","Strapped Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6844","34223","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","57" +"3981","-1","","","","","Strapped Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6137","30688","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3982","-1","","","","","Strapped Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11175","55876","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"3983","-1","","","","","Strapped Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8010","40054","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3984","-1","","","","","Strapped Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10209","51049","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","59" +"3985","-1","","","","","Monogrammed Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","8552","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","10","0","0","0","0","0","0","0","0","35" +"3986","-1","","","","","Protective Pavise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5332","26664","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3987","-1","","","","","Deflecting Tower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6837","34185","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","1442","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3988","-1","","","","","Plate Wall Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12924","64622","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","1742","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3989","-1","","","","","Blocking Targe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3154","15772","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1015","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3990","-1","","","","","Crested Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8237","41186","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1517","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3991","-1","","","","","Plated Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15134","75670","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","1817","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3992","-1","","","","","Laminated Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3082","15410","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3993","-1","","","","","Laminated Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4940","24704","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3994","-1","","","","","Laminated Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4404","22023","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3995","-1","","","","","Laminated Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6284","31422","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3996","-1","","","","","Laminated Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4659","23299","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3997","-1","","","","","Laminated Scale Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7929","39648","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3998","-1","","","","","Laminated Scale Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5656","28280","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3999","-1","","","","","Laminated Scale Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7109","35547","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","264","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","49" +"4000","-1","","","","","Overlinked Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1797","8986","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","39" +"4001","-1","","","","","Overlinked Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3170","15852","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4002","-1","","","","","Overlinked Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","12315","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","43" +"4003","-1","","","","","Overlinked Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4090","20451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","44" +"4004","-1","","","","","Overlinked Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11788","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","42" +"4005","-1","","","","","Overlinked Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3477","17389","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","38" +"4006","-1","","","","","Overlinked Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2434","12172","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","37" +"4007","-1","","","","","Overlinked Chain Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3696","18480","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","40" +"4008","-1","","","","","Sterling Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5494","27472","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","58" +"4009","-1","","","","","Sterling Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9161","45806","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","60" +"4010","-1","","","","","Sterling Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6409","32045","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"4011","-1","","","","","Sterling Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10687","53436","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","63" +"4012","-1","","","","","Sterling Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6781","33907","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","62" +"4013","-1","","","","","Sterling Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11759","58798","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","59" +"4014","-1","","","","","Sterling Chain Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11349","56747","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","64" +"4015","-1","","","","","Sterling Chain Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10747","53737","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","57" +"4016","-1","","","","","Zanzil's Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4017","-1","","","","","Sharp Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6910","34550","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4018","-1","","","","","Whetted Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6372","31863","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","42","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","37" +"4019","-1","","","","","Heavy Flint Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8336","41683","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","0","27","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","43" +"4020","-1","","","","","Splintering Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11189","55948","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","49","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","44" +"4021","-1","","","","","Blunting Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7198","35991","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","46","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4022","-1","","","","","Crushing Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12059","60297","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","50","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","45" +"4023","-1","","","","","Fine Pointed Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6215","31079","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","44","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","39" +"4024","-1","","","","","Heavy War Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9821","49109","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","47","-1","0","0","59","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","42" +"4025","-1","","","","","Balanced Long Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5070","25351","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","40" +"4026","-1","","","","","Sentinel Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4362","21812","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","43","-1","0","0","22","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","38" +"4027","-1","","","","","Catelyn's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4028","-1","To: Privateer Groy","","","","Bundle of Akiris Reeds","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4029","-1","","","","","Akiris Reed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4030","-1","","","","","Holy Relic Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4000","16000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4031","-1","","","","","Hallowed Relic Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4000","16000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4032","-1","","","","","Radiant Relic Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","45" +"4033","-1","","","","","Dawn's Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","45" +"4034","-1","","","","","Stone of the Tides","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4035","-1","","","","","Silver-thread Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1988","9944","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","4","0","0","0","0","0","0","0","0","26" +"4036","-1","","","","","Silver-thread Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","681","3408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","22" +"4037","-1","","","","","Silver-thread Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1821","9106","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","4","4","0","0","0","0","0","0","0","25" +"4038","-1","","","","","Nightsky Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3562","17810","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","8","8","0","0","0","0","0","0","0","32" +"4039","-1","","","","","Nightsky Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2215","11078","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","5","0","0","0","0","0","0","0","0","30" +"4040","-1","","","","","Nightsky Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1347","6738","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4041","-1","","","","","Aurora Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3149","15749","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","34" +"4042","-1","","","","","Aurora Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10536","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","8","0","0","0","0","0","0","0","0","34" +"4043","-1","","","","","Aurora Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1958","9790","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","2","0","0","0","0","0","0","0","0","33" +"4044","-1","","","","","Aurora Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4584","22921","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4045","-1","","","","","Mistscape Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13415","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","37" +"4046","-1","","","","","Mistscape Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6783","33919","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","40" +"4047","-1","","","","","Mistscape Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3959","19799","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","4","2","0","0","0","0","0","0","0","38" +"4048","-1","","","","","Emblazoned Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","26" +"4049","-1","","","","","Emblazoned Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","888","4443","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","23" +"4050","-1","","","","","Emblazoned Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2374","11874","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","26" +"4051","-1","","","","","Emblazoned Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1669","8349","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","25" +"4052","-1","","","","","Insignia Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2699","13498","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","11","0","0","0","0","0","0","0","0","30" +"4053","-1","","","","","Large River Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4054","-1","","","","","Insignia Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3625","18129","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","30" +"4055","-1","","","","","Insignia Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2481","12406","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","4","0","0","0","0","0","0","0","0","29" +"4056","-1","","","","","Cortello's Riddle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4057","-1","","","","","Insignia Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4032","20163","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","13","0","0","0","0","0","0","0","0","31" +"4058","-1","","","","","Glyphed Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6056","30283","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"4059","-1","","","","","Glyphed Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2233","11169","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","6","0","0","0","0","0","0","0","0","32" +"4060","-1","","","","","Glyphed Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5648","28244","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4061","-1","","","","","Imperial Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16531","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","8","0","0","0","0","0","0","0","0","37" +"4062","-1","","","","","Imperial Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8359","41795","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","40" +"4063","-1","","","","","Imperial Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3596","17980","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","38" +"4064","-1","","","","","Emblazoned Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2987","14938","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","2","0","0","0","0","0","0","0","0","25" +"4065","-1","","","","","Combat Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5311","26558","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","2","0","0","0","0","0","0","0","0","31" +"4066","-1","","","","","Insignia Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4845","24227","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","3","0","0","0","0","0","0","0","0","30" +"4067","-1","","","","","Glyphed Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6381","31909","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","4","0","0","0","0","0","0","0","0","34" +"4068","-1","","","","","Chief Brigadier Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6918","34592","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","0","0","0","0","0","0","0","0","0","35" +"4069","-1","","","","","Blackforge Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11900","59503","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","1465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","10","3","0","0","0","0","0","0","0","0","42" +"4070","-1","","","","","Jouster's Crest","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7527","37638","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","0","0","0","0","0","0","0","0","0","36" +"4071","-1","","","","","Glimmering Mail Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2939","14695","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","3","0","0","0","0","0","0","0","0","26" +"4072","-1","","","","","Glimmering Mail Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1340","6704","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","3","0","0","0","0","0","0","0","0","25" +"4073","-1","","","","","Glimmering Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2230","11151","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","6","0","0","0","0","0","0","0","0","26" +"4074","-1","","","","","Mail Combat Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4785","23928","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","3","0","0","0","0","0","0","0","0","31" +"4075","-1","","","","","Mail Combat Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1984","9924","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","4","0","0","0","0","0","0","0","0","29" +"4076","-1","","","","","Mail Combat Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3301","16508","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","9","0","0","0","0","0","0","0","0","30" +"4077","-1","","","","","Mail Combat Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3298","16494","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","30" +"4078","-1","","","","","Chief Brigadier Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4672","23364","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","34" +"4079","-1","","","","","Chief Brigadier Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6753","33766","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4080","-1","","","","","Blackforge Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7469","37346","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","7","7","0","0","0","0","0","0","0","40" +"4082","-1","","","","","Blackforge Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11699","58495","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","11","0","0","0","0","0","0","0","0","42" +"4083","-1","","","","","Blackforge Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4328","21644","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","39" +"4084","-1","","","","","Blackforge Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10136","50681","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"4085","-1","A cooking pot covered with gauges and dials.","","","","Krazek's Crock Pot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4086","-1","","","","","Flash Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6386","31934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","37","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4087","-1","","","","","Trueshot Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8722","43611","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","41","-1","0","5851","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","36" +"4088","-1","","","","","Dreadblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18523","92615","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","47","-1","0","5270","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","42" +"4089","-1","","","","","Ricochet Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15060","75302","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","5853","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","43" +"4090","-1","","","","","Mug O' Hurt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20736","103683","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","46","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","41" +"4091","-1","","","","","Widowmaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22479","112398","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","47","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","7","0","0","0","0","0","0","0","0","42" +"4092","-1","","","","","Prismatic Basilisk Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1296","5185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4093","-1","","","","","Large Basilisk Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","713","2855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4094","-1","","","","","Tablet Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4095","-1","","","","","Deprecate Snare Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","617","2470","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4096","-1","","","","","Coarse Gorilla Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","608","2435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4097","-1","","","","","Chipped Gorilla Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","305","1220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4098","-1","","","","","Carefully Folded Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"4099","-1","","","","","Tuft of Gorilla Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1131","4525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4100","-1","","","","","Crumpled Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4101","-1","","","","","Ripped Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","26","105","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4102","-1","","","","","Torn Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4103","-1","","","","","Shackle Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4104","-1","","","","","Snapjaw Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4105","-1","","","","","Elder Crocolisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4106","-1","","","","","Tumbled Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4107","-1","","","","","Tiger Hunter Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10682","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4108","-1","","","","","Panther Hunter Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5403","27017","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","0" +"4109","-1","","","","","Excelsior Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4393","21966","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","9","0","0","0","0","0","0","0","0","0" +"4110","-1","","","","","Master Hunter's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11999","59995","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","45","-1","0","0","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"4111","-1","","","","","Master Hunter's Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12042","60214","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","45","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4112","-1","","","","","Choker of the High Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4182","16730","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","8","0","0","0","0","0","0","0","0","0" +"4113","-1","","","","","Medicine Blanket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4853","24265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","0","0","0","0","0","0","0","0","0" +"4114","-1","","","","","Darktide Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5826","29130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","6","0","0","0","0","0","0","0","0","0" +"4115","-1","","","","","Grom'gol Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5783","28915","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","3","7","0","0","0","0","0","0","0","0" +"4116","-1","","","","","Olmann Sewar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12337","61686","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","41","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4117","-1","","","","","Scorching Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3119","15596","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","0","0","0","0","0","0","0","0","0","0" +"4118","-1","","","","","Poobah's Nose Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7313","36567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","0","0","0","0","0","0","0","0","0","0" +"4119","-1","","","","","Raptor Hunter Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7271","36357","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","16","3","0","0","0","0","0","0","0","0" +"4120","-1","","","","","Robe of Crystal Waters","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4192","20963","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","9","10","0","0","0","0","0","0","0","0" +"4121","-1","","","","","Gemmed Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1380","6902","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","5","6","0","0","0","0","0","0","0","0" +"4122","-1","","","","","Bookmaker's Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8384","41922","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","0","0","0","0","0","0","0","0","0","0" +"4123","-1","","","","","Frost Metal Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3804","19022","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","0","0","0","0","0","0","0","0","0","0" +"4124","-1","","","","","Cap of Harmony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3991","19956","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","11","0","0","0","0","0","0","0","0","0" +"4125","-1","","","","","Tranquil Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3142","12570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","8","0","0","0","0","0","0","0","0","0" +"4126","-1","","","","","Guerrilla Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6396","31980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","3","0","0","0","0","0","0","0","0","0" +"4127","-1","","","","","Shrapnel Blaster","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8073","40368","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","40","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4128","-1","","","","","Silver Spade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14587","72939","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","41","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","15","0","0","0","0","0","0","0","0","0" +"4129","-1","","","","","Collection Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9444","47221","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","9","0","0","0","0","0","0","0","0","0" +"4130","-1","","","","","Smotts' Compass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2171","8685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4131","-1","","","","","Belt of Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3815","19079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","0" +"4132","-1","","","","","Darkspear Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2681","13408","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","2","0","0","0","0","0","0","0","0","0" +"4133","-1","","","","","Darkspear Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1794","8970","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"4134","-1","","","","","Nimboya's Mystical Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22495","112477","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","46","-1","0","0","65","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","15","0","0","0","0","0","0","0","0","0" +"4135","-1","","","","","Bloodbone Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","2","0","0","0","0","0","0","0","0","0" +"4136","-1","","","","","Darkspear Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6021","30109","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","8","0","0","0","0","0","0","0","0","0" +"4137","-1","","","","","Darkspear Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4010","20053","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","3","0","0","0","0","0","0","0","0" +"4138","-1","","","","","Blackwater Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10140","50704","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","0","0","0","0","0","0","0","0","0" +"4139","-1","","","","","Junglewalker Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2749","13745","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","2","5","0","0","0","0","0","0","0","0" +"4140","-1","","","","","Palm Frond Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","9375","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","0" +"4141","-1","","","","","Tome of Conjure Food","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4142","-1","","","","","Tome of Polymorph: Pig","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"4143","-1","","","","","Tome of Conjure Food II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4144","-1","","","","","Tome of Polymorph: Cow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"4145","-1","","","","","Tome of Conjure Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4146","-1","","","","","Tome of Polymorph: Sheep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4147","-1","","","","","Tome of Conjure Food III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4148","-1","","","","","Tome of Counterspell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4149","-1","","","","","Tome of Frost Shield III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4150","-1","","","","","Tome of Conjure Water IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4151","-1","","","","","Tome of Frostbolt IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4152","-1","","","","","Tome of Conjure Food IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4153","-1","","","","","Tome of Arcane Missiles III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4154","-1","","","","","Tome of Slow II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4155","-1","","","","","Tome of Water Elemental II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4156","-1","","","","","Deprecated Tome of Conjure Mana Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3925","15700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"4157","-1","","","","","Tome of Dampen Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4158","-1","","","","","Tome of Khadgar's Unlocking III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"4159","-1","","","","","Tome of Arcane Missiles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4160","-1","","","","","Tome of Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4161","-1","","","","","Tome of Fireball IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"4162","-1","","","","","Tome of Blink II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4163","-1","","","","","Deprecated Libram: Seal of Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4164","-1","","","","","Libram: Holy Light V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4165","-1","","","","","Libram: Holy Light VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4166","-1","","","","","Libram: Seal of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4167","-1","","","","","Libram: Judgement","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4168","-1","","","","","Tablet of Ensnaring Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4169","-1","","","","","Tablet of Unyielding Will II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4170","-1","","","","","Tablet of Astral Recall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4171","-1","","","","","Tablet of Agitating Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4172","-1","","","","","Tablet of Thunderclap II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4173","-1","","","","","Tablet of Shock IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4174","-1","","","","","Tablet of Shock V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4175","-1","","","","","Tablet of Lightning Shield IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4176","-1","","","","","Tablet of Undying Strength II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4177","-1","","","","","Tablet of Nature Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4178","-1","","","","","Tablet of Lightning Bolt V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4179","-1","","","","","Tablet of Restoration V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4180","-1","","","","","Tablet of Ethereal Form II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4181","-1","","","","","Tablet of Agitating Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4182","-1","","","","","Tablet of Unyielding Will III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4183","-1","","","","","Tablet of Healing Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4184","-1","","","","","Tablet of Molten Blast V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4185","-1","","","","","Tablet of Group Astral Recall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4186","-1","","","","","Tablet of Fire Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4187","-1","","","","","Tablet of Serpent Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4188","-1","","","","","Tablet of Invisibility Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4189","-1","","","","","Tablet of Chain Lightning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4190","-1","","","","","Feathered Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1025","5129","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4191","-1","","","","","Unused Feathered Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1029","5148","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4192","-1","","","","","Unused Feathered Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","516","2583","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4193","-1","","","","","Deprecated Feathered Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","777","3888","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4194","-1","","","","","Feathered Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","520","2601","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4195","-1","","","","","Feathered Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","727","3636","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4196","-1","","","","","Feathered Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1944","9720","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","25" +"4197","-1","","","","","Berylline Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2765","13828","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","5","10","0","0","0","0","0","0","0","0" +"4198","-1","","","","","Grimoire of Soul Funnel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4199","-1","","","","","Grimoire of Soul Funnel II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4200","-1","","","","","Grimoire of Immolate III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4201","-1","","","","","Grimoire of Eye of Kilrogg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4202","-1","","","","","Grimoire of Fear II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4203","-1","","","","","Grimoire of Pestilence II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"4204","-1","","","","","Grimoire of Soul Funnel III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4205","-1","","","","","Grimoire of Immolate IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4206","-1","","","","","Grimoire of Curse of Sargeras II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4207","-1","","","","","Grimoire of Curse of Archimonde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4208","-1","","","","","Grimoire of Mind Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4209","-1","","","","","Grimoire of Shadow Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4210","-1","","","","","Grimoire of Create Lesser Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"4211","-1","","","","","Grimoire of Pestilence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"4212","-1","","","","","Grimoire of Curse of Mannoroth III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4213","-1","","","","","Grimoire of Doom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"4214","-1","","","","","Grimoire of Life Drain III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4215","-1","","","","","Grimoire of Rain of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4216","-1","","","","","Grimoire of Holy Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4217","-1","","","","","Grimoire of Soul Funnel IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4218","-1","","","","","Grimoire of Create Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"4219","-1","","","","","Grimoire of Burning Spirit IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4220","-1","","","","","Grimoire of Blood Boil III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4221","-1","","","","","Grimoire of Detect Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4222","-1","","","","","Deprecated Book of Rejuvenation V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4223","-1","","","","","Book of Abolish Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4224","-1","","","","","Deprecated Book of Nullify Disease III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3300","13200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4225","-1","","","","","Book of Entangling Roots III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4226","-1","","","","","Book of Wrath VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4227","-1","","","","","Deprecated Book of Nullify Poison III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4228","-1","","","","","Book of Moonfire IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4229","-1","","","","","Deprecated Book of Rejuvenation VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4230","-1","","","","","Book of Healing Touch VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4231","-1","","","","","Cured Light Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4232","-1","","","","","Medium Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4233","-1","","","","","Cured Medium Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4234","-1","","","","","Heavy Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4235","-1","","","","","Heavy Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4236","-1","","","","","Cured Heavy Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4237","-1","","","","","Handstitched Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","174","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4238","-1","","","","","Linen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4239","-1","","","","","Embossed Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","357","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4240","-1","","","","","Woolen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4241","-1","","","","","Green Woolen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4242","-1","","","","","Embossed Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1739","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","3","0","0","0","0","0","0","0","0","10" +"4243","-1","","","","","Fine Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","461","2308","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","12" +"4244","-1","","","","","Hillman's Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","723","3618","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","4","0","0","0","0","0","0","0","0","15" +"4245","-1","","","","","Small Silk Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4246","-1","","","","","Fine Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","625","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","11" +"4247","-1","","","","","Hillman's Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5248","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"4248","-1","","","","","Dark Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","791","3958","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"4249","-1","","","","","Dark Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3515","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4250","-1","","","","","Hillman's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3527","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4251","-1","","","","","Hillman's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1199","5999","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4252","-1","","","","","Dark Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1457","7286","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","23" +"4253","-1","","","","","Toughened Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4810","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","6","3","0","0","0","0","0","0","0","22" +"4254","-1","","","","","Barbaric Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1071","5356","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","4","4","0","0","0","0","0","0","0","25" +"4255","-1","","","","","Green Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2366","11830","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","0","0","0","0","0","0","0","0","26" +"4256","-1","","","","","Guardian Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3477","17387","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","9","0","0","0","0","0","0","0","0","30" +"4257","-1","","","","","Green Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1311","6556","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","27" +"4258","-1","","","","","Guardian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1592","7963","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4259","-1","","","","","Green Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1934","9672","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","31" +"4260","-1","","","","","Guardian Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2559","12796","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","6","0","0","0","0","0","0","0","0","34" +"4261","-1","","","","","Solliden's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","159","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4262","-1","","","","","Gem-studded Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2652","13261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","6","0","0","0","0","0","0","0","0","32" +"4263","-1","","","","","Standard Issue Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","470","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4264","-1","","","","","Barbaric Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2804","14022","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","0","0","0","0","0","0","0","0","0","35" +"4265","-1","","","","","Heavy Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4266","-1","","","","","Codex of Inner Fire II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4267","-1","","","","","Codex of Shadow Word: Fumble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4268","-1","","","","","Codex of Heal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4269","-1","","","","","Codex of Prayer of Healing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4270","-1","","","","","Codex of Heal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4271","-1","","","","","Codex of Holy Smite V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4272","-1","","","","","Codex of Holy Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4273","-1","","","","","Codex of Heal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4274","-1","","","","","Codex of Divine Escape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4275","-1","","","","","Codex of Mind Rot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4276","-1","","","","","Codex of Shadow Word: Fumble II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4277","-1","","","","","Codex of Shadow Word: Befuddle II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4278","-1","","","","","Lesser Bloodstone Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4279","-1","","","","","Codex of Shadow Word: Pain V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4280","-1","","","","","Codex of Holy Word: Shield IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4281","-1","","","","","Codex of Shadow Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4282","-1","","","","","Codex of Dispel Magic II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4283","-1","","","","","Codex of Sleep III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4284","-1","","","","","Codex of Holy Smite VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4285","-1","","","","","Codex of Holy Word: Fortitude IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4286","-1","","","","","Codex of Prayer of Healing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4287","-1","","","","","Codex of Nullify Disease II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4288","-1","","","","","Codex of Remove Curse II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4289","-1","","","","","Salt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4290","-1","","","","","Dust Bowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","715","3576","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","13" +"4291","-1","","","","","Silken Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4292","-1","","","","","Pattern: Green Woolen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","197","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4293","-1","","","","","Pattern: Hillman's Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4294","-1","","","","","Pattern: Hillman's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4295","-1","","","","","Pattern: Double-stitched Leather Gloves OLD","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","165","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4296","-1","","","","","Pattern: Dark Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","165","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4297","-1","","","","","Pattern: Barbaric Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","165","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4298","-1","","","","","Pattern: Guardian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4299","-1","","","","","Pattern: Guardian Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","165","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4300","-1","","","","","Pattern: Guardian Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","165","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4301","-1","","","","","Pattern: Barbaric Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4302","-1","","","","","Small Green Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4303","-1","","","","","Cranial Thumper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","398","1991","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","12","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","7" +"4304","-1","","","","","Thick Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4305","-1","","","","","Bolt of Silk Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4306","-1","","","","","Silk Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4307","-1","","","","","Heavy Linen Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","149","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4308","-1","","","","","Green Linen Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4309","-1","","","","","Handstitched Linen Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","226","1133","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","9" +"4310","-1","","","","","Heavy Woolen Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","902","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","12" +"4311","-1","","","","","Heavy Woolen Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","475","2378","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","16" +"4312","-1","","","","","Soft-soled Linen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","237","1186","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","11" +"4313","-1","","","","","Red Woolen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","416","2083","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4314","-1","","","","","Double-stitched Woolen Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1659","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"4315","-1","","","","","Reinforced Woolen Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2126","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"4316","-1","","","","","Heavy Woolen Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3715","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","3","0","0","0","0","0","0","0","0","17" +"4317","-1","","","","","Phoenix Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1076","5382","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","0","0","0","0","0","0","0","0","0","20" +"4318","-1","","","","","Gloves of Meditation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","610","3052","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","0","0","0","0","0","0","0","0","0","21" +"4319","-1","","","","","Azure Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","815","4076","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","24" +"4320","-1","","","","","Spidersilk Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4897","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","7","4","4","0","0","0","0","0","0","0","20" +"4321","-1","","","","","Spider Silk Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5600","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","23" +"4322","-1","","","","","Enchanter's Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1810","9053","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","6","0","0","0","0","0","0","0","0","28" +"4323","-1","","","","","Shadow Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1999","9995","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","0","0","0","0","0","0","0","0","0","29" +"4324","-1","","","","","Azure Silk Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1874","9373","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","0","0","0","0","0","0","0","0","0","25" +"4325","-1","","","","","Boots of the Enchanter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2272","11362","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","5","0","0","0","0","0","0","0","0","30" +"4326","-1","","","","","Long Silken Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2496","12482","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","32" +"4327","-1","","","","","Icy Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3788","18941","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","11","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","35" +"4328","-1","","","","","Spider Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1524","7623","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","31" +"4329","-1","","","","","Star Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2120","10603","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","0","0","0","0","0","0","0","0","0","35" +"4330","-1","","","","","Stylish Red Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4331","-1","","","","","Phoenix Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2630","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4332","-1","","","","","Bright Yellow Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4333","-1","","","","","Dark Silk Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1200","4800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4334","-1","","","","","Formal White Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4335","-1","","","","","Rich Purple Silk Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4336","-1","","","","","Black Swashbuckler's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4337","-1","","","","","Thick Spider's Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4338","-1","","","","","Mageweave Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4339","-1","","","","","Bolt of Mageweave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4340","-1","","","","","Gray Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4341","-1","","","","","Yellow Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4342","-1","","","","","Purple Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4343","-1","","","","","Brown Linen Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","301","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4344","-1","","","","","Brown Linen Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4345","-1","","","","","Pattern: Red Woolen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","197","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4346","-1","","","","","Pattern: Heavy Woolen Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","197","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4347","-1","","","","","Pattern: Reinforced Woolen Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4348","-1","","","","","Pattern: Phoenix Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","197","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4349","-1","","","","","Pattern: Phoenix Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","197","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4350","-1","","","","","Pattern: Spider Silk Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","197","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4351","-1","","","","","Pattern: Shadow Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","197","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4352","-1","","","","","Pattern: Boots of the Enchanter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4353","-1","","","","","Pattern: Spider Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","197","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4354","-1","","","","","Pattern: Rich Purple Silk Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","197","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4355","-1","","","","","Pattern: Icy Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4356","-1","","","","","Pattern: Star Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4357","-1","","","","","Rough Blasting Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4358","-1","","","","","Rough Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","202","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4359","-1","","","","","Handful of Copper Bolts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4360","-1","","","","","Rough Copper Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","202","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4361","-1","","","","","Copper Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4362","-1","","","","","Rough Boomstick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","10","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","5" +"4363","-1","","","","","Copper Modulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4364","-1","","","","","Coarse Blasting Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4365","-1","","","","","Coarse Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4366","-1","","","","","Target Dummy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","202","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4367","-1","","","","","Small Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4368","-1","","","","","Flying Tiger Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2043","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","4","4","0","0","0","0","0","0","0","0","0" +"4369","-1","","","","","Deadly Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1179","5899","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","16" +"4370","-1","","","","","Large Copper Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","202","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4371","-1","","","","","Bronze Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4372","-1","","","","","Lovingly Crafted Boomstick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1800","9000","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","24","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","19" +"4373","-1","","","","","Shadow Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3613","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","5","0","0","0","0","0","0","0","0","0" +"4374","-1","","","","","Small Bronze Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4375","-1","","","","","Whirring Bronze Gizmo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","115","460","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4376","-1","","","","","Flame Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4377","-1","","","","","Heavy Blasting Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4378","-1","","","","","Heavy Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4379","-1","","","","","Silver-plated Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11788","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","26","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","21" +"4380","-1","","","","","Big Bronze Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4381","-1","","","","","Minor Recombobulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4382","-1","","","","","Bronze Framework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4383","-1","","","","","Moonsight Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3183","15915","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","29","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","24" +"4384","-1","","","","","Explosive Sheep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4385","-1","","","","","Green Tinted Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7052","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4386","-1","","","","","Ice Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"4387","-1","","","","","Iron Strut","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4388","-1","","","","","Discombobulator Ray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4389","-1","","","","","Gyrochronatom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4390","-1","","","","","Iron Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4391","-1","","","","","Compact Harvest Reaper Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4392","-1","","","","","Advanced Target Dummy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4393","-1","","","","","Craftsman's Monocle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2632","13162","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","32" +"4394","-1","","","","","Big Iron Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4395","-1","","","","","Goblin Land Mine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1600","6400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","202","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4396","-1","","","","","Mechanical Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4397","-1","","","","","Gnomish Cloaking Device","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4398","-1","","","","","Large Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","900","3600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4399","-1","","","","","Wooden Stock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4400","-1","","","","","Heavy Stock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4401","-1","","","","","Mechanical Squirrel Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4402","-1","","","","","Small Flame Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4403","-1","","","","","Portable Bronze Mortar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4404","-1","","","","","Silver Contact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4405","-1","","","","","Crude Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4406","-1","","","","","Standard Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"4407","-1","","","","","Accurate Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1200","4800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4408","-1","","","","","Schematic: Mechanical Squirrel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4409","-1","","","","","Schematic: Small Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4410","-1","","","","","Schematic: Shadow Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4411","-1","","","","","Schematic: Flame Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4412","-1","","","","","Schematic: Moonsight Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","202","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4413","-1","","","","","Schematic: Discombobulator Ray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","202","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4414","-1","","","","","Schematic: Portable Bronze Mortar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","1850","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4415","-1","","","","","Schematic: Craftsman's Monocle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4416","-1","","","","","Schematic: Goblin Land Mine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","202","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4417","-1","","","","","Schematic: Large Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4418","-1","","","","","Deprecated Creeper Cakes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","130","520","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4419","-1","","","","","Scroll of Intellect III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4421","-1","","","","","Scroll of Protection III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4422","-1","","","","","Scroll of Stamina III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4424","-1","","","","","Scroll of Spirit III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4425","-1","","","","","Scroll of Agility III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4426","-1","","","","","Scroll of Strength III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4427","-1","","","","","Deprecated Scroll of Spirit Armor V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","97","390","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"4428","-1","","","","","Spider Palp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","331","1325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4429","-1","","","","","Deepfury's Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4430","-1","","","","","Ethereal Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4307","17230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","6","4","0","0","0","0","0","0","0","0" +"4431","-1","","","","","Deprecated Shard of Myzrael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4432","-1","My dear Sara...","","","","Sully Balloo's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4433","-1","","","","","Waterlogged Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4434","-1","","","","","Scarecrow Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","572","2861","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4435","-1","","","","","Mote of Myzrael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4436","-1","","","","","Jewel-encrusted Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1657","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","16" +"4437","-1","","","","","Channeler's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1855","9278","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","20","-1","0","0","35","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4438","-1","","","","","Pugilist Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1692","8464","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","3","0","0","0","0","0","0","0","0","25" +"4439","-1","","","","","Bruiser Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1788","8944","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","22","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","17" +"4440","-1","","","","","Sigil of Strom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4441","-1","","","","","MacKreel's Moonshine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4442","-1","","","","","Deprecated Dark Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1532","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","18" +"4443","-1","","","","","Grim Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3472","17360","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","0" +"4444","-1","","","","","Black Husk Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1490","7450","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","19" +"4445","-1","","","","","Flesh Carver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10341","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","23","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","18" +"4446","-1","","","","","Blackvenom Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3594","17972","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","1","0","0","0","39","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","1","0","0","0","0","0","0","0","0","0","21" +"4447","-1","","","","","Cloak of Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","901","4509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","21" +"4448","-1","","","","","Husk of Naraxis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1991","9959","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","7","0","0","0","0","0","0","0","0","22" +"4449","-1","","","","","Naraxis' Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3332","16662","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","27","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","22" +"4450","-1","","","","","Sigil Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4451","-1","","","","","Deprecated Stasis Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","48","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4452","-1","","","","","Deprecated Resonant Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4453","-1","","","","","Sigil of Thoradin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4454","-1","","","","","Talon of Vultros","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3800","19001","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","21" +"4455","-1","","","","","Raptor Hide Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3096","15483","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","28" +"4456","-1","","","","","Raptor Hide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1553","7768","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","28" +"4457","-1","","","","","Barbecued Buzzard Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4458","-1","","","","","Sigil of Arathor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4459","-1","","","","","Brittle Dragon Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4460","-1","","","","","Ripped Wing Webbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4461","-1","","","","","Raptor Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","208","835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4462","-1","","","","","Cloak of Rot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1425","7126","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","-5","7","0","0","0","0","0","0","0","0","26" +"4463","-1","","","","","Beaded Raptor Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","953","4769","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","26" +"4464","-1","","","","","Trouncing Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2380","11901","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","6","0","0","0","0","0","0","0","0","27" +"4465","-1","","","","","Bonefist Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1585","7928","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","3","0","0","0","0","0","0","0","0","27" +"4466","-1","","","","","Sigil of Trollbane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4467","-1","","","","","Sigil of Ignaeus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4468","-1","The legendary blade of Ignaeus Trollbane.","","","","Sheathed Trol'kalar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4469","-1","","","","","Rod of Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4470","-1","","","","","Simple Wood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4471","-1","","","","","Flint and Tinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4472","-1","","","","","Scroll of Myzrael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4473","-1","","","","","Eldritch Shackles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4474","-1","","","","","Ravenwood Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4207","21037","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"4475","-1","","","","","Deprecated The Southern Kingdoms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4476","-1","","","","","Beastwalker Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2734","13672","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","3","6","0","0","0","0","0","0","0","29" +"4477","-1","","","","","Nefarious Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4390","21953","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","3","0","0","0","0","0","0","0","0","29" +"4478","-1","","","","","Iridescent Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10176","50883","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","217","0","13","0","13","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"4479","-1","","","","","Burning Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","178","715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4480","-1","","","","","Thundering Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4481","-1","","","","","Cresting Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","176","705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4482","-1","","","","","Sealed Folder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4483","-1","","","","","Burning Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4484","-1","","","","","Cresting Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4485","-1","","","","","Thundering Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4486","-1","","","","","Deprecated Jorell's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4487","-1","","","","","Maiden's Folly Charts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4488","-1","","","","","Spirit of Silverpine Charts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4489","-1","","","","","Maiden's Folly Log","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4490","-1","","","","","Spirit of Silverpine Log","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4491","-1","","","","","Goggles of Gem Hunting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4492","-1","","","","","Elven Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4493","-1","","","","","Elven Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4494","-1","","","","","Seahorn's Sealed Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4495","-1","","","","","Bloodstone Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4496","-1","","","","","Small Brown Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4497","-1","","","","","Heavy Brown Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4498","-1","","","","","Brown Leather Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4499","-1","","","","","Huge Brown Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4500","-1","","","","","Traveler's Backpack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4501","-1","","","","","Deprecated Brown Wayfarer's Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4502","-1","","","","","Sample Elven Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4503","-1","","","","","Witherbark Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4504","-1","","","","","Dwarven Guard Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2222","11112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","1","0","0","0","0","0","0","0","0","0" +"4505","-1","","","","","Swampland Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1974","9871","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","4","0","0","0","0","0","0","0","0","0" +"4506","-1","","","","","Stromgarde Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4507","-1","","","","","Pit Fighter's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8282","41411","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","8","3","0","0","0","0","0","0","0","0","0" +"4508","-1","","","","","Blood-tinged Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7793","38965","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","15","0","0","0","0","0","0","0","0","0" +"4509","-1","","","","","Seawolf Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","3","0","0","0","0","0","0","0","0","0" +"4510","-1","","","","","Befouled Bloodstone Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4511","-1","","","","","Black Water Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11256","56284","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4512","-1","","","","","Highland Raptor Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4513","-1","","","","","Raptor Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4514","-1","To My Honorable King","","","","Sara Balloo's Plea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4515","-1","","","","","Marez's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4516","-1","","","","","Otto's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4517","-1","","","","","Falconcrest's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4518","-1","","","","","Torn Scroll Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4519","-1","","","","","Crumpled Scroll Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4520","-1","","","","","Singed Scroll Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4521","-1","","","","","Alterac Granite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4522","-1","","","","","Witherbark Medicine Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4523","-1","","","","","Deprecated Shadow Hunter Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4524","-1","","","","","Balloo's Memorial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4525","-1","","","","","Trelane's Wand of Invocation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4526","-1","","","","","Raptor Talon Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4527","-1","","","","","Azure Agate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4528","-1","","","","","Tor'gan's Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4529","-1","","","","","Enchanted Agate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4530","-1","","","","","Trelane's Phylactery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4531","-1","","","","","Trelane's Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4532","-1","","","","","Trelane's Ember Agate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4533","-1","","","","","Sealed Letter to Archmage Malin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4534","-1","","","","","Steel-clasped Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1173","5868","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","1","0","0","0","0","0","0","0","0","0" +"4535","-1","","","","","Ironforge Memorial Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","882","3530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","4","0","0","0","0","0","0","0","0","0" +"4536","-1","","","","","Shiny Red Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4537","-1","","","","","Tel'Abim Banana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4538","-1","","","","","Snapvine Watermelon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4539","-1","","","","","Goldenbark Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4540","-1","","","","","Tough Hunk of Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4541","-1","","","","","Freshly Baked Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4542","-1","","","","","Moist Cornbread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4543","-1","","","","","White Drakeskin Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4098","20494","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","0" +"4544","-1","","","","","Mulgore Spice Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4545","-1","","","","","Radiant Silver Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2202","11010","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","0" +"4546","-1","","","","","Call of the Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","533","2135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4547","-1","","","","","Gnomish Zapper","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8319","41596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","40","-1","0","0","29","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4548","-1","","","","","Servomechanic Sledgehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15028","75143","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","100","202","41","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4549","-1","","","","","Seafire Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","10","2","0","0","0","0","0","0","0","0" +"4550","-1","","","","","Coldwater Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","9","0","0","0","0","0","0","0","0","0" +"4551","-1","","","","","Or'Kalar's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4552","-1","","","","","Smooth Stone Chip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","530","2120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4553","-1","","","","","Jagged Piece of Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","411","1645","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4554","-1","","","","","Shiny Polished Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","708","2835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4555","-1","","","","","Thick Scaly Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4556","-1","","","","","Speckled Shell Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","903","3615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4557","-1","","","","","Fiery Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4558","-1","","","","","Empty Barrel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1565","6260","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4559","-1","","","","","CHU's QUEST ITEM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4560","-1","","","","","Fine Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4561","-1","","","","","Scalping Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","309","1546","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","11","-1","0","5169","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","6" +"4562","-1","","","","","Severing Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","298","1491","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","10","-1","0","5174","18","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","5" +"4563","-1","","","","","Billy Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","552","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4564","-1","","","","","Spiked Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","610","3053","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","13","-1","0","5175","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","8" +"4565","-1","","","","","Simple Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","193","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4566","-1","","","","","Sturdy Quarterstaff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","631","3157","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","13","-1","0","5176","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","8" +"4567","-1","","","","","Merc Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5247","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","5182","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","11" +"4568","-1","","","","","Grunt Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1694","8474","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","21","-1","0","5187","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","16" +"4569","-1","","","","","Staunch Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","612","3063","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","14","-1","0","5170","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","9" +"4570","-1","","","","","Birchwood Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4611","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","15","-1","0","5175","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","10" +"4571","-1","","","","","War Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4896","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","17","-1","0","5180","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","12" +"4573","-1","","","","","Deprecated Pat's Test Strongbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4575","-1","","","","","Medicine Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1487","7435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","19","-1","0","5194","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","14" +"4576","-1","","","","","Light Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1184","5922","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","21","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","16" +"4577","-1","","","","","Compact Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","356","1784","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","13","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","8" +"4578","-1","","","","","Deprecated Long Panther Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","536","2145","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4579","-1","","","","","Deprecated Spotted Panther Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","737","2950","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4580","-1","","","","","Sabertooth Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","787","3150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4581","-1","","","","","Patch of Fine Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","862","3450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4582","-1","","","","","Soft Bushy Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","745","2980","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4583","-1","","","","","Thick Furry Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","812","3250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4584","-1","","","","","Large Trophy Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","937","3750","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4585","-1","","","","","Dripping Spider Mandible","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","583","2335","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4586","-1","","","","","Smooth Raptor Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","713","2855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4587","-1","","","","","Tribal Raptor Feathers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","807","3230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4588","-1","","","","","Pristine Raptor Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","900","3600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4589","-1","","","","","Long Elegant Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","530","2120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4590","-1","","","","","Curved Yellow Bill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","655","2620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4591","-1","","","","","Eagle Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","413","1655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4592","-1","","","","","Longjaw Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4593","-1","","","","","Bristle Whisker Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4594","-1","","","","","Rockscale Cod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4595","-1","","","","","Junglevine Wine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4596","-1","","","","","Discolored Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4597","-1","","","","","Recipe: Discolored Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4598","-1","","","","","Goblin Fishing Pole","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","212","850","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4599","-1","","","","","Cured Ham Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4600","-1","","","","","Cherry Grog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4601","-1","","","","","Soft Banana Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4602","-1","","","","","Moon Harvest Pumpkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4603","-1","","","","","Raw Spotted Yellowtail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4604","-1","","","","","Forest Mushroom Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4605","-1","","","","","Red-speckled Mushroom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4606","-1","","","","","Spongy Morel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4607","-1","","","","","Delicious Cave Mold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4608","-1","","","","","Raw Black Truffle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4609","-1","","","","","Recipe: Barbecued Buzzard Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4610","-1","","","","","Carved Stone Urn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4611","-1","","","","","Blue Pearl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4612","-1","","","","","Black Drake's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4613","-1","","","","","Corroded Black Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4614","-1","","","","","Pendant of Myzrael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","635","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","6","0","0","0","0","0","0","0","0","30" +"4615","-1","","","","","Blacklash's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4616","-1","","","","","Ryedol's Lucky Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","17","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4620","-1","The worn note has something written on it in chalk...","","","","Deprecated Scribbled Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1382","5530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4621","-1","","","","","Ambassador Infernus' Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4622","-1","","","","","Sealed Note to Advisor Belgrum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4623","-1","","","","","Lesser Stoneshield Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","33" +"4624","-1","","","","","Recipe: Lesser Stoneshield Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","171","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4625","-1","","","","","Firebloom","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4626","-1","","","","","Small Stone Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4627","-1","","","","","Large Stone Slab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4628","-1","","","","","Bracers of Rock Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4629","-1","","","","","Supply Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4630","-1","","","","","Scrap Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4631","-1","","","","","Tablet of Ryun'eh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4632","-1","","","","","Ornate Bronze Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4633","-1","","","","","Heavy Bronze Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","280","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4634","-1","","","","","Iron Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4635","-1","","","","","Hammertoe's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4636","-1","","","","","Strong Iron Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4637","-1","","","","","Steel Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4638","-1","","","","","Reinforced Steel Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4639","-1","","","","","Enchanted Sea Kelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4640","-1","","","","","Sign of the Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4641","-1","","","","","Hand of Dagun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4643","-1","","","","","Grimsteel Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2748","13741","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","2","0","0","0","0","0","0","0","0","0" +"4644","-1","","","","","The Legacy Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4645","-1","","","","","Chains of Hematus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4646","-1","","","","","Star of Xil'yeh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4647","-1","","","","","Yagyin's Digest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4648","-1","","","","","Sigil of the Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4649","-1","","","","","Bonegrip's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4650","-1","","","","","Bel'dugur's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4652","-1","","","","","Salbac Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10126","50631","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","3","0","0","0","0","0","0","0","0","0" +"4653","-1","","","","","Ironheel Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7178","35890","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","0" +"4654","-1","","","","","Mysterious Fossil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4655","-1","","","","","Giant Clam Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4656","-1","","","","","Small Pumpkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4657","-1","","","","","Deprecated Warrior's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","423","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4658","-1","","","","","Warrior's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","118","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4659","-1","","","","","Warrior's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4660","-1","","","","","Walking Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1622","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","13" +"4661","-1","","","","","Bright Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4645","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4662","-1","","","","","Journeyman's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","123","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4663","-1","","","","","Journeyman's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","115","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4664","-1","","","","","Deprecated Burnt Leather Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","369","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4665","-1","","","","","Burnt Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","113","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4666","-1","","","","","Burnt Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","132","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4667","-1","","","","","Deprecated Battle Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","127","638","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4668","-1","","","","","Battle Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4669","-1","","","","","Battle Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","209","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4670","-1","","","","","Deprecated Ancestral Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","428","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4671","-1","","","","","Ancestral Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4672","-1","","","","","Ancestral Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","141","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4673","-1","","","","","Deprecated Tribal Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4674","-1","","","","","Tribal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","164","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4675","-1","","","","","Tribal Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","178","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4676","-1","","","","","Skeletal Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1390","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","12" +"4677","-1","","","","","Veteran Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4678","-1","","","","","Veteran Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","543","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4679","-1","","","","","Deprecated Brackwater Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","657","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4680","-1","","","","","Brackwater Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91","456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4681","-1","","","","","Brackwater Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","549","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4682","-1","","","","","Deprecated Magister's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","583","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","12" +"4683","-1","","","","","Spellbinder Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","461","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4684","-1","","","","","Spellbinder Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61","307","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4685","-1","","","","","Deprecated Runic Cloth Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122","613","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"4686","-1","","","","","Barbaric Cloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","336","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4687","-1","","","","","Barbaric Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4688","-1","","","","","Deprecated Hunting Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","509","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4689","-1","","","","","Hunting Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","532","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4690","-1","","","","","Hunting Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","356","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4691","-1","","","","","Deprecated Ceremonial Leather Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","515","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4692","-1","","","","","Ceremonial Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","344","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4693","-1","","","","","Ceremonial Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4694","-1","","","","","Burnished Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2576","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"4695","-1","","","","","Burnished Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","327","1635","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","13" +"4696","-1","","","","","Lapidis Tankard of Tidesippe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","-15","16","5","0","0","0","0","0","0","0","54" +"4697","-1","","","","","Burnished Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2179","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","15" +"4698","-1","","","","","Seer's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","301","1508","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4699","-1","","","","","Seer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","221","1105","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","0","0","0","0","0","0","0","0","0","13" +"4700","-1","","","","","Inscribed Leather Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","379","1899","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4701","-1","","","","","Inscribed Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1263","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","11" +"4702","-1","","","","","Prospector's Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4703","-1","","","","","Broken Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4704","-1","","","","","OLDCeremonial Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4705","-1","","","","","Lambent Scale Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1449","7248","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","22" +"4706","-1","","","","","Lambent Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","687","3438","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","19" +"4707","-1","","","","","Lambent Scale Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","4407","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4708","-1","","","","","Bright Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","461","2309","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","19" +"4709","-1","","","","","Forest Leather Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4913","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4710","-1","","","","","Forest Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2808","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","2","0","0","0","0","0","0","0","0","17" +"4711","-1","","","","","Glimmering Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1112","5561","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","5","0","0","0","0","0","0","0","0","23" +"4712","-1","","","","","Glimmering Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1228","6140","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"4713","-1","","","","","Silver-thread Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","926","4630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","21" +"4714","-1","","","","","Silver-thread Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","681","3408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","5","0","0","0","0","0","0","0","0","22" +"4715","-1","","","","","Emblazoned Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1026","5130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","22" +"4716","-1","","","","","Combat Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1658","8294","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","2","0","0","0","0","0","0","0","0","27" +"4717","-1","","","","","Mail Combat Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2014","10071","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4718","-1","","","","","Nightsky Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2223","11118","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","5","0","0","0","0","0","0","0","0","30" +"4719","-1","","","","","Nightsky Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1676","8383","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","27" +"4720","-1","","","","","Nightsky Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6170","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","8","0","0","0","0","0","0","0","0","28" +"4721","-1","","","","","Insignia Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2809","14047","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","30" +"4722","-1","","","","","Insignia Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2118","10591","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","27" +"4723","-1","","","","","Humbert's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1703","8518","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","24" +"4724","-1","","","","","Humbert's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1763","8815","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","25" +"4725","-1","","","","","Chief Brigadier Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4736","23680","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","35" +"4726","-1","","","","","Chief Brigadier Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2340","11703","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","3","0","0","0","0","0","0","0","0","31" +"4727","-1","","","","","Chief Brigadier Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2791","13955","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","3","0","0","0","0","0","0","0","0","33" +"4728","-1","","","","","Twain's Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4729","-1","","","","","Aurora Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3036","15184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","34" +"4730","-1","","","","","Deprecated Prospector's Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","2" +"4731","-1","","","","","Glyphed Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3824","19122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","34" +"4732","-1","","","","","Glyphed Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2632","13162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","7","0","0","0","0","0","0","0","0","32" +"4733","-1","","","","","Blackforge Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7957","39789","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","41" +"4734","-1","","","","","Mistscape Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4208","21041","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","38" +"4735","-1","","","","","Mistscape Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3621","18105","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","8","0","0","0","0","0","0","0","0","36" +"4736","-1","","","","","Mistscape Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2616","13081","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","11","0","0","0","0","0","0","0","0","37" +"4737","-1","","","","","Imperial Leather Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5743","28715","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","9","0","0","0","0","0","0","0","0","39" +"4738","-1","","","","","Imperial Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3294","16471","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","4","0","0","0","0","0","0","0","0","37" +"4739","-1","","","","","Plainstrider Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4740","-1","","","","","Plainstrider Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4741","-1","","","","","Stromgarde Cavalry Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5438","27194","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","6","2","0","0","0","0","0","0","0","0" +"4742","-1","","","","","Mountain Cougar Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4743","-1","","","","","Pulsating Crystalline Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5430","21720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","8","0","0","0","0","0","0","0","0","0" +"4744","-1","","","","","Arcane Runed Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1986","9933","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","8","0","0","0","0","0","0","0","0","0" +"4745","-1","","","","","War Rider Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3230","16153","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","0" +"4746","-1","","","","","Doomsayer's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4324","21620","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","-10","0","0","0","0","0","0","0","0","0" +"4747","-1","","","","","Stormbull Well Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4748","-1","","","","","Redhorn Well Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4749","-1","","","","","Wildmane Well Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4750","288","","","","","OLDWinterhoof Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4","22","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4751","-1","","","","","Windfury Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4752","-1","","","","","Azure Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4753","-1","","","","","Bronze Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4754","-1","","","","","Deprecated Empty Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4755","-1","","","","","Water Pitcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4756","-1","","","","","Ruined Cat Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4757","-1","","","","","Cracked Egg Shells","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","19","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4758","-1","","","","","Prairie Wolf Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4759","-1","","","","","Plainstrider Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4760","480","","","","","OLDThunderhorn Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4761","-1","","","","","Deprecated Pearled Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","278","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4762","480","","","","","OLDWildmane Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4763","-1","","","","","Blackwood Recurve Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135","675","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","9","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","4" +"4764","-1","","","","","Deprecated Avenger Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","176","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4765","-1","","","","","Enamelled Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","575","2877","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","14","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","9" +"4766","-1","","","","","Feral Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","481","2407","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","13","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","8" +"4767","-1","","","","","Coppercloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","695","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","10" +"4768","-1","","","","","Adept's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"4769","-1","","","","","Trophy Swoop Quill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4770","-1","","","","","Bristleback Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4771","-1","","","","","Harvest Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","264","1324","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"4772","-1","","","","","Warm Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","353","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4773","-1","","","","","Deprecated Blessed Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","236","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","7" +"4774","-1","","","","","Deprecated Heavy Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","439","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4775","-1","","","","","Cracked Bill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4776","-1","","","","","Ruffled Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","41","165","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4777","-1","","","","","Ironwood Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1408","7040","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","18","-1","0","0","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","13" +"4778","-1","","","","","Heavy Spiked Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1470","7350","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","19","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"4779","-1","","","","","Dull Kodo Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4780","-1","","","","","Kodo Horn Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4781","-1","","","","","Whispering Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","547","2735","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4782","-1","","","","","Solstice Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2076","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","1","5","0","0","0","0","0","0","0","13" +"4783","-1","","","","","Totem of Hawkwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4784","-1","","","","","Lifeless Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","360","1440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4785","-1","","","","","Brimstone Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2345","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","5","0","0","0","0","0","0","0","0","19" +"4786","-1","","","","","Wise Man's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1393","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4787","-1","","","","","Burning Pitch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","577","2310","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4788","-1","","","","","Agile Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2633","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4789","-1","","","","","Stable Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","399","1998","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","0","0","0","0","0","0","0","0","0","13" +"4790","-1","","","","","Inferno Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","831","4158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4791","-1","","","","","Enchanted Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","133","535","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4792","-1","","","","","Spirit Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","655","3279","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4793","-1","","","","","Sylvan Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","744","3720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","4","0","0","0","0","0","0","0","0","19" +"4794","-1","","","","","Wolf Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3515","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","4","0","0","0","0","0","0","0","0","20" +"4795","-1","","","","","Bear Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3528","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"4796","-1","","","","","Owl Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","708","3540","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"4797","-1","","","","","Fiery Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","852","4262","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4798","-1","","","","","Heavy Runed Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1166","5832","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","3","0","0","0","0","0","0","0","0","20" +"4799","-1","","","","","Antiquated Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","608","3042","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4800","-1","","","","","Mighty Chain Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1221","6109","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","0","0","0","0","0","0","0","0","18" +"4801","-1","","","","","Stalker Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4802","-1","","","","","Cougar Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4803","-1","","","","","Prairie Alpha Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4804","-1","","","","","Prairie Wolf Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4805","-1","","","","","Flatland Cougar Femur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4806","-1","","","","","Plainstrider Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4807","-1","","","","","Swoop Gizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4808","-1","","","","","Well Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4809","-1","","","","","Ambercorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4810","-1","","","","","Boulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3351","16759","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","32" +"4811","-1","","","","","Deprecated Studded Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","218","1093","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"4812","-1","","","","","Deprecated Crimson Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1149","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","14" +"4813","-1","","","","","Small Leather Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4814","-1","","","","","Discolored Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4815","-1","","","","","Deprecated Heavy Brass Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","878","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","12" +"4816","-1","","","","","Legionnaire's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1503","7518","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","0","0","0","0","0","0","0","0","19" +"4817","-1","","","","","Blessed Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2462","12311","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","22","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","17" +"4818","-1","","","","","Executioner's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2854","14273","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","24","-1","0","0","43","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","19" +"4819","-1","","","","","Fizsprocket's Clipboard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4820","-1","","","","","Guardian Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1664","8320","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","3","0","0","0","0","0","0","0","0","20" +"4821","-1","","","","","Bear Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1308","6541","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","3","0","0","0","0","0","0","0","0","18" +"4822","-1","","","","","Owl's Disk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1349","6746","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4823","-1","","","","","Water of the Seers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4824","-1","","","","","Blurred Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3371","16856","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","27","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","22" +"4825","-1","","","","","Callous Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4094","20472","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","24" +"4826","-1","","","","","Marauder Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3087","15436","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","21" +"4827","-1","","","","","Wizard's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","749","3748","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","23" +"4828","-1","","","","","Nightwind Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","684","3420","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","6","0","0","0","0","0","0","0","0","22" +"4829","-1","","","","","Dreamer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","830","4153","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"4830","-1","","","","","Saber Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1894","9474","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","6","0","0","0","0","0","0","0","0","23" +"4831","-1","","","","","Stalking Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1571","7858","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"4832","-1","","","","","Mystic Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2099","10497","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","24" +"4833","-1","","","","","Glorious Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1731","8658","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","23" +"4834","-1","","","","","Venture Co. Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","352","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4835","-1","","","","","Elite Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2110","10550","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","0","0","0","0","0","0","0","0","25" +"4836","-1","","","","","Fireproof Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","23" +"4837","-1","","","","","Strength of Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","0","0","0","0","0","0","0","0","0","25" +"4838","-1","","","","","Orb of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","4","0","0","0","0","0","0","0","0","21" +"4839","-1","","","","","Deprecated Demon Scarred Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4840","-1","","","","","Long Bayonet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","713","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4841","-1","","","","","Horn of Arra'chea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4842","-1","","","","","test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4843","-1","","","","","Amethyst Runestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4844","-1","","","","","Opal Runestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4845","-1","","","","","Diamond Runestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4846","-1","","","","","Cog #5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4847","-1","","","","","Lotwil's Shackles of Elemental Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4848","-1","","","","","Battleboar Snout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4849","-1","","","","","Battleboar Flank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4850","-1","","","","","Bristleback Attack Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4851","-1","","","","","Dirt-stained Map","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","781","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4852","-1","","","","","Flash Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"4853","-1","","","","","TEST QUEST HELM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4854","-1","","","","","Demon Scarred Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4855","-1","","","","","Unused Cloth Shoulder A01 Gray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","838","4190","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4856","-1","","","","","Unused Cloth Shoulder A02 Yellow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","841","4206","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4857","-1","","","","","Unused Cloth Shoulder B01 Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4222","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4858","-1","","","","","Unused Cloth Shoulder B02 Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4238","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4859","-1","","","","","Burning Blade Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4860","-1","","","","","Glistening Frenzy Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","741","2965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4861","-1","","","","","Sleek Feathered Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"4862","-1","","","","","Scorpid Worker Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4863","-1","","","","","Gnomish Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4864","-1","","","","","Minshina's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4865","-1","","","","","Ruined Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4866","-1","","","","","Zalazane's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4867","-1","","","","","Broken Scorpid Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4868","-1","","","","","Deprecated Scorched Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4869","-1","","","","","Fizzle's Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4870","-1","","","","","Canvas Scraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4871","-1","","","","","Searing Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4872","-1","","","","","Dry Scorpid Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4873","-1","","","","","Dry Hardened Barnacle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4874","-1","","","","","Clean Fishbones","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","46","185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4875","-1","","","","","Slimy Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4876","-1","","","","","Bloody Leather Boot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","78","315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4877","-1","","","","","Stone Arrowhead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4878","-1","","","","","Broken Bloodstained Bow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4879","-1","","","","","Squashed Rabbit Carcass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4880","-1","","","","","Broken Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","86","345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4881","-1","","","","","Aged Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4882","-1","","","","","Benedict's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4883","-1","","","","","Admiral Proudmoore's Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4884","-1","","","","","Deprecated Small Scorpid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4885","-1","","","","","Deprecated Large Scorpid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4886","-1","","","","","Venomtail Poison Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4887","-1","","","","","Intact Makrura Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4888","-1","","","","","Crawler Mucus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4889","-1","","","","","Deprecated Mottled Boar Steaks","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4890","-1","","","","","Taillasher Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4891","-1","","","","","Kron's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4892","-1","","","","","Durotar Tiger Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4893","-1","","","","","Savannah Lion Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4894","-1","","","","","Plainstrider Kidney","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4895","-1","","","","","Thunder Lizard Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4896","-1","","","","","Kodo Liver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4897","-1","","","","","Thunderhawk Saliva Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4898","-1","","","","","Lightning Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4899","-1","","","","","Test Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","798","3990","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","14","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","20" +"4900","-1","","","","","Test Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1335","6677","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4901","-1","","","","","Test Polearm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1340","6702","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4902","-1","","","","","Deprecated Apprentice Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4903","-1","","","","","Eye of Burning Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4904","-1","","","","","Venomtail Antidote","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4905","-1","","","","","Sarkoth's Mangled Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4906","-1","","","","","Rainwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","109","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4907","-1","","","","","Woodland Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4908","-1","","","","","Nomadic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4909","-1","","","","","Kodo Hunter's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1844","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","0","0","0","0","0","0","0","0","0","0" +"4910","-1","","","","","Painted Chain Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4911","-1","","","","","Thick Bark Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4912","-1","","","","","Test Wand JChow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","777","3886","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","25","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4913","-1","","","","","Painted Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4914","-1","","","","","Battleworn Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","29","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4915","-1","","","","","Soft Wool Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4916","-1","","","","","Soft Wool Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4917","-1","","","","","Battleworn Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4918","-1","","","","","Sack of Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4919","-1","","","","","Soft Wool Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4920","-1","","","","","Battleworn Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4921","-1","","","","","Dust-covered Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","63","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4922","-1","","","","","Jagged Chain Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4923","-1","","","","","Primitive Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4924","-1","","","","","Primitive Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4925","-1","","","","","Primitive Hand Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4926","-1","","","","","Chen's Empty Keg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","819","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","11" +"4927","-1","","","","","Deprecated Keg of Chen's Stormstout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4928","-1","","","","","Sandrunner Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","102","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4929","-1","","","","","Light Scorpid Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","291","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4930","-1","","","","","Handmade Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4931","-1","","","","","Hickory Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","671","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"4932","-1","","","","","Harpy Wing Clipper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4933","-1","","","","","Seasoned Fighter's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","241","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4934","-1","","","","","Deprecated Heavy Cord Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","114","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4935","-1","","","","","Wide Metal Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","117","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4936","-1","","","","","Dirt-trodden Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","118","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4937","-1","","","","","Charging Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","356","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4938","-1","","","","","Blemished Wooden Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","236","1182","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","11","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4939","-1","","","","","Steady Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","395","1977","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","11","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","0" +"4940","-1","","","","","Veiled Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4941","-1","","","","","Really Sticky Glue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","11","45","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4942","-1","","","","","Tiger Hide Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4943","-1","","","","","Torka's Egg Cracker [UNUSED]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","508","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","8","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4944","-1","","","","","Handsewn Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","361","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4945","-1","","","","","Faintly Glowing Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4946","-1","","","","","Lightweight Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","337","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4947","-1","","","","","Jagged Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1627","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4948","-1","","","","","Stinging Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326","1633","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","11","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4949","-1","","","","","Orcish Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1706","8532","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","21","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","16" +"4950","-1","","","","","Deprecated Orc Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","126","631","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4951","-1","","","","","Squealer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","69","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4952","-1","","","","","Stormstout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4953","-1","","","","","Trogg Brew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","88","355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4954","-1","","","","","Nomadic Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4955","-1","","","","","Deprecated Nomadic Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4956","-1","","","","","Test Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","31","157","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","12","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"4957","-1","","","","","Old Moneybag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4958","-1","","","","","Sun-beaten Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4959","-1","","","","","Throwing Tomahawk","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","0" +"4960","-1","","","","","Flash Pellet","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","7","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4961","-1","","","","","Dreamwatcher Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","918","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","10","-1","0","0","14","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4962","-1","","","","","Double-layered Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4963","-1","","","","","Thunderhorn Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4964","288","","","","","Goblin Smasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","503","2516","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","12","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","0" +"4965","-1","","","","","Bloodhoof Hand Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","745","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4966","-1","","","","","Mazzranache's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4967","-1","","","","","Tribal Warrior's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","580","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4968","-1","","","","","Bound Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","454","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4969","-1","","","","","Fortified Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4970","-1","","","","","Rough-hewn Kodo Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4971","-1","","","","","Skorn's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","383","1919","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","12","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4972","-1","","","","","Cliff Runner Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64","320","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4973","-1","","","","","Plains Hunter Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","178","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4974","-1","","","","","Compact Fighting Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","388","1940","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","12","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4975","-1","","","","","Vigilant Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6477","32389","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4976","-1","","","","","Mistspray Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27431","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","0","0","0","0","0","0","0","0","0","0" +"4977","-1","","","","","Sword of Hammerfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11893","59465","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","5","0","0","0","0","0","0","0","0","0" +"4978","-1","","","","","Ryedol's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7976","39882","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","36","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","0","0","0","0","0","0","0","0","0","0" +"4979","-1","","","","","Enchanted Stonecloth Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12939","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","8","0","0","0","0","0","0","0","0","0" +"4980","-1","","","","","Prospector Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2209","11048","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4981","-1","","","","","Agmond's Belt Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4982","-1","","","","","Ripped Prospector Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","961","4807","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4983","-1","","","","","Rock Pulverizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16837","84185","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","42","-1","0","0","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4984","-1","","","","","Skull of Impending Doom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5630","22520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4985","-1","","","","","Test Proc Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","777","3887","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","25","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4986","-1","","","","","Flawed Power Stone","1","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4987","-1","","","","","Dwarf Captain's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15584","77920","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","0" +"4988","-1","","","","","Burning Obsidian Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3657","14630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","0" +"4989","-1","","","","","Mage Dragon Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9058","45292","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","18","0","0","0","0","0","0","0","0","0" +"4990","-1","","","","","Scorched Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4546","22732","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","8","0","0","0","0","0","0","0","0","0" +"4991","-1","","","","","Monster - Sword2H, Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4992","-1","An unsigned recruitment letter.","","","","Recruitment Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4993","-1","","","","","Monster - Item, Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4994","-1","","","","","Monster - Item, Gizmo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4995","-1","","","","","Signed Recruitment Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4996","-1","","","","","Test Item 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","481","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","10","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4997","-1","","","","","Deprecated Recipe: Kodo Skin Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4998","-1","","","","","Blood Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","19" +"4999","-1","","","","","Azora's Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","22" +"5000","-1","","","","","Coral Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","3850","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","3","0","0","0","0","0","0","0","0","21" +"5001","-1","","","","","Heart Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","4155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","22" +"5002","-1","","","","","Glowing Green Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","6140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","1","6","0","0","0","0","0","0","0","0","25" +"5003","-1","","","","","Crystal Starfire Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1713","6855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","4","3","0","0","0","0","0","0","0","26" +"5004","-1","","","","","Mark of the Kirin Tor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1806","7225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","2","0","0","0","0","0","0","0","0","30" +"5005","-1","","","","","Emberspark Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1840","7360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","7","0","0","0","0","0","0","0","0","30" +"5006","-1","","","","","Khazgorm's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5007","-1","","","","","Band of Thorns","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","26" +"5008","-1","","","","","Quicksilver Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1546","6185","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","31" +"5009","-1","","","","","Mindbender Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1696","6785","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","2","0","0","0","0","0","0","0","0","31" +"5010","-1","","","","","Inscribed Gold Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1803","7215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","8","0","0","0","0","0","0","0","0","35" +"5011","-1","","","","","Welken Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1912","7650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","7","0","0","0","0","0","0","0","0","35" +"5012","-1","","","","","Fungal Spores","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5013","-1","","","","","Fertile Bulb","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","38","152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5014","-1","","","","","Wrapping Paper (PT)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5015","-1","","","","","Wrapped Item (PT)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5016","-1","","","","","Artisan's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","0" +"5017","-1","","","","","Nitroglycerin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5018","-1","","","","","Wood Pulp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5019","-1","","","","","Sodium Nitrate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5020","-1","","","","","Kolkar Booty Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","15","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5021","-1","","","","","Explosive Stick of Gann","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5022","-1","","","","","Kodobane's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5023","-1","","","","","Verog's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5024","-1","","","","","Frost Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5025","-1","","","","","Hezrul's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5026","-1","","","","","Fire Tar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5027","-1","","","","","Rendered Spores","1","2700","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5028","-1","","","","","Lord Sakrasis' Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","8","0","0","0","0","0","0","0","0","42" +"5029","-1","","","","","Talisman of the Naga Lord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5282","21130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","10","0","0","0","0","0","0","0","0","42" +"5030","-1","","","","","Centaur Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5038","-1","","","","","Tear of the Moons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5040","-1","","","","","Shadow Hunter Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","27" +"5041","-1","","","","","TEST Translation: Taurahe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5042","-1","","","","","Red Ribboned Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5043","-1","","","","","Red Ribboned Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5044","-1","","","","","Blue Ribboned Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5045","-1","","","","","Skull Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"5046","-1","","","","","Locked Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5047","-1","Only 40th level or higher players will be able to open this gift.","","","","Skull Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5048","-1","","","","","Blue Ribboned Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5049","-1","This gift will require 150 lockpicking to open.","","","","Self-locking Ironpaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","39","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5050","-1","","","","","Ignition Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5051","-1","","","","","Dig Rat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5052","-1","","","","","Unconscious Dig Rat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5053","-1","","","","","Deprecated Plain Brown Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5054","-1","","","","","Samophlange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5055","-1","","","","","Intact Raptor Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5056","-1","","","","","Root Sample","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5057","-1","","","","","Ripe Watermelon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5058","-1","","","","","Silithid Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5059","-1","","","","","Digging Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5060","-1","","","","","Thieves' Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5061","-1","","","","","Stolen Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5062","-1","","","","","Raptor Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5063","-1","","","","","Kreenig Snarlsnout's Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5064","-1","","","","","Witchwing Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5065","-1","","","","","Harpy Lieutenant Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5066","-1","","","","","Fissure Plant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","21","85","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5067","-1","","","","","Serena's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5068","-1","","","","","Dried Seeds","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5069","-1","","","","","Fire Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","293","1466","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","12","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","7" +"5071","-1","","","","","Shadow Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","443","2216","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","14","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","9" +"5072","-1","","","","","Lok's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5073","-1","","","","","Nak's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5074","-1","","","","","Kuz's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5075","-1","","","","","Blood Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5076","-1","","","","","Shipment of Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5077","-1","","","","","Telescopic Lens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5078","-1","","","","","Theramore Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5079","-1","","","","","Cold Basilisk Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4642","18570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","35" +"5080","-1","","","","","Gazlowe's Ledger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5081","-1","","","","","Kodo Hide Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5082","-1","'Thin' is a relative term....","","","","Thin Kodo Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5083","-1","","","","","Pattern: Kodo Hide Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","165","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5084","-1","","","","","Baron Longshore's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5085","-1","","","","","Bristleback Quilboar Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5086","-1","","","","","Zhevra Hooves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5087","-1","","","","","Plainstrider Beak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5088","-1","Venture Co. Document 534x9","","","","Control Console Operating Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5089","-1","","","","","Console Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5090","-1","","","","","Deprecated Torn Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5091","-1","","","","","test Eric Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5092","-1","","","","","Charred Razormane Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","23","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5093","-1","","","","","Razormane Backstabber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1238","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","21","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5094","-1","","","","","Razormane War Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","233","1168","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","19" +"5095","-1","","","","","Rainbow Fin Albacore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5096","-1","","","","","Prowler Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5097","-1","","","","","Cats Eye Emerald","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5098","-1","","","","","Altered Snapjaw Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5099","-1","","","","","Hoof of Lakota'mani","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","883","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5100","-1","","","","","Echeyakee's Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5101","-1","","","","","Ishamuhale's Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5102","-1","","","","","Owatanka's Tailspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","884","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5103","-1","","","","","Washte Pawne's Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","885","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5104","-1","","","","","Heart of Isha Awak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5105","-1","","","","","Explosive Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5106","-1","","","","","Deprecated Red Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","83","417","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","31240","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","10" +"5107","-1","","","","","Deckhand's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5108","-1","","","","","Dark Iron Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1616","8081","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","27" +"5109","-1","","","","","Stonesplinter Rags","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","223","1116","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5110","-1","","","","","Dalaran Wizard's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","257","1289","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5111","-1","","","","","Rathorian's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","320","1601","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"5112","-1","","","","","Ritual Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","730","3651","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"5113","-1","","","","","Mark of the Syndicate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5114","-1","","","","","Severed Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","96","385","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5115","-1","","","","","Broken Wishbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","101","405","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5116","-1","","","","","Long Tail Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","303","1215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5117","-1","","","","","Vibrant Plume","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","825","3300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5118","-1","","","","","Large Flat Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5119","-1","","","","","Fine Loose Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","118","475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5120","-1","","","","","Long Tail Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","193","775","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5121","-1","","","","","Dirty Kodo Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","162","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5122","-1","","","","","Thick Kodo Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","287","1150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5123","-1","","","","","Steel Arrowhead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","117","470","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5124","-1","","","","","Small Raptor Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","117","470","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5125","-1","","","","","Charged Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5126","-1","","","","","Knowledge: Defias Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5127","-1","","","","","Knowledge: South Seas Pirate Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5128","-1","","","","","Shed Lizard Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","202","810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5129","-1","","","","","Knowledge: Dark Iron Dwarf Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5130","-1","","","","","Knowledge: Dalaran Wizard Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5131","-1","","","","","Knowledge: Stonesplinter Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5132","-1","","","","","Knowledge: Syndicate Disguise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5133","-1","","","","","Seeping Gizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5134","-1","","","","","Small Furry Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","92","370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5135","-1","","","","","Thin Black Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","142","570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5136","-1","","","","","Torn Furry Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","177","710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5137","-1","","","","","Bright Eyeball","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","217","870","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5138","-1","","","","","Harvester's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","897","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5139","-1","","","","","Book of Thorns","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5140","-1","","","","","Flash Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5141","-1","","","","","Book of Regrowth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5142","-1","","","","","Book of Wrath II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5143","-1","","","","","Thunder Lizard Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5144","-1","","","","","Deprecated Book of Cyclone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5145","-1","","","","","Book of Healing Touch II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5146","-1","","","","","Deprecated Book of Barkskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5147","-1","","","","","Book of Entangling Roots II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5148","-1","","","","","Book of Thorns II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5149","-1","","","","","Book of Wrath III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5150","-1","","","","","Book of Healing Touch III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5151","-1","","","","","Book of Wrath IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5152","-1","","","","","Book of Healing Touch IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5153","-1","","","","","Book of Mark of the Wild IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5154","-1","","","","","Book of Thorns III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5155","-1","","","","","Book of Mark of the Wild II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5156","-1","","","","","Book of Wrath V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5157","-1","","","","","Deprecated Book of Cyclone II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"5158","-1","","","","","Book of Tranquility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5159","-1","","","","","Deprecated Book of Entangling Roots IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5160","-1","","","","","Book of Healing Touch V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5161","-1","","","","","Deprecated Book of Barkskin II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3925","15700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"5162","-1","","","","","Deprecated Book of Battle Roar II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5163","-1","","","","","Book of Mark of the Wild III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5164","-1","","","","","Thunderhawk Wings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5165","-1","","","","","Sunscale Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5166","-1","","","","","Webwood Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5167","-1","","","","","Webwood Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5168","-1","","","","","Timberling Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5169","-1","","","","","Timberling Sprout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5170","-1","","","","","Mossy Tumor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5171","-1","","","","","Deprecated Neeru's Power Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5172","-1","","","","","Death Capsule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5173","-1","It must be carried very, very carefully.","","","","Deathweed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5174","-1","","","","","Note from Neeru","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5175","-1","","","","","Earth Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5176","-1","","","","","Fire Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5177","-1","","","","","Water Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5178","-1","","","","","Air Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5179","-1","","","","","Moss-twined Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","927","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5180","-1","","","","","Necklace of Harmony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2777","11110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","0","0","0","0","0","0","0","0","0","29" +"5181","-1","","","","","Vibrant Silk Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1778","8890","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","7","0","0","0","0","0","0","0","0","28" +"5182","-1","","","","","Shiver Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1769","8849","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","15" +"5183","-1","","","","","Pulsating Hydra Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1575","6300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","2","0","0","0","0","0","0","0","0","0","15" +"5184","-1","","","","","Filled Crystal Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5185","-1","","","","","Crystal Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5186","-1","","","","","Partially Filled Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5187","-1","","","","","Rhahk'Zor's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1081","5407","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","20","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5188","-1","","","","","Filled Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5189","-1","","","","","Glowing Fruit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5190","-1","","","","","Shimmering Frond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5191","-1","","","","","Cruel Barb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2964","14822","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"5192","-1","","","","","Thief's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1803","9015","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","22","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","17" +"5193","-1","","","","","Cape of the Brotherhood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","3","0","0","0","0","0","0","0","0","20" +"5194","-1","","","","","Taskmaster Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3079","15399","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","8","0","0","0","0","0","0","0","0","18" +"5195","-1","","","","","Gold-flecked Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1823","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","3","0","0","0","0","0","0","0","0","17" +"5196","-1","","","","","Smite's Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1830","9154","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","22","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","1","1","0","0","0","0","0","0","0","17" +"5197","-1","","","","","Cookie's Tenderizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1597","7989","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","21","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","16" +"5198","-1","","","","","Cookie's Stirring Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1660","8301","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","22","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","17" +"5199","-1","","","","","Smelting Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","804","4024","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","4","0","0","0","0","0","0","0","0","16" +"5200","-1","","","","","Impaling Harpoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2323","11615","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","22","-1","0","0","27","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","20" +"5201","-1","","","","","Emberstone Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3161","15809","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","5","8","0","0","0","0","0","0","0","18" +"5202","-1","","","","","Corsair's Overshirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1147","5737","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","5","0","0","0","0","0","0","0","0","19" +"5203","-1","","","","","Flatland Prowler Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5204","-1","","","","","Bloodfeather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5205","-1","","","","","Sprouted Frond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5206","-1","","","","","Bogling Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5207","-1","","","","","Opaque Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1081","5406","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","20","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","15" +"5208","-1","","","","","Smoldering Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","668","3340","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","20","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5209","-1","","","","","Gloom Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","771","3855","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","21","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5210","-1","","","","","Burning Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1161","5808","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5211","-1","","","","","Dusk Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1166","5830","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","25","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5212","-1","","","","","Blazing Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","672","3361","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","17","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","12" +"5213","-1","","","","","Scorching Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5218","26093","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","35","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","30" +"5214","-1","","","","","Wand of Eventide","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3935","19678","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","32","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","27" +"5215","-1","","","","","Ember Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8656","43281","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","41","-1","0","5253","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","36" +"5216","-1","","","","","Umbral Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11821","59109","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","45","-1","0","5262","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","40" +"5217","-1","","","","","Tainted Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5218","-1","","","","","Cleansed Timberling Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5219","-1","","","","","Inscribed Bark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5220","-1","","","","","Gnarlpine Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5221","-1","","","","","Melenas' Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5222","-1","","","","","Deprecated Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","23" +"5223","-1","","","","","Empty Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1026","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5226","-1","","","","","Deprecated Conjured Mana Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5227","-1","","","","","Empty Mana Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1042","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5228","-1","","","","","Deprecated Empty Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5229","-1","","","","","Empty Greater Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5230","-1","","","","","Deprecated Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","21" +"5231","-1","","","","","Deprecated Greater Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5232","-1","","","","","Minor Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5233","-1","","","","","Stone of Relu","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5234","-1","","","","","Flagongut's Fossil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5235","-1","","","","","Alchemist's Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","206","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","7","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5236","-1","","","","","Combustible Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2878","14394","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","29" +"5237","-1","","","","","Mind-numbing Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5238","-1","","","","","Pitchwood Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7145","35727","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","45","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5239","-1","","","","","Blackbone Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7746","38731","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","46","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","41" +"5240","-1","","","","","Torchlight Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1244","6221","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","21","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5241","-1","","","","","Dwarven Flamestick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","821","4105","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5242","-1","","","","","Cinder Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","623","3115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","16","-1","0","0","11","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5243","-1","","","","","Firebelcher","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","20","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","15" +"5244","-1","","","","","Consecrated Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3465","17325","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","30","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5245","-1","","","","","Summoner's Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5091","25458","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","34","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","29" +"5246","-1","","","","","Excavation Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3490","17450","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","30","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5247","-1","","","","","Rod of Sorrow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7961","39806","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","39","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5248","-1","","","","","Flash Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6849","34245","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","37","-1","0","0","27","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5249","-1","","","","","Burning Sliver","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8658","43292","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","40","-1","0","0","29","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5250","-1","","","","","Charred Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2646","13233","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5251","-1","","","","","Phial of Scrying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5252","-1","","","","","Wand of Decay","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1175","5877","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","21","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5253","-1","","","","","Goblin Igniter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7952","39761","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","46","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5254","-1","","","","","Rugged Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","308","1544","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5255","-1","","","","","Quilboar Tomahawk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3426","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","15","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"5256","-1","","","","","Kovork's Rattle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7227","36136","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","5","0","0","0","0","0","0","0","0","30" +"5257","-1","","","","","Dark Hooded Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3159","15799","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","4","0","0","0","0","0","0","0","0","32" +"5258","-1","","","","","Monster - Bow, Black","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5259","-1","","","","","Monster - Bow, Red","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5260","-1","","","","","Monster - Bow, Brown","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5261","-1","","","","","Monster - Bow, Gray","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5262","-1","","","","","Monster - Bow, Dark Brown","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5263","-1","","","","","Pocket Lint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5264","-1","","","","","Complimentary Beer Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5265","-1","","","","","Watered-down Beer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5266","-1","","","","","Eye of Adaegus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11157","44630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","5","6","0","0","0","0","0","0","0","48" +"5267","-1","","","","","Scarlet Kris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","59851","299255","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","10","0","0","0","0","0","0","0","0","58" +"5268","-1","","","","","Cracked Silithid Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","218","875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5269","-1","","","","","Silithid Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5270","-1","","","","","Death Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5271","-1","","","","","Scaber Stalk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5272","-1","","","","","Insane Scribbles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5273","-1","","","","","Mathystra Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5274","-1","","","","","Rose Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1003","5018","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"5275","-1","","","","","Binding Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","879","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5276","-1","","","","","Monster - Staff, 3 Piece Taped Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5277","-1","","","","","Monster - Staff, Metal /w Spike Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5278","-1","","","","","Monster - Dagger, Bowie Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5279","-1","","","","","Harpy Skinner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1436","7184","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","20","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5280","-1","","","","","Monster - Dagger, Gold Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5281","-1","","","","","Monster - Dagger, Broad/Flat Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5282","-1","","","","","Monster - Dagger, Fang Hook Curve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5283","-1","","","","","Monster - Dagger, Ornate Spikey Base","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5284","-1","","","","","Monster - Dagger, Jeweled Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5285","-1","","","","","Monster - Dagger, Curvey Blue Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5286","-1","","","","","Monster - Axe, One-Handed Double Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5287","-1","","","","","Monster - Axe, 2H Large Double Bladed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","40","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5288","-1","","","","","Monster - Axe, 2H Rev. Bearded Single Bladed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5289","-1","","","","","Monster - Axe, 2H Single Bladed /w Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5291","-1","","","","","Monster - Mace, Jeweled Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5292","-1","","","","","Monster - Mace2H, Basic Wooden Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5293","-1","","","","","Monster - Mace2H, Wood Handle Spiked Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5294","-1","","","","","Deprecated Hands of the New Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5295","-1","","","","","Deprecated Hands of the Crescent Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5296","-1","","","","","Deprecated Hands of the Quarter Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5297","-1","","","","","Deprecated Hands of the Gibbous Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5298","-1","","","","","Deprecated Hands of the Full Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5299","-1","","","","","Gloves of the Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1795","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5300","-1","","","","","Monster - Mace2H, Wood Handle Large Spiked Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5301","-1","","","","","Monster - Mace2H, Huge Wooden Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5302","-1","","","","","Cobalt Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4647","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5303","-1","","","","","Monster - Staff, Wooden Handle Rounded Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5304","-1","","","","","Monster - Staff, Large Metal Shaft","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5305","-1","","","","","Monster - Sword, Broadsword Silver Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5306","-1","","","","","Wind Rider Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","8554","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","20","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"5307","-1","","","","","Deprecated Skipper's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","206","1030","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5308","-1","","","","","Deprecated Deckhand Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","689","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5309","-1","","","","","Privateer Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","5190","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","20","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"5310","-1","","","","","Sea Dog Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2778","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"5311","-1","","","","","Buckled Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","1","0","0","0","0","0","0","0","0" +"5312","-1","","","","","Riveted Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","419","2099","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","1","0","0","0","0","0","0","0","0","0" +"5313","-1","","","","","Totemic Clan Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5314","-1","","","","","Boar Hunter's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2643","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5315","-1","","","","","Timberland Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","1069","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5316","-1","","","","","Barkshell Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1355","6778","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","7","0","0","0","0","0","0","0","0","0" +"5317","-1","","","","","Dry Moss Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1360","6803","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","2","0","0","0","0","0","0","0","0","0" +"5318","-1","","","","","Zhovur Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1789","8946","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","20","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"5319","-1","","","","","Bashing Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","323","1615","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5320","-1","","","","","Padded Lamellar Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","372","1862","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5321","-1","","","","","Elegant Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7423","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5322","-1","","","","","Demolition Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4016","20081","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","0","0","0","0","0","0","0","0","0","0" +"5323","-1","","","","","Everglow Lantern","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5324","-1","","","","","Engineer's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","776","3881","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","16","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5325","-1","","","","","Welding Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","498","2493","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5326","-1","","","","","Flaring Baton","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","776","3880","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","18","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5327","-1","","","","","Greasy Tinker's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2595","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5328","-1","","","","","Cinched Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1028","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5329","-1","","","","","Cat Figurine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5330","-1","","","","","Elven Cup Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5331","-1","","","","","OLDBlackfathom MAGIC Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","236","945","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5332","-1","","","","","Glowing Cat Figurine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5333","-1","","","","","Deprecated Mathystra Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5334","-1","","","","","99-Year-Old Port","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5335","-1","","","","","A Sack of Coins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5336","-1","","","","","Grell Earring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5337","-1","","","","","Wayfaring Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167","836","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5338","-1","","","","","Ancient Moonstone Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5339","-1","","","","","Serpentbloom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5340","-1","","","","","Cauldron Stirrer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","919","4596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"5341","-1","","","","","Spore-covered Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1844","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5342","-1","","","","","Raptor Punch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","88","355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5343","-1","","","","","Barkeeper's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","2310","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5344","-1","","","","","Pointed Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562","2812","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"5345","-1","","","","","Stonewood Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3529","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","14","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5346","-1","","","","","Orcish Battle Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2125","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"5347","-1","","","","","Pestilent Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3142","15713","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5348","-1","","","","","Worn Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5349","-1","","","","","Conjured Muffin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5350","-1","","","","","Conjured Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5351","-1","","","","","Bounty Hunter's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","403","1615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5352","-1","","","","","Book: The Powers Below","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","968","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5353","-1","","","","","Message for Elissa Starbreeze","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5354","-1","","","","","Letter to Delgren","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5355","-1","","","","","Beastmaster's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","947","4738","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","5","0","0","0","0","0","0","0","0","0" +"5356","-1","","","","","Branding Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2594","12971","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","27","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5357","-1","","","","","Ward of the Vale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11107","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","5","0","0","0","0","0","0","0","0","0" +"5358","-1","","","","","Deprecated Whisperwind Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","626","3134","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5359","-1","","","","","Lorgalis Manuscript","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","794","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5360","-1","","","","","Highborne Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5361","-1","","","","","Fishbone Toothpick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5362","-1","","","","","Chew Toy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5363","-1","","","","","Folded Handkerchief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5364","-1","","","","","Dry Salt Lick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5365","-1","","","","","Deprecated Pickpocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5366","-1","","","","","Glowing Soul Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5367","-1","","","","","Primitive Rock Tool","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5368","-1","","","","","Empty Wallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","48","195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5369","-1","","","","","Gnawed Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","32","130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5370","-1","","","","","Bent Spoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5371","-1","","","","","Piece of Coral","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","48","192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5372","-1","The eyes grow brightly on this skull.","","","","Deprecated Glowing Shrunken Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5373","-1","","","","","Lucky Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","72","290","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5374","-1","","","","","Small Pocket Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5375","-1","","","","","Scratching Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5376","-1","","","","","Broken Mirror","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","66","265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5377","-1","","","","","Scallop Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","57","230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5378","-1","STONE HENDGE","","","","Shane Test (DELETE ME)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5379","-1","","","","","Boot Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","8","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","3" +"5380","-1","A sealed letter for Elissa Starbreeze in Auberdine.","","","","Sealed Letter to Elissa","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5381","-1","A sealed letter for Balthule Shadowstrike.","","","","Sealed Letter to Balthule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5382","-1","","","","","Anaya's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5383","-1","","","","","Athrikus Narassin's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","8","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5384","-1","","","","","Deprecated Tower of Althalaxx Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5385","-1","","","","","Crawler Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5386","-1","","","","","Fine Moonstalker Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5387","-1","","","","","Enchanted Moonstalker Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5388","-1","","","","","Ran Bloodtooth's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5389","-1","","","","","Corrupted Furbolg Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5390","-1","","","","","Fandral's Message","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5391","-1","","","","","Rare Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5392","-1","","","","","Thistlewood Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5393","-1","","","","","Thistlewood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5394","-1","","","","","Archery Training Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5395","-1","","","","","Woodland Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5396","-1","","","","","Key to Searing Gorge","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5397","-1","","","","","Defias Gunpowder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5398","-1","","","","","Canopy Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5399","-1","","","","","Tracking Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5400","-1","","","","","Blood of Cobrahn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5401","-1","","","","","Blood of Pythas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5402","-1","","","","","Blood of Anacondra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5403","-1","","","","","Blood of Serpentis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5404","-1","","","","","Serpent's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2345","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5405","-1","","","","","Draped Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5406","-1","","","","","Empty Minor Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5407","-1","","","","","Deprecated Empty Lesser Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5408","-1","","","","","Deprecated Minor Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5409","-1","","","","","Deprecated Lesser Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","9" +"5410","-1","","","","","OLDCeremonial Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1104","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5411","32","","","","","Winterhoof Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5412","-1","","","","","Thresher Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5413","-1","","","","","Moonstalker Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5414","-1","","","","","Grizzled Scalp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5415","32","","","","","Thunderhorn Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5416","32","","","","","Wildmane Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5417","-1","","","","","Weapon of Massive Destruction (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5418","-1","","","","","Weapon of Mass Destruction (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5419","-1","","","","","Feral Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","68","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5420","-1","","","","","Banshee Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","227","1138","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5421","-1","","","","","Fiery Blaze Enchantment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5422","-1","","","","","Brambleweed Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","692","3460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"5423","-1","","","","","Boahn's Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2084","10421","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","20","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","4","0","0","0","0","0","0","0","0","15" +"5424","-1","","","","","Ancient Statuette","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5425","-1","","","","","Runescale Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","419","2099","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","15" +"5426","-1","","","","","Serpent's Kiss","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1686","8431","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","20","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","15" +"5427","-1","","","","","Crude Pocket Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","147","590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5428","-1","How To Serve Man","","","","An Exotic Cookbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","322","1290","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5429","-1","","","","","A Pretty Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5430","-1","","","","","Intricate Bauble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","277","1110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5431","-1","","","","","Empty Hip Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5432","-1","","","","","Hickory Pipe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","330","1320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5433","-1","","","","","Rag Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","138","555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5434","-1","","","","","Deprecated Pickpocket Water 31-40","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","182","730","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5435","-1","","","","","Shiny Dinglehopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","272","1090","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5436","-1","","","","","Deprecated Pickpocket Undead 41-50","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","303","1215","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5437","-1","","","","","Bathran's Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5438","-1","","","","","OLDPlague Vials","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5439","-1","","","","","Small Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5440","-1","","","","","Bottle of Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5441","-1","","","","","Small Shot Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5442","-1","","","","","Head of Arugal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5443","-1","","","","","Gold-plated Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1067","5335","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","2","0","0","0","0","0","0","0","0","15" +"5444","-1","","","","","Miner's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","548","2740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","14" +"5445","-1","","","","","Ring of Zoram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5446","-1","","","","","Broken Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5447","-1","","","","","Damaged Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5448","-1","","","","","Fractured Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","17","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5449","-1","","","","","Deprecated Cracked Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5450","-1","","","","","Deprecated Busted Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","21","85","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5451","-1","","","","","Crushed Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5453","-1","","","","","Deprecated Shattered Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5454","-1","","","","","Deprecated Split Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","26","105","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5455","-1","This paper is covered in glowing runes.","","","","Divined Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5456","-1","The paper is blank save for a few runes. You'll need bracers from the elementals to use it.","","","","Divining Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5457","-1","","","","","Severed Voodoo Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5458","-1","","","","","Dirtwood Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","138","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5459","-1","","","","","Defender Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","472","2361","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","11","0","0","0","0","21","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5460","-1","","","","","Orendil's Cure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5461","-1","","","","","Branch of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5462","-1","","","","","Dartol's Rod of Transformation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5463","-1","","","","","Glowing Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5464","-1","","","","","Iron Shaft","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5465","-1","","","","","Small Spider Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5466","-1","","","","","Scorpid Stinger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","32","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5467","-1","","","","","Kodo Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5468","-1","","","","","Soft Frenzy Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5469","-1","","","","","Strider Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5470","-1","","","","","Thunder Lizard Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5471","-1","","","","","Stag Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5472","-1","","","","","Kaldorei Spider Kabob","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5473","-1","","","","","Scorpid Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5474","-1","","","","","Roasted Kodo Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5475","-1","","","","","Wooden Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5476","-1","","","","","Fillet of Frenzy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5477","-1","","","","","Strider Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","74","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5478","-1","","","","","Dig Rat Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5479","-1","","","","","Crispy Lizard Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5480","-1","","","","","Lean Venison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5481","-1","","","","","Satyr Horns","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5482","-1","","","","","Recipe: Kaldorei Spider Kabob","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5483","-1","","","","","Recipe: Scorpid Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","185","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5484","-1","","","","","Recipe: Roasted Kodo Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","185","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5485","-1","","","","","Recipe: Fillet of Frenzy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5486","-1","","","","","Recipe: Strider Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5487","-1","","","","","Recipe: Dig Rat Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5488","-1","","","","","Recipe: Crispy Lizard Tail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5489","-1","","","","","Recipe: Lean Venison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5490","-1","","","","","Wrathtail Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5491","-1","","","","","Monster - Mace2H, Large Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5493","-1","","","","","Elune's Tear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5494","-1","","","","","Handful of Stardust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5495","-1","","","","","Monster - Mace2H, Large Metal (1H, Special)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5498","-1","","","","","Small Lustrous Pearl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5500","-1","","","","","Iridescent Pearl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5502","-1","","","","","Monster - Sword2H, Broadsword (1H, Special)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5503","-1","","","","","Clam Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5504","-1","","","","","Tangy Clam Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5505","-1","The journal is waterlogged, but in otherwise good condition.","","","","Teronis' Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5506","-1","","","","","Beady Eye Stalk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5507","-1","","","","","Ornate Spyglass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5508","-1","","","","","Fallen Moonstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5509","-1","","","","","Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5510","-1","","","","","Greater Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5511","-1","","","","","Lesser Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5512","-1","","","","","Minor Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5513","-1","","","","","Mana Jade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5514","-1","","","","","Mana Agate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"5515","-1","","","","","Deprecated Iron Pummel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5516","-1","","","","","Threshadon Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1589","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","16","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","11" +"5517","-1","A reagent for mage spells.","","","","Tiny Bronze Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5518","-1","A reagent for mage spells.","","","","Tiny Iron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5519","-1","","","","","Iron Pommel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5520","-1","","","","","Velinde's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5521","-1","","","","","Velinde's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5522","-1","","","","","Spellstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","31" +"5523","-1","","","","","Small Barnacled Clam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","60","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5524","-1","","","","","Thick-shelled Clam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5525","-1","","","","","Boiled Clams","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5526","-1","","","","","Clam Chowder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5527","-1","","","","","Goblin Deviled Clams","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5528","-1","","","","","Recipe: Clam Chowder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5529","-1","","","","","Tomb Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5530","-1","","","","","Blinding Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5531","-1","","","","","Deprecated Brakgul Deathbringer's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5532","-1","","","","","Monster - Hot Iron Poker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5533","-1","","","","","Ilkrud Magthrull's Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5534","-1","","","","","Parker's Lunch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5535","-1","","","","","Compendium of the Fallen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","572","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5536","-1","","","","","Mythology of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5537","-1","","","","","Sarilus Foulborne's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5538","-1","","","","","Vorrel's Wedding Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5539","-1","Sealed by Brother Anton of the Scarlet Crusade","","","","Letter of Commendation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5540","-1","","","","","Pearl-handled Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10539","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","18" +"5541","-1","","","","","Iridescent Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3693","18469","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","3","0","0","0","0","0","0","0","0","23" +"5542","-1","","","","","Pearl-clasped Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","14" +"5543","-1","","","","","Plans: Iridescent Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","164","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5544","-1","","","","","Dal Bloodclaw's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5545","-1","","","","","Fast Test Polearm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8179","40896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5546","-1","","","","","Fast Test Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21062","105311","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5547","-1","","","","","Reconstructed Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5548","-1","","","","","Fast Test Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21212","106061","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5549","-1","","","","","Fast Test Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15763","78816","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5550","-1","","","","","Fast Test Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19332","96662","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"5551","-1","","","","","Fast Test 1H Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15885","79429","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5552","-1","","","","","Fast Test 2H Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7792","38960","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5553","-1","","","","","Fast Test 1H Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16006","80034","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5554","-1","","","","","Fast Test 2H Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7851","39256","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5555","-1","","","","","Fast Test 1H Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16129","80648","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5556","-1","","","","","Fast Test 2H Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7911","39555","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5557","-1","","","","","Fast Test Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7940","39701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5558","-1","","","","","Fast Test Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7970","39851","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5559","-1","","","","","Fast Test Thrown","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","43","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","1" +"5560","-1","","","","","Fast Test Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1777","8888","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","33","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5561","-1","","","","","Fast Test Generic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","100","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5562","-1","","","","","Voidstone (Deprecated)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5563","-1","","","","","Succubi Stone (Deprecated)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5564","-1","","","","","Felstone (Deprecated)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5565","-1","","","","","Infernal Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5566","-1","","","","","Broken Antler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","105","420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5567","-1","","","","","Silver Hook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","196","785","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5568","-1","","","","","Smooth Pebble","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","18","-1","0","0","4","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5569","-1","","","","","Seaweed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","203","815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5570","-1","","","","","Deepmoss Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5571","-1","","","","","Small Black Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5572","-1","","","","","Small Green Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5573","-1","","","","","Green Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5574","-1","","","","","White Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5575","-1","","","","","Large Green Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5576","-1","","","","","Large Brown Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5577","-1","","","","","Plans: Rough Bronze Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5578","-1","","","","","Plans: Silvered Bronze Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","164","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5579","-1","","","","","Militia Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5580","-1","","","","","Militia Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5581","-1","","","","","Smooth Walking Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5582","-1","","","","","Stonetalon Sap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5583","-1","","","","","Fey Dragon Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5584","-1","","","","","Twilight Whisker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5585","-1","","","","","Courser Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5586","-1","","","","","Thistlewood Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","130","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5587","-1","","","","","Thornroot Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","13","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"5588","-1","","","","","Lydon's Toxin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5589","-1","","","","","Moss-covered Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","206","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5590","-1","","","","","Cord Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","179","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5591","-1","","","","","Rain-spotted Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5592","-1","","","","","Shackled Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5593","-1","","","","","Crag Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","582","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5594","-1","","","","","Letter to Jin'Zil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5595","-1","","","","","Thicket Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1177","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","11","-1","0","0","16","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5596","-1","","","","","Ashwood Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141","708","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","11","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"5597","-1","","","","","Monster - Glaive - 2 Blade Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5598","-1","","","","","Monster - Glaive - 3 Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5599","-1","","","","","Monster - Glaive - 4 Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5600","-1","","","","","Monster - Claw - Bear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5601","-1","","","","","Hatched Egg Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5602","-1","","","","","Sticky Spider Webbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5603","-1","","","","","Wizbang's Gunnysack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5604","-1","","","","","Elven Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","380","1901","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","13","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5605","-1","","","","","Pruning Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","750","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5606","-1","","","","","Gardening Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","115","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5607","-1","","","","","Deprecated Graystone Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","187","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5608","-1","","","","","Living Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3463","17315","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"5609","-1","","","","","Steadfast Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","447","2235","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"5610","-1","","","","","Gustweald Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5611","-1","","","","","Tear of Grief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","452","1810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","-3","0","0","0","0","0","0","0","0","0" +"5612","-1","","","","","Ivy Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","363","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5613","-1","","","","","Staff of the Purifier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2635","13177","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","23","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","0" +"5614","-1","","","","","Seraph's Strike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6147","30735","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","54","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","10","0","0","0","0","0","0","0","0","0" +"5615","-1","","","","","Woodsman Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1776","8883","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","2","0","0","0","0","0","0","0","0","0" +"5616","-1","","","","","Gutwrencher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22738","113690","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","47","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","42" +"5617","-1","","","","","Vagabond Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1235","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","1","0","0","0","0","0","0","0","0","0" +"5618","-1","","","","","Scout's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5619","-1","","","","","Jade Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5620","-1","","","","","Vial of Innocent Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5621","-1","","","","","Tourmaline Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5622","-1","","","","","Clergy Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","556","2225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5623","-1","","","","","Amethyst Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5624","-1","","","","","Circlet of the Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2926","14634","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","3","10","0","0","0","0","0","0","0","33" +"5625","-1","","","","","Deprecated Band of the Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","330","1650","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5626","-1","","","","","Skullchipper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1717","8587","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","20","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","1","0","0","0","0","0","0","0","0","0" +"5627","-1","","","","","Relic Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6896","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","20","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5628","-1","","","","","Zamah's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5629","-1","","","","","Hammerfist Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1736","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5630","-1","","","","","Windfelt Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","348","1743","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5631","-1","","","","","Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5632","-1","","","","","Cowardly Flight Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5633","-1","","","","","Great Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"5634","-1","","","","","Free Action Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5635","-1","","","","","Sharp Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5636","-1","","","","","Delicate Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5637","-1","","","","","Large Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5638","-1","","","","","Toxic Fogger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5639","-1","","","","","Filled Jade Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5640","-1","","","","","Recipe: Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","171","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5641","-1","","","","","Recipe: Cowardly Flight Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","171","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5642","-1","","","","","Recipe: Free Action Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","171","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5643","-1","","","","","Recipe: Great Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","171","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5644","-1","","","","","Tome of Conjure Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5645","-1","","","","","Filled Tourmaline Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5646","-1","","","","","Vial of Blessed Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5647","-1","","","","","Tome of Blink","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5648","-1","","","","","Tome of Frost Armor III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5649","-1","","","","","Tome of Blizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5650","-1","","","","","Tome of Conjure Water III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5651","-1","","","","","Deprecated Dull Razormane Backstabber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5652","-1","","","","","Deprecated Cracked Razormane Wand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5653","-1","","","","","Deprecated Broken Razormane War Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5654","-1","","","","","Instant Toxin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","24","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5655","1101","","","","","Chestnut Mare Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5656","1101","","","","","Brown Horse Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5657","-1","","","","","Recipe: Instant Toxin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","40","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5658","-1","","","","","Libram: Seal of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5659","-1","","","","","Smoldering Embers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5660","-1","","","","","Libram: Seal of Righteousness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5661","-1","","","","","Libram: Seal of Righteousness II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5662","-1","","","","","Libram: Seal of Righteousness III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5663","690","","","","","Horn of the Red Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5664","-1","","","","","Corroded Shrapnel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5665","690","","","","","Horn of the Dire Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5666","-1","","","","","Libram: Seal of Wrath II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5667","-1","","","","","Libram: Seal of Wisdom II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5668","690","","","","","Horn of the Brown Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5669","-1","","","","","Dust Devil Debris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5670","-1","","","","","Libram: Seal of Wrath IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"5671","-1","","","","","Libram: Seal of Might III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5672","-1","","","","","Libram: Exorcism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5673","-1","","","","","Libram: Exorcism II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5674","-1","","","","","Libram: Exorcism III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5675","-1","","","","","Crystalized Scales","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5676","-1","","","","","Libram: Sense Undead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5677","-1","","","","","Libram: Turn Undead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5678","-1","","","","","Libram: Seal of Sacrifice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5679","-1","","","","","Libram: Seal of Wisdom III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5680","-1","","","","","Libram: Seal of Protection II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5681","-1","","","","","Corrosive Sap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5682","-1","","","","","Libram: Turn Undead II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5683","-1","","","","","Libram: Divine Shield II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"5684","-1","","","","","Libram: Seal of Salvation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5685","-1","","","","","Libram: Redemption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5686","-1","","","","","Ordanus' Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5687","-1","","","","","Gatekeeper's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5688","-1","","","","","Test Language Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","10","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5689","-1","","","","","Sleepers' Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5690","-1","","","","","Claw Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5691","-1","","","","","Barrow Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5692","-1","","","","","Remote Detonator (Red)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5693","-1","","","","","Remote Detonator (Blue)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5694","-1","","","","","NG-5 Explosives (Red)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5695","-1","","","","","NG-5 Explosives (Blue)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5696","-1","","","","","Tablet of Shock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5697","-1","","","","","Tablet of Healing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5698","-1","","","","","Tablet of Lightning Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5699","-1","","","","","Tablet of Ghost Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5700","-1","","","","","Tablet of Healing Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5701","-1","","","","","Tablet of Sentry Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5702","-1","","","","","Tablet of Agitating Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5703","-1","","","","","Tablet of Thunderclap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5704","-1","","","","","Tablet of Water Breathing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5705","-1","","","","","Tablet of Healing Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5706","-1","","","","","Tablet of Serpent Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5707","-1","","","","","Tablet of Far Sight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5708","-1","","","","","Tablet of Ethereal Form","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5709","-1","","","","","Tablet of Water Walking","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5710","-1","","","","","Tablet of Healing Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5711","-1","","","","","Tablet of Ghost Wolf II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5712","-1","","","","","Tablet of Serpent Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5713","-1","","","","","Tablet of Thunderbolt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5714","-1","","","","","Tablet of Ensnaring Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"5715","-1","","","","","Tablet of Lightning Storm III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5716","-1","","","","","Tablet of Restoration VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5717","-1","","","","","Venture Co. Letters","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5718","-1","","","","","Venture Co. Engineering Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5719","-1","","","","","Grimoire of Life Drain II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5720","-1","","","","","Grimoire of Curse of Mannoroth II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5721","-1","","","","","Grimoire of Create Spellstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"5722","-1","","","","","Grimoire of Siphon Mana II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5723","-1","","","","","Grimoire of Curse of Sargeras III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5724","-1","","","","","Grimoire of Curse of Tongues","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5725","-1","","","","","Grimoire of Pestilence III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5726","-1","","","","","Grimoire of Create Greater Bloodstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5727","-1","","","","","Grimoire of Mana Funnel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5728","-1","","","","","Grimoire of Rain of Fire II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5729","-1","","","","","Grimoire of Fear III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5730","-1","","","","","Book of Rejuvenation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5731","-1","","","","","Scroll of Messaging","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5732","-1","","","","","NG-5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5733","-1","","","","","Unidentified Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5734","-1","","","","","Super Reaper 6000 Blueprints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5735","-1","","","","","Sealed Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5736","-1","","","","","Gerenzo's Mechanical Arm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5737","-1","","","","","Covert Ops Plans: Alpha & Beta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5738","-1","","","","","Covert Ops Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5739","-1","","","","","Barbaric Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2738","13694","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5740","-1","","","","","Red Fireworks Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5741","-1","","","","","Rock Chip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","111","445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5742","-1","","","","","Gemstone Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10770","53853","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","40","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","5","0","5","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","35" +"5743","-1","","","","","Prismstone Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1803","7215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","0","0","0","0","0","0","0","0","0","35" +"5744","-1","","","","","Pale Skinner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","386","1933","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","12","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","7" +"5745","-1","","","","","Monster - Trident, Wood Handle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5746","-1","","","","","Monster - Trident, Copper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5747","-1","","","","","Monster - Trident, Ornate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5748","-1","","","","","Centaur Longbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3046","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","16","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","11" +"5749","-1","","","","","Scythe Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2664","13321","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","23","-1","0","0","43","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","6","0","0","0","0","0","0","0","0","18" +"5750","-1","","","","","Warchief's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","641","3208","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","2","0","0","0","0","0","0","0","0","18" +"5751","-1","","","","","Webwing Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1028","5140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","20" +"5752","-1","","","","","Wyvern Tailspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3109","15548","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","21" +"5753","-1","","","","","Ruffled Chaplet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1884","9423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","26" +"5754","-1","","","","","Wolfpack Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2538","10155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","3","0","0","0","0","0","0","0","0","26" +"5755","-1","","","","","Onyx Shredder Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4127","20638","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","10","0","0","0","0","0","0","0","0","30" +"5756","-1","","","","","Sliverblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10026","50134","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","37","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"5757","-1","","","","","Hardwood Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1363","6816","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5758","-1","","","","","Mithril Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5759","-1","","","","","Thorium Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5760","-1","","","","","Eternium Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5761","-1","","","","","Anvilmar Sledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","153","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5762","-1","","","","","Red Linen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5763","-1","","","","","Red Woolen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5764","-1","","","","","Green Silk Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5765","-1","","","","","Black Silk Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5766","-1","","","","","Lesser Wizard's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1338","6691","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","5","0","0","0","0","0","0","0","0","22" +"5767","-1","","","","","Violet Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","221","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5768","-1","","","","","Gnome Race Ticket","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5769","-1","","","","","Goblin Race Ticket","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5770","-1","","","","","Robes of Arcana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","9037","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","7","0","0","0","0","0","0","0","0","25" +"5771","-1","","","","","Pattern: Red Linen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","197","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5772","-1","","","","","Pattern: Red Woolen Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","197","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5773","-1","","","","","Pattern: Robes of Arcana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","197","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5774","-1","","","","","Pattern: Green Silk Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5775","-1","","","","","Pattern: Black Silk Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","197","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5776","-1","","","","","Elder's Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5777","-1","","","","","Brave's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5778","-1","","","","","Primitive Walking Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5779","-1","","","","","Forsaken Bastard Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5780","-1","","","","","Murloc Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","260","1303","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"5781","-1","","","","","Murloc Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3008","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","14" +"5782","-1","","","","","Thick Murloc Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3211","16055","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","8","0","0","0","0","0","0","0","0","29" +"5783","-1","","","","","Murloc Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2316","11581","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","33" +"5784","-1","","","","","Slimy Murloc Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5785","-1","","","","","Thick Murloc Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5786","-1","","","","","Pattern: Murloc Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5787","-1","","","","","Pattern: Murloc Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","165","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5788","-1","","","","","Pattern: Thick Murloc Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5789","-1","","","","","Pattern: Murloc Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5790","-1","","","","","Lonebrow's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5791","-1","","","","","Henrig Lonebrow's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1100","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"5792","-1","","","","","Razorflank's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5793","-1","","","","","Razorflank's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5794","-1","","","","","Salty Scorpid Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5795","-1","","","","","Hardened Tortoise Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5796","-1","","","","","Encrusted Tail Fin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5797","-1","","","","","Indurium Flake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5798","-1","","","","","Rocket Car Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5799","-1","","","","","Kravel's Parts Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5800","-1","","","","","Kravel's Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5801","-1","","","","","Kraul Guano","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5802","-1","","","","","Delicate Car Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5803","-1","","","","","Speck of Dream Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5804","-1","","","","","Goblin Rumors","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5805","-1","","","","","Heart of Zeal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5806","-1","","","","","Fool's Stout","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5807","-1","","","","","Fool's Stout Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5808","-1","","","","","Pridewing Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5809","-1","","","","","Highperch Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5810","-1","","","","","Fresh Carcass","1","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5811","-1","","","","","Frostmaw's Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5812","-1","","","","","Robes of Antiquity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1129","5645","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","8","0","0","0","0","0","0","0","0","0" +"5813","-1","","","","","Emil's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7087","35439","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","32","-1","0","0","53","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","3","0","0","0","0","0","0","0","0","0" +"5814","-1","","","","","Snapbrook Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2351","11756","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","9","0","0","0","0","0","0","0","0","0" +"5815","-1","","","","","Glacial Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5871","29355","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","31","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5816","-1","","","","","Light of Elune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","405","1620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5817","-1","","","","","Lunaris Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3226","16134","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"5818","-1","","","","","Moonbeam Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3239","16197","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5819","-1","","","","","Sunblaze Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3201","16009","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","185","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","28" +"5820","-1","","","","","Faerie Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1622","8114","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","0","0","0","0","0","0","0","0","0" +"5821","-1","","","","","Darkstalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","900","4500","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","5","0","0","0","0","0","0","0","0","0" +"5822","-1","","","","","Hedgeseed Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3613","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"5823","-1","","","","","Poisonous Mushroom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5824","-1","","","","","Tablet of Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5825","-1","","","","","Treshala's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5826","-1","","","","","Kravel's Scheme","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","439","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5827","-1","","","","","Fizzle Brassbolts' Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5828","-1","","","","","Ring of Uber Resists (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","315","315","315","315","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"5829","-1","","","","","Razor-sharp Beak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","804","3216","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5830","-1","","","","","Kenata's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5831","-1","","","","","Fardel's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5832","-1","","","","","Marcel's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5833","-1","","","","","Indurium Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5834","-1","","","","","Mok'Morokk's Snuff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5835","-1","","","","","Mok'Morokk's Grog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5836","-1","","","","","Mok'Morokk's Strongbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5837","-1","","","","","Steelsnap's Rib","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5838","-1","","","","","Kodo Skin Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5839","-1","","","","","Journal Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5840","-1","","","","","Searing Tongue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5841","-1","","","","","Searing Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5842","-1","","","","","Unrefined Ore Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5843","-1","","","","","Grenka's Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5844","-1","","","","","Fragments of Rok'Alim","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5845","-1","","","","","Flank of Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5846","-1","","","","","Korran's Sealed Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5847","-1","","","","","Mirefin Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5848","-1","","","","","Hollow Vulture Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5849","-1","","","","","Crate of Crash Helmets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5850","-1","","","","","Belgrom's Sealed Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5851","-1","","","","","Cozzle's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5852","-1","","","","","Fuel Regulator Blueprints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5853","-1","","","","","Intact Silithid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5854","-1","","","","","Silithid Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5855","-1","","","","","Silithid Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5856","-1","","","","","Monster - Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"5857","-1","Open for a prize!","","","","Gnome Prize Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5858","-1","Open for a prize!","","","","Goblin Prize Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5859","-1","","","","","Party Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5860","-1","","","","","Legacy of the Aspects","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","447","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5861","-1","","","","","Beginnings of the Undead Threat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","669","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5862","-1","","","","","Seaforium Booster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5863","-1","","","","","Guild Charter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5864","1101","","","","","Gray Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5865","-1","","","","","Modified Seaforium Booster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5866","-1","","","","","Sample of Indurium Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5867","-1","","","","","Etched Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5868","-1","","","","","Filled Etched Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5869","-1","","","","","Cloven Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5870","-1","","","","","Monster - Throwing Spear","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"5871","-1","","","","","Large Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","318","1275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5872","1101","","","","","Brown Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5873","1101","","","","","White Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"5874","479","","","","","Harness: Black Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5875","479","","","","","Harness: Blue Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5876","-1","","","","","Blueleaf Tuber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5877","-1","","","","","Cracked Silithid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1148","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5878","-1","","","","","Super Snuff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","92","370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5879","-1","","","","","Twilight Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5880","-1","","","","","Crate With Holes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5881","-1","","","","","Head of Kelris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5882","-1","","","","","Captain's Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5883","-1","","","","","Forked Mudrock Tongue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5884","-1","","","","","Unpopped Darkmist Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5896","-1","Stamped with the name: Muren Macfeere","","","","Theramore Guard Medallion UNUSED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5897","-1","","","","","Snufflenose Owner's Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5916","-1","NYI","","","","Gnome Camera Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5917","-1","","","","","Spy's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5918","-1","","","","","Defiant Orc Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5919","-1","","","","","Blackened Iron Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5936","-1","","","","","Animal Skin Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","99","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5937","-1","NYI","","","","Goblin Camera Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5938","-1","","","","","Pristine Crawler Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5939","-1","","","","","Sewing Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5940","-1","","","","","Bone Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","153","769","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5941","-1","","","","","Brass Scale Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","578","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5942","-1","","","","","Jeweled Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5943","-1","","","","","Rift Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","840","4202","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"5944","-1","","","","","Greaves of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5945","-1","","","","","Deadmire's Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5946","-1","","","","","Sealed Note to Elling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5947","-1","","","","","Defias Docket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5948","-1","","","","","Letter to Jorgen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5949","-1","","","","","Scrap of Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5950","-1","","","","","Reethe's Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5951","-1","","","","","Moist Towelette","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","41","165","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5952","-1","","","","","Corrupted Brain Stem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5953","-1","","","","","TEST SWORD","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24751","123758","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5954","-1","","","","","TEST SWORD 2","1","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24843","124218","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5956","-1","","","","","Blacksmith Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5957","-1","","","","","Handstitched Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","200","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","3" +"5958","-1","","","","","Fine Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4145","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","4","0","0","0","0","0","0","0","0","16" +"5959","-1","","","","","Acidic Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5960","-1","","","","","Sealed Note to Watcher Backus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5961","-1","","","","","Dark Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1089","5446","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","0","0","0","0","0","0","0","0","0","18" +"5962","-1","","","","","Guardian Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13972","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","8","0","0","0","0","0","0","0","0","27" +"5963","-1","","","","","Barbaric Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3151","15756","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","7","0","0","0","0","0","0","0","29" +"5964","-1","","","","","Barbaric Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2609","13049","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","5","0","0","0","0","0","0","0","30" +"5965","-1","","","","","Guardian Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","32" +"5966","-1","","","","","Guardian Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6873","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5967","-1","","","","","Girdle of Nobility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1045","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"5968","-1","","","","","Rugged Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","259","1295","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","10" +"5969","-1","","","","","Regent's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","781","3908","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"5970","-1","","","","","Serpent Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2092","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","18" +"5971","-1","","","","","Feathered Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1136","5681","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","21" +"5972","-1","","","","","Pattern: Fine Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","165","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5973","-1","","","","","Pattern: Barbaric Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5974","-1","","","","","Pattern: Guardian Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","165","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5975","-1","","","","","Ruffian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2664","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","18" +"5976","-1","","","","","Guild Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5996","-1","","","","","Elixir of Water Breathing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5997","-1","","","","","Elixir of Minor Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5998","-1","","","","","Stormpike's Request","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","607","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6016","-1","","","","","Wolf Heart Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6036","-1","","","","","Rogue Test Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4215","21078","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","39","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","34" +"6037","-1","","","","","Truesilver Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6038","-1","","","","","Giant Clam Scorcho","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6039","-1","","","","","Recipe: Giant Clam Scorcho","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6040","-1","","","","","Golden Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8247","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"6041","-1","","","","","Steel Weapon Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6042","-1","","","","","Iron Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6043","-1","","","","","Iron Counterweight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","164","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6044","-1","","","","","Plans: Iron Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6045","-1","","","","","Plans: Iron Counterweight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","164","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6046","-1","","","","","Plans: Steel Weapon Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6047","-1","","","","","Plans: Golden Scale Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6048","-1","","","","","Shadow Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6049","-1","","","","","Fire Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","170","680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"6050","-1","","","","","Frost Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6051","-1","","","","","Holy Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6052","-1","","","","","Nature Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6053","-1","","","","","Recipe: Holy Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","171","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6054","-1","","","","","Recipe: Shadow Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","171","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6055","-1","","","","","Recipe: Fire Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","171","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6056","-1","","","","","Recipe: Frost Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6057","-1","","","","","Recipe: Nature Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6058","-1","","","","","Blackened Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6059","-1","","","","","Nomadic Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6060","-1","","","","","Flax Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6061","-1","","","","","Graystone Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","116","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6062","-1","","","","","Heavy Cord Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6063","-1","","","","","Cold Steel Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","117","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6064","-1","","","","","Miniature Platinum Discs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6065","-1","These documents are sealed by a magical force.","","","","Khadgar's Essays on Dimensional Convergence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6066","-1","","","","","Khan Dez'hepah's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6067","-1","","","","","Centaur Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6068","-1","","","","","Recipe: Shadow Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","171","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6069","-1","","","","","Crudely Dried Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6070","-1","","","","","Wolfskin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6071","-1","","","","","Draenethyst Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6072","-1","","","","","Khan Jehn's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6073","-1","","","","","Khan Shaka's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6074","-1","","","","","War Horn Mouthpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6075","-1","","","","","Vimes's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6076","-1","","","","","Tapered Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6077","-1","","","","","Maraudine Key Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6078","-1","","","","","Pikeman Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6079","-1","","","","","Crude Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6080","-1","","","","","Shadow Panther Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6081","-1","","","","","Mire Lord Fungus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6082","-1","","","","","Deepstrider Tumor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6083","-1","","","","","Broken Tears","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6084","-1","","","","","Stormwind Guard Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","290","1454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6085","-1","","","","","Footman Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","0" +"6086","-1","","","","","Faustin's Truth Serum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6087","-1","","","","","Chausses of Westfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1727","8639","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","11","0","0","0","0","0","0","0","0","0" +"6088","-1","","","","","Monster - Torch, Ranged","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6089","-1","","","","","Zraedus's Brew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6090","-1","","","","","OLDNoboru's Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6091","-1","","","","","Crate of Power Stones","1","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6092","-1","","","","","Black Whelp Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2104","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","0","0","0","0","0","0","0","0","0","0" +"6093","-1","","","","","Orc Crusher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4418","22091","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","27","-1","0","0","52","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","0","0","0","0","0","0","0","0","0" +"6094","-1","","","","","Piercing Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1278","6393","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6095","-1","","","","","Wandering Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3440","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6096","-1","","","","","Apprentice's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6097","-1","","","","","Acolyte's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6098","-1","","","","","Neophyte's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6116","-1","","","","","Apprentice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6117","-1","","","","","Squire's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6118","-1","","","","","Squire's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6119","-1","","","","","Neophyte's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6120","-1","","","","","Recruit's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6121","-1","","","","","Recruit's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6122","-1","","","","","Recruit's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6123","-1","","","","","Novice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6124","-1","","","","","Novice's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6125","-1","","","","","Brawler's Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6126","-1","","","","","Trapper's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6127","-1","","","","","Trapper's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6129","-1","","","","","Acolyte's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6130","-1","","","","","Trapper's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6131","-1","","","","","Trapper's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6132","-1","","","","","Libram: Seal of Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6133","-1","","","","","Libram: Seal of Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"6134","-1","","","","","Primitive Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6135","-1","","","","","Primitive Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6136","-1","","","","","Thug Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6137","-1","","","","","Thug Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6138","-1","","","","","Thug Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6139","-1","","","","","Novice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6140","-1","","","","","Apprentice's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6144","-1","","","","","Neophyte's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6145","-1","Place upon Yuriv's grave.","","","","Clarice's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6146","-1","","","","","Sundried Driftwood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6147","-1","","","","","Ratty Old Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6148","-1","","","","","Web-covered Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6149","-1","","","","","Greater Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","31" +"6150","-1","","","","","A Frayed Knot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6166","-1","","","","","Coyote Jawbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6167","-1","","","","","Neeka's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6168","-1","","","","","Sawtooth Snapper Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6169","-1","","","","","Unprepared Sawtooth Flank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6170","-1","","","","","Wizards' Reagents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6171","-1","","","","","Wolf Handler Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6172","-1","","","","","Lost Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1423","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"6173","-1","","","","","Snow Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6174","-1","","","","","Twain Random Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","694","3474","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","50","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","15" +"6175","-1","","","","","Atal'ai Artifact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6176","-1","","","","","Dwarven Kite Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6177","-1","","","","","Ironwrought Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69","348","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6178","-1","","","","","Shipment to Nethergarde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6179","-1","","","","","Privateer's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","556","2782","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","14" +"6180","-1","","","","","Slarkskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2119","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","10" +"6181","-1","","","","","Fetish of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6182","-1","","","","","Dim Torch","1","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6183","-1","","","","","Unlit Poor Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","142","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6184","-1","","","","","Monstrous Crawler Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6185","-1","","","","","Bear Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6186","-1","","","","","Trogg Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6864","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","18","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6187","-1","","","","","Dwarven Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","613","3066","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6188","-1","","","","","Mud Stompers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1525","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6189","-1","","","","","Durable Chain Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","624","3122","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6190","-1","","","","","Draenethyst Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6191","-1","","","","","Kimbra Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","615","3079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","3","0","0","0","0","0","0","0","0","0" +"6192","-1","","","","","Khan Hratha's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6193","-1","","","","","Bundle of Atal'ai Artifacts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6194","-1","","","","","Barreling Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5308","26543","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","22","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6195","-1","","","","","Wax-polished Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","416","2080","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","10" +"6196","-1","","","","","Noboru's Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","1392","0","2100","0","0","0","34","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","29" +"6197","-1","","","","","Loch Croc Hide Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4646","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","0","0","0","0","0","0","0","0","0","17" +"6198","-1","","","","","Jurassic Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5566","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","25" +"6199","-1","","","","","Black Widow Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","650","2600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","-5","7","0","0","0","0","0","0","0","0","19" +"6200","-1","","","","","Garneg's War Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6117","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"6201","-1","","","","","Lithe Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","272","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6202","-1","","","","","Fingerless Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","179","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6203","-1","","","","","Thuggish Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","608","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6204","-1","","","","","Tribal Worg Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2065","10327","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","27" +"6205","-1","","","","","Burrowing Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4613","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","-1","0","0","18","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","10" +"6206","-1","","","","","Rock Chipper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2777","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6207","-1","","","","","PVP - Horde Tower Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6208","-1","","","","","PVP - Alliance Tower Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6209","-1","","","","","PVP - Horde Mine Deed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6210","-1","","","","","PVP - Alliance Mine Deed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6211","-1","","","","","Recipe: Elixir of Ogre's Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","171","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6212","-1","","","","","Head of Jammal'an","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6213","-1","","","","","Test Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6214","-1","","","","","Heavy Copper Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2978","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","11" +"6215","-1","","","","","Balanced Fighting Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3009","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","18","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","2","0","0","0","0","0","0","0","0","0" +"6216","-1","Used by Enchanters to enchant items.","","","","Mystical Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6217","-1","Needed by an Enchanter to make a runed copper rod.","","","","Copper Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6218","-1","","","","","Runed Copper Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6219","-1","","","","","Arclight Spanner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","50","202","10","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6220","-1","","","","","Meteor Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4893","24468","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","29","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","24" +"6222","-1","","","","","Formula: Imbue Chest - Minor Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6223","-1","","","","","Crest of Darkshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4797","23986","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","7","0","0","0","0","0","0","0","0","0" +"6224","-1","","","","","Monster - Sword2H, Black Metal Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6225","-1","","","","","Monster - Item, Fish - Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6226","-1","","","","","Bloody Apron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","890","4452","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","0","0","0","0","0","0","0","0","0","18" +"6227","-1","","","","","Monster - Item, Fish - Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6228","-1","","","","","Monster - Item, Fish - Orange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6229","-1","","","","","Monster - Item, Fish - Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6230","-1","","","","","Monster - Wand, Basic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6231","-1","","","","","Monster - Wand, Jeweled - Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6232","-1","","","","","Monster - Item, Flowers - Boquet Roses","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6233","-1","","","","","Monster - Item, Flowers - Boquet Wildflowers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6234","-1","","","","","Monster - Item, Flower - Long Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6235","-1","","","","","Monster - Item, Flower - Rose (Black)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6236","-1","","","","","Monster - Item, Flower - Rose (White)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6237","-1","","","","","Monster - Item, Flowers - Boquet Roses (Black)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6238","-1","","","","","Brown Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98","491","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"6239","-1","","","","","Red Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160","802","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"6240","-1","","","","","Blue Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","161","805","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"6241","-1","","","","","White Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","496","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"6242","-1","","","","","Blue Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","0","0","0","0","0","0","0","0","0","9" +"6243","-1","","","","","Green Woolen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","445","2228","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","3","2","0","0","0","0","0","0","0","13" +"6244","-1","","","","","ggggfg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6245","-1","","","","","Karnitol's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6246","-1","","","","","Hatefury Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6247","-1","","","","","Hatefury Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6248","-1","","","","","Scorpashi Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6249","-1","","","","","Aged Kodo Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6250","-1","","","","","Felhound Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6251","-1","","","","","Nether Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6252","-1","","","","","Doomwarder Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6253","-1","","","","","Leftwitch's Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6254","-1","","","","","Monster - Shield, Ironforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6255","-1","","","","","Fishing Pole (JEFFTEST)","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4424","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","-1","0","0","9","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","14" +"6256","-1","","","","","Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6257","-1","","","","","Roc Gizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6258","-1","","","","","Ironfur Liver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6259","-1","","","","","Groddoc Liver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6260","-1","","","","","Blue Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6261","-1","","","","","Orange Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6262","-1","","","","","Galen's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6263","-1","","","","","Blue Overalls","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2947","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","4","0","0","0","0","0","0","0","0","15" +"6264","-1","","","","","Greater Adept's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4420","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","2","7","0","0","0","0","0","0","0","18" +"6265","-1","","","","","Soul Shard","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6266","-1","","","","","Disciple's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1028","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","455","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6267","-1","","","","","Disciple's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","538","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6268","-1","","","","","Pioneer Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1171","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","476","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6269","-1","","","","","Pioneer Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","966","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","559","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6270","-1","","","","","Pattern: Blue Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","197","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6271","-1","","","","","Pattern: Red Linen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","197","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6272","-1","","","","","Pattern: Blue Linen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","197","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6273","-1","","","","","Pattern: Green Woolen Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","197","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6274","-1","","","","","Pattern: Blue Overalls","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","197","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6275","-1","","","","","Pattern: Greater Adept's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","197","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6276","-1","","","","","Musty Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6277","-1","","","","","Musty Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","692","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6278","-1","","","","","Musty Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6279","-1","","","","","Musty Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6280","-1","","","","","Musty Missive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6281","-1","","","","","Rattlecage Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6282","-1","","","","","Sacred Burial Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2243","11219","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","5","9","0","0","0","0","0","0","0","0" +"6283","-1","","","","","The Book of Ur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6284","-1","","","","","Runes of Summoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6285","-1","","","","","Egalin's Grimoire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6286","-1","","","","","Pure Hearts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6287","-1","","","","","Atal'ai Tablet Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6288","-1","","","","","Atal'ai Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6289","-1","","","","","Raw Longjaw Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6290","-1","","","","","Brilliant Smallfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6291","-1","","","","","Raw Brilliant Smallfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6292","-1","","","","","10 Pound Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","34","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6293","-1","","","","","Dried Bat Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6294","-1","","","","","12 Pound Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6295","-1","","","","","15 Pound Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6296","-1","","","","","Patch of Bat Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6297","-1","","","","","Old Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6298","-1","","","","","Bloody Bat Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","130","520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6299","-1","","","","","Sickly Looking Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6300","-1","","","","","Husk Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","443","1775","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6301","-1","Looks like someone didn't like this guy.","","","","Old Teamster's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6302","-1","","","","","Delicate Insect Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","628","2515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6303","-1","","","","","Raw Slitherskin Mackerel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6304","-1","","","","","Damp Diary Page (Day 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","696","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6305","-1","","","","","Damp Diary Page (Day 87)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6306","-1","","","","","Damp Diary Page (Day 512)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6307","-1","","","","","Message in a Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6308","-1","","","","","Raw Bristle Whisker Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6309","-1","","","","","17 Pound Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6310","-1","","","","","19 Pound Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6311","-1","","","","","22 Pound Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6312","-1","","","","","Dalin's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6313","-1","","","","","Comar's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6314","-1","","","","","Wolfmaster Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1268","6343","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","4","0","0","0","0","0","0","0","0","22" +"6315","-1","","","","","Steelarrow Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2546","12733","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","29","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","22" +"6316","-1","","","","","Loch Frenzy Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","60","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6317","-1","","","","","Raw Loch Frenzy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6318","-1","","","","","Odo's Ley Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4802","24014","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","5","0","0","0","0","0","0","0","0","21" +"6319","-1","","","","","Girdle of the Blindwatcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","803","4016","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","5","0","0","0","0","0","0","0","0","21" +"6320","-1","","","","","Commander's Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2711","13556","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","3","6","0","0","0","0","0","0","0","23" +"6321","-1","","","","","Silverlaine's Family Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1650","6600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","3","0","0","0","0","0","0","0","0","21" +"6322","-1","","","","","Monster - Staff, Arugal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6323","-1","","","","","Baron's Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2611","13058","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","25","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","20" +"6324","-1","","","","","Robes of Arugal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1892","9463","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","9","5","3","0","0","0","0","0","0","24" +"6325","-1","","","","","Recipe: Brilliant Smallfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6326","-1","","","","","Recipe: Slitherskin Mackerel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6327","-1","","","","","The Pacifier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12823","64118","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","37","-1","0","0","104","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","7","0","0","0","0","0","0","0","0","32" +"6328","-1","","","","","Recipe: Longjaw Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6329","-1","","","","","Recipe: Loch Frenzy Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6330","-1","","","","","Recipe: Bristle Whisker Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6331","-1","","","","","Howling Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9466","47333","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","36","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"6332","-1","","","","","Black Pearl Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1153","4615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","1","1","0","0","0","0","0","0","0","17" +"6333","-1","","","","","Spikelash Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1929","9645","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","22","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","17" +"6334","-1","","","","","Monster - Mace, Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6335","-1","","","","","Grizzled Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1581","7905","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","7","0","0","0","0","0","0","0","0","0" +"6336","-1","","","","","Infantry Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1526","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","497","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6337","-1","","","","","Infantry Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","580","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6338","-1","Needed by Enchanters.","","","","Silver Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6339","-1","","","","","Runed Silver Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6340","-1","","","","","Fenrus' Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","4375","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","21" +"6341","-1","","","","","Eerie Stable Lantern","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","666","2665","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","14" +"6342","-1","","","","","Formula: Enchant Chest - Minor Mana","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","333","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6343","-1","","","","","Formula: Imbue Chest - Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6344","-1","","","","","Formula: Enchant Bracer - Minor Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6345","-1","","","","","Formula: Imbue Cloak - Protection","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","333","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6346","-1","","","","","Formula: Enchant Chest - Lesser Mana","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","333","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6347","-1","","","","","Formula: Enchant Bracer - Minor Strength","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","333","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6348","-1","","","","","Formula: Enchant Weapon - Minor Beastslayer","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","333","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6349","-1","","","","","Formula: Enchant 2H Weapon - Lesser Intellect","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","333","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6350","-1","","","","","Rough Bronze Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1478","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","13" +"6351","-1","Venture Company Supplies","","","","Dented Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6352","-1","Venture Company Supplies","","","","Waterlogged Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6353","-1","","","","","Small Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6354","-1","","","","","Small Locked Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6355","-1","","","","","Sturdy Locked Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6356","-1","","","","","Battered Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6357","-1","Venture Company Supplies","","","","Sealed Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6358","-1","","","","","Oily Blackmouth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6359","-1","","","","","Firefin Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6360","-1","","","","","Steelscale Crushfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2581","12905","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","20" +"6361","-1","","","","","Raw Rainbow Fin Albacore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6362","-1","","","","","Raw Rockscale Cod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6363","-1","","","","","26 Pound Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6364","-1","","","","","32 Pound Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6365","-1","","","","","Strong Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","901","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","10","356","10","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6366","-1","","","","","Darkwood Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1066","5330","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","50","356","20","-1","0","0","28","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6367","-1","","","","","Big Iron Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3378","16892","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","100","356","30","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6368","-1","","","","","Recipe: Rainbow Fin Albacore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6369","-1","","","","","Recipe: Rockscale Cod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6370","-1","","","","","Blackmouth Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6371","-1","","","","","Fire Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6372","-1","","","","","Swim Speed Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6373","-1","","","","","Elixir of Firepower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"6374","-1","Used by Enchanters to enchant items.","","","","Enchanted Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6375","-1","","","","","Formula: Enchant Bracer - Lesser Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","333","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6376","-1","","","","","Formula: Enchant Boots - Minor Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","333","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6377","-1","","","","","Formula: Enchant Boots - Minor Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","333","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6378","-1","","","","","Seer's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1463","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","12" +"6379","-1","","","","","Inscribed Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1223","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","12" +"6380","-1","","","","","Inscribed Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","654","3271","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","13" +"6381","-1","","","","","Bright Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","3127","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","3","0","0","0","0","0","0","0","0","18" +"6382","-1","","","","","Forest Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","523","2616","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","18" +"6383","-1","","","","","Forest Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1519","7596","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","0","0","0","0","0","0","0","0","19" +"6384","-1","","","","","Stylish Blue Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6385","-1","","","","","Stylish Green Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6386","-1","","","","","Glimmering Mail Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2692","13462","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","25" +"6387","-1","","","","","Glimmering Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1228","6141","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","24" +"6388","-1","","","","","Glimmering Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2043","10216","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","0","0","0","0","0","0","0","0","25" +"6389","-1","","","","","Glimmering Mail Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2245","11229","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","26" +"6390","-1","","","","","Pattern: Stylish Blue Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6391","-1","","","","","Pattern: Stylish Green Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6392","-1","","","","","Belt of Arugal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","5003","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","3","2","0","0","0","0","0","0","0","24" +"6393","-1","","","","","Silver-thread Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","760","3803","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","5","0","0","0","0","0","0","0","0","23" +"6394","-1","","","","","Silver-thread Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1041","5205","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","4","0","0","0","0","0","0","0","0","22" +"6395","-1","","","","","Silver-thread Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1264","6321","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","2","0","0","0","0","0","0","0","0","24" +"6396","-1","","","","","Emblazoned Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2814","14073","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","6","0","0","0","0","0","0","0","27" +"6397","-1","","","","","Emblazoned Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","985","4929","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"6398","-1","","","","","Emblazoned Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","989","4948","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","3","0","0","0","0","0","0","0","0","24" +"6399","-1","","","","","Emblazoned Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1639","8196","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","3","0","0","0","0","0","0","0","0","25" +"6400","-1","","","","","Glimmering Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3089","15445","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","26" +"6401","-1","","","","","Pattern: Dark Silk Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","197","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6402","-1","","","","","Mail Combat Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4699","23496","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","31" +"6403","-1","","","","","Mail Combat Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1771","8859","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","2","0","0","0","0","0","0","0","0","28" +"6404","-1","","","","","Mail Combat Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3242","16211","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","30" +"6405","-1","","","","","Nightsky Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3167","15839","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","10","0","0","0","0","0","0","0","31" +"6406","-1","","","","","Nightsky Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1970","9854","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","8","0","0","0","0","0","0","0","0","29" +"6407","-1","","","","","Nightsky Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1198","5994","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","3","0","0","0","0","0","0","0","0","28" +"6408","-1","","","","","Insignia Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1654","8271","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","29" +"6409","-1","","","","","Insignia Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1660","8302","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"6410","-1","","","","","Insignia Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1514","7574","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","2","0","0","0","0","0","0","0","0","28" +"6411","-1","","","","","Chief Brigadier Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7268","36343","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"6412","-1","","","","","Chief Brigadier Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4711","23558","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","34" +"6413","-1","","","","","Chief Brigadier Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2497","12487","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","3","0","0","0","0","0","0","0","0","32" +"6414","-1","","","","","Seal of Sylvanas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2055","8220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","3","0","0","0","0","0","0","0","0","0" +"6415","-1","","","","","Aurora Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4565","22825","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","15","0","0","0","0","0","0","0","0","36" +"6416","-1","","","","","Aurora Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2728","13642","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","3","0","0","0","0","0","0","0","0","33" +"6417","-1","","","","","Aurora Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","2","0","0","0","0","0","0","0","0","32" +"6418","-1","","","","","Aurora Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","2","0","0","0","0","0","0","0","0","32" +"6419","-1","","","","","Glyphed Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2299","11497","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","33" +"6420","-1","","","","","Glyphed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3739","18698","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","0","0","0","0","0","0","0","0","34" +"6421","-1","","","","","Glyphed Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2317","11585","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","5","0","0","0","0","0","0","0","33" +"6422","-1","","","","","Glyphed Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3768","18840","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","6","6","0","0","0","0","0","0","0","34" +"6423","-1","","","","","Blackforge Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7233","36168","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","40" +"6424","-1","","","","","Blackforge Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3825","19127","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","8","0","0","0","0","0","0","0","0","37" +"6425","-1","","","","","Blackforge Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4478","22393","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","39" +"6426","-1","","","","","Blackforge Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4162","20811","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","38" +"6427","-1","","","","","Mistscape Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7016","35081","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","18","0","0","0","0","0","0","0","0","41" +"6428","-1","","","","","Mistscape Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2795","13975","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","9","0","0","0","0","0","0","0","38" +"6429","-1","","","","","Mistscape Wizard Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4544","22724","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","4","10","6","0","0","0","0","0","0","0","39" +"6430","-1","","","","","Imperial Leather Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9098","45493","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","16","0","0","0","0","0","0","0","0","41" +"6431","-1","","","","","Imperial Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27181","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","11","0","0","0","0","0","0","0","0","38" +"6432","-1","","","","","Imperial Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3741","18708","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","8","0","0","0","0","0","0","0","0","36" +"6433","-1","","","","","Imperial Leather Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4953","24767","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","38" +"6434","-1","","","","","Monster - Shield, Stromgarde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6435","-1","","","","","Infused Burning Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6436","-1","","","","","Burning Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6437","-1","","","","","Flayed Demon Skin (old)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","149","598","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6438","-1","","","","","Dull Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","362","1450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6439","-1","","","","","Broken Binding Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","237","950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6440","-1","","","","","Brainlash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15812","63250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","5","-10","0","0","0","0","0","0","0","43" +"6441","-1","","","","","Shadowstalker Scalp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6442","-1","","","","","Oracle Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6443","-1","","","","","Deviate Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6444","-1","","","","","Forked Tongue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","228","915","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6445","-1","","","","","Brittle Molting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","88","352","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6446","-1","","","","","Snakeskin Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","532","2130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6447","-1","","","","","Worn Turtle Shell Shield","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562","2810","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6448","-1","","","","","Tail Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9714","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","17" +"6449","-1","","","","","Glowing Lizardscale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","2","0","0","0","0","0","0","0","0","17" +"6450","-1","","","","","Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6451","-1","","","","","Heavy Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6452","-1","","","","","Anti-Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","28","115","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6453","-1","","","","","Strong Anti-Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6454","-1","","","","","Manual: Strong Anti-Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","129","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6455","-1","","","","","Old Wagonwheel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6456","-1","","","","","Acidic Slime","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6457","-1","","","","","Rusted Engineering Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6458","-1","","","","","Oil Covered Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6459","-1","","","","","Savage Trodders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","934","4674","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","18" +"6460","-1","","","","","Cobrahn's Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4222","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","3","0","0","0","0","0","0","0","0","19" +"6461","-1","","","","","Slime-encrusted Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1190","5954","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","22" +"6462","-1","","","","","Secure Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6463","-1","","","","","Deep Fathom Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1527","6110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","3","3","0","0","0","0","0","0","0","21" +"6464","-1","","","","","Wailing Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6465","-1","","","","","Robe of the Moccasin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3843","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","6","0","0","0","0","0","0","0","17" +"6466","-1","","","","","Deviate Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","413","2067","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","13" +"6467","-1","","","","","Deviate Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2103","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","16" +"6468","-1","","","","","Deviate Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","658","3292","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","3","0","0","0","0","0","0","0","18" +"6469","-1","","","","","Venomstrike","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2240","11202","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","24","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","19" +"6470","-1","","","","","Deviate Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6471","-1","","","","","Perfect Deviate Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6472","-1","","","","","Stinging Viper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3018","15094","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"6473","-1","","","","","Armor of the Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1010","5053","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","7","0","0","0","0","0","0","0","0","18" +"6474","-1","","","","","Pattern: Deviate Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6475","-1","","","","","Pattern: Deviate Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","165","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6476","-1","","","","","Pattern: Deviate Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","165","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6477","-1","","","","","Grassland Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","274","1372","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","3","0","0","0","0","0","0","0","0","0" +"6478","-1","","","","","Rat Stompers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","634","3174","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","4","0","0","0","0","0","0","0","0","0" +"6479","-1","","","","","Malem Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6480","-1","","","","","Slick Deviate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","713","3566","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6481","-1","","","","","Dagmire Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","641","3209","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"6482","-1","","","","","Firewalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","728","3640","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","5","1","0","0","0","0","0","0","0","0" +"6486","-1","","","","","Singed Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6487","-1","","","","","Vile Familiar Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6488","-1","","","","","Simple Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6489","-1","","","","","Weatherworn Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","753","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6490","-1","","","","","Dark Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","754","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6491","-1","","","","","Heavy Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","755","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6492","-1","","","","","Sooty Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6493","-1","","","","","Tattered Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","757","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6494","-1","","","","","Scrawled Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6495","-1","","","","","Weatherbeaten Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6496","-1","","","","","Detailed Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","760","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6497","-1","","","","","Simple Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","761","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6498","-1","","","","","Inscribed Kodo Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","762","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6499","-1","","","","","Inscribed Kodo Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6500","-1","","","","","Inscribed Kodo Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","764","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6501","-1","","","","","Inscribed Kodo Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","765","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6502","-1","","","","","Violet Scale Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1140","5701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","1","0","0","0","0","0","0","0","0","0" +"6503","-1","","","","","Harlequin Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","762","3814","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","6","0","0","0","0","0","0","0","0","0" +"6504","-1","","","","","Wingblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2933","14667","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","24","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","2","0","0","0","0","0","0","0","0","0" +"6505","-1","","","","","Crescent Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3680","18401","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","24","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","7","7","0","0","0","0","0","0","0","0" +"6506","-1","","","","","Infantry Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","436","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6507","-1","","","","","Infantry Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6508","-1","","","","","Infantry Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","172","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"6509","-1","","","","","Infantry Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","224","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6510","-1","","","","","Infantry Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","272","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6511","-1","","","","","Journeyman's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","608","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","0","0","0","0","0","0","0","0","0","6" +"6512","-1","","","","","Disciple's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","191","955","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","455","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6513","-1","","","","","Disciple's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","141","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6514","-1","","","","","Disciple's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","212","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6515","-1","","","","","Disciple's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6516","-1","","","","","Imp Summoning Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6517","-1","","","","","Pioneer Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","179","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6518","-1","","","","","Pioneer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","351","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6519","-1","","","","","Pioneer Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6520","-1","","","","","Pioneer Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","209","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"6521","-1","","","","","Pioneer Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","236","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6522","-1","","","","","Deviate Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6523","-1","","","","","Buckled Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","284","1422","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6524","-1","","","","","Studded Leather Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","574","2870","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6525","-1","","","","","Grunt's Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1033","5167","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"6526","-1","","","","","Battle Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2497","12487","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"6527","-1","","","","","Ancestral Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","937","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","1","0","0","0","0","0","0","0","0","8" +"6528","-1","","","","","Spellbinder Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1792","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","2","0","0","0","0","0","0","0","0","12" +"6529","-1","","","","","Shiny Bauble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6530","-1","","","","","Nightcrawlers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6531","-1","","","","","Barbaric Cloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","417","2085","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","4","0","0","0","0","0","0","0","0","13" +"6532","-1","","","","","Bright Baubles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6533","-1","","","","","Aquadynamic Fish Attractor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6534","-1","","","","","Forged Steel Bars","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6535","-1","","","","","Tablet of Verga","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6536","-1","","","","","Willow Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","488","2443","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","457","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6537","-1","","","","","Willow Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1051","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","791","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6538","-1","","","","","Willow Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","492","2461","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","457","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6539","-1","","","","","Willow Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","811","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","876","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6540","-1","","","","","Willow Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","431","2156","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","540","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6541","-1","","","","","Willow Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","817","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","708","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6542","-1","","","","","Willow Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","219","1099","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","959","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6543","-1","","","","","Willow Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","735","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1043","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6544","-1","","","","","Voidwalker Summoning Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6545","-1","","","","","Soldier's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","3379","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","498","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6546","-1","","","","","Soldier's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2668","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","582","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6547","-1","","","","","Soldier's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1339","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","750","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6548","-1","","","","","Soldier's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","233","1169","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","918","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6549","-1","","","","","Soldier's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"6550","-1","","","","","Soldier's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","204","1024","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1085","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6551","-1","","","","","Soldier's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2048","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","834","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6552","-1","","","","","Bard's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3009","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","478","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6553","-1","","","","","Bard's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2626","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","561","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6554","-1","","","","","Bard's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1145","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","729","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6555","-1","","","","","Bard's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","130","652","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"6556","-1","","","","","Bard's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174","873","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1064","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6557","-1","","","","","Bard's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1511","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","813","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6558","-1","","","","","Bard's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","902","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","896","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6559","-1","","","","","Bard's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2668","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1998","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6560","-1","","","","","Soldier's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","615","3079","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1998","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6561","-1","","","","","Seer's Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","3378","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","16" +"6562","-1","","","","","Shimmering Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","508","2542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","793","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6563","-1","","","","","Shimmering Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1478","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1045","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6564","-1","","","","","Shimmering Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2560","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","961","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6565","-1","","","","","Shimmering Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","393","1969","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","710","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6566","-1","","","","","Shimmering Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","411","2055","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"6567","-1","","","","","Shimmering Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1036","5182","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","459","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6568","-1","","","","","Shimmering Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","920","4603","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","542","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"6569","-1","","","","","Shimmering Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5222","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","459","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6570","-1","","","","","Shimmering Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1815","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","878","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6571","-1","","","","","Scouting Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1166","5834","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2010","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6572","-1","","","","","Defender Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1323","6618","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2010","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6573","-1","","","","","Defender Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","938","4691","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","836","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6574","-1","","","","","Defender Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","568","2840","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","1088","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6575","-1","","","","","Defender Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","431","2155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1003","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6576","-1","","","","","Defender Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","572","2861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","920","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6577","-1","","","","","Defender Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","649","3245","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","752","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6578","-1","","","","","Defender Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1302","6514","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","584","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6579","-1","","","","","Defender Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","667","3339","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"6580","-1","","","","","Defender Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6562","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","500","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6581","-1","","","","","Scouting Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","422","2111","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","898","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6582","-1","","","","","Scouting Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","815","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6583","-1","","","","","Scouting Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2126","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","1066","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6584","-1","","","","","Scouting Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1416","7082","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","480","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6585","-1","","","","","Scouting Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","558","2792","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","982","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6586","-1","","","","","Scouting Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","505","2526","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","731","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6587","-1","","","","","Scouting Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1146","5732","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","563","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"6588","-1","","","","","Scouting Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","458","2291","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"6589","-1","","","","","Viridian Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1056","4225","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3475","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6590","-1","","","","","Battleforge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1830","9153","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","838","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6591","-1","","","","","Battleforge Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1007","5039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1089","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6592","-1","","","","","Battleforge Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2447","12239","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","502","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6593","-1","","","","","Battleforge Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4614","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1005","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6594","-1","","","","","Battleforge Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5604","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","922","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6595","-1","","","","","Battleforge Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1124","5624","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","754","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6596","-1","","","","","Battleforge Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2258","11290","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","586","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6597","-1","","","","","Battleforge Shoulderguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1707","8536","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1174","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6598","-1","","","","","Dervish Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2426","12131","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2022","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6599","-1","","","","","Battleforge Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2678","13393","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2022","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6600","-1","","","","","Dervish Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","867","4338","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","900","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6601","-1","","","","","Dervish Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1437","7185","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","817","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6602","-1","","","","","Dervish Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","873","4369","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1068","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6603","-1","","","","","Dervish Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2334","11674","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","481","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6604","-1","","","","","Dervish Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1200","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","984","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6605","-1","","","","","Dervish Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4857","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","733","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6607","-1","","","","","Dervish Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2202","11012","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","565","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6608","-1","","","","","Bright Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1328","6644","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","4","0","0","0","0","0","0","0","0","22" +"6609","-1","","","","","Sage's Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2148","10740","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6610","-1","","","","","Sage's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2156","10780","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6611","-1","","","","","Sage's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","812","4063","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","880","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6612","-1","","","","","Sage's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1112","5562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","796","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6613","-1","","","","","Sage's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","744","3722","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1048","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6614","-1","","","","","Sage's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5603","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6615","-1","","","","","Sage's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","824","4123","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","712","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6616","-1","","","","","Sage's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2203","11019","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","545","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6617","-1","","","","","Sage's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1371","6855","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1132","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6618","-1","","","","","Monster - Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6619","-1","","","","","Manual: The Path of Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6620","-1","","","","","Elaborate Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6621","-1","","","","","Manual of Taunt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6622","-1","","","","","Sword of Zeal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55400","277000","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"6623","-1","","","","","Succubus Summoning Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6624","-1","","","","","Ken'zigla's Draught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6625","-1","","","","","Dirt-caked Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6626","-1","","","","","Dogran's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6627","-1","","","","","Mutant Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2620","13104","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","5","0","0","0","0","0","0","0","0","23" +"6628","-1","","","","","Raven's Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1851","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","3","0","0","0","0","0","0","0","0","17" +"6629","-1","","","","","Sporid Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","630","3150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","2","0","0","0","0","0","0","0","0","18" +"6630","-1","","","","","Seedcloud Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2067","10337","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","6","0","0","0","0","0","0","0","0","20" +"6631","-1","","","","","Living Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4053","20266","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","5","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","2","0","0","0","0","0","0","0","0","20" +"6632","-1","","","","","Feyscale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","642","3211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","2","0","0","0","0","0","0","0","0","15" +"6633","-1","","","","","Butcher's Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2131","10659","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","18" +"6634","-1","","","","","Ritual Salve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6635","-1","","","","","Earth Sapta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6636","-1","","","","","Fire Sapta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6637","-1","","","","","Water Sapta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6638","-1","","","","","Air Sapta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6639","-1","","","","","Deprecated Rough Pebble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6640","-1","","","","","Felstalker Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6641","-1","","","","","Haunting Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3675","18376","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","26","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","0","0","0","0","0","0","0","0","0","21" +"6642","-1","","","","","Phantom Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1880","9402","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","11","3","0","0","0","0","0","0","0","20" +"6643","-1","","","","","Bloated Smallfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6644","-1","","","","","Bloated Mackerel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6645","-1","","","","","Bloated Mud Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6646","-1","","","","","Bloated Albacore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","31","125","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6647","-1","","","","","Bloated Catfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6648","-1","","","","","Stoneskin Totem Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6649","-1","","","","","Searing Totem Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6650","-1","","","","","Healing Stream Totem Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6651","-1","Alterac Old-and-Yellow","","","","Broken Wine Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1173","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","7" +"6652","-1","","","","","Reagent Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6653","-1","","","","","Torch of the Dormant Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6654","-1","","","","","Torch of the Eternal Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6655","-1","","","","","Glowing Ember","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6656","-1","","","","","Rough Quartz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6657","-1","","","","","Savory Deviate Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6658","-1","","","","","Example Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6659","-1","","","","","Scarab Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","541","2705","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6660","-1","","","","","Julie's Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36157","180788","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","55","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"6661","-1","","","","","Recipe: Savory Deviate Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","460","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","185","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6662","-1","","","","","Elixir of Giant Growth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"6663","-1","","","","","Recipe: Elixir of Giant Growth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","171","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6664","-1","","","","","Voodoo Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","892","4460","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","5","0","0","0","0","0","0","0","0","0" +"6665","-1","","","","","Hexed Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","0" +"6666","-1","","","","","Dredge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","830","4152","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","3","0","0","0","0","0","0","0","0","0" +"6667","-1","","","","","Engineer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","992","4962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","0" +"6668","-1","","","","","Draftsman Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1245","6226","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","5","0","0","0","0","0","0","0","0","0" +"6669","-1","","","","","Sacred Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1378","5515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","4","0","0","0","0","0","0","0","0","0" +"6670","-1","","","","","Panther Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1672","8363","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","2","0","0","0","0","0","0","0","0","0" +"6671","-1","","","","","Juggernaut Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10341","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","0","0","0","0","0","0","0","0","0","0" +"6672","-1","","","","","Schematic: Flash Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6673","-1","","","","","Test HP Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","0","0","-60","0","0","0","0","0","0","0","0","0","1" +"6674","-1","","","","","Test MP Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","0","0","-60","0","0","0","0","0","0","0","0","0","1" +"6675","-1","","","","","Tempered Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1048","5244","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","1","0","0","0","0","0","0","0","0","0" +"6676","-1","","","","","Constable Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2245","11229","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","0" +"6677","-1","","","","","Spellcrafter Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2401","12006","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6678","-1","","","","","Band of Elven Grace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","2710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","4","0","0","0","0","0","0","0","0","0" +"6679","-1","","","","","Armor Piercer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4852","24264","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","29","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","0","0","0","0","0","0","0","0","0","24" +"6680","-1","","","","","Monster - Spear, Sharp Thin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6681","-1","","","","","Thornspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3124","15622","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","27" +"6682","-1","","","","","Death Speaker Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1900","9504","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","8","6","0","0","0","0","0","0","0","26" +"6683","-1","","","","","Tyranis' Pendant (old)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6684","-1","","","","","Snufflenose Command Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6685","-1","","","","","Death Speaker Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1310","6554","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","3","0","0","0","0","0","0","0","0","25" +"6686","-1","","","","","Tusken Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2627","13135","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","8","0","0","0","0","0","0","0","0","28" +"6687","-1","","","","","Corpsemaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9930","49652","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","34","-1","0","0","88","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","8","0","0","0","0","0","0","0","0","29" +"6688","-1","","","","","Whisperwind Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2059","10295","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","3","7","7","0","0","0","0","0","0","0","27" +"6689","-1","","","","","Wind Spirit Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8267","41336","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","15","3","0","0","0","0","0","0","0","27" +"6690","-1","","","","","Ferine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3346","16731","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","8","0","0","0","0","0","0","0","0","29" +"6691","-1","","","","","Swinetusk Shank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8866","44332","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","4","0","0","0","0","0","0","0","0","30" +"6692","-1","","","","","Pronged Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9788","48942","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","6","0","0","0","0","0","0","0","0","31" +"6693","-1","","","","","Agamaggan's Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1816","7265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","5","0","0","0","0","0","0","0","0","31" +"6694","-1","","","","","Heart of Agamaggan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6309","31546","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","7","0","0","0","0","0","0","0","0","31" +"6695","-1","","","","","Stygian Bone Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3002","12010","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","4","0","0","0","0","0","0","0","0","27" +"6696","-1","","","","","Nightstalker Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5086","25431","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","27" +"6697","-1","","","","","Batwing Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2041","10208","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","10","3","0","0","0","0","0","0","0","27" +"6698","-1","","","","","Stone of Pierce","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6707","-1","","","","","Stone of Lapidis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6708","-1","","","","","Stone of Goodman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6709","-1","","","","","Moonglow Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","545","2726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"6710","-1","","","","","Pattern: Moonglow Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6711","-1","","","","","Stone of Kurtz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6712","-1","","","","","Practice Lock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6713","-1","","","","","Ripped Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","51","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6714","-1","","","","","Ez-Thro Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6715","-1","","","","","Ruined Jumper Cables","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6716","-1","","","","","Schematic: EZ-Thro Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6717","-1","","","","","Gaffer Jack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6718","-1","","","","","Electropeller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6719","-1","","","","","Windborne Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1097","5485","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","5","0","0","0","0","0","0","0","0","0" +"6720","-1","","","","","Spirit Hunter Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3218","16094","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","0" +"6721","-1","","","","","Chestplate of Kor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1418","7094","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","4","4","0","0","0","0","0","0","0","0" +"6722","-1","","","","","Beastial Manacles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1331","6657","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","6","0","0","0","0","0","0","0","0","0" +"6723","-1","","","","","Medal of Courage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8155","32620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","9","0","0","0","0","0","0","0","0","0" +"6724","-1","","","","","Stone of Backus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6725","-1","","","","","Marbled Buckler","1","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6105","30528","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","3","4","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","5","5","5","0","0","0","0","0","0","0" +"6726","-1","","","","","Razzeric's Customized Seatbelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2388","11941","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","1","12","0","0","0","0","0","0","0","0","0" +"6727","-1","","","","","Razzeric's Racing Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2996","14982","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","8","0","0","0","0","0","0","0","0","0" +"6728","-1","","","","","Stone of Brownell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6729","-1","","","","","Fizzle's Zippy Lighter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7187","35939","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","38","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6730","-1","","","","","Ironforge Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","2482","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","11" +"6731","-1","","","","","Ironforge Breastplate","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","871","4358","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","3","0","0","0","0","0","0","0","0","15" +"6732","-1","","","","","Gnomish Mechanic's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12108","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"6733","-1","","","","","Ironforge Gauntlets","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1145","5726","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6734","-1","","","","","Plans: Ironforge Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","164","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6735","-1","","","","","Plans: Ironforge Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6736","-1","","","","","Plans: Ironforge Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","164","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6737","-1","","","","","Dryleaf Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2805","14027","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","0" +"6738","-1","","","","","Bleeding Crescent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7040","35203","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","35","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6739","-1","","","","","Cliffrunner's Aim","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2991","14958","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","29","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"6740","-1","","","","","Azure Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","5004","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","7","0","0","0","0","0","0","0","0","0" +"6741","-1","","","","","Orcish War Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3014","15072","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","29","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6742","-1","","","","","Stonefist Girdle","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2830","14150","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","0" +"6743","-1","","","","","Sustaining Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1462","5850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","4","0","0","0","0","0","0","0","0","0" +"6744","-1","","","","","Gloves of Kapelan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1190","5950","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"6745","-1","","","","","Swiftrunner Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2239","11197","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","0" +"6746","-1","","","","","Basalt Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7075","35379","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","8","0","0","0","0","0","0","0","0","0" +"6747","-1","","","","","Enforcer Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5015","25076","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"6748","-1","","","","","Monkey Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6749","-1","","","","","Tiger Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6750","-1","","","","","Snake Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6751","-1","","","","","Mourning Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7057","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","-3","7","0","0","0","0","0","0","0","0","0" +"6752","-1","","","","","Lancer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1601","8009","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","6","0","0","0","0","0","0","0","0","0" +"6753","-1","","","","","Feather Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6754","-1","","","","","Large Moneybag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6755","-1","","","","","A Small Container of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6756","-1","","","","","Jewelry Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1375","5500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6757","-1","","","","","Jaina's Signet Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4630","18520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","7","0","0","0","0","0","0","0","0","0" +"6766","-1","","","","","Flayed Demon Skin (old2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1480","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6767","-1","","","","","Tyranis' Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6773","-1","","","","","Gelkis Marauder Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7366","36831","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","7","0","0","0","0","0","0","0","0","0" +"6774","-1","","","","","Uthek's Finger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2885","11540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","5","5","0","0","0","0","0","0","0","0" +"6775","-1","","","","","Tome of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1642","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6776","-1","","","","","Tome of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1649","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"6777","-1","","","","","Tome of Righteousness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6778","-1","","","","","Tome of Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6779","-1","","","","","Tome of Nobility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6780","-1","","","","","Lilac Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1560","7800","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","3","0","0","0","0","0","0","0","0","0" +"6781","-1","","","","","Bartleby's Mug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6782","-1","","","","","Marshal Haggard's Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6783","-1","","","","","Dead-tooth's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6784","-1","","","","","Braced Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2031","10159","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","7","0","0","0","0","0","0","0","0","0" +"6785","-1","By the hand of Khadgar","","","","Powers of the Void","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6786","-1","","","","","Simple Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","298","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6787","-1","","","","","White Woolen Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2331","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6788","-1","","","","","Magram Hunter's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3331","16658","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","0" +"6789","-1","","","","","Ceremonial Centaur Blanket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4012","20060","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","9","0","0","0","0","0","0","0","0","0" +"6790","-1","","","","","Ring of Calm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1540","6160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","0","0","0","0","0","0","0","0","0","0" +"6791","-1","","","","","Hellion Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3464","17321","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","9","5","0","0","0","0","0","0","0","0" +"6792","-1","","","","","Sanguine Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4738","23693","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"6793","-1","","","","","Auric Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3157","15786","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","0" +"6794","-1","","","","","Stormfire Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2641","13206","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","4","0","0","0","0","0","0","0","0","0" +"6795","-1","","","","","White Swashbuckler's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6796","-1","","","","","Red Swashbuckler's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6797","-1","","","","","Eyepoker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6362","31813","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","37","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6798","-1","","","","","Blasting Hackbut","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6386","31934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","37","-1","0","0","30","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"6799","-1","","","","","Vejrek's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6800","-1","","","","","Umbral Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6801","-1","","","","","Baroque Apron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4456","22282","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","7","0","0","0","0","0","0","0","0" +"6802","-1","","","","","Sword of Omen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18255","91277","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","44","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","3","0","0","0","0","0","0","0","0" +"6803","-1","","","","","Prophetic Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","19540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","5","0","0","0","0","0","0","0","0","0" +"6804","-1","","","","","Windstorm Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11262","56312","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","40","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","5","0","0","0","0","0","0","0","0","0" +"6805","-1","","","","","Horn of Vorlus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6806","-1","","","","","Dancing Flame","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8508","42540","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","40","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6807","-1","","","","","Frog Leg Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6808","-1","","","","","Elunite Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6809","-1","","","","","Elura's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6810","-1","","","","","Surena's Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6811","-1","","","","","Aquadynamic Fish Lens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6812","-1","","","","","Case of Elunite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6826","-1","","","","","Brilliant Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","548","2195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6827","-1","","","","","Box of Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6828","-1","","","","","Visionary Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6268","31340","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","7","0","0","0","0","0","0","0","0","0" +"6829","-1","","","","","Sword of Serenity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18714","93572","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","44","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","0","0","0","0","0","0","0","0","0" +"6830","-1","","","","","Bonebiter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23476","117381","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","44","-1","0","0","105","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","10","0","0","0","0","0","0","0","0","0" +"6831","-1","","","","","Black Menace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17522","87613","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","44","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"6832","-1","","","","","Cloak of Blight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3769","18849","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","0" +"6833","-1","","","","","White Tuxedo Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6834","-1","","","","","Black Tuxedo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6835","-1","","","","","Black Tuxedo Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","504","2521","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6836","-1","","","","","Dress Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6837","-1","","","","","Wedding Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6838","-1","","","","","Scorched Spider Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6839","-1","","","","","Charred Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6840","-1","","","","","Galvanized Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6841","-1","","","","","Vial of Phlogiston","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6842","-1","","","","","Furen's Instructions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6843","-1","","","","","Cask of Scalder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6844","-1","","","","","Burning Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6845","-1","","","","","Burning Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6846","-1","","","","","Defias Script","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","811","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6847","-1","","","","","Dark Iron Script","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6848","-1","","","","","Searing Coral","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6849","-1","","","","","Sunscorched Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6850","-1","","","","","Bloodscalp Scalp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6851","-1","","","","","Essence of the Exile","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6852","-1","","","","","Eternal Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6866","-1","","","","","Symbol of Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6886","-1","","","","","Monster - Throwing Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"6887","-1","","","","","Spotted Yellowtail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"6888","-1","","","","","Herb Baked Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6889","-1","","","","","Small Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6890","-1","","","","","Smoked Bear Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6891","-1","","","","","Recipe: Herb Baked Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6892","-1","","","","","Recipe: Smoked Bear Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","185","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6893","-1","","","","","Workshop Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6894","-1","","","","","Whirlwind Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6895","-1","","","","","Jordan's Smithing Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6896","-1","","","","","Twain Component Test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","50","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","15" +"6897","-1","","","","","Manual: Path of the Berserker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"6898","-1","","","","","Orb of Soran'ruk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4132","16530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6899","-1","","","","","Warlock Orb 35","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","21530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6900","-1","","","","","Enchanted Gold Bloodrobe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4685","23427","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","256","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","17","0","0","0","0","0","0","0","0","0" +"6901","-1","","","","","Glowing Thresher Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1523","7615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","3","0","0","0","0","0","0","0","0","24" +"6902","-1","","","","","Bands of Serra'kis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","877","4385","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","22" +"6903","-1","","","","","Gaze Dreamer Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1549","7747","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","6","0","0","0","0","0","0","0","0","23" +"6904","-1","","","","","Bite of Serra'kis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4665","23326","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","28","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","23" +"6905","-1","","","","","Reef Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4010","20054","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","27","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","7","0","0","0","0","0","0","0","0","22" +"6906","-1","","","","","Algae Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1275","6377","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","4","0","0","0","0","0","0","0","0","23" +"6907","-1","","","","","Tortoise Armor","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1872","9364","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","20" +"6908","-1","","","","","Ghamoo-ra's Bind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","522","2611","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","20" +"6909","-1","","","","","Strike of the Hydra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7155","35777","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","31","-1","0","0","67","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","26" +"6910","-1","","","","","Leech Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2298","11492","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","15","1","0","0","0","0","0","0","0","26" +"6911","-1","","","","","Moss Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1442","7210","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","5","0","0","0","0","0","0","0","0","26" +"6912","-1","","","","","Heartswood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6913","-1","","","","","Heartswood Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6914","-1","","","","","Soran'ruk Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6915","-1","","","","","Large Soran'ruk Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6916","-1","","","","","Tome of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1646","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6926","-1","This letter is sealed","","","","Furen's Notes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6927","-1","","","","","Big Will's Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6928","-1","","","","","Bloodstone Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6929","-1","","","","","Bath'rah's Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","855","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6930","-1","","","","","Rod of Channeling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6931","-1","Faint letters on the cover of the locked book read, 'Tome of the Cabal.'","","","","Moldy Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6946","-1","","","","","Monster - Gun, Club","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","3","0","0","0","0","0","0","0","0","0","0","1" +"6947","-1","","","","","Instant Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","22","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"6948","-1","","","","","Hearthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6949","-1","","","","","Instant Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6950","-1","","","","","Instant Poison III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"6951","-1","","","","","Mind-numbing Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"6952","-1","","","","","Thick Bear Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6953","-1","","","","","Verigan's Fist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7459","37297","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","2","0","0","65","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","12","6","0","0","0","0","0","0","0","0" +"6966","-1","","","","","Elunite Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","693","3468","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6967","-1","","","","","Elunite Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","696","3481","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6968","-1","","","","","Elunite Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","698","3494","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6969","-1","","","","","Elunite Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3506","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6970","-1","","","","","Furen's Favor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","906","4531","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6971","-1","","","","","Fire Hardened Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11105","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"6972","-1","","","","","Fire Hardened Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3242","16214","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","5","0","0","0","0","0","0","0","0","0" +"6973","-1","","","","","Fire Hardened Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2465","12326","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"6974","-1","","","","","Fire Hardened Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1497","7485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"6975","-1","","","","","Whirlwind Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16766","83831","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","40","1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","14","0","0","0","0","0","0","0","0","0" +"6976","-1","","","","","Whirlwind Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17264","86321","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","15","0","0","0","0","0","0","0","0","0" +"6977","-1","","","","","Whirlwind Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17325","86627","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","15","0","0","0","0","0","0","0","0","0" +"6978","-1","","","","","Umbral Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","672","3363","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6979","-1","","","","","Haggard's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","3376","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6980","-1","","","","","Haggard's Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","3389","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6981","-1","","","","","Umbral Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","680","3402","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6982","-1","","","","","Umbral Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3415","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6983","-1","","","","","Haggard's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3428","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6984","-1","","","","","Umbral Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3441","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6985","-1","","","","","Haggard's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6986","-1","","","","","Crimson Lotus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6987","-1","","","","","Fish Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6988","-1","","","","","Felhunter Summoning Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6989","-1","","","","","Vial of Hatefury Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6990","-1","","","","","Lesser Infernal Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6991","-1","","","","","Smoldering Coal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6992","-1","","","","","Jordan's Ore Shipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6993","-1","","","","","Jordan's Refined Ore Shipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6994","-1","","","","","Whitestone Oak Lumber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6995","-1","","","","","Corrupted Kor Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6996","-1","","","","","Jordan's Weapon Notes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","871","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6997","-1","A large number of papers from the 'Tome of the Cabal.'","","","","Tattered Manuscript","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6998","-1","","","","","Nimbus Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","774","3872","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","5","0","0","0","0","0","0","0","0","0" +"6999","-1","","","","","Tome of the Cabal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7000","-1","","","","","Heartwood Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","3252","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","0" +"7001","-1","","","","","Gravestone Scepter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3535","17677","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","29","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","1","0","0","0","0","0","0","0","0","0","0" +"7002","-1","","","","","Arctic Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3028","15141","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","642","0","0","0","5","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","3","0","0","0","0","0","0","0","0","0" +"7003","-1","","","","","Beetle Clasps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","981","4906","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","0" +"7004","-1","","","","","Prelacy Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","984","4924","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7005","-1","","","","","Skinning Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","4","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7006","-1","","","","","Reconstructed Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7007","-1","","","","","Backus' Phat Lewt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7026","-1","","","","","Linen Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","111","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7027","-1","","","","","Boots of Darkness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","5625","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","23" +"7046","-1","","","","","Azure Silk Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1494","7473","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","23" +"7047","-1","","","","","Hands of Darkness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","824","4124","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","24" +"7048","-1","","","","","Azure Silk Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","745","3725","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","24" +"7049","-1","","","","","Truefaith Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","914","4570","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","25" +"7050","-1","","","","","Silk Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","999","4995","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","27" +"7051","-1","","","","","Earthen Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2696","13481","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","6","0","0","0","0","0","0","0","0","29" +"7052","-1","","","","","Azure Silk Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1488","7440","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","30" +"7053","-1","","","","","Azure Silk Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2240","11201","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","30" +"7054","-1","","","","","Robe of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4700","23504","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","8","0","0","0","0","0","0","0","0","33" +"7055","-1","","","","","Crimson Silk Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1503","7519","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","30" +"7056","-1","","","","","Crimson Silk Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2314","11574","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","31" +"7057","-1","","","","","Green Silken Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2323","11618","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","0","0","0","0","0","0","0","0","0","31" +"7058","-1","","","","","Crimson Silk Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2052","10262","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"7059","-1","","","","","Crimson Silk Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2781","13905","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","33" +"7060","-1","","","","","Azure Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2791","13958","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","33" +"7061","-1","","","","","Earthen Silk Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2017","10087","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"7062","-1","","","","","Crimson Silk Pantaloons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12150","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","34" +"7063","-1","","","","","Crimson Silk Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4741","23707","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","15","6","0","0","0","0","0","0","0","0","36" +"7064","-1","","","","","Crimson Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2569","12849","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","37" +"7065","-1","","","","","Green Silk Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2398","11990","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","28" +"7067","-1","","","","","Elemental Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7068","-1","","","","","Elemental Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7069","-1","","","","","Elemental Air","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7070","-1","","","","","Elemental Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7071","-1","","","","","Iron Buckle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7072","-1","","","","","Naga Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7073","-1","","","","","Broken Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7074","-1","","","","","Chipped Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7075","-1","","","","","Core of Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7076","-1","","","","","Essence of Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7077","-1","","","","","Heart of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7078","-1","","","","","Essence of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7079","-1","","","","","Globe of Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7080","-1","","","","","Essence of Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7081","-1","","","","","Breath of Wind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7082","-1","","","","","Essence of Air","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7083","-1","","","","","Purified Kor Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7084","-1","","","","","Pattern: Crimson Silk Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7085","-1","","","","","Pattern: Azure Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7086","-1","","","","","Pattern: Earthen Silk Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","197","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7087","-1","","","","","Pattern: Crimson Silk Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","197","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7088","-1","","","","","Pattern: Crimson Silk Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","197","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7089","-1","","","","","Pattern: Azure Silk Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7090","-1","","","","","Pattern: Green Silk Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","197","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7091","-1","","","","","Pattern: Truefaith Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","197","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7092","-1","","","","","Pattern: Hands of Darkness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","197","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7093","-1","","","","","Pattern: Boots of Darkness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","197","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7094","-1","","","","","Driftwood Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174","871","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","10","-1","0","0","15","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7095","-1","","","","","Bog Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7096","-1","","","","","Plucked Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7097","-1","","","","","Leg Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7098","-1","","","","","Splintered Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7099","-1","","","","","Severed Pincer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7100","-1","","","","","Sticky Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7101","-1","","","","","Bug Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7106","-1","","","","","Zodiac Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6173","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","7","0","0","0","0","0","0","0","0","0" +"7107","-1","","","","","Belt of the Stars","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1858","9293","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7108","-1","","","","","Infantry Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1046","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","6278","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","6" +"7109","-1","","","","","Pioneer Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74","372","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7110","-1","","","","","Silver-thread Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2069","10349","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","4","0","0","0","0","0","0","0","0","26" +"7111","-1","","","","","Nightsky Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3329","16648","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","8","0","0","0","0","0","0","0","32" +"7112","-1","","","","","Aurora Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4547","22735","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"7113","-1","","","","","Mistscape Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6707","33535","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","18","0","0","0","0","0","0","0","0","41" +"7114","-1","","","","","Pattern: Azure Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","197","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7115","-1","","","","","Heirloom Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3415","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7116","-1","","","","","Heirloom Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3428","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7117","-1","","","","","Heirloom Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3441","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7118","-1","","","","","Heirloom Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7119","-1","This antenna won't twitch forever","","","","Twitching Antenna","1","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7120","-1","","","","","Ruga's Bulwark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"7126","-1","","","","","Smoky Iron Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7127","-1","","","","","Powdered Azurite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7128","-1","","","","","Uncloven Satyr Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7129","-1","","","","","Brutal Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1546","7734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7130","-1","","","","","Brutal Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2328","11642","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"7131","-1","","","","","Dragonmaw Shinbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7132","-1","","","","","Brutal Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2338","11692","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"7133","-1","","","","","Brutal Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3098","15494","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","5","0","0","0","0","0","0","0","0","0" +"7134","-1","","","","","Sturdy Dragonmaw Shinbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7135","-1","","","","","Broken Dragonmaw Shinbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7146","-1","","","","","The Scarlet Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7148","-1","","","","","Goblin Jumper Cables","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7166","-1","","","","","Copper Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","973","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7170","-1","","","","","Twain Random Sword FOO","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","692","3462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","50","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","15" +"7171","-1","","","","","TWAIN TEST ITEM VISUAL SWORD","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7187","-1","","","","","VanCleef's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4898","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","20" +"7188","-1","","","","","Stormwind Guard Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1485","7426","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","4","0","0","0","0","0","0","0","0","19" +"7189","-1","","","","","Goblin Rocket Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4712","23563","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7190","-1","","","","","Scorched Rocket Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7191","-1","","","","","Fused Wiring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7192","-1","","","","","Schematic: Goblin Rocket Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","202","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7206","-1","","","","","Mirror Lake Water Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7207","-1","","","","","Jennea's Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7208","-1","","","","","Tazan's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7209","-1","","","","","Tazan's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","319","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7226","-1","","","","","Mage-tastic Gizmonitor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7227","-1","","","","","Balnir Snapdragons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7228","-1","","","","","Tigule's Strawberry Ice Cream","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7229","-1","","","","","Explorer's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","285","1427","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","0" +"7230","-1","","","","","Smite's Mighty Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3103","15515","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","23","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","4","0","0","0","0","0","0","0","0","18" +"7231","-1","","","","","Astor's Letter of Introduction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7247","-1","","","","","Chest of Containment Coffers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7248","-1","","","","","Twain TEST Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"7249","-1","","","","","Charged Rift Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7266","-1","","","","","Ur's Treatise on Shadow Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7267","-1","","","","","Pristine Spider Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7268","-1","","","","","Xavian Water Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7269","-1","","","","","Deino's Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7270","-1","","","","","Laughing Sister's Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7271","-1","","","","","Flawless Ivory Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7272","-1","","","","","Bolt Charged Bramble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7273","-1","","","","","Witherbark Totem Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7274","-1","By Magus Tirth","","","","Rituals of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7275","-1","","","","","The Agamaggan Scrolls","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7276","-1","","","","","Handstitched Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7277","-1","","","","","Handstitched Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7278","-1","","","","","Light Leather Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7279","-1","","","","","Small Leather Ammo Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7280","-1","","","","","Rugged Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","814","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","6" +"7281","-1","","","","","Light Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","421","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"7282","-1","","","","","Light Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","599","2998","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","3","0","0","0","0","0","0","0","0","14" +"7283","-1","","","","","Black Whelp Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"7284","-1","","","","","Red Whelp Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2933","1","1","1","64","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","19" +"7285","-1","","","","","Nimble Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","588","2944","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"7286","-1","","","","","Black Whelp Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7287","-1","","","","","Red Whelp Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7288","-1","","","","","Pattern: Rugged Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","165","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7289","-1","","","","","Pattern: Black Whelp Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7290","-1","","","","","Pattern: Red Whelp Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7291","-1","","","","","Infernal Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7292","-1","","","","","Filled Containment Coffer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7293","-1","","","","","Dalaran Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7294","-1","","","","","Andron's Ledger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7295","-1","","","","","Tazan's Logbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7296","-1","","","","","Extinguished Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7297","-1","","","","","Morbent's Bane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7298","-1","","","","","Blade of Cunning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","468","2344","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","13","8","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"7299","-1","","","","","Test - Magic Stone Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","516","2583","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","25" +"7306","-1","","","","","Fenwick's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7307","-1","","","","","Flesh Eating Worm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7308","-1","Use near a mana rift disturbance","","","","Cantation of Manifestation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7309","-1","","","","","Dalaran Status Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7326","-1","","","","","Thun'grim's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","696","3480","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7327","-1","","","","","Thun'grim's Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","698","3493","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7328","-1","","","","","Thun'grim's Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3506","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7329","-1","","","","","Thun'grim's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7330","-1","","","","","Infiltrator Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3923","19615","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2028","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7331","-1","","","","","Phalanx Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4330","21654","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2034","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7332","-1","","","","","Regal Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6692","33462","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","465","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7333","-1","","","","","Overseer's Whistle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7334","-1","","","","","Efflorescent Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1544","7721","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","9","2","0","0","0","0","0","0","0","0","0" +"7335","-1","","","","","Grizzly Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1937","9685","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","0","0","0","0","0","0","0","0","0","0" +"7336","-1","","","","","Wildwood Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1509","7548","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","1","0","0","0","0","0","0","0","0","0" +"7337","-1","It's huge!","","","","The Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7338","-1","It's blue, wait, it's green!","","","","Mood Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7339","-1","Hey, it's still a diamond.","","","","Miniscule Diamond Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7340","-1","Will you marry me?","","","","Flawless Diamond Solitaire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7341","-1","Trust me, she'll know.","","","","Cubic Zirconia Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7342","-1","Nothing says sorry like Piffeny.","","","","Silver Piffeny Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7343","-1","","","","","Bingles' Wrench","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7344","-1","","","","","Torch of Holy Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7345","-1","","","","","Bingles' Screwdriver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7346","-1","","","","","Bingles' Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7347","-1","","","","","Bingles' Cog Inverter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7348","-1","","","","","Fletcher's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"7349","-1","","","","","Herbalist's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","861","4308","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"7350","-1","","","","","Disciple's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7351","-1","","","","","Disciple's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","290","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7352","-1","","","","","Earthen Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1306","6533","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","22" +"7353","-1","","","","","Elder's Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2998","14991","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7354","-1","","","","","Elder's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1864","9324","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","797","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7355","-1","","","","","Elder's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5155","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1049","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7356","-1","","","","","Elder's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7056","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7357","-1","","","","","Elder's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","9378","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","630","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7358","-1","","","","","Pilferer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","885","4428","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","23" +"7359","-1","","","","","Heavy Earthen Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","978","4890","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"7360","-1","","","","","Pattern: Dark Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7361","-1","","","","","Pattern: Herbalist's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","165","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7362","-1","","","","","Pattern: Earthen Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","165","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7363","-1","","","","","Pattern: Pilferer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","165","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7364","-1","","","","","Pattern: Heavy Earthen Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","165","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7365","-1","","","","","Gnoam Sprecklesprocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7366","-1","","","","","Elder's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1098","5490","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","713","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7367","-1","","","","","Elder's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1818","9093","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1133","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7368","-1","","","","","Elder's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2677","13385","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","546","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7369","-1","","","","","Elder's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14777","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7370","-1","","","","","Elder's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1012","5064","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7371","-1","","","","","Heavy Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7372","-1","","","","","Heavy Leather Ammo Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7373","-1","","","","","Dusky Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15485","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","28" +"7374","-1","","","","","Dusky Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3760","18804","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","0","0","0","0","0","0","0","0","0","30" +"7375","-1","","","","","Green Whelp Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3773","18869","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","30" +"7376","-1","","","","","Bingles' Blastencapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7377","-1","","","","","Frost Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2269","11347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7378","-1","","","","","Dusky Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2146","10731","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","32" +"7386","-1","","","","","Green Whelp Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11937","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","33" +"7387","-1","","","","","Dusky Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12939","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"7388","-1","","","","","Skull Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7389","-1","","","","","Venture Co. Ledger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7390","-1","","","","","Dusky Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4237","21188","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","3","0","0","0","0","0","0","0","0","35" +"7391","-1","","","","","Swift Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4253","21266","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","35" +"7392","-1","","","","","Green Whelp Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7406","-1","","","","","Infiltrator Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","902","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7407","-1","","","","","Infiltrator Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3666","18333","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","483","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7408","-1","","","","","Infiltrator Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2281","11405","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1154","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7409","-1","","","","","Infiltrator Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2289","11445","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","818","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7410","-1","","","","","Infiltrator Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1174","5873","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1070","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7411","-1","","","","","Infiltrator Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1769","8846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","986","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7412","-1","","","","","Infiltrator Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1302","6512","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","734","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7413","-1","","","","","Infiltrator Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2157","10785","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","650","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7414","-1","","","","","Infiltrator Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3175","15879","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","567","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7415","-1","","","","","Dervish Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1153","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","24" +"7416","-1","","","","","Phalanx Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1442","7213","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1091","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7417","-1","","","","","Phalanx Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2903","14519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","840","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7418","-1","","","","","Phalanx Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4256","21280","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","504","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7419","-1","","","","","Phalanx Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1326","6631","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7420","-1","","","","","Phalanx Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2658","13290","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","671","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7421","-1","","","","","Phalanx Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1778","8891","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","755","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7422","-1","","","","","Phalanx Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1622","8113","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","923","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7423","-1","","","","","Phalanx Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3941","19709","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","588","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7424","-1","","","","","Phalanx Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2709","13545","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1175","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7425","-1","","","","","Cyrik's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7426","-1","","","","","Cerulean Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1243","4975","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3476","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7427","-1","","","","","Cerulean Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3788","15155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","3506","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7428","-1","","","","","Shadowcat Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7429","-1","","","","","Twilight Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4620","23100","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","464","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7430","-1","","","","","Twilight Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4194","20974","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","464","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7431","-1","","","","","Twilight Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3899","19495","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","547","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7432","-1","","","","","Twilight Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2717","13589","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","631","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7433","-1","","","","","Twilight Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1684","8421","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7434","-1","","","","","Twilight Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","799","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7435","-1","","","","","Twilight Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2749","13747","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1135","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7436","-1","","","","","Twilight Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2111","10558","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","966","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7437","-1","","","","","Twilight Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1554","7772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1050","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7438","-1","","","","","Twilight Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1560","7802","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","882","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7439","-1","","","","","Sentinel Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5425","27127","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","485","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7440","-1","","","","","Sentinel Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5042","25212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","568","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7441","-1","","","","","Sentinel Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3514","17573","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","652","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7442","-1","","","","","Gyromast's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7443","-1","","","","","Sentinel Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2243","11217","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","736","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7444","-1","","","","","Sentinel Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3377","16887","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","820","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7445","-1","","","","","Sentinel Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3660","18303","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1156","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7446","-1","","","","","Sentinel Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3092","15462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","987","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7447","-1","","","","","Sentinel Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1071","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7448","-1","","","","","Sentinel Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2076","10380","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","903","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7449","-1","","","","","Pattern: Dusky Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7450","-1","","","","","Pattern: Green Whelp Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","165","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7451","-1","","","","","Pattern: Green Whelp Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7452","-1","","","","","Pattern: Dusky Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7453","-1","","","","","Pattern: Swift Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7454","-1","","","","","Knight's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5915","29575","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","505","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7455","-1","","","","","Knight's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5937","29688","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","589","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7456","-1","","","","","Knight's Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4139","20695","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","673","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7457","-1","","","","","Knight's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2564","12823","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","757","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7458","-1","","","","","Knight's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3983","19916","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","841","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7459","-1","","","","","Knight's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4317","21588","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1177","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7460","-1","","","","","Knight's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","10004","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1008","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7461","-1","","","","","Knight's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2429","12149","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1092","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7462","-1","","","","","Knight's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2682","13412","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","925","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7463","-1","","","","","Sentinel Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6202","31013","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","2040","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7464","-1","","","","","Glyphs of Summoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7465","-1","","","","","Knight's Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6747","33735","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","2040","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7466","-1","","","","","Vermilion Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1921","7685","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3479","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7467","-1","","","","","Vermilion Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5658","22635","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3507","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7468","-1","","","","","Regal Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6763","33815","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","465","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7469","-1","","","","","Regal Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6284","31421","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","549","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7470","-1","","","","","Regal Wizard Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3668","18341","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","632","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7471","-1","","","","","Regal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2455","12275","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","716","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7472","-1","","","","","Regal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3423","17115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","800","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7473","-1","","","","","Regal Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3710","18554","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1136","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7474","-1","","","","","Regal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3281","16407","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","968","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7475","-1","","","","","Regal Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2371","11856","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1052","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7476","-1","","","","","Regal Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2203","11019","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","884","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7477","-1","","","","","Ranger Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8124","40624","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","486","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7478","-1","","","","","Ranger Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6991","34958","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","570","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7479","-1","","","","","Ranger Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4873","24365","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","653","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7480","-1","","","","","Ranger Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3019","15095","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","737","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7481","-1","","","","","Ranger Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4908","24541","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","821","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7482","-1","","","","","Ranger Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4926","24630","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1157","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7483","-1","","","","","Ranger Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4238","21192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","989","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7484","-1","","","","","Ranger Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3062","15314","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1073","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7485","-1","","","","","Ranger Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3073","15367","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","905","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7486","-1","","","","","Captain's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9325","46628","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","507","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7487","-1","","","","","Captain's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8665","43328","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","591","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7488","-1","","","","","Captain's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6038","30193","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","674","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7489","-1","","","","","Captain's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3740","18703","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","758","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7490","-1","","","","","Captain's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5680","28403","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","842","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7491","-1","","","","","Captain's Shoulderguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6158","30792","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1179","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7492","-1","","","","","Captain's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3015","15077","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1009","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7493","-1","","","","","Captain's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3268","16344","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1094","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7494","-1","","","","","Captain's Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3543","17717","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","926","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7495","-1","","","","","Captain's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9558","47792","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7496","-1","","","","","Field Plate Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8882","44412","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7497","-1","","","","","Ivory Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1983","7935","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","3480","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7498","-1","","","","","Top of Gelkak's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7499","-1","","","","","Middle of Gelkak's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7500","-1","","","","","Bottom of Gelkak's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7506","-1","","","","","Gnomish Universal Remote","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7507","-1","","","","","Arcane Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7508","-1","","","","","Ley Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7509","-1","","","","","Manaweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","553","2769","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","128","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","0","0","0","0","0","0","0","0","0","0" +"7510","-1","","","","","Lesser Spellfire Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","556","2780","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","128","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","0","0","0","0","0","0","0","0","0","0" +"7511","-1","","","","","Astral Knot Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1938","9691","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","6","0","0","0","0","0","0","0","0" +"7512","-1","","","","","Nether-lace Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1945","9727","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","6","0","0","0","0","0","0","0","0" +"7513","-1","","","","","Ragefire Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9805","49028","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","40","128","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7514","-1","","","","","Icefury Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9842","49212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","40","128","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7515","-1","","","","","Celestial Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","21530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7516","-1","","","","","Tabetha's Instructions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","911","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7517","-1","","","","","Gossamer Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9372","46863","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","467","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7518","-1","","","","","Gossamer Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9406","47031","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","467","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7519","-1","","","","","Gossamer Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7635","38175","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","550","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7520","-1","","","","","Gossamer Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5747","28737","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","634","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7521","-1","","","","","Gossamer Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3560","17803","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","718","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7522","-1","","","","","Gossamer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4962","24814","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","801","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7523","-1","","","","","Gossamer Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4993","24965","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1138","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7524","-1","","","","","Gossamer Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4297","21486","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","969","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7525","-1","","","","","Gossamer Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3106","15530","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1053","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7526","-1","","","","","Gossamer Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3367","16835","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","886","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7527","-1","","","","","Cabalist Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11284","56423","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","488","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7528","-1","","","","","Cabalist Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9894","49471","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","571","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7529","-1","","","","","Cabalist Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6897","34486","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","655","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7530","-1","","","","","Cabalist Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4273","21366","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","739","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7531","-1","","","","","Cabalist Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6434","32171","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","823","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7532","-1","","","","","Cabalist Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6975","34876","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1159","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7533","-1","","","","","Cabalist Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5557","27789","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","990","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7534","-1","","","","","Cabalist Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4016","20080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1074","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7535","-1","","","","","Cabalist Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4353","21769","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","907","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7536","-1","","","","","Champion's Wall Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13048","65244","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","2058","0","0","0","0","0","0","0","0","0","0","1493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7537","-1","","","","","Gothic Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14012","70062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","44" +"7538","-1","","","","","Champion's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12322","61612","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","508","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7539","-1","","","","","Champion's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12692","63461","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","592","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7540","-1","","","","","Champion's Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8845","44228","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","676","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7541","-1","","","","","Champion's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5479","27396","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","760","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7542","-1","","","","","Champion's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8284","41422","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","844","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7543","-1","","","","","Champion's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8123","40619","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1180","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7544","-1","","","","","Champion's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4296","21484","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1011","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7545","-1","","","","","Champion's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4658","23290","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1095","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7546","-1","","","","","Champion's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5050","25251","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","928","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7547","-1","","","","","Onyx Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3092","12370","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3482","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7548","-1","","","","","Onyx Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6507","26030","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3511","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7549","-1","","","","","Fairy's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6420","25680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","5","5","0","0","0","0","0","0","0","42" +"7550","-1","","","","","Warrior's Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7645","30580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","10","0","0","0","0","0","0","0","0","42" +"7551","-1","","","","","Entwined Opaline Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7145","28580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","3","0","0","0","0","0","0","0","0","42" +"7552","-1","","","","","Falcon's Hook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","9","0","0","0","0","0","0","0","0","39" +"7553","-1","","","","","Band of the Unicorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7554","-1","","","","","Willow Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","4158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2002","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","14" +"7555","-1","","","","","Regal Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7123","28493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","45","-1","0","2050","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7556","-1","","","","","Twilight Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5387","21548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7557","-1","","","","","Gossamer Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7596","30385","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2062","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7558","-1","","","","","Shimmering Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1609","6438","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","20" +"7559","-1","","","","","Runic Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","666","2665","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","12" +"7560","-1","","","","","Schematic: Gnomish Universal Remote","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7561","-1","","","","","Schematic: Goblin Jumper Cables","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7566","-1","","","","","Agamand Family Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7567","-1","","","","","Agamand Family Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7568","-1","","","","","Agamand Family Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7569","-1","","","","","Agamand Family Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7586","-1","","","","","Tharnariun's Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7587","-1","","","","","Thun'grim's Instructions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","931","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7606","-1","","","","","Polar Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","557","2788","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7607","-1","","","","","Sable Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1399","6998","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7608","-1","","","","","Seer's Fine Stein","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1106","4425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","1","0","0","0","0","0","0","0","0","16" +"7609","-1","","","","","Elder's Amber Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4210","16843","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7610","-1","","","","","Aurora Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5811","23245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","4","0","0","0","0","0","0","0","0","36" +"7611","-1","","","","","Mistscape Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7364","29458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","9","0","0","0","0","0","0","0","0","41" +"7612","-1","","","","","Monster - Axe, 2H Special NPC (Herod)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7613","-1","","","","","Pattern: Green Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","165","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7626","-1","","","","","Bundle of Furs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7627","-1","","","","","Dolanaar Delivery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7628","-1","A sealed letter","","","","Nondescript Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7629","-1","","","","","Ukor's Burden","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7646","-1","","","","","Crate of Inn Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7666","-1","","","","","Shattered Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2198","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7667","-1","","","","","Talvash's Phial of Scrying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7668","-1","","","","","Bloodstained Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","951","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7669","-1","","","","","Shattered Necklace Ruby","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7670","-1","","","","","Shattered Necklace Sapphire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7671","-1","","","","","Shattered Necklace Topaz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7672","-1","","","","","Shattered Necklace Power Source","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7673","-1","","","","","Talvash's Enhancing Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8990","35961","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","10","0","0","0","0","0","0","0","0" +"7674","-1","Sealed","","","","Delivery to Mathias","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7675","-1","","","","","Defias Shipping Schedule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7676","-1","","","","","Thistle Tea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7678","-1","","","","","Recipe: Thistle Tea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7679","-1","","","","","Shrike Bat Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7680","-1","","","","","Jadespine Basilisk Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7681","-1","","","","","Obsidian Golem Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7682","-1","","","","","Torturing Poker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7678","38392","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","34","-1","0","0","21","5","0","0","0","39","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","29" +"7683","-1","","","","","Bloody Brass Knuckles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3958","19792","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","29" +"7684","-1","","","","","Bloodmage Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2184","10924","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","4","0","0","0","0","0","0","0","0","30" +"7685","-1","","","","","Orb of the Forgotten Seer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","33" +"7686","-1","","","","","Ironspine's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4308","17235","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","30" +"7687","-1","","","","","Ironspine's Fist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8836","44180","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","35","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","0","0","0","0","0","0","0","0","0","30" +"7688","-1","","","","","Ironspine's Ribcage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5320","26602","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","6","3","0","0","0","0","0","0","0","30" +"7689","-1","","","","","Morbid Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11124","55621","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","0","0","0","0","0","0","0","0","30" +"7690","-1","","","","","Ebon Vise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2232","11164","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","4","6","8","0","0","0","0","0","0","0","30" +"7691","-1","","","","","Embalmed Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2689","13445","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","7","11","0","0","0","0","0","0","0","30" +"7706","-1","","","","","Monster - Mace2H, Special NPC (Mograine)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7707","-1","","","","","Twain Test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5610","28054","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","35" +"7708","-1","","","","","Necrotic Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6649","33249","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","35","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","30" +"7709","-1","","","","","Blighted Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3559","17797","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","0","0","0","0","0","0","0","0","0","30" +"7710","-1","","","","","Loksey's Training Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12279","61398","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","77","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"7711","-1","","","","","Robe of Doan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1171","5855","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","13","0","0","0","0","0","0","0","0","33" +"7712","-1","","","","","Mantle of Doan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","4407","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","33" +"7713","-1","","","","","Illusionary Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4777","23886","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","39","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","7","0","0","0","0","0","0","0","34" +"7714","-1","","","","","Hypnotic Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3835","19175","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","39","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","34" +"7715","-1","","","","","Onin's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7716","-1","","","","","Shattered Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7717","-1","","","","","Ravager","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18923","94616","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","42","-1","0","0","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","37" +"7718","-1","","","","","Herod's Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34338","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","15","0","0","0","0","0","0","0","0","37" +"7719","-1","","","","","Raging Berserker's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6863","34315","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","8","13","0","0","0","0","0","0","0","0","37" +"7720","-1","","","","","Whitemane's Chapeau","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5356","26783","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","9","0","0","0","0","0","0","0","39" +"7721","-1","","","","","Hand of Righteousness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17922","89611","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","44","-1","0","0","56","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","0","0","0","0","0","0","0","0","0","39" +"7722","-1","","","","","Triune Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9295","37180","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","7","7","0","0","0","0","0","0","0","39" +"7723","-1","","","","","Mograine's Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22567","112836","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","17","0","0","0","0","0","0","0","0","39" +"7724","-1","","","","","Gauntlets of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27180","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","39" +"7725","-1","","","","","Tabard of the Scarlet Crusade DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7143","28575","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7726","-1","","","","","Aegis of the Scarlet Commander","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11681","58406","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","8","7","0","0","0","0","0","0","0","39" +"7727","-1","","","","","Watchman Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2488","12444","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","3","11","4","0","0","0","0","0","0","0","27" +"7728","-1","","","","","Beguiler Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3223","16118","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","8","7","12","0","0","0","0","0","0","0","29" +"7729","-1","","","","","Chesterfall Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5514","27573","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","33","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","28" +"7730","-1","","","","","Cobalt Crusher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10146","50732","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","34","-1","0","0","74","5","0","0","0","111","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","29" +"7731","-1","","","","","Ghostshard Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","4","0","0","0","0","0","0","0","0","30" +"7733","-1","","","","","Staff of Prehistoria","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7734","-1","","","","","Six Demon Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15495","61980","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","46" +"7735","-1","","","","","Jannok's Rose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7736","-1","","","","","Fight Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11970","59854","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","39","-1","0","0","41","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","0","0","0","0","0","0","0","0","34" +"7737","-1","Written in a language you cannot decipher.","","","","Sethir's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7738","-1","","","","","Evergreen Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1058","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"7739","-1","","","","","Timberland Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","480","2401","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"7740","-1","","","","","Gni'kiv Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7741","-1","","","","","The Shaft of Tsol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7742","-1","","","","","Schematic: Gnomish Cloaking Device","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7746","-1","","","","","Explorers' League Commendation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8430","33720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7747","-1","","","","","Vile Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7754","38774","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","0","0","0","0","0","0","0","0","0","0" +"7748","-1","","","","","Forcestone Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10862","54312","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","9","0","0","0","0","0","0","0","0","0" +"7749","-1","","","","","Omega Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","19540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7750","-1","","","","","Mantle of Woe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1712","8562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","7","0","0","0","0","0","0","0","0","0" +"7751","-1","","","","","Vorrel's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1614","8072","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","8","0","0","0","0","0","0","0","0","0" +"7752","-1","","","","","Dreamslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6902","34514","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","33","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","7","3","0","0","0","0","0","0","0","0","28" +"7753","-1","","","","","Bloodspiller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7874","39371","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","32","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","27" +"7754","-1","","","","","Harbinger Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1959","9798","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","3","2","0","0","0","0","0","0","0","25" +"7755","-1","","","","","Flintrock Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4140","20702","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","10","10","0","0","0","0","0","0","0","33" +"7756","-1","","","","","Dog Training Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1606","8030","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7757","-1","","","","","Windweaver Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12874","64374","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","37","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","7","0","0","0","0","0","0","0","0","32" +"7758","-1","","","","","Ruthless Shiv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15074","75370","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","39","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","19","0","0","0","0","0","0","0","0","34" +"7759","-1","","","","","Archon Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6723","33619","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","8","12","0","0","0","0","0","0","0","33" +"7760","-1","","","","","Warchief Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6074","30371","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","19","5","0","0","0","0","0","0","0","34" +"7761","-1","","","","","Steelclaw Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11290","56453","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","38","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","3","8","0","0","0","0","0","0","0","0","33" +"7766","-1","","","","","Empty Brown Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7767","-1","","","","","Empty Blue Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7768","-1","","","","","Empty Red Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7769","-1","","","","","Filled Brown Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7770","-1","","","","","Filled Blue Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7771","-1","","","","","Filled Red Waterskin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7786","-1","","","","","Headsplitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5605","28028","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","5","0","0","0","0","0","0","0","0","25" +"7787","-1","","","","","Resplendent Guardian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3960","19802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","680","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","26" +"7806","-1","","","","","Lollipop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7807","-1","","","","","Candy Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7808","-1","","","","","Chocolate Square","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7809","-1","","","","","Easter Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1024","5124","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7810","-1","","","","","Vial of Purest Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7811","-1","","","","","Remaining Drops of Purest Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7812","-1","","","","","Corrupt Manifestation's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7813","-1","","","","","Shard of Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7826","-1","","","","","Monster - Staff, Special NPC (Whitemane)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7846","-1","","","","","Crag Coyote Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7847","-1","","","","","Buzzard Gizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7848","-1","","","","","Rock Elemental Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7866","-1","","","","","Empty Thaumaturgy Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7867","-1","","","","","Vessel of Dragon's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7868","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","Thieven' Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","16","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7869","-1","","","","","Lucius's Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","50","242","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7870","-1","Inside this lockbox are the empty thaumaturgy vessels.","","","","Thaumaturgy Vessel Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7871","-1","","","","","Token of Thievery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7872","-1","","","","","Rusty Thieves' Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7886","-1","You do not understand the writing in the journal.","","","","Untranslated Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7887","-1","","","","","Necklace and Gem Salvage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7888","-1","","","","","Jarkal's Enhancing Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8990","35961","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","10","0","0","0","0","0","0","0","0" +"7906","-1","","","","","Horns of Nez'ra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7907","-1","","","","","Certificate of Thievery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","992","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7908","-1","","","","","Klaven Mortwake's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1151","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7909","-1","","","","","Aquamarine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7910","-1","","","","","Star Ruby","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7911","-1","","","","","Truesilver Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7912","-1","","","","","Solid Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7913","-1","","","","","Barbaric Iron Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","12502","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","0","0","0","0","0","0","0","0","27" +"7914","-1","","","","","Barbaric Iron Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3330","16654","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","0","0","0","0","0","0","0","0","0","27" +"7915","-1","","","","","Barbaric Iron Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3337","16686","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","30" +"7916","-1","","","","","Barbaric Iron Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3700","18502","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","7","0","0","0","0","0","0","0","0","31" +"7917","-1","","","","","Barbaric Iron Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2711","13557","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","32" +"7918","-1","","","","","Heavy Mithril Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3701","18508","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","0","0","0","0","0","0","0","0","0","40" +"7919","-1","","","","","Heavy Mithril Gauntlet","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2476","12382","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","40" +"7920","-1","","","","","Mithril Scale Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8053","40265","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","0","0","0","0","0","0","0","0","0","37" +"7921","-1","","","","","Heavy Mithril Pants","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5387","26936","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","0","0","0","0","0","0","0","0","0","40" +"7922","-1","","","","","Steel Plate Helm","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2377","11885","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","40" +"7923","-1","","","","","Defias Tower Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7924","-1","","","","","Mithril Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4103","20516","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","0","0","0","0","0","0","0","0","38" +"7925","-1","","","","","Mithril Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4447","22238","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","39" +"7926","-1","","","","","Ornate Mithril Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5952","29761","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","40" +"7927","-1","","","","","Ornate Mithril Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2987","14935","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7928","-1","","","","","Ornate Mithril Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4857","24286","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","40" +"7929","-1","","","","","Orcish War Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7739","38698","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","0","0","0","0","0","0","0","0","0","37" +"7930","-1","","","","","Heavy Mithril Breastplate","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7045","35228","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","0","0","0","0","0","0","0","0","0","41" +"7931","-1","","","","","Mithril Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7955","39778","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","41" +"7932","-1","","","","","Mithril Scale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8661","43309","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","42" +"7933","-1","","","","","Heavy Mithril Boots","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5769","28847","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","42" +"7934","-1","","","","","Heavy Mithril Helm","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5790","28952","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","42" +"7935","-1","","","","","Ornate Mithril Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8368","41842","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7936","-1","","","","","Ornate Mithril Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6739","33697","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"7937","-1","","","","","Ornate Mithril Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6763","33818","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","44" +"7938","-1","","","","","Truesilver Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4028","20142","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","7","0","0","0","0","0","0","0","0","40" +"7939","-1","","","","","Truesilver Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10899","54496","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","44" +"7941","-1","","","","","Heavy Mithril Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12520","62601","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","0","0","0","0","0","0","0","0","0","37" +"7942","-1","","","","","Blue Glittering Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14659","73296","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","44","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","39" +"7943","-1","","","","","Wicked Mithril Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15891","79459","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","45","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","4","0","0","0","0","0","0","0","0","40" +"7944","-1","","","","","Dazzling Mithril Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20092","100463","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","48","-1","0","0","34","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","0","0","0","0","0","0","0","0","0","43" +"7945","-1","","","","","Big Black Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17291","86455","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","46","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","0","0","0","0","0","0","0","0","0","41" +"7946","-1","","","","","Runed Mithril Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21660","108304","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","49","-1","0","0","41","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","4","0","0","0","0","0","0","0","0","44" +"7947","-1","","","","","Ebon Shiv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24892","124460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","51","-1","0","0","32","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","46" +"7948","-1","","","","","Girdle of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1357","6787","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7949","-1","","","","","Leggings of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3990","19950","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","11","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","0","0","0","0","0","0","0","0","0","0" +"7950","-1","","","","","Armor of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6473","32365","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","42","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","0","0","0","0","0","0","0","0","0","0" +"7951","-1","","","","","Hands of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6862","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7952","-1","","","","","Boots of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3025","15126","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","3","0","0","0","0","0","0","0","0","0" +"7953","-1","","","","","Mask of Thero-shan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4907","24539","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","42","8","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","0","0","0","0","0","0","0","0","0","0" +"7954","-1","","","","","The Shatterer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23159","115799","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","47","-1","0","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","42" +"7955","-1","","","","","Copper Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","241","1208","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","11","-1","0","0","15","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7956","-1","","","","","Bronze Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1944","9722","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","25","-1","0","0","37","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"7957","-1","","","","","Bronze Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2205","11028","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","26","-1","0","0","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"7958","-1","","","","","Bronze Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2435","12178","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","27","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","22" +"7959","-1","","","","","Blight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33857","169289","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","93","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"7960","-1","","","","","Truesilver Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38548","192743","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","47" +"7961","-1","","","","","Phantom Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25508","127541","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","49","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","44" +"7963","-1","","","","","Steel Breastplate","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6488","32440","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7964","-1","","","","","Solid Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"7965","-1","","","","","Solid Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"7966","-1","","","","","Solid Grinding Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7967","-1","","","","","Mithril Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7968","-1","","","","","Southsea Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7969","-1","","","","","Mithril Spurs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7970","-1","Enormous Chemically Altered Cracker","","","","E.C.A.C.","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7971","-1","","","","","Black Pearl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7972","-1","","","","","Ichor of Undeath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7973","-1","","","","","Big-mouth Clam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","185","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7974","-1","","","","","Zesty Clam Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7975","-1","","","","","Plans: Heavy Mithril Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7976","-1","","","","","Plans: Mithril Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7977","-1","","","","","Plans: Mithril Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7978","-1","","","","","Plans: Barbaric Iron Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7979","-1","","","","","Plans: Barbaric Iron Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7980","-1","","","","","Plans: Barbaric Iron Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7981","-1","","","","","Plans: Barbaric Iron Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","164","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7982","-1","","","","","Plans: Barbaric Iron Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7983","-1","","","","","Plans: Ornate Mithril Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7984","-1","","","","","Plans: Ornate Mithril Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7985","-1","","","","","Plans: Ornate Mithril Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7986","-1","","","","","Plans: Ornate Mithril Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","164","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7987","-1","","","","","Plans: Ornate Mithril Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7988","-1","","","","","Plans: Ornate Mithril Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7989","-1","","","","","Plans: Mithril Spurs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","164","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7990","-1","","","","","Plans: Heavy Mithril Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7991","-1","","","","","Plans: Mithril Scale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","164","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7992","-1","","","","","Plans: Blue Glittering Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7993","-1","","","","","Plans: Dazzling Mithril Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","164","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7994","-1","","","","","Plans: Orcish War Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","164","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7995","-1","","","","","Plans: Mithril Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7996","-1","","","","","Worn Fishing Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1222","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7997","-1","","","","","Red Defias Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","406","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8006","-1","","","","","The Ziggler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12472","62360","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","39","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","34" +"8007","-1","","","","","Mana Citrine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8008","-1","","","","","Mana Ruby","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8009","-1","","","","","Dentrium Power Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8026","-1","","","","","Garrett Family Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8027","-1","","","","","Krom Stoutarm's Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8028","-1","","","","","Plans: Runed Mithril Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"8029","-1","","","","","Plans: Wicked Mithril Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8030","-1","","","","","Plans: Ebon Shiv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","164","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8046","-1","","","","","Kearnen's Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8047","-1","","","","","Magenta Fungus Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8048","-1","","","","","Emerald Dreamcatcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8049","-1","The glowing emerald just needs to be pulled out...","","","","Gnarlpine Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2052","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8050","511","","","","","Tallonkai's Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8051","-1","","","","","Flare Gun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8052","-1","","","","","An'Alleum Power Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8053","-1","","","","","Obsidian Power Source","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8066","-1","","","","","Fizzule's Whistle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8067","-1","","","","","Crafted Light Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","5" +"8068","-1","","","","","Crafted Heavy Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"8069","-1","","","","","Crafted Solid Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8070","-1","","","","","Reward Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8071","-1","","","","","Sizzle Stick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1534","7673","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8072","-1","","","","","Silixiz's Tower Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8073","-1","","","","","Cache of Zanzil's Altered Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8074","-1","","","","","Gallywix's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8075","-1","","","","","Conjured Sourdough","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8076","-1","","","","","Conjured Sweet Roll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8077","-1","","","","","Conjured Mineral Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8078","-1","","","","","Conjured Sparkling Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8079","-1","","","","","Conjured Crystal Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"8080","-1","","","","","Light Plate Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5987","29936","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","53" +"8081","-1","","","","","Light Plate Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2834","14172","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","52" +"8082","-1","","","","","Light Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3189","15945","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","47" +"8083","-1","","","","","Light Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2261","11308","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","48" +"8084","-1","","","","","Light Plate Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2703","13517","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","51" +"8085","-1","","","","","Light Plate Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5253","26269","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","50" +"8086","-1","","","","","Light Plate Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3730","18652","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","49" +"8087","-1","","","","","Sample of Zanzil's Altered Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8088","-1","","","","","Platemail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2667","13335","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8089","-1","","","","","Platemail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4016","20081","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8090","-1","","","","","Platemail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2687","13439","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8091","-1","","","","","Platemail Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2697","13489","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8092","-1","","","","","Platemail Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4062","20312","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8093","-1","","","","","Platemail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5437","27186","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8094","-1","","","","","Platemail Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5458","27290","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8095","-1","","","","","Hinott's Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8106","-1","","","","","Hibernal Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10438","52194","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","20","0","0","0","0","0","0","0","0","45" +"8107","-1","","","","","Hibernal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5938","29692","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","7","0","0","0","0","0","0","0","0","42" +"8108","-1","","","","","Hibernal Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3594","17972","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","10","0","0","0","0","0","0","0","0","42" +"8109","-1","","","","","Hibernal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5011","25059","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","0","0","0","0","0","0","0","0","41" +"8110","-1","","","","","Hibernal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3622","18110","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","0","0","0","0","0","0","0","0","42" +"8111","-1","","","","","Hibernal Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5890","29452","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8112","-1","","","","","Hibernal Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8436","42181","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","11","0","0","0","0","0","0","0","44" +"8113","-1","","","","","Hibernal Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9694","48473","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","20","0","0","0","0","0","0","0","0","46" +"8114","-1","","","","","Hibernal Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3677","18388","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","13","0","0","0","0","0","0","0","0","42" +"8115","-1","","","","","Hibernal Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5980","29902","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","14","0","0","0","0","0","0","0","0","43" +"8116","-1","","","","","Heraldic Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4632","23160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","10","0","0","0","0","0","0","0","0","42" +"8117","-1","","","","","Heraldic Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7161","35808","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","13","0","0","0","0","0","0","0","0","42" +"8118","-1","","","","","Heraldic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4436","22184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","8","0","0","0","0","0","0","0","0","41" +"8119","-1","","","","","Heraldic Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12725","63629","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","20","0","0","0","0","0","0","0","0","46" +"8120","-1","","","","","Heraldic Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6207","31036","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","4","0","0","0","0","0","0","0","0","40" +"8121","-1","","","","","Heraldic Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4843","24219","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","0","0","0","0","0","0","0","0","42" +"8122","-1","","","","","Heraldic Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7875","39377","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","8","0","0","0","0","0","0","0","43" +"8123","-1","","","","","Heraldic Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11275","56379","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","13","0","0","0","0","0","0","0","0","44" +"8124","-1","","","","","Heraldic Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7932","39660","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8125","-1","","","","","Myrmidon's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6367","31837","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","5","0","0","0","0","0","0","0","43" +"8126","-1","","","","","Myrmidon's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15656","78284","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","6","0","0","0","0","0","0","0","0","46" +"8127","-1","","","","","Myrmidon's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5937","29689","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","42" +"8128","-1","","","","","Myrmidon's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6229","31148","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","44" +"8129","-1","","","","","Myrmidon's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6253","31269","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","10","0","0","0","0","0","0","0","0","44" +"8130","-1","","","","","Myrmidon's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9458","47294","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","4","0","0","0","0","0","0","0","0","44" +"8131","-1","","","","","Myrmidon's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10115","50576","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","11","14","0","0","0","0","0","0","0","45" +"8132","-1","","","","","Myrmidon's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14485","72426","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","14","0","0","0","0","0","0","0","0","46" +"8133","-1","","","","","Myrmidon's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10517","52585","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","10","0","0","0","0","0","0","0","0","45" +"8134","-1","","","","","Myrmidon's Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15993","79966","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","11","0","0","0","0","0","0","0","46" +"8135","-1","","","","","Chromite Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11234","56171","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","10","0","0","0","0","0","0","0","0","41" +"8136","-1","","","","","Gargantuan Tumor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8137","-1","","","","","Chromite Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2807","14035","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","40" +"8138","-1","","","","","Chromite Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7666","38330","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","454","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","11","10","0","0","0","0","0","0","0","42" +"8139","-1","","","","","Chromite Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3053","15269","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","40" +"8140","-1","","","","","Chromite Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2837","14188","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","40" +"8141","-1","","","","","Chromite Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4613","23068","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","12","0","0","0","0","0","0","0","0","40" +"8142","-1","","","","","Chromite Barbute","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4630","23152","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","12","0","0","0","0","0","0","0","0","40" +"8143","-1","","","","","Chromite Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7227","36135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"8144","-1","","","","","Chromite Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5036","25181","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","40" +"8146","-1","","","","","Wicked Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8147","-1","A reagent for mage spells.","","","","Tiny Copper Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8148","-1","A reagent for mage spells.","","","","Tiny Silver Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8149","-1","","","","","Voodoo Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8150","-1","","","","","Deeprock Salt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8151","-1","","","","","Flask of Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8152","-1","","","","","Flask of Big Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8153","-1","","","","","Wildvine","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8154","-1","","","","","Scorpid Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8155","-1","","","","","Sathrah's Sacrifice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8156","-1","","","","","Jouster's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2219","11099","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","2","0","0","0","0","0","0","0","0","40" +"8157","-1","","","","","Jouster's Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5197","25989","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","4","0","0","0","0","0","0","0","0","40" +"8158","-1","","","","","Jouster's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2236","11181","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","3","0","0","0","0","0","0","0","0","40" +"8159","-1","","","","","Jouster's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2244","11221","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","4","0","0","0","0","0","0","0","0","40" +"8160","-1","","","","","Jouster's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3378","16893","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","40" +"8161","-1","","","","","Jouster's Visor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3390","16954","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","40" +"8162","-1","","","","","Jouster's Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4900","24500","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","0","0","0","0","0","0","0","0","40" +"8163","-1","","","","","Jouster's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3688","18441","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","8","0","0","0","0","0","0","0","0","40" +"8164","-1","","","","","Test Stationery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8165","-1","","","","","Worn Dragonscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8167","-1","","","","","Turtle Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8168","-1","","","","","Jet Black Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8169","-1","","","","","Thick Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8170","-1","","","","","Rugged Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8171","-1","","","","","Rugged Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8172","-1","","","","","Cured Thick Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8173","-1","","","","","Thick Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8174","-1","","","","","Comfortable Leather Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4131","20657","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"8175","-1","","","","","Nightscape Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5971","29857","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","6","0","0","0","0","0","0","0","0","36" +"8176","-1","","","","","Nightscape Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4495","22475","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","36" +"8177","-1","","","","","Practice Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","358","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","7","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"8178","-1","","","","","Training Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1531","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","10","-1","0","5173","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","5" +"8179","-1","","","","","Cadet's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"8180","-1","","","","","Hunting Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","11","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","6" +"8181","-1","","","","","Hunting Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79","397","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","4" +"8182","-1","","","","","Pellet Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","203","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","7","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","2" +"8183","-1","","","","","Precision Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2426","12132","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","22" +"8184","-1","","","","","Firestarter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2947","14737","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","29","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","24" +"8185","-1","","","","","Turtle Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10952","54764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","10","0","0","0","0","0","0","0","42" +"8186","-1","","","","","Dire Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2231","11156","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","21" +"8187","-1","","","","","Turtle Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3477","17387","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","6","0","0","0","0","0","0","0","36" +"8188","-1","","","","","Explosive Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6414","32071","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","37","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","32" +"8189","-1","","","","","Turtle Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7567","37838","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","9","9","0","0","0","0","0","0","0","37" +"8190","-1","","","","","Hanzo Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37286","186433","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","55","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"8191","-1","","","","","Turtle Scale Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7780","38900","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","10","0","0","0","0","0","0","0","41" +"8192","-1","","","","","Nightscape Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4782","23914","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","37" +"8193","-1","","","","","Nightscape Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8708","43542","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","7","0","0","0","0","0","0","0","0","41" +"8194","-1","","","","","Goblin Nutcracker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13877","69388","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","43","-1","0","5251","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","38" +"8195","-1","","","","","Nightscape Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5263","26319","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","41" +"8196","-1","","","","","Ebon Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13979","69895","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","43","-1","0","5258","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","38" +"8197","-1","","","","","Nightscape Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7158","35790","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","42" +"8198","-1","","","","","Turtle Scale Bracers","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4013","20068","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"8199","-1","","","","","Battlefield Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24661","123306","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","47","-1","0","5272","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","42" +"8200","-1","","","","","Big Voodoo Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7275","36378","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","14","9","0","0","0","0","0","0","0","0","38" +"8201","-1","","","","","Big Voodoo Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5350","26754","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","0","0","0","0","0","0","0","0","39" +"8202","-1","","","","","Big Voodoo Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9022","45112","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","0","0","0","0","0","0","0","0","42" +"8203","-1","","","","","Tough Scorpid Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8628","43140","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","7","0","0","0","0","0","0","0","0","39" +"8204","-1","","","","","Tough Scorpid Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4676","23382","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","40" +"8205","-1","","","","","Tough Scorpid Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4346","21734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","0","0","0","0","0","0","0","0","39" +"8206","-1","","","","","Tough Scorpid Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12704","63521","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","10","0","0","0","0","0","0","0","0","44" +"8207","-1","","","","","Tough Scorpid Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8978","44892","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8208","-1","","","","","Tough Scorpid Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10272","51360","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","45" +"8209","-1","","","","","Tough Scorpid Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","41879","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","7","0","0","0","0","0","0","0","0","42" +"8210","-1","","","","","Wild Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","27685","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1158","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"8211","-1","","","","","Wild Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8002","40012","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","486","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8212","-1","","","","","Wild Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11585","57925","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","572","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"8213","-1","","","","","Wild Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8150","40753","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","824","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"8214","-1","","","","","Wild Leather Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6230","31151","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","654","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8215","-1","","","","","Wild Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9017","45086","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"8216","-1","","","","","Big Voodoo Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6323","31617","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","5","0","0","0","0","0","0","0","0","43" +"8217","-1","","","","","Quickdraw Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8218","-1","","","","","Thick Leather Ammo Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8223","-1","","","","","Blade of the Basilisk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10066","50333","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"8224","-1","","","","","Silithid Ripper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7655","38278","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","31" +"8225","-1","","","","","Tainted Pierce","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9222","46111","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"8226","-1","","","","","The Butcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5747","28737","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","31","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","4","0","0","0","0","0","0","0","0","26" +"8243","-1","Scooby-dooby-doo!","","","","Scooby Snack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8244","-1","","","","","Flawless Draenethyst Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"8245","-1","","","","","Imperial Red Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12922","64614","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","21","0","0","0","0","0","0","0","0","51" +"8246","-1","","","","","Imperial Red Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7917","39586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","15","4","0","0","0","0","0","0","0","0","47" +"8247","-1","","","","","Imperial Red Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4997","24988","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","46" +"8248","-1","","","","","Imperial Red Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7032","35161","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","11","0","0","0","0","0","0","0","0","45" +"8249","-1","","","","","Imperial Red Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5336","26682","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","47" +"8250","-1","","","","","Imperial Red Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8034","40170","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","15","0","0","0","0","0","0","0","0","47" +"8251","-1","","","","","Imperial Red Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12080","60401","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","15","0","0","0","0","0","0","0","0","49" +"8252","-1","","","","","Imperial Red Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13622","68114","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","21","0","0","0","0","0","0","0","0","51" +"8253","-1","","","","","Imperial Red Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5107","25539","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","15","0","0","0","0","0","0","0","0","46" +"8254","-1","","","","","Imperial Red Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8639","43199","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","48" +"8255","-1","","","","","Serpentskin Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6010","30052","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","13","0","0","0","0","0","0","0","0","45" +"8256","-1","","","","","Serpentskin Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51306","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","10","0","0","0","0","0","0","0","47" +"8257","-1","","","","","Serpentskin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6053","30265","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","2","0","0","0","0","0","0","0","45" +"8258","-1","","","","","Serpentskin Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17396","86983","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","15","11","0","0","0","0","0","0","0","51" +"8259","-1","","","","","Serpentskin Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9144","45721","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","11","0","0","0","0","0","0","0","0","45" +"8260","-1","","","","","Serpentskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6938","34691","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","47" +"8261","-1","","","","","Serpentskin Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10617","53086","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","49" +"8262","-1","","","","","Serpentskin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14605","73029","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","5","16","0","0","0","0","0","0","0","49" +"8263","-1","","","","","Serpentskin Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10373","51866","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","48" +"8264","-1","","","","","Ebonhold Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7857","39287","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","0","0","0","0","0","0","0","0","47" +"8265","-1","","","","","Ebonhold Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19914","99571","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","6","0","0","0","0","0","0","0","0","51" +"8266","-1","","","","","Ebonhold Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7468","37341","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","7","9","0","0","0","0","0","0","0","46" +"8267","-1","","","","","Ebonhold Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8927","44639","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","7","0","0","0","0","0","0","0","0","49" +"8268","-1","","","","","Ebonhold Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8960","44800","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","14","0","0","0","0","0","0","0","0","49" +"8269","-1","","","","","Ebonhold Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14362","71813","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","4","0","0","0","0","0","0","0","0","50" +"8270","-1","","","","","Ebonhold Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14351","71758","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","50" +"8271","-1","","","","","Ebonhold Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20358","101790","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","5","14","0","0","0","0","0","0","0","51" +"8272","-1","","","","","Ebonhold Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13697","68489","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","49" +"8273","-1","","","","","Valorous Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3574","17871","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","4","0","0","0","0","0","0","0","0","41" +"8274","-1","","","","","Valorous Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10251","51259","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","3","0","0","0","0","0","0","0","0","46" +"8275","-1","","","","","Ebonhold Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22028","110140","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","12","0","0","0","0","0","0","0","0","51" +"8276","-1","","","","","Valorous Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3901","19509","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","2","0","0","0","0","0","0","0","0","42" +"8277","-1","","","","","Valorous Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3625","18128","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","3","0","0","0","0","0","0","0","0","41" +"8278","-1","","","","","Valorous Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5477","27387","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","7","0","0","0","0","0","0","0","42" +"8279","-1","","","","","Valorous Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5937","29688","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","13","0","0","0","0","0","0","0","0","43" +"8280","-1","","","","","Valorous Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8503","42518","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","13","0","0","0","0","0","0","0","0","44" +"8281","-1","","","","","Valorous Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5982","29914","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8282","-1","","","","","Valorous Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15695","78478","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","9","0","0","0","0","0","0","0","0","46" +"8283","-1","","","","","Arcane Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17138","85690","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","23","0","0","0","0","0","0","0","0","56" +"8284","-1","","","","","Arcane Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10514","52570","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","4","3","0","0","0","0","0","0","0","52" +"8285","-1","","","","","Arcane Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6637","33186","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","11","0","0","0","0","0","0","0","0","51" +"8286","-1","","","","","Arcane Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9427","47137","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","50" +"8287","-1","","","","","Arcane Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7087","35437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","52" +"8288","-1","","","","","Arcane Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11876","59381","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","18","0","0","0","0","0","0","0","0","54" +"8289","-1","","","","","Arcane Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16688","83441","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","17","0","0","0","0","0","0","0","0","55" +"8290","-1","","","","","Arcane Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17585","87927","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","23","0","0","0","0","0","0","0","0","56" +"8291","-1","","","","","Arcane Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6784","33922","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","16","0","0","0","0","0","0","0","0","51" +"8292","-1","","","","","Arcane Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11476","57382","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","17","10","0","0","0","0","0","0","0","53" +"8293","-1","","","","","Traveler's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8542","42713","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","16","0","0","0","0","0","0","0","0","51" +"8294","-1","","","","","Traveler's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12651","63259","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","4","0","0","0","0","0","0","0","0","52" +"8295","-1","","","","","Traveler's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7988","39940","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","11","0","0","0","0","0","0","0","0","51" +"8296","-1","","","","","Traveler's Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20861","104305","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","6","10","0","0","0","0","0","0","0","56" +"8297","-1","","","","","Traveler's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9113","45565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","11","0","0","0","0","0","0","0","0","50" +"8298","-1","","","","","Traveler's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8565","42825","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","52" +"8299","-1","","","","","Traveler's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14353","71769","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","14","14","0","0","0","0","0","0","0","54" +"8300","-1","","","","","Traveler's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20172","100862","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","17","0","0","0","0","0","0","0","0","55" +"8301","-1","","","","","Traveler's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14463","72317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8302","-1","","","","","Hero's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11060","55301","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","12","0","0","0","0","0","0","0","0","53" +"8303","-1","","","","","Hero's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26989","134948","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","24","0","0","0","0","0","0","0","0","57" +"8304","-1","","","","","Hero's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10513","52565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","6","0","0","0","0","0","0","0","0","52" +"8305","-1","","","","","Hero's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11743","58718","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8306","-1","","","","","Hero's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11787","58937","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8307","-1","","","","","Hero's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18717","93586","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","2","0","0","0","0","0","0","0","0","55" +"8308","-1","","","","","Hero's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18703","93517","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","14","17","0","0","0","0","0","0","0","55" +"8309","-1","","","","","Hero's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26278","131394","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","17","0","0","0","0","0","0","0","0","56" +"8310","-1","","","","","Hero's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19419","97099","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","55" +"8311","-1","","","","","Alabaster Plate Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5844","29224","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","2","0","0","0","0","0","0","0","48" +"8312","-1","","","","","Alabaster Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14810","74053","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","3","3","0","0","0","0","0","0","0","52" +"8313","-1","","","","","Hero's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30637","153187","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","12","0","0","0","0","0","0","0","0","57" +"8314","-1","","","","","Alabaster Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5344","26721","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","7","0","0","0","0","0","0","0","0","48" +"8315","-1","","","","","Alabaster Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5061","25306","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","15","4","0","0","0","0","0","0","0","0","47" +"8316","-1","","","","","Alabaster Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8078","40393","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","11","0","0","0","0","0","0","0","0","48" +"8317","-1","","","","","Alabaster Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8595","42977","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","49" +"8318","-1","","","","","Alabaster Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12926","64634","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","3","16","0","0","0","0","0","0","0","51" +"8319","-1","","","","","Alabaster Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9181","45906","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","12","0","0","0","0","0","0","0","0","50" +"8320","-1","","","","","Alabaster Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22092","110461","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","13","0","0","0","0","0","0","0","0","52" +"8343","-1","","","","","Heavy Silken Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8344","-1","","","","","Silvery Spinnerets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8345","-1","","","","","Wolfshead Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7421","37109","1","1","1","64","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32256","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","40" +"8346","-1","","","","","Gauntlets of the Sea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5363","26816","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","41" +"8347","-1","","","","","Dragonscale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5979","29899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","7","0","0","0","0","0","0","0","0","40" +"8348","-1","","","","","Helm of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10819","54099","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","10","0","0","0","0","0","0","0","0","45" +"8349","-1","","","","","Feathered Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14478","72391","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","24","10","0","0","0","0","0","0","0","0","45" +"8350","-1","Not quite as good as the 2 Ring","","","","The 1 Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","1","1","1","1","0","0","0","0","0","10" +"8363","-1","","","","","Shaman Voodoo Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8364","-1","","","","","Mithril Head Trout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8365","-1","","","","","Raw Mithril Head Trout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8366","-1","","","","","Bloated Trout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8367","-1","","","","","Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18455","92276","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","306","0","13","0","13","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","0","0","0","0","0","0","0","0","0","46" +"8368","-1","","","","","Thick Wolfhide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8383","-1","","","","","Plain Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8384","-1","","","","","Pattern: Comfortable Leather Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"8385","-1","","","","","Pattern: Turtle Scale Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","165","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8386","-1","","","","","Pattern: Big Voodoo Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","165","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8387","-1","","","","","Pattern: Big Voodoo Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8388","-1","","","","","Pattern: Nightscape Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","165","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8389","-1","","","","","Pattern: Big Voodoo Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8390","-1","","","","","Pattern: Big Voodoo Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8391","-1","","","","","Snickerfang Jowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8392","-1","","","","","Blasted Boar Lung","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8393","-1","","","","","Scorpok Pincer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8394","-1","","","","","Basilisk Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8395","-1","","","","","Pattern: Tough Scorpid Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8396","-1","","","","","Vulture Gizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8397","-1","","","","","Pattern: Tough Scorpid Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8398","-1","","","","","Pattern: Tough Scorpid Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8399","-1","","","","","Pattern: Tough Scorpid Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","165","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8400","-1","","","","","Pattern: Tough Scorpid Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8401","-1","","","","","Pattern: Tough Scorpid Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1375","5500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","165","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8402","-1","","","","","Pattern: Tough Scorpid Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1375","5500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8403","-1","","","","","Pattern: Wild Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8404","-1","","","","","Pattern: Wild Leather Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8405","-1","","","","","Pattern: Wild Leather Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8406","-1","","","","","Pattern: Wild Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","165","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8407","-1","","","","","Pattern: Wild Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8408","-1","","","","","Pattern: Wild Leather Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8409","-1","","","","","Pattern: Nightscape Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","165","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8410","-1","Robust Operational Imbue Derived From Snickerfang","","","","R.O.I.D.S.","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8411","-1","100% Grade A Lung Juice - Freshly Squeezed","","","","Lung Juice Cocktail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8412","-1","","","","","Ground Scorpok Assay","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8423","-1","Best Served Chilled","","","","Cerebral Cortex Compound","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8424","-1","Strawberry Flavor","","","","Gizzard Gum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8425","-1","","","","","Parrot Droppings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8426","-1","","","","","Large Ruffled Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8427","-1","","","","","Mutilated Rat Carcass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8428","-1","","","","","Laden Dew Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8429","-1","","","","","Punctured Dew Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8430","-1","","","","","Empty Dew Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","46","185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8431","-1","","","","","Spool of Light Chartreuse Silk Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8432","-1","","","","","Eau de Mixilpixil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8443","-1","","","","","Gahz'ridian Ornament","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8444","-1","","","","","Executioner's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8463","-1","The seal is broken.","","","","Warchief's Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1071","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8483","-1","","","","","Wastewander Water Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","171","685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8484","-1","Model 103-XB!","","","","Gadgetzan Water Co. Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","275","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8485","-1","","","","","Cat Carrier (Bombay)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8486","-1","","","","","Cat Carrier (Cornish Rex)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8487","-1","","","","","Cat Carrier (Orange Tabby)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8488","-1","","","","","Cat Carrier (Silver Tabby)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8489","-1","","","","","Cat Carrier (White Kitten)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8490","-1","","","","","Cat Carrier (Siamese)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8491","-1","","","","","Cat Carrier (Black Tabby)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8492","-1","","","","","Parrot Cage (Green Wing Macaw)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8493","-1","","","","","Weegli's Barrel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8494","-1","","","","","Parrot Cage (Hyacinth Macaw)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8495","-1","","","","","Parrot Cage (Senegal)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8496","-1","","","","","Parrot Cage (Cockatiel)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8497","-1","","","","","Rabbit Crate (Snowshoe)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8498","-1","","","","","Tiny Emerald Whelpling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8499","-1","","","","","Tiny Crimson Whelpling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8500","-1","","","","","Great Horned Owl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8501","-1","","","","","Hawk Owl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8502","-1","Will always have a level 20 or higher Uncommon or better item.","","","","Bronze Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8503","-1","Will always have a level 25 or higher Uncommon or better item.","","","","Heavy Bronze Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","25000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8504","-1","Will always have a level 30 or higher Uncommon or better item.","","","","Iron Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","45000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8505","-1","Will always have a level 35 or higher Uncommon or better item.","","","","Heavy Iron Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","60000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8506","-1","Will always have a level 40 or higher Uncommon or better item.","","","","Mithril Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","90000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8507","-1","Will always have a level 45 or higher Uncommon or better item.","","","","Heavy Mithril Lotterybox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","120000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8508","-1","","","","","Large Fin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","178","715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8523","-1","","","","","Field Testing Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8524","-1","Using this power source will activate the Field Testing Kit.","","","","Model 4711-FTZ Power Source","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","654","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8525","-1","","","","","Zinge's Purchase Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8526","-1","","","","","Violet Tragan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8527","-1","","","","","Sealed Field Testing Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8528","-1","","","","","Violet Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8529","-1","","","","","Noggenfogger Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","3500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8543","-1","","","","","Underwater Mushroom Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","25","5","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8544","-1","","","","","Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8545","-1","","","","","Heavy Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8546","-1","","","","","Powerful Smelling Salts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8547","-1","","","","","Formula: Powerful Smelling Salts ","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","129","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8548","-1","","","","","Divino-matic Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8563","68","","","","","Red Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8564","-1","It's huge!","","","","Hippogryph Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8583","223","","","","","Horn of the Skeletal Mount","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8584","-1","","","","","Untapped Dowsing Widget","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8585","-1","","","","","Tapped Dowsing Widget","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8586","146","","","","","Whistle of the Mottled Red Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"8587","-1","","","","","Centipaar Insect Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8588","146","","","","","Whistle of the Emerald Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8589","223","","","","","Old Whistle of the Ivory Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8590","223","","","","","Old Whistle of the Obsidian Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8591","146","","","","","Whistle of the Turquoise Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8592","146","","","","","Whistle of the Violet Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8593","-1","","","","","Scrimshank's Surveying Gear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8594","-1","","","","","Insect Analysis Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8595","68","","","","","Blue Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8603","-1","","","","","Thistleshrub Dew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8623","-1","","","","","OOX-17/TN Distress Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","0","43","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","43" +"8624","-1","","","","","Red Sparkler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8625","-1","","","","","White Sparkler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8626","-1","","","","","Blue Sparkler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8627","223","","","","","Reins of the Night saber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8628","223","","","","","Reins of the Spotted Nightsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8629","1101","","","","","Reins of the Striped Nightsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8630","223","","","","","Reins of the Bengal Tiger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8631","1101","","","","","Reins of the Striped Frostsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8632","1101","","","","","Reins of the Spotted Frostsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"8633","223","","","","","Reins of the Leopard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8643","-1","There's something very special about this egg...","","","","Extraordinary Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8644","-1","","","","","Fine Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8645","-1","","","","","Ordinary Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8646","-1","","","","","Bad Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8647","-1","Quality Guaranteed!","","","","Egg Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8663","-1","E Pluribus Mithril","","","","Mithril Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8683","-1","A fresh piece of fruit that's good to eat... and is apparently good for disguises also!","","","","Clara's Fresh Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8684","-1","","","","","Hinterlands Honey Ripple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8685","-1","This barrel contains Dran's packaged ripple and his extra bottles.","","","","Dran's Ripple Delivery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8686","-1","Bears the Seal of Galvan the Ancient","","","","Mithril Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8687","-1","","","","","Sealed Description of Thredd's Visitor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8688","-1","","","","","Bind On Acquire Test Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1087","4350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"8703","-1","Honorable Member of the Mithril Order","","","","Signet of Expertise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6492","25968","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8704","-1","","","","","OOX-09/HL Distress Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","43","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","43" +"8705","-1","","","","","OOX-22/FE Distress Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2766","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8707","-1","","","","","Gahz'rilla's Electrified Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8708","-1","","","","","Hammer of Expertise","1","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","50","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","40" +"8723","-1","","","","","Caliph Scorpidsting's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8724","-1","","","","","Rin'ji's Secret","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8743","-1","","","","","Book of Mark of the Wild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8744","-1","","","","","Book of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"8745","-1","","","","","Book of Healing Touch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8746","-1","","","","","Interlaced Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","682","3411","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","28" +"8747","-1","","","","","Hardened Leather Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1036","5181","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","30" +"8748","-1","","","","","Double Mail Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","774","3874","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","25" +"8749","-1","","","","","Crochet Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1603","8019","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","38" +"8750","-1","","","","","Thick Leather Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1863","9317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","37" +"8751","-1","","","","","Overlinked Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2618","13091","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","39" +"8752","-1","","","","","Laminated Scale Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5217","26086","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","49" +"8753","-1","","","","","Smooth Leather Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5198","25990","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","52" +"8754","-1","","","","","Twill Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19687","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","51" +"8755","-1","","","","","Light Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3728","18642","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","50" +"8756","-1","","","","","Book of Regrowth II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8757","-1","","","","","Book of Starfire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8758","-1","","","","","Book of Remove Curse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8759","-1","","","","","Book of Regrowth III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8760","-1","","","","","Book of Abolish Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8761","-1","","","","","Book of Starfire II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8762","-1","","","","","Book of Rejuvenation V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8763","-1","","","","","Book of Moonfire V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8764","-1","","","","","Book of Faerie Fire II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8765","-1","","","","","Book of Regrowth IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8766","-1","","","","","Morning Glory Dew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8768","-1","","","","","Book of Starfire III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8769","-1","","","","","Book of Thorns IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8770","-1","","","","","Book of Moonfire VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8771","-1","","","","","Book of Rejuvenation VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8772","-1","","","","","Book of Regrowth V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8773","-1","","","","","Book of Entangling Roots V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8774","-1","","","","","Book of Healing Touch VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8775","-1","","","","","Book of Tranquility II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8776","-1","","","","","Book of Mark of the Wild VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8777","-1","","","","","Book of Moonfire IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8778","-1","","","","","Book of Rejuvenation VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8779","-1","","","","","Book of Faerie Fire III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8780","-1","","","","","Book of Starfire V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8781","-1","","","","","Book of Regrowth VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8782","-1","","","","","Book of Thorns V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8783","-1","","","","","Book of Healing Touch IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8784","-1","","","","","Book of Wrath VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8785","-1","","","","","Book of Rejuvenation IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8786","-1","","","","","Book of Tranquility III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8787","-1","","","","","Book of Soothe Animal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8788","-1","","","","","Book of Soothe Animal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8789","-1","","","","","Book of Soothe Animal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8790","-1","","","","","Book of Faerie Fire IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8791","-1","","","","","Book of Regrowth VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8792","-1","","","","","Book of Thorns VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8793","-1","","","","","Book of Wrath VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8794","-1","","","","","Book of Healing Touch X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8795","-1","","","","","Book of Entangling Roots VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8796","-1","","","","","Book of Moonfire X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8797","-1","","","","","Book of Rejuvenation X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8798","-1","","","","","Book of Starfire VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8799","-1","","","","","Book of Mark of the Wild VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8800","-1","","","","","Book of Regrowth IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8801","-1","","","","","Book of Tranquility IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8802","-1","","","","","Tome of Arcane Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8803","-1","","","","","Tome of Fireball","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"8804","-1","","","","","Tome of Arcane Explosion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8805","-1","","","","","Tome of Detect Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8806","-1","","","","","Tome of Remove Lesser Curse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8807","-1","","","","","Tome of Amplify Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8808","-1","","","","","Tome of Mana Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8809","-1","","","","","Tome of Sleep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8810","-1","","","","","Tome of Sleep II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8811","-1","","","","","Tome of Scorch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8812","-1","","","","","Tome of Arcane Explosion II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8813","-1","","","","","Tome of Dampen Magic II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8814","-1","","","","","Tome of Fireball V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8815","-1","","","","","Tome of Cone of Cold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8816","-1","","","","","Tome of Frostbolt V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8818","-1","","","","","Tome of Mana Shield II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8819","-1","","","","","Tome of Scorch II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8820","-1","","","","","Tome of Fire Ward II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8821","-1","","","","","Tome of Amplify Magic II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8822","-1","","","","","Tome of Arcane Explosion III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8823","-1","","","","","Tome of Fire Blast IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8824","-1","","","","","Tome of Fireball VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8825","-1","","","","","Tome of Frost Ward III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8826","-1","","","","","Tome of Arcane Missiles IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8827","-1","","","","","Elixir of Water Walking","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8828","-1","","","","","Tome of Frostbolt VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8829","-1","","","","","Tome of Cone of Cold II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8830","-1","","","","","Tome of Scorch III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8831","-1","","","","","Purple Lotus","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8832","-1","","","","","Tome of Blizzard III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8833","-1","","","","","Tome of Mana Shield III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8834","-1","","","","","Tome of Dampen Magic III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8835","-1","","","","","Tome of Fireball VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8836","-1","","","","","Arthas' Tears","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8837","-1","","","","","Tome of Arcane Explosion V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8838","-1","","","","","Sungrass","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8839","-1","","","","","Blindweed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8840","-1","","","","","Tome of Conjure Mana Gem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8841","-1","","","","","Tome of Fire Blast V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8842","-1","","","","","Tome of Frostbolt VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8843","-1","","","","","Tome of Fire Ward III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8844","-1","","","","","Tome of Sleep III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8845","-1","","","","","Ghost Mushroom","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8846","-1","","","","","Gromsblood","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8847","-1","","","","","Tome of Scorch V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8848","-1","","","","","Tome of Flamestrike IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8849","-1","","","","","Tome of Arcane Missiles V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8850","-1","","","","","Tome of Conjure Water V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8851","-1","","","","","Tome of Fireball VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8852","-1","","","","","Tome of Arcane Intellect IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8853","-1","","","","","Tome of Conjure Food V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8854","-1","","","","","Tome of Cone of Cold III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8855","-1","","","","","Tome of Amplify Magic III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8856","-1","","","","","Tome of Frostbolt VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8857","-1","","","","","Tome of Blizzard IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8858","-1","","","","","Tome of Mana Shield IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8859","-1","","","","","Tome of Fire Blast VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8860","-1","","","","","Tome of Fireball IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8861","-1","","","","","Tome of Conjure Mana Gem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8862","-1","","","","","Tome of Arcane Missiles VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8863","-1","","","","","Tome of Dampen Magic IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8864","-1","","","","","Tome of Flamestrike V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8865","-1","","","","","Tome of Ice Armor III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8866","-1","","","","","Tome of Cone of Cold IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8867","-1","","","","","Tome of Frostbolt IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8868","-1","","","","","Tome of Conjure Water VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8869","-1","","","","","Tome of Fire Ward IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8870","-1","","","","","Tome of Greater Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8871","-1","","","","","Tome of Conjure Food VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8872","-1","","","","","Tome of Blizzard V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8873","-1","","","","","Tome of Mana Shield V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8874","-1","","","","","Tome of Scorch VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8875","-1","","","","","Tome of Frost Ward IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8876","-1","","","","","Tome of Frost Ward II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8877","-1","","","","","Tome of Fireball X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8878","-1","","","","","Tome of Fire Blast VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8879","-1","","","","","Tome of Frost Nova IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8880","-1","","","","","Tome of Arcane Explosion VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8881","-1","","","","","Tome of Khadgar's Unlocking IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8882","-1","","","","","Tome of Amplify Magic IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8883","-1","","","","","Tome of Arcane Intellect V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8884","-1","","","","","Tome of Frostbolt X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8885","-1","","","","","Tome of Arcane Missiles VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8886","-1","","","","","Tome of Flamestrike VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8887","-1","","","","","Tome of Scorch VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8888","-1","","","","","Tome of Cone of Cold V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8889","-1","","","","","Tome of Conjure Mana Gem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8890","-1","","","","","Tome of Fireball XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8891","-1","","","","","Tome of Ice Armor IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8892","-1","","","","","Tome of Conjure Water VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8893","-1","","","","","Tome of Sleep IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8894","-1","","","","","Tome of Dampen Magic V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8895","-1","","","","","Tome of Blizzard VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8896","-1","","","","","Tome of Mana Shield VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8897","-1","","","","","Tome of Fire Ward V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8898","-1","","","","","Tome of Arcane Explosion IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8899","-1","","","","","Tome of Scorch IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8900","-1","","","","","Book of Entangling Roots IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8901","-1","","","","","Book of Healing Touch VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8902","-1","","","","","Book of Mark of the Wild V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8903","-1","","","","","Book of Moonfire VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8904","-1","","","","","Book of Moonfire VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8905","-1","","","","","Book of Regrowth VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8906","-1","","","","","Book of Rejuvenation VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8907","-1","","","","","Book of Starfire IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8909","-1","","","","","Libram: Holy Strike II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8910","-1","","","","","Libram: Lay on Hands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8911","-1","","","","","Libram: Fist of Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8912","-1","","","","","Libram: Crusader Strike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8913","-1","","","","","Libram: Holy Strike III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8914","-1","","","","","Libram: Crusader Strike II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8915","-1","","","","","Libram: Holy Strike IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8916","-1","","","","","Libram: Fist of Justice II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8917","-1","","","","","Libram: Lay on Hands II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8918","-1","","","","","Libram: Seal of Protection III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8919","-1","","","","","Libram: Holy Strike V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8920","-1","","","","","Libram: Crusader Strike III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8921","-1","","","","","Libram: Fist of Justice III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8922","-1","","","","","Libram: Holy Strike VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8923","-1","Used by rogues to brew poison.","","","","Essence of Agony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8924","-1","Used by rogues to brew poison.","","","","Dust of Deterioration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8925","-1","","","","","Crystal Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","2500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8926","-1","","","","","Instant Poison IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8927","-1","","","","","Instant Poison V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8928","-1","","","","","Instant Poison VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8929","-1","","","","","Libram: Exorcism IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8930","-1","","","","","Libram: Seal of Righteousness IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8931","-1","","","","","Libram: Crusader Strike IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8932","-1","","","","","Alterac Swiss","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8933","-1","","","","","Libram: Holy Light VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8934","-1","","","","","Libram: Holy Strike VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8935","-1","","","","","Libram: Judgement II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8936","-1","","","","","Libram: Seal of Wrath III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8937","-1","","","","","Libram: Lay on Hands III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8938","-1","","","","","Libram: Turn Undead III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8939","-1","","","","","Libram: Exorcism V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8940","-1","","","","","Libram: Fist of Justice IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8941","-1","","","","","Libram: Holy Light VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8942","-1","","","","","Libram: Seal of Righteousness V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8943","-1","","","","","Libram: Holy Strike VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8944","-1","","","","","Libram: Crusader Strike V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8945","-1","","","","","Libram: Judgement III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8947","-1","","","","","Libram: Exorcism VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8948","-1","","","","","Dried King Bolete","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8949","-1","","","","","Elixir of Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"8950","-1","","","","","Homemade Cherry Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8951","-1","","","","","Elixir of Greater Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"8952","-1","","","","","Roasted Quail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8953","-1","","","","","Deep Fried Plantains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8954","-1","","","","","Codex of Holy Word: Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8955","-1","","","","","Codex of Fade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8956","-1","","","","","Oil of Immolation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","31" +"8957","-1","","","","","Spinefin Halibut","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8958","-1","","","","","Codex of Mind Blast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8959","-1","","","","","Raw Spinefin Halibut","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","160","3200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8960","-1","","","","","Codex of Cure Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8961","-1","","","","","Codex of Psychic Scream","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8962","-1","","","","","Codex of Mind Blast II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8963","-1","","","","","Codex of Mind Soothe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8964","-1","","","","","Codex of Flash Heal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8965","-1","","","","","Codex of Fade II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8966","-1","","","","","Codex of Shackle Undead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8967","-1","","","","","Codex of Mind Blast III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8968","-1","","","","","Codex of Mana Burn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8969","-1","","","","","Codex of Flash Heal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8971","-1","","","","","Codex of Psychic Scream II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8972","-1","","","","","Codex of Mind Blast IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8973","-1","","","","","Thick Yeti Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8974","-1","","","","","Codex of Mind Control","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8975","-1","","","","","Codex of Fade III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8976","-1","","","","","Codex of Abolish Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8977","-1","","","","","Codex of Mana Burn II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8978","-1","","","","","Codex of Flash Heal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8980","-1","","","","","Codex of Mind Blast V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8981","-1","","","","","Codex of Mind Soothe II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8983","-1","","","","","Codex of Flash Heal IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8984","-1","","","","","Deadly Poison III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8985","-1","","","","","Deadly Poison IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8986","-1","","","","","Codex of Shackle Undead II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8987","-1","","","","","Codex of Holy Protection II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8988","-1","","","","","Codex of Mana Burn III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8989","-1","","","","","Codex of Fade IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8990","-1","","","","","Codex of Mind Blast VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8991","-1","","","","","Codex of Inner Fire IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8992","-1","","","","","Codex of Psychic Scream III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8993","-1","","","","","Codex of Shadow Protection II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8994","-1","","","","","Codex of Shadow Word: Pain VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8995","-1","","","","","Codex of Holy Word: Shield VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8996","-1","","","","","Codex of Resurrection III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8997","-1","","","","","Codex of Mind Control II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8998","-1","","","","","Codex of Mind Vision II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8999","-1","","","","","Codex of Flash Heal V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9000","-1","","","","","Codex of Renew VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9001","-1","","","","","Codex of Greater Heal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9002","-1","","","","","Codex of Mind Blast VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9003","-1","","","","","Codex of Holy Smite VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9004","-1","","","","","Codex of Holy Word: Fortitude V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9005","-1","","","","","Codex of Mana Burn IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9006","-1","","","","","Codex of Holy Word: Shield VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9007","-1","","","","","Codex of Fade V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9008","-1","","","","","Codex of Prayer of Healing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9009","-1","","","","","Codex of Inner Fire V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9010","-1","","","","","Codex of Flash Heal VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9011","-1","","","","","Codex of Shadow Word: Pain VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9012","-1","","","","","Codex of Renew VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9013","-1","","","","","Codex of Greater Heal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9014","-1","","","","","Codex of Mind Soothe III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9015","-1","","","","","Codex of Mind Blast VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9016","-1","","","","","Codex of Holy Smite VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9017","-1","","","","","Codex of Holy Protection III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9018","-1","","","","","Codex of Holy Word: Shield IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9019","-1","","","","","Codex of Renew IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9020","-1","","","","","Codex of Psychic Scream IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9021","-1","","","","","Codex of Mana Burn V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9022","-1","","","","","Codex of Flash Heal VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9023","-1","","","","","Codex of Shadow Protection III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9024","-1","","","","","Codex of Mind Control III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9025","-1","","","","","Codex of Greater Heal IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9026","-1","","","","","Codex of Resurrection IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9027","-1","","","","","Codex of Mind Blast IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9028","-1","","","","","Codex of Shadow Word: Pain VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9029","-1","","","","","Codex of Fade VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9030","-1","","","","","Restorative Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9031","-1","","","","","Codex of Shackle Undead III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9032","-1","","","","","Codex of Prayer of Healing IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9033","-1","","","","","Codex of Inner Fire VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9034","-1","","","","","Codex of Holy Word: Fortitude VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9035","-1","","","","","Codex of Holy Word: Shield X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9036","-1","","","","","Magic Resistance Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9037","-1","","","","","Tablet of Rockbiter Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9039","-1","","","","","Tablet of Earth Shock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9040","-1","","","","","Tablet of Healing Wave II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9041","-1","","","","","Tablet of Earthbind Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9043","-1","","","","","Tablet of Stoneclaw Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9044","-1","","","","","Tablet of Earth Shock II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9046","-1","","","","","Tablet of Strength of Earth Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9047","-1","","","","","Tablet of Flame Shock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9048","-1","","","","","Tablet of Rebirth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9049","-1","","","","","Tablet of Fire Nova Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9050","-1","","","","","Tablet of Healing Wave III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9051","-1","","","","","Tablet of Earth Shock III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9052","-1","","","","","Tablet of Stoneskin Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9053","-1","","","","","Tablet of Rockbiter Weapon II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"9054","-1","","","","","Tablet of Flame Shock II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9055","-1","","","","","Tablet of Stoneclaw Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9056","-1","","","","","Tablet of Healing Wave IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9057","-1","","","","","Tablet of Frostbrand Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9058","-1","","","","","Tablet of Frost Shock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9059","-1","","","","","Tablet of Flametongue Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9060","-1","Used by Gnomish Engineers to reinforce their creations","","","","Inlaid Mithril Cylinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9061","-1","Used by Goblin Engineers to power their creations","","","","Goblin Rocket Fuel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9062","-1","","","","","Tablet of Cure Disease","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9063","-1","","","","","Tablet of Poison Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9064","-1","","","","","Tablet of Flametongue Weapon II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9065","-1","","","","","Tablet of Fire Nova Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9066","-1","","","","","Tablet of Frost Resistance Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9067","-1","","","","","Tablet of Strength of Earth Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9068","-1","","","","","Tablet of Stoneskin Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9069","-1","","","","","Tablet of Earth Shock IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9070","-1","","","","","Tablet of Healing Wave V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9071","-1","","","","","Tablet of Mana Font Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9072","-1","","","","","Tablet of Flametongue Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9073","-1","","","","","Tablet of Windfury Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9074","-1","","","","","Tablet of Flame Shock III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9075","-1","","","","","Tablet of Fire Resistance Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9076","-1","","","","","Tablet of Magma Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9077","-1","","","","","Tablet of Stoneclaw Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9078","-1","","","","","Tablet of Grounding Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9079","-1","","","","","Tablet of Lightning Shock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9080","-1","","","","","Tablet of Nature Resistance Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9081","-1","","","","","Tablet of Healing Stream Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9082","-1","","","","","Tablet of Rockbiter Weapon III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9083","-1","","","","","Tablet of Searing Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9084","-1","","","","","Tablet of Windfury Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9085","-1","","","","","Tablet of Fire Nova Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9086","-1","","","","","Tablet of Healing Wave VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9087","-1","","","","","Tablet of Purge II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9088","-1","","","","","Gift of Arthas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9089","-1","","","","","Tablet of Frost Shock II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9090","-1","","","","","Tablet of Frostbrand Weapon II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9091","-1","","","","","Tablet of Stoneskin Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9092","-1","","","","","Tablet of Sentry Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9093","-1","","","","","Tablet of Mana Font Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9094","-1","","","","","Tablet of Flametongue Weapon III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9095","-1","","","","","Tablet of Earth Shock V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9096","-1","","","","","Tablet of Disease Cleansing Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9097","-1","","","","","Tablet of Magma Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9098","-1","","","","","Tablet of Strength of Earth Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9099","-1","","","","","Tablet of Stoneclaw Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9100","-1","","","","","Tablet of Lightning Shield V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9101","-1","","","","","Tablet of Windfury Weapon II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9102","-1","","","","","Tablet of Chain Lightning II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9103","-1","","","","","Tablet of Healing Stream Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9104","-1","","","","","Tablet of Searing Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9105","-1","","","","","Tablet of Healing Wave VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9123","-1","","","","","Tablet of Lightning Bolt VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9124","-1","","","","","Tablet of Lightning Shock II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9125","-1","","","","","Tablet of Grace of Air Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9126","-1","","","","","Tablet of Flametongue Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9127","-1","","","","","Tablet of Fire Resistance Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9128","-1","","","","","Tablet of Fire Nova Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9129","-1","","","","","Tablet of Rockbiter Weapon IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9130","-1","","","","","Tablet of Nature Resistance Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9131","-1","","","","","Tablet of Stoneskin Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9132","-1","","","","","Tablet of Molten Blast VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9133","-1","","","","","Tablet of Chain Heal II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9134","-1","","","","","Tablet of Windfury Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9135","-1","","","","","Tablet of Frost Shock III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9136","-1","","","","","Tablet of Mana Font Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9137","-1","","","","","Tablet of Lightning Shield VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9138","-1","","","","","Tablet of Magma Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9139","-1","","","","","Tablet of Frostbrand Weapon III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9140","-1","","","","","Tablet of Chain Lightning III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9141","-1","","","","","Tablet of Stoneclaw Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9142","-1","","","","","Tablet of Earth Shock VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9143","-1","","","","","Tablet of Healing Wave VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9144","-1","","","","","Wildvine Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"9145","-1","","","","","Tablet of Lightning Bolt VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9146","-1","","","","","Tablet of Searing Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9147","-1","","","","","Tablet of Healing Stream Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9148","-1","","","","","Tablet of Flametongue Weapon IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9149","-1","Required for Alchemical Transmutation.","","","","Philosopher's Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9150","-1","","","","","Tablet of Strength of Earth Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9151","-1","","","","","Tablet of Flame Shock V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9152","-1","","","","","Tablet of Fire Nova Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9153","-1","","","","","Rig Blueprints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9154","-1","","","","","Elixir of Detect Undead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9155","-1","","","","","Arcane Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9156","-1","","","","","Tablet of Molten Blast VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9157","-1","","","","","Tablet of Chain Heal III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9158","-1","","","","","Tablet of Frost Resistance Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9159","-1","","","","","Tablet of Lightning Shock III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9160","-1","","","","","Tablet of Windfury Weapon III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9161","-1","","","","","Tablet of Stoneskin Totem VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9162","-1","","","","","Tablet of Lightning Shield VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9164","-1","","","","","Tablet of Grace of Air Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9165","-1","","","","","Tablet of Flametongue Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9166","-1","","","","","Tablet of Mana Font Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9167","-1","","","","","Tablet of Chain Lightning IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9168","-1","","","","","Tablet of Healing Wave IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9169","-1","","","","","Tablet of Lightning Bolt VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9170","-1","","","","","Tablet of Fire Resistance Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9171","-1","","","","","Tablet of Magma Totem IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9172","-1","","","","","Invisibility Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9173","-1","","","","","Goblin Transponder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9174","-1","","","","","Tablet of Frost Shock IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9175","-1","","","","","Tablet of Rockbiter Weapon V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9176","-1","","","","","Tablet of Stoneclaw Totem VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9177","-1","","","","","Tablet of Earth Shock VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9178","-1","","","","","Tablet of Nature Resistance Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9179","-1","","","","","Elixir of Greater Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9180","-1","","","","","Tablet of Windfury Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9181","-1","","","","","Tablet of Healing Stream Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9182","-1","","","","","Tablet of Searing Totem VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9183","-1","","","","","Tablet of Chain Heal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9184","-1","","","","","Tablet of Flame Shock IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9185","-1","","","","","Tablet of Frost Resistance Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9186","-1","","","","","Mind-numbing Poison III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9187","-1","","","","","Elixir of Greater Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9188","-1","","","","","Tablet of Searing Totem II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9189","-1","","","","","Shay's Bell","1","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9190","-1","","","","","Grimoire of Immolate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9191","-1","","","","","Grimoire of Curse of Weakness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9192","-1","","","","","Grimoire of Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9193","-1","","","","","Grimoire of Life Tap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9194","-1","","","","","Grimoire of Curse of Agony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9195","-1","","","","","Grimoire of Drain Soul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9197","-1","","","","","Elixir of Dream Vision","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9198","-1","","","","","Grimoire of Health Funnel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9199","-1","","","","","Grimoire of Curse of Recklessness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9200","-1","","","","","Grimoire of Curse of Weakness II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9201","-1","","","","","Grimoire of Corruption II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"9202","-1","","","","","Grimoire of Life Tap II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9203","-1","","","","","Grimoire of Ritual of Summoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9204","-1","","","","","Grimoire of Health Funnel II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9205","-1","","","","","Grimoire of Curse of Agony II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9206","-1","","","","","Elixir of Giants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9207","-1","","","","","Grimoire of Create Bloodstone II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9208","-1","","","","","Grimoire of Drain Soul II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9209","-1","","","","","Grimoire of Curse of Weakness III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9210","-1","","","","","Ghost Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9211","-1","","","","","Grimoire of Curse of Recklessness II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9212","-1","","","","","Grimoire of Shadow Bolt V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9214","-1","","","","","Grimoire of Inferno","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"9215","-1","","","","","Grimoire of Health Funnel III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9216","-1","","","","","Grimoire of Corruption III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9217","-1","","","","","Grimoire of Life Tap III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9218","-1","","","","","Grimoire of Enslave Demon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9219","-1","","","","","Grimoire of Hellfire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9221","-1","","","","","Grimoire of Curse of Agony III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9222","-1","","","","","Grimoire of Curse of the Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9223","-1","","","","","Grimoire of Curse of Weakness IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9224","-1","","","","","Elixir of Demonslaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9225","-1","","","","","Grimoire of Shadow Bolt VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9226","-1","","","","","Grimoire of Health Funnel IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9227","-1","","","","","Grimoire of Drain Soul III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9228","-1","","","","","Grimoire of Create Bloodstone III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9229","-1","","","","","Grimoire of Life Drain IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9230","-1","","","","","Grimoire of Curse of Recklessness III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9231","-1","","","","","Grimoire of Corruption IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9233","-1","","","","","Elixir of Detect Demon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9234","-1","","","","","Tiara of the Deep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9235","-1","","","","","Pratt's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9236","-1","","","","","Jangdor's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9237","-1","","","","","Woodpaw Gnoll Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9238","-1","","","","","Uncracked Scarab Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9240","-1","","","","","Mallet of Zul'Farrak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9241","-1","","","","","Sacred Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9242","-1","","","","","Ancient Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","9685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1091","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9243","-1","","","","","Shriveled Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8155","32620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","-5","-5","13","0","0","0","0","0","0","0","40" +"9244","-1","","","","","Stoley's Shipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9245","-1","","","","","Stoley's Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9246","-1","","","","","Firebeard's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9247","-1","","","","","Hatecrest Naga Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9248","-1","","","","","Mysterious Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9249","-1","","","","","Captain's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1553","6215","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9250","-1","","","","","Ship Schedule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2876","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9251","-1","","","","","Upper Map Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9252","-1","","","","","Lower Map Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9253","-1","","","","","Middle Map Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9254","-1","","","","","Cuergo's Treasure Map","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2882","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9255","-1","","","","","Lahassa Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9256","-1","","","","","Imbel Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9257","-1","","","","","Samha Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9258","-1","","","","","Byltan Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9259","-1","","","","","Troll Tribal Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","64","258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9260","-1","","","","","Volatile Rum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9261","-1","","","","","Lead Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9262","-1","","","","","Black Vitriol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9263","-1","","","","","Troyas' Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9264","-1","","","","","Elixir of Shadow Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9265","-1","","","","","Cuergo's Hidden Treasure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","60","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9266","-1","","","","","Woodpaw Battle Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9275","-1","","","","","Cuergo's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9276","-1","","","","","Pirate's Footlocker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9277","-1","","","","","Techbot's Memory Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9278","-1","","","","","Essential Artificial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9279","-1","Grants access to Matrix Punchograph 3005-A","","","","White Punch Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","45","180","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1131","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9280","-1","Grants access to Matrix Punchograph 3005-B","","","","Yellow Punch Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1191","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9281","-1","Grants access to Matrix Punchograph 3005-D","","","","Red Punch Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1193","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9282","-1","Grants access to Matrix Punchograph 3005-C","","","","Blue Punch Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1192","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9283","-1","One Shot, One Fill","","","","Empty Leaden Collection Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9284","-1","Keep Out of Reach of Children","","","","Full Leaden Collection Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9285","-1","","","","","Field Plate Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2388","11943","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1115","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9286","-1","","","","","Field Plate Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6040","30203","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","528","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9287","-1","","","","","Field Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2406","12031","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","779","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9288","-1","","","","","Field Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2414","12074","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","947","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9289","-1","","","","","Field Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3635","18178","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","863","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9290","-1","","","","","Field Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3940","19703","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","695","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9291","-1","","","","","Field Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5286","26432","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","612","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9292","-1","","","","","Field Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3684","18424","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1199","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9293","-1","","","","","Recipe: Magic Resistance Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","171","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9294","-1","","","","","Recipe: Wildvine Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9295","-1","","","","","Recipe: Invisibility Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","171","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9296","-1","","","","","Recipe: Gift of Arthas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","171","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9297","-1","","","","","Recipe: Elixir of Dream Vision","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","171","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9298","-1","","","","","Recipe: Elixir of Giants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","171","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9299","-1","","","","","Thermaplugg's Safe Combination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9300","-1","","","","","Recipe: Elixir of Demonslaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9301","-1","","","","","Recipe: Elixir of Shadow Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9302","-1","","","","","Recipe: Ghost Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","171","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9303","-1","","","","","Recipe: Philosopher's Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9304","-1","","","","","Recipe: Transmute Iron to Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9305","-1","","","","","Recipe: Transmute Mithril to Truesilver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9306","-1","","","","","Stave of Equinex","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9307","-1","","","","","A Sparkling Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9308","-1","Caked grime obscures the true identity of this object.","","","","Grime-Encrusted Object","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","38","152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9309","-1","","","","","Robo-mechanical Guts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9311","-1","","","","","Default Stationery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9312","-1","","","","","Blue Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9313","-1","","","","","Green Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9314","-1","","","","","Red Streaks Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9315","-1","","","","","Yellow Rose Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9316","-1","Data card only","","","","Prismatic Punch Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1194","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9317","-1","","","","","Red, White and Blue Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9318","-1","","","","","Red Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9319","-1","","","","","Nimboya's Laden Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9320","-1","","","","","Witherbark Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9321","-1","","","","","Venom Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9322","-1","","","","","Undamaged Venom Sac","1","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9323","-1","","","","","Gadrin's Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9324","-1","","","","","Shadra's Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9325","-1","Troyas has entrusted this to you until you return.","","","","A Small Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9326","-1","","","","","Grime-Encrusted Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2945","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9327","-1","","","","","Security DELTA Data Access Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","202","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9328","-1","New & Improved!","","","","Super Snapper FX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9329","-1","Tied with a bow.","","","","A Short Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1156","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9330","-1","She's so photogenic...","","","","Snapshot of Gammerita","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1171","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9331","-1","","","","","Feralas: A History","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9332","-1","","","","","Crusted Bandages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","38","155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9333","-1","","","","","Tarnished Silver Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","73","295","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9334","-1","","","","","Cracked Pottery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","47","190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9335","-1","","","","","Broken Obsidian Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","52","210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9336","-1","","","","","Gold-capped Troll Tusk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1288","5155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9355","-1","","","","","Hoop Earring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","376","1505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9356","-1","","","","","A Wooden Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","217","870","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9357","-1","","","","","A Parrot Skeleton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","227","910","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9358","-1","","","","","A Head Rag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","228","915","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9359","-1","","","","","Wirt's Third Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19577","97888","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","45","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","0","0","0","0","0","0","0","0","40" +"9360","-1","","","","","Cuergo's Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9361","-1","","","","","Cuergo's Gold with Worm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9362","-1","","","","","Brilliant Gold Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","4","0","0","0","0","0","0","0","0","0" +"9363","-1","","","","","Sparklematic-Wrapped Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9364","-1","Handle With Care","","","","Heavy Leaden Collection Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9365","-1","DANGER! DO NOT INGEST!","","","","High Potency Radioactive Fallout","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9366","-1","","","","","Golden Scale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3689","18446","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","4","0","0","0","0","0","0","0","0","36" +"9367","-1","","","","","Plans: Golden Scale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","164","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9368","-1","","","","","Jer'kai's Signet Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9369","-1","","","","","Iridescent Sprite Darter Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9370","-1","","","","","Gordunni Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2978","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9371","-1","","","","","Gordunni Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9372","-1","","","","","Sul'thraze the Lasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","61936","309681","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","55","-1","0","0","108","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","50" +"9375","-1","","","","","Expert Goldminer's Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","21101","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","5","0","0","0","0","0","0","0","0","33" +"9378","-1","","","","","Shovelphlange's Mining Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11380","56901","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","33" +"9379","-1","","","","","Sang'thraze the Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26383","131917","1","1","1","1024","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","49","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9380","-1","","","","","Jang'thraze the Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28334","141671","1","1","1","1104","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9381","-1","","","","","Earthen Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8628","43144","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","38","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","33" +"9382","-1","","","","","Tromping Miner's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3607","18039","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","7","0","0","0","0","0","0","0","0","33" +"9383","-1","","","","","Obsidian Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16895","84476","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","40","-1","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","19","6","5","0","0","0","0","0","0","0","35" +"9384","-1","","","","","Stonevault Shiv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9789","48947","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","31" +"9385","-1","","","","","Archaic Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12280","61404","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","77","0","0","0","0","117","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"9386","-1","","","","","Excavator's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9859","49296","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","36","-1","0","0","43","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"9387","-1","","","","","Revelosh's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3438","17194","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","863","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9388","-1","","","","","Revelosh's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3196","15981","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1094","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9389","-1","","","","","Revelosh's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4331","21657","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1157","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9390","-1","","","","","Revelosh's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2146","10734","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","716","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9391","-1","","","","","The Shoveler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12831","64158","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","37","1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","32" +"9392","-1","","","","","Annealed Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12980","64901","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","0","0","0","0","0","0","0","0","35" +"9393","-1","","","","","Beacon of Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7882","31530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","0","0","0","0","0","0","0","0","0","33" +"9394","-1","","","","","Horned Viking Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6863","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","15","0","0","0","0","0","0","0","0","40" +"9395","-1","","","","","Gloves of Old","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1565","7828","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","12","0","0","0","0","0","0","0","0","29" +"9396","-1","","","","","Legguards of the Vault","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7319","36596","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","13","13","5","0","0","0","0","0","0","34" +"9397","-1","","","","","Energy Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3672","18364","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","34" +"9398","-1","","","","","Worn Running Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1244","6221","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","3","0","0","0","0","0","0","0","0","35" +"9399","-1","","","","","Precision Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","-1","0","0","11","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9400","-1","","","","","Baelog's Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1624","8121","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","36" +"9401","-1","","","","","Nordic Longshank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5070","25352","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","43","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","5","0","0","0","0","0","0","0","0","38" +"9402","-1","","","","","Earthborn Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25308","126543","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"9403","-1","","","","","Battered Viking Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1331","6655","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","907","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","8","4","0","0","0","0","0","0","0","0","35" +"9404","-1","","","","","Olaf's All Purpose Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14097","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","11","0","0","0","0","0","0","0","0","0","37" +"9405","-1","","","","","Girdle of Golem Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2055","10277","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","28" +"9406","-1","","","","","Spirewind Fetter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4161","20807","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","7","11","0","0","0","0","0","0","0","30" +"9407","-1","","","","","Stoneweaver Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5094","25470","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","9","8","0","0","0","0","0","0","0","35" +"9408","-1","","","","","Ironshod Bludgeon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18639","93198","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","42","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","8","0","0","0","0","0","0","0","0","37" +"9409","-1","","","","","Ironaya's Bracers","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4490","22450","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1096","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","37" +"9410","-1","","","","","Cragfists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3785","18925","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","782","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","40" +"9411","-1","","","","","Rockshard Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7156","35780","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","2","9","9","0","0","0","0","0","0","0","40" +"9412","-1","","","","","Galgann's Fireblaster","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16681","83405","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","47","-1","0","0","44","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","42" +"9413","-1","","","","","The Rockpounder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32248","161244","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","49","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","0","0","0","0","0","0","0","0","0","44" +"9414","-1","","","","","Oilskin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8645","43227","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"9415","-1","","","","","Grimlok's Tribal Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8997","44986","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","20","5","0","0","0","0","0","0","0","42" +"9416","-1","","","","","Grimlok's Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28218","141092","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","15","0","0","0","0","0","0","0","42" +"9417","-1","","","","","Archaedic Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10795","43180","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","42" +"9418","-1","","","","","Stoneslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32851","164258","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","49","1535","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9419","-1","","","","","Galgann's Firehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18076","90384","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","46","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9420","-1","","","","","Adventurer's Pith Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4083","20416","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","9","14","0","0","0","0","0","0","0","32" +"9421","-1","","","","","Major Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9422","-1","","","","","Shadowforge Bushmaster","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13052","65262","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","38" +"9423","-1","","","","","The Jackhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25463","127319","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","79","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","40" +"9424","-1","","","","","Ginn-su Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13594","67970","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","41","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","4","0","0","0","0","0","0","0","0","36" +"9425","-1","","","","","Pendulum of Doom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21489","107446","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","44","-1","0","0","124","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","39" +"9426","-1","","","","","Monolithic Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10275","51375","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","41","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","3","0","0","0","0","0","0","0","0","36" +"9427","-1","","","","","Stonevault Bonebreaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","74265","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","4","0","0","0","0","0","0","0","0","37" +"9428","-1","","","","","Unearthed Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2096","10481","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1073","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","30" +"9429","-1","","","","","Miner's Hat of the Deep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5236","26184","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","17","7","4","0","0","0","0","0","0","39" +"9430","-1","","","","","Spaulders of a Lost Age","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8553","42768","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","7","0","0","0","0","0","0","0","0","40" +"9431","-1","","","","","Papal Fez","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","24426","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","9","0","0","0","0","0","0","0","0","38" +"9432","-1","","","","","Skullplate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3027","15135","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","5","5","0","0","0","0","0","0","0","40" +"9433","-1","","","","","Forgotten Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4133","20669","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","4","3","0","0","0","0","0","0","0","41" +"9434","-1","","","","","Elemental Raiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5648","28240","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","36" +"9435","-1","","","","","Reticulated Bone Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2916","14583","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","5","0","0","0","0","0","0","0","0","31" +"9436","-1","","","","","Faranell's Parcel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9437","-1","","","","","Untested Basilisk Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9438","-1","","","","","Acceptable Scorpid Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9439","-1","","","","","Untested Hyena Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9440","-1","","","","","Acceptable Basilisk Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9441","-1","","","","","Acceptable Hyena Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9442","-1","","","","","Untested Scorpid Sample","1","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9443","-1","","","","","Used Monster Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9444","-1","","","","","Techbot CPU Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5602","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","21" +"9445","-1","","","","","Grubbis Paws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2260","11302","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","6","9","0","0","0","0","0","0","0","29" +"9446","-1","","","","","Electrocutioner Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7564","37820","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","34","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","29" +"9447","-1","","","","","Electrocutioner Lagnut","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3237","12950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","29" +"9448","-1","","","","","Spidertank Oilrag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1154","5774","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9449","-1","","","","","Manual Crowd Pummeler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9564","47822","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","34","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","5","0","0","0","0","0","0","0","0","29" +"9450","-1","","","","","Gnomebot Operating Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2181","10908","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","3","0","0","0","0","0","0","0","0","28" +"9451","-1","","","","","Bubbling Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"9452","-1","","","","","Hydrocane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8210","41051","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","27" +"9453","-1","","","","","Toxic Revenger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6592","32961","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","27" +"9454","-1","","","","","Acidic Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1984","9923","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","4","0","0","0","0","0","0","0","0","27" +"9455","-1","","","","","Emissary Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1825","9129","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1072","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","5","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","28" +"9456","-1","","","","","Glass Shooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6652","33262","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","30" +"9457","-1","","","","","Royal Diplomatic Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8902","44510","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","35","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","2","0","0","0","0","0","0","0","0","30" +"9458","-1","","","","","Thermaplugg's Central Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6917","34589","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","795","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","0","0","0","0","0","0","0","0","0","32" +"9459","-1","","","","","Thermaplugg's Left Arm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13560","67801","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","7","0","0","0","0","0","0","0","0","32" +"9460","-1","","","","","Grimtotem Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9461","-1","","","","","Charged Gear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4586","18345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3481","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","32" +"9462","-1","","","","","Crate of Grimtotem Horns","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9463","-1","","","","","Gordunni Cobalt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9464","-1","","","","","Deprecated Orwin's Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9465","-1","","","","","Digmaster 5000","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18560","92804","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","175","186","45","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","40" +"9466","-1","","","","","Orwin's Shovel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9467","-1","","","","","Gahz'rilla Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18681","93409","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","47","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9468","-1","","","","","Sharpbeak's Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9469","-1","","","","","Gahz'rilla Scale Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14634","73171","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","23","0","0","0","0","0","0","0","0","43" +"9470","-1","","","","","Bad Mojo Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7858","39292","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","0","0","0","0","0","0","0","0","0","44" +"9471","-1","","","","","Nekrum's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9472","-1","","","","","Hexx's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9473","-1","","","","","Jinxed Hoodoo Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13241","66207","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","8","10","0","0","0","0","0","0","0","44" +"9474","-1","","","","","Jinxed Hoodoo Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13290","66450","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","10","0","0","0","0","0","0","0","0","44" +"9475","-1","","","","","Diabolic Skiver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33346","166732","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","49","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9476","-1","","","","","Big Bad Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8593","42968","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","8","0","0","0","0","0","0","0","45" +"9477","-1","","","","","The Chief's Enforcer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35936","179682","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","50","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9478","-1","","","","","Ripsaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28853","144265","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","63","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9479","-1","","","","","Embrace of the Lycan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10858","54294","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","5","8","0","0","0","0","0","0","0","45" +"9480","-1","","","","","Eyegouger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31725","158625","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","48","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","10","0","0","0","0","0","0","0","0","43" +"9481","-1","","","","","The Minotaur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34067","170335","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","49","-1","0","0","109","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","24","5","8","0","0","0","0","0","0","0","44" +"9482","-1","","","","","Witch Doctor's Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29585","147925","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","47","-1","0","0","75","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","0","0","0","0","0","0","0","0","0","42" +"9483","-1","","","","","Flaming Incinerator","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19139","95695","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","49","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","8","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9484","-1","","","","","Spellshock Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10962","54811","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","9","0","0","0","0","0","0","0","0","45" +"9485","-1","","","","","Vibroblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5288","26440","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","30","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","25" +"9486","-1","","","","","Supercharger Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5483","27417","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","51","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","23" +"9487","-1","","","","","Hi-tech Supergun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3632","18163","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","29","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","24" +"9488","-1","","","","","Oscillating Power Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4419","22096","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","28","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","1","0","0","0","0","0","0","0","0","23" +"9489","-1","","","","","Gyromatic Icemaker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3690","18450","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","31","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9490","-1","","","","","Gizmotron Megachopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6121","30609","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","29","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","5","0","0","0","0","0","0","0","0","24" +"9491","-1","","","","","Hotshot Pilot's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1308","6542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","5","5","3","0","0","0","0","0","0","27" +"9492","-1","","","","","Electromagnetic Gigaflux Reactivator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3172","15862","1","1","1","64","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","32" +"9507","-1","","","","","A Carefully-packed Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9508","-1","","","","","Mechbuilder's Overalls","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2352","11762","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","5","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","5","0","0","0","0","0","0","0","0","26" +"9509","-1","Keep away from fire.","","","","Petrolspill Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13416","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","-10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","6","0","0","0","0","0","0","0","0","25" +"9510","-1","","","","","Caverndeep Trudgers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2945","14729","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","4","4","10","0","0","0","0","0","0","0","27" +"9511","-1","","","","","Bloodletter Scalpel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21060","105300","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","41" +"9512","-1","","","","","Blackmetal Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6341","31705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","5","0","0","0","0","0","0","0","0","41" +"9513","-1","","","","","Ley Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1526","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","10","128","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"9514","-1","","","","","Arcane Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1532","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","10","128","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"9515","-1","","","","","Nether-lace Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2011","10056","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","9","0","0","0","0","0","0","0","0","0" +"9516","-1","","","","","Astral Knot Blouse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2071","10355","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","9","0","0","0","0","0","0","0","0","0" +"9517","-1","","","","","Celestial Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15737","78687","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","128","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","0" +"9518","-1","","","","","Mud's Crushers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1899","9499","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","0" +"9519","-1","","","","","Durtfeet Stompers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2288","11444","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","9","0","0","0","0","0","0","0","0","0" +"9520","-1","","","","","Silent Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11461","57309","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","41","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","0" +"9521","-1","","","","","Skullsplitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14382","71912","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","41","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","4","0","0","0","0","0","0","0","0","0" +"9522","-1","","","","","Energized Stone Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4938","24694","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","7","0","0","0","0","0","0","0","0","0" +"9523","-1","","","","","Troll Temper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9527","-1","","","","","Spellshifter Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21613","108069","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","46","-1","0","0","77","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","16","0","0","0","0","0","0","0","0","0" +"9528","-1","","","","","Edana's Dark Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9529","-1","Soft Like Pudding","","","","Internal Warrior Equipment Kit L25","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9530","-1","","","","","Horn of Hatetalon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9531","-1","","","","","Gemshale Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5264","26322","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9532","-1","Made With Love","","","","Internal Warrior Equipment Kit L30","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9533","-1","","","","","Masons Fraternity Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7092","28370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","5","0","0","0","0","0","0","0","0","0" +"9534","-1","","","","","Engineer's Guild Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8847","44236","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","9","0","0","0","0","0","0","0","0","0" +"9535","-1","","","","","Fire-welded Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1406","7034","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","6","0","0","0","0","0","0","0","0","0" +"9536","-1","","","","","Fairywing Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7059","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","1","8","0","0","0","0","0","0","0","0","0" +"9537","-1","","","","","Neatly Wrapped Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9538","-1","","","","","Talvash's Gold Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6463","25852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"9539","-1","","","","","Box of Rations","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9540","-1","","","","","Box of Spells","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9541","-1","","","","","Box of Goodies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9542","-1","","","","","Simple Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2439","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9543","-1","","","","","Simple Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2442","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9544","-1","","","","","Simple Memorandum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2440","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9545","-1","","","","","Simple Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2444","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9546","-1","","","","","Simple Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2443","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9547","-1","","","","","Simple Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2441","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9548","-1","","","","","Hallowed Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2465","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9550","-1","","","","","Encrypted Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2435","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9551","-1","","","","","Encrypted Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2437","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9552","-1","","","","","Rune-Inscribed Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2460","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9553","-1","","","","","Etched Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2454","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9554","-1","","","","","Encrypted Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2438","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9555","-1","","","","","Encrypted Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2432","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9556","-1","","","","","Hallowed Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2466","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9557","-1","","","","","Hallowed Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2468","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9558","-1","","","","","Encrypted Memorandum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2433","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9559","-1","","","","","Encrypted Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2436","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9560","-1","","","","","Encrypted Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2434","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9561","-1","","","","","Hallowed Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2469","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9562","-1","","","","","Rune-Inscribed Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2462","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9563","-1","","","","","Consecrated Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2464","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9564","-1","","","","","Etched Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2457","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9565","-1","","","","","Etched Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2453","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9566","-1","","","","","Etched Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2455","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9567","-1","","","","","Etched Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2456","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9568","-1","","","","","Rune-Inscribed Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2461","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9569","-1","","","","","Hallowed Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2467","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9570","-1","","","","","Consecrated Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2463","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9571","-1","","","","","Glyphic Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2445","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9572","-1","","","",""," Glyphic Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3111","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9573","-1","","","","","Glyphic Memorandum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2446","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9574","-1","","","","","Glyphic Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2447","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9575","-1","","","","","Glyphic Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2448","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9576","-1","","","","","Tainted Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2449","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9577","-1","","","","","Tainted Memorandum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2450","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9578","-1","","","","","Tainted Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2452","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9579","-1","","","","","Tainted Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2451","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9580","-1","","","","","Verdant Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2459","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9581","-1","","","","","Verdant Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2458","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9587","-1","","","","","Thawpelt Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9588","-1","","","","","Nogg's Gold Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6463","25852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"9589","-1","","","","","Encrusted Minerals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9590","-1","","","","","Splintered Log","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9591","-1","","","","","Resilient Sinew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9592","-1","","","","","Metallic Fragments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9593","-1","","","","","Treant Muisek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9594","-1","","","","","Wildkin Muisek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9595","-1","","","","","Hippogryph Muisek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9596","-1","","","","","Faerie Dragon Muisek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9597","-1","","","","","Mountain Giant Muisek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9598","-1","","","","","Sleeping Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","473","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9599","-1","","","","","Barkmail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","713","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9600","-1","","","","","Lace Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93","465","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9601","-1","","","","","Cushioned Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9602","-1","","","","","Brushwood Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","301","1505","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9603","-1","","","","","Gritroot Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1510","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","10","-1","0","0","14","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9604","-1","","","","","Mechanic's Pipehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5632","28160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","30","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","3","0","0","0","0","0","0","0","0","0" +"9605","-1","","","","","Repairman's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1356","6783","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","6","0","0","0","0","0","0","0","0","0" +"9606","-1","","","","","Treant Muisek Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9607","-1","","","","","Bastion of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1762","8810","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9608","-1","","","","","Shoni's Disarming Tool","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5028","25144","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","31","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9609","-1","","","","","Shilly Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1009","5046","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"9618","-1","","","","","Wildkin Muisek Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9619","-1","","","","","Hippogryph Muisek Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9620","-1","","","","","Faerie Dragon Muisek Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9621","-1","","","","","Mountain Giant Muisek Vessel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9622","-1","","","","","Reedknot Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5665","22660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","6","0","0","0","0","0","0","0","0","0" +"9623","-1","","","","","Civinad Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4198","20992","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","18","7","0","0","0","0","0","0","0","0","0" +"9624","-1","","","","","Triprunner Dungarees","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5267","26338","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","18","3","0","0","0","0","0","0","0","0" +"9625","-1","","","","","Dual Reinforced Leggings","1","0","180","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6344","31721","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","0" +"9626","-1","","","","","Dwarven Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16243","81219","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","42","-1","0","0","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","11","0","0","0","0","0","0","0","0","0" +"9627","-1","","","","","Explorer's League Lodestar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","6","0","0","0","0","0","0","0","0","0" +"9628","-1","","","","","Neeru's Herb Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9629","-1","","","","","A Shrunken Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9630","-1","","","","","Pratt's Handcrafted Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5780","28903","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","11","0","0","0","0","0","0","0","0","0" +"9631","-1","","","","","Pratt's Handcrafted Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3868","19341","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9632","-1","","","","","Jangdor's Handcrafted Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3883","19416","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9633","-1","","","","","Jangdor's Handcrafted Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5847","29237","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","11","0","0","0","0","0","0","0","0","0" +"9634","-1","","","","","Skilled Handling Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3381","16905","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","10","0","0","0","0","0","0","0","0" +"9635","-1","","","","","Master Apothecary Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4713","23567","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","10","0","0","0","0","0","0","0","0","0" +"9636","-1","","","","","Swashbuckler Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3154","15772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9637","-1","","","","","Shinkicker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4749","23747","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9638","-1","","","","","Chelonian Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6875","34376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","10","0","0","0","0","0","0","0","0","0" +"9639","-1","","","","","The Hand of Antu'sul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24111","120556","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","48","-1","0","0","61","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","43" +"9640","-1","","","","","Vice Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4840","24201","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","783","0","0","0","0","0","0","0","0","0","0","318","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","43" +"9641","-1","","","","","Lifeblood Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13041","52165","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","5","13","0","0","0","0","0","0","0","0","43" +"9642","-1","","","","","Band of the Great Tortoise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9643","-1","","","","","Optomatic Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15988","79942","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","0" +"9644","-1","","","","","Thermotastic Egg Timer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9885","39540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","11","0","0","0","0","0","0","0","0","0" +"9645","-1","","","","","Gnomish Inventor Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6768","33841","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","2","11","0","0","0","0","0","0","0","0" +"9646","-1","","","","","Gnomish Water Sinking Device","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6791","33959","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","-5","16","0","0","0","0","0","0","0","0","0" +"9647","-1","","","","","Failed Flying Experiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7962","39813","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","0" +"9648","-1","Now even less absorbant!","","","","Chainlink Towel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6392","31963","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","10","0","0","0","0","0","0","0","0","0" +"9649","-1","","","","","Royal Highmark Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13229","66146","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","3","16","0","0","0","0","0","0","0","0" +"9650","-1","","","","","Honorguard Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18016","90081","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","3","3","0","0","0","0","0","0","0","0" +"9651","-1","","","","","Gryphon Rider's Stormhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26828","134140","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9652","-1","","","","","Gryphon Rider's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13466","67330","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","15","0","0","0","0","0","0","0","0","0" +"9653","-1","","","","","Speedy Racer Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6745","33727","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","0" +"9654","-1","","","","","Cairnstone Sliver","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16928","84644","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","50","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9655","-1","","","","","Seedtime Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7092","28370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","10","0","0","0","0","0","0","0","0","0" +"9656","-1","","","","","Granite Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4251","21256","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","0","0","0","0","0","0","0","0","0","0" +"9657","-1","","","","","Vinehedge Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5333","26669","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","3","0","0","0","0","0","0","0","0","0" +"9658","-1","","","","","Boots of the Maharishi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4086","20432","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","4","9","0","0","0","0","0","0","0","0" +"9659","-1","","","","","Monster - Mace, Tauren Spiked","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9660","-1","","","","","Stargazer Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4227","21139","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","0" +"9661","-1","","","","","Earthclasp Barrier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9051","45257","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","9","0","0","0","0","0","0","0","0","0" +"9662","-1","","","","","Rushridge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4258","21291","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","7","0","0","0","0","0","0","0","0","0" +"9663","-1","","","","","Dawnrider's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9969","49848","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","5","0","0","0","0","0","0","0","0","0" +"9664","-1","","","","","Sentinel's Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5002","25013","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","9","12","0","0","0","0","0","0","0","0" +"9665","-1","","","","","Wingcrest Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4826","24134","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"9666","-1","","","","","Stronghorn Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7266","36332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","10","0","0","0","0","0","0","0","0","0" +"9678","-1","","","","","Tok'kar's Murloc Basher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17485","87429","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","43","-1","0","0","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","18","0","0","0","0","0","0","0","0","0","0" +"9679","-1","","","","","Tok'kar's Murloc Chopper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17550","87750","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","43","-1","0","0","83","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","6","0","0","0","0","0","0","0","0","0" +"9680","-1","","","","","Tok'kar's Murloc Shanker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14090","70451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","43","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","6","0","0","0","0","0","0","0","0","0" +"9681","-1","","","","","Grilled King Crawler Legs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"9682","-1","","","","","Leather Chef's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3831","19159","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","12","0","0","0","0","0","0","0","0","0" +"9683","-1","","","","","Strength of the Treant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29952","149764","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","50","-1","0","0","115","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","18","0","0","0","0","0","0","0","0","0" +"9684","-1","","","","","Force of the Hippogryph","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25729","128648","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","51","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","9","0","0","0","0","0","0","0","0","0","0" +"9685","-1","","","","","Will of the Mountain Giant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32277","161389","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","51","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","14","0","0","0","0","0","0","0","0","46" +"9686","-1","","","","","Spirit of the Faerie Dragon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25914","129573","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","51","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","9","0","0","0","0","0","0","0","0","0","0" +"9687","-1","","","","","Grappler's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1554","7771","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","5","0","0","0","0","0","0","0","0","0" +"9698","-1","","","","","Gloves of Insight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1504","7524","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"9699","-1","","","","","Garrison Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1812","9062","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","3","0","0","0","0","0","0","0","0","0" +"9700","-1","","","","","Monster - Item, Sparkler Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9701","-1","","","","","Monster - Item, Sparkler Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9702","-1","","","","","Monster - Item, Sparkler White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9703","-1","","","","","Scorched Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4272","21362","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","9","0","0","0","0","0","0","0","0","0" +"9704","-1","","","","","Rustler Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3573","17865","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","0" +"9705","-1","","","","","Tharg's Shoelace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3586","17930","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","0" +"9706","-1","","","","","Tharg's Disk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9212","46062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","10","0","0","0","0","0","0","0","0","0","0" +"9718","-1","","","","","Reforged Blade of Heroes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11421","57106","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","38","-1","0","0","31","5","0","0","0","59","10","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","33" +"9719","-1","","","","","Broken Blade of Heroes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","190","164","38","-1","0","0","37","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"9738","-1","","","","","Gem of Cobrahn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9739","-1","","","","","Gem of Anacondra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9740","-1","","","","","Gem of Pythas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9741","-1","","","","","Gem of Serpentis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9742","-1","","","","","Simple Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","246","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9743","-1","","","","","Simple Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","335","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9744","-1","","","","","Simple Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","224","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9745","-1","","","","","Simple Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","270","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9746","-1","","","","","Simple Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","282","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9747","-1","","","","","Simple Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","227","1139","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","539","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9748","-1","","","","","Simple Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","274","1371","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","455","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9749","-1","","","","","Simple Blouse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1376","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","455","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9750","-1","","","","","Gypsy Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","287","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9751","-1","","","","","Gypsy Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9752","-1","","","","","Gypsy Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","289","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9753","-1","","","","","Gypsy Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","248","1242","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6278","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","7" +"9754","-1","","","","","Gypsy Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9755","-1","","","","","Gypsy Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","366","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9756","-1","","","","","Gypsy Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1471","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","560","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9757","-1","","","","","Gypsy Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1819","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","476","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9758","-1","","","","","Cadet Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9759","-1","","","","","Cadet Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","690","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9760","-1","","","","","Cadet Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","367","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9761","-1","","","","","Cadet Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9762","-1","","","","","Cadet Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","463","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9763","-1","","","","","Cadet Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","336","1681","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","581","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9764","-1","","","","","Cadet Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1501","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","6279","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","8" +"9765","-1","","","","","Cadet Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","406","2034","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","497","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9766","-1","","","","","Greenweave Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","361","1809","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","878","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9767","-1","","","","","Greenweave Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","616","3080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","794","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","18" +"9768","-1","","","","","Greenweave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1586","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","1045","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","16" +"9769","-1","","","","","Greenweave Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1637","6548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9770","-1","","","","","Greenweave Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","416","2084","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","961","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9771","-1","","","","","Greenweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2662","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","711","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9772","-1","","","","","Greenweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1328","6644","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","543","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9773","-1","","","","","Greenweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1369","6847","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","459","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9774","-1","","","","","Greenweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6872","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","459","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9775","-1","","","","","Bandit Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","315","1579","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","898","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9776","-1","","","","","Bandit Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","547","2735","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","814","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9777","-1","","","","","Bandit Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","318","1591","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1066","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9778","-1","","","","","Bandit Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4702","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","2004","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9779","-1","","","","","Bandit Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","334","1671","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","981","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","13" +"9780","-1","","","","","Bandit Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1849","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","730","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9781","-1","","","","","Bandit Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4910","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","563","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9782","-1","","","","","Bandit Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5568","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","479","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"9783","-1","","","","","Raider's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","811","4059","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","499","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9784","-1","","","","","Raider's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","835","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9785","-1","","","","","Raider's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","268","1344","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1086","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","12" +"9786","-1","","","","","Raider's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1173","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1002","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","11" +"9787","-1","","","","","Raider's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1791","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","751","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9788","-1","","","","","Raider's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1563","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","918","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","13" +"9789","-1","","","","","Raider's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","741","3709","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","583","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9790","-1","","","","","Raider's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","794","3972","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2004","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9791","-1","","","","","Ivycloth Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1644","8224","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","460","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9792","-1","","","","","Ivycloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","795","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9793","-1","","","","","Ivycloth Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2753","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1047","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9794","-1","","","","","Ivycloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4145","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","963","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9795","-1","","","","","Ivycloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","626","3134","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","711","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9796","-1","","","","","Ivycloth Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","5190","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1131","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9797","-1","","","","","Ivycloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1528","7640","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","544","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9798","-1","","","","","Ivycloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1686","8434","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","460","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9799","-1","","","","","Ivycloth Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","635","3179","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","879","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9800","-1","","","","","Ivy Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","8110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2020","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9801","-1","","","","","Superior Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","708","3542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","900","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9802","-1","","","","","Superior Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1204","6024","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","816","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9803","-1","","","","","Superior Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3647","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1068","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9804","-1","","","","","Superior Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1874","9372","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","2016","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9805","-1","","","","","Superior Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","709","3549","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","983","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9806","-1","","","","","Superior Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","833","4169","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","732","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9807","-1","","","","","Superior Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1255","6278","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1152","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9808","-1","","","","","Superior Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1848","9242","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","565","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9809","-1","","","","","Superior Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1855","9276","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","481","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9810","-1","","","","","Fortified Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1231","6155","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","837","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9811","-1","","","","","Fortified Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","3628","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","1088","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9812","-1","","","","","Fortified Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2851","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","1004","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9813","-1","","","","","Fortified Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","4129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","753","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9814","-1","","","","","Fortified Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","733","3668","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","920","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9815","-1","","","","","Fortified Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1664","8320","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","585","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9816","-1","","","","","Fortified Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1781","8906","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2016","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9817","-1","","","","","Fortified Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7134","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1173","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9818","-1","","","","","Fortified Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1682","8410","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","501","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9819","-1","","","","","Durable Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2726","13630","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9820","-1","","","","","Durable Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1541","7707","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","797","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9821","-1","","","","","Durable Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","871","4357","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1048","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9822","-1","","","","","Durable Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1192","5963","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9823","-1","","","","","Durable Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4828","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","713","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9824","-1","","","","","Durable Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1599","7998","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1133","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9825","-1","","","","","Durable Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2355","11775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","545","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9826","-1","","","","","Durable Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2600","13001","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9827","-1","","","","","Scaled Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1114","5570","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","901","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9828","-1","","","","","Scaled Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1845","9225","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","818","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9829","-1","","","","","Scaled Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5100","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1069","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9830","-1","","","","","Scaled Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3489","17445","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2026","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9831","-1","","","","","Scaled Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1233","6166","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","985","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9832","-1","","","","","Scaled Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1248","6240","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","734","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9833","-1","","","","","Scaled Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3031","15157","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","566","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9834","-1","","","","","Scaled Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2074","10371","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1154","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9835","-1","","","","","Scaled Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3053","15266","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","482","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9836","-1","","","","","Banded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3677","18387","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","503","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9837","-1","","","","","Banded Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1287","6436","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1090","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9838","-1","","","","","Banded Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1174","5872","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9839","-1","","","","","Banded Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7134","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","755","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9840","-1","","","","","Banded Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1432","7161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","923","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9841","-1","","","","","Banded Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3163","15815","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","587","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9842","-1","","","","","Banded Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2391","11958","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1175","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9843","-1","","","","","Banded Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3739","18696","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2028","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9844","-1","","","","","Conjurer's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3709","18546","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","463","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9845","-1","","","","","Conjurer's Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10683","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","798","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9846","-1","","","","","Conjurer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1429","7148","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1050","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9847","-1","","","","","Conjurer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1779","8895","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","965","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9848","-1","","","","","Conjurer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1584","7922","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","714","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9849","-1","","","","","Conjurer's Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2385","11927","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","630","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9850","-1","","","","","Conjurer's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2394","11971","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1134","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9851","-1","","","","","Conjurer's Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3524","17623","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","547","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9852","-1","","","","","Conjurer's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3820","19102","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","463","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9853","-1","","","","","Conjurer's Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1368","6842","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","882","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9854","-1","","","","","Archer's Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4935","24677","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","484","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9855","-1","","","","","Archer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1895","9475","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","903","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9856","-1","","","","","Archer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2839","14195","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","819","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9857","-1","","","","","Archer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1570","7851","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1071","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9858","-1","","","","","Archer's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4882","24414","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2034","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9859","-1","","","","","Archer's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2871","14359","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","651","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9860","-1","","","","","Archer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2382","11912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","987","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9861","-1","","","","","Archer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1753","8768","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","735","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9862","-1","","","","","Archer's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4260","21302","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","568","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9863","-1","","","","","Archer's Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3207","16037","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1156","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9864","-1","","","","","Renegade Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3527","17637","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","840","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9865","-1","","","","","Renegade Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9711","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1092","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9866","-1","","","","","Renegade Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5605","28025","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","505","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9867","-1","","","","","Renegade Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1778","8894","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1007","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9868","-1","","","","","Renegade Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2160","10802","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","756","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9869","-1","","","","","Renegade Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2225","11129","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","924","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9870","-1","","","","","Renegade Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3686","18430","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","672","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9871","-1","","","","","Renegade Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5425","27128","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","589","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9872","-1","","","","","Renegade Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4101","20508","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1177","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9873","-1","","","","","Renegade Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5828","29141","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2040","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9874","-1","","","","","Sorcerer Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5801","29005","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","465","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9875","-1","","","","","Sorcerer Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2139","10697","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","883","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9876","-1","","","","","Sorcerer Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3146","15733","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","800","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9877","-1","","","","","Sorcerer Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2708","13541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","967","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9878","-1","","","","","Sorcerer Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3424","17124","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","632","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9879","-1","","","","","Sorcerer Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1964","9824","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1051","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9880","-1","","","","","Sorcerer Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2130","10650","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","716","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9881","-1","","","","","Sorcerer Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3464","17320","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1136","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9882","-1","","","","","Sorcerer Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6209","24836","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","43","-1","0","2050","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9883","-1","","","","","Sorcerer Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5026","25130","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","548","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9884","-1","","","","","Sorcerer Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5448","27244","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","465","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9885","-1","","","","","Huntsman's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4179","20899","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","821","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9886","-1","","","","","Huntsman's Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2589","12948","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1072","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9887","-1","","","","","Huntsman's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7071","35357","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","486","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9888","-1","","","","","Deprecated Elven Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5204","26021","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2044","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9889","-1","","","","","Huntsman's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4240","21203","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","653","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9890","-1","","","","","Huntsman's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2919","14595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","988","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9891","-1","","","","","Huntsman's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2636","13181","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","904","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9892","-1","","","","","Huntsman's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2857","14287","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","737","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9893","-1","","","","","Huntsman's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6689","33448","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","569","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9894","-1","","","","","Huntsman's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4661","23308","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1157","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9895","-1","","","","","Jazeraint Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5221","26105","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","842","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9896","-1","","","","","Jazeraint Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2913","14567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1093","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9897","-1","","","","","Jazeraint Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7368","36842","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","506","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9898","-1","","","","","Jazeraint Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2718","13591","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1009","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9899","-1","","","","","Jazeraint Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7920","39600","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","2046","0","0","0","0","0","0","0","0","0","0","1148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9900","-1","","","","","Jazeraint Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3195","15975","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","758","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9901","-1","","","","","Jazeraint Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3294","16474","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","926","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9902","-1","","","","","Jazeraint Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5357","26786","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","674","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9903","-1","","","","","Jazeraint Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7742","38714","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","590","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9904","-1","","","","","Jazeraint Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5420","27104","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1178","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9905","-1","","","","","Royal Blouse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8251","41258","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","466","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9906","-1","","","","","Royal Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3043","15216","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","885","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9907","-1","","","","","Royal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4581","22909","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","801","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9908","-1","","","","","Royal Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4257","21289","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","969","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9909","-1","","","","","Royal Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2848","14242","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1053","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9910","-1","","","","","Royal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3087","15437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","717","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9911","-1","","","","","Royal Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7228","36142","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","550","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9912","-1","","","","","Royal Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5037","25188","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1137","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9913","-1","","","","","Royal Gown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8490","42454","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","466","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9914","-1","","","","","Royal Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7557","30230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","48","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9915","-1","","","","","Royal Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5091","25456","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","633","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9916","-1","","","","","Tracker's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3566","17834","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","906","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9917","-1","","","","","Tracker's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5519","27598","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","822","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9918","-1","","","","","Brigade Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10212","51061","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9919","-1","","","","","Tracker's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5149","25746","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","990","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9920","-1","","","","","Tracker's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3721","18606","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","738","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9921","-1","","","","","Tracker's Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6050","30252","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","654","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9922","-1","","","","","Tracker's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8745","43726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","571","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9923","-1","","","","","Tracker's Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6095","30477","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1158","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9924","-1","","","","","Tracker's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10276","51380","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","487","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9925","-1","","","","","Tracker's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3789","18949","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1074","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9926","-1","","","","","Brigade Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6368","31840","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","843","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9927","-1","","","","","Brigade Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3927","19638","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1094","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9928","-1","","","","","Brigade Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9930","49654","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","507","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9929","-1","","","","","Brigade Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3662","18314","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1010","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9930","-1","","","","","Brigade Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4287","21439","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","759","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9931","-1","","","","","Brigade Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4303","21516","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","927","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9932","-1","","","","","Brigade Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6995","34977","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","675","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9933","-1","","","","","Brigade Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9394","46970","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","591","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9934","-1","","","","","Brigade Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6577","32888","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1179","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9935","-1","","","","","Embossed Plate Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10097","50486","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9936","-1","","","","","Abjurer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6403","32016","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","803","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9937","-1","","","","","Abjurer's Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4004","20023","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1054","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9938","-1","","","","","Abjurer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6029","30147","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","970","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9939","-1","","","","","Abjurer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4317","21586","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","719","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9940","-1","","","","","Abjurer's Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6954","34772","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","635","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9941","-1","","","","","Abjurer's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6523","32619","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1139","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9942","-1","","","","","Abjurer's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9341","46708","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","551","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9943","-1","","","","","Abjurer's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11271","56358","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","468","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9944","-1","","","","","Abjurer's Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8570","34283","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2068","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9945","-1","","","","","Abjurer's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4124","20623","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","886","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9946","-1","","","","","Abjurer's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11396","56982","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","468","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9947","-1","","","","","Chieftain's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5193","25965","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","907","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9948","-1","","","","","Chieftain's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8365","41826","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","824","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9949","-1","","","","","Chieftain's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4855","24276","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1075","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9950","-1","","","","","Chieftain's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13418","67091","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","489","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9951","-1","","","","","Chieftain's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6795","33976","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","991","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9952","-1","","","","","Chieftain's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5255","26276","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","740","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9953","-1","","","","","Chieftain's Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8467","42335","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","656","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9954","-1","","","","","Chieftain's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12125","60629","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","572","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"9955","-1","","","","","Chieftain's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8530","42654","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1160","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9956","-1","","","","","Warmonger's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5130","25650","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1096","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9957","-1","","","","","Warmonger's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13753","68766","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","509","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9958","-1","","","","","Warmonger's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14724","73620","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9959","-1","","","","","Warmonger's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4803","24017","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1011","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9960","-1","","","","","Warmonger's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5623","28119","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","760","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9961","-1","","","","","Warmonger's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5644","28224","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","928","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9962","-1","","","","","Warmonger's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9218","46092","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","844","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9963","-1","","","","","Warmonger's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9211","46058","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","676","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9964","-1","","","","","Warmonger's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13190","65952","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","593","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9965","-1","","","","","Warmonger's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9973","49866","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1181","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9966","-1","","","","","Embossed Plate Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6743","33715","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","528","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9967","-1","","","","","Embossed Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2900","14503","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","780","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9968","-1","","","","","Embossed Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2695","13476","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","947","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9969","-1","","","","","Embossed Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3964","19824","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","696","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9970","-1","","","","","Embossed Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5730","28654","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","612","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9971","-1","","","","","Embossed Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3995","19976","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1200","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9972","-1","","","","","Embossed Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2475","12378","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1115","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9973","-1","","","","","Embossed Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3727","18637","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","863","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9974","-1","","","","","Overlord's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16449","82246","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","47" +"9978","-1","","","","","Gahz'ridian Detector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9998","-1","","","","","Black Mageweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4815","24076","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","11","0","0","0","0","0","0","0","0","36" +"9999","-1","","","","","Black Mageweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4832","24164","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","8","0","0","0","0","0","0","0","0","36" +"10000","-1","","","","","Margol's Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3181","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10001","-1","","","","","Black Mageweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5257","26285","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","14","8","0","0","0","0","0","0","0","0","37" +"10002","-1","","","","","Shadoweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5276","26380","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","37" +"10003","-1","","","","","Black Mageweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2859","14296","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"10004","-1","","","","","Shadoweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5738","28694","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","0","0","0","0","0","0","0","0","0","38" +"10005","-1","","","","","Margol's Gigantic Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10007","-1","","","","","Red Mageweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5799","28999","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","0","0","0","0","0","0","0","0","0","38" +"10008","-1","","","","","White Bandit Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4365","21826","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","11","0","0","0","0","0","0","0","0","38" +"10009","-1","","","","","Red Mageweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5284","26424","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","38" +"10010","-1","","","","","Stormcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5729","28648","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","0","0","0","0","0","0","0","0","0","39" +"10011","-1","","","","","Stormcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2875","14377","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"10018","-1","","","","","Red Mageweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3275","16376","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","0","0","0","0","0","0","0","0","0","40" +"10019","-1","","","","","Dreamweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3944","19721","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","4","0","0","0","0","0","0","0","0","40" +"10020","-1","","","","","Stormcloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6597","32989","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","0","0","0","0","0","0","0","0","40" +"10021","-1","","","","","Dreamweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7946","39731","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","9","0","0","0","0","0","0","0","0","40" +"10022","-1","","","","","Proof of Deed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1231","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10023","-1","","","","","Shadoweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3334","16672","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","40" +"10024","-1","","","","","Black Mageweave Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5421","27107","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","41" +"10025","-1","","","","","Shadoweave Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6790","33952","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","44" +"10026","-1","","","","","Black Mageweave Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5459","27298","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","7","0","0","0","0","0","0","0","0","41" +"10027","-1","","","","","Black Mageweave Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5479","27396","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","41" +"10028","-1","","","","","Shadoweave Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5938","29692","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","42" +"10029","-1","","","","","Red Mageweave Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5391","26959","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","42" +"10030","-1","","","","","Admiral's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6007","30038","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10031","-1","","","","","Shadoweave Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6030","30150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","43" +"10032","-1","","","","","Stormcloth Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6052","30263","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","43" +"10033","-1","","","","","Red Mageweave Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6075","30377","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","43" +"10034","-1","","","","","Tuxedo Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10035","-1","","","","","Tuxedo Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1735","8676","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10036","-1","","","","","Tuxedo Jacket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1741","8708","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10038","-1","","","","","Stormcloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6620","33103","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10039","-1","","","","","Stormcloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7110","35550","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","45" +"10040","-1","","","","","White Wedding Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8836","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10041","-1","","","","","Dreamweave Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8593","42968","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","10","0","0","0","0","0","0","0","0","45" +"10042","-1","","","","","Cindercloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6644","33222","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10043","-1","","","","","Pious Legwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2033","10167","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","0" +"10044","-1","","","","","Cindercloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6765","33827","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10045","-1","","","","","Simple Linen Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","117","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","2" +"10046","-1","","","","","Simple Linen Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"10047","-1","","","","","Simple Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164","822","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","10" +"10048","-1","","","","","Colorful Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","935","4678","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","0","0","0","0","0","0","0","0","14" +"10049","-1","","","","","Diabolist's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2653","13267","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","256","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10050","-1","","","","","Mageweave Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10051","-1","","","","","Red Mageweave Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10052","-1","","","","","Orange Martial Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10053","-1","","","","","Simple Black Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4499","22497","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10054","-1","","","","","Lavender Mageweave Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10055","-1","","","","","Pink Mageweave Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10056","-1","","","","","Orange Mageweave Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10057","-1","","","","","Duskwoven Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12711","63558","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","469","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10058","-1","","","","","Duskwoven Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7083","35417","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","803","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10059","-1","","","","","Duskwoven Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4739","23697","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1055","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10060","-1","","","","","Duskwoven Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6667","33339","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","971","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10061","-1","","","","","Duskwoven Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7661","38309","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","635","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10062","-1","","","","","Duskwoven Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4758","23791","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10063","-1","","","","","Duskwoven Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7165","35826","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1139","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10064","-1","","","","","Duskwoven Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10774","53874","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","552","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10065","-1","","","","","Duskwoven Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12153","60767","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","469","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10066","-1","","","","","Duskwoven Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","21101","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","887","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10067","-1","","","","","Righteous Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5295","26478","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","908","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10068","-1","","","","","Righteous Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9128","45640","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","824","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10069","-1","","","","","Righteous Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5335","26677","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1076","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10070","-1","","","","","Righteous Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15482","77411","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","490","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10071","-1","","","","","Righteous Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8063","40315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","992","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10072","-1","","","","","Righteous Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6177","30886","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","740","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10073","-1","","","","","Righteous Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9858","49293","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","657","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10074","-1","","","","","Righteous Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13985","69928","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","573","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10075","-1","","","","","Righteous Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9369","46845","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1160","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10076","-1","","","","","Lord's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6571","32855","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1097","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10077","-1","","","","","Lord's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16968","84841","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","510","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10078","-1","","","","","Lord's Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18642","93213","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1635","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10079","-1","","","","","Lord's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6370","31852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1012","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10080","-1","","","","","Lord's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7319","36598","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","761","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10081","-1","","","","","Lord's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7345","36728","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","929","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10082","-1","","","","","Lord's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10752","53763","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","845","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10083","-1","","","","","Lord's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10745","53728","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","677","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10084","-1","","","","","Lord's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15246","76231","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","594","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10085","-1","","","","","Lord's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11529","57648","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1182","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10086","-1","","","","","Gothic Plate Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8438","42194","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","530","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10087","-1","","","","","Gothic Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3393","16968","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","781","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"10088","-1","","","","","Gothic Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3154","15772","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","948","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10089","-1","","","","","Gothic Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4749","23747","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","864","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10090","-1","","","","","Gothic Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5148","25742","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","697","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","41" +"10091","-1","","","","","Gothic Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7441","37208","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","613","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","42" +"10092","-1","","","","","Gothic Plate Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5602","28011","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1201","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"10093","-1","","","","","Revenant Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18903","94517","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10094","-1","","","","","Gothic Plate Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3311","16557","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1116","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10095","-1","","","","","Councillor's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10295","51476","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","805","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10096","-1","","","","","Councillor's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6130","30653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1056","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10097","-1","","","","","Councillor's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10991","54959","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","637","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10098","-1","","","","","Councillor's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8736","43684","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10099","-1","","","","","Councillor's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6567","32839","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","721","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10100","-1","","","","","Councillor's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11108","55544","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1141","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10101","-1","","","","","Councillor's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15756","78781","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","554","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10102","-1","","","","","Councillor's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15020","75101","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","470","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10103","-1","","","","","Councillor's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5687","28437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","888","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10104","-1","","","","","Councillor's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15137","75686","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","470","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10105","-1","","","","","Wanderer's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19942","99711","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","491","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10106","-1","","","","","Wanderer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12120","60601","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","826","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10107","-1","","","","","Wanderer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7218","36094","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1077","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10108","-1","","","","","Wanderer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8203","41016","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","993","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10109","-1","","","","","Wanderer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7273","36366","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","909","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10110","-1","","","","","Wanderer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7947","39739","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","742","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10111","-1","","","","","Wanderer's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13444","67223","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","658","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10112","-1","","","","","Wanderer's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19071","95356","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","575","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10113","-1","","","","","Wanderer's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13541","67708","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1162","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10118","-1","","","","","Ornate Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23381","116909","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","512","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10119","-1","","","","","Ornate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16676","83383","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","847","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10120","-1","","","","","Ornate Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8797","43987","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1014","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10121","-1","","","","","Ornate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10515","52576","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","763","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10122","-1","","","","","Ornate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9007","45035","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","931","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10123","-1","","","","","Ornate Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15239","76198","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","679","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10124","-1","","","","","Ornate Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20396","101982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","595","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10125","-1","","","","","Ornate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14551","72757","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1183","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10126","-1","","","","","Ornate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8865","44327","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1098","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10127","-1","","","","","Revenant Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4350","21752","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1118","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10128","-1","","","","","Revenant Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11907","59538","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","531","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10129","-1","","","","","Revenant Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4689","23445","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","782","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10130","-1","","","","","Revenant Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4706","23531","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","950","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10131","-1","","","","","Revenant Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7085","35428","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","866","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10132","-1","","","","","Revenant Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7608","38043","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","698","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10133","-1","","","","","Revenant Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10792","53964","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","615","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10134","-1","","","","","Revenant Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7664","38320","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1202","0","0","0","0","0","0","0","0","0","0","366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10135","-1","","","","","High Councillor's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20663","103318","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","472","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10136","-1","","","","","High Councillor's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8530","42653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1058","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10137","-1","","","","","High Councillor's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13484","67420","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","807","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10138","-1","","","","","High Councillor's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12274","61371","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","974","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10139","-1","","","","","High Councillor's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14258","71291","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","639","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10140","-1","","","","","High Councillor's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9085","45425","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","723","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10141","-1","","","","","High Councillor's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20103","100518","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","555","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10142","-1","","","","","High Councillor's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13401","67007","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1143","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10143","-1","","","","","High Councillor's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19772","98864","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","472","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10144","-1","","","","","High Councillor's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8164","40820","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","890","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10145","-1","","","","","Mighty Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9755","48779","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","911","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10146","-1","","","","","Mighty Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16194","80970","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","828","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10147","-1","","","","","Mighty Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10319","51596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1079","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10148","-1","","","","","Mighty Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11273","56367","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","995","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10149","-1","","","","","Mighty Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10915","54579","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","744","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10150","-1","","","","","Mighty Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17254","86270","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","660","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10151","-1","","","","","Mighty Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25456","127283","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","493","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10152","-1","","","","","Mighty Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24333","121666","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","576","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10153","-1","","","","","Mighty Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17444","87221","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1164","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10154","-1","","","","","Mercurial Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13337","66689","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","933","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10155","-1","","","","","Mercurial Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20168","100842","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","849","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10156","-1","","","","","Mercurial Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12794","63973","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1100","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10157","-1","","","","","Mercurial Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31216","156081","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","514","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10158","-1","","","","","Mercurial Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31040","155200","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10159","-1","","","","","Mercurial Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11444","57220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1016","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10160","-1","","","","","Mercurial Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19948","99741","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","681","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10161","-1","","","","","Mercurial Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12713","63568","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","765","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10162","-1","","","","","Mercurial Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28137","140688","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","597","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10163","-1","","","","","Mercurial Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20264","101320","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1185","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10164","-1","","","","","Templar Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14808","74044","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","533","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10165","-1","","","","","Templar Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6240","31200","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","784","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10166","-1","","","","","Templar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5908","29542","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","951","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10167","-1","","","","","Templar Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9429","47147","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","868","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10168","-1","","","","","Templar Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10032","50161","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","700","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10169","-1","","","","","Templar Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14230","71151","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","616","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10170","-1","","","","","Templar Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10105","50528","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1204","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10171","-1","","","","","Templar Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6018","30090","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1119","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10172","-1","","","","","Mystical Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9603","48018","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1141","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10173","-1","","","","","Mystical Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5718","28592","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1056","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10174","-1","","","","","Mystical Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8121","40607","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10175","-1","","","","","Mystical Headwrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9010","45054","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","637","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10176","-1","","","","","Mystical Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5689","28446","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","720","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10177","-1","","","","","Mystical Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12833","64165","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","553","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10178","-1","","","","","Mystical Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14475","72375","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","470","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10179","-1","","","","","Mystical Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8632","43161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","804","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10180","-1","","","","","Mystical Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5141","25707","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","888","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10181","-1","","","","","Mystical Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14640","73202","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","470","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10182","-1","","","","","Swashbuckler's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18370","91850","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","491","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10183","-1","","","","","Swashbuckler's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10954","54772","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","825","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10184","-1","","","","","Swashbuckler's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6523","32617","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1077","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10185","-1","","","","","Swashbuckler's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7412","37064","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10186","-1","","","","","Swashbuckler's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6966","34834","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","741","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10187","-1","","","","","Swashbuckler's Eyepatch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11785","58928","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","658","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10188","-1","","","","","Swashbuckler's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16717","83587","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","574","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10189","-1","","","","","Swashbuckler's Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11872","59360","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1162","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10190","-1","","","","","Swashbuckler's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6669","33349","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","909","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10191","-1","","","","","Crusader's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7777","38887","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1097","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10192","-1","","","","","Crusader's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13212","66060","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","846","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10193","-1","","","","","Crusader's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19775","98879","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","511","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10194","-1","","","","","Crusader's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7345","36728","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1013","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10195","-1","","","","","Crusader's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19221","96107","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10196","-1","","","","","Crusader's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7593","37967","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","762","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10197","-1","","","","","Crusader's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7623","38115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","930","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10198","-1","","","","","Crusader's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12167","60837","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","678","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10199","-1","","","","","Crusader's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17261","86305","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","594","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10200","-1","","","","","Crusader's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12314","61571","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1182","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10201","-1","","","","","Overlord's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5960","29801","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","865","0","0","0","0","0","0","0","0","0","0","318","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10202","-1","","","","","Overlord's Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3988","19943","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1117","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10203","-1","","","","","Overlord's Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10397","51986","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","531","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10204","-1","","","","","Heavy Lamellar Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19888","99441","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10205","-1","","","","","Overlord's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4316","21580","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","782","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10206","-1","","","","","Overlord's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4048","20243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","949","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10207","-1","","","","","Overlord's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6695","33477","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","698","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10208","-1","","","","","Overlord's Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9586","47933","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","614","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10209","-1","","","","","Overlord's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7216","36080","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1202","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10210","-1","","","","","Elegant Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12845","64228","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1142","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10211","-1","","","","","Elegant Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12276","61383","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10212","-1","","","","","Elegant Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11069","55348","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","973","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10213","-1","","","","","Elegant Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7850","39251","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1058","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10214","-1","","","","","Elegant Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8271","41356","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","722","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10215","-1","","","","","Elegant Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17387","86939","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","471","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10216","-1","","","","","Elegant Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7180","35901","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","890","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10217","-1","","","","","Elegant Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16688","83444","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","555","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10218","-1","","","","","Elegant Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17589","87945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","471","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10219","-1","","","","","Elegant Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12011","60056","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","638","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10220","-1","","","","","Nightshade Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23263","116316","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","492","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10221","-1","","","","","Nightshade Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9148","45742","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","911","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10222","-1","","","","","Nightshade Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14462","72310","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","827","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10223","-1","","","","","Nightshade Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9466","47330","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1079","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10224","-1","","","","","Nightshade Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10755","53778","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","994","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10225","-1","","","","","Nightshade Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10012","50062","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","743","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10226","-1","","","","","Nightshade Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16616","83084","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","660","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10227","-1","","","","","Nightshade Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23348","116741","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","576","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10228","-1","","","","","Nightshade Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15940","79702","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1163","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10229","-1","","","","","Engraved Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10331","51657","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1099","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10230","-1","","","","","Engraved Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25686","128433","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","512","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10231","-1","","","","","Engraved Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9815","49079","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1015","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10232","-1","","","","","Engraved Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11732","58663","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","764","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10233","-1","","","","","Engraved Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11106","55534","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","931","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10234","-1","","","","","Engraved Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17801","89007","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","848","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10235","-1","","","","","Engraved Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16896","84481","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","680","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10236","-1","","","","","Engraved Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22615","113079","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","596","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10237","-1","","","","","Engraved Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16287","81436","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1184","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10238","-1","","","","","Heavy Lamellar Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7650","38250","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","867","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10239","-1","","","","","Heavy Lamellar Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4962","24811","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1118","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10240","-1","","","","","Heavy Lamellar Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12576","62882","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","532","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10241","-1","","","","","Heavy Lamellar Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8425","42125","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","699","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10242","-1","","","","","Heavy Lamellar Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5318","26592","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","783","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10243","-1","","","","","Heavy Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5035","25179","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","950","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10244","-1","","","","","Heavy Lamellar Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12039","60199","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","615","0","0","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10245","-1","","","","","Heavy Lamellar Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8548","42744","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1203","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10246","-1","","","","","Master's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21542","107712","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10247","-1","","","","","Master's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14707","73539","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","807","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10248","-1","","","","","Master's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9371","46856","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10249","-1","","","","","Master's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13435","67179","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","975","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10250","-1","","","","","Master's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14866","74331","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","639","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10251","-1","","","","","Master's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9946","49731","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","723","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10252","-1","","","","","Master's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20959","104799","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","556","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10253","-1","","","","","Master's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15024","75123","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1143","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10254","-1","","","","","Master's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22164","110823","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10255","-1","","","","","Master's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8934","44671","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","891","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10256","-1","","","","","Adventurer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10675","53376","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1080","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10257","-1","","","","","Adventurer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16877","84385","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","828","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10258","-1","","","","","Adventurer's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12292","61461","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","995","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10259","-1","","","","","Adventurer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11335","56679","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","912","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10260","-1","","","","","Adventurer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11945","59729","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","744","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10261","-1","","","","","Adventurer's Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17985","89927","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","660","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10262","-1","","","","","Adventurer's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25272","126364","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","577","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10263","-1","","","","","Adventurer's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18116","90583","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1164","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10264","-1","","","","","Adventurer's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26729","133648","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","493","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10265","-1","","","","","Masterwork Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13904","69523","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1101","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10266","-1","","","","","Masterwork Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32310","161552","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","514","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10267","-1","","","","","Masterwork Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13337","66689","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1017","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10268","-1","","","","","Masterwork Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14758","73791","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","765","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10269","-1","","","","","Masterwork Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14106","70531","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","933","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10270","-1","","","","","Masterwork Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22396","111982","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","849","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10271","-1","","","","","Masterwork Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32592","162960","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10272","-1","","","","","Masterwork Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20865","104328","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","681","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10273","-1","","","","","Masterwork Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29323","146619","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","598","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10274","-1","","","","","Masterwork Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21118","105594","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1185","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10275","-1","","","","","Emerald Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16204","81021","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","533","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10276","-1","","","","","Emerald Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9847","49238","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","868","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10277","-1","","","","","Emerald Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6985","34926","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","784","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10278","-1","","","","","Emerald Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6239","31197","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","952","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10279","-1","","","","","Emerald Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11188","55944","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","701","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10280","-1","","","","","Emerald Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15723","78615","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","617","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10281","-1","","","","","Emerald Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11272","56362","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1205","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10282","-1","","","","","Emerald Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6712","33561","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1120","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10283","-1","","","","","Wolf Heart Samples","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10285","-1","","","","","Shadow Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10286","-1","","","","","Heart of the Wild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10287","-1","","","","","Greenweave Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","964","4822","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1131","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"10288","-1","","","","","Sage's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7052","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"10289","-1","","","","","Durable Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1557","7787","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10290","-1","","","","","Pink Dye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10298","-1","","","","","Gnomeregan Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1243","4975","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3476","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","25" +"10299","-1","","","","","Gnomeregan Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3778","15112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","3506","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","26" +"10300","-1","","","","","Pattern: Red Mageweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10301","-1","","","","","Pattern: White Bandit Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10302","-1","","","","","Pattern: Red Mageweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10303","-1","","","","","Pattern: Stormcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10304","-1","","","","","Pattern: Stormcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10305","-1","","","","","Scroll of Protection IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10306","-1","","","","","Scroll of Spirit IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10307","-1","","","","","Scroll of Stamina IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"10308","-1","","","","","Scroll of Intellect IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"10309","-1","","","","","Scroll of Agility IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"10310","-1","","","","","Scroll of Strength IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"10311","-1","","","","","Pattern: Orange Martial Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10312","-1","","","","","Pattern: Red Mageweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10313","-1","","","","","Pattern: Stormcloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10314","-1","","","","","Pattern: Lavender Mageweave Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","197","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10315","-1","","","","","Pattern: Red Mageweave Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","197","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10316","-1","","","","","Pattern: Colorful Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10317","-1","","","","","Pattern: Pink Mageweave Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","197","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10318","-1","","","","","Pattern: Admiral's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10319","-1","","","","","Pattern: Stormcloth Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10320","-1","","","","","Pattern: Red Mageweave Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10321","-1","","","","","Pattern: Tuxedo Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10322","-1","","","","","Pattern: Stormcloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10323","-1","","","","","Pattern: Tuxedo Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10324","-1","","","","","Pattern: Stormcloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10325","-1","","","","","Pattern: White Wedding Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10326","-1","","","","","Pattern: Tuxedo Jacket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10327","-1","","","","","Horn of Echeyakee","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10328","-1","","","","","Scarlet Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6992","34964","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","8","0","0","0","0","0","0","0","0","34" +"10329","-1","","","","","Scarlet Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2507","12538","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","7","0","0","0","0","0","0","0","0","32" +"10330","-1","","","","","Scarlet Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9587","47938","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","10","0","0","0","0","0","0","0","0","38" +"10331","-1","","","","","Scarlet Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2728","13644","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","33" +"10332","-1","","","","","Scarlet Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3790","18950","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","5","0","0","0","0","0","0","0","0","30" +"10333","-1","","","","","Scarlet Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2314","11574","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","31" +"10338","-1","","","","","Fresh Zhevra Carcass","1","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10358","-1","","","","","Duracin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12107","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"10359","-1","","","","","Everlast Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"10360","-1","","","","","Black Kingsnake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10361","-1","","","","","Brown Snake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10362","-1","","","","","Ornate Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24760","123802","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10363","-1","","","","","Engraved Wall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27396","136982","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10364","-1","","","","","Templar Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24938","124692","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10365","-1","","","","","Emerald Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26276","131381","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10366","-1","","","","","Demon Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32052","160263","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","2088","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10367","-1","","","","","Hyperion Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32971","164856","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10368","-1","","","","","Imbued Plate Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17868","89343","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","14","14","0","0","0","0","0","0","0","57" +"10369","-1","","","","","Imbued Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7377","36886","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","3","3","0","0","0","0","0","0","0","53" +"10370","-1","","","","","Imbued Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6985","34929","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","12","0","0","0","0","0","0","0","0","52" +"10371","-1","","","","","Imbued Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11149","55747","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","12","0","0","0","0","0","0","0","0","53" +"10372","-1","","","","","Imbued Plate Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11750","58754","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","17","0","0","0","0","0","0","0","0","54" +"10373","-1","","","","","Imbued Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17336","86682","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","17","0","0","0","0","0","0","0","0","56" +"10374","-1","","","","","Imbued Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11837","59186","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","54" +"10375","-1","","","","","Imbued Plate Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7116","35582","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","4","0","0","0","0","0","0","0","0","52" +"10376","-1","","","","","Commander's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12519","62599","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","869","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10377","-1","","","","","Commander's Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7978","39891","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1121","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10378","-1","","","","","Commander's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19466","97332","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","534","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10379","-1","","","","","Commander's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13290","66454","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","702","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10380","-1","","","","","Commander's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8468","42342","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","785","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10381","-1","","","","","Commander's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8094","40471","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","953","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10382","-1","","","","","Commander's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18808","94041","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","618","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10383","-1","","","","","Commander's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12521","62609","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1206","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10384","-1","","","","","Hyperion Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20370","101850","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","535","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10385","-1","","","","","Hyperion Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13247","66239","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","870","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10386","-1","","","","","Hyperion Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8865","44329","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","786","0","0","0","0","0","0","0","0","0","0","368","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10387","-1","","","","","Hyperion Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8475","42379","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","954","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10388","-1","","","","","Hyperion Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14068","70344","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","702","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10389","-1","","","","","Hyperion Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19770","98854","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","619","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10390","-1","","","","","Hyperion Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14175","70876","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1206","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10391","-1","","","","","Hyperion Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8193","40966","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1121","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10392","-1","","","","","Crimson Snake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10393","-1","","","","","Cockroach","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10394","-1","","","","","Prairie Dog Whistle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10398","-1","","","","","Mechanical Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10399","-1","","","","","Blackened Defias Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1467","7335","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","3","4","0","0","0","0","0","0","0","19" +"10400","-1","","","","","Blackened Defias Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","563","2817","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","13" +"10401","-1","","","","","Blackened Defias Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1278","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"10402","-1","","","","","Blackened Defias Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","385","1926","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","3","0","0","0","0","0","0","0","0","13" +"10403","-1","","","","","Blackened Defias Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","451","2255","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","17" +"10404","-1","","","","","Durable Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","864","4323","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","880","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"10405","-1","","","","","Bandit Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2045","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"10406","-1","","","","","Scaled Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1976","9884","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","650","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10407","-1","","","","","Raider's Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","431","2159","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"10408","-1","","","","","Banded Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2390","11951","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","671","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10409","-1","","","","","Banded Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2409","12049","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","839","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10410","-1","","","","","Leggings of the Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1256","6280","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","4","9","0","0","0","0","0","0","0","18" +"10411","-1","","","","","Footpads of the Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3939","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","18" +"10412","-1","","","","","Belt of the Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","405","2028","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","16" +"10413","-1","","","","","Gloves of the Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1539","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","14" +"10414","-1","","","","","Sample Snapjaw Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10418","-1","Courage, Honor, and above all, Patience","","","","Glimmering Mithril Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16464","65859","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10420","-1","","","","","Skull of the Coldbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10421","-1","","","","","Rough Copper Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","2" +"10423","-1","","","","","Silvered Bronze Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2842","14211","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","6","6","0","0","0","0","0","0","0","26" +"10424","-1","","","","","Plans: Silvered Bronze Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","164","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10438","-1","","","","","Felix's Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10439","-1","","","","","Durnan's Scalding Mornbrew","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10440","-1","","","","","Nori's Mug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10441","-1","","","","","Glowing Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6981","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"10442","-1","The Stone Emanates Evil","","","","Mysterious Artifact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10443","-1","","","","","Singed Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10444","-1","","","","","Standard Issue Flare Gun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10445","-1","","","","","Drawing Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10446","-1","The cold black heart is still pulsing","","","","Heart of Obsidion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10447","-1","The remnants of a once honorable dwarf","","","","Head of Lathoric the Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10450","-1","","","","","Undamaged Hippogryph Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","396","1585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10454","-1","Green mists swirl inside the lattices of this gem.","","","","Essence of Eranikus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3373","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10455","-1","","","","","Chained Essence of Eranikus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6464","25859","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10456","-1","","","","","A Bulging Coin Purse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10457","-1","","","","","Empty Sea Snail Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","142","570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10458","-1","Your heart feels light when you hold this item.","","","","Prayer to Elune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10459","-1","","","","","Chief Sharptusk Thornmantle's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10460","-1","","","","","Hakkari Blood","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","629","2518","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10461","-1","","","","","Shadowy Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3082","15410","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","0" +"10462","-1","","","","","Shadowy Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3608","18044","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","11","4","0","0","0","0","0","0","0","0" +"10463","-1","","","","","Pattern: Shadoweave Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10464","-1","","","","","Staff of Command","1","2700","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10465","-1","","","","","Egg of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10466","-1","","","","","Atal'ai Stone Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10467","-1","Full of trade goods.","","","","Trader's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10478","-1","","","","","Roland's Mana Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10479","-1","","","","","Kovic's Trading Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","48","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10498","-1","","","","","Gyromatic Micro-Adjustor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10499","-1","","","","","Bright-Eye Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2105","10526","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","0" +"10500","-1","","","","","Fire Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3478","17394","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","17","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10501","-1","","","","","Catseye Ultra Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4398","21993","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10502","-1","","","","","Spellpower Goggles Xtreme","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4088","20441","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10503","-1","","","","","Rose Colored Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5169","25847","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","0" +"10504","-1","","","","","Green Lens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7770","38852","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","202","49","-1","0","8652","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","0" +"10505","-1","","","","","Solid Blasting Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10506","-1","","","","","Deepdive Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5227","26136","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10507","-1","","","","","Solid Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10508","-1","","","","","Mithril Blunderbuss","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8958","44794","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","41","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","5","0","0","0","0","0","0","0","0","0","36" +"10509","-1","The flame burns eternally","","","","Heart of Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10510","-1","","","","","Mithril Heavy-bore Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11369","56845","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","44","-1","0","0","41","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","39" +"10511","-1","The oil is encased in stone","","","","Golem Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10512","-1","","","","","Hi-Impact Mithril Slugs","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","42","-1","0","0","12","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","37" +"10513","-1","","","","","Mithril Gyro-Shot","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","5","2000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","49","-1","0","0","15","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10514","-1","","","","","Mithril Frag Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10515","-1","The flame never falters","","","","Torch of Retribution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","128","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10518","-1","","","","","Parachute Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4696","23482","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","0" +"10538","-1","","","","","Tablet of Beth'Amara","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10539","-1","","","","","Tablet of Jin'yael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10540","-1","","","","","Tablet of Markri","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10541","-1","","","","","Tablet of Sael'hai","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10542","-1","","","","","Goblin Mining Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5255","26279","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10543","-1","","","","","Goblin Construction Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3517","17586","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10544","-1","","","","","Thistlewood Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10545","-1","","","","","Gnomish Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3929","19646","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","9","0","0","0","0","0","0","0","0" +"10546","-1","","","","","Deadly Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10547","-1","","","","","Camping Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","8","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10548","-1","","","","","Sniper Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10549","-1","","","","","Rancher's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","811","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"10550","-1","","","","","Wooly Mittens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","243","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10551","-1","","","","","Thorium Plated Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10552","-1","The symbol emanates old magic","","","","Symbol of Ragnaros","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10553","-1","","","","","Foreman Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","657","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"10554","-1","","","","","Foreman Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","597","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","6" +"10555","-1","","","","","Resist Test Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","-50","-50","-50","-50","-50","-50","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10556","-1","","","","","Stone Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10558","-1","","","","","Gold Power Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10559","-1","","","","","Mithril Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10560","-1","","","","","Unstable Trigger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10561","-1","","","","","Mithril Casing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10562","-1","","","","","Hi-Explosive Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10563","-1","","","","","Rubbing: Rune of Beth'Amara","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10564","-1","","","","","Rubbing: Rune of Jin'yael","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10565","-1","","","","","Rubbing: Rune of Markri","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10566","-1","","","","","Rubbing: Rune of Sael'hai","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10567","-1","","","","","Quillshooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8725","43629","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","33" +"10568","-1","","","","","Monster - Mace2H, Pacifier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10569","-1","Bears the mark of Velarok the Deceiver","","","","Hoard of the Black Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10570","-1","","","","","Manslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15875","79375","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","39","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","34" +"10571","-1","","","","","Ebony Boneclub","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10927","54635","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","37","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","32" +"10572","-1","","","","","Freezing Shard","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9592","47960","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","39","128","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","34" +"10573","-1","","","","","Boneslasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13754","68773","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","16","5","0","0","0","0","0","0","0","32" +"10574","-1","","","","","Corpseshroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3775","18878","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","19","5","0","0","0","0","0","0","0","35" +"10575","-1","A dull and gray patch of black dragon skin","","","","Black Dragonflight Molt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10576","-1","","","","","Mithril Mechanical Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10577","-1","","","","","Goblin Mortar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10578","-1","","","","","Thoughtcast Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3377","16885","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","3","13","0","0","0","0","0","0","0","33" +"10579","-1","","","","","Explosive Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","42","-1","0","0","14","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","37" +"10580","-1","","","","","Goblin ""Boom"" Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10581","-1","","","","","Death's Head Vestment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5310","26553","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","13","12","0","0","0","0","0","0","0","35" +"10582","-1","","","","","Briar Tredders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3606","18031","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","5","9","0","0","0","0","0","0","0","31" +"10583","-1","","","","","Quillward Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6191","30956","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","8","0","0","0","0","0","0","0","0","34" +"10584","-1","","","","","Stormgale Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2905","14528","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","7","3","0","0","0","0","0","0","0","31" +"10585","-1","","","","","Goblin Radio","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10586","-1","","","","","The Big One","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10587","-1","","","","","Goblin Bomb Dispenser","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10588","-1","","","","","Goblin Rocket Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5834","29171","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10589","-1","Using this stone binds someone to aid Ysera's Dragonflight.","","","","Oathstone of Ysera's Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3374","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"10590","-1","","","","","Pocked Black Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3482","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10591","-1","","","","","Monster - Mace, Stormhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10592","-1","","","","","Catseye Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10593","-1","","","","","Imperfect Draenethyst Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10594","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","[PH] Hakkar'i Urn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10595","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","Kum'isha's Junk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10596","-1","","","","","Deprecated Rose Colored Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2067","10339","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10597","-1","","","","","Head of Magus Rimtori","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10598","-1","","","","","Hetaera's Bloodied Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10599","-1","","","","","Hetaera's Beaten Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10600","-1","","","","","Hetaera's Bruised Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10601","-1","","","","","Schematic: Bright-Eye Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10602","-1","","","","","Schematic: Deadly Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10603","-1","","","","","Schematic: Catseye Ultra Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","3300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10604","-1","","","","","Schematic: Mithril Heavy-bore Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","3300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10605","-1","","","","","Schematic: Spellpower Goggles Xtreme","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10606","-1","","","","","Schematic: Parachute Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10607","-1","","","","","Schematic: Deepdive Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","900","3600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10608","-1","","","","","Schematic: Sniper Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","202","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10609","-1","","","","","Schematic: Mithril Mechanical Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10610","-1","Blood of the Sea Queen","","","","Hetaera's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10611","-1","","","","","Monster - Axe, Horde Badass 01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10612","-1","","","","","Monster - Axe, Horde Badass 02 ","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10613","-1","","","","","Monster - Sword, Katana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10614","-1","","","","","Monster - Sword, Horde Sword Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10615","-1","","","","","Monster - Sword, Horde Sword Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10616","-1","","","","","Monster - Dagger, Curvey Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10617","-1","","","","","Monster - Dagger, Curved Bone Bloody","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10618","-1","","","","","Monster - Dagger, Tanto Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10619","-1","","","","","Monster - Dagger, Badass Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10620","-1","","","","","Thorium Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10621","-1","","","","","Runed Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3513","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"10622","-1","","","","","Kadrak's Flag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10623","-1","","","","","Winter's Bite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24748","123740","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","48","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","43" +"10624","-1","","","","","Stinging Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17249","86246","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","47","-1","0","0","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","42" +"10625","-1","","","","","Stealthblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27366","136831","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","49","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"10626","-1","","","","","Ragehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36732","183661","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","50","-1","0","0","128","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"10627","-1","","","","","Bludgeon of the Grinning Dog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26974","134870","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","47","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","42" +"10628","-1","","","","","Deathblow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29245","146225","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","48","1535","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","43" +"10629","-1","","","","","Mistwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8066","40330","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","18","0","0","0","0","0","0","0","0","45" +"10630","-1","","","","","Soulcatcher Halo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8664","43320","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","10","0","0","0","0","0","0","0","0","46" +"10631","-1","","","","","Murkwater Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6086","30433","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","4","12","0","0","0","0","0","0","0","41" +"10632","-1","","","","","Slimescale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7624","38124","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","4","4","0","0","0","0","0","0","0","44" +"10633","-1","","","","","Silvershell Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11684","58420","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","20","10","0","0","0","0","0","0","0","46" +"10634","-1","","","","","Mindseye Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10812","43250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","12","0","0","0","0","0","0","0","0","41" +"10635","-1","","","","","Painted Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10636","-1","","","","","Nomadic Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10637","-1","","","","","Brewer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"10638","-1","","","","","Long Draping Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1052","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"10639","-1","","","","","Hyacinth Mushroom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10640","-1","","","","","Webwood Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10641","-1","","","","","Moonpetal Lily","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10642","-1","","","","","Iverron's Antidote","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10643","-1","","","","","Sealed Letter to Ag'tor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10644","-1","","","","","Recipe: Goblin Rocket Fuel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","171","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10645","-1","Death or Serious Injury may result from use of this device.","","","","Gnomish Death Ray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10646","-1","","","","","Goblin Sapper Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10647","-1","","","","","Engineer's Ink","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10648","-1","","","","","Blank Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10649","-1","","","","","Nightmare Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10650","-1","","","","","Plague-Infested Quilboar Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10651","-1","","","","","Cracked Arcane Focusing Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","257","1028","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10652","-1","","","","","Will of the Mountain Giant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30308","151543","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","51","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","14","0","0","0","0","0","0","0","0","0" +"10653","-1","","","","","Trailblazer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1639","8197","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","7","0","0","0","0","0","0","0","0","0" +"10654","-1","","","","","Jutebraid Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4827","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"10655","-1","","","","","Sedgeweed Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10656","-1","","","","","Barkmail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10657","-1","","","","","Talbar Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","933","4669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","0" +"10658","-1","","","","","Quagmire Galoshes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1249","6248","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","0" +"10659","-1","","","","","Shard of the Splithooves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4662","18650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10660","-1","","","","","First Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10661","-1","","","","","Second Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10662","-1","","","","","Filled Egg of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10663","-1","","","","","Essence of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10664","-1","","","","","A Note to Magus Rimtori","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10678","-1","","","","","Magatha's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10679","-1","","","","","Andron's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10680","-1","","","","","Jes'rimon's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10681","-1","","","","","Xylem's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10682","-1","","","","","Belnistrasz's Oathstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10683","-1","","","","","Explorer's Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10684","-1","","","","","Colossal Parachute","1","1200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10685","-1","","","","","Monster - Mace2H, Kazon's Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10686","-1","","","","","Aegis of Battle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21163","105815","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","10","6","0","0","0","0","0","0","0","0","0" +"10687","-1","","","","","Empty Vial Labeled #1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10688","-1","","","","","Empty Vial Labeled #2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10689","-1","","","","","Empty Vial Labeled #3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10690","-1","","","","","Empty Vial Labeled #4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10691","-1","","","","","Filled Vial Labeled #1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10692","-1","","","","","Filled Vial Labeled #2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10693","-1","","","","","Filled Vial Labeled #3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10694","-1","","","","","Filled Vial Labeled #4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10695","-1","","","","","Box of Empty Vials","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10696","-1","Etched across the blade: Rakh'likh","","","","Enchanted Azsharite Felbane Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41890","209454","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10697","-1","Engraved upon the blade: Rakh'likh","","","","Enchanted Azsharite Felbane Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42044","210221","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","60","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10698","-1","Carved into the shaft: Rakh'likh","","","","Enchanted Azsharite Felbane Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52747","263735","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","60","-1","0","0","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10699","-1","","","","","Yeh'kinya's Bramble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10700","-1","","","","","Encarmine Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4983","24918","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","8","8","0","0","0","0","0","0","0","0" +"10701","-1","","","","","Boots of Zua'tec","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7536","37680","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","2","0","0","0","0","0","0","0","0","0" +"10702","-1","","","","","Enormous Ogre Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5379","26897","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","9","0","0","0","0","0","0","0","0","0" +"10703","-1","","","","","Fiendish Skiv","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16792","83963","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","45","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","0" +"10704","-1","","","","","Chillnail Splinter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13649","68246","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","46","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10705","-1","","","","","Firwillow Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3666","18333","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","10","0","0","0","0","0","0","0","0","0" +"10706","-1","","","","","Nightscale Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5521","27606","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","2","0","0","0","0","0","0","0","0","0" +"10707","-1","","","","","Steelsmith Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7772","38862","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","11","0","0","0","0","0","0","0","0","0" +"10708","-1","","","","","Skullspell Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8982","35930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","0","0","0","0","0","0","0","0","0","0" +"10709","-1","","","","","Pyrestone Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10953","43814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","13","0","0","0","0","0","0","0","0","0","0" +"10710","-1","","","","","Dragonclaw Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6130","24520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","10","0","0","0","0","0","0","0","0","0" +"10711","-1","","","","","Dragon's Blood Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8377","33510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","5","0","0","0","0","0","0","0","0","0" +"10712","-1","","","","","Cuely's Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10713","-1","","","","","Plans: Inlaid Mithril Cylinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10714","-1","Hot out of the oven.","","","","Crystallized Azsharite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10715","-1","","","","","Kim'Jael's Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10716","-1","","","","","Gnomish Shrink Ray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10717","-1","","","","","Kim'Jael's Compass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10718","-1","","","","","Kim'Jael's Wizzlegoober","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10719","-1","","","","","Mobile Alarm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10720","-1","","","","","Gnomish Net-o-Matic Projector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10721","-1","","","","","Gnomish Harm Prevention Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3317","16588","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","0" +"10722","-1","","","","","Kim'Jael's Stuffed Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10723","-1","","","","","Gnomish Ham Radio","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10724","-1","","","","","Gnomish Rocket Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4697","23485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10725","-1","","","","","Gnomish Battle Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10726","-1","","","","","Gnomish Mind Control Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5520","27603","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","0","0","0","0","0","0","0","0","0","0" +"10727","-1","","","","","Goblin Dragon Gun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10728","-1","","","","","Pattern: Black Swashbuckler's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10738","-1","The massive box is surprisingly light.","","","","Shipment to Galvan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10739","-1","","","","","Ring of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5292","21170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"10740","-1","","","","","Centurion Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10692","53464","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","15","0","0","0","0","0","0","0","0","0" +"10741","-1","","","","","Lordrec Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10063","50318","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","3","16","10","0","0","0","0","0","0","0","0" +"10742","-1","","","","","Dragonflight Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9589","47948","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","6","14","0","0","0","0","0","0","0","0" +"10743","-1","","","","","Drakefire Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10830","54150","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","9","15","0","0","0","0","0","0","0","0" +"10744","-1","","","","","Axe of the Ebon Drake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24159","120797","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","51","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","9","0","0","0","0","0","0","0","0","0","0" +"10745","-1","","","","","Kaylari Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8498","42492","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","10","0","0","0","0","0","0","0","0","0" +"10746","-1","","","","","Runesteel Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4549","22748","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","11","0","0","0","0","0","0","0","0","0" +"10747","-1","","","","","Teacher's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2327","11637","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","1","12","0","0","0","0","0","0","0","0","0" +"10748","-1","","","","","Wanderlust Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4380","21903","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","10","0","0","0","0","0","0","0","0","0" +"10749","-1","","","","","Avenguard Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10554","52774","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","5","25","0","0","0","0","0","0","0","0" +"10750","-1","","","","","Lifeforce Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35315","176577","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","0","0","0","0","0","0","0","0","0","0" +"10751","-1","","","","","Gemburst Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10634","53170","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","5","17","18","9","0","0","0","0","0","0","0" +"10752","-1","","","","","Emerald Encrusted Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10753","-1","Once worn by Grol the Destroyer.","","","","Amulet of Grol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10754","-1","The putrid scent of Sevine still radiates from this amulet.","","","","Amulet of Sevine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10755","-1","The only thing that remains from a once powerful sorcerer.","","","","Amulet of Allistarj","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10756","-1","","","","","Monster - Mace2H, Smite's Mighty Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10757","-1","The completed amulet of Rakh'likh.","","","","Ward of the Defiler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10758","-1","","","","","X'caliboar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20144","100723","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","42","-1","0","0","98","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","8","0","0","0","0","0","0","0","0","35" +"10759","-1","A severed and bloody horn of Razelikh the Defiler.","","","","Severed Horn of the Defiler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10760","-1","","","","","Swine Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2428","12141","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","8","0","0","0","0","0","0","0","0","34" +"10761","-1","","","","","Coldrage Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17193","85966","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","44","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","39" +"10762","-1","","","","","Robes of the Lich","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6903","34519","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","20","0","0","0","0","0","0","0","0","39" +"10763","-1","","","","","Icemetal Barbute","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5197","25989","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","7","10","0","0","0","0","0","0","0","40" +"10764","-1","","","","","Deathchill Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10434","52173","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","9","3","0","0","0","0","0","0","0","39" +"10765","-1","","","","","Bonefingers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3367","16837","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","38" +"10766","-1","","","","","Plaguerot Sprig","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9660","48304","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","40","128","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","35" +"10767","-1","","","","","Savage Boar's Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9652","48260","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","11","6","0","0","0","0","0","0","0","0","37" +"10768","-1","","","","","Boar Champion's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4541","22705","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","37" +"10769","-1","","","","","Glowing Eye of Mordresh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5277","21110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","5","0","0","0","0","0","0","0","0","36" +"10770","-1","","","","","Mordresh's Lifeless Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7835","31340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","11","5","0","0","0","0","0","0","0","0","36" +"10771","-1","","","","","Deathmage Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2910","14552","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","36" +"10772","-1","","","","","Glutton's Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12170","60853","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","36" +"10773","-1","","","","","Hakkari Urn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10774","-1","","","","","Fleshhide Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5957","29787","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","15","6","0","0","0","0","0","0","0","37" +"10775","-1","","","","","Carapace of Tuten'kash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6377","31888","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","10","8","0","0","0","0","0","0","0","40" +"10776","-1","","","","","Silky Spider Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4799","23999","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","5","0","0","0","0","0","0","0","0","35" +"10777","-1","","","","","Arachnid Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4014","20070","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","739","0","0","0","0","0","0","0","0","0","0","79","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","37" +"10778","-1","","","","","Necklace of Sanctuary","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16930","67720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10779","-1","","","","","Demon's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8807","35230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10780","-1","","","","","Mark of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","22170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","10","0","0","0","0","0","0","0","0","0" +"10781","-1","","","","","Hakkari Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15072","75360","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","4","0","0","0","0","0","0","0","0","0" +"10782","-1","","","","","Hakkari Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4539","22695","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"10783","-1","","","","","Atal'ai Spaulders","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11476","57381","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1163","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10784","-1","","","","","Atal'ai Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18432","92164","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","512","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10785","-1","","","","","Atal'ai Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13200","66003","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","573","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10786","-1","","","","","Atal'ai Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11977","59889","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","846","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10787","-1","","","","","Atal'ai Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6382","31914","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","722","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10788","-1","","","","","Atal'ai Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5338","26693","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","951","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10789","-1","","","","","Manual of Engineering Disciplines","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1271","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","5","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10790","-1","A member in good standing of the Mechanical Engineering Guild, Associated.","","","","Gnome Engineer Membership Card","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10791","-1","A member in good standing of the Goblin Experimental Engineering Korporation.","","","","Goblin Engineer Membership Card","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10792","-1","","","","","Nixx's Pledge of Secrecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10793","-1","","","","","Overspark's Pledge of Secrecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10794","-1","","","","","Oglethorpe's Pledge of Secrecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10795","-1","","","","","Drakeclaw Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","22170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","3486","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","49" +"10796","-1","","","","","Drakestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8982","35930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","49" +"10797","-1","","","","","Firebreather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35069","175347","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","53","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"10798","-1","","","","","Atal'alarion's Tusk Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6263","31319","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","302","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","8","0","0","0","0","0","0","0","0","46" +"10799","-1","","","","","Headspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39288","196442","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","51","-1","0","0","106","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","15","0","0","0","0","0","0","0","0","46" +"10800","-1","","","","","Darkwater Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7562","37812","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1079","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10801","-1","","","","","Slitherscale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11704","58520","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","5","15","0","0","0","0","0","0","0","47" +"10802","-1","","","","","Wingveil Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7831","39156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","0","0","0","0","0","0","0","0","0","47" +"10803","-1","","","","","Blade of the Wretched","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29441","147207","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","54","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10804","-1","","","","","Fist of the Damned","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29551","147758","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","54","-1","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10805","-1","","","","","Eater of the Dead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29661","148309","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","54","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10806","-1","","","","","Vestments of the Atal'ai Prophet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15146","75731","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","27","0","0","0","0","0","0","0","0","50" +"10807","-1","","","","","Kilt of the Atal'ai Prophet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15202","76012","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","18","9","4","0","0","0","0","0","0","50" +"10808","-1","","","","","Gloves of the Atal'ai Prophet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7629","38146","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","20","5","6","0","0","0","0","0","0","0","50" +"10818","-1","","","","","Yeh'kinya's Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10819","-1","","","","","Wildkin Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10820","-1","","","","","Jackseed Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","691","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"10821","-1","","","","","Sower's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"10822","-1","","","","","Dark Whelpling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10823","-1","","","","","Vanquisher's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17796","88981","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","44","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10824","-1","","","","","Amberglow Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5930","23720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","7","0","0","0","0","0","0","0","0" +"10825","-1","","","","","Monster - Sword, Red Long","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10826","-1","","","","","Staff of Lore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25501","127506","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","48","-1","0","0","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","18","0","0","0","0","0","0","0","0","0" +"10827","-1","","","","","Surveyor's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10238","51191","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","15","0","0","0","0","0","0","0","0","0" +"10828","-1","","","","","Dire Nail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","40427","202136","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","56","-1","0","5315","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"10829","-1","","","","","Dragon's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10680","42720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","15","0","0","0","0","0","0","0","0","51" +"10830","-1","","","","","M73 Frag Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10831","-1","Use to conjure a Felhound Tracker.","","","","Fel Orb","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10832","-1","Information on how to control your new Felhound Tracker.","","","","Fel Tracker Owner's Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1291","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10833","-1","","","","","Horns of Eranikus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8597","42986","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","11","27","0","0","0","0","0","0","0","0","51" +"10834","-1","FRAGILE - Handle With Care","","","","Felhound Tracker Kit","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10835","-1","","","","","Crest of Supremacy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24645","123225","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","3","5","6","7","4","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","7","7","7","6","0","0","0","0","0","51" +"10836","-1","","","","","Rod of Corrosion","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28989","144946","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","56","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","51" +"10837","-1","","","","","Tooth of Eranikus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38801","194005","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","56","-1","0","0","62","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","51" +"10838","-1","","","","","Might of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34665","173325","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","54","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","5","0","0","0","0","0","0","0","0","49" +"10839","-1","A note encased in azsharite crystal.","","","","Crystallized Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1311","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10840","-1","A note encased in azsharite crystal.","","","","Crystallized Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1313","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10841","-1","","","","","Goldthorn Tea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"10842","-1","","","","","Windscale Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17595","87976","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","10","10","7","0","0","0","0","0","0","49" +"10843","-1","","","","","Featherskin Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10595","52977","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","15","4","0","0","0","0","0","0","0","49" +"10844","-1","","","","","Spire of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44314","221570","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","54","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","16","0","0","0","0","0","0","0","0","49" +"10845","-1","","","","","Warrior's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14233","71166","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","4","0","0","0","0","0","0","0","0","49" +"10846","-1","","","","","Bloodshot Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16143","80717","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","6","5","0","0","0","0","0","0","0","49" +"10847","-1","","","","","Dragon's Call","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56921","284608","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","57","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","52" +"10858","-1","","","","","Plans: Solid Iron Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","164","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10878","-1","","","","","Monster - Sword, Horde Jagged Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10898","-1","","","","","Monster - Sword, Horde Sword Centurion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10918","-1","","","","","Wound Poison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","42","170","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"10919","-1","","","","","Apothecary Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1074","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"10920","-1","","","","","Wound Poison II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","67","270","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10921","-1","","","","","Wound Poison III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"10922","-1","","","","","Wound Poison IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"10938","-1","","","","","Lesser Magic Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","800","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10939","-1","","","","","Greater Magic Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10940","-1","","","","","Strange Dust","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10958","-1","","","","","Hilary's Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10959","-1","","","","","Demon Hide Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10978","-1","","","","","Small Glimmering Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10998","-1","","","","","Lesser Astral Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","3000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10999","-1","Etched into the face of the hammer are the letters: F.F.F.","","","","Ironfel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11000","-1","Master Key to the Depths, Courtesy of F.F.F.","","","","Shadowforge Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11018","-1","","","","","Un'Goro Soil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11019","-1","","","","","Monster - Sword, Horde Jagged Bloody","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11020","-1","","","","","Evergreen Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11021","-1","","","","","Monster - Big Sniper Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"11022","-1","","","","","Packet of Tharlendris Seeds","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11023","-1","","","","","Ancona Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11024","-1","Using Un'Goro soil, Tharlendris seeds have been cultivated inside.","","","","Evergreen Herb Casing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11025","-1","","","","","Monster - Sword, Katana 2H","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11026","-1","","","","","Tree Frog Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11027","-1","","","","","Wood Frog Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11038","-1","","","","","Formula: Enchant 2H Weapon - Lesser Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11039","-1","","","","","Formula: Enchant Cloak - Minor Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11040","-1","","","","","Morrowgrain","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11041","-1","","","","","Monster - Shield, Kite Metal Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11042","-1","","","","","Monster - Sword, Horde Jagged w/ Bolts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11058","-1","","","","","Sha'ni's Nose-Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11078","-1","","","","","Relic Coffer Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11079","-1","Gor'tesh's severed head, propped up on a pike.","","","","Gor'tesh's Lopped Off Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11080","-1","Squishy, Smelly, Slimy","","","","Gor'tesh's Lopped Off Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11081","-1","","","","","Formula: Enchant Shield - Lesser Protection","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11082","-1","","","","","Greater Astral Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","9000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11083","-1","","","","","Soul Dust","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11084","-1","","","","","Large Glimmering Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11085","-1","","","","","Customer of the Month Coffer Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11086","-1","","","","","Jang'thraze the Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27403","137016","1","1","1","1088","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","45" +"11087","-1","","","","","Monster - Sword2H, Ragglesnout X'Caliboar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11098","-1","","","","","Formula: Enchant Cloak - Lesser Shadow Resistance","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","333","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11099","-1","","","","","Dark Iron Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11101","-1","","","","","Formula: Enchant Bracer - Lesser Strength","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","333","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11102","-1","","","","","Unhatched Sprite Darter Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11103","-1","Good for twenty packs of Tharlendris seeds.","","","","Seed Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11104","-1","It always points towards the center of Ungoro Crater...","","","","Large Compass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11105","-1","","","","","Curled Map Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11106","-1","","","","","Lion-headed Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11107","-1","","","","","A Small Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11108","-1","","","","","Faded Photograph","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11109","-1","","","","","Special Chicken Feed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11110","-1","","","","","Chicken Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11111","-1","","","","","Broken Sprite Darter Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","134","536","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11112","-1","Property of Marshal Expeditions.","","","","Research Equipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11113","-1","Property of Marshal Expeditions.","","","","Crate of Foodstuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11114","-1","","","","","Dinosaur Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11115","-1","","","","","Secret Safe Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11116","-1","Property of Williden Marshal","","","","A Mangled Journal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3884","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","48" +"11118","-1","","","","","Archaedic Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10795","43180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3484","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","42" +"11119","-1","","","","","Milly's Harvest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11120","-1","","","","","Belgrom's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30144","150720","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","55","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","10","0","0","0","0","0","0","0","0","0","0" +"11121","-1","","","","","Darkwater Talwar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2941","14705","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","26","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","21" +"11122","-1","","","","","Carrot on a Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7162","28650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11123","-1","","","","","Rainstrider Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15037","75186","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","27","7","0","0","0","0","0","0","0","0" +"11124","-1","","","","","Helm of Exile","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16980","84900","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","18","11","0","0","0","0","0","0","0","0" +"11125","-1","","","","","Grape Manifest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1392","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11126","-1","Runes filled with liquid fire dance across the tablet.","","","","Tablet of Kurniya","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11127","-1","","","","","Scavenged Goods","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11128","-1","Needed by Enchanters.","","","","Golden Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11129","-1","","","","","Essence of the Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11130","-1","","","","","Runed Golden Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11131","-1","","","","","Hive Wall Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11132","-1","","","","","Unused Scraping Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11133","-1","","","","","Linken's Training Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11134","-1","","","","","Lesser Mystic Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","10000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11135","-1","","","","","Greater Mystic Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","30000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11136","-1","","","","","Linken's Tempered Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11137","-1","","","","","Vision Dust","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11138","-1","","","","","Small Glowing Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11139","-1","","","","","Large Glowing Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11140","-1","Various runes and etchings cover the surface of the key.","","","","Prison Cell Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11141","-1","","","","","Bait","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11142","-1","","","","","Broken Samophlange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11143","-1","","","","","Nugget Slug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11144","-1","Needed by Enchanters.","","","","Truesilver Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11145","-1","","","","","Runed Truesilver Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11146","-1","","","","","Broken and Battered Samophlange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11147","-1","","","","","Samophlange Manual Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11148","-1","","","","","Samophlange Manual Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11149","-1","","","","","Samophlange Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11150","-1","","","","","Formula: Enchant Gloves - Mining","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11151","-1","","","","","Formula: Enchant Gloves - Herbalism","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11152","-1","","","","","Formula: Enchant Gloves - Fishing","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11162","-1","","","","","Linken's Superior Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11163","-1","","","","","Formula: Enchant Bracer - Lesser Deflection","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","333","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11164","-1","","","","","Formula: Enchant Weapon - Lesser Beastslayer","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","333","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11165","-1","","","","","Formula: Enchant Weapon - Lesser Elemental Slayer","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","333","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11166","-1","","","","","Formula: Enchant Gloves - Skinning","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","333","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11167","-1","","","","","Formula: Enchant Boots - Lesser Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","333","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11168","-1","","","","","Formula: Enchant Shield - Lesser Block","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","333","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11169","-1","","","","","Book of Aquor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11170","-1","","","","","Deprecated Silver Totem of Aquementas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11171","-1","","","","","Fel Iron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11172","-1","","","","","Silvery Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11173","-1","","","","","Irontree Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11174","-1","","","","","Lesser Nether Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","20000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11175","-1","","","","","Greater Nether Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","60000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11176","-1","","","","","Dream Dust","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11177","-1","","","","","Small Radiant Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11178","-1","","","","","Large Radiant Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11179","-1","","","","","Golden Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11184","-1","","","","","Blue Power Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11185","-1","","","","","Green Power Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11186","-1","","","","","Red Power Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11187","-1","","","","","Stemleaf Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11188","-1","","","","","Yellow Power Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11189","-1","","","","","Woodland Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11190","-1","","","","","Viny Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11191","-1","","","","","Farmer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11192","-1","","","","","Outfitter Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11193","-1","","","","","Blazewind Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16938","84692","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","5","3","0","0","0","0","0","0","0","0" +"11194","-1","","","","","Prismscale Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20404","102024","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","4","23","0","0","0","0","0","0","0","0" +"11195","-1","","","","","Warforged Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13655","68278","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","2","0","0","0","0","0","0","0","0","0" +"11196","-1","","","","","Mindburst Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16875","67500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","6","5","0","0","0","0","0","0","0","0" +"11197","-1","","","","","Dark Keeper Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11198","-1","Etched in Gold: Ironforge","","","","Rune of Escape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11199","-1","","","","","Engineer's Shield 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11200","-1","","","","","Engineer's Shield 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11201","-1","","","","","Engineer's Shield 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11202","-1","","","","","Formula: Enchant Shield - Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","333","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11203","-1","","","","","Formula: Enchant Gloves - Advanced Mining","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","333","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11204","-1","","","","","Formula: Enchant Bracer - Greater Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","333","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11205","-1","","","","","Formula: Enchant Gloves - Advanced Herbalism","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","333","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11206","-1","","","","","Formula: Enchant Cloak - Lesser Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","333","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11207","-1","","","","","Formula: Enchant Weapon - Fiery Weapon","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11208","-1","","","","","Formula: Enchant Weapon - Demonslaying","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1350","5400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","333","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11222","-1","","","","","Head of Krom'zar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11223","-1","","","","","Formula: Enchant Bracer - Deflection","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","5800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","333","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11224","-1","","","","","Formula: Enchant Shield - Frost Resistance","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","5800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","333","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11225","-1","","","","","Formula: Enchant Bracer - Greater Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","6200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","333","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11226","-1","","","","","Formula: Enchant Gloves - Riding Skill","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","6200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","333","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11227","-1","","","","","Piece of Krom'zar's Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11228","-1","A dull and gray patch of black dragon skin","","","","Frenzied Dragonflight Molt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11229","-1","","","","","Brightscale Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1696","8481","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"11230","-1","The fiery essence of Bael'Gar wrapped tightly inside black dragonflight molt.","","","","Encased Fiery Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11231","-1","A dull and gray patch of black dragon skin","","","","Altered Black Dragonflight Molt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11242","-1","","","","","Evoroot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11243","-1","","","","","Videre Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11262","-1","","","","","Orb of Lorica","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8142","32570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","11","6","0","0","0","0","0","0","0","0","0" +"11263","-1","","","","","Nether Force Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10103","50517","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","40","128","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"11264","-1","","","","","Monster - Mace, Baron Silverlaine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11265","-1","","","","","Cragwood Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16484","82424","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","42","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","17","0","0","0","0","0","0","0","0","0","0" +"11266","-1","","","","","Fractured Elemental Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11267","-1","","","","","Elemental Shard Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11268","-1","The dark, pale skin feels like clay.","","","","Head of Argelmach","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11269","-1","","","","","Intact Elemental Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11270","-1","","","","","Nixx's Signed Pledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11282","-1","","","","","Oglethorpe's Signed Pledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11283","-1","","","","","Overspark's Signed Pledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11284","-1","","","","","Accurate Slugs","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","45","-1","0","0","13","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","40" +"11285","-1","","","","","Jagged Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","45","-1","0","0","13","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","40" +"11286","-1","Unbreakable bindings.","","","","Thorium Shackles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11287","-1","","","","","Lesser Magic Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","508","2544","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","15","-1","0","0","12","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","5" +"11288","-1","","","","","Greater Magic Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","7675","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","23","-1","0","0","22","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","13" +"11289","-1","","","","","Lesser Mystic Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3581","17905","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","31","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","26" +"11290","-1","","","","","Greater Mystic Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5263","26316","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","0","40","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","30" +"11291","-1","","","","","Star Wood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1125","4500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11302","-1","","","","","Uther's Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7130","28520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","47" +"11303","-1","","","","","Fine Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","636","3184","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","16","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","11" +"11304","-1","","","","","Fine Longbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","972","4861","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","14" +"11305","-1","","","","","Dense Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5162","25814","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","35","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","30" +"11306","-1","","","","","Sturdy Recurve","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3893","19467","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","32","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"11307","-1","","","","","Massive Longbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13590","67952","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","47","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","42" +"11308","-1","","","","","Sylvan Shortbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15765","78828","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","49","-1","0","0","32","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","44" +"11309","-1","","","","","The Heart of the Mountain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11310","-1","","","","","Flameseer Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6598","32990","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","0","0","0","0","0","0","0","0","0","42" +"11311","-1","","","","","Emberscale Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5110","25553","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","10","0","0","0","0","0","0","0","0","41" +"11312","-1","","","","","Lost Thunderbrew Recipe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11313","-1","","","","","Ribbly's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11314","-1","","","","","Monster - Claw Insect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11315","-1","","","","","Bloodpetal Sprout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11316","-1","","","","","Bloodpetal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11317","-1","","","","","Monster - Axe, 2H War C01 Blue Limited","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11318","-1","","","","","Atal'ai Haze","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11319","-1","","","","","Unloaded Zapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11320","-1","","","","","Bloodpetal Zapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11321","-1","","","","","Monster - Sword2H, Horde Massive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11322","-1","","","","","Monster - Sword2H, Horde Broad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11323","-1","","","","","Monster - Sword2H, Horde Jagged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11324","-1","","","","","Explorer's Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11325","-1","","","","","Dark Iron Ale Mug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11342","-1","","","","","Monster - Axe, 2H Pendulum of Doom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11343","-1","","","","","Monster - Staff, Jeweled Red Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11362","-1","","","","","Medium Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","10" +"11363","-1","","","","","Medium Shot Pouch","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","10" +"11364","-1","","","","","Tabard of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11365","-1","","","","","Monster - Staff, Badass Red Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11366","-1","Sealed","","","","Helendis Riverhorn's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11367","-1","","","","","Solomon's Plea to Bolvar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11368","-1","Bears the Seal of Stormwind","","","","Bolvar's Decree","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1471","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11369","-1","","","","","Monster - Mace, Thaurissan Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11370","-1","","","","","Dark Iron Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11371","-1","","","","","Dark Iron Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11382","-1","","","","","Blood of the Mountain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11383","-1","","","","","Monster - Mace, Green Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11384","-1","","","","","Broken Basilisk Teeth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11385","-1","","","","","Basilisk Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","145","580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11386","-1","","","","","Squishy Basilisk Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","676","2705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11387","-1","","","","","Basilisk Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1013","4055","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11388","-1","","","","","Basilisk Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1563","6255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11389","-1","","","","","Shimmering Basilisk Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2163","8655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11390","-1","","","","","Broken Bat Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","80","320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11391","-1","","","","","Spined Bat Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","205","820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11392","-1","","","","","Severed Bat Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","403","1612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11393","-1","","","","","Small Bat Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","780","3120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11394","-1","","","","","Bat Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","580","2320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11395","-1","","","","","Bat Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11402","-1","","","","","Sleek Bat Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1205","4820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11403","-1","","","","","Large Bat Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1592","6370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11404","-1","","","","","Evil Bat Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2080","8320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11405","-1","","","","","Giant Silver Vein","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11406","-1","","","","","Rotting Bear Carcass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11407","-1","","","","","Torn Bear Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","108","435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11408","-1","","","","","Bear Jaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","898","3595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11409","-1","","","","","Bear Flank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","503","2015","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11410","-1","","","","","Savage Bear Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","578","2315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11411","-1","","","","","Large Bear Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7420","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","28","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","23" +"11412","-1","","","","","Nagmara's Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11413","-1","","","","","Nagmara's Filled Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11414","-1","","","","","Grizzled Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1828","7315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11415","-1","","","","","Mixed Berries","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11416","-1","","","","","Delicate Ribcage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","328","1315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11417","-1","","","","","Feathery Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1204","4816","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11418","-1","","","","","Hollow Wing Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","604","2416","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11419","-1","","","","","Mysterious Unhatched Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1900","7600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11420","-1","","","","","Elegant Writing Tool","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1712","6850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11422","-1","","","","","Goblin Engineer's Renewal Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11423","-1","","","","","Gnome Engineer's Renewal Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11424","-1","","","","","Monster - Staff, Wooden Handle Spiral Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11442","-1","","","","","Stormwind Deputy Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11443","-1","","","","","Deprecated Grim Guzzler Boar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11444","-1","","","","","Grim Guzzler Boar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11445","-1","","","","","Flute of the Ancients","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11446","-1","","","","","A Crumpled Up Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4264","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"11462","-1","","","","","Discarded Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11463","-1","","","","","Undelivered Parcel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4281","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"11464","-1","-General Angerforge","","","","Marshal Windsor's Lost Information","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11465","-1","-Golem Lord Argelmach","","","","Marshal Windsor's Lost Information","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11466","-1","","","","","Raschal's Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11467","-1","","","","","Blackrock Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11468","-1","","","","","Dark Iron Fanny Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11469","-1","","","","","Bloodband Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3563","17815","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","4","3","0","0","0","0","0","0","0","0" +"11470","-1","","","","","Tablet Transcript","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11471","-1","","","","","Fragile Sprite Darter Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11472","-1","","","","","Silvermane Stalker Flank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11473","-1","","","","","PX83-Enigmatron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11474","-1","","","","","Sprite Darter Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11475","-1","","","","","Wine-stained Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11476","-1","","","","","U'cha's Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11477","-1","","","","","White Ravasaur Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11478","-1","","","","","Un'Goro Gorilla Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11479","-1","","","","","Un'Goro Stomper Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11480","-1","","","","","Un'Goro Thunderer Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11482","-1","","","","","Crystal Pylon User's Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11502","-1","","","","","Loreskin Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6510","32551","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","0" +"11503","-1","","","","","Blood Amber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11504","-1","","","","","Piece of Threshadon Carcass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11505","-1","","","","","Monster - Claw - Bear Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11506","-1","","","","","Monster - Claw Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11507","-1","","","","","Spotted Hyena Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11508","-1","","","","","Gamemaster's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11509","-1","","","","","Ravasaur Pheromone Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11510","-1","","","","","Lar'korwi's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11511","-1","This device helps identify corrupted elements of nature.","","","","Cenarion Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11512","-1","","","","","Patch of Tainted Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11513","-1","","","","","Tainted Vitriol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11514","-1","","","","","Fel Creep","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11515","-1","","","","","Corrupted Soul Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11516","-1","This druidic brew is used to cleanse corrupted plants.","","","","Cenarion Plant Salve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11522","-1","","","","","Silver Totem of Aquementas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11542","-1","","","","","Monster - Staff, Red Feathered","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11562","-1","","","","","Crystal Restore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11563","-1","","","","","Crystal Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11564","-1","","","","","Crystal Ward","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11565","-1","","","","","Crystal Yield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11566","-1","","","","","Crystal Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11567","-1","","","","","Crystal Spire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11568","-1","","","","","Torwa's Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11569","-1","","","","","Preserved Threshadon Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11570","-1","","","","","Preserved Pheromone Mixture","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11582","-1","Use on Grol, Sevine, and Allistarj to break Razelikh's Ward.","","","","Fel Salve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11583","-1","","","","","Cactus Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11584","-1","","","","","Cactus Apple Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11585","-1","","","","","Monster - Shield, Engineer A01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11586","-1","","","","","Monster - Shield, Engineer B01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11587","-1","","","","","Monster - Shield, Engineer C01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11588","-1","","","","","Monster - Staff, Jeweled D01 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11589","-1","","","","","Monster - Shield, Orange Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11590","-1","","","","","Mechanical Repair Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11591","-1","","","","","Monster - Sword2H, Battlefield Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11602","-1","","","","","Grim Guzzler Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11603","-1","","","","","Vilerend Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30656","153283","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","51","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","46" +"11604","-1","","","","","Dark Iron Plate","1","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19428","97143","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","19","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","54" +"11605","-1","","","","","Dark Iron Shoulders","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10776","53880","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","414","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","0","0","0","0","0","0","0","0","0","53" +"11606","-1","","","","","Dark Iron Mail","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19255","96279","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","51" +"11607","-1","","","","","Dark Iron Sunderer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51225","256125","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","101","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11608","-1","","","","","Dark Iron Pulverizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45760","228803","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","55","-1","0","0","140","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","50" +"11609","-1","Used to collect the fiery essence of Bael'Gar.","","","","Altered Black Dragonflight Molt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11610","-1","","","","","Plans: Dark Iron Pulverizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11611","-1","","","","","Plans: Dark Iron Sunderer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11612","-1","","","","","Plans: Dark Iron Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11613","-1","","","","","DEBUG Samophlange Manual Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11614","-1","","","","","Plans: Dark Iron Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11615","-1","","","","","Plans: Dark Iron Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11616","-1","","","","","DEBUG Samophlange Manual Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11617","-1","","","","","Eridan's Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11622","-1","","","","","Lesser Arcanum of Rumination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11623","-1","","","","","Spritecaster Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9999","49999","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","4","5","0","0","0","0","0","0","0","47" +"11624","-1","","","","","Kentic Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9079","45399","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","6","5","0","0","0","0","0","0","0","47" +"11625","-1","","","","","Enthralled Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","14","5","3","0","0","0","0","0","0","0","48" +"11626","-1","","","","","Blackveil Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9698","48493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","14","0","0","0","0","0","0","0","0","48" +"11627","-1","","","","","Fleetfoot Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14668","73344","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","5","6","0","0","0","0","0","0","0","48" +"11628","-1","","","","","Houndmaster's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24433","122167","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","48" +"11629","-1","","","","","Houndmaster's Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24527","122636","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","53","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","3","0","0","0","0","0","0","0","0","0","48" +"11630","-1","","","","","Rockshard Pellets","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","18","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","47" +"11631","-1","","","","","Stoneshell Guard","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19893","99468","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1803","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","9","0","0","0","0","0","0","0","0","47" +"11632","-1","","","","","Earthslag Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9360","46802","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","8","8","0","0","0","0","0","0","0","47" +"11633","-1","","","","","Spiderfang Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14076","70380","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","14","13","0","0","0","0","0","0","0","49" +"11634","-1","","","","","Silkweb Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7063","35319","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","13","0","0","0","0","0","0","0","0","49" +"11635","-1","","","","","Hookfang Shanker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","35451","177256","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","54","-1","0","0","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","49" +"11642","-1","","","","","Lesser Arcanum of Constitution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11643","-1","","","","","Lesser Arcanum of Tenacity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11644","-1","","","","","Lesser Arcanum of Resilience","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11645","-1","","","","","Lesser Arcanum of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11646","-1","","","","","Lesser Arcanum of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11647","-1","","","","","Lesser Arcanum of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11648","-1","","","","","Lesser Arcanum of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11649","-1","","","","","Lesser Arcanum of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11662","-1","","","","","Ban'thok Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7462","37313","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","49" +"11663","-1","","","","","[PH] Greater Arcane Amalgamation (MANA/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11664","-1","","","","","[PH] Greater Arcane Amalgamation (HP/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11665","-1","","","","","Ogreseer Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8532","42661","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","8","0","0","0","0","0","0","0","49" +"11666","-1","","","","","[PH] Greater Arcane Amalgamation (AC/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11667","-1","","","","","[PH] Greater Arcane Amalgamation (STR/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11668","-1","","","","","Flute of Xavaric","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","939","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"11669","-1","","","","","Naglering","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17157","68630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"11670","-1","","","","","[PH] Greater Arcane Amalgamation (STA/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11671","-1","","","","","[PH] Greater Arcane Amalgamation (AGI/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11672","-1","","","","","[PH] Greater Arcane Amalgamation (SPI/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11673","-1","","","","","[PH] Greater Arcane Amalgamation (INT/FR)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11674","-1","","","","","Jadefire Felbind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11675","-1","","","","","Shadefiend Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14464","72320","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","13","11","0","0","0","0","0","0","0","50" +"11676","-1","","","","","[PH] Legendary Arcane Amalgamation (Melee)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"11677","-1","","","","","Graverot Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11655","58276","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","6","0","0","0","0","0","0","0","0","50" +"11678","-1","","","","","Carapace of Anub'shiah","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15596","77981","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","11","11","0","0","0","0","0","0","0","50" +"11679","-1","","","","","Rubicund Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11738","58691","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","50" +"11682","-1","","","","","Eridan's Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11683","-1","","","","","[PH] Legendary Arcane Amalgamation (Caster)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"11684","-1","","","","","Ironfoe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63086","315430","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","55" +"11685","-1","","","","","Splinthide Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13941","69706","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","10","10","0","0","0","0","0","0","0","50" +"11686","-1","","","","","Girdle of Beastial Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9329","46645","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","50" +"11702","-1","","","","","Grizzle's Skinner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36752","183763","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","55","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","5","6","0","0","0","0","0","0","0","50" +"11703","-1","","","","","Stonewall Girdle","1","0","160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7378","36892","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","50" +"11722","-1","","","","","Dregmetal Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16610","83052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","4","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","6","5","15","0","0","0","0","0","0","50" +"11723","-1","","","","","Goodsteel's Balanced Flameberge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11724","-1","To: Krinkle Goodsteel, Tanaris","","","","Overdue Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11725","-1","","","","","Solid Crystal Leg Shaft","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11726","-1","","","","","Savage Gladiator Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33533","167666","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","13","14","13","0","0","0","0","0","0","0","52" +"11727","-1","","","","","Goodsteel Ledger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1551","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11728","-1","","","","","Savage Gladiator Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25336","126682","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","18","12","0","0","0","0","0","0","0","52" +"11729","-1","","","","","Savage Gladiator Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19073","95365","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","28","12","0","0","0","0","0","0","0","0","52" +"11730","-1","","","","","Savage Gladiator Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12762","63813","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","12","14","5","0","0","0","0","0","0","52" +"11731","-1","","","","","Savage Gladiator Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19300","96501","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","13","0","0","0","0","0","0","0","52" +"11732","-1","Dark runes skitter across the surface.","","","","Libram of Rumination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11733","-1","Dark runes skitter across the surface.","","","","Libram of Constitution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1631","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11734","-1","Dark runes skitter across the surface.","","","","Libram of Tenacity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1633","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11735","-1","","","","","Ragefury Eyepatch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16669","83349","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","6","0","0","0","0","0","0","0","0","52" +"11736","-1","Dark runes skitter across the surface.","","","","Libram of Resilience","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1632","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11737","-1","Dark runes skitter across the surface.","","","","Libram of Voracity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1634","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11742","-1","","","","","Wayfarer's Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11743","-1","","","","","Rockfist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30734","153672","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","55","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","10","0","0","0","0","0","0","0","0","0","50" +"11744","-1","","","","","Bloodfist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39242","196213","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","56","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11745","-1","","","","","Fists of Phalanx","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7878","39391","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","20","9","0","0","0","0","0","0","0","0","51" +"11746","-1","","","","","Golem Skull Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11861","59309","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","18","0","0","0","0","0","0","0","0","51" +"11747","-1","","","","","Flamestrider Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16659","83299","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","16","5","6","0","0","0","0","0","0","0","48" +"11748","-1","","","","","Pyric Caduceus","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25083","125416","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","48" +"11749","-1","","","","","Searingscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20141","100708","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","277","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","13","13","13","0","0","0","0","0","0","48" +"11750","-1","","","","","Kindling Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43234","216172","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","10","12","0","0","0","0","0","0","0","48" +"11751","-1","The smoldering remains of something...","","","","Burning Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11752","-1","The putrid scent of burned blood assaults your senses.","","","","Black Blood of the Tormented","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11753","-1","The pupil tracks your every move.","","","","Eye of Kajal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11754","-1","","","","","Black Diamond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11755","-1","","","","","Verek's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14627","58510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","7","0","0","0","0","0","0","0","0","51" +"11762","-1","","","","","Monster - Axe, Hatchet Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11763","-1","","","","","Monster - Axe, Hatchet Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11764","-1","","","","","Cinderhide Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10398","51990","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1080","0","0","0","0","0","0","0","0","0","0","71","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11765","-1","","","","","Pyremail Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12525","62625","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1101","0","0","0","0","0","0","0","0","0","0","148","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11766","-1","","","","","Flameweave Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8606","43031","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11767","-1","","","","","Emberplate Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8637","43188","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1122","0","0","0","0","0","0","0","0","0","0","261","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11768","-1","","","","","Incendic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7224","36121","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","14","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","52" +"11782","-1","","","","","Boreal Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12720","63602","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","8","5","0","0","0","0","0","0","0","0","52" +"11783","-1","","","","","Chillsteel Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12767","63838","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","20","7","0","0","0","0","0","0","0","0","52" +"11784","-1","","","","","Arbiter's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33835","169178","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","8","0","0","0","0","0","0","0","0","48" +"11785","-1","","","","","Rock Golem Bulwark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29083","145415","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","1994","0","0","10","0","0","10","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","53" +"11786","-1","","","","","Stone of the Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50739","253699","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","51" +"11787","-1","","","","","Shalehusk Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13732","68664","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","0","0","0","0","0","0","0","0","0","53" +"11802","-1","","","","","Lavacrest Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17976","89883","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","53" +"11803","-1","","","","","Force of Magma","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50177","250889","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","0","0","0","0","0","0","0","0","0","51" +"11804","-1","","","","","Spraggle's Canteen","1","1500","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11805","-1","","","","","Rubidium Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40439","202196","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","56","-1","0","0","51","0","0","0","0","96","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","51" +"11807","-1","","","","","Sash of the Burning Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9153","45767","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","10","10","0","0","0","0","0","0","0","53" +"11808","-1","","","","","Circle of Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19292","96461","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","0","0","0","0","0","0","0","0","0","54" +"11809","-1","","","","","Flame Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51287","256435","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","56","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11810","-1","","","","","Force of Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"11811","-1","","","","","Smoking Heart of the Mountain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","7","7","7","7","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","50" +"11812","-1","","","","","Cape of the Fire Salamander","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13979","69895","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","9","0","0","0","0","0","0","0","0","53" +"11813","-1","","","","","Formula: Smoking Heart of the Mountain","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11814","-1","","","","","Molten Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13083","65415","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","11","10","0","0","0","0","0","0","0","53" +"11815","-1","","","","","Hand of Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"11816","-1","","","","","Angerforge's Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48882","244414","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","11","0","0","0","0","0","0","0","0","51" +"11817","-1","","","","","Lord General's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39254","196273","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11818","-1","","","","","Grimesilt Outhouse Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4451","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","43" +"11819","-1","","","","","Second Wind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","54" +"11820","-1","","","","","Royal Decorated Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26761","133809","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","26","12","0","0","0","0","0","0","0","53" +"11821","-1","","","","","Warstrife Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22384","111924","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","12","6","0","0","0","0","0","0","0","53" +"11822","-1","","","","","Omnicast Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14153","70768","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","6","0","0","0","0","0","0","0","0","54" +"11823","-1","","","","","Luminary Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23677","118385","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","8","8","0","0","0","0","0","0","0","54" +"11824","-1","","","","","Cyclopean Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13657","54630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","4","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","7","8","0","0","0","0","0","0","49" +"11825","-1","","","","","Pet Bombling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11826","-1","","","","","Lil' Smoky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11827","-1","","","","","Schematic: Lil' Smoky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11828","-1","","","","","Schematic: Pet Bombling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11829","-1","","","","","Un'Goro Ash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11830","-1","","","","","Webbed Diemetradon Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11831","-1","","","","","Webbed Pterrordax Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11832","-1","","","","","Burst of Knowledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"11833","-1","","","","","Gorishi Queen Lure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11834","-1","","","","","Super Sticky Tar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11835","-1","","","","","Gorishi Queen Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11837","-1","","","","","Gorishi Scent Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11838","-1","","","","","Monster - Trident, Flame Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11839","-1","","","","","Chief Architect's Monocle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11191","55958","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","27","3","10","0","0","0","0","0","0","0","50" +"11840","-1","","","","","Master Builder's Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7137","28550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11841","-1","","","","","Senior Designer's Pantaloons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15032","75164","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","8","7","0","0","0","0","0","0","0","50" +"11842","-1","","","","","Lead Surveyor's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17050","85252","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","8","0","0","0","0","0","0","0","0","50" +"11843","-1","","","","","Bank Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11844","-1","","","","","Pestlezugg's Un'Goro Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11845","-1","","","","","Handmade Leather Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11846","-1","","","","","Wizbang's Special Brew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11847","-1","","","","","Battered Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11848","-1","","","","","Flax Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11849","-1","","","","","Rustmetal Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11850","-1","","","","","Short Duskbat Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11851","-1","","","","","Scavenger Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11852","-1","","","","","Roamer's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","71","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11853","-1","","","","","Rambling Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","388","1941","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","3","0","0","0","0","0","0","0","0","0" +"11854","-1","","","","","Samophlange Screwdriver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1494","7472","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","19","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"11855","-1","","","","","Tork Wrench","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","782","3130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","0" +"11856","-1","","","","","Ceremonial Elven Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15775","78876","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","33","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","6","0","0","0","0","0","0","0","0","0" +"11857","-1","","","","","Sanctimonial Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21377","106888","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","46","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","17","0","0","0","0","0","0","0","0","0" +"11858","-1","","","","","Battlehard Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4768","23842","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","0" +"11859","-1","","","","","Jademoon Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7135","28540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","4","8","0","0","0","0","0","0","0","0" +"11860","-1","","","","","Charged Lightning Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12970","64854","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","46","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11861","-1","","","","","Girdle of Reprisal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5207","26039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","0","0","0","0","0","0","0","0","0","0" +"11862","-1","","","","","White Bone Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7042","28170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11863","-1","","","","","White Bone Shredder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27191","135957","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","52","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","2","0","4","7","0","0","0","0","0","0","0","0","0" +"11864","-1","","","","","White Bone Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34108","170542","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","52","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","3","0","0","0","0","0","0","0","0","0" +"11865","-1","","","","","Rancor Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8708","43541","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","11","0","0","0","0","0","0","0","0","0" +"11866","-1","","","","","Nagmara's Whipping Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9819","49098","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","14","8","0","0","0","0","0","0","0","0" +"11867","-1","","","","","Maddening Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8769","43848","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","5","0","0","0","0","0","0","0","0","0" +"11868","-1","","","","","Choking Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6542","26170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","0","0","0","0","0","0","0","0","0","0" +"11869","-1","","","","","Sha'ni's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6542","26170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"11870","-1","","","","","Oblivion Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10287","41150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","11","0","0","0","0","0","0","0","0","0" +"11871","-1","","","","","Snarkshaw Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10666","53331","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","0" +"11872","-1","","","","","Eschewal Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8566","42830","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"11873","-1","","","","","Ethereal Mist Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9661","48309","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","0" +"11874","-1","","","","","Clouddrift Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12124","60620","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11875","-1","","","","","Breezecloud Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5776","28881","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","0","0","0","0","0","0","0","0","0" +"11876","-1","","","","","Plainstalker Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16287","81437","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","4","0","0","0","0","0","0","0","0","0" +"11882","-1","","","","","Outrider Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20520","102603","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","16","0","0","0","0","0","0","0","0","0" +"11883","-1","","","","","A Dingy Fanny Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11884","-1","","","","","Moonlit Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1846","9231","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","0" +"11885","-1","","","","","Shadowforge Torch","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","2846","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11886","-1","","","","","Urgent Message","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1711","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11887","-1","","","","","Cenarion Circle Cache","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11888","-1","","","","","Quintis' Research Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4879","24398","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"11889","-1","","","","","Bark Iron Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7345","36728","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","8","0","0","0","0","0","0","0","0" +"11902","-1","","","","","Linken's Sword of Mastery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34194","170973","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","56","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11903","-1","","","","","Cat Carrier (Corrupted Kitten)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11904","-1","","","","","Spirit of Aquementas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13815","55260","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11905","-1","","","","","Linken's Boomerang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6203","24813","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11906","-1","","","","","Beastsmasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32723","163615","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11907","-1","","","","","Beastslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41050","205250","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","55","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11908","-1","","","","","Archaeologist's Quarry Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9886","49434","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","9","0","0","0","0","0","0","0","0" +"11909","-1","","","","","Excavator's Utility Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8267","41337","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","16","0","0","0","0","0","0","0","0","0" +"11910","-1","","","","","Bejeweled Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12345","61727","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","8","0","0","0","0","0","0","0","0","0" +"11911","-1","","","","","Treetop Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12392","61960","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","8","18","0","0","0","0","0","0","0","0" +"11912","-1","","","","","Package of Empty Ooze Containers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11913","-1","","","","","Clayridge Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14044","70224","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"11914","-1","","","","","Empty Cursed Ooze Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11915","-1","","","","","Shizzle's Drizzle Blocker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20124","100623","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","13","1","0","0","0","0","0","0","0","0","0" +"11916","-1","","","","","Shizzle's Muzzle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11834","59171","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","12","0","0","0","0","0","0","0","0" +"11917","-1","","","","","Shizzle's Nozzle Wiper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6334","31674","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","3","0","0","0","0","0","0","0","0" +"11918","-1","","","","","Grotslab Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9537","47687","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11919","-1","","","","","Cragplate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9572","47862","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11920","-1","","","","","Wraith Scythe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40732","203663","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","56","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11921","-1","","","","","Impervious Giant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54167","270836","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","105","0","0","0","0","159","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11922","-1","","","","","Blood-etched Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43491","217457","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","0","0","0","0","0","0","0","0","0","52" +"11923","-1","","","","","The Hammer of Grace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43648","218244","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11924","-1","","","","","Robes of the Royal Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20475","102378","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","12","19","0","0","0","0","0","0","0","55" +"11925","-1","","","","","Ghostshroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16484","82423","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","12","0","0","0","0","0","0","0","52" +"11926","-1","","","","","Deathdealer Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24590","122952","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","8","0","0","0","0","0","0","0","0","52" +"11927","-1","","","","","Legplates of the Eternal Guardian","1","0","220","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16456","82283","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11928","-1","","","","","Thaurissan's Royal Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","10","5","5","0","0","0","0","0","0","0","55" +"11929","-1","","","","","Haunting Specter Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16581","82905","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","52" +"11930","-1","","","","","The Emperor's New Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14588","72941","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","7","0","0","0","0","0","0","0","0","55" +"11931","-1","","","","","Dreadforge Retaliator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58103","290516","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","59","-1","0","0","149","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"11932","-1","","","","","Guiding Stave of Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58322","291612","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","59","-1","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","11","0","0","0","0","0","0","0","0","54" +"11933","-1","","","","","Imperial Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","78585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","55" +"11934","-1","","","","","Emperor's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19921","79685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","6","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","55" +"11935","-1","","","","","Magmus Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13162","52650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","7","0","0","0","0","0","0","0","0","53" +"11936","-1","","","","","Relic Hunter Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","284","1421","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","2","0","0","0","0","0","0","0","0" +"11937","-1","","","","","Fat Sack of Coins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","749","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11938","-1","","","","","Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11939","-1","","","","","Shiny Bracelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","671","2684","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11940","-1","","","","","Sparkly Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","389","1558","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11941","-1","","","","","False Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5896","23584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11942","-1","","","","","Legal Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5303","21215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11943","-1","","","","","Deed to Thandol Span","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21485","85941","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11944","-1","","","","","Dark Iron Baby Booties","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8821","35284","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11945","-1","","","","","Dark Iron Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6592","26370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","3484","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","48" +"11946","-1","","","","","Fire Opal Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7912","31650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","3513","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","47" +"11947","-1","","","","","Filled Cursed Ooze Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11948","-1","","","","","Empty Tainted Ooze Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11949","-1","","","","","Filled Tainted Ooze Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11950","-1","","","","","Windblossom Berries","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11951","-1","","","","","Whipper Root Tuber","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11952","-1","","","","","Night Dragon's Breath","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11953","-1","","","","","Empty Pure Sample Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11954","-1","","","","","Filled Pure Sample Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11955","-1","","","","","Bag of Empty Ooze Containers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11962","-1","","","","","Manacle Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7939","39699","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","15","0","0","0","0","0","0","0","0","0" +"11963","-1","","","","","Penance Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10025","50128","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","8","7","0","0","0","0","0","0","0","0" +"11964","-1","","","","","Swiftstrike Cudgel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30156","150783","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","55","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11965","-1","","","","","Quartz Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","1858","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","3295","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","15" +"11966","-1","","","","","Small Sack of Coins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164","658","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11967","-1","","","","","Zircon Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1087","4351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","3296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","18" +"11968","-1","","","","","Amber Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","997","3988","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3297","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"11969","-1","","","","","Jacinth Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1721","6887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","3298","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","24" +"11970","-1","","","","","Spinel Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","6841","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","3300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","29" +"11971","-1","","","","","Amethyst Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3969","15876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3301","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"11972","-1","","","","","Carnelian Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18597","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","3302","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","35" +"11973","-1","","","","","Hematite Link","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3971","15887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","3303","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","38" +"11974","-1","","","","","Aquamarine Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3304","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"11975","-1","","","","","Topaz Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4739","18958","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","3305","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","44" +"11976","-1","","","","","Sardonyx Knuckle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7778","31112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","3306","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","47" +"11977","-1","","","","","Serpentine Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7896","31587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3307","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11978","-1","","","","","Jasper Link","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7414","29658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","53" +"11979","-1","","","","","Peridot Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7471","29885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3309","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","56" +"11980","-1","","","","","Opal Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10539","42158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","3310","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"11981","-1","","","","","Lead Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","1985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","3241","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","15" +"11982","-1","","","","","Viridian Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1062","4251","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","3242","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","18" +"11983","-1","","","","","Chrome Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4521","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3243","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"11984","-1","","","","","Cobalt Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2189","8756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","3244","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","24" +"11985","-1","","","","","Cerulean Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2144","8576","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3246","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","30" +"11986","-1","","","","","Thallium Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1745","6981","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","3247","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","34" +"11987","-1","","","","","Iridium Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2885","11543","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","3249","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","38" +"11988","-1","","","","","Tellurium Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7113","28455","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3250","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","42" +"11989","-1","","","","","Vanadium Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7471","29887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","3251","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","46" +"11990","-1","","","","","Selenium Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8306","33225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3253","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11991","-1","","","","","Quicksilver Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6317","25268","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","3254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","54" +"11992","-1","","","","","Vermilion Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7396","29585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","3255","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"11993","-1","","","","","Clay Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","874","3498","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","3259","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","17" +"11994","-1","","","","","Coral Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","5251","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","3260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"11995","-1","","","","","Ivory Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","914","3658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","3261","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","23" +"11996","-1","","","","","Basalt Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1713","6854","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","3263","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","29" +"11997","-1","","","","","Greenstone Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6469","25876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","3264","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","33" +"11998","-1","","","","","Jet Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2896","11587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","3265","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","37" +"11999","-1","","","","","Lodestone Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5538","22155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3267","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"12000","-1","","","","","Limb Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41053","205269","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","55","-1","0","0","82","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","6","0","0","0","0","0","0","0","0","0" +"12001","-1","","","","","Onyx Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","3268","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12002","-1","","","","","Marble Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6322","25289","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","3269","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12003","-1","","","","","Dark Dwarven Lager","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12004","-1","","","","","Obsidian Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9163","36652","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3271","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12005","-1","","","","","Granite Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8813","35254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12006","-1","","","","","Meadow Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2123","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","17" +"12007","-1","","","","","Prairie Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2124","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"12008","-1","","","","","Savannah Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","3581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","23" +"12009","-1","","","","","Tundra Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2174","8698","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2126","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","28" +"12010","-1","","","","","Fen Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2469","9876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"12011","-1","","","","","Forest Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18599","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2129","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","36" +"12012","-1","","","","","Marsh Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","9853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","40" +"12013","-1","","","","","Desert Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18599","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","2132","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","44" +"12014","-1","","","","","Arctic Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6289","25158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2133","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","48" +"12015","-1","","","","","Swamp Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8811","35245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12016","-1","","","","","Jungle Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7781","31125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","2136","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12017","-1","","","","","Prismatic Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8963","35853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3461","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"12018","-1","","","","","Conservator Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13842","69211","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"12019","-1","","","","","Cerulean Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","16881","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2030","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","27" +"12020","-1","","","","","Thallium Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3969","15878","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2036","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","31" +"12021","-1","","","","","Shieldplate Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9327","46636","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","11","0","0","0","0","0","0","0","0","0" +"12022","-1","","","","","Iridium Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4718","18875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2048","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","36" +"12023","-1","","","","","Tellurium Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2054","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","40" +"12024","-1","","","","","Vanadium Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2066","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12025","-1","","","","","Selenium Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5282","21130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2072","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12026","-1","","","","","Quicksilver Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7757","31030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2084","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","54" +"12027","-1","","","","","Vermilion Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6257","25030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","2090","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"12028","-1","","","","","Basalt Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4007","16030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","3281","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","27" +"12029","-1","","","","","Greenstone Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3282","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"12030","-1","","","","","Jet Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7143","28574","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","3283","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12031","-1","","","","","Lodestone Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7894","31578","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","3285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","39" +"12032","-1","","","","","Onyx Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","3286","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","43" +"12033","-1","","","","","Thaurissan Family Jewels","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12034","-1","","","","","Marble Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5012","20050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","3288","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","48" +"12035","-1","","","","","Obsidian Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5513","22053","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","3289","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12036","-1","","","","","Granite Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5982","23930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3291","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12037","-1","","","","","Mystery Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12038","-1","","","","","Lagrave's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9092","36370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","7","7","0","0","0","0","0","0","0","0" +"12039","-1","","","","","Tundra Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4224","16899","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","3539","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","28" +"12040","-1","","","","","Forest Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4164","16658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","3541","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","33" +"12041","-1","","","","","Windshear Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14446","72233","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","14","16","0","0","0","0","0","0","0","0" +"12042","-1","","","","","Marsh Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4749","18997","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","3542","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","37" +"12043","-1","","","","","Desert Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3544","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","42" +"12044","-1","","","","","Arctic Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5145","20581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","3545","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","46" +"12045","-1","","","","","Swamp Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7767","31068","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","3547","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12046","-1","","","","","Jungle Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5757","23030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3548","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12047","-1","","","","","Spectral Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4996","19987","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3463","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","25" +"12048","-1","","","","","Prismatic Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6507","26030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3462","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"12049","-1","","","","","Splintsteel Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16850","84251","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","12","12","0","0","0","0","0","0","0","0" +"12050","-1","","","","","Hazecover Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8963","44818","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","4","0","0","0","0","0","0","0","0" +"12051","-1","","","","","Brazen Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8996","44983","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","2","12","0","0","0","0","0","0","0","0" +"12052","-1","","","","","Ring of the Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","16" +"12053","-1","","","","","Volcanic Rock Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","16" +"12054","-1","","","","","Demon Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","2","2","0","0","0","0","0","0","0","19" +"12055","-1","","","","","Stardust Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","5","3","0","0","0","0","0","0","0","47" +"12056","-1","","","","","Ring of the Heavens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","3","0","0","0","0","0","0","0","0","51" +"12057","-1","","","","","Dragonscale Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","4","0","0","0","0","0","0","0","0","55" +"12058","-1","","","","","Demonic Bone Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8376","33505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","5","5","0","0","0","0","0","0","0","59" +"12059","-1","","","","","Conqueror's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12377","49510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","10","5","4","0","0","0","0","0","0","0" +"12060","-1","","","","","Shindrell's Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12061","-1","","","","","Blade of Reckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40212","201060","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12062","-1","","","","","Skilled Fighting Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40365","201827","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","60","-1","0","0","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12063","-1","","","","","Monster - Trident, Wicked","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"12064","-1","","","","","Gamemaster Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12065","-1","","","","","Ward of the Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7953","31813","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","8","8","8","8","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12066","-1","","","","","Shaleskin Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11149","55747","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","6","0","0","0","0","0","0","0","0","0" +"12082","-1","","","","","Wyrmhide Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13726","68634","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12083","-1","","","","","Valconian Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7348","36743","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","17","0","0","0","0","0","0","0","0","0" +"12102","-1","","","","","Ring of the Aristocrat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9042","36170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"12103","-1","","","","","Star of Mystaria","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","9","9","0","0","0","0","0","0","0","58" +"12104","-1","","","","","Brindlethorn Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20879","104395","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","0" +"12105","-1","","","","","Pridemail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25144","125722","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","0" +"12106","-1","","","","","Boulderskin Breastplate","1","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16824","84121","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","0" +"12107","-1","","","","","Whispersilk Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16885","84428","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","0","0","0","0","0","0","0","0","0","0" +"12108","-1","","","","","Basaltscale Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23054","115274","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","10","0","0","0","0","0","0","0","0","0" +"12109","-1","","","","","Azure Moon Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11569","57845","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","15","0","0","0","0","0","0","0","0","0" +"12110","-1","","","","","Raincaster Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11610","58054","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","0" +"12111","-1","","","","","Lavaplate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7768","38841","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","5","0","0","0","0","0","0","0","0","0" +"12112","-1","","","","","Crypt Demon Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10406","52034","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","0","0","0","0","0","0","0","0","0","0" +"12113","-1","","","","","Sunborne Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10443","52219","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"12114","-1","","","","","Nightfall Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8734","43671","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","0" +"12115","-1","","","","","Stalwart Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7012","35060","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","0","0","0","0","0","0","0","0","0","0" +"12122","-1","A chest full of ""junk""","","","","Kum'isha's Junk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12142","-1","","","","","Monster - Sword, Thick/Fat Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12143","-1","","","","","Dragonspine Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12144","-1","","","","","Eggscilloscope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12162","-1","","","","","Plans: Hardened Iron Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12163","-1","","","","","Plans: Moonsteel Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","164","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12164","-1","","","","","Plans: Massive Iron Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12182","-1","","","","","Monster - Staff of Jordan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12183","-1","","","","","Monster - Mace, Thrall's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12184","-1","","","","","Raptor Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12185","-1","","","","","Bloodsail Admiral's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12895","64478","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","25","0","0","0","0","0","0","0","0","0","0" +"12186","-1","","","","","Drakefire Amulet (OLD) (UNUSED)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12187","-1","","","","","Test Defense Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10390","51950","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"12188","-1","","","","","Test Armor Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10425","52129","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"12189","-1","","","","","Test Strength Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9466","47334","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12190","-1","","","","","Dreamless Sleep Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12191","-1","","","","","Silver Dawning's Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12192","-1","","","","","Mist Veil's Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12202","-1","","","","","Tiger Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12203","-1","","","","","Red Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12204","-1","","","","","Heavy Kodo Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12205","-1","","","","","White Spider Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12206","-1","","","","","Tender Crab Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12207","-1","","","","","Giant Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12208","-1","","","","","Tender Wolf Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12209","-1","","","","","Lean Wolf Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"12210","-1","","","","","Roast Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12211","-1","","","","","Spiced Wolf Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12212","-1","","","","","Jungle Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12213","-1","","","","","Carrion Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12214","-1","","","","","Mystery Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12215","-1","","","","","Heavy Kodo Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12216","-1","","","","","Spiced Chili Crab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"12217","-1","","","","","Dragonbreath Chili","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12218","-1","","","","","Monster Omelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"12219","-1","Three empty sockets cover the face.","","","","Unadorned Seal of Ascension","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12220","-1","","","","","Intact Elemental Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12223","-1","","","","","Meaty Bat Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12224","-1","","","","","Crispy Bat Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12225","-1","","","","","Blump Family Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","939","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","1","356","10","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12226","-1","","","","","Recipe: Crispy Bat Wing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12227","-1","","","","","Recipe: Lean Wolf Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12228","-1","","","","","Recipe: Roast Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12229","-1","","","","","Recipe: Hot Wolf Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12230","-1","","","","","Felwood Slime Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12231","-1","","","","","Recipe: Jungle Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12232","-1","","","","","Recipe: Carrion Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12233","-1","","","","","Recipe: Mystery Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12234","-1","","","","","Corrupted Felwood Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12235","-1","","","","","Un'Goro Slime Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12236","-1","","","","","Pure Un'Goro Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12237","-1","","","","","Fine Crab Chunks","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12238","-1","","","","","Darkshore Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"12239","-1","","","","","Recipe: Dragonbreath Chili","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12240","-1","","","","","Recipe: Heavy Kodo Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12241","-1","","","","","Collected Dragon Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12242","-1","","","","","Sea Creature Bones","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12243","-1","","","","","Smoldering Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45980","229901","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","54","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","49" +"12244","-1","","","","","Test Agility Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12245","-1","","","","","Test Spirit Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12247","-1","","","","","Broad Bladed Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5674","28372","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","32","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","27" +"12248","-1","","","","","Daring Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6405","32029","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","29" +"12249","-1","","","","","Merciless Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6039","30195","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","54","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","0","0","0","0","0","0","0","0","0","26" +"12250","-1","","","","","Midnight Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8068","40341","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","34","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","29" +"12251","-1","","","","","Big Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10779","53896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","37","1535","0","0","61","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","0","0","0","0","0","0","0","0","0","32" +"12252","-1","","","","","Staff of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12619","63095","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","39","1535","0","0","66","0","0","0","0","100","0","0","0","0","100","0","6","6","6","6","6","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12253","-1","","","","","Brilliant Red Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3545","17728","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","36" +"12254","-1","","","","","Well Oiled Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4483","22416","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","39" +"12255","-1","","","","","Pale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6997","34987","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"12256","-1","","","","","Cindercloth Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8765","43828","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","0","0","0","0","0","0","0","0","0","44" +"12257","-1","","","","","Heavy Notched Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3885","19429","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","10","0","0","0","0","0","0","0","0","37" +"12258","-1","","","","","Serpent Clasp Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4549","22747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"12259","-1","","","","","Glinting Steel Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8072","40363","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"12260","-1","","","","","Searing Golden Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10395","51977","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","39","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12261","-1","","","","","Plans: Searing Golden Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12262","-1","","","","","Empty Worg Pup Cage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12263","-1","The cage rattles and shakes.","","","","Caged Worg Pup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12264","-1","","","","","Worg Carrier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12282","-1","","","","","Worn Battleaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","43","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12283","-1","","","","","Broodling Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12284","-1","","","","","Draco-Incarcinatrix 900","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12285","-1","","","","","Monster - Axe, 2H Rev. Bearded Single Bladed - Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12286","-1","","","","","Eggscilloscope Prototype","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12287","-1","","","","","Collectronic Module","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12288","-1","","","","","Encased Corrupt Ooze","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12289","-1","","","","","Sea Turtle Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12290","-1","","","","","Monster - Axe, Horde Badass Copper 01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12291","-1","","","","","Merged Ooze Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12292","-1","","","","","Strangely Marked Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12293","-1","","","","","Fine Gold Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12294","-1","","","","","Monster - Axe, 2H Horde Green War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12295","-1","","","","","Leggings of the People's Militia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","282","1413","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","0" +"12296","-1","","","","","Spark of the People's Militia","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3612","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","17","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12297","-1","","","","","Monster - Sword, Horde Jagged Brown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12298","-1","","","","","Monster - Dagger, Dark Pronged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12299","-1","","","","","Netted Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12300","-1","","","","","Orb of Draconic Energy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12301","-1","","","","","Bamboo Cage Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12302","1101","","","","","Reins of the Frostsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12303","1101","","","","","Reins of the Nightsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12304","-1","","","","","Monster - Sword, Horde Broad Pointed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12322","-1","","","","","Monster - Staff, Green Feathered","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"12323","-1","","","","","Unforged Seal of Ascension","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12324","-1","","","","","Forged Seal of Ascension","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12325","1101","","","","","Reins of the Primal Leopard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"12326","1101","","","","","Reins of the Tawny Sabercat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"12327","1101","","","","","Reins of the Golden Sabercat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"12328","-1","","","","","Monster - Staff, 3 Piece Taped Staff Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12329","-1","","","","","Monster - Staff, Crooked Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12330","690","","","","","Horn of the Red Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12331","-1","","","","","Monster - Sword2H, Horde Massive Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12332","-1","","","","","Monster - Dagger, Green Pronged","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12334","-1","","","","","Frostmaul Shards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12335","-1","","","","","Gemstone of Smolderthorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12336","-1","","","","","Gemstone of Spirestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12337","-1","","","","","Gemstone of Bloodaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12338","-1","","","","","Monster - Polearm, Rend Blackhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12339","-1","","","","","Vaelan's Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12341","-1","","","","","Blackwood Fruit Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12342","-1","","","","","Blackwood Grain Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12343","-1","","","","","Blackwood Nut Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12344","-1","Draconic runes appear and disappear along the inner band.","","","","Seal of Ascension","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12345","-1","","","","","Bijou's Belongings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12346","-1","","","","","Empty Cleansing Bowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12347","-1","","","","","Filled Cleansing Bowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12348","-1","","","","","Monster - Axe, Horde Badass Copper 01 (Special1H)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12349","-1","","","","","Cliffspring River Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12350","-1","","","","","Empty Sampling Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12351","690","","","","","Horn of the Arctic Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12352","-1","","","","","Doomrigger's Clasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12353","1101","","","","","White Stallion Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12354","1101","","","","","Palomino Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12355","-1","","","","","Talisman of Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12356","-1","","","","","Highperch Wyvern Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12358","-1","","","","","Darkstone Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12359","-1","","","","","Thorium Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12360","-1","","","","","Arcanite Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12361","-1","","","","","Blue Sapphire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12363","-1","","","","","Arcane Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12364","-1","","","","","Huge Emerald","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12365","-1","","","","","Dense Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12366","-1","","","","","Thick Yeti Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12367","-1","","","","","Pristine Yeti Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12368","-1","","","","","Dawn's Gambit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12369","-1","","","","","Scepter of Vectus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12382","-1","Master Key to the City of Stratholme","","","","Key to the City","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12383","-1","","","","","Moontouched Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12384","-1","","","","","Cache of Mau'ari","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12385","-1","test","","","","test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12402","-1","","","","","Ancient Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12403","-1","","","","","Monster - Polearm, Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12404","-1","","","","","Dense Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12405","-1","","","","","Thorium Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9239","46199","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","480","0","8","8","8","8","8","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12406","-1","","","","","Thorium Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4636","23183","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","6","6","6","6","6","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12408","-1","","","","","Thorium Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4998","24991","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"12409","-1","","","","","Thorium Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10336","51682","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","7","7","7","7","7","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12410","-1","","","","","Thorium Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10372","51863","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12411","-1","","","","","Third Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12412","-1","","","","","Fourth Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12414","-1","","","","","Thorium Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17376","86882","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12415","-1","","","","","Radiant Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17003","85018","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","16","16","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12416","-1","","","","","Radiant Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7595","37979","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"12417","-1","","","","","Radiant Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17034","85174","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"12418","-1","","","","","Radiant Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10242","51214","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12419","-1","","","","","Radiant Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16421","82107","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","15","15","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12420","-1","","","","","Radiant Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25330","126654","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12421","-1","","","","","Monster - Staff, White Jeweled","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12422","-1","","","","","Imperial Plate Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16204","81021","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","17","0","0","0","0","0","0","0","0","55" +"12424","-1","","","","","Imperial Plate Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5533","27665","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","11","0","0","0","0","0","0","0","0","47" +"12425","-1","","","","","Imperial Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6044","30221","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","8","0","0","0","0","0","0","0","0","49" +"12426","-1","","","","","Imperial Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12062","60311","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","12","0","0","0","0","0","0","0","0","54" +"12427","-1","","","","","Imperial Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12106","60530","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","17","0","0","0","0","0","0","0","0","54" +"12428","-1","","","","","Imperial Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8646","43233","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","47" +"12429","-1","","","","","Imperial Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17923","89615","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","18","0","0","0","0","0","0","0","0","56" +"12430","-1","","","","","Frostsaber E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12431","-1","","","","","Winterfall E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12432","-1","","","","","Shardtooth E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12433","-1","","","","","Wildkin E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12434","-1","","","","","Chillwind E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12435","-1","","","","","Ice Thistle E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12436","-1","","","","","Frostmaul E'ko","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12437","-1","","","","","Ridgewell's Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12438","-1","","","","","Tinkee's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12440","-1","","","","","Magic Knucklebone (DND)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12442","-1","","","","","Charm Pouch (DND)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11463","45852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12443","-1","","","","","Knucklebone Pouch (DND)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17896","71587","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12444","-1","","","","","Uncracked Chillwind Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12445","-1","","","","","Felnok's Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12446","-1","","","","","Anvilmar Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","95","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","5","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","0" +"12447","-1","","","","","Thistlewood Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","5","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"12448","-1","","","","","Light Hunting Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","0" +"12449","-1","","","","","Primitive Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","5","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"12450","-1","","","","","Juju Flurry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12451","-1","","","","","Juju Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12452","-1","","","","","Monster - Shield, Horde A02 Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12453","-1","","","","","Monster - Shield, Horde A03 Triangle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12454","-1","","","","","Monster - Shield, Horde B01 Brown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12455","-1","","","","","Juju Ember","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12456","-1","","","","","Monster - Shield, Horde B02 Brown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12457","-1","","","","","Juju Chill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12458","-1","","","","","Juju Guile","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12459","-1","","","","","Juju Escape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12460","-1","","","","","Juju Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12461","-1","","","","","Monster - Axe, 2H Horde Brown Tombstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12462","-1","","","","","Embrace of the Wind Serpent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20274","101370","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","12","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","17","9","0","0","0","0","0","0","0","50" +"12463","-1","","","","","Drakefang Butcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42446","212231","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","48" +"12464","-1","","","","","Bloodfire Talons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8520","42601","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","5","0","0","0","0","0","0","0","0","48" +"12465","-1","","","","","Nightfall Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51309","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","8","0","0","0","0","0","0","0","0","48" +"12466","-1","","","","","Dawnspire Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6865","34327","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","8","0","0","0","0","0","0","0","0","48" +"12467","-1","Something seems to shake from within","","","","Alien Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12468","-1","","","","","Chilton Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8644","43221","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","53","-1","0","0","18","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12469","-1","","","","","Mutilator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29179","145898","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","47","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","42" +"12470","-1","","","","","Sandstalker Ankleguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8784","43922","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","3","6","0","0","0","0","0","0","0","42" +"12471","-1","","","","","Desertwalker Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8409","33638","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","13","4","5","0","0","0","0","0","0","0","42" +"12472","-1","Quality Guaranteed by Kraklenheit Industries","","","","Krakle's Thermometer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12482","-1","","","","","Monster - Glaive - Demonhunter Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12502","-1","","","","","Monster - Glaive - Demonhunter Black Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12522","-1","","","","","Bingles' Flying Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","182","910","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"12523","-1","","","","","Monster - Gun, Silver Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"12524","-1","","","","","Blue-feathered Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12525","-1","","","","","Jaron's Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12526","-1","","","","","TEST Challenge to Urok","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12527","-1","","","","","Ribsplitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35332","176662","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","5304","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","48" +"12528","-1","","","","","The Judge's Gavel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37833","189166","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","52","-1","0","0","122","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","47" +"12529","-1","","","","","Smolderweb Carrier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12530","-1","","","","","Spire Spider Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12531","-1","","","","","Searing Needle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28883","144416","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","51","-1","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","46" +"12532","-1","","","","","Spire of the Stoneshaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48501","242507","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","56","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","17","0","0","0","0","0","0","0","0","51" +"12533","-1","","","","","Roughshod Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12534","-1","","","","","Omokk's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12535","-1","","","","","Doomforged Straightedge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34925","174629","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","54","-1","0","0","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","49" +"12542","-1","","","","","Funeral Pyre Vestment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12356","61781","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","13","13","0","0","0","0","0","0","0","46" +"12543","-1","","","","","Songstone of Ironforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7156","28625","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","0","0","0","0","0","0","0","0","0" +"12544","-1","","","","","Thrall's Resolve","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7407","29630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","0","0","0","0","0","0","0","0","0" +"12545","-1","","","","","Eye of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7082","28330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","7","0","0","0","0","0","0","0","0","0" +"12546","-1","","","","","Aristocratic Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7463","37316","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","6","0","0","0","0","0","0","0","0","49" +"12547","-1","","","","","Mar Alom's Grip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10519","52597","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","10","5","0","0","0","0","0","0","0","51" +"12548","-1","","","","","Magni's Will","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","7","0","0","0","0","0","0","0","0","0" +"12549","-1","","","","","Braincage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13669","68349","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","9","5","0","0","0","0","0","0","0","47" +"12550","-1","","","","","Runed Golem Shackles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6464","32324","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","0","0","0","0","0","0","0","0","0","48" +"12551","-1","","","","","Stoneshield Cloak","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11594","57972","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","51" +"12552","-1","","","","","Blisterbane Wrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10980","54901","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","3","0","0","0","0","0","0","0","0","50" +"12553","-1","","","","","Swiftwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17699","88496","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","7","4","0","0","0","0","0","0","0","54" +"12554","-1","","","","","Hands of the Exalted Herald","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9474","47373","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","12","0","0","0","0","0","0","0","0","54" +"12555","-1","","","","","Battlechaser's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11406","57032","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","14","8","0","0","0","0","0","0","0","50" +"12556","-1","","","","","High Priestess Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14317","71585","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","7","0","0","0","0","0","0","0","0","54" +"12557","-1","","","","","Ebonsteel Spaulders","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14368","71841","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","7","6","0","0","0","0","0","0","0","54" +"12558","-1","","","","","Blue-feathered Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4882","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12562","-1","","","","","Important Blackrock Documents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1772","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12563","-1","Bears the seal of the K.E.F.","","","","Warlord Goretooth's Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4903","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12564","-1","","","","","Assassination Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4881","1771","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"12565","-1","","","","","Winna's Kitten Carrier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12566","-1","","","","","Hardened Flasket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12567","-1","","","","","Filled Flasket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12582","-1","","","","","Keris of Zul'Serak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51199","255997","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12583","-1","","","","","Blackhand Doomsaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74346","371731","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12584","-1","","","","","Grand Marshal's Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49636","248182","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"12585","-1","","","","","Stormwind Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12586","-1","Protects the brood against Mother's Milk. Efficacy decays over time.","","","","Immature Venom Sac","1","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12587","-1","","","","","Eye of Rend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21031","105159","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","13","0","0","0","0","0","0","0","0","58" +"12588","-1","","","","","Bonespike Shoulder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25446","127233","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12589","-1","","","","","Dustfeather Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10251","51257","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","10","0","0","0","0","0","0","0","0","56" +"12590","-1","","","","","Felstriker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75624","378124","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"12591","-1","","","","","Monster - Staff, Holy Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12592","-1","","","","","Blackblade of Shahram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95241","476208","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"12593","-1","","","","","Monster - Sword, Horde Sword Bronze","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12602","-1","","","","","Draconian Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35212","176064","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","10","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","58" +"12603","-1","","","","","Nightbrace Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25048","125244","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","10","0","0","0","0","0","0","0","0","56" +"12604","-1","","","","","Starfire Tiara","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14368","71844","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","28","0","0","0","0","0","0","0","0","55" +"12605","-1","","","","","Serpentine Skuller","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29106","145533","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","56","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","51" +"12606","-1","","","","","Crystallized Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12668","63340","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","19","6","0","0","0","0","0","0","0","56" +"12607","-1","","","","","Brilliant Chromatic Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8048","32195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12608","-1","","","","","Butcher's Apron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13232","66160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","16","0","0","0","0","0","0","0","0","53" +"12609","-1","","","","","Polychromatic Visionwrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20498","102494","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","20","20","20","20","20","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12610","-1","","","","","Runic Plate Shoulders","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12247","61238","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","427","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12611","-1","","","","","Runic Plate Boots","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12293","61468","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12612","-1","","","","","Runic Plate Helm","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12956","64783","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","13","13","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12613","-1","","","","","Runic Breastplate","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18205","91025","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","15","15","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12614","-1","","","","","Runic Plate Leggings","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18272","91363","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","14","14","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12615","-1","","","","","Savage Mail Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27510","137553","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","0","0","0","0","0","0","0","0","0","57" +"12616","-1","","","","","Savage Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21841","109206","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","15","0","0","0","0","0","0","0","0","58" +"12617","-1","","","","","Savage Mail Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21919","109596","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","17","0","0","0","0","0","0","0","0","58" +"12618","-1","","","","","Enchanted Thorium Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23972","119863","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","12","0","0","0","0","0","0","0","0","58" +"12619","-1","","","","","Enchanted Thorium Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24058","120290","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","20","0","0","0","0","0","0","0","0","58" +"12620","-1","","","","","Enchanted Thorium Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17245","86225","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","12","0","0","0","0","0","0","0","0","57" +"12621","-1","","","","","Demonfork","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45085","225425","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","59","-1","0","0","76","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","54" +"12622","-1","","","","","Shardtooth Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12623","-1","","","","","Chillwind Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12624","-1","","","","","Wildthorn Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20642","103212","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","5","0","0","0","0","0","0","0","0","49" +"12625","-1","","","","","Dawnbringer Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13080","65402","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","455","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","0","0","0","0","0","0","0","0","0","53" +"12626","-1","","","","","Funeral Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9191","45956","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","5","0","0","0","0","0","0","0","0","54" +"12627","-1","","","","","Temporal Displacer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12628","-1","","","","","Demon Forged Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16640","83203","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","52" +"12629","-1","","","","","Monster - Axe, Horde Hatchet 01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12630","-1","Sickening, bloody, foulness.","","","","Head of Rend Blackhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12631","-1","","","","","Fiery Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8919","44598","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","53" +"12632","-1","","","","","Storm Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14099","70498","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","54" +"12633","-1","","","","","Whitesoul Helm","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14859","74299","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","15","0","0","0","0","0","0","0","0","55" +"12634","-1","","","","","Chiselbrand Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15310","76552","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","6","0","0","0","0","0","0","0","0","55" +"12635","-1","","","","","Simple Parchment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2131","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12636","-1","","","","","Helm of the Great Chief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24285","121428","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","30","0","0","0","0","0","0","0","0","56" +"12637","-1","","","","","Backusarian Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10316","51582","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","9","15","0","0","0","0","0","0","0","55" +"12638","-1","The hands of this watch are frozen at 3:00.","","","","Andorhal Watch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12639","-1","","","","","Stronghold Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15271","76359","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","0","0","0","0","0","0","0","0","0","57" +"12640","-1","","","","","Lionheart Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21894","109471","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","565","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","0","0","0","0","0","0","0","0","0","56" +"12641","-1","","","","","Invulnerable Mail","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43836","219182","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","57" +"12642","-1","","","","","Cleansed Infernal Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12643","-1","","","","","Dense Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12644","-1","","","","","Dense Grinding Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12645","-1","","","","","Thorium Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12646","-1","","","","","Infus Emerald","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12647","-1","","","","","Felhas Ruby","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12648","-1","","","","","Imprisoned Felhound Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12649","-1","","","","","Imprisoned Infernal Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12650","-1","This object has been attuned to work against a specific being.","","","","Attuned Dampener","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12651","-1","","","","","Blackcrow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36055","180279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","59","-1","0","0","77","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","3","0","0","0","0","0","0","0","0","0","54" +"12652","-1","TOP SECRET","","","","Bijou's Reconnaissance Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12653","-1","","","","","Riphook","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36318","181593","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","59","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","54" +"12654","-1","","","","","Doomshot","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","59","-1","0","0","20","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","54" +"12655","-1","","","","","Enchanted Thorium Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12662","-1","","","","","Demonic Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12663","-1","Glyphs of a druidic nature adorn the branch.","","","","Glyphed Oaken Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12682","-1","","","","","Plans: Thorium Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12683","-1","","","","","Plans: Thorium Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12684","-1","","","","","Plans: Thorium Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","164","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12685","-1","","","","","Plans: Radiant Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","164","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12687","-1","","","","","Plans: Imperial Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12688","-1","","","","","Plans: Imperial Plate Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12689","-1","","","","","Plans: Radiant Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12690","-1","","","","","Plans: Imperial Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12691","-1","","","","","Plans: Wildthorn Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12692","-1","","","","","Plans: Thorium Shield Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12693","-1","","","","","Plans: Thorium Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12694","-1","","","","","Plans: Thorium Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12695","-1","","","","","Plans: Radiant Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12696","-1","","","","","Plans: Demon Forged Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12697","-1","","","","","Plans: Radiant Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12698","-1","","","","","Plans: Dawnbringer Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12699","-1","","","","","Plans: Fiery Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12700","-1","","","","","Plans: Imperial Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12701","-1","","","","","Plans: Imperial Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12702","-1","","","","","Plans: Radiant Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12703","-1","","","","","Plans: Storm Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12704","-1","","","","","Plans: Thorium Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12705","-1","","","","","Plans: Imperial Plate Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12706","-1","","","","","Plans: Runic Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12707","-1","","","","","Plans: Runic Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12708","-1","","","","","Crossroads' Supply Crates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12709","-1","Property of Finkle Einhorn, Grandmaster Adventurer","","","","Finkle's Skinner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57991","289956","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12710","-1","It Glows!","","","","Glowing Hunk of the Beast's Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12711","-1","","","","","Plans: Whitesoul Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12712","-1","","","","","Warosh's Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12713","-1","","","","","Plans: Radiant Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12714","-1","","","","","Plans: Runic Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12715","-1","","","","","Plans: Imperial Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12716","-1","","","","","Plans: Helm of the Great Chief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12717","-1","","","","","Plans: Lionheart Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12718","-1","","","","","Plans: Runic Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12719","-1","","","","","Plans: Runic Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12720","-1","","","","","Plans: Stronghold Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12721","-1","","","","","Good Luck Half-Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12722","-1","","","","","Good Luck Other-Half-Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12723","-1","","","","","Good Luck Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12724","-1","","","","","Janice's Parcel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12725","-1","","","","","Plans: Enchanted Thorium Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12726","-1","","","","","Plans: Enchanted Thorium Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12727","-1","","","","","Plans: Enchanted Thorium Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12728","-1","","","","","Plans: Invulnerable Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12729","-1","","","","","Viagra","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12730","-1","","","","","Warosh's Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2212","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12731","-1","","","","","Pristine Hide of the Beast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12732","-1","","","","","Incendia Agave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12733","-1","","","","","Sacred Frostsaber Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12734","-1","","","","","Enchanted Scarlet Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12735","-1","","","","","Frayed Abomination Stitching","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12736","-1","","","","","Frostwhisper's Embalming Fluid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12737","-1","","","","","Gloom Weed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12738","-1","","","","","Dalson Outhouse Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12739","-1","","","","","Dalson Cabinet Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12740","-1","","","","","Fifth Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12741","-1","","","","","Sixth Mosh'aru Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12742","-1","","","","","Monster - Item, Book - Brown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12743","-1","","","","","Monster - Item, Book - Brown Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12744","-1","","","","","Monster - Item, Bag - Brown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12745","-1","","","","","Monster - Item, Bag - Brown Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12746","-1","","","","","Monster - Item, Orb - Lava","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12747","-1","","","","","Monster - Item, Orb - Lava Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12748","-1","","","","","Monster - Item, Scepter - Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12749","-1","","","","","Monster - Item, Scepter - Gold Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12750","-1","","","","","Monster - Item, Book - Black Skull Glowing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12751","-1","","","","","Monster - Item, Book - Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12752","-1","","","","","Cap of the Scarlet Savant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22907","114539","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1488","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","17","0","0","0","0","0","0","0","0","0" +"12753","-1","","","","","Skin of Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12754","-1","","","","","Monster - Axe, 2H War Green - Mulgore Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12755","-1","","","","","Monster - Sword2H, Blackblade of Shahram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12756","-1","","","","","Leggings of Arcana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35057","175287","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","20","0","0","0","0","0","0","0","0","0" +"12757","-1","","","","","Breastplate of Bloodthirst","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35192","175964","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","20","13","0","0","0","0","0","0","0","0","0" +"12762","-1","","","","","Secrecy of Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2231","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12763","-1","","","","","Un'Goro Etherfruit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"12764","-1","","","","","Thorium Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33621","168107","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","52","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","0","0","0","0","0","0","0","0","0","47" +"12765","-1","","","","","Secret Note #1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2232","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12766","-1","","","","","Secret Note #2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2233","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12768","-1","","","","","Secret Note #3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2234","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12769","-1","","","","","Bleakwood Hew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46154","230772","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","54","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","5","0","0","0","0","0","0","0","0","49" +"12770","-1","","","","","Bijou's Information","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12771","-1","","","","","Empty Firewater Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5083","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12772","-1","","","","","Inlaid Thorium Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38871","194357","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","0","0","0","0","0","0","0","0","0","49" +"12773","-1","","","","","Ornate Thorium Handaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33079","165399","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","55","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","10","0","0","0","0","0","0","0","0","0","50" +"12774","-1","","","","","Dawn's Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36044","180220","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"12775","-1","","","","","Huge Thorium Battleaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39949","199746","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","56","-1","0","0","114","0","0","0","0","172","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12776","-1","","","","","Enchanted Battlehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48124","240624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"12777","-1","","","","","Blazing Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38648","193242","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","56","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"12778","-1","","","","","Document Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12779","-1","","","","","Rune Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35338","176691","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","57","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","5","5","0","0","0","0","0","0","0","52" +"12780","-1","","","","","General Drakkisath's Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5089","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12781","-1","","","","","Serenity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42721","213605","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","57","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","52" +"12782","-1","","","","","Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56808","284042","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","58","1535","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","30","-40","0","0","0","0","0","0","0","53" +"12783","-1","","","","","Heartseeker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58215","291079","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","58" +"12784","-1","","","","","Arcanite Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73036","365181","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","153","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","0","0","0","0","0","0","0","0","0","58" +"12785","-1","","","","","Incendia Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12786","-1","","","","","Monster - Mace, Horde Skull Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12787","-1","","","","","Monster - Mace, Horde Bone Claw Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12788","-1","","","","","Monster - Mace, Horde Bone Spike Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12789","-1","","","","","Horn of Uber Buffing (test)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12790","-1","","","","","Arcanite Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74619","373098","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12791","-1","","","","","Barman Shanker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39411","197059","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","50" +"12792","-1","","","","","Volcanic Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39255","196279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","58","-1","0","0","60","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12793","-1","","","","","Mixologist's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19846","99230","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","18","11","0","0","0","0","0","0","0","50" +"12794","-1","","","","","Masterwork Stormhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56304","281520","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","57" +"12795","-1","","","","","Blood Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48821","244108","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","60","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12796","-1","","","","","Hammer of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70912","354564","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","58" +"12797","-1","","","","","Frostguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56943","284716","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","63","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12798","-1","","","","","Annihilator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57150","285752","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12799","-1","","","","","Large Opal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12800","-1","","","","","Azerothian Diamond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12801","-1","","","","","Monster - Item, Bucket - Wood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12802","-1","","","","","Darkspear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62625","313125","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","60","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12803","-1","","","","","Living Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12804","-1","","","","","Powerful Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12805","-1","","","","","Orb of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3987","15950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12806","-1","Covered in demonic runes.","","","","Unforged Rune Covered Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12807","-1","","","","","Scourge Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12808","-1","","","","","Essence of Undeath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12809","-1","","","","","Guardian Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12810","-1","","","","","Enchanted Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12811","-1","","","","","Righteous Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12812","-1","","","","","Unfired Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12813","-1","","","","","Flask of Mystery Goo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12814","-1","It's got enough juice to set a large tent on fire!","","","","Flame in a Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12815","-1","","","","","Beacon Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12816","-1","","","","","Plans: Thorium Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","164","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12817","-1","","","","","Plans: Bleakwood Hew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12818","-1","","","","","Plans: Inlaid Thorium Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12819","-1","","","","","Plans: Ornate Thorium Handaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12820","-1","","","","","Winterfall Firewater","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"12821","-1","","","","","Plans: Dawn's Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12822","-1","","","","","Toxic Horror Droplet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12823","-1","","","","","Plans: Huge Thorium Battleaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12824","-1","","","","","Plans: Enchanted Battlehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12825","-1","","","","","Plans: Blazing Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12826","-1","","","","","Plans: Rune Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12827","-1","","","","","Plans: Serenity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12828","-1","","","","","Plans: Volcanic Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12829","-1","","","","","Winterfall Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12830","-1","","","","","Plans: Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12831","-1","","","","","Plans: Blood Talon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12832","-1","","","","","Plans: Darkspear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12833","-1","","","","","Plans: Hammer of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12834","-1","","","","","Plans: Arcanite Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12835","-1","","","","","Plans: Annihilator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12836","-1","","","","","Plans: Frostguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12837","-1","","","","","Plans: Masterwork Stormhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12838","-1","","","","","Plans: Arcanite Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12839","-1","","","","","Plans: Heartseeker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12840","-1","","","","","Minion's Scourgestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12841","-1","","","","","Invader's Scourgestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12842","-1","","","","","Crudely-written Log","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5123","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12843","-1","","","","","Corruptor's Scourgestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12844","-1","","","","","Argent Dawn Valor Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12845","-1","","","","","Medallion of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12846","-1","Equipping this badge is an indication of service to the Argent Dawn.","","","","Argent Dawn Commission","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12847","-1","","","","","Soul Stained Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12848","-1","Fel energies pulse across the pike.","","","","Blood Stained Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12849","-1","","","","","Demon Kissed Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12850","-1","","","","","Monster - Item, Bag - Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12851","-1","","","","","Monster - Item, Bag - Black Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12852","-1","","","","","Monster - Item, Bag - Gray","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12853","-1","","","","","Monster - Item, Bag - Gray Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12854","-1","","","","","Monster - Item, Bag - Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12855","-1","","","","","Monster - Item, Bag - Green Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12856","-1","","","","","Monster - Item, Bag - Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12857","-1","","","","","Monster - Item, Bag - Red Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12858","-1","","","","","Monster - Item, Bag - White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12859","-1","","","","","Monster - Item, Bag - White Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12860","-1","","","","","Monster - Item, Book - Blue Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12861","-1","","","","","Monster - Item, Book - Black Skull Glowing Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12862","-1","","","","","Monster - Item, Book - Black Simple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12863","-1","","","","","Monster - Item, Book - Black Simple Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12864","-1","","","","","Monster - Item, Book - B01 Black Glowing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12865","-1","","","","","Monster - Item, Book - B01 Black Glowing Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12866","-1","","","","","Monster - Item, Book - B02 Black Glowing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12867","-1","","","","","Monster - Item, Book - B02 Black Glowing Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12868","-1","","","","","Monster - Item, Book - B02 Blue Glowing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12869","-1","","","","","Monster - Item, Book - B02 Blue Glowing Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12870","-1","","","","","Monster - Item, Potion Red Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12871","-1","","","","","Chromatic Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8048","32195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12882","-1","","","","","Monster - Sword2H, Horde Curved Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12883","-1","","","","","Monster - Mace, Thaurissan Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12884","-1","","","","","Arnak's Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12885","-1","","","","","Pamela's Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12886","-1","","","","","Pamela's Doll's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12887","-1","","","","","Pamela's Doll's Left Side","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12888","-1","","","","","Pamela's Doll's Right Side","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12889","-1","","","","","Monster - Sword2H, Horde Curved Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12890","-1","","","","","Monster - Sword, Militia Long Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12891","-1","","","","","Jaron's Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12892","-1","","","","","Monster - Sword1H, Dark Short Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12893","-1","","","","","Monster - Shield, Black Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12894","-1","","","","","Joseph's Wedding Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12895","-1","","","","","Breastplate of the Chromatic Flight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29461","147308","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","706","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","20","10","0","0","0","0","0","0","0","0" +"12896","-1","","","","","First Relic Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12897","-1","","","","","Second Relic Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12898","-1","","","","","Third Relic Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12899","-1","","","","","Fourth Relic Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12900","-1","","","","","Annals of Darrowshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12901","-1","","","","","Monster - Mace2H, Golden Stone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12902","-1","","","","","Monster - Sword2H, Luminous Evil Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12903","-1","","","","","Legguards of the Chromatic Defier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45482","227412","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","349","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","9","15","0","0","0","0","0","0","0","0" +"12904","-1","","","","","Shawn's Super Special Swami Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13584","67923","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"12905","-1","","","","","Wildfire Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16359","81798","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12906","-1","","","","","Purified Moonwell Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12907","-1","","","","","Corrupt Moonwell Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12922","-1","","","","","Empty Canteen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12923","-1","","","","","Awbee's Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12924","-1","A ritual candle from the depths of Jaedenar, new home of the Shadow Council.","","","","Ritual Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12925","-1","","","","","Arikara Serpent Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12926","-1","","","","","Flaming Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14907","59630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12927","-1","","","","","Truestrike Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19149","95745","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12928","-1","","","","","Umi's Mechanical Yeti","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12929","-1","","","","","Emberfury Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","78585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","56" +"12930","-1","","","","","Briarwood Reed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12931","-1","","","","","Monster - Shield, Scarlet Crusade A01/A02 Model","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12932","-1","","","","","Monster - Shield, Scarlet Crusade A02","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12933","-1","","","","","Monster - Shield, Scarlet Crusade B03","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12934","-1","","","","","Monster - Mace, Maul B03 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12935","-1","","","","","Warmaster Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23196","115982","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","13","0","0","0","0","0","0","0","0","58" +"12936","-1","","","","","Battleborn Armbraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11640","58203","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12937","-1","","","","","Monster - Staff, Basic Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12938","-1","","","","","Blood of Heroes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12939","-1","","","","","Dal'Rend's Tribal Guardian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60363","301818","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","41","0","0","0","1800","0","0","0","63","-1","0","0","52","0","0","0","0","97","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12940","-1","","","","","Dal'Rend's Sacred Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54812","274063","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","41","0","0","0","2800","0","0","0","63","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","0","0","0","0","0","0","0","0","0","58" +"12941","-1","","","","","Monster - Wand, Jeweled - B02 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12942","-1","","","","","Panther Cage Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12943","-1","","","","","Monster - Staff, 3 Piece Taped Staff Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12944","-1","","","","","Monster - Sword, Golden Long","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12945","-1","","","","","Legplates of the Chromatic Defier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42565","212825","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","349","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","26","16","0","0","0","0","0","0","0","0" +"12946","-1","","","","","Hypercapacitor Gizmo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12947","-1","","","","","Alex's Ring of Audacity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","0" +"12949","-1","","","","","Monster - Sword2H, Red White Broad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12950","-1","","","","","Monster - Mace2H, Warhammer Ebony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12951","-1","","","","","Monster - Axe, 2H War - Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12952","-1","","","","","Gyth's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14861","74307","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","0","0","0","0","0","0","0","0","0","55" +"12953","-1","","","","","Dragoneye Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22374","111874","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","0","0","0","0","0","0","0","0","0","55" +"12954","-1","","","","","Davil's Libram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12955","-1","","","","","Redpath's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12956","-1","","","","","Skull of Horgus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12957","-1","","","","","Shattered Sword of Marduk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12958","-1","","","","","Recipe: Transmute Arcanite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12959","-1","","","","","Monster - Staff, Demon Skull Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12960","-1","","","","","Tribal War Feathers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17752","88761","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","55" +"12961","-1","","","","","JEFF TEST SHIELD","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12962","-1","","","","","JEFF TEST GLOVES","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12963","-1","","","","","Blademaster Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27717","138586","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","0","0","0","0","0","0","0","0","0","58" +"12964","-1","","","","","Tristam Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33388","166942","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","58" +"12965","-1","","","","","Spiritshroud Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22344","111721","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"12966","-1","","","","","Blackmist Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14018","70092","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","5","0","0","0","0","0","0","0","0","58" +"12967","-1","","","","","Bloodmoon Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16884","84420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","7","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","17","5","0","0","0","0","0","0","0","0","58" +"12968","-1","","","","","Frostweaver Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16948","84740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","12","0","0","0","0","0","0","0","0","58" +"12969","-1","","","","","Seeping Willow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70884","354420","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12970","-1","","","","","General's Ceremonial Plate","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22768","113840","1","1","1","16","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","0","0","0","0","0","0","0","0","0","58" +"12971","-1","","","","","JEFF TEST SWORD","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14281","71409","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","50","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12972","-1","","","","","JEFF TEST SWORD II","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14333","71669","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","50","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12973","-1","","","","","Scarlet Cannonball","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12974","-1","","","","","The Black Knight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6105","30525","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","31","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","26" +"12975","-1","","","","","Prospector Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2205","11026","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","20","-1","0","0","33","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","7","0","0","0","0","0","0","0","0","15" +"12976","-1","","","","","Ironpatch Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1770","8852","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","15" +"12977","-1","","","","","Magefist Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","355","1776","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","3","4","5","0","0","0","0","0","0","0","15" +"12978","-1","","","","","Stormbringer Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","534","2674","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","2","5","0","0","0","0","0","0","0","0","15" +"12979","-1","","","","","Firebane Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","617","3086","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","5","0","0","0","0","0","0","0","0","0","16" +"12980","-1","","","","","Monster - Shield, Wall Metal Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12981","-1","","","","","Monster - Shield, Wall Metal Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12982","-1","","","","","Silver-linked Footguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","4254","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","3","7","0","0","0","0","0","0","0","0","16" +"12983","-1","","","","","Rakzur Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2362","11813","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","38","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","5","8","0","0","0","0","0","0","0","16" +"12984","-1","","","","","Skycaller","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7115","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","21","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","16" +"12985","-1","","","","","Ring of Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1153","4615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","17" +"12986","-1","","","","","Monster - Spear, Broad Notched","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12987","-1","","","","","Darkweave Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","906","4533","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","7","4","0","0","0","0","0","0","0","17" +"12988","-1","","","","","Starsight Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1137","5687","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","4","10","0","0","0","0","0","0","0","0","17" +"12989","-1","","","","","Gargoyle's Bite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2854","14271","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","22","-1","0","0","44","0","0","0","0","66","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","0","0","0","0","0","0","0","0","0","20" +"12990","-1","","","","","Razor's Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2589","12946","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"12991","-1","","","","","Monster - Dagger, Curvey Green Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12992","-1","","","","","Searing Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3260","16302","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","23","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","18" +"12993","-1","","","","","Monster - Sword, Green Gold Scimitar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12994","-1","","","","","Thorbia's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3939","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","3","0","0","0","0","0","0","0","0","18" +"12995","-1","","","","","Monster - Shield, Wall Metal Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12996","-1","","","","","Band of Purification","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1527","6110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","2","0","0","0","0","0","0","0","0","18" +"12997","-1","","","","","Redbeard Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1920","9600","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","3","0","0","0","0","0","0","0","0","19" +"12998","-1","","","","","Magician's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5103","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","0","0","0","0","0","0","0","0","0","20" +"12999","-1","","","","","Drakewing Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","853","4267","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","3","0","0","0","0","0","0","0","0","20" +"13000","-1","","","","","Staff of Hale Magefire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65225","326129","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","62","-1","0","0","140","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","25","0","0","0","0","0","0","0","0","57" +"13001","-1","","","","","Maiden's Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10648","42594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","7","0","0","0","0","0","0","0","0","55" +"13002","-1","","","","","Lady Alizabeth's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14617","58469","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","8","0","0","0","0","0","0","0","0","54" +"13003","-1","","","","","Lord Alexander's Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49640","248203","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","16","17","0","0","0","0","0","0","0","51" +"13004","-1","","","","","Torch of Austen","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33590","167954","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","58","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13005","-1","","","","","Amy's Blanket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1331","6657","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","3","0","0","0","0","0","0","0","0","23" +"13006","-1","","","","","Mass of McGowan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54840","274202","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","62","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","10","0","0","0","0","0","0","0","0","57" +"13007","-1","","","","","Mageflame Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13585","67926","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13008","-1","","","","","Dalewind Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12815","64076","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","9","5","0","0","0","0","0","0","0","47" +"13009","-1","","","","","Cow King's Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15167","75839","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","0","0","0","0","0","0","0","0","0","46" +"13010","-1","","","","","Dreamsinger Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2241","11207","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","8","8","0","0","0","0","0","0","0","21" +"13011","-1","","","","","Silver-lined Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5155","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","4","0","0","0","0","0","0","0","0","22" +"13012","-1","","","","","Yorgen Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1241","6208","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","3","3","0","0","0","0","0","0","0","22" +"13013","-1","","","","","Elder Wizard's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12355","61778","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","0","0","0","0","0","0","0","0","0","51" +"13014","-1","","","","","Axe of Rin'ji","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34705","173526","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","53","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"13015","-1","","","","","Serathil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53957","269788","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","61","-1","0","0","53","0","0","0","0","99","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","0","0","0","0","0","0","0","0","0","56" +"13016","-1","","","","","Killmaim","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4771","23855","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","26","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","21" +"13017","-1","","","","","Hellslayer Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17209","86048","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","35" +"13018","-1","","","","","Executioner's Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31967","159835","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","48","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","0","0","0","0","0","0","0","0","0","43" +"13019","-1","","","","","Harpyclaw Short Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4765","23828","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","32","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","27" +"13020","-1","","","","","Skystriker Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8985","44927","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","39","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","34" +"13021","-1","","","","","Needle Threader","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16694","83473","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","47","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","4","6","0","0","0","0","0","0","0","0","42" +"13022","-1","","","","","Gryphonwing Long Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27990","139952","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","55","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","4","0","0","0","0","0","0","0","0","50" +"13023","-1","","","","","Eaglehorn Long Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42703","213515","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","63","-1","0","0","40","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"13024","-1","","","","","Beazel's Basher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4863","24319","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","29","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","2","0","0","0","0","0","0","0","0","24" +"13025","-1","","","","","Deadwood Sledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10464","52324","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","2","7","0","0","0","0","0","0","0","0","32" +"13026","-1","","","","","Heaven's Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19441","97208","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","45","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","6","5","7","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","4","5","4","4","0","0","0","0","0","40" +"13027","-1","","","","","Bonesnapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33832","169160","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","5","0","0","0","0","0","0","0","0","48" +"13028","-1","","","","","Bludstone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52605","263025","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","5","0","0","0","0","0","0","0","0","56" +"13029","-1","","","","","Umbral Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5613","22453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","38" +"13030","-1","","","","","Basilisk Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13113","52453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","6","6","6","6","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","46" +"13031","-1","","","","","Orb of Mistmantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1401","5605","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","0","0","0","0","0","0","0","0","0","23" +"13032","-1","","","","","Sword of Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4138","20693","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","22" +"13033","-1","","","","","Zealot Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8094","40472","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","5","0","0","0","0","0","0","0","0","29" +"13034","-1","","","","","Speedsteel Rapier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14710","73551","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","41","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","36" +"13035","-1","","","","","Serpent Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25141","125706","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","49","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"13036","-1","","","","","Assassination Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40988","204943","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","0","0","0","0","0","0","0","0","0","52" +"13037","-1","","","","","Crystalpine Stinger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4729","23645","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","35","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","0","0","0","0","0","0","0","0","0","0","27" +"13038","-1","","","","","Swiftwind","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9630","48150","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","7","0","0","0","0","0","0","0","0","0","35" +"13039","-1","","","","","Skull Splitting Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17892","89461","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","48","-1","0","0","52","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","3","0","0","0","0","0","0","0","0","0","43" +"13040","-1","","","","","Heartseeking Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29444","147221","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","56","-1","0","0","71","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","9","4","0","0","0","0","0","0","0","0","51" +"13041","-1","","","","","Guardian Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4516","22582","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","50","0","0","0","0","76","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","21" +"13042","-1","","","","","Sword of the Magistrate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17596","87983","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","41","-1","0","0","96","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","10","15","0","0","0","0","0","0","0","36" +"13043","-1","","","","","Blade of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32389","161949","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","49","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","24","10","0","0","0","0","0","0","0","0","44" +"13044","-1","","","","","Demonslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52800","264000","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","57","-1","0","0","121","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13045","-1","","","","","Viscous Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10809","54048","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","6","0","0","0","0","0","0","0","0","30" +"13046","-1","","","","","Blanchard's Stout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35042","175213","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","50","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","5","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","15","0","0","0","0","0","0","0","0","45" +"13047","-1","","","","","Twig of the World Tree","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56588","282942","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","58","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","12","21","0","0","0","0","0","0","0","53" +"13048","-1","","","","","Looming Gavel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5971","29858","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","31","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","3","0","0","0","0","0","0","0","0","26" +"13049","-1","","","","","Deanship Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6191","30958","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","0","0","0","0","0","0","0","0","0","26" +"13050","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13051","-1","","","","","Witchfury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22911","114557","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","39" +"13052","-1","","","","","Warmonger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41677","208388","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","0","0","0","0","0","0","0","0","0","47" +"13053","-1","","","","","Doombringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59186","295933","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","60","-1","0","0","115","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13054","-1","","","","","Grim Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15805","79026","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","40","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","35" +"13055","-1","","","","","Bonechewer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29367","146838","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","48","-1","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","10","0","0","0","0","0","0","0","0","43" +"13056","-1","","","","","Frenzied Striker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48330","241653","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","56","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"13057","-1","","","","","Bloodpike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","26911","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","28","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","23" +"13058","-1","","","","","Khoo's Point","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21833","109167","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","44","-1","0","0","77","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","10","0","0","0","0","0","0","0","0","39" +"13059","-1","","","","","Stoneraven","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38719","193598","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","3","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","13","15","9","0","0","0","0","0","0","47" +"13060","-1","","","","","The Needler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60784","303923","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13061","-1","","","","","Monster - Staff, Green Crystal Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13062","-1","","","","","Thunderwood","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2991","14958","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","27","-1","0","0","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","22" +"13063","-1","","","","","Starfaller","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5851","29259","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","34","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","29" +"13064","-1","","","","","Jaina's Firestarter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11487","57435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","42","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","6","3","0","0","0","0","0","0","0","0","37" +"13065","-1","","","","","Wand of Allistarj","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20945","104728","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","9","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","45" +"13066","-1","","","","","Wyrmslayer Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8997","44989","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","8","0","0","0","0","0","0","0","46" +"13067","-1","","","","","Hydralick Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14341","71709","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","20","8","0","0","0","0","0","0","0","49" +"13068","-1","","","","","Obsidian Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4785","23927","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","10","10","0","0","0","0","0","0","0","40" +"13069","-1","","","","","Monster - Staff, D01 Flaming Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13070","-1","","","","","Sapphiron's Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14087","70437","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","14","14","0","0","0","0","0","0","0","53" +"13071","-1","","","","","Plated Fist of Hakoo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4061","20308","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","0","0","0","0","0","0","0","40" +"13072","-1","","","","","Stonegrip Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10426","52134","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","14","0","0","0","0","0","0","0","0","55" +"13073","-1","","","","","Mugthol's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9080","45404","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","10","17","0","0","0","0","0","0","0","47" +"13074","-1","","","","","Golem Shard Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8024","40124","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","41" +"13075","-1","","","","","Direwing Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22090","110454","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","16","16","15","0","0","0","0","0","0","58" +"13076","-1","","","","","Giantslayer Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4715","23579","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","5","6","0","0","0","0","0","0","0","43" +"13077","-1","","","","","Girdle of Uther","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8226","41132","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","10","10","9","9","0","0","0","0","0","52" +"13078","-1","","","","","Monster - Staff, Pointed Red Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13079","-1","","","","","Shield of Thorsen","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3359","16798","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","25" +"13080","-1","","","","","Widow's Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22512","112562","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","13","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","10","0","0","0","0","0","0","0","58" +"13081","-1","","","","","Skullance Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7123","35617","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","814","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","5","4","0","0","0","0","0","0","0","33" +"13082","-1","","","","","Mountainside Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13235","66175","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","1612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","12","5","0","0","0","0","0","0","0","0","41" +"13083","-1","","","","","Garrett Family Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34694","173470","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","4","17","0","0","0","0","0","0","0","57" +"13084","-1","","","","","Kaleidoscope Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6614","26458","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","4","4","4","4","4","0","0","0","0","0","30" +"13085","-1","","","","","Horizon Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9137","36548","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","4","4","0","0","0","0","0","0","0","46" +"13086","1101","","","","","Reins of the Winterspring Frostsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13087","-1","","","","","River Pride Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5896","23584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","4","0","0","0","0","0","0","0","0","28" +"13088","-1","","","","","Gazlowe's Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7413","29654","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","4","3","0","0","0","0","0","0","0","36" +"13089","-1","","","","","Skibi's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8039","32156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","5","13","3","0","0","0","0","0","0","0","44" +"13090","-1","","","","","Breastplate of the Chosen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35955","179777","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","14","14","14","14","0","0","0","0","0","58" +"13091","-1","","","","","Medallion of Grand Marshal Morris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10637","42549","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","52" +"13092","-1","","","","","Deprecated Dragonstalker Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30173","150865","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","12","0","0","0","0","0","0","0","0","58" +"13093","-1","","","","","Blush Ember Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3381","13524","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","6","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","5","4","0","0","0","0","0","0","0","32" +"13094","-1","","","","","The Queen's Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2646","10584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","2","1","0","0","0","0","0","0","0","25" +"13095","-1","","","","","Assault Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6646","26584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","5","0","0","0","0","0","0","0","0","39" +"13096","-1","","","","","Band of the Hierophant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7913","31654","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","11","10","7","0","0","0","0","0","0","0","55" +"13097","-1","","","","","Thunderbrow Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2164","8658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","3","8","0","0","0","0","0","0","0","0","24" +"13098","-1","","","","","Painweaver Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15282","61130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","58" +"13099","-1","","","","","Moccasins of the White Hare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1431","7155","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","3","0","0","0","0","0","0","0","0","24" +"13100","-1","","","","","Furen's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5421","27107","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","7","0","0","0","0","0","0","0","0","39" +"13101","-1","","","","","Wolfrunner Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14318","71592","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","0","0","0","0","0","0","0","54" +"13102","-1","","","","","Cassandra's Grace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6879","34399","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","7","0","0","0","0","0","0","0","0","42" +"13103","-1","","","","","Pads of the Venom Spider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3453","17268","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","6","0","0","0","0","0","0","0","0","33" +"13104","-1","","","","","Monster - Axe, Hatchet C03 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13105","-1","","","","","Sutarn's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2147","10737","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","6","6","0","0","0","0","0","0","0","32" +"13106","-1","","","","","Glowing Magical Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1216","6081","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","3","0","0","0","0","0","0","0","0","26" +"13107","-1","","","","","Magiskull Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11291","56457","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","57" +"13108","-1","","","","","Tigerstrike Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2446","12231","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","7","0","0","0","0","0","0","0","0","29" +"13109","-1","","","","","Blackflame Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8152","40762","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","5","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","44" +"13110","-1","","","","","Wolffear Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4968","24840","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","3","6","0","0","0","0","0","0","0","31" +"13111","-1","","","","","Sandals of the Insurgent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13993","69968","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","8","0","0","0","0","0","0","0","0","49" +"13112","-1","","","","","Winged Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9624","48124","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","23","0","0","0","0","0","0","0","0","43" +"13113","-1","","","","","Feathermoon Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20546","102730","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","20","13","0","0","0","0","0","0","0","58" +"13114","-1","","","","","Troll's Bane Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2574","12870","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","4","4","0","0","0","0","0","0","0","25" +"13115","-1","","","","","Sheepshear Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6990","34954","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","3","6","0","0","0","0","0","0","0","40" +"13116","-1","","","","","Spaulders of the Unseen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19370","96851","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","4","7","0","0","0","0","0","0","0","56" +"13117","-1","","","","","Ogron's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3830","19152","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","9","9","0","0","0","0","0","0","0","37" +"13118","-1","","","","","Serpentine Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","14","9","0","0","0","0","0","0","0","52" +"13119","-1","","","","","Enchanted Kodo Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3063","15316","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","4","0","0","0","0","0","0","0","0","34" +"13120","-1","","","","","Deepfury Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9505","47526","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","4","4","0","0","0","0","0","0","0","50" +"13121","-1","","","","","Wing of the Whelpling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3428","17142","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","4","0","0","0","0","0","0","0","0","33" +"13122","-1","","","","","Dark Phantom Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11489","57447","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","6","0","0","0","0","0","0","0","0","50" +"13123","-1","","","","","Dreamwalker Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33387","166939","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","17","20","0","0","0","0","0","0","0","57" +"13124","-1","","","","","Ravasaur Scale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3996","19981","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","3","11","0","0","0","0","0","0","0","30" +"13125","-1","","","","","Elven Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12954","64770","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","3","7","0","0","0","0","0","0","0","45" +"13126","-1","","","","","Battlecaller Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10374","51870","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","9","15","0","0","0","0","0","0","0","48" +"13127","-1","","","","","Frostreaver Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3021","15107","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","4","4","0","0","0","0","0","0","0","27" +"13128","-1","","","","","High Bergg Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10543","52717","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","10","15","0","0","0","0","0","0","0","42" +"13129","-1","","","","","Firemane Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7621","38107","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","5","0","0","0","0","0","0","0","0","34" +"13130","-1","","","","","Windrunner Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25065","125329","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","27","11","0","0","0","0","0","0","0","0","51" +"13131","-1","","","","","Sparkleshell Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2312","11563","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","4","0","0","0","0","0","0","0","0","24" +"13132","-1","","","","","Skeletal Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7340","36702","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","15","0","0","0","0","0","0","0","0","38" +"13133","-1","","","","","Drakesfire Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23083","115416","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","5","15","0","0","0","0","0","0","0","56" +"13134","-1","","","","","Belt of the Gladiator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7716","38584","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","7","0","0","0","0","0","0","0","0","44" +"13135","-1","","","","","Lordly Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14001","70008","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","5","3","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","8","8","7","7","0","0","0","0","0","54" +"13136","-1","","","","","Lil Timmy's Peashooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1456","7280","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","16" +"13137","-1","","","","","Ironweaver","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5874","29374","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","34","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","29" +"13138","-1","","","","","The Silencer","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11532","57661","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","42","-1","0","0","43","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","37" +"13139","-1","","","","","Guttbuster","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21029","105149","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","8","3","0","0","0","0","0","0","0","0","45" +"13140","-1","The key looks tiny enough to fit a small lock.","","","","Blood Red Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5202","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"13141","-1","","","","","Tooth of Gnarr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12093","48373","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","8","0","0","0","0","0","0","0","0","58" +"13142","-1","","","","","Brigam Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11642","58210","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","16","0","0","0","0","0","0","0","0","58" +"13143","-1","","","","","Mark of the Dragon Lord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21372","85490","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","56" +"13144","-1","","","","","Serenity Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6865","34327","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","7","0","0","0","0","0","0","0","0","48" +"13145","-1","","","","","Enormous Ogre Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2704","13522","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","5","5","0","0","0","0","0","0","0","40" +"13146","-1","","","","","Shell Launcher Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34704","173521","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","58","-1","0","0","48","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","53" +"13147","-1","","","","","Monster - Bow, White","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"13148","-1","","","","","Chillpike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62629","313145","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","61","-1","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13149","-1","","","","","Eldarathian Tome of Summoning Vol. 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13150","-1","","","","","Monster - Sword2H, Claymore Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13151","-1","","","","","The Mystic Studies of Hor'ank","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13152","-1","","","","","The Story With No Conclusion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13153","-1","","","","","Tome of Mal'cin Vorail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13154","-1","","","","","Jael'marin's Studies of the Arcane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13155","-1","","","","","Resonating Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13156","-1","","","","","Mystic Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13157","-1","","","","","Fetid Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13158","-1","","","","","Words of the High Chief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2251","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13159","-1","","","","","Bone Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13160","-1","","","","","Monster - Sword2H, Claymore Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13161","-1","","","","","Trindlehaven Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65749","328749","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","25","12","0","0","0","0","0","0","0","0","56" +"13162","-1","","","","","Reiver Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10558","52793","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","56" +"13163","-1","","","","","Relentless Scythe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69537","347689","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","62","-1","0","0","140","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","20","8","0","0","0","0","0","0","0","57" +"13164","-1","","","","","Heart of the Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10539","42158","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13165","-1","","","","","Monster - Sword, Long Silver - Green Pommel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13166","-1","","","","","Slamshot Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14204","71024","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","0","0","0","0","0","0","0","0","0","55" +"13167","-1","","","","","Fist of Omokk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59410","297052","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","60","-1","0","0","135","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13168","-1","","","","","Plate of the Shaman King","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19085","95425","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","12","15","0","0","0","0","0","0","0","55" +"13169","-1","","","","","Tressermane Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23948","119741","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","12","14","0","0","0","0","0","0","0","55" +"13170","-1","","","","","Skyshroud Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19230","96151","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","8","0","0","0","0","0","0","0","0","55" +"13171","-1","","","","","Smokey's Lighter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13172","-1","Bears the mark of Ezra Grimm.","","","","Grimm's Premium Tobacco","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13173","-1","","","","","Flightblade Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","11","47","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","32767","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","4","0","0","0","0","0","0","0","0","0","0","55" +"13174","-1","","","","","Plagued Flesh Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13175","-1","","","","","Voone's Twitchbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30619","153095","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","60","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","55" +"13176","-1","","","","","Scourge Data","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13177","-1","","","","","Talisman of Evasion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16396","65585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","0","0","0","0","0","0","0","0","0","55" +"13178","-1","","","","","Rosewine Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13782","55130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13179","-1","","","","","Brazecore Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14916","74583","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","11","10","0","0","0","0","0","0","0","0","55" +"13180","-1","Just 1 calorie.","","","","Stratholme Holy Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13181","-1","","","","","Demonskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8797","43988","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","9","9","0","0","0","0","0","0","0","52" +"13182","-1","","","","","Phase Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44142","220713","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","57","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","7","0","0","0","0","0","0","0","0","52" +"13183","-1","","","","","Venomspitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","51771","258857","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","65","0","0","0","1900","0","0","0","60","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13184","-1","","","","","Fallbrush Handgrips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13638","68191","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","12","11","0","0","0","0","0","0","0","56" +"13185","-1","","","","","Sunderseer Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16422","82111","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","4","0","0","0","0","0","0","0","56" +"13186","-1","","","","","Empty Felstone Field Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13187","-1","","","","","Empty Dalson's Tears Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13188","-1","","","","","Empty Writhing Haunt Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13189","-1","","","","","Empty Gahrron's Withering Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13190","-1","","","","","Filled Felstone Field Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13191","-1","","","","","Filled Dalson's Tears Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13192","-1","","","","","Filled Writhing Haunt Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13193","-1","","","","","Filled Gahrron's Withering Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13194","-1","","","","","Felstone Field Cauldron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13195","-1","","","","","Dalson's Tears Cauldron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13196","-1","","","","","Gahrron's Withering Cauldron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13197","-1","","","","","Writhing Haunt Cauldron Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13198","-1","","","","","Hurd Smasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50851","254256","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13199","-1","","","","","Crushridge Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4398","21994","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","5","11","0","0","0","0","0","0","0","0","36" +"13202","-1","","","","","Extended Annals of Darrowshire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2377","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13203","-1","","","","","Armswake Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15529","77649","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","55" +"13204","-1","","","","","Bashguuder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51945","259727","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","0","0","0","0","0","0","0","0","0","55" +"13205","-1","","","","","Rhombeard Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35031","175155","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","15","0","0","0","0","0","0","0","0","56" +"13206","-1","","","","","Wolfshear Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19880","99402","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","5","0","0","0","0","0","0","0","0","56" +"13207","-1","This is the head of the leader of the Shadow Council in Felwood.","","","","Shadow Lord Fel'dan's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13208","-1","","","","","Bleak Howler Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12520","62603","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","56" +"13209","-1","","","","","Seal of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13210","-1","","","","","Pads of the Dread Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18024","90122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","0","0","0","0","0","0","0","0","0","55" +"13211","-1","","","","","Slashclaw Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14474","72374","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","7","7","0","0","0","0","0","0","0","55" +"13212","-1","","","","","Halycon's Spiked Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10670","42683","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","55" +"13213","-1","","","","","Smolderweb's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9633","38533","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13214","-1","","","","","TestBoots - Puffed Mail Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13216","-1","","","","","Crown of the Penitent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","66252","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","0" +"13217","-1","","","","","Band of the Penitent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8814","35258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13218","-1","","","","","Fang of the Crystal Spider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","53388","266942","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","65","0","0","0","1600","0","0","0","61","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13219","-1","","","","","Monster - Item, Holy Symbol Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13220","-1","","","","","Monster - Item, Holy Symbol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13221","-1","","","","","Monster - Item, Staff Glowing Jeweled B01 Red Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13222","-1","","","","","Monster - Sword, Flaming Crimson Battlemage Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13223","-1","","","","","Stratholme Courier's Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13242","-1","","","","","Deprecated Stormrage Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16114","80573","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13243","-1","","","","","Argent Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36515","182578","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13244","-1","","","","","Gilded Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14482","72411","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","15","0","0","0","0","0","0","0","0","55" +"13245","-1","","","","","Kresh's Back","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","5323","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","15" +"13246","-1","","","","","Argent Avenger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53622","268114","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","0","71","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13247","-1","","","","","Quartermaster Zigris' Footlocker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5837","23350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13248","-1","","","","","Burstshot Harquebus","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29670","148350","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","8","0","0","0","0","0","0","0","0","0","51" +"13249","-1","","","","","Argent Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67782","338914","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","62","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","6","10","0","0","0","0","0","0","0","0" +"13250","-1","","","","","Head of Balnazzar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5262","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13251","-1","","","","","Head of Baron Rivendare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13252","-1","","","","","Cloudrunner Girdle","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12434","62170","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","0","0","0","0","0","0","0","0","55" +"13253","-1","","","","","Hands of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9983","49916","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","6","0","0","0","0","0","0","0","0","55" +"13254","-1","","","","","Astral Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25883","129419","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","4313","0","0","0","0","0","0","0","0","0","0","1930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","0","0","0","0","0","0","0","0","0","51" +"13255","-1","","","","","Trueaim Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14366","71834","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","54" +"13257","-1","","","","","Demonic Runed Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18088","90441","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","12","12","0","0","0","0","0","0","0","54" +"13258","-1","","","","","Slaghide Gauntlets","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13343","66715","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","745","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13259","-1","","","","","Ribsteel Footguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16069","80348","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","17","10","0","0","0","0","0","0","0","56" +"13260","-1","","","","","Wind Dancer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22561","112808","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","9","0","0","0","0","0","0","0","0","56" +"13261","-1","Glows with the power of magiskull.","","","","Globe of D'sak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","16","5","0","0","0","0","0","0","0","0","54" +"13262","-1","Blade of the Scarlet Highlord","","","","Ashbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","261407","1307038","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","76","-1","0","0","201","30","0","0","0","247","50","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","0","0","0","0","0","0","0","0","0","0","60" +"13282","-1","","","","","Ogreseer Tower Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13684","68423","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","13","0","0","0","0","0","0","0","54" +"13283","-1","","","","","Magus Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14907","59630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","7","8","0","0","0","0","0","0","0","54" +"13284","-1","","","","","Swiftdart Battleboots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19785","98926","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","17","10","0","0","0","0","0","0","0","53" +"13285","-1","","","","","The Blackrock Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54924","274624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","58","-1","0","0","159","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13286","-1","","","","","Rivenspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44106","220533","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13287","-1","","","","","Pattern: Raptor Hide Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13288","-1","","","","","Pattern: Raptor Hide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13289","-1","","","","","Egan's Blaster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13290","-1","","","","","Monster - Wand, Horde Purple Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13291","-1","","","","","Monster - Wand, Horde Red Feathered","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13292","-1","","","","","Monster - Wand, Horde Demon Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13293","-1","","","","","Monster - Wand, Horde Dark Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13302","-1","","","","","Market Row Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13303","-1","","","","","Crusaders' Square Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13304","-1","","","","","Festival Lane Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13305","-1","","","","","Elders' Square Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13306","-1","","","","","King's Square Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13307","-1","","","","","Ezra Grimm's Postbox Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13308","-1","","","","","Schematic: Ice Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","202","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13309","-1","","","","","Schematic: Lovingly Crafted Boomstick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13310","-1","","","","","Schematic: Accurate Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","202","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13311","-1","","","","","Schematic: Mechanical Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13312","-1","","","","","Monster - Mace, Hammer Gold Orange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13313","-1","The pages are tattered and worn...","","","","Sacred Highborne Writings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13314","-1","","","","","Alanna's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30222","151110","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","20","20","0","0","0","0","0","0","0","57" +"13315","-1","","","","","Testament of Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11396","45587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","0" +"13316","-1","","","","","Monster - Sword2H, Claymore Silver Yellow Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13317","146","","","","","Whistle of the Ivory Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13318","-1","","","","","Monster - Shield, Horde A01 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13319","-1","","","","","Monster - Shield, Horde B03","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13320","-1","This is used as a catalyst in transforming the toxins of the Scourge's cauldrons.","","","","Arcane Quickener","1","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13321","68","","","","","Green Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13322","68","","","","","Unpainted Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13323","68","","","","","Purple Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13324","68","","","","","Red & Blue Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13325","68","","","","","Fluorescent Green Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13326","68","","","","","White Mechanostrider Mod A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13327","68","","","","","Icy Blue Mechanostrider Mod A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13328","1101","","","","","Black Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13329","1101","","","","","Frost Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13330","-1","Derek keeps all his Radish Pals here","","","","Dereks Radish Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13331","146","","","","","Red Skeletal Horse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13332","146","","","","","Blue Skeletal Horse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13333","146","","","","","Brown Skeletal Horse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"13334","146","","","","","Green Skeletal Warhorse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13335","-1","","","","","Deathcharger's Reins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"13336","-1","","","","","Monster - Staff, Feathered Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13337","-1","","","","","Monster - Staff, Feathered Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13338","-1","","","","","Monster - Staff, Feathered Invert","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13339","-1","","","","","Monster - Staff, Feathered Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13340","-1","","","","","Cape of the Black Baron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16498","82494","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","58" +"13341","-1","","","","","Monster - Item, Vial Yellow Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13342","-1","","","","","Pet Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13343","-1","","","","","Pet Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13344","-1","","","","","Dracorian Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17210","86054","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","10","11","0","0","0","0","0","0","0","58" +"13345","-1","","","","","Seal of Rivendare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","7","0","0","0","0","0","0","0","0","58" +"13346","-1","","","","","Robes of the Exalted","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23118","115591","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","11","5","0","0","0","0","0","0","0","0","58" +"13347","-1","","","","","Crystal of Zin-Malor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13348","-1","","","","","Demonshear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72770","363850","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"13349","-1","","","","","Scepter of the Unholy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58429","292145","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","69","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","58" +"13350","-1","","","","","Insignia of the Black Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13351","-1","","","","","Crimson Hammersmith's Apron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13352","-1","","","","","Vosh'gajin's Snakestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13353","-1","","","","","Book of the Dead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","15","8","0","0","0","0","0","0","0","58" +"13354","-1","","","","","Ectoplasmic Resonator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13356","-1","","","","","Somatic Intensifier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13357","-1","","","","","Osseous Agitator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13358","-1","","","","","Wyrmtongue Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21036","105181","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","10","0","0","0","0","0","0","0","0","58" +"13359","-1","","","","","Crown of Tyranny","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25336","126683","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","-10","0","0","0","0","0","0","0","0","58" +"13360","-1","","","","","Gift of the Elven Magi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56517","282585","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","10","5","0","0","0","0","0","0","0","58" +"13361","-1","","","","","Skullforge Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56730","283650","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"13362","-1","","","","","Letter from the Front","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13363","-1","","","","","Municipal Proclamation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13364","-1","","","","","Ezra Grimm's Advertisement","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13365","-1","","","","","Town Meeting Notice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13366","-1","","","","","Ingenious Toy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13367","-1","","","","","Wrapped Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13368","-1","","","","","Bonescraper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55438","277190","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","62","-1","0","0","40","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13369","-1","","","","","Fire Striders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17526","87634","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","0","0","0","0","0","0","0","0","0","58" +"13370","-1","A device used to identify arcane components found in the body.","","","","Vitreous Focuser","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13371","-1","","","","","Father Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6657","26630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13372","-1","","","","","Slavedriver's Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63769","318846","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","60","-1","0","0","160","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13373","-1","","","","","Band of Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14846","59387","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","6","3","0","0","0","0","0","0","0","55" +"13374","-1","","","","","Soulstealer Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14315","71576","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","22","0","0","0","0","0","0","0","0","55" +"13375","-1","","","","","Crest of Retribution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30656","153284","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","2057","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13376","-1","","","","","Royal Tribunal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13738","68693","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","7","0","0","0","0","0","0","0","0","54" +"13377","-1","","","","","Miniature Cannon Balls","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","32767","0","0","20","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13378","-1","","","","","Songbird Blouse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21972","109860","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","4","5","7","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","13","13","13","13","0","0","0","0","0","53" +"13379","-1","","","","","Piccolo of the Flaming Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10734","42939","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13380","-1","","","","","Willey's Portable Howitzer","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38443","192216","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","61","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","9","0","0","0","0","0","0","0","0","0","56" +"13381","-1","","","","","Master Cannoneer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15433","77167","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","21","0","0","0","0","0","0","0","0","56" +"13382","-1","","","","","Cannonball Runner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10850","43400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13383","-1","","","","","Woollies of the Prancing Minstrel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26864","134323","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","10","0","0","0","0","0","0","0","0","53" +"13384","-1","","","","","Rainbow Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8988","44941","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","10","9","10","9","0","0","0","0","0","53" +"13385","-1","","","","","Tome of Knowledge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13237","52950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","8","8","8","8","0","0","0","0","0","56" +"13386","-1","","","","","Archivist Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15722","78610","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","975","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13387","-1","","","","","Foresight Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15779","78899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","933","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13388","-1","","","","","The Postmaster's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21117","105586","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","13","20","0","0","0","0","0","0","0","56" +"13389","-1","","","","","The Postmaster's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21746","108730","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","20","20","0","0","0","0","0","0","0","56" +"13390","-1","","","","","The Postmaster's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16367","81837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","10","10","0","0","0","0","0","0","0","56" +"13391","-1","","","","","The Postmaster's Treads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16425","82127","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","6","14","0","0","0","0","0","0","0","56" +"13392","-1","","","","","The Postmaster's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12211","48846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","6","3","0","0","0","0","0","0","0","56" +"13393","-1","","","","","Malown's Slam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62380","311904","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","61","-1","0","0","158","0","0","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13394","-1","","","","","Skul's Cold Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18176","90881","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","19","0","0","0","0","0","0","0","0","54" +"13395","-1","","","","","Skul's Fingerbone Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11403","57019","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","54" +"13396","-1","","","","","Skul's Ghastly Touch","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30853","154265","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13397","-1","","","","","Stoneskin Gargoyle Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15201","76008","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","7","14","0","0","0","0","0","0","0","56" +"13398","-1","","","","","Boots of the Shrieker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20028","100142","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","10","0","0","0","0","0","0","0","57" +"13399","-1","","","","","Gargoyle Shredder Talons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46312","231560","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","59","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","54" +"13400","-1","","","","","Vambraces of the Sadist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9296","46482","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","6","0","0","0","0","0","0","0","0","54" +"13401","-1","","","","","The Cruel Hand of Timmy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51440","257201","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","61","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13402","-1","","","","","Timmy's Galoshes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21168","105843","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","17","11","0","0","0","0","0","0","0","54" +"13403","-1","","","","","Grimgore Noose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9401","47008","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","9","17","0","0","0","0","0","0","0","54" +"13404","-1","","","","","Mask of the Unforgiven","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15895","79478","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","0","0","0","0","0","0","0","0","0","52" +"13405","-1","","","","","Wailing Nightbane Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13102","65511","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","0","0","0","0","0","0","0","0","52" +"13406","-1","","","","","Monster - Item, Mutton Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13407","-1","","","","","Monster - Item, Mutton with Bite Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13408","-1","","","","","Soul Breaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44142","220713","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","57","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13409","-1","","","","","Tearfall Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8119","40596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13422","-1","","","","","Stonescale Eel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13423","-1","","","","","Stonescale Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13442","-1","","","","","Mighty Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13443","-1","","","","","Superior Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","41" +"13444","-1","","","","","Major Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"13445","-1","","","","","Elixir of Superior Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","43" +"13446","-1","","","","","Major Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13447","-1","","","","","Elixir of the Sages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"13448","-1","Carries the Seal of Barov.","","","","The Deed to Caer Darrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13450","-1","Carries the Seal of Barov.","","","","The Deed to Southshore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13451","-1","Carries the Seal of Barov.","","","","The Deed to Tarren Mill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13452","-1","","","","","Elixir of the Mongoose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13453","-1","","","","","Elixir of Brute Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13454","-1","","","","","Greater Arcane Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"13455","-1","","","","","Greater Stoneshield Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13456","-1","","","","","Greater Frost Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13457","-1","","","","","Greater Fire Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13458","-1","","","","","Greater Nature Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13459","-1","","","","","Greater Shadow Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13460","-1","","","","","Greater Holy Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13461","-1","","","","","Greater Arcane Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13462","-1","","","","","Purification Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"13463","-1","","","","","Dreamfoil","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13464","-1","","","","","Golden Sansam","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13465","-1","","","","","Mountain Silversage","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13466","-1","","","","","Plaguebloom","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13467","-1","","","","","Icecap","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13468","-1","","","","","Black Lotus","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13469","-1","","","","","Head of Weldon Barov","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13470","-1","","","","","Head of Alexi Barov","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13471","-1","Carries the Seal of Barov.","","","","The Deed to Brill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13473","-1","","","","","Felstone Good Luck Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7164","28658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13474","-1","","","","","Farmer Dalson's Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24724","123624","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","56","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"13475","-1","","","","","Dalson Family Wedding Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8109","32436","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","0","0","0","0","0","0","0","0","0","0" +"13476","-1","","","","","Recipe: Mighty Rage Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","171","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13477","-1","","","","","Recipe: Superior Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","171","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13478","-1","","","","","Recipe: Elixir of Superior Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","171","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13479","-1","","","","","Recipe: Elixir of the Sages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","171","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13480","-1","","","","","Recipe: Major Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13481","-1","","","","","Recipe: Elixir of Brute Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13482","-1","","","","","Recipe: Transmute Air to Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13483","-1","","","","","Recipe: Transmute Fire to Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13484","-1","","","","","Recipe: Transmute Earth to Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13485","-1","","","","","Recipe: Transmute Water to Air","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13486","-1","","","","","Recipe: Transmute Undeath to Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13487","-1","","","","","Recipe: Transmute Water to Undeath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13488","-1","","","","","Recipe: Transmute Life to Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13489","-1","","","","","Recipe: Transmute Earth to Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13490","-1","","","","","Recipe: Greater Stoneshield Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","171","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13491","-1","","","","","Recipe: Elixir of the Mongoose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","171","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13492","-1","","","","","Recipe: Purification Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13493","-1","","","","","Recipe: Greater Arcane Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13494","-1","","","","","Recipe: Greater Fire Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13495","-1","","","","","Recipe: Greater Frost Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13496","-1","","","","","Recipe: Greater Nature Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13497","-1","","","","","Recipe: Greater Arcane Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13498","-1","","","","","Handcrafted Mastersmith Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19890","99454","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13499","-1","","","","","Recipe: Greater Shadow Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13500","-1","","","","","Recipe: Greater Holy Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13501","-1","","","","","Recipe: Major Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","171","59","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13502","-1","","","","","Handcrafted Mastersmith Girdle","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11987","59937","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","10","0","0","0","0","0","0","0","58" +"13503","-1","","","","","Alchemists' Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","8","0","0","0","0","0","0","0","0","0","0" +"13504","-1","","","","","Monster - Sword, Doomguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13505","-1","","","","","Runeblade of Baron Rivendare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91345","456725","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","171","0","0","0","0","257","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"13506","-1","","","","","Flask of Petrification","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13507","-1","","","","","Cliffwatcher Longhorn Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2271","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13508","-1","","","","","Eye of Arachnida","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4778","19115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13509","-1","","","","","Clutch of Foresight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5393","21573","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13510","-1","","","","","Flask of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13511","-1","","","","","Flask of Distilled Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13512","-1","","","","","Flask of Supreme Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13513","-1","","","","","Flask of Chromatic Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13514","-1","","","","","Wail of the Banshee","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5820","23280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13515","-1","","","","","Ramstein's Lightning Bolts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9600","38400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13517","-1","","","","","Recipe: Alchemists' Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","40000","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13518","-1","","","","","Recipe: Flask of Petrification","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13519","-1","","","","","Recipe: Flask of the Titans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13520","-1","","","","","Recipe: Flask of Distilled Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13521","-1","","","","","Recipe: Flask of Supreme Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13522","-1","","","","","Recipe: Flask of Chromatic Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13523","-1","The blood is still fresh.","","","","Blood of Innocents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13524","-1","","","","","Skull of Burning Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12458","49835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","10","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13525","-1","","","","","Darkbind Fingers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8698","43492","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13526","-1","","","","","Flamescarred Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10897","54485","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13527","-1","","","","","Lavawalker Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13149","65746","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13528","-1","","","","","Twilight Void Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13198","65993","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13529","-1","","","","","Husk of Nerub'enkan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32303","161517","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","15","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","56" +"13530","-1","","","","","Fangdrip Runners","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12453","62269","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13531","-1","","","","","Crypt Stalker Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21191","105959","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","18","0","18","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13532","-1","","","","","Darkspinner Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12762","63810","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","13","0","13","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13533","-1","","","","","Acid-etched Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12810","64052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13534","-1","","","","","Banshee Finger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37727","188639","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13535","-1","","","","","Coldtouch Phantom Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16829","84146","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","20","0","13","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13536","-1","","","","","Horn of Awakening","1","1500","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13537","-1","","","","","Chillhide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9884","49420","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13538","-1","","","","","Windshrieker Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19223","96115","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","20","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13539","-1","","","","","Banshee's Touch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8535","42677","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","13","0","13","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13542","-1","","","","","Demon Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13543","-1","","","","","Krastinov's Bag of Horrors UNUSED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13544","-1","Allows communication with the deceased of Caer Darrow.","","","","Spectral Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13545","-1","","","","","Shellfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13546","-1","","","","","Bloodbelly Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"13562","-1","","","","","Remains of Trey Lightforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13582","-1","","","","","Zergling Leash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13583","-1","","","","","Panda Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13584","-1","","","","","Diablo Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13585","-1","All of the pages are torn out.","","","","Keepsake of Remembrance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13586","-1","","","","","Test Crit Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13602","-1","","","","","Greater Spellstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","43" +"13603","-1","","","","","Major Spellstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13604","-1","","","","","Monster - Item, Bucket - Wood Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13605","-1","","","","","Monster - Item, Bucket - Metal Dirty Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13606","-1","","","","","Monster - Item, Bucket - Metal Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13607","-1","","","","","Monster - Item, Bucket - Metal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13608","-1","","","","","Monster - Item, Bucket - Metal Dirty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","5","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13609","-1","","","","","Monster - Item, Lantern - Round Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13610","-1","","","","","Monster - Item, Lantern - Square Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13611","-1","","","","","Monster - Hot Iron Poker Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13612","-1","","","","","Monster - Item, Glass - Purple Wine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13622","-1","","","","","Monster - Staff, D01 Circling Black Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13623","-1","","","","","Monster - Sword2H, Horde Skull Blue Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13624","-1","","","","","Soulbound Keepsake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13625","-1","","","","","Monster - Axe, Horde B03 Copper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13626","-1","","","","","Human Head of Ras Frostwhisper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13627","-1","","","","","Monster - Sword, Horde Jagged Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13628","-1","","","","","Monster - Shield, Horde B04","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13629","-1","","","","","Monster - Shield, Horde C02","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13630","-1","","","","","Monster - Shield, Horde C03","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13631","-1","","","","","Monster - Spear, Badass Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13632","-1","","","","","Monster - Spear, Badass Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13642","-1","","","","","Level 15 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13643","-1","","","","","Level 15 Test Gear Leather - Druid/Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13644","-1","","","","","Level 15 Test Gear Leather - Hunter/Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13645","-1","","","","","Level 15 Test Gear Mail - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13646","-1","","","","","Level 20 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13647","-1","","","","","Level 25 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13648","-1","","","","","Level 30 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13649","-1","","","","","Level 35 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13650","-1","","","","","Level 40 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13651","-1","","","","","Level 45 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13652","-1","","","","","Level 50 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13653","-1","","","","","Level 55 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13654","-1","","","","","Level 60 Test Gear Cloth - Mage/Priest/Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13655","-1","","","","","Level 65 Test Gear Cloth - Mage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13656","-1","","","","","Level 20 Test Gear Mail - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13657","-1","","","","","Level 25 Test Gear Mail - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13658","-1","","","","","Level 30 Test Gear Mail - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13659","-1","","","","","Level 35 Test Gear Mail - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13660","-1","","","","","Level 20 Test Gear Leather - Druid/Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13661","-1","","","","","Level 25 Test Gear Leather - Druid/Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13662","-1","","","","","Level 30 Test Gear Leather - Druid/Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13663","-1","","","","","Level 35 Test Gear Leather - Druid/Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13664","-1","","","","","Level 20 Test Gear Leather - Hunter/Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13665","-1","","","","","Level 25 Test Gear Leather - Hunter/Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13666","-1","","","","","Level 30 Test Gear Leather - Hunter/Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13667","-1","","","","","Level 35 Test Gear Leather - Hunter/Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13668","-1","","","","","Level 40 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13669","-1","","","","","Level 45 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13670","-1","","","","","Level 50 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13671","-1","","","","","Level 55 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13672","-1","","","","","Level 60 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13673","-1","","","","","Level 65 Test Gear Leather - Druid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13674","-1","","","","","Level 40 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13675","-1","","","","","Level 45 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13676","-1","","","","","Level 50 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13677","-1","","","","","Level 55 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13678","-1","","","","","Level 60 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13679","-1","","","","","Level 65 Test Gear Leather - Rogue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13680","-1","","","","","Level 40 Test Gear Plate - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13681","-1","","","","","Level 45 Test Gear Plate - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13682","-1","","","","","Level 50 Test Gear Plate - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13683","-1","","","","","Level 55 Test Gear Plate - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13684","-1","","","","","Level 60 Test Gear Plate - Paladin/Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13685","-1","","","","","Level 65 Test Gear Plate - Paladin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13686","-1","","","","","Level 40 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13687","-1","","","","","Level 45 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13688","-1","","","","","Level 50 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13689","-1","","","","","Level 55 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13690","-1","","","","","Level 60 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13691","-1","","","","","Level 65 Test Gear Mail - Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13692","-1","","","","","Level 40 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13693","-1","","","","","Level 45 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13694","-1","","","","","Level 50 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13695","-1","","","","","Level 55 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13696","-1","","","","","Level 60 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13697","-1","","","","","Level 65 Test Gear Mail - Shaman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13698","-1","","","","","Monster - Staff, Ornate Warlock Staff Black Glow Low","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13699","-1","","","","","Firestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13700","-1","","","","","Greater Firestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13701","-1","","","","","Major Firestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13702","-1","","","","","Doom Weed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13703","-1","","","","","Kodo Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13704","-1","","","","","Skeleton Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13705","-1","","","","","Monster - Staff, Yellow Jeweled with Low Purple Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13706","-1","","","","","Monster - Axe, 2H Horde Black Tombstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13707","-1","","","","","Monster - Sword, Horde Sword B04 Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13708","-1","","","","","Monster - Sword2H, Horde Massive Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13709","-1","","","","","Monster - Staff Green Sphere Glowing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13710","-1","","","","","Test Stamina Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"13711","-1","","","","","Test Attack Power Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13712","-1","","","","","Test Sword Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13713","-1","","","","","Test Dodge Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13714","-1","","","","","Test Parry Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13715","-1","","","","","Test Block Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13716","-1","","","","","Test Haste Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9652","48264","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13717","-1","","","","","Test Hit Chance Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13718","-1","","","","","Monster - Sword, Horde Jagged Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13719","-1","","","","","Monster - Sword, Horde Jagged Red w/ Low Yellow Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13720","-1","","","","","Monster - Staff, Feathered Invert - Glow Black High","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13721","-1","","","","","Monster - Staff, Wooden Handle Spiral Head White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13722","-1","","","","","Monster - Staff, Demon Skull Staff Low Purple Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13723","-1","","","","","Monster - Staff, Wood w/ Spiral Head White Low Purple Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13724","-1","","","","","Enriched Manna Biscuit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13725","-1","","","","","Krastinov's Bag of Horrors","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13726","-1","","","","","[PH] Rising Dawn Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13727","-1","","","","","[PH] Brilliant Dawn Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36324","181621","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13728","-1","","","","","[PH] Shining Dawn Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36450","182252","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13729","-1","","","","","[PH] Brilliant Dawn Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45725","228625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13730","-1","","","","","[PH] Brilliant Dawn Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55064","275322","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13731","-1","","","","","[PH] Brilliant Dawn Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33330","166651","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13732","-1","","","","","[PH] Rising Dawn Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13733","-1","","","","","[PH] Rising Dawn Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13734","-1","","","","","[PH] Rising Dawn Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13735","-1","","","","","[PH] Shining Dawn Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42306","211532","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13736","-1","","","","","[PH] Shining Dawn Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50962","254810","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13737","-1","","","","","[PH] Shining Dawn Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34104","170521","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13738","-1","","","","","[PH] Cloth Bracers of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34233","171168","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13739","-1","","","","","[PH] Cloth Bracers of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34359","171799","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13740","-1","","","","","[PH] Cloth Bracers of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34489","172447","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13741","-1","","","","","[PH] Leather Bracers of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43273","216368","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13742","-1","","","","","[PH] Mail Bracers of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52122","260614","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13743","-1","","","","","[PH] Plate Bracers of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35802","179013","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13744","-1","","","","","[PH] Plate Bracers of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35932","179660","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13745","-1","","","","","[PH] Plate Bracers of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36061","180308","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13746","-1","","","","","[PH] Mail Bracers of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54281","271409","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13747","-1","","","","","[PH] Mail Bracers of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54476","272380","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13748","-1","","","","","[PH] Leather Bracers of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45558","227793","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13749","-1","","","","","[PH] Leather Bracers of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45720","228603","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13750","-1","","","","","Monster - Staff, Jeweled Blue Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13751","-1","","","","","Monster - Staff, Jeweled Yellow Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13752","-1","","","","","Soulbound Keepsake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13753","-1","","","","","Monster - Staff, Jeweled Green Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13754","-1","","","","","Raw Glossy Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","120","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13755","-1","","","","","Winter Squid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","140","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13756","-1","","","","","Raw Summer Bass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","180","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13757","-1","","","","","Lightning Eel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","1200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13758","-1","","","","","Raw Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13759","-1","","","","","Raw Nightfin Snapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13760","-1","","","","","Raw Sunscale Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13761","-1","","","","","Frozen Eggs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13762","-1","","","","","[PH] Robe of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71339","356696","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13763","-1","","","","","[PH] Robe of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71598","357992","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13764","-1","","","","","[PH] Robe of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71857","359287","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13765","-1","","","","","[PH] Leather Chestguard of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90136","450684","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13766","-1","","","","","[PH] Leather Chestguard of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90460","452304","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13767","-1","","","","","[PH] Leather Chestguard of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90784","453923","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13768","-1","","","","","[PH] Mail Chestguard of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109330","546652","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13769","-1","","","","","[PH] Mail Chestguard of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109708","548543","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13770","-1","","","","","[PH] Mail Chestguard of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110097","550487","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13771","-1","","","","","[PH] Plate Chestguard of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66646","333234","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13772","-1","","","","","[PH] Plate Chestguard of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66905","334529","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13773","-1","","","","","[PH] Plate Chestguard of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67158","335790","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13774","-1","","","","","[PH] Cloth Leggings of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67417","337086","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13775","-1","","","","","[PH] Cloth Leggings of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69532","347661","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13776","-1","","","","","[PH] Cloth Leggings of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69791","348957","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13777","-1","","","","","[PH] Leather Leggings of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87554","437771","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13778","-1","","","","","[PH] Leather Leggings of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87878","439391","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13779","-1","","","","","[PH] Leather Leggings of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88202","441010","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13780","-1","","","","","[PH] Mail Leggings of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106220","531104","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13781","-1","","","","","[PH] Mail Leggings of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106609","533048","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13782","-1","","","","","[PH] Mail Leggings of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106998","534991","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13783","-1","","","","","[PH] Plate Leggings of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71591","357957","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13784","-1","","","","","[PH] Plate Leggings of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71843","359217","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13785","-1","","","","","[PH] Plate Leggings of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72102","360513","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13786","-1","","","","","[PH] Brilliant Dawn Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54271","271356","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13787","-1","","","","","[PH] Rising Dawn Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13788","-1","","","","","[PH] Shining Dawn Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50100","250503","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13789","-1","","","","","[PH] Brilliant Dawn Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62625","313128","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13790","-1","","","","","[PH] Rising Dawn Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13791","-1","","","","","[PH] Shining Dawn Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64214","321073","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13792","-1","","","","","[PH] Brilliant Dawn Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75151","375755","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13793","-1","","","","","[PH] Rising Dawn Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13794","-1","","","","","[PH] Shining Dawn Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75151","375755","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13795","-1","","","","","[PH] Brilliant Dawn Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50100","250503","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13796","-1","","","","","[PH] Rising Dawn Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13797","-1","","","","","[PH] Shining Dawn Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50100","250503","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13798","-1","","","","","[PH] Cloth Boots of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52721","263608","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13799","-1","","","","","[PH] Cloth Boots of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52910","264554","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13800","-1","","","","","[PH] Cloth Boots of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53105","265526","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13801","-1","","","","","[PH] Leather Boots of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66624","333121","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13802","-1","","","","","[PH] Leather Boots of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66867","334336","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13803","-1","","","","","[PH] Leather Boots of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67103","335518","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13804","-1","","","","","[PH] Mail Boots of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81175","405875","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13805","-1","","","","","[PH] Mail Boots of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81467","407339","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13806","-1","","","","","[PH] Mail Boots of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81760","408803","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13807","-1","","","","","[PH] Plate Boots of the Brilliant Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50589","252945","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13808","-1","","","","","[PH] Plate Boots of the Rising Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50783","253917","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13809","-1","","","","","[PH] Plate Boots of the Shining Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50977","254889","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13810","-1","","","","","Blessed Sunfruit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13811","-1","","","","","Necklace of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8988","35954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"13812","-1","","","","","Ring of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8303","33215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","14","0","0","0","0","0","0","0","0","0","0" +"13813","-1","","","","","Blessed Sunfruit Juice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13814","-1","","","","","Monster - Shield, Stromgarde B03","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13815","-1","","","","","Some Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13816","-1","","","","","Fine Longsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10561","52808","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","52","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","47" +"13817","-1","","","","","Tapered Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18796","93984","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","53" +"13818","-1","","","","","Jagged Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13431","67157","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","56","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","51" +"13819","-1","","","","","Balanced War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19880","99404","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","59","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","54" +"13820","-1","","","","","Clout Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12042","60211","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","54","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","49" +"13821","-1","","","","","Bulky Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17993","89968","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","57","-1","0","0","76","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","52" +"13822","-1","","","","","Spiked Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11442","57212","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","53","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","48" +"13823","-1","","","","","Stout War Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11924","59622","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","51","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","46" +"13824","-1","","","","","Recurve Long Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9015","45078","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","55","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","45" +"13825","-1","","","","","Primed Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10168","50841","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","52" +"13842","-1","","","","","Fall/Winter Morning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13843","-1","","","","","Fall/Winter Afternoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13844","-1","","","","","Fall/Winter Evening","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13845","-1","","","","","Fall/Winter Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13846","-1","","","","","Spring/Summer Morning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13847","-1","","","","","Spring/Summer Afternoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13848","-1","","","","","Spring/Summer Evening","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13849","-1","","","","","Spring/Summer Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13850","-1","","","","","Rumbleshot's Ammo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13851","-1","","","","","Hot Wolf Ribs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"13852","-1","Bears the mark of the Grand Crusader.","","","","The Grand Crusader's Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13853","-1","","","","","Slab of Carrion Worm Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13854","-1","","","","","Monster - Item, Tankard Dirty Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13855","-1","","","","","Monster - Item, Tankard Metal Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13856","-1","","","","","Runecloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5112","25564","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","8","0","0","0","0","0","0","0","0","46" +"13857","-1","","","","","Runecloth Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10878","54393","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","11","0","0","0","0","0","0","0","0","47" +"13858","-1","","","","","Runecloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10917","54589","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","17","11","0","0","0","0","0","0","0","0","47" +"13859","-1","","","","","Monster - Item, Tankard Wooden Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13860","-1","","","","","Runecloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8741","43705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","8","0","0","0","0","0","0","0","0","48" +"13861","-1","","","","","Monster - Item, Tankard Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13862","-1","","","","","Monster - Item, Tankard Gold Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13863","-1","","","","","Runecloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6617","33085","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","50" +"13864","-1","","","","","Runecloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9553","47767","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","9","0","0","0","0","0","0","0","0","51" +"13865","-1","","","","","Runecloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13555","67775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","52" +"13866","-1","","","","","Runecloth Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11358","56794","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","54" +"13867","-1","","","","","Runecloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12570","62850","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","10","0","0","0","0","0","0","0","0","56" +"13868","-1","","","","","Frostweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9665","48328","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","0","0","0","0","0","0","0","0","0","46" +"13869","-1","","","","","Frostweave Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9702","48513","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","46" +"13870","-1","","","","","Frostweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5471","27358","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","47" +"13871","-1","","","","","Frostweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13436","67183","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","51" +"13872","-1","","","","","Bundle of Wood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13873","-1","","","","","Viewing Room Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13874","-1","Venture Company Supplies","","","","Heavy Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13875","-1","","","","","Ironbound Locked Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13876","-1","","","","","40 Pound Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13877","-1","","","","","47 Pound Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13878","-1","","","","","53 Pound Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13879","-1","","","","","59 Pound Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13880","-1","","","","","68 Pound Grouper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13881","-1","","","","","Bloated Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13882","-1","","","","","42 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13883","-1","","","","","45 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13884","-1","","","","","49 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13885","-1","","","","","34 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13886","-1","","","","","37 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13887","-1","","","","","52 Pound Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13888","-1","","","","","Darkclaw Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13889","-1","","","","","Raw Whitescale Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13890","-1","","","","","Plated Armorfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","1400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13891","-1","","","","","Bloated Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13892","-1","","","","","Kodo Kombobulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"13893","-1","","","","","Large Raw Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13894","-1","","","","","Monster - Mace, Standard B01 White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13895","-1","","","","","Formal Dangui","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101324","506622","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13896","-1","","","","","Dark Green Wedding Hanbok","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11020","55103","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13897","-1","","","","","White Traditional Hanbok","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2976","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13898","-1","","","","","Royal Dangui","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57739","288699","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13899","-1","","","","","Red Traditional Hanbok","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3528","17641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13900","-1","","","","","Green Wedding Hanbok","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27442","137214","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13901","-1","","","","","15 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13902","-1","","","","","18 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13903","-1","","","","","22 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13904","-1","","","","","25 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13905","-1","","","","","29 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13906","-1","","","","","32 Pound Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13907","-1","","","","","7 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13908","-1","","","","","9 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13909","-1","","","","","12 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13910","-1","","","","","15 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13911","-1","","","","","19 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13912","-1","","","","","21 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13913","-1","","","","","22 Pound Lobster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13914","-1","","","","","70 Pound Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13915","-1","","","","","85 Pound Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13916","-1","","","","","92 Pound Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13917","-1","","","","","103 Pound Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13918","-1","","","","","Reinforced Locked Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13920","-1","","","","","Healthy Dragon Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5582","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13922","-1","","","","","Monster - Shield, B01 WoodSteelCap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13923","-1","","","","","Monster - Gun, Tauren Blade Silver","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"13924","-1","","","","","Monster - Gun, Tauren Scope Blade Feathered Silver Deluxe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"13925","-1","","","","","Monster - Mace2H, Maul B02 Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13926","-1","","","","","Golden Pearl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13927","-1","","","","","Cooked Glossy Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","32","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13928","-1","","","","","Grilled Squid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13929","-1","","","","","Hot Smoked Bass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13930","-1","","","","","Filet of Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","100","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13931","-1","","","","","Nightfin Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13932","-1","","","","","Poached Sunscale Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13933","-1","","","","","Lobster Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","14","280","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13934","-1","","","","","Mightfish Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13935","-1","","","","","Baked Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","1200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13936","-1","","","","","Deprecated Dreadmaster's Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17248","86241","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","13","20","0","0","0","0","0","0","0","0","57" +"13937","-1","","","","","Headmaster's Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87013","435068","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","135","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","20","0","0","0","0","0","0","0","0","57" +"13938","-1","","","","","Bonecreeper Stylus","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39304","196521","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","62","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","57" +"13939","-1","","","","","Recipe: Spotted Yellowtail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13940","-1","","","","","Recipe: Cooked Glossy Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13941","-1","","","","","Recipe: Filet of Redgill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13942","-1","","","","","Recipe: Grilled Squid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","185","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13943","-1","","","","","Recipe: Hot Smoked Bass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","185","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13944","-1","","","","","Tombstone Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26808","134044","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","10","0","0","0","0","0","0","0","0","57" +"13945","-1","","","","","Recipe: Nightfin Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13946","-1","","","","","Recipe: Poached Sunscale Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13947","-1","","","","","Recipe: Lobster Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13948","-1","","","","","Recipe: Mightfish Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13949","-1","","","","","Recipe: Baked Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13950","-1","","","","","Detention Strap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16447","82235","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","11","10","0","0","0","0","0","0","0","57" +"13951","-1","","","","","Vigorsteel Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11005","55026","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","57" +"13952","-1","","","","","Iceblade Hacker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56683","283415","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","62","-1","0","0","57","1","0","0","0","106","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13953","-1","","","","","Silent Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56880","284402","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13954","-1","","","","","Verdant Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20386","101934","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13955","-1","","","","","Stoneform Shoulders","1","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16367","81837","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13956","-1","","","","","Clutch of Andros","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10950","54751","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","9","0","0","0","0","0","0","0","0","56" +"13957","-1","","","","","Gargoyle Slashers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12427","62139","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","10","12","0","0","0","0","0","0","0","56" +"13958","-1","","","","","Wyrmthalak's Shackles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9505","47528","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","9","0","0","0","0","0","0","0","0","0" +"13959","-1","","","","","Omokk's Girth Restrainer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9542","47712","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","9","0","0","0","0","0","0","0","0","0" +"13960","-1","","","","","Heart of the Fiend","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12828","51315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","5","5","0","0","0","0","0","0","0","56" +"13961","-1","","","","","Halycon's Muzzle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18028","90141","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","5","0","0","0","0","0","0","0","0","0" +"13962","-1","","","","","Vosh'gajin's Strand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12064","60324","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","6","0","0","0","0","0","0","0","0","0" +"13963","-1","","","","","Voone's Vice Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14533","72665","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","9","0","0","0","0","0","0","0","0","0" +"13964","-1","","","","","Witchblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53612","268060","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","57" +"13965","-1","","","","","Blackhand's Breadth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13966","-1","","","","","Mark of Tyranny","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","10","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13967","-1","","","","","Windreaver Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23338","116692","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","0","0","0","0","0","0","0","0","0","56" +"13968","-1","","","","","Eye of the Beast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13969","-1","","","","","Loomguard Armbraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16019","80097","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","6","0","0","0","0","0","0","0","0","56" +"13982","-1","","","","","Warblade of Caer Darrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69826","349130","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","142","1","0","0","0","214","22","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13983","-1","","","","","Gravestone War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66754","333773","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","62","-1","0","0","144","0","0","0","0","217","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13984","-1","","","","","Darrowspike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57806","289034","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13986","-1","","","","","Crown of Caer Darrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17469","87349","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","8","0","0","0","0","0","0","0","0" +"14002","-1","","","","","Darrowshire Strongguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36720","183600","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","0","10","10","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","8","0","0","0","0","0","0","0","0","0" +"14022","-1","","","","","Barov Peasant Caller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14023","-1","","","","","Barov Peasant Caller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14024","-1","","","","","Frightalon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52422","262111","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","61","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"14025","-1","","","","","Mystic's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","941","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","12" +"14042","-1","","","","","Cindercloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10561","52808","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","47" +"14043","-1","","","","","Cindercloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5955","29778","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","49" +"14044","-1","","","","","Cindercloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9503","47516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","50" +"14045","-1","","","","","Cindercloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13480","67404","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","51" +"14046","-1","","","","","Runecloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14047","-1","","","","","Runecloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14048","-1","","","","","Bolt of Runecloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14062","-1","","","","","Kodo Mount","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"14082","-1","","","","","Monster - Mace2H, Tirion Fordring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14083","-1","","","","","Tyrande's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14084","-1","","","","","Monster - Mace2H, Cairne Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14085","-1","","","","","Monster - Glaive Vol'jin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14086","-1","","","","","Beaded Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14087","-1","","","","","Beaded Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"14088","-1","","","","","Beaded Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"14089","-1","","","","","Beaded Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","151","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14090","-1","","","","","Beaded Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","597","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","538","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14091","-1","","","","","Beaded Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","599","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","454","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14092","-1","","","","","Monster - Staff, Holy Staff Archbishop Benedictus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14093","-1","","","","","Beaded Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","106","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"14094","-1","","","","","Beaded Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","606","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","454","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14095","-1","","","","","Native Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14096","-1","","","","","Native Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1627","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","456","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14097","-1","","","","","Native Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","236","1183","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","539","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"14098","-1","","","","","Native Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","218","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14099","-1","","","","","Native Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","237","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"14100","-1","","","","","Brightcloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12089","60449","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","16","15","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14101","-1","","","","","Brightcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6066","30334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","12","11","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14102","-1","","","","","Native Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","300","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"14103","-1","","","","","Brightcloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9716","48582","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","7","7","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14104","-1","","","","","Brightcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15484","77420","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","17","16","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14105","-1","","","","","Monster - Bow, C01/B02 White","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"14106","-1","","","","","Felcloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18053","90268","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","0","0","0","0","0","0","0","0","0","56" +"14107","-1","","","","","Felcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13140","65704","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","50" +"14108","-1","","","","","Felcloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11112","55560","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","52" +"14109","-1","","","","","Native Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","341","1705","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","456","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14110","-1","","","","","Native Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","420","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"14111","-1","","","","","Felcloth Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10775","53875","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","53" +"14112","-1","","","","","Felcloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13509","67549","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","57" +"14113","-1","","","","","Aboriginal Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","699","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","875","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"14114","-1","","","","","Aboriginal Footwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","242","1211","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","792","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14115","-1","","","","","Aboriginal Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","351","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"14116","-1","","","","","Aboriginal Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"14117","-1","","","","","Aboriginal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","816","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","708","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14118","-1","","","","","Monster - Bow, C02/B02 Black","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"14119","-1","","","","","Aboriginal Loincloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","378","1891","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","540","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","12" +"14120","-1","","","","","Aboriginal Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","577","2887","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","457","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14121","-1","","","","","Aboriginal Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","579","2897","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","457","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14122","-1","","","","","Ritual Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","219","1098","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1044","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","13" +"14123","-1","","","","","Ritual Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","287","1439","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","960","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","12" +"14124","-1","","","","","Ritual Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1463","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","709","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14125","-1","","","","","Ritual Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","676","3381","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","541","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","16" +"14126","-1","","","","","Ritual Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","396","1983","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"14127","-1","","","","","Ritual Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","999","4999","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","458","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14128","-1","","","","","Wizardweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16093","80465","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","18","0","0","0","17","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14129","-1","","","","","Ritual Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","793","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14130","-1","","","","","Wizardweave Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12768","63843","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","18","0","0","0","18","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14131","-1","","","","","Ritual Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","242","1214","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","877","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14132","-1","","","","","Wizardweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12441","62206","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","16","0","0","0","16","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14133","-1","","","","","Ritual Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","4752","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","458","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14134","-1","","","","","Cloak of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11280","56401","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","6","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","50" +"14136","-1","","","","","Robe of Winter Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17025","85127","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","0","0","0","0","0","0","0","0","0","52" +"14137","-1","","","","","Mooncloth Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18113","90567","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","14","12","0","0","0","0","0","0","0","53" +"14138","-1","","","","","Mooncloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20042","100210","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","19","12","0","0","0","0","0","0","0","55" +"14139","-1","","","","","Mooncloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15840","79204","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","56" +"14140","-1","","","","","Mooncloth Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16693","83469","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","13","0","0","0","0","0","0","0","57" +"14141","-1","","","","","Ghostweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12859","64296","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","0","0","0","0","0","0","0","0","0","50" +"14142","-1","","","","","Ghostweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6087","30436","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","49" +"14143","-1","","","","","Ghostweave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5763","28817","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","48" +"14144","-1","","","","","Ghostweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14374","71871","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","53" +"14145","-1","","","","","Cursed Felblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1032","5161","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","18","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","13" +"14146","-1","","","","","Gloves of Spell Mastery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14084","70421","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31632","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","8","0","0","0","0","0","0","0","0","57" +"14147","-1","","","","","Cavedweller Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","311","1559","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","2","0","0","0","0","0","0","0","0","13" +"14148","-1","","","","","Crystalline Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1043","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","13" +"14149","-1","","","","","Subterranean Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1538","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","13" +"14150","-1","","","","","Robe of Evocation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2103","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","3","0","0","0","0","0","0","0","0","13" +"14151","-1","","","","","Chanting Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1055","5279","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","13" +"14152","-1","","","","","Robe of the Archmage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28815","144077","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31360","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","12","0","0","0","0","0","0","0","0","0","57" +"14153","-1","","","","","Robe of the Void","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28920","144603","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31488","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","14","0","0","0","0","0","0","0","0","0","57" +"14154","-1","","","","","Truefaith Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29028","145144","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31248","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","14","0","0","0","0","0","0","0","0","0","57" +"14155","-1","","","","","Mooncloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14156","-1","","","","","Bottomless Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14157","-1","","","","","Pagan Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","433","2169","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"14158","-1","","","","","Pagan Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1236","6180","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","459","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14159","-1","","","","","Pagan Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2852","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","794","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","17" +"14160","-1","","","","","Pagan Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1255","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1045","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14161","-1","","","","","Pagan Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","960","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","13" +"14162","-1","","","","","Pagan Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","445","2228","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","710","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14163","-1","","","","","Pagan Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1168","5841","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","459","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14164","-1","","","","","Pagan Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1563","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","877","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","16" +"14165","-1","","","","","Pagan Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1041","5208","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","543","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","20" +"14166","-1","","","","","Buccaneer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","238","1191","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1045","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14167","-1","","","","","Buccaneer's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1793","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","961","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14168","-1","","","","","Buccaneer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1379","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","709","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14169","-1","","","","","Aboriginal Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1433","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"14170","-1","","","","","Buccaneer's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14171","-1","","","","","Buccaneer's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","738","3693","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","542","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"14172","-1","","","","","Buccaneer's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","4188","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","458","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14173","-1","","","","","Buccaneer's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1405","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","877","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14174","-1","","","","","Buccaneer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1840","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","793","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14175","-1","","","","","Buccaneer's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4235","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","458","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14176","-1","","","","","Watcher's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","920","4600","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","795","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14177","-1","","","","","Watcher's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","631","3159","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1047","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14178","-1","","","","","Watcher's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1532","7661","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14179","-1","","","","","Watcher's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","747","3738","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","962","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14180","-1","","","","","Watcher's Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1870","9351","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","460","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14181","-1","","","","","Watcher's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","775","3877","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","712","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14182","-1","","","","","Watcher's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1167","5836","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1132","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14183","-1","","","","","Watcher's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","8550","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","544","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14184","-1","","","","","Watcher's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1716","8584","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","460","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14185","-1","","","","","Watcher's Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","647","3237","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","879","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","22" +"14186","-1","","","","","Raincaller Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1179","5897","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1132","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","24" +"14187","-1","","","","","Raincaller Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","717","3587","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1048","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14188","-1","","","","","Raincaller Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4911","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","963","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","22" +"14189","-1","","","","","Raincaller Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1588","7940","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14190","-1","","","","","Raincaller Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1932","9660","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14191","-1","","","","","Raincaller Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","4407","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","712","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14192","-1","","","","","Raincaller Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1946","9732","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14193","-1","","","","","Raincaller Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2006","10031","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","545","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14194","-1","","","","","Raincaller Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","756","3781","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","880","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14195","-1","","","","","Raincaller Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1252","6262","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","796","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","24" +"14196","-1","","","","","Thistlefur Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1673","8365","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","797","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14197","-1","","","","","Thistlefur Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","925","4625","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1048","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14198","-1","","","","","Thistlefur Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1531","7659","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","965","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14199","-1","","","","","Thistlefur Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1240","6200","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","713","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"14200","-1","","","","","Thistlefur Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2258","11294","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","630","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14201","-1","","","","","Thistlefur Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2060","10303","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1134","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14202","-1","","","","","Thistlefur Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3336","16681","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","462","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14203","-1","","","","","Thistlefur Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2754","13770","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","546","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14204","-1","","","","","Thistlefur Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3041","15206","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","462","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14205","-1","","","","","Thistlefur Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1042","5212","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14206","-1","","","","","Vital Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1046","5232","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1049","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14207","-1","","","","","Vital Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3076","15381","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","546","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14208","-1","","","","","Vital Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2316","11580","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","630","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14209","-1","","","","","Vital Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1196","5980","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"14210","-1","","","","","Vital Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1636","8184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","965","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14211","-1","","","","","Vital Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","6626","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","714","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14212","-1","","","","","Vital Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10974","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1134","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14213","-1","","","","","Vital Raiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3553","17768","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","463","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14214","-1","","","","","Vital Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2009","10048","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","798","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14215","-1","","","","","Vital Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3579","17898","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","463","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14216","-1","","","","","Geomancer's Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4887","24438","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","464","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14217","-1","","","","","Geomancer's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1638","8193","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","882","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14218","-1","","","","","Geomancer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2713","13568","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","799","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14219","-1","","","","","Geomancer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2046","10230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","966","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14220","-1","","","","","Geomancer's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3442","17214","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","632","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14221","-1","","","","","Geomancer's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1510","7554","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1050","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14222","-1","","","","","Geomancer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1834","9174","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14223","-1","","","","","Geomancer's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2698","13494","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1135","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14224","-1","","","","","Geomancer's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3901","19508","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","547","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14225","-1","","","","","Geomancer's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4694","23471","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","464","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14226","-1","","","","","Embersilk Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1731","8658","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1051","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14227","-1","","","","","Ironweb Spider Silk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14228","-1","","","","","Embersilk Coronet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3559","17799","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","632","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14229","-1","","","","","Embersilk Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11938","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","966","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14230","-1","","","","","Embersilk Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5164","25822","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","464","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14231","-1","","","","","Embersilk Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1904","9524","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14232","-1","","","","","Embersilk Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15486","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1135","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14233","-1","","","","","Embersilk Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4476","22381","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","548","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14234","-1","","","","","Embersilk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5240","26200","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","464","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14235","-1","","","","","Embersilk Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1789","8948","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","883","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14236","-1","","","","","Embersilk Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2909","14546","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","799","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14237","-1","","","","","Darkmist Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7206","36030","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","466","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14238","-1","","","","","Darkmist Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3691","18457","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","800","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14239","-1","","","","","Darkmist Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3176","15881","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","967","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14240","-1","","","","","Darkmist Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2294","11473","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1052","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14241","-1","","","","","Darkmist Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2311","11558","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","716","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14242","-1","","","","","Darkmist Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5413","27068","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","549","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14243","-1","","","","","Darkmist Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4075","20376","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1137","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14244","-1","","","","","Darkmist Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6870","34354","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","466","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14245","-1","","","","","Darkmist Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2346","11733","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","884","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14246","-1","","","","","Darkmist Wizard Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4451","22256","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","633","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14247","-1","","","","","Lunar Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4467","22337","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1137","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14248","-1","","","","","Lunar Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2372","11864","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1052","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14249","-1","","","","","Lunar Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7559","37798","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","466","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14250","-1","","","","","Lunar Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3872","19364","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","800","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14251","-1","","","","","Lunar Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3332","16661","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","968","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14252","-1","","","","","Lunar Coronet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4914","24571","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","633","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14253","-1","","","","","Lunar Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14095","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","717","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14254","-1","","","","","Lunar Raiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7698","38493","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","466","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14255","-1","","","","","Lunar Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2628","13144","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","884","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14256","-1","","","","","Felcloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14257","-1","","","","","Lunar Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6194","30973","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","549","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14258","-1","","","","","Bloodwoven Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3109","15545","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","885","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14259","-1","","","","","Bloodwoven Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5056","25280","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","802","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14260","-1","","","","","Bloodwoven Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2900","14503","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1053","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14261","-1","","","","","Bloodwoven Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4044","20222","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","969","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14262","-1","","","","","Bloodwoven Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3156","15783","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","717","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14263","-1","","","","","Bloodwoven Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5987","29936","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","634","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14264","-1","","","","","Bloodwoven Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8013","40066","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","550","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14265","-1","","","","","Bloodwoven Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9853","49268","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","467","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14266","-1","","","","","Bloodwoven Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5606","28031","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1138","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14267","-1","","","","","Bloodwoven Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9926","49633","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","467","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14268","-1","","","","","Gaea's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3486","17432","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1054","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14269","-1","","","","","Gaea's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5669","28346","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","802","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14270","-1","","","","","Gaea's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4877","24389","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","969","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14271","-1","","","","","Gaea's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6599","32995","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","635","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14272","-1","","","","","Gaea's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3820","19104","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","718","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14273","-1","","","","","Gaea's Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6374","31874","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1138","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14274","-1","","","","","Gaea's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10448","52244","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","551","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14275","-1","","","","","Gaea's Raiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11115","55575","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","468","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14276","-1","","","","","Gaea's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3598","17991","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","886","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14277","-1","","","","","Gaea's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10131","50656","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","468","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14278","-1","","","","","Opulent Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6725","33626","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1139","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14279","-1","","","","","Opulent Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4206","21031","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1055","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14280","-1","","","","","Opulent Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5919","29596","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","970","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14281","-1","","","","","Opulent Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8178","40890","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","636","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14282","-1","","","","","Opulent Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4552","22760","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14283","-1","","","","","Opulent Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11646","58233","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","552","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14284","-1","","","","","Opulent Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13135","65678","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","469","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14285","-1","","","","","Opulent Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6905","34527","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","803","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14286","-1","","","","","Opulent Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4620","23103","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","887","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14287","-1","","","","","Opulent Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13282","66414","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","469","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14288","-1","","","","","Arachnidian Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14132","70662","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","469","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14289","-1","","","","","Arachnidian Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5131","25659","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","887","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14290","-1","","","","","Arachnidian Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7725","38628","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","803","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14291","-1","","","","","Arachnidian Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4830","24153","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1055","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14292","-1","","","","","Arachnidian Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6795","33978","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","971","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14293","-1","","","","","Arachnidian Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9857","49287","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","637","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14294","-1","","","","","Arachnidian Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5223","26119","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14295","-1","","","","","Arachnidian Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13236","66184","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","553","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14296","-1","","","","","Arachnidian Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7568","37840","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1140","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14297","-1","","","","","Arachnidian Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13556","67782","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","469","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14298","-1","","","","","Bonecaster's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9628","48144","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1141","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14299","-1","","","","","Bonecaster's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8602","43013","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","804","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14300","-1","","","","","Bonecaster's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7685","38425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14301","-1","","","","","Bonecaster's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5451","27257","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1056","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14302","-1","","","","","Bonecaster's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6517","32587","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","721","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14303","-1","","","","","Bonecaster's Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16209","81045","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","470","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14304","-1","","","","","Bonecaster's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6194","30973","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","889","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14305","-1","","","","","Bonecaster's Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14349","71747","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","553","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14306","-1","","","","","Bonecaster's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16830","84154","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","470","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14307","-1","","","","","Bonecaster's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12064","60323","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","638","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14308","-1","","","","","Celestial Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17799","88997","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","471","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14309","-1","","","","","Celestial Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6866","34334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","889","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14310","-1","","","","","Celestial Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11615","58076","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14311","-1","","","","","Celestial Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6524","32621","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1057","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14312","-1","","","","","Celestial Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13541","67708","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","639","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14313","-1","","","","","Celestial Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9298","46493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","972","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14314","-1","","","","","Celestial Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7854","39270","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","722","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14315","-1","","","","","Celestial Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16550","82752","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","554","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14316","-1","","","","","Celestial Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11271","56355","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1142","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14317","-1","","","","","Celestial Silk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16633","83165","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","471","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14318","-1","","","","","Resplendent Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18408","92044","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","471","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14319","-1","","","","","Resplendent Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11401","57007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14320","-1","","","","","Resplendent Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6855","34277","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1057","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14321","-1","","","","","Resplendent Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9438","47190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","973","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14322","-1","","","","","Resplendent Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13712","68563","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","639","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14323","-1","","","","","Resplendent Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8322","41612","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","722","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14324","-1","","","","","Resplendent Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16706","83533","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","554","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14325","-1","","","","","Resplendent Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13204","66023","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1143","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14326","-1","","","","","Resplendent Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19479","97399","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","471","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14327","-1","","","","","Resplendent Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7659","38296","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","890","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14328","-1","","","","","Eternal Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21633","108167","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14329","-1","","","","","Eternal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14066","70332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","807","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14330","-1","","","","","Eternal Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8962","44812","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1059","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14331","-1","","","","","Eternal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11654","58273","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","974","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14332","-1","","","","","Eternal Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15674","78373","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","640","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"14333","-1","","","","","Eternal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9987","49937","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","723","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14334","-1","","","","","Eternal Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20044","100221","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","555","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14335","-1","","","","","Eternal Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15086","75432","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1143","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14336","-1","","","","","Eternal Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20137","100686","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14337","-1","","","","","Eternal Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8546","42731","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","891","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14338","-1","","","","","Empty Water Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14339","-1","","","","","Moonwell Water Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14340","-1","","","","","Freezing Lich Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21778","108891","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","0","0","0","0","0","0","0","0","0","57" +"14341","-1","","","","","Rune Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14342","-1","","","","","Mooncloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14343","-1","","","","","Small Brilliant Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14344","-1","","","","","Large Brilliant Shard","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14363","-1","","","","","Deprecated Runic Cloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326","1633","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"14364","-1","","","","","Mystic's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1624","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","13" +"14365","-1","","","","","Mystic's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1072","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","1","0","0","0","0","0","0","0","0","10" +"14366","-1","","","","","Mystic's Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","948","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14367","-1","","","","","Mystic's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1259","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","0","0","0","0","0","0","0","0","0","14" +"14368","-1","","","","","Mystic's Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","346","1730","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14369","-1","","","","","Mystic's Wrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","809","4048","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","7","0","0","0","0","0","0","0","0","18" +"14370","-1","","","","","Mystic's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","472","2364","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","14" +"14371","-1","","","","","Mystic's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","815","4079","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","7","0","0","0","0","0","0","0","0","18" +"14372","-1","","","","","Sanguine Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1430","7151","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","7","0","0","0","0","0","0","0","0","23" +"14373","-1","","","","","Sanguine Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","524","2624","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","3","0","0","0","0","0","0","0","0","20" +"14374","-1","","","","","Sanguine Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","699","3497","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14375","-1","","","","","Sanguine Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2644","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","20" +"14376","-1","","","","","Sanguine Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","551","2759","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","17" +"14377","-1","","","","","Sanguine Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","602","3011","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","4","0","0","0","0","0","0","0","0","21" +"14378","-1","","","","","Sanguine Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","997","4987","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","22" +"14379","-1","","","","","Sanguine Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1615","8075","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","4","0","0","0","0","0","0","0","0","24" +"14380","-1","","","","","Sanguine Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1473","7369","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","7","0","0","0","0","0","0","0","0","23" +"14381","-1","","","","","Grimtotem Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14382","-1","","","","","Durability Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14383","-1","","","","","Durability Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14384","-1","","","","","Durability Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14385","-1","","","","","Durability Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14386","-1","","","","","Durability Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14387","-1","","","","","Durability Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14388","-1","","","","","Durability Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14389","-1","","","","","Durability Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14390","-1","","","","","Durability Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","2","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14391","-1","","","","","Durability Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14392","-1","","","","","Durability Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14393","-1","","","","","Durability Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14394","-1","","","","","Durability Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"14395","-1","You know opening this would be a terrible idea.","","","","Spells of Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14396","-1","You're glad you don't understand the runes inscribed on the cover.","","","","Incantations from the Nether","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14397","-1","","","","","Resilient Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1600","8001","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","0","0","0","0","0","0","0","0","0","27" +"14398","-1","","","","","Resilient Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2355","11778","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","11","0","0","0","0","0","0","0","0","28" +"14399","-1","","","","","Resilient Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1465","7328","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","2","0","0","0","0","0","0","0","0","26" +"14400","-1","","","","","Resilient Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1215","6078","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","0","0","0","0","0","0","0","0","0","24" +"14401","-1","","","","","Resilient Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1786","8933","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","4","2","0","0","0","0","0","0","0","28" +"14402","-1","","","","","Resilient Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","4189","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","0","0","0","0","0","0","0","0","24" +"14403","-1","","","","","Resilient Handgrips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1017","5088","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","3","4","0","0","0","0","0","0","0","26" +"14404","-1","","","","","Resilient Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2471","12359","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","5","0","0","0","0","0","0","0","0","28" +"14405","-1","","","","","Resilient Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2480","12402","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","11","0","0","0","0","0","0","0","0","28" +"14406","-1","","","","","Resilient Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","935","4675","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","1","0","0","0","0","0","0","0","25" +"14407","-1","","","","","Stonecloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4266","21331","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","2","15","0","0","0","0","0","0","0","34" +"14408","-1","","","","","Stonecloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2275","11376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","8","0","0","0","0","0","0","0","0","30" +"14409","-1","","","","","Stonecloth Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1707","8535","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","3","1","0","0","0","0","0","0","0","28" +"14410","-1","","","","","Stonecloth Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2709","13549","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","3","0","0","0","0","0","0","0","0","33" +"14411","-1","","","","","Stonecloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1387","6938","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","5","0","0","0","0","0","0","0","0","30" +"14412","-1","","","","","Stonecloth Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2298","11494","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","4","0","0","0","0","0","0","0","0","31" +"14413","-1","","","","","Stonecloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3947","19736","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","15","0","0","0","0","0","0","0","34" +"14414","-1","","","","","Stonecloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1276","6381","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","3","0","0","0","0","0","0","0","29" +"14415","-1","","","","","Stonecloth Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3410","17051","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","5","3","0","0","0","0","0","0","0","32" +"14416","-1","","","","","Stonecloth Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1285","6429","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","4","0","0","0","0","0","0","0","0","29" +"14417","-1","","","","","Silksand Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5888","29440","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","16","0","0","0","0","0","0","0","0","39" +"14418","-1","","","","","Silksand Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3098","15490","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","3","0","0","0","0","0","0","0","0","34" +"14419","-1","","","","","Silksand Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1919","9596","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","33" +"14420","-1","","","","","Silksand Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2889","14446","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","33" +"14421","-1","","","","","Silksand Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3945","19725","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","9","10","0","0","0","0","0","0","0","37" +"14422","-1","","","","","Silksand Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2262","11314","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","5","0","0","0","0","0","0","0","0","35" +"14423","-1","","","","","Silksand Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3406","17033","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","3","1","0","0","0","0","0","0","0","35" +"14424","-1","","","","","Silksand Legwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5316","26584","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","9","0","0","0","0","0","0","0","0","37" +"14425","-1","","","","","Silksand Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6223","31118","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","5","16","0","0","0","0","0","0","0","0","39" +"14426","-1","","","","","Silksand Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2125","10626","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"14427","-1","","","","","Windchaser Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9124","45623","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","17","0","0","0","0","0","0","0","0","44" +"14428","-1","","","","","Windchaser Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4717","23586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","3","12","0","0","0","0","0","0","0","39" +"14429","-1","","","","","Windchaser Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2644","13220","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","9","0","0","0","0","0","0","0","0","38" +"14430","-1","","","","","Windchaser Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3686","18432","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","6","0","0","0","0","0","0","0","37" +"14431","-1","","","","","Windchaser Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2877","14388","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","3","0","0","0","0","0","0","0","0","39" +"14432","-1","","","","","Windchaser Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4679","23397","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","3","0","0","0","0","0","0","0","0","40" +"14433","-1","","","","","Windchaser Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6764","33822","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","10","12","0","0","0","0","0","0","0","41" +"14434","-1","","","","","Windchaser Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8706","43531","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","10","17","0","0","0","0","0","0","0","0","44" +"14435","-1","","","","","Windchaser Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2778","13893","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","38" +"14436","-1","","","","","Windchaser Coronet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5270","26351","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","4","15","7","0","0","0","0","0","0","0","41" +"14437","-1","","","","","Venomshroud Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12002","60014","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","18","0","0","0","0","0","0","0","0","49" +"14438","-1","","","","","Venomshroud Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6192","30961","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","5","0","0","0","0","0","0","0","0","43" +"14439","-1","","","","","Venomshroud Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3836","19180","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","42" +"14440","-1","","","","","Venomshroud Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5347","26737","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","6","0","0","0","0","0","0","0","0","41" +"14441","-1","","","","","Venomshroud Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7166","35834","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","10","0","0","0","0","0","0","0","0","45" +"14442","-1","","","","","Venomshroud Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4481","22407","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","6","0","0","0","0","0","0","0","0","44" +"14443","-1","","","","","Venomshroud Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6745","33729","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","4","0","0","0","0","0","0","0","0","44" +"14444","-1","","","","","Venomshroud Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10955","54775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","6","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","12","0","0","0","0","0","0","0","0","47" +"14445","-1","","","","","Venomshroud Silk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12353","61765","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","20","0","0","0","0","0","0","0","0","49" +"14446","-1","","","","","Venomshroud Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4248","21241","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","8","0","0","0","0","0","0","0","0","43" +"14447","-1","","","","","Highborne Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8801","44008","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","4","9","0","0","0","0","0","0","0","48" +"14448","-1","","","","","Highborne Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5555","27777","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","6","0","0","0","0","0","0","0","0","47" +"14449","-1","","","","","Highborne Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10125","50628","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","22","6","3","0","0","0","0","0","0","0","52" +"14450","-1","","","","","Highborne Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7364","36824","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","4","0","0","0","0","0","0","0","46" +"14451","-1","","","","","Highborne Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5536","27684","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","3","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","5","3","0","0","0","0","0","0","48" +"14452","-1","","","","","Highborne Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8836","44184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","49" +"14453","-1","","","","","Highborne Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15677","78386","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","19","15","0","0","0","0","0","0","0","0","54" +"14454","-1","","","","","Highborne Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5598","27993","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","12","5","0","0","0","0","0","0","0","48" +"14455","-1","","","","","Highborne Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15792","78962","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","15","0","0","0","0","0","0","0","0","54" +"14456","-1","","","","","Elunarian Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20230","101151","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","21","5","0","0","0","0","0","0","0","59" +"14457","-1","","","","","Elunarian Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7575","37878","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","10","0","0","0","0","0","0","0","0","53" +"14458","-1","","","","","Elunarian Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12573","62867","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","6","0","0","0","0","0","0","0","0","55" +"14459","-1","","","","","Elunarian Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10798","53991","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","11","2","0","0","0","0","0","0","0","52" +"14460","-1","","","","","Elunarian Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14661","73309","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","16","0","0","0","0","0","0","0","0","58" +"14461","-1","","","","","Elunarian Handgrips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9342","46714","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","8","8","0","0","0","0","0","0","0","57" +"14462","-1","","","","","Elunarian Sarong","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18751","93758","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","14","14","0","0","0","0","0","0","0","57" +"14463","-1","","","","","Elunarian Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14114","70572","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","10","0","0","0","0","0","0","0","57" +"14464","-1","","","","","Elunarian Silk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20822","104114","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","12","21","5","0","0","0","0","0","0","0","59" +"14465","-1","","","","","Elunarian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8596","42980","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","20","6","0","0","0","0","0","0","0","55" +"14466","-1","","","","","Pattern: Frostweave Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","197","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14467","-1","","","","","Pattern: Frostweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","197","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14468","-1","","","","","Pattern: Runecloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14469","-1","","","","","Pattern: Runecloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14470","-1","","","","","Pattern: Runecloth Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14471","-1","","","","","Pattern: Cindercloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14472","-1","","","","","Pattern: Runecloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14473","-1","","","","","Pattern: Ghostweave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14474","-1","","","","","Pattern: Frostweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14475","-1","","","","","Monster - Axe, 2H War A03 White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14476","-1","","","","","Pattern: Cindercloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14477","-1","","","","","Pattern: Ghostweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14478","-1","","","","","Pattern: Brightcloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14479","-1","","","","","Pattern: Brightcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14480","-1","","","","","Pattern: Ghostweave Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14481","-1","","","","","Pattern: Runecloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14482","-1","","","","","Pattern: Cindercloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14483","-1","","","","","Pattern: Felcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14484","-1","","","","","Pattern: Brightcloth Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14485","-1","","","","","Pattern: Wizardweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14486","-1","","","","","Pattern: Cloak of Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14487","-1","","","","","Bonechill Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53222","266113","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","62","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"14488","-1","","","","","Pattern: Runecloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14489","-1","","","","","Pattern: Frostweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14490","-1","","","","","Pattern: Cindercloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14491","-1","","","","","Pattern: Runecloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14492","-1","","","","","Pattern: Felcloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14493","-1","","","","","Pattern: Robe of Winter Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14494","-1","","","","","Pattern: Brightcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14495","-1","","","","","Pattern: Ghostweave Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14496","-1","","","","","Pattern: Felcloth Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14497","-1","","","","","Pattern: Mooncloth Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14498","-1","","","","","Pattern: Runecloth Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","197","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14499","-1","","","","","Pattern: Mooncloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14500","-1","","","","","Pattern: Wizardweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14501","-1","","","","","Pattern: Mooncloth Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14502","-1","","","","","Frostbite Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13051","65259","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","15","15","0","0","0","0","0","0","0","57" +"14503","-1","","","","","Death's Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19652","98260","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","4","7","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","10","10","0","0","0","0","0","57" +"14504","-1","","","","","Pattern: Runecloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14505","-1","","","","","Pattern: Wizardweave Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14506","-1","","","","","Pattern: Felcloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14507","-1","","","","","Pattern: Mooncloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14508","-1","","","","","Pattern: Felcloth Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14509","-1","","","","","Pattern: Mooncloth Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14510","-1","","","","","Pattern: Bottomless Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14511","-1","","","","","Pattern: Gloves of Spell Mastery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14512","-1","","","","","Pattern: Truefaith Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14513","-1","","","","","Pattern: Robe of the Archmage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14514","-1","","","","","Pattern: Robe of the Void","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14522","-1","","","","","Maelstrom Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31318","156591","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","20","20","0","0","0","0","0","0","0","57" +"14523","-1","","","","","Demon Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14524","-1","","","","","Monster - Sword, Katana 2H Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14525","-1","","","","","Boneclenched Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10561","52805","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","15","0","0","0","0","0","0","0","0","57" +"14526","-1","","","","","Pattern: Mooncloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14527","-1","","","","","Monster - Mace2H, Horde Hammer A03 Dark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14528","-1","","","","","Rattlecage Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34181","170909","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","7","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","12","7","0","0","0","0","0","0","0","57" +"14529","-1","","","","","Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14530","-1","","","","","Heavy Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14531","-1","","","","","Frightskull Shaft","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59891","299458","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","59","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"14532","-1","","","","","Monster - Mace2H, Warhammer Jade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14533","-1","","","","","Monster - Mace, Hammer Blue Mighty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14534","-1","","","","","Monster - Axe, Metal Blue Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14535","-1","","","","","Monster - Spear, Cool Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14536","-1","","","","","Bonebrace Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32271","161356","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1535","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","4","13","0","0","0","0","0","0","0","0","56" +"14537","-1","","","","","Corpselight Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17001","85008","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","0","0","0","0","0","0","0","0","0","57" +"14538","-1","","","","","Deadwalker Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17062","85312","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","9","0","0","0","0","0","0","0","0","57" +"14539","-1","","","","","Bone Ring Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21404","107021","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","30","6","6","5","0","0","0","0","0","57" +"14540","-1","","","","","Taragaman the Hungerer's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14541","-1","","","","","Barovian Family Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68426","342133","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"14542","-1","","","","","Kravel's Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14543","-1","","","","","Darkshade Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10478","52394","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","10","15","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","6","6","0","0","0","0","0","0","0","57" +"14544","-1","This small rune marks the bearer as a lieutenant in the Burning Blade.","","","","Lieutenant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14545","-1","","","","","Ghostloom Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26397","131987","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","13","10","0","0","0","0","0","0","0","57" +"14546","-1","","","","","Roon's Kodo Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14547","-1","","","","","Hand of Iruxos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14548","-1","","","","","Royal Cap Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24792","123964","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","9","8","0","0","0","0","0","0","0","57" +"14549","-1","","","","","Boots of Avoidance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7807","39038","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","14","11","0","0","0","0","0","0","0","0","40" +"14550","-1","","","","","Bladebane Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8802","44011","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","10","8","6","0","0","0","0","0","0","44" +"14551","-1","","","","","Edgemaster's Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53008","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","44" +"14552","-1","","","","","Stockade Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15378","76890","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","10","0","0","0","0","0","0","0","0","50" +"14553","-1","","","","","Sash of Mercy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17733","88667","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","14","0","0","0","0","0","0","0","0","56" +"14554","-1","","","","","Cloudkeeper Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29900","149502","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","20","20","0","0","0","0","0","0","0","57" +"14555","-1","","","","","Alcor's Sunrazor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78772","393864","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"14557","-1","","","","","The Lion Horn of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17880","71520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","58" +"14558","-1","","","","","Lady Maye's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10500","42000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","10","10","0","0","0","0","0","0","0","59" +"14559","-1","","","","","Prospector's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1398","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"14560","-1","","","","","Prospector's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","484","2421","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","14" +"14561","-1","","","","","Prospector's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14562","-1","","","","","Prospector's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","5199","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","2","0","0","0","0","0","0","0","18" +"14563","-1","","","","","Prospector's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1377","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14564","-1","","","","","Prospector's Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","304","1523","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","14" +"14565","-1","","","","","Prospector's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","809","4045","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","1","0","0","0","0","0","0","0","0","16" +"14566","-1","","","","","Prospector's Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1010","5054","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"14567","-1","","","","","Bristlebark Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","529","2648","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","18" +"14568","-1","","","","","Bristlebark Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","797","3987","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","3","0","0","0","0","0","0","0","0","18" +"14569","-1","","","","","Bristlebark Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","472","2360","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","2","0","0","0","0","0","0","0","0","17" +"14570","-1","","","","","Bristlebark Blouse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1870","9350","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","0","0","0","0","0","0","0","0","23" +"14571","-1","","","","","Bristlebark Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","2481","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","16" +"14572","-1","","","","","Bristlebark Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3047","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14573","-1","","","","","Bristlebark Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1289","6445","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","22" +"14574","-1","","","","","Bristlebark Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1568","7840","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","3","0","0","0","0","0","0","0","0","21" +"14575","-1","","","","","Monster - Mace, Bashguud's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14576","-1","","","","","Ebon Hilt of Marduk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48770","243853","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","59","-1","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","54" +"14577","-1","","","","","Skullsmoke Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21585","107926","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","10","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","56" +"14578","-1","","","","","Dokebi Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","983","4916","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","1","0","0","0","0","0","0","0","24" +"14579","-1","","","","","Dokebi Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1791","8958","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","0","0","0","0","0","0","0","0","26" +"14580","-1","","","","","Dokebi Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","818","4093","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","3","0","0","0","0","0","0","0","0","22" +"14581","-1","","","","","Dokebi Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2912","14562","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","6","0","0","0","0","0","0","0","0","28" +"14582","-1","","","","","Dokebi Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1088","5444","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","23" +"14583","-1","","","","","Dokebi Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1333","6668","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","27" +"14584","-1","","","","","Dokebi Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2673","13365","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","11","4","0","0","0","0","0","0","0","30" +"14585","-1","","","","","Dokebi Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2687","13438","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","3","0","0","0","0","0","0","0","27" +"14586","-1","","","","","Monster - Mace2H, Fist of Omokk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14587","-1","","","","","Dokebi Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2030","10153","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","2","0","0","0","0","0","0","0","27" +"14588","-1","","","","","Hawkeye's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1989","9947","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","6","0","0","0","0","0","0","0","31" +"14589","-1","","","","","Hawkeye's Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3294","16473","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","10","0","0","0","0","0","0","0","0","32" +"14590","-1","","","","","Hawkeye's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1821","9109","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","6","0","0","0","0","0","0","0","0","30" +"14591","-1","","","","","Hawkeye's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4180","20903","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","8","4","0","0","0","0","0","0","0","35" +"14592","-1","","","","","Hawkeye's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5594","27974","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","12","0","0","0","0","0","0","0","0","35" +"14593","-1","","","","","Hawkeye's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2210","11051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","3","0","0","0","0","0","0","0","0","30" +"14594","-1","","","","","Hawkeye's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2236","11182","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","8","0","0","0","0","0","0","0","0","32" +"14595","-1","","","","","Hawkeye's Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","22502","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","3","0","0","0","0","0","0","0","0","33" +"14596","-1","","","","","Hawkeye's Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3388","16942","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","5","0","0","0","0","0","0","0","0","33" +"14597","-1","","","","","Deprecated Warden's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7312","36563","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","7","0","0","0","0","0","0","0","0","36" +"14598","-1","","","","","Warden's Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2655","13275","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","4","6","0","0","0","0","0","0","0","35" +"14599","-1","","","","","Warden's Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4663","23316","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","9","3","0","0","0","0","0","0","0","37" +"14600","-1","","","","","Warden's Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2675","13377","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","35" +"14601","-1","","","","","Warden's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7307","36535","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","12","0","0","0","0","0","0","0","0","39" +"14602","-1","","","","","Warden's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2995","14975","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","5","0","0","0","0","0","0","0","34" +"14603","-1","","","","","Warden's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4383","21916","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","4","4","0","0","0","0","0","0","0","36" +"14604","-1","","","","","Warden's Wizard Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5986","29930","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","11","3","0","0","0","0","0","0","0","40" +"14605","-1","","","","","Warden's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6868","34340","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","38" +"14606","-1","","","","","Warden's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14775","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","4","0","0","0","0","0","0","0","0","36" +"14607","-1","","","","","Hawkeye's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5581","27906","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","6","0","0","0","0","0","0","0","0","32" +"14608","-1","","","","","Dokebi Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3162","15810","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","5","0","0","0","0","0","0","0","0","26" +"14609","-1","","","","","Deprecated Ceremonial Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","3003","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","2","0","0","0","0","0","0","0","0","12" +"14610","-1","","","","","Araj's Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14611","-1","","","","","Bloodmail Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32509","162547","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","15","10","10","0","0","0","0","0","0","56" +"14612","-1","","","","","Bloodmail Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32622","163111","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","16","15","12","0","0","0","0","0","0","56" +"14613","-1","Engraved: To my dear boy, Taelan. With Love, Father.","","","","Taelan's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14614","-1","","","","","Bloodmail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16427","82135","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","9","12","12","0","0","0","0","0","0","56" +"14615","-1","","","","","Bloodmail Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14916","74583","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","56" +"14616","-1","","","","","Bloodmail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22559","112796","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","9","9","0","0","0","0","0","0","56" +"14617","-1","","","","","Sawbones Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14618","-1","","","","","Monster - Staff, Jeweled Red Staff Low Red Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14619","-1","","","","","Skeletal Fragments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14620","-1","","","","","Deathbone Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10135","50677","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","0","0","0","0","0","0","0","0","0","56" +"14621","-1","","","","","Deathbone Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15261","76306","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","0","0","0","0","0","0","0","0","0","56" +"14622","-1","","","","","Deathbone Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10212","51064","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","0","0","0","0","0","0","0","0","0","56" +"14623","-1","","","","","Deathbone Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20503","102515","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","56" +"14624","-1","","","","","Deathbone Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20578","102891","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","56" +"14625","-1","Order of the Silver Hand","","","","Symbol of Lost Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14626","-1","","","","","Necropile Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20732","103664","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","22","12","12","0","0","0","0","0","0","0","56" +"14627","-1","","","","","Pattern: Bright Yellow Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","197","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14628","-1","","","","","Imbued Skeletal Fragments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14629","-1","","","","","Necropile Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10758","53790","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","7","11","0","0","0","0","0","0","0","56" +"14630","-1","","","","","Pattern: Enchanter's Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","197","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14631","-1","","","","","Necropile Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16251","81258","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","9","0","0","0","0","0","0","0","56" +"14632","-1","","","","","Necropile Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21746","108730","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","12","21","0","0","0","0","0","0","0","56" +"14633","-1","","","","","Necropile Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16367","81837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","56" +"14634","-1","","","","","Recipe: Frost Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","171","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14635","-1","","","","","Pattern: Gem-studded Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","165","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14636","-1","","","","","Cadaverous Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12476","62381","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","56" +"14637","-1","","","","","Cadaverous Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25048","125244","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","8","0","0","0","0","0","0","0","0","56" +"14638","-1","","","","","Cadaverous Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25145","125728","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","0","0","0","0","0","0","0","0","0","56" +"14639","-1","","","","","Schematic: Minor Recombobulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14640","-1","","","","","Cadaverous Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12668","63340","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","56" +"14641","-1","","","","","Cadaverous Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19074","95373","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","0","0","0","0","0","0","0","0","0","56" +"14642","-1","","","","","Monster - Gun, Tauren Feathers Silver","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"14643","-1","","","","","Monster - Axe, 2H Battle A03 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14644","-1","","","","","Skeleton Key Mold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14645","-1","This key is missing its head.","","","","Unfinished Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14646","-1","","","","","Northshire Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5805","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14647","-1","","","","","Coldridge Valley Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5841","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14648","-1","","","","","Shadowglen Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5842","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14649","-1","","","","","Valley of Trials Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5843","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14650","-1","","","","","Camp Narache Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5844","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14651","-1","","","","","Deathknell Gift Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5847","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14652","-1","","","","","Scorpashi Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4215","21079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","7","4","0","0","0","0","0","0","0","40" +"14653","-1","","","","","Scorpashi Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6854","34271","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","13","0","0","0","0","0","0","0","0","41" +"14654","-1","","","","","Scorpashi Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3931","19655","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","1","0","0","0","0","0","0","0","39" +"14655","-1","","","","","Scorpashi Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10392","51962","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","8","4","0","0","0","0","0","0","0","44" +"14656","-1","","","","","Scorpashi Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4300","21500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","5","2","0","0","0","0","0","0","0","39" +"14657","-1","","","","","Scorpashi Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4195","20979","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","41" +"14658","-1","","","","","Scorpashi Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7884","39422","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","13","3","0","0","0","0","0","0","0","44" +"14659","-1","","","","","Scorpashi Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9382","46912","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","0","0","0","0","0","0","0","0","42" +"14660","-1","","","","","Scorpashi Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7063","35315","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","7","6","0","0","0","0","0","0","0","42" +"14661","-1","","","","","Keeper's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5461","27305","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","7","6","0","0","0","0","0","0","0","44" +"14662","-1","","","","","Keeper's Hooves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9413","47065","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","12","3","0","0","0","0","0","0","0","46" +"14663","-1","","","","","Keeper's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5141","25707","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","9","0","0","0","0","0","0","0","0","43" +"14664","-1","","","","","Keeper's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15058","75293","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","18","5","0","0","0","0","0","0","0","49" +"14665","-1","","","","","Keeper's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6214","31072","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","43" +"14666","-1","","","","","Keeper's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6367","31836","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","46" +"14667","-1","","","","","Keeper's Wreath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10770","53852","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","10","10","0","0","0","0","0","0","0","48" +"14668","-1","","","","","Keeper's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13596","67984","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","47" +"14669","-1","","","","","Keeper's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9654","48270","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","6","0","0","0","0","0","0","0","0","46" +"14670","-1","","","","","Pridelord Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20396","101980","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","5","0","0","0","0","0","0","0","0","54" +"14671","-1","","","","","Pridelord Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13012","65062","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","14","0","0","0","0","0","0","0","51" +"14672","-1","","","","","Pridelord Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7309","36548","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","5","3","0","0","0","0","0","0","0","48" +"14673","-1","","","","","Pridelord Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8303","41518","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","9","5","0","0","0","0","0","0","0","47" +"14674","-1","","","","","Pridelord Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8270","41353","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","12","8","0","0","0","0","0","0","0","50" +"14675","-1","","","","","Pridelord Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8182","40910","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","8","7","0","0","0","0","0","0","0","51" +"14676","-1","","","","","Pridelord Halo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13841","69205","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","14","6","0","0","0","0","0","0","0","53" +"14677","-1","","","","","Pridelord Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18524","92621","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","23","4","3","0","0","0","0","0","0","0","53" +"14678","-1","","","","","Pridelord Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13156","65780","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","4","2","0","0","0","0","0","0","0","52" +"14679","-1","The picture brings a smile to your face.","","","","Of Love and Family","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2351","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","3","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14680","-1","","","","","Indomitable Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25101","125507","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","23","9","0","0","0","0","0","0","0","59" +"14681","-1","","","","","Indomitable Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17139","85696","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","6","16","0","0","0","0","0","0","0","57" +"14682","-1","","","","","Indomitable Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9906","49534","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","5","0","0","0","0","0","0","0","0","54" +"14683","-1","","","","","Indomitable Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11932","59660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","13","0","0","0","0","0","0","0","0","54" +"14684","-1","","","","","Indomitable Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10477","52389","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","17","0","0","0","0","0","0","0","0","55" +"14685","-1","","","","","Indomitable Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11594","57970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","14","0","0","0","0","0","0","0","0","57" +"14686","-1","","","","","Indomitable Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18327","91636","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","18","9","0","0","0","0","0","0","0","58" +"14687","-1","","","","","Indomitable Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23357","116787","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","15","7","0","0","0","0","0","0","0","57" +"14688","-1","","","","","Indomitable Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16742","83712","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","5","0","0","0","0","0","0","0","0","56" +"14691","-1","","","","","Deprecated Battle Chain Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","580","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14696","-1","","","","","Deprecated Battle Chain Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","118","591","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14706","-1","","","","","Monster - Staff, 3 Piece Taped Staff Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14707","-1","","","","","Monster - Staff, 3 Piece Taped Staff Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14722","-1","","","","","War Paint Anklewraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","424","2121","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","12" +"14723","-1","","","","","War Paint Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","290","1450","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","12" +"14724","-1","","","","","War Paint Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","253","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","1","1","0","0","0","0","0","0","0","11" +"14725","-1","","","","","War Paint Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1460","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","12" +"14726","-1","","","","","War Paint Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1685","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"14727","-1","","","","","War Paint Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","778","3890","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","3","1","0","0","0","0","0","0","0","14" +"14728","-1","","","","","War Paint Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","485","2428","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14729","-1","","","","","War Paint Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","870","4350","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","15" +"14730","-1","","","","","War Paint Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6119","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","4","0","0","0","0","0","0","0","0","18" +"14742","-1","","","","","Hulking Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1118","5592","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14743","-1","","","","","Hulking Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","583","2916","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","2","0","0","0","0","0","0","0","0","17" +"14744","-1","","","","","Hulking Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2310","11551","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","5","0","0","0","0","0","0","0","0","23" +"14745","-1","","","","","Hulking Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","444","2221","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","1","0","0","0","0","0","0","0","0","15" +"14746","-1","","","","","Hulking Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2947","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","17" +"14747","-1","","","","","Hulking Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","668","3343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","1","0","0","0","0","0","0","0","18" +"14748","-1","","","","","Hulking Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","7752","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","3","0","0","0","0","0","0","0","0","20" +"14749","-1","","","","","Hulking Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","6625","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","2","0","0","0","0","0","0","0","0","21" +"14750","-1","","","","","Slayer's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1068","5340","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","0","0","0","0","0","0","0","0","23" +"14751","-1","","","","","Slayer's Surcoat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3454","17271","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","5","3","0","0","0","0","0","0","0","28" +"14752","-1","","","","","Slayer's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","978","4892","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","3","0","0","0","0","0","0","0","0","22" +"14753","-1","","","","","Slayer's Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2610","13052","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","7","3","0","0","0","0","0","0","0","28" +"14754","-1","","","","","Slayer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1193","5965","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"14755","-1","","","","","Slayer's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1118","5590","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","0","0","0","0","0","0","0","0","23" +"14756","-1","","","","","Slayer's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1860","9300","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","4","0","0","0","0","0","0","0","0","24" +"14757","-1","","","","","Slayer's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3298","16491","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","3","1","0","0","0","0","0","0","0","27" +"14758","-1","","","","","Slayer's Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2267","11335","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","3","0","0","0","0","0","0","0","0","26" +"14759","-1","","","","","Enduring Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2009","10049","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","3","2","0","0","0","0","0","0","0","29" +"14760","-1","","","","","Enduring Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6263","31318","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","7","3","0","0","0","0","0","0","0","34" +"14761","-1","","","","","Enduring Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2024","10122","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","3","0","0","0","0","0","0","0","0","29" +"14762","-1","","","","","Enduring Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4074","20373","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","4","1","0","0","0","0","0","0","0","32" +"14763","-1","","","","","Enduring Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1685","8425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","2","2","0","0","0","0","0","0","0","27" +"14764","-1","","","","","Enduring Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","11254","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","5","3","0","0","0","0","0","0","0","30" +"14765","-1","","","","","Enduring Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4427","22139","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","6","3","0","0","0","0","0","0","0","33" +"14766","-1","","","","","Enduring Breeches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27430","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","6","8","0","0","0","0","0","0","0","32" +"14767","-1","","","","","Enduring Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4478","22393","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","33" +"14768","-1","","","","","Ravager's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8566","42834","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","10","10","4","0","0","0","0","0","0","39" +"14769","-1","","","","","Ravager's Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5554","27772","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","4","0","0","0","0","0","0","0","37" +"14770","-1","","","","","Ravager's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3172","15864","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","0","0","0","0","0","0","0","0","35" +"14771","-1","","","","","Ravager's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3030","15150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","2","2","0","0","0","0","0","0","0","34" +"14772","-1","","","","","Ravager's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3284","16423","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","6","0","0","0","0","0","0","0","0","35" +"14773","-1","","","","","Ravager's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3052","15263","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","6","4","0","0","0","0","0","0","0","34" +"14774","-1","","","","","Ravager's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6252","31262","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","7","0","0","0","0","0","0","0","0","38" +"14775","-1","","","","","Ravager's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8367","41836","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","9","9","0","0","0","0","0","0","0","38" +"14776","-1","","","","","Ravager's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6326","31633","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","5","3","0","0","0","0","0","0","0","38" +"14777","-1","","","","","Ravager's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9710","48551","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","6","3","0","0","0","0","0","0","0","39" +"14778","-1","","","","","Khan's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4933","24666","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","6","0","0","0","0","0","0","0","40" +"14779","-1","","","","","Khan's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13347","66738","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","10","0","0","0","0","0","0","0","0","44" +"14780","-1","","","","","Khan's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14289","71446","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","1521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","9","3","0","0","0","0","0","0","0","44" +"14781","-1","","","","","Khan's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4617","23089","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","8","1","0","0","0","0","0","0","0","39" +"14782","-1","","","","","Khan's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5004","25023","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","7","4","0","0","0","0","0","0","0","40" +"14783","-1","","","","","Khan's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5424","27123","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","7","0","0","0","0","0","0","0","0","41" +"14784","-1","","","","","Khan's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8202","41011","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","5","0","0","0","0","0","0","0","0","41" +"14785","-1","","","","","Khan's Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9558","47794","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","7","3","0","0","0","0","0","0","0","43" +"14786","-1","","","","","Khan's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11841","59209","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","11","5","0","0","0","0","0","0","0","42" +"14787","-1","","","","","Khan's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8323","41618","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","5","0","0","0","0","0","0","0","0","42" +"14788","-1","","","","","Protector Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6408","32042","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","0","0","0","0","0","0","0","0","44" +"14789","-1","","","","","Protector Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17541","87708","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","4","4","0","0","0","0","0","0","0","49" +"14790","-1","","","","","Protector Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18781","93907","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","5","10","0","0","0","0","0","0","0","49" +"14791","-1","","","","","Protector Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6056","30282","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","4","2","0","0","0","0","0","0","0","43" +"14792","-1","","","","","Protector Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6960","34800","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","4","0","0","0","0","0","0","0","0","45" +"14793","-1","","","","","Protector Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6985","34926","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","10","4","0","0","0","0","0","0","0","45" +"14794","-1","","","","","Protector Ankleguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10563","52818","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","8","0","0","0","0","0","0","0","45" +"14795","-1","","","","","Protector Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12690","63454","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","7","0","0","0","0","0","0","0","0","48" +"14796","-1","","","","","Protector Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16983","84917","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","6","0","0","0","0","0","0","0","0","48" +"14797","-1","","","","","Protector Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11427","57137","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","6","0","0","0","0","0","0","0","0","46" +"14798","-1","","","","","Bloodlust Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24037","120185","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","20","8","0","0","0","0","0","0","0","54" +"14799","-1","","","","","Bloodlust Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17308","86542","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","4","9","0","0","0","0","0","0","0","53" +"14800","-1","","","","","Bloodlust Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25826","129132","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","11","0","0","0","0","0","0","0","0","54" +"14801","-1","","","","","Bloodlust Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8156","40782","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","9","0","0","0","0","0","0","0","0","47" +"14802","-1","","","","","Bloodlust Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9749","48747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","7","0","0","0","0","0","0","0","50" +"14803","-1","","","","","Bloodlust Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9087","45438","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","9","0","0","0","0","0","0","0","0","50" +"14804","-1","","","","","Bloodlust Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16296","81482","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","14","0","0","0","0","0","0","0","0","53" +"14805","-1","","","","","Bloodlust Britches","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20577","102886","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","7","14","0","0","0","0","0","0","0","52" +"14806","-1","","","","","Bloodlust Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15560","77804","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","14","0","0","0","0","0","0","0","0","52" +"14807","-1","","","","","Bloodlust Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8211","41058","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","5","0","0","0","0","0","0","0","0","48" +"14808","-1","","","","","Warstrike Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11581","57907","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","5","4","0","0","0","0","0","0","0","54" +"14809","-1","","","","","Warstrike Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20276","101382","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","6","4","0","0","0","0","0","0","0","57" +"14810","-1","","","","","Warstrike Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11669","58345","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","3","0","0","0","0","0","0","0","0","54" +"14811","-1","","","","","Warstrike Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29898","149491","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","23","3","0","0","0","0","0","0","0","59" +"14812","-1","","","","","Warstrike Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32007","160037","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","1946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","15","0","0","0","0","0","0","0","0","59" +"14813","-1","","","","","Warstrike Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53007","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","10","3","0","0","0","0","0","0","0","52" +"14814","-1","","","","","Warstrike Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21593","107967","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","10","3","0","0","0","0","0","0","0","58" +"14815","-1","","","","","Warstrike Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13760","68803","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","11","0","0","0","0","0","0","0","57" +"14816","-1","","","","","Warstrike Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27620","138101","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","22","10","3","0","0","0","0","0","0","0","57" +"14817","-1","","","","","Warstrike Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20883","104419","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","8","0","0","0","0","0","0","0","0","57" +"14818","-1","","","","","Monster - Mace2H, Horde Spiked Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14820","-1","","","","","Monster - Mace2H, Horde Skull Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14821","-1","","","","","Symbolic Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5290","26452","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","9","0","0","0","0","0","0","0","0","40" +"14822","-1","","","","","Monster - Mace2H, Horde Metal Spiked Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14823","-1","","","","","Monster - Mace2H, Horde Red Spiked Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14824","-1","","","","","Monster - Mace2H, Horde Black Spiked Badass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14825","-1","","","","","Symbolic Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8595","42977","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","4","4","0","0","0","0","0","0","0","38" +"14826","-1","","","","","Symbolic Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2311","11557","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","6","0","0","0","0","0","0","0","0","40" +"14827","-1","","","","","Symbolic Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2320","11600","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","3","0","0","0","0","0","0","0","0","40" +"14828","-1","","","","","Symbolic Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3772","18864","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","6","4","0","0","0","0","0","0","0","40" +"14829","-1","","","","","Symbolic Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5049","25249","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","6","0","0","0","0","0","0","0","0","40" +"14830","-1","","","","","Symbolic Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3801","19007","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","40" +"14831","-1","","","","","Symbolic Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4120","20603","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","5","0","0","0","0","0","0","0","0","40" +"14832","-1","","","","","Symbolic Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2363","11819","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","0","0","0","0","0","0","0","0","40" +"14833","-1","","","","","Tyrant's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2988","14944","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","40" +"14834","-1","","","","","Tyrant's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2777","13889","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","4","0","0","0","0","0","0","0","40" +"14835","-1","","","","","Tyrant's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8192","40964","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","7","3","0","0","0","0","0","0","0","43" +"14836","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14837","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Purple Low Purple Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14838","-1","","","","","Tyrant's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2892","14460","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","3","0","0","0","0","0","0","0","0","40" +"14839","-1","","","","","Tyrant's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4701","23509","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","8","8","0","0","0","0","0","0","0","40" +"14840","-1","","","","","Tyrant's Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7925","39627","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","4","0","0","0","0","0","0","0","0","42" +"14841","-1","","","","","Tyrant's Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4284","21423","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","4","0","0","0","0","0","0","0","0","40" +"14842","-1","","","","","Tyrant's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12483","62415","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","5","0","0","0","0","0","0","0","0","43" +"14843","-1","","","","","Tyrant's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5036","25180","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","5","4","0","0","0","0","0","0","0","41" +"14844","-1","","","","","Sunscale Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11471","57358","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","6","0","0","0","0","0","0","0","0","49" +"14845","-1","","","","","Monster - Staff, Wooden Handle Rounded Head Low Yellow Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14846","-1","","","","","Sunscale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4534","22673","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","3","0","0","0","0","0","0","0","45" +"14847","-1","","","","","Sunscale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4254","21272","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","5","0","0","0","0","0","0","0","0","44" +"14848","-1","","","","","Sunscale Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6854","34271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","3","5","0","0","0","0","0","0","0","45" +"14849","-1","","","","","Sunscale Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8271","41358","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","12","6","0","0","0","0","0","0","0","48" +"14850","-1","","","","","Sunscale Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10442","52214","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","47" +"14851","-1","","","","","Sunscale Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7416","37083","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","5","4","0","0","0","0","0","0","0","46" +"14852","-1","","","","","Sunscale Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19420","97100","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","10","5","0","0","0","0","0","0","0","49" +"14853","-1","","","","","Sunscale Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4174","20870","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","6","2","0","0","0","0","0","0","0","43" +"14854","-1","","","","","Vanguard Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16204","81023","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","7","6","0","0","0","0","0","0","0","54" +"14855","-1","","","","","Vanguard Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6502","32510","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","6","9","0","0","0","0","0","0","0","50" +"14856","-1","","","","","Vanguard Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6156","30781","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","49" +"14857","-1","","","","","Vanguard Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9266","46332","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","8","3","0","0","0","0","0","0","0","49" +"14858","-1","","","","","Vanguard Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11740","58702","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","10","0","0","0","0","0","0","0","0","53" +"14859","-1","","","","","Vanguard Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14820","74102","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","10","0","0","0","0","0","0","0","0","52" +"14860","-1","","","","","Vanguard Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10523","52616","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","12","8","0","0","0","0","0","0","0","51" +"14861","-1","","","","","Vanguard Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5045","25227","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","11","0","0","0","0","0","0","0","0","47" +"14862","-1","","","","","Warleader's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18339","91699","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","25","8","0","0","0","0","0","0","0","0","58" +"14863","-1","","","","","Warleader's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7951","39759","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","6","0","0","0","0","0","0","0","0","55" +"14864","-1","","","","","Warleader's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7602","38012","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","10","6","0","0","0","0","0","0","0","54" +"14865","-1","","","","","Warleader's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12018","60094","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","8","0","0","0","0","0","0","0","0","55" +"14866","-1","","","","","Warleader's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13301","66507","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","16","5","0","0","0","0","0","0","0","57" +"14867","-1","","","","","Warleader's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17802","89014","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","18","7","0","0","0","0","0","0","0","57" +"14868","-1","","","","","Warleader's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13109","65547","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","6","0","0","0","0","0","0","0","0","56" +"14869","-1","","","","","Warleader's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7577","37886","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","2","0","0","0","0","0","0","0","0","53" +"14870","-1","","","","","Monster - Axe, 2H Horde Massive Spiked","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14871","-1","","","","","Monster - Sword, Horde C02 Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14872","-1","","","","","Tirion's Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14873","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14874","-1","","","","","Monster - Axe, Horde C02 Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14875","-1","","","","","Monster - Axe, Horde Double Blade A02","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14876","-1","","","","","Monster - Axe, Horde Crystal Blade A03","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14877","-1","","","","","Monster - Axe, Horde Spiked A04","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14878","-1","","","","","Monster - Sword2H, Katana B01 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14879","-1","","","","","Monster - Polearm, Blademaster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14880","-1","","","","","Monster - Axe, Wide Blade Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14881","-1","","","","","Monster - Glaive - 3 Blade Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14882","-1","","","","","Monster - Glaive - 2 Blade Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14883","-1","","","","","Test Glaive A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","120","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14884","-1","","","","","Test Glaive B","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14885","-1","","","","","Test Glaive C","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14886","-1","","","","","Test Glaive D","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14887","-1","","","","","Test Glaive E","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14888","-1","","","","","Test Glaive F","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14889","-1","","","","","Test Glaive G","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14890","-1","","","","","Test Glaive H","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14891","-1","","","","","Test Glaive I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14892","-1","","","","","Test Glaive J","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14893","-1","","","","","Monster - Axe, Horde C01 Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14894","-1","","","","","Lily Root","1","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14895","-1","","","","","Saltstone Surcoat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4904","24524","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","527","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14896","-1","","","","","Saltstone Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3418","17091","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","863","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14897","-1","","","","","Saltstone Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2286","11434","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","779","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14898","-1","","","","","Saltstone Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2295","11475","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","947","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14899","-1","","","","","Saltstone Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3731","18655","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","695","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14900","-1","","","","","Saltstone Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4298","21490","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","611","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14901","-1","","","","","Saltstone Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3494","17472","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1199","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14902","-1","","","","","Saltstone Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7482","37413","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2046","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14903","-1","","","","","Saltstone Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2173","10866","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1115","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14904","-1","","","","","Brutish Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9245","46227","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","530","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14905","-1","","","","","Brutish Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3217","16086","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","780","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14906","-1","","","","","Brutish Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2989","14948","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","948","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14907","-1","","","","","Brutish Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6123","30619","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","697","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14908","-1","","","","","Brutish Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8195","40977","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","613","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14909","-1","","","","","Brutish Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4897","24486","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1200","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14910","-1","","","","","Brutish Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3033","15168","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1116","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14911","-1","","","","","Brutish Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5327","26637","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","865","0","0","0","0","0","0","0","0","0","0","306","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14912","-1","","","","","Brutish Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15232","76163","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14913","-1","","","","","Jade Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6697","33487","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","866","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14914","-1","","","","","Jade Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3590","17950","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1117","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14915","-1","","","","","Jade Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11569","57847","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","531","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14916","-1","","","","","Jade Deflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17254","86272","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1635","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14917","-1","","","","","Jade Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3931","19659","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","781","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14918","-1","","","","","Jade Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3654","18273","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","949","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14919","-1","","","","","Jade Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7717","38588","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","699","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14920","-1","","","","","Jade Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9744","48723","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","614","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14921","-1","","","","","Jade Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6407","32036","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1202","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14922","-1","","","","","Lofty Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8273","41366","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","867","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14923","-1","","","","","Lofty Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4604","23024","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1118","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14924","-1","","","","","Lofty Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14031","70158","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","532","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14925","-1","","","","","Lofty Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10562","52810","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","700","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14926","-1","","","","","Lofty Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5598","27991","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","783","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14927","-1","","","","","Lofty Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5301","26505","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","951","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14928","-1","","","","","Lofty Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12673","63368","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","616","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14929","-1","","","","","Lofty Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8999","44997","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1203","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14930","-1","","","","","Lofty Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22950","114751","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14931","-1","","","","","Heroic Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18548","92743","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","534","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14932","-1","","","","","Heroic Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11784","58922","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","869","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14933","-1","","","","","Heroic Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7884","39420","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","785","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14934","-1","","","","","Heroic Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6754","33770","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","952","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14935","-1","","","","","Heroic Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11885","59428","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","701","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14936","-1","","","","","Heroic Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16702","83513","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","618","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14937","-1","","","","","Heroic Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11406","57030","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1205","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14938","-1","","","","","Heroic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6470","32350","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1120","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14939","-1","","","","","Warbringer's Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6793","33965","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","529","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14940","-1","","","","","Warbringer's Sabatons ","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4059","20297","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","864","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14941","-1","","","","","Warbringer's Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2515","12576","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1115","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14942","-1","","","","","Warbringer's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2524","12624","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","779","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14943","-1","","","","","Warbringer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2534","12671","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","947","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14944","-1","","","","","Warbringer's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4806","24031","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","696","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14945","-1","","","","","Warbringer's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6432","32162","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","612","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14946","-1","","","","","Warbringer's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4151","20757","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1200","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14947","-1","","","","","Warbringer's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11198","55992","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","2058","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14948","-1","","","","","Bloodforged Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10301","51509","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","530","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14949","-1","","","","","Bloodforged Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3907","19535","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","781","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14950","-1","","","","","Bloodforged Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3630","18153","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","949","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14951","-1","","","","","Bloodforged Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5902","29511","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","865","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14952","-1","","","","","Bloodforged Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7323","36619","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","698","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14953","-1","","","","","Bloodforged Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9158","45794","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","614","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14954","-1","","","","","Bloodforged Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15234","76174","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14955","-1","","","","","Bloodforged Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5418","27090","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1201","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14956","-1","","","","","Bloodforged Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3108","15543","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1116","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14957","-1","","","","","High Chief's Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7223","36119","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","866","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14958","-1","","","","","High Chief's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12938","64694","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","532","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14959","-1","","","","","High Chief's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5143","25717","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","783","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14960","-1","","","","","High Chief's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4870","24353","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","950","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14961","-1","","","","","High Chief's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9259","46295","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","700","0","0","0","0","0","0","0","0","0","0","426","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14962","-1","","","","","High Chief's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11690","58454","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","615","0","0","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14963","-1","","","","","High Chief's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8301","41509","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1203","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14964","-1","","","","","High Chief's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21741","108705","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14965","-1","","","","","High Chief's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4450","22252","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1118","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14966","-1","","","","","Glorious Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17801","89006","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","534","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14967","-1","","","","","Glorious Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34337","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","784","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14968","-1","","","","","Glorious Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6502","32510","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","952","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14969","-1","","","","","Glorious Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12241","61205","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","701","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14970","-1","","","","","Glorious Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15598","77992","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","617","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14971","-1","","","","","Glorious Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11076","55380","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1204","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14972","-1","","","","","Glorious Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10486","52430","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","868","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14973","-1","","","","","Glorious Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27810","139051","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14974","-1","","","","","Glorious Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6009","30045","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1120","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14975","-1","","","","","Exalted Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20219","101099","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","535","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14976","-1","","","","","Exalted Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8349","41748","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","786","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14977","-1","","","","","Exalted Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7982","39913","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","953","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14978","-1","","","","","Exalted Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13913","69566","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","870","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14979","-1","","","","","Exalted Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14664","73324","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","703","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"14980","-1","","","","","Exalted Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19201","96008","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","618","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14981","-1","","","","","Exalted Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13764","68824","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1206","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14982","-1","","","","","Exalted Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34119","170595","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14983","-1","","","","","Exalted Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7985","39927","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1121","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15002","-1","","","","","Nimboya's Pike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15003","-1","","","","","Primal Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15004","-1","","","","","Primal Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","212","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15005","-1","","","","","Primal Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","141","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15006","-1","","","","","Primal Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15007","-1","","","","","Primal Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15008","-1","","","","","Primal Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","186","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15009","-1","","","","","Primal Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","812","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","559","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15010","-1","","","","","Primal Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","815","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","475","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15011","-1","","","","","Lupine Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","919","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","896","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15012","-1","","","","","Lupine Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","296","1480","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","813","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15013","-1","","","","","Lupine Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","430","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15014","-1","","","","","Lupine Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","585","2927","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1996","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15015","-1","","","","","Lupine Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15016","-1","","","","","Lupine Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","1001","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","729","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15017","-1","","","","","Lupine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","611","3059","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","562","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15018","-1","","","","","Lupine Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","706","3531","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","478","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15019","-1","","","","","Lupine Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","366","1833","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"15042","-1","","","","","Empty Termite Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15043","-1","","","","","Plagueland Termites","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15044","-1","","","","","Barrel of Plagueland Termites","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15045","-1","","","","","Green Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19938","99692","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","11","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","10","0","0","0","0","0","0","0","0","47" +"15046","-1","","","","","Green Dragonscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22482","112411","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","11","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","10","0","0","0","0","0","0","0","0","49" +"15047","-1","","","","","Red Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29836","149181","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","56" +"15048","-1","","","","","Blue Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24409","122046","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","8","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","8","0","0","0","0","0","0","0","0","52" +"15049","-1","","","","","Blue Dragonscale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20543","102716","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","6","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","6","0","0","0","0","0","0","0","0","54" +"15050","-1","","","","","Black Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26071","130357","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","344","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","0","0","0","0","0","0","0","0","0","53" +"15051","-1","","","","","Black Dragonscale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21736","108683","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","6","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","0","0","0","0","0","0","0","0","0","55" +"15052","-1","","","","","Black Dragonscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31933","159667","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","13","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","0","0","0","0","0","0","0","0","0","57" +"15053","-1","","","","","Volcanic Breastplate","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17275","86377","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15054","-1","","","","","Volcanic Leggings","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14559","72799","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15055","-1","","","","","Volcanic Shoulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16019","80097","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15056","-1","","","","","Stormshroud Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20966","104834","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","52" +"15057","-1","","","","","Stormshroud Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18728","93642","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","50" +"15058","-1","","","","","Stormshroud Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17631","88158","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","0","0","0","0","0","0","0","0","0","54" +"15059","-1","","","","","Living Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24776","123882","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","10","0","0","0","0","0","0","0","0","55" +"15060","-1","","","","","Living Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21277","106387","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","8","0","0","0","0","0","0","0","0","52" +"15061","-1","","","","","Living Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13803","69017","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","8","0","0","0","0","0","0","0","0","49" +"15062","-1","","","","","Devilsaur Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25709","128545","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","0","0","0","0","0","0","0","0","0","55" +"15063","-1","","","","","Devilsaur Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11701","58505","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","53" +"15064","-1","","","","","Warbear Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19717","98585","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","27","11","0","0","0","0","0","0","0","0","50" +"15065","-1","","","","","Warbear Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22233","111165","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","52" +"15066","-1","","","","","Ironfeather Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23650","118252","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","12","0","0","0","0","0","0","0","0","53" +"15067","-1","","","","","Ironfeather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12758","63790","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","8","0","0","0","0","0","0","0","0","49" +"15068","-1","","","","","Frostsaber Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21835","109178","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15069","-1","","","","","Frostsaber Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17012","85064","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","17","16","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15070","-1","","","","","Frostsaber Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9504","47521","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","13","12","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15071","-1","","","","","Frostsaber Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11443","57218","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15072","-1","","","","","Chimeric Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16233","81169","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","16","0","0","16","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15073","-1","","","","","Chimeric Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11530","57650","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","12","0","0","12","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15074","-1","","","","","Chimeric Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34335","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","12","0","0","11","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15075","-1","","","","","Chimeric Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18449","92245","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","17","0","0","16","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15076","-1","","","","","Heavy Scorpid Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16604","83020","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","15","0","0","0","0","0","0","0","0","48" +"15077","-1","","","","","Heavy Scorpid Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7615","38077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","8","0","0","0","0","0","0","0","0","46" +"15078","-1","","","","","Heavy Scorpid Gauntlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9649","48245","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","50" +"15079","-1","","","","","Heavy Scorpid Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21760","108803","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","52" +"15080","-1","","","","","Heavy Scorpid Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18230","91152","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","54" +"15081","-1","","","","","Heavy Scorpid Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20261","101305","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","13","0","0","0","0","0","0","0","0","56" +"15082","-1","","","","","Heavy Scorpid Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10375","51879","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","12","0","0","0","0","0","0","0","0","51" +"15083","-1","","","","","Wicked Leather Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6872","34363","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","11","0","0","0","0","0","0","0","0","47" +"15084","-1","","","","","Wicked Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7311","36555","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","5","0","0","0","0","0","0","0","0","48" +"15085","-1","","","","","Wicked Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22732","113662","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","25","7","0","0","0","0","0","0","0","0","56" +"15086","-1","","","","","Wicked Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13154","65771","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","16","0","0","0","0","0","0","0","0","51" +"15087","-1","","","","","Wicked Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17892","89463","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","53" +"15088","-1","","","","","Wicked Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9901","49508","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","13","0","0","0","0","0","0","0","0","55" +"15090","-1","","","","","Runic Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22002","110012","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","13","0","0","0","0","0","0","0","0","57" +"15091","-1","","","","","Runic Leather Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7195","35978","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","8","0","0","0","0","0","0","0","0","49" +"15092","-1","","","","","Runic Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7656","38283","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","10","0","0","0","0","0","0","0","0","50" +"15093","-1","","","","","Runic Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8368","41844","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","9","0","0","0","0","0","0","0","0","51" +"15094","-1","","","","","Runic Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14155","70777","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","12","0","0","0","0","0","0","0","0","53" +"15095","-1","","","","","Runic Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20885","104426","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","13","0","0","0","0","0","0","0","0","55" +"15096","-1","","","","","Runic Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17332","86664","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","10","0","0","0","0","0","0","0","0","57" +"15102","-1","","","","","Un'Goro Tested Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15103","-1","","","","","Corrupt Tested Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15104","-1","","","","","Wingborne Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3188","15940","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","5","0","0","0","0","0","0","0","0","0" +"15105","-1","","","","","Staff of Noh'Orahil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14397","71989","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","256","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","0" +"15106","-1","","","","","Staff of Dar'Orahil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14447","72237","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","256","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","0" +"15107","-1","","","","","Orb of Noh'Orahil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","0" +"15108","-1","","","","","Orb of Dar'Orahil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","0" +"15109","-1","","","","","Staff of Soran'ruk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3344","16723","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","256","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15110","-1","","","","","Rigid Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1758","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","898","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15111","-1","","","","","Rigid Moccasins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3046","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","814","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15112","-1","","","","","Rigid Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","354","1771","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1066","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15113","-1","","","","","Rigid Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1361","6805","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2010","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15114","-1","","","","","Rigid Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","372","1862","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","982","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15115","-1","","","","","Rigid Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","473","2369","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","731","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15116","-1","","","","","Rigid Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1163","5816","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1152","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15117","-1","","","","","Rigid Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1219","6096","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","563","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15118","-1","","","","","Rigid Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1562","7812","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","480","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15119","-1","","","","","Highborne Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13683","68415","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","9","0","0","0","0","0","0","0","51" +"15120","-1","","","","","Robust Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","786","3934","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","900","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15121","-1","","","","","Robust Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1433","7167","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","817","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15122","-1","","","","","Robust Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3507","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1068","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15123","-1","","","","","Robust Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","12319","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2020","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15124","-1","","","","","Robust Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4237","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","984","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15125","-1","","","","","Robust Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","990","4954","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","733","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15126","-1","","","","","Robust Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1989","9947","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","565","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15127","-1","","","","","Robust Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1647","8237","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1153","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15128","-1","","","","","Robust Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","12126","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","482","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15129","-1","","","","","Robust Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1825","9129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","650","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15130","-1","","","","","Cutthroat's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3252","16262","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","483","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15131","-1","","","","","Cutthroat's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2023","10117","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","818","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15132","-1","","","","","Cutthroat's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1017","5085","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1069","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15133","-1","","","","","Cutthroat's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3826","19134","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2026","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15134","-1","","","","","Cutthroat's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3295","16475","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","652","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15135","-1","","","","","Cutthroat's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1357","6788","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","985","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15136","-1","","","","","Cutthroat's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1248","6244","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","902","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15137","-1","","","","","Cutthroat's Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1516","7583","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","734","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15138","-1","","","","","Onyxia Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15198","75993","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","16","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","55" +"15139","-1","","","","","Cutthroat's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3055","15279","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","566","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15140","-1","","","","","Cutthroat's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2529","12649","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1155","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15141","-1","","","","","Onyxia Scale Breastplate","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41937","209688","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","9","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","15","15","14","14","0","0","0","0","0","57" +"15142","-1","","","","","Ghostwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2603","13016","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","819","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15143","-1","","","","","Ghostwalker Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1439","7197","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1070","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15144","-1","","","","","Ghostwalker Rags","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4232","21160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","484","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15145","-1","","","","","Ghostwalker Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4943","24717","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2032","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15146","-1","","","","","Ghostwalker Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3730","18652","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","652","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15147","-1","","","","","Ghostwalker Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1753","8769","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","986","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15148","-1","","","","","Ghostwalker Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1613","8069","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","903","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15149","-1","","","","","Ghostwalker Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1960","9800","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","735","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15150","-1","","","","","Ghostwalker Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2951","14756","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1155","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15151","-1","","","","","Ghostwalker Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3949","19747","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","567","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15152","-1","","","","","Nocturnal Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4449","22247","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","821","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15153","-1","","","","","Nocturnal Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2626","13131","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","988","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15154","-1","","","","","Nocturnal Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2372","11860","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","904","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15155","-1","","","","","Nocturnal Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2571","12856","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","736","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15156","-1","","","","","Nocturnal Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5266","26332","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","654","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15157","-1","","","","","Nocturnal Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6200","31000","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","569","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15158","-1","","","","","Nocturnal Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4320","21602","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1157","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15159","-1","","","","","Nocturnal Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6743","33715","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","485","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15160","-1","","","","","Nocturnal Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12151","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1072","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15161","-1","","","","","Imposing Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3319","16596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","906","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15162","-1","","","","","Imposing Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5829","29146","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","822","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15163","-1","","","","","Imposing Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3344","16723","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1074","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15164","-1","","","","","Imposing Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9135","45679","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","487","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15165","-1","","","","","Imposing Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3744","18723","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","989","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15166","-1","","","","","Imposing Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3945","19728","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","738","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15167","-1","","","","","Imposing Bandana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7484","37421","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","655","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15168","-1","","","","","Imposing Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7951","39757","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","570","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15169","-1","","","","","Imposing Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","27713","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1158","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15170","-1","","","","","Potent Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13103","65519","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","489","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15171","-1","","","","","Potent Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8697","43487","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","824","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15172","-1","","","","","Potent Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4706","23534","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1075","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15173","-1","","","","","Potent Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5387","26939","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","991","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15174","-1","","","","","Potent Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6017","30087","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","740","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15175","-1","","","","","Potent Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9692","48462","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","656","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15176","-1","","","","","Potent Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12121","60606","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","572","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15177","-1","","","","","Potent Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8525","42628","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1160","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15178","-1","","","","","Potent Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4935","24679","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","907","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15179","-1","","","","","Praetorian Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18593","92965","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","490","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15180","-1","","","","","Praetorian Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6686","33433","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","909","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15181","-1","","","","","Praetorian Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11312","56561","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","826","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15182","-1","","","","","Praetorian Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5996","29982","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1076","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15183","-1","","","","","Praetorian Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6751","33756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15184","-1","","","","","Praetorian Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7197","35986","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","741","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15185","-1","","","","","Praetorian Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12905","64529","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","658","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15186","-1","","","","","Praetorian Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15373","76867","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","574","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15187","-1","","","","","Praetorian Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10918","54593","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1161","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15188","-1","","","","","Grand Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8702","43512","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1078","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15189","-1","","","","","Grand Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15722","78614","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","827","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15190","-1","","","","","Grand Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9614","48070","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","994","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15191","-1","","","","","Grand Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9034","45174","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","910","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15192","-1","","","","","Grand Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10595","52979","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","743","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15193","-1","","","","","Grand Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17586","87933","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","660","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15194","-1","","","","","Grand Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22412","112063","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","576","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15195","-1","","","","","Grand Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23617","118089","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","492","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15196","-1","","","","","Private's Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","5","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15197","-1","","","","","Scout's Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","5","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15198","-1","","","","","Knight's Colors","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","10","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15199","-1","","","","","Stone Guard's Herald","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","10","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15200","-1","","","","","Senior Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","9","4","0","0","0","0","0","0","0","0","30" +"15202","-1","","","","","Wildkeeper Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2579","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","2","1","0","0","0","0","0","0","0","0" +"15203","-1","","","","","Guststorm Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","621","3107","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","1","0","0","0","0","0","0","0","0" +"15204","-1","","","","","Moonstone Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","779","3899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15205","-1","","","","","Owlsight Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1063","5317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"15206","-1","","","","","Jadefinger Baton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","857","3430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15207","-1","","","","","Steelcap Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","868","4342","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15208","-1","","","","","Cenarion Moondust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15209","-1","","","","","Relic Bundle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15210","-1","","","","","Raider Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","4128","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","5177","11","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15211","-1","","","","","Militant Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1916","9584","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","22","-1","0","5195","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15212","-1","","","","","Fighter Broadsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3450","17252","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","5204","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15213","-1","","","","","Mercenary Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8165","40829","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","5231","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15214","-1","","","","","Nobles Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11356","56781","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","40","-1","0","5249","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15215","-1","","","","","Furious Falchion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16744","83720","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","5258","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15216","-1","","","","","Rune Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25932","129661","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","51","-1","0","5276","34","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15217","-1","","","","","Widow Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30996","154980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","54","-1","0","5285","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15218","-1","","","","","Crystal Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37047","185239","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","57","-1","0","5294","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15219","-1","","","","","Dimensional Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41376","206882","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","59","-1","0","5303","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15220","-1","","","","","Battlefell Sabre","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43493","217465","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","5312","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15221","-1","","","","","Holy War Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51946","259732","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","65","-1","0","5321","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15222","-1","","","","","Barbed Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1219","6096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","19","-1","0","5188","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15223","-1","","","","","Jagged Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2376","11884","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","5197","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15224","-1","","","","","Battlesmasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2695","13479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","25","-1","0","5206","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15225","-1","","","","","Sequoia Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5958","29793","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","5224","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15226","-1","","","","","Giant Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8755","43778","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","5242","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15227","-1","","","","","Diamond-Tip Bludgeon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21925","109625","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","49","-1","0","5278","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15228","-1","","","","","Smashing Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28308","141543","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","5287","62","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15229","-1","","","","","Blesswind Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31924","159622","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","5296","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15230","-1","","","","","Ridge Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2755","13778","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","25","-1","0","5205","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15231","-1","","","","","Splitting Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5033","25166","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","31","-1","0","5223","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15232","-1","","","","","Hacking Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6112","30561","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","33","-1","0","5223","22","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15233","-1","","","","","Savage Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10476","52380","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","39","-1","0","5241","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15234","-1","","","","","Greater Scythe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11354","56770","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","40","-1","0","5250","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15235","-1","","","","","Crescent Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21090","105454","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","48","-1","0","5268","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15236","-1","","","","","Moon Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27485","137428","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","52","-1","0","5286","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15237","-1","","","","","Corpse Harvester","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30526","152630","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","55","-1","0","5295","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15238","-1","","","","","Warlord's Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36496","182480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","58","-1","0","5304","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15239","-1","","","","","Felstone Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42409","212049","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","61","-1","0","5313","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15240","-1","","","","","Demon's Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49281","246405","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","64","-1","0","5322","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15241","-1","","","","","Battle Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3012","15060","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","26","-1","0","5207","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15242","-1","","","","","Honed Stiletto","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4426","22133","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","30","-1","0","5216","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15243","-1","","","","","Deadly Kris","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7871","39357","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","36","-1","0","5234","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15244","-1","","","","","Razor Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12769","63848","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","42","-1","0","5252","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15245","-1","","","","","Vorpal Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23284","116423","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","50","-1","0","5279","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15246","-1","","","","","Demon Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45704","228524","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","5315","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15247","-1","","","","","Bloodstrike Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50576","252880","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","64","-1","0","5324","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15248","-1","","","","","Gleaming Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1791","8959","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","5191","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15249","-1","","","","","Polished Zweihander","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3877","19388","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","26","-1","0","5209","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15250","-1","","","","","Glimmering Flamberge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6894","34474","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","32","-1","0","5227","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15251","-1","","","","","Headstriker Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17685","88428","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","5263","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15252","-1","","","","","Tusker Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27906","139530","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","49","-1","0","5281","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15253","-1","","","","","Beheading Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31547","157738","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","52","-1","0","5290","113","0","0","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15254","-1","","","","","Dark Espadon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35584","177922","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","54","-1","0","5290","110","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15255","-1","","","","","Gallant Flamberge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42545","212728","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","57","-1","0","5299","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15256","-1","","","","","Massacre Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47531","237656","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","59","-1","0","5308","139","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15257","-1","","","","","Shin Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55234","276172","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","5317","84","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15258","-1","","","","","Divine Warblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64185","320928","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","5326","109","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15259","-1","","","","","Hefty Battlehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16533","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","25","-1","0","5211","43","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15260","-1","","","","","Stone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11556","57783","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","38","-1","0","5247","64","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15261","-1","","","","","Sequoia Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13530","67653","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","40","-1","0","5256","88","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15262","-1","","","","","Greater Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21552","107763","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","46","-1","0","5274","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15263","-1","","","","","Royal Mallet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28889","144448","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","5283","83","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15264","-1","","","","","Backbreaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41517","207589","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","56","-1","0","5301","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15265","-1","","","","","Painbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46823","234116","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","58","-1","0","5310","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15266","-1","","","","","Fierce Mauler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54405","272026","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","61","-1","0","5319","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15267","-1","","","","","Brutehammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60203","301018","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","63","-1","0","5319","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15268","-1","","","","","Twin-bladed Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1024","5121","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","16","-1","0","5183","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15269","-1","","","","","Massive Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3036","15183","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","24","-1","0","5201","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15270","-1","","","","","Gigantic War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22775","113877","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","46","-1","0","5273","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15271","-1","","","","","Colossal Great Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43701","218506","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","56","-1","0","5300","132","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15272","-1","","","","","Razor Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51740","258702","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","59","-1","0","5309","91","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15273","-1","","","","","Death Striker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57108","285543","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","5318","109","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15274","-1","","","","","Diviner Long Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31666","158334","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","5293","84","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15275","-1","","","","","Thaumaturgist Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35714","178574","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","54","-1","0","5293","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15276","-1","","","","","Magus Long Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45263","226315","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","58","-1","0","5311","122","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15277","690","","","","","Gray Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"15278","-1","","","","","Solstice Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50285","251429","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","60","-1","0","5311","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15279","-1","","","","","Ivory Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18267","91339","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","51","-1","0","5280","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15280","-1","","","","","Wizard's Hand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20603","103018","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","5289","56","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15281","-1","","","","","Glowstar Rod","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26110","130550","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","5298","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15282","-1","","","","","Dragon Finger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30628","153143","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","60","-1","0","5307","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15283","-1","","","","","Lunar Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37365","186826","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","64","-1","0","5850","67","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15284","-1","","","","","Long Battle Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3039","15199","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","29","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","24" +"15285","-1","","","","","Archer's Longbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4061","20305","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","32","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"15286","-1","","","","","Long Redwood Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5568","27843","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","35","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","30" +"15287","-1","","","","","Crusader Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12516","62583","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","45","-1","0","5852","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","40" +"15288","-1","","","","","Blasthorn Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33743","168715","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","61","-1","0","5838","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","56" +"15289","-1","","","","","Archstrike Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41161","205809","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","65","-1","0","5859","48","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","60" +"15290","690","","","","","Brown Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"15291","-1","","","","","Harpy Needler","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19591","97958","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","51","-1","0","5854","44","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","46" +"15292","690","","","","","Green Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"15293","690","","","","","Teal Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"15294","-1","","","","","Siege Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20135","100679","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","5855","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","48" +"15295","-1","","","","","Quillfire Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22712","113560","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","55","-1","0","5856","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","50" +"15296","-1","","","","","Hawkeye Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34657","173287","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","5858","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","58" +"15297","-1","","","","","Grizzly Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15298","-1","","","","","Grizzly Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1525","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","6272","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","8" +"15299","-1","","","","","Grizzly Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15300","-1","","","","","Grizzly Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","432","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15301","-1","","","","","Grizzly Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","541","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15302","-1","","","","","Grizzly Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","237","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15303","-1","","","","","Grizzly Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1495","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","560","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"15304","-1","","","","","Grizzly Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","414","2071","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","477","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15305","-1","","","","","Feral Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","2062","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","813","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15306","-1","","","","","Feral Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1042","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1065","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15307","-1","","","","","Feral Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","815","4077","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2004","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15308","-1","","","","","Feral Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","241","1208","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","897","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15309","-1","","","","","Feral Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","220","1100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","980","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15310","-1","","","","","Feral Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1398","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","729","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15311","-1","","","","","Feral Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4913","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","479","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15312","-1","","","","","Feral Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","745","3728","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","562","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15313","-1","","","","","Feral Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","514","2572","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"15314","-1","","","","","Bundle of Relics","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15322","-1","","","","","Smoothbore Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7745","38726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","39","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","34" +"15323","-1","","","","","Percussion Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17791","88956","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","50","-1","0","5854","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","45" +"15324","-1","","","","","Burnside Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25565","127828","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","56","-1","0","5856","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","51" +"15325","-1","","","","","Sharpshooter Harquebus","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31784","158924","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","5857","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","55" +"15326","-1","","","","","Gleaming Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","800","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","35" +"15327","-1","","","","","Wicked Throwing Dagger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","800","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","35" +"15328","-1","","","","","Joseph's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15329","-1","","","","","Wrangler's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","622","3114","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","899","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15330","-1","","","","","Wrangler's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1059","5298","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","816","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15331","-1","","","","","Wrangler's Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2776","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","1067","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15332","-1","","","","","Wrangler's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2263","11319","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","2014","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15333","-1","","","","","Wrangler's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","537","2685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","983","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15334","-1","","","","","Wrangler's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","828","4141","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","732","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15335","-1","","","","","Briarsteel Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","580","2904","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","14","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"15336","-1","","","","","Wrangler's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1669","8345","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","564","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15337","-1","","","","","Wrangler's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","10136","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","481","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15338","-1","","","","","Wrangler's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1387","6937","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1153","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15339","-1","","","","","Pathfinder Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2466","12333","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","651","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15340","-1","","","","","Pathfinder Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1016","5081","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","984","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15341","-1","","","","","Pathfinder Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","817","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15342","-1","","","","","Pathfinder Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2907","14537","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","2020","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15343","-1","","","","","Pathfinder Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1139","5698","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","733","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15344","-1","","","","","Pathfinder Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2516","12582","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","566","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15345","-1","","","","","Pathfinder Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1894","9471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1154","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15346","-1","","","","","Pathfinder Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2788","13941","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","482","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15347","-1","","","","","Pathfinder Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","955","4777","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","901","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15348","-1","","","","","Pathfinder Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","792","3962","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1068","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15349","-1","","","","","Headhunter's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1549","7749","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","902","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15350","-1","","","","","Headhunter's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2384","11924","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","819","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15351","-1","","","","","Headhunter's Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1090","5450","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1069","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15352","-1","","","","","Headhunter's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4101","20507","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2032","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15353","-1","","","","","Headhunter's Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3467","17337","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","652","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15354","-1","","","","","Headhunter's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1600","8003","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","986","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15355","-1","","","","","Headhunter's Mitts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1620","8100","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","735","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15356","-1","","","","","Headhunter's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3935","19678","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","483","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15357","-1","","","","","Headhunter's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2693","13467","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1155","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15358","-1","","","","","Headhunter's Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3604","18020","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","567","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15359","-1","","","","","Trickster's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5955","29776","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","485","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15360","-1","","","","","Trickster's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2372","11861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1072","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15361","-1","","","","","Trickster's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2204","11024","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","904","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15362","-1","","","","","Trickster's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3871","19357","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","820","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15363","-1","","","","","Trickster's Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4894","24473","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","653","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15364","-1","","","","","Trickster's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2431","12157","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","987","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15365","-1","","","","","Trickster's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2415","12078","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","736","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15366","-1","","","","","Trickster's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5250","26251","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","569","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15367","-1","","","","","Trickster's Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6246","31233","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","2038","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15368","-1","","","","","Trickster's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3674","18371","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1156","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15369","-1","","","","","Wolf Rider's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15486","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","905","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15370","-1","","","","","Wolf Rider's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5439","27198","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","822","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15371","-1","","","","","Wolf Rider's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3467","17338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","989","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15372","-1","","","","","Wolf Rider's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3383","16917","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","738","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15373","-1","","","","","Wolf Rider's Headgear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6930","34652","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","655","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15374","-1","","","","","Wolf Rider's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7363","36816","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","570","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15375","-1","","","","","Wolf Rider's Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5132","25663","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1158","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15376","-1","","","","","Wolf Rider's Padded Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8653","43266","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","487","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15377","-1","","","","","Wolf Rider's Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3191","15959","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1073","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15378","-1","","","","","Rageclaw Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4358","21793","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","907","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15379","-1","","","","","Rageclaw Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7654","38271","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","823","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15380","-1","","","","","Rageclaw Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4390","21954","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1075","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15381","-1","","","","","Rageclaw Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12593","62967","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","488","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15382","-1","","","","","Rageclaw Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5043","25215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","990","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15383","-1","","","","","Rageclaw Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5313","26565","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","739","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15384","-1","","","","","Rageclaw Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9155","45778","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","656","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15385","-1","","","","","Rageclaw Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11449","57248","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","572","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15386","-1","","","","","Rageclaw Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7287","36437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1159","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15387","-1","","","","","Jadefire Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5583","27919","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1076","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15388","-1","","","","","Jadefire Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6357","31785","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","909","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15389","-1","","","","","Jadefire Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10146","50734","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","825","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15390","-1","","","","","Jadefire Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16175","80876","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","490","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15391","-1","","","","","Jadefire Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12178","60890","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","658","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15392","-1","","","","","Jadefire Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6382","31911","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","992","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15393","-1","","","","","Jadefire Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6479","32395","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","741","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15394","-1","","","","","Jadefire Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14615","73075","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","573","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15395","-1","","","","","Jadefire Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10379","51898","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1161","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15396","-1","","","","","Curvewood Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","582","2913","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","14","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"15397","-1","","","","","Oakthrush Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3656","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","14","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15398","-1","","","","","Sandcomber Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","542","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15399","-1","","","","","Dryweed Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151","755","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","0","0","0","0","0","0","0","0","0","0" +"15400","-1","","","","","Clamshell Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","545","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15401","-1","","","","","Welldrip Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15402","-1","","","","","Noosegrip Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","549","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15403","-1","","","","","Ridgeback Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1399","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15404","-1","","","","","Breakwater Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1685","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","0" +"15405","-1","","","","","Shucking Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15406","-1","","","","","Crustacean Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","402","2012","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15407","-1","","","","","Cured Rugged Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15408","-1","","","","","Heavy Scorpid Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15409","-1","","","","","Refined Deeprock Salt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15410","-1","","","","","Scale of Onyxia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15411","-1","","","","","Mark of Fordring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15412","-1","","","","","Green Dragonscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15413","-1","","","","","Ornate Adamantium Breastplate","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22519","112596","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","0" +"15414","-1","","","","","Red Dragonscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15415","-1","","","","","Blue Dragonscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15416","-1","","","","","Black Dragonscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15417","-1","","","","","Devilsaur Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15418","-1","","","","","Shimmering Platinum Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73597","367988","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","142","0","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15419","-1","","","","","Warbear Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15420","-1","","","","","Ironfeather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15421","-1","","","","","Shroud of the Exile","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17855","89275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","7","7","0","0","0","0","0","0","0","0" +"15422","-1","","","","","Frostsaber Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15423","-1","","","","","Chimera Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15424","-1","","","","","Axe of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1404","7023","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","3","0","0","0","0","0","0","0","0","0" +"15425","-1","","","","","Peerless Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8272","41364","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1078","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15426","-1","","","","","Peerless Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13419","67098","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","827","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15427","-1","","","","","Peerless Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8536","42683","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","993","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15428","-1","","","","","Peerless Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8024","40120","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","910","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15429","-1","","","","","Peerless Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9049","45248","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","743","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15430","-1","","","","","Peerless Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15435","77176","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","659","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15431","-1","","","","","Peerless Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19673","98368","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","575","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15432","-1","","","","","Peerless Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14104","70524","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1163","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15433","-1","","","","","Peerless Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21849","109245","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","492","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15434","-1","","","","","Supreme Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10964","54823","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","912","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15435","-1","","","","","Supreme Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18199","90997","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","828","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15436","-1","","","","","Supreme Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10519","52596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1079","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15437","-1","","","","","Supreme Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13301","66506","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","996","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15438","-1","","","","","Supreme Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12264","61324","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","744","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15439","-1","","","","","Supreme Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19387","96936","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","661","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15440","-1","","","","","Supreme Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24707","123537","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","576","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15441","-1","","","","","Supreme Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18595","92977","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1164","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15442","-1","","","","","Supreme Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27433","137166","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","493","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15443","-1","","","","","Kris of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1119","5598","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15444","-1","","","","","Staff of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1404","7023","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","0" +"15445","-1","","","","","Hammer of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1127","5637","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","18","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15446","-1","","","","","Stormwind Deputy Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15447","-1","","","","","Living Rot","1","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15448","-1","","","","","Coagulated Rot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15449","-1","","","","","Ghastly Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2127","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","2","0","0","0","0","0","0","0","0","0" +"15450","-1","","","","","Dredgemire Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2669","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","2","0","0","0","0","0","0","0","0" +"15451","-1","","","","","Gargoyle Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","643","3216","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","2","0","0","0","0","0","0","0","0" +"15452","-1","","","","","Featherbead Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1075","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15453","-1","","","","","Savannah Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","269","1349","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15454","-1","","","","","Mortar and Pestle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15455","-1","","","","","Dustfall Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3541","17705","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","8","0","0","0","0","0","0","0","0","0" +"15456","-1","","","","","Lightstep Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4442","22211","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","5","0","0","0","0","0","0","0","0","0" +"15457","-1","","","","","Desert Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1134","5671","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"15458","-1","","","","","Tundra Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7116","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","6","3","0","0","0","0","0","0","0","0" +"15459","-1","","","","","Grimtoll Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1142","5712","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","1","0","0","0","0","0","0","0","0" +"15460","-1","","","","","Monster - Gun, Shotgun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"15461","-1","","","","","Lightheel Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","841","4207","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15462","-1","","","","","Loamflake Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","653","3269","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15463","-1","","","","","Palestrider Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3937","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"15464","-1","","","","","Brute Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4504","22523","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","28","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","1","0","0","0","0","0","0","0","0" +"15465","-1","","","","","Stingshot Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2713","13565","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15466","-1","","","","","Clink Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2323","11619","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","3","0","0","0","0","0","0","0","0" +"15467","-1","","","","","Inventor's League Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8630","34520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15468","-1","","","","","Windsong Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1207","6035","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15469","-1","","","","","Windsong Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1009","5048","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15470","-1","","","","","Plainsguard Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2432","12162","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","0" +"15471","-1","","","","","Brawnhide Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2034","10172","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","3","4","0","0","0","0","0","0","0","0" +"15472","-1","","","","","Charger's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","167","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15473","-1","","","","","Charger's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","328","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15474","-1","","","","","Charger's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15475","-1","","","","","Charger's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15476","-1","","","","","Charger's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","220","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15477","-1","","","","","Charger's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","960","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","580","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15478","-1","","","","","Charger's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","260","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15479","-1","","","","","Charger's Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","897","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","496","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15480","-1","","","","","War Torn Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","422","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15481","-1","","","","","War Torn Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","127","639","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15482","-1","","","","","War Torn Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15483","-1","","","","","War Torn Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","209","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15484","-1","","","","","War Torn Handgrips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","342","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"15485","-1","","","","","War Torn Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","344","1722","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","581","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"15486","-1","","","","","War Torn Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1229","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6278","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","7" +"15487","-1","","","","","War Torn Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2395","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","498","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15488","-1","","","","","Bloodspattered Surcoat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","967","4836","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","499","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15489","-1","","","","","Bloodspattered Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1817","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","834","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15490","-1","","","","","Bloodspattered Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","526","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15491","-1","","","","","Bloodspattered Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1057","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","749","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15492","-1","","","","","Bloodspattered Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","1061","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","917","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15493","-1","","","","","Bloodspattered Loincloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","647","3238","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","582","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15494","-1","","","","","Bloodspattered Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","693","3467","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1998","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15495","-1","","","","","Bloodspattered Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","220","1100","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1085","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15496","-1","","","","","Bloodspattered Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","461","2309","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"15497","-1","","","","","Outrunner's Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","387","1938","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","919","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15498","-1","","","","","Outrunner's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","674","3370","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","835","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15499","-1","","","","","Outrunner's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1535","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1086","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15500","-1","","","","","Outrunner's Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1377","6889","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","500","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15501","-1","","","","","Outrunner's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","269","1346","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1002","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15502","-1","","","","","Outrunner's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","411","2055","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","751","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15503","-1","","","","","Outrunner's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1091","5457","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","584","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15504","-1","","","","","Outrunner's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1168","5843","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2010","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15505","-1","","","","","Outrunner's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2808","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"15506","-1","","","","","Grunt's AnkleWraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","723","3615","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","835","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15507","-1","","","","","Grunt's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1820","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1087","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15508","-1","","","","","Grunt's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","365","1827","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1003","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15509","-1","","","","","Grunt's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","485","2426","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","751","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15510","-1","","","","","Grunt's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2117","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","919","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15511","-1","","","","","Grunt's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1474","7371","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","584","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15512","-1","","","","","Grunt's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1578","7891","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","2010","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15513","-1","","","","","Grunt's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1264","6320","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1173","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15514","-1","","","","","Grunt's Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1902","9514","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","501","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15515","-1","","","","","Spiked Chain Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4224","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","921","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15516","-1","","","","","Spiked Chain Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1587","7939","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","837","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15517","-1","","","","","Spiked Chain Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","4254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1089","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15518","-1","","","","","Spiked Chain Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","14128","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","502","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15519","-1","","","","","Spiked Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","607","3035","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","1004","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15520","-1","","","","","Spiked Chain Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4397","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","753","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15521","-1","","","","","Spiked Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9712","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","585","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15522","-1","","","","","Spiked Chain Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2516","12584","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2022","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15523","-1","","","","","Spiked Chain Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1474","7373","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1173","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15524","-1","","","","","Sentry's Surcoat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2876","14383","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","503","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15525","-1","","","","","Sentry's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1634","8171","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","838","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15526","-1","","","","","Sentry's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","704","3523","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","1004","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15527","-1","","","","","Sentry's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5101","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","753","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15528","-1","","","","","Sentry's Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","930","4654","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","921","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15529","-1","","","","","Sentry's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2487","12437","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","586","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15530","-1","","","","","Sentry's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3222","16110","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","2028","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15531","-1","","","","","Sentry's Shoulderguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2076","10380","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1174","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15532","-1","","","","","Sentry's Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","944","4722","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1089","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15533","-1","","","","","Sentry's Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2290","11450","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","671","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15534","-1","","","","","Wicked Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2308","11542","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","839","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15535","-1","","","","","Wicked Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1270","6352","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1090","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15536","-1","","","","","Wicked Chain Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4107","20537","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","504","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15537","-1","","","","","Wicked Chain Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1163","5816","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15538","-1","","","","","Wicked Chain Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7063","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","754","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15539","-1","","","","","Wicked Chain Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1282","6413","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","922","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15540","-1","","","","","Wicked Chain Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2827","14139","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","672","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15541","-1","","","","","Wicked Chain Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3441","17205","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","587","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15542","-1","","","","","Wicked Chain Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2365","11827","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1175","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15543","-1","","","","","Wicked Chain Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4179","20898","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2034","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15544","-1","","","","","Thick Scale Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2448","12243","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","839","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15545","-1","","","","","Thick Scale Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1348","6740","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1090","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15546","-1","","","","","Thick Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4793","23969","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","504","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15547","-1","","","","","Thick Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6172","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15548","-1","","","","","Thick Scale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8245","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","755","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15549","-1","","","","","Thick Scale Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1504","7523","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","923","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15550","-1","","","","","Thick Scale Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3316","16582","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","672","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15551","-1","","","","","Thick Scale Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4438","22190","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","588","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15552","-1","","","","","Thick Scale Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5226","26130","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2034","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15553","-1","","","","","Thick Scale Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3061","15306","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1176","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15554","-1","","","","","Pillager's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1853","9267","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","923","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15555","-1","","","","","Pillager's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2802","14013","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","839","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15556","-1","","","","","Pillager's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1091","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15557","-1","","","","","Pillager's Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27430","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","505","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15558","-1","","","","","Pillager's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4128","20643","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","673","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15559","-1","","","","","Pillager's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","7250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1007","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15560","-1","","","","","Pillager's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1937","9686","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","756","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15561","-1","","","","","Pillager's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4705","23527","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","588","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15562","-1","","","","","Pillager's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3558","17790","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1176","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15563","-1","","","","","Pillager's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5562","27814","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2040","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15564","-1","","","","","Rugged Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"15565","-1","","","","","Marauder's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4274","21370","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","841","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15566","-1","","","","","Marauder's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2178","10894","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1092","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15567","-1","","","","","Marauder's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6666","33333","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","506","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15568","-1","","","","","Marauder's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1813","9069","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1007","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15569","-1","","","","","Marauder's Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7162","35813","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","2046","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15570","-1","","","","","Marauder's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2431","12159","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","756","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15571","-1","","","","","Marauder's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2218","11093","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","924","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15572","-1","","","","","Marauder's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4714","23571","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","673","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15573","-1","","","","","Marauder's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5840","29202","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","589","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15574","-1","","","","","Marauder's Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5150","25751","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1178","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15575","-1","","","","","Sparkleshell Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2300","11500","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","924","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15576","-1","","","","","Sparkleshell Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4462","22314","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","841","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15577","-1","","","","","Sparkleshell Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2317","11587","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1092","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15578","-1","","","","","Sparkleshell Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6962","34814","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","506","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15579","-1","","","","","Sparkleshell Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2122","10614","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1008","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15580","-1","","","","","Sparkleshell Headwrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4871","24357","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","674","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15581","-1","","","","","Sparkleshell Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13973","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","757","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15582","-1","","","","","Sparkleshell Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6544","32721","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","590","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15583","-1","","","","","Sparkleshell Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5344","26722","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1178","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15584","-1","","","","","Sparkleshell Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7594","37973","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2044","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15585","-1","","","","","Pardoc Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1446","7234","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15586","-1","","","","","Fast-growing Flower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15587","-1","","","","","Ringtail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1822","9110","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15588","-1","","","","","Bracesteel Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10972","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","4","4","0","0","0","0","0","0","0","0" +"15589","-1","","","","","Steadfast Stompers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5462","27314","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","842","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15590","-1","","","","","Steadfast Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2674","13373","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1093","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15591","-1","","","","","Steadfast Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8739","43699","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","507","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15592","-1","","","","","Steadfast Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8465","42328","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","2050","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15593","-1","","","","","Steadfast Coronet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5532","27663","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","674","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15594","-1","","","","","Steadfast Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2520","12600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1009","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15595","-1","","","","","Steadfast Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2950","14752","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","757","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15596","-1","","","","","Steadfast Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6909","34546","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","590","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15597","-1","","","","","Steadfast Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5642","28214","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1178","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15598","-1","","","","","Steadfast Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2763","13816","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","925","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15599","-1","","","","","Ancient Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6631","33156","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","843","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15600","-1","","","","","Ancient Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3787","18938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1094","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15601","-1","","","","","Ancient Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10345","51726","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","508","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15602","-1","","","","","Ancient Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7211","36055","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","675","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15603","-1","","","","","Ancient Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3546","17731","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1010","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15604","-1","","","","","Ancient Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11158","55790","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","2056","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15605","-1","","","","","Ancient Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3858","19293","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","758","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15606","-1","","","","","Ancient Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3585","17928","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","926","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15607","-1","","","","","Ancient Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9305","46529","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","591","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15608","-1","","","","","Ancient Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7035","35177","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1179","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15609","-1","","","","","Bonelink Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11806","59033","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","508","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15610","-1","","","","","Bonelink Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4354","21770","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1095","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15611","-1","","","","","Bonelink Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4369","21847","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1011","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15612","-1","","","","","Bonelink Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4285","21426","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","759","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15613","-1","","","","","Bonelink Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3688","18440","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","926","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15614","-1","","","","","Bonelink Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7026","35132","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","843","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15615","-1","","","","","Bonelink Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7584","37920","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","676","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15616","-1","","","","","Bonelink Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10151","50755","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","592","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15617","-1","","","","","Bonelink Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7107","35538","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1179","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15618","-1","","","","","Bonelink Wall Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11782","58910","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","2056","0","0","0","0","0","0","0","0","0","0","1465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15619","-1","","","","","Gryphon Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5987","29936","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","928","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15620","-1","","","","","Gryphon Mail Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5564","27824","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1096","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15621","-1","","","","","Gryphon Mail Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15766","78830","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","2062","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15622","-1","","","","","Gryphon Mail Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14834","74173","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","509","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15623","-1","","","","","Gryphon Mail Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10715","53579","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","677","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15624","-1","","","","","Gryphon Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","24855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1011","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15625","-1","","","","","Gryphon Mail Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5818","29094","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","760","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15626","-1","","","","","Gryphon Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8798","43993","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","844","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15627","-1","","","","","Gryphon Mail Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14493","72468","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","593","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15628","-1","","","","","Gryphon Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9570","47854","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1180","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15629","-1","","","","","Formidable Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6374","31871","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1096","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15630","-1","","","","","Formidable Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10312","51564","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","845","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15631","-1","","","","","Formidable Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16672","83363","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","510","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15632","-1","","","","","Formidable Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4997","24989","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1012","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15633","-1","","","","","Formidable Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16210","81050","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","2068","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15634","-1","","","","","Formidable Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11441","57208","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","678","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15635","-1","","","","","Formidable Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5896","29483","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","760","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15636","-1","","","","","Formidable Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6333","31669","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","929","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15637","-1","","","","","Formidable Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14557","72786","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","593","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15638","-1","","","","","Formidable Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9614","48074","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1181","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15639","-1","","","","","Ironhide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7040","35200","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1097","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15640","-1","","","","","Ironhide Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20233","101168","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","511","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15641","-1","","","","","Ironhide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7587","37938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","929","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15642","-1","","","","","Ironhide Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12162","60811","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","846","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15643","-1","","","","","Ironhide Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6675","33379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1013","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15644","-1","","","","","Ironhide Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8130","40651","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","762","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15645","-1","","","","","Ironhide Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14577","72887","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","679","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15646","-1","","","","","Ironhide Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19506","97534","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","595","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15647","-1","","","","","Ironhide Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13125","65628","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1182","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15648","-1","","","","","Ironhide Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22212","111061","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","2074","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15649","-1","","","","","Merciless Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7808","39041","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1097","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15650","-1","","","","","Merciless Surcoat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22230","111154","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","511","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15651","-1","","","","","Merciless Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15785","78925","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","679","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15652","-1","","","","","Merciless Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7139","35699","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1013","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15653","-1","","","","","Merciless Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8053","40266","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","762","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15654","-1","","","","","Merciless Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8569","42848","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","930","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15655","-1","","","","","Merciless Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19862","99310","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","595","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15656","-1","","","","","Merciless Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13366","66833","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1182","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15657","-1","","","","","Merciless Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22625","113128","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2074","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15658","-1","","","","","Impenetrable Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17850","89254","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","848","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15659","-1","","","","","Impenetrable Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9508","47540","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1099","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15660","-1","","","","","Impenetrable Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26315","131577","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","513","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15661","-1","","","","","Impenetrable Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9036","45180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1014","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15662","-1","","","","","Impenetrable Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10801","54007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","763","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15663","-1","","","","","Impenetrable Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10226","51130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","931","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15664","-1","","","","","Impenetrable Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19071","95355","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","680","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15665","-1","","","","","Impenetrable Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25520","127600","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","596","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15666","-1","","","","","Impenetrable Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18375","91877","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1184","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15667","-1","","","","","Impenetrable Wall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28785","143928","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","2086","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15668","-1","","","","","Magnificent Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11697","58488","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1100","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15669","-1","","","","","Magnificent Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28538","142694","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","513","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15670","-1","","","","","Magnificent Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20455","102277","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","681","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15671","-1","","","","","Magnificent Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9782","48912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1015","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15672","-1","","","","","Magnificent Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12164","60821","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","764","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15673","-1","","","","","Magnificent Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11075","55375","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","932","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15674","-1","","","","","Magnificent Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18464","92321","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","848","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15675","-1","","","","","Magnificent Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28932","144661","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2086","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15676","-1","","","","","Magnificent Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25928","129644","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","597","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15677","-1","","","","","Magnificent Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19605","98029","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1185","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15678","-1","","","","","Triumphant Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21693","108468","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","849","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15679","-1","","","","","Triumphant Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13108","65540","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1101","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15680","-1","","","","","Triumphant Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31983","159918","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","514","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15681","-1","","","","","Triumphant Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11406","57033","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1016","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15682","-1","","","","","Triumphant Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14610","73050","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","765","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15683","-1","","","","","Triumphant Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12666","63333","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","932","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15684","-1","","","","","Triumphant Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23178","115893","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","682","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15685","-1","","","","","Triumphant Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29539","147698","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","597","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15686","-1","","","","","Triumphant Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22331","111657","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1185","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15687","-1","","","","","Triumphant Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32493","162469","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15688","-1","","","","","Magic Beans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15689","-1","","","","","Trader's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4040","16160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","0","0","0","0","0","0","0","0","0","0" +"15690","-1","","","","","Kodobone Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4912","19650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","4","0","0","0","0","0","0","0","0","0" +"15691","-1","","","","","Sidegunner Shottie","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6909","34545","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","38","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"15692","-1","","","","","Kodo Brander","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6935","34677","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","38","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15693","-1","","","","","Grand Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14533","72665","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1163","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15694","-1","","","","","Merciless Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13264","66322","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","846","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15695","-1","","","","","Studded Ring Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5771","28856","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","0","0","0","0","0","0","0","0","0" +"15696","-1","An old, worthless tome.","","","","Ruined Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15697","-1","","","","","Kodo Rustler Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","14129","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","5","3","0","0","0","0","0","0","0","0" +"15698","-1","","","","","Wrangling Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4273","21368","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","8","2","0","0","0","0","0","0","0","0" +"15699","-1","","","","","Small Brown-wrapped Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15702","-1","","","","","Chemist's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7396","29585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","4","4","0","0","0","0","0","0","0","0" +"15703","-1","","","","","Chemist's Smock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9032","45163","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","0" +"15704","-1","","","","","Hunter's Insignia Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6145","24580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"15705","-1","","","","","Tidecrest Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33830","169154","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","62","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15706","-1","","","","","Hunt Tracker Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33830","169154","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","8","0","0","0","0","0","0","0","0","0" +"15707","-1","","","","","Brantwood Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","36078","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","10","10","0","0","0","0","0","0","0","0" +"15708","-1","","","","","Blight Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8965","44825","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","8","8","0","0","0","0","0","0","0","0" +"15709","-1","","","","","Gearforge Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7270","36352","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","4","5","0","0","0","0","0","0","0","0" +"15710","-1","","","","","Cenarion Lunardust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15722","-1","","","","","Spraggle's Canteen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15723","-1","","","","","Tea with Sugar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","11300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15724","-1","","","","","Pattern: Heavy Scorpid Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","165","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15725","-1","","","","","Pattern: Wicked Leather Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","165","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15726","-1","","","","","Pattern: Green Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","165","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15727","-1","","","","","Pattern: Heavy Scorpid Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15728","-1","","","","","Pattern: Wicked Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15729","-1","","","","","Pattern: Chimeric Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15730","-1","","","","","Pattern: Red Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15731","-1","","","","","Pattern: Runic Leather Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15732","-1","","","","","Pattern: Volcanic Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15733","-1","","","","","Pattern: Green Dragonscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15734","-1","","","","","Pattern: Living Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15735","-1","","","","","Pattern: Ironfeather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15736","-1","Keep Away From Fire.","","","","Smokey's Special Compound","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15737","-1","","","","","Pattern: Chimeric Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15738","-1","","","","","Pattern: Heavy Scorpid Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15739","-1","","","","","Pattern: Runic Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15740","-1","","","","","Pattern: Frostsaber Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15741","-1","","","","","Pattern: Stormshroud Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15742","-1","","","","","Pattern: Warbear Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15743","-1","","","","","Pattern: Heavy Scorpid Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15744","-1","","","","","Pattern: Wicked Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15745","-1","","","","","Pattern: Runic Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15746","-1","","","","","Pattern: Chimeric Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15747","-1","","","","","Pattern: Frostsaber Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15748","-1","","","","","Pattern: Heavy Scorpid Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15749","-1","","","","","Pattern: Volcanic Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15750","-1","","","","","Sceptre of Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15751","-1","","","","","Pattern: Blue Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15752","-1","","","","","Pattern: Living Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15753","-1","","","","","Pattern: Stormshroud Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15754","-1","","","","","Pattern: Warbear Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15755","-1","","","","","Pattern: Chimeric Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15756","-1","","","","","Pattern: Runic Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15757","-1","","","","","Pattern: Wicked Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15758","-1","","","","","Pattern: Devilsaur Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15759","-1","","","","","Pattern: Black Dragonscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15760","-1","","","","","Pattern: Ironfeather Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15761","-1","","","","","Pattern: Frostsaber Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15762","-1","","","","","Pattern: Heavy Scorpid Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15763","-1","","","","","Pattern: Blue Dragonscale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15764","-1","","","","","Pattern: Stormshroud Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15765","-1","","","","","Pattern: Runic Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15766","-1","","","","","Gem of the Serpent","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15767","-1","","","","","Hameya's Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15768","-1","","","","","Pattern: Wicked Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15769","-1","","","","","Pattern: Onyxia Scale Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15770","-1","","","","","Pattern: Black Dragonscale Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15771","-1","","","","","Pattern: Living Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15772","-1","","","","","Pattern: Devilsaur Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15773","-1","","","","","Pattern: Wicked Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15774","-1","","","","","Pattern: Heavy Scorpid Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15775","-1","","","","","Pattern: Volcanic Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15776","-1","","","","","Pattern: Runic Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15777","-1","","","","","Pattern: Runic Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15778","-1","","","","","Mechanical Yeti","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15779","-1","","","","","Pattern: Frostsaber Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15780","-1","","","","","Pattern: Onyxia Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"15781","-1","","","","","Pattern: Black Dragonscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15782","-1","","","","","Beaststalker Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43142","215714","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15783","-1","","","","","Beasthunter Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43292","216460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","60","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15784","-1","","","","","Crystal Breeze Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11541","57705","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","12","0","0","0","0","0","0","0","0","0" +"15785","-1","","","","","Zaeldarr's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15786","-1","","","","","Fernpulse Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18826","94134","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","5","8","0","0","0","0","0","0","0","0" +"15787","-1","","","","","Willow Band Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22592","112961","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","10","20","0","0","0","0","0","0","0","0" +"15788","-1","","","","","Everlook Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15789","-1","","","","","Deep River Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9574","47873","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","11","0","0","0","0","0","0","0","0","0" +"15790","-1","This book is written in a language you cannot understand.","","","","Studies in Spirit Speaking","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2411","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15791","-1","","","","","Turquoise Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7172","35860","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","15","6","0","0","0","0","0","0","0","0" +"15792","-1","","","","","Plow Wood Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14154","70770","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","6","6","0","0","0","0","0","0","0","0" +"15793","-1","","","","","A Chewed Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15794","-1","","","","","Ripped Ogre Loincloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15795","-1","","","","","Emerald Mist Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7631","38157","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","13","0","0","0","0","0","0","0","0","0" +"15796","-1","","","","","Seaspray Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12063","60317","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","4","0","0","0","0","0","0","0","0","0" +"15797","-1","","","","","Shining Armplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7530","37653","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","2","0","0","0","0","0","0","0","0","0" +"15798","-1","","","","","Chipped Ogre Teeth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15799","-1","","","","","Heroic Commendation Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","5","0","0","0","0","0","0","0","0","0" +"15800","-1","","","","","Intrepid Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36082","180413","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","58","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","0" +"15801","-1","","","","","Valiant Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35860","179303","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","58","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","0" +"15802","-1","","","","","Mooncloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11648","58243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","13","11","0","0","0","0","0","0","0","51" +"15803","-1","","","","","Book of the Ancients","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15804","-1","","","","","Cerise Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9574","47873","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","6","6","7","0","0","0","0","0","0","0" +"15805","-1","","","","","Penelope's Rose","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14662","58650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","11","11","10","0","0","0","0","0","0","0","0" +"15806","-1","","","","","Mirah's Song","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51273","256366","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","61","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","9","0","0","0","0","0","0","0","0","0" +"15807","-1","","","","","Light Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","6","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","3" +"15808","-1","","","","","Fine Light Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","728","3640","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","21","-1","0","0","20","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","16" +"15809","-1","","","","","Heavy Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2938","14691","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","36","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","29" +"15810","-1","","","","","Short Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2029","10145","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","25","-1","0","0","40","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15811","-1","","","","","Heavy Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5426","27132","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","35","-1","0","0","68","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15812","-1","","","","","Orchid Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9574","47873","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","4","4","3","0","0","0","0","0","0","0" +"15813","-1","","","","","Gold Link Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10113","50568","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","12","0","0","0","0","0","0","0","0","0" +"15814","-1","","","","","Hameya's Slayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41911","209558","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15815","-1","","","","","Hameya's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11860","59304","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","15","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15822","-1","","","","","Shadowskin Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11290","56454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","0","0","0","0","0","0","0","0","0","0" +"15823","-1","","","","","Bricksteel Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9191","45958","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","0","0","0","0","0","0","0","0","0","0" +"15824","-1","","","","","Astoria Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15061","75307","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","10","5","0","0","0","0","0","0","0","0" +"15825","-1","","","","","Traphook Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19302","96512","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","5","0","0","0","0","0","0","0","0","0" +"15826","-1","","","","","Curative Animal Salve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15827","-1","","","","","Jadescale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22592","112961","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","7","0","0","0","0","0","0","0","0","0" +"15842","-1","","","","","Empty Dreadmist Peak Sampler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15843","-1","","","","","Filled Dreadmist Peak Sampler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15844","-1","","","","","Empty Cliffspring Falls Sampler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15845","-1","","","","","Filled Cliffspring Falls Sampler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15846","-1","","","","","Salt Shaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15847","-1","This book emits a faint glow.","","","","Quel'Thalas Registry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2431","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15848","-1","","","","","Crate of Ghost Magnets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15849","-1","","","","","Ghost-o-plasm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15850","-1","","","","","Patch of Duskwing's Fur","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15851","-1","","","","","Lunar Fungus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15852","-1","","","","","Kodo Horn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15853","-1","","","","","Windreaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51418","257091","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","60","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15854","-1","","","","","Dancing Sliver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64502","322514","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","98","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","0" +"15855","-1","","","","","Ring of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","0" +"15856","-1","","","","","Archlight Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","8","0","0","0","0","0","0","0","0" +"15857","-1","","","","","Magebane Scion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15335","61342","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","10","0","10","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15858","-1","","","","","Freewind Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7530","37653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","0","0","0","0","0","0","0","0","0","0" +"15859","-1","","","","","Seapost Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11296","56480","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","8","8","0","0","0","0","0","0","0","0" +"15860","-1","","","","","Blinkstrike Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7907","39535","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15861","-1","","","","","Swiftfoot Treads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14969","74845","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","5","0","0","0","0","0","0","0","0","0" +"15862","-1","","","","","Blitzcleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28789","143946","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","54","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15863","-1","","","","","Grave Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28896","144482","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15864","-1","","","","","Condor Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1947","9738","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","6","0","0","0","0","0","0","0","0","0" +"15865","-1","","","","","Anchorhold Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6562","32811","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","0","0","0","0","0","0","0","0","0" +"15866","-1","","","","","Veildust Medicine Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562","2250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15867","-1","","","","","Prismcharm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7464","29857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15868","-1","Bears the Seal of the Scarlet Crusade","","","","The Grand Crusader's Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15869","-1","","","","","Silver Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15870","-1","","","","","Golden Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15871","-1","","","","","Truesilver Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15872","-1","","","","","Arcanite Skeleton Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15873","-1","","","","","Ragged John's Neverending Cup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8144","32578","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15874","-1","","","","","Soft-shelled Clam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15875","-1","The Worm is the Best Part.","","","","Rotten Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15876","-1","","","","","Nathanos' Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15877","-1","","","","","Shrine Bauble","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15878","-1","","","","","Rackmore's Silver Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15879","-1","","","","","Overlord Ror's Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15880","-1","","","","","Head of Ramstein the Gorger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15881","-1","","","","","Rackmore's Golden Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15882","-1","The pendant is missing its aquatic counterpart.","","","","Half Pendant of Aquatic Endurance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15883","-1","","","","","Half Pendant of Aquatic Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15884","-1","","","","","Augustus' Receipt Book","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15885","-1","","","","","Pendant of the Sea Lion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15886","-1","","","","","Timolain's Phylactery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"15887","-1","","","","","Heroic Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29581","147908","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2088","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15888","-1","","","","","Deprecated Glorious Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26929","134647","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15889","-1","","","","","Deprecated Jademir Scale Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23125","115625","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15890","-1","","","","","Vanguard Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25831","129157","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","12","5","0","0","0","0","0","0","0","0","54" +"15891","-1","","","","","Hulking Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2014","10074","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","21" +"15892","-1","","","","","Slayer's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3582","17911","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","3","0","0","0","0","0","0","0","0","27" +"15893","-1","","","","","Prospector's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1082","5410","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","3","0","0","0","0","0","0","0","0","16" +"15894","-1","","","","","Bristlebark Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1802","9010","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","4","0","0","0","0","0","0","0","0","20" +"15895","-1","","","","","Burnt Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53","265","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15902","-1","","","","","A Crazy Grab Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15903","-1","","","","","Right-Handed Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1623","8117","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15904","-1","","","","","Right-Handed Blades","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4341","21708","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15905","-1","","","","","Right-Handed Brass Knuckles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","426","2130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","10" +"15906","-1","","","","","Left-Handed Brass Knuckles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","427","2138","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","10" +"15907","-1","","","","","Left-Handed Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1647","8237","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15908","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15909","-1","","","","","Left-Handed Blades","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4421","22107","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15910","-1","","","","","Monster - Trident, Dark Ornate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"15911","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15912","-1","","","","","Buccaneer's Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1148","4594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2008","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15913","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15914","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15915","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15916","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15917","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15918","-1","","","","","Conjurer's Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4848","19392","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","38","-1","0","2038","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15919","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15920","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15921","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15922","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15923","-1","","","","","Taming Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15924","-1","","","","","Soft-shelled Clam Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15925","-1","","","","","Journeyman's Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","439","1758","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","5" +"15926","-1","","","","","Spellbinder Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","3210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","12" +"15927","-1","","","","","Bright Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1864","7458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","2","0","0","0","0","0","0","0","0","22" +"15928","-1","","","","","Silver-thread Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","9548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","5","0","0","0","0","0","0","0","0","26" +"15929","-1","","","","","Nightsky Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4396","17585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","3","2","0","0","0","0","0","0","0","32" +"15930","-1","","","","","Imperial Red Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9146","36584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","4","2","0","0","0","0","0","0","0","51" +"15931","-1","","","","","Arcane Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10646","42584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","8","5","0","0","0","0","0","0","0","56" +"15932","-1","","","","","Disciple's Stein","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","527","2110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6273","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","7" +"15933","-1","","","","","Simple Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","620","2480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","6272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15934","-1","","","","","Sage's Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2596","10384","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2026","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15935","-1","","","","","Durable Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3323","13295","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15936","-1","","","","","Duskwoven Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8950","35802","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15937","-1","","","","","Hibernal Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7922","31690","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","0","0","0","0","0","0","0","0","0","46" +"15938","-1","","","","","Mystical Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9550","38203","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15939","-1","","","","","Councillor's Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10455","41823","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15940","-1","","","","","Elegant Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10957","43829","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15941","-1","","","","","High Councillor's Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12345","49382","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15942","-1","","","","","Master's Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12757","51029","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15943","-1","","","","","Imbued Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27752","138761","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","14","0","0","0","0","0","0","0","0","56" +"15944","-1","","","","","Ancestral Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","7" +"15945","-1","","","","","Runic Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","13" +"15946","-1","","","","","Mystic's Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","4495","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","3","0","0","0","0","0","0","0","0","18" +"15947","-1","","","","","Sanguine Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1887","7548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","4","0","0","0","0","0","0","0","0","23" +"15962","-1","","","","","Satyr's Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2716","10864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","2","6","0","0","0","0","0","0","0","28" +"15963","-1","","","","","Stonecloth Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4887","19548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","8","0","0","0","0","0","0","0","0","34" +"15964","-1","","","","","Silksand Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6364","25458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","9","2","0","0","0","0","0","0","0","0","39" +"15965","-1","","","","","Windchaser Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7996","31986","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","11","1","0","0","0","0","0","0","0","44" +"15966","-1","","","","","Venomshroud Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9137","36548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","5","0","0","0","0","0","0","0","0","49" +"15967","-1","","","","","Highborne Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10304","41218","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","11","6","3","0","0","0","0","0","0","0","54" +"15968","-1","","","","","Elunarian Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","48765","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","14","3","2","0","0","0","0","0","0","0","59" +"15969","-1","","","","","Beaded Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","1700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","6273","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","5" +"15970","-1","","","","","Native Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","587","2348","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","6272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15971","-1","","","","","Aboriginal Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","2002","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15972","-1","","","","","Ritual Stein","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1171","4685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","24","-1","0","2008","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15973","-1","","","","","Watcher's Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2313","9254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","2020","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15974","-1","","","","","Pagan Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1461","5846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15975","-1","","","","","Raincaller Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","9684","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","31","-1","0","2026","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15976","-1","","","","","Thistlefur Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4146","16584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","36","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15977","-1","","","","","Vital Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4614","18456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","37","-1","0","2038","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15978","-1","","","","","Geomancer's Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5385","21542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15979","-1","","","","","Embersilk Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","23515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","42","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15980","-1","","","","","Darkmist Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7469","29878","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","46","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15981","-1","","","","","Lunar Sphere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","31548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","47","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15982","-1","","","","","Bloodwoven Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8142","32568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","51","-1","0","2062","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15983","-1","","","","","Gaea's Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8387","33548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","2068","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15984","-1","","","","","Opulent Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9614","38458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","56","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15985","-1","","","","","Arachnidian Branch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9887","39548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","57","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15986","-1","","","","","Bonecaster's Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10813","43254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15987","-1","","","","","Astral Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10996","43985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","61","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15988","-1","","","","","Resplendent Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12471","49885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15989","-1","","","","","Eternal Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12498","49995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15990","-1","","","","","Enduring Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6850","34252","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","3","0","0","0","0","0","0","0","34" +"15991","-1","","","","","Warleader's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29230","146151","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","14","4","0","0","0","0","0","0","0","0","58" +"15992","-1","","","","","Dense Blasting Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15993","-1","","","","","Thorium Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15994","-1","","","","","Thorium Widget","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15995","-1","","","","","Thorium Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19739","98697","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"15996","-1","","","","","Lifelike Mechanical Toad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15997","-1","","","","","Thorium Shells","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","57","-1","0","0","17","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15998","-1","","","","","Lewis' Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2512","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15999","-1","","","","","Spellpower Goggles Xtreme Plus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9002","45014","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","202","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16000","-1","","","","","Thorium Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3750","15000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16001","-1","","","","","SI:7 Insignia (Fredo)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16002","-1","","","","","SI:7 Insignia (Turyen)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16003","-1","","","","","SI:7 Insignia (Rutger)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16004","-1","","","","","Dark Iron Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29152","145763","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","55","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","50" +"16005","-1","","","","","Dark Iron Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16006","-1","","","","","Delicate Arcanite Converter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16007","-1","","","","","Flawless Arcanite Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40625","203125","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","56" +"16008","-1","","","","","Master Engineer's Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11739","58696","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","16","0","0","0","0","0","0","0","0","0" +"16009","-1","","","","","Voice Amplification Modulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5930","23720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16022","-1","","","","","Arcanite Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","50" +"16023","-1","","","","","Masterwork Target Dummy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16024","-1","","","","","Ashbringer Test 001","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16025","-1","","","","","Ashbringer Test 002","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16026","-1","","","","","PVP Plate Helm Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7160","35802","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16027","-1","","","","","PVP Plate Breastplate Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16028","-1","","","","","PVP Plate Legplates Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16029","-1","","","","","PVP Plate Gauntlets Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4828","24142","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16030","-1","","","","","PVP Plate Boots Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7270","36350","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16031","-1","","","","","PVP Plate Shoulder Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7297","36488","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16033","-1","","","","","PVP Plate Wrist Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4901","24507","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16034","-1","","","","","PVP Plate Cloak Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7116","35582","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16035","-1","","","","","PVP Cloth Helm Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7407","37037","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16036","-1","","","","","PVP Cloth Robe Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16037","-1","","","","","PVP Cloth Legs Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16038","-1","","","","","PVP Cloth Shoulder Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7116","35582","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16039","-1","","","","","Ta'Kierthan Songblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53598","267990","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","57","-1","0","0","129","1","0","0","0","194","20","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"16040","-1","","","","","Arcane Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16041","-1","","","","","Schematic: Thorium Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16042","-1","","","","","Schematic: Thorium Widget","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16043","-1","","","","","Schematic: Thorium Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16044","-1","","","","","Schematic: Lifelike Mechanical Toad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16045","-1","","","","","Schematic: Spellpower Goggles Xtreme Plus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","202","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16046","-1","","","","","Schematic: Masterwork Target Dummy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16047","-1","","","","","Schematic: Thorium Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16048","-1","","","","","Schematic: Dark Iron Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16049","-1","","","","","Schematic: Dark Iron Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16050","-1","","","","","Schematic: Delicate Arcanite Converter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16051","-1","","","","","Schematic: Thorium Shells","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16052","-1","","","","","Schematic: Voice Amplification Modulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16053","-1","","","","","Schematic: Master Engineer's Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16054","-1","","","","","Schematic: Arcanite Dragonling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16055","-1","","","","","Schematic: Arcane Bomb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16056","-1","","","","","Schematic: Flawless Arcanite Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16057","-1","","","","","Explorer's Knapsack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16058","-1","","","","","Fordring's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10156","40625","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","4","0","0","0","0","0","0","0","0","0" +"16059","-1","","","","","Common Brown Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16060","-1","","","","","Common White Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16061","-1","","","","","Test Fire Res Shoulders Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2259","11299","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16062","-1","","","","","Test Fire Res Waist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1511","7558","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16063","-1","","","","","Test Fire Res Hands Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1516","7584","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16064","-1","","","","","Test Fire Res Waist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2066","10332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16065","-1","","","","","Test Fire Res Feet Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2593","12965","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16066","-1","","","","","Test Fire Res Feet Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3137","15686","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16067","-1","","","","","Test Fire Res Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16068","-1","","","","","Test Fire Resist Cloth LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16069","-1","","","","","Test Fire Resist Leather LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16070","-1","","","","","Test Fire Resist Mail LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16071","-1","","","","","Test Fire Resist Plate LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16072","-1","","","","","Expert Cookbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16073","-1","","","","","Artisan Cookbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16074","-1","","","","","Test Potion LockBox (Warrior)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16075","-1","","","","","Test Potion LockBox (Rogue)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16076","-1","","","","","Test Potion LockBox (Paladin)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16077","-1","","","","","Test Potion LockBox (Hunter)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16078","-1","","","","","Test Potion LockBox (Druid)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16079","-1","","","","","Test Potion LockBox (Shaman)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16080","-1","","","","","Test Potion LockBox (Mage/Priest/Warlock)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16081","-1","","","","","Test Potion LockBox (Raid)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16082","-1","","","","","Artisan Fishing - The Way of the Lure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","356","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16083","-1","","","","","Expert Fishing - The Bass and You","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"16084","-1","","","","","Expert First Aid - Under Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16085","-1","","","","","Artisan First Aid - Heal Thyself","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16086","-1","","","","","Test Enchant Chest Health","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16102","-1","","","","","Test Enchant Chest Mana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16103","-1","","","","","Test Enchant Boots Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16104","-1","","","","","QAEnchhelp Cloak +7 Fire Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16105","-1","","","","","Test Enchant Bracer Greater Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16106","-1","","","","","Test Enchant Weapon Greater Striking","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16107","-1","","","","","Test Enchant Bracer Greater Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16108","-1","","","","","Test Enchant 2H Weapon Greater Impact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16109","-1","","","","","Test Enchantments LockBox (Enchanting Items)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16110","-1","","","","","Recipe: Monster Omelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16111","-1","","","","","Recipe: Spiced Chili Crab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16112","-1","","","","","Manual: Heavy Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","129","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16113","-1","","","","","Manual: Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","129","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16114","-1","","","","","Foreman's Blackjack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16115","-1","","","","","Osric's Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16116","-1","","","","","Test Nature Res Cloak Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2219","11095","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16117","-1","","","","","Test Nature Res Hands Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6899","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16118","-1","","","","","Test Nature Res Legs Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2760","13800","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16119","-1","","","","","Test Nature Res Wrist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6899","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16120","-1","","","","","Test Nature Res Waist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","7502","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16121","-1","","","","","Test Nature Res Head Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16122","-1","","","","","Test Nature Res Shoulders Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10535","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16123","-1","","","","","Test Nature Res Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16124","-1","","","","","Test Frost Res Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16125","-1","","","","","Test Arcane Res Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16126","-1","","","","","Test Nature Res Waist Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1782","8911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16127","-1","","","","","Test Nature Res Wrist Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1725","8625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16129","-1","","","","","Test Nature Res Feet Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3118","15594","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16131","-1","","","","","Test Nature Res Waist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16132","-1","","","","","Test Nature Res Wrist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1725","8625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16134","-1","","","","","Test Nature Res Shoulders Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3118","15594","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16135","-1","","","","","Test Frost Res Feet Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2210","11053","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16136","-1","","","","","Test Frost Res Waist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1479","7395","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16137","-1","","","","","Test Frost Res Wrist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6899","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16138","-1","","","","","Test Frost Res Head Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16139","-1","","","","","Test Frost Res Head Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16140","-1","","","","","Test Nature Res Head Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2613","13068","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16141","-1","","","","","Test Nature Res Head Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3148","15740","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16142","-1","","","","","Test Frost Res Wrist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16143","-1","","","","","Test Frost Res Shoulder Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3118","15594","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16144","-1","","","","","Test Frost Res Shoulders Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16145","-1","","","","","Test Shadow Res Waist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1420","7101","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16146","-1","","","","","Test Shadow Res Head Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16147","-1","","","","","Test Shadow Res Shoulders Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2146","10733","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16148","-1","","","","","Test Shadow Res Shoulders Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16149","-1","","","","","Test Shadow Res Shoulder Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3118","15594","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16150","-1","","","","","Test Shadow Res Waist Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1725","8625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16151","-1","","","","","Test Arcane Res Feet Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2178","10893","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16152","-1","","","","","Test Arcane Res Waist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1457","7287","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16153","-1","","","","","Test Arcane Res Wrist Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6899","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16154","-1","","","","","Test Arcane Res Shoulders Cloth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2260","11300","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16155","-1","","","","","Test Arcane Res Waist Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1725","8625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16156","-1","","","","","Test Arcane Res Head Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16157","-1","","","","","Test Arcane Res Feet Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3118","15594","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16158","-1","","","","","Test Arcane Res Wrist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16159","-1","","","","","Test Arcane Res Head Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3124","15620","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16160","-1","","","","","Test Arcane Res Shoulders Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3155","15776","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16161","-1","","","","","Test Shadow Res Hands Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2103","10517","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16162","-1","","","","","Test Frost Res Shoulders Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3155","15776","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16163","-1","","","","","Test Arcane Res Waist Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16164","-1","","","","","Test Arcane Res Hands Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16165","-1","","","","","Test Arcane Res Legs Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4140","20701","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16166","-1","","","","","Bean Soup","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"16167","-1","","","","","Versicolor Treat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"16168","-1","","","","","Heaven Peach","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16169","-1","","","","","Wild Ricecake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"16170","-1","","","","","Steamed Mandu","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"16171","-1","","","","","Shinsollo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"16172","-1","","","","","Test Nature Res Hands Plate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2279","11399","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16173","-1","","","","","Test Frost Resist Cloth LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16174","-1","","","","","Test Frost Resist Leather LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16175","-1","","","","","Test Frost Resist Mail LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16176","-1","","","","","Test Frost Resist Plate LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16177","-1","","","","","Test Nature Resist Plate LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16178","-1","","","","","Test Nature Resist Leather LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16179","-1","","","","","Test Nature Resist Mail LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16180","-1","","","","","Test Nature Resist Cloth LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16181","-1","","","","","Test Shadow Resist Cloth LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16182","-1","","","","","Test Shadow Resist Leather LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16183","-1","","","","","Test Shadow Resist Mail LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16184","-1","","","","","Test Shadow Resist Plate LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16185","-1","","","","","Test Arcane Resist Plate LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16186","-1","","","","","Test Arcane Resist Cloth LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16187","-1","","","","","Test Arcane Resist Leather LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16188","-1","","","","","Test Arcane Resist Mail LockBox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16189","-1","","","","","Maggran's Reserve Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2491","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16190","-1","","","","","Bloodfury Ripper's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16191","-1","","","","","Ornate Mirror","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16192","-1","","","","","Besseleth's Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16202","-1","","","","","Lesser Eternal Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","40000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16203","-1","","","","","Greater Eternal Essence","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","120000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16204","-1","","","","","Illusion Dust","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16205","-1","","","","","Gaea Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16206","-1","Needed by Enchanters.","","","","Arcanite Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16207","-1","","","","","Runed Arcanite Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16208","-1","","","","","Enchanted Gaea Seeds","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16209","-1","","","","","Podrig's Order","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2515","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16210","-1","","","","","Gordon's Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16211","-1","","","","","Test Quality Modifier Chest","1","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"16212","-1","","","","","TEST SWORD 3","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23721","118609","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16213","-1","","","","","Test Quality Modifier Chest","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"16214","-1","","","","","Formula: Enchant Bracer - Greater Intellect","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","333","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16215","-1","","","","","Formula: Enchant Boots - Greater Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","333","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16216","-1","","","","","Formula: Enchant Cloak - Greater Resistance","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16217","-1","","","","","Formula: Enchant Shield - Greater Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16218","-1","","","","","Formula: Enchant Bracer - Superior Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","333","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16219","-1","","","","","Formula: Enchant Gloves - Greater Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","333","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16220","-1","","","","","Formula: Enchant Boots - Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16221","-1","","","","","Formula: Enchant Chest - Major Health","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16222","-1","","","","","Formula: Enchant Shield - Superior Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","333","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16223","-1","","","","","Formula: Enchant Weapon - Icy Chill","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","333","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16224","-1","","","","","Formula: Enchant Cloak - Superior Defense","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","333","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16242","-1","","","","","Formula: Enchant Chest - Major Mana","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16243","-1","","","","","Formula: Runed Arcanite Rod","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16244","-1","","","","","Formula: Enchant Gloves - Greater Strength","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16245","-1","","","","","Formula: Enchant Boots - Greater Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16246","-1","","","","","Formula: Enchant Bracer - Superior Strength","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16247","-1","","","","","Formula: Enchant 2H Weapon - Superior Impact","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16248","-1","","","","","Formula: Enchant Weapon - Unholy","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16249","-1","","","","","Formula: Enchant 2H Weapon - Major Intellect","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16250","-1","","","","","Formula: Enchant Weapon - Superior Striking","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16251","-1","","","","","Formula: Enchant Bracer - Superior Stamina","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16252","-1","","","","","Formula: Enchant Weapon - Crusader","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16253","-1","","","","","Formula: Enchant Chest - Greater Stats","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16254","-1","","","","","Formula: Enchant Weapon - Lifestealing","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16255","-1","","","","","Formula: Enchant 2H Weapon - Major Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16262","-1","","","","","Nessa's Collection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16263","-1","","","","","Laird's Response","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2513","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16282","-1","","","","","Bundle of Hides","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16283","-1","","","","","Ahanu's Leather Goods","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16302","-1","","","","","Grimoire of Firebolt (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"16303","-1","","","","","Ursangous's Paw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16304","-1","","","","","Shadumbra's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16305","-1","","","","","Sharptalon's Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16306","-1","","","","","Zargh's Meats","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16307","-1","","","","","Gryshka's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2511","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16308","-1","","","","","Northridge Crowbar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16309","-1","The Blood of Drakkisath Flows Within...","","","","Drakefire Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","0","0","0","0","0","0","0","0","0","50" +"16310","-1","","","","","Brock's List","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2514","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16311","-1","","","","","Honorary Picks","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16312","-1","","","","","Incendrites","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16313","-1","","","","","Felix's Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16314","-1","","","","","Felix's Bucket of Bolts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16315","-1","","","","","Sergeant Major's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","805","4029","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","4","3","-1","-1","-1","-1","-1","0","0","0","9","16","3","0","4","4","4","4","4","0","0","0","0","0","25" +"16316","-1","","","","","Grimoire of Firebolt (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"16317","-1","","","","","Grimoire of Firebolt (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"16318","-1","","","","","Grimoire of Firebolt (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16319","-1","","","","","Grimoire of Firebolt (Rank 6)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16320","-1","","","","","Grimoire of Firebolt (Rank 7)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16321","-1","","","","","Grimoire of Blood Pact (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"16322","-1","","","","","Grimoire of Blood Pact (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"16323","-1","","","","","Grimoire of Blood Pact (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16324","-1","","","","","Grimoire of Blood Pact (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16325","-1","","","","","Grimoire of Blood Pact (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16326","-1","","","","","Grimoire of Fire Shield (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"16327","-1","","","","","Grimoire of Fire Shield (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16328","-1","","","","","Grimoire of Fire Shield (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16329","-1","","","","","Grimoire of Fire Shield (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"16330","-1","","","","","Grimoire of Fire Shield (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"16331","-1","","","","","Grimoire of Phase Shift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"16332","-1","","","","","Thazz'ril's Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16333","-1","","","","","Samuel's Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16335","-1","","","","","Senior Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16336","-1","","","","","Sergeant Major's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2917","14587","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","4","3","-1","-1","-1","-1","-1","0","0","0","9","16","3","0","6","6","6","6","6","0","0","0","0","0","40" +"16337","-1","","","","","Sergeant Major's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7491","37455","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","4","3","-1","-1","-1","-1","-1","0","0","0","9","16","3","0","8","8","8","8","8","0","0","0","0","0","55" +"16338","223","","","","","Knight-Lieutenant's Steed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16339","223","","","","","Commander's Steed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","5000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16341","-1","","","","","Sergeant's Cloak","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4285","21425","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","14","0","0","0","0","0","0","0","0","0","45" +"16342","-1","","","","","Sergeant's Cape","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8830","44154","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","17","0","0","0","0","0","0","0","0","0","58" +"16343","223","","","","","Blood Guard's Mount","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16344","223","","","","","Lieutenant General's Mount","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","5000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16345","-1","","","","","High Warlord's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49483","247416","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"16346","-1","","","","","Grimoire of Torment (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"16347","-1","","","","","Grimoire of Torment (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"16348","-1","","","","","Grimoire of Torment (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16349","-1","","","","","Grimoire of Torment (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16350","-1","","","","","Grimoire of Torment (Rank 6)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16351","-1","","","","","Grimoire of Sacrifice (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"16352","-1","","","","","Grimoire of Sacrifice (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16353","-1","","","","","Grimoire of Sacrifice (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16354","-1","","","","","Grimoire of Sacrifice (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16355","-1","","","","","Grimoire of Sacrifice (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16356","-1","","","","","Grimoire of Sacrifice (Rank 6)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"16357","-1","","","","","Grimoire of Consume Shadows (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"16358","-1","","","","","Grimoire of Consume Shadows (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16359","-1","","","","","Grimoire of Consume Shadows (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16360","-1","","","","","Grimoire of Consume Shadows (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"16361","-1","","","","","Grimoire of Consume Shadows (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16362","-1","","","","","Grimoire of Consume Shadows (Rank 6)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16363","-1","","","","","Grimoire of Suffering (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16364","-1","","","","","Grimoire of Suffering (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16365","-1","","","","","Grimoire of Suffering (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16366","-1","","","","","Grimoire of Suffering (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16367","-1","","","","","Knight-Captain's Silk Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4810","24050","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"16368","-1","","","","","Grimoire of Lash of Pain (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"16369","-1","","","","","Knight-Lieutenant's Silk Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8416","42081","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16370","-1","","","","","Knight-Captain's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4865","24326","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","3","7","0","0","0","0","0","0","0","55" +"16371","-1","","","","","Grimoire of Lash of Pain (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16372","-1","","","","","Grimoire of Lash of Pain (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"16373","-1","","","","","Grimoire of Lash of Pain (Rank 5)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"16374","-1","","","","","Grimoire of Lash of Pain (Rank 6)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16375","-1","","","","","Grimoire of Soothing Kiss (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"16376","-1","","","","","Grimoire of Soothing Kiss (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16377","-1","","","","","Grimoire of Soothing Kiss (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"16378","-1","","","","","Grimoire of Soothing Kiss (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16379","-1","","","","","Grimoire of Seduction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16380","-1","","","","","Grimoire of Lesser Invisibility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16381","-1","","","","","Grimoire of Devour Magic (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16382","-1","","","","","Grimoire of Devour Magic (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"16383","-1","","","","","Grimoire of Devour Magic (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"16384","-1","","","","","Grimoire of Tainted Blood (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16385","-1","","","","","Grimoire of Tainted Blood (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16386","-1","","","","","Grimoire of Tainted Blood (Rank 3)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16387","-1","","","","","Grimoire of Tainted Blood (Rank 4)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"16388","-1","","","","","Grimoire of Spell Lock (Rank 1)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16389","-1","","","","","Grimoire of Spell Lock (Rank 2)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"16390","-1","","","","","Grimoire of Paranoia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"16391","-1","","","","","Knight-Lieutenant's Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5652","28261","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"16392","-1","","","","","Knight-Lieutenant's Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10638","53190","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16393","-1","","","","","Knight-Lieutenant's Dragonhide Footwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10676","53384","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","12","5","12","5","5","0","0","0","0","0","58" +"16394","-1","","","","","Knight-Captain's Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6171","30857","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","9","0","0","0","0","0","0","0","0","55" +"16395","-1","","","","","Knight-Captain's Dragonhide Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6359","31796","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","14","10","0","0","0","0","0","0","0","0","55" +"16396","-1","","","","","Knight-Lieutenant's Leather Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7388","36942","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","15","10","0","0","0","0","0","0","0","0","58" +"16397","-1","","","","","Knight-Lieutenant's Dragonhide Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7414","37072","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","12","12","0","0","0","0","0","0","0","58" +"16398","-1","","","","","Knight-Captain's Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6427","32138","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16399","-1","","","","","Knight-Captain's Dragonhide Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6450","32253","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","10","5","8","0","0","0","0","0","0","55" +"16400","-1","","","","","Knight-Captain's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7768","38843","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16401","-1","","","","","Knight-Lieutenant's Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13596","67983","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","10","0","0","0","0","0","0","0","0","58" +"16402","-1","","","","","Knight-Captain's Chain Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7823","39115","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","17","5","0","0","0","0","0","0","0","0","55" +"16403","-1","","","","","Knight-Lieutenant's Chain Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8223","41118","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16404","-1","","","","","Knight-Captain's Plate Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4754","23771","1","1","1","32784","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","14","10","0","0","0","0","0","0","0","0","55" +"16405","-1","","","","","Knight-Lieutenant's Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8286","41433","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","23","8","5","0","0","0","0","0","0","0","58" +"16406","-1","","","","","Knight-Lieutenant's Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5545","27728","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16407","-1","","","","","Knight-Captain's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4809","24045","1","1","1","32784","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","19","8","6","6","0","0","0","0","0","0","55" +"16408","-1","","","","","Befouled Water Globe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","23" +"16409","-1","","","","","Knight-Lieutenant's Lamellar Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8413","42068","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","3","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","7","6","0","0","0","0","0","0","58" +"16410","-1","","","","","Knight-Lieutenant's Lamellar Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5630","28152","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16411","-1","","","","","Knight-Captain's Lamellar Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5013","25069","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","10","9","9","0","0","0","0","0","0","55" +"16412","-1","","","","","Knight-Captain's Lamellar Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5031","25159","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","13","7","7","0","0","0","0","0","0","0","55" +"16413","-1","","","","","Knight-Captain's Silk Raiment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11692","58463","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16414","-1","","","","","Knight-Captain's Silk Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11735","58676","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"16415","-1","","","","","Lieutenant Commander's Silk Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8833","44167","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16416","-1","","","","","Lieutenant Commander's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8864","44322","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","16","16","0","0","0","0","0","0","0","58" +"16417","-1","","","","","Knight-Captain's Leather Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14827","74137","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","25","13","0","0","0","0","0","0","0","0","58" +"16418","-1","","","","","Lieutenant Commander's Leather Veil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11160","55802","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","26","0","0","0","0","0","0","0","0","0","58" +"16419","-1","","","","","Knight-Captain's Leather Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14934","74670","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16420","-1","","","","","Lieutenant Commander's Leather Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11239","56197","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","23","7","0","0","0","0","0","0","0","0","58" +"16421","-1","","","","","Knight-Captain's Dragonhide Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15039","75195","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","14","13","9","8","0","0","0","0","0","0","58" +"16422","-1","","","","","Knight-Captain's Dragonhide Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15092","75461","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","12","12","12","9","12","0","0","0","0","0","58" +"16423","-1","","","","","Lieutenant Commander's Dragonhide Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10278","51392","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","10","10","10","10","6","0","0","0","0","0","58" +"16424","-1","","","","","Lieutenant Commander's Dragonhide Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10317","51586","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","11","11","11","9","0","0","0","0","0","58" +"16425","-1","","","","","Knight-Captain's Chain Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16571","82858","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","18","16","0","0","0","0","0","0","0","0","58" +"16426","-1","","","","","Knight-Captain's Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16635","83178","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","18","17","0","0","0","0","0","0","0","0","58" +"16427","-1","","","","","Lieutenant Commander's Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12923","64619","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","20","10","0","0","0","0","0","0","0","0","58" +"16428","-1","","","","","Lieutenant Commander's Chain Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12914","64573","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","24","15","10","0","0","0","0","0","0","0","58" +"16429","-1","","","","","Lieutenant Commander's Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8641","43208","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16430","-1","","","","","Knight-Captain's Plate Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11564","57824","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","25","9","6","0","0","0","0","0","0","0","58" +"16431","-1","","","","","Knight-Captain's Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11606","58031","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16432","-1","","","","","Lieutenant Commander's Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8736","43683","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","23","7","6","0","0","0","0","0","0","0","58" +"16433","-1","","","","","Knight-Captain's Lamellar Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11691","58457","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","25","9","8","0","0","0","0","0","0","0","58" +"16434","-1","","","","","Lieutenant Commander's Lamellar Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8800","44003","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16435","-1","","","","","Knight-Captain's Lamellar Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11775","58878","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16436","-1","","","","","Lieutenant Commander's Lamellar Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8863","44318","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","5","6","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","12","12","12","7","5","0","0","0","0","0","58" +"16437","-1","","","","","Marshal's Silk Footwraps","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17523","87619","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","14","23","6","0","0","0","0","0","0","0","60" +"16438","-1","","","","","Marshal's Silk Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8749","43745","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16439","-1","","","","","Marshal's Silk Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8779","43897","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"16440","-1","","","","","Marshal's Silk Gloves","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11807","59036","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","22","12","5","0","0","0","0","0","0","0","60" +"16441","-1","","","","","Field Marshal's Coronet","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20575","102878","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16442","-1","","","","","Marshal's Silk Leggings","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23780","118901","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","26","10","20","0","0","0","0","0","0","0","60" +"16443","-1","","","","","Field Marshal's Silk Vestments","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25692","128464","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16444","-1","","","","","Field Marshal's Silk Spaulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19342","96713","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","21","15","5","0","0","0","0","0","0","0","60" +"16445","-1","","","","","Marshal's Dragonhide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10429","52147","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16446","-1","","","","","Marshal's Leather Footguards","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21041","105206","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","25","22","0","0","0","0","0","0","0","0","60" +"16447","-1","","","","","Marshal's Dragonhide Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10506","52533","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","25","18","10","0","0","0","0","0","0","0","60" +"16448","-1","","","","","Marshal's Dragonhide Gauntlets","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14132","70662","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","19","15","0","0","0","0","0","0","0","60" +"16449","-1","","","","","Field Marshal's Dragonhide Spaulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24631","123156","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","14","14","13","11","11","0","0","0","0","0","60" +"16450","-1","","","","","Marshal's Dragonhide Legguards","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28472","142360","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","24","18","18","15","13","0","0","0","0","0","60" +"16451","-1","","","","","Field Marshal's Dragonhide Helmet","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24811","124055","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","19","19","20","15","7","0","0","0","0","0","60" +"16452","-1","","","","","Field Marshal's Dragonhide Breastplate","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33202","166014","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","25","19","14","13","0","0","0","0","0","0","60" +"16453","-1","","","","","Field Marshal's Leather Chestpiece","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33324","166621","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","31","26","0","0","0","0","0","0","0","0","60" +"16454","-1","","","","","Marshal's Leather Handgrips","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14444","72222","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","23","20","0","0","0","0","0","0","0","0","60" +"16455","-1","","","","","Field Marshal's Leather Mask","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25172","125864","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","31","27","0","0","0","0","0","0","0","0","60" +"16456","-1","","","","","Marshal's Leather Leggings","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29098","145493","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","27","27","0","0","0","0","0","0","0","0","60" +"16457","-1","","","","","Field Marshal's Leather Epaulets","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25352","126763","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","27","21","0","0","0","0","0","0","0","0","60" +"16458","-1","","","","","Marshal's Leather Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10934","54670","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","26","15","11","0","0","0","0","0","0","0","60" +"16459","-1","","","","","Marshal's Dragonhide Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20492","102463","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","18","14","10","10","11","0","0","0","0","0","60" +"16460","-1","","","","","Marshal's Leather Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10233","51168","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16461","-1","","","","","Marshal's Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12326","61630","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","20","10","7","0","0","0","0","0","0","0","60" +"16462","-1","","","","","Marshal's Chain Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24982","124912","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","20","26","9","0","0","0","0","0","0","0","60" +"16463","-1","","","","","Marshal's Chain Grips","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16644","83221","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","21","4","0","0","0","0","0","0","0","60" +"16464","-1","","","","","Marshal's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12466","62334","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","4","7","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","18","18","5","18","0","0","0","0","0","0","60" +"16465","-1","","","","","Field Marshal's Chain Helm","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29117","145586","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","28","34","12","0","0","0","0","0","0","0","60" +"16466","-1","","","","","Field Marshal's Chain Breastplate","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38968","194844","1","1","1","32768","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","28","34","12","0","0","0","0","0","0","0","60" +"16467","-1","","","","","Marshal's Chain Legguards","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33788","168943","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","34","27","12","0","0","0","0","0","0","0","60" +"16468","-1","","","","","Field Marshal's Chain Spaulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29576","147880","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","21","26","10","0","0","0","0","0","0","0","60" +"16469","-1","","","","","Marshal's Lamellar Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8466","42331","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","14","4","0","0","0","0","0","0","0","60" +"16470","-1","","","","","Marshal's Lamellar Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8497","42488","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","6","5","4","7","3","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","16","16","8","16","8","0","0","0","0","0","60" +"16471","-1","","","","","Marshal's Lamellar Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11429","57148","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","18","17","16","0","0","0","0","0","0","0","60" +"16472","-1","","","","","Marshal's Lamellar Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17205","86028","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","16","15","15","0","0","0","0","0","0","0","60" +"16473","-1","","","","","Field Marshal's Lamellar Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26654","133270","1","1","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","21","21","20","0","0","0","0","0","0","0","60" +"16474","-1","","","","","Field Marshal's Lamellar Faceguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20063","100317","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","21","21","20","0","0","0","0","0","0","0","60" +"16475","-1","","","","","Marshal's Lamellar Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23793","118969","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","20","20","17","0","0","0","0","0","0","0","60" +"16476","-1","","","","","Field Marshal's Lamellar Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18757","93787","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","626","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","16","16","15","0","0","0","0","0","0","0","60" +"16477","-1","","","","","Field Marshal's Plate Armor","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25107","125536","1","1","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","33","16","14","0","0","0","0","0","0","0","60" +"16478","-1","","","","","Field Marshal's Plate Helm","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18903","94516","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","34","28","0","0","0","0","0","0","0","0","60" +"16479","-1","","","","","Marshal's Plate Legguards","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21856","109282","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16480","-1","","","","","Field Marshal's Plate Shoulderguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19047","95235","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","626","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","23","18","16","0","0","0","0","0","0","0","60" +"16481","-1","","","","","Marshal's Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8216","41082","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","17","17","7","0","0","0","0","0","0","0","60" +"16482","-1","","","","","Marshal's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8247","41239","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","25","15","12","0","0","0","0","0","0","0","60" +"16483","-1","","","","","Marshal's Plate Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16642","83212","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","24","18","12","0","0","0","0","0","0","0","60" +"16484","-1","","","","","Marshal's Plate Gauntlets","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11135","55679","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","23","0","0","0","0","0","0","0","0","60" +"16485","-1","","","","","Blood Guard's Silk Footwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8511","42556","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16486","-1","","","","","First Sergeant's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5695","28477","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16487","-1","","","","","Blood Guard's Silk Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5716","28584","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"16488","-1","","","","","Legionnaire's Silk Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4956","24781","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"16489","-1","","","","","Champion's Silk Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8638","43191","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","16","16","0","0","0","0","0","0","0","58" +"16490","-1","","","","","Legionnaire's Silk Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11560","57801","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"16491","-1","","","","","Legionnaire's Silk Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11906","59534","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16492","-1","","","","","Champion's Silk Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8962","44810","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16493","-1","","","","","Legionnaire's Dragonhide Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6474","32371","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","14","10","0","0","0","0","0","0","0","0","55" +"16494","-1","","","","","Blood Guard's Dragonhide Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11282","56412","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","12","12","5","5","5","0","0","0","0","0","58" +"16495","-1","","","","","Legionnaire's Dragonhide Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6519","32598","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","10","5","8","0","0","0","0","0","0","55" +"16496","-1","","","","","Blood Guard's Dragonhide Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6853","34268","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","12","12","0","0","0","0","0","0","0","58" +"16497","-1","","","","","First Sergeant's Leather Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6880","34402","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16498","-1","","","","","Blood Guard's Leather Treads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10360","51802","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16499","-1","","","","","Blood Guard's Leather Vices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6932","34664","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","15","10","0","0","0","0","0","0","0","0","58" +"16500","-1","","","","","Legionnaire's Leather Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6011","30058","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16501","-1","","","","","Champion's Dragonhide Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10479","52396","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","10","10","10","10","6","0","0","0","0","0","58" +"16502","-1","","","","","Legionnaire's Dragonhide Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14025","70128","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","12","12","12","12","9","0","0","0","0","0","58" +"16503","-1","","","","","Champion's Dragonhide Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10558","52790","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","11","11","11","9","0","0","0","0","0","58" +"16504","-1","","","","","Legionnaire's Dragonhide Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14130","70653","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","14","13","9","8","0","0","0","0","0","0","58" +"16505","-1","","","","","Legionnaire's Leather Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14184","70920","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","25","13","0","0","0","0","0","0","0","0","58" +"16506","-1","","","","","Champion's Leather Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10676","53384","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","26","0","0","0","0","0","0","0","0","0","58" +"16507","-1","","","","","Champion's Leather Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11002","55014","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","23","7","0","0","0","0","0","0","0","0","58" +"16508","-1","","","","","Legionnaire's Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14723","73619","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16509","-1","","","","","Blood Guard's Plate Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8866","44331","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","23","8","5","0","0","0","0","0","0","0","58" +"16510","-1","","","","","Blood Guard's Plate Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5931","29657","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16511","-1","","","","","Legionnaire's Plate Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5142","25711","1","1","1","32784","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","19","8","6","6","0","0","0","0","0","0","55" +"16512","-1","","","","","Legionnaire's Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5160","25803","1","1","1","32784","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","14","10","0","0","0","0","0","0","0","0","55" +"16513","-1","","","","","Legionnaire's Plate Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11991","59955","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","25","9","6","0","0","0","0","0","0","0","58" +"16514","-1","","","","","Champion's Plate Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9024","45121","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16515","-1","","","","","Legionnaire's Plate Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12075","60375","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16516","-1","","","","","Champion's Plate Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8223","41118","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","23","7","6","0","0","0","0","0","0","0","58" +"16517","-1","","","","","Legionnaire's Chain Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7131","35657","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","17","5","0","0","0","0","0","0","0","0","55" +"16518","-1","","","","","Blood Guard's Mail Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12485","62426","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","14","10","0","0","0","0","0","0","0","0","58" +"16519","-1","","","","","Blood Guard's Mail Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8318","41593","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","15","7","6","0","0","0","0","0","0","0","58" +"16520","-1","","","","","Legionnaire's Mail Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7213","36067","1","1","1","32784","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","17","11","7","4","0","0","0","0","0","0","55" +"16521","-1","","","","","Champion's Mail Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12572","62862","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","25","9","8","0","0","0","0","0","0","0","58" +"16522","-1","","","","","Legionnaire's Mail Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16827","84136","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16523","-1","","","","","Legionnaire's Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17349","86745","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","20","11","5","0","0","0","0","0","0","0","58" +"16524","-1","","","","","Champion's Mail Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13117","65588","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","5","5","0","0","0","0","0","0","58" +"16525","-1","","","","","Legionnaire's Chain Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17475","87375","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","18","16","0","0","0","0","0","0","0","0","58" +"16526","-1","","","","","Champion's Chain Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13154","65771","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","24","15","10","0","0","0","0","0","0","0","58" +"16527","-1","","","","","Legionnaire's Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17603","88015","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","18","17","0","0","0","0","0","0","0","0","58" +"16528","-1","","","","","Champion's Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13309","66545","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","20","10","0","0","0","0","0","0","0","0","58" +"16529","-1","","","","","Legionnaire's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7657","38287","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16530","-1","","","","","Blood Guard's Chain Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8896","44482","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16531","-1","","","","","Blood Guard's Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13452","67261","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","10","0","0","0","0","0","0","0","0","58" +"16532","-1","","","","","First Sergeant's Mail Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8960","44802","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16533","-1","","","","","Warlord's Silk Cowl","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20504","102523","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16534","-1","","","","","General's Silk Trousers","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23700","118504","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","26","10","20","0","0","0","0","0","0","0","60" +"16535","-1","","","","","Warlord's Silk Raiment","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27533","137669","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16536","-1","","","","","Warlord's Silk Amice","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18751","93758","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","21","15","5","0","0","0","0","0","0","0","60" +"16537","-1","","","","","General's Silk Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8088","40443","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"16538","-1","","","","","General's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8120","40600","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16539","-1","","","","","General's Silk Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16836","84182","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","23","14","6","0","0","0","0","0","0","0","60" +"16540","-1","","","","","General's Silk Handguards","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11265","56325","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","22","12","5","0","0","0","0","0","0","0","60" +"16541","-1","","","","","Warlord's Plate Armor","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26178","130894","1","1","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","33","16","14","0","0","0","0","0","0","0","60" +"16542","-1","","","","","Warlord's Plate Headpiece","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19707","98535","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","34","28","0","0","0","0","0","0","0","0","60" +"16543","-1","","","","","General's Plate Leggings","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22782","113910","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16544","-1","","","","","Warlord's Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19850","99253","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","626","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","23","18","16","0","0","0","0","0","0","0","60" +"16545","-1","","","","","General's Plate Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17210","86054","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","24","18","12","0","0","0","0","0","0","0","60" +"16546","-1","","","","","General's Plate Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8593","42966","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","17","17","7","0","0","0","0","0","0","0","60" +"16547","-1","","","","","General's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8624","43122","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","25","15","12","0","0","0","0","0","0","0","60" +"16548","-1","","","","","General's Plate Gauntlets","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11598","57993","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","23","0","0","0","0","0","0","0","0","60" +"16549","-1","","","","","Warlord's Dragonhide Hauberk","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33688","168443","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","25","19","14","13","0","0","0","0","0","0","60" +"16550","-1","","","","","Warlord's Dragonhide Helmet","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25357","126788","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","19","19","20","15","7","0","0","0","0","0","60" +"16551","-1","","","","","Warlord's Dragonhide Epaulets","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25448","127243","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","6","5","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","13","14","14","11","11","0","0","0","0","0","60" +"16552","-1","","","","","General's Dragonhide Leggings","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29413","147067","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","24","18","18","13","15","0","0","0","0","0","60" +"16553","-1","","","","","General's Dragonhide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11013","55067","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16554","-1","","","","","General's Dragonhide Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22217","111087","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","3","6","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","18","14","10","11","10","0","0","0","0","0","60" +"16555","-1","","","","","General's Dragonhide Gloves","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13819","69095","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","19","15","0","0","0","0","0","0","0","60" +"16556","-1","","","","","General's Dragonhide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10351","51755","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","25","18","10","0","0","0","0","0","0","0","60" +"16557","-1","","","","","General's Leather Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10390","51951","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","26","15","11","0","0","0","0","0","0","0","60" +"16558","-1","","","","","General's Leather Treads","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20964","104823","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","25","22","0","0","0","0","0","0","0","0","60" +"16559","-1","","","","","General's Leather Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10467","52337","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16560","-1","","","","","General's Leather Mitts","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14080","70400","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","23","20","0","0","0","0","0","0","0","0","60" +"16561","-1","","","","","Warlord's Leather Helm","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24540","122700","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","31","27","0","0","0","0","0","0","0","0","60" +"16562","-1","","","","","Warlord's Leather Spaulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24631","123156","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","27","21","0","0","0","0","0","0","0","0","60" +"16563","-1","","","","","Warlord's Leather Breastplate","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32959","164799","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","31","26","0","0","0","0","0","0","0","0","60" +"16564","-1","","","","","General's Leather Legguards","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28576","142884","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","27","27","0","0","0","0","0","0","0","0","60" +"16565","-1","","","","","Warlord's Chain Chestpiece","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","39843","199217","1","1","1","32768","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","34","28","12","0","0","0","0","0","0","0","60" +"16566","-1","","","","","Warlord's Chain Helmet","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29991","149959","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","34","28","12","0","0","0","0","0","0","0","60" +"16567","-1","","","","","General's Chain Legguards","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34666","173333","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","34","27","12","0","0","0","0","0","0","0","60" +"16568","-1","","","","","Warlord's Chain Shoulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30341","151709","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","26","21","10","0","0","0","0","0","0","0","60" +"16569","-1","","","","","General's Chain Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26305","131526","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","26","20","9","0","0","0","0","0","0","0","60" +"16570","-1","","","","","General's Chain Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13073","65369","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","20","10","7","0","0","0","0","0","0","0","60" +"16571","-1","","","","","General's Chain Gloves","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16331","81655","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","21","20","4","0","0","0","0","0","0","0","60" +"16572","-1","","","","","General's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12233","61166","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","4","7","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","18","18","5","18","0","0","0","0","0","0","60" +"16573","-1","","","","","General's Mail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24795","123976","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","18","17","0","0","0","0","0","0","0","0","60" +"16574","-1","","","","","General's Mail Gauntlets","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16518","82591","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","18","17","17","0","0","0","0","0","0","0","60" +"16575","-1","","","","","General's Mail Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12373","61865","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","25","15","10","5","0","0","0","0","0","0","60" +"16576","-1","","","","","General's Mail Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12420","62100","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"16577","-1","","","","","Warlord's Mail Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38681","193406","1","1","1","32768","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","5","4","0","35","20","9","0","0","0","0","0","0","0","60" +"16578","-1","","","","","Warlord's Mail Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29117","145586","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","35","19","11","0","0","0","0","0","0","0","60" +"16579","-1","","","","","General's Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33662","168313","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","23","23","0","0","0","0","0","0","0","0","60" +"16580","-1","","","","","Warlord's Mail Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29466","147331","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","18","18","17","9","0","0","0","0","0","0","60" +"16581","-1","Magic stirs deep inside.","","","","Resonite Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16582","-1","","","","","Monster - Wand, Horde Green Feathered","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"16583","-1","","","","","Demonic Figurine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16602","-1","","","","","Troll Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16603","-1","","","","","Enchanted Resonite Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16604","-1","","","","","Moon Robes of Elune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","86","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16605","-1","","","","","Friar's Robes of the Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16606","-1","","","","","Juju Hex Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16607","-1","","","","","Acolyte's Sacrificial Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16608","-1","","","","","Aquarius Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","969","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","1024","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"16622","-1","","","","","Thornflinger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27307","136535","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","57","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"16623","-1","","","","","Opaline Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7783","31135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","13","3","0","0","0","0","0","0","0","0","0" +"16642","-1","","","","","Shredder Operating Manual - Chapter 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16643","-1","","","","","Shredder Operating Manual - Chapter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16644","-1","","","","","Shredder Operating Manual - Chapter 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16645","-1","","","","","Shredder Operating Manual - Page 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16646","-1","","","","","Shredder Operating Manual - Page 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16647","-1","","","","","Shredder Operating Manual - Page 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16648","-1","","","","","Shredder Operating Manual - Page 4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16649","-1","","","","","Shredder Operating Manual - Page 5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16650","-1","","","","","Shredder Operating Manual - Page 6","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16651","-1","","","","","Shredder Operating Manual - Page 7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16652","-1","","","","","Shredder Operating Manual - Page 8","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16653","-1","","","","","Shredder Operating Manual - Page 9","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16654","-1","","","","","Shredder Operating Manual - Page 10","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16655","-1","","","","","Shredder Operating Manual - Page 11","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16656","-1","","","","","Shredder Operating Manual - Page 12","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16658","-1","","","","","Wildhunter Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8246","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"16659","-1","","","","","Deftkin Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","856","4282","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"16660","-1","","","","","Driftmire Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2200","11004","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","2","3","0","0","0","0","0","0","0","0" +"16661","-1","","","","","Soft Willow Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4828","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"16662","-1","","","","","Fragment of the Dragon's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16663","-1","","","","","Blood of the Black Dragon Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16664","-1","","","","","Ornate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9234","46171","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1098","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"16665","-1","","","","","Tome of Tranquilizing Shot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"16666","-1","","","","","Vest of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35962","179813","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","20","13","0","0","0","0","0","0","0","58" +"16667","-1","","","","","Coif of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25778","128894","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","13","12","7","0","0","0","0","0","0","57" +"16668","-1","","","","","Kilt of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30541","152707","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","4","7","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","15","12","7","6","0","0","0","0","0","56" +"16669","-1","","","","","Pauldrons of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21995","109977","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","14","6","6","0","0","0","0","0","0","55" +"16670","-1","","","","","Boots of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21027","105136","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","9","0","0","0","0","0","0","0","0","54" +"16671","-1","","","","","Bindings of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12586","62932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16672","-1","","","","","Gauntlets of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14059","70299","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","4","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","10","9","4","0","0","0","0","0","0","54" +"16673","-1","","","","","Cord of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13440","67202","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","4","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","9","7","6","0","0","0","0","0","0","53" +"16674","-1","","","","","Beaststalker's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34435","172177","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","4","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","16","13","6","5","0","0","0","0","0","58" +"16675","-1","","","","","Beaststalker's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21421","107106","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","9","0","0","0","0","0","0","0","0","54" +"16676","-1","","","","","Beaststalker's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14268","71344","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","10","9","9","0","0","0","0","0","0","54" +"16677","-1","","","","","Beaststalker's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24868","124341","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","10","6","0","0","0","0","0","0","57" +"16678","-1","","","","","Beaststalker's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31694","158473","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","26","12","6","6","0","0","0","0","0","0","56" +"16679","-1","","","","","Beaststalker's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22822","114114","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","7","4","0","0","0","0","0","0","55" +"16680","-1","","","","","Beaststalker's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13788","68941","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","5","4","7","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","9","9","6","0","0","0","0","0","53" +"16681","-1","","","","","Beaststalker's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13055","65275","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","0","0","0","0","0","0","0","0","52" +"16682","-1","","","","","Magister's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14582","72914","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16683","-1","","","","","Magister's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8765","43827","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","5","4","0","0","0","0","0","0","0","52" +"16684","-1","","","","","Magister's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9093","45468","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16685","-1","","","","","Magister's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8694","43470","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","6","6","0","0","0","0","0","0","0","53" +"16686","-1","","","","","Magister's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15912","79562","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","5","11","0","0","0","0","0","0","0","57" +"16687","-1","","","","","Magister's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20281","101408","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","20","12","0","0","0","0","0","0","0","56" +"16688","-1","","","","","Magister's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22445","112228","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","31","8","9","0","0","0","0","0","0","0","58" +"16689","-1","","","","","Magister's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14597","72986","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","6","6","0","0","0","0","0","0","0","55" +"16690","-1","","","","","Devout Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22616","113080","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","13","0","0","0","0","0","0","0","58" +"16691","-1","","","","","Devout Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14005","70029","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16692","-1","","","","","Devout Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9372","46861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16693","-1","","","","","Devout Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16335","81676","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","15","13","0","0","0","0","0","0","0","57" +"16694","-1","","","","","Devout Skirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20820","104103","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","15","12","0","0","0","0","0","0","0","56" +"16695","-1","","","","","Devout Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14925","74627","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","9","4","0","0","0","0","0","0","0","55" +"16696","-1","","","","","Devout Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9058","45292","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","20","9","4","0","0","0","0","0","0","0","53" +"16697","-1","","","","","Devout Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8577","42886","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16698","-1","","","","","Dreadmist Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16636","83182","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","12","0","0","0","0","0","0","0","57" +"16699","-1","","","","","Dreadmist Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21202","106014","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","15","14","0","0","0","0","0","0","0","56" +"16700","-1","","","","","Dreadmist Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24071","120358","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","21","20","13","0","0","0","0","0","0","0","58" +"16701","-1","","","","","Dreadmist Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15650","78254","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16702","-1","","","","","Dreadmist Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8592","42964","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","9","0","0","0","0","0","0","0","53" +"16703","-1","","","","","Dreadmist Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8138","40690","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16704","-1","","","","","Dreadmist Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13639","68196","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16705","-1","","","","","Dreadmist Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9127","45639","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","9","13","0","0","0","0","0","0","0","54" +"16706","-1","","","","","Wildheart Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27841","139205","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","20","13","0","0","0","0","0","0","0","58" +"16707","-1","","","","","Shadowcraft Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19962","99813","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","18","13","5","0","0","0","0","0","0","57" +"16708","-1","","","","","Shadowcraft Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18175","90878","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","9","0","0","0","0","0","0","0","0","55" +"16709","-1","","","","","Shadowcraft Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25542","127712","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","12","12","0","0","0","0","0","0","0","56" +"16710","-1","","","","","Shadowcraft Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10446","52230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","0","0","0","0","0","0","0","0","52" +"16711","-1","","","","","Shadowcraft Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17505","87528","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","9","0","0","0","0","0","0","0","0","54" +"16712","-1","","","","","Shadowcraft Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11714","58571","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","10","9","9","0","0","0","0","0","0","54" +"16713","-1","","","","","Shadowcraft Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11196","55984","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","10","9","9","0","0","0","0","0","0","53" +"16714","-1","","","","","Wildheart Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10602","53012","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","0","0","0","0","0","0","0","0","52" +"16715","-1","","","","","Wildheart Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17766","88833","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16716","-1","","","","","Wildheart Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11620","58104","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","9","0","0","0","0","0","0","0","53" +"16717","-1","","","","","Wildheart Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12244","61223","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","9","0","0","0","0","0","0","0","0","54" +"16718","-1","","","","","Wildheart Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19354","96772","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","9","8","0","0","0","0","0","0","0","55" +"16719","-1","","","","","Wildheart Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27192","135964","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","13","12","0","0","0","0","0","56" +"16720","-1","","","","","Wildheart Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21490","107453","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","10","6","0","0","0","0","0","0","57" +"16721","-1","","","","","Shadowcraft Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30190","150952","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","13","12","0","0","0","0","0","0","0","58" +"16722","-1","","","","","Lightforge Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8105","40528","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","8","7","4","0","0","0","0","0","0","52" +"16723","-1","","","","","Lightforge Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8625","43127","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","9","10","0","0","0","0","0","0","53" +"16724","-1","","","","","Lightforge Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9091","45459","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16725","-1","","","","","Lightforge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13688","68444","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","9","8","0","0","0","0","0","0","0","54" +"16726","-1","","","","","Lightforge Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22270","111353","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","16","13","8","0","0","0","0","0","0","58" +"16727","-1","","","","","Lightforge Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15968","79842","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","13","14","10","6","0","0","0","0","0","57" +"16728","-1","","","","","Lightforge Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20354","101773","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","14","12","9","8","0","0","0","0","0","56" +"16729","-1","","","","","Lightforge Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14592","72964","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","11","9","5","4","0","0","0","0","0","55" +"16730","-1","","","","","Breastplate of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22609","113045","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","24","15","10","6","0","0","0","0","0","0","58" +"16731","-1","","","","","Helm of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16210","81051","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","9","8","0","0","0","0","0","0","57" +"16732","-1","","","","","Legplates of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21213","106066","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","15","11","4","0","0","0","0","0","0","56" +"16733","-1","","","","","Spaulders of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15207","76038","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","55" +"16734","-1","","","","","Boots of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14536","72680","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","8","4","3","0","0","0","0","0","0","54" +"16735","-1","","","","","Bracers of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8738","43690","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","7","3","2","0","0","0","0","0","0","52" +"16736","-1","","","","","Belt of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9295","46475","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","8","7","4","0","0","0","0","0","0","53" +"16737","-1","","","","","Gauntlets of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9794","48974","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","8","3","0","0","0","0","0","0","54" +"16738","-1","","","","","Witherseed Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3893","19468","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","7","0","0","0","0","0","0","0","0","0" +"16739","-1","","","","","Rugwood Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7300","36502","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","6","4","0","0","0","0","0","0","0","0" +"16740","-1","","","","","Shredder Operating Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","942","4712","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","2","0","0","0","0","0","0","0","0" +"16741","-1","","","","","Oilrag Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1178","5890","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","2","2","0","0","0","0","0","0","0","0" +"16742","-1","","","","","Warsong Saw Blades","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16743","-1","","","","","Logging Rope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16744","-1","","","","","Warsong Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16745","-1","","","","","Warsong Axe Shipment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16746","-1","","","","","Warsong Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16747","-1","","","","","Broken Lock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"16748","-1","","","","","Padded Lining","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"16762","-1","","","","","Fathom Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16763","-1","","","","","Warsong Runner Update","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16764","-1","","","","","Warsong Scout Update","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16765","-1","","","","","Warsong Outrider Update","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16766","-1","","","","","Undermine Clam Chowder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16767","-1","","","","","Recipe: Undermine Clam Chowder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16768","-1","","","","","Furbolg Medicine Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","0" +"16769","-1","","","","","Furbolg Medicine Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26616","133081","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","6","0","0","0","0","0","0","0","0","47" +"16782","-1","","","","","Strange Water Globe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6922","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","21" +"16783","-1","","","","","Bundle of Reports","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16784","-1","","","","","Sapphire of Aku'Mai","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16785","-1","","","","","Rexxar's Testament","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2531","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16786","-1","","","","","Black Dragonspawn Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16787","-1","","","","","Amulet of Draconic Subversion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16788","-1","","","","","Captain Rackmore's Wheel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5095","25476","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","8","0","0","0","0","0","0","0","0","0","0" +"16789","-1","","","","","Captain Rackmore's Tiller","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5992","29962","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16790","-1","","","","","Damp Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6564","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","17" +"16791","-1","","","","","Silkstream Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1912","9561","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","5","0","0","0","0","0","0","0","0" +"16792","-1","","","","","Giant Club","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8886","44430","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","5242","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","32" +"16793","-1","","","","","Arcmetal Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4353","21765","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","5","0","0","0","0","0","0","0","0","0" +"16794","-1","","","","","Gripsteel Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2705","13525","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","3","0","0","0","0","0","0","0","0" +"16795","-1","","","","","Arcanist Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27359","136797","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","83","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","27","10","0","0","0","0","0","0","0","60" +"16796","-1","","","","","Arcanist Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33990","169953","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","10","18","0","0","0","0","0","0","0","60" +"16797","-1","","","","","Arcanist Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25591","127958","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","5","10","0","0","0","0","0","0","0","60" +"16798","-1","","","","","Arcanist Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34253","171269","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","102","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","10","19","0","0","0","0","0","0","0","60" +"16799","-1","","","","","Arcanist Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17192","85963","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","6","0","0","0","0","0","0","0","60" +"16800","-1","","","","","Arcanist Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25885","129425","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","14","11","0","0","0","0","0","0","0","60" +"16801","-1","","","","","Arcanist Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17322","86612","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","63","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","10","14","0","0","0","0","0","0","0","60" +"16802","-1","","","","","Arcanist Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17388","86941","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","57","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","10","11","0","0","0","0","0","0","0","60" +"16803","-1","","","","","Felheart Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26181","130905","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","11","23","0","0","0","0","0","0","0","0","60" +"16804","-1","","","","","Felheart Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17517","87589","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","8","18","0","0","0","0","0","0","0","60" +"16805","-1","","","","","Felheart Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17583","87918","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","63","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","8","18","0","0","0","0","0","0","0","60" +"16806","-1","","","","","Felheart Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17649","88247","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","57","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","8","18","0","0","0","0","0","0","0","60" +"16807","-1","","","","","Felheart Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26572","132864","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","7","25","0","0","0","0","0","0","0","60" +"16808","-1","","","","","Felheart Horns","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26668","133344","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","83","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","10","27","0","0","0","0","0","0","0","60" +"16809","-1","","","","","Felheart Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35690","178450","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","102","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","31","0","0","0","0","0","0","0","0","60" +"16810","-1","","","","","Felheart Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35821","179108","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","10","20","0","0","0","0","0","0","0","60" +"16811","-1","","","","","Boots of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26962","134811","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","15","17","0","0","0","0","0","0","0","60" +"16812","-1","","","","","Gloves of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18040","90203","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","63","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","10","0","0","0","0","0","0","0","60" +"16813","-1","","","","","Circlet of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27866","139330","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","83","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","20","17","0","0","0","0","0","0","0","60" +"16814","-1","","","","","Pants of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37286","186432","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","20","18","0","0","0","0","0","0","0","60" +"16815","-1","","","","","Robes of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33855","169278","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","102","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","17","20","0","0","0","0","0","0","0","60" +"16816","-1","","","","","Mantle of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25490","127452","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","10","13","0","0","0","0","0","0","0","60" +"16817","-1","","","","","Girdle of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17059","85296","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","57","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","10","10","0","0","0","0","0","0","0","60" +"16818","-1","","","","","Netherwind Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27895","139475","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","13","13","0","0","0","0","0","0","0","60" +"16819","-1","","","","","Vambraces of Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17189","85945","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","10","8","0","0","0","0","0","0","0","60" +"16820","-1","","","","","Nightslayer Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43137","215686","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","200","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","29","20","10","0","0","0","0","0","0","0","60" +"16821","-1","","","","","Nightslayer Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32476","162381","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","163","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","19","6","0","0","0","0","0","0","0","60" +"16822","-1","","","","","Nightslayer Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43466","217330","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","175","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","15","10","0","0","0","0","0","0","0","60" +"16823","-1","","","","","Nightslayer Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32719","163597","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","12","3","0","0","0","0","0","0","0","60" +"16824","-1","","","","","Nightslayer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32842","164214","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","18","0","0","0","0","0","0","0","0","60" +"16825","-1","","","","","Nightslayer Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21977","109887","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","15","0","0","0","0","0","0","0","0","60" +"16826","-1","","","","","Nightslayer Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22057","110287","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","125","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","12","0","0","0","0","0","0","0","60" +"16827","-1","","","","","Nightslayer Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22139","110698","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","113","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","18","9","0","0","0","0","0","0","0","60" +"16828","-1","","","","","Cenarion Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22221","111109","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","113","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","10","10","0","0","0","0","0","0","0","60" +"16829","-1","","","","","Cenarion Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34339","171697","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","15","16","0","0","0","0","0","0","0","60" +"16830","-1","","","","","Cenarion Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22972","114864","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","13","13","0","0","0","0","0","0","0","60" +"16831","-1","","","","","Cenarion Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23055","115275","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","125","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","15","17","0","0","0","0","0","0","0","60" +"16832","-1","","","","","Bloodfang Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56532","282662","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","169","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","17","6","0","0","0","0","0","0","0","60" +"16833","-1","","","","","Cenarion Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46439","232195","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","200","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","16","23","0","0","0","0","0","0","0","60" +"16834","-1","","","","","Cenarion Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34949","174746","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","163","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","13","26","0","0","0","0","0","0","0","60" +"16835","-1","","","","","Cenarion Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42315","211575","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","175","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","20","18","0","0","0","0","0","0","0","60" +"16836","-1","","","","","Cenarion Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31859","159298","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","10","13","0","0","0","0","0","0","0","60" +"16837","-1","","","","","Earthfury Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38550","192750","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","22","15","0","0","0","0","0","0","0","60" +"16838","-1","","","","","Earthfury Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25682","128411","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","237","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","7","12","0","0","0","0","0","0","0","60" +"16839","-1","","","","","Earthfury Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25781","128905","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","264","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","13","15","14","0","0","0","0","0","0","0","60" +"16840","-1","","","","","Earthfury Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25879","129398","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","11","10","0","0","0","0","0","0","0","60" +"16841","-1","","","","","Earthfury Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51956","259783","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","422","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","13","17","0","0","0","0","0","0","0","60" +"16842","-1","","","","","Earthfury Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39111","195557","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","343","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","13","24","0","0","0","0","0","0","0","60" +"16843","-1","","","","","Earthfury Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52346","261730","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","21","18","0","0","0","0","0","0","0","60" +"16844","-1","","","","","Earthfury Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39582","197913","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","10","17","0","0","0","0","0","0","0","60" +"16845","-1","","","","","Giantstalker's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54148","270742","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","422","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","11","23","0","0","0","0","0","0","0","60" +"16846","-1","","","","","Giantstalker's Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40759","203796","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","343","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","15","8","23","0","0","0","0","0","0","60" +"16847","-1","","","","","Giantstalker's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54543","272715","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","6","8","15","0","0","0","0","0","0","60" +"16848","-1","","","","","Giantstalker's Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41237","206188","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","5","9","14","0","0","0","0","0","0","60" +"16849","-1","","","","","Giantstalker's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41382","206912","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","6","14","0","0","0","0","0","0","0","60" +"16850","-1","","","","","Giantstalker's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27564","137824","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","6","5","11","0","0","0","0","0","0","60" +"16851","-1","","","","","Giantstalker's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27663","138317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","237","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","9","4","16","0","0","0","0","0","0","60" +"16852","-1","","","","","Giantstalker's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27762","138810","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","264","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","12","0","0","0","0","0","0","0","0","60" +"16853","-1","","","","","Lawbringer Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37144","185721","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","749","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","13","26","8","0","0","0","0","0","0","60" +"16854","-1","","","","","Lawbringer Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27956","139784","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","608","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","10","20","9","0","0","0","0","0","0","60" +"16855","-1","","","","","Lawbringer Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33848","169242","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","18","24","7","0","0","0","0","0","0","60" +"16856","-1","","","","","Lawbringer Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25485","127425","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","15","8","22","10","0","0","0","0","0","0","60" +"16857","-1","","","","","Lawbringer Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17054","85270","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","11","11","10","0","0","0","0","0","0","60" +"16858","-1","","","","","Lawbringer Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17119","85599","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","421","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","8","15","13","0","0","0","0","0","0","60" +"16859","-1","","","","","Lawbringer Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25778","128891","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","10","20","7","0","0","0","0","0","0","60" +"16860","-1","","","","","Lawbringer Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17249","86247","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","468","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","14","15","10","0","0","0","0","0","0","60" +"16861","-1","","","","","Bracers of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17786","88932","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","11","0","0","0","0","0","0","0","0","60" +"16862","-1","","","","","Sabatons of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26778","133891","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","15","0","0","0","0","0","0","0","0","60" +"16863","-1","","","","","Gauntlets of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17917","89589","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","468","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","22","0","0","0","0","0","0","0","0","60" +"16864","-1","","","","","Belt of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17981","89909","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","421","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","21","0","0","0","0","0","0","0","0","60" +"16865","-1","","","","","Breastplate of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36095","180477","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","749","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16866","-1","","","","","Helm of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27170","135851","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","608","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","15","0","0","0","0","0","0","0","0","60" +"16867","-1","","","","","Legplates of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36358","181792","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","24","0","0","0","0","0","0","0","0","60" +"16868","-1","","","","","Pauldrons of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27364","136824","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","15","0","0","0","0","0","0","0","0","60" +"16869","-1","","","","","The Skull of Scryer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16870","-1","","","","","The Skull of Somnus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16871","-1","","","","","The Skull of Chronalis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16872","-1","","","","","The Skull of Axtroz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16873","-1","","","","","Braidfur Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2254","11271","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","5","4","0","0","0","0","0","0","0","0" +"16882","-1","","","","","Battered Junkbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16883","-1","","","","","Worn Junkbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16884","-1","","","","","Sturdy Junkbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16885","-1","","","","","Heavy Junkbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16886","-1","","","","","Outlaw Sabre","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5492","27462","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16887","-1","","","","","Witch's Finger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1988","7954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","4","0","0","0","0","0","0","0","0","0" +"16888","-1","","","","","Dull Drakefire Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16889","-1","","","","","Polished Walking Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3093","15467","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","33","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","3","0","0","0","0","0","0","0","0","0" +"16890","-1","","","","","Slatemetal Cutlass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2483","12416","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","24","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","0" +"16891","-1","","","","","Claystone Shortsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8485","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","21","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"16892","-1","","","","","Lesser Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16893","-1","","","","","Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16894","-1","","","","","Clear Crystal Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1993","9967","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","21","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","4","0","0","0","0","0","0","0","0","0" +"16895","-1","","","","","Greater Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16896","-1","","","","","Major Soulstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16897","-1","","","","","Stormrage Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71351","356759","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","225","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","17","20","0","0","0","0","0","0","0","60" +"16898","-1","","","","","Stormrage Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53709","268546","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","154","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","11","15","0","0","0","0","0","0","0","60" +"16899","-1","","","","","Stormrage Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35940","179700","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","15","13","0","0","0","0","0","0","0","60" +"16900","-1","","","","","Stormrage Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54111","270555","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","12","20","0","0","0","0","0","0","0","60" +"16901","-1","","","","","Stormrage Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72415","362079","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","197","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","16","17","0","0","0","0","0","0","0","60" +"16902","-1","","","","","Stormrage Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54507","272537","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","169","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","10","14","0","0","0","0","0","0","0","60" +"16903","-1","","","","","Stormrage Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36472","182361","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","10","12","0","0","0","0","0","0","0","60" +"16904","-1","","","","","Stormrage Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36606","183030","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","12","11","0","0","0","0","0","0","0","60" +"16905","-1","","","","","Bloodfang Chestpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73480","367400","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","225","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","17","12","0","0","0","0","0","0","0","60" +"16906","-1","","","","","Bloodfang Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55305","276527","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","154","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","17","6","0","0","0","0","0","0","0","60" +"16907","-1","","","","","Bloodfang Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37004","185021","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","19","0","0","0","0","0","0","0","60" +"16908","-1","","","","","Bloodfang Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55707","278536","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","25","19","0","0","0","0","0","0","0","60" +"16909","-1","","","","","Bloodfang Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69209","346046","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","197","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","17","11","0","0","0","0","0","0","0","60" +"16910","-1","","","","","Bloodfang Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34738","173692","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","15","13","0","0","0","0","0","0","0","60" +"16911","-1","","","","","Bloodfang Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34872","174362","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","13","0","0","0","0","0","0","0","0","60" +"16912","-1","","","","","Netherwind Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42007","210038","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","80","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","10","13","0","0","0","0","0","0","0","60" +"16913","-1","","","","","Netherwind Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28109","140546","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","6","16","0","0","0","0","0","0","0","60" +"16914","-1","","","","","Netherwind Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42324","211623","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","7","17","0","0","0","0","0","0","0","60" +"16915","-1","","","","","Netherwind Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56647","283236","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","101","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","5","16","0","0","0","0","0","0","0","60" +"16916","-1","","","","","Netherwind Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56861","284307","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","26","8","16","0","0","0","0","0","0","0","60" +"16917","-1","","","","","Netherwind Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42802","214012","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","87","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","12","16","0","0","0","0","0","0","0","60" +"16918","-1","","","","","Netherwind Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28642","143210","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","9","0","0","0","0","0","0","0","60" +"16919","-1","","","","","Boots of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43123","215619","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","80","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","17","17","0","0","0","0","0","0","0","60" +"16920","-1","","","","","Handguards of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28856","144281","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","13","12","0","0","0","0","0","0","0","60" +"16921","-1","","","","","Halo of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43440","217204","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","94","0","10","0","10","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","22","17","0","0","0","0","0","0","0","60" +"16922","-1","","","","","Leggings of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58135","290677","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","10","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","16","0","0","0","0","0","0","0","60" +"16923","-1","","","","","Robes of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58349","291748","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","16","17","0","0","0","0","0","0","0","60" +"16924","-1","","","","","Pauldrons of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43918","219593","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","87","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","13","12","0","0","0","0","0","0","0","60" +"16925","-1","","","","","Belt of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30153","150767","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","9","14","0","0","0","0","0","0","0","60" +"16926","-1","","","","","Bindings of Transcendence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30260","151303","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","16","9","0","0","0","0","0","0","0","60" +"16927","-1","","","","","Nemesis Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45551","227758","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","80","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","6","20","0","0","0","0","0","0","0","60" +"16928","-1","","","","","Nemesis Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27573","137868","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","0","17","0","0","0","0","0","0","0","60" +"16929","-1","","","","","Nemesis Skullcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41521","207606","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","6","26","0","0","0","0","0","0","0","60" +"16930","-1","","","","","Nemesis Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55575","277879","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","101","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","16","4","23","0","0","0","0","0","0","0","60" +"16931","-1","","","","","Nemesis Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55790","278950","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","16","8","26","0","0","0","0","0","0","0","60" +"16932","-1","","","","","Nemesis Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41998","209994","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","87","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","6","20","0","0","0","0","0","0","0","60" +"16933","-1","","","","","Nemesis Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28106","140532","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","8","6","18","0","0","0","0","0","0","0","60" +"16934","-1","","","","","Nemesis Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28213","141067","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","6","21","0","0","0","0","0","0","0","60" +"16935","-1","","","","","Dragonstalker's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42481","212405","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","6","6","13","0","0","0","0","0","0","60" +"16936","-1","","","","","Dragonstalker's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42637","213187","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","13","11","15","0","0","0","0","0","0","60" +"16937","-1","","","","","Dragonstalker's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64482","322412","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","362","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","13","6","15","0","0","0","0","0","0","60" +"16938","-1","","","","","Dragonstalker's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85917","429588","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","422","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","15","8","16","0","0","0","0","0","0","60" +"16939","-1","","","","","Dragonstalker's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64672","323363","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","16","8","26","0","0","0","0","0","0","60" +"16940","-1","","","","","Dragonstalker's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43275","216379","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","13","6","17","0","0","0","0","0","0","60" +"16941","-1","","","","","Dragonstalker's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67178","335892","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","332","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","6","6","15","0","0","0","0","0","0","60" +"16942","-1","","","","","Dragonstalker's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89496","447482","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","14","6","17","0","0","0","0","0","0","60" +"16943","-1","","","","","Bracers of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44904","224522","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","9","13","0","0","0","0","0","0","0","60" +"16944","-1","","","","","Belt of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45065","225326","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","11","13","0","0","0","0","0","0","0","60" +"16945","-1","","","","","Epaulets of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68140","340702","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","362","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","8","23","0","0","0","0","0","0","0","60" +"16946","-1","","","","","Legplates of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90773","453866","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","422","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","20","16","0","0","0","0","0","0","0","60" +"16947","-1","","","","","Helmet of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68314","341572","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","20","0","0","0","0","0","0","0","60" +"16948","-1","","","","","Gauntlets of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41356","206780","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","13","15","0","0","0","0","0","0","0","60" +"16949","-1","","","","","Greaves of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62552","312760","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","332","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","16","17","0","0","0","0","0","0","0","60" +"16950","-1","","","","","Breastplate of Ten Storms","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83355","416775","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","16","17","0","0","0","0","0","0","0","60" +"16951","-1","","","","","Judgement Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27889","139446","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","9","8","21","9","0","0","0","0","0","0","60" +"16952","-1","","","","","Judgement Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27996","139982","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","6","14","8","0","0","0","0","0","0","60" +"16953","-1","","","","","Judgement Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42155","210776","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","642","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","6","20","13","0","0","0","0","0","0","60" +"16954","-1","","","","","Judgement Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56415","282077","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","749","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","5","26","10","0","0","0","0","0","0","60" +"16955","-1","","","","","Judgement Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42472","212361","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","696","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","6","18","17","0","0","0","0","0","0","60" +"16956","-1","","","","","Judgement Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28422","142110","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","6","15","6","0","0","0","0","0","0","60" +"16957","-1","","","","","Judgement Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43944","219723","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","589","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","14","8","20","13","0","0","0","0","0","0","60" +"16958","-1","","","","","Judgement Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58801","294007","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","857","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","5","21","16","0","0","0","0","0","0","60" +"16959","-1","","","","","Bracelets of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29507","147539","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","13","0","0","0","0","0","0","0","0","60" +"16960","-1","","","","","Waistband of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29614","148074","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","20","0","0","0","0","0","0","0","0","60" +"16961","-1","","","","","Pauldrons of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44583","222915","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","642","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","13","0","0","0","0","0","0","0","0","60" +"16962","-1","","","","","Legplates of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59652","298263","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","749","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","19","0","0","0","0","0","0","0","0","60" +"16963","-1","","","","","Helm of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44900","224501","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","696","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","17","0","0","0","0","0","0","0","0","60" +"16964","-1","","","","","Gauntlets of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30040","150203","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","15","0","0","0","0","0","0","0","0","60" +"16965","-1","","","","","Sabatons of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45221","226108","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","589","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","13","0","0","0","0","0","0","0","0","60" +"16966","-1","","","","","Breastplate of Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60503","302519","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","857","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","17","0","0","0","0","0","0","0","0","60" +"16967","-1","","","","","Feralas Ahi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16968","-1","","","","","Sar'theris Striker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16969","-1","","","","","Savage Coast Blue Sailfin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16970","-1","","","","","Misty Reed Mahi Mahi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16971","-1","","","","","Clamlette Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16972","-1","","","","","Karang's Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16973","-1","","","","","Vial of Dire Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16974","-1","","","","","Empty Water Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16975","-1","","","","","Warsong Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","813","4067","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","4","0","0","0","0","0","0","0","0","0" +"16976","-1","","","","","Murgut's Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16977","-1","","","","","Warsong Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1448","7242","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","6","0","0","0","0","0","0","0","0","0" +"16978","-1","","","","","Warsong Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1158","5794","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","3","0","0","0","0","0","0","0","0","0" +"16979","-1","","","","","Flarecore Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14902","74510","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31632","0","0","0","0","0","0","0","0","0","0","0","0","60","0","25","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","10","0","0","0","0","0","0","0","0","57" +"16980","-1","","","","","Flarecore Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21365","106829","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","10","10","9","0","0","0","0","0","0","0","56" +"16981","-1","","","","","Owlbeard Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","271","1356","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","1","0","0","0","0","0","0","0","0" +"16982","-1","","","","","Corehound Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24397","121985","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","10","0","0","0","0","0","0","0","0","54" +"16983","-1","","","","","Molten Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25709","128545","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","29","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","0","0","0","0","0","0","0","0","0","55" +"16984","-1","","","","","Black Dragonscale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32653","163269","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","0","0","0","0","0","0","0","0","0","56" +"16985","-1","","","","","Windseeker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4238","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","0" +"16986","-1","","","","","Sandspire Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","4254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"16987","-1","","","","","Screecher Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4422","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","3","2","0","0","0","0","0","0","0","0" +"16988","-1","","","","","Fiery Chain Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31460","157303","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","299","0","25","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","10","0","0","0","0","0","0","0","0","57" +"16989","-1","","","","","Fiery Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18610","93050","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","9","8","0","0","0","0","0","0","0","54" +"16990","-1","","","","","Spritekin Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","998","4990","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","3","0","0","0","0","0","0","0","0","0" +"16991","-1","","","","","Triage Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16992","-1","","","","","Smokey's Explosive Launcher","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30874","154370","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","60","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"16993","-1","","","","","Smokey's Fireshooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30989","154945","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","70","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16994","-1","","","","","Duskwing Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9884","49420","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","11","5","0","0","0","0","0","0","0","0" +"16995","-1","","","","","Duskwing Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14826","74130","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","6","0","0","0","0","0","0","0","0","0" +"16996","-1","","","","","Gorewood Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41451","207256","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","62","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","9","3","2","0","0","0","0","0","0","0","0" +"16997","-1","","","","","Stormrager","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41603","208017","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","62","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","5","0","0","0","0","0","0","0","0","0" +"16998","-1","","","","","Sacred Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35631","178156","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","10","0","0","0","0","0","0","0","0","0" +"16999","-1","","","","","Royal Seal of Alexis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","8","0","0","0","0","0","0","0","54" +"17000","-1","","","","","Band of the Wraith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10314","41258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17001","-1","","","","","Elemental Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10314","41258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17002","-1","","","","","Ichor Spitter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44825","224127","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","61","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17003","-1","","","","","Skullstone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44982","224911","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","61","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","9","4","3","0","0","0","0","0","0","0","0" +"17004","-1","","","","","Sarah's Guide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56429","282145","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","61","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","20","15","0","0","0","0","0","0","0","0","0" +"17005","-1","","","","","Boorguard Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","8161","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","0","0","0","0","0","0","0","0","0" +"17006","-1","","","","","Cobalt Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1966","9831","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","5","3","0","0","0","0","0","0","0","0" +"17007","-1","","","","","Stonerender Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11447","57238","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","10","10","0","0","0","0","0","0","0","46" +"17008","-1","The scroll bears an insignia foreign to you.","","","","Small Scroll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6522","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"17009","-1","","","","","Ambassador Malcin's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17010","-1","","","","","Fiery Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17011","-1","","","","","Lava Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17012","-1","","","","","Core Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17013","-1","","","","","Dark Iron Leggings","1","0","180","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26441","132207","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","0","0","0","0","0","0","0","0","0","55" +"17014","-1","","","","","Dark Iron Bracers","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12637","63189","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","7","0","0","0","0","0","0","0","0","0","54" +"17015","-1","","","","","Dark Iron Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63738","318693","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","0","71","0","0","0","0","134","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","0","0","0","0","0","0","0","0","0","60" +"17016","-1","","","","","Dark Iron Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63973","319868","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","0","71","0","0","0","0","134","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","0","0","0","0","0","0","0","0","0","60" +"17017","-1","","","","","Pattern: Flarecore Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45000","180000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17018","-1","","","","","Pattern: Flarecore Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17019","-1","","","","","Arcane Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17020","-1","","","","","Arcane Powder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17021","-1","","","","","Wild Berries","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17022","-1","","","","","Pattern: Corehound Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17023","-1","","","","","Pattern: Molten Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17024","-1","","","","","Wild Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17025","-1","","","","","Pattern: Black Dragonscale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17026","-1","","","","","Wild Thornroot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17027","-1","","","","","Scented Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17028","-1","","","","","Holy Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17029","-1","","","","","Sacred Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17030","-1","","","","","Ankh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17031","-1","","","","","Rune of Teleportation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17032","-1","","","","","Rune of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17033","-1","","","","","Symbol of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17034","-1","","","","","Maple Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17035","-1","","","","","Stranglethorn Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17036","-1","","","","","Ashwood Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17037","-1","","","","","Hornbeam Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17038","-1","","","","","Ironwood Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17039","-1","","","","","Skullbreaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8317","41585","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","3","0","0","0","0","0","0","0","0","0" +"17040","-1","","","","","Monster - Mace, Frying Pan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17041","-1","","","","","Monster - Mace, Frying Pan w/ Eggs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17042","-1","","","","","Nail Spitter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5692","28464","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"17043","-1","","","","","Zealot's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3054","15274","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","12","4","3","0","0","0","0","0","0","0","0" +"17044","-1","","","","","Will of the Martyr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","0","0","0","0","0","0","0","0","0","0" +"17045","-1","","","","","Blood of the Martyr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"17046","-1","","","","","Gutterblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4796","23983","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","31","-1","0","0","25","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","3","0","0","0","0","0","0","0","0","0" +"17047","-1","","","","","Luminescent Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1313","6565","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","4","2","0","0","0","0","0","0","0","0" +"17048","-1","","","","","Rumsey Rum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17049","-1","","","","","Plans: Fiery Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17050","-1","","","","","Chan's Imperial Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12536","62683","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","10","10","0","0","0","0","0","0","0","47" +"17051","-1","","","","","Plans: Dark Iron Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17052","-1","","","","","Plans: Dark Iron Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","45000","180000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17053","-1","","","","","Plans: Fiery Chain Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17054","-1","","","","","Joonho's Mercy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28788","143942","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","50","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"17055","-1","","","","","Changuk Smasher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26747","133735","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","5","0","0","0","0","0","0","0","45" +"17056","-1","","","","","Light Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17057","-1","","","","","Shiny Fish Scales","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17058","-1","","","","","Fish Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17059","-1","","","","","Plans: Dark Iron Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","55000","220000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17060","-1","","","","","Plans: Dark Iron Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","55000","220000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17061","-1","","","","","Juno's Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12888","64441","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","5","0","0","0","0","0","0","0","0","53" +"17062","-1","","","","","Recipe: Mithril Head Trout","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17063","-1","","","","","Band of Accuria","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23961","95846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","16","0","0","0","0","0","0","0","0","60" +"17064","-1","","","","","Shard of the Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","45914","183658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17065","-1","","","","","Medallion of Steadfast Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33381","133525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","9","0","0","0","0","0","0","0","0","60" +"17066","-1","","","","","Drillborer Disk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57970","289852","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","2539","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17067","-1","","","","","Ancient Cornerstone Grimoire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","11","15","10","0","0","0","0","0","0","0","60" +"17068","-1","","","","","Deathbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134832","674164","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","-1","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17069","-1","","","","","Striker's Mark","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75746","378731","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","69","-1","0","0","69","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"17070","-1","","","","","Fang of the Mystics","1","0","-10.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109307","546537","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","70","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17071","-1","","","","","Gutgore Ripper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104472","522363","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","69","-1","0","0","63","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17072","-1","","","","","Blastershot Launcher","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82572","412860","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","70","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","6","0","0","0","0","0","0","0","0","0","60" +"17073","-1","","","","","Earthshaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113631","568157","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17074","-1","","","","","Shadowstrike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98514","492571","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"17075","-1","","","","","Vis'kag the Bloodletter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","135266","676334","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","74","-1","0","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17076","-1","","","","","Bonereaver's Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","196438","982192","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","77","-1","0","0","206","0","0","0","0","310","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","16","0","0","0","0","0","0","0","0","0","60" +"17077","-1","","","","","Crimson Shocker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59741","298709","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","0","0","0","0","0","0","0","0","0","58" +"17078","-1","","","","","Sapphiron Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37203","186019","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","6","0","6","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","10","0","0","0","0","0","0","0","0","60" +"17082","-1","","","","","Shard of the Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","46146","184585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17102","-1","","","","","Cloak of the Shrouded Mists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38689","193445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","6","6","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","12","0","0","0","0","0","0","0","0","60" +"17103","-1","","","","","Azuresong Mageblade","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111823","559117","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","71","-1","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","12","7","0","0","0","0","0","0","0","0","60" +"17104","-1","","","","","Spinal Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179067","895337","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","76","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17105","-1","","","","","Aurastone Hammer","1","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102178","510891","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","69","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","10","0","0","0","0","0","0","0","0","60" +"17106","-1","","","","","Malistar's Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87960","439804","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","2822","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","12","9","0","0","0","0","0","0","0","0","60" +"17107","-1","","","","","Dragon's Blood Cape","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37537","187685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","5","0","0","5","5","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","9","0","0","0","0","0","0","0","0","60" +"17108","-1","","","","","Mark of Deflection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24213","96854","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17109","-1","","","","","Choker of Enlightenment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","10","9","0","0","0","0","0","0","0","60" +"17110","-1","","","","","Seal of the Archmagus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24648","98595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","6","6","6","6","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","11","11","0","0","0","0","0","0","0","60" +"17111","-1","","","","","Blazefury Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34648","138595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","14","0","0","0","0","0","0","0","0","60" +"17112","-1","","","","","Empyrean Demolisher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90558","452792","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","66","-1","0","0","94","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17113","-1","","","","","Amberseal Keeper","1","0","-7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119278","596390","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","67","-1","0","0","168","0","0","0","0","252","0","0","0","0","0","0","5","5","5","5","5","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","20","0","0","0","0","0","0","0","0","0","60" +"17114","-1","","","","","Araj's Phylactery Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17115","-1","Value Be Ten Silver Coins...","","","","Squirrel Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6661","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17116","-1","Value Be Twenty Silver Coins...","","","","Squirrel Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6662","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17117","-1","","","","","Rat Catcher's Flute","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17118","-1","Handle With Care.","","","","Carton of Mystery Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17119","-1","","","","","Deeprun Rat Kabob","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17122","-1","","","","","ALEX BUG TEST ITEM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0" +"17123","-1","","","","","Monster - Sword, Horde Troll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17124","-1","","","","","Syndicate Emblem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17125","-1","","","","","Seal of Ravenholdt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17126","-1","","","","","Elegant Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6681","0","0","0","0","0","1","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17142","-1","","","","","Shard of the Defiler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","159115","795578","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1100","0","0","0","70","-1","0","0","52","10","0","0","0","61","15","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","0","0","0","0","0","0","0","0","0","0","60" +"17162","-1","","","","","Eric Test Item A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17163","-1","","","","","Eric Test Item B","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17182","-1","","","","","Sulfuras, Hand of Ragnaros","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","332623","1663117","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","80","-1","0","0","223","0","0","0","0","372","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"17183","-1","","","","","Dented Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","34","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17184","-1","","","","","Small Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","34","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17185","-1","","","","","Round Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"17186","-1","","","","","Small Targe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"17187","-1","","","","","Banded Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1078","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","9" +"17188","-1","","","","","Ringed Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","453","2265","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","14" +"17189","-1","","","","","Metal Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2408","12043","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","29" +"17190","-1","","","","","Ornate Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6921","34609","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","1377","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","42" +"17191","-1","","","","","Scepter of Celebras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17192","-1","","","","","Reinforced Targe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4399","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","19" +"17193","-1","","","","","Sulfuron Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122311","611555","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","67","-1","0","0","176","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17194","-1","","","","","Holiday Spices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17195","-1","","","","","Fake Mistletoe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17196","-1","","","","","Holiday Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17197","-1","","","","","Gingerbread Cookie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17198","-1","","","","","Egg Nog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17199","-1","","","","","Bad Egg Nog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17200","-1","","","","","Recipe: Gingerbread Cookie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17201","-1","","","","","Recipe: Egg Nog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","185","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17202","-1","","","","","Snowball","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17203","-1","","","","","Sulfuron Ingot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17204","-1","","","","","Eye of Sulfuras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"17222","-1","","","","","Spider Sausage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17223","-1","","","","","Thunderstrike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97074","485373","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"17224","-1","","","","","Scrying Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17242","-1","Opens Dark Cleric Salem's Chest","","","","Key to Salem's Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17262","-1","Opens the stolen chest from the Cathedral of Light","","","","James' Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17282","-1","","","","","Monster - Dagger, Exotic B01 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17283","-1","","","","","Monster - Dagger, Exotic B01 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17302","-1","","","","","Blue Ribboned Holiday Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17303","-1","","","","","Blue Ribboned Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17304","-1","","","","","Green Ribboned Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17305","-1","","","","","Green Ribboned Holiday Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17306","-1","","","","","Stormpike Soldier's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17307","-1","","","","","Purple Ribboned Wrapping Paper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17308","-1","","","","","Purple Ribboned Holiday Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17309","-1","","","","","Discordant Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17310","-1","","","","","Aspect of Neptulon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17322","-1","","","","","Eye of the Emberseer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17323","-1","","","","","Mulverick's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17324","-1","","","","","Guse's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17325","-1","","","","","Jeztor's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17326","-1","Alliance: the other, other, OTHER, white meat.","","","","Stormpike Soldier's Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17327","-1","","","","","Stormpike Lieutenant's Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17328","-1","","","","","Stormpike Commander's Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17329","-1","","","","","Hand of Lucifron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17330","-1","","","","","Hand of Sulfuron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17331","-1","","","","","Hand of Gehennas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17332","-1","","","","","Hand of Shazzrah","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17333","-1","","","","","Aqual Quintessence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17342","-1","","","","","JYoo Random Item Test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","7441","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17343","-1","","","","","Test Random Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","7441","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","1" +"17344","-1","","","","","Candy Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17345","-1","Ewww...","","","","Silithid Goo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17346","-1","","","","","Encrusted Silithid Object","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17347","-1","","","","","Syndicate Man Tracker (MURP)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17348","-1","","","","","Major Healing Draught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"17349","-1","","","","","Superior Healing Draught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17351","-1","","","","","Major Mana Draught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"17352","-1","","","","","Superior Mana Draught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17353","-1","","","","","Stormpike Assault Orders","1","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17354","-1","","","","","Master Ryson's All Seeing Eye","1","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17355","-1","","","","","Rabine's Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2551","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17362","-1","","","","","Ryson's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17363","-1","","","","","Ryson's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17364","-1","","","","","Scrying Scope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17382","-1","","","","","Monster - Glaive - 2 Blade Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17383","-1","","","","","Monster - Axe, 2H Horde Black War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17384","-1","","","","","Zinfizzlex's Portable Shredder Unit","1","259200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17402","-1","","","","","Greatfather's Winter Ale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17403","-1","","","","","Steamwheedle Fizzy Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17404","-1","","","","","Blended Bean Brew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17405","-1","","","","","Green Garden Tea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"17406","-1","","","","","Holiday Cheesewheel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17407","-1","","","","","Graccu's Homemade Meat Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"17408","-1","","","","","Spicy Beefstick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17409","-1","","","","","Encrusted Crystal Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1155","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","54" +"17410","-1","","","","","Zinfizzlex's Portable Shredder Unit","1","259200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17411","-1","","","","","Steamsaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17412","-1","","","","","zzOLDCodex of Prayer of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31264","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"17413","-1","","","","","Codex: Prayer of Fortitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17414","-1","","","","","Codex: Prayer of Fortitude II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"17422","-1","Return to your base blacksmith to help upgrade troops","","","","Armor Scraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17423","-1","","","","","Storm Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17442","-1","Give to Warmaster Garrick in the Field of Strife","","","","Frostwolf Assault Orders","1","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17462","-1","","","","","Monster - Axe, Horde B02 Silver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17463","-1","","","","","Monster - Axe, 2H Horde Blue War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17482","-1","","","","","Monster - Shield, B01 WoodCopperCap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17502","-1","","","","","Frostwolf Soldier's Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17503","-1","","","","","Frostwolf Lieutenant's Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17504","-1","","","","","Frostwolf Commander's Medal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17505","-1","","","","","Ichman's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17506","-1","","","","","Vipore's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17507","-1","","","","","Slidore's Beacon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17508","-1","","","","","Forcestone Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7270","36350","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","8","0","0","0","0","0","0","0","0","0" +"17522","-1","","","","","Irondeep Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17523","-1","","","","","Smokey's Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10758","53790","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","0" +"17542","-1","","","","","Coldtooth Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17562","-1","","","","","Knight-Lieutenant's Dreadweave Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8736","43683","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","15","10","0","0","0","0","0","0","0","0","58" +"17563","-1","","","","","Knight-Captain's Dreadweave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5049","25249","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","3","7","0","0","0","0","0","0","0","55" +"17564","-1","","","","","Knight-Lieutenant's Dreadweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5866","29332","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","18","11","0","0","0","0","0","0","0","0","58" +"17565","-1","","","","","Knight-Captain's Dreadweave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"17566","-1","","","","","Lieutenant Commander's Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8863","44318","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17567","-1","","","","","Knight-Captain's Dreadweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11860","59304","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","21","20","0","0","0","0","0","0","0","0","58" +"17568","-1","","","","","Knight-Captain's Dreadweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11054","55273","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17569","-1","","","","","Lieutenant Commander's Dreadweave Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8322","41614","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17570","-1","","","","","Champion's Dreadweave Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8354","41774","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17571","-1","","","","","Legionnaire's Dreadweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11182","55912","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","15","13","0","0","0","0","0","0","0","0","58" +"17572","-1","","","","","Legionnaire's Dreadweave Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11223","56119","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17573","-1","","","","","Champion's Dreadweave Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8449","42249","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17574","-1","","","","","Legionnaire's Dreadweave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"17575","-1","","","","","Legionnaire's Dreadweave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","3","7","0","0","0","0","0","0","0","55" +"17576","-1","","","","","Blood Guard's Dreadweave Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8544","42724","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17577","-1","","","","","Blood Guard's Dreadweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5717","28589","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17578","-1","","","","","Field Marshal's Coronal","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19632","98160","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17579","-1","","","","","Marshal's Dreadweave Leggings","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22695","113479","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","28","19","0","0","0","0","0","0","0","0","60" +"17580","-1","","","","","Field Marshal's Dreadweave Shoulders","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19775","98879","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","24","17","0","0","0","0","0","0","0","0","60" +"17581","-1","","","","","Field Marshal's Dreadweave Robe","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26465","132325","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17582","-1","","","","","Marshal's Dreadweave Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8561","42805","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"17583","-1","","","","","Marshal's Dreadweave Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17270","86351","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","13","22","0","0","0","0","0","0","0","0","60" +"17584","-1","","","","","Marshal's Dreadweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11856","59280","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","6","0","0","0","0","0","0","0","0","60" +"17585","-1","","","","","Marshal's Dreadweave Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8878","44392","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"17586","-1","","","","","General's Dreadweave Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16206","81034","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","22","13","0","0","0","0","0","0","0","0","60" +"17587","-1","","","","","General's Dreadweave Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8093","40465","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"17588","-1","","","","","General's Dreadweave Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10887","54437","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","20","6","0","0","0","0","0","0","0","0","60" +"17589","-1","","","","","General's Dreadweave Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8155","40778","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"17590","-1","","","","","Warlord's Dreadweave Mantle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19051","95255","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","24","17","0","0","0","0","0","0","0","0","60" +"17591","-1","","","","","Warlord's Dreadweave Hood","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19121","95609","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17592","-1","","","","","Warlord's Dreadweave Robe","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25593","127965","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17593","-1","","","","","General's Dreadweave Pants","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22192","110961","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","28","19","0","0","0","0","0","0","0","0","60" +"17594","-1","","","","","Knight-Lieutenant's Satin Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8481","42405","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17595","-1","","","","","Knight-Captain's Satin Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","3","7","0","0","0","0","0","0","0","55" +"17596","-1","","","","","Knight-Lieutenant's Satin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5696","28480","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17597","-1","","","","","Knight-Captain's Satin Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"17598","-1","","","","","Lieutenant Commander's Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8607","43035","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17599","-1","","","","","Knight-Captain's Satin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11518","57594","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","13","16","0","0","0","0","0","0","0","58" +"17600","-1","","","","","Knight-Captain's Satin Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11866","59333","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17601","-1","","","","","Lieutenant Commander's Satin Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8931","44659","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17602","-1","","","","","Field Marshal's Headdress","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20439","102198","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17603","-1","","","","","Marshal's Satin Pants","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23626","118130","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","30","21","0","0","0","0","0","0","0","0","60" +"17604","-1","","","","","Field Marshal's Satin Mantle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20585","102927","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"17605","-1","","","","","Field Marshal's Satin Vestments","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27544","137722","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17606","-1","","","","","Marshal's Satin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8060","40304","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"17607","-1","","","","","Marshal's Satin Sandals","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16266","81332","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","18","21","0","0","0","0","0","0","0","0","60" +"17608","-1","","","","","Marshal's Satin Gloves","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10886","54431","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","21","13","0","0","0","0","0","0","0","0","60" +"17609","-1","","","","","Marshal's Satin Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8154","40773","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"17610","-1","","","","","Champion's Satin Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8352","41761","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17611","-1","","","","","Legionnaire's Satin Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11179","55895","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","13","16","0","0","0","0","0","0","0","58" +"17612","-1","","","","","Legionnaire's Satin Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11221","56108","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17613","-1","","","","","Champion's Satin Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8447","42236","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17614","-1","","","","","Legionnaire's Satin Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","6","3","0","10","17","10","0","0","0","0","0","0","0","55" +"17615","-1","","","","","Legionnaire's Satin Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4744","23721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","9","3","0","15","3","7","0","0","0","0","0","0","0","55" +"17616","-1","","","","","Blood Guard's Satin Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8772","43860","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17617","-1","","","","","Blood Guard's Satin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5868","29344","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17618","-1","","","","","General's Satin Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17404","87023","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","8","4","0","21","18","0","0","0","0","0","0","0","0","60" +"17619","-1","","","","","General's Satin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8689","43448","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","9","4","0","19","10","10","0","0","0","0","0","0","0","60" +"17620","-1","","","","","General's Satin Gloves","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11687","58435","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","10","4","0","21","13","0","0","0","0","0","0","0","0","60" +"17621","-1","","","","","General's Satin Cinch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8751","43757","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","6","4","0","23","15","15","0","0","0","0","0","0","0","60" +"17622","-1","","","","","Warlord's Satin Mantle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20437","102188","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"17623","-1","","","","","Warlord's Satin Cowl","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20510","102553","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","1","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17624","-1","","","","","Warlord's Satin Robes","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27444","137223","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","17","20","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17625","-1","","","","","General's Satin Leggings","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23789","118947","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","16","7","4","0","30","21","0","0","0","0","0","0","0","0","60" +"17626","-1","","","","","Frostwolf Muzzle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17642","-1","","","","","Alterac Ram Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17643","-1","","","","","Frostwolf Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17662","-1","Deliver to: Smokywood Pastures Retail","","","","Stolen Treats","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17682","-1","","","","","Book: Gift of the Wild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"17683","-1","","","","","Book: Gift of the Wild II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"17684","-1","","","","","Theradric Crystal Carving","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17685","-1","","","","","Smokywood Pastures Sampler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17686","-1","","","","","Master Hunter's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9937","49686","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"17687","-1","","","","","Master Hunter's Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9937","49686","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","43","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"17688","-1","","","","","Jungle Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3155","15776","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","0","0","0","0","0","0","0","0","0" +"17689","-1","","","","","Stormpike Training Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17690","-1","","","","","Frostwolf Insignia Rank 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17691","-1","","","","","Stormpike Insignia Rank 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17692","-1","","","","","Horn Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","3525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","2","0","0","0","0","0","0","0","0","0" +"17693","-1","","","","","Coated Cerulean Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17694","-1","","","","","Band of the Fist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","3525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"17695","-1","","","","","Chestnut Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","930","4654","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","2","0","0","0","0","0","0","0","0","0" +"17696","-1","","","","","Filled Cerulean Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17702","-1","","","","","Celebrian Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17703","-1","","","","","Celebrian Diamond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17704","-1","","","","","Edge of Winter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9178","45890","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","38","-1","0","0","30","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","33" +"17705","-1","","","","","Thrash Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32854","164272","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17706","-1","","","","","Plans: Edge of Winter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17707","-1","","","","","Gemshard Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11631","46525","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","6","0","0","0","0","0","0","0","49" +"17708","-1","","","","","Elixir of Frost Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"17709","-1","","","","","Recipe: Elixir of Frost Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17710","-1","","","","","Charstone Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35483","177417","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","0","0","0","0","0","0","0","0","0","49" +"17711","-1","","","","","Elemental Rockridge Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14244","71223","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","496","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","20","0","0","0","0","0","0","0","0","49" +"17712","-1","For when the weather outside is frightful...","","","","Winter Veil Disguise Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17713","-1","","","","","Blackstone Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14641","58565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","49" +"17714","-1","","","","","Bracers of the Stone Princess","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10225","51128","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","5","0","0","0","0","0","0","0","0","49" +"17715","-1","","","","","Eye of Theradras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10225","51128","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","13","11","0","0","0","0","0","0","0","49" +"17716","-1","","","","","SnowMaster 9000","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17717","-1","","","","","Megashot Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26425","132129","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","5","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","48" +"17718","-1","","","","","Gizlock's Hypertech Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22630","113150","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","1835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","5","0","0","0","0","0","0","0","0","48" +"17719","-1","","","","","Inventor's Focal Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32106","160531","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","53","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17720","-1","","","","","Schematic: Snowmaster 9000","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17721","-1","","","","","Gloves of the Greatfather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2268","11340","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"17722","-1","","","","","Pattern: Gloves of the Greatfather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17723","-1","","","","","Green Holiday Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17724","-1","","","","","Pattern: Green Holiday Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17725","-1","","","","","Formula: Enchant Weapon - Winter's Might","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","333","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17726","-1","","","","","Smokywood Pastures Special Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17727","-1","","","","","Smokywood Pastures Gift Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17728","-1","","","","","Albino Crocscale Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12458","62291","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","5","0","0","0","0","0","0","0","0","48" +"17730","-1","","","","","Gatorbite Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42951","214759","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","53","-1","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17731","-1","","","","","Scroll of Celebras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17732","-1","","","","","Rotgrip Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10383","51916","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","0","0","0","0","0","0","0","0","48" +"17733","-1","","","","","Fist of Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34735","173678","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","5","0","0","0","0","0","0","0","0","48" +"17734","-1","","","","","Helm of the Mountain","1","0","230","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10457","52285","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","453","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17735","-1","","","","","The Feast of Winter Veil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2571","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17736","-1","","","","","Rockgrip Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9646","48234","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","48" +"17737","-1","","","","","Cloud Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10163","40655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","10","10","0","0","0","0","0","0","0","0","48" +"17738","-1","","","","","Claw of Celebras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33351","166758","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","47" +"17739","-1","","","","","Grovekeeper's Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9100","45504","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","47" +"17740","-1","","","","","Soothsayer's Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11401","57006","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","8","7","0","0","0","0","0","0","0","47" +"17741","-1","","","","","Nature's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11447","57238","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17742","-1","","","","","Fungus Shroud Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14450","72253","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","10","0","0","0","0","0","0","0","0","46" +"17743","-1","","","","","Resurgence Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40747","203739","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","53","-1","0","0","139","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17744","-1","","","","","Heart of Noxxion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9031","36125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17745","-1","","","","","Noxious Shooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22519","112599","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","51","-1","0","0","56","0","0","0","0","104","0","0","0","0","0","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","7","0","0","0","0","0","0","0","0","0","46" +"17746","-1","","","","","Noxxion's Shackles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5723","28618","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","5","0","0","0","0","0","0","0","0","0","46" +"17747","-1","","","","","Razorlash Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"17748","-1","","","","","Vinerot Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9107","45539","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","12","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","0","0","0","0","0","0","0","0","46" +"17749","-1","","","","","Phytoskin Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11425","57126","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","0","0","0","0","0","0","0","0","46" +"17750","-1","","","","","Chloromesh Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4769","23848","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"17751","-1","","","","","Brusslehide Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12787","63936","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","11","0","0","0","0","0","0","0","0","46" +"17752","-1","","","","","Satyr's Lash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28785","143928","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","50","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"17753","-1","","","","","Verdant Keeper's Aim","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26046","130234","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","0" +"17754","-1","","","","","Infernal Trickster Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17394","86971","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","9","0","0","0","0","0","0","0","0","45" +"17755","-1","","","","","Satyrmane Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5818","29093","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","10","0","0","0","0","0","0","0","0","45" +"17756","-1","","","","","Shadowshard Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17757","-1","","","","","Amulet of Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17758","-1","A great deal of power radiates from the amulet...","","","","Amulet of Union","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17759","-1","","","","","Mark of Resolution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10307","41230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17760","-1","","","","","Seed of Life","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17761","-1","Found on the body of Kolk...","","","","Gem of the First Khan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17762","-1","Found on the body of Gelk...","","","","Gem of the Second Khan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17763","-1","Found on the body of Magra...","","","","Gem of the Third Khan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17764","-1","Found on the body of Maraudos...","","","","Gem of the Fourth Khan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17765","-1","Found on the body of Veng...","","","","Gem of the Fifth Khan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17766","-1","","","","","Princess Theradras' Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44863","224317","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","54","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","49" +"17767","-1","","","","","Bloomsprout Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13610","68052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","0","0","0","0","0","0","0","0","0","46" +"17768","-1","","","","","Woodseed Hoop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7891","31565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","5","0","0","0","0","0","0","0","0","0" +"17769","-1","","","","","Sagebrush Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8673","43365","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","0" +"17770","-1","","","","","Branchclaw Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3851","19258","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","0","0","0","0","0","0","0","0","0","0" +"17771","-1","","","","","Elementium Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"17772","-1","","","","","Zealous Shadowshard Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7132","28530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17773","-1","","","","","Prodigious Shadowshard Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7132","28530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","0" +"17774","-1","","","","","Mark of the Chosen","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6133","24535","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17775","-1","","","","","Acumen Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7841","39207","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","0","0","0","0","0","0","0","0","0","0" +"17776","-1","","","","","Sprightring Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7377","36888","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","10","0","0","0","0","0","0","0","0","0" +"17777","-1","","","","","Relentless Chain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10815","54078","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","10","0","0","0","0","0","0","0","0","0" +"17778","-1","","","","","Sagebrush Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4506","22532","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","15","0","0","0","0","0","0","0","0","0","0" +"17779","-1","","","","","Hulkstone Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5547","27736","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","5","0","0","0","0","0","0","0","0","0" +"17780","-1","","","","","Blade of Eternal Darkness","1","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","46796","233983","1","1","1","64","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","54","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","49" +"17781","-1","","","","","The Pariah's Instructions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2591","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17782","-1","","","","","Talisman of Binding Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","5","0","13","8","5","0","0","0","0","0","0","0","60" +"17783","-1","","","","","Talisman of Binding Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","5","0","13","8","5","0","0","0","0","0","0","0","60" +"17802","-1","","","","","Thunderfury, Blessed Blade of the Windseeker DEPRECATED","1","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","261136","1305681","1","1","1","16","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","80","-1","0","0","82","16","0","0","0","153","30","0","0","0","0","0","8","9","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","5","8","0","0","0","0","0","0","0","0","100" +"17822","-1","","","","","Frostwolf Maps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17823","-1","","","","","Stormpike Battle Plans","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17824","-1","","","","","Level 65 Test Gear Cloth - Priest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17825","-1","","","","","Level 65 Test Gear Cloth - Warlock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17826","-1","","","","","Level 65 Test Gear Plate - Warrior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17827","-1","","","","","QAEnchant Bracer +9 Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17828","-1","","","","","QAEnchant Bracer +9 Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17829","-1","","","","","QAEnchant Bracer +9 Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17830","-1","","","","","QAEnchant Bracer +7 Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17831","-1","","","","","Level 60 Test Gear Cloth - Mage/Priest/Warlock 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17832","-1","","","","","Level 60 Test Gear Leather - Druid 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17833","-1","","","","","Level 60 Test Gear Leather - Rogue 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17834","-1","","","","","Level 60 Test Gear Mail - Hunter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17835","-1","","","","","Level 60 Test Gear Mail - Shaman 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17836","-1","","","","","Level 60 Test Gear Plate - Paladin/Warrior 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17837","-1","","","","","Level 55 Test Gear Cloth - Mage/Priest/Warlock 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17838","-1","","","","","Level 55 Test Gear Leather - Druid 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17839","-1","","","","","Level 55 Test Gear Leather - Rogue 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17840","-1","","","","","Level 55 Test Gear Mail - Hunter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17841","-1","","","","","Level 55 Test Gear Mail - Shaman 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17842","-1","","","","","Level 55 Test Gear Plate - Paladin/Warrior 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17843","-1","","","","","Level 50 Test Gear Cloth - Mage/Priest/Warlock 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17844","-1","","","","","Level 50 Test Gear Leather - Druid 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17845","-1","","","","","Level 50 Test Gear Leather - Rogue 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17846","-1","","","","","Level 50 Test Gear Mail - Hunter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17847","-1","","","","","Level 50 Test Gear Mail - Shaman 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17848","-1","","","","","Level 50 Test Gear Plate - Paladin/Warrior 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17849","-1","","","","","Stormpike Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17850","-1","","","","","Frostwolf Banner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17851","-1","","","","","Level 65 Test Gear Cloth - Mage 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17852","-1","","","","","Level 65 Test Gear Cloth - Priest 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17853","-1","","","","","Level 65 Test Gear Cloth - Warlock 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17854","-1","","","","","Level 65 Test Gear Leather - Druid 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17855","-1","","","","","Level 65 Test Gear Leather - Rogue 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17856","-1","","","","","Level 65 Test Gear Leather - Rogue 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17857","-1","","","","","Level 65 Test Gear Mail - Hunter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17858","-1","","","","","Level 65 Test Gear Mail - Hunter 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17859","-1","","","","","Level 65 Test Gear Mail - Shaman 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17860","-1","","","","","Level 65 Test Gear Plate - Paladin 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17861","-1","","","","","Level 65 Test Gear Plate - Warrior 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17862","-1","","","","","Level 65 Test Gear Plate - Warrior 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17882","-1","","","","","QAEnchant Chest +100 Health","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17883","-1","","","","","QAEnchant Chest +100 Mana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17884","-1","","","","","QAEnchant Cloak +5 Resistances","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17885","-1","","","","","QAEnchant Cloak +70 Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17886","-1","","","","","zzOLD - QAEnchant Weapon Winter's Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17887","-1","","","","","QAEnchant 2H Weapon +9 Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17888","-1","","","","","QAEnchant Weapon +5 Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17889","-1","","","","","zzOLD - QAEnchant 2H Weapon Major Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17890","-1","","","","","zzOLD - QAEnchant Shield +7 Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17891","-1","","","","","QAEnchant Shield +7 Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17892","-1","","","","","QAEnchant Shield +8 Frost Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17893","-1","","","","","QAEnchant Shield +9 Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17894","-1","","","","","QAEnchant Boots +7 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17895","-1","","","","","QAEnchant Boots +5 Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17896","-1","","","","","QAEnchant Boots +7 Stamina","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17897","-1","","","","","QAEnchant Gloves +7 Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17898","-1","","","","","QAEnchant Gloves +7 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17899","-1","","","","","QAEnchant Gloves +1% Haste","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17900","-1","","","","","Stormpike Insignia Rank 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17901","-1","","","","","Stormpike Insignia Rank 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17902","-1","","","","","Stormpike Insignia Rank 4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17903","-1","","","","","Stormpike Insignia Rank 5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17904","-1","The Eye of Command","","","","Stormpike Insignia Rank 6","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17905","-1","","","","","Frostwolf Insignia Rank 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17906","-1","","","","","Frostwolf Insignia Rank 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17907","-1","","","","","Frostwolf Insignia Rank 4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17908","-1","","","","","Frostwolf Insignia Rank 5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17909","-1","The Eye of Command","","","","Frostwolf Insignia Rank 6","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17910","-1","","","","","Test Enchantments LockBox (Enchanting Items) 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17911","-1","","","","","Test Enchantments LockBox (Enchanting Items) 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17922","-1","","","","","Lionfur Armor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","576","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"17942","-1","","","","","Monster - Mace2H, War Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17943","-1","","","","","Fist of Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32156","160783","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17962","-1","","","","","Blue Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4762","19050","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17963","-1","","","","","Green Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17964","-1","","","","","Gray Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5512","22050","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17965","-1","","","","","Yellow Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17966","-1","","","","","Onyxia Hide Backpack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17967","-1","","","","","Refined Scale of Onyxia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17968","-1","","","","","Charged Scale of Onyxia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17969","-1","","","","","Red Sack of Gems","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4773","19095","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17982","-1","","","","","Ragnaros Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23961","95846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3474","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","60" +"18002","-1","","","","","Monster - Axe, 2H Horde Massive Spiked Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18022","-1","","","","","Royal Seal of Alexis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","8","0","0","0","0","0","0","0","0" +"18023","-1","","","","","Blood Ruby Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15538","62153","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","54" +"18042","-1","","","","","Thorium Headed Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","57","-1","0","0","17","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","52" +"18043","-1","","","","","Coal Miner Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15495","77476","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","9","0","0","0","0","0","0","0","0","52" +"18044","-1","","","","","Hurley's Tankard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41478","207391","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","5","0","0","0","0","0","0","0","0","52" +"18045","-1","","","","","Tender Wolf Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18046","-1","","","","","Recipe: Tender Wolf Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18047","-1","","","","","Flame Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24428","122142","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","0","0","0","0","0","0","0","0","0","57" +"18048","-1","","","","","Mastersmith's Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49204","246023","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","55" +"18062","-1","","","","","Monster - Mace2H, Horde Hammer A03/C01Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18063","-1","","","","","Test Epic Mount","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"18082","-1","","","","","Zum'rah's Vexing Cane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28161","140809","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","10","0","0","0","0","0","0","0","0","42" +"18083","-1","","","","","Jumanza Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4522","22613","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","10","10","0","0","0","0","0","0","0","42" +"18102","-1","","","","","Dragonrider Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17158","85794","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","5","0","0","0","0","0","0","0","0","58" +"18103","-1","","","","","Band of Rumination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15252","61010","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18104","-1","","","","","Feralsurge Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17285","86425","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","9","0","0","0","0","0","0","0","0","58" +"18105","-1","","","","","PVP TEST Alliance Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18106","-1","","","","","PVP TEST Horde Ear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18122","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Blue High Blue Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18123","-1","","","","","Monster - Staff, Feathered Silver Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18142","-1","","","","","Severed Night Elf Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18143","-1","","","","","Tuft of Gnome Hair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18144","-1","","","","","Human Bone Chip","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18145","-1","","","","","Tauren Hoof","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18146","-1","","","","","Darkspear Troll Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18147","-1","","","","","Forsaken Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18148","-1","","","","","Skull of Korrak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18149","-1","","","","","Rune of Recall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18150","-1","","","","","Rune of Recall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18151","-1","","","","","Filled Amethyst Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18152","-1","","","","","Amethyst Phial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18153","-1","","","","","Red Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18154","-1","","","","","Blizzard Stationery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18155","-1","","","","","Blue Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18156","-1","","","","","Green Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18157","-1","","","","","Black Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18158","-1","","","","","Gold Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18159","-1","","","","","White Moro'gai Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18160","-1","","","","","Recipe: Thistle Tea","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18161","-1","","","","","5% Test Speed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18162","-1","","","","","8% Test Speed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18163","-1","","","","","10% Test Speed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18164","-1","","","","","13% Test Speed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18165","-1","","","","","15% Test Speed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18166","-1","","","","","Monster - Shield, Royal Dreadguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18167","-1","","","","","Monster - Sword, Machete C01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18168","-1","","","","","Force Reactive Disk","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56416","282082","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2468","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","11","0","0","0","0","0","0","0","0","0","60" +"18169","-1","","","","","Flame Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18170","-1","","","","","Frost Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18171","-1","","","","","Arcane Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18172","-1","","","","","Nature Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18173","-1","","","","","Shadow Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18182","-1","","","","","Chromatic Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18202","-1","","","","","Eskhandar's Left Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","90576","452881","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","261","0","0","0","1500","0","0","0","66","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","4","0","0","0","0","0","0","0","0","0","60" +"18203","-1","","","","","Eskhandar's Right Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","90905","454525","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","261","0","0","0","1500","0","0","0","66","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","4","0","0","0","0","0","0","0","0","0","60" +"18204","-1","","","","","Eskhandar's Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27370","136851","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18205","-1","","","","","Eskhandar's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33287","133150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","0","0","0","0","0","0","0","0","0","60" +"18206","-1","","","","","Dwarf Spine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18207","-1","","","","","Orc Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18208","-1","","","","","Drape of Benediction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29147","145737","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","11","8","0","0","0","0","0","0","0","60" +"18209","-1","","","","","Energized Sparkplug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1231","4925","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18222","-1","","","","","Thorny Vine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3070","12280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18223","-1","","","","","Serrated Petal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6142","24568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18224","-1","","","","","Lasher Root","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","1728","6912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18225","-1","","","","","Worn Running Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","140","560","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18226","-1","","","","","A Sealed Pact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","408","1633","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18227","-1","This item has seen much use.","","","","Nubless Pacifier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","248","995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18228","-1","It's either a signature or someone spilled ink a dramatic fashion.","","","","Autographed Picture of Tigule","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18229","-1","This book is missing every page but the last.","","","","Nat Pagle's Guide to Extreme Anglin'","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","790","3163","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2611","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18230","-1","If only it worked.","","","","Broken I.W.I.N. Button","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","509","2037","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18231","-1","On the inside collar it reads, ""Inspected by Earl Z. Moade.""","","","","Sleeveless T-Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","361","1445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18232","-1","","","","","Field Repair Bot 74A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18233","-1","The owner of this item could have probably used a hug.","","","","Tear Stained Handkerchief","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","130","520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18234","-1","You think that you can make out some numbers. This appears to be a repair bill.","","","","Document from Boomstick Imports","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18235","-1","","","","","Schematic: Field Repair Bot 74A","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18236","-1","","","","","Gordok Chew Toy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2716","10864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18237","-1","","","","","Mastiff Jawbone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1622","6490","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18238","-1","","","","","Shadowskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3321","16608","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","0","0","0","0","0","0","0","0","0","35" +"18239","-1","","","","","Pattern: Shadowskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18240","-1","","","","","Ogre Tannin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18241","1101","","","","","Black War Steed Bridle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18242","1101","","","","","Reins of the Black War Tiger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18243","68","","","","","Black Battlestrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18244","1101","","","","","Black War Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18245","690","","","","","Horn of the Black War Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18246","146","","","","","Whistle of the Black War Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18247","690","","","","","Black War Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18248","146","","","","","Red Skeletal Warhorse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","15","0","4","0","0","0","0","0","0","0","0","0","0","0","40" +"18249","-1","","","","","Crescent Key","1","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18250","-1","Used with Gordok ogre shackles.","","","","Gordok Shackle Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18251","-1","","","","","Core Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18252","-1","","","","","Pattern: Core Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18253","-1","","","","","Major Rejuvenation Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"18254","-1","","","","","Runn Tum Tuber Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"18255","-1","","","","","Runn Tum Tuber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"18256","-1","","","","","Imbued Vial","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","30000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18257","-1","","","","","Recipe: Major Rejuvenation Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18258","-1","It lifts AND supports!","","","","Gordok Ogre Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"18259","-1","","","","","Formula: Enchant Weapon - Spell Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18260","-1","","","","","Formula: Enchant Weapon - Healing Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18261","-1","","","","","Book of Incantations","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18262","-1","","","","","Elemental Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18263","-1","","","","","Flarecore Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16911","84557","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","1535","0","0","0","0","0","0","0","0","0","0","0","0","43","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","0","0","0","0","0","0","0","0","0","60" +"18264","-1","","","","","Plans: Elemental Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18265","-1","","","","","Pattern: Flarecore Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18266","-1","","","","","Gordok Courtyard Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2557","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18267","-1","","","","","Recipe: Runn Tum Tuber Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18268","-1","","","","","Gordok Inner Door Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18269","-1","","","","","Gordok Green Grog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18282","-1","","","","","Core Marksman Rifle","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66347","331739","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","65","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"18283","-1","","","","","Biznicks 247x128 Accurascope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18284","-1","","","","","Kreeg's Stout Beatdown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18285","-1","","","","","Crystallized Mana Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4558","18234","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18286","-1","","","","","Condensed Mana Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2953","11812","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18287","-1","Tastes better going down than coming up!","","","","Evermurky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18288","-1","Do not consume near open flames.","","","","Molasses Firewater","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18289","-1","","","","","Barbed Thorn Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9701","38804","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","51" +"18290","-1","","","","","Schematic: Biznicks 247x128 Accurascope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18291","-1","","","","","Schematic: Force Reactive Disk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18292","-1","","","","","Schematic: Core Marksman Rifle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18293","-1","","","","","Monster - Glaive - 2 Blade B03 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18294","-1","","","","","Elixir of Greater Water Breathing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18295","-1","","","","","Phasing Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11582","57913","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3325","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","0","0","0","0","0","0","0","0","50" +"18296","-1","","","","","Marksman Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12322","61610","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","6","0","0","0","0","0","0","0","0","51" +"18297","-1","","","","","Thornling Seed","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"18298","-1","","","","","Unbridled Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20685","103427","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","11","0","0","0","0","0","0","0","0","51" +"18299","-1","","","","","Hydrospawn Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18300","-1","","","","","Hyjal Nectar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"18301","-1","","","","","Lethtendris's Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29363","146815","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","58","-1","0","0","60","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","53" +"18302","-1","","","","","Band of Vigor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7530","30122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","7","7","0","0","0","0","0","0","0","53" +"18303","-1","","","","","Nimble Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25232","126160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","0","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","53" +"18304","-1","","","","","Greenroot Mail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21480","107402","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","0","0","0","0","0","0","0","0","0","53" +"18305","-1","","","","","Breakwater Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14375","71879","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18306","-1","","","","","Gloves of Shadowy Mist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","36075","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18307","-1","","","","","Riptide Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11163","55815","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18308","-1","","","","","Clever Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14006","70030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","53" +"18309","-1","","","","","Gloves of Restoration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11296","56480","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","54" +"18310","-1","","","","","Fiendish Machete","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47406","237032","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","59","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18311","-1","","","","","Quel'dorai Channeling Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56644","283224","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","58","-1","0","0","111","0","0","0","0","167","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","8","8","0","0","0","0","0","0","0","53" +"18312","-1","","","","","Energized Chestplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18073","90369","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","20","12","0","0","0","0","0","0","0","54" +"18313","-1","","","","","Helm of Awareness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13694","68474","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","0","0","0","0","0","0","0","0","0","53" +"18314","-1","","","","","Ring of Demonic Guile","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12100","48400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"18315","-1","","","","","Ring of Demonic Potency","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12100","48400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"18316","-1","","","","","Obsidian Bauble","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13117","52468","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","0","0","0","0","0","0","0","0","0","53" +"18317","-1","","","","","Tempest Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12503","50012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","53" +"18318","-1","","","","","Merciful Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22057","110286","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","0","0","0","0","0","0","0","0","54" +"18319","-1","","","","","Fervent Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20989","104945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3441","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","0","0","0","0","0","0","0","0","0","53" +"18320","-1","","","","","Demonheart Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21157","105789","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","9","0","0","0","0","0","0","0","53" +"18321","-1","","","","","Energetic Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49320","246601","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","59","-1","0","0","71","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18322","-1","","","","","Waterspout Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16137","80686","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","0","0","0","0","0","0","0","0","53" +"18323","-1","","","","","Satyr's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32988","164943","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","58","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","53" +"18324","-1","","","","","Waveslicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55189","275949","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","58","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","0","0","0","0","0","0","0","0","0","53" +"18325","-1","","","","","Felhide Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16137","80686","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","8","0","0","8","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","14","0","0","0","0","0","0","0","0","53" +"18326","-1","","","","","Razor Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9036","45184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","0","0","0","0","0","0","0","0","0","54" +"18327","-1","","","","","Whipvine Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9376","46880","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","0","0","0","0","0","0","0","0","0","54" +"18328","-1","","","","","Shadewood Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14116","70583","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","7","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","13","7","0","0","0","0","0","0","0","0","54" +"18329","-1","","","","","Arcanum of Rapidity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18330","-1","","","","","Arcanum of Focus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18331","-1","","","","","Arcanum of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18332","-1","Dark runes skitter across the surface.","","","","Libram of Rapidity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2635","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18333","-1","Dark runes skitter across the surface.","","","","Libram of Focus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2631","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18334","-1","Dark runes skitter across the surface.","","","","Libram of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2633","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18335","-1","","","","","Pristine Black Diamond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18336","-1","This gauntlet looks as though it once was imbued with potent magic.","","","","Gauntlet of Gordok Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18337","-1","","","","","Orphic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8103","40516","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","7","0","0","0","0","0","0","0","0","54" +"18338","-1","","","","","Wand of Arcane Potency","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36595","182979","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","59","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18339","-1","","","","","Eidolon Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11370","56853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","12","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","54" +"18340","-1","","","","","Eidolon Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28853","115412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","0","0","0","0","0","0","0","0","0","54" +"18341","-1","","","","","Quel'dorai Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7638","38190","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","12","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","54" +"18342","-1","","","","","Quel'dorai Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29442","147213","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","11","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18343","-1","","","","","Petrified Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14615","58462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","0","0","0","0","0","0","0","0","0","59" +"18344","-1","","","","","Stonebark Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11587","57937","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","16","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","54" +"18345","-1","","","","","Murmuring Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14727","58908","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18346","-1","","","","","Threadbare Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16345","81726","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18347","-1","","","","","Well Balanced Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43067","215336","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","61","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","56" +"18348","-1","The High Blade","","","","Quel'Serrar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","112651","563257","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","71","3","0","0","84","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","12","0","0","0","0","0","0","0","0","0","60" +"18349","-1","","","","","Gauntlets of Accuracy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12454","62270","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","0","0","0","0","0","0","0","0","0","56" +"18350","-1","","","","","Amplifying Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13063","65319","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18351","-1","","","","","Magically Sealed Bracers","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8740","43702","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18352","-1","","","","","Petrified Bark Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28072","140363","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18353","-1","","","","","Stoneflower Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55030","275154","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","-1","0","0","113","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","24","0","0","0","0","0","0","0","0","0","56" +"18354","-1","","","","","Pimgib's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17466","69864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18355","-1","","","","","Ferra's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14996","59984","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18356","-1","The tome is magically sealed.","","","","Garona: A Study on Stealth and Treachery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7498","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18357","-1","The tome is magically sealed.","","","","Codex of Defense","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7499","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18358","-1","The tome is magically sealed.","","","","The Arcanist's Cookbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7500","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18359","-1","-By Uther","","","","The Light and How to Swing It","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7501","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18360","-1","Tales from the Blasted Lands as told by Lady Sevine.","","","","Harnessing Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7502","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18361","-1","A Tale of a Female Troll and Her Tiger","","","","The Greatest Race of Hunters","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7503","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18362","-1","-By Shadow Priest Allister","","","","Holy Bologna: What the Light Won't Tell You","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7504","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18363","-1","-By Drek'Thar","","","","Frost Shock and You","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7505","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18364","-1","Fact or Carefully Planned Out Farce Perpetrated By My Brother -By Illidan","","","","The Emerald Dream","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7506","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18365","-1","Someone really loves to fish.","","","","A Thoroughly Read Copy of ""Nat Pagle's Extreme' Anglin.""","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18366","-1","","","","","Gordok's Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9805","49025","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18367","-1","","","","","Gordok's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14762","73814","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18368","-1","","","","","Gordok's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12348","61742","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18369","-1","","","","","Gordok's Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9915","49577","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18370","-1","","","","","Vigilance Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18371","-1","","","","","Mindtap Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20737","82948","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18372","-1","","","","","Blade of the New Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56716","283580","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","62","-1","0","0","40","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","57" +"18373","-1","","","","","Chestplate of Tranquility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28459","142297","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","6","10","0","0","0","0","0","0","0","57" +"18374","-1","","","","","Flamescarred Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21418","107093","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","11","0","0","0","0","0","0","0","57" +"18375","-1","","","","","Bracers of the Eclipse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14329","71649","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","9","0","0","0","0","0","0","0","0","57" +"18376","-1","","","","","Timeworn Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52306","261534","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","0","62","0","0","0","0","117","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","11","0","0","0","0","0","0","0","0","57" +"18377","-1","","","","","Quickdraw Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13076","65383","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","7","7","0","0","0","0","0","0","0","57" +"18378","-1","","","","","Silvermoon Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31384","156920","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","10","16","6","0","0","0","0","0","0","57" +"18379","-1","","","","","Odious Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23791","118957","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","9","0","0","0","0","0","0","0","0","57" +"18380","-1","","","","","Eldritch Reinforced Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21135","105677","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","20","9","0","0","0","0","0","0","0","57" +"18381","-1","","","","","Evil Eye Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21635","86542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","57" +"18382","-1","","","","","Fluctuating Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15971","79858","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3458","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18383","-1","","","","","Force Imbued Gauntlets","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10179","50897","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","0","0","0","0","0","0","0","0","0","56" +"18384","-1","","","","","Bile-etched Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16093","80467","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","6","6","0","0","0","0","0","0","0","57" +"18385","-1","","","","","Robe of Everlasting Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21536","107684","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","11","5","0","0","0","0","0","0","0","57" +"18386","-1","","","","","Padre's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20588","102943","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","56" +"18387","-1","","","","","Brightspark Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","55" +"18388","-1","","","","","Stoneshatter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41928","209641","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","73","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","0","0","0","0","0","0","0","0","0","0","57" +"18389","-1","","","","","Cloak of the Cosmos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16830","84152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","7","0","0","0","0","0","0","0","0","57" +"18390","-1","","","","","Tanglemoss Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26811","134059","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","13","12","0","0","0","0","0","0","0","57" +"18391","-1","","","","","Eyestalk Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13076","65383","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","9","0","0","0","0","0","0","0","0","57" +"18392","-1","","","","","Distracting Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56710","283553","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","62","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18393","-1","","","","","Warpwood Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14944","74724","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","9","6","0","0","0","0","0","0","0","56" +"18394","-1","","","","","Demon Howl Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17133","85666","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","0","0","0","0","0","0","0","0","0","57" +"18395","-1","","","","","Emerald Flame Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36645","146580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","8","7","0","0","0","0","0","0","0","57" +"18396","-1","","","","","Mind Carver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57516","287583","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","62","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","0","0","0","0","0","0","0","0","0","57" +"18397","-1","","","","","Elder Magus Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","7","6","0","0","0","0","0","0","0","56" +"18398","-1","","","","","Tidal Loop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27103","108413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","7","4","0","0","0","0","0","0","0","0" +"18399","-1","","","","","Ocean's Breeze","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27103","108413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","4","0","0","0","0","0","0","0","0" +"18400","-1","","","","","Ring of Living Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","9","0","0","0","0","0","0","0","0","0" +"18401","-1","Several pages are blank.","","","","Nostro's Compendium of Dragon Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7507","2637","0","0","0","0","60","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","3","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18402","-1","","","","","Glowing Crystal Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18662","74651","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","5","0","0","0","0","0","0","0","0","0" +"18403","-1","","","","","Dragonslayer's Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49060","196240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","6","12","0","0","0","0","0","0","0","0" +"18404","-1","","","","","Onyxia Tooth Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6714","26856","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","0" +"18405","-1","","","","","Belt of the Archmage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14744","73720","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1535","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","10","0","0","0","0","0","0","0","0","57" +"18406","-1","","","","","Onyxia Blood Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46030","184123","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18407","-1","","","","","Felcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11139","55696","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"18408","-1","","","","","Inferno Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11178","55893","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"18409","-1","","","","","Mooncloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11219","56096","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","15","9","0","0","0","0","0","0","0","57" +"18410","-1","","","","","Sprinter's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45516","227582","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","57","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18411","-1","","","","","Spry Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13704","68520","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","0" +"18412","-1","","","","","Core Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18413","-1","","","","","Cloak of Warding","1","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17070","85353","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18414","-1","","","","","Pattern: Belt of the Archmage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18415","-1","","","","","Pattern: Felcloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18416","-1","","","","","Pattern: Inferno Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18417","-1","","","","","Pattern: Mooncloth Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18418","-1","","","","","Pattern: Cloak of Warding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18419","-1","","","","","Monster - Axe, 2H Horde Red War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18420","-1","","","","","Bonecrusher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71236","356184","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","0","0","0","0","0","0","0","0","0","0" +"18421","-1","","","","","Backwood Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25741","128705","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","9","9","13","0","0","0","0","0","0","0" +"18422","-1","The head of the Black Dragonflight's Brood Mother","","","","Head of Onyxia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7490","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18423","-1","The head of the Black Dragonflight's Brood Mother","","","","Head of Onyxia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7495","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18424","-1","","","","","Sedge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20595","102979","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","5","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","0" +"18425","-1","","","","","Kreeg's Mug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","15","-10","0","0","0","0","0","0","0","55" +"18426","-1","","","","","Lethtendris's Web","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18427","-1","","","","","Sergeant's Cloak","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1322","6611","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","9","0","0","0","0","0","0","0","0","0","30" +"18428","-1","","","","","Senior Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7500","30000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18429","-1","","","","","First Sergeant's Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5889","29447","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18430","-1","","","","","First Sergeant's Plate Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2878","14391","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18432","-1","","","","","First Sergeant's Mail Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4348","21742","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","68","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18434","-1","","","","","First Sergeant's Dragonhide Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7493","37468","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18435","-1","","","","","First Sergeant's Leather Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3662","18311","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18436","-1","","","","","First Sergeant's Dragonhide Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3417","17086","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","1024","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18437","-1","","","","","First Sergeant's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2744","13721","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","400","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18438","-1","","","","","Sergeant's Mark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","12","3","0","0","0","0","0","0","0","0","0","0","0","35" +"18440","-1","","","","","Sergeant's Cape","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1288","6443","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","9","0","0","0","0","0","0","0","0","0","30" +"18441","-1","","","","","Sergeant's Cape","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4178","20891","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","14","0","0","0","0","0","0","0","0","0","45" +"18442","-1","","","","","Master Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","9","4","0","0","0","0","0","0","0","0","30" +"18443","-1","","","","","Master Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18444","-1","","","","","Master Sergeant's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7500","30000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","8","2","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18445","-1","","","","","Sergeant Major's Plate Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5804","29021","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18447","-1","","","","","Sergeant Major's Plate Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2847","14235","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","3","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18448","-1","","","","","Sergeant Major's Chain Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8801","44007","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18449","-1","","","","","Sergeant Major's Chain Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4301","21507","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","4","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18450","-1","","","","","Robe of Combustion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15814","79073","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","17","0","0","0","0","0","0","0","0","0","55" +"18451","-1","","","","","Hyena Hide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9884","49420","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18452","-1","","","","","Sergeant Major's Leather Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6910","34553","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18453","-1","","","","","Sergeant Major's Leather Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3378","16890","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18454","-1","","","","","Sergeant Major's Dragonhide Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6963","34815","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18455","-1","","","","","Sergeant Major's Dragonhide Armsplints","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3404","17020","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","1024","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18456","-1","","","","","Sergeant Major's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5613","28065","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18457","-1","","","","","Sergeant Major's Silk Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2674","13373","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","400","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","9","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18458","-1","","","","","Modest Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12212","61064","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18459","-1","","","","","Gallant's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7907","39536","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","0","0","0","0","0","0","0","0","0","55" +"18460","-1","","","","","Unsophisticated Hand Cannon","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30762","153811","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","48","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","8","0","0","0","0","0","0","0","0","0","55" +"18461","-1","","","","","Sergeant's Cloak","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8577","42888","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","7","16","3","0","17","0","0","0","0","0","0","0","0","0","58" +"18462","-1","","","","","Jagged Bone Fist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41319","206595","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","51","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","7","0","0","0","0","0","0","0","0","55" +"18463","-1","","","","","Ogre Pocket Knife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41472","207361","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","55" +"18464","-1","","","","","Gordok Nose Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29135","116541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","5","0","0","0","0","0","0","0","0","55" +"18465","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18466","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18467","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18468","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18469","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18470","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18471","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18472","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18473","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18475","-1","","","","","Oddly Magical Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7907","39536","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18476","-1","","","","","Mud Stained Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15149","75747","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","15","0","0","0","0","0","0","0","0","55" +"18477","-1","","","","","Shaggy Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19768","98841","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","0","0","0","0","0","0","0","0","0","55" +"18478","-1","","","","","Hyena Hide Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19768","98841","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","13","0","0","0","0","0","0","0","0","55" +"18479","-1","","","","","Carrion Scorpid Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17791","88957","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18480","-1","","","","","Scarab Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11860","59304","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","55" +"18481","-1","","","","","Skullcracking Mace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51451","257259","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","60","-1","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","10","0","0","0","0","0","0","0","0","55" +"18482","-1","","","","","Ogre Toothpick Shooter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30986","154930","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","61","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","6","5","0","0","0","0","0","0","0","0","55" +"18483","-1","","","","","Mana Channeling Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37362","186810","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","61","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18484","-1","","","","","Cho'Rush's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53822","269110","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","61","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18485","-1","","","","","Observer's Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34569","172849","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","14","5","9","0","0","0","0","0","0","0","56" +"18486","-1","","","","","Mooncloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21683","108417","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","12","12","0","0","0","0","0","0","0","56" +"18487","-1","","","","","Pattern: Mooncloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18488","-1","","","","","Heated Ancient Blade","1","1200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18489","-1","","","","","Unfired Ancient Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18490","-1","","","","","Insightful Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18655","93277","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","9","12","0","0","0","0","0","0","0","56" +"18491","-1","","","","","Lorespinner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40695","203475","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","6","5","0","0","0","0","0","0","0","0" +"18492","-1","Tempered in the blood of Onyxia.","","","","Treated Ancient Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18493","-1","","","","","Bulky Iron Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14233","71165","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","12","5","0","0","0","0","0","0","0","55" +"18494","-1","","","","","Denwatcher's Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21444","107223","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","0","0","0","0","0","0","0","55" +"18495","-1","","","","","Redoubt Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16770","83851","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","58" +"18496","-1","","","","","Heliotrope Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14233","71165","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","55" +"18497","-1","","","","","Sublime Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","6","6","0","0","0","0","0","0","0","55" +"18498","-1","","","","","Hedgecutter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47443","237219","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","5","0","0","0","0","0","0","0","0","55" +"18499","-1","","","","","Barrier Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34589","172945","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18500","-1","","","","","Tarnished Elven Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31340","125360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","56" +"18501","-1","","","","","Felvine Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18502","-1","","","","","Monstrous Glaive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70127","350636","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","0","0","0","0","0","0","0","0","0","57" +"18503","-1","","","","","Kromcrush's Chestplate","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22521","112609","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","16","16","0","0","0","0","0","0","0","0","57" +"18504","-1","","","","","Girdle of Insight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14126","70634","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","23","9","0","0","0","0","0","0","0","0","57" +"18505","-1","","","","","Mugger's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13076","65383","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","0","0","0","0","0","0","0","0","0","57" +"18506","-1","","","","","Mongoose Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21340","106702","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","9","0","0","0","0","0","0","0","0","57" +"18507","-1","","","","","Boots of the Full Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15692","78460","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","9","12","0","0","0","0","0","0","0","57" +"18508","-1","","","","","Swift Flight Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17194","85970","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","0","0","0","0","0","0","0","0","0","57" +"18509","-1","","","","","Chromatic Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23006","115033","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","9","0","0","9","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","0","0","0","0","0","0","0","0","0","57" +"18510","-1","","","","","Hide of the Wild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20889","104449","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","8","0","0","0","0","0","0","0","0","57" +"18511","-1","","","","","Shifting Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20971","104855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","8","0","0","0","0","0","0","0","0","57" +"18512","-1","","","","","Larval Acid","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18513","-1","","","","","A Dull and Flat Elven Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7508","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18514","-1","","","","","Pattern: Girdle of Insight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18515","-1","","","","","Pattern: Mongoose Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18516","-1","","","","","Pattern: Swift Flight Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18517","-1","","","","","Pattern: Chromatic Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18518","-1","","","","","Pattern: Hide of the Wild","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18519","-1","","","","","Pattern: Shifting Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18520","-1","","","","","Barbarous Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73101","365505","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","63","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18521","-1","","","","","Grimy Metal Boots","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17606","88032","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","0","0","0","0","0","0","0","0","0","58" +"18522","-1","","","","","Band of the Ogre King","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36253","145013","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","13","0","0","0","0","0","0","0","0","58" +"18523","-1","","","","","Brightly Glowing Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34810","139243","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","0","0","0","0","0","0","0","0","0","58" +"18524","-1","","","","","Leggings of Destruction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35596","177982","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","13","20","0","0","0","0","0","0","0","58" +"18525","-1","","","","","Bracers of Prosperity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13730","68652","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","8","5","0","0","0","0","0","0","0","58" +"18526","-1","","","","","Crown of the Ogre King","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17924","89621","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","11","16","0","0","0","0","0","0","0","58" +"18527","-1","","","","","Harmonious Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17988","89941","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","5","5","0","0","0","0","0","0","0","58" +"18528","-1","","","","","Cyclone Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20465","102326","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","9","11","0","0","0","0","0","0","0","56" +"18529","-1","","","","","Elemental Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9963","49816","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3499","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","56" +"18530","-1","","","","","Ogre Forged Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31331","156657","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","13","8","8","0","0","0","0","0","0","57" +"18531","-1","","","","","Unyielding Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65383","326918","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","62","-1","0","0","135","0","0","0","0","204","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","57" +"18532","-1","","","","","Mindsurge Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21629","108145","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","12","0","0","0","0","0","0","0","0","57" +"18533","-1","","","","","Gordok Bracers of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10984","54922","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18534","-1","","","","","Rod of the Ogre Magi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71503","357515","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","11","7","0","0","0","0","0","0","0","58" +"18535","-1","","","","","Milli's Shield","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30231","151155","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","7","0","0","0","0","0","0","0","0","0" +"18536","-1","","","","","Milli's Lexicon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38664","154658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","6","0","0","0","0","0","0","0","0","0" +"18537","-1","","","","","Counterattack Lodestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66135","264540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18538","-1","","","","","Treant's Bane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96748","483741","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","128","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","25","15","0","0","0","0","0","0","0","0","58" +"18539","-1","","","","","Reliquary of Purity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18540","-1","","","","","Sealed Reliquary of Purity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18541","-1","","","","","Puissant Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33028","165144","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"18542","-1","","","","","Typhoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125278","626393","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","68","-1","0","0","150","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","14","20","10","0","0","0","0","0","0","0","60" +"18543","-1","","","","","Ring of Entropy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63728","254912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","11","8","0","0","0","0","0","0","0","60" +"18544","-1","","","","","Doomhide Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29212","146060","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","8","0","0","8","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","14","0","0","0","0","0","0","0","0","60" +"18545","-1","","","","","Leggings of Arcane Supremacy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42546","212731","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","10","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","14","14","0","0","0","0","0","0","0","60" +"18546","-1","","","","","Infernal Headcage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48035","240179","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","358","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","14","24","0","0","0","0","0","0","0","60" +"18547","-1","","","","","Unmelting Ice Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23619","118096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","16","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","14","14","14","0","0","0","0","0","0","0","60" +"18562","-1","","","","","Elementium Ore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18563","-1","The Left Half of Thunderaan's Eternal Prison","","","","Bindings of the Windseeker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"18564","-1","The Right Half of Thunderaan's Eternal Prison","","","","Bindings of the Windseeker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"18565","-1","","","","","Vessel of Rebirth DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7522","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","100" +"18566","-1","","","","","Essence of the Firelord DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","100" +"18567","-1","","","","","Elemental Flux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","37500","150000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18582","-1","","","","","The Twin Blades of Azzinoth","1","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1224473","6122369","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","100","-1","0","0","132","40","40","0","0","139","60","60","0","0","0","0","0","0","0","100","100","0","254","0","0","0","0","0","0","3","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","75","100","-106","0","0","0","0","0","0","0","70" +"18583","-1","","","","","Warglaive of Azzinoth (Right)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1111948","5559741","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","85","30","0","0","0","95","60","0","0","0","0","0","0","0","0","50","60","0","254","0","0","0","0","0","0","1","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","40","50","60","0","0","0","0","0","0","0","70" +"18584","-1","","","","","Warglaive of Azzinoth (Left)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1116267","5581336","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","85","30","0","0","0","95","60","0","0","0","0","0","0","0","0","60","50","0","254","0","0","0","0","0","0","1","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","60","50","40","0","0","0","0","0","0","0","70" +"18585","-1","","","","","Band of Allegiance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"18586","-1","","","","","Lonetree's Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","0" +"18587","-1","","","","","Goblin Jumper Cables XL","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18588","-1","The dynamite for Non-Engineers that rarely* blows up in your hand with over twice the blasting power of standard EZ-Thro.","","","","Ez-Thro Dynamite II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"18589","-1","","","","","Dormant Wind Kissed Blade DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7561","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"18590","-1","","","","","Raging Beast's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18591","-1","","","","","Case of Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18592","-1","","","","","Plans: Sulfuron Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18593","-1","Bound in Dark Iron Wiring","","","","Thorium Brotherhood Contract (OLD)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18594","-1","","","","","Powerful Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18595","-1","","","","","Blood Opal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18596","-1","","","","","Monster - Axe, Horde B01 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18597","-1","","","","","Orcish Orphan Whistle","1","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18598","-1","","","","","Human Orphan Whistle","1","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18599","32767","","","","","QAEnchant 2H Weapon +25 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18600","-1","","","","","Tome of Arcane Brilliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18601","-1","","","","","Glowing Crystal Prison","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18602","-1","","","","","Tome of Sacrifice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","0","0","0","0","0","0","0","0","0","0" +"18603","-1","","","","","Satyr Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18604","-1","","","","","Tears of the Hederine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18605","-1","","","","","Imprisoned Doomguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18606","-1","","","","","Alliance Battle Standard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","13","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18607","-1","","","","","Horde Battle Standard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","13","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18608","-1","","","","","Benediction","1","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","10","12","0","0","0","0","0","0","0","60" +"18609","-1","","","","","Anathema","1","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","22","0","0","0","0","0","0","0","0","60" +"18610","-1","","","","","Keen Machete","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","181","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18611","-1","","","","","Gnarlpine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","139","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","2" +"18612","-1","","","","","Bloody Chain Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","171","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","3" +"18622","-1","","","","","Flawless Fel Essence (Jaedenar)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18623","-1","","","","","Flawless Fel Essence (Dark Portal)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18624","-1","","","","","Flawless Fel Essence (Azshara)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18625","-1","","","","","Kroshius' Infernal Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18626","-1","","","","","Fel Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18627","-1","","","","","Gong of Dethmoora","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18628","-1","Bound in Dark Iron Wiring","","","","Thorium Brotherhood Contract","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7604","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18629","-1","","","","","Black Lodestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18630","-1","","","","","Doomsday Flare","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18631","-1","","","","","Truesilver Transformer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18632","-1","","","","","Moonbrook Riot Taffy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"18633","-1","","","","","Styleen's Sour Suckerpop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"18634","-1","","","","","Gyrofreeze Ice Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","47" +"18635","-1","","","","","Bellara's Nutterbar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18636","-1","","","","","Ruined Jumper Cables XL","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18637","-1","","","","","Major Recombobulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18638","-1","","","","","Hyper-Radiant Flame Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"18639","-1","","","","","Ultra-Flash Shadow Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18640","-1","","","","","Happy Fun Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18641","-1","","","","","Dense Dynamite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18642","-1","Be strong Randis, and aspire to be the hero you were meant to be. -- Lady Jaina Proudmoore","","","","Jaina's Autograph","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18643","-1","Heed the spirits, young Grunth. It is there that true heroes hear their calling. -- Cairne Bloodhoof","","","","Cairne's Hoofprint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18644","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Red Low Red Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18645","-1","","","","","Gnomish Alarm-O-Bot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18646","-1","You can see movement when you peer into the Eye.","","","","The Eye of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2659","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","2","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18647","-1","","","","","Schematic: Red Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18648","-1","","","","","Schematic: Green Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18649","-1","","","","","Schematic: Blue Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18650","-1","","","","","Schematic: EZ-Thro Dynamite II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18651","-1","","","","","Schematic: Truesilver Transformer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18652","-1","","","","","Schematic: Gyrofreeze Ice Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18653","-1","","","","","Schematic: Goblin Jumper Cables XL","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18654","-1","","","","","Schematic: Gnomish Alarm-O-Bot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18655","-1","","","","","Schematic: Major Recombobulator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18656","-1","","","","","Schematic: Powerful Seaforium Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18657","-1","","","","","Schematic: Hyper-Radiant Flame Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18658","-1","","","","","Schematic: Ultra-Flash Shadow Reflector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18659","-1","A tiny fragment of the World Tree","","","","Splinter of Nordrassil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18660","-1","Only Gnomish Technology could invent a device that affects the entire world!","","","","World Enlarger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18661","-1","","","","","Schematic: World Enlarger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18662","-1","","","","","Heavy Leather Ball","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","10","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18663","-1","","","","","J'eevee's Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18664","-1","","","","","A Treatise on Military Ranks","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2654","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18665","-1","Seething darkness engulfs the eye.","","","","The Eye of Shadow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18666","-1","","","","","QAEnchant Weapon Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18667","-1","","","","","QAEnchant Weapon Icy Chill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18668","-1","","","","","QAEnchant Weapon Spell Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18669","-1","","","","","QAEnchant Weapon Healing Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18670","-1","","","","","Xorothian Glyphs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18671","-1","","","","","Baron Charr's Sceptre","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45184","225923","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","59","-1","0","0","70","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18672","-1","","","","","Elemental Ember","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17855","71420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","54" +"18673","-1","","","","","Avalanchion's Stony Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28918","144591","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","16","0","0","0","0","0","0","0","0","0","54" +"18674","-1","","","","","Hardened Stone Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22003","88014","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","8","0","0","0","0","0","0","0","0","54" +"18675","-1","","","","","Military Ranks of the Horde & Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2661","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18676","-1","","","","","Sash of the Windreaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16080","80404","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","7","6","0","0","0","0","0","0","0","56" +"18677","-1","","","","","Zephyr Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12487","62439","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18678","-1","","","","","Tempestria's Frozen Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26635","106541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","56" +"18679","-1","","","","","Frigid Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25136","100546","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","56" +"18680","-1","","","","","Ancient Bone Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37894","189474","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","61","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","11","0","0","0","0","0","0","0","0","0","56" +"18681","-1","","","","","Burial Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15215","76079","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","0","0","0","0","0","0","0","0","0","56" +"18682","-1","","","","","Ghoul Skin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25456","127282","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","8","8","0","0","0","0","0","0","0","56" +"18683","-1","","","","","Hammer of the Vesper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51100","255504","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","61","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","7","0","0","0","0","0","0","0","0","56" +"18684","-1","","","","","Dimly Opalescent Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36141","144564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3306","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","56" +"18685","-1","","","","","Shadowy Potion OLD","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","5000","60000","3","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18686","-1","","","","","Bone Golem Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24527","122638","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","9","9","0","0","0","0","0","0","0","57" +"18687","-1","","","","","Xorothian Stardust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18688","-1","","","","","Imp in a Jar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18689","-1","","","","","Phantasmal Cloak","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16460","82301","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","11","0","0","0","0","0","0","0","0","57" +"18690","-1","","","","","Wraithplate Leggings","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22026","110130","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","57" +"18691","-1","","","","","Dark Advisor's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31400","125601","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","7","0","0","0","0","0","0","0","0","56" +"18692","-1","","","","","Death Knight Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14375","71877","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","9","0","0","0","0","0","0","54" +"18693","-1","","","","","Shivery Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11425","57127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","9","0","0","0","0","0","0","0","57" +"18694","-1","","","","","Shadowy Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25910","129554","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","0","0","0","0","0","0","0","0","0","57" +"18695","-1","","","","","Spellbound Tome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","17","6","3","0","0","0","0","0","0","0","57" +"18696","-1","","","","","Intricately Runed Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33476","167382","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","0","0","0","0","0","0","0","0","0","57" +"18697","-1","","","","","Coldstone Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10867","54339","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","9","0","0","0","0","0","0","0","0","50" +"18698","-1","","","","","Tattered Leather Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14454","72270","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","10","0","0","0","0","0","0","0","0","51" +"18699","-1","","","","","Icy Tomb Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15380","76901","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","0","0","0","0","0","0","0","0","52" +"18700","-1","","","","","Malefic Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10910","54552","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","7","0","0","0","0","0","0","0","0","53" +"18701","-1","","","","","Innervating Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36410","145640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","9","0","0","0","0","0","0","0","0","54" +"18702","-1","","","","","Belt of the Ordained","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9695","48478","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","9","0","0","0","0","0","0","0","0","55" +"18703","-1","A very large petrified leaf.","","","","Ancient Petrified Leaf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7632","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18704","-1","","","","","Mature Blue Dragon Sinew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18705","-1","","","","","Mature Black Dragon Sinew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18706","-1","","","","","Arena Master","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10031","40124","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7810","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","5","0","0","0","0","0","0","0","0","0","35" +"18707","-1","A Gift from the Ancients.","","","","Ancient Rune Etched Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18708","-1","","","","","Petrified Bark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2671","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"18709","-1","","","","","Arena Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5758","28794","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18710","-1","","","","","Arena Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7224","36122","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18711","-1","","","","","Arena Bands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8700","43502","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18712","-1","","","","","Arena Vambraces","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5821","29105","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18713","-1","","","","","Rhok'delar, Longbow of the Ancient Keepers","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","4","0","0","89","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"18714","-1","","","","","Ancient Sinew Wrapped Lamina","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18715","-1","","","","","Lok'delar, Stave of the Ancient Keepers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","4","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","15","0","0","0","0","0","0","0","0","60" +"18716","-1","","","","","Ash Covered Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18655","93277","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","0","0","0","0","0","0","0","0","56" +"18717","-1","","","","","Hammer of the Grand Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68818","344091","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","10","9","0","0","0","0","0","0","0","58" +"18718","-1","","","","","Grand Crusader's Helm","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16580","82901","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","16","12","0","0","0","0","0","0","0","58" +"18719","-1","","","","","The Traitor's Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18720","-1","","","","","Shroud of the Nathrezim","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16706","83532","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","0","0","0","0","0","0","0","0","58" +"18721","-1","","","","","Barrage Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14944","74724","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","6","6","0","0","0","0","0","0","0","56" +"18722","-1","","","","","Death Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10688","53442","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","0","0","0","0","0","0","0","0","0","57" +"18723","-1","","","","","Animated Chain Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","57" +"18724","-1","An almost indestructible string. Perfect for a mighty bow stave.","","","","Enchanted Black Dragon Sinew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18725","-1","","","","","Peacemaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59927","299636","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","59","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18726","-1","","","","","Magistrate's Cuffs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11296","56480","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","0","0","0","0","0","0","0","0","0","54" +"18727","-1","","","","","Crimson Felt Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14487","72438","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","8","8","8","0","0","0","0","0","0","0","54" +"18728","-1","","","","","Anastari Heirloom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32466","129865","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"18729","-1","","","","","Screeching Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38302","191512","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","60","-1","0","0","70","0","0","0","0","71","0","0","0","0","0","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","55" +"18730","-1","","","","","Shadowy Laced Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10250","51254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","12","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","55" +"18731","-1","","","","","Pattern: Heavy Leather Ball","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","165","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18734","-1","","","","","Pale Moon Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17194","85970","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","12","0","0","0","0","0","0","0","0","57" +"18735","-1","","","","","Maleki's Footwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17253","86266","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","9","0","0","0","0","0","0","0","0","57" +"18736","-1","","","","","Plaguehound Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26112","130561","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","6","0","0","0","0","0","0","0","0","57" +"18737","-1","","","","","Bone Slicing Hatchet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52427","262137","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","62","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","57" +"18738","-1","","","","","Carapace Spine Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37593","187966","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","61","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","9","4","0","0","0","0","0","0","0","0","56" +"18739","-1","","","","","Chitinous Plate Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20124","100624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","56" +"18740","-1","","","","","Thuzadin Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10101","50505","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","11","11","0","0","0","0","0","0","0","56" +"18741","-1","","","","","Morlune's Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10416","52082","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","11","7","0","0","0","0","0","0","0","56" +"18742","-1","","","","","Stratholme Militia Shoulderguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22503","112518","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","9","0","0","0","0","0","0","0","0","55" +"18743","-1","","","","","Gracious Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14275","71379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","54" +"18744","-1","","","","","Plaguebat Fur Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11371","56859","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","13","0","0","0","0","0","0","0","0","53" +"18745","-1","","","","","Sacred Cloth Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17228","86140","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","12","12","0","0","0","0","0","0","0","52" +"18746","-1","","","","","Divination Scryer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18747","-1","","","","","Item Properties Test","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8238","41191","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18749","-1","","","","","Charger's Lost Soul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18752","-1","","","","","Exorcism Censer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18753","-1","","","","","Arcanite Barding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18754","-1","","","","","Fel Hardened Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10461","52306","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","12","0","0","0","0","0","0","0","0","57" +"18755","-1","","","","","Xorothian Firestick","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43129","215646","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","62","-1","0","0","57","0","0","0","0","108","0","0","0","0","0","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","6","4","0","0","0","0","0","0","0","0","57" +"18756","-1","","","","","Dreadguard's Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33420","167101","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","18","5","0","0","0","0","0","0","0","0","57" +"18757","-1","","","","","Diabolic Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16162","80813","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","0","0","0","0","0","0","0","0","0","57" +"18758","-1","","","","","Specter's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54072","270363","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18759","-1","","","","","Malicious Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67844","339223","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","62","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","0","0","0","0","0","0","0","0","0","57" +"18760","-1","","","","","Necromantic Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30866","123465","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18761","-1","","","","","Oblivion's Touch","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41011","205055","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","0","78","0","0","0","0","147","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","11","0","0","0","0","0","0","0","0","0","57" +"18762","-1","","","","","Shard of the Green Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27631","110526","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","0","0","0","0","0","0","0","0","0","0" +"18763","-1","","","","","TEST GUN Alliance20 ","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19966","99831","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18764","-1","","","","","TEST GUN Raid","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20039","100198","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18765","-1","","","","","TEST GUN Horde50","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20113","100566","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18766","1101","","","","","Reins of the Swift Frostsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18767","1101","","","","","Reins of the Swift Mistsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18768","1101","","","","","Reins of the Swift Dawnsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18769","-1","Volume I","","","","Enchanted Thorium Platemail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7649","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18770","-1","Volume II","","","","Enchanted Thorium Platemail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7650","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18771","-1","Volume III","","","","Enchanted Thorium Platemail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7651","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18772","68","","","","","Swift Green Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18773","68","","","","","Swift White Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18774","68","","","","","Swift Yellow Mechanostrider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","553","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18775","-1","Oats and grains specially mixed with the Argent Dawn's enriched manna biscuits.","","","","Manna-Enriched Horse Feed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18776","1101","","","","","Swift Palomino","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18777","1101","","","","","Swift Brown Steed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18778","1101","","","","","Swift White Steed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18779","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18780","-1","","","","","Top Half of Advanced Armorsmithing: Volume I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18781","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18782","-1","","","","","Top Half of Advanced Armorsmithing: Volume II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18783","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18784","-1","","","","","Top Half of Advanced Armorsmithing: Volume III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18785","1101","","","","","Swift White Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18786","1101","","","","","Swift Brown Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18787","1101","","","","","Swift Gray Ram","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18788","146","","","","","Swift Blue Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18789","146","","","","","Swift Olive Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18790","146","","","","","Swift Orange Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18791","146","","","","","Purple Skeletal Warhorse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18792","-1","","","","","Blessed Arcanite Barding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18793","690","","","","","Great White Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18794","690","","","","","Great Brown Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18795","690","","","","","Great Gray Kodo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","713","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18796","690","","","","","Horn of the Swift Brown Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18797","690","","","","","Horn of the Swift Timber Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18798","690","","","","","Horn of the Swift Gray Wolf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18799","-1","","","","","Charger's Redeemed Soul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18800","-1","","","","","TEST 1H Amberseal Keeper","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92678","463393","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","67","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","5","5","5","5","5","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18801","-1","","","","","TEST 1H Benediction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","10","12","0","0","0","0","0","0","0","60" +"18802","-1","","","","","Shadowy Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","60000","3","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18803","-1","Property of Finkle Einhorn, Grandmaster Adventurer","","","","Finkle's Lava Dredger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135594","677972","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","70","-1","0","0","155","0","0","0","0","234","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","25","24","0","0","0","0","0","0","0","0","60" +"18804","-1","Your finished Divination Scryer and Blessed Arcanite Barding are inside the satchel.","","","","Lord Grayson's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18805","-1","","","","","Core Hound Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109275","546375","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","70","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"18806","-1","","","","","Core Forged Greaves","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33761","168806","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","544","0","12","0","0","8","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","0","0","0","0","0","0","0","0","0","60" +"18807","-1","","","","","Helm of Latent Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25796","128980","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","12","12","0","0","0","0","0","0","0","0" +"18808","-1","","","","","Gloves of the Hypnotic Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22665","113326","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","18","8","0","0","0","0","0","0","0","60" +"18809","-1","","","","","Sash of Whispered Secrets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21611","108057","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18810","-1","","","","","Wild Growth Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40678","203394","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","11","10","0","0","0","0","0","0","0","60" +"18811","-1","","","","","Fireproof Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32665","163328","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","9","8","0","0","0","0","0","0","0","60" +"18812","-1","","","","","Wristguards of True Flight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32458","162290","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","11","6","0","0","0","0","0","0","0","60" +"18813","-1","","","","","Ring of Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89103","356412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18814","-1","","","","","Choker of the Fire Lord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89135","356542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","7","7","0","0","0","0","0","0","0","0","60" +"18815","-1","","","","","Essence of the Pure Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64095","256380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18816","-1","","","","","Perdition's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","148714","743570","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","77","-1","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18817","-1","","","","","Crown of Destruction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63975","319878","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","9","9","0","0","0","0","0","0","0","60" +"18818","-1","","","","","Mor'zul's Instructions","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18819","-1","","","","","Rohan's Exorcism Censer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18820","-1","","","","","Talisman of Ephemeral Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18821","-1","","","","","Quick Strike Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64030","256120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","5","0","0","0","0","0","0","0","0","60" +"18822","-1","","","","","Obsidian Edged Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125768","628843","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","68","-1","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","42","0","0","0","0","0","0","0","0","0","60" +"18823","-1","","","","","Aged Core Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26506","132532","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","8","0","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","0","0","0","0","0","0","0","0","60" +"18824","-1","","","","","Magma Tempered Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33518","167591","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","544","0","8","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","12","0","0","0","0","0","0","0","60" +"18825","-1","","","","","Grand Marshal's Aegis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31807","159036","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","2929","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","14","4","0","23","10","0","0","0","0","0","0","0","0","60" +"18826","-1","","","","","High Warlord's Shield Wall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31917","159587","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","2929","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","14","4","0","23","10","0","0","0","0","0","0","0","0","60" +"18827","-1","","","","","Grand Marshal's Handaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50048","250241","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18828","-1","","","","","High Warlord's Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50225","251127","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18829","-1","","","","","Deep Earth Spaulders","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48836","244184","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","11","7","0","0","0","0","0","0","0","60" +"18830","-1","","","","","Grand Marshal's Sunderer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57227","286137","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18831","-1","","","","","High Warlord's Battle Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57448","287244","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18832","-1","","","","","Brutality Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104089","520447","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","70","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","9","0","0","0","0","0","0","0","0","60" +"18833","-1","","","","","Grand Marshal's Bullseye","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34731","173657","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","66","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","15","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18834","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18835","-1","","","","","High Warlord's Recurve","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34997","174986","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","66","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","15","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18836","-1","","","","","Grand Marshal's Repeater","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35130","175650","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18837","-1","","","","","High Warlord's Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35259","176297","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18838","-1","","","","","Grand Marshal's Dirk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48458","242293","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18839","-1","","","","","Combat Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18840","-1","","","","","High Warlord's Razor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48812","244064","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18841","-1","","","","","Combat Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","275","1100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","41" +"18842","-1","","","","","Staff of Dominance","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138646","693232","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","70","-1","0","0","155","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","14","0","0","0","0","0","0","0","60" +"18843","-1","","","","","Grand Marshal's Right Hand Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49339","246698","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","21","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18844","-1","","","","","High Warlord's Right Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49516","247584","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","21","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18845","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18846","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18847","-1","","","","","Grand Marshal's Left Hand Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50043","250218","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","22","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18848","-1","","","","","High Warlord's Left Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50215","251079","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","22","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18849","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18850","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18851","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18852","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18853","-1","","","","","Insignia of the Horde","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18854","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18855","-1","","","","","Grand Marshal's Hand Cannon","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35945","179726","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","26","4","3","7","0","0","0","0","0","0","0","0","0","60" +"18856","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18857","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18858","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18859","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18860","-1","","","","","High Warlord's Street Sweeper","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36602","183012","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","26","4","3","7","0","0","0","0","0","0","0","0","0","60" +"18861","-1","","","","","Flamewaker Legplates","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28493","142467","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","608","0","11","0","0","11","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","18","0","0","0","0","0","0","0","0","56" +"18862","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18863","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18864","-1","","","","","Insignia of the Alliance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","6","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18865","-1","","","","","Grand Marshal's Punisher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49684","248422","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18866","-1","","","","","High Warlord's Bludgeon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49861","249308","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18867","-1","","","","","Grand Marshal's Battle Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62542","312712","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18868","-1","","","","","High Warlord's Pulverizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62763","313819","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18869","-1","","","","","Grand Marshal's Glaive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56993","284969","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18870","-1","","","","","Helm of the Lifegiver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31384","156920","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","14","9","0","0","0","0","0","0","0","57" +"18871","-1","","","","","High Warlord's Pig Sticker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59017","295085","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18872","-1","","","","","Manastorm Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30394","151971","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","14","0","0","0","0","0","0","0","0","58" +"18873","-1","","","","","Grand Marshal's Stave","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59459","297299","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","78","-1","0","0","185","0","0","0","0","279","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","23","17","0","0","0","0","0","0","0","60" +"18874","-1","","","","","High Warlord's War Staff","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59681","298407","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","78","-1","0","0","185","0","0","0","0","279","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","23","17","0","0","0","0","0","0","0","60" +"18875","-1","","","","","Salamander Scale Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38445","192227","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","14","0","0","0","0","0","0","0","0","59" +"18876","-1","","","","","Grand Marshal's Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60118","300592","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18877","-1","","","","","High Warlord's Greatsword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60339","301699","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18878","-1","","","","","Sorcerous Dagger","1","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85645","428226","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","65","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","8","0","0","0","0","0","0","0","0","60" +"18879","-1","","","","","Heavy Dark Iron Ring","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","53364","213456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18880","-1","","","","","Darkreaver's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18881","-1","","","","","TEST Ragnaros Hammer","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","314707","1573535","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","180","0","0","0","0","302","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"18882","-1","","","","","TEST Level 80 Epic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209804","1049023","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","80","-1","0","0","218","0","0","0","0","328","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18902","1101","","","","","Reins of the Swift Stormsaber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18904","-1","","","","","Zorbin's Ultra-Shrinker","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18922","-1","Keep away from Thorium Brotherhood.","","","","Secret Plans: Fiery Flux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18942","-1","","","","","Fiery Flux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18943","-1","","","","","Dark Iron Pillow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18944","-1","","","","","Incendosaur Scale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","123","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18945","-1","","","","","Dark Iron Residue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","100","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18946","-1","","","","","Head of Overseer Maltorius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18947","-1","","","","","Rage Scar Yeti Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18948","-1","","","","","Barbaric Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1589","7945","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","4","4","0","0","0","0","0","0","0","27" +"18949","-1","","","","","Pattern: Barbaric Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","165","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18950","-1","This is one big pillow.","","","","Chambermaid Pillaclencher's Pillow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7704","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18951","-1","","","","","Evonice's Landin' Pilla","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18952","-1","","","","","Simone's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18953","-1","","","","","Klinfran's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18954","-1","","","","","Solenor's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18955","-1","","","","","Artorius's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18956","-1","","","","","Miniaturization Residue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18957","-1","","","","","Brushwood Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1250","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"18958","-1","","","","","Water Elemental Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18959","-1","","","","","Smithing Tuyere","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18960","-1","","","","","Lookout's Spyglass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18961","-1","","","","","Zukk'ash Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18962","-1","","","","","Stinglasher's Glands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18963","-1","","","","","Turtle Egg (Albino)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18964","-1","","","","","Turtle Egg (Loggerhead)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18965","-1","","","","","Turtle Egg (Hawksbill)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18966","-1","","","","","Turtle Egg (Leatherback)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18967","-1","","","","","Turtle Egg (Olive)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18968","-1","","","","","Ring of Critical Testing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18969","-1","","","","","Pristine Yeti Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7735","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18970","-1","","","","","Ring of Critical Testing 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18971","-1","","","","","Ring of Critical Testing 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18972","-1","","","","","Perfect Yeti Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7738","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18982","-1","","","","","Ring of Critical Testing 4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18983","-1","","","","","Monster - Sword, Longsword Exotic Black - Low Red Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18984","-1","","","","","Dimensional Ripper - Everlook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18985","-1","","","","","Monster - Sword, Long Silver - Green Pommel - High Black Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18986","-1","","","","","Ultrasafe Transporter: Gadgetzan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18987","-1","A letter of command from Rend Blackhand.","","","","Blackhand's Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7761","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"19002","-1","The head of Nefarian: Brood of Deathwing.","","","","Head of Nefarian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7783","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19003","-1","The head of Nefarian: Brood of Deathwing.","","","","Head of Nefarian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7781","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19004","-1","","","","","Minor Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19005","-1","","","","","Minor Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19006","-1","","","","","Lesser Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"19007","-1","","","","","Lesser Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"19008","-1","","","","","Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"19009","-1","","","","","Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"19010","-1","","","","","Greater Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"19011","-1","","","","","Greater Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"19012","-1","","","","","Major Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"19013","-1","","","","","Major Healthstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"19014","-1","","","","","Monster - Item, 2H Horde Wood Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19015","-1","","","","","Monster - Item, 2H Alliance Wood Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19016","-1","","","","","Vessel of Rebirth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7785","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"19017","-1","","","","","Essence of the Firelord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"19018","-1","","","","","Dormant Wind Kissed Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7787","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"19019","-1","","","","","Thunderfury, Blessed Blade of the Windseeker","1","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","255355","1276777","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","80","-1","0","0","82","16","0","0","0","153","30","0","0","0","0","0","8","9","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","5","8","0","0","0","0","0","0","0","0","60" +"19020","-1","","","","","Camp Mojache Zukk'ash Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19022","-1","Limited Edition","","","","Nat Pagle's Extreme Angler FC-5000","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28580","142900","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","100","356","50","-1","0","0","93","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19023","-1","","","","","Katoom's Best Lure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19024","-1","","","","","Arena Grand Master","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10031","40124","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19025","-1","","","","","Skylord Plume","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19026","-1","","","","","Snake Burst Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19027","-1","","","","","Schematic: Snake Burst Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19028","-1","","","","","Elegant Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1078","5393","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19029","-1","","","","","Horn of the Frostwolf Howler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","8000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19030","-1","","","","","Stormpike Battle Charger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","8000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19031","-1","","","","","Frostwolf Battle Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19032","-1","","","","","Stormpike Battle Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19033","-1","","","","","Slagtree's Lost Tools","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19034","-1","","","","","Lard's Lunch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19035","-1","","","","","Lard's Special Picnic Basket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19036","-1","","","","","Final Message to the Wildhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19037","-1","","","","","Emerald Peak Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5877","29389","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","10","7","0","0","0","0","0","0","0","0" +"19038","-1","","","","","Ring of Subtlety","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11145","44581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19039","-1","","","","","Zorbin's Water Resistant Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7403","37019","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","8","0","0","0","0","0","0","0","0" +"19040","-1","","","","","Zorbin's Mega-Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19468","97341","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","5","0","0","0","0","0","0","0","0","0" +"19041","-1","","","","","Pratt's Handcrafted Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9946","49732","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","6","0","0","0","0","0","0","0","0" +"19042","-1","","","","","Jangdor's Handcrafted Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9984","49920","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","6","0","0","0","0","0","0","0","0" +"19043","-1","","","","","Heavy Timbermaw Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13291","66458","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","0","0","0","0","0","0","0","0","0","53" +"19044","-1","","","","","Might of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11116","55584","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","9","0","0","0","0","0","0","0","0","53" +"19045","-1","","","","","Stormpike Battle Standard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19046","-1","","","","","Frostwolf Battle Standard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19047","-1","","","","","Wisdom of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9232","46164","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","53" +"19048","-1","","","","","Heavy Timbermaw Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28061","140305","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","0","0","0","0","0","0","0","0","0","59" +"19049","-1","","","","","Timbermaw Brawlers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15576","77882","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","59" +"19050","-1","","","","","Mantle of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18758","93794","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","0","0","0","0","0","0","0","0","0","59" +"19051","-1","","","","","Girdle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9365","46827","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","9","0","0","0","0","0","0","0","0","53" +"19052","-1","","","","","Dawn Treaders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17621","88105","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","0","0","0","0","0","0","0","0","0","53" +"19053","-1","","","","","Monster - Item, Orb - A01 Blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19054","-1","","","","","Red Dragon Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19055","-1","","","","","Green Dragon Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19056","-1","","","","","Argent Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12941","64705","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","4","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","7","0","0","0","0","0","0","0","0","53" +"19057","-1","","","","","Gloves of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11606","58031","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","59" +"19058","-1","","","","","Golden Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21845","109227","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","0","0","0","0","0","0","0","0","0","59" +"19059","-1","","","","","Argent Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17541","87708","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","8","0","0","0","0","0","0","0","0","59" +"19060","-1","","","","","Warsong Gulch Enriched Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19061","-1","","","","","Warsong Gulch Iron Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19062","-1","","","","","Warsong Gulch Field Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19064","-1","","","","","Shackle Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19065","-1","","","","","Emerald Circle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17831","71324","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","8","0","0","0","0","0","0","0","0","0" +"19066","-1","","","","","Warsong Gulch Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19067","-1","","","","","Warsong Gulch Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19068","-1","","","","","Warsong Gulch Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19069","-1","","","","","Huntsman Malkhor's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19070","-1","","","","","Huntsman Malkhor's Bones","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19071","-1","","","","","Vessel of Tainted Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19082","-1","","","","","Monster - Fire Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19083","-1","","","","","Frostwolf Legionnaire's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15044","75224","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19084","-1","","","","","Stormpike Soldier's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15100","75500","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19085","-1","","","","","Frostwolf Advisor's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15155","75776","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19086","-1","","","","","Stormpike Sage's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15209","76045","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19087","-1","","","","","Frostwolf Plate Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10176","50881","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","8","18","0","0","0","0","0","0","0","55" +"19088","-1","","","","","Frostwolf Mail Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15319","76597","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","12","12","0","0","0","0","0","0","0","55" +"19089","-1","","","","","Frostwolf Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11860","59304","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","15","11","0","0","0","0","0","0","0","55" +"19090","-1","","","","","Frostwolf Cloth Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10285","51428","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","55" +"19091","-1","","","","","Stormpike Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","8","18","0","0","0","0","0","0","0","55" +"19092","-1","","","","","Stormpike Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14233","71165","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","12","12","0","0","0","0","0","0","0","55" +"19093","-1","","","","","Stormpike Leather Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11860","59304","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","15","11","0","0","0","0","0","0","0","55" +"19094","-1","","","","","Stormpike Cloth Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","55" +"19095","-1","","","","","Frostwolf Legionnaire's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","71648","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"19096","-1","","","","","Frostwolf Advisor's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","71648","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","55" +"19097","-1","","","","","Stormpike Soldier's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","71648","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"19098","-1","","","","","Stormpike Sage's Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","71648","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","55" +"19099","-1","","","","","Glacial Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63065","315329","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19100","-1","","","","","Electrified Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63300","316503","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19101","-1","","","","","Whiteout Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79411","397057","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","65","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","25","0","0","0","0","0","0","0","0","60" +"19102","-1","","","","","Crackling Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79705","398525","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","65","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","25","0","0","0","0","0","0","0","0","60" +"19103","-1","","","","","Frostbite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63999","319995","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","60" +"19104","-1","","","","","Stormstrike Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64227","321137","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","60" +"19105","-1","","","","","Frost Runed Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17540","87704","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","58" +"19106","-1","","","","","Ice Barbed Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73353","366765","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","20","0","0","0","0","0","0","0","0" +"19107","-1","","","","","Bloodseeker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44171","220858","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","85","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","7","8","0","0","0","0","0","0","0","0","0" +"19108","-1","","","","","Wand of Biting Cold","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44327","221635","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19109","-1","","","","","Deep Rooted Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33920","135681","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","58" +"19110","-1","","","","","Cold Forged Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","63","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19111","-1","","","","","Winteraxe Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24824","124124","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","6","20","0","0","0","0","0","0","0","58" +"19112","-1","","","","","Frozen Steel Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10984","54922","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","11","7","12","0","0","0","0","0","0","0","58" +"19113","-1","","","","","Yeti Hide Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13730","68652","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","14","7","0","0","0","0","0","0","0","58" +"19114","-1","","","","","Highland Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17887","89435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","51","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","5","4","0","0","0","0","0","0","0","0","0" +"19115","-1","","","","","Flask of Forest Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11003","44012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","8","0","0","0","0","0","0","0","0","0","0" +"19116","-1","","","","","Greenleaf Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4590","22952","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","0" +"19117","-1","","","","","Laquered Wooden Plate Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8915","44578","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","10","0","0","0","0","0","0","0","0","0" +"19118","-1","","","","","Nature's Breath","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17344","86722","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","50","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","6","3","0","0","0","0","0","0","0","0","0" +"19119","-1","","","","","Owlbeast Hide Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5803","29015","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","8","8","0","0","0","0","0","0","0","0" +"19120","-1","","","","","Rune of the Guard Captain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16283","65132","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19121","-1","","","","","Deep Woodlands Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8585","42929","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","0" +"19122","-1","","","","","Woven Ivy Necklace DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21141","84564","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","9","10","6","0","0","0","0","0","0","0","0" +"19123","-1","","","","","Everwarm Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4114","20572","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","0","0","0","0","0","0","0","0","0","0" +"19124","-1","","","","","Slagplate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8259","41296","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","0" +"19125","-1","","","","","Seared Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6652","33261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19126","-1","","","","","Slagplate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4451","22255","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19127","-1","","","","","Charred Leather Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12258","61290","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","8","0","0","0","0","0","0","0","0","0" +"19128","-1","","","","","Seared Mail Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13358","66790","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","11","11","0","0","0","0","0","0","0","0" +"19129","-1","","","","","Everglowing Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8355","41775","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","11","0","0","0","0","0","0","0","0","0" +"19130","-1","","","","","Cold Snap","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77791","388958","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","70","-1","0","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","0","0","0","0","0","0","0","0","0","60" +"19131","-1","","","","","Snowblind Shoes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29746","148730","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","10","0","0","0","0","0","0","0","0","60" +"19132","-1","","","","","Crystal Adorned Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28438","142191","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","14","13","0","0","0","0","0","0","0","0","60" +"19133","-1","","","","","Fel Infused Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43277","216387","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","0","0","0","0","0","0","0","0","0","60" +"19134","-1","","","","","Flayed Doomguard Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23365","116827","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","18","0","0","0","0","0","0","0","0","60" +"19135","-1","","","","","Blacklight Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16954","84772","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","8","11","0","0","0","0","0","0","0","60" +"19136","-1","","","","","Mana Igniting Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22280","111403","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19137","-1","","","","","Onslaught Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31469","157346","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","11","0","0","0","0","0","0","0","0","60" +"19138","-1","","","","","Band of Sulfuras","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79853","319412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","23","10","13","0","0","0","0","0","0","0","60" +"19139","-1","","","","","Fireguard Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42244","211221","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","22","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","0","0","0","0","0","0","0","0","0","60" +"19140","-1","","","","","Cauterizing Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19141","-1","","","","","Luffa","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16612","66451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19142","-1","","","","","Fire Runed Grimoire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18903","75615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","21","12","0","0","0","0","0","0","0","0","60" +"19143","-1","","","","","Flameguard Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21283","106417","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19144","-1","","","","","Sabatons of the Flamewalker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45973","229869","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","11","0","0","0","0","0","0","0","0","60" +"19145","-1","","","","","Robe of Volatile Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37033","185169","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","15","10","10","0","0","0","0","0","0","0","60" +"19146","-1","","","","","Wristguards of Stability","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20183","100919","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","8","0","0","0","0","0","0","0","0","60" +"19147","-1","","","","","Ring of Spell Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19148","-1","","","","","Dark Iron Helm","1","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25399","126998","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","608","0","35","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","0","0","0","0","0","0","0","0","0","60" +"19149","-1","","","","","Lava Belt","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21248","106243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","26","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19150","-1","","","","","Sentinel Basic Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19151","-1","","","","","Sentinel Standard Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19152","-1","","","","","Sentinel Advanced Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19153","-1","","","","","Outrider Advanced Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19154","-1","","","","","Outrider Basic Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19155","-1","","","","","Outrider Standard Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19156","-1","","","","","Flarecore Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34911","174557","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","35","0","0","0","0","0","0","0","0","0","60" +"19157","-1","","","","","Chromatic Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31943","159715","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","5","5","5","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19158","-1","","","","","TEST Sulfuras, Hand of Ragnaros","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","314707","1573535","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","180","0","0","0","0","302","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"19159","-1","","","","","Woven Ivy Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21141","84564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","10","6","0","0","0","0","0","0","0","0" +"19160","-1","","","","","Contest Winner's Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19162","-1","","","","","Corehound Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27831","139159","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","0","0","0","0","0","0","0","0","0","60" +"19163","-1","","","","","Molten Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27931","139659","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","16","0","0","0","0","0","0","0","0","60" +"19164","-1","","","","","Dark Iron Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22425","112127","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","495","0","28","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19165","-1","","","","","Flarecore Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45006","225032","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","16","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","0","0","0","0","0","0","0","0","0","60" +"19166","-1","","","","","Black Amnesty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92896","464480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","66","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19167","-1","","","","","Blackfury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116531","582655","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","66","-1","0","0","105","0","0","0","0","158","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","15","0","0","0","0","0","0","0","0","60" +"19168","-1","","","","","Blackguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102890","514451","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19169","-1","","","","","Nightfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","129112","645562","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19170","-1","","","","","Ebon Hand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103689","518448","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","70","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","7","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19182","-1","","","","","Darkmoon Faire Prize Ticket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19183","-1","","","","","Hourglass Sand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19184","-1","","","","","3800 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74691","373459","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19185","-1","","","","","2100 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19186","-1","","","","","2700 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19187","-1","","","","","3200 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","63","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19188","-1","","","","","2200 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","63","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19189","-1","","","","","2300 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","63","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19190","-1","","","","","2400 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19191","-1","","","","","2500 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19192","-1","","","","","2600 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","63","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19193","-1","","","","","2800 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19194","-1","","","","","2900 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19195","-1","","","","","3000 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19196","-1","","","","","3100 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","133","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19197","-1","","","","","3300 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","142","0","0","0","0","214","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19198","-1","","","","","3400 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","63","-1","0","0","146","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19199","-1","","","","","3500 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19200","-1","","","","","3600 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19201","-1","","","","","3700 Test 2h Axe 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","63","-1","0","0","159","0","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19202","-1","","","","","Plans: Heavy Timbermaw Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19203","-1","","","","","Plans: Girdle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19204","-1","","","","","Plans: Heavy Timbermaw Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19205","-1","","","","","Plans: Gloves of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19206","-1","","","","","Plans: Dark Iron Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19207","-1","","","","","Plans: Dark Iron Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19208","-1","","","","","Plans: Black Amnesty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19209","-1","","","","","Plans: Blackfury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19210","-1","","","","","Plans: Ebon Hand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19211","-1","","","","","Plans: Blackguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19212","-1","","","","","Plans: Nightfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19213","-1","Proof of winning a battle in Warsong Gulch","","","","Silverwing Talisman of Merit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19214","-1","","","","","Monster - Staff, Wooden Handle Spiral Head Dark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19215","-1","","","","","Pattern: Wisdom of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19216","-1","","","","","Pattern: Argent Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19217","-1","","","","","Pattern: Argent Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19218","-1","","","","","Pattern: Mantle of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19219","-1","","","","","Pattern: Flarecore Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19220","-1","","","","","Pattern: Flarecore Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19221","-1","","","","","Darkmoon Special Reserve","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19222","-1","","","","","Cheap Beer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19223","-1","","","","","Darkmoon Dog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19224","-1","","","","","Red Hot Wings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19225","-1","","","","","Deep Fried Candybar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19226","-1","","","","","Fast Test Fist","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12077","60386","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"19227","-1","","","","","Ace of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19228","-1","Property of the Darkmoon Faire.","","","","Beasts Deck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7907","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19229","-1","Never eat beef with a tauren.","","","","Sayge's Fortune #1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19230","-1","","","","","Two of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19231","-1","","","","","Three of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19232","-1","","","","","Four of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19233","-1","","","","","Five of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19234","-1","","","","","Six of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19235","-1","","","","","Seven of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19236","-1","","","","","Eight of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19237","-1","The Forsaken are up to something.","","","","Sayge's Fortune #19","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19238","-1","An enemy from your past will soon become an ally.","","","","Sayge's Fortune #3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19239","-1","You will be fortunate in everything you put your hands to.","","","","Sayge's Fortune #4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19240","-1","Someone is speaking well of you.","","","","Sayge's Fortune #5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19241","-1","Be cautious when landing in unfamiliar territory.","","","","Sayge's Fortune #6","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19242","-1","Avoid taking unnecessary gambles.","","","","Sayge's Fortune #7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19243","-1","You will receive a fortune.","","","","Sayge's Fortune #8","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19244","-1","Your first love and last love is self-love.","","","","Sayge's Fortune #9","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19245","-1","Rest is a good thing, but boredom is its brother.","","","","Sayge's Fortune #10","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19246","-1","Those with simple tastes are always satisfied with the best.","","","","Sayge's Fortune #11","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19247","-1","Let not the tides of war wash you away.","","","","Sayge's Fortune #12","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19248","-1","You leave your adversaries speechless.","","","","Sayge's Fortune #13","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19249","-1","You have a good eye for spotting hypocrisy.","","","","Sayge's Fortune #14","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19250","-1","One learns most when teaching others.","","","","Sayge's Fortune #15","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19251","-1","The time will soon come for you to make a choice in a pressing matter.","","","","Sayge's Fortune #16","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19252","-1","Accept the next proposition you hear.","","","","Sayge's Fortune #18","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19253","-1","Never punt a gnome without due cause.","","","","Sayge's Fortune #17","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19254","-1","Divine Shields and Hearthstones do not make a hero heroic.","","","","Sayge's Fortune #21","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19255","-1","An answer in blue is always true.","","","","Sayge's Fortune #22","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19256","-1","You will find something wonderful tomorrow.","","","","Sayge's Fortune #2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19257","-1","Property of the Darkmoon Faire.","","","","Warlords Deck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7928","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19258","-1","","","","","Ace of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19259","-1","","","","","Two of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19260","-1","","","","","Three of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19261","-1","","","","","Four of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19262","-1","","","","","Five of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19263","-1","","","","","Six of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19264","-1","","","","","Seven of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19265","-1","","","","","Eight of Warlords","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19266","-1","Many a false step is made by standing still.","","","","Sayge's Fortune #20","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19267","-1","Property of the Darkmoon Faire.","","","","Elementals Deck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7929","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19268","-1","","","","","Ace of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19269","-1","","","","","Two of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19270","-1","","","","","Three of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19271","-1","","","","","Four of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19272","-1","","","","","Five of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19273","-1","","","","","Six of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19274","-1","","","","","Seven of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19275","-1","","","","","Eight of Elementals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19276","-1","","","","","Ace of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19277","-1","Property of the Darkmoon Faire.","","","","Portals Deck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7927","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19278","-1","","","","","Two of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19279","-1","","","","","Three of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19280","-1","","","","","Four of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19281","-1","","","","","Five of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19282","-1","","","","","Six of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19283","-1","","","","","Seven of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19284","-1","","","","","Eight of Portals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19286","-1","","","","","Fast Test Ammo","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19287","-1","","","","","Darkmoon Card: Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19288","-1","","","","","Darkmoon Card: Blue Dragon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19289","-1","","","","","Darkmoon Card: Maelstrom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19290","-1","","","","","Darkmoon Card: Twisting Nether","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19291","-1","","","","","Darkmoon Storage Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19292","-1","","","","","Last Month's Mutton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4022","20113","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","29" +"19293","-1","","","","","Last Year's Mutton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19376","96881","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","50" +"19295","-1","","","","","Darkmoon Flower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19296","-1","Guaranteed to contain an item of value!","","","","Greater Darkmoon Prize","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","45" +"19297","-1","Guaranteed to contain an item of value!","","","","Lesser Darkmoon Prize","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","30" +"19298","-1","Guaranteed to contain an item of value!","","","","Minor Darkmoon Prize","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","15" +"19299","-1","","","","","Fizzy Faire Drink","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"19300","-1","","","","","Bottled Winterspring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19301","-1","","","","","Alterac Manna Biscuit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","7000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","51" +"19302","-1","","","","","Darkmoon Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","50" +"19303","-1","","","","","Darkmoon Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","0","0","0","0","0","0","0","0","0","50" +"19304","-1","","","","","Spiced Beef Jerky","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"19305","-1","","","","","Pickled Kodo Foot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"19306","-1","","","","","Crunchy Frog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19307","-1","May only be used in Alterac Valley.","","","","Alterac Heavy Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","100","8000","20","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19308","-1","","","","","Tome of Arcane Domination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19309","-1","","","","","Tome of Shadow Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","8","0","0","0","0","0","0","0","0","0","60" +"19310","-1","","","","","Tome of the Ice Lord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19311","-1","","","","","Tome of Fiery Arcana","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19312","-1","","","","","Lei of the Lifegiver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19313","-1","","","","","1300 Test Dagger 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58901","294506","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19314","-1","","","","","2000 Test Dagger 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59114","295571","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19315","-1","","","","","Therazane's Touch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19316","-1","","","","","Ice Threaded Arrow","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","6000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","16","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","51" +"19317","-1","","","","","Ice Threaded Bullet","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","6000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","16","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","51" +"19318","-1","From the mountain springs of Alterac!","","","","Bottled Alterac Spring Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"19319","-1","","","","","Harpy Hide Quiver","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87500","350000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","55" +"19320","-1","","","","","Gnoll Skin Bandolier","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87500","350000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","55" +"19321","-1","","","","","The Immovable Object","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","159059","795297","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2468","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19322","-1","Proof of winning a battle in Warsong Gulch","","","","Warsong Mark of Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19323","-1","","","","","The Unstoppable Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","312980","1564900","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","65","-1","0","0","175","0","0","0","0","292","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","19","15","0","0","0","0","0","0","0","0","60" +"19324","-1","","","","","The Lobotomizer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","251323","1256618","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19325","-1","","","","","Don Julio's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","0","0","0","0","0","0","0","0","0","60" +"19326","-1","","","","","Pattern: Might of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19327","-1","","","","","Pattern: Timbermaw Brawlers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","165","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19328","-1","","","","","Pattern: Dawn Treaders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19329","-1","","","","","Pattern: Golden Mantle of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19330","-1","","","","","Pattern: Lava Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19331","-1","","","","","Pattern: Chromatic Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19332","-1","","","","","Pattern: Corehound Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19333","-1","","","","","Pattern: Molten Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19334","-1","","","","","The Untamed Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160453","802268","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","73","-1","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","16","0","0","0","0","0","0","0","0","60" +"19335","-1","","","","","Spineshatter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128825","644128","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","73","-1","0","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","16","9","0","0","0","0","0","0","0","0","60" +"19336","-1","","","","","Arcane Infused Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19337","-1","","","","","The Black Book","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19338","-1","","","","","Free Ticket Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19339","-1","","","","","Mind Quickening Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19340","-1","","","","","Rune of Metamorphosis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19341","-1","","","","","Lifegiving Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19342","-1","","","","","Venomous Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19343","-1","","","","","Scrolls of Blinding Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19344","-1","","","","","Natural Alignment Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19345","-1","","","","","Aegis of Preservation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19346","-1","","","","","Dragonfang Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","130907","654536","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","74","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","13","0","0","0","0","0","0","0","0","60" +"19347","-1","","","","","Claw of Chromaggus","1","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","152104","760520","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","77","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","17","7","0","0","0","0","0","0","0","0","60" +"19348","-1","","","","","Red Dragonscale Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84402","422012","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","2787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","17","6","6","0","0","0","0","0","0","0","60" +"19349","-1","","","","","Elementium Reinforced Bulwark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98056","490283","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","2893","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","23","0","0","0","0","0","0","0","0","0","60" +"19350","-1","","","","","Heartstriker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104609","523048","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","9","0","0","0","0","0","0","0","0","0","60" +"19351","-1","","","","","Maladath, Runed Blade of the Black Flight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","139989","699948","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","75","-1","0","0","86","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19352","-1","","","","","Chromatically Tempered Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","158929","794646","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","77","-1","0","0","106","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","14","7","0","0","0","0","0","0","0","60" +"19353","-1","","","","","Drake Talon Cleaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180812","904062","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","75","-1","0","0","199","0","0","0","0","300","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","17","0","0","0","0","0","0","0","0","60" +"19354","-1","","","","","Draconic Avenger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135086","675430","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","71","-1","0","0","174","0","0","0","0","262","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","21","18","0","0","0","0","0","0","0","0","60" +"19355","-1","","","","","Shadow Wing Focus Staff","1","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164835","824178","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","40","22","17","0","0","0","0","0","0","0","60" +"19356","-1","","","","","Staff of the Shadow Flame","1","0","-21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","221750","1108750","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","81","-1","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","29","24","18","0","0","0","0","0","0","0","60" +"19357","-1","","","","","Herald of Woe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","166093","830469","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","75","-1","0","0","199","0","0","0","0","300","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","20","17","22","0","0","0","0","0","0","60" +"19358","-1","","","","","Draconic Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","130638","653192","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","27","19","0","0","0","0","0","0","0","0","60" +"19360","-1","The Hand of Nefarius","","","","Lok'amir il Romathis","1","0","-21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","180116","900581","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","81","-1","0","0","92","0","0","0","0","172","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","18","8","10","0","0","0","0","0","0","0","60" +"19361","-1","","","","","Ashjre'thul, Crossbow of Smiting","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111546","557734","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","77","-1","0","0","124","0","0","0","0","186","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"19362","-1","","","","","Doom's Edge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","106098","530494","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","70","-1","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","9","7","0","0","0","0","0","0","0","60" +"19363","-1","","","","","Crul'shorukh, Edge of Chaos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","182148","910743","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","81","-1","0","0","101","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19364","-1","The initials A.L. are etched on the hilt.","","","","Ashkandi, Greatsword of the Brotherhood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","228517","1142587","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","0","0","229","0","0","0","0","344","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","0","0","0","0","0","0","0","0","0","60" +"19365","-1","","","","","Claw of the Black Drake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","136928","684643","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","7","0","0","0","0","0","0","0","0","60" +"19366","-1","","","","","Master Dragonslayer's Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"19367","-1","","","","","Dragon's Touch","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103461","517308","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","75","-1","0","0","107","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","12","7","0","0","0","0","0","0","0","0","60" +"19368","-1","","","","","Dragonbreath Hand Cannon","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106574","532872","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","75","-1","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","14","7","0","0","0","0","0","0","0","0","60" +"19369","-1","","","","","Gloves of Rapid Evolution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25870","129350","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","32","12","0","0","0","0","0","0","0","60" +"19370","-1","","","","","Mantle of the Blackwing Cabal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38944","194720","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19371","-1","","","","","Pendant of the Fallen Dragon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19372","-1","","","","","Helm of Endless Rage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41178","205894","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","26","29","0","0","0","0","0","0","0","60" +"19373","-1","","","","","Black Brood Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65375","326877","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","357","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","15","12","0","0","0","0","0","0","0","60" +"19374","-1","","","","","Bracers of Arcane Accuracy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26268","131344","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19375","-1","","","","","Mish'undare, Circlet of the Mind Flayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58442","292214","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","9","15","0","0","0","0","0","0","0","60" +"19376","-1","","","","","Archimtiros' Ring of Reckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111528","446112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","28","0","0","0","0","0","0","0","0","60" +"19377","-1","","","","","Prestor's Talisman of Connivery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105328","421315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","30","0","0","0","0","0","0","0","0","0","60" +"19378","-1","The threading is unlike anything you have ever seen. It appears metallic in origin.","","","","Cloak of the Brood Lord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59115","295575","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","10","0","0","0","0","0","0","0","0","60" +"19379","-1","A silver liquid flows within the impenetrable ebony shell. The item feels pure. It radiates an essence of extreme power.","","","","Neltharion's Tear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","205863","823454","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19380","-1","The metal is warm to the touch. The links connecting the belt together appear to be fashioned out of Elementium.","","","","Therazane's Link","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59561","297806","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","12","22","0","0","0","0","0","0","0","60" +"19381","-1","","","","","Boots of the Shadow Flame","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74734","373670","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","0","0","0","0","0","0","0","0","0","60" +"19382","-1","Flawless. Indestructible. You cannot comprehend the craftsmanship involved with the creation of this ring.","","","","Pure Elementium Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128280","513121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","10","9","0","0","0","0","0","0","0","60" +"19383","-1","","","","","Master Dragonslayer's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128862","515451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","24","0","0","0","0","0","0","0","0","60" +"19384","-1","","","","","Master Dragonslayer's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","130616","522464","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","0","0","0","0","0","0","0","0","0","60" +"19385","-1","","","","","Empowered Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61990","309954","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","24","12","0","0","0","0","0","0","0","60" +"19386","-1","","","","","Elementium Threaded Cloak","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46661","233309","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19387","-1","","","","","Chromatic Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46826","234130","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","20","19","0","0","0","0","0","0","0","60" +"19388","-1","","","","","Angelista's Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31329","156649","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","13","17","0","0","0","0","0","0","0","60" +"19389","-1","The hides of several different dragon flights appear to be stitched together, comprising the top of the shoulders.","","","","Taut Dragonhide Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58954","294771","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","0","0","0","0","0","0","0","0","0","60" +"19390","-1","A cold chill passes through your spine as you place your hands on these gloves. They appear to be made from the skin of whelplings - a lot of whelplings.","","","","Taut Dragonhide Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39443","197217","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","0","0","0","0","0","0","0","0","60" +"19391","-1","","","","","Shimmering Geta","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47496","237481","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","13","0","0","0","0","0","0","0","0","60" +"19392","-1","","","","","Girdle of the Fallen Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31776","158883","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","15","17","13","10","0","0","0","0","0","60" +"19393","-1","","","","","Primalist's Linked Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47833","239169","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","16","15","13","0","0","0","0","0","0","60" +"19394","-1","","","","","Drake Talon Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39395","196975","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","20","17","0","0","0","0","0","0","0","60" +"19395","-1","","","","","Rejuvenating Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","103103","412413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19396","-1","The flesh from different dragon flights has been sewn together to make this belt.","","","","Taut Dragonhide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33084","165421","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","0","0","0","0","0","0","0","0","0","60" +"19397","-1","","","","","Ring of Blackrock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","107438","429754","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19398","-1","","","","","Cloak of Firemaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40003","200015","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"19399","-1","","","","","Black Ash Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53541","267707","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","17","21","0","0","0","0","0","0","0","60" +"19400","-1","","","","","Firemaw's Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27603","138017","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","12","0","0","0","0","0","0","0","0","60" +"19401","-1","","","","","Primalist's Linked Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83116","415584","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","12","22","0","0","0","0","0","0","0","60" +"19402","-1","","","","","Legguards of the Fallen Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55609","278048","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","22","17","22","0","0","0","0","0","0","60" +"19403","-1","","","","","Band of Forced Concentration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","105328","421312","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19404","-1","","","","","Monster - Mace, The Hand of Nefarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19405","-1","","","","","Malfurion's Blessed Bulwark","1","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70277","351387","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","22","0","0","0","0","0","0","0","0","60" +"19406","-1","","","","","Drake Fang Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19407","-1","","","","","Ebony Flame Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28312","141561","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","17","0","0","0","0","0","0","0","0","60" +"19422","-1","","","","","Darkmoon Faire Fortune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19423","-1","Your fortune awaits you in Eastvale.","","","","Sayge's Fortune #23","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7937","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19424","-1","Your fortune awaits you inside the Deadmines.","","","","Sayge's Fortune #24","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7938","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19425","-1","","","","","Mysterious Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19426","-1","","","","","Orb of the Darkmoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19427","-1","","","","","1500 Test sword 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19428","-1","","","","","2900 Test sword 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","84","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19430","-1","","","","","Shroud of Pure Thought","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42919","214596","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","10","0","0","0","0","0","0","0","0","60" +"19431","-1","","","","","Styleen's Impeding Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","103117","412471","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19432","-1","","","","","Circle of Applied Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","147286","589145","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","22","9","0","0","0","0","0","0","0","60" +"19433","-1","","","","","Emberweave Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80659","403299","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","35","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","17","12","0","0","0","0","0","0","0","60" +"19434","-1","","","","","Band of Dark Dominion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80863","323454","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","12","0","0","0","0","0","0","0","0","60" +"19435","-1","","","","","Essence Gatherer","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79598","397992","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","70","-1","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","5","0","0","0","0","0","0","0","0","60" +"19436","-1","","","","","Cloak of Draconic Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31956","159780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","16","4","0","0","0","0","0","0","0","60" +"19437","-1","","","","","Boots of Pure Thought","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32075","160379","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","12","8","0","0","0","0","0","0","0","60" +"19438","-1","","","","","Ringo's Blizzard Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33805","169028","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","11","0","0","0","0","0","0","0","0","60" +"19439","-1","","","","","Interlaced Shadow Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56552","282763","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","30","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","0","0","0","0","0","0","0","0","0","60" +"19440","-1","","","","","Powerful Anti-Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19441","-1","","","","","Huge Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19442","-1","","","","","Formula: Powerful Anti-Venom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19443","-1","Your fortune awaits you inside Wailing Caverns.","","","","Sayge's Fortune #25","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7944","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19444","-1","","","","","Formula: Enchant Weapon - Strength","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19445","-1","","","","","Formula: Enchant Weapon - Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19446","-1","","","","","Formula: Enchant Bracer - Mana Regeneration","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19447","-1","","","","","Formula: Enchant Bracer - Healing","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","333","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19448","-1","","","","","Formula: Enchant Weapon - Mighty Spirit","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19449","-1","","","","","Formula: Enchant Weapon - Mighty Intellect","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19450","-1","","","","","A Jubling's Tiny Home","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19451","-1","Time is nothing; timing is everything.","","","","Sayge's Fortune #26","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19452","-1","Your fortune awaits you outside Palemane Rock.","","","","Sayge's Fortune #27","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7945","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19453","-1","Hunters who specialize in survival are not guaranteed to survive.","","","","Sayge's Fortune #28","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19454","-1","Look out!","","","","Sayge's Fortune #29","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19455","-1","","","","","3500 Test 2h Axe 70 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132637","663185","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19456","-1","","","","","2900 Test sword 80 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167843","839219","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","80","-1","0","0","125","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19457","-1","","","","","1500 Test sword 80 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167843","839219","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","80","-1","0","0","64","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19462","-1","","","","","Unhatched Jubling Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19482","-1","","","","","LeCraft Rabbit Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19483","-1","The How to Guide On Dismantling the Stormpike - By Drek'Thar","","","","Peeling the Onion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2771","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19484","-1","Tales of Stormpike Glory - By Vanndar Stormpike","","","","The Frostwolf Artichoke","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2779","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19485","-1","","","","","Monster - Item, Fish - Blue Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19486","-1","","","","","Monster - Item, Fish - Green Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19487","-1","","","","","Monster - Item, Fish - Orange Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19488","-1","","","","","Monster - Item, Fish - Purple Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19489","-1","","","","","3300 Test Crossbow 63 blue","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41191","205958","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","74","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","0","0","0","0","0","0","0","0","0","0","60" +"19490","-1","","","","","2800 Test Bow 63 Blue","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41191","205958","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","60" +"19491","-1","","","","","Amulet of the Darkmoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","10","10","0","0","0","0","0","0","0","60" +"19502","-1","","","","","2200 Test sword 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","63","-1","0","0","63","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19503","-1","","","","","2200 Test sword 80 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167843","839219","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","80","-1","0","0","95","0","0","0","0","177","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19504","-1","","","","","2200 Test sword 70 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103041","515207","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","70","-1","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19505","-1","","","","","Warsong Battle Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19506","-1","","","","","Silverwing Battle Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19507","-1","","","","","Inquisitor's Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1701","8507","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","0","0","0","0","0","0","0","0","0","36" +"19508","-1","","","","","Branded Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1423","7116","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","36" +"19509","-1","","","","","Dusty Mail Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2583","12917","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","0","0","0","0","0","0","0","0","0","36" +"19510","-1","","","","","Legionnaire's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","11","8","0","0","0","0","0","0","0","58" +"19511","-1","","","","","Legionnaire's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","9","6","0","0","0","0","0","0","0","48" +"19512","-1","","","","","Legionnaire's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","5","0","0","0","0","0","0","0","38" +"19513","-1","","","","","Legionnaire's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","28" +"19514","-1","","","","","Protector's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","11","8","0","0","0","0","0","0","0","58" +"19515","-1","","","","","Protector's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","5","0","0","0","0","0","0","0","38" +"19516","-1","","","","","Protector's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","9","6","0","0","0","0","0","0","0","48" +"19517","-1","","","","","Protector's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","28" +"19518","-1","","","","","Advisor's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","58" +"19519","-1","","","","","Advisor's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","48" +"19520","-1","","","","","Advisor's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","38" +"19521","-1","","","","","Advisor's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","28" +"19522","-1","","","","","Lorekeeper's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","58" +"19523","-1","","","","","Lorekeeper's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","48" +"19524","-1","","","","","Lorekeeper's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","38" +"19525","-1","","","","","Lorekeeper's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","28" +"19526","-1","","","","","Battle Healer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18116","90580","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","8","0","0","0","0","0","0","0","0","58" +"19527","-1","","","","","Battle Healer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9631","48159","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","48" +"19528","-1","","","","","Battle Healer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4780","23904","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","38" +"19529","-1","","","","","Battle Healer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2122","10613","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","4","0","0","0","0","0","0","0","0","28" +"19530","-1","","","","","Caretaker's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17098","85492","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","8","0","0","0","0","0","0","0","0","58" +"19531","-1","","","","","Caretaker's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10048","50242","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","48" +"19532","-1","","","","","Caretaker's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4986","24934","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","38" +"19533","-1","","","","","Caretaker's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2154","10772","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","4","0","0","0","0","0","0","0","0","28" +"19534","-1","","","","","Scout's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","58" +"19535","-1","","","","","Scout's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","8","0","0","0","0","0","0","0","0","48" +"19536","-1","","","","","Scout's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","7","0","0","0","0","0","0","0","0","38" +"19537","-1","","","","","Scout's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","28" +"19538","-1","","","","","Sentinel's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18750","75000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","58" +"19539","-1","","","","","Sentinel's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","8","0","0","0","0","0","0","0","0","48" +"19540","-1","","","","","Sentinel's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11250","45000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","7","0","0","0","0","0","0","0","0","38" +"19541","-1","","","","","Sentinel's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","28" +"19542","-1","","","","","Scout's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","59534","297673","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19543","-1","","","","","Scout's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34982","174910","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19544","-1","","","","","Scout's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17358","86791","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","43","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19545","-1","","","","","Scout's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6969","34845","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19546","-1","","","","","Sentinel's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","56143","280715","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19547","-1","","","","","Sentinel's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32996","164981","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19548","-1","","","","","Sentinel's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16376","81882","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","43","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19549","-1","","","","","Sentinel's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7074","35372","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19550","-1","","","","","Legionnaire's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54922","274611","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19551","-1","","","","","Legionnaire's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32156","160783","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19552","-1","","","","","Legionnaire's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15899","79498","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","43","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19553","-1","","","","","Legionnaire's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6843","34217","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19554","-1","","","","","Protector's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54922","274611","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19555","-1","","","","","Protector's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32156","160783","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19556","-1","","","","","Protector's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15899","79498","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","43","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19557","-1","","","","","Protector's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7285","36427","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19558","-1","","","","","Outrider's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44011","220059","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"19559","-1","","","","","Outrider's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24117","120587","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","3","0","0","0","0","0","0","0","0","48" +"19560","-1","","","","","Outrider's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11924","59624","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","3","0","0","0","0","0","0","0","0","38" +"19561","-1","","","","","Outrider's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5132","25663","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","33","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","28" +"19562","-1","","","","","Outrunner's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41191","205958","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"19563","-1","","","","","Outrunner's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24117","120587","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","3","0","0","0","0","0","0","0","0","48" +"19564","-1","","","","","Outrunner's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11924","59624","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","3","0","0","0","0","0","0","0","0","38" +"19565","-1","","","","","Outrunner's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5132","25663","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","33","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","28" +"19566","-1","","","","","Advisor's Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70171","350857","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","0","0","0","0","0","0","0","0","58" +"19567","-1","","","","","Advisor's Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40195","200979","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","11","0","0","0","0","0","0","0","0","48" +"19568","-1","","","","","Advisor's Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19874","99373","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","9","0","0","0","0","0","0","0","0","38" +"19569","-1","","","","","Advisor's Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8554","42771","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","7","0","0","0","0","0","0","0","0","28" +"19570","-1","","","","","Lorekeeper's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71229","356148","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","0","0","0","0","0","0","0","0","58" +"19571","-1","","","","","Lorekeeper's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41856","209282","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","11","0","0","0","0","0","0","0","0","48" +"19572","-1","","","","","Lorekeeper's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20772","103864","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","9","0","0","0","0","0","0","0","0","38" +"19573","-1","","","","","Lorekeeper's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8974","44870","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","7","0","0","0","0","0","0","0","0","28" +"19574","-1","","","","","Strength of Mugamba","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","7","0","0","0","0","0","0","0","0","0" +"19575","-1","","","","","Strength of Mugamba","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","7","10","0","0","0","0","0","0","0","0" +"19576","-1","","","","","Strength of Mugamba","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","13","0","0","0","0","0","0","0","0" +"19577","-1","","","","","Rage of Mugamba","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","8","13","0","0","0","0","0","0","0","0" +"19578","-1","","","","","Berserker Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17699","88497","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","8","11","0","0","0","0","0","0","0","60" +"19579","-1","","","","","Heathen's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19580","-1","","","","","Berserker Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9635","48175","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","7","9","0","0","0","0","0","0","0","50" +"19581","-1","","","","","Berserker Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4945","24727","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","6","8","0","0","0","0","0","0","0","40" +"19582","-1","","","","","Windtalker's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24220","121103","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","7","8","0","0","0","0","0","0","0","60" +"19583","-1","","","","","Windtalker's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14452","72262","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","6","7","0","0","0","0","0","0","0","50" +"19584","-1","","","","","Windtalker's Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7418","37090","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","5","6","0","0","0","0","0","0","0","40" +"19585","-1","","","","","Heathen's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","6","7","8","0","0","0","0","0","0","0" +"19586","-1","","","","","Heathen's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","9","10","0","0","0","0","0","0","0" +"19587","-1","","","","","Forest Stalker's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20183","100919","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","11","8","0","0","0","0","0","0","0","60" +"19588","-1","","","","","Hero's Brand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","6","9","10","0","0","0","0","0","0","0" +"19589","-1","","","","","Forest Stalker's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12043","60218","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","9","7","0","0","0","0","0","0","0","50" +"19590","-1","","","","","Forest Stalker's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6181","30909","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","8","6","0","0","0","0","0","0","0","40" +"19591","-1","","","","","The Eye of Zuldazar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","10","6","0","0","0","0","0","0","0","0" +"19592","-1","","","","","The Eye of Zuldazar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","10","6","0","0","0","0","0","0","0","0" +"19593","-1","","","","","The Eye of Zuldazar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","13","8","0","0","0","0","0","0","0","0" +"19594","-1","","","","","The All-Seeing Eye of Zuldazar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","13","8","0","0","0","0","0","0","0","0" +"19595","-1","","","","","Dryad's Wrist Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17509","87549","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","7","8","0","0","0","0","0","0","0","60" +"19596","-1","","","","","Dryad's Wrist Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10485","52427","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","6","7","0","0","0","0","0","0","0","50" +"19597","-1","","","","","Dryad's Wrist Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5401","27006","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","5","6","0","0","0","0","0","0","0","40" +"19598","-1","","","","","Pebble of Kajaro","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","7","0","0","0","0","0","0","0","0","0" +"19599","-1","","","","","Pebble of Kajaro","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","7","0","0","0","0","0","0","0","0" +"19600","-1","","","","","Pebble of Kajaro","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","8","8","0","0","0","0","0","0","0","0" +"19601","-1","","","","","Jewel of Kajaro","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","8","8","0","0","0","0","0","0","0","0" +"19602","-1","","","","","Kezan's Taint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","0" +"19603","-1","","","","","Kezan's Taint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","0","0","0","0","0","0","0","0","0" +"19604","-1","","","","","Kezan's Taint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","8","0","0","0","0","0","0","0","0","0" +"19605","-1","","","","","Kezan's Unstoppable Taint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","8","0","0","0","0","0","0","0","0","0" +"19606","-1","","","","","Vision of Voodress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19607","-1","","","","","Vision of Voodress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","8","7","8","0","0","0","0","0","0","0" +"19608","-1","","","","","Vision of Voodress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","10","9","10","0","0","0","0","0","0","0" +"19609","-1","","","","","Unmarred Vision of Voodress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","10","9","10","0","0","0","0","0","0","0" +"19610","-1","","","","","Enchanted South Seas Kelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19611","-1","","","","","Enchanted South Seas Kelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","8","7","8","0","0","0","0","0","0","0" +"19612","-1","","","","","Enchanted South Seas Kelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","10","9","10","0","0","0","0","0","0","0" +"19613","-1","","","","","Pristine Enchanted South Seas Kelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","10","9","10","0","0","0","0","0","0","0" +"19614","-1","","","","","Zandalarian Shadow Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19615","-1","","","","","Zandalarian Shadow Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","6","7","0","0","0","0","0","0","0","0" +"19616","-1","","","","","Zandalarian Shadow Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","6","9","0","0","0","0","0","0","0","0" +"19617","-1","","","","","Zandalarian Shadow Mastery Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","15","6","9","0","0","0","0","0","0","0","0" +"19618","-1","","","","","Maelstrom's Tendril","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19619","-1","","","","","Maelstrom's Tendril","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","6","7","0","0","0","0","0","0","0","0" +"19620","-1","","","","","Maelstrom's Tendril","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","6","9","0","0","0","0","0","0","0","0" +"19621","-1","","","","","Maelstrom's Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","15","6","9","0","0","0","0","0","0","0","0" +"19622","-1","","","","","1800 Test Dagger 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","63","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19623","-1","","","","","Monster - Mace2H, Horde B01/B01 Orange","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19642","-1","Return to the iCoke redemption vendor to receive a virtual prize","","","","iCoke Prize Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19662","-1","","","","","3500 Test 2h Axe 80 purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209804","1049023","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","80","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19682","-1","","","","","Bloodvine Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25035","125179","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","0","0","0","0","0","0","0","0","0","60" +"19683","-1","","","","","Bloodvine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25129","125649","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","0","0","0","0","0","0","0","0","0","60" +"19684","-1","","","","","Bloodvine Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18915","94579","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","0","0","0","0","0","0","0","0","0","60" +"19685","-1","","","","","Primal Batskin Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31644","158220","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","32","6","0","0","0","0","0","0","0","0","60" +"19686","-1","","","","","Primal Batskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15880","79403","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","60" +"19687","-1","","","","","Primal Batskin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15939","79697","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","7","0","0","0","0","0","0","0","0","60" +"19688","-1","","","","","Blood Tiger Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31993","159965","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","17","16","13","0","0","0","0","0","0","60" +"19689","-1","","","","","Blood Tiger Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24082","120414","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","13","12","10","0","0","0","0","0","0","60" +"19690","-1","","","","","Bloodsoul Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39683","198415","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","9","0","0","0","0","0","0","0","0","60" +"19691","-1","","","","","Bloodsoul Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","150003","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","10","0","0","0","0","0","0","0","0","60" +"19692","-1","","","","","Bloodsoul Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19980","99902","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","0","0","0","0","0","0","0","0","60" +"19693","-1","","","","","Darksoul Breastplate","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24192","120963","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","676","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","32","0","0","0","0","0","0","0","0","0","60" +"19694","-1","","","","","Darksoul Leggings","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24286","121433","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","592","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"19695","-1","","","","","Darksoul Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18285","91427","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","0","0","0","0","0","0","0","0","0","60" +"19696","-1","","","","","Harvest Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19697","-1","","","","","Bounty of the Harvest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19698","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Zulian Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19699","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Razzashi Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19700","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Hakkari Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19701","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Gurubashi Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19702","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Vilebranch Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19703","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Witherbark Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19704","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Sandfury Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19705","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Skullsplitter Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19706","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Bloodscalp Coin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19707","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Red Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19708","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Blue Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19709","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Yellow Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19710","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Orange Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19711","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Green Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19712","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Purple Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19713","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Bronze Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19714","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Silver Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19715","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Gold Hakkari Bijou","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19716","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19717","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Armsplint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19718","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Stanchion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19719","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19720","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19721","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Shawl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19722","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1090","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19723","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Kossack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","385","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19724","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Aegis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","28","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19725","-1","Proof of victory in Arathi Basin","","","","Arathi Resource Crate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19726","-1","","","","","Bloodvine","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19727","-1","Allows an Herbalist to collect Bloodvine from Zul'Gurub Flora when carried.","","","","Blood Scythe","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19742","-1","","","","","Earthborn Kilt TEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23721","118609","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"19743","-1","","","","","Cloaked Hood TEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3381","16907","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"19762","-1","","","","","Monster - Axe, Horde C04 Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19763","-1","","","","","Monster - Shield, Round A01/Buckler Damaged A02Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19764","-1","","","","","Pattern: Bloodvine Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19765","-1","","","","","Pattern: Bloodvine Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19766","-1","","","","","Pattern: Bloodvine Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19767","-1","","","","","Primal Bat Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19768","-1","","","","","Primal Tiger Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19769","-1","","","","","Pattern: Primal Batskin Jerkin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19770","-1","","","","","Pattern: Primal Batskin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19771","-1","","","","","Pattern: Primal Batskin Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19772","-1","","","","","Pattern: Blood Tiger Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19773","-1","","","","","Pattern: Blood Tiger Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19774","-1","","","","","Souldarite","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19775","-1","Sealed tight.","","","","Sealed Azure Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19776","-1","","","","","Plans: Bloodsoul Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19777","-1","","","","","Plans: Bloodsoul Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19778","-1","","","","","Plans: Bloodsoul Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19779","-1","","","","","Plans: Darksoul Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19780","-1","","","","","Plans: Darksoul Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19781","-1","","","","","Plans: Darksoul Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19782","-1","","","","","Presence of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19783","-1","","","","","Syncretist's Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19784","-1","","","","","Death's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19785","-1","","","","","Falcon's Call","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19786","-1","","","","","Vodouisant's Vigilant Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19787","-1","","","","","Presence of Sight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19788","-1","","","","","Hoodoo Hex","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19789","-1","","","","","Prophetic Aura","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19790","-1","","","","","Animist's Caress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19802","-1","","","","","Heart of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8183","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19803","-1","Someone in Booty Bay might be interested.","","","","Brownell's Blue Striped Racer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19804","-1","","","","","Pale Ghoulfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19805","-1","Someone in Booty Bay might be interested.","","","","Keefer's Angelfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19806","-1","Someone in Booty Bay might be interested.","","","","Dezian Queenfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19807","-1","","","","","Speckled Tastyfish","1","14400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19808","-1","","","","","Rockhide Strongfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15556","77783","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","40" +"19809","-1","","","","","2500 Test 2h Axe 60 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59920","299602","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19810","-1","","","","","1000 Test dagger 60 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48120","240602","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","60","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19811","-1","","","","","2500 Test 2h Axe 60 blue (bear)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59304","296524","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19812","-1","","","","","Rune of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19813","-1","The doll resembles a warrior.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19814","-1","The doll resembles a rogue.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19815","-1","The doll resembles a paladin.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19816","-1","The doll resembles a hunter.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19817","-1","The doll resembles a shaman.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19818","-1","The doll resembles a mage.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19819","-1","The doll resembles a warlock.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19820","-1","The doll resembles a priest.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19821","-1","The doll resembles a druid.","","","","Punctured Voodoo Doll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19822","-1","","","","","Zandalar Vindicator's Breastplate","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","738","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","24","15","0","0","0","0","0","0","0","0" +"19823","-1","","","","","Zandalar Vindicator's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","61","1","0","0","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","10","0","0","0","0","0","0","0","0","0" +"19824","-1","","","","","Zandalar Vindicator's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","61","1","0","0","0","0","0","0","0","0","0","0","0","0","304","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","13","13","0","0","0","0","0","0","0","0" +"19825","-1","","","","","Zandalar Freethinker's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","738","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","26","16","7","0","0","0","0","0","0","0" +"19826","-1","","","","","Zandalar Freethinker's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","61","2","0","0","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","12","16","10","0","0","0","0","0","0","0" +"19827","-1","","","","","Zandalar Freethinker's Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","61","2","0","0","0","0","0","0","0","0","0","0","0","0","304","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","12","12","6","0","0","0","0","0","0","0" +"19828","-1","","","","","Zandalar Augur's Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","15","0","0","0","0","0","0","0","0","0" +"19829","-1","","","","","Zandalar Augur's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","61","64","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","10","0","0","0","0","0","0","0","0","0" +"19830","-1","","","","","Zandalar Augur's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","61","64","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","11","0","0","0","0","0","0","0","0","0" +"19831","-1","","","","","Zandalar Predator's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","15","11","0","0","0","0","0","0","0","0" +"19832","-1","","","","","Zandalar Predator's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","61","4","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","20","12","9","0","0","0","0","0","0","0" +"19833","-1","","","","","Zandalar Predator's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","61","4","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","10","0","0","0","0","0","0","0","0","0" +"19834","-1","","","","","Zandalar Madcap's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","0","0","0","0","0","0","0","0","0","0" +"19835","-1","","","","","Zandalar Madcap's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","61","8","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","12","12","0","0","0","0","0","0","0","0" +"19836","-1","","","","","Zandalar Madcap's Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","61","8","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","14","9","0","0","0","0","0","0","0","0" +"19837","-1","","","","","Test Ranged Slot","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48542","242710","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","65","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","0" +"19838","-1","","","","","Zandalar Haruspex's Tunic","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","23","15","0","0","0","0","0","0","0","0" +"19839","-1","","","","","Zandalar Haruspex's Belt","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","61","1024","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","12","10","0","0","0","0","0","0","0","0" +"19840","-1","","","","","Zandalar Haruspex's Bracers","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","61","1024","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","11","9","0","0","0","0","0","0","0","0" +"19841","-1","","","","","Zandalar Confessor's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","15","11","0","0","0","0","0","0","0","0" +"19842","-1","","","","","Zandalar Confessor's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","61","16","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","12","12","0","0","0","0","0","0","0","0" +"19843","-1","","","","","Zandalar Confessor's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","61","16","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","12","10","0","0","0","0","0","0","0","0" +"19844","-1","","","","","Zandalar Illusionist's Robe DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35388","176944","1","1","1","32784","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","23","0","0","0","0","0","0","0","0","0" +"19845","-1","","","","","Zandalar Illusionist's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","61","128","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","13","10","0","0","0","0","0","0","0","0" +"19846","-1","","","","","Zandalar Illusionist's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","61","128","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","11","9","0","0","0","0","0","0","0","0" +"19847","-1","","","","","Zandalar Demoniac's Robe DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32372","161860","1","1","1","32784","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","0","0","0","0","0","0","0","0","0","0" +"19848","-1","","","","","Zandalar Demoniac's Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","61","256","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","0","0","0","0","0","0","0","0","0" +"19849","-1","","","","","Zandalar Demoniac's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","61","256","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","19","0","0","0","0","0","0","0","0","0" +"19850","-1","","","","","Uther's Tribute","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19851","-1","","","","","Grom's Tribute","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19852","-1","","","","","Ancient Hakkari Manslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98086","490433","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","68","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19853","-1","","","","","Gurubashi Dwarf Destroyer","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73837","369185","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","76","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"19854","-1","","","","","Zin'rokh, Destroyer of Worlds","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","123502","617513","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","68","-1","0","0","196","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","28","0","0","0","0","0","0","0","0","0","60" +"19855","-1","","","","","Bloodsoaked Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39665","198329","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","674","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","21","0","0","0","0","0","0","0","0","60" +"19856","-1","","","","","The Eye of Hakkar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48628","194513","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19857","-1","","","","","Cloak of Consumption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29966","149834","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","0","0","0","0","0","0","0","0","0","60" +"19858","-1","","","","","Zandalar Honor Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19859","-1","","","","","Fang of the Faceless","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100605","503025","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","68","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19861","-1","","","","","Touch of Chaos","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75990","379951","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","68","-1","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19862","-1","","","","","Aegis of the Blood God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65077","325385","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","2575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19863","-1","","","","","Primalist's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","61286","245144","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","8","0","0","0","0","0","0","0","0","60" +"19864","-1","","","","","Bloodcaller","1","0","-8.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","102408","512040","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","68","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","12","0","0","0","0","0","0","0","0","60" +"19865","-1","Forged in...","","","","Warblade of the Hakkari","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","102760","513804","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","461","0","0","0","1700","0","0","0","68","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19866","-1","The seething flames of hatred.","","","","Warblade of the Hakkari","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86994","434972","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","461","0","0","0","1700","0","0","0","66","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19867","-1","","","","","Bloodlord's Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87323","436616","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","66","-1","0","0","64","0","0","0","0","119","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19868","-1","","","","","Mandokir's Sting DEPRECATED","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65739","328695","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","66","-1","0","0","90","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19869","-1","","","","","Blooddrenched Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21051","105259","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","0","0","0","0","0","0","0","0","0","60" +"19870","-1","","","","","Hakkari Loa Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25356","126784","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","6","6","0","0","0","0","0","0","0","60" +"19871","-1","","","","","Talisman of Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50287","201151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19872","-1","","","","","Swift Razzashi Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19873","-1","","","","","Overlord's Crimson Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","48660","194642","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","10","8","0","0","0","0","0","0","0","60" +"19874","-1","","","","","Halberd of Smiting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112009","560047","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19875","-1","","","","","Bloodstained Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38739","193698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","0","0","0","0","0","0","0","0","60" +"19876","-1","","","","","Soul Corrupter's Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85311","341245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","8","10","0","0","0","0","0","0","0","60" +"19877","-1","","","","","Animist's Leggings","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43354","216772","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","18","15","0","0","0","0","0","0","0","60" +"19878","-1","","","","","Bloodsoaked Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26107","130535","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","16","11","0","0","0","0","0","0","0","60" +"19879","-1","","","","","Alex's Test Beatdown Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128801","644009","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19880","-1","","","","","Gurubashi Head Collection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19881","-1","","","","","Channeler's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19882","-1","","","","","The Hexxer's Head","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19883","-1","","","","","Sacred Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19884","-1","","","","","Jin'do's Judgement","1","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107909","539549","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","66","-1","0","0","165","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","10","10","0","0","0","0","0","0","0","0","60" +"19885","-1","","","","","Jin'do's Evil Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","44203","176815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","6","5","0","0","0","0","0","0","0","60" +"19886","-1","","","","","The Hexxer's Cover","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24979","124895","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","60" +"19887","-1","","","","","Bloodstained Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50147","250735","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","15","11","0","0","0","0","0","0","0","60" +"19888","-1","","","","","Overlord's Embrace","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25165","125826","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19889","-1","","","","","Blooddrenched Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42099","210498","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","35","15","0","0","0","0","0","0","0","0","60" +"19890","-1","","","","","Jin'do's Hexxer","1","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88292","441460","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","66","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","6","0","0","0","0","0","0","0","0","60" +"19891","-1","","","","","Jin'do's Bag of Whammies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63628","254512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19892","-1","","","","","Animist's Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31925","159628","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","9","0","0","0","0","0","0","0","60" +"19893","-1","","","","","Zanzil's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55355","221421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","60" +"19894","-1","","","","","Bloodsoaked Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17152","85764","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","460","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","14","0","0","0","0","0","0","0","0","60" +"19895","-1","","","","","Bloodtinged Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34428","172142","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","60" +"19896","-1","","","","","Thekal's Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85949","429749","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","463","0","0","0","2200","0","0","0","65","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19897","-1","","","","","Betrayer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25878","129394","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","12","8","0","0","0","0","0","0","0","60" +"19898","-1","","","","","Seal of Jin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55035","220141","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","466","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19899","-1","","","","","Ritualistic Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28009","140045","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","14","13","0","0","0","0","0","0","0","60" +"19900","-1","Bears the mark of Jin.","","","","Zulian Stone Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87868","439341","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","0","0","0","0","0","0","0","0","0","60" +"19901","-1","","","","","Zulian Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70566","352833","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","68","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19902","-1","","","","","Swift Zulian Tiger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19903","-1","","","","","Fang of Venoxis","1","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","81895","409477","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","65","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","8","6","0","0","0","0","0","0","0","0","60" +"19904","-1","","","","","Runed Bloodstained Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49325","246625","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","19","0","0","0","0","0","0","0","0","60" +"19905","-1","","","","","Zanzil's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","45253","181012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","0","0","0","0","0","0","0","0","0","60" +"19906","-1","","","","","Blooddrenched Footpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26969","134847","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","10","0","0","0","0","0","0","0","0","60" +"19907","-1","","","","","Zulian Tigerhide Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21655","108275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","13","10","0","0","0","0","0","0","0","0","60" +"19908","-1","","","","","Sceptre of Smiting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62589","312948","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","65","-1","0","0","77","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19909","-1","","","","","Will of Arlokk","1","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104707","523538","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","65","-1","0","0","147","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","19","15","0","0","0","0","0","0","0","60" +"19910","-1","","","","","Arlokk's Grasp","1","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","84070","420354","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","463","0","0","0","1500","0","0","0","65","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19911","-1","","","","","Whipweed Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19912","-1","","","","","Overlord's Onyx Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43548","174192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","11","0","0","0","0","0","0","0","0","0","60" +"19913","-1","","","","","Bloodsoaked Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22142","110711","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","8","0","0","0","0","0","0","0","0","60" +"19914","-1","","","","","Panther Hide Sack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19915","-1","","","","","Zulian Defender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48826","244133","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","2312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","9","8","0","0","0","0","0","0","0","60" +"19916","-1","","","","","Monster - Mace, Standard Serpent Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19917","-1","","","","","Monster - Wand, Horde A01 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19918","-1","","","","","Jeklik's Crusher","1","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111003","555015","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","65","-1","0","0","177","0","0","0","0","266","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19919","-1","","","","","Bloodstained Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31646","158234","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","10","10","0","0","0","0","0","0","0","60" +"19920","-1","","","","","Primalist's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","56037","224151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","8","0","0","0","0","0","0","0","0","60" +"19921","-1","","","","","Zulian Hacker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60951","304758","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","4990","71","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19922","-1","","","","","Arlokk's Hoodoo Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63655","254621","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19923","-1","","","","","Jeklik's Opaline Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44030","176121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19924","-1","","","","","Monster - Dagger, Fang Hook Curve Dark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19925","-1","","","","","Band of Jin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43635","174541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","466","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","8","0","0","0","0","0","0","0","0","60" +"19926","-1","","","","","Flowing Ritual Robes DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30047","150236","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","22","14","0","0","0","0","0","0","0","60" +"19927","-1","","","","","Mar'li's Touch","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62348","311742","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","65","-1","0","0","91","0","0","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","3","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","11","6","5","0","0","0","0","0","0","0","60" +"19928","-1","","","","","Animist's Spaulders","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27168","135840","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","12","11","0","0","0","0","0","0","0","60" +"19929","-1","","","","","Bloodtinged Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16834","84173","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","0","0","0","0","0","0","0","60" +"19930","-1","","","","","Mar'li's Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73852","295411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19931","-1","","","","","Gurubashi Mojo Madness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19932","-1","","","","","UNUSED Empowered Mojo Bundle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19933","-1","","","","","Glowing Scorpid Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2080","8320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19934","-1","","","","","Large Scorpid Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1400","5600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19935","-1","","","","","Empty Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19936","-1","","","","","Dried Scorpid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19937","-1","","","","","Small Scorpid Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","780","3120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19938","-1","","","","","Heavy Scorpid Leg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","580","2320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19939","-1","The Iron Blood of Gri'lek.","","","","Gri'lek's Blood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19940","-1","The Razor Sharp Tooth of Renataki.","","","","Renataki's Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19941","-1","Wushoolay's Unkempt Mane.","","","","Wushoolay's Mane","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19942","-1","","","","","Hazza'rah's Dream Thread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19943","-1","More Mojo than any one troll should have.","","","","Massive Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19944","-1","The inscription reads: Fishin's fer sissies -Nat Pagle","","","","Nat Pagle's Fish Terminator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","102729","513645","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","65","-1","0","0","172","0","0","0","0","258","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","19","0","0","0","0","0","0","0","0","60" +"19945","-1","","","","","Lizardscale Eyepatch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30936","154680","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","19","0","0","0","0","0","0","0","0","0","60" +"19946","-1","","","","","Tigule's Harpoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89871","449355","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","68","-1","0","0","154","0","0","0","0","232","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","0","0","0","0","0","0","0","0","0","60" +"19947","-1","The inscription reads: Fer really long castin'.","","","","Nat Pagle's Broken Reel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86528","346112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19948","-1","","","","","Zandalarian Hero Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19949","-1","","","","","Zandalarian Hero Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19950","-1","","","","","Zandalarian Hero Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19951","-1","","","","","Gri'lek's Charm of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19952","-1","","","","","Gri'lek's Charm of Valor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19953","-1","","","","","Renataki's Charm of Beasts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19954","-1","","","","","Renataki's Charm of Trickery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19955","-1","","","","","Wushoolay's Charm of Nature","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19956","-1","","","","","Wushoolay's Charm of Spirits","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19957","-1","","","","","Hazza'rah's Charm of Destruction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19958","-1","","","","","Hazza'rah's Charm of Healing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19959","-1","","","","","Hazza'rah's Charm of Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19960","-1","The crown jewel of killer bees.","","","","Crystalized Honey","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19961","-1","","","","","Gri'lek's Grinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70537","352686","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","68","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19962","-1","","","","","Gri'lek's Carver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88511","442557","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","68","-1","0","0","182","0","0","0","0","274","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19963","-1","","","","","Pitchfork of Madness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91276","456382","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","68","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19964","-1","","","","","Renataki's Soul Conduit","1","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73293","366465","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","68","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19965","-1","","","","","Wushoolay's Poker","1","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73565","367825","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","68","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19966","-1","","","","","Thrice Strung Longbow DEPRECATED","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55377","276888","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","78","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","4","0","0","0","0","0","0","0","0","60" +"19967","-1","","","","","Thoughtblighter","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55576","277880","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","68","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19968","-1","","","","","Fiery Retributer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","74373","371867","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","68","-1","0","0","56","0","0","0","0","105","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","7","0","0","0","0","0","0","0","0","0","60" +"19969","-1","","","","","Nat Pagle's Extreme Anglin' Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3360","16801","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","0" +"19970","-1","It looks like Nat Pagle himself used this.","","","","Arcanite Fishing Pole","1","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2175","10878","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","300","356","20","-1","0","0","42","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19971","-1","","","","","High Test Eternium Fishing Line","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","356","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19972","-1","","","","","Lucky Fishing Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3396","16983","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"19973","-1","","","","","Nat's Measuring Tape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19974","-1","","","","","Mudskunk Lure","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19975","-1","","","","","Zulian Mudskunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19978","-1","","","","","Fishing Tournament!","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2786","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19979","-1","","","","","Hook of the Master Angler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19980","-1","","","","","Monster - Dagger, Ornate Spikey Base Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19981","-1","","","","","Monster - Sword2H, Claymore B01/Broadsword A03 Black Sharpened","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19982","-1","","","","","Duskbat Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9444","47222","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","1535","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","0","0","0","0","0","0","0","0","0","0" +"19983","-1","","","","","Monster - Wand, Horde Demon Skull Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19984","-1","","","","","Ebon Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11893","59469","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","11","0","0","0","0","0","0","0","0","0","0" +"19986","-1","Arrrrrgh!","","","","Pirate's Eye Patch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11376","56881","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","12","0","0","0","0","0","0","0","0","0" +"19987","-1","","","","","Monster - Dagger, Vulture Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19988","-1","","","","","Monster - Mace2H, Horde C01 Steel (Green)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19989","-1","Some secrets are best left unknown.","","","","Tome of Devouring Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19990","-1","A friend in need is a friend without beads.","","","","Blessed Prayer Beads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19991","-1","","","","","Devilsaur Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19992","-1","","","","","Devilsaur Tooth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19993","-1","","","","","Hoodoo Hunting Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56783","283916","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","60" +"19994","-1","","","","","Harvest Fruit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19995","-1","","","","","Harvest Boar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19996","-1","","","","","Harvest Fish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19997","-1","","","","","Harvest Nectar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19998","-1","","","","","Bloodvine Lens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23211","116058","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","0","0","0","0","0","0","0","0","0","60" +"19999","-1","","","","","Bloodvine Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18639","93198","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20000","-1","","","","","Schematic: Bloodvine Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20001","-1","","","","","Schematic: Bloodvine Lens","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20002","-1","","","","","Greater Dreamless Sleep Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"20003","-1","The claws hum with primal energy.","","","","Devilsaur Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31596","157980","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","0","0","0","0","0","0","0","0","0","0" +"20004","-1","","","","","Major Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","53" +"20005","-1","The claws hum with primal energy.","","","","Devilsaur Claws","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31828","159141","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","4","0","0","0","0","0","0","0","0","0","0" +"20006","-1","Forged from pure light.","","","","Circle of Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20007","-1","","","","","Mageblood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20008","-1","","","","","Living Action Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"20009","-1","by Jennre Loresinger... dedicated to Uther Lightbringer","","","","For the Light!","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2787","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20010","-1","by Tolven Warsong... dedicated to Grom Hellscream","","","","The Horde's Hellscream","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2790","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20011","-1","","","","","Recipe: Mageblood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20012","-1","","","","","Recipe: Greater Dreamless Sleep","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20013","-1","","","","","Recipe: Living Action Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20014","-1","","","","","Recipe: Major Troll's Blood Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20015","-1","","","","","Elder Raptor Feathers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1658","6632","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20016","-1","","","","","Trophy Raptor Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3635","14540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20017","-1","","","","","Perfect Courser Antler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20018","-1","","","","","Angerclaw Grizzly Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20019","-1","","","","","Tooth of Morphaz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20020","-1","The crate contains carefully packed antlers and hides.","","","","Bundle of Goods","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20021","-1","","","","","Gold Pirate Earring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20022","-1","","","","","Azure Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20023","-1","The text is written in an arcane language.","","","","Encoded Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20024","-1","","","","","Putrid Bile Duct","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20025","-1","","","","","Blood of Morphaz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20026","-1","","","","","Rotting Flesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20027","-1","","","","","Healthy Courser Gland","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20028","-1","","","","","Glittering Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20029","-1","","","","","Enchanted Coral","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20030","-1","It looks happy.","","","","Pet Rock","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1580","6321","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20031","-1","","","","","Essence Mango","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"20032","-1","","","","","Flowing Ritual Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32257","161285","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","23","15","0","0","0","0","0","0","0","60" +"20033","-1","","","","","Zandalar Demoniac's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","35","0","0","0","0","0","0","0","0","0","0" +"20034","-1","","","","","Zandalar Illusionist's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","23","0","0","0","0","0","0","0","0","0" +"20035","-1","Diabolical runes adorn the blade.","","","","Glacial Spike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30651","153257","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","52","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","0" +"20036","-1","Unpredictability leads to both victory and death.","","","","Fire Ruby","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20037","-1","Arcane crystals are best utilized for the purposes of a mage.","","","","Arcane Crystal Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","0","0","0","0","0","0","0","0","0","0" +"20038","-1","","","","","Mandokir's Sting","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64972","324862","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","66","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","11","8","0","0","0","0","0","0","0","0","60" +"20039","-1","","","","","Dark Iron Boots","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31709","158548","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","866","0","0","0","0","0","0","0","0","0","0","544","0","28","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20040","-1","","","","","Plans: Dark Iron Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20041","-1","","","","","Highlander's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11352","56764","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","509","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","58" +"20042","-1","","","","","Highlander's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11394","56972","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","509","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","15","6","10","0","0","0","0","0","0","0","58" +"20043","-1","","","","","Highlander's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17613","88066","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","509","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20044","-1","","","","","Highlander's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17677","88386","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","509","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","17","0","0","0","0","0","0","0","0","58" +"20045","-1","","","","","Highlander's Leather Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14784","73921","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","509","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","0","0","0","0","0","0","0","0","0","58" +"20046","-1","","","","","Highlander's Lizardhide Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14836","74180","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","509","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","17","0","0","0","0","0","0","0","0","58" +"20047","-1","","","","","Highlander's Cloth Girdle","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11911","59557","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","509","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","58" +"20048","-1","","","","","Highlander's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17931","89656","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","509","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","14","12","12","0","0","0","0","0","0","0","58" +"20049","-1","","","","","Highlander's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17995","89975","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","509","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","14","8","12","8","0","0","0","0","0","0","58" +"20050","-1","","","","","Highlander's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27206","136031","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","509","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","15","8","0","0","0","0","0","0","0","58" +"20051","-1","","","","","Highlander's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27302","136513","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","509","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","15","8","0","0","0","0","0","0","0","58" +"20052","-1","","","","","Highlander's Leather Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20569","102849","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","509","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","12","0","0","0","0","0","0","0","0","58" +"20053","-1","","","","","Highlander's Lizardhide Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20647","103238","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","509","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","8","8","0","0","0","0","0","0","0","58" +"20054","-1","","","","","Highlander's Cloth Boots","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16582","82910","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","509","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","8","0","0","0","0","0","0","0","0","58" +"20055","-1","","","","","Highlander's Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36867","184337","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","509","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","20","18","17","0","0","0","0","0","0","0","60" +"20056","-1","","","","","Highlander's Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","37009","185045","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","509","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","11","18","10","17","0","0","0","0","0","0","60" +"20057","-1","","","","","Highlander's Plate Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24654","123274","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","509","0","0","65","3","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","20","17","0","0","0","0","0","0","0","60" +"20058","-1","","","","","Highlander's Lamellar Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24748","123744","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","509","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","15","17","10","0","0","0","0","0","0","60" +"20059","-1","","","","","Highlander's Leather Shoulders","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","31894","159473","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","509","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20060","-1","","","","","Highlander's Lizardhide Shoulders","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32012","160061","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","509","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","17","12","12","0","0","0","0","0","0","0","60" +"20061","-1","","","","","Highlander's Epaulets","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25701","128505","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","509","0","0","65","400","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","17","0","0","0","0","0","0","0","0","60" +"20062","-1","","","","","Arathi Basin Enriched Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20063","-1","","","","","Arathi Basin Field Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20064","-1","","","","","Arathi Basin Iron Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20065","-1","","","","","Arathi Basin Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20066","-1","","","","","Arathi Basin Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20067","-1","","","","","Arathi Basin Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20068","-1","","","","","Deathguard's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26353","131769","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","16","4","0","11","5","0","0","0","0","0","0","0","0","60" +"20069","-1","","","","","Ironbark Staff","1","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110199","550995","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","509","0","0","65","-1","0","0","156","0","0","0","0","262","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","4","0","10","19","0","0","0","0","0","0","0","0","60" +"20070","-1","","","","","Sageclaw","1","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88472","442362","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","509","0","0","65","-1","0","0","56","0","0","0","0","105","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","8","0","0","0","0","0","0","0","0","0","60" +"20071","-1","","","","","Talisman of Arathor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10307","41230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"20072","-1","","","","","Defiler's Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10307","41230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"20073","-1","","","","","Cloak of the Honor Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24279","121395","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","16","4","0","11","5","0","0","0","0","0","0","0","0","60" +"20074","-1","","","","","Heavy Crocolisk Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"20075","-1","","","","","Recipe: Heavy Crocolisk Stew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20076","-1","","","","","Zandalar Signet of Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20077","-1","","","","","Zandalar Signet of Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20078","-1","","","","","Zandalar Signet of Serenity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20079","-1","Blessed with the mojo of Zanza!","","","","Spirit of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20080","-1","Blessed with the mojo of Zanza!","","","","Sheen of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20081","-1","Blessed with the mojo of Zanza!","","","","Swiftness of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20082","-1","Woe to those who oppose.","","","","Woestave","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24229","121145","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","52","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"20083","-1","","","","","Hunting Spear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40524","202624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","52","-1","0","0","111","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","0","0","0","0","0","0","0","0","0","0" +"20084","-1","","","","","Hunting Net","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20085","-1","","","","","Arcane Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20086","-1","","","","","Dusksteel Throwing Knife","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","35","1","0","0","0","65","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","4","0","0","0","0","0","0","0","0","0","0","0" +"20087","-1","","","","","Wavethrasher Scales","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20088","-1","","","","","Highlander's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10495","52478","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","4","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","8","0","0","0","0","0","0","0","0","0","48" +"20089","-1","","","","","Highlander's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5208","26040","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","4","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","40" +"20090","-1","","","","","Highlander's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1874","9373","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","4","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","5","0","0","0","0","0","0","0","0","0","28" +"20091","-1","","","","","Highlander's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14859","74297","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","4","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","12","6","0","0","0","0","0","0","0","48" +"20092","-1","","","","","Highlander's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7375","36875","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","4","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","10","3","0","0","0","0","0","0","0","40" +"20093","-1","","","","","Highlander's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2643","13217","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","4","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20094","-1","","","","","Highlander's Cloth Boots","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9974","49873","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","48" +"20095","-1","","","","","Highlander's Cloth Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4949","24749","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","3","0","0","0","0","0","0","0","0","38" +"20096","-1","","","","","Highlander's Cloth Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2138","10692","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","28" +"20097","-1","","","","","Highlander's Cloth Girdle","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6723","33619","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","48" +"20098","-1","","","","","Highlander's Cloth Girdle","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3336","16684","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","4","0","0","0","0","0","0","0","0","38" +"20099","-1","","","","","Highlander's Cloth Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1441","7207","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","3","0","0","0","0","0","0","0","0","28" +"20100","-1","","","","","Highlander's Lizardhide Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12746","63732","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","8","7","0","0","0","0","0","0","0","48" +"20101","-1","","","","","Highlander's Lizardhide Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6325","31628","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","6","5","0","0","0","0","0","0","0","38" +"20102","-1","","","","","Highlander's Lizardhide Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2732","13661","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","5","4","0","0","0","0","0","0","0","28" +"20103","-1","","","","","Highlander's Lizardhide Girdle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8590","42952","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","10","0","0","0","0","0","0","0","0","48" +"20104","-1","","","","","Highlander's Lizardhide Girdle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4262","21314","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","15","0","0","0","0","0","0","0","0","38" +"20105","-1","","","","","Highlander's Lizardhide Girdle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1841","9207","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","12","0","0","0","0","0","0","0","0","28" +"20106","-1","","","","","Highlander's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6946","34732","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","11","4","8","0","0","0","0","0","0","0","48" +"20107","-1","","","","","Highlander's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3201","16008","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","12","6","6","0","0","0","0","0","0","0","40" +"20108","-1","","","","","Highlander's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2075","10375","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","11","4","5","0","0","0","0","0","0","0","28" +"20109","-1","","","","","Highlander's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9787","48938","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","11","7","10","6","0","0","0","0","0","0","48" +"20110","-1","","","","","Highlander's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4857","24287","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","6","8","5","0","0","0","0","0","0","40" +"20111","-1","","","","","Highlander's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3162","15810","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","6","4","6","4","0","0","0","0","0","0","28" +"20112","-1","","","","","Highlander's Leather Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12373","61868","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","11","0","0","0","0","0","0","0","0","48" +"20113","-1","","","","","Highlander's Leather Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6141","30705","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","8","0","0","0","0","0","0","0","0","38" +"20114","-1","","","","","Highlander's Leather Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2652","13264","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","7","0","0","0","0","0","0","0","0","28" +"20115","-1","","","","","Highlander's Leather Girdle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8341","41708","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","48" +"20116","-1","","","","","Highlander's Leather Girdle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4139","20699","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","38" +"20117","-1","","","","","Highlander's Leather Girdle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1788","8941","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","28" +"20118","-1","","","","","Highlander's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10121","50606","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","4","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","48" +"20119","-1","","","","","Highlander's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5022","25114","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","4","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","15","0","0","0","0","0","0","0","0","40" +"20120","-1","","","","","Highlander's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1808","9041","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","4","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","5","12","0","0","0","0","0","0","0","0","28" +"20121","-1","","","","","Highlander's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15417","77086","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","4","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","12","6","0","0","0","0","0","0","0","48" +"20122","-1","","","","","Highlander's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7650","38254","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","4","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","10","3","0","0","0","0","0","0","0","40" +"20123","-1","","","","","Highlander's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2742","13710","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","4","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20124","-1","","","","","Highlander's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7075","35376","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","8","0","0","0","0","0","0","0","0","48" +"20125","-1","","","","","Highlander's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3176","15883","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","40" +"20126","-1","","","","","Highlander's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2058","10294","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","12","5","0","0","0","0","0","0","0","0","28" +"20127","-1","","","","","Highlander's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9711","48558","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","11","10","10","0","0","0","0","0","0","0","48" +"20128","-1","","","","","Highlander's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4820","24102","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","8","0","0","0","0","0","0","0","40" +"20129","-1","","","","","Highlander's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3137","15688","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","6","6","6","0","0","0","0","0","0","0","28" +"20130","-1","Served on the rocks.","","","","Diamond Flask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20131","-1","","","","","Battle Tabard of the Defilers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20132","-1","","","","","Arathor Battle Tabard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20134","-1","","","","","Skyfury Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32440","162201","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","14","13","12","0","0","0","0","0","0","0","0" +"20135","-1","","","","","90 Epic Warrior Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56732","283661","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20136","-1","","","","","90 Epic Warrior Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113877","569387","1","1","1","16","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","1006","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20137","-1","","","","","90 Epic Warrior Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57150","285754","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20138","-1","","","","","90 Epic Warrior Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86044","430222","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","817","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20139","-1","","","","","90 Epic Warrior Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115150","575750","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","880","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20140","-1","","","","","90 Epic Warrior Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88950","444754","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","754","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20141","-1","","","","","90 Epic Warrior Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89269","446345","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","691","0","8","8","8","8","7","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20142","-1","","","","","90 Epic Warrior Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59724","298624","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","5","6","6","6","6","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20143","-1","","","","","90 Epic Warrior Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","18","0","0","0","0","0","0","0","0","0" +"20144","-1","","","","","90 Epic Warrior Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","18","0","0","0","0","0","0","0","0","0" +"20145","-1","","","","","90 Epic Warrior Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","40962","204813","1","1","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20146","-1","","","","","90 Epic Warrior Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205608","1028044","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","101","0","0","0","0","189","0","0","0","0","0","0","3","2","2","2","2","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","10","0","0","0","0","0","0","0","0","60" +"20149","-1","","","","","90 Epic Warrior Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","346622","1733114","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","0","0","271","0","0","0","0","408","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","32","31","0","0","0","0","0","0","0","0","60" +"20150","-1","","","","","Defiler's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16775","83877","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","510","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20151","-1","","","","","Defiler's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9858","49292","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","8","0","0","0","0","0","0","0","0","0","48" +"20152","-1","","","","","Defiler's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1754","8774","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","5","0","0","0","0","0","0","0","0","0","28" +"20153","-1","","","","","Defiler's Chain Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4911","24557","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","40" +"20154","-1","","","","","Defiler's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25657","128288","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","510","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","15","8","0","0","0","0","0","0","0","58" +"20155","-1","","","","","Defiler's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15077","75386","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","12","6","0","0","0","0","0","0","0","48" +"20156","-1","","","","","Defiler's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7682","38412","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","10","3","0","0","0","0","0","0","0","40" +"20157","-1","","","","","Defiler's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2753","13766","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20158","-1","","","","","Defiler's Chain Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","39293","196466","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","510","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","20","18","17","0","0","0","0","0","0","0","60" +"20159","-1","","","","","Defiler's Cloth Boots","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17803","89016","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","510","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","8","0","0","0","0","0","0","0","0","58" +"20160","-1","","","","","Defiler's Cloth Boots","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10461","52306","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","48" +"20161","-1","","","","","Defiler's Cloth Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5191","25955","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","3","0","0","0","0","0","0","0","0","38" +"20162","-1","","","","","Defiler's Cloth Boots","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2242","11211","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","28" +"20163","-1","","","","","Defiler's Cloth Girdle","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12038","60191","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","510","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","58" +"20164","-1","","","","","Defiler's Cloth Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1505","7526","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","3","0","0","0","0","0","0","0","0","28" +"20165","-1","","","","","Defiler's Cloth Girdle","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6423","32116","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","48" +"20166","-1","","","","","Defiler's Cloth Girdle","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3187","15939","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","4","0","0","0","0","0","0","0","0","38" +"20167","-1","","","","","Defiler's Lizardhide Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20727","103637","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","510","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","8","8","0","0","0","0","0","0","0","58" +"20168","-1","","","","","Defiler's Lizardhide Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6023","30118","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","6","5","0","0","0","0","0","0","0","38" +"20169","-1","","","","","Defiler's Lizardhide Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2602","13013","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","5","4","0","0","0","0","0","0","0","28" +"20170","-1","","","","","Defiler's Lizardhide Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12274","61374","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","8","7","0","0","0","0","0","0","0","48" +"20171","-1","","","","","Defiler's Lizardhide Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14029","70149","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","510","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","17","0","0","0","0","0","0","0","0","58" +"20172","-1","","","","","Defiler's Lizardhide Girdle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1802","9011","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","12","0","0","0","0","0","0","0","0","28" +"20173","-1","","","","","Defiler's Lizardhide Girdle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4202","21014","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","15","0","0","0","0","0","0","0","0","38" +"20174","-1","","","","","Defiler's Lizardhide Girdle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8530","42652","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","10","0","0","0","0","0","0","0","0","48" +"20175","-1","","","","","Defiler's Lizardhide Shoulders","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32243","161219","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","510","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","17","12","12","0","0","0","0","0","0","0","60" +"20176","-1","","","","","Defiler's Epaulets","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25889","129445","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","510","0","0","65","400","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","17","0","0","0","0","0","0","0","0","60" +"20177","-1","","","","","Defiler's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11783","58918","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","15","6","10","0","0","0","0","0","0","0","58" +"20178","-1","","","","","Defiler's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2210","11050","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","11","4","5","0","0","0","0","0","0","0","28" +"20179","-1","","","","","Defiler's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6948","34742","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","11","4","8","0","0","0","0","0","0","0","48" +"20180","-1","","","","","Defiler's Lamellar Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3448","17240","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","12","6","6","0","0","0","0","0","0","0","40" +"20181","-1","","","","","Defiler's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17927","89638","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","14","8","12","8","0","0","0","0","0","0","58" +"20182","-1","","","","","Defiler's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3377","16888","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","6","4","6","4","0","0","0","0","0","0","28" +"20183","-1","","","","","Defiler's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5227","26135","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","6","8","5","0","0","0","0","0","0","40" +"20184","-1","","","","","Defiler's Lamellar Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26635","133178","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","15","17","10","0","0","0","0","0","0","60" +"20185","-1","","","","","Defiler's Lamellar Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9632","48164","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","11","7","10","6","0","0","0","0","0","0","48" +"20186","-1","","","","","Defiler's Leather Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20645","103227","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","510","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","12","0","0","0","0","0","0","0","0","58" +"20187","-1","","","","","Defiler's Leather Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5999","29999","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","8","0","0","0","0","0","0","0","0","38" +"20188","-1","","","","","Defiler's Leather Boots","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2663","13318","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","7","0","0","0","0","0","0","0","0","28" +"20189","-1","","","","","Defiler's Leather Boots","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12561","62809","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","11","0","0","0","0","0","0","0","0","48" +"20190","-1","","","","","Defiler's Leather Girdle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14356","71783","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","510","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","7","0","0","0","0","0","0","0","0","0","58" +"20191","-1","","","","","Defiler's Leather Girdle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1795","8977","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","28" +"20192","-1","","","","","Defiler's Leather Girdle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4187","20935","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","38" +"20193","-1","","","","","Defiler's Leather Girdle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8498","42492","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","48" +"20194","-1","","","","","Defiler's Leather Shoulders","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32123","160616","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","510","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20195","-1","","","","","Defiler's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17545","87729","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","510","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","17","0","0","0","0","0","0","0","0","58" +"20196","-1","","","","","Defiler's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10309","51547","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","48" +"20197","-1","","","","","Defiler's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1834","9174","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","5","12","0","0","0","0","0","0","0","0","28" +"20198","-1","","","","","Defiler's Mail Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5134","25672","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","6","15","0","0","0","0","0","0","0","0","40" +"20199","-1","","","","","Defiler's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26818","134092","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","510","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","16","15","8","0","0","0","0","0","0","0","58" +"20200","-1","","","","","Defiler's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7790","38954","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","10","10","3","0","0","0","0","0","0","0","40" +"20201","-1","","","","","Defiler's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2792","13960","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20202","-1","","","","","Defiler's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15869","79348","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","13","12","6","0","0","0","0","0","0","0","48" +"20203","-1","","","","","Defiler's Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","39985","199928","1","1","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","510","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","11","18","10","17","0","0","0","0","0","0","60" +"20204","-1","","","","","Defiler's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11229","56148","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","510","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","58" +"20205","-1","","","","","Defiler's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6599","32999","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","10","8","0","0","0","0","0","0","0","0","48" +"20206","-1","","","","","Defiler's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3275","16378","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","40" +"20207","-1","","","","","Defiler's Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2122","10613","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","3","0","12","5","0","0","0","0","0","0","0","0","28" +"20208","-1","","","","","Defiler's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17098","85492","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","510","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","14","12","12","0","0","0","0","0","0","0","58" +"20209","-1","","","","","Defiler's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4968","24842","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","1","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","8","8","8","0","0","0","0","0","0","0","40" +"20210","-1","","","","","Defiler's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3234","16170","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","6","6","6","0","0","0","0","0","0","0","28" +"20211","-1","","","","","Defiler's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10122","50612","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","8","3","0","11","10","10","0","0","0","0","0","0","0","48" +"20212","-1","","","","","Defiler's Plate Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25508","127540","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","510","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","3","4","0","18","20","17","0","0","0","0","0","0","0","60" +"20213","-1","","","","","Belt of Shrunken Heads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16337","81688","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","23","11","7","0","0","0","0","0","0","0","0" +"20214","-1","","","","","Mindfang","1","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85653","428268","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","510","0","0","65","-1","0","0","56","0","0","0","0","105","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","8","0","0","0","0","0","0","0","0","0","60" +"20215","-1","","","","","Belt of Shriveled Heads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24684","123420","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","18","11","11","0","0","0","0","0","0","0" +"20216","-1","","","","","Belt of Preserved Heads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20645","103225","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","11","0","0","0","0","0","0","0","0" +"20217","-1","","","","","Belt of Tiny Heads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16575","82879","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","13","0","0","0","0","0","0","0","0","0" +"20218","-1","","","","","Faded Hakkari Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14590","72950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","0" +"20219","-1","","","","","Tattered Hakkari Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14641","73206","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","6","0","0","0","0","0","0","0","0","0" +"20220","-1","","","","","Ironbark Staff","1","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100919","504598","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","510","0","0","65","-1","0","0","156","0","0","0","0","262","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","4","0","10","19","0","0","0","0","0","0","0","0","60" +"20221","-1","","","","","Fabled Steed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"20222","-1","","","","","Defiler's Enriched Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20223","-1","","","","","Defiler's Field Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20224","-1","","","","","Defiler's Iron Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20225","-1","","","","","Highlander's Enriched Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20226","-1","","","","","Highlander's Field Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20227","-1","","","","","Highlander's Iron Ration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20228","-1","","","","","Defiler's Advanced Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20229","-1","","","","","Defiler's Basic Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20230","-1","","","","","Defiler's Standard Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20231","-1","","","","","Arathor Advanced Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20232","-1","","","","","Defiler's Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20233","-1","","","","","Arathor Basic Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20234","-1","","","","","Defiler's Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20235","-1","","","","","Defiler's Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20236","-1","","","","","Arathor Standard Care Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20237","-1","","","","","Highlander's Mageweave Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20238","-1","","","","","90 Green Warrior Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213369","1066848","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","0","0","216","0","0","0","0","325","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","0","0","0","0","0","0","0","0","60" +"20239","-1","","","","","90 Green Warrior Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34271","171358","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20240","-1","","","","","90 Green Warrior Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68808","344042","1","1","1","16","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","838","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20241","-1","","","","","90 Green Warrior Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25902","129513","1","1","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20242","-1","","","","","90 Green Warrior Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34665","173329","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","498","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20243","-1","","","","","Highlander's Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20244","-1","","","","","Highlander's Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20245","-1","","","","","90 Green Warrior Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131474","657374","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","9","8","0","0","0","0","0","0","0","0","60" +"20246","-1","","","","","90 Green Warrior Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52788","263944","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20247","-1","","","","","90 Green Warrior Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70650","353251","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20248","-1","","","","","90 Green Warrior Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20249","-1","","","","","90 Green Warrior Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53380","266900","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20250","-1","","","","","90 Green Warrior Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","16","0","0","0","0","0","0","0","0","0" +"20251","-1","","","","","90 Green Warrior Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53777","268888","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20252","-1","","","","","90 Green Warrior Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36933","184669","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20253","-1","","","","","Pattern: Warbear Harness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20254","-1","","","","","Pattern: Warbear Woolies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20255","-1","","","","","Whisperwalk Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12425","62129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","4","0","0","0","0","0","0","0","0","0" +"20256","-1","Second Place","","","","Warsong Gulch Ribbon of Sacrifice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20257","-1","","","","","Seafury Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30840","154200","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1535","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","9","9","0","0","0","0","0","0","0","60" +"20258","-1","","","","","Zulian Ceremonial Staff","1","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75602","378012","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","65","-1","0","0","115","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","13","0","0","0","0","0","0","0","0","60" +"20259","-1","","","","","Shadow Panther Hide Gloves","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15179","75896","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","0","0","0","0","0","0","0","0","60" +"20260","-1","","","","","Seafury Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42331","211655","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","15","15","14","0","0","0","0","0","0","60" +"20261","-1","","","","","Shadow Panther Hide Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15295","76475","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","8","10","0","0","0","0","0","0","0","60" +"20262","-1","","","","","Seafury Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32135","160676","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"20263","-1","","","","","Gurubashi Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18495","92475","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","21","13","0","0","0","0","0","0","0","60" +"20264","-1","","","","","Peacekeeper Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19101","95509","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1535","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","7","0","0","0","0","0","0","0","0","60" +"20265","-1","","","","","Peacekeeper Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21571","107856","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","10","0","0","0","0","0","0","0","0","60" +"20266","-1","","","","","Peacekeeper Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28870","144352","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","14","0","0","0","0","0","0","0","0","60" +"20267","-1","","","","","90 Epic Rogue Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70643","353215","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","8","8","8","8","7","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20268","-1","","","","","90 Epic Rogue Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109200","546000","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20269","-1","","","","","90 Epic Rogue Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73065","365326","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","4","4","4","4","5","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20270","-1","","","","","90 Epic Rogue Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109995","549977","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20271","-1","","","","","90 Epic Rogue Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73595","367977","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20272","-1","","","","","90 Epic Rogue Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147707","738535","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20273","-1","","","","","90 Epic Rogue Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111177","555889","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20274","-1","","","","","90 Epic Rogue Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148767","743838","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20275","-1","","","","","90 Epic Rogue Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","5","4","4","4","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20276","-1","","","","","90 Epic Rogue Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89888","449441","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","5","4","4","4","4","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20277","-1","","","","","90 Epic Rogue Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","14","14","0","0","0","0","0","0","0","60" +"20278","-1","","","","","90 Epic Rogue Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","204791","1023959","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","101","0","0","0","0","189","0","0","0","0","0","0","3","3","3","3","3","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","8","8","7","0","0","0","0","0","0","0","60" +"20279","-1","","","","","90 Epic Rogue Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","274087","1370439","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","90","-1","0","0","104","0","0","0","0","194","0","0","0","0","0","0","2","2","2","2","3","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","11","10","10","0","0","0","0","0","0","0","60" +"20280","-1","","","","","63 Green Warrior Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57576","287882","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","19","18","0","0","0","0","0","0","0","0","58" +"20281","-1","","","","","63 Green Warrior Bracelets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9247","46238","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20282","-1","","","","","63 Green Warrior Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18566","92832","1","1","1","16","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20283","-1","","","","","63 Green Warrior Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6988","34941","1","1","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20284","-1","","","","","63 Green Warrior Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9607","48038","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20285","-1","","","","","63 Green Warrior Gun","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36161","180809","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","6","6","0","0","0","0","0","0","0","0","58" +"20286","-1","","","","","63 Green Warrior Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14518","72590","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20287","-1","","","","","63 Green Warrior Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19426","97132","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20288","-1","","","","","63 Green Warrior Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20289","-1","","","","","63 Green Warrior Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14676","73381","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20290","-1","","","","","63 Green Warrior Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20291","-1","","","","","63 Green Warrior Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14781","73907","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20292","-1","","","","","63 Green Warrior Waistband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9889","49449","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20295","-1","","","","","Blue Dragonscale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31083","155418","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","12","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","19","0","0","0","0","0","0","0","0","55" +"20296","-1","","","","","Green Dragonscale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12590","62954","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","9","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","5","0","0","0","0","0","0","0","0","51" +"20297","-1","","","","","90 Green Rogue Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46978","234890","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20298","-1","","","","","90 Green Rogue Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63984","319920","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20299","-1","","","","","90 Green Rogue Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128465","642326","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","6","10","0","0","0","0","0","0","0","0","60" +"20300","-1","","","","","90 Green Rogue Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44174","220871","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","18","11","0","0","0","0","0","0","0","0","60" +"20301","-1","","","","","90 Green Rogue Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66510","332550","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20302","-1","","","","","90 Green Rogue Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53401","267007","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20303","-1","","","","","90 Green Rogue Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","178668","893340","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","90","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","14","8","0","0","0","0","0","0","0","0","60" +"20304","-1","","","","","90 Green Rogue Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44832","224163","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20305","-1","","","","","90 Green Rogue Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20306","-1","","","","","90 Green Rogue Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90319","451596","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20307","-1","","","","","90 Green Rogue Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20308","-1","","","","","90 Green Rogue Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68236","341183","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20309","-1","","","","","90 Green Rogue Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91304","456523","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20310","-1","","","","","Flayed Demon Skin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1480","0","0","67","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20311","-1","","","","","63 Green Rogue Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12316","61583","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20312","-1","","","","","63 Green Rogue Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18541","92707","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20313","-1","","","","","63 Green Rogue Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37212","186063","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","4","7","0","0","0","0","0","0","0","0","58" +"20314","-1","","","","","63 Green Rogue Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12448","62243","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","7","0","0","0","0","0","0","0","0","58" +"20315","-1","","","","","63 Green Rogue Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18739","93697","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20316","-1","","","","","63 Green Rogue Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13985","69926","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20317","-1","","","","","63 Green Rogue Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46790","233953","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","6","0","0","0","0","0","0","0","0","58" +"20318","-1","","","","","63 Green Rogue Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11742","58710","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20319","-1","","","","","63 Green Rogue Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20320","-1","","","","","63 Green Rogue Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23661","118308","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20321","-1","","","","","63 Green Rogue Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20322","-1","","","","","63 Green Rogue Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17877","89387","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20323","-1","","","","","63 Green Rogue Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23925","119627","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20324","-1","","","","","90 Epic Frost Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57374","286872","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","11","12","0","0","0","0","0","0","0","60" +"20325","-1","","","","","90 Epic Frost Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57586","287932","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20326","-1","","","","","90 Epic Frost Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86697","433489","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","11","27","12","0","0","0","0","0","0","0","60" +"20327","-1","","","","","90 Epic Frost Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87016","435080","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","15","16","0","0","0","0","0","0","0","60" +"20328","-1","","","","","90 Epic Frost Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58217","291085","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","11","27","12","0","0","0","0","0","0","0","60" +"20329","-1","","","","","90 Epic Frost Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116858","584292","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","15","37","16","0","0","0","0","0","0","0","60" +"20330","-1","","","","","90 Epic Frost Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87962","439810","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","11","12","0","0","0","0","0","0","0","60" +"20331","-1","","","","","90 Epic Frost Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","117706","588534","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","37","15","16","0","0","0","0","0","0","0","60" +"20332","-1","","","","","90 Epic Frost Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","20","9","0","0","0","0","0","0","0","60" +"20333","-1","","","","","90 Epic Frost Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20334","-1","","","","","90 Epic Frost Staff","1","0","-33","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","345404","1727022","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","15","0","0","0","0","0","0","0","60" +"20335","-1","","","","","90 Epic Frost Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208038","1040190","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","90","-1","0","0","121","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","12","5","4","0","0","0","0","0","0","0","60" +"20336","-1","","","","","90 Epic Frost Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83524","417624","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20337","-1","","","","","Gnome Head on a Stick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85357","341428","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20338","-1","","","","","90 Green Frost Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35067","175335","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20339","-1","","","","","90 Green Frost Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35199","175998","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20340","-1","","","","","90 Green Frost Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52993","264965","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20341","-1","","","","","90 Green Frost Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53191","265959","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20342","-1","","","","","90 Green Frost Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35593","177969","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20343","-1","","","","","90 Green Frost Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71445","357228","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20344","-1","","","","","90 Green Frost Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53783","268915","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20345","-1","","","","","90 Green Frost Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20346","-1","","","","","90 Green Frost Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20347","-1","","","","","90 Green Frost Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72499","362495","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20348","-1","","","","","90 Green Frost Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54573","272866","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20349","-1","","","","","90 Green Frost Staff","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234151","1170756","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","0","0","167","0","0","0","0","251","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","0","0","0","0","0","0","0","0","60" +"20350","-1","","","","","90 Green Frost Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140987","704939","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","90","-1","0","0","92","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","9","0","0","0","0","0","0","0","0","0","60" +"20351","-1","","","","","63 Green Frost Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9144","45720","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20352","-1","","","","","63 Green Frost Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9179","45898","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20353","-1","","","","","63 Green Frost Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13822","69113","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20354","-1","","","","","63 Green Frost Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13875","69379","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20355","-1","","","","","63 Green Frost Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9285","46425","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20356","-1","","","","","63 Green Frost Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18641","93207","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20357","-1","","","","","63 Green Frost Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14034","70171","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20358","-1","","","","","63 Green Frost Neck","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20359","-1","","","","","63 Green Frost Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20360","-1","","","","","63 Green Frost Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18923","94617","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20361","-1","","","","","63 Green Frost Shroud","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14245","71229","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20362","-1","","","","","63 Green Frost Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59573","297869","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","105","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20363","-1","","","","","63 Green Frost Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35877","179387","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","6","0","0","0","0","0","0","0","0","0","58" +"20364","-1","","","","","Test Ammo Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20367","-1","A fine box of gear.","","","","Hunting Gear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20368","-1","This bow has no real variance.","","","","Bland Bow of Steadiness","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35582","177914","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","60","-1","0","0","46","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","60" +"20369","-1","","","","","Azurite Fists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9975","49879","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","6","7","6","0","0","0","0","0","0","0" +"20370","-1","","","","","Test Staff 90 epic","1","0","-41","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375896","1879481","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","90","-1","0","0","186","0","0","0","0","280","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","15","0","0","0","0","0","0","0","60" +"20371","-1","","","","","Blue Murloc Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20372","-1","","","","","Test Staff 77 epic","1","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181731","908656","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","77","-1","0","0","146","0","0","0","0","219","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","21","21","0","0","0","0","0","0","0","60" +"20373","-1","","","","","Stonelash Scorpid Stinger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20374","-1","","","","","Stonelash Pincer Stinger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20375","-1","","","","","Stonelash Flayer Stinger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20376","-1","","","","","Sand Skitterer Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20377","-1","","","","","Rock Stalker Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20378","-1","","","","","Twilight Tablet Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20379","-1","","","","","Noggle's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20380","-1","","","","","Dreamscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57958","289792","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","15","14","0","0","0","0","0","0","0","60" +"20381","-1","","","","","Dreamscale","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20382","-1","","","","","Pattern: Dreamscale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20383","-1","Only ONE May Rise... (and consequently, only ONE may loot this head)","","","","Head of the Broodlord Lashlayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20384","-1","","","","","Silithid Carapace Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20385","-1","","","","","Deathclasp's Pincer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20387","-1","Filled with a potent funk!","","","","Forsaken Stink Bomb Cluster","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20388","-1","","","","","Lollipop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20389","-1","","","","","Candy Corn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20390","-1","","","","","Candy Bar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20391","-1","","","","","Flimsy Male Gnome Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20392","-1","","","","","Flimsy Female Gnome Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20393","-1","Open your bag quickly as it will fade on logout.","","","","Treat Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131078","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20394","-1","","","","","Twilight Lexicon - Chapter 1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20395","-1","","","","","Twilight Lexicon - Chapter 2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20396","-1","","","","","Twilight Lexicon - Chapter 3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20397","-1","","","","","Hallowed Wand - Pirate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20398","-1","","","","","Hallowed Wand - Ninja","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20399","-1","","","","","Hallowed Wand - Leper Gnome","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20400","-1","","","","","Pumpkin Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20401","-1","","","","","Restored Twilight Tablet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20402","-1","As an Agent of Nozdormu, only you may take the Silithid Carapace Fragments from the corpses of the silithid. Keep your badge in your pack at all times.","","","","Agent of Nozdormu","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20403","-1","Bears the Seal of the Bronze Flight","","","","Proxy of Nozdormu","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20404","-1","These words are unintelligible","","","","Encrypted Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20405","-1","","","","","Decoded Tablet Transcription","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2807","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20406","-1","","","","","Twilight Cultist Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1929","9645","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20407","-1","","","","","Twilight Cultist Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2581","12905","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20408","-1","","","","","Twilight Cultist Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9713","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20409","-1","","","","","Hallowed Wand - Ghost","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20410","-1","","","","","Hallowed Wand - Bat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20411","-1","","","","","Hallowed Wand - Skeleton","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20412","-1","","","","","Monster - Polearm, PVPAlliance_A01","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20413","-1","","","","","Hallowed Wand - Random","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20414","-1","","","","","Hallowed Wand - Wisp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20415","-1","This tome appears freshly inked.","","","","The War of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2793","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20416","-1","","","","","Crest of Beckoning: Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20417","-1","","","","","Monster - Glaive - 2 Blade Silver (offhand)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20418","-1","","","","","Crest of Beckoning: Thunder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20419","-1","","","","","Crest of Beckoning: Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20420","-1","","","","","Crest of Beckoning: Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20422","-1","","","","","Twilight Cultist Medallion of Station","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20423","-1","","","","","Sandy Scorpid Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20424","-1","","","","","Sandworm Meat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20425","-1","","","","","Advisor's Gnarled Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3042","15211","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","4","0","0","0","0","0","0","0","0","18" +"20426","-1","","","","","Advisor's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","2","0","0","0","0","0","0","0","0","0","18" +"20427","-1","","","","","Battle Healer's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","730","3650","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20428","-1","","","","","Caretaker's Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","730","3650","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20429","-1","","","","","Legionnaire's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","2","0","0","0","0","0","0","0","18" +"20430","-1","","","","","Legionnaire's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2433","12169","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20431","-1","","","","","Lorekeeper's Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","2","0","0","0","0","0","0","0","0","0","18" +"20432","-1","","","","","Signet of Beckoning: Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20433","-1","","","","","Signet of Beckoning: Thunder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20434","-1","","","","","Lorekeeper's Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3042","15211","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","4","0","0","0","0","0","0","0","0","18" +"20435","-1","","","","","Signet of Beckoning: Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20436","-1","","","","","Signet of Beckoning: Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20437","-1","","","","","Outrider's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1825","9126","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","18" +"20438","-1","","","","","Outrunner's Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1825","9126","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","18" +"20439","-1","","","","","Protector's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","2","0","0","0","0","0","0","0","18" +"20440","-1","","","","","Protector's Sword","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2582","12910","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20441","-1","","","","","Scout's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2433","12169","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20442","-1","","","","","Scout's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","2","0","0","0","0","0","0","0","0","18" +"20443","-1","","","","","Sentinel's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2610","13050","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20444","-1","","","","","Sentinel's Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","2","0","0","0","0","0","0","0","0","18" +"20445","-1","","","","","Test Defense Ring +120","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20446","-1","","","","","Test Defense Ring +80","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20447","-1","","","","","Scepter of Beckoning: Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20448","-1","","","","","Scepter of Beckoning: Thunder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20449","-1","","","","","Scepter of Beckoning: Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20450","-1","","","","","Scepter of Beckoning: Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20451","-1","","","","","Twilight Cultist Ring of Lordship","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","60" +"20452","-1","","","","","Smoked Desert Dumplings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20453","-1","For use with Glyphed Crystals.","","","","Geologist's Transcription Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20454","-1","","","","","Hive'Zora Rubbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20455","-1","","","","","Hive'Ashi Rubbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20456","-1","","","","","Hive'Regal Rubbing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20457","-1","","","","","Hive'Ashi Silithid Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20458","-1","","","","","Hive'Zora Silithid Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20459","-1","","","","","Hive'Regal Silithid Brain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20460","-1","","","","","Brann Bronzebeard's Lost Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8308","0","0","0","0","0","60","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"20461","-1","","","","","Brann Bronzebeard's Lost Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8308","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"20462","-1","","","","","Hallow's End Medallion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20463","-1","","","","","Glyphed Crystal Prism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20464","-1","","","","","Glyphs of Calling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20465","-1","","","","","Crystal Unlocking Mechanism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20466","-1","","","","","Vyral's Signet Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20467","-1","","","","","Torn Recipe Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20468","-1","","","","","Monster - Item, Orb - A01 Green","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20469","-1","","","","","Decoded True Believer Clippings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20475","-1","","","","","Soul Gem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20476","-1","","","","","Sandstalker Bracers","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16401","82005","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","0","0","0","0","0","0","0","0","0","57" +"20477","-1","","","","","Sandstalker Gauntlets","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16898","84490","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"20478","-1","","","","","Sandstalker Breastplate","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33917","169588","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","0","0","0","0","0","0","0","0","0","57" +"20479","-1","","","","","Spitfire Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34036","170181","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","16","16","0","0","0","0","0","0","0","0","57" +"20480","-1","","","","","Spitfire Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17078","85394","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","0","0","0","0","0","0","0","0","57" +"20481","-1","","","","","Spitfire Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17139","85699","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","9","0","0","0","0","0","0","0","0","57" +"20485","-1","","","","","Duke's Seal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20487","-1","","","","","Lok'delar, Stave of the Ancient Keepers DEP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","166093","830469","1","1","1","33856","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","4","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","15","0","0","0","0","0","0","0","0","60" +"20488","-1","","","","","Rhok'delar, Longbow of the Ancient Keepers DEP","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","4","0","0","89","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"20489","-1","","","","","Crown of the Council","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20490","-1","A classic Hallow's End treat of the Dwarves.","","","","Ironforge Mint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20491","-1","A classic Hallow's End treat of the Forsaken.","","","","Undercity Mint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20492","-1","A classic Hallow's End treat of the Humans.","","","","Stormwind Nougat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20493","-1","An Orgrimmar classic Hallow's End treat.","","","","Orgrimmar Nougat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20494","-1","A classic Hallow's End treat of the Gnomes.","","","","Gnomeregan Gumdrop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20495","-1","A classic Hallow's End treat of the Darkspear tribe.","","","","Darkspear Gumdrop","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20496","-1","A classic Hallow's End treat of the Night Elves.","","","","Darnassus Marzipan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20497","-1","A classic Hallow's End treat of the Tauren.","","","","Thunder Bluff Marzipan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20498","-1","","","","","Silithid Chitin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20499","-1","","","","","Broken Silithid Chitin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20500","-1","","","","","Light Silithid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20501","-1","","","","","Heavy Silithid Carapace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20502","-1","","","","","Ironbark Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21277","106389","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1803","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","0","0","0","0","0","0","0","0","0","0" +"20503","-1","","","","","Enamored Water Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20504","-1","","","","","Lightforged Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37873","189365","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","10","0","10","10","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","9","0","0","0","0","0","0","0","0","47" +"20505","-1","","","","","Chivalrous Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","7","7","0","0","0","0","0","0","0","0" +"20506","-1","","","","","Pattern: Spitfire Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20507","-1","","","","","Pattern: Spitfire Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20508","-1","","","","","Pattern: Spitfire Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20509","-1","","","","","Pattern: Sandstalker Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20510","-1","","","","","Pattern: Sandstalker Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20511","-1","","","","","Pattern: Sandstalker Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20512","-1","","","","","Sanctified Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20513","-1","","","","","Abyssal Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","1" +"20514","-1","","","","","Abyssal Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"20515","-1","","","","","Abyssal Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","1" +"20516","-1","Crisp, delicious and hopefully worm-free","","","","Bobbing Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20517","-1","","","","","Razorsteel Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9797","48987","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","9","10","0","0","0","0","0","0","0","0" +"20518","-1","","","","","Scroll: Create Crest of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20519","-1","","","","","Southsea Pirate Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20520","-1","","","","","Dark Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20521","-1","","","","","Fury Visor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9937","49688","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","0","0","0","0","0","0","0","0","0","0" +"20522","-1","","","","","Feral Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41554","207772","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","16","0","0","0","0","0","0","0","0","0" +"20524","-1","Shadowmaw panthers are known for their exquisite hides.","","","","Shadowhide Leggings","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15146","75730","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","6","0","0","0","0","0","0","0","0","0" +"20525","-1","","","","","Earthen Sigil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20526","-1","","","","","Scroll: Create Crest of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20527","-1","","","","","Scroll: Create Crest of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20528","-1","","","","","Scroll: Create Crest of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20530","-1","","","","","Robes of Servitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12735","63675","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","10","0","0","0","0","0","0","0","0","0" +"20531","-1","","","","","Scroll: Create Signet of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20532","-1","","","","","Scroll: Create Signet of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20533","-1","","","","","Scroll: Create Signet of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20534","-1","Dark rituals are trapped in dark gems.","","","","Abyss Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20535","-1","","","","","Scroll: Create Signet of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20536","-1","","","","","Soul Harvester","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40671","203359","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","0","0","0","0","0","0","0","0","0","0" +"20537","-1","","","","","Runed Stygian Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17736","88680","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","58" +"20538","-1","","","","","Runed Stygian Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23733","118666","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","58" +"20539","-1","","","","","Runed Stygian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11908","59540","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20540","-1","","","","","Scroll: Create Scepter of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20541","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2810","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20542","-1","","","","","Scroll: Create Scepter of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20543","-1","","","","","Scroll: Create Scepter of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20544","-1","","","","","Scroll: Create Scepter of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20545","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2811","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20546","-1","","","","","Pattern: Runed Stygian Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20547","-1","","","","","Pattern: Runed Stygian Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20548","-1","","","","","Pattern: Runed Stygian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20549","-1","","","","","Darkrune Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11484","57421","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","0","0","0","0","0","0","0","0","0","58" +"20550","-1","","","","","Darkrune Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23051","115257","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","0","0","0","0","0","0","0","0","0","58" +"20551","-1","","","","","Darkrune Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17352","86762","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","13","0","0","0","0","0","0","0","0","0","58" +"20552","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2812","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20553","-1","","","","","Plans: Darkrune Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20554","-1","","","","","Plans: Darkrune Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20555","-1","","","","","Plans: Darkrune Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20556","-1","","","","","Wildstaff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40667","203339","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","90","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","9","10","0","0","0","0","0","0","0","0" +"20557","-1","","","","","Hallow's End Pumpkin Treat","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","175","3500","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20558","-1","Medal awarded for fighting in Warsong Gulch","","","","Warsong Gulch Mark of Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20559","-1","Medal awarded for fighting in Arathi Basin","","","","Arathi Basin Mark of Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20560","-1","Medal awarded for fighting in Alterac Valley","","","","Alterac Valley Mark of Honor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20561","-1","","","","","Flimsy Male Dwarf Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20562","-1","","","","","Flimsy Female Dwarf Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20563","-1","","","","","Flimsy Female Nightelf Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20564","-1","","","","","Flimsy Male Nightelf Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20565","-1","","","","","Flimsy Female Human Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20566","-1","","","","","Flimsy Male Human Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20567","-1","","","","","Flimsy Female Troll Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20568","-1","","","","","Flimsy Male Troll Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20569","-1","","","","","Flimsy Female Orc Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20570","-1","","","","","Flimsy Male Orc Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20571","-1","","","","","Flimsy Female Tauren Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20572","-1","","","","","Flimsy Male Tauren Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20573","-1","","","","","Flimsy Male Undead Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20574","-1","","","","","Flimsy Female Undead Mask","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20575","-1","","","","","Black Whelp Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3719","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","15" +"20576","-1","","","","","Pattern: Black Whelp Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20577","-1","","","","","Nightmare Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","108080","540400","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","71","32767","0","0","99","0","0","0","0","185","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"20578","-1","","","","","Emerald Dragonfang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","108499","542499","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","71","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","0","0","0","0","0","0","0","0","0","60" +"20579","-1","","","","","Green Dragonskin Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32675","163379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"20580","-1","","","","","Hammer of Bestial Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109327","546639","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","71","-1","0","0","69","0","0","0","0","130","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","12","0","0","0","0","0","0","0","0","60" +"20581","-1","","","","","Staff of Rampant Growth","1","0","-11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","137184","685922","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","71","-1","0","0","142","0","0","0","0","213","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20582","-1","","","","","Trance Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62802","251211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","8","8","0","0","0","0","0","0","0","60" +"20583","-1","","","","","Sturdy Female Dwarf Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4738","23694","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20584","-1","","","","","Sturdy Female Gnome Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4756","23782","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20585","-1","","","","","Sturdy Female Human Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4774","23872","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20586","-1","","","","","Sturdy Female Nightelf Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4792","23962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20587","-1","","","","","Sturdy Female Orc Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4810","24051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20588","-1","","","","","Sturdy Female Tauren Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4827","24139","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20589","-1","","","","","Sturdy Female Troll Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4845","24229","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20590","-1","","","","","Sturdy Female Undead Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4992","24963","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20591","-1","","","","","Sturdy Male Dwarf Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5010","25053","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20592","-1","","","","","Sturdy Male Gnome Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5028","25140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20593","-1","","","","","Sturdy Male Human Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5046","25230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20594","-1","","","","","Sturdy Male Nightelf Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5064","25320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20595","-1","","","","","Sturdy Male Orc Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5082","25410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20596","-1","","","","","Sturdy Male Tauren Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5099","25498","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20597","-1","","","","","Sturdy Male Troll Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4631","23155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20598","-1","","","","","Sturdy Male Undead Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","23245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20599","-1","","","","","Polished Ironwood Crossbow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","81672","408363","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","71","-1","0","0","101","0","0","0","0","153","0","0","0","0","0","0","0","7","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","5","0","0","0","0","0","0","0","0","0","60" +"20600","-1","","","","","Malfurion's Signet Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","98660","394641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","0","0","0","0","0","0","0","0","0","60" +"20601","-1","","","","","Sack of Spoils","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20602","-1","","","","","Chest of Spoils","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20603","-1","","","","","Bag of Spoils","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20604","-1","Fights the funk of the Forsaken with the power of pine!","","","","Stink Bomb Cleaner","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20605","-1","Suitable for ruining the contents of a keg...","","","","Rotten Eggs","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20606","-1","","","","","Amber Voodoo Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20607","-1","","","","","Blue Voodoo Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20608","-1","","","","","Green Voodoo Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20609","-1","","","","","Voodoo Feathers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20610","-1","","","","","Bloodshot Spider Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20611","-1","","","","","Thick Black Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20612","-1","","","","","Inert Scourgestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20613","-1","","","","","Rotting Wood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20614","-1","","","","","Bloodvenom Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20615","-1","","","","","Dragonspur Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29643","148216","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","4","4","4","4","4","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","0","0","0","0","0","0","0","0","0","60" +"20616","-1","","","","","Dragonbone Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21638","108193","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","9","0","0","0","0","0","0","0","0","60" +"20617","-1","","","","","Ancient Corroded Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68076","340381","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","16","11","21","0","0","0","0","0","0","60" +"20618","-1","","","","","Gloves of Delusional Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22777","113889","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","16","0","0","0","0","0","0","0","0","60" +"20619","-1","","","","","Acid Inscribed Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34298","171494","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","559","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","8","0","0","0","0","0","0","0","0","60" +"20620","-1","","","","","Holy Mightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20621","-1","","","","","Boots of the Endless Moor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49595","247978","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20622","-1","","","","","Dragonheart Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","114103","456415","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","6","6","0","0","0","0","0","0","0","60" +"20623","-1","","","","","Circlet of Restless Dreams","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44713","223569","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","175","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","38","0","0","0","0","0","0","0","0","60" +"20624","-1","","","","","Ring of the Unliving","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","143303","573214","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","16","0","0","0","0","0","0","0","0","60" +"20625","-1","","","","","Belt of the Dark Bog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22879","114398","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","8","0","0","0","0","0","0","0","0","60" +"20626","-1","","","","","Black Bark Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21638","108193","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","4","4","0","0","0","0","0","0","0","60" +"20627","-1","","","","","Dark Heart Pants","1","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57613","288066","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","0","0","0","0","0","0","0","0","0","60" +"20628","-1","","","","","Deviate Growth Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45535","227678","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","175","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","14","0","0","0","0","0","0","0","0","60" +"20629","-1","","","","","Malignant Footguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55079","275397","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","14","12","11","0","0","0","0","0","0","60" +"20630","-1","","","","","Gauntlets of the Shining Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24459","122298","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","12","16","10","15","0","0","0","0","0","60" +"20631","-1","","","","","Mendicant's Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35068","175341","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","12","0","0","0","0","0","0","0","0","60" +"20632","-1","","","","","Mindtear Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","101281","405124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","6","0","0","0","0","0","0","0","0","60" +"20633","-1","","","","","Unnatural Leather Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46353","231765","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","8","0","0","0","0","0","0","0","0","60" +"20634","-1","","","","","Boots of Fright","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46518","232591","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","10","11","0","0","0","0","0","0","0","60" +"20635","-1","","","","","Jade Inlaid Vestments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47424","237123","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","18","16","8","0","0","0","0","0","0","0","60" +"20636","-1","","","","","Hibernation Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89103","356415","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20637","-1","","","","","Acid Inscribed Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34030","170154","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","610","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20638","-1","","","","","Leggings of the Demented Mind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70220","351100","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","25","16","8","0","0","0","0","0","0","60" +"20639","-1","","","","","Strangely Glyphed Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46989","234948","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","712","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","12","21","16","20","0","0","0","0","0","60" +"20640","-1","","","","","Southsea Head Bucket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4812","24061","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","6","0","0","0","0","0","0","0","0","0" +"20641","-1","","","","","Southsea Mojo Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4829","24149","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20642","-1","","","","","Antiquated Nobleman's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7539","37696","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20643","-1","","","","","Undercity Reservist's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7094","35471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","11","10","0","0","0","0","0","0","0","0" +"20644","-1","An unknown object shrouded in nightmares.","","","","Nightmare Engulfed Object","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8446","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20645","-1","","","","","Nature's Whisper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21785","87141","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","5","0","0","0","0","0","0","0","0","0" +"20646","-1","","","","","Sandstrider's Mark","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29963","149818","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","59","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","8","0","0","0","0","0","0","0","0","0","0" +"20647","-1","","","","","Black Crystal Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","40097","200487","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","59","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","0" +"20648","-1","","","","","Cold Forged Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58693","293469","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","9","0","0","0","0","0","0","0","0","0" +"20649","-1","","","","","Sunprism Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22425","89701","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"20650","-1","","","","","Desert Wind Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8511","42558","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"20651","-1","","","","","Orange Murloc Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20652","-1","","","","","Abyssal Cloth Slippers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12858","64291","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8654","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20653","-1","","","","","Abyssal Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8602","43014","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8657","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20654","-1","","","","","Amethyst War Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60175","300876","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","60","-1","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","6","0","0","0","0","0","0","0","0","55" +"20655","-1","","","","","Abyssal Cloth Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8054","40270","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8654","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20656","-1","","","","","Abyssal Mail Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18269","91348","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8675","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20657","-1","","","","","Crystal Tipped Stiletto","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","47443","237219","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","55" +"20658","-1","","","","","Abyssal Leather Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15272","76361","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8655","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20659","-1","","","","","Abyssal Mail Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12263","61319","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8659","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20660","-1","","","","","Stonecutting Glaive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61543","307716","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","60","-1","0","0","152","0","0","0","0","228","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"20661","-1","","","","","Abyssal Leather Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10295","51477","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8655","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20662","-1","","","","","Abyssal Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12400","62003","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8657","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20663","-1","","","","","Deep Strike Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37336","186681","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","60","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","6","4","0","0","0","0","0","0","0","55" +"20664","-1","","","","","Abyssal Cloth Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10628","53142","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8660","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20665","-1","","","","","Abyssal Leather Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27645","138225","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8664","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20666","-1","","","","","Hardened Steel Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","52306","261534","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","62","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","6","0","0","0","0","0","0","0","0","57" +"20667","-1","","","","","Abyssal Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13431","67155","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8658","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20668","-1","","","","","Abyssal Mail Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33536","167680","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8663","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20669","-1","","","","","Darkstone Claymore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70120","350602","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","62","-1","0","0","152","0","0","0","0","229","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","0","0","0","0","0","0","0","0","0","57" +"20670","-1","","","","","Abyssal Mail Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15125","75626","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8659","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20671","-1","","","","","Abyssal Plate Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20984","104920","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8662","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20672","-1","","","","","Sparkling Crystal Wand","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39497","197487","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","0","0","0","0","0","0","0","0","0","57" +"20673","-1","","","","","Abyssal Plate Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10199","50999","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8661","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20674","-1","","","","","Abyssal Cloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21227","106138","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8665","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20675","-1","","","","","Soulrender","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52306","261534","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","62","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20676","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2816","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20677","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2817","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20678","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2819","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20679","-1","A decoded True Believer article","","","","Decoded Twilight Text","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2820","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20680","-1","","","","","Abyssal Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31683","158417","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8672","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20681","-1","","","","","Abyssal Leather Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18251","91258","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8667","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20682","-1","","","","","Elemental Focus Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73553","294212","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","8","0","0","0","0","0","0","0","0","60" +"20683","-1","","","","","Abyssal Plate Epaulets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21028","105144","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8670","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20684","-1","","","","","Abyssal Mail Armguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21028","105144","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8668","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20685","-1","","","","","Wavefront Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61617","246471","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","5","0","0","0","0","0","0","0","0","60" +"20686","-1","","","","","Abyssal Cloth Amice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21028","105144","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8673","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20687","-1","","","","","Abyssal Plate Vambraces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14019","70096","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8669","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20688","-1","","","","","Earthen Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56644","283220","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2468","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","19","0","0","0","0","0","0","0","0","0","60" +"20689","-1","","","","","Abyssal Leather Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26286","131430","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8671","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20690","-1","","","","","Abyssal Cloth Wristbands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14004","70022","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8666","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20691","-1","","","","","Windshear Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24289","121446","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","4","5","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","15","14","8","7","0","0","0","0","0","0","60" +"20692","-1","","","","","Multicolored Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13362","53451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3499","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","55" +"20693","-1","","","","","Weighted Cloak","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11860","59304","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","8","0","0","0","0","0","0","0","0","55" +"20694","-1","","","","","Glowing Black Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17828","71314","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","55" +"20695","-1","","","","","Abyssal War Beads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36253","145012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","58" +"20696","-1","","","","","Crystal Spiked Maul","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70171","350857","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","63","-1","0","0","168","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","0","0","0","0","0","0","0","0","0","58" +"20697","-1","","","","","Crystalline Threaded Cape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16903","84516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","5","0","0","0","0","0","0","0","0","58" +"20698","-1","","","","","Elemental Attuned Blade","1","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75410","377050","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","6","0","0","0","0","0","0","0","0","0","58" +"20699","-1","","","","","Cenarion Reservist's Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22708","113541","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20700","-1","","","","","Cenarion Reservist's Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21968","109844","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20701","-1","","","","","Cenarion Reservist's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34314","171573","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20702","-1","","","","","Cenarion Reservist's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35358","176790","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20703","-1","","","","","Cenarion Reservist's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29571","147857","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20704","-1","","","","","Cenarion Reservist's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27461","137305","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20705","-1","","","","","Cenarion Reservist's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21968","109844","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20706","-1","","","","","Cenarion Reservist's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21968","109844","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20707","-1","","","","","Cenarion Reservist's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21968","109844","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20708","-1","","","","","Tightly Sealed Trunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20709","-1","","","","","Rumsey Rum Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20710","-1","","","","","Crystal Encrusted Greaves","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16457","82288","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","0","0","0","0","0","0","0","0","0","0" +"20711","-1","","","","","Crystal Lined Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16521","82607","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","12","0","0","0","0","0","0","0","0" +"20712","-1","","","","","Wastewalker's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16583","82918","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","3","6","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","10","10","0","0","0","0","0","0" +"20713","-1","","","","","Desertstalkers's Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16647","83238","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","16","0","0","0","0","0","0","0","0" +"20714","-1","","","","","Sandstorm Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20595","102979","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","0","0","0","0","0","0","0","0","0" +"20715","-1","","","","","Dunestalker's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20969","104847","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","10","9","0","0","0","0","0","0","0","0" +"20716","-1","","","","","Sandworm Skin Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11225","56125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","5","0","0","0","0","0","0","0","0","0" +"20717","-1","","","","","Desert Bloom Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10984","54922","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","5","5","0","0","0","0","0","0","0","0" +"20718","-1","","","","","Monster - Staff, Jeweled Yellow Staff w/Low Purple Glow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20719","-1","","","","","Monster - Staff, Jeweled D01/B02 Yellow w/Low Red Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20720","-1","","","","","Dark Whisper Blade","1","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60551","302759","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","65","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","60" +"20721","-1","","","","","Band of the Cultist","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38790","155162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","12","7","0","0","0","0","0","0","0","60" +"20722","-1","","","","","Crystal Slugthrower","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45413","227069","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","65","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","4","0","0","0","0","0","0","0","0","0","60" +"20723","-1","","","","","Brann's Trusty Pick","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46934","234671","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","62","-1","0","0","70","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20724","-1","","","","","Corrupted Blackwood Staff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58873","294368","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","62","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20725","-1","","","","","Nexus Crystal","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20726","-1","","","","","Formula: Enchant Gloves - Threat","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20727","-1","","","","","Formula: Enchant Gloves - Shadow Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20728","-1","","","","","Formula: Enchant Gloves - Frost Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20729","-1","","","","","Formula: Enchant Gloves - Fire Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20730","-1","","","","","Formula: Enchant Gloves - Healing Power","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20731","-1","","","","","Formula: Enchant Gloves - Superior Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20732","-1","","","","","Formula: Enchant Cloak - Greater Fire Resistance","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20733","-1","","","","","Formula: Enchant Cloak - Greater Nature Resistance","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20734","-1","","","","","Formula: Enchant Cloak - Stealth","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20735","-1","","","","","Formula: Enchant Cloak - Subtlety","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20736","-1","","","","","Formula: Enchant Cloak - Dodge","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20737","-1","","","","","Singed Corestone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20738","-1","","","","","Monster - Mace, Scepter of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20739","-1","","","","","Deadwood Headdress Feather DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20740","-1","","","","","Winterfall Spirit Beads DEPRECATED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20741","-1","The totem is thick with the taint of corruption.","","","","Deadwood Ritual Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8470","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20742","-1","The totem is thick with the taint of corruption.","","","","Winterfall Ritual Totem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8471","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"20744","-1","","","","","Minor Wizard Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"20745","-1","","","","","Minor Mana Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"20746","-1","","","","","Lesser Wizard Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"20747","-1","","","","","Lesser Mana Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20748","-1","","","","","Brilliant Mana Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20749","-1","","","","","Brilliant Wizard Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20750","-1","","","","","Wizard Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20752","-1","","","","","Formula: Minor Mana Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","333","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20753","-1","","","","","Formula: Lesser Wizard Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","333","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20754","-1","","","","","Formula: Lesser Mana Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","333","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20755","-1","","","","","Formula: Wizard Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20756","-1","","","","","Formula: Brilliant Wizard Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20757","-1","","","","","Formula: Brilliant Mana Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20758","-1","","","","","Formula: Minor Wizard Oil","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","333","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20761","-1","","","","","Recipe: Transmute Elemental Fire","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20763","-1","","","","","Broken Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20766","-1","","","","","Slimy Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20767","-1","","","","","Scum Covered Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20768","-1","","","","","Oozing Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20769","-1","","","","","Disgusting Oozeling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20770","-1","","","","","Bubbling Green Ichor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20800","-1","","","","","Cenarion Logistics Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20801","-1","","","","","Cenarion Tactical Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20802","-1","","","","","Cenarion Combat Badge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20803","-1","","","","","Twilight Battle Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20805","-1","","","","","Followup Logistics Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20806","-1","","","","","Logistics Task Briefing X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8496","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20807","-1","","","","","Logistics Task Briefing I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8497","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20808","-1","","","","","Combat Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20809","-1","","","","","Tactical Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20810","-1","","","","","Signed Field Duty Papers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20814","-1","","","","","Master's Throwing Dagger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","2500","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","65","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","1","4","0","0","0","0","0","0","0","0","0","0","60" +"20834","-1","","","","","Ornate Spyglass XT","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20844","-1","","","","","Deadly Poison V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"20858","-1","","","","","Stone Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20859","-1","","","","","Gold Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20860","-1","","","","","Silver Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20861","-1","","","","","Bronze Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20862","-1","","","","","Crystal Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20863","-1","","","","","Clay Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20864","-1","","","","","Bone Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20865","-1","","","","","Ivory Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20866","-1","","","","","Azure Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20867","-1","","","","","Onyx Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","265","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20868","-1","","","","","Lambent Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20869","-1","","","","","Amber Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","326","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20870","-1","","","","","Jasper Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20871","-1","","","","","Obsidian Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20872","-1","","","","","Vermillion Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1098","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20873","-1","","","","","Alabaster Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20874","-1","","","","","Idol of the Sun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","141","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20875","-1","","","","","Idol of Night","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","393","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20876","-1","","","","","Idol of Death","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20877","-1","","","","","Idol of the Sage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","466","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20878","-1","","","","","Idol of Rebirth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1362","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20879","-1","","","","","Idol of Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20881","-1","","","","","Idol of Strife","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20882","-1","","","","","Idol of War","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1037","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20883","-1","","","","","Qiraji Glyphed Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20884","-1","","","","","Qiraji Magisterial Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1219","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20885","-1","","","","","Qiraji Martial Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20886","-1","","","","","Qiraji Spiked Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","79","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20887","-1","","","","","Qiraji Engraved Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20888","-1","","","","","Qiraji Ceremonial Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","284","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20889","-1","","","","","Qiraji Regal Drape","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1350","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20890","-1","","","","","Qiraji Ornate Hilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20908","-1","","","","","Festival of Nian Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","13","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20926","-1","","","","","Vek'nilash's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20927","-1","","","","","Ouro's Intact Hide","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20928","-1","","","","","Qiraji Bindings of Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","29","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20929","-1","","","","","Carapace of the Old God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","79","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20930","-1","","","","","Vek'lor's Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20931","-1","","","","","Skin of the Great Sandworm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1350","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20932","-1","","","","","Qiraji Bindings of Dominance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1474","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20933","-1","","","","","Husk of the Old God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20936","-1","","","","","Qiraji Blessed Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20937","-1","","","","","Qiraji Encased Jewel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20939","-1","","","","","Logistics Task Briefing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8540","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20940","-1","","","","","Logistics Task Briefing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8541","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20941","-1","","","","","Combat Task Briefing XII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8501","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20942","-1","","","","","Combat Task Briefing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8502","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20943","-1","","","","","Tactical Task Briefing X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8498","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20944","-1","","","","","Tactical Task Briefing IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8740","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20945","-1","","","","","Tactical Task Briefing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8537","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20946","-1","","","","","Tactical Task Briefing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8536","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"20947","-1","","","","","Tactical Task Briefing IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8535","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20948","-1","","","","","Tactical Task Briefing V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8538","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20949","-1","","","","","Magical Ledger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8575","2822","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","11","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20951","-1","","","","","Narain's Scrying Goggles","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21023","-1","","","","","Dirge's Kickin' Chimaerok Chops","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"21024","-1","","","","","Chimaerok Tenderloin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21025","-1","","","","","Recipe: Dirge's Kickin' Chimaerok Chops","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21027","-1","It really does look like a big chicken.","","","","Lakmaeran's Carcass","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21028","-1","","","","","500 Pound Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21029","-1","","","","","Ransom Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21030","-1","","","","","Darnassus Kimchi Pie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"21031","-1","","","","","Cabbage Kimchi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"21032","-1","","","","","Meridith's Love Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21033","-1","","","","","Radish Kimchi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"21037","-1","A map indicating where the crooks expect the drop-off to be made.","","","","Crude Map","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2828","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21038","-1","","","","","Hardpacked Snowball","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","5","0","0","10","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21039","-1","Use with Narain's Robe to disguise yourself as Narain!","","","","Narain's Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21040","-1","","","","","Narain's Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21041","-1","","","","","Bag of Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21042","-1","","","","","Narain's Special Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21043","-1","","","","","Mysterious Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"21071","-1","","","","","Raw Sagefish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"21072","-1","","","","","Smoked Sagefish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"21099","-1","","","","","Recipe: Smoked Sagefish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21100","-1","A symbol of honor and respect for one's ancestry.","","","","Coin of Ancestry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21101","-1","","","","","Staff of Spell Penetration - Fire (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73633","368168","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21102","-1","","","","","Staff of Spell Penetration - Frost (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21103","-1","Chapter I","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21104","-1","Chapter II","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21105","-1","Chapter III","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21106","-1","Chapter IV","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21107","-1","Chapter V","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21108","-1","Chapter VI","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21109","-1","Chapter VII","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21110","-1","Chapter VIII","","","","Draconic for Dummies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21111","-1","","","","","Draconic For Dummies: Volume II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21112","-1","","","","","Magical Book Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21113","-1","","","","","Watertight Trunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21114","-1","","","","","Rumsey Rum Dark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21115","-1","","","","","Defiler's Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7057","28230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","48" +"21116","-1","","","","","Defiler's Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3807","15230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"21117","-1","","","","","Talisman of Arathor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7057","28230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","48" +"21118","-1","","","","","Talisman of Arathor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3807","15230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"21119","-1","","","","","Talisman of Arathor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1807","7230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","28" +"21120","-1","","","","","Defiler's Talisman","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1807","7230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","28" +"21121","-1","","","","","Monster - Item, Flower - Purple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21122","-1","","","","","Monster - Dagger, Korean A01 Black","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21123","-1","","","","","Monster - Item, Flower - White","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21124","-1","","","","","Ahn'Qiraj Wand [PH]","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99304","496523","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","75","32767","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21125","-1","","","","","Ahn'Qiraj Staff [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","166145","830727","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","32767","0","0","170","0","0","0","0","255","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21126","-1","","","","","Death's Sting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","206967","1034835","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","84","32767","0","0","95","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","0","0","0","0","0","0","0","0","0","60" +"21127","-1","","","","","Ahn'Qiraj Mace [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","133922","669614","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","32767","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21128","-1","","","","","Staff of the Qiraji Prophets","1","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","168041","840206","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","32767","0","0","170","0","0","0","0","255","0","0","0","0","0","0","10","10","10","10","10","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","21","8","0","0","0","0","0","0","0","60" +"21129","-1","","","","","Monster - Axe, Doctor Weavil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21130","-1","","","","","Diary of Weavil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2829","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21131","-1","","","","","Followup Combat Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21132","-1","","","","","Logistics Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21133","-1","","","","","Followup Tactical Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21134","-1","","","","","Dark Edge of Insanity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","266569","1332847","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","32767","0","0","242","0","0","0","0","364","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","19","25","0","0","0","0","0","0","0","60" +"21135","-1","","","","","Assassin's Throwing Axe","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","4","11","0","0","0","0","0","0","0","0","0","58" +"21136","-1","","","","","Arcanite Buoy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21137","-1","","","","","Blue Scepter Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21138","-1","","","","","Red Scepter Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21139","-1","","","","","Green Scepter Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21140","-1","","","","","Auction Stationery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21141","-1","","","","","Destroyed Red Scepter Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21142","-1","","","","","From the Desk of Lord Victor Nefarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2838","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21143","-1","","","","","Unsigned Field Duty Papers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21144","-1","A shamanistic device fashioned by the Timbermaw to summon forth corrupting demons.","","","","Demon Summoning Torch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21145","-1","","","","","Essence of Xandivious","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21146","-1","-Hinterlands","","","","Fragment of the Nightmare's Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21147","-1","-Ashenvale","","","","Fragment of the Nightmare's Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21148","-1","-Feralas","","","","Fragment of the Nightmare's Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21149","-1","-Duskwood","","","","Fragment of the Nightmare's Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21150","-1","","","","","Iron Bound Trunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21151","-1","","","","","Rumsey Rum Black Label","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21152","-1","","","","","The Nightmare's Corruption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21153","-1","","","","","Raw Greater Sagefish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"21154","-1","","","","","Festival Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21155","-1","This truesilver-wrought item is a furbolg symbol of peace. A sealed message is attached to it.","","","","Timbermaw Offering of Peace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21156","-1","","","","","Scarab Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21157","-1","","","","","Festive Green Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21158","-1","","","","","Hive'Zora Scout Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21159","-1","","","","","Hive'Zora Scout Orders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21160","-1","","","","","Hive'Regal Scout Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21161","-1","","","","","Hive'Ashi Scout Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21162","-1","","","","","Bloated Oily Blackmouth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"21163","-1","","","","","Bloated Firefin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"21164","-1","","","","","Bloated Rockscale Cod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"21165","-1","","","","","Tactical Task Briefing VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8534","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21166","-1","","","","","Tactical Task Briefing VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8738","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21167","-1","","","","","Tactical Task Briefing VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8739","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21168","-1","","","","","Baby Shark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21171","-1","","","","","Filled Festive Mug","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21173","-1","","","","","Empty Festive Mug","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","132160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21174","-1","","","","","Empty Festive Mug","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21175","-1","","","","","The Scepter of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21176","-1","","","","","Black Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"21177","-1","","","","","Symbol of Kings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","37","3000","20","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21178","-1","","","","","Gloves of Earthen Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14231","71155","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","0" +"21179","-1","","","","","Band of Earthen Wrath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","0" +"21180","-1","","","","","Earthstrike","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21181","-1","","","","","Grace of Earth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21182","-1","","","","","Band of Earthen Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","0" +"21183","-1","","","","","Earthpower Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25495","127478","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","0" +"21184","-1","","","","","Deeprock Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14425","72126","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","10","8","0","0","0","0","0","0","0","0" +"21185","-1","","","","","Earthcalm Orb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","0","0","0","0","0","0","0","0","0","0" +"21186","-1","","","","","Rockfury Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14533","72667","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1535","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","7","0","0","0","0","0","0","0","0","0","0" +"21187","-1","","","","","Earthweave Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16409","82046","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","0" +"21188","-1","","","","","Fist of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111220","556103","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21189","-1","","","","","Might of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","0","0","0","0","0","0","0","0","0","0" +"21190","-1","","","","","Wrath of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21191","-1","","","","","Carefully Wrapped Present","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21192","-1","","","","","Monster - Axe, 2H UBER Blackwing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21193","-1","","","","","D'Sak's Sack","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","30","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21194","-1","","","","","D'Sak's Big Sack","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","32","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21195","-1","","","","","D'Sak's Sacktastic","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","36","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21196","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","18","10","0","0","0","0","0","0","0","0","60" +"21197","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","19","11","0","0","0","0","0","0","0","0","60" +"21198","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","21","12","0","0","0","0","0","0","0","0","60" +"21199","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","22","12","0","0","0","0","0","0","0","0","60" +"21200","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","24","13","0","0","0","0","0","0","0","0","60" +"21201","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","18","8","0","0","0","0","0","0","0","0","60" +"21202","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","19","9","0","0","0","0","0","0","0","0","60" +"21203","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","21","11","0","0","0","0","0","0","0","0","60" +"21204","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","22","11","0","0","0","0","0","0","0","0","60" +"21205","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","24","13","0","0","0","0","0","0","0","0","60" +"21206","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","7","6","0","0","0","0","0","0","0","0","60" +"21207","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","8","7","0","0","0","0","0","0","0","0","60" +"21208","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21209","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21210","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","9","8","0","0","0","0","0","0","0","0","60" +"21211","-1","This strange dust should allow Metzen to be freed when sprinkled on him.","","","","Pouch of Reindeer Dust","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21212","-1","","","","","Fresh Holly","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"21213","-1","","","","","Preserved Holly","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"21214","-1","","","","","Tome of Frostbolt XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21215","-1","Preserved with Graccu's special spices! It'll be a very long time before these turn bad...","","","","Graccu's Mince Meat Fruitcake","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"21216","-1","","","","","Smokywood Pastures Extra-Special Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21217","-1","","","","","Sagefish Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"21218","-1","","","","","Blue Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21219","-1","","","","","Recipe: Sagefish Delight","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21220","-1","","","","","Head of Ossirian the Unscarred","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8791","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21221","-1","","","","","Eye of C'Thun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8801","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21222","-1","","","","","Armored Chitin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1750","7000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21223","-1","","","","","Black Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21224","-1","","","","","Ancient Armor Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21225","-1","","","","","Heavy Silithid Husk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21226","-1","","","","","Runic Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21227","-1","","","","","Ancient Hero's Skull","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7500","30000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21228","-1","","","","","Mithril Bound Trunk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21229","-1","","","","","Qiraji Lord's Insignia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21230","-1","","","","","Ancient Qiraji Artifact","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8784","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"21232","-1","Ceremonial Armaments of the Qiraji Lords. Used by Qiraji infantry.","","","","Imperial Qiraji Armaments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21235","-1","","","","","Winter Veil Roast","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21236","-1","","","","","Winter Veil Loaf","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21237","-1","Regalia of Qiraji Nobility. Used by Qiraji spell casters.","","","","Imperial Qiraji Regalia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21238","-1","","","","","Winter Veil Cookie UNUSED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21240","-1","","","","","Winter Veil Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21241","-1","","","","","Winter Veil Eggnog","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21242","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji War Axe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164024","820121","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","79","32767","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","9","0","0","0","0","0","0","0","0","60" +"21243","-1","","","","","Bloated Mightfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21244","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Pugio","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","165247","826238","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","79","32767","0","0","72","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"21245","-1","","","","","Tactical Task Briefing I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8737","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21246","-1","","","","","Combat Task Briefing I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8770","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"21247","-1","","","","","Combat Task Briefing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8771","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"21248","-1","","","","","Combat Task Briefing IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8773","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21249","-1","","","","","Combat Task Briefing V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8539","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21250","-1","","","","","Combat Task Briefing VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8772","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21251","-1","","","","","Combat Task Briefing VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8687","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21252","-1","","","","","Combat Task Briefing VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8774","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21253","-1","","","","","Combat Task Briefing IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8775","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21254","-1","Fresh from the oven","","","","Winter Veil Cookie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21255","-1","","","","","Combat Task Briefing X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8776","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21256","-1","","","","","Combat Task Briefing XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8777","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21257","-1","","","","","Logistics Task Briefing IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8778","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21258","-1","","","","","Logistics Task Briefing IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8785","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21259","-1","","","","","Logistics Task Briefing V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8779","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21260","-1","","","","","Logistics Task Briefing VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8781","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21261","-1","","","","","Logistics Task Briefing VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8786","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21262","-1","","","","","Logistics Task Briefing VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8782","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21263","-1","","","","","Logistics Task Briefing VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8780","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21264","-1","","","","","Logistics Task Briefing VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8787","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21265","-1","","","","","Logistics Task Briefing IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8783","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21266","-1","","","","","Logistics Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21267","-1","","","","","Toasting Goblet","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21268","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji War Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","172135","860679","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","79","32767","0","0","89","0","0","0","0","166","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","10","0","0","0","0","0","0","0","0","60" +"21269","-1","The shield is infused and reinforced with Elementium.","","","","Blessed Qiraji Bulwark","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","110563","552819","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","32767","0","0","0","0","0","0","0","0","0","0","0","0","2964","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","20","0","0","0","0","0","0","0","0","0","60" +"21270","-1","","","","","Gently Shaken Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21271","-1","","","","","Gently Shaken Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21272","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Musket","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","130949","654748","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","79","32767","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","0","0","0","0","0","0","0","0","0","60" +"21273","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Acolyte Staff","1","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","219003","1095018","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","79","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","32","0","0","0","0","0","0","0","0","60" +"21274","-1","","","","","Test Stackable Items","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21275","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Augur Staff","1","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","199583","997918","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","79","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","23","0","0","0","0","0","0","0","0","60" +"21276","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Naturalist Staff UNUSED","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","210376","1051883","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","32767","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21277","-1","","","","","Tranquil Mechanical Yeti","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21278","-1","","","","","Stormshroud Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13212","66062","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","57" +"21279","-1","","","","","Tome of Fireball XII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21280","-1","","","","","Tome of Arcane Missiles VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21281","-1","","","","","Grimoire of Shadow Bolt X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21282","-1","","","","","Grimoire of Immolate VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21283","-1","","","","","Grimoire of Corruption VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21284","-1","","","","","Codex of Greater Heal V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21285","-1","","","","","Codex of Renew X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21286","-1","","","","","Monster - Axe, 2H Large Double Bladed, Gold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21287","-1","","","","","Codex of Prayer of Healing V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21288","-1","","","","","Libram: Blessing of Wisdom VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21289","-1","","","","","Libram: Blessing of Might VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21290","-1","","","","","Libram: Holy Light IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21291","-1","","","","","Tablet of Healing Wave X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21292","-1","","","","","Tablet of Strength of Earth Totem V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21293","-1","","","","","Tablet of Grace of Air Totem III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21294","-1","","","","","Book of Healing Touch XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21295","-1","","","","","Book of Starfire VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21296","-1","","","","","Book of Rejuvenation XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21297","-1","","","","","Manual of Heroic Strike IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21298","-1","","","","","Manual of Battle Shout VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21299","-1","","","","","Manual of Revenge VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21300","-1","","","","","Handbook of Backstab IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21301","-1","","","","","Green Helper Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21302","-1","","","","","Handbook of Deadly Poison V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21303","-1","","","","","Handbook of Feint V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21304","-1","","","","","Guide: Multi-Shot V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21305","-1","","","","","Red Helper Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21306","-1","","","","","Guide: Serpent Sting IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21307","-1","","","","","Guide: Aspect of the Hawk VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21308","-1","","","","","Jingling Bell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21309","-1","","","","","Snowman Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21310","-1","","","","","Gaily Wrapped Present","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21311","-1","","","","","Earth Warder's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8473","42365","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","0" +"21312","-1","","","","","Belt of the Den Watcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6377","31887","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","0" +"21313","-1","","","","","D'Sak's Small bag","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21314","-1","A collection of information related to the whereabouts of Metzen the reindeer, including both ransom notes.","","","","Metzen's Letters and Notes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2841","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21315","-1","Inside are the things you will need to rescue Metzen the Reindeer!","","","","Smokywood Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21316","-1","","","","","Leggings of the Ursa","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12407","62037","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21317","-1","","","","","Helm of the Pathfinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11675","58378","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21318","-1","","","","","Earth Warder's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7444","37221","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21319","-1","","","","","Gloves of the Pathfinder","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9339","46696","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","0" +"21320","-1","","","","","Vest of the Den Watcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22497","112489","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","12","0","0","0","0","0","0","0","0","0" +"21321","-1","","","","","Red Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21322","-1","","","","","Ursa's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15108","75541","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21323","-1","","","","","Green Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21324","-1","","","","","Yellow Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21325","-1","","","","","Mechanical Greench","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21326","-1","","","","","Defender of the Timbermaw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21327","-1","","","","","Ticking Present","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21328","-1","","","","","Wand of Holiday Cheer","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21329","-1","","","","","Conqueror's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53037","265185","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","81","1","0","0","0","0","0","0","0","0","0","0","0","0","739","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","29","34","0","0","0","0","0","0","0","60" +"21330","-1","","","","","Conqueror's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45987","229939","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","78","1","0","0","0","0","0","0","0","0","0","0","0","0","659","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","20","21","0","0","0","0","0","0","0","60" +"21331","-1","","","","","Conqueror's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100263","501319","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","88","1","0","0","0","0","0","0","0","0","0","0","0","0","985","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","34","38","0","0","0","0","0","0","0","60" +"21332","-1","","","","","Conqueror's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71529","357645","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","81","1","0","0","0","0","0","0","0","0","0","0","0","0","796","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","33","24","0","0","0","0","0","0","0","60" +"21333","-1","","","","","Conqueror's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46519","232596","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","78","1","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","21","23","0","0","0","0","0","0","0","60" +"21334","-1","","","","","Doomcaller's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101407","507039","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","88","256","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","17","7","23","0","0","0","0","0","0","0","60" +"21335","-1","","","","","Doomcaller's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46868","234344","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","78","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","11","4","20","0","0","0","0","0","0","0","60" +"21336","-1","","","","","Doomcaller's Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72615","363077","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","81","256","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","9","28","0","0","0","0","0","0","0","60" +"21337","-1","","","","","Doomcaller's Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54661","273306","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","81","256","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","6","27","0","0","0","0","0","0","0","60" +"21338","-1","","","","","Doomcaller's Footwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47395","236978","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","78","256","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","3","20","0","0","0","0","0","0","0","60" +"21339","-1","","","","","Doomcaller's Handwraps [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31715","158575","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21340","-1","","","","","Soul Pouch","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21341","-1","","","","","Felcloth Bag","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21342","-1","","","","","Core Felcloth Bag","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80000","320000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","28","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21343","-1","","","","","Enigma Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104850","524250","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","88","128","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","23","7","19","0","0","0","0","0","0","0","60" +"21344","-1","","","","","Enigma Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48453","242269","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","78","128","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","15","6","15","0","0","0","0","0","0","0","60" +"21345","-1","","","","","Enigma Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49895","249475","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","78","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","4","16","0","0","0","0","0","0","0","60" +"21346","-1","","","","","Enigma Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77286","386433","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","81","128","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","8","21","0","0","0","0","0","0","0","60" +"21347","-1","","","","","Enigma Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58170","290850","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","81","128","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","24","0","0","0","0","0","0","0","60" +"21348","-1","","","","","Tiara of the Oracle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52826","264132","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","81","16","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","16","22","0","0","0","0","0","0","0","60" +"21349","-1","","","","","Footwraps of the Oracle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45805","229029","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","78","16","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","12","20","0","0","0","0","0","0","0","60" +"21350","-1","","","","","Mantle of the Oracle","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45983","229915","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","78","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","8","21","0","0","0","0","0","0","0","60" +"21351","-1","","","","","Vestments of the Oracle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100253","501267","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","88","16","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","26","15","23","0","0","0","0","0","0","0","60" +"21352","-1","","","","","Trousers of the Oracle","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71514","357571","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","81","16","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","14","23","0","0","0","0","0","0","0","60" +"21353","-1","","","","","Genesis Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67301","336505","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","81","1024","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","12","15","22","12","22","0","0","0","0","0","60" +"21354","-1","","","","","Genesis Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58358","291793","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","78","1024","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","15","13","6","15","0","0","0","0","0","60" +"21355","-1","","","","","Genesis Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58580","292900","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","78","1024","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","12","14","6","14","0","0","0","0","0","60" +"21356","-1","","","","","Genesis Trousers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90751","453755","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","81","1024","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","12","22","9","22","0","0","0","0","0","60" +"21357","-1","","","","","Genesis Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128176","640883","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","88","1024","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","12","13","24","11","24","0","0","0","0","0","60" +"21358","-1","","","","","Pattern: Soul Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21359","511","","","","","Deathdealer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59459","297299","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","78","8","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","14","17","0","0","0","0","0","0","0","60" +"21360","-1","","","","","Deathdealer's Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69081","345409","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","81","8","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","25","27","0","0","0","0","0","0","0","60" +"21361","-1","","","","","Deathdealer's Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61483","307415","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","78","8","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","18","15","0","0","0","0","0","0","0","60" +"21362","-1","","","","","Deathdealer's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95240","476204","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","81","8","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","38","18","25","0","0","0","0","0","0","0","60" +"21363","-1","","","","","Festive Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21364","511","","","","","Deathdealer's Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134962","674813","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","88","8","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","19","28","0","0","0","0","0","0","0","60" +"21365","-1","","","","","Striker's Footguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75168","375840","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","78","4","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","31","8","6","16","0","0","0","0","0","0","60" +"21366","-1","","","","","Striker's Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86939","434695","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","18","10","26","0","0","0","0","0","0","60" +"21367","-1","","","","","Striker's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87626","438131","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","11","5","24","0","0","0","0","0","0","60" +"21368","-1","","","","","Striker's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105630","528153","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","14","10","22","0","0","0","0","0","0","60" +"21369","-1","","","","","Pattern: Felcloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21370","-1","","","","","Striker's Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149787","748937","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","88","4","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","15","7","26","0","0","0","0","0","0","60" +"21371","-1","","","","","Pattern: Core Felcloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21372","-1","","","","","Stormcaller's Diadem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80445","402226","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","81","64","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","8","12","22","12","22","0","0","0","0","0","60" +"21373","-1","","","","","Stormcaller's Footguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70067","350337","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","78","64","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","9","12","14","6","14","0","0","0","0","0","60" +"21374","-1","","","","","Stormcaller's Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152080","760402","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","88","64","0","0","0","0","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","10","11","24","11","24","0","0","0","0","0","60" +"21375","-1","","","","","Stormcaller's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108479","542399","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","81","64","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","9","12","22","12","22","0","0","0","0","0","60" +"21376","-1","","","","","Stormcaller's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70861","354305","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","78","64","0","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","10","10","13","6","15","0","0","0","0","0","60" +"21377","-1","These may be gathered for the Timbermaw furbolgs to earn their trust.","","","","Deadwood Headdress Feather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21378","-1","","","","","Logistics Task Briefing I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8804","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21379","-1","","","","","Logistics Task Briefing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8805","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21380","-1","","","","","Logistics Task Briefing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8806","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21381","-1","","","","","Logistics Task Briefing IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8809","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21382","-1","","","","","Logistics Task Briefing V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8807","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21383","-1","These may be gathered for the Timbermaw furbolgs to earn their trust.","","","","Winterfall Spirit Beads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21384","-1","","","","","Logistics Task Briefing VIII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8808","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21385","-1","","","","","Logistics Task Briefing X","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8810","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21386","-1","","","","","Followup Logistics Assignment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21387","-1","","","","","Avenger's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58153","290767","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","81","2","0","0","0","0","0","0","0","0","0","0","0","0","739","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","12","20","22","12","22","0","0","0","0","0","60" +"21388","-1","","","","","Avenger's Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45619","228095","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","78","2","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","18","14","6","18","0","0","0","0","0","60" +"21389","-1","","","","","Avenger's Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99463","497315","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","88","2","0","0","0","0","0","0","0","0","0","0","0","0","985","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","12","23","24","11","24","0","0","0","0","0","60" +"21390","-1","","","","","Avenger's Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70952","354763","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","81","2","0","0","0","0","0","0","0","0","0","0","0","0","796","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","21","22","9","22","0","0","0","0","0","60" +"21391","-1","","","","","Avenger's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46145","230729","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","78","2","0","0","0","0","0","0","0","0","0","0","0","0","659","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","18","13","6","15","0","0","0","0","0","60" +"21392","-1","","","","","Sickle of Unyielding Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","495","0","0","0","2100","0","0","0","70","1","0","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","6","9","0","0","0","0","0","0","0","60" +"21393","-1","","","","","Signet of Unyielding Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","14","0","0","0","0","0","0","0","0","60" +"21394","-1","","","","","Drape of Unyielding Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","67","1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","15","9","9","0","0","0","0","0","0","0","60" +"21395","-1","","","","","Blade of Eternal Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","506","0","0","0","2300","0","0","0","70","2","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","11","7","0","0","0","0","0","0","0","60" +"21396","-1","","","","","Ring of Eternal Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","12","11","0","0","0","0","0","0","0","60" +"21397","-1","","","","","Cape of Eternal Justice","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","67","2","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","13","12","0","0","0","0","0","0","0","60" +"21398","-1","","","","","Hammer of the Gathering Storm","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","502","0","0","0","2400","0","0","0","70","64","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","9","7","0","0","0","0","0","0","0","60" +"21399","-1","","","","","Ring of the Gathering Storm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","9","11","10","0","0","0","0","0","0","60" +"21400","-1","","","","","Cloak of the Gathering Storm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","67","64","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","10","11","0","0","0","0","0","0","0","60" +"21401","-1","","","","","Scythe of the Unseen Path","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","510","0","0","0","2400","0","0","0","70","4","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","9","0","0","0","0","0","0","0","0","60" +"21402","-1","","","","","Signet of the Unseen Path","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","11","8","0","0","0","0","0","0","0","60" +"21403","-1","","","","","Cloak of the Unseen Path","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","0","0","0","0","0","67","4","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","13","0","0","0","0","0","0","0","0","60" +"21404","-1","","","","","Dagger of Veiled Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","498","0","0","0","1800","0","0","0","70","8","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","7","0","0","0","0","0","0","0","0","60" +"21405","-1","","","","","Band of Veiled Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","498","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","11","8","0","0","0","0","0","0","0","60" +"21406","-1","","","","","Cloak of Veiled Shadows","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","498","0","0","0","0","0","0","0","67","8","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","18","0","0","0","0","0","0","0","0","60" +"21407","-1","","","","","Mace of Unending Life","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","494","0","0","0","2600","0","0","0","70","1024","0","0","93","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","7","11","10","0","0","0","0","0","0","60" +"21408","-1","","","","","Band of Unending Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","7","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","9","8","10","7","0","0","0","0","0","60" +"21409","-1","","","","","Cloak of Unending Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","0","0","0","0","0","67","1024","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","3","6","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","10","12","8","7","0","0","0","0","0","60" +"21410","-1","","","","","Gavel of Infinite Wisdom","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","508","0","0","0","2700","0","0","0","70","16","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","11","10","0","0","0","0","0","0","0","0","60" +"21411","-1","","","","","Ring of Infinite Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","508","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21412","-1","","","","","Shroud of Infinite Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","508","0","0","0","0","0","0","0","67","16","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","12","11","0","0","0","0","0","0","0","60" +"21413","-1","","","","","Blade of Vaulted Secrets","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","504","0","0","0","2300","0","0","0","70","128","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","16","8","0","0","0","0","0","0","0","0","60" +"21414","-1","","","","","Band of Vaulted Secrets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","504","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","9","0","0","0","0","0","0","0","0","0","60" +"21415","-1","","","","","Drape of Vaulted Secrets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","504","0","0","0","0","0","0","0","67","128","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","9","14","6","0","0","0","0","0","0","0","60" +"21416","-1","","","","","Kris of Unspoken Names","1","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557056","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1500","0","0","0","70","256","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","7","0","0","0","0","0","0","0","0","60" +"21417","-1","","","","","Ring of Unspoken Names","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21418","-1","","","","","Shroud of Unspoken Names","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","0","0","0","0","67","256","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","9","0","0","0","0","0","0","0","0","60" +"21419","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH LEGS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21420","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER CHEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21421","-1","","","","","AHNQIRAJ TEST ITEM C MAIL CHEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21422","-1","","","","","AHNQIRAJ TEST ITEM D PLATE CHEST","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21423","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER PANTS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21424","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER SHOULDER","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21425","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BELT","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21426","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER HELM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21427","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BOOTS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21428","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER GAUNTLETS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21429","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH BELT","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21430","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH ROBE","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21431","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH FEET","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21432","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BRACER","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21433","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH BRACER","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21434","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH HELM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21435","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH SHOULDERS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21436","-1","Seek out an Alliance Commendation Officer to exchange signets for recognition.","","","","Alliance Commendation Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21437","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH GLOVES","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21438","-1","Seek out an Horde Commendation Officer to exchange signets for recognition.","","","","Horde Commendation Signet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21439","-1","","","","","AHNQIRAJ TEST ITEM D PLATE HELM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21440","-1","","","","","AHNQIRAJ TEST ITEM D PLATE LEGS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21441","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BELT","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21442","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BOOTS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21443","-1","","","","","AHNQIRAJ TEST ITEM D PLATE SHOULDERS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21444","-1","","","","","AHNQIRAJ TEST ITEM D PLATE GLOVES","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21445","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BRACER","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21446","-1","","","","","AHNQIRAJ TEST ITEM C MAIL HELM","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21447","-1","","","","","AHNQIRAJ TEST ITEM C MAIL SHOULDERS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21448","-1","","","","","AHNQIRAJ TEST ITEM C MAIL LEGS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21449","-1","","","","","AHNQIRAJ TEST ITEM C MAIL BOOTS","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21450","-1","","","","","AHNQIRAJ TEST ITEM C MAIL GLOVES","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21451","-1","","","","","AHNQIRAJ TEST ITEM C MAIL BELT","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21452","-1","","","","","Staff of the Ruins","1","0","-11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147914","739573","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","72","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","23","24","14","0","0","0","0","0","0","0","60" +"21453","-1","","","","","Mantle of the Horusath","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35631","178158","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","610","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","19","12","0","0","0","0","0","0","0","60" +"21454","-1","","","","","Runic Stone Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53878","269394","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","19","12","0","0","0","0","0","0","0","60" +"21455","-1","","","","","Southwind Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37098","185491","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","24","14","0","0","0","0","0","0","0","60" +"21456","-1","","","","","Sandstorm Cloak","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36024","180124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","0","0","0","0","0","0","0","0","60" +"21457","-1","","","","","Bracers of Brutality","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24104","120523","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","12","9","0","0","0","0","0","0","0","60" +"21458","-1","","","","","Gauntlets of New Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31027","155135","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","11","0","0","0","0","0","0","0","60" +"21459","-1","","","","","Crossbow of Imminent Doom","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93411","467059","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","72","32767","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","5","5","0","0","0","0","0","0","0","60" +"21460","-1","","","","","Helm of Domination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37496","187484","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","21","11","0","0","0","0","0","0","0","60" +"21461","-1","","","","","Leggings of the Black Blizzard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45403","227016","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","16","8","14","0","0","0","0","0","0","0","60" +"21462","-1","","","","","Gloves of Dark Wisdom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22787","113936","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","0","0","0","0","0","0","0","0","60" +"21463","-1","","","","","Ossirian's Binding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34313","171566","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","19","10","0","0","0","0","0","0","0","60" +"21464","-1","","","","","Shackles of the Unscarred","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22963","114818","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","9","0","0","0","0","0","0","0","0","60" +"21465","-1","","","","","Monster - Axe, Insano","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21466","-1","","","","","Stinger of Ayamiss","1","0","-9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99935","499676","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","69","32767","0","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","9","0","0","0","0","0","0","0","0","60" +"21467","-1","","","","","Thick Silithid Chestguard","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50158","250790","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","208","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","21","15","0","0","0","0","0","0","0","60" +"21468","-1","","","","","Mantle of Maz'Nadir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28916","144582","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","15","7","0","0","0","0","0","0","0","60" +"21469","-1","","","","","Gauntlets of Southwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24185","120928","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","11","0","0","0","0","0","0","0","0","60" +"21470","-1","","","","","Cloak of the Savior","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29132","145660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","10","10","0","0","0","0","0","0","0","60" +"21471","-1","","","","","Talon of Furious Concentration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88787","355151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21472","-1","","","","","Dustwind Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30662","153313","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","15","29","18","0","0","0","0","0","0","0","60" +"21473","-1","","","","","Eye of Moam","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","82878","331515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21474","-1","","","","","Chitinous Shoulderguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37936","189683","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","11","7","0","0","0","0","0","0","0","60" +"21475","-1","","","","","Legplates of the Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40611","203057","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","670","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","18","18","10","0","0","0","0","0","0","60" +"21476","-1","","","","","Obsidian Scaled Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61136","305680","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","377","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","18","18","10","0","0","0","0","0","0","60" +"21477","-1","","","","","Ring of Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88503","354012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","60" +"21478","-1","","","","","Bow of Taut Sinew","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76570","382854","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","68","32767","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"21479","-1","","","","","Gauntlets of the Immovable","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20491","102457","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","15","0","0","0","0","0","0","0","0","60" +"21480","-1","","","","","Scaled Silithid Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29523","147616","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","18","8","7","0","0","0","0","0","0","60" +"21481","-1","","","","","Boots of the Desert Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26810","134053","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","14","0","0","0","0","0","0","0","60" +"21482","-1","","","","","Boots of the Fiery Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40551","202757","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","14","14","0","0","0","0","0","0","0","60" +"21483","-1","","","","","Ring of the Desert Winds","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75303","301215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","60" +"21484","-1","","","","","Helm of Regrowth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33900","169501","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","28","18","10","0","0","0","0","0","0","0","60" +"21485","-1","","","","","Buru's Skull Fragment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60674","303373","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","2575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","20","11","0","0","0","0","0","0","0","0","60" +"21486","-1","","","","","Gloves of the Swarm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19033","95166","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","11","10","0","0","0","0","0","0","60" +"21487","-1","","","","","Slimy Scaled Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28658","143293","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","6","0","0","0","0","0","0","0","60" +"21488","-1","Ouch","","","","Fetish of Chitinous Spikes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","67812","271251","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21489","-1","","","","","Quicksand Waders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27637","138189","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","11","0","0","0","0","0","0","0","60" +"21490","-1","","","","","Slime Kickers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28487","142438","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","12","12","0","0","0","0","0","0","0","60" +"21491","-1","","","","","Scaled Bracers of the Gorger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23826","119132","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","10","8","0","0","0","0","0","0","0","60" +"21492","-1","","","","","Manslayer of the Qiraji","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113287","566435","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","66","32767","0","0","180","0","0","0","0","270","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","20","15","0","0","0","0","0","0","0","60" +"21493","-1","","","","","Boots of the Vanguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34109","170547","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","11","22","0","0","0","0","0","0","0","60" +"21494","-1","","","","","Southwind's Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21845","109226","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","11","0","0","0","0","0","0","0","0","60" +"21495","-1","","","","","Legplates of the Qiraji Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35075","175375","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","644","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","13","0","0","0","0","0","0","0","0","60" +"21496","-1","","","","","Bracers of Qiraji Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17600","88002","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","12","0","0","0","0","0","0","0","0","60" +"21497","-1","","","","","Boots of the Qiraji General","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39919","199596","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","26","11","0","0","0","0","0","0","0","0","60" +"21498","-1","Still dripping with blood","","","","Qiraji Sacrificial Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","92593","462969","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","66","32767","0","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","0","0","0","0","0","0","0","0","0","60" +"21499","-1","","","","","Vestments of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37165","185827","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","14","8","0","0","0","0","0","0","0","60" +"21500","-1","","","","","Belt of the Inquisition","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17850","89252","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","0","0","0","0","0","0","0","0","60" +"21501","-1","","","","","Toughened Silithid Hide Gloves","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20262","101314","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","15","11","0","0","0","0","0","0","0","60" +"21502","-1","","","","","Sand Reaver Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24409","122049","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","11","7","0","0","0","0","0","0","0","60" +"21503","-1","","","","","Belt of the Sand Reaver","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16334","81672","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21504","-1","","","","","Charm of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","60" +"21505","-1","","","","","Choker of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","0","0","0","0","0","0","0","0","0","60" +"21506","-1","","","","","Pendant of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","14","0","0","0","0","0","0","0","0","60" +"21507","-1","","","","","Amulet of the Shifting Sands","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21508","-1","","","","","Mark of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21509","-1","","","","","Ahn'Qiraj War Effort Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21510","-1","","","","","Ahn'Qiraj War Effort Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21511","-1","","","","","Ahn'Qiraj War Effort Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21512","-1","","","","","Ahn'Qiraj War Effort Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21513","-1","","","","","Ahn'Qiraj War Effort Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21514","-1","","","","","Logistics Task Briefing XI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8829","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21515","-1","","","","","Mark of Remulos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21516","-1","","","","","Dagger of Spell Penetration - Fire 150 Resist (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59557","297788","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21517","-1","","","","","Gnomish Turban of Psychic Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42935","214679","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","17","0","0","0","0","0","0","0","0","60" +"21518","-1","","","","","Dagger of Spell Penetration - Frost 150 Resist (TEST)","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59978","299890","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21519","-1","","","","","Mistletoe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","1","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21520","-1","","","","","Ravencrest's Legacy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","151868","759340","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","76","32767","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","13","9","0","0","0","0","0","0","0","60" +"21521","-1","","","","","Runesword of the Red","1","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","137911","689558","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","76","32767","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","9","7","0","0","0","0","0","0","0","60" +"21522","-1","","","","","Shadowsong's Sorrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","142269","711347","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","76","32767","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","13","9","0","0","0","0","0","0","0","60" +"21523","-1","","","","","Fang of Korialstrasz","1","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","142805","714025","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","76","32767","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","9","13","0","0","0","0","0","0","0","60" +"21524","-1","","","","","Red Winter Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21525","-1","","","","","Green Winter Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21526","-1","","","","","Band of Icy Depths","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","828085","3312341","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","0","0","0","0","0","0","0","0","0","60" +"21527","-1","","","","","Darkwater Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60872","304360","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","117","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","17","17","0","0","0","0","0","0","0","0","60" +"21528","-1","","","","","Colossal Bag of Loot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32772","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21529","-1","","","","","Amulet of Shadow Shielding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90788","363154","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","7","0","0","0","0","0","0","0","0","60" +"21530","-1","","","","","Onyx Embedded Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92311","461556","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","30","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","23","17","0","0","0","0","0","0","0","60" +"21531","-1","","","","","Drake Tooth Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103030","412121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","7","0","0","0","0","0","0","0","0","60" +"21532","-1","","","","","Drudge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58116","290581","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","17","13","0","0","0","0","0","0","0","60" +"21533","-1","A tiny fragment of a very large insect.","","","","Colossus of Zora's Husk","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21534","-1","A tiny fragment of a very large insect.","","","","Colossus of Ashi's Husk","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21535","-1","A tiny fragment of a very large insect.","","","","Colossus of Regal's Husk","1","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21536","-1","","","","","Elune Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21537","-1","","","","","Festival Dumplings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21538","-1","","","","","Festive Pink Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21539","-1","","","","","Festive Purple Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21540","-1","A device said to capture the light shed by Elune herself.","","","","Elune's Lantern","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"21541","-1","","","","","Festive Black Pant Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21542","-1","","","","","Festival Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21543","-1","","","","","Festive Teal Pant Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21544","-1","","","","","Festive Blue Pant Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21545","-1","Use before 2010","","","","Smokywood Supplies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21546","-1","","","","","Elixir of Greater Firepower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"21547","-1","","","","","Recipe: Elixir of Greater Firepower","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21548","-1","","","","","Pattern: Stormshroud Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21549","-1","","","","","Monster - Shield, Shieldguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21550","-1","","","","","Monster - Bow, Kaldorei","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"21551","-1","","","","","Monster - Dagger, Alliance PvP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21552","-1","","","","","Striped Yellowtail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"21553","-1","","","","","Monster - Sword2H, Alliance PvP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21554","-1","","","","","Monster - Gun, PvP Horde","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"21555","-1","","","","","Monster - Mace2H, Alliance PvP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21557","-1","","","","","Small Red Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21558","-1","","","","","Small Blue Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21559","-1","","","","","Small Green Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21560","-1","","","","","Small Purple Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","10","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21561","-1","","","","","Small White Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21562","-1","","","","","Small Yellow Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21563","-1","","","","","Don Rodrigo's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1136","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","7","0","0","0","0","0","0","0","0","0","60" +"21564","-1","","","","","Monster - Gun, Kaldorei PVP Alliance","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"21565","-1","","","","","Rune of Perfection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-48","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","7","0","0","0","0","0","0","0","0","0","40" +"21566","-1","","","","","Rune of Perfection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-48","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","4","0","0","0","0","0","0","0","0","0","20" +"21567","-1","","","","","Rune of Duty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1521","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","7","0","0","0","0","0","0","0","0","0","40" +"21568","-1","","","","","Rune of Duty","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1521","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","4","0","0","0","0","0","0","0","0","0","20" +"21569","-1","","","","","Firework Launcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21570","-1","","","","","Cluster Launcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21571","-1","","","","","Blue Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21572","-1","","","","","Monster - Shield, Alliance PVP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21573","-1","","","","","Monster - Sword, 1H Alliance PvP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21574","-1","","","","","Green Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21575","-1","","","","","Purple Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21576","-1","","","","","Red Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21577","-1","","","","","White Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21578","-1","","","","","Yellow Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21579","-1","","","","","Vanquished Tentacle of C'Thun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","108030","432121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21580","-1","","","","","Monster - 2H Axe, Horde PvP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21581","-1","","","","","Gauntlets of Annihilation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50891","254455","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","15","0","0","0","0","0","0","0","0","60" +"21582","-1","","","","","Grasp of the Old God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51078","255391","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","15","0","0","0","0","0","0","0","0","60" +"21583","-1","","","","","Cloak of Clarity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76906","384530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","7","6","0","0","0","0","0","0","0","60" +"21584","-1","","","","","Bracers of Eternal Reckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77194","385973","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","20","0","0","0","0","0","0","0","0","60" +"21585","-1","","","","","Dark Storm Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51655","258277","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","19","0","0","0","0","0","0","0","0","60" +"21586","-1","","","","","Belt of Never-ending Agony","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66525","332629","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","0","0","0","0","0","0","0","0","0","60" +"21587","-1","","","","","Wristguards of Castigation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53413","267065","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","13","8","0","0","0","0","0","0","0","60" +"21588","-1","","","","","Wristguards of Elemental Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80408","402040","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","11","0","0","0","0","0","0","0","0","60" +"21589","-1","","","","","Large Blue Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21590","-1","","","","","Large Green Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21591","-1","","","","","Large Purple Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21592","-1","","","","","Large Red Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21593","-1","","","","","Large White Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21594","-1","","","","","Bracers of the Fallen Son","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61930","309652","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","10","0","0","0","0","0","0","0","0","60" +"21595","-1","","","","","Large Yellow Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21596","-1","","","","","Ring of the Godslayer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89033","356132","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","17","0","0","0","0","0","0","0","0","60" +"21597","-1","","","","","Royal Scepter of Vek'lor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","10","0","0","0","0","0","0","0","0","60" +"21598","-1","","","","","Royal Qiraji Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35753","178767","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","13","13","0","0","0","0","0","0","0","60" +"21599","-1","","","","","Vek'lor's Gloves of Devastation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53835","269176","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","17","0","0","0","0","0","0","0","60" +"21600","-1","","","","","Boots of Epiphany","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54040","270202","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","0","0","0","0","0","0","0","0","60" +"21601","-1","","","","","Ring of Emperor Vek'lor","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79025","316102","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","12","0","0","0","0","0","0","0","0","60" +"21602","-1","","","","","Qiraji Execution Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46595","232975","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","15","14","0","0","0","0","0","0","0","60" +"21603","-1","","","","","Wand of Qiraji Nobility","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121194","605972","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","78","32767","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","5","0","0","0","0","0","0","0","0","0","60" +"21604","-1","","","","","Bracelets of Royal Redemption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37549","187747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","9","8","0","0","0","0","0","0","0","60" +"21605","-1","","","","","Gloves of the Hidden Temple","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47103","235515","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","18","0","0","0","0","0","0","0","60" +"21606","-1","","","","","Belt of the Fallen Emperor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37819","189096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","17","18","13","0","0","0","0","0","0","60" +"21607","-1","","","","","Grasp of the Fallen Emperor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56933","284669","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","13","12","17","17","0","0","0","0","0","0","60" +"21608","-1","","","","","Amulet of Vek'nilash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","5","9","0","0","0","0","0","0","0","0","60" +"21609","-1","","","","","Regenerating Belt of Vek'nilash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47782","238910","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","13","16","0","0","0","0","0","0","0","60" +"21610","-1","","","","","Wormscale Blocker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122759","613799","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","3035","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21611","-1","","","","","Burrower Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38499","192495","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21612","-1","","","","","Wormscale Stompers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87308","436544","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","352","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","12","12","0","0","0","0","0","0","0","60" +"21613","-1","","","","","Wormhide Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72691","363459","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","32","18","13","0","0","0","0","0","0","0","60" +"21614","-1","","","","","Wormhide Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66012","330061","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","24","18","0","0","0","0","0","0","0","60" +"21615","-1","","","","","Don Rigoberto's Lost Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53014","265074","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"21616","-1","","","","","Huhuran's Stinger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","114921","574608","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","78","32767","0","0","87","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","18","0","0","0","0","0","0","0","0","0","60" +"21617","-1","","","","","Wasphide Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38454","192274","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","15","14","0","0","0","0","0","0","0","60" +"21618","-1","","","","","Hive Defiler Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31727","158639","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","18","0","0","0","0","0","0","0","0","60" +"21619","-1","","","","","Gloves of the Messiah","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31846","159230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","13","0","0","0","0","0","0","0","0","60" +"21620","-1","","","","","Ring of the Martyr","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88661","354646","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"21621","-1","","","","","Cloak of the Golden Hive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48118","240593","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","19","13","10","0","0","0","0","0","0","0","60" +"21622","-1","Recently devoured","","","","Sharpened Silithid Femur","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","160986","804930","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","78","32767","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","14","0","0","0","0","0","0","0","0","60" +"21623","-1","","","","","Gauntlets of the Righteous Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32315","161576","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","13","17","10","0","0","0","0","0","0","60" +"21624","-1","","","","","Gauntlets of Kalimdor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48645","243226","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","13","10","15","0","0","0","0","0","0","60" +"21625","-1","","","","","Scarab Brooch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83030","332121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21626","-1","","","","","Slime-coated Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97999","489997","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","28","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","16","0","0","0","0","0","0","0","0","60" +"21627","-1","","","","","Cloak of Untold Secrets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46830","234152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","21","0","0","0","0","0","0","0","0","0","60" +"21628","-1","","","","","Test AQ Resource - Copper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21629","-1","","","","","Test AQ Resource - Iron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21630","-1","","","","","Test AQ Resource - Thorium","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21631","-1","","","","","Test AQ Resource - Light Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21632","-1","","","","","Test AQ Resource - Medium Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21633","-1","","","","","Test AQ Resource - Thick Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21634","-1","","","","","Test AQ Resource - Linen Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21635","-1","","","","","Barb of the Sand Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","186728","933643","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","77","32767","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","31","0","0","0","0","0","0","0","0","60" +"21636","-1","","","","","Test AQ Resource - Silk Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21637","-1","","","","","Test AQ Resource - Runecloth Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21638","-1","","","","","Test AQ Resource - Spotted Yellowtail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21639","-1","","","","","Pauldrons of the Unrelenting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45485","227426","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","650","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","11","0","0","0","0","0","0","0","0","60" +"21640","-1","Filled with fireworks to celebrate the Lunar Festival in style!","","","","Lunar Festival Fireworks Pack","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21641","-1","","","","","Test AQ Resource - Rainbow Fin Albacore","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21642","-1","","","","","Test AQ Resource - Roast Raptor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21643","-1","","","","","Test AQ Resource - Arthas' Tear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21644","-1","","","","","Test AQ Resource - Stranglekelp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21645","-1","","","","","Hive Tunneler's Boots","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58116","290581","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","17","10","0","0","0","0","0","0","0","60" +"21646","-1","","","","","Test AQ Resource - Purple Lotus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21647","-1","","","","","Fetish of the Sand Reaver","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86370","345481","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21648","-1","","","","","Recomposed Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44756","223784","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","13","0","0","0","0","0","0","0","0","60" +"21649","-1","","","","","Test AQ Resource - Tin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21650","-1","","","","","Ancient Qiraji Ripper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146570","732853","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","77","32767","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","11","0","0","0","0","0","0","0","0","0","60" +"21651","-1","","","","","Scaled Sand Reaver Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88279","441399","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","10","0","0","0","0","0","0","0","0","60" +"21652","-1","","","","","Silithid Carapace Chestguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59078","295391","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","867","0","0","35","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","17","14","0","0","0","0","0","0","0","60" +"21653","-1","","","","","Test AQ Resource - Mithril","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21655","-1","","","","","Test AQ Resource - Heavy Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21656","-1","","","","","Test AQ Resource - Rugged Leather","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21657","-1","","","","","Test AQ Resource - Wool Bandages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21658","-1","","","","","Test AQ Resource - Mageweave Bandages","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21659","-1","","","","","Test AQ Resource - Lean Wolf Steak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21660","-1","","","","","Test AQ Resource - Baked Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21661","-1","","","","","Test AQ Resource - Firebloom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21662","-1","","","","","Test AQ Resource - Peacebloom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21663","-1","","","","","Robes of the Guardian Saint","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61534","307673","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","22","0","0","0","0","0","0","0","0","60" +"21664","-1","","","","","Barbed Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","0","0","0","0","0","0","0","0","0","60" +"21665","-1","","","","","Mantle of Wicked Revenge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58104","290524","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","16","14","0","0","0","0","0","0","0","60" +"21666","-1","","","","","Sartura's Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91352","365411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","6","6","0","0","0","0","0","0","0","0","60" +"21667","-1","","","","","Legplates of Blazing Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55193","275968","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","749","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","9","23","17","0","0","0","0","0","0","0","60" +"21668","-1","","","","","Scaled Leggings of Qiraji Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83111","415559","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","422","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","20","0","0","0","0","0","0","0","0","60" +"21669","-1","","","","","Creeping Vine Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52140","260701","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","23","17","0","0","0","0","0","0","0","60" +"21670","-1","","","","","Badge of the Swarmguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80303","321213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21671","-1","","","","","Robes of the Battleguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56044","280224","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","23","17","8","0","0","0","0","0","0","0","60" +"21672","-1","","","","","Gloves of Enforcement","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35158","175791","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","28","6","0","0","0","0","0","0","0","60" +"21673","-1","","","","","Silithid Claw","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141169","705846","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","76","32767","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21674","-1","","","","","Gauntlets of Steadfast Determination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28340","141704","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","18","0","0","0","0","0","0","0","60" +"21675","-1","","","","","Thick Qirajihide Belt","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35560","177800","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","17","10","0","0","0","0","0","0","0","60" +"21676","-1","","","","","Leggings of the Festering Swarm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57104","285523","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","17","0","0","0","0","0","0","0","0","60" +"21677","-1","","","","","Ring of the Qiraji Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","96853","387414","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21678","-1","","","","","Necklace of Purity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99641","398564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","9","0","0","0","0","0","0","0","0","60" +"21679","-1","","","","","Kalimdor's Revenge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","230318","1151594","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","81","32767","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","18","0","0","0","0","0","0","0","0","60" +"21680","-1","","","","","Vest of Swift Execution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79870","399352","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","41","21","20","0","0","0","0","0","0","0","60" +"21681","-1","","","","","Ring of the Devoured","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91369","365478","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21682","-1","","","","","Bile-Covered Gauntlets","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40230","201152","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","21","10","0","0","0","0","0","0","0","60" +"21683","-1","","","","","Mantle of the Desert Crusade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45100","225500","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","642","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","17","10","6","0","0","0","0","0","0","60" +"21684","-1","","","","","Mantle of the Desert's Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68186","340931","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","17","6","0","0","0","0","0","0","0","60" +"21685","-1","","","","","Petrified Scarab","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87120","348481","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21686","-1","","","","","Mantle of Phrenic Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45577","227888","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","20","0","0","0","0","0","0","0","0","60" +"21687","-1","","","","","Ukko's Ring of Darkness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","102995","411981","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","0","0","0","0","0","0","0","0","0","60" +"21688","-1","","","","","Boots of the Fallen Hero","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39568","197844","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","14","22","0","0","0","0","0","0","0","60" +"21689","-1","","","","","Gloves of Ebru","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33101","165507","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","0","0","0","0","0","0","0","0","60" +"21690","-1","","","","","Angelista's Charm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73749","294997","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","13","0","0","0","0","0","0","0","0","60" +"21691","-1","","","","","Ooze-ridden Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26682","133412","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","13","0","0","0","0","0","0","0","0","60" +"21692","-1","","","","","Triad Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26784","133922","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","19","17","0","0","0","0","0","0","0","60" +"21693","-1","","","","","Guise of the Devourer","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50412","252062","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","19","17","0","0","0","0","0","0","0","60" +"21694","-1","","","","","Ternary Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40482","202414","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","20","12","0","0","0","0","0","0","0","60" +"21695","-1","","","","","Angelista's Touch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","90277","361110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","11","0","0","0","0","0","0","0","0","60" +"21696","-1","","","","","Robes of the Triumvirate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54379","271899","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","21","0","0","0","0","0","0","0","0","60" +"21697","-1","","","","","Cape of the Trinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40937","204689","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","12","0","0","0","0","0","0","0","0","60" +"21698","-1","","","","","Leggings of Immersion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62117","310589","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","15","0","0","0","0","0","0","0","0","60" +"21699","-1","","","","","Barrage Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57856","289280","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","22","0","0","0","0","0","0","0","0","60" +"21700","-1","","","","","Pendant of the Qiraji Guardian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90535","362141","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","12","11","0","0","0","0","0","0","0","60" +"21701","-1","","","","","Cloak of Concentrated Hatred","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38677","193388","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","11","15","0","0","0","0","0","0","0","60" +"21702","-1","","","","","Amulet of Foul Warding","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78630","314520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21703","-1","","","","","Hammer of Ji'zhi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162298","811491","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","73","32767","0","0","198","0","0","0","0","297","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","26","16","0","0","0","0","0","0","0","60" +"21704","-1","","","","","Boots of the Redeemed Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39090","195452","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","15","16","15","0","0","0","0","0","0","60" +"21705","-1","","","","","Boots of the Fallen Prophet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59105","295526","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","319","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","15","15","15","0","0","0","0","0","0","60" +"21706","-1","","","","","Boots of the Unwavering Will","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39364","196821","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","12","8","0","0","0","0","0","0","0","60" +"21707","-1","","","","","Ring of Swarming Thought","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85399","341597","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21708","-1","","","","","Beetle Scaled Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29905","149526","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","12","0","0","0","0","0","0","0","0","60" +"21709","-1","","","","","Ring of the Fallen God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113642","454568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","5","0","0","0","0","0","0","0","0","60" +"21710","-1","","","","","Cloak of the Fallen God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75174","375872","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","26","11","15","0","0","0","0","0","0","0","60" +"21711","-1","","","","","Lunar Festival Invitation","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21712","-1","","","","","Amulet of the Fallen God","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115200","460801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","0","0","0","0","0","0","0","0","0","60" +"21713","-1","","","","","Elune's Candle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21714","-1","","","","","Large Blue Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21715","-1","","","","","Sand Polished Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","120142","600711","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","72","32767","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"21716","-1","","","","","Large Green Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21717","-1","","","","","Large Purple Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21718","-1","","","","","Large Red Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21719","-1","","","","","Large White Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21720","-1","","","","","Large Yellow Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21721","-1","","","","","Moonglow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21722","-1","","","","","Pattern: Festival Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21723","-1","","","","","Pattern: Festival Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21724","-1","","","","","Schematic: Small Blue Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21725","-1","","","","","Schematic: Small Green Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21726","-1","","","","","Schematic: Small Red Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21727","-1","","","","","Schematic: Large Blue Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21728","-1","","","","","Schematic: Large Green Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21729","-1","","","","","Schematic: Large Red Rocket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21730","-1","","","","","Schematic: Blue Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21731","-1","","","","","Schematic: Green Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21732","-1","","","","","Schematic: Red Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21733","-1","","","","","Schematic: Large Blue Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21734","-1","","","","","Schematic: Large Green Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21735","-1","","","","","Schematic: Large Red Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21736","-1","","","","","Riding Gryphon Reins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21737","-1","","","","","Schematic: Cluster Launcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21738","-1","","","","","Schematic: Firework Launcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21739","-1","","","","","Lunar Festival Invitation DEBUG","1","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21740","-1","","","","","Small Rocket Recipes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21741","-1","","","","","Cluster Rocket Recipes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21742","-1","","","","","Large Rocket Recipes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21743","-1","","","","","Large Cluster Rocket Recipes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21744","-1","","","","","Lucky Rocket Cluster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21745","-1","","","","","Elder's Moonstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21746","-1","","","","","Lucky Red Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21747","-1","","","","","Festival Firecracker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21749","-1","","","","","Combat Task Briefing I","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8770","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21750","-1","","","","","Combat Task Briefing II","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8771","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21751","-1","","","","","Tactical Task Briefing III","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8536","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21761","-1","","","","","Scarab Coffer Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21762","-1","","","","","Greater Scarab Coffer Key","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21782","-1","","","","","2000 Test sword 63 blue","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54922","274611","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21794","-1","","","","","Monster - Sword2H, Ahn'Qiraj","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21795","-1","","","","","Monster - Staff, Ahn'Qiraj","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21796","-1","","","","","Monster - Item, Ahn'Qiraj Held Scepter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21800","-1","","","","","Silithid Husked Launcher","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52522","262613","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","32767","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","10","4","0","0","0","0","0","0","0","0","60" +"21801","-1","","","","","Antenna of Invigoration","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52726","263632","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","68","32767","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","60" +"21802","-1","","","","","The Lost Kris of Zedd","1","0","-3.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70573","352869","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","68","32767","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","60" +"21803","-1","","","","","Helm of the Holy Avenger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21253","106268","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","574","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21804","-1","","","","","Coif of Elemental Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31999","159998","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21805","-1","","","","","Polished Obsidian Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21414","107073","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","17","0","0","0","0","0","0","0","0","60" +"21806","-1","","","","","Gavel of Qiraji Authority","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103686","518430","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","71","32767","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","15","15","0","0","0","0","0","0","0","60" +"21809","-1","","","","","Fury of the Forgotten Swarm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48655","194623","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","0","0","0","0","0","0","0","0","0","60" +"21810","-1","","","","","Treads of the Wandering Nomad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25259","126299","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","60" +"21811","-1","","","","","[PH] Object of Affection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21812","-1","","","","","Box of Chocolates","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21813","-1","","","","","Bag of Candies","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21814","-1","","","","","Breastplate of Annihilation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51570","257851","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","824","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","13","0","0","0","0","0","0","0","0","60" +"21815","-1","A small message of affection...","","","","Love Token","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","10","10","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21816","-1","Be mine!","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21817","-1","I LOVE YOU","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21818","-1","I'll follow you all around Azeroth.","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21819","-1","All yours.","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21820","-1","You're the best!","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21821","-1","I'm all yours!","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21822","-1","You're mine!","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21823","-1","Hot lips.","","","","Heart Candy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21829","-1","","","","","Perfume Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21830","-1","This one is missing...","","","","Empty Wrapper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21831","-1","","","","","Wrappered Gift","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21833","-1","","","","","Cologne Bottle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21836","-1","","","","","Ritssyn's Ring of Chaos","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","96853","387414","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","0","0","0","0","0","0","0","0","0","60" +"21837","-1","","","","","Anubisath Warhammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","118175","590879","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","71","32767","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"21838","-1","","","","","Garb of Royal Ascension","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47433","237168","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","0","0","0","0","0","0","0","0","0","60" +"21839","-1","","","","","Scepter of the False Prophet","1","0","-24.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","224399","1121998","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","84","32767","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","19","0","0","0","0","0","0","0","0","60" +"21856","-1","","","","","Neretzek, The Blood Drinker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147180","735904","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","71","32767","0","0","202","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","21","16","0","0","0","0","0","0","0","0","60" +"21857","-1","","","","","Test Herb Bag","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21888","-1","","","","","Gloves of the Immortal","1","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22875","114375","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","16","0","0","0","0","0","0","0","0","60" +"21889","-1","","","","","Gloves of the Redeemed Prophecy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27906","139534","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","2","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","12","0","0","0","0","0","0","0","60" +"21890","-1","","","","","Gloves of the Fallen Prophet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42013","210067","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","64","0","0","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","17","12","0","0","0","0","0","0","0","60" +"21891","-1","","","","","Shard of the Fallen Star","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99378","397512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21920","-1","","","","","Creased Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21921","-1","","","","","Carefully Penned Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21923","-1","","","","","[PH] Picnic Parcel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21925","-1","","","","","Immaculate Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21926","-1","","","","","Slightly Creased Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21928","-1","","","","","Winterspring Blood Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21930","-1","","","","","[PH] Valentine Lockbox, Quest, Common","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21935","-1","","","","","Stable Ectoplasm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21936","-1","","","","","Frozen Ectoplasm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21937","-1","","","","","Scorched Ectoplasm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21938","-1","","","","","Magma Core","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21939","-1","Fel and Elemental, two great tastes...","","","","Fel Elemental Rod","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21946","-1","","","","","Ectoplasmic Distiller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21960","-1","","","","","Handmade Woodcraft","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21962","-1","","","","","[PH] Valentine Quest Item, UncommonStormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21963","-1","","","","","[PH] Valentine Quest Item, UncommonIronforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21964","-1","","","","","[PH] Valentine Quest Item, UncommonDarnassus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21975","-1","","","","","Pledge of Adoration: Stormwind","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21979","-1","","","","","Gift of Adoration: Darnassus","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21980","-1","","","","","Gift of Adoration: Ironforge","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21981","-1","","","","","Gift of Adoration: Stormwind","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21982","-1","","","","","Ogre Warbeads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21983","-1","","","","","Incomplete Banner of Provocation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21984","-1","The evil trapped within this fragment seems to be growing stronger...","","","","Left Piece of Lord Valthalak's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21985","-1","","","","","Sealed Blood Container","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21986","-1","","","","","Banner of Provocation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21987","-1","This still-smoldering chunk of Lord Incendius will make for an excellent coal.","","","","Incendicite of Incendius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21988","-1","This one's far too hot to touch... better wrap it in something nonflammable!","","","","Ember of Emberseer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21989","-1","This visceral chunk of the Duke burns on, fueled by his hatred for you.","","","","Cinder of Cynders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21994","-1","","","","","Belt of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12476","62380","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","12","9","0","0","0","0","0","0","0","0" +"21995","-1","","","","","Boots of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19624","98121","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","20","0","0","0","0","0","0","0","0","0" +"21996","-1","","","","","Bracers of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12568","62843","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","9","5","0","0","0","0","0","0","0","0" +"21997","-1","","","","","Breastplate of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26359","131796","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","684","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","21","13","0","0","0","0","0","0","0","0" +"21998","-1","","","","","Gauntlets of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10074","50372","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","12","0","0","0","0","0","0","0","0","0" +"21999","-1","","","","","Helm of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19916","99583","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","32","18","0","0","0","0","0","0","0","0","0" +"22000","-1","","","","","Legplates of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26786","133931","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","16","11","0","0","0","0","0","0","0","0" +"22001","-1","","","","","Spaulders of Heroism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19203","96017","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","12","12","0","0","0","0","0","0","0","0" +"22002","-1","","","","","Darkmantle Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16061","80308","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","13","10","0","0","0","0","0","0","0","0" +"22003","-1","","","","","Darkmantle Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25261","126307","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","10","0","0","0","0","0","0","0","0","0" +"22004","-1","","","","","Darkmantle Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16598","82990","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","7","0","0","0","0","0","0","0","0" +"22005","-1","","","","","Darkmantle Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26102","130510","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","18","13","0","0","0","0","0","0","0","0" +"22006","-1","","","","","Darkmantle Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12034","60174","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","12","9","0","0","0","0","0","0","0","0" +"22007","-1","","","","","Darkmantle Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31889","159448","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","15","15","0","0","0","0","0","0","0","0" +"22008","-1","","","","","Darkmantle Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22864","114320","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","10","0","0","0","0","0","0","0","0","0" +"22009","-1","","","","","Darkmantle Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31970","159854","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","15","0","0","0","0","0","0","0","0","0" +"22010","-1","","","","","Beastmaster's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18432","92160","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","16","10","0","0","0","0","0","0","0","0" +"22011","-1","","","","","Beastmaster's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18500","92503","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","7","5","0","0","0","0","0","0","0","0" +"22013","-1","","","","","Beastmaster's Cap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29212","146062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","21","12","0","0","0","0","0","0","0","0" +"22014","-1","","","","","Hallowed Brazier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","333333","1333333","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22015","-1","","","","","Beastmaster's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14941","74709","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","12","10","0","0","0","0","0","0","0","0" +"22016","-1","","","","","Beastmaster's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28402","142012","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","12","10","0","0","0","0","0","0","0","0" +"22017","-1","","","","","Beastmaster's Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39735","198677","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","14","9","0","0","0","0","0","0","0","0" +"22020","-1","","","","","QAEnchant Weapon +15 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22021","-1","","","","","QAEnchant Weapon +22 Intellect","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22022","-1","","","","","QAEnchant Weapon +15 Strength","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22023","-1","","","","","QAEnchant Weapon +20 Spirit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22024","-1","","","","","QAEnchant Weapon Unholy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22025","-1","","","","","QAEnchant Weapon Lifestealing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22026","-1","","","","","zzOLD - QAEnchant 2H Weapon +9 Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22027","-1","","","","","zzOLD - QAEnchant Weapon +5 Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22028","-1","","","","","QAEnchant Chest +4 Stats","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22029","-1","","","","","QAEnchant Gloves +20 Frost Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22030","-1","","","","","QAEnchant Gloves +20 Fire Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22031","-1","","","","","QAEnchant Gloves +20 Shadow Damage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22032","-1","","","","","QAEnchant Gloves +30 Healing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22033","-1","","","","","QAEnchant Gloves +15 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22034","-1","","","","","QAEnchant Gloves +2% Threat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22035","-1","","","","","QAEnchant Gloves +5 Skinning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22036","-1","","","","","QAEnchant Bracer +4 Mana5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22037","-1","","","","","QAEnchant Bracer +24 Healing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22038","-1","","","","","QAEnchant Shield +2% Block Chance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22039","-1","","","","","QAEnchant Cloak +15 Fire Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22040","-1","","","","","QAEnchant Cloak +15 Nature Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22041","-1","","","","","QAEnchant Cloak +8 Stealth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22042","-1","","","","","QAEnchant Cloak -2% Threat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22043","-1","","","","","QAEnchant Cloak +1% Dodge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22045","-1","","","","","Test QARaid Uber Ammo Lockbox","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22046","-1","This section of the amulet vibrates with a palpable fervor to be rejoined with its sibling pieces.","","","","Right Piece of Lord Valthalak's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22047","-1","This object feels wrong to the touch, as if an evil within is trying to escape.","","","","Top Piece of Lord Valthalak's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22048","-1","Reunited into its whole form, the amulet pulses strongly with the evil spirit of Lord Valthalak.","","","","Lord Valthalak's Amulet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22049","-1","","","","","Brazier of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22050","-1","","","","","Brazier of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22051","-1","","","","","Brazier of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22052","-1","","","","","Brazier of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22056","-1","","","","","Brazier of Beckoning","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22057","-1","","","","","Brazier of Invocation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22058","-1","","","","","Valentine's Day Stationery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","6","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22059","-1","","","","","Valentine's Day Card","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","6","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22060","-1","","","","","Beastmaster's Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41015","205076","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","16","13","0","0","0","0","0","0","0","0" +"22061","-1","","","","","Beastmaster's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31009","155045","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","9","0","0","0","0","0","0","0","0","0" +"22062","-1","","","","","Sorcerer's Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13180","65903","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","7","12","0","0","0","0","0","0","0","0" +"22063","-1","","","","","Sorcerer's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13227","66138","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","5","8","0","0","0","0","0","0","0","0" +"22064","-1","","","","","Sorcerer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20800","104000","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","16","14","0","0","0","0","0","0","0","0" +"22065","-1","","","","","Sorcerer's Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20873","104368","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","14","16","0","0","0","0","0","0","0","0" +"22066","-1","","","","","Sorcerer's Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9623","48119","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","14","12","0","0","0","0","0","0","0","0" +"22067","-1","","","","","Sorcerer's Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25501","127505","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","22","17","0","0","0","0","0","0","0","0" +"22068","-1","","","","","Sorcerer's Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18788","93941","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","7","11","0","0","0","0","0","0","0","0" +"22069","-1","","","","","Sorcerer's Robes","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26269","131345","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","9","14","0","0","0","0","0","0","0","0" +"22070","-1","","","","","Deathmist Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12619","63097","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","16","0","0","0","0","0","0","0","0","0" +"22071","-1","","","","","Deathmist Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12666","63332","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","12","0","0","0","0","0","0","0","0","0" +"22072","-1","","","","","Deathmist Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26695","133478","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","22","0","0","0","0","0","0","0","0","0" +"22073","-1","","","","","Deathmist Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19138","95693","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","16","0","0","0","0","0","0","0","0","0" +"22074","-1","","","","","Deathmist Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20067","100339","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","24","0","0","0","0","0","0","0","0","0" +"22075","-1","","","","","Deathmist Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26852","134263","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","27","0","0","0","0","0","0","0","0","0" +"22076","-1","","","","","Deathmist Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20213","101065","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","14","0","0","0","0","0","0","0","0","0" +"22077","-1","","","","","Deathmist Wraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10299","51498","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","13","0","0","0","0","0","0","0","0","0" +"22078","-1","","","","","Virtuous Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12992","64964","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","12","12","0","0","0","0","0","0","0","0" +"22079","-1","","","","","Virtuous Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13038","65192","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","8","8","0","0","0","0","0","0","0","0" +"22080","-1","","","","","Virtuous Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20505","102528","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","16","0","0","0","0","0","0","0","0" +"22081","-1","","","","","Virtuous Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10448","52241","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","15","14","0","0","0","0","0","0","0","0" +"22082","-1","","","","","Virtuous Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19769","98845","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","12","12","0","0","0","0","0","0","0","0" +"22083","-1","","","","","Virtuous Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27632","138163","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","12","21","0","0","0","0","0","0","0","0" +"22084","-1","","","","","Virtuous Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19333","96668","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","13","12","0","0","0","0","0","0","0","0" +"22085","-1","","","","","Virtuous Skirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26007","130038","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","14","12","0","0","0","0","0","0","0","0" +"22086","-1","","","","","Soulforge Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12431","62157","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","11","0","0","0","0","0","0","0","0" +"22087","-1","","","","","Soulforge Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19552","97762","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","12","12","10","0","0","0","0","0","0","0" +"22088","-1","","","","","Soulforge Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12524","62621","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","9","9","0","0","0","0","0","0","0","0" +"22089","-1","","","","","Soulforge Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26266","131332","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","684","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","17","16","12","0","0","0","0","0","0","0" +"22090","-1","","","","","Soulforge Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10038","50190","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","9","10","0","0","0","0","0","0","0","0" +"22091","-1","","","","","Soulforge Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19845","99225","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","17","12","0","0","0","0","0","0","0" +"22092","-1","","","","","Soulforge Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26692","133464","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","17","17","10","0","0","0","0","0","0","0" +"22093","-1","","","","","Soulforge Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19136","95684","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","10","0","0","0","0","0","0","0","0" +"22094","-1","Its red juice can leave an indelible stain on your clothing, so be careful.","","","","Bloodkelp","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22095","-1","","","","","Bindings of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19275","96379","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","9","10","0","0","0","0","0","0","0","0" +"22096","-1","","","","","Boots of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30451","152257","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","13","12","10","0","0","0","0","0","0","0" +"22097","-1","","","","","Coif of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30427","152135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","22","12","0","0","0","0","0","0","0","0" +"22098","-1","","","","","Cord of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19485","97426","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","11","0","0","0","0","0","0","0","0" +"22099","-1","","","","","Gauntlets of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15558","77793","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","9","14","12","0","0","0","0","0","0","0","0" +"22100","-1","","","","","Kilt of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38271","191358","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","4","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","17","10","17","0","0","0","0","0","0","0" +"22101","-1","","","","","Pauldrons of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27564","137822","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","10","10","0","0","0","0","0","0","0" +"22102","-1","","","","","Vest of The Five Thunders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38368","191844","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","16","17","12","0","0","0","0","0","0","0" +"22106","-1","","","","","Feralheart Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15536","77681","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","8","9","6","7","0","0","0","0","0","0" +"22107","-1","","","","","Feralheart Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24438","122191","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","4","3","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","13","12","12","7","0","0","0","0","0","0" +"22108","-1","","","","","Feralheart Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15653","78268","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","4","3","7","6","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","6","6","6","5","0","0","0","0","0","0" +"22109","-1","","","","","Feralheart Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24619","123099","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","17","14","9","0","0","0","0","0","0" +"22110","-1","","","","","Feralheart Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12546","62731","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","3","7","4","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","12","9","10","10","0","0","0","0","0","0" +"22111","-1","","","","","Feralheart Kilt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33239","166197","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","14","12","0","0","0","0","0","0" +"22112","-1","","","","","Feralheart Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23830","119153","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","4","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","9","8","8","5","0","0","0","0","0","0" +"22113","-1","","","","","Feralheart Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33313","166569","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","14","17","16","9","0","0","0","0","0","0" +"22114","-1","","","","","Pink Murloc Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22115","-1","","","","","Extra-Dimensional Ghost Revealer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22117","-1","","","","","Pledge of Loyalty: Stormwind","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22119","-1","","","","","Pledge of Loyalty: Ironforge","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22120","-1","","","","","Pledge of Loyalty: Darnassus","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22121","-1","","","","","Pledge of Loyalty: Undercity","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22122","-1","","","","","Pledge of Loyalty: Thunder Bluff","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22123","-1","","","","","Pledge of Loyalty: Orgrimmar","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22130","-1","","","","","Symbol of Love","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22131","-1","","","","","Stormwind Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22132","-1","","","","","Ironforge Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22133","-1","","","","","Darnassus Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22134","-1","","","","","Undercity Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22135","-1","","","","","Thunder Bluff Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22136","-1","","","","","Orgrimmar Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22137","-1","","","","","Ysida's Satchel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22138","-1","Crudely crafted, mostly from dark iron, these bracers exhibit trace amounts of a shiny metal.","","","","Blackrock Bracer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22139","-1","","","","","Ysida's Locket","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22140","-1","","","","","Sentinel's Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22141","-1","","","","","Ironforge Guard's Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22142","-1","","","","","Grunt's Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22143","-1","","","","","Stormwind Guard's Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22144","-1","","","","","Bluffwatcher's Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22145","-1","","","","","Guardian's Moldy Card","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22149","-1","","","","","Beads of Ogre Mojo","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","12","0","0","0","0","0","0","0","0","0" +"22150","-1","","","","","Beads of Ogre Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","0" +"22151","-1","","","","","Anthion's Holy Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22152","-1","","","","","Anthion's Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22154","-1","","","","","Pledge of Adoration: Ironforge","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22155","-1","","","","","Pledge of Adoration: Darnassus","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22156","-1","","","","","Pledge of Adoration: Orgrimmar","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22157","-1","","","","","Pledge of Adoration: Undercity","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22158","-1","","","","","Pledge of Adoration: Thunder Bluff","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22159","-1","","","","","Pledge of Friendship: Darnassus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22160","-1","","","","","Pledge of Friendship: Ironforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22161","-1","","","","","Pledge of Friendship: Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22162","-1","","","","","Pledge of Friendship: Thunder Bluff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22163","-1","","","","","Pledge of Friendship: Undercity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22164","-1","","","","","Gift of Adoration: Orgrimmar","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22165","-1","","","","","Gift of Adoration: Thunder Bluff","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22166","-1","","","","","Gift of Adoration: Undercity","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22167","-1","","","","","Gift of Friendship: Darnassus","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22168","-1","","","","","Gift of Friendship: Ironforge","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22169","-1","","","","","Gift of Friendship: Orgrimmar","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22170","-1","","","","","Gift of Friendship: Stormwind","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22171","-1","","","","","Gift of Friendship: Thunder Bluff","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22172","-1","","","","","Gift of Friendship: Undercity","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22173","-1","","","","","Dwarven Homebrew","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22174","-1","","","","","Romantic Poem","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22175","-1","","","","","Freshly Baked Pie","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22176","-1","","","","","Homemade Bread","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22177","-1","","","","","Freshly Picked Flowers","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22178","-1","","","","","Pledge of Friendship: Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22191","-1","","","","","Obsidian Mail Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73128","365643","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22192","-1","","","","","Bloodkelp Elixir of Dodging","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22193","-1","","","","","Bloodkelp Elixir of Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22194","-1","","","","","Black Grasp of the Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33521","167607","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22195","-1","","","","","Light Obsidian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22885","114426","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22196","-1","","","","","Thick Obsidian Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49624","248121","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","814","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","38","16","0","0","0","0","0","0","0","0","60" +"22197","-1","","","","","Heavy Obsidian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14282","71411","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","0","0","0","0","0","0","0","0","0","60" +"22198","-1","","","","","Jagged Obsidian Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67440","337200","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","2645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22199","-1","","","","","Monster - Axe, 2H Arcanite Reaper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22200","-1","","","","","Silver Shafted Arrow","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22201","-1","","","","","Reliquary of Purity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22202","-1","","","","","Small Obsidian Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22203","-1","","","","","Large Obsidian Shard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22204","-1","","","","","Wristguards of Renown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12403","62015","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","10","10","0","0","0","0","0","0","0","55" +"22205","-1","","","","","Black Steel Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8522","42610","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"22206","-1","","","","","Bouquet of Red Roses","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22207","-1","","","","","Sash of the Grand Hunt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14233","71165","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","6","0","0","0","0","0","0","0","55" +"22208","-1","","","","","Lavastone Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57079","285396","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","58","32767","0","0","135","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","12","10","0","0","0","0","0","0","0","53" +"22209","-1","","","","","Plans: Heavy Obsidian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22210","-1","","","","","Monster - Knuckle, B01 Red","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22211","-1","","","","","Monster - Knuckle, B01 Red Offhand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22212","-1","","","","","Golem Fitted Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17311","86556","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","17","0","0","0","0","0","0","0","0","51" +"22213","-1","","","","","Monster - Mace, Hand of Edward the Odd","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22214","-1","","","","","Plans: Light Obsidian Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22215","-1","","","","","Monster - Dagger, Bonescraper","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22216","-1","","","","","Venoxis's Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22217","-1","","","","","Kurinnaxx's Venom Sac","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22218","-1","","","","","Handful of Rose Petals","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22219","-1","","","","","Plans: Jagged Obsidian Shield","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22220","-1","","","","","Plans: Black Grasp of the Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22221","-1","","","","","Plans: Obsidian Mail Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22222","-1","","","","","Plans: Thick Obsidian Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22223","-1","","","","","Foreman's Head Protector","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11291","56458","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","14","11","0","0","0","0","0","0","0","50" +"22224","-1","","","","","Jeering Spectre's Essence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22225","-1","","","","","Dragonskin Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14937","74687","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","3304","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","55" +"22226","-1","The silithid have left little to the corpse of this champion of the Cenarion Circle.","","","","Druidical Remains","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22227","-1","This night elvic antiquity has been frozen solid by the Frostmaul giants. Handle with care.","","","","Starbreeze Village Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22228","-1","The keenest of edges, meant to indiscriminately cleave through any foe, living or dead.","","","","Brilliant Sword of Zealotry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22229","-1","These ashen remains of an exiled soul pulse faintly with the echo of a once-promising life.","","","","Soul Ashes of the Banished","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22230","-1","","","","","Frightmaw Hide","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9978","49894","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","0" +"22231","-1","","","","","Kayser's Boots of Precision","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16444","82221","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","32767","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","56" +"22232","-1","","","","","Marksman's Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14933","74669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","56" +"22233","-1","","","","","Zigris' Footlocker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5837","23350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22234","-1","","","","","Mantle of Lost Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9713","48568","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","32767","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","5","0","0","0","0","0","0","0","0","48" +"22235","-1","","","","","Truesilver Shafted Arrow","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22236","-1","","","","","Buttermilk Delight","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22237","-1","","","","","Dark Desire","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22238","-1","","","","","Very Berry Cream","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22239","-1","","","","","Sweet Surprise","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22240","-1","","","","","Greaves of Withering Despair","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14972","74861","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","32767","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","0","0","0","0","0","0","0","0","48" +"22241","-1","","","","","Dark Warder's Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15739","78697","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","7","0","0","0","0","0","0","0","52" +"22242","-1","","","","","Verek's Leash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11489","57448","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","3","6","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","8","8","8","7","0","0","0","0","0","51" +"22243","-1","","","","","Small Soul Pouch","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22244","-1","","","","","Box of Souls","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22245","-1","","","","","Soot Encrusted Footwear","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12375","61875","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","8","14","0","0","0","0","0","0","0","51" +"22246","-1","","","","","Enchanted Mageweave Pouch","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22247","-1","","","","","Faith Healer's Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17874","89371","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","10","0","0","0","0","0","0","0","58" +"22248","-1","","","","","Enchanted Runecloth Bag","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22249","-1","","","","","Big Bag of Enchantment","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22250","-1","","","","","Herb Pouch","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22251","-1","","","","","Cenarion Herb Bag","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22252","-1","","","","","Satchel of Cenarius","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22253","-1","The title reads ""The Brode to Nowhere""","","","","Tome of the Lost","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","6","0","0","0","0","0","0","0","0","58" +"22254","-1","","","","","Wand of Eternal Light","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30655","153277","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","32767","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","6","0","0","0","0","0","0","0","0","0","52" +"22255","-1","","","","","Magma Forged Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32802","131210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","7","7","0","0","0","0","0","0","0","52" +"22256","-1","","","","","Mana Shaping Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8236","41184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","9","7","0","0","0","0","0","0","0","52" +"22257","-1","","","","","Bloodclot Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36127","144510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","7","0","0","0","0","0","0","0","52" +"22258","-1","","","","","Love Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","9","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22259","-1","","","","","Unbestowed Friendship Bracelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","10","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22260","-1","These are received from true friends...","","","","Friendship Bracelet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22261","-1","","","","","Love Fool","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22262","-1","Give this collection to Kwee Q. Peddlefeet.","","","","Alliance Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22263","-1","Give this collection to Kwee Q. Peddlefeet.","","","","Horde Gift Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22264","-1","","","","","Carefully Written Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22265","-1","","","","","Lovingly Composed Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22266","-1","","","","","Flarethorn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43878","219394","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","32767","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","52" +"22267","-1","","","","","Spellweaver's Turban","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17870","89353","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","0","0","0","0","0","0","0","0","0","60" +"22268","-1","","","","","Draconic Infused Emblem","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22269","-1","","","","","Shadow Prowler's Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","17","7","0","0","0","0","0","0","0","0","58" +"22270","-1","","","","","Entrenching Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11882","59413","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","5","10","10","0","0","0","0","0","0","50" +"22271","-1","","","","","Leggings of Frenzied Magic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22328","111644","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","15","0","0","0","0","0","0","0","0","52" +"22272","-1","","","","","Forest's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15152","75761","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","7","0","0","0","0","0","0","0","0","0" +"22273","-1","","","","","Moonshadow Hood","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11408","57042","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","0","0","0","0","0","0","0","0","0","0" +"22274","-1","","","","","Grizzled Pelt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15270","76350","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","16","11","0","0","0","0","0","0","0","0" +"22275","-1","","","","","Firemoss Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15383","76917","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","8","0","0","0","0","0","0","0","0","52" +"22276","-1","","","","","Lovely Red Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22277","-1","","","","","Red Dinner Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22278","-1","","","","","Lovely Blue Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22279","-1","","","","","Lovely Black Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22280","-1","","","","","Lovely Purple Dress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22281","-1","","","","","Blue Dinner Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22282","-1","","","","","Purple Dinner Suit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22283","-1","","","","","Sack of Homemade Bread","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22284","-1","","","","","Bundle of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22285","-1","","","","","Stormwind Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22286","-1","","","","","Ironforge Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22287","-1","","","","","Parcel of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22288","-1","","","","","Case of Homebrew","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22289","-1","","","","","Stack of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22290","-1","","","","","Darnassus Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22291","-1","","","","","Box of Woodcrafts","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22292","-1","","","","","Box of Fresh Pies","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22293","-1","","","","","Package of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22294","-1","","","","","Orgrimmar Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22295","-1","","","","","Satchel of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22296","-1","","","","","Basket of Flowers","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22297","-1","","","","","Thunder Bluff Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22298","-1","","","","","Book of Romantic Poems","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22299","-1","","","","","Sheaf of Cards","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22300","-1","","","","","Undercity Pledge Collection","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22301","-1","","","","","Ironweave Robe","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23314","116570","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","0","0","0","0","0","0","0","0","58" +"22302","-1","","","","","Ironweave Cowl","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17549","87747","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","15","0","0","0","0","0","0","0","0","58" +"22303","-1","","","","","Ironweave Pants","1","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22366","111830","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","62","400","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","15","0","0","0","0","0","0","0","0","57" +"22304","-1","","","","","Ironweave Gloves","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10689","53446","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22305","-1","","","","","Ironweave Mantle","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16090","80451","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22306","-1","","","","","Ironweave Belt","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9963","49816","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22307","-1","","","","","Pattern: Enchanted Mageweave Pouch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22308","-1","","","","","Pattern: Enchanted Runecloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22309","-1","","","","","Pattern: Big Bag of Enchantment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22310","-1","","","","","Pattern: Cenarion Herb Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22311","-1","","","","","Ironweave Boots","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14944","74724","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22312","-1","","","","","Pattern: Satchel of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22313","-1","","","","","Ironweave Bracers","1","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9963","49816","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","56" +"22314","-1","","","","","Huntsman's Harpoon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64398","321992","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","61","-1","0","0","150","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","35","0","0","0","0","0","0","0","0","0","56" +"22315","-1","","","","","Hammer of Revitalization","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49816","249080","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","61","-1","0","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","56" +"22316","-1","","","","","Test Relic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","3","0","0","0","0","0","0","0","0","0","10" +"22317","-1","","","","","Lefty's Brass Knuckle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52093","260466","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","61","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","12","0","0","0","0","0","0","0","0","56" +"22318","-1","","","","","Malgen's Long Bow","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37362","186810","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","61","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","4","0","0","0","0","0","0","0","0","0","56" +"22319","-1","","","","","Tome of Divine Right","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38664","154658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","4","0","0","0","0","0","0","0","0","56" +"22320","-1","","","","","Mux's Quality Goods","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22321","-1","","","","","Heart of Wyrmthalak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10539","42158","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"22322","-1","Not edible","","","","The Jaw Breaker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53054","265271","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","61","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"22324","-1","","","","","Winter Kimchi","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22325","-1","","","","","Belt of the Trickster","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12446","62230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","9","0","0","0","0","0","0","0","0","56" +"22326","-1","","","","","Amalgam's Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15282","61130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","5","0","0","0","0","0","0","0","0","58" +"22327","-1","","","","","Amulet of the Redeemed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2535","10140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","9","8","0","0","0","0","0","0","0","58" +"22328","-1","","","","","Legplates of Vigilance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22208","111042","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","58" +"22329","-1","","","","","Scepter of Interminable Focus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22330","-1","","","","","Shroud of Arcane Mastery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15223","76118","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","11","0","0","0","0","0","0","0","0","56" +"22331","-1","","","","","Band of the Steadfast Hero","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36253","145013","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","12","0","0","0","0","0","0","0","0","57" +"22332","-1","","","","","Blade of Necromancy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53683","268417","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","32767","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","0","0","0","0","0","0","0","0","0","57" +"22333","-1","","","","","Hammer of Divine Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65383","326918","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","62","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","13","0","0","0","0","0","0","0","0","57" +"22334","-1","","","","","Band of Mending","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13782","55130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","7","6","0","0","0","0","0","0","0","57" +"22335","-1","","","","","Lord Valthalak's Staff of Command","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71251","356256","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","10","0","0","0","0","0","0","0","0","58" +"22336","-1","","","","","Draconian Aegis of the Legion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35150","175751","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","58" +"22337","-1","","","","","Shroud of Domination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","17","0","0","0","0","0","0","0","0","58" +"22338","-1","","","","","Volcanic Ash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22339","-1","","","","","Rune Band of Wizardry","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15282","61130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","58" +"22340","-1","","","","","Pendant of Celerity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65328","421315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","58" +"22341","-1","","","","","Monster - Mace, Horde A04 Pale - Bone Wrench","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22342","-1","","","","","Leggings of Torment","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21968","109844","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","0","0","0","0","0","0","0","0","58" +"22343","-1","","","","","Handguards of Savagery","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","58" +"22344","-1","Where to find Haunted Loci","","","","Brazier of Invocation: User's Manual","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2859","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22345","-1","","","","","Totem of Rebirth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15680","78402","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22346","-1","","","","","Monster - Mace2H, Unstoppable Force","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22347","-1","","","","","Fahrad's Reloading Repeater","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45728","228640","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","65","-1","0","0","85","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","4","0","0","0","0","0","0","0","0","0","0" +"22348","-1","","","","","Doomulus Prime","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76507","382535","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","65","-1","0","0","158","0","0","0","0","265","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","22","0","0","0","0","0","0","0","0","0" +"22349","-1","","","","","Desecrated Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22350","-1","","","","","Desecrated Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22351","-1","","","","","Desecrated Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22352","-1","","","","","Desecrated Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22353","-1","","","","","Desecrated Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22354","-1","","","","","Desecrated Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22355","-1","","","","","Desecrated Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22356","-1","","","","","Desecrated Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22357","-1","","","","","Desecrated Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22358","-1","","","","","Desecrated Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22359","-1","","","","","Desecrated Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22360","-1","","","","","Desecrated Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22361","-1","","","","","Desecrated Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22362","-1","","","","","Desecrated Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22363","-1","","","","","Desecrated Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22364","-1","","","","","Desecrated Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22365","-1","","","","","Desecrated Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22366","-1","","","","","Desecrated Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22367","-1","","","","","Desecrated Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22368","-1","","","","","Desecrated Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22369","-1","","","","","Desecrated Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22370","-1","","","","","Desecrated Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22371","-1","","","","","Desecrated Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22372","-1","","","","","Desecrated Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22373","-1","","","","","Wartorn Leather Scrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22374","-1","","","","","Wartorn Chain Scrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22375","-1","","","","","Wartorn Plate Scrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22376","-1","","","","","Wartorn Cloth Scrap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22377","-1","","","","","The Thunderwood Poker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64976","324883","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","6","0","0","0","0","0","0","0","0","0" +"22378","-1","","","","","Ravenholdt Slicer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65211","326057","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","65","-1","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","0" +"22379","-1","","","","","Shivsprocket's Shiv","1","0","-1.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65446","327232","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","65","32767","0","0","44","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","0","0","0","0","0","0","0","0","0","0" +"22380","-1","","","","","Simone's Cultivating Hammer","1","0","-1.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65675","328375","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","32767","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","0" +"22381","-1","","","","","Silithus Venom Sample","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22382","-1","","","","","Sealed Venom Container","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22383","-1","","","","","Sageblade","1","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84291","421458","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","64","32767","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","6","0","0","0","0","0","0","0","0","59" +"22384","-1","","","","","Persuader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80554","402771","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","32767","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","58" +"22385","-1","","","","","Titanic Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25276","126384","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","0","0","0","0","0","0","0","0","0","55" +"22386","-1","","","","","Head of Instructor Razuvious DEP","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22387","-1","","","","","Heart of Anub'Rekhan","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22388","-1","","","","","Plans: Titanic Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22389","-1","","","","","Plans: Sageblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22390","-1","","","","","Plans: Persuader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22391","-1","","","","","Monster - Staff, Lord Valthalak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68652","343264","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22392","-1","","","","","Formula: Enchant 2H Weapon - Agility","1","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22393","-1","","","","","Codex: Prayer of Shadow Protection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22394","-1","","","","","Staff of Metanoia","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69400","347003","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","62","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","15","13","0","0","0","0","0","0","0","57" +"22395","-1","","","","","Totem of Rage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12973","64867","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22396","-1","","","","","Totem of Life","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","48827","244136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22397","-1","","","","","Idol of Ferocity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13067","65339","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22398","-1","","","","","Idol of Rejuvenation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16898","84490","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22399","-1","","","","","Idol of Health","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","49354","246770","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22400","-1","","","","","Libram of Truth","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13208","66041","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22401","-1","","","","","Libram of Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17078","85394","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22402","-1","","","","","Libram of Grace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","49885","249427","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22403","-1","","","","","Diana's Pearl Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","0","0","0","0","0","0","0","0","56" +"22404","-1","","","","","Willey's Back Scratcher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54793","273967","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","61","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","0","0","0","0","0","0","0","0","0","56" +"22405","-1","","","","","Mantle of the Scarlet Crusade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14944","74724","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","12","0","0","0","0","0","0","0","56" +"22406","-1","","","","","Redemption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62270","311350","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","56" +"22407","-1","","","","","Helm of the New Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18681","93405","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","13","12","0","0","0","0","0","0","0","56" +"22408","-1","","","","","Ritssyn's Wand of Bad Mojo","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42763","213818","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","58" +"22409","-1","","","","","Tunic of the Crescent Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27461","137305","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","12","11","0","0","0","0","0","0","0","58" +"22410","-1","","","","","Gauntlets of Deftness","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17231","86157","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","58" +"22411","-1","","","","","Helm of the Executioner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","20","0","0","0","0","0","0","0","0","58" +"22412","-1","","","","","Thuzadin Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","18","0","0","0","0","0","0","0","0","58" +"22416","-1","","","","","Dreadnaught Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128887","644435","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","92","1535","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","43","0","0","0","0","0","0","0","0","60" +"22417","-1","","","","","Dreadnaught Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106420","532102","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","37","0","0","0","0","0","0","0","0","60" +"22418","-1","","","","","Dreadnaught Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80096","400480","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","21","0","0","0","0","0","0","0","0","60" +"22419","-1","","","","","Dreadnaught Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72911","364556","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","16","0","0","0","0","0","0","0","0","60" +"22420","-1","","","","","Dreadnaught Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73173","365865","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","662","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","15","34","0","0","0","0","0","0","0","0","60" +"22421","-1","","","","","Dreadnaught Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53974","269873","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","17","0","0","0","0","0","0","0","0","60" +"22422","-1","","","","","Dreadnaught Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50334","251673","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","554","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","26","0","0","0","0","0","0","0","0","60" +"22423","-1","","","","","Dreadnaught Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50527","252635","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","28","0","0","0","0","0","0","0","0","60" +"22424","-1","","","","","Redemption Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50719","253597","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","15","0","0","0","0","0","0","0","0","60" +"22425","-1","","","","","Redemption Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123767","618837","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","31","0","0","0","0","0","0","0","0","60" +"22426","-1","","","","","Redemption Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51099","255495","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","22","0","0","0","0","0","0","0","0","60" +"22427","-1","","","","","Redemption Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102583","512915","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","31","0","0","0","0","0","0","0","0","60" +"22428","-1","","","","","Redemption Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77225","386129","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","26","0","0","0","0","0","0","0","0","60" +"22429","-1","","","","","Redemption Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70300","351504","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"22430","-1","","","","","Redemption Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70562","352812","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","662","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","18","0","0","0","0","0","0","0","0","60" +"22431","-1","","","","","Redemption Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52055","260279","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","554","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","29","0","0","0","0","0","0","0","0","60" +"22432","-1","","","","","Devilsaur Barb","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22433","-1","","","","","Don Mauricio's Band of Domination","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15282","61130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","58" +"22434","-1","","","","","Bloodcap","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22435","-1","","","","","Gorishi Sting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22436","-1","","","","","Cryptstalker Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193311","966558","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","27","15","0","0","0","0","0","0","0","60" +"22437","-1","","","","","Cryptstalker Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","159599","797997","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","26","10","0","0","0","0","0","0","0","60" +"22438","-1","","","","","Cryptstalker Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111521","557607","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","30","12","0","0","0","0","0","0","0","60" +"22439","-1","","","","","Cryptstalker Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101997","509986","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","23","10","0","0","0","0","0","0","0","60" +"22440","-1","","","","","Cryptstalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102391","511958","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","19","8","0","0","0","0","0","0","0","60" +"22441","-1","","","","","Cryptstalker Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75205","376028","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","15","21","0","0","0","0","0","0","0","60" +"22442","-1","","","","","Cryptstalker Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75494","377471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","22","12","0","0","0","0","0","0","0","60" +"22443","-1","","","","","Cryptstalker Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75782","378914","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","16","0","0","0","0","0","0","0","0","60" +"22444","-1","","","","","Putrid Vine","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22458","-1","","","","","Moonshadow Stave","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37892","189464","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","52","-1","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22464","-1","","","","","Earthshatter Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184892","924464","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","32","0","0","0","0","0","0","0","0","60" +"22465","-1","","","","","Earthshatter Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152688","763444","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","30","0","0","0","0","0","0","0","0","60" +"22466","-1","","","","","Earthshatter Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","114949","574748","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","30","0","0","0","0","0","0","0","0","60" +"22467","-1","","","","","Earthshatter Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105109","525549","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","19","0","0","0","0","0","0","0","0","60" +"22468","-1","","","","","Earthshatter Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105504","527520","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","25","0","0","0","0","0","0","0","0","60" +"22469","-1","","","","","Earthshatter Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77491","387455","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","28","0","0","0","0","0","0","0","0","60" +"22470","-1","","","","","Earthshatter Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79846","399232","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","18","0","0","0","0","0","0","0","0","60" +"22471","-1","","","","","Earthshatter Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80127","400636","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","18","0","0","0","0","0","0","0","0","60" +"22472","-1","","","","","Boots of Ferocity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20193","100965","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","13","0","0","0","0","0","0","0","56" +"22476","-1","","","","","Bonescythe Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","165232","826164","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","92","1535","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","29","0","0","0","0","0","0","0","0","0","60" +"22477","-1","","","","","Bonescythe Legplates","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","136418","682092","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","25","31","0","0","0","0","0","0","0","60" +"22478","-1","","","","","Bonescythe Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92905","464527","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","29","18","0","0","0","0","0","0","0","60" +"22479","-1","","","","","Bonescythe Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84595","422975","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","15","22","0","0","0","0","0","0","0","60" +"22480","-1","","","","","Bonescythe Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84922","424611","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","0","0","0","0","0","0","0","0","0","60" +"22481","-1","","","","","Bonescythe Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62658","313292","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22482","-1","","","","","Bonescythe Waistguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62892","314462","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","24","20","23","0","0","0","0","0","0","0","60" +"22483","-1","","","","","Bonescythe Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63132","315664","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","14","0","0","0","0","0","0","0","0","60" +"22484","-1","","","","","Necrotic Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22485","-1","","","","","[UNUSED] Scourge Invasion Focus Object","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22486","-1","","","","","[UNUSED] Scourge Invasion Boss Summoner","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22488","-1","","","","","Dreamwalker Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160571","802858","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","29","29","0","0","0","0","0","0","0","60" +"22489","-1","","","","","Dreamwalker Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132583","662918","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","26","22","0","0","0","0","0","0","0","60" +"22490","-1","","","","","Dreamwalker Headpiece","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99788","498943","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","31","25","0","0","0","0","0","0","0","60" +"22491","-1","","","","","Dreamwalker Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90838","454192","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","22","18","0","0","0","0","0","0","0","60" +"22492","-1","","","","","Dreamwalker Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91165","455828","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","14","20","0","0","0","0","0","0","0","60" +"22493","-1","","","","","Dreamwalker Handguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67240","336204","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","17","22","0","0","0","0","0","0","0","60" +"22494","-1","","","","","Dreamwalker Girdle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67481","337406","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","14","23","13","0","0","0","0","0","0","0","60" +"22495","-1","","","","","Dreamwalker Wristguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67721","338608","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","16","0","0","0","0","0","0","0","0","60" +"22496","-1","","","","","Frostfire Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132173","660868","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","27","0","0","0","0","0","0","0","0","60" +"22497","-1","","","","","Frostfire Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109114","545570","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","10","26","25","0","0","0","0","0","0","0","60" +"22498","-1","","","","","Frostfire Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74316","371582","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","23","0","0","0","0","0","0","0","0","60" +"22499","-1","","","","","Frostfire Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67669","338345","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","9","0","0","0","0","0","0","0","60" +"22500","-1","","","","","Frostfire Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67930","339654","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","18","17","0","0","0","0","0","0","0","60" +"22501","-1","","","","","Frostfire Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50116","250581","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","19","10","0","0","0","0","0","0","0","60" +"22502","-1","","","","","Frostfire Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51686","258433","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","19","21","0","0","0","0","0","0","0","60" +"22503","-1","","","","","Frostfire Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51879","259395","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","15","0","0","0","0","0","0","0","0","60" +"22504","-1","","","","","Plagueheart Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","126586","632932","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","22","0","0","0","0","0","0","0","0","60" +"22505","-1","","","","","Plagueheart Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104517","522586","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","25","0","0","0","0","0","0","0","0","60" +"22506","-1","","","","","Plagueheart Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78676","393383","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","25","0","0","0","0","0","0","0","0","60" +"22507","-1","","","","","Plagueheart Shoulderpads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71623","358118","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","12","0","0","0","0","0","0","0","0","60" +"22508","-1","","","","","Plagueheart Sandals","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71878","359392","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","16","0","0","0","0","0","0","0","0","60" +"22509","-1","","","","","Plagueheart Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53023","265115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","17","0","0","0","0","0","0","0","0","60" +"22510","-1","","","","","Plagueheart Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53215","266077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","12","0","0","0","0","0","0","0","0","60" +"22511","-1","","","","","Plagueheart Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53407","267039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","14","0","0","0","0","0","0","0","0","60" +"22512","-1","","","","","Robe of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","130290","651451","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","27","26","0","0","0","0","0","0","0","60" +"22513","-1","","","","","Leggings of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107574","537874","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","26","25","0","0","0","0","0","0","0","60" +"22514","-1","","","","","Circlet of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80969","404848","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","22","22","0","0","0","0","0","0","0","60" +"22515","-1","","","","","Shoulderpads of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73703","368518","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","17","0","0","0","0","0","0","0","60" +"22516","-1","","","","","Sandals of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73958","369792","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","19","22","0","0","0","0","0","0","0","60" +"22517","-1","","","","","Gloves of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54551","272759","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","16","0","0","0","0","0","0","0","60" +"22518","-1","","","","","Belt of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50917","254585","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","18","17","0","0","0","0","0","0","0","60" +"22519","-1","","","","","Bindings of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51109","255547","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","15","17","0","0","0","0","0","0","0","60" +"22520","-1","","","","","The Phylactery of Kel'Thuzad","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9120","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22523","-1","","","","","Insignia of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22524","-1","","","","","Insignia of the Crusade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22525","-1","","","","","Crypt Fiend Parts","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22526","-1","","","","","Bone Fragments","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22527","-1","","","","","Core of Elements","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22528","-1","","","","","Dark Iron Scraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22529","-1","","","","","Savage Frond","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22568","-1","","","","","Sealed Craftsman's Writ","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22584","-1","","","","","QAEnchant Cloak +3 Agility","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22585","-1","","","","","QAEnchant Gloves +5 Mining","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22586","-1","","","","","QAEnchant Gloves +5 Herbalism","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22587","-1","","","","","QAEnchant Boots +8% Speed","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22588","-1","","","","","QAEnchant Cloak +10 Shadow Resistance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22589","-1","","","","","Atiesh, Greatstaff of the Guardian","1","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562016","2810084","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","31","32","24","0","0","0","0","0","0","0","60" +"22593","-1","","","","","Writ of Safe Passage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22595","-1","","","","","Call to Arms Announcement","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2872","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22596","-1","","","","","Monster - Sword2H, Horde A02","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22600","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Dense Weightstone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9178","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22601","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Imperial Plate Chest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9179","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22602","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Volcanic Hammer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9181","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22603","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Huge Thorium Battleaxe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9182","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22604","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Radiant Circlet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9183","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22605","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Wicked Leather Headband","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9184","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22606","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Rugged Armor Kit","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9185","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22607","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Wicked Leather Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9186","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22608","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runic Leather Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9187","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22609","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Brightcloth Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9188","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22610","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9190","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22611","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9191","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22612","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9194","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22613","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Goblin Sapper Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9195","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22614","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Thorium Grenade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9196","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22615","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Gnomish Battle Chicken","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9197","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22616","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Thorium Tube","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9198","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22617","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Major Mana Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9200","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22618","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Major Healing Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9202","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22619","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Greater Frost Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22620","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Greater Arcane Protection Potion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9201","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22621","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Flask of Petrification","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9203","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22622","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Stonescale Eel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9204","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22623","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Plated Armorfish","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9205","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22624","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Lightning Eel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9206","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22625","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Baked Salmon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22626","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runn Tum Tuber Surprise","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22630","-1","","","","","Atiesh, Greatstaff of the Guardian","1","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","563844","2819221","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","30","29","0","0","0","0","0","0","0","0","60" +"22631","-1","","","","","Atiesh, Greatstaff of the Guardian","1","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526276","2631380","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","28","28","27","0","0","0","0","0","0","0","60" +"22632","-1","","","","","Atiesh, Greatstaff of the Guardian","1","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528264","2641323","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","28","28","27","0","0","0","0","0","0","0","60" +"22635","-1","","","","","Savage Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22636","-1","","","","","Ice Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22637","-1","An ancient evil stirs within...","","","","Primal Hakkari Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22638","-1","","","","","Shadow Guard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22648","-1","","","","","Hive'Ashi Dossier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22649","-1","","","","","Hive'Regal Dossier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22650","-1","","","","","Hive'Zora Dossier","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22651","-1","","","","","Outrider's Plate Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33147","165737","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22652","-1","","","","","Glacial Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69171","345858","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","0","0","0","0","0","0","0","0","0","60" +"22654","-1","","","","","Glacial Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34846","174231","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","0","0","0","0","0","0","0","0","0","60" +"22655","-1","","","","","Glacial Wrists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34973","174865","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22656","-1","","","","","The Purifier","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47443","237219","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","60","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","0" +"22657","-1","","","","","Amulet of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","13","0","0","0","0","0","0","0","0","0" +"22658","-1","","","","","Glacial Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53045","265227","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","0","0","0","0","0","0","0","0","0","60" +"22659","-1","","","","","Medallion of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","0" +"22660","-1","","","","","Gaea's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24601","123007","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","60" +"22661","-1","","","","","Polar Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89377","446885","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","18","0","0","0","0","0","0","0","0","60" +"22662","-1","","","","","Polar Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44851","224256","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","0","0","0","0","0","0","0","0","60" +"22663","-1","","","","","Polar Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46175","230877","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","1535","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","12","0","0","0","0","0","0","0","0","60" +"22664","-1","","","","","Icy Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100642","503214","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22665","-1","","","","","Icy Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50516","252584","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","0","0","0","0","0","0","0","0","0","60" +"22666","-1","","","","","Icy Scale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50712","253560","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","1535","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","0","0","0","0","0","0","0","0","0","60" +"22667","-1","","","","","Bracers of Hope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12789","63948","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1535","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","10","11","0","0","0","0","0","0","0","0" +"22668","-1","","","","","Bracers of Subterfuge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16048","80242","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1535","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","12","15","0","0","0","0","0","0","0","0" +"22669","-1","","","","","Icebane Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68390","341952","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","899","0","0","0","42","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","12","0","0","0","0","0","0","0","0","60" +"22670","-1","","","","","Icebane Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34321","171609","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","32","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","9","0","0","0","0","0","0","0","0","60" +"22671","-1","","","","","Icebane Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34452","172260","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","6","0","0","0","0","0","0","0","0","60" +"22672","-1","","","","","Sentinel's Plate Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33269","166347","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22673","-1","","","","","Outrider's Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50092","250460","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","35","15","0","0","0","0","0","0","0","0","60" +"22676","-1","","","","","Outrider's Mail Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50650","253253","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","22","22","0","0","0","0","0","0","0","60" +"22678","-1","","","","","Talisman of Ascendance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22679","-1","","","","","Supply Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22680","-1","","","","","Band of Resolution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","0","0","0","0","0","0","0","0","0","0" +"22681","-1","","","","","Band of Piety","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","0" +"22682","-1","","","","","Frozen Rune","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22683","-1","","","","","Pattern: Gaea's Embrace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22684","-1","","","","","Pattern: Glacial Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22685","-1","","","","","Pattern: Glacial Cloak","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22686","-1","","","","","Pattern: Glacial Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22687","-1","","","","","Pattern: Glacial Wrists","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22688","-1","","","","","Verimonde's Last Resort","1","0","-1.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64512","322563","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","66","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","7","8","0","0","0","0","0","0","0","0","0" +"22689","-1","","","","","Sanctified Leather Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24282","121411","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","14","19","0","0","0","0","0","0","0","0" +"22690","-1","","","","","Leggings of the Plague Hunter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38147","190738","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","10","16","0","0","0","0","0","0","0","0" +"22691","-1","Blade of the Scarlet Highlord","","","","Corrupted Ashbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","288527","1442639","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","86","32767","0","0","259","0","0","0","0","389","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","-25","0","0","0","0","0","0","0","0","0","60" +"22692","-1","","","","","Pattern: Polar Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22694","-1","","","","","Pattern: Polar Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22695","-1","","","","","Pattern: Polar Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22696","-1","","","","","Pattern: Icy Scale Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22697","-1","","","","","Pattern: Icy Scale Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22698","-1","","","","","Pattern: Icy Scale Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22699","-1","","","","","Icebane Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72832","364160","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","10","0","0","0","0","0","0","0","0","0" +"22700","-1","","","","","Glacial Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73085","365427","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","0","0","0","0","0","0","0","0","0","0" +"22701","-1","","","","","Polar Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91682","458411","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","15","0","0","0","0","0","0","0","0","0" +"22702","-1","","","","","Icy Scale Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110409","552047","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","443","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","15","0","0","0","0","0","0","0","0","0" +"22703","-1","","","","","Plans: Icebane Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22704","-1","","","","","Plans: Icebane Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22705","-1","","","","","Plans: Icebane Bracers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22707","-1","Inscribed on the band: Ramaladni","","","","Ramaladni's Icy Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","98660","394641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","0","0","0","0","0","0","0","0","0","0" +"22708","-1","Inscribed on the band: Ramaladni","","","","Fate of Ramaladni","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22709","-1","","","","","Monster - Sword2H, Corrupted Ashbringer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22711","-1","","","","","Cloak of the Hakkari Worshipers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22162","110810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","6","0","0","0","0","0","0","0","0","60" +"22712","-1","","","","","Might of the Tribe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22241","111207","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22713","-1","","","","","Zulian Scepter of Rites","1","0","-3.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","74410","372051","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","68","-1","0","0","81","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","8","0","0","0","0","0","0","0","0","60" +"22714","-1","","","","","Sacrificial Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14936","74682","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","19","0","0","0","0","0","0","0","0","0","60" +"22715","-1","","","","","Gloves of the Tormented","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22484","112420","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","19","0","0","0","0","0","0","0","0","60" +"22716","-1","","","","","Belt of Untapped Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15043","75218","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","60" +"22718","-1","","","","","Blooddrenched Mask","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28410","142054","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","17","0","0","0","0","0","0","0","0","60" +"22719","-1","","","","","Omarion's Handbook","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9233","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22720","-1","","","","","Zulian Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22889","114448","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","14","13","0","0","0","0","0","0","0","60" +"22721","-1","","","","","Band of Servitude","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64030","256120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","9","0","0","0","0","0","0","0","0","60" +"22722","-1","","","","","Seal of the Gurubashi Berserker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","64030","256120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","0","0","0","0","0","0","0","0","0","60" +"22723","-1","The indelible mark of the Argent Dawn is pressed clearly into the wax of the seal.","","","","A Letter from the Keeper of the Rolls","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9247","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22724","-1","","","","","Monster - Mace1H, Korth'azz","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22725","-1","","","","","Band of Cenarius","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38790","155162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","0" +"22726","-1","A splinter of Atiesh, Greatstaff of the Guardian.","","","","Splinter of Atiesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22727","-1","The head and base are missing.","","","","Frame of Atiesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9250","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22728","-1","","","","","Steam Tonk Controller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22729","-1","","","","","Schematic: Steam Tonk Controller","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22730","-1","","","","","Eyestalk Waist Cord","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49596","247981","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","9","10","0","0","0","0","0","0","0","0","60" +"22731","-1","","","","","Cloak of the Devoured","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74394","371972","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","11","0","0","0","0","0","0","0","0","60" +"22732","-1","","","","","Mark of C'Thun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22733","-1","","","","","Staff Head of Atiesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"22734","-1","","","","","Base of Atiesh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"22736","-1","This blade is dimensional. It appears to be fading from this plane of existence.","","","","Andonisus, Reaper of Souls","1","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","229378","24580","0","0","0","125","0","0","0","0","0","0","0","0","2017","0","0","0","0","0","2800","0","0","0","100","32767","0","0","177","0","0","0","0","329","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22737","-1","An entity of great evil is imprisoned within the staff.","","","","Atiesh, Greatstaff of the Guardian","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22738","-1","","","","","Monster - Sword, 1H Uber Demon Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22739","-1","","","","","Tome of Polymorph: Turtle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22740","-1","","","","","Outrider's Leather Pants","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43935","219678","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22741","-1","","","","","Outrider's Lizardhide Pants","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44092","220461","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","10","22","9","22","0","0","0","0","0","60" +"22742","-1","","","","","Bloodsail Shirt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22743","-1","","","","","Bloodsail Sash","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22744","-1","","","","","Bloodsail Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22745","-1","","","","","Bloodsail Pants","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22746","-1","","","","","Buccaneer's Uniform","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22747","-1","","","","","Outrider's Silk Leggings","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33526","167633","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","19","10","0","0","0","0","0","0","0","60" +"22748","-1","","","","","Sentinel's Chain Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48441","242207","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","35","15","0","0","0","0","0","0","0","0","60" +"22749","-1","","","","","Sentinel's Leather Pants","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42217","211086","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22750","-1","","","","","Sentinel's Lizardhide Pants","1","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42373","211869","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","10","22","9","22","0","0","0","0","0","60" +"22752","-1","","","","","Sentinel's Silk Leggings","1","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34149","170748","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","19","10","0","0","0","0","0","0","0","60" +"22753","-1","","","","","Sentinel's Lamellar Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34271","171358","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","0","0","0","0","0","0","0","0","60" +"22754","-1","","","","","Eternal Quintessence","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22756","-1","","","","","Sylvan Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33164","165824","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","0","0","0","0","0","0","0","0","0","60" +"22757","-1","","","","","Sylvan Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24961","124806","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","60" +"22758","-1","","","","","Sylvan Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25051","125255","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22759","-1","","","","","Bramblewood Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29190","145950","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","0","0","0","0","0","0","0","0","0","60" +"22760","-1","","","","","Bramblewood Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29302","146512","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","0","0","0","0","0","0","0","0","0","60" +"22761","-1","","","","","Bramblewood Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19607","98039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","0","0","0","0","0","0","0","0","0","60" +"22762","-1","","","","","Ironvine Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31492","157462","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","726","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","0","0","0","0","0","0","0","0","0","60" +"22763","-1","","","","","Ironvine Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15806","79031","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","454","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","60" +"22764","-1","","","","","Ironvine Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15864","79322","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","60" +"22765","-1","A few words are still legible...","","","","Mildewed Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2873","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22766","-1","","","","","Plans: Ironvine Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22767","-1","","","","","Plans: Ironvine Gloves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22768","-1","","","","","Plans: Ironvine Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22769","-1","","","","","Pattern: Bramblewood Belt","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22770","-1","","","","","Pattern: Bramblewood Boots","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22771","-1","","","","","Pattern: Bramblewood Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22772","-1","","","","","Pattern: Sylvan Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22773","-1","","","","","Pattern: Sylvan Crown","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22774","-1","","","","","Pattern: Sylvan Vest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22780","-1","","","","","White Murloc Egg","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22781","-1","","","","","Polar Bear Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22798","-1","","","","","Might of Menethil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326465","1632328","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","89","-1","0","0","289","0","0","0","0","435","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","20","0","0","0","0","0","0","0","0","60" +"22799","-1","","","","","Soulseeker","1","0","-31.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","327728","1638641","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","89","-1","0","0","243","0","0","0","0","366","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","31","0","0","0","0","0","0","0","0","60" +"22800","-1","","","","","Brimstone Staff","1","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245498","1227490","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","83","-1","0","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","30","0","0","0","0","0","0","0","0","60" +"22801","-1","","","","","Spire of Twilight","1","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","246440","1232201","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","83","-1","0","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","38","0","0","0","0","0","0","0","0","60" +"22802","-1","","","","","Kingsfall","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","265185","1325927","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","89","32767","0","0","105","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","0","0","0","0","0","0","0","0","0","60" +"22803","-1","","","","","Midnight Haze","1","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","180171","900858","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","81","32767","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","20","12","0","0","0","0","0","0","0","0","60" +"22804","-1","","","","","Maexxna's Fang","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","199392","996964","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","83","32767","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","8","0","0","0","0","0","0","0","0","0","60" +"22805","-1","","","","","Naxxramas Sword 1H 1 [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","149352","746762","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","77","-1","0","0","106","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","14","7","0","0","0","0","0","0","0","60" +"22806","-1","","","","","Widow's Remorse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","182204","911020","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","70","0","0","0","0","131","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","17","0","0","0","0","0","0","0","0","0","60" +"22807","-1","","","","","Wraith Blade","1","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","201633","1008169","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","83","-1","0","0","82","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","8","0","0","0","0","0","0","0","0","60" +"22808","-1","","","","","The Castigator","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","207785","1038929","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","83","32767","0","0","119","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"22809","-1","","","","","Maul of the Redeemed Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","260674","1303372","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","83","-1","0","0","244","0","0","0","0","367","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","29","0","0","0","0","0","0","0","0","60" +"22810","-1","","","","","Toxin Injector","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142362","711813","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","81","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","0","0","0","0","0","0","0","0","0","60" +"22811","-1","","","","","Soulstring","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","157520","787600","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","83","-1","0","0","103","0","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","6","0","0","0","0","0","0","0","0","0","60" +"22812","-1","","","","","Nerubian Slavemaker","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211849","1059247","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","89","-1","0","0","128","0","0","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","0","0","0","0","0","0","0","0","0","0","60" +"22813","-1","","","","","Claymore of Unholy Might","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","239811","1199058","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","81","-1","0","0","235","0","0","0","0","354","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22814","-1","","","","","Naxxramas Sword 2H 2 [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","220295","1101475","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","0","0","229","0","0","0","0","344","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","0","0","0","0","0","0","0","0","0","60" +"22815","-1","","","","","Severance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","241520","1207603","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","81","-1","0","0","235","0","0","0","0","354","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","18","43","0","0","0","0","0","0","0","0","60" +"22816","-1","","","","","Hatchet of Sundered Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","213775","1068875","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","83","-1","0","0","119","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22817","-1","","","","","Naxxramas Polearm [PH]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181237","906186","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","77","32767","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","31","0","0","0","0","0","0","0","0","60" +"22818","-1","","","","","The Plague Bearer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124717","623585","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3106","0","0","0","15","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","0","0","0","0","0","0","0","0","0","60" +"22819","-1","","","","","Shield of Condemnation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194225","971128","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","-1","0","0","0","0","0","0","0","0","0","0","0","0","3425","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","10","0","0","0","0","0","0","0","0","60" +"22820","-1","","","","","Wand of Fates","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147283","736417","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","83","-1","0","0","119","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","7","0","0","0","0","0","0","0","0","60" +"22821","-1","","","","","Doomfinger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229338","1146691","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","92","-1","0","0","146","0","0","0","0","271","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22822","-1","Return to the iCoke redemption vendor to receive a virtual prize","","","","iCoke Prize Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22843","-1","","","","","Blood Guard's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15084","75422","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","19","20","0","0","0","0","0","0","0","0","60" +"22852","-1","","","","","Blood Guard's Dragonhide Treads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11921","59605","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","13","13","6","6","6","0","0","0","0","0","60" +"22855","-1","","","","","Blood Guard's Dreadweave Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9536","47684","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","13","0","0","0","0","0","0","0","0","60" +"22856","-1","","","","","Blood Guard's Leather Walkers","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12192","60961","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22857","-1","","","","","Blood Guard's Mail Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14751","73757","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","14","12","13","0","0","0","0","0","0","0","60" +"22858","-1","","","","","Blood Guard's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9827","49139","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","23","10","9","0","0","0","0","0","0","0","60" +"22859","-1","","","","","Blood Guard's Satin Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9536","47684","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","15","0","0","0","0","0","0","0","0","60" +"22860","-1","","","","","Blood Guard's Silk Walkers","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9900","49504","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"22862","-1","","","","","Blood Guard's Chain Vices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9973","49869","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","16","18","0","0","0","0","0","0","0","0","60" +"22863","-1","","","","","Blood Guard's Dragonhide Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7947","39737","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","13","10","12","9","0","0","0","0","0","0","60" +"22864","-1","","","","","Blood Guard's Leather Grips","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8373","41866","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22865","-1","","","","","Blood Guard's Dreadweave Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6723","33616","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","14","4","0","0","0","0","0","0","0","0","60" +"22867","-1","","","","","Blood Guard's Mail Vices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10157","50789","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","15","9","0","0","0","0","0","0","0","0","60" +"22868","-1","","","","","Blood Guard's Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6357","31789","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","17","17","0","0","0","0","0","0","0","0","60" +"22869","-1","","","","","Blood Guard's Satin Handwraps","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6821","34106","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","5","0","0","0","0","0","0","0","0","60" +"22870","-1","","","","","Blood Guard's Silk Handwraps","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6845","34226","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","10","0","0","0","0","0","0","0","0","60" +"22872","-1","","","","","Legionnaire's Plate Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14120","70603","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","23","21","0","0","0","0","0","0","0","0","60" +"22873","-1","","","","","Legionnaire's Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14175","70875","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","17","12","0","0","0","0","0","0","0","0","60" +"22874","-1","","","","","Legionnaire's Chain Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21341","106709","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","16","13","6","0","0","0","0","0","0","0","60" +"22875","-1","","","","","Legionnaire's Chain Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21423","107117","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","13","6","0","0","0","0","0","0","0","60" +"22876","-1","","","","","Legionnaire's Mail Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21505","107525","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","18","18","17","0","0","0","0","0","0","0","60" +"22877","-1","","","","","Legionnaire's Dragonhide Chestpiece","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17987","89935","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","13","13","12","12","0","0","0","0","0","0","60" +"22878","-1","","","","","Legionnaire's Dragonhide Leggings","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18055","90275","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","12","12","12","5","12","0","0","0","0","0","60" +"22879","-1","","","","","Legionnaire's Leather Chestpiece","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18123","90615","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","22","0","0","0","0","0","0","0","0","0","60" +"22880","-1","","","","","Legionnaire's Leather Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18191","90955","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"22881","-1","","","","","Legionnaire's Dreadweave Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14605","73028","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","21","13","0","0","0","0","0","0","0","0","60" +"22882","-1","","","","","Legionnaire's Satin Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14660","73300","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","19","15","0","0","0","0","0","0","0","0","60" +"22883","-1","","","","","Legionnaire's Silk Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14714","73572","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","18","17","5","0","0","0","0","0","0","0","60" +"22884","-1","","","","","Legionnaire's Dreadweave Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14768","73844","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","60" +"22885","-1","","","","","Legionnaire's Satin Tunic","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14821","74108","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","19","15","0","0","0","0","0","0","0","0","60" +"22886","-1","","","","","Legionnaire's Silk Tunic","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14876","74380","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","18","17","5","0","0","0","0","0","0","0","60" +"22887","-1","","","","","Legionnaire's Mail Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22395","111979","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","18","17","0","0","0","0","0","0","0","0","60" +"22890","-1","","","","","Tome of Frost Ward V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22891","-1","","","","","Grimoire of Shadow Ward IV","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22892","-1","","","","","Dim Necrotic Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22895","-1","","","","","Conjured Cinnamon Roll","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22897","-1","","","","","Tome of Conjure Food VII","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22930","-1","","","","","A Bloodstained Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2878","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22932","-1","","","","","A Torn Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2880","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22933","-1","","","","","[UNUSED] Abom Stoone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22935","-1","","","","","Touch of Frost","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22936","-1","","","","","Wristguards of Vengeance","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40803","204017","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1535","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","10","0","0","0","0","0","0","0","0","60" +"22937","-1","","","","","Gem of Nerubis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"22938","-1","","","","","Cryptfiend Silk Cloak","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61651","308256","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","0","0","0","0","0","0","0","0","0","60" +"22939","-1","","","","","Band of Unanswered Prayers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","11","12","0","0","0","0","0","0","0","60" +"22940","-1","","","","","Icebane Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62103","310517","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","698","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","9","0","0","0","0","0","0","0","0","60" +"22941","-1","","","","","Polar Shoulder Pads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77904","389522","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","0","0","0","0","0","0","0","0","0","60" +"22942","-1","","","","","The Widow's Embrace","1","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","189114","945573","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","81","32767","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","12","14","0","0","0","0","0","0","0","60" +"22943","-1","","","","","Malice Stone Pendant","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","9","0","0","0","0","0","0","0","0","60" +"22944","-1","","","","","A Crumpled Missive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2881","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22945","-1","","","","","A Careworn Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2882","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22946","-1","","","","","A Ragged Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2883","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22947","-1","","","","","Pendant of Forgotten Names","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","18","0","0","0","0","0","0","0","0","60" +"22948","-1","","","","","A Smudged Document","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2884","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22949","-1","","","","","Cracked Necrotic Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22950","-1","","","","","Faint Necrotic Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22954","-1","","","","","Kiss of the Spider","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22960","-1","","","","","Cloak of Suturing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62091","310456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","0","0","0","0","0","0","0","0","60" +"22961","-1","","","","","Band of Reanimation","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113642","454568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","34","0","0","0","0","0","0","0","0","0","60" +"22967","-1","","","","","Icy Scale Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95926","479632","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","0","0","0","0","0","0","0","0","0","0" +"22968","-1","","","","","Glacial Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59390","296950","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","0","0","0","0","0","0","0","0","0","0" +"22970","-1","","","","","A Bloodstained Envelope","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9301","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22972","-1","","","","","A Careworn Note","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9299","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22973","-1","","","","","A Crumpled Missive","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9302","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22974","-1","","","","","A Ragged Page","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9300","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22975","-1","","","","","A Smudged Document","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9304","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22977","-1","","","","","A Torn Letter","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9295","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22981","-1","","","","","Gluth's Missing Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128862","515451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22983","-1","","","","","Rime Covered Mantle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62757","313787","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","12","0","0","0","0","0","0","0","0","60" +"22988","-1","","","","","The End of Dreams","1","0","-21.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197946","989733","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","83","32767","0","0","86","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","13","13","0","0","0","0","0","0","0","0","60" +"22994","-1","","","","","Digested Hand of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91352","365411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"22999","-1","","","","","Tabard of the Argent Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23000","-1","","","","","Plated Abomination Ribcage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91256","456281","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","953","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","25","0","0","0","0","0","0","0","0","60" +"23001","-1","","","","","Eye of Diminution","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23002","-1","","","","","Turtle Box","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23004","-1","","","","","Idol of Longevity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58479","292397","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23005","-1","","","","","Totem of Flowing Water","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58699","293497","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23006","-1","","","","","Libram of Light","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","58925","294628","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23007","-1","","","","","Piglet's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23008","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2885","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23009","-1","","","","","Wand of the Whispering Dead","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148994","744973","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","83","-1","0","0","119","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","9","0","0","0","0","0","0","0","0","60" +"23010","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2886","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23011","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2887","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23012","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2888","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23013","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2889","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23014","-1","","","","","Iblis, Blade of the Fallen Seraph","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","183589","917949","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23015","-1","","","","","Rat Cage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23016","-1","","","","","Sealed Research Report","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2890","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23017","-1","","","","","Veil of Eclipse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63014","315070","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","10","0","0","0","0","0","0","0","0","60" +"23018","-1","","","","","Signet of the Fallen Defender","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23019","-1","","","","","Icebane Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63466","317331","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","757","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","0","0","0","0","0","0","0","0","60" +"23020","-1","","","","","Polar Helmet","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79607","398039","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"23021","-1","","","","","The Soul Harvester's Bindings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42608","213041","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1503","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","11","0","0","0","0","0","0","0","0","60" +"23022","-1","A bag of 5 gold. For those who like telling children there's no Great Father Winter...","","","","Curmudgeon's Payoff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23023","-1","","","","","Sadist's Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23024","-1","","","","","Prepared Field Duty Papers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23025","-1","","","","","Seal of the Damned","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","0","0","0","0","0","0","0","0","0","60" +"23027","-1","","","","","Warmth of Forgiveness","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23028","-1","","","","","Hailstone Band","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","98660","394641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","0","0","0","0","0","0","0","0","0","60" +"23029","-1","","","","","Noth's Frigid Heart","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","12","13","0","0","0","0","0","0","0","0","60" +"23030","-1","","","","","Cloak of the Scourge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59817","299089","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","23","0","0","0","0","0","0","0","0","0","60" +"23031","-1","","","","","Band of the Inevitable","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23032","-1","","","","","Glacial Headdress","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60264","301320","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","21","0","0","0","0","0","0","0","0","60" +"23033","-1","","","","","Icy Scale Coif","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93164","465822","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","425","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"23034","-1","","","","","Nax PH Crit Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58290","291450","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1","0","0","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","33","0","0","0","0","0","0","0","0","60" +"23035","-1","","","","","Preceptor's Hat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62561","312809","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","24","0","0","0","0","0","0","0","0","60" +"23036","-1","","","","","Necklace of Necropsy","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","11","10","0","0","0","0","0","0","0","60" +"23037","-1","","","","","Ring of Spiritual Fervor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","11","0","0","0","0","0","0","0","0","60" +"23038","-1","","","","","Band of Unnatural Forces","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23039","-1","","","","","The Eye of Nerub","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","264392","1321961","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","83","32767","0","0","251","0","0","0","0","378","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","45","22","0","0","0","0","0","0","0","0","60" +"23040","-1","","","","","Glyph of Deflection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23041","-1","","","","","Slayer's Crest","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23042","-1","","","","","Loatheb's Reflection","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","13","13","13","13","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23043","-1","","","","","The Face of Death","1","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174810","874054","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","3354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","0","0","0","0","0","0","0","0","0","60" +"23044","-1","","","","","Harbinger of Doom","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","194870","974353","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","83","32767","0","0","83","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","8","8","0","0","0","0","0","0","0","0","60" +"23045","-1","","","","","Shroud of Dominion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82578","412894","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","0","0","0","0","0","0","0","0","0","60" +"23046","-1","","","","","The Restrained Essence of Sapphiron","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23047","-1","","","","","Eye of the Dead","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23048","-1","","","","","Sapphiron's Right Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","9","0","0","0","0","0","0","0","0","60" +"23049","-1","","","","","Sapphiron's Left Eye","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","12","8","0","0","0","0","0","0","0","0","60" +"23050","-1","","","","","Cloak of the Necropolis","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86439","432199","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","12","0","0","0","0","0","0","0","0","60" +"23053","-1","","","","","Stormrage's Talisman of Seething","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","60" +"23054","-1","","","","","Gressil, Dawn of Ruin","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","278398","1391991","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","89","-1","0","0","138","0","0","0","0","257","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","0","0","0","0","0","0","0","0","0","60" +"23055","-1","","","","","Word of Thawing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23056","-1","","","","","Hammer of the Twisting Nether","1","0","-31.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","280418","1402092","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","89","32767","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","8","11","0","0","0","0","0","0","0","0","60" +"23057","-1","","","","","Gem of Trapped Innocents","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","9","7","0","0","0","0","0","0","0","0","60" +"23058","-1","","","","","Life Channeling Necklace","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23059","-1","","","","","Ring of the Dreadnaught","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","92","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","0","0","0","0","0","0","0","0","0","60" +"23060","-1","","","","","Bonescythe Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","92","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","20","20","0","0","0","0","0","0","0","60" +"23061","-1","","","","","Ring of Faith","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","92","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23062","-1","","","","","Frostfire Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","92","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","10","0","0","0","0","0","0","0","0","60" +"23063","-1","","","","","Plagueheart Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","92","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23064","-1","","","","","Ring of the Dreamwalker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","92","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","16","0","0","0","0","0","0","0","60" +"23065","-1","","","","","Ring of the Earthshatterer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","92","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23066","-1","","","","","Ring of Redemption","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","92","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23067","-1","","","","","Ring of the Cryptstalker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","92","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","0","0","0","0","0","0","0","0","0","60" +"23068","-1","","","","","Legplates of Carnage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81297","406486","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1535","0","0","0","0","0","0","0","0","0","0","0","0","815","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","18","0","0","0","0","0","0","0","0","60" +"23069","-1","","","","","Necro-Knight's Garb","1","0","320","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89953","449768","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","400","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","32","0","0","0","0","0","0","0","0","0","60" +"23070","-1","","","","","Leggings of Polarity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90286","451430","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","14","0","0","0","0","0","0","0","0","60" +"23071","-1","","","","","Leggings of Apocalypse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102741","513709","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","23","15","0","0","0","0","0","0","0","60" +"23072","-1","","","","","Fists of the Unrelenting","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58039","290197","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1535","0","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","26","0","0","0","0","0","0","0","0","60" +"23073","-1","","","","","Boots of Displacement","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77614","388070","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","21","0","0","0","0","0","0","0","0","60" +"23075","-1","","","","","Death's Bargain","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","133426","667131","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","12","12","0","0","0","0","0","0","0","0","60" +"23078","-1","","","","","Gauntlets of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11912","59563","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23081","-1","","","","","Handwraps of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13989","69948","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23082","-1","","","","","Handguards of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16851","84257","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23083","-1","","","","","Captured Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23084","-1","","","","","Gloves of Undead Cleansing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11318","56592","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","0" +"23085","-1","","","","","Robe of Undead Cleansing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22722","113610","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","13","0","0","0","0","0","0","0","0","58" +"23086","-1","","","","","[UNUSED] Letter Cookie","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23087","-1","","","","","Breastplate of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22892","114462","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23088","-1","","","","","Chestguard of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34463","172315","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23089","-1","","","","","Tunic of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28825","144129","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23090","-1","","","","","Bracers of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11572","57864","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23091","-1","","","","","Bracers of Undead Cleansing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11615","58077","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","7","0","0","0","0","0","0","0","0","58" +"23092","-1","","","","","Wristguards of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23093","-1","","","","","Wristwraps of Undead Slaying","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14624","73122","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23122","-1","","","","","Consecrated Sharpening Stone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"23123","-1","","","","","Blessed Wizard Oil","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"23124","-1","","","","","Staff of Balzaphon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59304","296524","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","60","-1","0","0","160","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","10","7","0","0","0","0","0","0","0","55" +"23125","-1","","","","","Chains of the Lich","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","55" +"23126","-1","","","","","Waistband of Balzaphon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9488","47443","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","13","0","0","0","0","0","0","0","0","55" +"23127","-1","","","","","Cloak of Revanchion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16476","82383","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","10","10","0","0","0","0","0","0","0","58" +"23128","-1","","","","","The Shadow's Grasp","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10461","52306","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","0","0","0","0","0","0","0","0","57" +"23129","-1","","","","","Bracers of Mending","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11269","56348","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","13","5","0","0","0","0","0","0","0","57" +"23132","-1","","","","","Lord Blackwood's Blade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56951","284759","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","-1","0","0","42","0","0","0","0","80","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","14","0","0","0","0","0","0","0","0","0","57" +"23139","-1","","","","","Lord Blackwood's Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33837","169189","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","57" +"23156","-1","","","","","Blackwood's Thigh","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13113","52453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","13","0","0","0","0","0","0","0","0","57" +"23160","-1","","","","","Friendship Bread","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23161","-1","","","","","Freshly-Squeezed Lemonade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23162","-1","","","","","A Very Large Bag","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","30","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","60" +"23163","-1","","","","","Performer's Wand","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23164","-1","","","","","Bubbly Beverage","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23168","-1","","","","","Scorn's Focal Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2665","13328","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","35","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","30" +"23169","-1","","","","","Scorn's Icy Choker","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","5","0","0","0","0","0","0","0","0","30" +"23170","-1","","","","","The Frozen Clutch","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2684","13424","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","30" +"23171","-1","","","","","The Axe of Severing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4213","21067","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","0","0","0","0","0","0","0","0","0","20" +"23172","-1","The perfect snack on a warm summer day.","","","","Refreshing Red Apple","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23173","-1","","","","","Abomination Skin Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1243","6215","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","7","0","0","0","0","0","0","0","0","20" +"23175","-1","","","","","Tasty Summer Treat","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23176","-1","","","","","Fizzy Energy Drink","1","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23177","32767","","","","","Lady Falther'ess' Finger","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10536","52683","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","41","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","36" +"23178","-1","","","","","Mantle of Lady Falther'ess","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4089","20447","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","0","0","0","0","0","0","0","0","0","36" +"23179","-1","","","","","Flame of Orgrimmar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9324","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23180","-1","","","","","Flame of Thunder Bluff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9325","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23181","-1","","","","","Flame of the Undercity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9326","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23182","-1","","","","","Flame of Stormwind","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9330","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23183","-1","","","","","Flame of Ironforge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9331","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23184","-1","","","","","Flame of Darnassus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9332","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23192","-1","","","","","Tabard of the Scarlet Crusade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7143","28575","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23193","-1","","","","","Skeletal Steed Reins","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23194","-1","","","","","Lesser Mark of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23195","-1","","","","","Mark of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23196","-1","","","","","Greater Mark of the Dawn","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23197","-1","","","","","Idol of the Moon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18717","93589","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23198","-1","","","","","Idol of Brutality","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18165","90827","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23199","-1","","","","","Totem of the Storm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18858","94293","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23200","-1","","","","","Totem of Sustaining","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18929","94646","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23201","-1","","","","","Libram of Divinity","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18997","94989","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23203","-1","","","","","Libram of Fervor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19138","95693","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23206","-1","","","","","Mark of the Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23207","-1","","","","","Mark of the Champion","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23211","-1","Gooey, melty, good.","","","","Toasted Smorc","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23215","-1","Sweet honey crackers, marshmallow and chocolate.","","","","Bag of Smorc Ingredients","1","20160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23219","-1","","","","","Girdle of the Mentor","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44473","222368","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","21","20","0","0","0","0","0","0","0","60" +"23220","-1","","","","","Crystal Webbed Robe","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89270","446354","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","1535","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","19","0","0","0","0","0","0","0","0","60" +"23221","-1","","","","","Misplaced Servo Arm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203182","1015910","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","83","-1","0","0","128","0","0","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23224","-1","","","","","Summer Gift Package","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23226","-1","","","","","Ghoul Skin Tunic","1","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97150","485750","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","22","0","0","0","0","0","0","0","0","60" +"23227","-1","Return to the iCoke redemption vendor to receive a gift box","","","","iCoke Gift Box Voucher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","5","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23237","-1","","","","","Ring of the Eternal Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"23238","-1","","","","","Stygian Buckler","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128589","642946","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23242","-1","","","","","Claw of the Frost Wyrm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","267143","1335716","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","88","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","8","0","0","0","0","0","0","0","0","0","60" +"23243","-1","","","","","Champion's Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13158","65791","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","18","17","0","0","0","0","0","0","0","0","60" +"23244","-1","","","","","Champion's Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13205","66027","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","24","21","0","0","0","0","0","0","0","0","60" +"23245","-1","","","","","[PH] Everburning Elixir","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23246","-1","","","","","Fiery Festival Brew","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23247","-1","","","","","Burning Blossom","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23250","-1","","","","","Prismatic Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23251","-1","","","","","Champion's Chain Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18384","91920","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","18","14","9","0","0","0","0","0","0","0","60" +"23252","-1","","","","","Champion's Chain Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18536","92684","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","18","13","0","0","0","0","0","0","0","0","60" +"23253","-1","","","","","Champion's Dragonhide Headguard","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15438","77190","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","12","16","16","8","0","0","0","0","0","60" +"23254","-1","","","","","Champion's Dragonhide Shoulders","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15495","77477","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","12","6","12","6","12","0","0","0","0","0","60" +"23255","-1","","","","","Champion's Dreadweave Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12443","62217","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","21","18","0","0","0","0","0","0","0","0","60" +"23256","-1","","","","","Champion's Dreadweave Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12490","62454","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23257","-1","","","","","Champion's Leather Helm","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15672","78362","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","23","0","0","0","0","0","0","0","0","0","60" +"23258","-1","","","","","Champion's Leather Shoulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16152","80763","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","17","0","0","0","0","0","0","0","0","0","60" +"23259","-1","","","","","Champion's Mail Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19454","97270","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","24","16","6","0","0","0","0","0","0","0","60" +"23260","-1","","","","","Champion's Mail Pauldrons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19611","98058","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","16","10","5","0","0","0","0","0","0","0","60" +"23261","-1","","","","","Champion's Satin Hood","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13062","65312","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","18","0","0","0","0","0","0","0","0","60" +"23262","-1","","","","","Champion's Satin Mantle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13109","65548","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","14","12","0","0","0","0","0","0","0","0","60" +"23263","-1","","","","","Champion's Silk Cowl","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13156","65784","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","19","18","6","0","0","0","0","0","0","0","60" +"23264","-1","","","","","Champion's Silk Mantle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13204","66020","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","14","11","4","0","0","0","0","0","0","0","60" +"23271","-1","","","","","QATest Darkmoon Faire Tickets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23272","-1","","","","","Knight-Captain's Lamellar Breastplate","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14169","70845","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","18","17","12","0","0","0","0","0","0","0","60" +"23273","-1","","","","","Knight-Captain's Lamellar Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14222","71110","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","17","18","12","0","0","0","0","0","0","0","60" +"23274","-1","","","","","Knight-Lieutenant's Lamellar Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6651","33256","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","13","12","0","0","0","0","0","0","0","0","60" +"23275","-1","","","","","Knight-Lieutenant's Lamellar Sabatons","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10013","50069","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","12","12","12","0","0","0","0","0","0","0","60" +"23276","-1","","","","","Lieutenant Commander's Lamellar Headguard","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12826","64132","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","19","18","12","0","0","0","0","0","0","0","60" +"23277","-1","","","","","Lieutenant Commander's Lamellar Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12873","64368","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","14","14","8","0","0","0","0","0","0","0","60" +"23278","-1","","","","","Knight-Lieutenant's Chain Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15253","76266","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","19","20","0","0","0","0","0","0","0","0","60" +"23279","-1","","","","","Knight-Lieutenant's Chain Vices","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10160","50804","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","16","18","0","0","0","0","0","0","0","0","60" +"23280","-1","","","","","Knight-Lieutenant's Dragonhide Grips","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8497","42486","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","13","10","12","9","0","0","0","0","0","0","60" +"23281","-1","","","","","Knight-Lieutenant's Dragonhide Treads","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12792","63961","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","13","13","6","6","6","0","0","0","0","0","60" +"23282","-1","","","","","Knight-Lieutenant's Dreadweave Handwraps","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6847","34236","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","14","4","0","0","0","0","0","0","0","0","60" +"23283","-1","","","","","Knight-Lieutenant's Dreadweave Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10307","51539","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23284","-1","","","","","Knight-Lieutenant's Leather Grips","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8619","43099","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","18","0","0","0","0","0","0","0","0","0","60" +"23285","-1","","","","","Knight-Lieutenant's Leather Walkers","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12976","64880","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","18","0","0","0","0","0","0","0","0","0","60" +"23286","-1","","","","","Knight-Lieutenant's Plate Gauntlets","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6945","34726","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","17","17","0","0","0","0","0","0","0","0","60" +"23287","-1","","","","","Knight-Lieutenant's Plate Greaves","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10454","52274","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","23","10","9","0","0","0","0","0","0","0","60" +"23288","-1","","","","","Knight-Lieutenant's Satin Handwraps","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6993","34969","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","5","0","0","0","0","0","0","0","0","60" +"23289","-1","","","","","Knight-Lieutenant's Satin Walkers","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9526","47634","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","17","15","0","0","0","0","0","0","0","0","60" +"23290","-1","","","","","Knight-Lieutenant's Silk Handwraps","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6552","32762","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","10","3","0","12","10","0","0","0","0","0","0","0","0","60" +"23291","-1","","","","","Knight-Lieutenant's Silk Walkers","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9865","49329","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","11","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"23292","-1","","","","","Knight-Captain's Chain Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21833","109168","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","16","13","6","0","0","0","0","0","0","0","60" +"23293","-1","","","","","Knight-Captain's Chain Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21915","109575","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","16","13","6","0","0","0","0","0","0","0","60" +"23294","-1","","","","","Knight-Captain's Dragonhide Chestpiece","1","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18330","91653","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","13","13","12","12","0","0","0","0","0","0","60" +"23295","-1","","","","","Knight-Captain's Dragonhide Leggings","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18396","91983","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","12","12","12","5","12","0","0","0","0","0","60" +"23296","-1","","","","","Knight-Captain's Dreadweave Legguards","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14771","73859","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","21","13","0","0","0","0","0","0","0","0","60" +"23297","-1","","","","","Knight-Captain's Dreadweave Tunic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14826","74130","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","20","20","0","0","0","0","0","0","0","0","60" +"23298","-1","","","","","Knight-Captain's Leather Chestpiece","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18600","93003","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","22","0","0","0","0","0","0","0","0","0","60" +"23299","-1","","","","","Knight-Captain's Leather Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18666","93334","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"23300","-1","","","","","Knight-Captain's Plate Hauberk","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14987","74939","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","5","3","0","23","21","0","0","0","0","0","0","0","0","60" +"23301","-1","","","","","Knight-Captain's Plate Leggings","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15042","75211","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","17","12","0","0","0","0","0","0","0","0","60" +"23302","-1","","","","","Knight-Captain's Satin Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15096","75483","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","19","15","0","0","0","0","0","0","0","0","60" +"23303","-1","","","","","Knight-Captain's Satin Tunic","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15149","75747","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","19","15","0","0","0","0","0","0","0","0","60" +"23304","-1","","","","","Knight-Captain's Silk Legguards","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15203","76019","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","7","3","0","18","17","5","0","0","0","0","0","0","0","60" +"23305","-1","","","","","Knight-Captain's Silk Tunic","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15258","76291","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","12","20","3","0","18","17","5","0","0","0","0","0","0","0","60" +"23306","-1","","","","","Lieutenant Commander's Chain Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18533","92666","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","18","14","9","0","0","0","0","0","0","0","60" +"23307","-1","","","","","Lieutenant Commander's Chain Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18684","93424","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","18","13","0","0","0","0","0","0","0","0","60" +"23308","-1","","","","","Lieutenant Commander's Dragonhide Headguard","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15560","77804","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","16","12","16","16","8","0","0","0","0","0","60" +"23309","-1","","","","","Lieutenant Commander's Dragonhide Shoulders","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15619","78099","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","12","6","12","6","12","0","0","0","0","0","60" +"23310","-1","","","","","Lieutenant Commander's Dreadweave Cowl","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12541","62709","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","21","18","0","0","0","0","0","0","0","0","60" +"23311","-1","","","","","Lieutenant Commander's Dreadweave Spaulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12589","62945","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23312","-1","","","","","Lieutenant Commander's Leather Helm","1","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15795","78976","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","23","0","0","0","0","0","0","0","0","0","60" +"23313","-1","","","","","Lieutenant Commander's Leather Shoulders","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15854","79271","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","17","0","0","0","0","0","0","0","0","0","60" +"23314","-1","","","","","Lieutenant Commander's Plate Helm","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12729","63647","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","24","21","0","0","0","0","0","0","0","0","60" +"23315","-1","","","","","Lieutenant Commander's Plate Shoulders","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12776","63883","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","18","17","0","0","0","0","0","0","0","0","60" +"23316","-1","","","","","Lieutenant Commander's Satin Hood","1","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12823","64119","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","20","18","0","0","0","0","0","0","0","0","60" +"23317","-1","","","","","Lieutenant Commander's Satin Mantle","1","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12871","64355","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","14","12","0","0","0","0","0","0","0","0","60" +"23318","-1","","","","","Lieutenant Commander's Silk Cowl","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12917","64585","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","1","3","0","19","18","6","0","0","0","0","0","0","0","60" +"23319","-1","","","","","Lieutenant Commander's Silk Mantle","1","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12964","64821","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","14","3","3","0","14","11","4","0","0","0","0","0","0","0","60" +"23320","-1","","","","","Tablet of Flame Shock VI","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23323","-1","","","","","Crown of the Fire Festival","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23324","-1","","","","","Mantle of the Fire Festival","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23325","-1","","","","","[PH] Picnic Parcel","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23326","-1","","","","","Midsummer Sausage","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23327","-1","","","","","Fire-toasted Bun","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23328","-1","","","","","Monster - Sword2H, Instructor Razuvious","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23356","-1","","","","","Monster - Shield, Skullflame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23360","-1","","","","","Head of Instructor Razuvious","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23369","-1","","","","","Monster - Dagger, Claw of Chromaggus","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23379","-1","","","","","Cinder Bracers","1","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23418","-1","","","","","Test Sapper Charge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23435","-1","","","","","Elderberry Pie","1","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23451","-1","","","","","Grand Marshal's Mageblade","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23452","-1","","","","","Grand Marshal's Tome of Power","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","23","4","0","17","16","0","0","0","0","0","0","0","0","60" +"23453","-1","","","","","Grand Marshal's Tome of Restoration","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","23","4","0","14","14","14","0","0","0","0","0","0","0","60" +"23454","-1","","","","","Grand Marshal's Warhammer","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23455","-1","","","","","Grand Marshal's Demolisher","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57053","285269","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","28","27","0","0","0","0","0","0","0","0","60" +"23456","-1","","","","","Grand Marshal's Swiftblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"23464","-1","","","","","High Warlord's Battle Mace","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23465","-1","","","","","High Warlord's Destroyer","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57089","285448","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","17","4","0","28","27","0","0","0","0","0","0","0","0","60" +"23466","-1","","","","","High Warlord's Spellblade","1","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23467","-1","","","","","High Warlord's Quickblade","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228358","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"23468","-1","","","","","High Warlord's Tome of Destruction","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","23","4","0","17","16","0","0","0","0","0","0","0","0","60" +"23469","-1","","","","","High Warlord's Tome of Mending","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","18","23","4","0","14","14","14","0","0","0","0","0","0","0","60" +"23545","-1","","","","","Power of the Scourge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23547","-1","","","","","Resilience of the Scourge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23548","-1","","","","","Might of the Scourge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23549","-1","","","","","Fortitude of the Scourge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23557","-1","","","","","Larvae of the Great Worm","1","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132177","660885","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","81","32767","0","0","103","0","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"23558","-1","","","","","The Burrower's Shell","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1807","7230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23567","-1","","","","","[PH] Silithus PvP Dust [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23570","-1","","","","","Jom Gabbar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1807","7230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23577","-1","","","","","The Hungering Cold","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","269253","1346265","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","89","-1","0","0","76","0","0","0","0","143","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","0","0","0","0","0","0","0","0","0","60" +"23578","-1","Food for the Mind","","","","Diet McWeaksauce","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"23579","-1","The Original.","","","","The McWeaksauce Classic","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23582","-1","","","","","Monster - Lady Blameux","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23583","-1","","","","","Monster - Sir Zeliek","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23656","-1","","","","","Promotion Test Item","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23663","-1","","","","","Girdle of Elemental Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64264","321323","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","21","0","0","0","0","0","0","0","0","60" +"23664","-1","","","","","Pauldrons of Elemental Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96825","484128","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","64","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","21","0","0","0","0","0","0","0","0","60" +"23665","-1","","","","","Leggings of Elemental Fury","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128529","642647","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","64","0","0","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","27","0","0","0","0","0","0","0","0","60" +"23666","-1","","","","","Belt of the Grand Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43647","218236","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","18","18","0","0","0","0","0","0","0","60" +"23667","-1","","","","","Spaulders of the Grand Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65720","328600","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","17","18","0","0","0","0","0","0","0","60" +"23668","-1","","","","","Leggings of the Grand Crusader","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87950","439751","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","21","0","0","0","0","0","0","0","60" +"23683","-1","","","","","Crystal Flake Throat Lozenge","1","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23684","-1","","","","","Crystal Infused Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23689","-1","","","","","Manual: Crystal Infused Bandage","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23690","-1","","","","","Recipe: Crystal Flake Throat Lozenge","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23696","-1","","","","","[PH] Potion of Heightened Senses [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23698","-1","","","","","[PH] Nature Resist Potion [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23699","-1","","","","","[PH] Light Consumable [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23700","-1","","","","","[PH] Glorious Standard of the Alliance [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23701","-1","","","","","[PH] Victorious Standard of the Horde [DEP]","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23705","-1","","","","","Tabard of Flame","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23709","-1","","","","","Tabard of Frost","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23710","-1","","","","","Upperdeck Tabard #3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23712","-1","","","","","White Tiger Cub","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23713","-1","","","","","Hippogryph Hatchling","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23714","-1","","","","","Perpetual Purple Firework","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23715","-1","100% Grade A Lung Juice - Freshly Squeezed","","","","Permanent Lung Juice Cocktail","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23716","-1","","","","","Carved Ogre Idol","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23718","-1","","","","","Permanent Ground Scorpok Assay","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23719","-1","Best Served Chilled","","","","Permanent Cerebral Cortex Compound","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23720","32767","","","","","Riding Turtle","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"23721","-1","Strawberry Flavor","","","","Permanent Gizzard Gum","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23722","-1","Robust Operational Imbue Derived From Snickerfang","","","","Permanent R.O.I.D.S.","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23725","-1","","","","","QAEnchant Fiery Weapon","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23727","-1","","","","","QAEnchant Gloves +5 Fishing","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23728","-1","","","","","QAEnchant Gloves Riding Skill","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23743","-1","","","","","Monster - Sword 1H - Widow's Remorse","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23794","-1","Blessed with the mojo of Zanza!","","","","Permanent Sheen of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23795","-1","Blessed with the mojo of Zanza!","","","","Permanent Spirit of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23796","-1","Blessed with the mojo of Zanza!","","","","Permanent Swiftness of Zanza","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"24071","-1","Looks like this is for internal use only.","","","","Bland Dagger","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78694","393470","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","69","-1","0","0","82","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24101","-1","","","","","Book of Ferocious Bite V","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24102","-1","","","","","Manual of Eviscerate IX","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24222","-1","","","","","The Shadowfoot Stabber","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44210","221054","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","52" +"24231","-1","","","","","Coarse Snuff","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","52","211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24232","-1","","","","","Shabby Knot","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24281","-1","Looks like the carving was never finished...","","","","Carved Ivory Bone","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","302","1210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24282","-1","","","","","Rogue's Diary","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","256","1025","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1620","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24283","-1","The name 'Lasitor' is etched into the barrel.","","","","An Antique Gun","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38086","152345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24358","-1","","","","","QATest +1000 Spell Dmg Ring","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","1" +"122270","-1","Can be sold for gold on the auction house. The auction buyer can redeem it for 30 days of game time.","","","","WoW Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0411","32768","28676","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"122284","-1","Use: Adds 30 days of game time to your World of Warcraft account.","","","","WoW Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0189","32768","28676","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"172070","-1","Contains items for your class and level. Requires 15 empty inventory slots.","","","","Customer Service Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0107","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"180089","-1","","","","","Panda Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1.0489","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184937","-1","","","","","Chronoboon Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25000","100000","1","1","1.035","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184938","-1","","","","","Supercharged Chronoboon Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1.0386","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" diff --git a/HermesProxy/CSV/ItemSparse2.csv b/HermesProxy/CSV/ItemSparse2.csv new file mode 100644 index 00000000..32168f41 --- /dev/null +++ b/HermesProxy/CSV/ItemSparse2.csv @@ -0,0 +1,30002 @@ +"Id","AllowableRace","Description","Name4","Name3","Name2","Name1","DmgVariance","DurationInInventory","QualityModifier","BagFamily","RangeMod","StatPercentageOfSocket1","StatPercentageOfSocket2","StatPercentageOfSocket3","StatPercentageOfSocket4","StatPercentageOfSocket5","StatPercentageOfSocket6","StatPercentageOfSocket7","StatPercentageOfSocket8","StatPercentageOfSocket9","StatPercentageOfSocket10","StatPercentEditor1","StatPercentEditor2","StatPercentEditor3","StatPercentEditor4","StatPercentEditor5","StatPercentEditor6","StatPercentEditor7","StatPercentEditor8","StatPercentEditor9","StatPercentEditor10","Stackable","MaxCount","RequiredAbility","SellPrice","BuyPrice","VendorStackCount","PriceVariance","PriceRandomValue","Flags1","Flags2","Flags3","Flags4","OppositeFactionItemId","MaxDurability","ItemNameDescriptionId","RequiredTransmogHoliday","RequiredHoliday","LimitCategory","GemProperties","SocketMatchEnchantmentId","TotemCategoryId","InstanceBound","ZoneBound1","ZoneBound2","ItemSet","LockId","StartQuestId","PageText","Delay","RequiredReputationId","RequiredSkillRank","RequiredSkill","ItemLevel","AllowableClass","ItemRandomSuffixGroupId","RandomProperty","MinDamage1","MinDamage2","MinDamage3","MinDamage4","MinDamage5","MaxDamage1","MaxDamage2","MaxDamage3","MaxDamage4","MaxDamage5","Resistances1","Resistances2","Resistances3","Resistances4","Resistances5","Resistances6","Resistances7","ScalingStatDistributionId","ExpansionId","ArtifactId","SpellWeight","SpellWeightCategory","SocketType1","SocketType2","SocketType3","SheatheType","Material","PageMaterial","PageLanguage","Bonding","DamageType","StatType1","StatType2","StatType3","StatType4","StatType5","StatType6","StatType7","StatType8","StatType9","StatType10","ContainerSlots","RequiredReputationRank","RequiredCityRank","RequiredHonorRank","InventoryType","OverallQualityId","AmmoType","StatValue1","StatValue2","StatValue3","StatValue4","StatValue5","StatValue6","StatValue7","StatValue8","StatValue9","StatValue10","RequiredLevel" +"25","-1","","","","","Worn Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"35","-1","","","","","Bent Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"36","-1","","","","","Worn Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37","-1","","","","","Worn Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"38","-1","","","","","Recruit's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"39","-1","","","","","Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"40","-1","","","","","Recruit's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"41","-1","","","","","OLDRecruit's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"42","-1","","","","","OLDSquire's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"43","-1","","","","","Squire's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"44","-1","","","","","Squire's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"45","-1","","","","","Squire's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"46","-1","","","","","OLDFootpad's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"47","-1","","","","","Footpad's Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"48","-1","","","","","Footpad's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"49","-1","","","","","Footpad's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"50","-1","","","","","OLDInitiate's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"51","-1","","","","","Neophyte's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"52","-1","","","","","Neophyte's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"53","-1","","","","","Neophyte's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"54","-1","","","","","OLDNovice's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"55","-1","","","","","Apprentice's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"56","-1","","","","","Apprentice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"57","-1","","","","","Acolyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"58","-1","","","","","OLDAcolyte's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"59","-1","","","","","Acolyte's Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"60","-1","","","","","Layered Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"61","-1","","","","","Dwarven Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"77","-1","","","","","Deprecated Outfitter Cloth Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"79","-1","","","","","Dwarven Cloth Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","53","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"80","-1","","","","","Soft Fur-lined Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"85","-1","","","","","Dirty Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","63","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"86","-1","","","","","Deprecated Old Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"87","-1","","","","","Deprecated Old Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"88","-1","","","","","Deprecated Old Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"89","-1","","","","","OLDThick Trapper's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"90","-1","","","","","OLDDwarven Initiate's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"91","-1","","","","","OLDDwarven Initiate's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"92","-1","","","","","OLDDwarven Initiate's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"93","-1","","","","","OLDDwarven Initiate's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"94","-1","","","","","Deprecated Dwarven Novice's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"95","-1","","","","","Deprecated Dwarven Novice's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"97","-1","","","","","Deprecated Dwarven Novice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"98","-1","","","","","Deprecated Dwarven Squire's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"99","-1","","","","","Deprecated Dwarven Squire's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"100","-1","","","","","Deprecated Dwarven Squire's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"101","-1","","","","","Deprecated Dwarven Squire's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"102","-1","","","","","Deprecated Dwarven Recruit's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"103","-1","","","","","Deprecated Dwarven Recruit's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"104","-1","","","","","Deprecated Sturdy Brown Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"105","-1","","","","","Deprecated Dwarven Recruit's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"113","-1","","","","","Deprecated Dwarven Apprentice Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"114","-1","","","","","Deprecated Dwarven Apprentice Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"115","-1","","","","","Deprecated Dwarven Apprentice Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"117","-1","","","","","Tough Jerky","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"118","-1","","","","","Minor Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"119","-1","","","","","Deprecated Rogue's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"120","-1","","","","","Thug Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"121","-1","","","","","Thug Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"122","-1","","","","","OLDThug Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"123","-1","","","","","Deprecated Orc Apprentice Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"124","-1","","","","","Deprecated Orc Apprentice Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"125","-1","","","","","Deprecated Orc Apprentice Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"126","-1","","","","","Deprecated Orc Apprentice Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"127","-1","","","","","Trapper's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"128","-1","","","","","Deprecated Tauren Trapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"129","-1","","","","","Rugged Trapper's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"130","-1","","","","","Deprecated Tauren Trapper's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"131","-1","","","","","Deprecated Orc Acolyte's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"132","-1","","","","","Deprecated Orc Acolyte's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"133","-1","","","","","Deprecated Orc Acolyte's Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"134","-1","","","","","Deprecated Stiff Leather Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"135","-1","","","","","Deprecated Stiff Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"136","-1","","","","","Deprecated Old Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"137","-1","","","","","OLDNeophyte's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"138","-1","","","","","Deprecated War Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"139","-1","","","","","Brawler's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"140","-1","","","","","Brawler's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"141","-1","","","","","OLDBrawler's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"143","-1","","","","","Monster - Shield, Stormwind Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"146","-1","","","","","OLDRugged Trapper's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"147","-1","","","","","Rugged Trapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"148","-1","","","","","Rugged Trapper's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"149","-1","","","","","Deprecated Tauren Apprentice Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"150","-1","","","","","Deprecated Tauren Apprentice Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"151","-1","","","","","Deprecated Tauren Apprentice Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"152","-1","","","","","OLDPrimitive Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"153","-1","","","","","Primitive Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"154","-1","","","","","Primitive Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"155","-1","","","","","Deprecated Tauren Recruit's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"156","-1","","","","","Deprecated Tauren Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"157","-1","","","","","Deprecated Tauren Recruit's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"159","-1","","","","","Refreshing Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"182","-1","","","","","Garrick's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184","-1","","","","","Deprecated Small Brown Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"193","-1","","","","","Tattered Cloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"194","-1","","","","","Tattered Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"195","-1","","","","","Tattered Cloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"200","-1","","","","","Thick Cloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","454","2270","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"201","-1","","","","","Thick Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","455","2278","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"202","-1","","","","","Thick Cloth Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","343","1715","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"203","-1","","","","","Thick Cloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1147","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"209","-1","","","","","Dirty Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","61","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"210","-1","","","","","Dirty Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"236","-1","","","","","Cured Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","559","2795","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"237","-1","","","","","Cured Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2806","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"238","-1","","","","","Cured Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","422","2112","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"239","-1","","","","","Cured Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","282","1413","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"285","-1","","","","","Scalemail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","3555","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"286","-1","","","","","Scalemail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","645","3229","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","17" +"287","-1","","","","","Scalemail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","488","2442","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","17" +"414","-1","","","","","Dalaran Sharp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"422","-1","","","","","Dwarven Mild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"527","-1","","","","","Deprecated Gnoll War Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"537","-1","","","","","Dull Frenzy Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"555","-1","","","","","Rough Vulture Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"556","-1","","","","","Buzzard Beak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","106","425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"647","-1","","","","","Destiny","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70024","350121","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","52" +"710","-1","","","","","Bracers of the People's Militia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","362","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"711","-1","","","","","Tattered Cloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"714","-1","","","","","Dirty Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"718","-1","","","","","Scalemail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","322","1614","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","17" +"719","-1","","","","","Rabbit Handler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"720","-1","","","","","Brawler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1070","5351","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","7","0","0","0","0","0","0","0","0","23" +"723","-1","","","","","Goretusk Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"724","-1","","","","","Goretusk Liver Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"725","-1","","","","","Gnoll Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"727","-1","","","","","Notched Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","10","-1","0","5168","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","5" +"728","-1","Teaches you how to cook Westfall Stew.","","","","Recipe: Westfall Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"729","-1","","","","","Stringy Vulture Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","17","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"730","-1","","","","","Murloc Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"731","-1","","","","","Goretusk Snout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"732","-1","","","","","Okra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"733","-1","","","","","Westfall Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"734","-1","Upon this iron disk are stamped the words: ""Footman Malakai Stone""","","","","Deprecated Malakai's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"735","-1","","","","","Rolf and Malakai's Medallions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"737","-1","","","","","Holy Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"738","-1","","","","","Sack of Barley","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"739","-1","","","","","Sack of Corn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"740","-1","","","","","Sack of Rye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"741","-1","","","","","Deprecated Copper Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"742","-1","","","","","A Sycamore Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"743","-1","","","","","Bundle of Charred Oak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"744","-1","","","","","Thunderbrew's Boot Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"745","-1","","","","","Marshal McBride's Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"746","-1","","","","","Lord Brandon's Tabard (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","1" +"748","-1","","","","","Stormwind Armor Marker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"750","-1","","","","","Tough Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"751","-1","","","","","Deprecated Wolf Femur","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"752","-1","","","","","Red Burlap Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"753","-1","","","","","Dragonmaw Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3842","19212","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","28","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","23" +"754","-1","","","","","Shortsword of Vengeance","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23556","117784","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","47","-1","0","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","42" +"755","-1","","","","","Melted Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"756","-1","Also serves as a mining pick.","","","","Tunnel Pick","0.4","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4963","24819","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","11","0","0","0","0","0","0","0","3100","0","0","0","29","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","7","0","0","0","0","0","0","0","0","24" +"761","-1","","","","","Deprecated Elwynn Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"763","-1","","","","","Ice-covered Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"765","-1","","","","","Silverleaf","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"766","-1","","","","","Flanged Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","287","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"767","-1","","","","","Long Bo Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","504","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"768","-1","","","","","Lumberjack Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","9","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"769","-1","","","","","Chunk of Boar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"770","-1","","","","","Pointy Crocolisk Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","316","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"771","-1","","","","","Chipped Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","38","155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"772","-1","","","","","Large Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"773","-1","","","","","Gold Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"774","-1","","","","","Malachite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"776","-1","","","","","Vendetta","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5765","28827","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","31","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","26" +"777","-1","","","","","Prowler Teeth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","21","86","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"778","-1","Also serves as a mining pick.","","","","Kobold Excavation Pick","0.6","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","278","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","11","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"779","-1","","","","","Shiny Seashell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"780","-1","","","","","Torn Murloc Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"781","-1","","","","","Stone Gnoll Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","552","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"782","-1","","","","","Painted Gnoll Armband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"783","-1","","","","","Light Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"784","-1","","","","","Deprecated Tiny Flame Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"785","-1","","","","","Mageroyal","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"786","-1","","","","","Deprecated Pure Copper Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"787","-1","","","","","Slitherskin Mackerel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"788","-1","","","","","Test Fire Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"789","-1","","","","","Stout Battlehammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1969","9847","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","22","-1","0","5197","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","17" +"790","-1","","","","","Forester's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2020","10101","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","23","-1","0","5196","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","18" +"791","-1","","","","","Gnarled Ash Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7069","35348","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","65","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","6","0","0","0","0","0","0","0","0","26" +"792","-1","","","","","Knitted Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","208","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"793","-1","","","","","Knitted Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","139","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"794","-1","","","","","Knitted Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","280","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"795","-1","","","","","Knitted Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","281","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"796","-1","","","","","Rough Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","264","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"797","-1","","","","","Rough Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","177","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"798","-1","","","","","Rough Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","355","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"799","-1","","","","","Rough Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","356","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"804","-1","","","","","Large Blue Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"805","-1","","","","","Small Red Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"806","-1","","","","","Deprecated Brown Leather Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"807","-1","","","","","Deprecated Iron Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"808","-1","","","","","Deprecated Malachite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"809","-1","","","","","Bloodrazor","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39125","195625","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","70","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","45" +"810","-1","","","","","Hammer of the Northern Wind","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45267","226335","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","54","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","49" +"811","-1","","","","","Axe of the Deep Woods","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54123","270619","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","52" +"812","-1","","","","","Glowing Brightwood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57018","285093","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","54","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","15","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","29","15","9","0","0","0","0","0","0","0","49" +"813","-1","","","","","Broken Cog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","58","235","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"814","-1","","","","","Flask of Oil","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"816","-1","","","","","Small Hand Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1528","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","6" +"818","-1","","","","","Tigerseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"820","-1","","","","","Slicer Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","947","4739","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","17","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","12" +"821","-1","","","","","Riverpaw Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","249","1248","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"823","-1","","","","","Deprecated Horse Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"826","-1","","","","","Brutish Riverpaw Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","732","3662","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","15","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"827","-1","","","","","Wicked Blackjack","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4859","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","17","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","12" +"828","-1","","","","","Small Blue Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"829","-1","","","","","Red Leather Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"832","-1","","","","","Silver Defias Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203","1015","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","10" +"833","-1","","","","","Lifestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28000","112000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","51" +"835","-1","","","","","Large Rope Net","0.25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"836","-1","","","","","Deprecated Heavy Net","0.25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"837","-1","","","","","Heavy Weave Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","1125","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"838","-1","","","","","Heavy Weave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","1129","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"839","-1","","","","","Heavy Weave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","566","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"840","-1","","","","","Heavy Weave Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","170","853","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"841","-1","","","","","Furlbrow's Pocket Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"842","-1","","","","","Deprecated Wolf Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"843","-1","","","","","Tanned Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"844","-1","","","","","Tanned Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"845","-1","","","","","Tanned Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","289","1447","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"846","-1","","","","","Tanned Leather Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","290","1452","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"847","-1","","","","","Chainmail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","349","1749","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"848","-1","","","","","Chainmail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1755","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","12" +"849","-1","","","","","Chainmail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","265","1327","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","12" +"850","-1","","","","","Chainmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","883","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","12" +"851","-1","","","","","Cutlass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","404","2023","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","15","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","10" +"852","-1","","","","","Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1739","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","9" +"853","-1","","","","","Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","481","2409","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","16","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","11" +"854","-1","","","","","Quarter Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","604","3023","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","16","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","11" +"855","-1","","","","","Deprecated White Leather Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"856","-1","","","","","Blue Leather Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"857","-1","","","","","Large Red Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"858","-1","","","","","Lesser Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","3" +"859","-1","","","","","Fine Cloth Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"860","-1","","","","","Cavalier's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","447","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"862","-1","","","","","Runed Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38222","152890","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","3253","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","45" +"863","-1","","","","","Gloom Reaper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8964","44820","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","5241","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","32" +"864","-1","","","","","Knightly Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9716","48581","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","38","-1","0","5240","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","33" +"865","-1","","","","","Leaden Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5096","25480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","31","-1","0","5224","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","26" +"866","-1","","","","","Monk's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16640","83204","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","42","-1","0","5257","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","37" +"867","-1","","","","","Gloves of Holy Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5344","26720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","37" +"868","-1","","","","","Ardent Custodian","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21533","107665","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","43","-1","0","0","48","0","0","0","0","90","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","38" +"869","-1","","","","","Dazzling Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18529","92648","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","41","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","36" +"870","-1","","","","","Fiery War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21528","107640","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","-1","0","0","93","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","35" +"871","-1","","","","","Flurry Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29628","148140","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","47","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","42" +"872","-1","","","","","Rockslicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2414","12070","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","21","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","0","0","0","0","0","0","0","0","0","16" +"873","-1","","","","","Staff of Jordan","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21770","108853","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","40","-1","0","0","119","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","11","0","0","0","0","0","0","0","0","35" +"875","-1","","","","","Brown Horse Summoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"876","-1","","","","","Worn Wooden Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"877","-1","","","","","Deprecated Old Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"878","-1","","","","","Fist-sized Spinneret","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"880","-1","","","","","Staff of Horrors","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2692","13460","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","23","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"883","-1","","","","","Deprecated Fire Eyed Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"884","-1","","","","","Ghoul Rib","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"885","-1","","","","","Black Metal Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2301","11505","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","24","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","19" +"886","-1","","","","","Black Metal Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2949","14747","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","4","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","21" +"887","-1","","","","","Pound of Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"888","-1","","","","","Naga Battle Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","980","4903","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","4","4","0","0","0","0","0","0","0","22" +"889","-1","This dusty letter from long ago was never sent.","","","","A Dusty Unsent Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"890","-1","","","","","Twisted Chanter's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3517","17589","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","24","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","6","0","0","0","0","0","0","0","0","19" +"892","-1","","","","","Gnoll Casting Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1850","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"893","-1","","","","","Dire Wolf Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"894","-1","","","","","Deprecated Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"895","-1","","","","","Worgen Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"896","-1","","","","","Worgen Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"897","-1","","","","","Madwolf Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1022","5113","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","24" +"898","-1","","","","","Deprecated Broken Venomweb Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"899","-1","","","","","Venom Web Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1248","6242","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","19","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","14" +"900","-1","","","","","Deprecated Nightmare Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"901","-1","","","","","Deptecated White Stallion Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"902","-1","","","","","Deprecated Palomino Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"903","-1","","","","","Deprecated Pinto Summoning (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"906","-1","","","","","Tan Leather Shoulderpads (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"907","-1","","","","","Black Mail Shoulderpads of might (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","12","0","0","0","0","0","0","0","0","1" +"908","-1","","","","","Plate Shoulderpad (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"909","-1","","","","","Silver Mail Shoulderpads (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","1" +"910","-1","Weathered and old, this letter was never delivered.","","","","An Undelivered Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"911","-1","","","","","Ironwood Treebranch","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3324","16622","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","25","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","2","0","0","0","0","0","0","0","0","20" +"913","-1","","","","","Huge Ogre Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5037","25189","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","29","-1","0","0","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","0","0","0","0","0","0","0","0","0","24" +"914","-1","","","","","Large Ogre Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2669","13348","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","1","0","0","0","0","0","0","0","0","25" +"915","-1","","","","","Red Silk Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"916","-1","Only the bottom half of this journal page remains.","","","","A Torn Journal Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"917","-1","","","","","Deprecated Shadow Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","221","1106","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","13" +"918","-1","","","","","Deviate Hide Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"920","-1","","","","","Wicked Spiked Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2821","14107","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","20" +"921","-1","Although most of the text is long faded, some words can still be read.","","","","A Faded Journal Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"922","-1","","","","","Dacian Falx","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2407","12039","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","26","-1","0","0","39","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"923","-1","","","","","Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1748","8744","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","21" +"924","-1","","","","","Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10973","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","37","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"925","-1","","","","","Flail","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1559","7797","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","25","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","20" +"926","-1","","","","","Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1957","9785","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","25","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"927","-1","","","","","Double Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1390","6954","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","24","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","19" +"928","-1","","","","","Long Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1972","9860","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"929","-1","","","","","Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"930","-1","","","","","Deprecated Deep Pocket Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"931","-1","","","","","Deprecated Heavy Brown Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"932","-1","","","","","Fel Steed Saddlebags","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","637","2550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"933","-1","","","","","Large Rucksack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"934","-1","","","","","Stalvan's Reaper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10682","53412","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","37","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"935","-1","","","","","Night Watch Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1742","8713","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","15" +"936","-1","","","","","Midnight Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11620","58104","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","38","-1","0","0","45","1","0","0","0","84","10","0","0","0","0","0","0","0","0","10","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","33" +"937","-1","","","","","Black Duskwood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14577","72886","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","33" +"938","-1","Although the pages are covered in mud, some words can be read.","","","","Muddy Journal Pages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"939","-1","Through thick blood a few words still remain legible.","","","","A Bloodstained Journal Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"940","-1","","","","","Robes of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12566","62830","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","15","0","0","0","0","0","0","0","0","42" +"941","-1","","","","","Deprecated Speedstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"942","-1","","","","","Freezing Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","47" +"943","-1","","","","","Warden Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42863","214318","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","48","-1","0","0","89","0","0","0","0","134","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","0","0","0","0","0","0","0","0","0","43" +"944","-1","","","","","Elemental Mage Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80153","400765","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","61","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","20","0","20","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","56" +"945","-1","","","","","Shadow Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"948","-1","","","","","Nature Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"951","-1","","","","","Tome of Whirlwind (TEST)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"954","-1","","","","","Scroll of Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"955","-1","","","","","Scroll of Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"956","-1","Your official ""I went to the Jasperlode Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Jasperlode mine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"957","-1","There is a note attached.","","","","William's Shipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"958","-1","Your official ""I went to the Darkhollow Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Darkhollow Mine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"960","-1","Your official ""I went to the Fargodeep Mine and all I got was this lousy shirt"" T-shirt","","","","Deprecated Area Trigger Flag - Fargodeep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"961","-1","","","","","Healing Herb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"962","-1","","","","","Pork Belly Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"964","-1","","","","","Deprecated Red Linen Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"965","-1","","","","","Deprecated Red Linen Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"966","-1","Teaches Frost Shield (Rank 1).","","","","Tome of Frost Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"967","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Frost Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"968","-1","Teaches Fire Blast (Rank 1).","","","","Tome of Fire Blast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"973","-1","","","","","Tome of Fireball II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"974","-1","Teaches Frost Armor (Rank 2).","","","","Tome of Frost Armor II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"975","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Chains of Ice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"976","-1","Teaches Remove Curse.","","","","Tome of Remove Curse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"980","-1","Teaches Frost Shield (Rank 2).","","","","Tome of Frost Shield II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"981","-1","","","","","Bernice's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"983","-1","","","","","Red Linen Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","108","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"985","-1","Teaches Khadgar's Unlocking (Rank 1).","","","","Tome of Khadgar's Unlocking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"986","-1","Teaches Frostbolt (Rank 2).","","","","Tome of Frostbolt II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"989","-1","Teaches Frost Nova (Rank 1).","","","","Tome of Frost Nova","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"992","-1","Teaches Fireball (Rank 3).","","","","Tome of Fireball III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"994","-1","Teaches Ice Armor (Rank 1).","","","","Tome of Ice Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"996","-1","","","","","Ring of Righteous Flame (TEST)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","1" +"997","-1","","","","","Fire Sword of Crippling","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1004","-1","Teaches Chains of Ice (Rank 2).","","","","Tome of Chains of Ice II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1006","-1","Princess - First Prize","","","","Brass Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1008","-1","","","","","Well-used Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1009","-1","","","","","Compact Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","490","2451","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"1010","-1","","","","","Gnarled Short Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","499","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","8","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1011","-1","","","","","Sharp Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","400","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","8","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1013","-1","","","","","Iron Rivet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1014","-1","","","","","Large Moneybag (old)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2898","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","5","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1015","-1","","","","","Lean Wolf Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","24","96","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1016","-1","","","","","Deprecated Lurker Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","51","205","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1017","-1","","","","","Seasoned Wolf Kabob","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1018","-1","","","","","Chows Blade of DOOM! (Test)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1019","-1","","","","","Red Linen Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1020","-1","","","","","Leather Helmet D (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1021","-1","","","","","Leather Helmet A (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1022","-1","","","","","Mail Helmet D (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1023","-1","","","","","Mail Helmet C (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1024","-1","","","","","Plate Helmet D2 (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1025","-1","","","","","Plate Helmet D1 (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1026","-1","","","","","Plate Helmet D3 (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1027","-1","","","","","Mail Helmet A (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1028","-1","","","","","Deprecated Dented Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","254","1273","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1029","-1","Teaches Serpent Totem (Rank 1).","","","","Tablet of Serpent Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1030","-1","Teaches Unyielding Will (Rank 1).","","","","Tablet of Unyielding Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1031","-1","Teaches Molten Blast (Rank 1).","","","","Tablet of Molten Blast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1032","-1","Teaches Agitating Totem (Rank 1).","","","","Tablet of Agitating Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1033","-1","Teaches Cure Poison (Rank 1).","","","","Tablet of Nullify Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1034","-1","Teaches Undying Strength (Rank 1).","","","","Tablet of Undying Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1035","-1","Teaches Call Spirit (Rank 1).","","","","Tablet of Call Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1036","-1","Teaches Nullify Disease (Rank 1).","","","","Tablet of Nullify Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1037","-1","Teaches Lightning Bolt (Rank 2).","","","","Tablet of Lightning Bolt II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1038","-1","Teaches Healing Wave (Rank 2).","","","","Tablet of Restoration II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1041","690","","","","","Horn of the Black Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1042","-1","","","","","Deprecated Summon Winter Wolf (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1043","-1","","","","","Deprecated Summon Redwolf (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1044","-1","","","","","Deprecated Summon Brown Wolf (Mount)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1046","-1","","","","","Deprecated Light Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"1047","-1","","","","","Deprecated Heavy Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","1","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"1048","-1","Teaches Lightning Shield (Rank 2).","","","","Tablet of Lightning Shield II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1049","-1","Teaches Purge.","","","","Tablet of Purge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1052","-1","Teaches Spirit Armor (Rank 2).","","","","Tablet of Spirit Armor II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1053","-1","Teaches Molten Blast (Rank 2).","","","","Tablet of Molten Blast II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1057","-1","Teaches Healing Wave (Rank 3).","","","","Tablet of Restoration III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1058","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Lightning Bolt III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1061","-1","Teaches Nullify Poison (Rank 2).","","","","Tablet of Nullify Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1063","-1","Teaches Nullify Disease (Rank 2).","","","","Tablet of Nullify Disease II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1072","-1","","","","","Full Moonshine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1074","-1","","","","","Hard Spider Leg Tip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","491","1965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1075","-1","","","","","Shadowhide Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1076","-1","","","","","Defias Renegade Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","20" +"1077","-1","","","","","Defias Mage Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","3","0","0","0","0","0","0","0","0","21" +"1078","-1","Signed by the Honorable Magistrate Solomon.","","","","Deprecated Writ of Lakeshire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1080","-1","","","","","Tough Condor Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","78","315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1081","-1","","","","","Crisp Spider Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1082","-1","","","","","Redridge Goulash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1083","-1","","","","","Glyph of Azora","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1084","-1","Teaches Renew (Rank 1).","","","","Codex of Renew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1085","-1","Teaches Mind Vision (Rank 1).","","","","Codex of Mind Vision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1086","-1","Teaches Inner Fire (Rank 1).","","","","Codex of Inner Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1087","-1","Teaches Shadow Word: Pain (Rank 1).","","","","Codex of Shadow Word: Pain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1088","-1","Teaches Renew (Rank 2).","","","","Codex of Renew II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1089","-1","Teaches Nullify Disease (Rank 1).","","","","Codex of Nullify Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1090","-1","Teaches Resurrection (Rank 1).","","","","Codex of Resurrection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1091","-1","Teaches Holy Smite (Rank 2).","","","","Codex of Holy Smite II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1092","-1","Teaches Lesser Heal (Rank 2).","","","","Codex of Lesser Heal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1093","-1","Teaches Remove Curse (Rank 1).","","","","Codex of Remove Curse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1095","-1","Teaches Dispel Magic (Rank 1).","","","","Codex of Dispel Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1096","-1","Teaches Shadow Word: Pain (Rank 2).","","","","Codex of Shadow Word: Pain II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1099","-1","Teaches Conjure Food (Rank 2).","","","","Deprecated Codex of Sustenance II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"1100","-1","Teaches Holy Smite (Rank 3).","","","","Codex of Holy Smite III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1101","-1","Teaches Renew (Rank 5).","","","","Codex of Renew V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"1102","-1","Teaches Lesser Heal (Rank 3).","","","","Codex of Lesser Heal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1105","-1","Teaches Renew (Rank 6).","","","","Codex of Renew VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"1108","-1","Teaches Renew (Rank 3).","","","","Codex of Renew III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1109","-1","Teaches Mind Control.","","","","Codex of Dominate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1111","-1","Teaches Sleep (Rank 1).","","","","Codex of Sleep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1112","-1","Teaches Holy Word: Fortitude (Rank 2).","","","","Codex of Holy Word: Fortitude II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1113","-1","","","","","Conjured Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1114","-1","","","","","Conjured Rye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1115","-1","","","","","Deprecated Ragged Scalp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1116","-1","","","","","Ring of Pure Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","6","0","0","0","0","0","0","0","0","0" +"1117","-1","","","","","Monster - Item, Fishing Pole","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1119","-1","","","","","Bottled Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1121","-1","","","","","Feet of the Lynx","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1075","5375","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","3","0","0","0","0","0","0","0","0","19" +"1122","415","Summons a White Stallion to be your steed.","","","","Deprecated Amulet of the White Stallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1123","415","Summons a Pinto to be your steed.","","","","Deprecated Amulet of the Pinto","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1124","415","Summons a Palamino to be your steed.","","","","Deprecated Amulet of the Palomino","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1125","-1","Summons a Nightmare to be your steed.","","","","Deprecated Amulet of the Nightmare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2904","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","6","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1127","-1","","","","","Flash Bundle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1128","-1","","","","","Deprecated [PH] Redridge Rye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1129","-1","","","","","Ghoul Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1130","-1","","","","","Vial of Spider Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1131","-1","","","","","Totem of Infliction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1136","4545","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1132","690","","","","","Horn of the Timber Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"1133","223","","","","","Horn of the Winter Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1134","690","","","","","Horn of the Gray Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1136","-1","Teaches Divine Protection (Rank 2).","","","","Libram: Divine Favor II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1138","-1","Teaches Divine Protection (Rank 1).","","","","Libram: Divine Favor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1139","-1","Teaches Cleanse.","","","","Libram: Cleanse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1141","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Light II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1144","-1","Teaches Divine Shield (Rank 1).","","","","Libram: Divine Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"1146","-1","Teaches Resurrection (Rank 1).","","","","Libram: Resurrection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1149","-1","Teaches Seal of Might (Rank 2).","","","","Libram: Seal of Might II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1150","-1","Teaches Purify.","","","","Libram: Purify","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1151","-1","Teaches Holy Light (Rank 3).","","","","Libram: Holy Light III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1154","-1","","","","","Belt of the People's Militia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","513","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1155","-1","","","","","Rod of the Sleepwalker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5954","29771","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","10","0","0","0","0","0","0","0","0","24" +"1156","-1","","","","","Lavishly Jeweled Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","812","3250","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","2","0","0","0","0","0","0","0","0","17" +"1157","-1","","","","","Deprecated Militia Handaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","55","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","4","-1","0","0","1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1158","-1","","","","","Solid Metal Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1159","-1","","","","","Militia Quarterstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1161","-1","","","","","Militia Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1162","-1","","","","","Pirates Patch (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","222","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1163","-1","","","","","Dwarven Explorer's Monocle (Test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1164","-1","","","","","Sam's Tome","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","529","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","11","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1165","-1","","","","","Test Food","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1166","-1","","","","","Dented Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1167","-1","","","","","Small Targe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","484","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1168","-1","","","","","Skullflame Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42296","211484","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2593","0","10","0","0","10","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","54" +"1169","-1","","","","","Blackskull Shield","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18815","94076","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","2063","0","0","0","0","10","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","5","0","0","0","0","0","0","0","0","41" +"1170","-1","","","","","Deprecated Brown Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","190","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1171","-1","","","","","Well-stitched Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","277","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1172","-1","","","","","Grayson's Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","968","3875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","0","0","0","0","0","0","0","0","0","0" +"1173","-1","","","","","Weather-worn Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","262","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1174","-1","","","","","Deprecated Light Soldier Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","326","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1175","-1","","","","","A Gold Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1176","-1","","","","","Smelling Salts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32","130","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1177","-1","","","","","Oil of Olaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1178","-1","","","","","Explosive Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1179","-1","","","","","Ice Cold Milk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1180","-1","","","","","Scroll of Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1181","-1","","","","","Scroll of Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1182","-1","","","","","Brass-studded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","222","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1183","-1","","","","","Elastic Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","149","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1184","-1","","","","","Deprecated Scarlet Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","308","1235","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1186","-1","","","","","Deprecated Gnoll Taskmaster Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","831","3325","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1187","-1","","","","","Spiked Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1081","4325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"1189","-1","","","","","Overseer's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","0","0","0","0","0","0","0","0","0","15" +"1190","-1","","","","","Overseer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2091","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"1191","-1","","","","","Bag of Marbles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1192","-1","","","","","Deprecated Overseer's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1264","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1193","-1","","","","","Banded Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","355","1779","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1194","-1","","","","","Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","104","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1195","-1","","","","","Kobold Mining Shovel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","236","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","6","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"1196","-1","","","","","Tabar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","442","2214","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","14","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","9" +"1197","-1","","","","","Giant Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2667","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1198","-1","","","","","Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","535","2677","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","15","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1199","-1","","","","","Charged Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1200","-1","","","","","Large Wooden Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1201","-1","","","","","Dull Heater Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","473","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1202","-1","","","","","Wall Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","367","1839","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1203","-1","","","","","Aegis of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23505","117526","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1867","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","6","0","0","0","0","0","0","0","0","49" +"1204","-1","","","","","The Green Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12577","62886","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","7","13","0","0","0","0","0","0","0","0","36" +"1205","-1","","","","","Melon Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1206","-1","","","","","Moss Agate","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1207","-1","","","","","Murphstar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9892","49460","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","39","-1","0","5242","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","34" +"1208","-1","","","","","Maybell's Love Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1210","-1","","","","","Shadowgem","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1211","-1","","","","","Gnoll War Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1739","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","2","0","0","0","0","0","0","0","0","10" +"1212","-1","","","","","Gnoll Spittle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","21","85","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1213","-1","","","","","Gnoll Kindred Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"1214","-1","","","","","Gnoll Punisher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","930","4652","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","17","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","12" +"1215","-1","","","","","Support Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2347","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","17" +"1216","-1","","","","","Frost Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1197","5989","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","7","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","28" +"1217","-1","It is not known what the reward will be...","","","","Unknown Reward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1218","-1","","","","","Heavy Gnoll War Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2064","10321","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","21","-1","0","0","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","-10","0","0","0","0","0","0","0","0","16" +"1219","-1","","","","","Redridge Machete","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4119","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","16","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","11" +"1220","-1","","","","","Lupine Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","9039","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","20","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"1221","-1","","","","","Underbelly Whelp Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1222","-1","","","","","Broken Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","14","58","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1224","-1","Teaches Sense Demons.","","","","Grimoire of Sense Demons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1228","-1","Teaches Blood Boil (Rank 1).","","","","Grimoire of Blood Boil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1229","-1","Teaches Create Soulstone.","","","","Grimoire of Create Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1231","-1","Teaches Shadow Bolt (Rank 2).","","","","Grimoire of Shadow Bolt II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"1232","-1","Teaches Demon Skin (Rank 2).","","","","Grimoire of Demon Skin II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1238","-1","Teaches Fear (Rank 1).","","","","Grimoire of Fear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1239","-1","Teaches Drain Mana (Rank 1).","","","","Grimoire of Siphon Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1243","-1","Teaches Shadow Bolt (Rank 3).","","","","Grimoire of Shadow Bolt III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1244","-1","Teaches Demon Armor (Rank 1).","","","","Grimoire of Demon Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1245","-1","Teaches Immolate (Rank 2).","","","","Grimoire of Immolate II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1246","-1","Teaches Demon Breath.","","","","Grimoire of Demon Breath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1250","-1","Teaches Detect Lesser Invisibility.","","","","Grimoire of Detect Lesser Invisibility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1251","-1","","","","","Linen Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","34","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1252","-1","","","","","Gramma Stonefield's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1253","-1","","","","","Deprecated Summoned Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1254","-1","","","","","Lesser Firestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1255","-1","","","","","Deprecated Conjured Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1256","-1","","","","","Crystal Kelp Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1257","-1","","","","","Invisibility Liquor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1258","-1","","","","","Bind On Use Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1087","4350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1259","-1","","","","","JYoo test item","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","2191","1","3000","2000","1000","4000","1","3000","2000","1000","4000","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1260","-1","","","","","Tharil'zun's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1261","-1","","","","","Midnight Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1262","-1","","","","","Keg of Thunderbrew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111","445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1263","-1","","","","","Brain Hacker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79064","395324","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","60","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","55" +"1264","-1","","","","","Headbasher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3671","18357","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","3","0","0","0","0","0","0","0","0","0" +"1265","-1","","","","","Scorpion Sting","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11775","58875","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","39","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","34" +"1266","-1","","","","","Deprecated Orcslayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","686","3431","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","20","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1267","-1","","","","","Deprecated Cask of Merlot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1268","-1","","","","","Deprecated Bottle of Moonshine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1269","-1","","","","","Deprecated Skin of Sweet Rum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1270","-1","","","","","Finely Woven Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","1067","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"1272","-1","","","","","Deprecated Fine Spun Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","130","654","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1273","-1","","","","","Forest Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1656","8283","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","8","0","0","0","0","0","0","0","0","0" +"1274","-1","","","","","Hops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1275","-1","","","","","Deputy Chain Coat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1668","8343","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","7","0","0","0","0","0","0","0","0","0" +"1276","-1","","","","","Fire Hardened Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2220","11101","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","0" +"1279","-1","","","","","Deprecated Soft Leather Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","964","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1280","-1","","","","","Cloaked Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3696","18482","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"1281","-1","For Testing Ranged","","","","Deprecated Quiver (TEST)","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1282","-1","","","","","Sparkmetal Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","14125","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","8","0","0","0","0","0","0","0","0","0" +"1283","-1","","","","","Verner's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1284","-1","There's a note attached to this crate.","","","","Crate of Horseshoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1287","-1","","","","","Giant Tarantula Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3518","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1288","-1","","","","","Large Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1292","-1","","","","","Butcher's Cleaver","0.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3300","16504","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","25","-1","0","0","23","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","20" +"1293","-1","Written by Magistrate Solomon, this report details the events unfolding in Redridge.","","","","The State of Lakeshire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1294","-1","General Marcus Jonathan's response to Magistrate Solomon's plea for help.","","","","The General's Response","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1296","-1","","","","","Blackrock Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1681","8409","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","21","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","16" +"1297","-1","","","","","Robes of the Shadowcaster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2038","10194","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","11","0","0","0","0","0","0","0","0","26" +"1298","-1","","","","","Deprecated Night Mage Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","445","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1299","-1","","","","","Lesser Belt of the Spire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","390","1954","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","17" +"1300","-1","","","","","Lesser Staff of the Spire","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1854","9271","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","20","-1","0","0","35","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"1302","-1","","","","","Black Whelp Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","262","1312","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","3","0","0","0","0","0","0","0","0","0" +"1303","-1","","","","","Bridgeworker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2091","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","2","0","0","0","0","0","0","0","0","0" +"1304","-1","","","","","Riding Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1399","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","0" +"1306","-1","","","","","Wolfmane Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","352","1762","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"1307","-1","","","","","Gold Pickup Schedule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","7" +"1309","-1","","","","","Oslow's Toolbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1310","-1","","","","","Smith's Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","715","3577","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"1311","-1","","","","","Deprecated Oslow's Wood Cutter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","542","2714","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","18","-1","0","0","19","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1312","-1","","","","","Deprecated Oslow's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2179","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","18","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1313","-1","","","","","Deprecated Oslow's Ice Pick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","437","2187","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1314","-1","","","","","Ghoul Fingers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","362","1814","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","15" +"1315","-1","","","","","Lei of Lilies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","15","0","0","0","0","0","0","0","0","46" +"1317","-1","","","","","Hardened Root Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","17501","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","25","-1","0","0","44","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","8","0","0","0","0","0","0","0","0","0" +"1318","-1","","","","","Night Reaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3066","15332","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","23","-1","0","0","52","1","0","0","0","78","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","18" +"1319","-1","","","","","Ring of Iron Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","1850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","2","0","0","0","0","0","0","0","0","0" +"1321","-1","","","","","Deprecated Broiled Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","52","210","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1322","-1","","","","","Fishliver Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1323","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated [PH] Recipe: Broiled Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1324","-1","","","","","Deprecated Parker's Lunch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1325","-1","","","","","Daffodil Bouquet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1326","-1","","","","","Sauteed Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1327","-1","A hastily written note written by Wiley the Black for Gryan Stoutmantle.","","","","Wiley's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1328","-1","Teaches Faerie Fire (Rank 1).","","","","Book of Faerie Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1332","-1","Teaches Cure Poison (Rank 1).","","","","Book of Cure Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1334","-1","Teaches Rejuvenation (Rank 2).","","","","Book of Rejuvenation II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1339","-1","Teaches Entangling Roots (Rank 1).","","","","Book of Entangling Roots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1341","-1","Teaches Moonfire (Rank 1).","","","","Book of Moonfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1349","-1","This large crate is sealed tight, but it reeks of dead things.","","","","Abercrombie's Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1350","-1","Numerous hexes are stitched onto this ragged doll.","","","","Deprecated Hex Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","171","685","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1351","-1","","","","","Fingerbone Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3844","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","23" +"1352","-1","","","","","Cracked Skull Mortar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","200","800","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1353","-1","Shaw's report on the Stonemason Guild for Gryan Stoutmantle.","","","","Shaw's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1354","-1","","","","","Deprecated Homespun Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1355","-1","","","","","Buckskin Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","201","1008","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"1356","-1","","","","","Commendation - Elwynn Forest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1357","-1","The waterlogged parchment is about to disintegrate.","","","","Captain Sander's Treasure Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1358","-1","This torn piece of parchment contains scribbled writing.","","","","A Clue to Sander's Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1359","-1","","","","","Lion-stamped Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1360","-1","","","","","Stormwind Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1361","-1","This torn piece of parchment contains scribbled writing.","","","","Another Clue to Sander's Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1362","-1","This torn piece of parchment contains scribbled writing.","","","","Final Clue to Sander's Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1363","-1","","","","","Deprecated Captain Sander's Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","415","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1364","-1","","","","","Ragged Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","41","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1366","-1","","","","","Ragged Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1367","-1","","","","","Ragged Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1368","-1","","","","","Ragged Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1369","-1","","","","","Ragged Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1370","-1","","","","","Ragged Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1371","-1","","","","","Deprecated Ragged Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1372","-1","","","","","Ragged Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1374","-1","","","","","Frayed Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1376","-1","","","","","Frayed Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1377","-1","","","","","Frayed Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1378","-1","","","","","Frayed Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1379","-1","","","","","Deprecated Frayed Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1380","-1","","","","","Frayed Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","21","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1381","-1","This soot-covered note contains some cryptic text.","","","","A Mysterious Message","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1382","-1","","","","","Rock Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","123","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1383","-1","","","","","Stone Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1384","-1","","","","","Dull Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1385","-1","","","","","Deprecated Farmer's Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","71","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","4","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1386","-1","","","","","Thistlewood Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1387","-1","","","","","Ghoulfang","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1578","7892","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","19","-1","0","0","36","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","14" +"1388","-1","","","","","Crooked Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","3","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1389","-1","","","","","Kobold Mining Mallet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","292","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","7","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1391","-1","","","","","Riverpaw Mystic Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1392","6961","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","18","-1","0","0","28","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","13" +"1392","-1","","","","","Deprecated Wristguards of the Fen Warden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","883","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1394","-1","","","","","Driftwood Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","740","3700","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1395","-1","","","","","Apprentice's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1396","-1","","","","","Acolyte's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1397","-1","","","","","Deprecated Orc Acolyte's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1398","-1","","","","","Deprecated Dwarven Novice's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1399","-1","","","","","Magic Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1400","-1","","","","","Swiftfeather Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1401","-1","","","","","Green Tea Leaf","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","14","56","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1402","-1","","","","","Brimstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1403","-1","","","","","Deprecated Capstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","175","700","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"1404","-1","","","","","Tidal Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10306","41225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1405","-1","","","","","Foamspittle Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1184","5924","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","17","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","12" +"1406","-1","","","","","Pearl-encrusted Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2079","10399","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","21","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","6","0","0","0","0","0","0","0","0","20" +"1407","-1","","","","","Solomon's Plea to Westfall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1408","-1","","","","","Stoutmantle's Response to Solomon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1409","-1","","","","","Solomon's Plea to Darkshire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1410","-1","","","","","Ebonlocke's Response to Solomon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1411","-1","","","","","Withered Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1412","-1","","","","","Crude Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","246","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","7","-1","0","0","7","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1413","-1","","","","","Feeble Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","277","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1414","-1","","","","","Cracked Sledge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97","486","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","9","-1","0","0","10","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1415","-1","","","","","Carpenter's Mallet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","363","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","9","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1416","-1","","","","","Rusty Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1417","-1","","","","","Beaten Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","326","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1418","-1","","","","","Worn Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1419","-1","","","","","Worn Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","98","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1420","-1","","","","","Worn Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","92","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1421","-1","","","","","Worn Hide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","5" +"1422","-1","","","","","Worn Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1423","-1","","","","","Worn Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","95","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1424","-1","","","","","Deprecated Worn Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1425","-1","","","","","Worn Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","188","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1427","-1","","","","","Patchwork Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","5" +"1429","-1","","","","","Patchwork Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1430","-1","","","","","Patchwork Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1431","-1","","","","","Patchwork Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","102","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","3" +"1432","-1","","","","","Deprecated Patchwork Cloth Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","107","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","4" +"1433","-1","","","","","Patchwork Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","2" +"1434","-1","","","","","Glowing Wax Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","43","175","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1435","-1","","","","","Deprecated Bridge Worker's Yoke","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","517","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1436","-1","","","","","Frontier Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","458","2291","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"1438","-1","","","","","Warrior's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","352","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"1440","-1","","","","","Gnoll Skull Basher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1230","6152","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","14" +"1443","-1","","","","","Jeweled Amulet of Cainwyn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21125","84500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","10","8","0","0","0","0","0","0","0","55" +"1444","-1","","","","","Deprecated Inferno Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1131","4525","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","35" +"1445","-1","","","","","Blackrock Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","584","2920","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1446","-1","","","","","Blackrock Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","568","2842","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","3","0","0","0","0","0","0","0","0","14" +"1447","-1","","","","","Ring of Saviors","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22775","91100","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","8","0","0","0","0","0","0","0","0","41" +"1448","-1","","","","","Blackrock Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","405","2028","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","15" +"1449","-1","","","","","Minor Channeling Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","4","0","0","0","0","0","0","0","0","0" +"1450","-1","","","","","Potion of Fervor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1451","-1","","","","","Bottle of Zombie Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1453","-1","","","","","Spectral Comb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1454","-1","","","","","Axe of the Enforcer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19689","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","22" +"1455","-1","","","","","Blackrock Champion's Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2931","14657","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","24","-1","0","0","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","19" +"1457","-1","","","","","Shadowhide Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1850","9251","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","22","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","17" +"1458","-1","","","","","Shadowhide Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2623","13117","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","18" +"1459","-1","","","","","Shadowhide Scalper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2380","11902","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","24","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","19" +"1460","-1","","","","","Shadowhide Two-handed Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1768","8842","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","4","0","0","0","0","0","0","0","0","15" +"1461","-1","","","","","Slayer's Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3387","16936","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","5","0","0","0","0","0","0","0","0","20" +"1462","-1","","","","","Ring of the Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1306","5225","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"1464","-1","","","","","Buzzard Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1465","-1","","","","","Tigerbane","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9825","49125","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","38","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","33" +"1467","-1","","","","","Spotted Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1468","-1","","","","","Murloc Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1469","-1","","","","","Scimitar of Atun","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1180","5900","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","19","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","14" +"1470","-1","","","","","Murloc Skin Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1472","-1","","","","","Deprecated Polished Lakestone Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1473","-1","","","","","Riverside Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1497","7489","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","19","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"1475","-1","","","","","Small Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","82","330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1476","-1","","","","","Snapped Spider Limb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1477","-1","","","","","Scroll of Agility II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1478","-1","","","","","Scroll of Protection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1479","-1","","","","","Salma's Oven Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","239","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1480","-1","","","","","Fist of the People's Militia","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","954","4774","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","17","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"1481","-1","","","","","Grimclaw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3337","16689","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","20" +"1482","-1","","","","","Shadowfang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2964","14822","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","24","-1","0","0","29","4","0","0","0","55","8","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"1483","-1","","","","","Face Smasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","10129","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","3","0","0","0","0","0","0","0","0","16" +"1484","-1","","","","","Witching Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2922","14613","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","22","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","17" +"1485","-1","","","","","Pitchfork","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7053","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","25","-1","0","0","29","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1486","-1","","","","","Tree Bark Jacket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1202","6013","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","6","10","0","0","0","0","0","0","0","0","19" +"1487","-1","","","","","Conjured Pumpernickel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1488","-1","","","","","Avenger's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3379","16899","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","6","0","0","0","0","0","0","0","0","26" +"1489","-1","","","","","Gloomshroud Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1553","7768","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","5","0","0","0","0","0","0","0","0","20" +"1490","-1","","","","","Guardian Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8910","35640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1491","-1","","","","","Ring of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2207","8830","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","3","0","0","0","0","0","0","0","0","20" +"1492","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated Recipe: Murloc Fin Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1493","-1","","","","","Heavy Marauder Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3922","19610","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","27","-1","0","0","28","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","22" +"1495","-1","","","","","Calico Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","295","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1497","-1","","","","","Calico Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","357","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1498","-1","","","","","Calico Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","286","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1499","-1","","","","","Calico Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","255","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1500","-1","This totem represents Air, Earth, Fire, and Water.","","","","Master Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1501","-1","","","","","Calico Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","402","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1502","-1","","","","","Warped Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","302","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1503","-1","","","","","Warped Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","547","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1504","-1","","","","","Warped Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1505","-1","","","","","Warped Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","244","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1506","-1","","","","","Warped Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","256","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1507","-1","","","","","Warped Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123","616","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1508","-1","","","","","Deprecated Patched Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111","557","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1509","-1","","","","","Warped Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","299","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1510","-1","","","","","Heavy Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","752","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1511","-1","","","","","Commoner's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","970","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1512","-1","","","","","Crude Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","973","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","12","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1513","-1","","","","","Old Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","293","1466","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","14","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1514","-1","","","","","Rusty Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","14","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1515","-1","","","","","Rough Wooden Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","196","984","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","12","-1","0","0","13","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1516","-1","","","","","Worn Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","237","1185","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","14","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1518","-1","","","","","Ghost Hair Comb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1519","-1","","","","","Bloodscalp Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1520","-1","","","","","Troll Sweat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1521","-1","","","","","Lumbering Ogre Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19205","96028","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","44","-1","0","0","105","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","7","0","0","0","0","0","0","0","0","39" +"1522","-1","","","","","Headhunting Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10224","51121","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","36","-1","0","0","63","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","6","0","0","0","0","0","0","0","0","31" +"1523","-1","","","","","Huge Stone Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51305","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","36","-1","0","0","71","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","14","0","0","0","0","0","0","0","0","0","31" +"1524","-1","","","","","Skullsplitter Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1527","-1","","","","","Deprecated Fistful of Hay","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1528","-1","","","","","Handful of Oats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1529","-1","","","","","Jade","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1532","-1","","","","","Shrunken Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1533","-1","","","","","Deprecated Bloodscalp Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"1534","-1","Teaches Holy Light (Rank 4).","","","","Libram: Holy Light IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1535","-1","","","","","Deprecated Bloodscalp Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1894","9472","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","33" +"1536","-1","Teaches Seal of Reckoning (Rank 1).","","","","Libram: Seal of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1537","-1","","","","","Old Blanchy's Feed Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1539","-1","","","","","Gnarled Hermit's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1572","7861","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","19","-1","0","0","28","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"1544","-1","","","","","Deprecated Candle of Black Smoke","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","700","2800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1545","-1","","","","","Deprecated Mantle of the Seas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124","623","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1547","-1","","","","","Shield of the Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2795","13978","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","0","0","0","0","0","0","0","0","0","0" +"1554","-1","Teaches Frostbolt (Rank 3).","","","","Tome of Frostbolt III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"1557","-1","","","","","Buckler of the Seas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","919","4595","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"1559","-1","Teaches Arcane Missiles (Rank 2).","","","","Tome of Arcane Missiles II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1560","-1","","","","","Bluegill Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","513","2569","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","0","0","0","0","0","0","0","0","16" +"1561","-1","","","","","Harvester's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","268","1344","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","0","0","0","0","0","0","0","0","0" +"1566","-1","","","","","Edge of the People's Militia","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1132","5663","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","17","-1","0","0","26","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"1567","-1","Teaches Khadgar's Unlocking (Rank 2).","","","","Tome of Khadgar's Unlocking II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1568","-1","Teaches Water Elemental (Rank 1).","","","","Tome of Water Elemental","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1571","-1","Teaches Frost Nova (Rank 2).","","","","Tome of Frost Nova II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1574","-1","Teaches Fire Ward.","","","","Tome of Fire Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1588","-1","Teaches Molten Blast (Rank 3).","","","","Tablet of Molten Blast III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"1589","-1","Teaches Spirit Armor (Rank 3).","","","","Tablet of Spirit Armor III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"1591","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Lightning Shield III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1596","-1","","","","","Ghost Hair Thread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1597","-1","Teaches Lightning Storm (Rank 1).","","","","Tablet of Lightning Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1598","-1","","","","","Rot Blossom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1599","-1","This will be a Cooking Tradeskill recipe","","","","Deprecated [PH] Recipe: Zombie Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1602","-1","","","","","Sickle Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11685","58427","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","39","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","6","3","0","0","0","0","0","0","0","34" +"1603","-1","Teaches Call Spirit (Rank 2).","","","","Tablet of Call Spirit II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"1604","-1","","","","","Chromatic Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19464","97320","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","45","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","7","7","7","7","7","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","40" +"1607","-1","","","","","Soulkeeper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43420","217103","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","54","-1","0","0","141","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","11","0","0","0","0","0","0","0","0","49" +"1608","-1","","","","","Skullcrusher Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18940","94704","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","5269","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","42" +"1612","-1","","","","","Deprecated Skullsplitter Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","260","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"1613","-1","","","","","Spiritchaser Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19139","95699","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","5266","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","39" +"1619","-1","Teaches Lightning Storm (Rank 2).","","","","Tablet of Lightning Storm II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1622","-1","","","","","Deprecated Foreman's Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","37" +"1623","-1","","","","","Raptor Skin Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1624","-1","","","","","Skullsplitter Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6172","30862","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","38" +"1625","-1","","","","","Exquisite Flamberge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14754","73773","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","41","-1","0","5254","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1630","-1","","","","","Broken Electro-lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","66","265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1637","-1","","","","","Letter to Ello","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1638","-1","","","","","Deprecated Thornstone Chunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1639","-1","","","","","Grinning Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28460","142301","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","49","-1","0","5282","85","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","44" +"1640","-1","","","","","Monstrous War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15637","78188","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","42","-1","0","5255","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","37" +"1641","-1","Teaches Shadow Word: Pain (Rank 3).","","","","Codex of Shadow Word: Pain III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"1645","-1","","","","","Moonberry Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"1648","-1","Teaches Heal (Rank 4).","","","","Codex of Heal IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"1649","-1","","","","","Deprecated Ham Sandwich","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","126","504","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"1651","-1","Teaches Holy Word: Shield (Rank 6).","","","","Codex of Holy Word: Shield VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"1652","-1","","","","","Sturdy Lunchbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1654","-1","","","","","Deprecated Strangleslash Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1655","-1","Teaches Conjure Food (Rank 3).","","","","Deprecated Codex of Sustenance III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1900","7600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"1656","-1","","","","","Translated Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1657","-1","Teaches Resurrection (Rank 2).","","","","Codex of Resurrection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1658","-1","Teaches Shadow Word: Pain (Rank 4).","","","","Codex of Shadow Word: Pain IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"1659","-1","","","","","Engineering Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10683","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","35" +"1663","-1","","","","","Deprecated Stranglethorn Mine Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1664","-1","","","","","Spellforce Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14695","73476","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","41","-1","0","0","77","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1672","-1","","","","","Deprecated Ogre Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1676","-1","Teaches Sleep (Rank 2).","","","","Codex of Sleep II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1677","-1","","","","","Drake-scale Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10093","50466","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","8","0","0","0","0","0","0","0","0","41" +"1678","-1","","","","","Black Ogre Kickers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4581","22907","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","13","0","0","0","0","0","0","0","0","32" +"1679","-1","","","","","Korg Bat","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9635","48177","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","5","0","0","0","0","0","0","0","0","31" +"1680","-1","","","","","Headchopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18234","91170","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","44","-1","0","0","78","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","0","0","0","0","0","0","0","0","0","39" +"1681","-1","Teaches Cripple.","","","","Grimoire of Cripple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1684","-1","","","","","Deprecated Totemic Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11105","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32320","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","39" +"1685","-1","","","","","Troll-hide Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1686","-1","","","","","Bristly Whisker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","733","2935","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1687","-1","","","","","Retractable Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","243","975","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1688","-1","","","","","Long Soft Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","806","3225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1689","-1","","","","","Deprecated Medium Tiger Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","57","230","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1690","-1","","","","","Deprecated Fine Panther Whisker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","331","1325","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1691","-1","","","","","Deprecated Ebony Panther Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","237","950","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1692","-1","","","","","Deprecated Shadowmaw Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1693","-1","","","","","Deprecated Shadowmaw Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","70","280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1694","-1","","","","","Deprecated Lashtail Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1695","-1","","","","","Deprecated Jungle Stalker Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1696","-1","","","","","Curved Raptor Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","606","2425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1697","-1","","","","","Keen Raptor Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","445","1780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1698","-1","","","","","Deprecated Lashtail Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1699","-1","","","","","Deprecated Jungle Stalker Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1700","-1","","","","","Deprecated Blood Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3038","12154","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","33" +"1701","-1","","","","","Curved Basilisk Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","376","1505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1702","-1","","","","","Intact Basilisk Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","320","1280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1703","-1","","","","","Crystal Basilisk Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1704","-1","","","","","Deprecated Cold Basilisk Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","142","570","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"1705","-1","","","","","Lesser Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"1706","-1","","","","","Azuredeep Shards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","86","344","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1707","-1","","","","","Stormwind Brie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1708","-1","","","","","Sweet Nectar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"1710","-1","","","","","Greater Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"1711","-1","","","","","Scroll of Stamina II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"1712","-1","","","","","Scroll of Spirit II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1713","-1","","","","","Ankh of Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5350","21400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","40" +"1714","-1","","","","","Necklace of Calisea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2535","10140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","7","8","0","0","0","0","0","0","0","38" +"1715","-1","","","","","Polished Jazeraint Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10301","51509","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","10","9","0","0","0","0","0","0","0","39" +"1716","-1","","","","","Robe of the Magi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5067","25336","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","6","5","0","0","0","0","0","0","0","0","35" +"1717","-1","","","","","Double Link Tunic","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3108","15541","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","25" +"1718","-1","","","","","Basilisk Hide Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8040","40203","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","3","8","0","0","0","0","0","0","0","38" +"1719","-1","","","","","Deprecated Flint Troll Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1720","-1","","","","","Tanglewood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26209","131048","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","46","-1","0","0","109","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","9","0","0","0","0","0","0","0","0","41" +"1721","-1","","","","","Viking Warhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35815","179079","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","54","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","49" +"1722","-1","","","","","Thornstone Sledgehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19407","97038","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","42","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","0","0","0","0","0","0","0","0","0","37" +"1724","-1","","","","","Deprecated Jungle Trail Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1725","-1","","","","","Large Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1726","-1","","","","","Poison-tipped Bone Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12183","60916","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"1727","-1","","","","","Sword of Decay","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4562","22814","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","28","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","23" +"1728","-1","","","","","Teebu's Blazing Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72936","364684","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","65","-1","0","0","96","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"1729","-1","","","","","Gunnysack of the Night Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1730","-1","","","","","Worn Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","244","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1731","-1","","","","","Worn Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1732","-1","","","","","Worn Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","368","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1733","-1","","","","","Worn Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88","444","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1734","-1","","","","","Worn Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","198","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","6" +"1735","-1","","","","","Worn Mail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","7" +"1736","-1","","","","","Deprecated Worn Mail Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","436","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","8" +"1737","-1","","","","","Worn Mail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","9" +"1738","-1","","","","","Laced Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","735","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1739","-1","","","","","Laced Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1279","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1740","-1","","","","","Laced Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97","487","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1741","-1","","","","","Laced Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112","562","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1742","-1","","","","","Laced Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","129","649","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1743","-1","","","","","Laced Mail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1498","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1744","-1","","","","","Laced Mail Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","260","1303","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1745","-1","","","","","Laced Mail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","198","992","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1746","-1","","","","","Linked Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","332","1662","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1747","-1","","","","","Linked Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1514","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1748","-1","","","","","Linked Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","232","1160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1749","-1","","","","","Linked Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","263","1316","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1750","-1","","","","","Linked Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","298","1492","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1751","-1","","","","","Linked Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","676","3384","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1752","-1","","","","","Linked Chain Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1433","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1753","-1","","","","","Linked Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","439","2196","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1754","-1","","","","","Reinforced Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1797","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1755","-1","","","","","Reinforced Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","597","2989","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1756","-1","","","","","Reinforced Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","438","2191","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1757","-1","","","","","Reinforced Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","483","2418","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1758","-1","","","","","Reinforced Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","534","2670","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1759","-1","","","","","Reinforced Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","732","3662","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1760","-1","","","","","Reinforced Chain Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3045","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1761","-1","","","","","Reinforced Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","892","4463","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1764","-1","","","","","Canvas Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","568","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1766","-1","","","","","Canvas Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1767","-1","","","","","Canvas Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","506","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1768","-1","","","","","Canvas Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","217","1086","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1769","-1","","","","","Canvas Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","817","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1770","-1","","","","","Canvas Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143","719","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1772","-1","","","","","Brocade Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1236","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1774","-1","","","","","Brocade Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1407","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1775","-1","","","","","Brocade Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","1064","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1776","-1","","","","","Brocade Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","257","1287","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1777","-1","","","","","Brocade Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","222","1114","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1778","-1","","","","","Brocade Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1685","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1780","-1","","","","","Cross-stitched Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","489","2445","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1782","-1","","","","","Cross-stitched Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","542","2710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1783","-1","","","","","Cross-stitched Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1238","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1784","-1","","","","","Cross-stitched Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","546","2734","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1785","-1","","","","","Cross-stitched Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2323","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1786","-1","","","","","Cross-stitched Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3419","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1787","-1","","","","","Patched Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","511","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1788","-1","","","","","Patched Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","177","885","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1789","-1","","","","","Patched Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","136","681","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1790","-1","","","","","Patched Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93","469","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1791","-1","","","","","Patched Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","451","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1792","-1","","","","","Patched Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1042","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1793","-1","","","","","Patched Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","207","1037","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1794","-1","","","","","Patched Leather Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1388","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","15" +"1795","-1","","","","","Rawhide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1176","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1796","-1","","","","","Rawhide Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","2002","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1797","-1","","","","","Rawhide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","161","807","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1798","-1","","","","","Rawhide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","223","1118","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1799","-1","","","","","Rawhide Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1057","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1800","-1","","","","","Rawhide Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2398","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1801","-1","","","","","Rawhide Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2093","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","20" +"1802","-1","","","","","Rawhide Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1688","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","16" +"1803","-1","","","","","Tough Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","465","2325","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1804","-1","","","","","Tough Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","478","2391","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1805","-1","","","","","Tough Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1759","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1806","-1","","","","","Tough Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2331","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1807","-1","","","","","Tough Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","388","1940","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1808","-1","","","","","Tough Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","856","4284","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","25" +"1809","-1","","","","","Tough Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","440","2203","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","21" +"1810","-1","","","","","Tough Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3243","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1811","-1","","","","","Blunt Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","451","2256","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","17","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1812","-1","","","","","Short-handled Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","453","2265","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","17","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1813","-1","","","","","Chipped Quarterstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","523","2615","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","18","-1","0","0","17","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","13" +"1814","-1","","","","","Battered Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","603","3018","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","19","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1815","-1","","","","","Ornamental Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","366","1832","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","17","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","12" +"1816","-1","","","","","Unbalanced Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","486","2433","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","19","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1817","-1","","","","","Stock Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","501","2507","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","19","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","14" +"1818","-1","","","","","Standard Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1221","6109","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","24","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1819","-1","Also serves as a mining pick.","","","","Gouging Pick","0.6","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","768","3841","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","11","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1820","-1","","","","","Wooden Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","963","4819","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","22","-1","0","0","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1821","-1","","","","","Warped Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","988","4940","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","19" +"1822","-1","","","","","Cedar Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1096","5484","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","23","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1823","-1","","","","","Bludgeoning Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","779","3896","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","17" +"1824","-1","","","","","Shiny War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1104","5523","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","18" +"1825","-1","","","","","Bulky Bludgeon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1548","7742","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1826","-1","","","","","Rock Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1765","8829","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","27","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1827","-1","","","","","Meat Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1282","6412","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","27","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1828","-1","","","","","Stone War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1609","8047","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","22" +"1829","-1","","","","","Short Cutlass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1563","7818","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","29","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","24" +"1830","-1","","","","","Long Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1783","8919","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","28","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1831","-1","","","","","Oaken War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1790","8953","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","28","-1","0","0","33","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","23" +"1832","-1","","","","","Lucky Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","362","1812","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","3","0","0","0","0","0","0","0","0","0" +"1835","-1","","","","","Dirty Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1836","-1","","","","","Dirty Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"1839","-1","","","","","Rough Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1840","-1","","","","","Rough Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1843","-1","","","","","Tanned Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","726","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1844","-1","","","","","Tanned Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","728","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1845","-1","","","","","Chainmail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","877","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1846","-1","","","","","Chainmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","881","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"1849","-1","","","","","Cured Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1388","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1850","-1","","","","","Cured Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1393","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1851","-1","","","","","Cleansing Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1785","7143","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1852","-1","","","","","Scalemail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","336","1684","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1853","-1","","","","","Scalemail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","338","1690","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"1854","-1","","","","","Deprecated Brooch of the Night Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1875","-1","Foreman Thistlenettle - Member of the Explorers' League","","","","Thistlenettle's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1877","-1","Teaches Rejuvenation (Rank 3).","","","","Book of Rejuvenation III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1882","-1","Teaches Moonfire (Rank 3).","","","","Book of Moonfire III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"1886","-1","Teaches Moonfire (Rank 2).","","","","Book of Moonfire II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"1893","-1","Also serves as a mining pick.","","","","Miner's Revenge","0.4","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1775","8876","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","11","0","0","0","0","0","0","0","3500","0","0","0","20","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"1894","-1","","","","","Miners' Union Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1895","-1","","","","","Monster - Sword, Short Rusty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1896","-1","","","","","Monster - Sword, Short Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1897","-1","","","","","Monster - Sword, Scimitar Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1899","-1","","","","","Monster - Sword, Long Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1900","-1","","","","","Monster - Thieves Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1901","-1","","","","","Monster - Mace, Basic Stone Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1902","-1","","","","","Monster - Mace, Basic Wooden Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1903","-1","","","","","Monster - Mace, Basic Metal Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1904","-1","","","","","Monster - Axe, Stone Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1905","-1","","","","","Monster - Axe, Metal Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1906","-1","","","","","Monster - Torch","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1907","-1","","","","","Monster - Staff, Basic","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1908","-1","","","","","Monster - Staff, Crooked","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1909","-1","","","","","Monster - Axe, Large Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1910","-1","","","","","Monster - Item, Pick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1911","-1","","","","","Monster - Tool, Wrench Small","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1912","-1","","","","","Deprecated Reed Pipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","122","490","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1913","-1","","","","","Studded Blackjack","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148","743","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1914","-1","","","","","Deprecated Miniature Silver Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"1915","-1","","","","","Deprecated Bag of Teeth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1917","-1","","","","","Jeweled Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1256","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","10","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","5" +"1918","-1","","","","","Deprecated Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"1922","-1","A bundle of miscellaneous supplies for Sven.","","","","Supplies for Sven","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1923","-1","","","","","Ambassador's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1924","-1","","","","","Deprecated Hollowed Wooden Tube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1925","-1","","","","","Defias Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3939","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","16","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","11" +"1926","-1","","","","","Weighted Sap","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","687","3438","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","15","-1","0","0","12","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1927","-1","","","","","Deadmines Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3451","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","15","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"1928","-1","","","","","Defias Mage Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","996","4980","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","11" +"1929","-1","","","","","Silk-threaded Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","434","2172","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","0","0","0","0","0","0","0","0","0","13" +"1930","-1","","","","","Stonemason Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","327","1635","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","13" +"1931","-1","","","","","Huge Gnoll Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1933","-1","","","","","Staff of Conjuring","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","905","4529","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","10" +"1934","-1","","","","","Stonemason Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3656","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"1935","-1","","","","","Assassin's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2974","14874","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","24","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","19" +"1936","-1","","","","","Goblin Screwdriver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1114","5570","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","13" +"1937","-1","","","","","Buzz Saw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2040","10202","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","21","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","16" +"1938","-1","","","","","Block Mallet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1962","9810","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","17" +"1939","-1","","","","","Skin of Sweet Rum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1940","-1","","","","","Deprecated Skin of Sweet Rum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1269","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1941","-1","","","","","Cask of Merlot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","203","815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1942","-1","","","","","Bottle of Moonshine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","316","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1943","-1","","","","","Goblin Mail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","713","3567","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","3","0","0","0","0","0","0","0","0","14" +"1944","-1","","","","","Metalworking Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","259","1297","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"1945","-1","","","","","Woodworking Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1338","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","13" +"1946","-1","","","","","Mary's Looking Glass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1948","-1","","","","","Deprecated Large Broom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2045","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","16","-1","0","0","19","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","11" +"1950","-1","","","","","Deprecated Gold Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1951","-1","","","","","Blackwater Cutlass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1258","6291","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","14" +"1955","-1","","","","","Dragonmaw Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1573","7868","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","3","0","0","0","0","0","0","0","0","22" +"1956","-1","The spell on this pendant has faded.","","","","Faded Shadowhide Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1957","-1","","","","","Monster - Shield, Small Wooden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1958","-1","","","","","Petrified Shinbone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","975","4877","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","17","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","12" +"1959","-1","Also serves as a mining pick.","","","","Cold Iron Pick","0.4","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6118","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","11","0","0","0","0","0","0","0","3000","0","0","0","17","-1","0","0","27","1","0","0","0","41","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","12" +"1960","-1","","","","","Deprecated Ironforge Chain Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","671","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"1961","-1","","","","","Monster - Shield, Buckler Wooden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1962","-1","This pendant glows with magic.","","","","Glowing Shadowhide Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"1963","-1","","","","","Deprecated Bone Chips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","29","119","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1965","-1","","","","","White Wolf Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"1968","-1","","","","","Ogre's Monocle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1969","-1","","","","","Deprecated Stormwind Guard Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","428","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0" +"1970","-1","","","","","Restoring Balm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1971","-1","","","","","Furlbrow's Deed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1972","-1","","","","","Westfall Deed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"1973","-1","","","","","Orb of Deception","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4618","18475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","54" +"1974","-1","","","","","Mindthrust Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2320","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","-5","0","0","0","0","0","0","0","0","17" +"1975","-1","","","","","Pysan's Old Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5744","28721","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","28","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","5","0","0","0","0","0","0","0","0","23" +"1976","-1","","","","","Slaghammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6340","31703","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","11","0","0","0","0","0","0","0","0","24" +"1977","-1","","","","","20-slot Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1978","-1","","","","","Wolfclaw Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","981","4905","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","5","6","0","0","0","0","0","0","0","22" +"1979","-1","","","","","Wall of the Dead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23274","116370","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","2226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","15","0","0","0","0","0","0","0","0","45" +"1980","-1","","","","","Underworld Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6200","24800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","6","0","0","0","0","0","0","0","0","38" +"1981","-1","","","","","Icemail Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14113","70566","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","15","5","0","0","0","0","0","0","0","39" +"1982","-1","","","","","Nightblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29513","147568","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","39" +"1983","-1","","","","","Monster - Sword2H, Basic","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1984","-1","","","","","Monster - Shield, Kite Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1985","-1","","","","","Monster - Shield, Large Wooden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"1986","-1","","","","","Gutrender","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14861","74309","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","41","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","36" +"1987","-1","An improved pot, with extra whistles and choppers.","","","","Krazek's Fixed Pot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"1988","-1","","","","","Chief Brigadier Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2852","14261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","5","0","0","0","0","0","0","0","33" +"1990","-1","","","","","Ballast Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10077","50385","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","36","-1","0","5238","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","31" +"1991","-1","","","","","Goblin Power Shovel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8357","41788","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","34","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","10","0","0","0","0","0","0","0","0","29" +"1992","-1","","","","","Swampchill Fetish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","33" +"1993","-1","","","","","Ogremind Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2100","8400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","31" +"1994","-1","","","","","Ebonclaw Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16696","83480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","5268","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","41" +"1995","-1","","","","","Deprecated Cat's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"1996","-1","","","","","Voodoo Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","6880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","32" +"1997","-1","","","","","Pressed Felt Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2539","12695","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","12","0","0","0","0","0","0","0","0","29" +"1998","-1","","","","","Bloodscalp Channeling Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7239","36199","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","33","-1","0","0","50","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","28" +"1999","-1","","","","","Deprecated Torn Leather Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1279","6395","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","29" +"2000","-1","Morgan Ladimore's sword.","","","","Archeus","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8827","44136","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","35","-1","0","0","63","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2002","-1","","","","","Deprecated Jordan's Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2003","-1","A big quiver","","","","Deprecated Big Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2004","-1","","","","","Grelin Whitebeard's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2005","-1","Moon over the Vale","","","","The First Troll Legend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2006","-1","Gri'lek the Wanderer","","","","The Second Troll Legend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2007","-1","Fall of Gurubashi","","","","The Third Troll Legend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2008","-1","The Emperor's Tomb","","","","The Fourth Troll Legend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2011","-1","","","","","Twisted Sabre","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3840","19201","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","21" +"2012","-1","","","","","Deprecated Phylactery of Rot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1300","5200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"2013","-1","","","","","Cryptbone Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3644","18223","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","6","4","0","0","0","0","0","0","0","21" +"2014","-1","","","","","Black Metal Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4869","24347","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","29","-1","0","0","52","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","7","0","0","0","0","0","0","0","0","24" +"2015","-1","","","","","Black Metal War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4443","22219","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","28","-1","0","0","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","0","0","0","0","0","0","0","0","0","23" +"2016","-1","","","","","Dusty Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1769","8848","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","2","0","0","0","0","0","0","0","0","21" +"2017","-1","","","","","Glowing Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4477","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","23" +"2018","-1","","","","","Skeletal Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3269","16345","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","27","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","22" +"2020","-1","","","","","Hollowfang Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","5250","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","13" +"2021","-1","","","","","Green Carapace Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1025","5129","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","4","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","16" +"2023","-1","","","","","Monster - Spear, Rusty","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2024","-1","","","","","Espadon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1215","6079","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","21","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2025","-1","","","","","Bearded Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1061","5305","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2026","-1","","","","","Rock Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1257","6286","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","21","-1","0","0","37","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2027","-1","","","","","Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","763","3816","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","19","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2028","-1","","","","","Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1013","5065","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","21","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2029","-1","","","","","Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4420","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","20","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2030","-1","","","","","Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1109","5545","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","27","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2032","-1","","","","","Gallan Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1665","8328","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"2033","-1","","","","","Ambassador's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","967","4837","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"2034","-1","","","","","Scholarly Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1035","5179","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","8","0","0","0","0","0","0","0","0","20" +"2035","-1","","","","","Sword of the Night Sky","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2300","11503","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","24","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","19" +"2036","-1","","","","","Dusty Mining Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","258","1292","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"2037","-1","","","","","Tunneler's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2346","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","0" +"2038","-1","","","","","Deprecated Cougar Head Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","349","1745","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2039","-1","","","","","Plains Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","3","0","0","0","0","0","0","0","0","24" +"2040","-1","","","","","Troll Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15296","76482","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1676","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","43" +"2041","-1","","","","","Tunic of Westfall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7060","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","11","0","0","0","0","0","0","0","0","0" +"2042","-1","","","","","Staff of Westfall","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3639","18196","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","24","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","5","0","0","0","0","0","0","0","0","0" +"2043","-1","","","","","Ring of Forlorn Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","0" +"2044","-1","","","","","Crescent of Forlorn Spirits","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8829","44146","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","35","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","0" +"2045","-1","","","","","Deprecated Cowl of Forlorn Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2751","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2046","-1","","","","","Bluegill Kukri","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2461","12307","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","19" +"2047","-1","","","","","Anvilmar Hand Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","130","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2048","-1","","","","","Anvilmar Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","130","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2050","-1","","","","","Deprecated Silver Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2051","-1","","","","","Monster - Shield, Small Wooden Damaged","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2052","-1","","","","","Monster - Shield, Small Metal Damaged","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2053","-1","","","","","Monster - Shield, Buckler Metal Damaged","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2054","-1","","","","","Trogg Hand Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2055","-1","","","","","Small Wooden Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2056","-1","","","","","The Velvet Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","464","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2057","-1","","","","","Pitted Defias Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2058","-1","","","","","Kazon's Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4197","20986","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","0","0","0","0","0","0","0","0","22" +"2059","-1","","","","","Sentry Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","863","4318","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","5","4","0","0","0","0","0","0","0","0","19" +"2060","-1","","","","","Deprecated Chunk of Boar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","32","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2064","-1","","","","","Trogg Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","191","959","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2065","-1","","","","","Rockjaw Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","569","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2066","-1","","","","","Skull Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","408","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2067","-1","","","","","Frostbit Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","186","932","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2069","-1","","","","","Black Bear Hide Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122","610","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","7" +"2070","-1","","","","","Darnassian Bleu","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2071","-1","","","","","Deprecated Mountain Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2072","-1","","","","","Dwarven Magestaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4414","22070","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","5212","41","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","22" +"2073","-1","","","","","Dwarven Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","742","3714","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","5169","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","10" +"2074","-1","","","","","Solid Shortblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1054","5272","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","18","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"2075","-1","","","","","Priest's Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","386","1933","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","12","-1","0","5170","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","7" +"2077","-1","","","","","Magician Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5059","25296","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","29","-1","0","5221","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","24" +"2078","-1","","","","","Northern Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1070","5351","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","18","-1","0","5177","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","13" +"2079","-1","","","","","Sergeant's Warhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","934","4670","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","17","-1","0","5179","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","12" +"2080","-1","","","","","Hillborne Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6590","32954","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","34","-1","0","5232","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","29" +"2081","-1","","","","","Monster - Torch, Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2082","-1","","","","","Wizbang's Gunnysack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2084","-1","","","","","Darksteel Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5709","28548","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","30","-1","0","0","52","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","7","0","0","0","0","0","0","0","0","25" +"2085","-1","","","","","Chunk of Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2087","-1","","","","","Hard Crawler Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1262","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"2088","-1","","","","","Long Crawler Limb","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3648","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","15","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"2089","-1","","","","","Scrimshaw Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5568","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"2091","-1","","","","","Magic Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","213","855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2092","-1","","","","","Worn Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","2","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2098","-1","","","","","Double-barreled Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3021","15105","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","27","-1","0","0","27","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","22" +"2099","-1","","","","","Dwarven Hand Cannon","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45040","225203","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","53" +"2100","-1","","","","","Precisely Calibrated Boomstick","0.15","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24540","122700","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","48","-1","0","0","48","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","14","0","0","0","0","0","0","0","0","0","43" +"2101","-1","","","","","Light Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2102","-1","","","","","Small Ammo Pouch","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2103","-1","","","","","Test Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2104","-1","","","","","Deprecated Standard Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","100","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2105","-1","","","","","Thug Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2106","-1","","","","","Deprecated Worn Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2107","-1","","","","","Deprecated Travel-worn Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2108","-1","","","","","Frostmane Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","40","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2109","-1","","","","","Frostmane Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2110","-1","","","","","Light Magesmith Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2112","-1","","","","","Lumberjack Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2113","-1","","","","","Calor's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2114","-1","","","","","Snowy Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","156","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2115","-1","","","","","Deprecated Small White Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2117","-1","","","","","Thin Cloth Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2119","-1","","","","","Thin Cloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2120","-1","","","","","Thin Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2121","-1","","","","","Thin Cloth Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2122","-1","","","","","Cracked Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2123","-1","","","","","Cracked Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2124","-1","","","","","Cracked Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","33","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2125","-1","","","","","Cracked Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","33","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2126","-1","","","","","Cracked Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2127","-1","","","","","Cracked Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2128","-1","","","","","Scratched Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","4","-1","0","0","4","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2129","-1","","","","","Large Round Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2130","-1","","","","","Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2131","-1","","","","","Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","3","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2132","-1","","","","","Short Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","102","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2133","-1","","","","","Small Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2134","-1","","","","","Hand Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2136","-1","","","","","Conjured Purified Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2137","-1","","","","","Whittling Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2138","-1","","","","","Sharpened Letter Opener","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","193","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","7","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2139","-1","","","","","Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","57","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2140","-1","","","","","Carving Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","323","1616","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","11","-1","0","5171","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","6" +"2141","-1","","","","","Cuirboulli Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5224","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2142","-1","","","","","Cuirboulli Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","524","2621","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2143","-1","","","","","Cuirboulli Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","789","3945","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2144","-1","","","","","Cuirboulli Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","527","2639","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2145","-1","","","","","Cuirboulli Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","529","2649","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2146","-1","","","","","Cuirboulli Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","961","4809","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2147","-1","","","","","Monster - Sword, Falchion","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2148","-1","","","","","Polished Scale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","581","2908","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2149","-1","","","","","Polished Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4398","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2150","-1","","","","","Polished Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2930","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2151","-1","","","","","Polished Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","588","2941","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2152","-1","","","","","Polished Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1181","5906","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2153","-1","","","","","Polished Scale Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1185","5928","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2154","-1","","","","","The Story of Morgan Ladimore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2156","-1","","","","","Padded Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","615","3078","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2158","-1","","","","","Padded Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","413","2066","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2159","-1","","","","","Padded Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4148","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2160","-1","","","","","Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","832","4163","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2161","-1","","","","","Book from Sven's Farm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2162","-1","Sarah Ladimore's ring.","","","","Sarah's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2163","-1","","","","","Shadowblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46710","233550","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","53","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","48" +"2164","-1","","","","","Gut Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27032","135160","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","40" +"2165","-1","","","","","Old Blanchy's Blanket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2166","-1","","","","","Foreman's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","811","4055","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","3","0","0","0","0","0","0","0","15" +"2167","-1","","","","","Foreman's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","339","1696","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"2168","-1","","","","","Foreman's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2349","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","0","0","0","0","0","0","0","0","16" +"2169","-1","","","","","Buzzer Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1887","9435","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","21","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","16" +"2170","-1","","","","","Deprecated Shield of the Spider Princess","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","361","1805","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","15" +"2172","-1","","","","","Rustic Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2173","-1","","","","","Old Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2175","-1","","","","","Shadowhide Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13416","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","23","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","18" +"2176","-1","","","","","Monster - Staff, Ornate Priest Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2177","-1","","","","","Monster - Staff, Ornate Mage Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2178","-1","","","","","Monster - Sword, Long Ornate","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2179","-1","","","","","Monster - Sword, Scimitar Badass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2180","-1","","","","","Monster - Sword, Short Ornate","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2181","-1","","","","","Monster - Sword2H, Baron Rivendare","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2182","-1","","","","","Monster - Mace, Ornate Metal Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2183","-1","","","","","Monster - Axe, Metal Badass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2184","-1","","","","","Monster - Dagger Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2186","-1","","","","","Outfitter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2187","-1","","","","","A Stack of Letters","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2188","-1","","","","","A Letter to Grelin Whitebeard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2189","-1","","","","","Tigole's Boomstick (TEST)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255238","1276192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","6","0","0","0","0","0","0","0","0","0","0","0","95" +"2191","-1","","","","","Deprecated End Spawn Ticket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","1","2","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2194","-1","","","","","Diamond Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3276","16384","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","4","0","0","0","0","0","0","0","0","20" +"2195","-1","","","","","Anvilmar Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2196","-1","","","","","Monster - Item, Mutton","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2197","-1","","","","","Monster - Item, Bread","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2198","-1","","","","","Monster - Item, Potion Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2199","-1","","","","","Monster - Item, Vial Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2200","-1","","","","","Monster - Item, Potion Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2201","-1","","","","","Monster - Item, Vial Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2202","-1","","","","","Monster - Item, Mutton with Bite","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2203","-1","","","","","Brashclaw's Chopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1492","7464","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","19","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"2204","-1","","","","","Brashclaw's Skewer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1133","5665","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","17","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","12" +"2205","-1","","","","","Duskbringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3961","19806","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","25","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","20" +"2206","-1","","","","","Deprecated Fine Pointed Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","734","3674","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","22","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","17" +"2207","-1","","","","","Jambiya","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","478","2391","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","16","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","11" +"2208","-1","","","","","Poniard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","730","3651","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","19","-1","0","0","7","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2209","-1","","","","","Kris","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7116","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2210","-1","","","","","Battered Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2211","-1","","","","","Bent Large Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2212","-1","","","","","Cracked Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","80","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2213","-1","","","","","Worn Large Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","121","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2214","-1","","","","","Wooden Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","182","910","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","10" +"2215","-1","","","","","Wooden Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","406","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","6" +"2216","-1","","","","","Simple Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1054","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","11" +"2217","-1","","","","","Rectangular Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","12" +"2218","-1","","","","","Craftsman's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","501","2506","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","13","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"2219","-1","","","","","Small Round Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","457","2289","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","17" +"2220","-1","","","","","Box Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2596","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2221","-1","","","","","Targe Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","910","4551","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","23" +"2222","-1","","","","","Tower Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1005","5025","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","24" +"2223","-1","","","","","The Collector's Schedule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2224","-1","","","","","Militia Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2225","-1","","","","","Sharp Kitchen Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","917","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2226","-1","","","","","Ogremage Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4118","20590","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","-5","11","0","0","0","0","0","0","0","0","22" +"2227","-1","","","","","Heavy Ogre War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4133","20668","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","27","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","5","0","0","0","0","0","0","0","0","22" +"2230","-1","","","","","Gloves of Brawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","714","3571","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","0" +"2231","-1","","","","","Inferno Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4386","21933","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2232","-1","","","","","Dark Runner Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","813","4065","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","3","0","0","0","0","0","0","0","0","20" +"2233","-1","","","","","Shadow Weaver Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1690","8452","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","22" +"2234","-1","","","","","Nightwalker Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1806","9033","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","25" +"2235","-1","","","","","Brackclaw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1281","6407","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","19","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","14" +"2236","-1","","","","","Blackfang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3386","16931","1","1","1","524288","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","0","0","0","0","0","0","0","0","0","20" +"2237","-1","","","","","Patched Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","378","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2238","-1","","","","","Urchin's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","303","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2239","-1","Engraved with the words 'For years of service: -EVC.'","","","","The Collector's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2240","-1","","","","","Rugged Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","607","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2241","-1","","","","","Desperado Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2043","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"2243","-1","","","","","Hand of Edward the Odd","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","65783","328917","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","13","0","0","0","0","0","0","0","0","57" +"2244","-1","","","","","Krol Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51858","259290","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","56","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","5","0","0","0","0","0","0","0","0","51" +"2245","-1","","","","","Helm of Narv","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27636","138183","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","13","18","32","0","0","0","0","0","0","0","54" +"2246","-1","","","","","Myrmidon's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","10","7","0","0","0","0","0","0","0","53" +"2249","-1","","","","","Militia Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91","458","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2250","-1","","","","","Dusky Crab Cakes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2251","-1","","","","","Gooey Spider Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2252","-1","A crate of miscellaneous supplies addressed to Private Thorsen.","","","","Miscellaneous Goblin Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2254","-1","","","","","Icepane Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","506","2534","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","12","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","7" +"2255","-1","","","","","Deprecated Thick Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2256","-1","","","","","Skeletal Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2996","14982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"2257","-1","","","","","Frostmane Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","945","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","10","-1","0","0","14","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2258","-1","","","","","Frostmane Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","417","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2259","-1","","","","","Frostmane Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","378","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","8","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2260","-1","","","","","Frostmane Hand Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","532","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2262","-1","","","","","Mark of Kern","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8746","34985","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","31" +"2263","-1","","","","","Phytoblade","0.6","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2619","13098","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","100","182","25","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2264","-1","","","","","Mantle of Thieves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1957","9789","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","3","4","0","0","0","0","0","0","0","25" +"2265","-1","","","","","Stonesplinter Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","477","2388","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","8" +"2266","-1","","","","","Stonesplinter Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2396","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","13","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","8" +"2267","-1","","","","","Stonesplinter Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","3558","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"2268","-1","","","","","Stonesplinter Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2271","-1","","","","","Staff of the Blessed Seer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3255","16278","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","2","0","0","0","0","0","0","0","0","18" +"2273","-1","","","","","Guerrilla Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","436","2181","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","10" +"2274","-1","","","","","Sapper's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","289","1447","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","12" +"2275","-1","","","","","Deprecated Sentinel Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","795","3977","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","15" +"2276","-1","","","","","Swampwalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4093","20466","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","32" +"2277","-1","","","","","Necromancer Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3620","18104","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","11","12","0","0","0","0","0","0","0","0","30" +"2278","-1","","","","","Forest Tracker Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2326","11634","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","5","0","0","0","0","0","0","0","0","26" +"2280","-1","","","","","Kam's Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4828","24141","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","0","50","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","0","0","0","0","0","0","0","0","0","22" +"2281","-1","","","","","Rodentia Flint Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1504","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","6" +"2282","-1","","","","","Rodentia Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","697","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","10","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2283","-1","","","","","Rat Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","701","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2284","-1","","","","","Rat Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1055","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"2287","-1","","","","","Haunch of Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2288","-1","","","","","Conjured Fresh Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2289","-1","","","","","Scroll of Strength II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"2290","-1","","","","","Scroll of Intellect II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2291","-1","","","","","Kang the Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44580","222900","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","49","-1","0","0","136","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","44" +"2292","-1","","","","","Necrology Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1334","6674","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","3","0","0","0","0","0","0","0","0","20" +"2295","-1","","","","","Large Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2296","-1","","","","","Great Goretusk Snout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2299","-1","","","","","Burning War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8757","43785","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","33","-1","0","0","73","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","28" +"2300","-1","","","","","Embossed Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","962","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"2302","-1","","","","","Handstitched Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","147","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2303","-1","","","","","Handstitched Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","359","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2304","-1","","","","","Light Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2305","-1","","","","","Deprecated Light Winter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2306","-1","","","","","Deprecated Light Winter Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2307","-1","","","","","Fine Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","13" +"2308","-1","","","","","Fine Leather Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1071","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"2309","-1","","","","","Embossed Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","268","1343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2310","-1","","","","","Embossed Leather Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2311","-1","","","","","White Leather Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","751","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2312","-1","","","","","Fine Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181","905","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2313","-1","","","","","Medium Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2314","-1","","","","","Toughened Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3717","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2315","-1","","","","","Dark Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1539","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2316","-1","","","","","Dark Leather Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326","1634","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2317","-1","","","","","Dark Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","689","3446","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","0","0","0","0","0","0","0","0","0","15" +"2318","-1","","","","","Light Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2319","-1","","","","","Medium Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2320","-1","","","","","Coarse Thread","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2321","-1","","","","","Fine Thread","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2322","-1","","","","","Deprecated Crag Boar Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2323","-1","","","","","Deprecated Longsnout Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","55","223","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2324","-1","","","","","Bleach","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2325","-1","","","","","Black Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2326","-1","","","","","Ivy-weave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","145","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2327","-1","","","","","Sturdy Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2361","-1","","","","","Battleworn Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2362","-1","","","","","Worn Wooden Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2363","-1","","","","","Deprecated Skeleton Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2364","-1","","","","","Woven Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","296","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2366","-1","","","","","Woven Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","298","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2367","-1","","","","","Woven Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","224","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2369","-1","","","","","Woven Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2370","-1","","","","","Battered Leather Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","378","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2371","-1","","","","","Battered Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","189","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2372","-1","","","","","Battered Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","344","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2373","-1","","","","","Battered Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51","259","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2374","-1","","","","","Battered Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","173","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2375","-1","","","","","Battered Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","174","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2376","-1","","","","","Worn Heater Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","448","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2377","-1","","","","","Round Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2378","-1","","","","","Skeleton Finger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2379","-1","","","","","Tarnished Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2380","-1","","","","","Tarnished Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2381","-1","","","","","Tarnished Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2382","-1","","","","","The Embalmer's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2383","-1","","","","","Tarnished Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2384","-1","","","","","Tarnished Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2385","-1","","","","","Tarnished Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2386","-1","","","","","Rusted Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2387","-1","","","","","Rusted Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2388","-1","","","","","Rusted Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2389","-1","","","","","Rusted Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2390","-1","","","","","Rusted Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2391","-1","","","","","Rusted Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2392","-1","","","","","Light Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","413","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2393","-1","","","","","Light Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","207","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2394","-1","","","","","Light Mail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83","416","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2395","-1","","","","","Light Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64","323","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2396","-1","","","","","Light Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","215","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2397","-1","","","","","Light Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","216","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2398","-1","","","","","Light Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2399","-1","","","","","Light Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","218","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2400","-1","","","","","Light Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2401","-1","","","","","Light Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66","331","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2402","-1","","","","","Light Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","220","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2403","-1","","","","","Light Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","221","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2404","-1","Teaches you how to craft a Light Winter Cloak.","","","","Deprecated Pattern: Light Winter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","165","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2405","-1","Teaches you how to craft Light Winter Boots.","","","","Deprecated Pattern: Light Winter Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","165","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2406","-1","Teaches you how to craft Fine Leather Boots.","","","","Pattern: Fine Leather Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2407","-1","Teaches you how to craft a White Leather Jerkin.","","","","Pattern: White Leather Jerkin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","165","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2408","-1","Teaches you how to craft Fine Leather Gloves.","","","","Pattern: Fine Leather Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","165","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2409","-1","Teaches you how to craft a Dark Leather Tunic.","","","","Pattern: Dark Leather Tunic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2410","-1","","","","","Smoky Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2411","1101","","","","","Black Stallion Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"2412","415","","","","","Deprecated Nightmare Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187500","750000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2413","223","","","","","Palomino","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2414","1101","","","","","Pinto Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"2415","223","","","","","White Stallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2417","-1","","","","","Augmented Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3134","15673","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2418","-1","","","","","Augmented Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3146","15732","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2419","-1","","","","","Augmented Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1579","7895","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2420","-1","","","","","Augmented Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2421","-1","","","","","Augmented Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1590","7952","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2422","-1","","","","","Augmented Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1596","7981","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2423","-1","","","","","Brigandine Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8554","42770","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","259","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2424","-1","","","","","Brigandine Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4292","21461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2425","-1","","","","","Brigandine Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8615","43077","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2426","-1","","","","","Brigandine Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6513","32569","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2427","-1","","","","","Brigandine Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4029","20146","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2428","-1","","","","","Brigandine Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4044","20222","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2429","-1","","","","","Russet Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","10139","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2431","-1","","","","","Russet Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2043","10215","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2432","-1","","","","","Russet Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1538","7691","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2434","-1","","","","","Russet Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1033","5166","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2435","-1","","","","","Embroidered Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5536","27683","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2437","-1","","","","","Embroidered Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5578","27891","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2438","-1","","","","","Embroidered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4199","20996","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2440","-1","","","","","Embroidered Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14099","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2441","-1","","","","","Ringed Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3646","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2442","-1","","","","","Reinforced Targe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6564","1","1","1","16","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2443","-1","","","","","Metal Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3417","17086","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2444","-1","","","","","Rusted Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9393","46968","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2445","-1","","","","","Large Metal Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","686","3433","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2446","-1","","","","","Kite Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1236","6182","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2447","-1","","","","","Peacebloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2448","-1","","","","","Heavy Pavise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3231","16159","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2449","-1","","","","","Earthroot","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2450","-1","","","","","Briarthorn","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2451","-1","","","","","Crested Heater Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8725","43629","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2452","-1","","","","","Swiftthistle","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2453","-1","","","","","Bruiseweed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2454","-1","","","","","Elixir of Lion's Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2455","-1","","","","","Minor Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2456","-1","","","","","Minor Rejuvenation Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2457","-1","","","","","Elixir of Minor Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2458","-1","","","","","Elixir of Minor Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2459","-1","","","","","Swiftness Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2460","-1","This potion has no effect until we put languages in.","","","","Elixir of Tongues (NYI)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2461","-1","","","","","Deprecated Elemental Resistance Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2462","-1","","","","","Deprecated Potion of Lesser Invulnerability (Fix)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2463","-1","","","","","Studded Doublet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2739","13695","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2464","-1","","","","","Studded Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6872","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2465","-1","","","","","Studded Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2495","12477","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2466","-1","","","","","Skullsplitter Fetish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2467","-1","","","","","Studded Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1886","9430","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2468","-1","","","","","Studded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1262","6311","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2469","-1","","","","","Studded Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1267","6335","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2470","-1","","","","","Reinforced Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6790","33952","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2471","-1","","","","","Reinforced Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3408","17041","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2472","-1","","","","","Reinforced Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6842","34212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2473","-1","","","","","Reinforced Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5150","25753","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2474","-1","","","","","Reinforced Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3446","17233","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2475","-1","","","","","Reinforced Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3459","17298","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2476","-1","","","","","Chilled Basilisk Haunch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2477","-1","","","","","Ravager's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2478","-1","","","","","Deprecated Replenishing Font","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1527","6110","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"2479","-1","","","","","Broad Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","108","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2480","-1","","","","","Large Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2481","-1","","","","","Peon Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2482","-1","","","","","Inferior Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2483","-1","","","","","Rough Broad Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","3","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2484","-1","","","","","Small Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","88","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","4","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2485","-1","","","","","Splintered Board","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","53","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2486","-1","","","","","Large Stone Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","67","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2487","-1","","","","","Acolyte Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2488","-1","","","","","Gladius","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107","536","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2489","-1","","","","","Two-handed Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","7","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2490","-1","","","","","Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","540","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","9","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2491","-1","","","","","Large Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","484","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","8","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2492","-1","","","","","Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","7","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2493","-1","","","","","Wooden Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","701","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","9","-1","0","0","10","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2494","-1","","","","","Stiletto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","402","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2495","-1","","","","","Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","505","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2496","-1","","","","","Raider Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","405","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2497","-1","","","","","Rusted Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","712","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2498","-1","","","","","Small Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","408","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","8","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2499","-1","","","","","Double-bladed Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143","717","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2500","-1","","","","","Light Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","293","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2501","-1","","","","","Wooden Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","722","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","9","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2502","-1","","","","","Scuffed Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","295","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2503","-1","","","","","Adept Short Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","519","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","8","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2504","-1","","","","","Worn Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","29","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","2","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"2505","-1","","","","","Polished Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"2506","-1","","","","","Hornwood Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","8","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","3" +"2507","-1","","","","","Laminated Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1752","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","16","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","11" +"2508","-1","","","","","Old Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","27","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","2","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"2509","-1","","","","","Ornate Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","414","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","7","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","4" +"2510","-1","","","","","Solid Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","41","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","3","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","1" +"2511","-1","","","","","Hunter's Boomstick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","264","1324","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","14","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","9" +"2512","-1","","","","","Rough Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2513","-1","","","","","Deprecated Iron Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","25","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2514","-1","","","","","Depricated Sharp Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2515","-1","","","","","Sharp Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","3","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2516","-1","","","","","Light Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2517","-1","","","","","Deprecated Standard Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","25","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","4","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2518","-1","","","","","Deprecated Solid Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","8","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2519","-1","","","","","Heavy Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","15","-1","0","0","3","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2520","-1","","","","","Broadsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4925","24629","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2521","-1","","","","","Flamberge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6179","30896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","36","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2522","-1","","","","","Crescent Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4509","22548","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","35","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2523","-1","","","","","Bullova","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5657","28286","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","35","-1","0","0","68","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2524","-1","","","","","Truncheon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3838","19192","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","29" +"2525","-1","","","","","War Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5298","26490","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","35","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2526","-1","","","","","Main Gauche","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3867","19336","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","29" +"2527","-1","","","","","Battle Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5871","29356","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","36","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","31" +"2528","-1","","","","","Falchion","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10367","51836","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","46","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2529","-1","","","","","Zweihander","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13006","65032","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","46","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2530","-1","","","","","Francisca","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10444","52220","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","46","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2531","-1","","","","","Great Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11234","56170","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","44","-1","0","0","90","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","39" +"2532","-1","","","","","Morning Star","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10521","52608","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","46","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","41" +"2533","-1","","","","","War Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12221","61108","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","45","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2534","-1","","","","","Rondel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9086","45431","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","44","-1","0","0","27","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","39" +"2535","-1","","","","","War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12311","61557","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","45","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","40" +"2536","-1","","","","","Trogg Stone Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2545","-1","","","","","Malleable Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1797","8985","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","3","3","0","0","0","0","0","0","0","0" +"2546","-1","","","","","Royal Frostmane Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","277","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2547","-1","","","","","Boar Handler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2548","-1","","","","","Barrel of Barleybrew Scalder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2549","-1","","","","","Staff of the Shade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5016","25082","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","22" +"2550","-1","","","","","Monster - Bow, Short","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"2551","-1","","","","","Monster - Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"2552","-1","","","","","Monster - Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"2553","-1","Teaches you how to make an Elixir of Minor Agility.","","","","Recipe: Elixir of Minor Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2554","-1","Teaches you how to make an Elixir of Minor Fortitude.","","","","Deprecated Recipe: Elixir of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2555","-1","Teaches you how to make a Swiftness Potion.","","","","Recipe: Swiftness Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","171","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2556","-1","Teaches you how to make an Elixir of Tongues.","","","","Recipe: Elixir of Tongues","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","171","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2557","-1","","","","","Monster - Mace2H, Ornate Metal Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2558","-1","","","","","Monster - Mace, Good Wooden Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2559","-1","","","","","Monster - Staff, Ornate Warlock Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2560","-1","","","","","Jitters' Completed Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2561","-1","","","","","Chok'sul's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2562","-1","","","","","Bouquet of Scarlet Begonias","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","575","2300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2563","-1","","","","","Strange Smelling Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2564","-1","","","","","Elven Spirit Claws","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6817","34085","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","5","0","0","0","0","0","0","0","0","45" +"2565","-1","","","","","Rod of Molten Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3113","12453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","30" +"2566","-1","","","","","Sacrificial Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1322","6613","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","8","0","0","0","0","0","0","0","0","22" +"2567","-1","","","","","Evocator's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2509","12546","1","1","1","524288","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","23","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"2568","-1","","","","","Brown Linen Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","157","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2569","-1","","","","","Linen Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2570","-1","","","","","Linen Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2571","-1","","","","","Viny Wrappings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","85","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2572","-1","","","","","Red Linen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2573","-1","","","","","Deprecated Forest Silk Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2574","-1","","","","","Deprecated Trogg Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","117","586","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","10" +"2575","-1","","","","","Red Linen Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2576","-1","","","","","White Linen Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2577","-1","","","","","Blue Linen Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2578","-1","","","","","Barbaric Linen Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","224","1120","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","2","0","0","0","0","0","0","0","0","9" +"2579","-1","","","","","Green Linen Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2580","-1","","","","","Reinforced Linen Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"2581","-1","","","","","Heavy Linen Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2582","-1","","","","","Green Woolen Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1083","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"2583","-1","","","","","Woolen Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1797","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","14" +"2584","-1","","","","","Woolen Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","711","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","11" +"2585","-1","","","","","Gray Woolen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","638","3194","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","5","4","0","0","0","0","0","0","0","0","16" +"2586","-1","","","","","Gamemaster's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2587","-1","","","","","Gray Woolen Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2588","-1","","","","","Deprecated Red Leather Mask","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1622","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2589","-1","","","","","Linen Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2590","-1","","","","","Forest Spider Webbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2591","-1","","","","","Dirty Trogg Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2592","-1","","","","","Wool Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2593","-1","","","","","Flask of Stormwind Tawny","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2594","-1","","","","","Flagon of Dwarven Honeymead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2595","-1","","","","","Jug of Badlands Bourbon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2596","-1","","","","","Skin of Dwarven Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2598","-1","Teaches you how to sew a Red Linen Robe.","","","","Pattern: Red Linen Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","197","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2599","-1","","","","","Deprecated Pattern: Forest Silk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","165","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2600","-1","","","","","Deprecated Pattern: Trogg Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","165","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2601","-1","Teaches you how to sew a Gray Woolen Robe.","","","","Pattern: Gray Woolen Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","197","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2602","-1","","","","","Deprecated Pattern: Feathered Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2604","-1","","","","","Red Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2605","-1","","","","","Green Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2606","-1","","","","","Lurker Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2607","-1","","","","","Mo'grosh Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2608","-1","","","","","Threshadon Ambergris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2609","-1","","","","","Disarming Colloid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2610","-1","","","","","Disarming Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2611","-1","","","","","Crude Flint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2612","-1","","","","","Plain Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","163","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","3" +"2613","-1","","","","","Double-stitched Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","608","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","8" +"2614","-1","","","","","Robe of Apprenticeship","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","232","1162","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","12" +"2615","-1","","","","","Chromatic Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1018","5092","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","24" +"2616","-1","","","","","Shimmering Silk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2660","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2617","-1","","","","","Burning Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2198","10992","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","32" +"2618","-1","","","","","Silver Dress Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5328","26640","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","45" +"2619","-1","","","","","Grelin's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2620","-1","","","","","Augural Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3013","15067","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","10","0","0","0","0","0","0","0","0","34" +"2621","-1","","","","","Cowl of Necromancy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11788","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","-5","0","0","0","0","0","0","0","0","31" +"2622","-1","","","","","Nimar's Tribal Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2603","13015","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","7","10","0","0","0","0","0","0","0","32" +"2623","-1","","","","","Holy Diadem","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3554","17773","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","11","0","0","0","0","0","0","0","0","36" +"2624","-1","","","","","Thinking Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3852","19264","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","0","0","0","0","0","0","0","0","0","37" +"2625","-1","","","","","Menethil Statuette","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2628","-1","","","","","Senir's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2629","-1","","","","","Intrepid Strongbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2632","-1","","","","","Curved Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","605","3029","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","14","-1","0","5171","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","9" +"2633","-1","","","","","Jungle Remedy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"2634","-1","","","","","Venom Fern Extract","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2635","-1","","","","","Loose Chain Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","3" +"2636","-1","","","","","Carved Stone Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2637","-1","","","","","Ironband's Progress Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2638","-1","","","","","Deprecated Ironband's Powder Approval","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2639","-1","","","","","Merrin's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2640","-1","","","","","Miners' Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2642","-1","","","","","Loose Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","166","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2643","-1","","","","","Loose Chain Bracers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2644","-1","","","","","Loose Chain Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2645","-1","","","","","Loose Chain Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","57","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","2" +"2646","-1","","","","","Loose Chain Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","3" +"2647","-1","","","","","Deprecated Loose Chain Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","4" +"2648","-1","","","","","Loose Chain Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","5" +"2649","-1","","","","","Flimsy Chain Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2650","-1","","","","","Flimsy Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2651","-1","","","","","Flimsy Chain Bracers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2652","-1","","","","","Flimsy Chain Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2653","-1","","","","","Flimsy Chain Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2654","-1","","","","","Flimsy Chain Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2655","-1","","","","","Deprecated Flimsy Chain Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2656","-1","","","","","Flimsy Chain Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2657","-1","","","","","Red Leather Bag","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2658","-1","","","","","Ados Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2659","-1","","","","","Modr Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2660","-1","","","","","Golm Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2661","-1","","","","","Neru Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2662","-1","","","","","Ribbly's Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","50" +"2663","-1","","","","","Ribbly's Bandolier","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","50" +"2664","-1","","","","","Spinner Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1074","5370","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","13" +"2665","-1","","","","","Stormwind Seasoning Herbs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2666","-1","","","","","Barrel of Thunder Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2667","-1","","","","","MacGrann's Dried Meats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2668","-1","","","","","Threshadon Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2669","-1","","","","","Threshadon Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2671","-1","","","","","Wendigo Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2672","-1","","","","","Stringy Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2673","-1","","","","","Coyote Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2674","-1","","","","","Crawler Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2675","-1","","","","","Crawler Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","11","44","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2676","-1","","","","","Shimmerweed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2677","-1","","","","","Boar Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2678","-1","Used to enhance the flavor in cooking recipes.","","","","Mild Spices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2679","-1","","","","","Charred Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2680","-1","","","","","Spiced Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2681","-1","","","","","Roasted Boar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2682","-1","","","","","Cooked Crab Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2683","-1","","","","","Crab Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2684","-1","","","","","Coyote Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2685","-1","","","","","Succulent Pork Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2686","-1","","","","","Thunder Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2687","-1","","","","","Dry Pork Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2688","-1","","","","","Squirrel Nut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2690","-1","","","","","Latched Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2691","-1","","","","","Outfitter Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2692","-1","","","","","Hot Spices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2693","-1","","","","","OLD Stormwind Seasoning Salts ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","20","80","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2694","-1","","","","","Settler's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","539","2698","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"2695","-1","","","","","Monster - Mace, Board with Nail Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2696","-1","","","","","Cask of Evershine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2697","-1","Teaches you how to cook a Goretusk Liver Pie.","","","","Recipe: Goretusk Liver Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2698","-1","Teaches you how to cook a Crab Claw.","","","","Recipe: Cooked Crab Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2699","-1","Teaches you how to cook a delicious Redridge Goulash.","","","","Recipe: Redridge Goulash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2700","-1","Teaches you how to cook Succulent Pork Ribs.","","","","Recipe: Succulent Pork Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2701","-1","Teaches you how to cook a Seasoned Wolf Kabob.","","","","Recipe: Seasoned Wolf Kabob","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2702","-1","","","","","Lightforge Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2703","-1","","","","","Monster - Item, Tankard Wooden","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2704","-1","","","","","Monster - Item, Tankard Dirty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2705","-1","","","","","Monster - Item, Tankard Metal","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2706","-1","","","","","Monster - Item, Flower - Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2707","-1","","","","","Monster - Item, Flower - Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2708","-1","","","","","Monster - Item, Bouquet - White & Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2709","-1","","","","","Monster - Item, Flower - Rose","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2710","-1","","","","","Monster - Item, Bouquet - Roses","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2711","-1","","","","","Monster - Dagger Badass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2712","-1","","","","","Crate of Lightforge Ingots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2713","-1","","","","","Ol' Sooty's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2714","-1","","","","","Monster - Item, Lantern - Square","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2715","-1","","","","","Monster - Item, Lantern - Round","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2716","-1","","","","","Monster - Item, Bottle - Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2717","-1","","","","","Monster - Item, Bottle - Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2718","-1","","","","","Monster - Item, Glass - Clear","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2719","-1","","","","","Small Brass Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2720","-1","","","","","Muddy Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2721","-1","","","","","Holy Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1982","9914","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","0","0","0","0","0","0","0","0","0","27" +"2722","-1","","","","","Wine Ticket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2723","-1","","","","","Bottle of Dalaran Noir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2724","-1","","","","","Cloth Request","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2725","-1","","","","","Green Hills of Stranglethorn - Page 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2728","-1","","","","","Green Hills of Stranglethorn - Page 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2730","-1","","","","","Green Hills of Stranglethorn - Page 6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2732","-1","","","","","Green Hills of Stranglethorn - Page 8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2734","-1","","","","","Green Hills of Stranglethorn - Page 10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2735","-1","","","","","Green Hills of Stranglethorn - Page 11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2738","-1","","","","","Green Hills of Stranglethorn - Page 14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2740","-1","","","","","Green Hills of Stranglethorn - Page 16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2742","-1","","","","","Green Hills of Stranglethorn - Page 18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2744","-1","","","","","Green Hills of Stranglethorn - Page 20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2745","-1","","","","","Green Hills of Stranglethorn - Page 21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2748","-1","","","","","Green Hills of Stranglethorn - Page 24","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2749","-1","","","","","Green Hills of Stranglethorn - Page 25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2750","-1","","","","","Green Hills of Stranglethorn - Page 26","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2751","-1","","","","","Green Hills of Stranglethorn - Page 27","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2754","-1","","","","","Tarnished Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","69","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","3","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2755","-1","By Hemet Nesingwary","","","","Green Hills of Stranglethorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2756","-1","","","","","Green Hills of Stranglethorn - Chapter I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2757","-1","","","","","Green Hills of Stranglethorn - Chapter II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2758","-1","","","","","Green Hills of Stranglethorn - Chapter III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2759","-1","","","","","Green Hills of Stranglethorn - Chapter IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2760","-1","","","","","Thurman's Sewing Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2763","-1","","","","","Fisherman Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","14","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","9" +"2764","-1","","","","","Small Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","440","2203","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","13" +"2765","-1","","","","","Hunting Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","811","4058","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2766","-1","","","","","Deft Stiletto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1564","7823","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","29","-1","0","0","8","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","24" +"2770","-1","","","","","Copper Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","755","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2771","-1","","","","","Tin Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","755","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2772","-1","","","","","Iron Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","755","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2773","-1","","","","","Cracked Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","196","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","8","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","3" +"2774","-1","","","","","Rust-covered Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","140","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","2" +"2775","-1","","","","","Silver Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2776","-1","","","","","Gold Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2777","-1","","","","","Feeble Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","735","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","13","-1","0","0","7","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","8" +"2778","-1","","","","","Cheap Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","738","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","8" +"2779","-1","","","","","Tear of Tilloa","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2780","-1","","","","","Light Hunting Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","374","1873","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","19","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","14" +"2781","-1","","","","","Dirty Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","335","1677","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","18","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","13" +"2782","-1","","","","","Mishandled Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","751","3759","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","24","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","19" +"2783","-1","","","","","Shoddy Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","590","2954","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","22","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","17" +"2784","-1","","","","","Musquash Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2785","-1","","","","","Stiff Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1062","5312","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","23" +"2786","-1","","","","","Oiled Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1173","5866","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","29","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","24" +"2787","-1","","","","","Trogg Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","3","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2788","-1","","","","","Black Claw Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2789","-1","Opens difficulty 25 locks.","","","","Deprecated Bent Copper Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","25","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2790","-1","Opens difficulty 50 locks.","","","","Deprecated Straight Copper Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2791","-1","Opens difficulty 75 locks.","","","","Deprecated Fine Copper Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2792","-1","Opens difficulty 100 locks.","","","","Deprecated Worn Bronze Lockpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2793","-1","","","","","Deprecated Book: The History of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2794","-1","","","","","An Old History Book","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2795","-1","","","","","Book: Stresses of Iron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2797","-1","","","","","Heart of Mokk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2798","-1","","","","","Rethban Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2799","-1","","","","","Gorilla Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","67","270","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2800","-1","","","","","Black Velvet Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1525","7625","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","5","0","0","0","0","0","0","0","0","21" +"2801","-1","","","","","Blade of Hanna","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90978","454890","1","1","1","524288","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","64","-1","0","0","101","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","5","6","7","4","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","11","11","11","11","11","0","0","0","0","0","59" +"2802","-1","","","","","Blazing Emblem","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1625","6500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"2803","-1","","","","","Deprecated Static Charm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"2804","-1","","","","","Deprecated Freezing Talisman","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2125","8500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"2805","-1","","","","","Yeti Fur Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1882","9410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","3","0","0","0","0","0","0","0","0","0" +"2806","-1","","","","","Package for Stormpike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2807","-1","","","","","Guillotine Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2452","12264","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","3","0","0","0","0","0","0","0","0","18" +"2808","-1","","","","","Torch of Flame","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2364","11821","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","29","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2809","-1","","","","","Monster - Mace, Spiked Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2810","-1","","","","","Monster - Mace, Standard Serpent","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2811","-1","","","","","Deprecated Lightforge Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2989","14946","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","29","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2812","-1","","","","","Deprecated Lightforge Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2400","12001","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","29","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2813","-1","","","","","Monster - Mace, Standard Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2814","-1","","","","","Deprecated Lightforge Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3104","15521","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","29","-1","0","0","51","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2815","-1","","","","","Curve-bladed Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19778","98891","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","45","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","8","0","0","0","0","0","0","0","0","40" +"2816","-1","","","","","Death Speaker Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7324","36621","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","33","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","1","0","0","0","0","0","0","0","0","0","27" +"2817","-1","","","","","Soft Leather Tunic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","201","1006","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","0" +"2818","-1","","","","","Stretched Leather Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1818","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","0" +"2819","-1","","","","","Cross Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3830","19153","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","28","-1","0","5216","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","23" +"2820","-1","","","","","Nifty Stopwatch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4662","18650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2821","-1","","","","","Mo'grosh Masher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1118","5590","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","18","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","13" +"2822","-1","","","","","Mo'grosh Toothpick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1402","7013","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","18","-1","0","0","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","13" +"2823","-1","","","","","Mo'grosh Can Opener","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1618","8092","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","19","-1","0","0","32","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"2824","-1","","","","","Hurricane","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32032","160160","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","53","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","48" +"2825","-1","","","","","Bow of Searing Arrows","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14722","73610","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","37" +"2826","-1","","","","","Deprecated Medal of Fortitude","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2827","-1","","","","","Monster - Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2828","-1","","","","","Nissa's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2829","-1","","","","","Gregor's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2830","-1","","","","","Thurman's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2831","-1","","","","","Devlin's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2832","-1","","","","","Verna's Westfall Stew Recipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2833","-1","","","","","The Lich's Spellbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2834","-1","","","","","Embalming Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2835","-1","","","","","Rough Stone","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2836","-1","","","","","Coarse Stone","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2837","-1","","","","","Thurman's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2838","-1","","","","","Heavy Stone","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2839","-1","","","","","A Letter to Yvette","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2840","-1","","","","","Copper Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2841","-1","","","","","Bronze Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2842","-1","","","","","Silver Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2843","-1","","","","","Dirty Knucklebones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2844","-1","","","","","Copper Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","530","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2845","-1","","","","","Copper Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","547","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2846","-1","","","","","Tirisfal Pumpkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2847","-1","","","","","Copper Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2848","-1","","","","","Bronze Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1119","5595","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","22","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","17" +"2849","-1","","","","","Bronze Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6346","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","23","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2850","-1","","","","","Bronze Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1439","7197","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","24","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","19" +"2851","-1","","","","","Copper Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","283","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"2852","-1","","","","","Copper Chain Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","336","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2853","-1","","","","","Copper Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","86","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2854","-1","","","","","Runed Copper Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","1128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","14" +"2855","-1","","","","","Putrid Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2856","-1","","","","","Iron Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2857","-1","","","","","Runed Copper Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","198","991","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","13" +"2858","-1","","","","","Darkhound Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2859","-1","","","","","Vile Fin Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2862","-1","","","","","Rough Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2863","-1","","","","","Coarse Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2864","-1","","","","","Runed Copper Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","630","3151","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"2865","-1","","","","","Rough Bronze Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4810","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","4","0","0","0","0","0","0","0","0","16" +"2866","-1","","","","","Rough Bronze Cuirass","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","753","3765","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","18" +"2867","-1","","","","","Rough Bronze Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","629","3149","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","18" +"2868","-1","","","","","Patterned Bronze Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","807","4036","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"2869","-1","","","","","Silvered Bronze Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1831","9155","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","5","4","0","0","0","0","0","0","0","21" +"2870","-1","","","","","Shining Silver Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2935","14678","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","6","0","0","0","0","0","0","0","0","24" +"2871","-1","","","","","Heavy Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2872","-1","","","","","Vicious Night Web Spider Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2874","-1","A letter found on Edwin VanCleef's person.","","","","An Unsent Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"2875","-1","","","","","Scarlet Insignia Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2876","-1","","","","","Duskbat Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2877","-1","","","","","Combatant Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8524","42623","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","0","0","0","0","0","0","0","0","28" +"2878","-1","","","","","Bearded Boneaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5143","25718","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","30","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","4","0","0","0","0","0","0","0","0","25" +"2879","-1","","","","","Antipodean Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3121","15605","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","17" +"2880","-1","Used by Blacksmiths to remove impurities.","","","","Weak Flux","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2881","-1","Teaches you how to make a Runed Copper Breastplate.","","","","Plans: Runed Copper Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","164","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2882","-1","Teaches you how to make Silvered Bronze Shoulders.","","","","Plans: Silvered Bronze Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","164","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2883","-1","Teaches you how to make a Deadly Bronze Poniard.","","","","Plans: Deadly Bronze Poniard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","164","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2884","-1","","","","","Monster - Dynamite, Lit","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"2885","-1","","","","","Scarlet Crusade Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2886","-1","","","","","Crag Boar Rib","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2887","-1","","","","","Ruined Wolf Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2888","-1","","","","","Beer Basted Boar Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2889","-1","Teaches you how to cook Beer Basted Boar Ribs.","","","","Recipe: Beer Basted Boar Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","185","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2890","-1","","","","","Ruined Boar Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2891","-1","","","","","Letter to the City Architect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2892","-1","","","","","Deadly Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"2893","-1","","","","","Deadly Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","55","220","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"2894","-1","","","","","Rhapsody Malt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2895","-1","","","","","Creeping Pain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","40","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2896","-1","","","","","Creeping Anguish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","40","34","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2898","-1","","","","","Mountaineer Chestpiece","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","2" +"2899","-1","","","","","Wendigo Collar","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","169","846","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","10" +"2900","-1","","","","","Stone Buckler","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","446","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2901","-1","Miners need a mining pick for digging.","","","","Mining Pick","0.6","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"2902","-1","","","","","Cloak of the Faith","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1305","6527","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","0","0","0","0","0","0","0","0","0" +"2903","-1","","","","","Daryl's Hunting Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2579","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"2904","-1","","","","","Daryl's Hunting Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2977","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","16","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"2905","-1","","","","","Goat Fur Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2906","-1","","","","","Darkshire Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1810","9051","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","0" +"2907","-1","","","","","Dwarven Tree Chopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1755","8778","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"2908","-1","","","","","Thornblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1409","7049","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","20","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"2909","-1","","","","","Red Wool Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2910","-1","","","","","Gold Militia Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1257","6287","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","5","0","0","0","0","0","0","0","0","0" +"2911","-1","","","","","Keller's Girdle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","524","2623","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","3","0","0","0","0","0","0","0","0","18" +"2912","-1","","","","","Claw of the Shadowmancer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6731","33657","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","0","0","0","0","0","0","0","0","0","27" +"2913","-1","","","","","Silk Mantle of Gamn","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1153","5767","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","4","0","0","0","0","0","0","0","0","0" +"2915","-1","","","","","Taran Icebreaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55289","276447","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","52","-1","0","0","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","47" +"2916","-1","","","","","Gold Lion Shield","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4405","22029","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","5","3","0","0","0","0","0","0","0","0" +"2917","-1","","","","","Tranquil Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","665","2660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","7","0","0","0","0","0","0","0","0","0" +"2918","-1","","","","","Deprecated Coif of Inner Strength","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2634","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2919","-1","","","","","Relic of the Ancients","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","25" +"2920","-1","","","","","Sacred Relic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2921","-1","","","","","Blessed Relic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","10" +"2922","-1","","","","","Spirit Relic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"2923","-1","","","","","Relic of Righteousness","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","20" +"2924","-1","","","","","Crocolisk Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2925","-1","","","","","Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2926","-1","","","","","Head of Bazil Thredd","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2927","-1","","","","","Creeping Torment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","40","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2928","-1","Used by rogues to brew poison.","","","","Dust of Decay","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2929","-1","Used by rogues to brew poison.","","","","Tomb Rot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2930","-1","Used by rogues to brew poison.","","","","Essence of Pain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2931","-1","Used by rogues to brew poison.","","","","Maiden's Anguish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2932","-1","Used by rogues to brew poison.","","","","Torment Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2933","-1","","","","","Seal of Wrynn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","3","4","5","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","3","3","3","4","0","0","0","0","0","0" +"2934","-1","","","","","Ruined Leather Scraps","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2939","-1","","","","","Crocolisk Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2940","-1","","","","","Bloody Bear Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","43","175","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2941","-1","","","","","Prison Shank","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3552","17761","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","21" +"2942","-1","","","","","Iron Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3663","18317","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","21" +"2943","-1","","","","","Eye of Paleth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","537","2150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"2944","-1","","","","","Cursed Eye of Paleth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","-3","0","0","0","0","0","0","0","0","0","26" +"2945","-1","","","","","(OLD)Medium Throwing Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2895","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","3","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2946","-1","","","","","Broken Balanced Throwing Dagger","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","30","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","3" +"2947","-1","","","","","Broken Small Throwing Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","15","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","1" +"2948","-1","","","","","Deprecated Talisman of Cleansing","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","312","1250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0" +"2949","-1","","","","","Mariner Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","5196","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","1","0","0","0","0","0","0","0","0","0" +"2950","-1","","","","","Icicle Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3476","17384","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","25","-1","0","0","51","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"2951","-1","","","","","Ring of the Underwood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","656","2625","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","2","3","0","0","0","0","0","0","0","31" +"2953","-1","","","","","Watch Master's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1857","9286","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","0","0","0","0","0","0","0","0","0","0" +"2954","-1","","","","","Night Watch Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2485","12425","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","0","0","0","0","0","0","0","0","0","0" +"2955","-1","","","","","First Mate Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3449","17247","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"2956","-1","","","","","Report on the Defias Brotherhood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2957","-1","","","","","Journeyman's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","597","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2958","-1","","","","","Journeyman's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","474","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2959","-1","","","","","Journeyman's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","164","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2960","-1","","","","","Journeyman's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","110","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2961","-1","","","","","Burnt Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","155","779","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2962","-1","","","","","Burnt Leather Breeches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120","601","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2963","-1","","","","","Burnt Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","208","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2964","-1","","","","","Burnt Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","181","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2965","-1","","","","","Warrior's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","948","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","6" +"2966","-1","","","","","Warrior's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","5" +"2967","-1","","","","","Warrior's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66","332","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"2968","-1","","","","","Warrior's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","170","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","4" +"2969","-1","","","","","Spellbinder Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","381","1909","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","0","0","0","0","0","0","0","0","0","12" +"2970","-1","","","","","Spellbinder Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1666","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2971","-1","","","","","Spellbinder Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","545","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2972","-1","","","","","Spellbinder Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2973","-1","","","","","Hunting Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","484","2421","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","2","0","0","0","0","0","0","0","0","12" +"2974","-1","","","","","Hunting Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","392","1963","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2975","-1","","","","","Hunting Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128","642","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2976","-1","","","","","Hunting Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","172","860","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","2","0","0","0","0","0","0","0","0","10" +"2977","-1","","","","","Veteran Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","476","2382","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","2","0","0","0","0","0","0","0","0","11" +"2978","-1","","","","","Veteran Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2079","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","10" +"2979","-1","","","","","Veteran Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","157","786","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","9" +"2980","-1","","","","","Veteran Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1047","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","10" +"2981","-1","","","","","Seer's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3243","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","3","0","0","0","0","0","0","0","0","16" +"2982","-1","","","","","Seer's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","566","2830","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","3","0","0","0","0","0","0","0","0","15" +"2983","-1","","","","","Seer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1401","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","3","0","0","0","0","0","0","0","0","12" +"2984","-1","","","","","Seer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1078","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","0","0","0","0","0","0","0","0","0","13" +"2985","-1","","","","","Inscribed Leather Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","822","4114","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","16" +"2986","-1","","","","","Inscribed Leather Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","718","3590","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"2987","-1","","","","","Inscribed Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2043","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","13" +"2988","-1","","","","","Inscribed Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","314","1572","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","14" +"2989","-1","","","","","Burnished Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1001","5009","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","16" +"2990","-1","","","","","Burnished Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","933","4666","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","16" +"2991","-1","","","","","Burnished Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3528","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","4","0","0","0","0","0","0","0","0","16" +"2992","-1","","","","","Burnished Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2044","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","2","0","0","0","0","0","0","0","0","15" +"2993","-1","","","","","Deprecated Inscribed Leather Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1026","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","15" +"2994","-1","","","","","Deprecated Seer's Monocle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","246","1231","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2995","-1","","","","","Deprecated Burnished Chain Coif","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1854","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","18" +"2996","-1","","","","","Bolt of Linen Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2997","-1","","","","","Bolt of Woolen Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2998","-1","Baros Alexston's first compass.","","","","A Simple Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"2999","-1","","","","","Steelgrill's Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3000","-1","","","","","Brood Mother Carapace","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"3001","-1","","","","","Deprecated Medivh's Folly","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3002","-1","","","","","Relic Horn of Justice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3003","-1","","","","","Relic of the Eye","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3004","-1","","","","","Relic of the Dead","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125","500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3005","-1","","","","","Relic of Truth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3006","-1","","","","","Holy Relic Shard","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3007","-1","","","","","Deprecated Dark Iron Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","664","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"3008","-1","","","","","Wendigo Fur Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","174","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3010","-1","","","","","Fine Sand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","101","405","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3011","-1","","","","","Feathered Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2847","14235","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","31" +"3012","-1","","","","","Scroll of Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3013","-1","","","","","Scroll of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3014","-1","","","","","Battleworn Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3015","-1","","","","","Deprecated Chatter's Rock","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","812","3250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3016","-1","","","","","Gunther's Spellbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3017","-1","","","","","Sevren's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3018","-1","","","","","Hide of Lupos","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","3125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","3","0","0","0","0","0","0","0","0","18" +"3019","-1","","","","","Noble's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2116","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","3","1","0","0","0","0","0","0","0","13" +"3020","-1","","","","","Enduring Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2655","13279","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","16","0","0","0","0","0","0","0","0","28" +"3021","-1","","","","","Ranger Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12106","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","25","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","1","0","0","0","0","0","0","0","0","0","20" +"3022","-1","","","","","Bluegill Breeches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1085","5427","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","0","0","0","0","0","0","0","0","0","18" +"3023","-1","","","","","Large Bore Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","754","3772","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","21","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","16" +"3024","-1","","","","","BKP 2700 ""Enforcer""","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1419","7098","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","26","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","21" +"3025","-1","","","","","BKP 42 ""Ultra""","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3695","18479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","36","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","31" +"3026","-1","","","","","Reinforced Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","762","3812","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","21","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","16" +"3027","-1","","","","","Heavy Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6349","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","25","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","20" +"3028","-1","","","","","Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3086","15434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","34","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","29" +"3029","-1","","","","","Depricated Whipwood Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3030","-1","","","","","Razor Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","30","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3031","-1","","","","","Depricated Razor Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","450","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3032","-1","","","","","Deprecated Impact Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3033","-1","","","","","Solid Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","30","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3034","-1","","","","","Deprecated BKP ""Impact"" Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","450","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3035","-1","","","","","Laced Pumpkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3036","-1","","","","","Heavy Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2579","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","15","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","10" +"3037","-1","","","","","Whipwood Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4814","24072","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","34","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","29" +"3039","-1","","","","","Short Ash Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1610","8052","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","23","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","18" +"3040","-1","","","","","Hunter's Muzzle Loader","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4702","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","19","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","14" +"3041","-1","","","","","""Mage-Eye"" Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3769","18847","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","31","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","26" +"3042","-1","","","","","BKP ""Sparrow"" Smallbore","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4577","22888","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","28" +"3044","-1","","","","","OLDMonster - Mace, Standard Basic Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3045","-1","","","","","Lambent Scale Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1574","7870","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","3","0","0","0","0","0","0","0","0","22" +"3046","-1","","","","","Deprecated Glinting Scale Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","571","2859","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3047","-1","","","","","Lambent Scale Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","5261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","3","0","0","0","0","0","0","0","0","22" +"3048","-1","","","","","Lambent Scale Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1919","9599","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","4","0","0","0","0","0","0","0","0","21" +"3049","-1","","","","","Lambent Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2119","10596","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","3","0","0","0","0","0","0","0","0","22" +"3050","-1","","","","","Deprecated Winter Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","846","4232","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3051","-1","","","","","Deprecated Winter Mail Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","310","1553","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3052","-1","","","","","Deprecated Winter Mail Coif","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2644","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3053","-1","","","","","Humbert's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2140","10704","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","0","0","0","0","0","0","0","0","0","23" +"3054","-1","","","","","Deprecated Winter Mail Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","430","2153","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","19" +"3055","-1","","","","","Forest Leather Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1526","7632","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","4","0","0","0","0","0","0","0","0","21" +"3056","-1","","","","","Forest Leather Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1532","7660","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3057","-1","","","","","Forest Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","903","4515","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3058","-1","","","","","Forest Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","682","3414","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","20" +"3059","-1","","","","","Deprecated Forest Leather Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","2323","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3060","-1","","","","","Deprecated Deepwood Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2564","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","22" +"3061","-1","","","","","Deprecated Deepwood Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","755","3775","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3062","-1","","","","","Deprecated Deepwood Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1385","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3063","-1","","","","","Deprecated Deepwood Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","518","2593","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","22" +"3064","-1","","","","","Deprecated Deepwood Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","558","2791","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3065","-1","","","","","Bright Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","658","3290","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","2","0","0","0","0","0","0","0","0","18" +"3066","-1","","","","","Bright Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","497","2487","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3067","-1","","","","","Bright Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1275","6376","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3068","-1","","","","","Deprecated Silver-thread Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1700","8501","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","8","0","0","0","0","0","0","0","0","27" +"3069","-1","","","","","Bright Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7063","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","4","0","0","0","0","0","0","0","0","22" +"3070","-1","","","","","Ensign Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3071","-1","","","","","Striking Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","231","1155","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3072","-1","","","","","Smoldering Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1207","6037","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","0","0","0","0","0","0","0","0","21" +"3073","-1","","","","","Smoldering Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1211","6059","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","21" +"3074","-1","","","","","Smoldering Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","476","2381","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","5","0","0","0","0","0","0","0","0","19" +"3075","-1","","","","","Eye of Flame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15073","75369","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","10","10","0","0","0","0","0","0","0","0","49" +"3076","-1","","","","","Smoldering Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","636","3184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","18" +"3077","-1","","","","","Deprecated Stonecloth Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1844","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3078","-1","","","","","Naga Heartpiercer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2777","13888","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","5","0","0","0","0","0","0","0","0","0","21" +"3079","-1","","","","","Skorn's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","297","1487","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","12","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"3080","-1","","","","","Candle of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3081","-1","","","","","Nether Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3082","-1","","","","","Dargol's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3083","-1","","","","","Restabilization Cog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3084","-1","","","","","Gyromechanic Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3085","-1","","","","","Barrel of Shimmer Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3086","-1","","","","","Cask of Shimmer Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3087","-1","","","","","Mug of Shimmer Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","11","45","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3088","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3089","-1","Teaches Flamestrike (Rank 1).","","","","Tome of Flamestrike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3090","-1","Teaches Frostbolt (Rank 1).","","","","Tome of Frostbolt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3091","-1","Teaches Arcane Intellect (Rank 2).","","","","Tome of Arcane Intellect II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3092","-1","Teaches Slow (Rank 2).","","","","Tome of Flamestrike III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3093","-1","Teaches Flamestrike (Rank 2).","","","","Tome of Flamestrike II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3094","-1","Teaches Fire Blast (Rank 2).","","","","Tome of Fire Blast II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3095","-1","Teaches Fire Blast (Rank 3).","","","","Tome of Fire Blast III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3096","-1","Teaches Feather Fall.","","","","Tome of Feather Fall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3097","-1","Teaches Conjure Water (Rank 2).","","","","Tome of Conjure Water II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3098","-1","Teaches Slow (Rank 1).","","","","Tome of Slow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3099","-1","Teaches Ice Armor (Rank 2).","","","","Tome of Ice Armor II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3100","-1","Teaches Blizzard (Rank 2).","","","","Tome of Blizzard II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3101","-1","Teaches Frost Nova (Rank 3).","","","","Tome of Frost Nova III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3102","-1","Teaches Arcane Intellect (Rank 3).","","","","Tome of Arcane Intellect III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3103","-1","","","","","Coldridge Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2334","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","12","-1","0","0","18","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"3107","-1","","","","","Broken Keen Throwing Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","75","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","11" +"3108","-1","","","","","Broken Heavy Throwing Dagger","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","22" +"3109","-1","","","","","(OLD)Wicked Throwing Dagger","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","3","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2896","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3110","-1","","","","","Tunnel Rat Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3111","-1","","","","","Broken Crude Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","15","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","1" +"3113","-1","Teaches Holy Word: Shield (Rank 1).","","","","Codex of Holy Word: Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3114","-1","Teaches Shadow Word: Befuddle (Rank 1).","","","","Codex of Shadow Word: Befuddle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3115","-1","Teaches Renew (Rank 4).","","","","Codex of Renew IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3116","-1","Teaches Holy Word: Shield (Rank 2).","","","","Codex of Holy Word: Shield II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3117","-1","","","","","Hildelve's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3118","-1","Teaches Greater Heal.","","","","Codex of Greater Heal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"3119","-1","Teaches Holy Word: Shield (Rank 5).","","","","Codex of Holy Word: Shield V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3120","-1","Teaches Holy Smite (Rank 4).","","","","Codex of Holy Smite IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3121","-1","Teaches Levitate.","","","","Codex of Levitate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"3122","-1","Teaches Holy Word: Shield (Rank 3).","","","","Codex of Holy Word: Shield III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3123","-1","Teaches Holy Word: Fortitude (Rank 3).","","","","Codex of Holy Word: Fortitude III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3124","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Inner Fire III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3125","-1","Teaches Serpent Totem (Rank 2).","","","","Tablet of Serpent Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3126","-1","Teaches Shock (Rank 2).","","","","Tablet of Shock II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3127","-1","Teaches Shock (Rank 3).","","","","Tablet of Shock III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3128","-1","","","","","(OLD)Medium Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2894","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","2","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3129","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Lightning Bolt IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3130","-1","Teaches Healing Wave (Rank 4).","","","","Tablet of Restoration IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3131","-1","","","","","Broken Weighted Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","30","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","3" +"3132","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Molten Blast IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3133","-1","Teaches Mana Totem.","","","","Tablet of Mana Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3134","-1","Teaches Curse of Weakness (Rank 1).","","","","Grimoire of Curse of Mannoroth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3135","-1","","","","","Broken Sharp Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","75","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","11" +"3136","-1","","","","","(OLD)Heavy Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2893","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3137","-1","","","","","Broken Deadly Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","22" +"3138","-1","Teaches Shadow Bolt (Rank 4).","","","","Grimoire of Shadow Bolt IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3139","-1","Teaches Demon Armor (Rank 2).","","","","Grimoire of Demon Armor II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"3140","-1","Teaches Blood Boil (Rank 2).","","","","Grimoire of Blood Boil II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3141","-1","Teaches Drain Life (Rank 1).","","","","Grimoire of Life Drain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3142","-1","Teaches Curse of Agony (Rank 1).","","","","Grimoire of Curse of Sargeras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3143","-1","Teaches Life Tap (Rank 1).","","","","Grimoire of Burning Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3144","-1","Teaches Life Tap (Rank 2).","","","","Grimoire of Burning Spirit II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3145","-1","","","","","Off Hand Test Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3146","-1","Teaches Life Tap (Rank 3).","","","","Grimoire of Burning Spirit III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3147","-1","","","","","Deprecated Tattered Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3148","-1","","","","","Deprecated Work Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3149","-1","","","","","Deprecated Ripped Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3150","-1","","","","","Deprecated Tattered Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3151","-1","","","","","Siege Brigade Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3152","-1","","","","","Driving Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","140","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3153","-1","","","","","Oil-stained Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3154","-1","","","","","Thelsamar Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1094","5471","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","18","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3155","-1","This aging scroll is written in the indecipherable language of the Kirin Tor.","","","","Remedy of Arugal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3156","-1","","","","","Glutton Shackle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3157","-1","","","","","Darksoul Shackle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3158","-1","","","","","Burnt Hide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","304","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3159","-1","","","","","Deprecated Crusader's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","662","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3160","-1","","","","","Ironplate Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","470","2352","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3161","-1","","","","","Robe of the Keeper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1475","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3162","-1","","","","","Notched Rib","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3163","-1","","","","","Blackened Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3164","-1","","","","","Discolored Worg Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3165","-1","","","","","Quinn's Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3166","-1","","","","","Ironheart Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","407","2039","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3167","-1","","","","","Thick Spider Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3168","-1","","","","","Chipped Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","22","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3169","-1","","","","","Chipped Bear Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3170","-1","","","","","Large Bear Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","47","190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3171","-1","","","","","Broken Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3172","-1","","","","","Boar Intestines","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3173","-1","","","","","Bear Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3174","-1","","","","","Spider Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3175","-1","","","","","Ruined Dragonhide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3176","-1","","","","","Small Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3177","-1","","","","","Tiny Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3179","-1","","","","","Cracked Dragon Molting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3180","-1","","","","","Flecked Raptor Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3181","-1","","","","","Partially Digested Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3182","-1","","","","","Spider's Silk","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","387","1550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3183","-1","","","","","Mangy Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3184","-1","","","","","Hook Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1394","6973","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","20","-1","0","5189","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","15" +"3185","-1","","","","","Acrobatic Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8088","40440","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","34","-1","0","5239","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","29" +"3186","-1","","","","","Viking Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4436","22180","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","5213","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","25" +"3187","-1","","","","","Sacrificial Kris","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14870","74354","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","44","-1","0","5261","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","39" +"3188","-1","","","","","Coral Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4398","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","15","-1","0","0","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","10" +"3189","-1","","","","","Wood Chopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","8","-1","0","0","11","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3190","-1","","","","","Beatstick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","499","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","8","-1","0","0","9","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3191","-1","","","","","Arced War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4629","23147","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","26","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","9","0","0","0","0","0","0","0","0","20" +"3192","-1","","","","","Short Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","495","2479","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","12","-1","0","5173","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","7" +"3193","-1","","","","","Oak Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2072","10362","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","21","-1","0","5193","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","16" +"3194","-1","","","","","Black Malice","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2496","12480","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","21","-1","0","0","48","1","0","0","0","73","6","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","16" +"3195","-1","","","","","Barbaric Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6863","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","18","-1","0","5183","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","13" +"3196","-1","","","","","Edged Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1377","6887","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","18","-1","0","5182","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","13" +"3197","-1","","","","","Stonecutter Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9295","46478","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","35","-1","0","5236","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","30" +"3198","-1","","","","","Battering Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2742","13710","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","23","-1","0","5202","37","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"3199","-1","","","","","Battle Slayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2262","11310","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","22","-1","0","5201","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","17" +"3200","-1","","","","","Burnt Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3201","-1","","","","","Barbarian War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4496","22484","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","28","-1","0","5219","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","23" +"3202","-1","","","","","Forest Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","584","2921","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","19" +"3203","-1","","","","","Dense Triangle Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27184","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","28","-1","0","0","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","10","0","0","0","0","0","0","0","0","23" +"3204","-1","","","","","Deepwood Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","751","3758","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","1","0","0","0","0","0","0","0","0","21" +"3205","-1","","","","","Inscribed Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","230","1150","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","12" +"3206","-1","","","","","Cavalier Two-hander","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4582","22911","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","28","-1","0","5218","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","23" +"3207","-1","","","","","Hunting Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3208","-1","","","","","Conk Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25378","126894","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","48","-1","0","5274","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","43" +"3209","-1","","","","","Ancient War Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6783","33918","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","6","0","0","0","0","0","0","0","0","0" +"3210","-1","","","","","Brutal War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5627","28135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","30","-1","0","5219","58","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","25" +"3211","-1","","","","","Burnished Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","373","1866","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","14" +"3212","-1","","","","","Lambent Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4645","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","21" +"3213","-1","","","","","Veteran Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","447","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","8" +"3214","-1","","","","","Warrior's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","170","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3215","-1","","","","","Deprecated Winter Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","341","1705","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","20" +"3216","-1","","","","","Warm Winter Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","275","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3217","-1","","","","","Foreman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135","675","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"3218","-1","","","","","Pyrewood Shackle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3219","-1","","","","","Deprecated Mantle of Nobility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124","620","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"3220","-1","","","","","Blood Sausage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3221","-1","","","","","Deprecated Sage Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","411","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3222","-1","","","","","Wicked Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1203","6016","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","19","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","14" +"3223","-1","","","","","Frostmane Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1534","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","6" +"3224","-1","","","","","Silver-lined Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3225","-1","","","","","Bloodstained Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","548","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","9","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3226","-1","","","","","Deprecated Watchman Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","350","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","7" +"3227","-1","","","","","Nightbane Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2633","13169","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","7","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","18" +"3228","-1","","","","","Jimmied Handcuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1098","5493","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","3","7","0","0","0","0","0","0","0","0","21" +"3229","-1","","","","","Tarantula Silk Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","424","2122","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","18" +"3230","-1","","","","","Black Wolf Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4611","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","0","0","0","0","0","0","0","0","0","20" +"3231","-1","","","","","Cutthroat Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1266","6333","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"3232","-1","","","","","Deprecated Drake-scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1486","7431","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3233","-1","","","","","Gnoll Hide Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3234","-1","","","","","Deliah's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3235","-1","For Deliah","","","","Ring of Scorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","1650","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","-3","4","0","0","0","0","0","0","0","0","0" +"3236","-1","","","","","Rot Hide Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3237","-1","","","","","Sample Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3238","-1","The sealed findings of Apothecary Johaan.","","","","Johaan's Findings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3239","-1","","","","","Rough Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3240","-1","","","","","Coarse Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3241","-1","","","","","Heavy Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3242","-1","","","","","OLDMonster - Chest, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3243","-1","","","","","OLDMonster - Legs, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3244","-1","","","","","OLDMonster - Feet, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3245","-1","","","","","OLDMonster - Hands, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3246","-1","","","","","OLDMonster - Shoulder, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3247","-1","","","","","OLDMonster - Waist, Plate Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3248","-1","","","","","Translated Letter from The Embalmer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3249","-1","An item for testing conjured items","","","","Conjured test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3250","-1","","","","","Bethor's Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3251","-1","","","","","Bethor's Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3252","-1","","","","","Deathstalker Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3253","-1","","","","","Grizzled Bear Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3254","-1","","","","","Skittering Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3255","-1","","","","","Berard's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3256","-1","","","","","Lake Skulker Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3257","-1","","","","","Lake Creeper Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3258","-1","","","","","Hardened Tumor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3259","-1","","","","","Ruined Bat Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3260","-1","","","","","Scarlet Initiate Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3261","-1","","","","","Webbed Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3262","-1","","","","","Putrid Wooden Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3263","-1","","","","","Webbed Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3264","-1","","","","","Duskbat Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3265","-1","","","","","Scavenger Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3266","-1","","","","","Scarlet Armband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3267","-1","","","","","Forsaken Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3268","-1","","","","","Forsaken Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3269","-1","","","","","Forsaken Maul","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3270","-1","","","","","Flax Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3271","-1","","","","","Deprecated Flax Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3272","-1","","","","","Zombie Skin Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3273","-1","","","","","Rugged Mail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3274","-1","","","","","Flax Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3275","-1","","","","","Flax Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3276","-1","","","","","Deathguard Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3277","-1","","","","","Executor Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3278","-1","","","","","Aura Proc Damage Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","8602","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","25" +"3279","-1","","","","","Battle Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","526","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3280","-1","","","","","Battle Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","165","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3281","-1","","","","","Battle Chain Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","281","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3282","-1","","","","","Battle Chain Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1177","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","7" +"3283","-1","","","","","Battle Chain Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1477","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3284","-1","","","","","Tribal Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88","444","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3285","-1","","","","","Tribal Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","183","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3286","-1","","","","","Tribal Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","298","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3287","-1","","","","","Tribal Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","199","999","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","7" +"3288","-1","","","","","Tribal Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1253","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3289","-1","","","","","Ancestral Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","289","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3290","-1","","","","","Ancestral Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","242","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3291","-1","","","","","Ancestral Woollies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","202","1013","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","0","0","0","0","0","0","0","0","0","8" +"3292","-1","","","","","Ancestral Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203","1017","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3293","-1","","","","","Deadman Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","3","-1","0","0","1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3294","-1","","","","","Deadman Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3295","-1","","","","","Deadman Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","3","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3296","-1","","","","","Deadman Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","54","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","3","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3297","-1","","","","","Fel Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3298","-1","","","","","Deprecated Grizzled Bearskin Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75","300","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3299","-1","","","","","Fractured Canine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","48","195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3300","-1","","","","","Rabbit's Foot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","9","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3301","-1","","","","","Sharp Canine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","102","410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3302","-1","","","","","Brackwater Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","319","1596","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","10" +"3303","-1","","","","","Brackwater Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","354","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3304","-1","","","","","Brackwater Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","533","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3305","-1","","","","","Brackwater Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","492","2463","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"3306","-1","","","","","Brackwater Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","654","3270","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"3307","-1","","","","","Barbaric Cloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1079","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","1","0","0","0","0","0","0","0","0","10" +"3308","-1","","","","","Barbaric Cloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","722","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","1","0","0","0","0","0","0","0","0","10" +"3309","-1","","","","","Barbaric Loincloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1666","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","0","0","0","0","0","0","0","0","0","11" +"3310","-1","","","","","Barbaric Cloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","442","2211","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","4","0","0","0","0","0","0","0","0","13" +"3311","-1","","","","","Ceremonial Leather Ankleguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","762","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3312","-1","","","","","Ceremonial Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","354","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","8" +"3313","-1","","","","","Ceremonial Leather Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2596","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"3314","-1","","","","","Ceremonial Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","171","856","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"3315","-1","","","","","Ceremonial Leather Loincloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","455","2275","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","12" +"3316","-1","","","","","Alaric's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3317","-1","Its lips are moving!","","","","A Talking Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","460","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3318","-1","","","","","Alaric's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3319","-1","","","","","Short Sabre","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","9","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3320","-1","","","","","Bonecaster Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","110","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3321","-1","","","","","Gray Fur Booties","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","208","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3322","-1","","","","","Wispy Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3323","-1","","","","","Ghostly Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3324","-1","","","","","Ghostly Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5600","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"3325","-1","","","","","Vile Fin Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","704","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","9","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3326","-1","","","","","Monster - Mace2H, Basic Stone Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3327","-1","","","","","Vile Fin Oracle Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141","709","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","9","-1","0","0","11","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3328","-1","","","","","Spider Web Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","233","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3329","-1","","","","","Spiked Wooden Plank","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","896","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3330","-1","","","","","Dargol's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1406","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","8" +"3331","-1","","","","","Melrache's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3332","-1","","","","","Perrine's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","242","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3333","-1","","","","","Deprecated Scarlet Captain's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82","411","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3334","-1","","","","","Farmer's Shovel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","344","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","7","-1","0","0","11","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"3335","-1","","","","","Farmer's Broom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","6","-1","0","0","9","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3336","-1","","","","","Flesh Piercer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3986","19933","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","29","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","24" +"3337","-1","","","","","Dragonmaw War Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3338","-1","","","","","Deprecated Obsidian Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3339","-1","","","","","Dwarven Tinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3340","-1","","","","","Incendicite Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3341","-1","","","","","Gauntlets of Ogre Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1621","8109","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","27" +"3342","-1","","","","","Captain Sander's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3343","-1","","","","","Captain Sander's Booty Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3344","-1","","","","","Captain Sander's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","730","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"3345","-1","","","","","Silk Wizard Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2720","13601","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","32" +"3346","-1","","","","","Monster - Item, Shovel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3347","-1","","","","","Bundle of Crocolisk Skins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3348","-1","","","","","Giant Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3349","-1","It's dripping.","","","","Sida's Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3350","-1","","","","","Monster - Item, Bone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3351","-1","","","","","Monster - Item, Rolling Pin","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3352","-1","","","","","Ooze-covered Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3353","-1","","","","","Rune-inscribed Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3354","-1","","","","","Dalaran Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3355","-1","","","","","Wild Steelbloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3356","-1","","","","","Kingsblood","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3357","-1","","","","","Liferoot","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3358","-1","","","","","Khadgar's Whisker","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3360","-1","","","","","Stitches' Femur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3361","-1","","","","","Monster - Mace, Spiked Heavy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3362","-1","","","","","Monster - Item, Broom","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3363","-1","","","","","Frayed Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3364","-1","","","","","Monster - Sword, Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3365","-1","","","","","Frayed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3366","-1","","","","","Monster - Sword2H, Katana","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3367","-1","","","","","Monster - Item, Pitchfork","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3368","-1","","","","","Monster - Item, Harpoon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3369","-1","","","","","Grave Moss","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3370","-1","","","","","Patchwork Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","3" +"3371","-1","","","","","Empty Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3372","-1","","","","","Leaded Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3373","-1","","","","","Patchwork Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","71","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","4" +"3374","-1","","","","","Calico Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","228","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","9" +"3375","-1","","","","","Calico Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","7" +"3376","-1","","","","","Canvas Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","431","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","13" +"3377","-1","","","","","Canvas Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","14" +"3378","-1","","","","","Brocade Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132","660","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","16" +"3379","-1","","","","","Brocade Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","762","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","17" +"3380","-1","","","","","Cross-stitched Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","365","1827","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","25" +"3381","-1","","","","","Cross-stitched Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","303","1515","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","23" +"3382","-1","","","","","Weak Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3383","-1","","","","","Elixir of Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"3384","-1","","","","","Minor Magic Resistance Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3385","-1","","","","","Lesser Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3386","-1","","","","","Potion of Curing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"3387","-1","","","","","Limited Invulnerability Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3388","-1","","","","","Strong Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3389","-1","","","","","Elixir of Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"3390","-1","","","","","Elixir of Lesser Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3391","-1","","","","","Elixir of Ogre's Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3392","-1","","","","","Ringed Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1663","8318","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","25" +"3393","-1","Teaches you how to make a Minor Magic Resistance Potion.","","","","Recipe: Minor Magic Resistance Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","171","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3394","-1","Teaches you how to make a Potion of Curing.","","","","Recipe: Potion of Curing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","171","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3395","-1","Teaches you how to make a Limited Invulnerability Potion.","","","","Recipe: Limited Invulnerability Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3396","-1","Teaches you how to make an Elixir of Lesser Agility.","","","","Recipe: Elixir of Lesser Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","171","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3397","-1","","","","","Young Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3399","-1","","","","","Vulture Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3400","-1","","","","","Lucine Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2761","13807","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3401","-1","","","","","Rough Crocolisk Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3402","-1","","","","","Soft Patch of Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","602","2410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3403","-1","","","","","Ivory Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","321","1285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3404","-1","","","","","Buzzard Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","181","725","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3405","-1","","","","","Raven Claw Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3406","-1","","","","","Black Feather Quill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3407","-1","","","","","Sapphire of Sky","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3408","-1","","","","","Rune of Nesting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3409","-1","","","","","Nightsaber Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3410","-1","","","","","Deprecated Glade Bear Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3411","-1","","","","","Strigid Owl Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3412","-1","","","","","Webwood Spider Silk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3413","-1","","","","","Doomspike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3229","16148","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","3","0","0","0","0","0","0","0","0","20" +"3414","-1","","","","","Crested Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4029","20145","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","22" +"3415","-1","","","","","Staff of the Friar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3598","17994","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","4","3","0","0","0","0","0","0","0","19" +"3416","-1","","","","","Martyr's Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2213","11069","1","1","1","0","24580","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","8","8","0","0","0","0","0","0","0","21" +"3417","-1","","","","","Onyx Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4629","23147","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","26","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","6","5","9","0","0","0","0","0","0","0","21" +"3418","-1","","","","","Fel Cone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3419","-1","","","","","Red Rose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3420","-1","","","","","Black Rose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3421","-1","","","","","Simple Wildflowers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3422","-1","","","","","Beautiful Wildflowers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3423","-1","","","","","Bouquet of White Roses","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3424","-1","","","","","Bouquet of Black Roses","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3425","-1","","","","","Woven Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3426","-1","","","","","Bold Yellow Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3427","-1","","","","","Stylish Black Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3428","-1","","","","","Common Gray Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3429","-1","","","","","Guardsman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2932","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","19" +"3430","-1","","","","","Sniper Rifle","0.15","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11027","55135","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","44","-1","0","5852","72","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","39" +"3431","-1","","","","","Bone-studded Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1335","6677","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","5","1","0","0","0","0","0","0","0","0" +"3432","-1","","","","","Monster - Glaive - 1 Blade Basic","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3433","-1","","","","","Monster - Spear, Badass","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3434","-1","","","","","Slumber Sand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3435","-1","","","","","Zombie Skin Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","99","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3436","-1","","","","","Deprecated Quilted Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3437","-1","","","","","Clasped Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","120","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3438","-1","","","","","Ankh of Resurrection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28","115","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3439","-1","","","","","Zombie Skin Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","151","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3440","-1","","","","","Bonecracker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","640","3203","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3441","-1","","","","","Deprecated Crippling Agent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3442","-1","","","","","Apprentice Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","224","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3443","-1","","","","","Ceremonial Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","692","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3444","-1","","","","","Tiller's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3445","-1","","","","","Ceremonial Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","226","1133","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","12","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3446","-1","","","","","Darkwood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","592","2963","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3447","-1","","","","","Cryptwalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","174","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3448","-1","","","","","Senggin Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3449","-1","","","","","Mystic Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","207","1035","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3450","-1","","","","","Faerleia's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","443","2218","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3451","-1","","","","","Nightglow Concoction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","607","2430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3452","-1","","","","","Ceranium Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2322","11610","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","22","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","0" +"3453","-1","","","","","Quilted Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","233","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3454","-1","","","","","Reconnaissance Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","527","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3455","-1","","","","","Deathstalker Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","941","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","11","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3456","-1","","","","","Dog Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6375","25500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","25" +"3457","-1","","","","","Stamped Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","444","2220","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"3458","-1","","","","","Rugged Mail Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","334","1671","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","0" +"3459","-1","","","","","Deprecated Weathered Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61","306","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3460","-1","","","","","Johaan's Special Drink","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3461","-1","","","","","High Robe of the Adjudicator","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1006","5030","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","7","0","0","0","0","0","0","0","0","0" +"3462","-1","","","","","Talonstrike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2283","11418","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","24","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3463","-1","","","","","Broken Silver Star","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","9","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0" +"3464","-1","","","","","Feathered Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3465","-1","","","","","Exploding Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","36","-1","0","0","9","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3466","-1","Used by blacksmiths to remove impurities.","","","","Strong Flux","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3467","-1","","","","","Dull Iron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3468","-1","The sealed findings of Apothecary Renferrel.","","","","Renferrel's Findings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3469","-1","","","","","Copper Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","246","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3470","-1","","","","","Rough Grinding Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3471","-1","","","","","Copper Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","713","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"3472","-1","","","","","Runed Copper Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","358","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3473","-1","","","","","Runed Copper Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1499","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","8" +"3474","-1","","","","","Gemmed Copper Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1083","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","749","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","10" +"3475","-1","","","","","Cloak of Flames","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21810","109053","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","0","0","0","0","0","0","0","0","0","0","60" +"3476","-1","","","","","Gray Bear Tongue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3477","-1","","","","","Creeper Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3478","-1","","","","","Coarse Grinding Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3480","-1","","","","","Rough Bronze Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2661","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3481","-1","","","","","Silvered Bronze Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1284","6423","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","3","3","3","0","0","0","0","0","0","0","20" +"3482","-1","","","","","Silvered Bronze Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1317","6588","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","3","0","0","0","0","0","0","0","21" +"3483","-1","","","","","Silvered Bronze Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4829","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","3","0","0","0","0","0","0","0","22" +"3484","-1","","","","","Green Iron Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8838","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","24" +"3485","-1","","","","","Green Iron Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1295","6477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","25" +"3486","-1","","","","","Heavy Grinding Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3487","-1","","","","","Heavy Copper Broadsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1498","7490","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","27","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"3488","-1","","","","","Copper Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","613","3066","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","13","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","8" +"3489","-1","","","","","Thick War Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","937","4689","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","17","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","1","0","0","0","0","0","0","0","0","12" +"3490","-1","","","","","Deadly Bronze Poniard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2731","13659","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","25","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","20" +"3491","-1","","","","","Heavy Bronze Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2741","13709","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","25","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","0","0","0","0","0","0","0","0","0","20" +"3492","-1","","","","","Mighty Iron Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4552","22764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","25" +"3493","-1","","","","","Raptor's End","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3426","17133","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","30","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"3494","-1","","","","","Monster - Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3495","-1","","","","","Elixir of Suffering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3496","-1","","","","","Mountain Lion Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3497","-1","","","","","Elixir of Pain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3498","-1","A crescent moon dangling from a silver chain.","","","","Taretha's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3499","-1","","","","","Burnished Gold Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3500","-1","","","","","Deprecated Battered Lock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3501","-1","","","","","Deprecated Rusted Lock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3502","-1","","","","","Mudsnout Blossoms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3503","-1","","","","","Deprecated Forboding Document","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3504","-1","","","","","Deprecated Encrypted Letterr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3505","-1","","","","","Alterac Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3506","-1","","","","","Mudsnout Composite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3507","-1","","","","","Deprecated Test Fishliver Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3508","-1","","","","","Mudsnout Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3509","-1","","","","","Daggerspine Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3510","-1","","","","","Torn Fin Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3511","-1","","","","","Cloak of the People's Militia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1071","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3513","-1","","","","","Deprecated Contract for the Magistrate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3514","-1","","","","","Mor'Ladim's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3515","-1","","","","","Ataeric's Staff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3516","-1","","","","","Lescovar's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3517","-1","","","","","Keg of Shindigger Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3518","-1","","","","","Decrypted Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3519","-1","","","","","Deprecated DEFAULT QUEST ITEM - Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3520","-1","","","","","Tainted Keg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3521","-1","This letter is encrypted and indecipherable.","","","","Cleverly Encrypted Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3522","-1","","","","","Black Night Elf Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3523","-1","","","","","Unused Black Night Elf Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3524","-1","","","","","Unused Black Night Elf Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3525","-1","","","","","Unused Black Night Elf Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3526","-1","","","","","Black Night Elf Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3527","-1","","","","","White Night Elf Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3528","-1","","","","","Red Leather C03 Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3529","-1","","","","","Black Night Elf Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3530","-1","","","","","Wool Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3531","-1","","","","","Heavy Wool Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","57","230","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3532","-1","","","","","Unused Red Leather C03 Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3533","-1","","","","","Red Leather C03 Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3534","-1","","","","","Unused Red Leather C03 Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3535","-1","","","","","Red Leather C03 Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3536","-1","","","","","Demon Hunter Blindfold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3537","-1","","","","","Black Leather D02 Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3538","-1","","","","","Gray Leather D02 Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3539","-1","","","","","Unused Black Leather D02 Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3540","-1","","","","","Unused Gray Leather D02 Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3541","-1","","","","","Black Leather D02 Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3542","-1","","","","","Gray Leather D02 Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3543","-1","","","","","Unused Black Leather D02 Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3544","-1","","","","","Unused Gray Leather D02 Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3545","-1","","","","","Black Leather D02 Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3546","-1","","","","","Gray Leather D02 Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3547","-1","","","","","White Leather D03 Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3548","-1","","","","","Unused White Leather D03 Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3549","-1","","","","","Unused White Leather D03 Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3550","-1","","","","","Targ's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3551","-1","","","","","Muckrake's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3552","-1","","","","","Glommus's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3553","-1","","","","","Mug'thol's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3554","-1","","","","","Crown of Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3555","-1","","","","","Robe of Solomon","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1032","5161","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","3","0","0","0","0","0","0","0","0","0" +"3556","-1","","","","","Dread Mage Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1285","6429","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3557","-1","","","","","Unused Tabard of Chow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","128","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3558","-1","","","","","Fen Keeper Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5221","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","9","0","0","0","0","0","0","0","0","0","0" +"3559","-1","","","","","Night Watch Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","473","2369","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","1","0","0","0","0","0","0","0","0","0" +"3560","-1","","","","","Mantle of Honor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2102","10514","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3561","-1","","","","","Resilient Poncho","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"3562","-1","","","","","Belt of Vindication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4118","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","0" +"3563","-1","","","","","Seafarer's Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","557","2788","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"3564","-1","","","","","Shipment of Iron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3565","-1","","","","","Beerstained Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1404","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3566","-1","","","","","Raptorbane Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2023","10116","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3567","-1","Dwarves aren't known for their subtlety.","","","","Dwarven Fishing Pole","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4614","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"3568","-1","","","","","Deprecated Oslow's Toolbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3569","-1","","","","","Vicar's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1262","6310","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","7","0","0","0","0","0","0","0","0","21" +"3570","-1","","","","","Bonegrinding Pestle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","839","4198","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","16","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3571","-1","","","","","Trogg Beater","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2118","10593","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","21","-1","0","0","39","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","16" +"3572","-1","","","","","Daryl's Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","972","4862","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","17","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"3573","-1","","","","","Hunting Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","212","850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3574","-1","","","","","Hunting Ammo Sack","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3575","-1","","","","","Iron Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3576","-1","","","","","Tin Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3577","-1","","","","","Gold Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3578","-1","","","","","Harvester's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","340","1700","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","0" +"3580","-1","","","","","Deprecated Iron Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3581","-1","","","","","Serrated Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1046","5231","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","18","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"3582","-1","","","","","Acidproof Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","315","1575","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"3583","-1","","","","","Weathered Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","288","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3584","-1","","","","","Deprecated Perenolde's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3585","-1","","","","","Camouflaged Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","953","4768","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","2","0","0","0","0","0","0","0","0","0" +"3586","-1","","","","","Logsplitter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1034","5172","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","16","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","2","0","0","0","0","0","0","0","0","0" +"3587","-1","","","","","Embroidered Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2862","14314","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3588","-1","","","","","Embroidered Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2873","14366","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3589","-1","","","","","Heavy Weave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","577","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3590","-1","","","","","Heavy Weave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","579","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","12" +"3591","-1","","","","","Padded Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","419","2097","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3592","-1","","","","","Padded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2104","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3593","-1","","","","","Russet Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1095","5478","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3594","-1","","","","","Russet Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1099","5497","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3595","-1","","","","","Tattered Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3596","-1","","","","","Tattered Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3597","-1","","","","","Thick Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","216","1081","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3598","-1","","","","","Thick Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","217","1085","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3599","-1","","","","","Thin Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3600","-1","","","","","Thin Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3601","-1","","","","","Syndicate Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3602","-1","","","","","Knitted Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","145","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3603","-1","","","","","Knitted Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","146","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3604","-1","","","","","Bandolier of the Night Watch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3605","-1","","","","","Quiver of the Night Watch","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3606","-1","","","","","Woven Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","147","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3607","-1","","","","","Woven Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3608","-1","Teaches you how to make a Mighty Iron Hammer.","","","","Plans: Mighty Iron Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","164","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3609","-1","Teaches you how to make a Copper Chain Vest.","","","","Plans: Copper Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","164","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3610","-1","Teaches you how to make Gemmed Copper Gauntlets.","","","","Plans: Gemmed Copper Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","164","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3611","-1","Teaches you how to make Green Iron Boots.","","","","Plans: Green Iron Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","164","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3612","-1","Teaches you how to make Green Iron Gauntlets.","","","","Plans: Green Iron Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3613","-1","","","","","Valdred's Hands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3614","-1","","","","","Yowler's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3615","-1","","","","","Kurzen's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3616","-1","","","","","Mind's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3617","-1","","","","","Pendant of Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3618","-1","","","","","Gobbler's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3619","-1","","","","","Snellig's Snuffbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3620","-1","","","","","Lillith's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3621","-1","","","","","Ivar's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3622","-1","","","","","Essence of Nightlash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3623","-1","","","","","Thule's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3624","-1","","","","","Deprecated QDROP - Ma'ruk Wyrmscale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3625","-1","","","","","Nek'rosh's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3626","-1","","","","","Head of Baron Vardus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3627","-1","","","","","Fang of Vagash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3628","-1","","","","","Hand of Dextren Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3629","-1","","","","","Mistmantle Family Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3630","-1","","","","","Head of Targorr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3631","-1","","","","","Bellygrub's Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3632","-1","","","","","Fangore's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3633","-1","","","","","Head of Gath'Ilzogg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3634","-1","","","","","Head of Grimson","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3635","-1","","","","","Maggot Eye's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3636","-1","","","","","Scale of Old Murk-Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3637","-1","","","","","Head of VanCleef","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3638","-1","","","","","Sarltooth's Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3639","-1","","","","","Ear of Balgaras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3640","-1","","","","","Head of Deepfury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3641","-1","","","","","Journeyman's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"3642","-1","","","","","Ancestral Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","111","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3643","-1","","","","","Spellbinder Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","355","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"3644","-1","","","","","Barbaric Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","238","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"3645","-1","","","","","Seer's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","947","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"3646","-1","","","","","Deprecated Stonecloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","249","1248","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","21" +"3647","-1","","","","","Bright Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","434","2170","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","18" +"3648","-1","","","","","Warrior's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","365","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3649","-1","","","","","Tribal Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","576","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"3650","-1","","","","","Battle Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","342","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"3651","-1","","","","","Veteran Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2176","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","10" +"3652","-1","","","","","Hunting Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1821","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","1","0","0","0","0","0","0","0","0","9" +"3653","-1","","","","","Ceremonial Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","438","2193","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","10" +"3654","-1","","","","","Brackwater Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","367","1835","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","1","0","0","0","0","0","0","0","0","9" +"3655","-1","","","","","Burnished Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1022","5112","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","2","0","0","0","0","0","0","0","0","16" +"3656","-1","","","","","Lambent Scale Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2116","10584","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","0","0","0","0","0","0","0","0","22" +"3657","-1","","","","","Hillsbrad Town Registry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3658","-1","","","","","Recovered Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3659","-1","Arm of Gri'lek","","","","Worn Leather Book","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3660","-1","","","","","Tomes of Alterac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3661","-1","","","","","Handcrafted Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3662","-1","","","","","Crocolisk Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"3663","-1","","","","","Murloc Fin Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3664","-1","","","","","Crocolisk Gumbo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3665","-1","","","","","Curiously Tasty Omelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3666","-1","","","","","Gooey Spider Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3667","-1","","","","","Tender Crocolisk Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3668","-1","","","","","Assassin's Contract","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3669","-1","","","","","Gelatinous Goo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","195","780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3670","-1","","","","","Large Slimy Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3671","-1","","","","","Lifeless Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","201","805","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3672","-1","","","","","Head of Nagaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3673","-1","","","","","Broken Arrow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3674","-1","","","","","Decomposed Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3675","-1","","","","","Burnt Out Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3676","-1","","","","","Slimy Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","106","425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3677","-1","","","","","Deprecated Remington's List","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3678","-1","Teaches you how to cook a Crocolisk Steak.","","","","Recipe: Crocolisk Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3679","-1","Teaches you how to cook a Blood Sausage.","","","","Recipe: Blood Sausage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3680","-1","Teaches you how to cook a Murloc Fin Soup.","","","","Recipe: Murloc Fin Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3681","-1","Teaches you how to cook a Crocolisk Gumbo.","","","","Recipe: Crocolisk Gumbo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3682","-1","Teaches you how to cook a Curiously Tasty Omelet. Don't ask, you don't want to know.","","","","Recipe: Curiously Tasty Omelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3683","-1","Teaches you how to cook a Gooey Spider Cake.","","","","Recipe: Gooey Spider Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3684","-1","","","","","Perenolde Tiara","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3685","-1","","","","","Raptor Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3686","-1","","","","","Deprecated Jkaplan TEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3687","-1","","","","","Deprecated Unholy Avenger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57718","288592","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","-1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","6","0","0","0","0","0","0","0","0","0","0","0","35" +"3688","-1","","","","","Bloodstone Oval","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3689","-1","","","","","Bloodstone Marble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3690","-1","","","","","Bloodstone Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3691","-1","","","","","Bloodstone Wedge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3692","-1","","","","","Hillsbrad Human Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3693","-1","","","","","Humbert's Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3694","-1","","","","","Monster - Item, Vial Black Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3695","-1","","","","","Monster - Item, Vial Purple Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3696","-1","","","","","Monster - Item, Vial Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3697","-1","","","","","Monster - Item, Potion Blue Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3698","-1","","","","","Monster - Item, Potion Green Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3699","-1","","","","","Monster - Item, Potion Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3701","-1","To be opened by Lord Varimathras.","","","","Darthalia's Sealed Commendation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3702","-1","","","","","Bear Gall Bladder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","498","1995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3703","-1","","","","","Southshore Stout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","36","145","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3704","-1","","","","","Rusted Iron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3705","-1","","","","","Deprecated Rabid Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","727","2910","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3706","-1","Its letters are enshrouded in magic.","","","","Ensorcelled Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3707","-1","","","","","Nagaz Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3708","-1","","","","","Helcular's Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3710","-1","","","","","Rod of Helcular","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3711","-1","","","","","Belamoore's Research Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3712","-1","","","","","Turtle Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3713","-1","","","","","Soothing Spices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3714","-1","Its magic has faded.","","","","Worn Stone Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3715","-1","","","","","Bracers of Earth Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3716","-1","","","","","Murloc Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3717","-1","","","","","Sack of Murloc Heads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3718","-1","","","","","Foreboding Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3719","-1","","","","","Hillman's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","822","4112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3720","-1","","","","","Yeti Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3721","-1","","","","","Farren's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3722","-1","","","","","Familiar Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","213","855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3723","-1","","","","","Familiar Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","68","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3724","-1","","","","","Familiar Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","81","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3725","-1","","","","","Familiar Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","166","666","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3726","-1","","","","","Big Bear Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3727","-1","","","","","Hot Lion Chops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3728","-1","","","","","Tasty Lion Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3729","-1","","","","","Soothing Turtle Bisque","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3730","-1","","","","","Big Bear Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3731","-1","","","","","Lion Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3732","-1","","","","","Hooded Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","801","4007","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3733","-1","","","","","Orcish War Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1269","6347","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","0" +"3734","-1","Teaches you how to cook a Big Bear Steak.","","","","Recipe: Big Bear Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3735","-1","Teaches you how to cook up some Hot Lion Chops.","","","","Recipe: Hot Lion Chops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3736","-1","Teaches you how to cook a Tasty Lion Steak.","","","","Recipe: Tasty Lion Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3737","-1","Teaches you how to cook a Soothing Turtle Bisque.","","","","Recipe: Soothing Turtle Bisque","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3738","-1","","","","","Brewing Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3439","17196","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","5","0","0","0","0","0","0","0","0","0" +"3739","-1","","","","","Skull Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"3740","-1","","","","","Decapitating Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2452","12263","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","5195","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","19" +"3741","-1","","","","","Stomping Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","923","4615","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"3742","-1","","","","","Bow of Plunder","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2862","14311","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","28","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"3743","-1","","","","","Sentry Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2451","12256","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","5","0","0","0","0","0","0","0","0","0" +"3744","-1","NYI - THIS ITEM WILL SPAWN A QUEST","","","","Bloodstone Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3745","-1","","","","","Rune of Opening","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3746","-1","","","","","Deprecated Test Strongbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3747","-1","","","","","Meditative Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1092","5462","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","5","0","0","0","0","0","0","0","0","0" +"3748","-1","","","","","Feline Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1305","6525","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","3","0","0","0","0","0","0","0","0","23" +"3749","-1","","","","","High Apothecary Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1320","6604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","5","0","0","0","0","0","0","0","0","0" +"3750","-1","","","","","Ribbed Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2209","11048","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","5","5","0","0","0","0","0","0","0","0" +"3751","-1","","","","","Mercenary Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2661","13308","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"3752","-1","","","","","Grunt Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","746","3730","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","0" +"3753","-1","","","","","Shepherd's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1635","8178","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3754","-1","","","","","Shepherd's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1492","7462","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3755","-1","","","","","Fish Gutter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5447","27237","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","32","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","0" +"3756","-1","","","","","Monster - Item, Bottle - Black Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3757","-1","","","","","Monster - Item, Bottle - Green Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3758","-1","","","","","Crusader Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1817","9087","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3759","-1","","","","","Insulated Sage Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1216","6080","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"3760","-1","","","","","Band of the Undercity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","5","0","0","0","0","0","0","0","0","0" +"3761","-1","","","","","Deadskull Shield","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16534","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","7","0","0","0","0","0","0","0","0","0" +"3762","-1","","","","","Librarian's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3763","-1","","","","","Lunar Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6761","33806","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","8","0","0","0","0","0","0","0","0","0" +"3764","-1","","","","","Mantis Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3181","15906","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","0" +"3765","-1","","","","","Brigand's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4811","24057","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"3766","-1","","","","","Gryphon Feather Quill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3767","-1","","","","","Fine Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3768","-1","","","","","Deprecated Anti-magic Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"3769","-1","","","","","Broken Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3770","-1","","","","","Mutton Chop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"3771","-1","","","","","Wild Hog Shank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3772","-1","","","","","Conjured Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3773","-1","","","","","Deprecated Murkwood Sap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","126","504","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3774","-1","","","","","Monster - Dynamite, Unlit","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"3775","-1","","","","","Crippling Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","52","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3776","-1","","","","","Crippling Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"3777","-1","Used by rogues to brew poison.","","","","Lethargy Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3778","-1","","","","","Taut Compound Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1541","7705","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","31","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","26" +"3779","-1","","","","","Hefty War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2835","14176","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3780","-1","","","","","Long-barreled Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1877","9389","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","33","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","28" +"3781","-1","","","","","Broad Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3125","15628","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","34","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3782","-1","","","","","Large War Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3451","17258","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","35","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3783","-1","","","","","Light Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3048","15244","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3784","-1","","","","","Metal Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4208","21042","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","37","-1","0","0","38","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3785","-1","","","","","Keen Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3650","18250","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","38","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3786","-1","","","","","Shiny Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3957","19786","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","39","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3787","-1","","","","","Stone Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4289","21448","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","40","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","35" +"3788","-1","","","","","Soul Crystal Relic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3789","-1","","","","","Relic Stone of Piety","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3790","-1","","","","","Consecrated Relic Parchment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3791","-1","","","","","Relic of the Light","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3792","-1","","","","","Interlaced Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","521","2606","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3793","-1","","","","","Interlaced Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","648","3243","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3794","-1","","","","","Interlaced Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","775","3875","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3795","-1","","","","","Interlaced Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4910","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3796","-1","","","","","Interlaced Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","493","2468","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3797","-1","","","","","Interlaced Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1692","8461","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3798","-1","","","","","Interlaced Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","902","4511","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3799","-1","","","","","Interlaced Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1461","7305","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3800","-1","","","","","Hardened Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1068","5344","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3801","-1","","","","","Hardened Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5156","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3802","-1","","","","","Hardened Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","627","3137","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3803","-1","","","","","Hardened Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1086","5432","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3804","-1","","","","","Hardened Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","765","3825","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3805","-1","","","","","Hardened Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5245","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3806","-1","","","","","Hardened Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1272","6360","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3807","-1","","","","","Hardened Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1162","5814","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3808","-1","","","","","Double Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","770","3851","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","29" +"3809","-1","","","","","Double Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4814","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","27" +"3810","-1","","","","","Double Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1145","5728","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","33" +"3811","-1","","","","","Double-stitched Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","5323","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","32" +"3812","-1","","","","","Double Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4857","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3813","-1","","","","","Double Mail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1772","8863","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","30" +"3814","-1","","","","","Double Mail Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1891","9457","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","34" +"3815","-1","","","","","Double Mail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1475","7378","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3816","-1","","","","","Reflective Heater","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2102","10512","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","31" +"3817","-1","","","","","Reinforced Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1585","7925","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","28" +"3818","-1","","","","","Fadeleaf","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3819","-1","","","","","Wintersbite","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3820","-1","","","","","Stranglekelp","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3821","-1","","","","","Goldthorn","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3822","-1","","","","","Runic Darkblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6481","32406","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3823","-1","","","","","Lesser Invisibility Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"3824","-1","","","","","Shadow Oil","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"3825","-1","","","","","Elixir of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"3826","-1","","","","","Mighty Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","105","420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"3827","-1","","","","","Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3828","-1","","","","","Elixir of Detect Lesser Invisibility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"3829","-1","","","","","Frost Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"3830","-1","Teaches you how to make an Elixir of Fortitude.","","","","Recipe: Elixir of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","171","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3831","-1","Teaches you how to make a Mighty Troll's Blood Potion.","","","","Recipe: Mighty Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","171","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3832","-1","Teaches you how to make an Elixir of Detect Lesser Invisibility.","","","","Recipe: Elixir of Detect Lesser Invisibility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","171","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3833","-1","","","","","Adept's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3834","-1","","","","","Sturdy Cloth Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","163","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3835","-1","","","","","Green Iron Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1106","5532","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","28" +"3836","-1","","","","","Green Iron Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3053","15268","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","5","0","0","0","0","0","0","0","0","29" +"3837","-1","","","","","Golden Scale Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4405","22027","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"3838","-1","","","","","Shadowmaw Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3839","-1","","","","","Pristine Tigress Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3840","-1","","","","","Green Iron Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2571","12855","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","4","0","0","0","0","0","0","0","0","27" +"3841","-1","","","","","Golden Scale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3106","15534","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","30" +"3842","-1","","","","","Green Iron Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2906","14532","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","8","0","0","0","0","0","0","0","0","26" +"3843","-1","","","","","Golden Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3882","19413","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","5","0","0","0","0","0","0","0","0","29" +"3844","-1","","","","","Green Iron Hauberk","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5658","28294","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","7","0","0","0","0","0","0","0","0","31" +"3845","-1","","","","","Golden Scale Cuirass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6558","32794","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","6","0","0","0","0","0","0","0","0","35" +"3846","-1","","","","","Polished Steel Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19685","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","32" +"3847","-1","","","","","Golden Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4977","24887","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","35" +"3848","-1","","","","","Big Bronze Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7130","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","20","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","15" +"3849","-1","","","","","Hardened Iron Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","32","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","0","0","0","0","0","0","0","0","0","27" +"3850","-1","","","","","Jade Serpentblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7304","36524","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","35","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","4","0","0","0","0","0","0","0","0","30" +"3851","-1","","","","","Solid Iron Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6258","31294","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","31","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","0","0","0","0","0","0","0","0","0","26" +"3852","-1","","","","","Golden Iron Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8361","41805","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2750","0","0","0","34","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","4","0","0","0","0","0","0","0","0","29" +"3853","-1","","","","","Moonsteel Broadsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10153","50768","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","36","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","12","0","0","0","0","0","0","0","0","31" +"3854","-1","","","","","Frost Tiger Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14120","70604","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","-1","0","0","78","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","35" +"3855","-1","","","","","Massive Iron Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11248","56244","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","37","-1","0","0","71","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","7","0","0","0","0","0","0","0","0","32" +"3856","-1","","","","","Shadow Crescent Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14221","71107","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","40","-1","0","0","58","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","10","0","0","0","0","0","0","0","0","35" +"3857","-1","","","","","Coal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3858","-1","","","","","Mithril Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","755","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3859","-1","","","","","Steel Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3860","-1","","","","","Mithril Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3861","-1","","","","","Blacksteel Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3862","-1","","","","","Aged Gorilla Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3863","-1","","","","","Jungle Stalker Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3864","-1","","","","","Citrine","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3865","-1","","","","","Test Offhand Weapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"3866","-1","Teaches you how to make a Jade Serpentblade.","","","","Plans: Jade Serpentblade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3867","-1","Teaches you how to make a Golden Iron Destroyer.","","","","Plans: Golden Iron Destroyer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","164","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3868","-1","Teaches you how to make a Frost Tiger Blade.","","","","Plans: Frost Tiger Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3869","-1","Teaches you how to make a Shadow Crescent Axe.","","","","Plans: Shadow Crescent Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3870","-1","Teaches you how to make Green Iron Shoulders.","","","","Plans: Green Iron Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3871","-1","Teaches you how to make Golden Scale Shoulders.","","","","Plans: Golden Scale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"3872","-1","Teaches you how to make Golden Scale Leggings.","","","","Plans: Golden Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","800","3200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","164","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3873","-1","Teaches you how to make a Golden Scale Cuirass.","","","","Plans: Golden Scale Cuirass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","164","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3874","-1","Teaches you how to make Polished Steel Boots.","","","","Plans: Polished Steel Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"3875","-1","Teaches you how to make Golden Scale Boots.","","","","Plans: Golden Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"3876","-1","","","","","Fang of Bhag'thera","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3877","-1","","","","","Talon of Tethis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3878","-1","","","","","Deprecated Conjured Mana Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"3879","-1","","","","","Paw of Sin'Dall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3880","-1","","","","","Head of Bangalash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3881","-1","","","","","Deprecated Kurzen's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3882","-1","","","","","Buzzard Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3883","-1","","","","","Deprecated Thick Cloth Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","333","1666","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3884","-1","","","","","Deprecated Cured Leather Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","418","2090","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3885","-1","","","","","Deprecated Scalemail Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","503","2517","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","17" +"3886","-1","","","","","Deprecated Padded Cloth Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","604","3021","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3887","-1","","","","","Deprecated Cuirboulli Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","758","3790","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3888","-1","","","","","Deprecated Polished Scale Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","913","4565","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"3889","-1","","","","","Russet Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1584","7923","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3890","-1","","","","","Studded Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2040","10201","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3891","-1","","","","","Augmented Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2457","12285","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","32" +"3892","-1","","","","","Embroidered Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4388","21940","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3893","-1","","","","","Reinforced Leather Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5504","27523","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3894","-1","","","","","Brigandine Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5997","29986","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"3895","-1","","","","","TEST Legendary","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10287","51437","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","30","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","0","0","0","0","0","0","0","0","0","0","25" +"3897","-1","","","","","Dizzy's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3898","-1","","","","","Library Scrip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3899","-1","Stone of the Tides","","","","Legends of the Gurubashi, Volume 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3900","-1","","","","","Pupellyverbos Port","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3901","-1","","","","","Bloodscalp Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3902","-1","","","","","Staff of Nobles","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1317","6589","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","18","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","13" +"3904","-1","","","","","Gan'zulah's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3905","-1","","","","","Nezzliok's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3906","-1","","","","","Balia'mah Trophy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3907","-1","","","","","Ziata'jai Trophy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3908","-1","","","","","Zul'Mamwe Trophy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3909","-1","","","","","Broken Armor of Ana'thek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3910","-1","","","","","Snuff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3911","-1","","","","","Pulsing Blue Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3912","-1","","","","","Soul Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3913","-1","A glowing gem filled with the soul of Yenniku.","","","","Filled Soul Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3914","-1","","","","","Journeyman's Backpack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3915","-1","","","","","Bloody Bone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3916","-1","","","","","Split Bone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3917","-1","","","","","Singing Blue Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3918","-1","","","","","Singing Crystal Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3919","-1","","","","","Mistvale Giblets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3920","-1","","","","","Bloodsail Charts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3921","-1","","","","","Bloodsail Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3922","-1","","","","","Shaky's Payment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3923","-1","","","","","Water Elemental Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3924","-1","It jingles when shaken.","","","","Maury's Clubbed Foot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3925","-1","","","","","Jon-Jon's Golden Spyglass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3926","-1","","","","","Chucky's Huge Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3927","-1","","","","","Fine Aged Cheddar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3928","-1","","","","","Superior Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"3929","-1","","","","","Maury's Loot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3930","-1","","","","","Maury's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3931","-1","","","","","Poisoned Spider Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"3932","-1","","","","","Smotts' Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3933","-1","","","","","Deprecated Moon Glaive","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2670","13354","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","23","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","6","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","18" +"3934","-1","","","","","Deprecated Warden Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2739","13699","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","24","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","19" +"3935","-1","","","","","Smotts' Cutlass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","25","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","20" +"3936","-1","","","","","Crochet Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","985","4926","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3937","-1","","","","","Crochet Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2018","10093","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","41" +"3938","-1","","","","","Crochet Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1189","5949","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","39" +"3939","-1","","","","","Crochet Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2256","11284","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","42" +"3940","-1","","","","","Crochet Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1630","8154","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3941","-1","","","","","Crochet Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2598","12993","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","40" +"3942","-1","","","","","Crochet Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2636","13184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","44" +"3943","-1","","","","","Crochet Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2244","11222","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","38" +"3944","-1","","","","","Twill Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2277","11389","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3945","-1","","","","","Twill Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3852","19264","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3946","-1","","","","","Twill Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2432","12160","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","49" +"3947","-1","","","","","Twill Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3258","16292","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3948","-1","","","","","Twill Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3092","15463","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3949","-1","","","","","Twill Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6517","32586","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3950","-1","","","","","Twill Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4157","20789","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3951","-1","","","","","Twill Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5897","29488","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3952","-1","","","","","Mesh Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3845","19225","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3953","-1","","","","","Mesh Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5496","27482","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","59" +"3954","-1","","","","","Mesh Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3464","17324","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3955","-1","","","","","Mesh Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5012","25062","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","57" +"3956","-1","","","","","Mesh Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3399","16997","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","58" +"3957","-1","","","","","Mesh Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7190","35954","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","62" +"3958","-1","","","","","Mesh Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5551","27755","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","64" +"3959","-1","","","","","Mesh Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7152","35762","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"3960","-1","","","","","Bag of Water Elemental Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"3961","-1","","","","","Thick Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1503","7518","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","39" +"3962","-1","","","","","Thick Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3080","15400","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3963","-1","","","","","Thick Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1402","7013","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","38" +"3964","-1","","","","","Thick Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2127","10639","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","41" +"3965","-1","","","","","Thick Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11105","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","44" +"3966","-1","","","","","Thick Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2625","13128","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3967","-1","","","","","Thick Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2904","14520","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","42" +"3968","-1","","","","","Thick Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3331","16656","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","40" +"3969","-1","","","","","Smooth Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3256","16284","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3970","-1","","","","","Smooth Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4296","21482","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","49" +"3971","-1","","","","","Smooth Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3811","19057","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3972","-1","","","","","Smooth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3891","19456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3973","-1","","","","","Smooth Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3657","18287","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3974","-1","","","","","Smooth Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5487","27435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3975","-1","","","","","Smooth Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3896","19483","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3976","-1","","","","","Smooth Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6979","34895","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3977","-1","","","","","Strapped Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4264","21324","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","58" +"3978","-1","","","","","Strapped Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6938","34691","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","64" +"3979","-1","","","","","Strapped Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4527","22635","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","62" +"3980","-1","","","","","Strapped Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5105","25527","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","57" +"3981","-1","","","","","Strapped Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4618","23093","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3982","-1","","","","","Strapped Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9038","45192","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"3983","-1","","","","","Strapped Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6715","33577","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3984","-1","","","","","Strapped Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8869","44346","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","59" +"3985","-1","","","","","Monogrammed Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","8552","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","10","0","0","0","0","0","0","0","0","35" +"3986","-1","","","","","Protective Pavise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5332","26664","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","43" +"3987","-1","","","","","Deflecting Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6837","34185","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","1442","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3988","-1","","","","","Plate Wall Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10834","54171","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","1742","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","60" +"3989","-1","","","","","Blocking Targe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3154","15772","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1015","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","37" +"3990","-1","","","","","Crested Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8237","41186","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1517","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3991","-1","","","","","Plated Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11388","56943","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","1817","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","63" +"3992","-1","","","","","Laminated Scale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3082","15410","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","47" +"3993","-1","","","","","Laminated Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4940","24704","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","48" +"3994","-1","","","","","Laminated Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4404","22024","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","53" +"3995","-1","","","","","Laminated Scale Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4171","20856","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","52" +"3996","-1","","","","","Laminated Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4660","23300","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","54" +"3997","-1","","","","","Laminated Scale Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7929","39648","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","51" +"3998","-1","","","","","Laminated Scale Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5656","28280","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","50" +"3999","-1","","","","","Laminated Scale Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7109","35547","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","264","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","49" +"4000","-1","","","","","Overlinked Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1797","8987","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","39" +"4001","-1","","","","","Overlinked Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3170","15852","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4002","-1","","","","","Overlinked Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","12316","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","43" +"4003","-1","","","","","Overlinked Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2714","13574","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","44" +"4004","-1","","","","","Overlinked Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11788","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","42" +"4005","-1","","","","","Overlinked Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3478","17390","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","38" +"4006","-1","","","","","Overlinked Chain Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2434","12173","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","37" +"4007","-1","","","","","Overlinked Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3696","18481","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","40" +"4008","-1","","","","","Sterling Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4945","24726","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","58" +"4009","-1","","","","","Sterling Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7679","38398","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","60" +"4010","-1","","","","","Sterling Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5183","25918","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"4011","-1","","","","","Sterling Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5337","26689","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","63" +"4012","-1","","","","","Sterling Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5290","26454","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","62" +"4013","-1","","","","","Sterling Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10215","51078","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","59" +"4014","-1","","","","","Sterling Chain Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8236","41181","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","64" +"4015","-1","","","","","Sterling Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10020","50104","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","57" +"4016","-1","","","","","Zanzil's Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4017","-1","","","","","Sharp Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6910","34550","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4018","-1","","","","","Whetted Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6372","31863","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","42","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","37" +"4019","-1","","","","","Heavy Flint Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8336","41683","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","0","27","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","43" +"4020","-1","","","","","Splintering Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11189","55948","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","49","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","44" +"4021","-1","","","","","Blunting Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7198","35992","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","46","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","41" +"4022","-1","","","","","Crushing Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12059","60297","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","50","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","45" +"4023","-1","","","","","Fine Pointed Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6216","31080","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","44","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","39" +"4024","-1","","","","","Heavy War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9822","49110","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","47","-1","0","0","59","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","42" +"4025","-1","","","","","Balanced Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5070","25352","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","40" +"4026","-1","","","","","Sentinel Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4362","21812","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","43","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","38" +"4027","-1","","","","","Catelyn's Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4028","-1","To: Privateer Groy","","","","Bundle of Akiris Reeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4029","-1","","","","","Akiris Reed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4030","-1","","","","","Holy Relic Water","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4000","16000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4031","-1","","","","","Hallowed Relic Charm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4000","16000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4032","-1","","","","","Radiant Relic Hammer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","45" +"4033","-1","","","","","Dawn's Glow","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","45" +"4034","-1","","","","","Stone of the Tides","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4035","-1","","","","","Silver-thread Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1989","9945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","4","0","0","0","0","0","0","0","0","26" +"4036","-1","","","","","Silver-thread Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","681","3408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","22" +"4037","-1","","","","","Silver-thread Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1821","9106","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","4","4","0","0","0","0","0","0","0","25" +"4038","-1","","","","","Nightsky Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3562","17811","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","8","8","0","0","0","0","0","0","0","32" +"4039","-1","","","","","Nightsky Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2215","11078","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","5","0","0","0","0","0","0","0","0","30" +"4040","-1","","","","","Nightsky Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1347","6738","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4041","-1","","","","","Aurora Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3149","15749","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","34" +"4042","-1","","","","","Aurora Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10537","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","34" +"4043","-1","","","","","Aurora Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1958","9790","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","2","0","0","0","0","0","0","0","0","33" +"4044","-1","","","","","Aurora Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4584","22921","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4045","-1","","","","","Mistscape Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13415","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","37" +"4046","-1","","","","","Mistscape Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6783","33919","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","40" +"4047","-1","","","","","Mistscape Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3959","19799","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","4","2","0","0","0","0","0","0","0","38" +"4048","-1","","","","","Emblazoned Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8838","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","26" +"4049","-1","","","","","Emblazoned Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","888","4443","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","23" +"4050","-1","","","","","Emblazoned Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2375","11875","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","26" +"4051","-1","","","","","Emblazoned Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1670","8350","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","0","0","0","0","0","0","0","0","25" +"4052","-1","","","","","Insignia Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2699","13498","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","11","0","0","0","0","0","0","0","0","30" +"4053","-1","","","","","Large River Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4054","-1","","","","","Insignia Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3626","18130","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","30" +"4055","-1","","","","","Insignia Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2481","12407","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","4","0","0","0","0","0","0","0","0","29" +"4056","-1","","","","","Cortello's Riddle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4057","-1","","","","","Insignia Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4032","20164","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","13","0","0","0","0","0","0","0","0","31" +"4058","-1","","","","","Glyphed Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6056","30283","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"4059","-1","","","","","Glyphed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2234","11170","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","6","0","0","0","0","0","0","0","0","32" +"4060","-1","","","","","Glyphed Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5648","28244","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4061","-1","","","","","Imperial Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16531","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","8","0","0","0","0","0","0","0","0","37" +"4062","-1","","","","","Imperial Leather Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8359","41796","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","40" +"4063","-1","","","","","Imperial Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3596","17980","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","38" +"4064","-1","","","","","Emblazoned Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2987","14938","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","2","0","0","0","0","0","0","0","0","25" +"4065","-1","","","","","Combat Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5311","26558","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","2","0","0","0","0","0","0","0","0","31" +"4066","-1","","","","","Insignia Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4845","24227","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","3","0","0","0","0","0","0","0","0","30" +"4067","-1","","","","","Glyphed Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6381","31909","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","4","0","0","0","0","0","0","0","0","34" +"4068","-1","","","","","Chief Brigadier Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6918","34593","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","0","0","0","0","0","0","0","0","0","35" +"4069","-1","","","","","Blackforge Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11900","59504","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","1465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","10","3","0","0","0","0","0","0","0","0","42" +"4070","-1","","","","","Jouster's Crest","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7527","37638","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","0","0","0","0","0","0","0","0","0","36" +"4071","-1","","","","","Glimmering Mail Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2939","14695","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","3","0","0","0","0","0","0","0","0","26" +"4072","-1","","","","","Glimmering Mail Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1340","6704","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","3","0","0","0","0","0","0","0","0","25" +"4073","-1","","","","","Glimmering Mail Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2230","11152","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","6","0","0","0","0","0","0","0","0","26" +"4074","-1","","","","","Mail Combat Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4785","23929","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","3","0","0","0","0","0","0","0","0","31" +"4075","-1","","","","","Mail Combat Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1984","9924","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","4","0","0","0","0","0","0","0","0","29" +"4076","-1","","","","","Mail Combat Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3301","16509","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","9","0","0","0","0","0","0","0","0","30" +"4077","-1","","","","","Mail Combat Headguard","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3298","16494","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","30" +"4078","-1","","","","","Chief Brigadier Coif","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4672","23364","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","34" +"4079","-1","","","","","Chief Brigadier Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6753","33767","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","35" +"4080","-1","","","","","Blackforge Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7469","37346","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","7","7","0","0","0","0","0","0","0","40" +"4082","-1","","","","","Blackforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11699","58495","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","11","0","0","0","0","0","0","0","0","42" +"4083","-1","","","","","Blackforge Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4328","21644","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","39" +"4084","-1","","","","","Blackforge Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10136","50681","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"4085","-1","A cooking pot covered with gauges and dials.","","","","Krazek's Crock Pot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4086","-1","","","","","Flash Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6386","31934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","37","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4087","-1","","","","","Trueshot Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8722","43612","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","41","-1","0","5851","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","36" +"4088","-1","","","","","Dreadblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18523","92616","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","47","-1","0","5270","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","42" +"4089","-1","","","","","Ricochet Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15060","75302","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","5853","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","43" +"4090","-1","","","","","Mug O' Hurt","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20736","103684","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","46","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","41" +"4091","-1","","","","","Widowmaker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22479","112398","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","47","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","7","0","0","0","0","0","0","0","0","42" +"4092","-1","","","","","Prismatic Basilisk Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1296","5185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4093","-1","","","","","Large Basilisk Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","713","2855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4094","-1","","","","","Tablet Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4095","-1","","","","","Deprecate Snare Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","617","2470","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4096","-1","","","","","Coarse Gorilla Hair","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","608","2435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4097","-1","","","","","Chipped Gorilla Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","305","1220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4098","-1","","","","","Carefully Folded Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"4099","-1","","","","","Tuft of Gorilla Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1131","4525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4100","-1","","","","","Crumpled Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4101","-1","","","","","Ripped Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","26","105","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4102","-1","","","","","Torn Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4103","-1","","","","","Shackle Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4104","-1","","","","","Snapjaw Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4105","-1","","","","","Elder Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4106","-1","","","","","Tumbled Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4107","-1","","","","","Tiger Hunter Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10683","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4108","-1","","","","","Panther Hunter Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5403","27017","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","0" +"4109","-1","","","","","Excelsior Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4393","21966","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","9","0","0","0","0","0","0","0","0","0" +"4110","-1","","","","","Master Hunter's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11999","59996","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","45","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"4111","-1","","","","","Master Hunter's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12043","60215","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","45","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4112","-1","","","","","Choker of the High Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4182","16730","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","8","0","0","0","0","0","0","0","0","0" +"4113","-1","","","","","Medicine Blanket","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4853","24265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","0","0","0","0","0","0","0","0","0" +"4114","-1","","","","","Darktide Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3866","19334","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","6","0","0","0","0","0","0","0","0","0" +"4115","-1","","","","","Grom'gol Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5783","28915","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","3","7","0","0","0","0","0","0","0","0" +"4116","-1","","","","","Olmann Sewar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12337","61686","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","41","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4117","-1","","","","","Scorching Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3119","15597","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","0","0","0","0","0","0","0","0","0","0" +"4118","-1","","","","","Poobah's Nose Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7313","36567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","0","0","0","0","0","0","0","0","0","0" +"4119","-1","","","","","Raptor Hunter Tunic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7271","36357","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","16","3","0","0","0","0","0","0","0","0" +"4120","-1","","","","","Robe of Crystal Waters","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5031","25156","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","12","12","0","0","0","0","0","0","0","0" +"4121","-1","","","","","Gemmed Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1380","6903","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","6","0","0","0","0","0","0","0","0","0" +"4122","-1","","","","","Bookmaker's Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8384","41923","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","0","0","0","0","0","0","0","0","0","0" +"4123","-1","","","","","Frost Metal Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3804","19022","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","0","0","0","0","0","0","0","0","0","0" +"4124","-1","","","","","Cap of Harmony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3991","19957","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","11","0","0","0","0","0","0","0","0","0" +"4125","-1","","","","","Tranquil Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3142","12570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","8","0","0","0","0","0","0","0","0","0" +"4126","-1","","","","","Guerrilla Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6396","31980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","3","0","0","0","0","0","0","0","0","0" +"4127","-1","","","","","Shrapnel Blaster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8073","40369","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","40","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"4128","-1","","","","","Silver Spade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14588","72940","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","41","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","15","0","0","0","0","0","0","0","0","0" +"4129","-1","","","","","Collection Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9444","47222","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","9","0","0","0","0","0","0","0","0","0" +"4130","-1","","","","","Smotts' Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2171","8685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4131","-1","","","","","Belt of Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3815","19079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","0" +"4132","-1","","","","","Darkspear Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2681","13408","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","2","0","0","0","0","0","0","0","0","0" +"4133","-1","","","","","Darkspear Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1794","8970","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"4134","-1","","","","","Nimboya's Mystical Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26994","134972","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","46","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","15","0","0","0","0","0","0","0","0","0" +"4135","-1","","","","","Bloodbone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","2","0","0","0","0","0","0","0","0","0" +"4136","-1","","","","","Darkspear Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6022","30110","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","8","0","0","0","0","0","0","0","0","0" +"4137","-1","","","","","Darkspear Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4010","20054","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","3","3","0","0","0","0","0","0","0","0" +"4138","-1","","","","","Blackwater Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10140","50704","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","0","0","0","0","0","0","0","0","0" +"4139","-1","","","","","Junglewalker Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2749","13745","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","2","5","0","0","0","0","0","0","0","0" +"4140","-1","","","","","Palm Frond Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","9376","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","0" +"4141","-1","Teaches Conjure Food (Rank 1).","","","","Tome of Conjure Food","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4143","-1","Teaches Conjure Food (Rank 2).","","","","Tome of Conjure Food II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4145","-1","Teaches Conjure Mana Gem.","","","","Tome of Conjure Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4146","-1","Teaches Polymorph: Sheep.","","","","Tome of Polymorph: Sheep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4147","-1","Teaches Conjure Food (Rank 3).","","","","Tome of Conjure Food III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4148","-1","Teaches Counterspell.","","","","Tome of Counterspell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4149","-1","Teaches Frost Shield (Rank 3).","","","","Tome of Frost Shield III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4150","-1","Teaches Conjure Water (Rank 4).","","","","Tome of Conjure Water IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4151","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4152","-1","Teaches Conjure Food (Rank 4).","","","","Tome of Conjure Food IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4153","-1","Teaches Arcane Missiles (Rank 3).","","","","Tome of Arcane Missiles III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4154","-1","Teaches Slow (Rank 2).","","","","Tome of Slow II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4155","-1","Teaches Water Elemental (Rank 2).","","","","Tome of Water Elemental II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4156","-1","Teaches Purify.","","","","Deprecated Tome of Conjure Mana Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3925","15700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"4157","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Dampen Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4158","-1","Teaches Agitating Totem (Rank 4).","","","","Tome of Khadgar's Unlocking III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"4159","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Missiles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4161","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"4162","-1","Teaches Blink (Rank 2).","","","","Tome of Blink II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4163","-1","Teaches Seal of Fury (Rank 1).","","","","Deprecated Libram: Seal of Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4164","-1","Teaches Holy Light (Rank 5).","","","","Libram: Holy Light V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4165","-1","Teaches Holy Light (Rank 6).","","","","Libram: Holy Light VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4166","-1","Teaches Seal of Protection (Rank 1).","","","","Libram: Seal of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4167","-1","Teaches Judgement.","","","","Libram: Judgement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4168","-1","Teaches Earthbind Totem.","","","","Tablet of Ensnaring Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4169","-1","Teaches Unyielding Will (Rank 2).","","","","Tablet of Unyielding Will II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4170","-1","Teaches Astral Recall.","","","","Tablet of Astral Recall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4171","-1","Teaches Agitating Totem (Rank 3).","","","","Tablet of Agitating Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4172","-1","Teaches Thunderclap (Rank 2).","","","","Tablet of Thunderclap II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4173","-1","Teaches Shock (Rank 4).","","","","Tablet of Shock IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4174","-1","Teaches Shock (Rank 5).","","","","Tablet of Shock V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4175","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Lightning Shield IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4176","-1","Teaches Undying Strength (Rank 2).","","","","Tablet of Undying Strength II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4177","-1","Teaches Nature Resistance.","","","","Tablet of Nature Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4178","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Lightning Bolt V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4179","-1","Teaches Greater Healing Wave (Rank 1).","","","","Tablet of Restoration V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4180","-1","Teaches Ethereal Form (Rank 2).","","","","Tablet of Ethereal Form II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4181","-1","Teaches Agitating Totem (Rank 4).","","","","Tablet of Agitating Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4182","-1","Teaches Unyielding Will (Rank 3).","","","","Tablet of Unyielding Will III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4183","-1","Teaches Healing Totem (Rank 5).","","","","Tablet of Healing Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4184","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Molten Blast V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4185","-1","Teaches Group Astral Recall.","","","","Tablet of Group Astral Recall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4186","-1","Teaches Fire Resistance.","","","","Tablet of Fire Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4187","-1","","","","","Tablet of Serpent Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4188","-1","Teaches Invisibility Totem.","","","","Tablet of Invisibility Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4189","-1","Teaches Chain Lightning (Rank 1).","","","","Tablet of Chain Lightning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4190","-1","","","","","Feathered Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1025","5129","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4191","-1","","","","","Unused Feathered Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1029","5148","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4192","-1","","","","","Unused Feathered Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","516","2583","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4193","-1","","","","","Deprecated Feathered Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","777","3889","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4194","-1","","","","","Feathered Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","520","2602","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4195","-1","","","","","Feathered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","727","3637","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4196","-1","","","","","Feathered Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1944","9721","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","25" +"4197","-1","","","","","Berylline Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2765","13829","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","5","10","0","0","0","0","0","0","0","0" +"4198","-1","Teaches Health Funnel (Rank 1).","","","","Grimoire of Soul Funnel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"4199","-1","Teaches Health Funnel (Rank 2).","","","","Grimoire of Soul Funnel II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4200","-1","Teaches Immolate (Rank 3).","","","","Grimoire of Immolate III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4201","-1","Teaches Eye of Kilrogg.","","","","Grimoire of Eye of Kilrogg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4202","-1","Teaches Fear (Rank 2).","","","","Grimoire of Fear II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4203","-1","Teaches Corruption (Rank 2).","","","","Grimoire of Pestilence II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"4204","-1","Teaches Health Funnel (Rank 3).","","","","Grimoire of Soul Funnel III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4205","-1","Teaches Immolate (Rank 4).","","","","Grimoire of Immolate IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4206","-1","Teaches Curse of Agony (Rank 2).","","","","Grimoire of Curse of Sargeras II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4207","-1","Teaches Curse of Archimonde.","","","","Grimoire of Curse of Archimonde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4208","-1","Teaches Mind Bomb.","","","","Grimoire of Mind Bomb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4209","-1","Teaches Shadow Ward.","","","","Grimoire of Shadow Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4210","-1","Teaches Create Lesser Healthstone.","","","","Grimoire of Create Lesser Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"4211","-1","Teaches Corruption (Rank 1).","","","","Grimoire of Pestilence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"4212","-1","Teaches Curse of Weakness (Rank 3).","","","","Grimoire of Curse of Mannoroth III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4213","-1","Teaches Ritual of Doom.","","","","Grimoire of Doom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"4214","-1","Teaches Drain Life (Rank 3).","","","","Grimoire of Life Drain III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4215","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Rain of Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4216","-1","Teaches Holy Ward.","","","","Grimoire of Holy Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4217","-1","Teaches Health Funnel (Rank 4).","","","","Grimoire of Soul Funnel IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4218","-1","Teaches Create Healthstone.","","","","Grimoire of Create Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"4219","-1","Teaches Burning Spirit (Rank 4).","","","","Grimoire of Burning Spirit IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4220","-1","Teaches Blood Boil (Rank 3).","","","","Grimoire of Blood Boil III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4221","-1","Teaches Detect Invisibility.","","","","Grimoire of Detect Invisibility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4223","-1","Teaches Abolish Magic (Rank 1).","","","","Book of Abolish Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4225","-1","Teaches Entangling Roots (Rank 3).","","","","Book of Entangling Roots III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4226","-1","Teaches Wrath (Rank 6).","","","","Book of Wrath VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4228","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4230","-1","Teaches Healing Touch (Rank 6).","","","","Book of Healing Touch VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4231","-1","","","","","Cured Light Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4232","-1","","","","","Medium Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4233","-1","","","","","Cured Medium Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4234","-1","","","","","Heavy Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4235","-1","","","","","Heavy Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4236","-1","","","","","Cured Heavy Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4237","-1","","","","","Handstitched Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","175","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4238","-1","","","","","Linen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4239","-1","","","","","Embossed Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","358","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4240","-1","","","","","Woolen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4241","-1","","","","","Green Woolen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4242","-1","","","","","Embossed Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1739","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","3","0","0","0","0","0","0","0","0","10" +"4243","-1","","","","","Fine Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","461","2309","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","12" +"4244","-1","","","","","Hillman's Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","723","3619","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","4","0","0","0","0","0","0","0","0","15" +"4245","-1","","","","","Small Silk Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4246","-1","","","","","Fine Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","625","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","11" +"4247","-1","","","","","Hillman's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5249","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"4248","-1","","","","","Dark Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","791","3958","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"4249","-1","","","","","Dark Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3515","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4250","-1","","","","","Hillman's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3527","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4251","-1","","","","","Hillman's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1200","6000","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4252","-1","","","","","Dark Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1457","7286","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","23" +"4253","-1","","","","","Toughened Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","4811","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","6","3","0","0","0","0","0","0","0","22" +"4254","-1","","","","","Barbaric Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1071","5356","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","4","4","0","0","0","0","0","0","0","25" +"4255","-1","","","","","Green Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2366","11831","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","0","0","0","0","0","0","0","0","26" +"4256","-1","","","","","Guardian Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3477","17388","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","9","0","0","0","0","0","0","0","0","30" +"4257","-1","","","","","Green Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1311","6557","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","27" +"4258","-1","","","","","Guardian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1592","7963","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4259","-1","","","","","Green Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1934","9673","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","31" +"4260","-1","","","","","Guardian Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2559","12796","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","6","0","0","0","0","0","0","0","0","34" +"4261","-1","","","","","Solliden's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4262","-1","","","","","Gem-studded Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2652","13261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","6","0","0","0","0","0","0","0","0","32" +"4263","-1","","","","","Standard Issue Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","470","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4264","-1","","","","","Barbaric Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2804","14022","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","0","0","0","0","0","0","0","0","0","35" +"4265","-1","","","","","Heavy Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4266","-1","Teaches Inner Fire (Rank 2).","","","","Codex of Inner Fire II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4267","-1","Teaches Shadow Word: Fumble (Rank 1).","","","","Codex of Shadow Word: Fumble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"4268","-1","Teaches Heal (Rank 2).","","","","Codex of Heal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"4269","-1","Teaches Prayer of Healing (Rank 1).","","","","Codex of Prayer of Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4270","-1","Teaches Heal (Rank 3).","","","","Codex of Heal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"4271","-1","Teaches Holy Smite (Rank 5).","","","","Codex of Holy Smite V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4272","-1","Teaches Holy Protection.","","","","Codex of Holy Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4273","-1","Teaches Heal (Rank 1).","","","","Codex of Heal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4274","-1","Teaches Divine Escape (Rank 1).","","","","Codex of Divine Escape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4275","-1","Teaches Mind Rot.","","","","Codex of Mind Rot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4276","-1","Teaches Shadow Word: Fumble (Rank 2).","","","","Codex of Shadow Word: Fumble II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4277","-1","Teaches Shadow Word: Befuddle (Rank 2).","","","","Codex of Shadow Word: Befuddle II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4278","-1","","","","","Lesser Bloodstone Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4279","-1","Teaches Shadow Word: Pain (Rank 5).","","","","Codex of Shadow Word: Pain V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"4280","-1","Teaches Holy Word: Shield (Rank 4).","","","","Codex of Holy Word: Shield IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"4281","-1","Teaches Shadow Protection.","","","","Codex of Shadow Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4282","-1","Teaches Dispel Magic (Rank 2).","","","","Codex of Dispel Magic II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4283","-1","Teaches Sleep (Rank 3).","","","","Codex of Sleep III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4284","-1","Teaches Holy Smite (Rank 6).","","","","Codex of Holy Smite VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4285","-1","Teaches Holy Word: Fortitude (Rank 4).","","","","Codex of Holy Word: Fortitude IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"4286","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Prayer of Healing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4287","-1","Teaches Nullify Disease (Rank 2).","","","","Codex of Nullify Disease II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"4288","-1","Teaches Remove Curse (Rank 2).","","","","Codex of Remove Curse II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"4289","-1","","","","","Salt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4290","-1","","","","","Dust Bowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","715","3577","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","13" +"4291","-1","","","","","Silken Thread","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4292","-1","Teaches you how to sew a Green Woolen Bag.","","","","Pattern: Green Woolen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","197","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4293","-1","Teaches you how to craft a Hillman's Leather Vest.","","","","Pattern: Hillman's Leather Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4294","-1","Teaches you how to craft a Hillman's Belt.","","","","Pattern: Hillman's Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4295","-1","Teaches you how to craft a Guardian Cloak.","","","","Pattern: Double-stitched Leather Gloves OLD","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","165","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4296","-1","Teaches you how to craft Dark Leather Shoulders.","","","","Pattern: Dark Leather Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","165","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4297","-1","Teaches you how to craft Barbaric Gloves.","","","","Pattern: Barbaric Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","165","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4298","-1","Teaches you how to craft a Guardian Belt.","","","","Pattern: Guardian Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4299","-1","Teaches you how to craft Guardian Armor.","","","","Pattern: Guardian Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","165","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4300","-1","Teaches you how to craft Guardian Leather Bracers.","","","","Pattern: Guardian Leather Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","165","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4301","-1","Teaches you how to craft a Barbaric Belt.","","","","Pattern: Barbaric Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4302","-1","","","","","Small Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146","732","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4303","-1","","","","","Cranial Thumper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","398","1991","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","12","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","7" +"4304","-1","","","","","Thick Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4305","-1","","","","","Bolt of Silk Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4306","-1","","","","","Silk Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4307","-1","","","","","Heavy Linen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","149","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4308","-1","","","","","Green Linen Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4309","-1","","","","","Handstitched Linen Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","226","1134","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","9" +"4310","-1","","","","","Heavy Woolen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","903","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","12" +"4311","-1","","","","","Heavy Woolen Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","475","2378","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","16" +"4312","-1","","","","","Soft-soled Linen Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","237","1187","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","11" +"4313","-1","","","","","Red Woolen Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","416","2084","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4314","-1","","","","","Double-stitched Woolen Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1659","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"4315","-1","","","","","Reinforced Woolen Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2127","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"4316","-1","","","","","Heavy Woolen Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3716","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","3","0","0","0","0","0","0","0","0","17" +"4317","-1","","","","","Phoenix Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1076","5382","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","0","0","0","0","0","0","0","0","0","20" +"4318","-1","","","","","Gloves of Meditation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","610","3052","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","0","0","0","0","0","0","0","0","0","21" +"4319","-1","","","","","Azure Silk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","815","4077","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","24" +"4320","-1","","","","","Spidersilk Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4898","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","7","4","4","0","0","0","0","0","0","0","20" +"4321","-1","","","","","Spider Silk Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5601","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","0","0","0","0","0","0","0","0","0","23" +"4322","-1","","","","","Enchanter's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1810","9053","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","6","0","0","0","0","0","0","0","0","28" +"4323","-1","","","","","Shadow Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1999","9995","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","0","0","0","0","0","0","0","0","0","29" +"4324","-1","","","","","Azure Silk Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1874","9374","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","0","0","0","0","0","0","0","0","0","25" +"4325","-1","","","","","Boots of the Enchanter","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2272","11362","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","5","0","0","0","0","0","0","0","0","30" +"4326","-1","","","","","Long Silken Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2496","12482","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","32" +"4327","-1","","","","","Icy Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3788","18942","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","11","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","35" +"4328","-1","","","","","Spider Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1524","7623","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","31" +"4329","-1","","","","","Star Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2120","10604","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","0","0","0","0","0","0","0","0","0","35" +"4330","-1","","","","","Stylish Red Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4331","-1","","","","","Phoenix Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2631","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4332","-1","","","","","Bright Yellow Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4333","-1","","","","","Dark Silk Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1200","4800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4334","-1","","","","","Formal White Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4335","-1","","","","","Rich Purple Silk Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4336","-1","","","","","Black Swashbuckler's Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4337","-1","","","","","Thick Spider's Silk","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4338","-1","","","","","Mageweave Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4339","-1","","","","","Bolt of Mageweave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4340","-1","","","","","Gray Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4341","-1","","","","","Yellow Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4342","-1","","","","","Purple Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4343","-1","","","","","Brown Linen Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","301","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4344","-1","","","","","Brown Linen Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4345","-1","Teaches you how to sew Red Woolen Boots.","","","","Pattern: Red Woolen Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","197","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4346","-1","Teaches you how to sew a Heavy Woolen Cloak.","","","","Pattern: Heavy Woolen Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","197","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4347","-1","Teaches you how to sew Reinforced Woolen Shoulders.","","","","Pattern: Reinforced Woolen Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4348","-1","Teaches you how to sew Phoenix Gloves.","","","","Pattern: Phoenix Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","197","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4349","-1","Teaches you how to sew Phoenix Pants.","","","","Pattern: Phoenix Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","197","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4350","-1","Teaches you how to sew Spider Silk Slippers.","","","","Pattern: Spider Silk Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","197","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4351","-1","Teaches you how to sew a Shadow Hood.","","","","Pattern: Shadow Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","197","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4352","-1","Teaches you how to sew Boots of the Enchanter.","","","","Pattern: Boots of the Enchanter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4353","-1","Teaches you how to sew a Spider Belt.","","","","Pattern: Spider Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","197","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4354","-1","Teaches you how to sew a Rich Purple Silk Shirt.","","","","Pattern: Rich Purple Silk Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","197","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4355","-1","Teaches you how to sew an Icy Cloak.","","","","Pattern: Icy Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4356","-1","Teaches you how to sew a Star Belt.","","","","Pattern: Star Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4357","-1","","","","","Rough Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4358","-1","","","","","Rough Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","202","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4359","-1","","","","","Handful of Copper Bolts","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4360","-1","","","","","Rough Copper Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","202","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4361","-1","","","","","Copper Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4362","-1","","","","","Rough Boomstick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","939","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","10","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","5" +"4363","-1","","","","","Copper Modulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4364","-1","","","","","Coarse Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4365","-1","","","","","Coarse Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4366","-1","","","","","Target Dummy","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","202","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4367","-1","","","","","Small Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4368","-1","","","","","Flying Tiger Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2044","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","4","4","0","0","0","0","0","0","0","0","0" +"4369","-1","","","","","Deadly Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1179","5899","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","16" +"4370","-1","","","","","Large Copper Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","202","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4371","-1","","","","","Bronze Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4372","-1","","","","","Lovingly Crafted Boomstick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1800","9000","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","24","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","19" +"4373","-1","","","","","Shadow Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3613","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","5","0","0","0","0","0","0","0","0","0" +"4374","-1","","","","","Small Bronze Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4375","-1","","","","","Whirring Bronze Gizmo","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","115","460","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4376","-1","","","","","Flame Deflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4377","-1","","","","","Heavy Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4378","-1","","","","","Heavy Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4379","-1","","","","","Silver-plated Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2357","11788","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","26","-1","0","0","27","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","21" +"4380","-1","","","","","Big Bronze Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4381","-1","","","","","Minor Recombobulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4382","-1","","","","","Bronze Framework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4383","-1","","","","","Moonsight Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3183","15916","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","29","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","24" +"4384","-1","","","","","Explosive Sheep","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4385","-1","","","","","Green Tinted Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7053","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4386","-1","","","","","Ice Deflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","21" +"4387","-1","","","","","Iron Strut","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4388","-1","","","","","Discombobulator Ray","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4389","-1","","","","","Gyrochronatom","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4390","-1","","","","","Iron Grenade","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4391","-1","","","","","Compact Harvest Reaper Kit","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4392","-1","","","","","Advanced Target Dummy","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4393","-1","","","","","Craftsman's Monocle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2632","13162","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"4394","-1","","","","","Big Iron Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4395","-1","","","","","Goblin Land Mine","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1600","6400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","202","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4396","-1","","","","","Mechanical Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4397","-1","","","","","Gnomish Cloaking Device","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4398","-1","","","","","Large Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","900","3600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4399","-1","","","","","Wooden Stock","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4400","-1","","","","","Heavy Stock","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4401","-1","","","","","Mechanical Squirrel Box","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4402","-1","","","","","Small Flame Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4403","-1","","","","","Portable Bronze Mortar","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4404","-1","","","","","Silver Contact","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4405","-1","","","","","Crude Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4406","-1","","","","","Standard Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"4407","-1","","","","","Accurate Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1200","4800","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4408","-1","Teaches you how to make a Mechanical Squirrel.","","","","Schematic: Mechanical Squirrel","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4409","-1","Teaches you how to make a Small Seaforium Charge.","","","","Schematic: Small Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4410","-1","Teaches you how to make Shadow Goggles.","","","","Schematic: Shadow Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4411","-1","Teaches you how to make a Flame Deflector.","","","","Schematic: Flame Deflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4412","-1","Teaches you how to make a Moonsight Rifle.","","","","Schematic: Moonsight Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","202","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4413","-1","Teaches you how to make a Discombobulator Ray.","","","","Schematic: Discombobulator Ray","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","202","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4414","-1","Teaches you how to make a Portable Bronze Mortar.","","","","Schematic: Portable Bronze Mortar","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","1850","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4415","-1","Teaches you how to make a Craftman's Monocle.","","","","Schematic: Craftsman's Monocle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"4416","-1","Teaches you how to make a Goblin Land Mine.","","","","Schematic: Goblin Land Mine","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","202","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4417","-1","Teaches you how to make a Large Seaforium Charge.","","","","Schematic: Large Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4418","-1","","","","","Deprecated Creeper Cakes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","130","520","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4419","-1","","","","","Scroll of Intellect III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4421","-1","","","","","Scroll of Protection III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4422","-1","","","","","Scroll of Stamina III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4424","-1","","","","","Scroll of Spirit III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4425","-1","","","","","Scroll of Agility III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4426","-1","","","","","Scroll of Strength III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"4427","-1","","","","","Deprecated Scroll of Spirit Armor V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","97","390","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"4428","-1","","","","","Spider Palp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","331","1325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4429","-1","","","","","Deepfury's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4430","-1","","","","","Ethereal Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4307","17230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","6","4","0","0","0","0","0","0","0","0" +"4431","-1","","","","","Deprecated Shard of Myzrael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4432","-1","My dear Sara...","","","","Sully Balloo's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4433","-1","","","","","Waterlogged Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4434","-1","","","","","Scarecrow Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","572","2862","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4435","-1","","","","","Mote of Myzrael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4436","-1","","","","","Jewel-encrusted Sash","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1657","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","16" +"4437","-1","","","","","Channeler's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1855","9279","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","20","-1","0","0","35","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4438","-1","","","","","Pugilist Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1693","8466","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","3","0","0","0","0","0","0","0","0","25" +"4439","-1","","","","","Bruiser Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1788","8944","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","22","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","17" +"4440","-1","","","","","Sigil of Strom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4441","-1","","","","","MacKreel's Moonshine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4442","-1","","","","","Deprecated Dark Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1533","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","18" +"4443","-1","","","","","Grim Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3472","17361","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","0" +"4444","-1","","","","","Black Husk Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1490","7450","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","19" +"4445","-1","","","","","Flesh Carver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10341","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","23","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","18" +"4446","-1","","","","","Blackvenom Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3594","17973","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","21","1","0","0","0","39","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","1","0","0","0","0","0","0","0","0","0","21" +"4447","-1","","","","","Cloak of Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","902","4510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","21" +"4448","-1","","","","","Husk of Naraxis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1992","9960","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","7","0","0","0","0","0","0","0","0","22" +"4449","-1","","","","","Naraxis' Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3332","16662","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","27","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","22" +"4450","-1","","","","","Sigil Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4451","-1","","","","","Deprecated Stasis Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","48","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4452","-1","","","","","Deprecated Resonant Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4453","-1","","","","","Sigil of Thoradin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4454","-1","","","","","Talon of Vultros","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3800","19002","1","1","1","524288","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","21" +"4455","-1","","","","","Raptor Hide Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3096","15484","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","28" +"4456","-1","","","","","Raptor Hide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1553","7769","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","28" +"4457","-1","","","","","Barbecued Buzzard Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4458","-1","","","","","Sigil of Arathor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4459","-1","","","","","Brittle Dragon Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4460","-1","","","","","Ripped Wing Webbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4461","-1","","","","","Raptor Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","208","835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4462","-1","","","","","Cloak of Rot","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1425","7126","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","-5","7","0","0","0","0","0","0","0","0","26" +"4463","-1","","","","","Beaded Raptor Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","953","4769","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","26" +"4464","-1","","","","","Trouncing Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2380","11902","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","6","0","0","0","0","0","0","0","0","27" +"4465","-1","","","","","Bonefist Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1585","7929","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","3","0","0","0","0","0","0","0","0","27" +"4466","-1","","","","","Sigil of Trollbane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4467","-1","","","","","Sigil of Ignaeus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4468","-1","The legendary blade of Ignaeus Trollbane.","","","","Sheathed Trol'kalar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4469","-1","","","","","Rod of Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4470","-1","","","","","Simple Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4471","-1","","","","","Flint and Tinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4472","-1","","","","","Scroll of Myzrael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4473","-1","","","","","Eldritch Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4474","-1","","","","","Ravenwood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4207","21037","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"4475","-1","","","","","Deprecated The Southern Kingdoms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4476","-1","","","","","Beastwalker Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2734","13672","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","0","0","0","0","0","0","0","0","29" +"4477","-1","","","","","Nefarious Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4390","21953","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","3","0","0","0","0","0","0","0","0","29" +"4478","-1","","","","","Iridescent Scale Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10176","50884","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","217","0","13","0","13","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"4479","-1","","","","","Burning Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","178","715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4480","-1","","","","","Thundering Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","185","740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4481","-1","","","","","Cresting Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","176","705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4482","-1","","","","","Sealed Folder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4483","-1","","","","","Burning Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4484","-1","","","","","Cresting Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4485","-1","","","","","Thundering Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4486","-1","","","","","Deprecated Jorell's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4487","-1","","","","","Maiden's Folly Charts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4488","-1","","","","","Spirit of Silverpine Charts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4489","-1","","","","","Maiden's Folly Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4490","-1","","","","","Spirit of Silverpine Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4491","-1","","","","","Goggles of Gem Hunting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4492","-1","","","","","Elven Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4493","-1","","","","","Elven Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4494","-1","","","","","Seahorn's Sealed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4495","-1","","","","","Bloodstone Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4496","-1","","","","","Small Brown Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4497","-1","","","","","Heavy Brown Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4498","-1","","","","","Brown Leather Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4499","-1","","","","","Huge Brown Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4500","-1","","","","","Traveler's Backpack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4501","-1","","","","","Deprecated Brown Wayfarer's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4502","-1","","","","","Sample Elven Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4503","-1","","","","","Witherbark Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4504","-1","","","","","Dwarven Guard Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1475","7375","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","1","0","0","0","0","0","0","0","0","0" +"4505","-1","","","","","Swampland Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1974","9871","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","4","0","0","0","0","0","0","0","0","0" +"4506","-1","","","","","Stromgarde Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4507","-1","","","","","Pit Fighter's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9938","49693","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","9","0","0","0","0","0","0","0","0","0" +"4508","-1","","","","","Blood-tinged Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9351","46759","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","18","0","0","0","0","0","0","0","0","0" +"4509","-1","","","","","Seawolf Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","3","0","0","0","0","0","0","0","0","0" +"4510","-1","","","","","Befouled Bloodstone Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4511","-1","","","","","Black Water Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11256","56284","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4512","-1","","","","","Highland Raptor Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4513","-1","","","","","Raptor Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4514","-1","To My Honorable King","","","","Sara Balloo's Plea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4515","-1","","","","","Marez's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4516","-1","","","","","Otto's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4517","-1","","","","","Falconcrest's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4518","-1","","","","","Torn Scroll Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4519","-1","","","","","Crumpled Scroll Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4520","-1","","","","","Singed Scroll Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4521","-1","","","","","Alterac Granite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4522","-1","","","","","Witherbark Medicine Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4523","-1","","","","","Deprecated Shadow Hunter Knife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4524","-1","","","","","Balloo's Memorial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4525","-1","","","","","Trelane's Wand of Invocation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4526","-1","","","","","Raptor Talon Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4527","-1","","","","","Azure Agate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4528","-1","","","","","Tor'gan's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4529","-1","","","","","Enchanted Agate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4530","-1","","","","","Trelane's Phylactery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4531","-1","","","","","Trelane's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4532","-1","","","","","Trelane's Ember Agate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4533","-1","","","","","Sealed Letter to Archmage Malin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4534","-1","","","","","Steel-clasped Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1173","5869","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","1","0","0","0","0","0","0","0","0","0" +"4535","-1","","","","","Ironforge Memorial Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","882","3530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","4","0","0","0","0","0","0","0","0","0" +"4536","-1","","","","","Shiny Red Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4537","-1","","","","","Tel'Abim Banana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4538","-1","","","","","Snapvine Watermelon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4539","-1","","","","","Goldenbark Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4540","-1","","","","","Tough Hunk of Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4541","-1","","","","","Freshly Baked Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4542","-1","","","","","Moist Cornbread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4543","-1","","","","","White Drakeskin Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4098","20494","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","0" +"4544","-1","","","","","Mulgore Spice Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4545","-1","","","","","Radiant Silver Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2202","11011","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","0" +"4546","-1","","","","","Call of the Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","533","2135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4547","-1","","","","","Gnomish Zapper","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8319","41597","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","40","-1","0","0","29","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4548","-1","","","","","Servomechanic Sledgehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15028","75143","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","41","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","17","0","0","0","0","0","0","0","0","0","0" +"4549","-1","","","","","Seafire Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","10","2","0","0","0","0","0","0","0","0" +"4550","-1","","","","","Coldwater Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","9","0","0","0","0","0","0","0","0","0" +"4551","-1","","","","","Or'Kalar's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4552","-1","","","","","Smooth Stone Chip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","530","2120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4553","-1","","","","","Jagged Piece of Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","411","1645","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4554","-1","","","","","Shiny Polished Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","708","2835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4555","-1","","","","","Thick Scaly Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4556","-1","","","","","Speckled Shell Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","903","3615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4557","-1","","","","","Fiery Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4558","-1","","","","","Empty Barrel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1565","6260","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4560","-1","","","","","Fine Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","186","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4561","-1","","","","","Scalping Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","309","1546","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","11","-1","0","5169","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","6" +"4562","-1","","","","","Severing Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","298","1492","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","10","-1","0","5174","18","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","5" +"4563","-1","","","","","Billy Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","553","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","9","-1","0","0","6","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4564","-1","","","","","Spiked Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","610","3054","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","13","-1","0","5175","22","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","8" +"4565","-1","","","","","Simple Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","194","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4566","-1","","","","","Sturdy Quarterstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","631","3158","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","13","-1","0","5176","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","8" +"4567","-1","","","","","Merc Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5248","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","5182","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","11" +"4568","-1","","","","","Grunt Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1695","8475","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","21","-1","0","5187","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","16" +"4569","-1","","","","","Staunch Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","612","3064","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","14","-1","0","5170","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","9" +"4570","-1","","","","","Birchwood Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4612","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","15","-1","0","5175","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","10" +"4571","-1","","","","","War Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4897","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","17","-1","0","5180","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","12" +"4573","-1","","","","","Deprecated Pat's Test Strongbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4575","-1","","","","","Medicine Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1487","7435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","19","-1","0","5194","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","14" +"4576","-1","","","","","Light Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1184","5922","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","21","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","16" +"4577","-1","","","","","Compact Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","357","1785","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","13","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","8" +"4578","-1","","","","","Deprecated Long Panther Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","536","2145","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4579","-1","","","","","Deprecated Spotted Panther Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","737","2950","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4580","-1","","","","","Sabertooth Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","787","3150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4581","-1","","","","","Patch of Fine Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","862","3450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4582","-1","","","","","Soft Bushy Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","745","2980","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4583","-1","","","","","Thick Furry Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","812","3250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4584","-1","","","","","Large Trophy Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","937","3750","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4585","-1","","","","","Dripping Spider Mandible","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","583","2335","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4586","-1","","","","","Smooth Raptor Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","713","2855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4587","-1","","","","","Tribal Raptor Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","807","3230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4588","-1","","","","","Pristine Raptor Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","900","3600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4589","-1","","","","","Long Elegant Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","530","2120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4590","-1","","","","","Curved Yellow Bill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","655","2620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4591","-1","","","","","Eagle Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","413","1655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4592","-1","","","","","Longjaw Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4593","-1","","","","","Bristle Whisker Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4594","-1","","","","","Rockscale Cod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4595","-1","","","","","Junglevine Wine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4596","-1","","","","","Discolored Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4597","-1","Teaches you how to make a Discolored Healing Potion.","","","","Recipe: Discolored Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","171","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4598","-1","","","","","Goblin Fishing Pole","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","212","850","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4599","-1","","","","","Cured Ham Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4600","-1","","","","","Cherry Grog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4601","-1","","","","","Soft Banana Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4602","-1","","","","","Moon Harvest Pumpkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4603","-1","","","","","Raw Spotted Yellowtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4604","-1","","","","","Forest Mushroom Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4605","-1","","","","","Red-speckled Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4606","-1","","","","","Spongy Morel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"4607","-1","","","","","Delicious Cave Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4608","-1","","","","","Raw Black Truffle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"4609","-1","Teaches you how to cook a Barbecued Buzzard Wing.","","","","Recipe: Barbecued Buzzard Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4610","-1","","","","","Carved Stone Urn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4611","-1","","","","","Blue Pearl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4612","-1","","","","","Black Drake's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4613","-1","","","","","Corroded Black Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"4614","-1","","","","","Pendant of Myzrael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","635","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","6","0","0","0","0","0","0","0","0","30" +"4615","-1","","","","","Blacklash's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4616","-1","","","","","Ryedol's Lucky Pick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","18","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4620","-1","The worn note has something written on it in chalk...","","","","Deprecated Scribbled Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1382","5530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4621","-1","","","","","Ambassador Infernus' Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4622","-1","","","","","Sealed Note to Advisor Belgrum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4623","-1","","","","","Lesser Stoneshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","33" +"4624","-1","Teaches you how to make a Lesser Stoneshield Potion.","","","","Recipe: Lesser Stoneshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","171","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4625","-1","","","","","Firebloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4626","-1","","","","","Small Stone Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4627","-1","","","","","Large Stone Slab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4628","-1","","","","","Bracers of Rock Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4629","-1","","","","","Supply Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4630","-1","","","","","Scrap Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4631","-1","","","","","Tablet of Ryun'eh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4632","-1","","","","","Ornate Bronze Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4633","-1","","","","","Heavy Bronze Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","280","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4634","-1","","","","","Iron Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4635","-1","","","","","Hammertoe's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4636","-1","","","","","Strong Iron Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4637","-1","","","","","Steel Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4638","-1","","","","","Reinforced Steel Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4639","-1","","","","","Enchanted Sea Kelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4640","-1","","","","","Sign of the Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4641","-1","","","","","Hand of Dagun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4643","-1","","","","","Grimsteel Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1824","9121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","2","0","0","0","0","0","0","0","0","0" +"4644","-1","","","","","The Legacy Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4645","-1","","","","","Chains of Hematus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4646","-1","","","","","Star of Xil'yeh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4647","-1","","","","","Yagyin's Digest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4648","-1","","","","","Sigil of the Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4649","-1","","","","","Bonegrip's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4650","-1","","","","","Bel'dugur's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4652","-1","","","","","Salbac Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10126","50631","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","3","0","0","0","0","0","0","0","0","0" +"4653","-1","","","","","Ironheel Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7178","35890","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","0" +"4654","-1","","","","","Mysterious Fossil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4655","-1","","","","","Giant Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4656","-1","","","","","Small Pumpkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4657","-1","","","","","Deprecated Warrior's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","424","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4658","-1","","","","","Warrior's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4659","-1","","","","","Warrior's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4660","-1","","","","","Walking Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1623","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","13" +"4661","-1","","","","","Bright Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4646","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4662","-1","","","","","Journeyman's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4663","-1","","","","","Journeyman's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","116","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4664","-1","","","","","Deprecated Burnt Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74","370","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4665","-1","","","","","Burnt Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","113","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"4666","-1","","","","","Burnt Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","133","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4667","-1","","","","","Deprecated Battle Chain Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","127","638","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4668","-1","","","","","Battle Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4669","-1","","","","","Battle Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4670","-1","","","","","Deprecated Ancestral Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","428","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4671","-1","","","","","Ancestral Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4672","-1","","","","","Ancestral Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","141","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4673","-1","","","","","Deprecated Tribal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4674","-1","","","","","Tribal Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","164","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4675","-1","","","","","Tribal Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","179","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4676","-1","","","","","Skeletal Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1390","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","12" +"4677","-1","","","","","Veteran Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4678","-1","","","","","Veteran Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","543","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4679","-1","","","","","Deprecated Brackwater Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","657","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4680","-1","","","","","Brackwater Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91","456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4681","-1","","","","","Brackwater Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","549","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4682","-1","","","","","Deprecated Magister's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","583","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","12" +"4683","-1","","","","","Spellbinder Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","461","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4684","-1","","","","","Spellbinder Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61","308","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4685","-1","","","","","Deprecated Runic Cloth Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122","613","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","13" +"4686","-1","","","","","Barbaric Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","337","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4687","-1","","","","","Barbaric Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4688","-1","","","","","Deprecated Hunting Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","510","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4689","-1","","","","","Hunting Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","426","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4690","-1","","","","","Hunting Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","357","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"4691","-1","","","","","Deprecated Ceremonial Leather Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103","515","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4692","-1","","","","","Ceremonial Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69","345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"4693","-1","","","","","Ceremonial Leather Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","9" +"4694","-1","","","","","Burnished Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","515","2577","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"4695","-1","","","","","Burnished Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","327","1636","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","13" +"4696","-1","","","","","Lapidis Tankard of Tidesippe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","-15","16","5","0","0","0","0","0","0","0","54" +"4697","-1","","","","","Burnished Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","435","2179","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","15" +"4698","-1","","","","","Seer's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","301","1509","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4699","-1","","","","","Seer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","221","1106","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","0","0","0","0","0","0","0","0","0","13" +"4700","-1","","","","","Inscribed Leather Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","379","1899","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"4701","-1","","","","","Inscribed Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1264","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","11" +"4702","-1","","","","","Prospector's Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4703","-1","","","","","Broken Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4704","-1","","","","","OLDCeremonial Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4705","-1","","","","","Lambent Scale Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1449","7249","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","22" +"4706","-1","","","","","Lambent Scale Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","687","3438","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","19" +"4707","-1","","","","","Lambent Scale Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","4407","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","4","0","0","0","0","0","0","0","0","21" +"4708","-1","","","","","Bright Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","2310","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","19" +"4709","-1","","","","","Forest Leather Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4913","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"4710","-1","","","","","Forest Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2809","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","2","0","0","0","0","0","0","0","0","17" +"4711","-1","","","","","Glimmering Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1112","5562","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","5","0","0","0","0","0","0","0","0","23" +"4712","-1","","","","","Glimmering Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1228","6141","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"4713","-1","","","","","Silver-thread Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","926","4630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","21" +"4714","-1","","","","","Silver-thread Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","681","3408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","5","0","0","0","0","0","0","0","0","22" +"4715","-1","","","","","Emblazoned Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1026","5131","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","22" +"4716","-1","","","","","Combat Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1658","8294","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","2","0","0","0","0","0","0","0","0","27" +"4717","-1","","","","","Mail Combat Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2014","10071","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"4718","-1","","","","","Nightsky Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2223","11119","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","5","0","0","0","0","0","0","0","0","30" +"4719","-1","","","","","Nightsky Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1676","8384","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","27" +"4720","-1","","","","","Nightsky Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6170","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","8","0","0","0","0","0","0","0","0","28" +"4721","-1","","","","","Insignia Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2809","14048","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","30" +"4722","-1","","","","","Insignia Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1694","8473","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","27" +"4723","-1","","","","","Humbert's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1703","8518","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","24" +"4724","-1","","","","","Humbert's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1763","8816","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","25" +"4725","-1","","","","","Chief Brigadier Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4736","23681","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","35" +"4726","-1","","","","","Chief Brigadier Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2340","11703","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","3","0","0","0","0","0","0","0","0","31" +"4727","-1","","","","","Chief Brigadier Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2791","13956","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","3","0","0","0","0","0","0","0","0","33" +"4728","-1","","","","","Twain's Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4729","-1","","","","","Aurora Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3036","15184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","34" +"4730","-1","","","","","Deprecated Prospector's Pick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","0.25","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","7","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","2" +"4731","-1","","","","","Glyphed Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3824","19122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","34" +"4732","-1","","","","","Glyphed Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2632","13162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","7","0","0","0","0","0","0","0","0","32" +"4733","-1","","","","","Blackforge Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7957","39789","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","41" +"4734","-1","","","","","Mistscape Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4208","21041","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","38" +"4735","-1","","","","","Mistscape Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3621","18105","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","8","0","0","0","0","0","0","0","0","36" +"4736","-1","","","","","Mistscape Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2616","13082","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","11","0","0","0","0","0","0","0","0","37" +"4737","-1","","","","","Imperial Leather Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5743","28715","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","9","0","0","0","0","0","0","0","0","39" +"4738","-1","","","","","Imperial Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3294","16472","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","4","0","0","0","0","0","0","0","0","37" +"4739","-1","","","","","Plainstrider Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4740","-1","","","","","Plainstrider Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4741","-1","","","","","Stromgarde Cavalry Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5438","27194","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","6","2","0","0","0","0","0","0","0","0" +"4742","-1","","","","","Mountain Cougar Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4743","-1","","","","","Pulsating Crystalline Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5430","21720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","0","0","0","0","0","0","0","0","0" +"4744","-1","","","","","Arcane Runed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1986","9934","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","8","0","0","0","0","0","0","0","0","0" +"4745","-1","","","","","War Rider Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3230","16154","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","0" +"4746","-1","","","","","Doomsayer's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4324","21620","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","-10","0","0","0","0","0","0","0","0","0" +"4747","-1","","","","","Stormbull Well Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4748","-1","","","","","Redhorn Well Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4749","-1","","","","","Wildmane Well Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4750","288","","","","","OLDWinterhoof Cleansing Totem","0.15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4","23","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4751","-1","","","","","Windfury Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4752","-1","","","","","Azure Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4753","-1","","","","","Bronze Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4754","-1","","","","","Deprecated Empty Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4755","-1","","","","","Water Pitcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4756","-1","","","","","Ruined Cat Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4757","-1","","","","","Cracked Egg Shells","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","19","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4758","-1","","","","","Prairie Wolf Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4759","-1","","","","","Plainstrider Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4760","480","","","","","OLDThunderhorn Cleansing Totem","0.15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4761","-1","","","","","Deprecated Pearled Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","279","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4762","480","","","","","OLDWildmane Cleansing Totem","0.15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4763","-1","","","","","Blackwood Recurve Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135","676","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","9","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","4" +"4764","-1","","","","","Deprecated Avenger Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","176","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4765","-1","","","","","Enamelled Broadsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","575","2878","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","14","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","9" +"4766","-1","","","","","Feral Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","481","2407","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","13","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","8" +"4767","-1","","","","","Coppercloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","695","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","10" +"4768","-1","","","","","Adept's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","10" +"4769","-1","","","","","Trophy Swoop Quill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4770","-1","","","","","Bristleback Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4771","-1","","","","","Harvest Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1059","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"4772","-1","","","","","Warm Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","283","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4773","-1","","","","","Deprecated Blessed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","237","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","7" +"4774","-1","","","","","Deprecated Heavy Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","439","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","10" +"4775","-1","","","","","Cracked Bill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4776","-1","","","","","Ruffled Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","41","165","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4777","-1","","","","","Ironwood Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1408","7040","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","18","-1","0","0","26","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","13" +"4778","-1","","","","","Heavy Spiked Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1470","7351","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","19","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","14" +"4779","-1","","","","","Dull Kodo Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4780","-1","","","","","Kodo Horn Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4781","-1","","","","","Whispering Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","547","2736","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","0","0","0","0","0","0","0","0","0","15" +"4782","-1","","","","","Solstice Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2077","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","1","5","0","0","0","0","0","0","0","13" +"4783","-1","","","","","Totem of Hawkwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4784","-1","","","","","Lifeless Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","360","1440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4785","-1","","","","","Brimstone Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","469","2345","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","5","0","0","0","0","0","0","0","0","19" +"4786","-1","","","","","Wise Man's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1394","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4787","-1","","","","","Burning Pitch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","577","2310","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4788","-1","","","","","Agile Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","526","2634","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","15" +"4789","-1","","","","","Stable Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","399","1999","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","0","0","0","0","0","0","0","0","0","13" +"4790","-1","","","","","Inferno Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","831","4159","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4791","-1","","","","","Enchanted Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","133","535","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"4792","-1","","","","","Spirit Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","656","3280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4793","-1","","","","","Sylvan Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","744","3720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","4","0","0","0","0","0","0","0","0","19" +"4794","-1","","","","","Wolf Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3515","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","4","0","0","0","0","0","0","0","0","20" +"4795","-1","","","","","Bear Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3528","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"4796","-1","","","","","Owl Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","708","3540","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","20" +"4797","-1","","","","","Fiery Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","852","4263","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"4798","-1","","","","","Heavy Runed Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","774","3871","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","3","0","0","0","0","0","0","0","0","20" +"4799","-1","","","","","Antiquated Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","608","3043","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4800","-1","","","","","Mighty Chain Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1222","6110","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","0","0","0","0","0","0","0","0","18" +"4801","-1","","","","","Stalker Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4802","-1","","","","","Cougar Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4803","-1","","","","","Prairie Alpha Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4804","-1","","","","","Prairie Wolf Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4805","-1","","","","","Flatland Cougar Femur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4806","-1","","","","","Plainstrider Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4807","-1","","","","","Swoop Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4808","-1","","","","","Well Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4809","-1","","","","","Ambercorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4810","-1","","","","","Boulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3352","16760","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","32" +"4811","-1","","","","","Deprecated Studded Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","218","1093","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","15" +"4812","-1","","","","","Deprecated Crimson Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","230","1150","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","14" +"4813","-1","","","","","Small Leather Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4814","-1","","","","","Discolored Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4815","-1","","","","","Deprecated Heavy Brass Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","879","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","12" +"4816","-1","","","","","Legionnaire's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1503","7519","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","5","0","0","0","0","0","0","0","0","19" +"4817","-1","","","","","Blessed Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2462","12311","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","22","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","0","0","0","0","0","0","0","0","0","17" +"4818","-1","","","","","Executioner's Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2854","14273","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","24","-1","0","0","43","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","19" +"4819","-1","","","","","Fizsprocket's Clipboard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4820","-1","","","","","Guardian Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1664","8321","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","3","0","0","0","0","0","0","0","0","20" +"4821","-1","","","","","Bear Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1308","6541","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","3","0","0","0","0","0","0","0","0","18" +"4822","-1","","","","","Owl's Disk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1349","6746","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","0","0","0","0","0","0","0","0","0","18" +"4823","-1","","","","","Water of the Seers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4824","-1","","","","","Blurred Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3371","16856","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","27","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","22" +"4825","-1","","","","","Callous Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4094","20472","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","24" +"4826","-1","","","","","Marauder Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3087","15436","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","21" +"4827","-1","","","","","Wizard's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","749","3749","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","23" +"4828","-1","","","","","Nightwind Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","684","3420","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","6","0","0","0","0","0","0","0","0","22" +"4829","-1","","","","","Dreamer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","830","4154","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"4830","-1","","","","","Saber Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1895","9475","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","6","0","0","0","0","0","0","0","0","23" +"4831","-1","","","","","Stalking Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1571","7859","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","6","0","0","0","0","0","0","0","0","21" +"4832","-1","","","","","Mystic Sarong","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2099","10498","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","24" +"4833","-1","","","","","Glorious Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1731","8658","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","23" +"4834","-1","","","","","Venture Co. Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","352","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4835","-1","","","","","Elite Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2110","10551","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","0","0","0","0","0","0","0","0","25" +"4836","-1","","","","","Fireproof Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","23" +"4837","-1","","","","","Strength of Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","0","0","0","0","0","0","0","0","0","25" +"4838","-1","","","","","Orb of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","4","0","0","0","0","0","0","0","0","21" +"4839","-1","","","","","Deprecated Demon Scarred Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4840","-1","","","","","Long Bayonet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","714","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","10","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4841","-1","","","","","Horn of Arra'chea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4843","-1","","","","","Amethyst Runestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4844","-1","","","","","Opal Runestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4845","-1","","","","","Diamond Runestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4846","-1","","","","","Cog #5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4847","-1","","","","","Lotwil's Shackles of Elemental Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4848","-1","","","","","Battleboar Snout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4849","-1","","","","","Battleboar Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4850","-1","","","","","Bristleback Attack Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4851","-1","","","","","Dirt-stained Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","781","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4852","-1","","","","","Flash Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"4853","-1","","","","","TEST QUEST HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"4854","-1","","","","","Demon Scarred Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"4855","-1","","","","","Unused Cloth Shoulder A01 Gray","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","838","4191","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4856","-1","","","","","Unused Cloth Shoulder A02 Yellow","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","841","4207","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4857","-1","","","","","Unused Cloth Shoulder B01 Silver","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4223","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4858","-1","","","","","Unused Cloth Shoulder B02 Black","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4239","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","30" +"4859","-1","","","","","Burning Blade Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4860","-1","","","","","Glistening Frenzy Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","741","2965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4861","-1","","","","","Sleek Feathered Tunic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","597","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"4862","-1","","","","","Scorpid Worker Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4863","-1","","","","","Gnomish Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4864","-1","","","","","Minshina's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4865","-1","","","","","Ruined Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4866","-1","","","","","Zalazane's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4867","-1","","","","","Broken Scorpid Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","8","35","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4868","-1","","","","","Deprecated Scorched Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4869","-1","","","","","Fizzle's Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4870","-1","","","","","Canvas Scraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4871","-1","","","","","Searing Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4872","-1","","","","","Dry Scorpid Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4873","-1","","","","","Dry Hardened Barnacle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4874","-1","","","","","Clean Fishbones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","46","185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4875","-1","","","","","Slimy Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4876","-1","","","","","Bloody Leather Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","78","315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4877","-1","","","","","Stone Arrowhead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4878","-1","","","","","Broken Bloodstained Bow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4879","-1","","","","","Squashed Rabbit Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4880","-1","","","","","Broken Spear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","86","345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4881","-1","","","","","Aged Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4882","-1","","","","","Benedict's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4883","-1","","","","","Admiral Proudmoore's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4884","-1","","","","","Deprecated Small Scorpid Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4885","-1","","","","","Deprecated Large Scorpid Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4886","-1","","","","","Venomtail Poison Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4887","-1","","","","","Intact Makrura Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4888","-1","","","","","Crawler Mucus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4889","-1","","","","","Deprecated Mottled Boar Steaks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4890","-1","","","","","Taillasher Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4891","-1","","","","","Kron's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4892","-1","","","","","Durotar Tiger Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4893","-1","","","","","Savannah Lion Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4894","-1","","","","","Plainstrider Kidney","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4895","-1","","","","","Thunder Lizard Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4896","-1","","","","","Kodo Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4897","-1","","","","","Thunderhawk Saliva Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4898","-1","","","","","Lightning Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4899","-1","","","","","Test Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","798","3991","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","20" +"4900","-1","","","","","Test Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1335","6677","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4901","-1","","","","","Test Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1340","6702","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4902","-1","","","","","Deprecated Apprentice Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4903","-1","","","","","Eye of Burning Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4904","-1","","","","","Venomtail Antidote","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4905","-1","","","","","Sarkoth's Mangled Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4906","-1","","","","","Rainwalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","110","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4907","-1","","","","","Woodland Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4908","-1","","","","","Nomadic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4909","-1","","","","","Kodo Hunter's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1845","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","0","0","0","0","0","0","0","0","0","0" +"4910","-1","","","","","Painted Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4911","-1","","","","","Thick Bark Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","76","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4912","-1","","","","","Test Wand JChow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","777","3886","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","25","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4913","-1","","","","","Painted Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4914","-1","","","","","Battleworn Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4915","-1","","","","","Soft Wool Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4916","-1","","","","","Soft Wool Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4917","-1","","","","","Battleworn Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4918","-1","","","","","Sack of Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4919","-1","","","","","Soft Wool Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4920","-1","","","","","Battleworn Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4921","-1","","","","","Dust-covered Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","64","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4922","-1","","","","","Jagged Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","77","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4923","-1","","","","","Primitive Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4924","-1","","","","","Primitive Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4925","-1","","","","","Primitive Hand Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","130","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4926","-1","","","","","Chen's Empty Keg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","819","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","11" +"4927","-1","","","","","Deprecated Keg of Chen's Stormstout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4928","-1","","","","","Sandrunner Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","103","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4929","-1","","","","","Light Scorpid Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","291","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4930","-1","","","","","Handmade Leather Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4931","-1","","","","","Hickory Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","672","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"4932","-1","","","","","Harpy Wing Clipper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4933","-1","","","","","Seasoned Fighter's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4934","-1","","","","","Deprecated Heavy Cord Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","114","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4935","-1","","","","","Wide Metal Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","118","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4936","-1","","","","","Dirt-trodden Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4937","-1","","","","","Charging Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","356","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4938","-1","","","","","Blemished Wooden Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","236","1182","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","11","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4939","-1","","","","","Steady Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","395","1977","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","11","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","0" +"4940","-1","","","","","Veiled Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","183","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4941","-1","","","","","Really Sticky Glue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","11","45","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4942","-1","","","","","Tiger Hide Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89","449","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4943","-1","","","","","Torka's Egg Cracker [UNUSED]","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","508","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","8","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4944","-1","","","","","Handsewn Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","362","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4945","-1","","","","","Faintly Glowing Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4946","-1","","","","","Lightweight Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","338","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4947","-1","","","","","Jagged Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1628","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4948","-1","","","","","Stinging Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326","1633","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","11","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4949","-1","","","","","Orcish Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1706","8533","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","21","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","16" +"4950","-1","","","","","Deprecated Orc Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","126","631","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4951","-1","","","","","Squealer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","69","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"4952","-1","","","","","Stormstout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4953","-1","","","","","Trogg Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","88","355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4954","-1","","","","","Nomadic Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4955","-1","","","","","Deprecated Nomadic Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4956","-1","","","","","Test Totem","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","31","157","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","5","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"4957","-1","","","","","Old Moneybag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4958","-1","","","","","Sun-beaten Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","119","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4959","-1","","","","","Broken Throwing Tomahawk","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0" +"4960","-1","","","","","Flash Pellet","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","7","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4961","-1","","","","","Dreamwatcher Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","919","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","10","-1","0","0","14","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4962","-1","","","","","Double-layered Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","101","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4963","-1","","","","","Thunderhorn Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4964","288","","","","","Goblin Smasher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","503","2516","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","12","-1","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","0","0","0","0","0","0","0","0","0","0" +"4965","-1","","","","","Bloodhoof Hand Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","746","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4966","-1","","","","","Mazzranache's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"4967","-1","","","","","Tribal Warrior's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","580","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4968","-1","","","","","Bound Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91","455","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4969","-1","","","","","Fortified Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4970","-1","","","","","Rough-hewn Kodo Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4971","-1","","","","","Skorn's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","383","1919","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","12","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4972","-1","","","","","Cliff Runner Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64","321","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4973","-1","","","","","Plains Hunter Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","178","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4974","-1","","","","","Compact Fighting Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","388","1940","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","12","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"4975","-1","","","","","Vigilant Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7773","38868","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","9","0","0","0","0","0","0","0","0","0","0" +"4976","-1","","","","","Mistspray Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27431","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","0","0","0","0","0","0","0","0","0","0" +"4977","-1","","","","","Sword of Hammerfall","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11893","59465","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","5","0","0","0","0","0","0","0","0","0" +"4978","-1","","","","","Ryedol's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7976","39882","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","36","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","0","0","0","0","0","0","0","0","0","0" +"4979","-1","","","","","Enchanted Stonecloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12939","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","8","0","0","0","0","0","0","0","0","0" +"4980","-1","","","","","Prospector Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2209","11048","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"4981","-1","","","","","Agmond's Belt Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4982","-1","","","","","Ripped Prospector Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","961","4807","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0" +"4983","-1","","","","","Rock Pulverizer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16837","84185","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","42","-1","0","0","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"4984","-1","","","","","Skull of Impending Doom","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5630","22520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","0","0","0","0","0","0","0","0","0","0" +"4985","-1","","","","","Test Proc Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","777","3887","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","25","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","20" +"4986","-1","","","","","Flawed Power Stone","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4987","-1","","","","","Dwarf Captain's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15584","77921","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","0" +"4988","-1","","","","","Burning Obsidian Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3657","14630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","0" +"4989","-1","","","","","Mage Dragon Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9058","45293","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","18","0","0","0","0","0","0","0","0","0" +"4990","-1","","","","","Scorched Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4546","22733","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","8","0","0","0","0","0","0","0","0","0" +"4991","-1","","","","","Monster - Sword2H, Broadsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4992","-1","An unsigned recruitment letter.","","","","Recruitment Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4993","-1","","","","","Monster - Item, Skull","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4994","-1","","","","","Monster - Item, Gizmo","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"4995","-1","","","","","Signed Recruitment Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4996","-1","","","","","Test Item 1","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96","481","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","10","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","5" +"4997","-1","","","","","Deprecated Recipe: Kodo Skin Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1120","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"4998","-1","","","","","Blood Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","19" +"4999","-1","","","","","Azora's Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","22" +"5000","-1","","","","","Coral Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","962","3850","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","3","0","0","0","0","0","0","0","0","21" +"5001","-1","","","","","Heart Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","4155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","22" +"5002","-1","","","","","Glowing Green Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","6140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","1","6","0","0","0","0","0","0","0","0","25" +"5003","-1","","","","","Crystal Starfire Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1713","6855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","4","3","0","0","0","0","0","0","0","26" +"5004","-1","","","","","Mark of the Kirin Tor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1806","7225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","2","0","0","0","0","0","0","0","0","30" +"5005","-1","","","","","Emberspark Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1840","7360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","7","0","0","0","0","0","0","0","0","30" +"5006","-1","","","","","Khazgorm's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5007","-1","","","","","Band of Thorns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","26" +"5008","-1","","","","","Quicksilver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1546","6185","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","3","0","0","0","0","0","0","0","0","31" +"5009","-1","","","","","Mindbender Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1696","6785","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","2","0","0","0","0","0","0","0","0","31" +"5010","-1","","","","","Inscribed Gold Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1803","7215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","8","0","0","0","0","0","0","0","0","35" +"5011","-1","","","","","Welken Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1912","7650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","7","0","0","0","0","0","0","0","0","35" +"5012","-1","","","","","Fungal Spores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5013","-1","","","","","Fertile Bulb","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","38","152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5014","-1","","","","","Wrapping Paper (PT)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5015","-1","","","","","Wrapped Item (PT)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5016","-1","","","","","Artisan's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14776","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","0","0","0","0","0","0","0","0","0","0" +"5017","-1","","","","","Nitroglycerin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5018","-1","","","","","Wood Pulp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5019","-1","","","","","Sodium Nitrate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5020","-1","","","","","Kolkar Booty Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","15","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5021","-1","","","","","Explosive Stick of Gann","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5022","-1","","","","","Kodobane's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5023","-1","","","","","Verog's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5024","-1","","","","","Frost Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5025","-1","","","","","Hezrul's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5026","-1","","","","","Fire Tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5027","-1","","","","","Rendered Spores","0","2700","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5028","-1","","","","","Lord Sakrasis' Scepter","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","8","0","0","0","0","0","0","0","0","42" +"5029","-1","","","","","Talisman of the Naga Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5282","21130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","10","0","0","0","0","0","0","0","0","42" +"5030","-1","","","","","Centaur Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5038","-1","","","","","Tear of the Moons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5040","-1","","","","","Shadow Hunter Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","27" +"5041","-1","","","","","TEST Translation: Taurahe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5042","-1","","","","","Red Ribboned Wrapping Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5043","-1","","","","","Red Ribboned Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5044","-1","","","","","Blue Ribboned Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5045","-1","","","","","Skull Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"5048","-1","","","","","Blue Ribboned Wrapping Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5049","-1","This gift will require 150 lockpicking to open.","","","","Self-locking Ironpaper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","39","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5050","-1","","","","","Ignition Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5051","-1","","","","","Dig Rat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5052","-1","","","","","Unconscious Dig Rat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5053","-1","","","","","Deprecated Plain Brown Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5054","-1","","","","","Samophlange","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5055","-1","","","","","Intact Raptor Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5056","-1","","","","","Root Sample","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5057","-1","","","","","Ripe Watermelon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5058","-1","","","","","Silithid Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5059","-1","","","","","Digging Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5060","-1","","","","","Thieves' Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5061","-1","","","","","Stolen Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5062","-1","","","","","Raptor Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5063","-1","","","","","Kreenig Snarlsnout's Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5064","-1","","","","","Witchwing Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5065","-1","","","","","Harpy Lieutenant Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5066","-1","","","","","Fissure Plant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","21","85","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5067","-1","","","","","Serena's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5068","-1","","","","","Dried Seeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5069","-1","","","","","Fire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","293","1466","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","12","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","7" +"5071","-1","","","","","Shadow Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","443","2216","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","14","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","9" +"5072","-1","","","","","Lok's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5073","-1","","","","","Nak's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5074","-1","","","","","Kuz's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5075","-1","","","","","Blood Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5076","-1","","","","","Shipment of Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5077","-1","","","","","Telescopic Lens","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5078","-1","","","","","Theramore Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5079","-1","","","","","Cold Basilisk Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4642","18570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","35" +"5080","-1","","","","","Gazlowe's Ledger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5081","-1","","","","","Kodo Hide Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5082","-1","'Thin' is a relative term....","","","","Thin Kodo Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5083","-1","Teaches you how to craft a Kodo Hide Bag.","","","","Pattern: Kodo Hide Bag","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","165","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5084","-1","","","","","Baron Longshore's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5085","-1","","","","","Bristleback Quilboar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5086","-1","","","","","Zhevra Hooves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5087","-1","","","","","Plainstrider Beak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5088","-1","Venture Co. Document 534x9","","","","Control Console Operating Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5089","-1","","","","","Console Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5090","-1","","","","","Deprecated Torn Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5091","-1","","","","","test Eric Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5092","-1","","","","","Charred Razormane Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","0.25","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","23","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5093","-1","","","","","Razormane Backstabber","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1239","1","0.25","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","21","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5094","-1","","","","","Razormane War Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","233","1168","1","0.25","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","19" +"5095","-1","","","","","Rainbow Fin Albacore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5096","-1","","","","","Prowler Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5097","-1","","","","","Cats Eye Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5098","-1","","","","","Altered Snapjaw Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5099","-1","","","","","Hoof of Lakota'mani","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","883","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5100","-1","","","","","Echeyakee's Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5101","-1","","","","","Ishamuhale's Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5102","-1","","","","","Owatanka's Tailspike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","884","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5103","-1","","","","","Washte Pawne's Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","885","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5104","-1","","","","","Heart of Isha Awak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5105","-1","","","","","Explosive Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5106","-1","","","","","Deprecated Red Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","83","417","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","31240","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","10" +"5107","-1","","","","","Deckhand's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","698","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5108","-1","","","","","Dark Iron Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1616","8081","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","27" +"5109","-1","","","","","Stonesplinter Rags","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","223","1116","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5110","-1","","","","","Dalaran Wizard's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","257","1289","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5111","-1","","","","","Rathorian's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","1063","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","10" +"5112","-1","","","","","Ritual Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","730","3651","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","10" +"5113","-1","","","","","Mark of the Syndicate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5114","-1","","","","","Severed Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","96","385","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5115","-1","","","","","Broken Wishbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","101","405","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5116","-1","","","","","Long Tail Feather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","303","1215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5117","-1","","","","","Vibrant Plume","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","825","3300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5118","-1","","","","","Large Flat Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5119","-1","","","","","Fine Loose Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","118","475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5120","-1","","","","","Long Tail Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","193","775","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5121","-1","","","","","Dirty Kodo Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","162","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5122","-1","","","","","Thick Kodo Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","287","1150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5123","-1","","","","","Steel Arrowhead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","117","470","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5124","-1","","","","","Small Raptor Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","117","470","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5125","-1","","","","","Charged Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5126","-1","Learn how to disguise yourself as a Defias Footpad.","","","","Knowledge: Defias Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5127","-1","Learn how to disguise yourself as a South Seas pirate.","","","","Knowledge: South Seas Pirate Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5128","-1","","","","","Shed Lizard Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","202","810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5129","-1","Learn how to disguise yourself as a Dark Iron Dwarf.","","","","Knowledge: Dark Iron Dwarf Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5130","-1","Learn how to disguise yourself as a Dalaran Wizard.","","","","Knowledge: Dalaran Wizard Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5131","-1","Learn how to disguise yourself as a Stonesplinter Trogg.","","","","Knowledge: Stonesplinter Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5132","-1","Learn how to disguise yourself as a Syndicate Highwayman.","","","","Knowledge: Syndicate Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5133","-1","","","","","Seeping Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5134","-1","","","","","Small Furry Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","92","370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5135","-1","","","","","Thin Black Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","142","570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5136","-1","","","","","Torn Furry Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","177","710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5137","-1","","","","","Bright Eyeball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","217","870","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5138","-1","","","","","Harvester's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","897","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5139","-1","Teaches Thorns (Rank 1).","","","","Book of Thorns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5140","-1","","","","","Flash Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5141","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5142","-1","Teaches Wrath (Rank 2).","","","","Book of Wrath II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5143","-1","","","","","Thunder Lizard Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5145","-1","Teaches Healing Touch (Rank 2).","","","","Book of Healing Touch II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5147","-1","Teaches Entangling Roots (Rank 2).","","","","Book of Entangling Roots II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5148","-1","Teaches Thorns (Rank 2).","","","","Book of Thorns II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5149","-1","Teaches Wrath (Rank 3).","","","","Book of Wrath III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5150","-1","Teaches Healing Touch (Rank 3).","","","","Book of Healing Touch III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5151","-1","Teaches Wrath (Rank 4).","","","","Book of Wrath IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5152","-1","Teaches Healing Touch (Rank 4).","","","","Book of Healing Touch IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5153","-1","Teaches Mark of the Wild (Rank 4).","","","","Book of Mark of the Wild IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5154","-1","Teaches Thorns (Rank 3).","","","","Book of Thorns III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5155","-1","Teaches Mark of the Wild (Rank 2).","","","","Book of Mark of the Wild II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5156","-1","Teaches Wrath (Rank 5).","","","","Book of Wrath V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5158","-1","Teaches Tranquility (Rank 1).","","","","Book of Tranquility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5160","-1","Teaches Healing Touch (Rank 5).","","","","Book of Healing Touch V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5163","-1","Teaches Mark of the Wild (Rank 3).","","","","Book of Mark of the Wild III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5164","-1","","","","","Thunderhawk Wings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5165","-1","","","","","Sunscale Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5166","-1","","","","","Webwood Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5167","-1","","","","","Webwood Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5168","-1","","","","","Timberling Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5169","-1","","","","","Timberling Sprout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5170","-1","","","","","Mossy Tumor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5171","-1","","","","","Deprecated Neeru's Power Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5172","-1","","","","","Death Capsule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5173","-1","It must be carried very, very carefully.","","","","Deathweed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5174","-1","","","","","Note from Neeru","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5175","-1","","","","","Earth Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5176","-1","","","","","Fire Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5177","-1","","","","","Water Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5178","-1","","","","","Air Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5179","-1","","","","","Moss-twined Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","927","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5180","-1","","","","","Necklace of Harmony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2777","11110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","0","0","0","0","0","0","0","0","0","29" +"5181","-1","","","","","Vibrant Silk Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1778","8891","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","7","0","0","0","0","0","0","0","0","28" +"5182","-1","","","","","Shiver Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1769","8849","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","15" +"5183","-1","","","","","Pulsating Hydra Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1575","6300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","2","0","0","0","0","0","0","0","0","0","15" +"5184","-1","","","","","Filled Crystal Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5185","-1","","","","","Crystal Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5186","-1","","","","","Partially Filled Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5187","-1","","","","","Rhahk'Zor's Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2163","10815","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","20","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","0","0","0","0","0","0","0","0","0","15" +"5188","-1","","","","","Filled Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5189","-1","","","","","Glowing Fruit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5190","-1","","","","","Shimmering Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5191","-1","","","","","Cruel Barb","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2964","14822","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"5192","-1","","","","","Thief's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2163","10818","1","1","1","524288","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","22","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","0","0","0","0","0","0","0","0","0","17" +"5193","-1","","","","","Cape of the Brotherhood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4701","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","3","0","0","0","0","0","0","0","0","20" +"5194","-1","","","","","Taskmaster Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3079","15399","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","8","0","0","0","0","0","0","0","0","18" +"5195","-1","","","","","Gold-flecked Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","437","2188","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","0","0","0","0","0","0","0","0","0","17" +"5196","-1","","","","","Smite's Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2196","10984","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","22","-1","0","0","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","2","3","0","0","0","0","0","0","0","17" +"5197","-1","","","","","Cookie's Tenderizer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1917","9588","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","21","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","16" +"5198","-1","","","","","Cookie's Stirring Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1660","8301","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","22","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","17" +"5199","-1","","","","","Smelting Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","966","4830","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","7","0","0","0","0","0","0","0","0","16" +"5200","-1","","","","","Impaling Harpoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2787","13938","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","22","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","20" +"5201","-1","","","","","Emberstone Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3161","15809","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","23","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","5","8","0","0","0","0","0","0","0","18" +"5202","-1","","","","","Corsair's Overshirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1147","5738","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","5","0","0","0","0","0","0","0","0","19" +"5203","-1","","","","","Flatland Prowler Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5204","-1","","","","","Bloodfeather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5205","-1","","","","","Sprouted Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5206","-1","","","","","Bogling Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5207","-1","","","","","Opaque Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1081","5406","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","20","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","15" +"5208","-1","","","","","Smoldering Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","668","3340","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","20","-1","0","0","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5209","-1","","","","","Gloom Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","771","3855","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","21","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5210","-1","","","","","Burning Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1161","5808","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","25","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5211","-1","","","","","Dusk Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1166","5830","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","25","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5212","-1","","","","","Blazing Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","672","3361","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","17","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","12" +"5213","-1","","","","","Scorching Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5218","26093","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","35","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","30" +"5214","-1","","","","","Wand of Eventide","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3935","19678","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","32","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","27" +"5215","-1","","","","","Ember Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8656","43281","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","41","-1","0","5253","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","36" +"5216","-1","","","","","Umbral Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11821","59109","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","45","-1","0","5262","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","40" +"5217","-1","","","","","Tainted Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5218","-1","","","","","Cleansed Timberling Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5219","-1","","","","","Inscribed Bark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5220","-1","","","","","Gnarlpine Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5221","-1","","","","","Melenas' Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5222","-1","","","","","Deprecated Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","23" +"5223","-1","","","","","Empty Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1026","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5226","-1","","","","","Deprecated Conjured Mana Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5227","-1","","","","","Empty Mana Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1042","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5228","-1","","","","","Deprecated Empty Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5229","-1","","","","","Empty Greater Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5230","-1","","","","","Deprecated Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","21" +"5231","-1","","","","","Deprecated Greater Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5232","-1","","","","","Minor Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5233","-1","","","","","Stone of Relu","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5234","-1","","","","","Flagongut's Fossil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5235","-1","","","","","Alchemist's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","206","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","7","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5236","-1","","","","","Combustible Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2878","14394","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","29" +"5237","-1","","","","","Mind-numbing Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5238","-1","","","","","Pitchwood Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7145","35727","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","45","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5239","-1","","","","","Blackbone Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7746","38731","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","46","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","41" +"5240","-1","","","","","Torchlight Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1244","6221","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","21","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5241","-1","","","","","Dwarven Flamestick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","821","4105","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5242","-1","","","","","Cinder Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","623","3115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","16","-1","0","0","11","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5243","-1","","","","","Firebelcher","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","20","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","15" +"5244","-1","","","","","Consecrated Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3465","17325","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","30","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5245","-1","","","","","Summoner's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5091","25458","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","34","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","29" +"5246","-1","","","","","Excavation Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3490","17450","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","30","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5247","-1","","","","","Rod of Sorrow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7961","39806","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","39","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5248","-1","","","","","Flash Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6849","34245","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","37","-1","0","0","27","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5249","-1","","","","","Burning Sliver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8658","43292","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","40","-1","0","0","29","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5250","-1","","","","","Charred Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2646","13233","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5251","-1","","","","","Phial of Scrying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5252","-1","","","","","Wand of Decay","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1175","5877","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","21","-1","0","0","16","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5253","-1","","","","","Goblin Igniter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7952","39761","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","46","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5254","-1","","","","","Rugged Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","618","3090","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","8","0","0","0","0","0","0","0","0","0","15" +"5255","-1","","","","","Quilboar Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3427","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","15","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","10" +"5256","-1","","","","","Kovork's Rattle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7227","36137","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","5","0","0","0","0","0","0","0","0","30" +"5257","-1","","","","","Dark Hooded Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3159","15799","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","4","0","0","0","0","0","0","0","0","32" +"5258","-1","","","","","Monster - Bow, Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5259","-1","","","","","Monster - Bow, Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5260","-1","","","","","Monster - Bow, Brown","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5261","-1","","","","","Monster - Bow, Gray","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5262","-1","","","","","Monster - Bow, Dark Brown","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5263","-1","","","","","Pocket Lint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5264","-1","","","","","Complimentary Beer Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5265","-1","","","","","Watered-down Beer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5266","-1","","","","","Eye of Adaegus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11157","44630","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","5","6","0","0","0","0","0","0","0","48" +"5267","-1","","","","","Scarlet Kris","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53869","269347","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","10","0","0","0","0","0","0","0","0","58" +"5268","-1","","","","","Cracked Silithid Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","218","875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5269","-1","","","","","Silithid Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5270","-1","","","","","Death Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5271","-1","","","","","Scaber Stalk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5272","-1","","","","","Insane Scribbles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5273","-1","","","","","Mathystra Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5274","-1","","","","","Rose Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1003","5019","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"5275","-1","","","","","Binding Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","880","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5276","-1","","","","","Monster - Staff, 3 Piece Taped Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5277","-1","","","","","Monster - Staff, Metal /w Spike Crystal","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5278","-1","","","","","Monster - Dagger, Bowie Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5279","-1","","","","","Harpy Skinner","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1437","7185","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","20","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5280","-1","","","","","Monster - Dagger, Gold Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5281","-1","","","","","Monster - Dagger, Broad/Flat Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5282","-1","","","","","Monster - Dagger, Fang Hook Curve","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5283","-1","","","","","Monster - Dagger, Ornate Spikey Base","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5284","-1","","","","","Monster - Dagger, Jeweled Hilt","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5285","-1","","","","","Monster - Dagger, Curvey Blue Hilt","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5286","-1","","","","","Monster - Axe, One-Handed Double Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5287","-1","","","","","Monster - Axe, 2H Large Double Bladed","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5288","-1","","","","","Monster - Axe, 2H Rev. Bearded Single Bladed","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5289","-1","","","","","Monster - Axe, 2H Single Bladed /w Pick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5291","-1","","","","","Monster - Mace, Jeweled Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5292","-1","","","","","Monster - Mace2H, Basic Wooden Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5293","-1","","","","","Monster - Mace2H, Wood Handle Spiked Head","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5294","-1","","","","","Deprecated Hands of the New Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5295","-1","","","","","Deprecated Hands of the Crescent Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5296","-1","","","","","Deprecated Hands of the Quarter Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5297","-1","","","","","Deprecated Hands of the Gibbous Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5298","-1","","","","","Deprecated Hands of the Full Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5299","-1","","","","","Gloves of the Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1796","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5300","-1","","","","","Monster - Mace2H, Wood Handle Large Spiked Head","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5301","-1","","","","","Monster - Mace2H, Huge Wooden Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5302","-1","","","","","Cobalt Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4648","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5303","-1","","","","","Monster - Staff, Wooden Handle Rounded Head","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5304","-1","","","","","Monster - Staff, Large Metal Shaft","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5305","-1","","","","","Monster - Sword, Broadsword Silver Hilt","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5306","-1","","","","","Wind Rider Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","8554","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","20","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"5307","-1","","","","","Deprecated Skipper's Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","206","1030","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5308","-1","","","","","Deprecated Deckhand Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","689","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5309","-1","","","","","Privateer Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","5191","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","20","-1","0","0","17","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"5310","-1","","","","","Sea Dog Britches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2779","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","0","0","0","0","0","0","0","0","0","0" +"5311","-1","","","","","Buckled Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","2","1","0","0","0","0","0","0","0","0" +"5312","-1","","","","","Riveted Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2100","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","1","0","0","0","0","0","0","0","0","0" +"5313","-1","","","","","Totemic Clan Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5314","-1","","","","","Boar Hunter's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5315","-1","","","","","Timberland Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1070","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5316","-1","","","","","Barkshell Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1355","6778","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","7","0","0","0","0","0","0","0","0","0" +"5317","-1","","","","","Dry Moss Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1360","6803","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","2","0","0","0","0","0","0","0","0","0" +"5318","-1","","","","","Zhovur Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1789","8946","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","20","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"5319","-1","","","","","Bashing Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","323","1616","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5320","-1","","","","","Padded Lamellar Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","372","1863","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5321","-1","","","","","Elegant Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7424","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5322","-1","","","","","Demolition Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4016","20081","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","26","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","9","0","0","0","0","0","0","0","0","0","0" +"5323","-1","","","","","Everglow Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5324","-1","","","","","Engineer's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","776","3882","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","16","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5325","-1","","","","","Welding Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","498","2494","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5326","-1","","","","","Flaring Baton","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","776","3880","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","18","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5327","-1","","","","","Greasy Tinker's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","519","2596","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5328","-1","","","","","Cinched Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1028","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5329","-1","","","","","Cat Figurine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5330","-1","","","","","Elven Cup Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5331","-1","","","","","OLDBlackfathom MAGIC Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","236","945","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5332","-1","","","","","Glowing Cat Figurine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5333","-1","","","","","Deprecated Mathystra Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5334","-1","","","","","99-Year-Old Port","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5335","-1","","","","","A Sack of Coins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5336","-1","","","","","Grell Earring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5337","-1","","","","","Wayfaring Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167","836","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5338","-1","","","","","Ancient Moonstone Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5339","-1","","","","","Serpentbloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5340","-1","","","","","Cauldron Stirrer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","919","4597","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"5341","-1","","","","","Spore-covered Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1845","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5342","-1","","","","","Raptor Punch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","88","355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5343","-1","","","","","Barkeeper's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1534","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5344","-1","","","","","Pointed Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562","2812","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"5345","-1","","","","","Stonewood Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","705","3529","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","14","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5346","-1","","","","","Orcish Battle Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2125","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","14","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"5347","-1","","","","","Pestilent Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3142","15713","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5348","-1","","","","","Worn Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5349","-1","","","","","Conjured Muffin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5350","-1","","","","","Conjured Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5351","-1","","","","","Bounty Hunter's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","403","1615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5352","-1","","","","","Book: The Powers Below","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","968","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5353","-1","","","","","Message for Elissa Starbreeze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5354","-1","","","","","Letter to Delgren","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5355","-1","","","","","Beastmaster's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","947","4739","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","5","0","0","0","0","0","0","0","0","0" +"5356","-1","","","","","Branding Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2594","12971","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","27","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5357","-1","","","","","Ward of the Vale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11108","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","5","0","0","0","0","0","0","0","0","0" +"5358","-1","","","","","Deprecated Whisperwind Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","627","3135","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5359","-1","","","","","Lorgalis Manuscript","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","794","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5360","-1","","","","","Highborne Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5361","-1","","","","","Fishbone Toothpick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5362","-1","","","","","Chew Toy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","18","75","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5363","-1","","","","","Folded Handkerchief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5364","-1","","","","","Dry Salt Lick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5365","-1","","","","","Deprecated Pickpocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5366","-1","","","","","Glowing Soul Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5367","-1","","","","","Primitive Rock Tool","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5368","-1","","","","","Empty Wallet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","48","195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5369","-1","","","","","Gnawed Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","32","130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5370","-1","","","","","Bent Spoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5371","-1","","","","","Piece of Coral","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","48","192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5372","-1","The eyes grow brightly on this skull.","","","","Deprecated Glowing Shrunken Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5373","-1","","","","","Lucky Charm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","72","290","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5374","-1","","","","","Small Pocket Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5375","-1","","","","","Scratching Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5376","-1","","","","","Broken Mirror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","66","265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5377","-1","","","","","Scallop Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","57","230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5379","-1","","","","","Broken Boot Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","3" +"5380","-1","A sealed letter for Elissa Starbreeze in Auberdine.","","","","Sealed Letter to Elissa","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5381","-1","A sealed letter for Balthule Shadowstrike.","","","","Sealed Letter to Balthule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5382","-1","","","","","Anaya's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5383","-1","","","","","Athrikus Narassin's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","8","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5385","-1","","","","","Crawler Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5386","-1","","","","","Fine Moonstalker Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5387","-1","","","","","Enchanted Moonstalker Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5388","-1","","","","","Ran Bloodtooth's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5389","-1","","","","","Corrupted Furbolg Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5390","-1","","","","","Fandral's Message","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5391","-1","","","","","Rare Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5392","-1","","","","","Thistlewood Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5393","-1","","","","","Thistlewood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5394","-1","","","","","Archery Training Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5395","-1","","","","","Woodland Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5396","-1","","","","","Key to Searing Gorge","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5397","-1","","","","","Defias Gunpowder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5398","-1","","","","","Canopy Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","65","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5399","-1","","","","","Tracking Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5400","-1","","","","","Blood of Cobrahn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5401","-1","","","","","Blood of Pythas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5402","-1","","","","","Blood of Anacondra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5403","-1","","","","","Blood of Serpentis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17","70","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5404","-1","","","","","Serpent's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","938","4690","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","0","0","0","0","0","0","0","0","0","18" +"5405","-1","","","","","Draped Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5406","-1","","","","","Empty Minor Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5407","-1","","","","","Deprecated Empty Lesser Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5408","-1","","","","","Deprecated Minor Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5409","-1","","","","","Deprecated Lesser Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","9" +"5410","-1","","","","","OLDCeremonial Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1104","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5411","32","","","","","Winterhoof Cleansing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5412","-1","","","","","Thresher Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5413","-1","","","","","Moonstalker Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5414","-1","","","","","Grizzled Scalp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5415","32","","","","","Thunderhorn Cleansing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5416","32","","","","","Wildmane Cleansing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5417","-1","","","","","Weapon of Massive Destruction (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5418","-1","","","","","Weapon of Mass Destruction (test)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5419","-1","","","","","Feral Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","68","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5420","-1","","","","","Banshee Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","227","1138","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5421","-1","","","","","Fiery Blaze Enchantment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5422","-1","","","","","Brambleweed Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","692","3460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","15" +"5423","-1","","","","","Boahn's Fang","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2084","10422","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","20","-1","0","0","35","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","4","0","0","0","0","0","0","0","0","15" +"5424","-1","","","","","Ancient Statuette","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5425","-1","","","","","Runescale Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","504","2520","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","0","0","0","0","0","0","0","0","0","15" +"5426","-1","","","","","Serpent's Kiss","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1686","8431","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","20","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","15" +"5427","-1","","","","","Crude Pocket Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","147","590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5428","-1","How To Serve Man","","","","An Exotic Cookbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","322","1290","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5429","-1","","","","","A Pretty Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","137","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5430","-1","","","","","Intricate Bauble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","277","1110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5431","-1","","","","","Empty Hip Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5432","-1","","","","","Hickory Pipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","330","1320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5433","-1","","","","","Rag Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","138","555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5434","-1","","","","","Deprecated Pickpocket Water 31-40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","182","730","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5435","-1","","","","","Shiny Dinglehopper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","272","1090","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5436","-1","","","","","Deprecated Pickpocket Undead 41-50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","303","1215","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5437","-1","","","","","Bathran's Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5438","-1","","","","","OLDPlague Vials","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5439","-1","","","","","Small Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5440","-1","","","","","Bottle of Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5441","-1","","","","","Small Shot Pouch","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5442","-1","","","","","Head of Arugal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5443","-1","","","","","Gold-plated Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1067","5335","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","2","0","0","0","0","0","0","0","0","15" +"5444","-1","","","","","Miner's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","436","2182","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","14" +"5445","-1","","","","","Ring of Zoram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5446","-1","","","","","Broken Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","13","55","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5447","-1","","","","","Damaged Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5448","-1","","","","","Fractured Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","17","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5449","-1","","","","","Deprecated Cracked Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5450","-1","","","","","Deprecated Busted Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","21","85","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5451","-1","","","","","Crushed Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5453","-1","","","","","Deprecated Shattered Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5454","-1","","","","","Deprecated Split Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","26","105","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5455","-1","This paper is covered in glowing runes.","","","","Divined Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5456","-1","The paper is blank save for a few runes. You'll need bracers from the elementals to use it.","","","","Divining Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5457","-1","","","","","Severed Voodoo Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","23","95","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5458","-1","","","","","Dirtwood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","139","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5459","-1","","","","","Defender Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","472","2362","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","13","-1","0","0","11","0","0","0","0","21","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5460","-1","","","","","Orendil's Cure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5461","-1","","","","","Branch of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5462","-1","","","","","Dartol's Rod of Transformation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5463","-1","","","","","Glowing Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5464","-1","","","","","Iron Shaft","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5465","-1","","","","","Small Spider Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5466","-1","","","","","Scorpid Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8","32","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5467","-1","","","","","Kodo Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5468","-1","","","","","Soft Frenzy Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5469","-1","","","","","Strider Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5470","-1","","","","","Thunder Lizard Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5471","-1","","","","","Stag Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5472","-1","","","","","Kaldorei Spider Kabob","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5473","-1","","","","","Scorpid Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5474","-1","","","","","Roasted Kodo Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5475","-1","","","","","Wooden Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5476","-1","","","","","Fillet of Frenzy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5477","-1","","","","","Strider Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","74","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5478","-1","","","","","Dig Rat Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5479","-1","","","","","Crispy Lizard Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5480","-1","","","","","Lean Venison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5481","-1","","","","","Satyr Horns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5482","-1","Teaches you how to cook a Kaldorei Spider Kabob.","","","","Recipe: Kaldorei Spider Kabob","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5483","-1","Teaches you how to cook a Scorpid Surprise.","","","","Recipe: Scorpid Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","185","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5484","-1","Teaches you how to cook Roasted Kodo Meat.","","","","Recipe: Roasted Kodo Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","185","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5485","-1","Teaches you how to cook a Fillet of Frenzy.","","","","Recipe: Fillet of Frenzy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5486","-1","Teaches you how to cook a Strider Stew.","","","","Recipe: Strider Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5487","-1","Teaches you how to cook a disgusting Dig Rat Stew.","","","","Recipe: Dig Rat Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5488","-1","Teaches you how to cook up a Crispy Lizard Tail.","","","","Recipe: Crispy Lizard Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5489","-1","Teaches you how to cook Lean Venison.","","","","Recipe: Lean Venison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5490","-1","","","","","Wrathtail Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5491","-1","","","","","Monster - Mace2H, Large Metal","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5493","-1","","","","","Elune's Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5494","-1","","","","","Handful of Stardust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5495","-1","","","","","Monster - Mace2H, Large Metal (1H, Special)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5498","-1","","","","","Small Lustrous Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5500","-1","","","","","Iridescent Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5502","-1","","","","","Monster - Sword2H, Broadsword (1H, Special)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5503","-1","","","","","Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","16","65","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5504","-1","","","","","Tangy Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5505","-1","The journal is waterlogged, but in otherwise good condition.","","","","Teronis' Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5506","-1","","","","","Beady Eye Stalk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","71","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5507","-1","","","","","Ornate Spyglass","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5508","-1","","","","","Fallen Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5509","-1","","","","","Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5510","-1","","","","","Greater Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5511","-1","","","","","Lesser Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5512","-1","","","","","Minor Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5513","-1","","","","","Mana Jade","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5514","-1","","","","","Mana Agate","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5515","-1","","","","","Deprecated Iron Pummel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5516","-1","","","","","Threshadon Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1589","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","16","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","11" +"5517","-1","A reagent for mage spells.","","","","Tiny Bronze Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5518","-1","A reagent for mage spells.","","","","Tiny Iron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5519","-1","","","","","Iron Pommel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5520","-1","","","","","Velinde's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5521","-1","","","","","Velinde's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5522","-1","","","","","Spellstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5523","-1","","","","","Small Barnacled Clam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","60","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5524","-1","","","","","Thick-shelled Clam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5525","-1","","","","","Boiled Clams","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5526","-1","","","","","Clam Chowder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"5527","-1","","","","","Goblin Deviled Clams","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5528","-1","Teaches you how to cook a delicious Clam Chowder.","","","","Recipe: Clam Chowder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5529","-1","","","","","Tomb Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5530","-1","Once favored by rogues as a blinding agent, it was abandoned for more readily available resources... like dirt.","","","","Blinding Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5531","-1","","","","","Deprecated Brakgul Deathbringer's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5532","-1","","","","","Monster - Hot Iron Poker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5533","-1","","","","","Ilkrud Magthrull's Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5534","-1","","","","","Parker's Lunch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5535","-1","","","","","Compendium of the Fallen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","572","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5536","-1","","","","","Mythology of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5537","-1","","","","","Sarilus Foulborne's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5538","-1","","","","","Vorrel's Wedding Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5539","-1","Sealed by Brother Anton of the Scarlet Crusade","","","","Letter of Commendation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5540","-1","","","","","Pearl-handled Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10539","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","13","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","18" +"5541","-1","","","","","Iridescent Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3694","18470","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","3","0","0","0","0","0","0","0","0","23" +"5542","-1","","","","","Pearl-clasped Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","14" +"5543","-1","Teaches you how to make an Iridescent Hammer.","","","","Plans: Iridescent Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","164","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5544","-1","","","","","Dal Bloodclaw's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5545","-1","","","","","Fast Test Polearm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8179","40896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5546","-1","","","","","Fast Test Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14737","73687","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","13","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5547","-1","","","","","Reconstructed Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5548","-1","","","","","Fast Test Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14842","74212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","13","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"5549","-1","","","","","Fast Test Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15763","78816","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5550","-1","","","","","Fast Test Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13527","67635","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","70","-1","0","0","13","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"5551","-1","","","","","Fast Test 1H Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15885","79429","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5552","-1","","","","","Fast Test 2H Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7792","38960","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5553","-1","","","","","Fast Test 1H Mace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16006","80034","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5554","-1","","","","","Fast Test 2H Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7851","39256","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5555","-1","","","","","Fast Test 1H Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16129","80648","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","10","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5556","-1","","","","","Fast Test 2H Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7911","39555","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5557","-1","","","","","Fast Test Spear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7940","39701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5558","-1","","","","","Fast Test Staff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7970","39851","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5559","-1","","","","","Broken Fast Test Thrown","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","1" +"5560","-1","","","","","Fast Test Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1777","8888","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","33","-1","0","0","10","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5561","-1","","","","","Fast Test Generic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5562","-1","","","","","Voidstone (Deprecated)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5563","-1","","","","","Succubi Stone (Deprecated)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5564","-1","","","","","Felstone (Deprecated)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5565","-1","","","","","Infernal Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5566","-1","","","","","Broken Antler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","105","420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5567","-1","","","","","Silver Hook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","196","785","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5568","-1","","","","","Smooth Pebble","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","18","-1","0","0","4","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","13" +"5569","-1","","","","","Seaweed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","203","815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5570","-1","","","","","Deepmoss Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5571","-1","","","","","Small Black Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5572","-1","","","","","Small Green Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5573","-1","","","","","Green Leather Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5574","-1","","","","","White Leather Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5575","-1","","","","","Large Green Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5576","-1","","","","","Large Brown Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5577","-1","Teaches you how to make Rough Bronze Bracers.","","","","Plans: Rough Bronze Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5578","-1","Teaches you how to make a Silvered Bronze Breastplate.","","","","Plans: Silvered Bronze Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","164","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5579","-1","","","","","Militia Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","160","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","5","-1","0","0","6","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5580","-1","","","","","Militia Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5581","-1","","","","","Smooth Walking Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5582","-1","","","","","Stonetalon Sap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5583","-1","","","","","Fey Dragon Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5584","-1","","","","","Twilight Whisker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5585","-1","","","","","Courser Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5586","-1","","","","","Thistlewood Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","131","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5587","-1","","","","","Thornroot Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","13","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"5588","-1","","","","","Lydon's Toxin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5589","-1","","","","","Moss-covered Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41","206","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5590","-1","","","","","Cord Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5591","-1","","","","","Rain-spotted Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5592","-1","","","","","Shackled Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","272","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5593","-1","","","","","Crag Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","582","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5594","-1","","","","","Letter to Jin'Zil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5595","-1","","","","","Thicket Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","235","1177","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","11","-1","0","0","16","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5596","-1","","","","","Ashwood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141","709","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"5597","-1","","","","","Monster - Glaive - 2 Blade Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5598","-1","","","","","Monster - Glaive - 3 Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5599","-1","","","","","Monster - Glaive - 4 Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5600","-1","","","","","Monster - Claw - Bear","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5601","-1","","","","","Hatched Egg Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5602","-1","","","","","Sticky Spider Webbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","63","255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5603","-1","","","","","Wizbang's Gunnysack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5604","-1","","","","","Elven Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","380","1901","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","13","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5605","-1","","","","","Pruning Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","751","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5606","-1","","","","","Gardening Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","116","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5607","-1","","","","","Deprecated Graystone Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","187","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5608","-1","","","","","Living Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3463","17315","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"5609","-1","","","","","Steadfast Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","447","2235","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"5610","-1","","","","","Gustweald Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"5611","-1","","","","","Tear of Grief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","452","1810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","-3","0","0","0","0","0","0","0","0","0" +"5612","-1","","","","","Ivy Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5613","-1","","","","","Staff of the Purifier","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2635","13177","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","23","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","0","0","0","0","0","0","0","0","0","0" +"5614","-1","","","","","Seraph's Strike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6147","30735","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","54","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","10","0","0","0","0","0","0","0","0","0" +"5615","-1","","","","","Woodsman Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1776","8883","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","20","-1","0","0","34","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","2","0","0","0","0","0","0","0","0","0" +"5616","-1","","","","","Gutwrencher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22738","113691","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","47","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","42" +"5617","-1","","","","","Vagabond Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","247","1235","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","1","0","0","0","0","0","0","0","0","0" +"5618","-1","","","","","Scout's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5619","-1","","","","","Jade Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5620","-1","","","","","Vial of Innocent Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5621","-1","","","","","Tourmaline Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5622","-1","","","","","Clergy Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","556","2225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","0" +"5623","-1","","","","","Amethyst Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5624","-1","","","","","Circlet of the Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2927","14635","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","3","10","0","0","0","0","0","0","0","33" +"5625","-1","","","","","Deprecated Band of the Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","330","1651","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5626","-1","","","","","Skullchipper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1717","8588","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","20","-1","0","0","36","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","1","0","0","0","0","0","0","0","0","0" +"5627","-1","","","","","Relic Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1379","6896","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","20","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5628","-1","","","","","Zamah's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5629","-1","","","","","Hammerfist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1737","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5630","-1","","","","","Windfelt Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","348","1743","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"5631","-1","","","","","Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5632","-1","","","","","Cowardly Flight Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5633","-1","","","","","Great Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"5634","-1","","","","","Free Action Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5635","-1","","","","","Sharp Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","45","180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5636","-1","","","","","Delicate Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5637","-1","","","","","Large Fang","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5638","-1","","","","","Toxic Fogger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5639","-1","","","","","Filled Jade Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5640","-1","Teaches you how to make a Rage Potion.","","","","Recipe: Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","171","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5641","-1","Teaches you how to make a Cowardly Flight Potion.","","","","Recipe: Cowardly Flight Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","171","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5642","-1","Teaches you how to make a Free Action Potion.","","","","Recipe: Free Action Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","171","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5643","-1","Teaches you how to make a Great Rage Potion.","","","","Recipe: Great Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","171","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5644","-1","Teaches Conjure Water (Rank 1).","","","","Tome of Conjure Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5645","-1","","","","","Filled Tourmaline Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5646","-1","","","","","Vial of Blessed Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5647","-1","Teaches Blink (Rank 1).","","","","Tome of Blink","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5648","-1","Teaches Frost Armor (Rank 3).","","","","Tome of Frost Armor III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5649","-1","Teaches Blizzard (Rank 1).","","","","Tome of Blizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5650","-1","Teaches Conjure Water (Rank 3).","","","","Tome of Conjure Water III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5651","-1","","","","","Deprecated Dull Razormane Backstabber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5652","-1","","","","","Deprecated Cracked Razormane Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5653","-1","","","","","Deprecated Broken Razormane War Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5654","-1","","","","","Instant Toxin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","24","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5655","1101","","","","","Chestnut Mare Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5656","1101","","","","","Brown Horse Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5657","-1","Teaches you how to make an Instant Toxin.","","","","Recipe: Instant Toxin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","40","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5658","-1","Teaches Seal of Might (Rank 1).","","","","Libram: Seal of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5659","-1","","","","","Smoldering Embers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5660","-1","Teaches Seal of Righteousness (Rank 1).","","","","Libram: Seal of Righteousness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"5661","-1","Teaches Seal of Righteousness (Rank 2).","","","","Libram: Seal of Righteousness II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5662","-1","Teaches Seal of Righteousness (Rank 3).","","","","Libram: Seal of Righteousness III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5663","690","","","","","Horn of the Red Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5664","-1","","","","","Corroded Shrapnel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5665","690","","","","","Horn of the Dire Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5666","-1","Teaches Seal of Reckoning (Rank 2).","","","","Libram: Seal of Wrath II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5667","-1","Teaches Seal of Wisdom (Rank 2).","","","","Libram: Seal of Wisdom II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5668","690","","","","","Horn of the Brown Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5669","-1","","","","","Dust Devil Debris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5670","-1","Teaches Seal of Might (Rank 3).","","","","Libram: Seal of Wrath IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"5671","-1","Teaches Seal of Might (Rank 3).","","","","Libram: Seal of Might III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5672","-1","Teaches Exorcism (Rank 1).","","","","Libram: Exorcism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5673","-1","Teaches Exorcism (Rank 2).","","","","Libram: Exorcism II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5674","-1","Teaches Exorcism (Rank 3).","","","","Libram: Exorcism III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5675","-1","","","","","Crystalized Scales","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5676","-1","Teaches Sense Undead.","","","","Libram: Sense Undead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5677","-1","Teaches Turn Undead (Rank 1).","","","","Libram: Turn Undead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5679","-1","Teaches Seal of Wisdom (Rank 3).","","","","Libram: Seal of Wisdom III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5680","-1","Teaches Seal of Protection (Rank 2).","","","","Libram: Seal of Protection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5681","-1","","","","","Corrosive Sap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5682","-1","Teaches Turn Undead (Rank 2).","","","","Libram: Turn Undead II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5683","-1","Teaches Divine Shield (Rank 2).","","","","Libram: Divine Shield II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"5684","-1","Teaches Seal of Salvation (Rank 1).","","","","Libram: Seal of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5685","-1","Teaches Redemption.","","","","Libram: Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5686","-1","","","","","Ordanus' Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5687","-1","","","","","Gatekeeper's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5688","-1","","","","","Test Language Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","10","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5689","-1","","","","","Sleepers' Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5690","-1","","","","","Claw Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5691","-1","","","","","Barrow Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5692","-1","","","","","Remote Detonator (Red)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5693","-1","","","","","Remote Detonator (Blue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5694","-1","","","","","NG-5 Explosives (Red)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5695","-1","","","","","NG-5 Explosives (Blue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5696","-1","Teaches Shock (Rank 1).","","","","Tablet of Shock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5697","-1","Teaches Healing Totem (Rank 1).","","","","Tablet of Healing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"5698","-1","Teaches Lightning Shield (Rank 1).","","","","Tablet of Lightning Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5699","-1","Teaches Ghost Wolf (Rank 1).","","","","Tablet of Ghost Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5700","-1","Teaches Healing Totem (Rank 2).","","","","Tablet of Healing Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"5701","-1","Teaches Sentry Totem.","","","","Tablet of Sentry Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"5702","-1","Teaches Agitating Totem (Rank 2).","","","","Tablet of Agitating Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"5703","-1","Teaches Thunder Clap (Rank 1).","","","","Tablet of Thunderclap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5704","-1","Teaches Water Breathing.","","","","Tablet of Water Breathing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5705","-1","Teaches Healing Totem (Rank 3).","","","","Tablet of Healing Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5706","-1","Teaches Serpent Totem (Rank 3).","","","","Tablet of Serpent Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5707","-1","Teaches Far Sight.","","","","Tablet of Far Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"5708","-1","Teaches Ethereal Form (Rank 1).","","","","Tablet of Ethereal Form","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"5709","-1","Teaches Water Walking.","","","","Tablet of Water Walking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5710","-1","Teaches Healing Totem (Rank 4).","","","","Tablet of Healing Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5711","-1","Teaches Ghost Wolf (Rank 2).","","","","Tablet of Ghost Wolf II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5712","-1","Teaches Serpent Totem (Rank 4).","","","","Tablet of Serpent Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5713","-1","Teaches Thunderbolt.","","","","Tablet of Thunderbolt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"5714","-1","","","","","Tablet of Ensnaring Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"5715","-1","Teaches Lightning Storm (Rank 3).","","","","Tablet of Lightning Storm III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5716","-1","Teaches Greater Healing Wave (Rank 2).","","","","Tablet of Restoration VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5717","-1","","","","","Venture Co. Letters","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5718","-1","","","","","Venture Co. Engineering Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5719","-1","Teaches Drain Life (Rank 2).","","","","Grimoire of Life Drain II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5720","-1","Teaches Curse of Weakness (Rank 2).","","","","Grimoire of Curse of Mannoroth II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"5721","-1","Teaches Create Spellstone.","","","","Grimoire of Create Spellstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"5722","-1","Teaches Drain Mana (Rank 2).","","","","Grimoire of Siphon Mana II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5723","-1","Teaches Curse of Agony (Rank 3).","","","","Grimoire of Curse of Sargeras III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"5724","-1","Teaches Curse of Tongues (Rank 1).","","","","Grimoire of Curse of Tongues","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"5725","-1","Teaches Corruption (Rank 3).","","","","Grimoire of Pestilence III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5726","-1","Teaches Create Greater Healthstone.","","","","Grimoire of Create Greater Bloodstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","17000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"5727","-1","Teaches Mana Funnel.","","","","Grimoire of Mana Funnel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5728","-1","Teaches Rain of Fire (Rank 2).","","","","Grimoire of Rain of Fire II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5729","-1","Teaches Fear (Rank 3).","","","","Grimoire of Fear III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"5730","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Rejuvenation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5731","-1","","","","","Scroll of Messaging","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5732","-1","","","","","NG-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5733","-1","","","","","Unidentified Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5734","-1","","","","","Super Reaper 6000 Blueprints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5735","-1","","","","","Sealed Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5736","-1","","","","","Gerenzo's Mechanical Arm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5737","-1","","","","","Covert Ops Plans: Alpha & Beta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5738","-1","","","","","Covert Ops Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5739","-1","","","","","Barbaric Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2739","13695","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5740","-1","","","","","Red Fireworks Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5741","-1","","","","","Rock Chip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","111","445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5742","-1","","","","","Gemstone Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10770","53853","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","40","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","5","0","5","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","35" +"5743","-1","","","","","Prismstone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1803","7215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","0","0","0","0","0","0","0","0","0","35" +"5744","-1","","","","","Pale Skinner","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","386","1933","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","12","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","7" +"5745","-1","","","","","Monster - Trident, Wood Handle","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5746","-1","","","","","Monster - Trident, Copper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5747","-1","","","","","Monster - Trident, Ornate","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"5748","-1","","","","","Centaur Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3047","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","16","-1","0","0","14","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","11" +"5749","-1","","","","","Scythe Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2664","13322","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","23","-1","0","0","43","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","6","0","0","0","0","0","0","0","0","18" +"5750","-1","","","","","Warchief's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","641","3209","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","2","0","0","0","0","0","0","0","0","18" +"5751","-1","","","","","Webwing Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","822","4112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","20" +"5752","-1","","","","","Wyvern Tailspike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3109","15548","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","26","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","21" +"5753","-1","","","","","Ruffled Chaplet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1884","9423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","26" +"5754","-1","","","","","Wolfpack Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2538","10155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","3","0","0","0","0","0","0","0","0","26" +"5755","-1","","","","","Onyx Shredder Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4127","20638","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","10","0","0","0","0","0","0","0","0","30" +"5756","-1","","","","","Sliverblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10026","50134","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","37","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"5757","-1","","","","","Hardwood Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1363","6817","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","0" +"5758","-1","","","","","Mithril Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5759","-1","","","","","Thorium Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5760","-1","","","","","Eternium Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5761","-1","","","","","Anvilmar Sledge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","153","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5762","-1","","","","","Red Linen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5763","-1","","","","","Red Woolen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5764","-1","","","","","Green Silk Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5765","-1","","","","","Black Silk Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5766","-1","","","","","Lesser Wizard's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1338","6691","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","5","0","0","0","0","0","0","0","0","22" +"5767","-1","","","","","Violet Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","222","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","4" +"5768","-1","","","","","Gnome Race Ticket","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5769","-1","","","","","Goblin Race Ticket","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5770","-1","","","","","Robes of Arcana","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","9038","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","8","7","0","0","0","0","0","0","0","0","25" +"5771","-1","Teaches you how to sew a Red Linen Bag.","","","","Pattern: Red Linen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","197","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5772","-1","Teaches you how to sew a Red Woolen Bag.","","","","Pattern: Red Woolen Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","197","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5773","-1","Teaches you how to sew Robes of Arcana.","","","","Pattern: Robes of Arcana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","197","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5774","-1","Teaches you how to sew a Green Silk Pack.","","","","Pattern: Green Silk Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5775","-1","Teaches you how to sew a Black Silk Pack.","","","","Pattern: Black Silk Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","197","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5776","-1","","","","","Elder's Cane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5777","-1","","","","","Brave's Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5778","-1","","","","","Primitive Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5779","-1","","","","","Forsaken Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5780","-1","","","","","Murloc Scale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","260","1303","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"5781","-1","","","","","Murloc Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3009","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","14" +"5782","-1","","","","","Thick Murloc Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3211","16056","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","8","0","0","0","0","0","0","0","0","29" +"5783","-1","","","","","Murloc Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2316","11582","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","33" +"5784","-1","","","","","Slimy Murloc Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5785","-1","","","","","Thick Murloc Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5786","-1","Teaches you how to craft a Murloc Scale Belt.","","","","Pattern: Murloc Scale Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5787","-1","Teaches you how to craft a Murloc Scale Breastplate.","","","","Pattern: Murloc Scale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","165","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5788","-1","Teaches you how to craft Thick Murloc Armor.","","","","Pattern: Thick Murloc Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5789","-1","Teaches you how to craft Murloc Scale Bracers.","","","","Pattern: Murloc Scale Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5790","-1","","","","","Lonebrow's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5791","-1","","","","","Henrig Lonebrow's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1100","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"5792","-1","","","","","Razorflank's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5793","-1","","","","","Razorflank's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5794","-1","","","","","Salty Scorpid Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5795","-1","","","","","Hardened Tortoise Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5796","-1","","","","","Encrusted Tail Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5797","-1","","","","","Indurium Flake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5798","-1","","","","","Rocket Car Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5799","-1","","","","","Kravel's Parts Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5800","-1","","","","","Kravel's Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5801","-1","","","","","Kraul Guano","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5802","-1","","","","","Delicate Car Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5803","-1","","","","","Speck of Dream Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5804","-1","","","","","Goblin Rumors","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5805","-1","","","","","Heart of Zeal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5806","-1","","","","","Fool's Stout","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5807","-1","","","","","Fool's Stout Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5808","-1","","","","","Pridewing Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5809","-1","","","","","Highperch Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5810","-1","","","","","Fresh Carcass","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5811","-1","","","","","Frostmaw's Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5812","-1","","","","","Robes of Antiquity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1129","5645","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","8","0","0","0","0","0","0","0","0","0" +"5813","-1","","","","","Emil's Brand","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7088","35440","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","32","-1","0","0","53","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","3","0","0","0","0","0","0","0","0","0" +"5814","-1","","","","","Snapbrook Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2351","11757","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","9","0","0","0","0","0","0","0","0","0" +"5815","-1","","","","","Glacial Stone","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5871","29355","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","31","-1","0","0","60","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5816","-1","","","","","Light of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","405","1620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5817","-1","","","","","Lunaris Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3226","16134","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"5818","-1","","","","","Moonbeam Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3239","16197","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5819","-1","","","","","Sunblaze Coif","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3201","16009","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","185","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","28" +"5820","-1","","","","","Faerie Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1623","8115","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","0","0","0","0","0","0","0","0","0" +"5821","-1","","","","","Darkstalker Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","900","4500","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","5","0","0","0","0","0","0","0","0","0" +"5822","-1","","","","","Hedgeseed Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3614","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"5823","-1","","","","","Poisonous Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"5824","-1","","","","","Tablet of Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5825","-1","","","","","Treshala's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5826","-1","","","","","Kravel's Scheme","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","439","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5827","-1","","","","","Fizzle Brassbolts' Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5828","-1","","","","","Ring of Uber Resists (TEST)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","315","315","315","315","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"5829","-1","","","","","Razor-sharp Beak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","804","3216","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5830","-1","","","","","Kenata's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5831","-1","","","","","Fardel's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5832","-1","","","","","Marcel's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5833","-1","","","","","Indurium Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5834","-1","","","","","Mok'Morokk's Snuff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5835","-1","","","","","Mok'Morokk's Grog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5836","-1","","","","","Mok'Morokk's Strongbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5837","-1","","","","","Steelsnap's Rib","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5838","-1","","","","","Kodo Skin Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5839","-1","","","","","Journal Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5840","-1","","","","","Searing Tongue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5841","-1","","","","","Searing Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5842","-1","","","","","Unrefined Ore Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5843","-1","","","","","Grenka's Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5844","-1","","","","","Fragments of Rok'Alim","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5845","-1","","","","","Flank of Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"5846","-1","","","","","Korran's Sealed Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5847","-1","","","","","Mirefin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5848","-1","","","","","Hollow Vulture Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5849","-1","","","","","Crate of Crash Helmets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5850","-1","","","","","Belgrom's Sealed Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5851","-1","","","","","Cozzle's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5852","-1","","","","","Fuel Regulator Blueprints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5853","-1","","","","","Intact Silithid Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5854","-1","","","","","Silithid Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5855","-1","","","","","Silithid Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5856","-1","","","","","Monster - Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"5857","-1","Open for a prize!","","","","Gnome Prize Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5858","-1","Open for a prize!","","","","Goblin Prize Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5859","-1","","","","","Party Grenade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5860","-1","","","","","Legacy of the Aspects","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","447","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5861","-1","","","","","Beginnings of the Undead Threat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","669","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5862","-1","","","","","Seaforium Booster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5863","-1","","","","","Guild Charter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5864","1101","","","","","Gray Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5865","-1","","","","","Modified Seaforium Booster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5866","-1","","","","","Sample of Indurium Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5867","-1","","","","","Etched Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5868","-1","","","","","Filled Etched Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5869","-1","","","","","Cloven Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5870","-1","","","","","Monster - Throwing Spear","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"5871","-1","","","","","Large Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","318","1275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"5872","1101","","","","","Brown Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5873","1101","","","","","White Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"5874","479","","","","","Harness: Black Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5875","479","","","","","Harness: Blue Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","152","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"5876","-1","","","","","Blueleaf Tuber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5877","-1","","","","","Cracked Silithid Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1148","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"5878","-1","","","","","Super Snuff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","92","370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5879","-1","","","","","Twilight Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5880","-1","","","","","Crate With Holes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5881","-1","","","","","Head of Kelris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5882","-1","","","","","Captain's Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5883","-1","","","","","Forked Mudrock Tongue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5884","-1","","","","","Unpopped Darkmist Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5896","-1","Stamped with the name: Muren Macfeere","","","","Theramore Guard Medallion UNUSED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5897","-1","","","","","Snufflenose Owner's Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5916","-1","NYI","","","","Gnome Camera Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5917","-1","","","","","Spy's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5918","-1","","","","","Defiant Orc Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5919","-1","","","","","Blackened Iron Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5936","-1","","","","","Animal Skin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5937","-1","NYI","","","","Goblin Camera Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5938","-1","","","","","Pristine Crawler Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5939","-1","","","","","Sewing Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","101","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5940","-1","","","","","Bone Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","154","770","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5941","-1","","","","","Brass Scale Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","579","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5942","-1","","","","","Jeweled Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5943","-1","","","","","Rift Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1008","5044","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","0","0","0","0","0","0","0","0","0","20" +"5944","-1","","","","","Greaves of the People's Militia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1656","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"5945","-1","","","","","Deadmire's Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5946","-1","","","","","Sealed Note to Elling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5947","-1","","","","","Defias Docket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5948","-1","","","","","Letter to Jorgen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5949","-1","","","","","Scrap of Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5950","-1","","","","","Reethe's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5951","-1","","","","","Moist Towelette","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","41","165","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5952","-1","","","","","Corrupted Brain Stem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5953","-1","","","","","TEST SWORD","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24751","123758","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5954","-1","","","","","TEST SWORD 2","0.6","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24843","124218","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5956","-1","","","","","Blacksmith Hammer","0.6","0","0","1152","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5957","-1","","","","","Handstitched Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","201","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","3" +"5958","-1","","","","","Fine Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4146","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","4","0","0","0","0","0","0","0","0","16" +"5959","-1","","","","","Acidic Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5960","-1","","","","","Sealed Note to Watcher Backus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5961","-1","","","","","Dark Leather Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1089","5446","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","0","0","0","0","0","0","0","0","0","18" +"5962","-1","","","","","Guardian Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13973","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","8","0","0","0","0","0","0","0","0","27" +"5963","-1","","","","","Barbaric Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3151","15756","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","7","0","0","0","0","0","0","0","29" +"5964","-1","","","","","Barbaric Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2609","13049","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","5","0","0","0","0","0","0","0","30" +"5965","-1","","","","","Guardian Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","32" +"5966","-1","","","","","Guardian Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6873","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","33" +"5967","-1","","","","","Girdle of Nobility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1046","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"5968","-1","","","","","Rugged Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","259","1295","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","10" +"5969","-1","","","","","Regent's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","3127","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","18" +"5970","-1","","","","","Serpent Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","502","2511","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","0","0","0","0","0","0","0","0","0","18" +"5971","-1","","","","","Feathered Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","909","4545","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","2","0","0","0","0","0","0","0","0","21" +"5972","-1","Teaches you how to craft Fine Leather Pants.","","","","Pattern: Fine Leather Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","165","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5973","-1","Teaches you how to craft Barbaric Leggings.","","","","Pattern: Barbaric Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","165","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5974","-1","Teaches you how to craft a Guardian Cloak.","","","","Pattern: Guardian Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","165","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"5975","-1","","","","","Ruffian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2664","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","18" +"5976","-1","","","","","Guild Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"5996","-1","","","","","Elixir of Water Breathing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"5997","-1","","","","","Elixir of Minor Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"5998","-1","","","","","Stormpike's Request","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","607","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6016","-1","","","","","Wolf Heart Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6036","-1","","","","","Rogue Test Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4215","21079","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","39","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","34" +"6037","-1","","","","","Truesilver Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6038","-1","","","","","Giant Clam Scorcho","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6039","-1","Teaches you how to cook a delicious Giant Clam Scorcho.","","","","Recipe: Giant Clam Scorcho","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6040","-1","","","","","Golden Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8248","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","32" +"6041","-1","","","","","Steel Weapon Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6042","-1","","","","","Iron Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6043","-1","","","","","Iron Counterweight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6044","-1","Teaches you how to make an Iron Shield Spike.","","","","Plans: Iron Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6045","-1","Teaches you how to make an Iron Counterweight to help balance a two-handed weapon.","","","","Plans: Iron Counterweight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","164","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6046","-1","Teaches you how to make a Steel Weapon Chain.","","","","Plans: Steel Weapon Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6047","-1","Teaches you how to make a Golden Scale Coif.","","","","Plans: Golden Scale Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6048","-1","","","","","Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6049","-1","","","","","Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","170","680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"6050","-1","","","","","Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6051","-1","","","","","Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6052","-1","","","","","Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6053","-1","Teaches you how to make a Holy Protection Potion.","","","","Recipe: Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","171","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6054","-1","Teaches you how to make a Shadow Protection Potion.","","","","Recipe: Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","171","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6055","-1","Teaches you how to make a Fire Protection Potion.","","","","Recipe: Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","171","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6056","-1","Teaches you how to make a Frost Protection Potion.","","","","Recipe: Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6057","-1","Teaches you how to make a Nature Protection Potion.","","","","Recipe: Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6058","-1","","","","","Blackened Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6059","-1","","","","","Nomadic Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","66","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6060","-1","","","","","Flax Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6061","-1","","","","","Graystone Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","116","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6062","-1","","","","","Heavy Cord Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6063","-1","","","","","Cold Steel Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","117","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6064","-1","","","","","Miniature Platinum Discs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6065","-1","These documents are sealed by a magical force.","","","","Khadgar's Essays on Dimensional Convergence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6066","-1","","","","","Khan Dez'hepah's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6067","-1","","","","","Centaur Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6068","-1","Teaches you how to make Shadow Oil.","","","","Recipe: Shadow Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","171","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6069","-1","","","","","Crudely Dried Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6070","-1","","","","","Wolfskin Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6071","-1","","","","","Draenethyst Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6072","-1","","","","","Khan Jehn's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6073","-1","","","","","Khan Shaka's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6074","-1","","","","","War Horn Mouthpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6075","-1","","","","","Vimes's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6076","-1","","","","","Tapered Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6077","-1","","","","","Maraudine Key Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6078","-1","","","","","Pikeman Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6079","-1","","","","","Crude Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6080","-1","","","","","Shadow Panther Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6081","-1","","","","","Mire Lord Fungus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6082","-1","","","","","Green Whelp Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6083","-1","","","","","Broken Tears","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6084","-1","","","","","Stormwind Guard Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","291","1455","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6085","-1","","","","","Footman Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","0" +"6086","-1","","","","","Faustin's Truth Serum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6087","-1","","","","","Chausses of Westfall","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1728","8640","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","11","0","0","0","0","0","0","0","0","0" +"6088","-1","","","","","Monster - Torch, Ranged","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6089","-1","","","","","Zraedus's Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6090","-1","","","","","OLDNoboru's Cudgel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6091","-1","","","","","Crate of Power Stones","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6092","-1","","","","","Black Whelp Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","421","2105","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","0","0","0","0","0","0","0","0","0","0" +"6093","-1","","","","","Orc Crusher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4418","22091","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","27","-1","0","0","52","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","0","0","0","0","0","0","0","0","0" +"6094","-1","","","","","Piercing Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1278","6394","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6095","-1","","","","","Wandering Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3440","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6096","-1","","","","","Apprentice's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6097","-1","","","","","Acolyte's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6098","-1","","","","","Neophyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6116","-1","","","","","Apprentice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6117","-1","","","","","Squire's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6118","-1","","","","","Squire's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6119","-1","","","","","Neophyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6120","-1","","","","","Recruit's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6121","-1","","","","","Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6122","-1","","","","","Recruit's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6123","-1","","","","","Novice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6124","-1","","","","","Novice's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6125","-1","","","","","Brawler's Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6126","-1","","","","","Trapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6127","-1","","","","","Trapper's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6129","-1","","","","","Acolyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6130","-1","","","","","Trapper's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6131","-1","","","","","Trapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6132","-1","Teaches Seal of Wisdom (Rank 1).","","","","Libram: Seal of Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6133","-1","Teaches Seal of Fury (Rank 1).","","","","Libram: Seal of Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"6134","-1","","","","","Primitive Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6135","-1","","","","","Primitive Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6136","-1","","","","","Thug Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6137","-1","","","","","Thug Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6138","-1","","","","","Thug Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6139","-1","","","","","Novice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6140","-1","","","","","Apprentice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6144","-1","","","","","Neophyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6145","-1","Place upon Yuriv's grave.","","","","Clarice's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6146","-1","","","","","Sundried Driftwood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6147","-1","","","","","Ratty Old Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6148","-1","","","","","Web-covered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6149","-1","","","","","Greater Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","120","480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","31" +"6150","-1","","","","","A Frayed Knot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6166","-1","","","","","Coyote Jawbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6167","-1","","","","","Neeka's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6168","-1","","","","","Sawtooth Snapper Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6169","-1","","","","","Unprepared Sawtooth Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6170","-1","","","","","Wizards' Reagents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6171","-1","","","","","Wolf Handler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6172","-1","","","","","Lost Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1423","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"6173","-1","","","","","Snow Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6174","-1","","","","","Twain Random Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","694","3474","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","15" +"6175","-1","","","","","Atal'ai Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6176","-1","","","","","Dwarven Kite Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","79","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6177","-1","","","","","Ironwrought Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69","349","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6178","-1","","","","","Shipment to Nethergarde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6179","-1","","","","","Privateer's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1847","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","14" +"6180","-1","","","","","Slarkskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2119","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","10" +"6181","-1","","","","","Fetish of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6182","-1","","","","","Dim Torch","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6183","-1","","","","","Unlit Poor Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","142","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6184","-1","","","","","Monstrous Crawler Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6185","-1","","","","","Bear Shawl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6186","-1","","","","","Trogg Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1373","6865","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","18","-1","0","0","32","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6187","-1","","","","","Dwarven Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","613","3067","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6188","-1","","","","","Mud Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1526","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6189","-1","","","","","Durable Chain Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","624","3122","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6190","-1","","","","","Draenethyst Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6191","-1","","","","","Kimbra Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","616","3080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6192","-1","","","","","Khan Hratha's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6193","-1","","","","","Bundle of Atal'ai Artifacts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6194","-1","","","","","Barreling Reaper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5308","26544","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","22","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6195","-1","","","","","Wax-polished Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","416","2080","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","10" +"6196","-1","","","","","Noboru's Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","1392","0","2100","0","0","0","34","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","29" +"6197","-1","","","","","Loch Croc Hide Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","929","4646","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","0","0","0","0","0","0","0","0","0","17" +"6198","-1","","","","","Jurassic Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5566","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","5","0","0","0","0","0","0","0","0","25" +"6199","-1","","","","","Black Widow Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","-5","7","0","0","0","0","0","0","0","0","19" +"6200","-1","","","","","Garneg's War Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6118","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","2","0","0","0","0","0","0","0","0","24" +"6201","-1","","","","","Lithe Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","272","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6202","-1","","","","","Fingerless Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","189","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6203","-1","","","","","Thuggish Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","609","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6204","-1","","","","","Tribal Worg Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2065","10328","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","27" +"6205","-1","","","","","Burrowing Shovel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4614","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","-1","0","0","18","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","10" +"6206","-1","","","","","Rock Chipper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2778","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","15","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6207","-1","","","","","PVP - Horde Tower Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6208","-1","","","","","PVP - Alliance Tower Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6209","-1","","","","","PVP - Horde Mine Deed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6210","-1","","","","","PVP - Alliance Mine Deed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6211","-1","Teaches you how to make an Elixir of Ogre's Strength.","","","","Recipe: Elixir of Ogre's Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","171","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6212","-1","","","","","Head of Jammal'an","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6213","-1","","","","","Test Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6214","-1","","","","","Heavy Copper Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2979","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","11" +"6215","-1","","","","","Balanced Fighting Stick","0.1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","602","3010","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","13","-1","0","0","18","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","2","0","0","0","0","0","0","0","0","0" +"6216","-1","Used by Enchanters to enchant items.","","","","Mystical Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6217","-1","Needed by an Enchanter to make a runed copper rod.","","","","Copper Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6218","-1","","","","","Runed Copper Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6219","-1","","","","","Arclight Spanner","0.6","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144","721","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","2400","0","50","202","10","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6220","-1","","","","","Meteor Shard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4893","24468","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","29","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","20" +"6222","-1","Teaches you how to temporarily imbue a piece of chest armor to give +3 Spirit for 60 min.","","","","Formula: Imbue Chest - Minor Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6223","-1","","","","","Crest of Darkshire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4797","23987","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","7","0","0","0","0","0","0","0","0","0" +"6224","-1","","","","","Monster - Sword2H, Black Metal Hilt","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6225","-1","","","","","Monster - Item, Fish - Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6226","-1","","","","","Bloody Apron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1068","5344","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","0","0","0","0","0","0","0","0","0","18" +"6227","-1","","","","","Monster - Item, Fish - Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6228","-1","","","","","Monster - Item, Fish - Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6229","-1","","","","","Monster - Item, Fish - Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6230","-1","","","","","Monster - Wand, Basic","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6231","-1","","","","","Monster - Wand, Jeweled - Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6232","-1","","","","","Monster - Item, Flowers - Boquet Roses","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6233","-1","","","","","Monster - Item, Flowers - Boquet Wildflowers","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6234","-1","","","","","Monster - Item, Flower - Long Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6235","-1","","","","","Monster - Item, Flower - Rose (Black)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6236","-1","","","","","Monster - Item, Flower - Rose (White)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6237","-1","","","","","Monster - Item, Flowers - Boquet Roses (Black)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6238","-1","","","","","Brown Linen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98","492","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"6239","-1","","","","","Red Linen Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160","802","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"6240","-1","","","","","Blue Linen Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","161","805","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","7" +"6241","-1","","","","","White Linen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99","497","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","5" +"6242","-1","","","","","Blue Linen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1217","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","0","0","0","0","0","0","0","0","0","9" +"6243","-1","","","","","Green Woolen Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","445","2229","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","3","2","0","0","0","0","0","0","0","13" +"6245","-1","","","","","Karnitol's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6246","-1","","","","","Hatefury Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6247","-1","","","","","Hatefury Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6248","-1","","","","","Scorpashi Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6249","-1","","","","","Aged Kodo Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6250","-1","","","","","Felhound Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6251","-1","","","","","Nether Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6252","-1","","","","","Doomwarder Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6253","-1","","","","","Leftwitch's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6254","-1","","","","","Monster - Shield, Ironforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6256","-1","","","","","Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6257","-1","","","","","Roc Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6258","-1","","","","","Ironfur Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6259","-1","","","","","Groddoc Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6260","-1","","","","","Blue Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6261","-1","","","","","Orange Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6262","-1","","","","","Galen's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6263","-1","","","","","Blue Overalls","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2948","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","0","0","0","0","0","0","0","0","0","15" +"6264","-1","","","","","Greater Adept's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4421","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","2","7","0","0","0","0","0","0","0","18" +"6265","-1","","","","","Soul Shard","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6266","-1","","","","","Disciple's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1028","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","455","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6267","-1","","","","","Disciple's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","538","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6268","-1","","","","","Pioneer Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1171","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","476","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6269","-1","","","","","Pioneer Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","967","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","559","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6270","-1","Teaches you how to sew a Blue Linen Vest.","","","","Pattern: Blue Linen Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","197","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6271","-1","Teaches you how to sew a Red Linen Vest.","","","","Pattern: Red Linen Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","197","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6272","-1","Teaches you how to sew a Blue Linen Robe.","","","","Pattern: Blue Linen Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","197","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6273","-1","Teaches you how to sew a Green Woolen Robe.","","","","Pattern: Green Woolen Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","197","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6274","-1","Teaches you how to sew Blue Overalls.","","","","Pattern: Blue Overalls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","197","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6275","-1","Teaches you how to sew a Greater Adept's Robe.","","","","Pattern: Greater Adept's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","197","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6276","-1","","","","","Musty Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6277","-1","","","","","Musty Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","692","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6278","-1","","","","","Musty Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6279","-1","","","","","Musty Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6280","-1","","","","","Musty Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6281","-1","","","","","Rattlecage Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6282","-1","","","","","Sacred Burial Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2244","11220","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","5","0","0","0","0","0","0","0","0","0" +"6283","-1","","","","","The Book of Ur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6284","-1","","","","","Runes of Summoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6285","-1","","","","","Egalin's Grimoire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6286","-1","","","","","Pure Hearts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6287","-1","","","","","Atal'ai Tablet Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6288","-1","","","","","Atal'ai Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6289","-1","","","","","Raw Longjaw Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6290","-1","","","","","Brilliant Smallfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6291","-1","","","","","Raw Brilliant Smallfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6292","-1","","","","","10 Pound Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","34","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6293","-1","","","","","Dried Bat Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6294","-1","","","","","12 Pound Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6295","-1","","","","","15 Pound Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6296","-1","","","","","Patch of Bat Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6297","-1","","","","","Old Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6298","-1","","","","","Bloody Bat Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","130","520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6299","-1","","","","","Sickly Looking Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6300","-1","","","","","Husk Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","443","1775","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6301","-1","Looks like someone didn't like this guy.","","","","Old Teamster's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6302","-1","","","","","Delicate Insect Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","628","2515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6303","-1","","","","","Raw Slitherskin Mackerel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","20","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6304","-1","","","","","Damp Diary Page (Day 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","696","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6305","-1","","","","","Damp Diary Page (Day 87)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6306","-1","","","","","Damp Diary Page (Day 512)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6307","-1","","","","","Message in a Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6308","-1","","","","","Raw Bristle Whisker Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6309","-1","","","","","17 Pound Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6310","-1","","","","","19 Pound Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6311","-1","","","","","22 Pound Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","750","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6312","-1","","","","","Dalin's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6313","-1","","","","","Comar's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6314","-1","","","","","Wolfmaster Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1217","6089","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","13","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","5","0","0","0","0","0","0","0","0","20" +"6315","-1","","","","","Steelarrow Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2546","12733","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","27","-1","0","0","40","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","22" +"6316","-1","","","","","Loch Frenzy Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","60","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6317","-1","","","","","Raw Loch Frenzy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6318","-1","","","","","Odo's Ley Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4803","24015","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","5","0","0","0","0","0","0","0","0","21" +"6319","-1","","","","","Girdle of the Blindwatcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","964","4820","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","8","0","0","0","0","0","0","0","0","19" +"6320","-1","","","","","Commander's Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2711","13556","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","13","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","3","6","0","0","0","0","0","0","0","20" +"6321","-1","","","","","Silverlaine's Family Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1650","6600","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","3","0","0","0","0","0","0","0","0","21" +"6322","-1","","","","","Monster - Staff, Arugal","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6323","-1","","","","","Baron's Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3134","15670","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","25","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","20" +"6324","-1","","","","","Robes of Arugal","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1892","9464","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","3","9","5","0","0","0","0","0","0","0","20" +"6325","-1","Teaches you how to cook Brilliant Smallfish.","","","","Recipe: Brilliant Smallfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6326","-1","Teaches you how to cook Slitherskin Mackerel.","","","","Recipe: Slitherskin Mackerel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6327","-1","","","","","The Pacifier","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12823","64119","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","37","-1","0","0","104","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","7","0","0","0","0","0","0","0","0","32" +"6328","-1","Teaches you how to cook Longjaw Mud Snapper.","","","","Recipe: Longjaw Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6329","-1","Teaches you how to cook Loch Frenzy Delight.","","","","Recipe: Loch Frenzy Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6330","-1","Teaches you how to cook Bristle Whisker Catfish.","","","","Recipe: Bristle Whisker Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6331","-1","","","","","Howling Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9466","47334","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","36","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"6332","-1","","","","","Black Pearl Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1153","4615","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","1","1","0","0","0","0","0","0","0","17" +"6333","-1","","","","","Spikelash Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1929","9645","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","22","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","17" +"6334","-1","","","","","Monster - Mace, Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6335","-1","","","","","Grizzled Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1581","7906","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","7","0","0","0","0","0","0","0","0","0" +"6336","-1","","","","","Infantry Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1527","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","497","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6337","-1","","","","","Infantry Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","580","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","7" +"6338","-1","Needed by Enchanters.","","","","Silver Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6339","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Silver Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6340","-1","","","","","Fenrus' Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1260","6300","1","1.2","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","5","0","0","0","0","0","0","0","0","20" +"6341","-1","","","","","Eerie Stable Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","666","2665","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","0","0","0","0","0","0","0","0","0","14" +"6342","-1","Teaches you how to permanently enchant a piece of chest armor to give +5 mana.","","","","Formula: Enchant Chest - Minor Mana","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","333","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6343","-1","Teaches you how to temporarily imbue a piece of chest armor to give +3 Spirit for 60 min.","","","","Formula: Imbue Chest - Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6344","-1","Teaches you how to permanently enchant a bracer to give +1 Spirit.","","","","Formula: Enchant Bracer - Minor Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","333","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6345","-1","Teaches you how to permanently enchant a cloak to give 10 additional armor.","","","","Formula: Imbue Cloak - Protection","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","333","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6346","-1","Teaches you how to permanently enchant a piece of chest armor to give +20 mana.","","","","Formula: Enchant Chest - Lesser Mana","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","333","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6347","-1","Teaches you how to permanently enchant a bracer to give +1 Strength.","","","","Formula: Enchant Bracer - Minor Strength","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","333","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6348","-1","Teaches you how to permanently enchant a melee weapon so it does +2 damage to beasts.","","","","Formula: Enchant Weapon - Minor Beastslayer","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","333","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6349","-1","Teaches you how to permanently enchant a two-handed weapon so it grants +3 intellect.","","","","Formula: Enchant 2H Weapon - Lesser Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","333","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6350","-1","","","","","Rough Bronze Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1479","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","13" +"6351","-1","Venture Company Supplies","","","","Dented Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6352","-1","Venture Company Supplies","","","","Waterlogged Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6353","-1","","","","","Small Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6354","-1","","","","","Small Locked Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6355","-1","","","","","Sturdy Locked Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6356","-1","","","","","Battered Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6357","-1","Venture Company Supplies","","","","Sealed Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6358","-1","","","","","Oily Blackmouth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6359","-1","","","","","Firefin Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6360","-1","","","","","Steelscale Crushfish","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2581","12905","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","25","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","0","0","0","0","0","0","0","0","0","20" +"6361","-1","","","","","Raw Rainbow Fin Albacore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6362","-1","","","","","Raw Rockscale Cod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6363","-1","","","","","26 Pound Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6364","-1","","","","","32 Pound Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6365","-1","","","","","Strong Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","902","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","10","356","10","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6366","-1","","","","","Darkwood Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1066","5331","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","50","356","20","-1","0","0","28","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6367","-1","","","","","Big Iron Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3378","16892","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","100","356","30","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6368","-1","Teaches you how to cook Rainbow Fin Albacore.","","","","Recipe: Rainbow Fin Albacore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6369","-1","Teaches you how to cook Rockscale Cod.","","","","Recipe: Rockscale Cod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6370","-1","","","","","Blackmouth Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6371","-1","","","","","Fire Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6372","-1","","","","","Swim Speed Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6373","-1","","","","","Elixir of Firepower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"6374","-1","Used by Enchanters to enchant items.","","","","Enchanted Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6375","-1","Teaches you how to permanently enchant a bracer to give +3 Spirit.","","","","Formula: Enchant Bracer - Lesser Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","333","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6376","-1","Teaches you how to permanently enchant a pair of boots to grant +1 Stamina.","","","","Formula: Enchant Boots - Minor Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","333","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6377","-1","Teaches you how to permanently enchant a pair of boots to grant +1 Agility.","","","","Formula: Enchant Boots - Minor Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","333","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6378","-1","","","","","Seer's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1464","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","12" +"6379","-1","","","","","Inscribed Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1224","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","12" +"6380","-1","","","","","Inscribed Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","654","3272","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","13" +"6381","-1","","","","","Bright Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","3127","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","3","0","0","0","0","0","0","0","0","18" +"6382","-1","","","","","Forest Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","523","2616","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","18" +"6383","-1","","","","","Forest Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1519","7596","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","0","0","0","0","0","0","0","0","19" +"6384","-1","","","","","Stylish Blue Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6385","-1","","","","","Stylish Green Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6386","-1","","","","","Glimmering Mail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2692","13463","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","25" +"6387","-1","","","","","Glimmering Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1228","6142","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","24" +"6388","-1","","","","","Glimmering Mail Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2043","10217","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","0","0","0","0","0","0","0","0","25" +"6389","-1","","","","","Glimmering Mail Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2245","11229","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","6","6","0","0","0","0","0","0","0","26" +"6390","-1","Teaches you how to sew a Stylish Blue Shirt.","","","","Pattern: Stylish Blue Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6391","-1","Teaches you how to sew a Stylish Green Shirt.","","","","Pattern: Stylish Green Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6392","-1","","","","","Belt of Arugal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","5004","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","3","0","0","0","0","0","0","0","0","20" +"6393","-1","","","","","Silver-thread Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","760","3804","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","5","0","0","0","0","0","0","0","0","23" +"6394","-1","","","","","Silver-thread Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1041","5206","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","4","0","0","0","0","0","0","0","0","22" +"6395","-1","","","","","Silver-thread Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1264","6322","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","2","0","0","0","0","0","0","0","0","24" +"6396","-1","","","","","Emblazoned Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2814","14074","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","6","0","0","0","0","0","0","0","27" +"6397","-1","","","","","Emblazoned Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","986","4930","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"6398","-1","","","","","Emblazoned Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","989","4949","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","3","0","0","0","0","0","0","0","0","24" +"6399","-1","","","","","Emblazoned Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1639","8197","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","3","0","0","0","0","0","0","0","0","25" +"6400","-1","","","","","Glimmering Shield","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3089","15445","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","26" +"6401","-1","Teaches you how to sew a Dark Silk Shirt.","","","","Pattern: Dark Silk Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","197","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6402","-1","","","","","Mail Combat Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4699","23497","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","31" +"6403","-1","","","","","Mail Combat Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1772","8860","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","2","0","0","0","0","0","0","0","0","28" +"6404","-1","","","","","Mail Combat Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3242","16211","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","7","0","0","0","0","0","0","0","0","30" +"6405","-1","","","","","Nightsky Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3168","15840","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","10","0","0","0","0","0","0","0","0","31" +"6406","-1","","","","","Nightsky Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1970","9854","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","8","0","0","0","0","0","0","0","0","29" +"6407","-1","","","","","Nightsky Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1198","5994","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","3","0","0","0","0","0","0","0","0","28" +"6408","-1","","","","","Insignia Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1654","8272","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","29" +"6409","-1","","","","","Insignia Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1660","8302","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","29" +"6410","-1","","","","","Insignia Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1515","7575","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","2","0","0","0","0","0","0","0","0","28" +"6411","-1","","","","","Chief Brigadier Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7268","36343","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"6412","-1","","","","","Chief Brigadier Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4711","23558","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","34" +"6413","-1","","","","","Chief Brigadier Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2497","12487","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","3","0","0","0","0","0","0","0","0","32" +"6414","-1","","","","","Seal of Sylvanas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2055","8220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","3","0","0","0","0","0","0","0","0","0" +"6415","-1","","","","","Aurora Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4565","22826","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","15","0","0","0","0","0","0","0","0","36" +"6416","-1","","","","","Aurora Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2728","13642","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","3","0","0","0","0","0","0","0","0","33" +"6417","-1","","","","","Aurora Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","2","0","0","0","0","0","0","0","0","32" +"6418","-1","","","","","Aurora Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","2","0","0","0","0","0","0","0","0","32" +"6419","-1","","","","","Glyphed Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2299","11498","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","33" +"6420","-1","","","","","Glyphed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3739","18699","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","0","0","0","0","0","0","0","0","34" +"6421","-1","","","","","Glyphed Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2317","11586","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","5","0","0","0","0","0","0","0","33" +"6422","-1","","","","","Glyphed Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3768","18840","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","6","6","0","0","0","0","0","0","0","34" +"6423","-1","","","","","Blackforge Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7233","36168","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","40" +"6424","-1","","","","","Blackforge Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3825","19127","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","8","0","0","0","0","0","0","0","0","37" +"6425","-1","","","","","Blackforge Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4478","22394","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","39" +"6426","-1","","","","","Blackforge Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4162","20812","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","38" +"6427","-1","","","","","Mistscape Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7016","35082","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","18","0","0","0","0","0","0","0","0","41" +"6428","-1","","","","","Mistscape Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2795","13976","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","9","0","0","0","0","0","0","0","0","38" +"6429","-1","","","","","Mistscape Wizard Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4544","22724","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","4","10","6","0","0","0","0","0","0","0","39" +"6430","-1","","","","","Imperial Leather Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9098","45494","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","16","0","0","0","0","0","0","0","0","41" +"6431","-1","","","","","Imperial Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27182","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","11","0","0","0","0","0","0","0","0","38" +"6432","-1","","","","","Imperial Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3741","18709","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","8","0","0","0","0","0","0","0","0","36" +"6433","-1","","","","","Imperial Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4953","24767","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","38" +"6434","-1","","","","","Monster - Shield, Stromgarde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6435","-1","","","","","Infused Burning Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6436","-1","","","","","Burning Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6437","-1","","","","","Flayed Demon Skin (old)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","149","598","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2897","0","0","0","0","1","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","6","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6438","-1","","","","","Dull Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","362","1450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6439","-1","","","","","Broken Binding Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","237","950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6440","-1","","","","","Brainlash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15812","63250","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","5","-10","0","0","0","0","0","0","0","43" +"6441","-1","","","","","Shadowstalker Scalp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6442","-1","","","","","Oracle Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6443","-1","","","","","Deviate Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6444","-1","","","","","Forked Tongue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","228","915","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6445","-1","","","","","Brittle Molting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","88","352","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6446","-1","","","","","Snakeskin Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"6447","-1","","","","","Worn Turtle Shell Shield","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1124","5621","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","15" +"6448","-1","","","","","Tail Spike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2331","11657","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","4","0","0","0","0","0","0","0","0","17" +"6449","-1","","","","","Glowing Lizardscale Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","2","0","0","0","0","0","0","0","0","17" +"6450","-1","","","","","Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","170","680","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6451","-1","","","","","Heavy Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6452","-1","","","","","Anti-Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","28","115","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6453","-1","","","","","Strong Anti-Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6454","-1","Teaches you how to make Strong Anti-Venom.","","","","Manual: Strong Anti-Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","129","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6455","-1","","","","","Old Wagonwheel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6456","-1","","","","","Acidic Slime","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6457","-1","","","","","Rusted Engineering Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6458","-1","","","","","Oil Covered Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6459","-1","","","","","Savage Trodders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1122","5610","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","0","0","0","0","0","0","0","0","0","18" +"6460","-1","","","","","Cobrahn's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4223","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","3","0","0","0","0","0","0","0","0","19" +"6461","-1","","","","","Slime-encrusted Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1190","5954","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","20" +"6462","-1","","","","","Secure Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6463","-1","","","","","Deep Fathom Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1527","6110","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","3","3","0","0","0","0","0","0","0","20" +"6464","-1","","","","","Wailing Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6465","-1","","","","","Robe of the Moccasin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","922","4612","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","6","6","0","0","0","0","0","0","0","0","17" +"6466","-1","","","","","Deviate Scale Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","330","1654","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","2","0","0","0","0","0","0","0","0","13" +"6467","-1","","","","","Deviate Scale Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2104","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","16" +"6468","-1","","","","","Deviate Scale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","658","3292","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","3","0","0","0","0","0","0","0","18" +"6469","-1","","","","","Venomstrike","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2240","11202","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","24","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","19" +"6470","-1","","","","","Deviate Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6471","-1","","","","","Perfect Deviate Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6472","-1","","","","","Stinging Viper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3018","15094","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","19" +"6473","-1","","","","","Armor of the Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1212","6064","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","8","0","0","0","0","0","0","0","0","18" +"6474","-1","Teaches you how to craft a Deviate Scale Cloak.","","","","Pattern: Deviate Scale Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6475","-1","Teaches you how to craft Deviate Scale Gloves.","","","","Pattern: Deviate Scale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","165","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6476","-1","Teaches you how to craft a Deviate Scale Belt.","","","","Pattern: Deviate Scale Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","165","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6477","-1","","","","","Grassland Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","274","1373","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","3","0","0","0","0","0","0","0","0","0" +"6478","-1","","","","","Rat Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","635","3175","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","4","0","0","0","0","0","0","0","0","0" +"6479","-1","","","","","Malem Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6480","-1","","","","","Slick Deviate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","713","3567","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6481","-1","","","","","Dagmire Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","642","3210","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"6482","-1","","","","","Firewalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","728","3641","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","5","0","0","0","0","0","0","0","0","0" +"6486","-1","","","","","Singed Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6487","-1","","","","","Vile Familiar Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6488","-1","","","","","Simple Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6489","-1","","","","","Weatherworn Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","753","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6490","-1","","","","","Dark Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","754","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6491","-1","","","","","Heavy Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","755","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6492","-1","","","","","Sooty Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6493","-1","","","","","Tattered Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","757","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6494","-1","","","","","Scrawled Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6495","-1","","","","","Weatherbeaten Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6496","-1","","","","","Detailed Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","760","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6497","-1","","","","","Simple Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","761","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6498","-1","","","","","Inscribed Kodo Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","762","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6499","-1","","","","","Inscribed Kodo Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6500","-1","","","","","Inscribed Kodo Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","764","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6501","-1","","","","","Inscribed Kodo Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","765","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","3","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6502","-1","","","","","Violet Scale Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1140","5701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","1","0","0","0","0","0","0","0","0","0" +"6503","-1","","","","","Harlequin Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","763","3815","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","6","0","0","0","0","0","0","0","0","0" +"6504","-1","","","","","Wingblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2933","14668","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","24","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","2","0","0","0","0","0","0","0","0","0" +"6505","-1","","","","","Crescent Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3680","18401","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","24","-1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","7","7","0","0","0","0","0","0","0","0" +"6506","-1","","","","","Infantry Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","436","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6507","-1","","","","","Infantry Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","223","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6508","-1","","","","","Infantry Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","172","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"6509","-1","","","","","Infantry Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6510","-1","","","","","Infantry Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","273","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6511","-1","","","","","Journeyman's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","609","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","0","0","0","0","0","0","0","0","0","6" +"6512","-1","","","","","Disciple's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","191","956","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","455","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","8" +"6513","-1","","","","","Disciple's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","141","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6514","-1","","","","","Disciple's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6515","-1","","","","","Disciple's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6516","-1","Learn Summon Imp.","","","","Imp Summoning Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6517","-1","","","","","Pioneer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","179","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6518","-1","","","","","Pioneer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","352","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6519","-1","","","","","Pioneer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","181","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6520","-1","","","","","Pioneer Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","167","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"6521","-1","","","","","Pioneer Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","237","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","6" +"6522","-1","","","","","Deviate Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6523","-1","","","","","Buckled Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","284","1422","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6524","-1","","","","","Studded Leather Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","574","2871","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6525","-1","","","","","Grunt's Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1033","5168","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","22" +"6526","-1","","","","","Battle Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2497","12487","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"6527","-1","","","","","Ancestral Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","1","0","0","0","0","0","0","0","0","8" +"6528","-1","","","","","Spellbinder Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1793","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","2","0","0","0","0","0","0","0","0","12" +"6529","-1","","","","","Shiny Bauble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6530","-1","","","","","Nightcrawlers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6531","-1","","","","","Barbaric Cloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","417","2086","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","4","0","0","0","0","0","0","0","0","13" +"6532","-1","","","","","Bright Baubles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6533","-1","","","","","Aquadynamic Fish Attractor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6534","-1","","","","","Forged Steel Bars","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6535","-1","","","","","Tablet of Verga","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6536","-1","","","","","Willow Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","488","2444","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","457","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6537","-1","","","","","Willow Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1052","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","791","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6538","-1","","","","","Willow Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","492","2462","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","457","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6539","-1","","","","","Willow Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","812","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","876","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6540","-1","","","","","Willow Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","431","2157","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","540","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6541","-1","","","","","Willow Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","818","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","708","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6542","-1","","","","","Willow Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","219","1099","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","959","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6543","-1","","","","","Willow Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","735","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1043","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6544","-1","Learn Summon Voidwalker.","","","","Voidwalker Summoning Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6545","-1","","","","","Soldier's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","676","3380","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","498","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6546","-1","","","","","Soldier's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2668","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","582","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6547","-1","","","","","Soldier's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","267","1339","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","750","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6548","-1","","","","","Soldier's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","233","1169","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","918","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6549","-1","","","","","Soldier's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102","510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"6550","-1","","","","","Soldier's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","204","1024","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1085","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6551","-1","","","","","Soldier's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2049","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","834","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6552","-1","","","","","Bard's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","601","3009","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","478","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","14" +"6553","-1","","","","","Bard's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2626","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","561","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"6554","-1","","","","","Bard's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","229","1146","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","729","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6555","-1","","","","","Bard's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104","522","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"6556","-1","","","","","Bard's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174","873","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1064","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6557","-1","","","","","Bard's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1512","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","813","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6558","-1","","","","","Bard's Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180","903","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","896","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"6559","-1","","","","","Bard's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2668","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1998","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","11" +"6560","-1","","","","","Soldier's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","616","3080","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1998","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","12" +"6561","-1","","","","","Seer's Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","3379","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","0","0","0","0","0","0","0","0","16" +"6562","-1","","","","","Shimmering Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","508","2543","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","793","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6563","-1","","","","","Shimmering Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","295","1479","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1045","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6564","-1","","","","","Shimmering Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2561","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","961","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6565","-1","","","","","Shimmering Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","394","1970","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","710","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6566","-1","","","","","Shimmering Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","411","2055","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"6567","-1","","","","","Shimmering Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1036","5182","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","459","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6568","-1","","","","","Shimmering Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","920","4604","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","542","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"6569","-1","","","","","Shimmering Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1044","5223","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","459","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6570","-1","","","","","Shimmering Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1816","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","878","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6571","-1","","","","","Scouting Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1167","5835","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2010","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6572","-1","","","","","Defender Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1323","6619","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2010","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6573","-1","","","","","Defender Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","938","4692","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","836","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6574","-1","","","","","Defender Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","568","2841","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","1088","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6575","-1","","","","","Defender Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","431","2156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1003","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6576","-1","","","","","Defender Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","572","2862","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","920","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6577","-1","","","","","Defender Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","649","3245","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","752","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6578","-1","","","","","Defender Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1303","6515","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","584","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6579","-1","","","","","Defender Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","667","3339","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"6580","-1","","","","","Defender Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","6562","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","500","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6581","-1","","","","","Scouting Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","422","2111","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","898","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6582","-1","","","","","Scouting Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","815","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","17" +"6583","-1","","","","","Scouting Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2126","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","1066","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","16" +"6584","-1","","","","","Scouting Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1416","7082","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","480","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"6585","-1","","","","","Scouting Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","446","2234","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","982","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"6586","-1","","","","","Scouting Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","505","2526","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","731","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"6587","-1","","","","","Scouting Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1146","5732","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","563","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"6588","-1","","","","","Scouting Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","458","2291","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"6589","-1","","","","","Viridian Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1056","4225","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3475","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6590","-1","","","","","Battleforge Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1830","9153","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","838","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6591","-1","","","","","Battleforge Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1007","5039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1089","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6592","-1","","","","","Battleforge Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2448","12240","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","502","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6593","-1","","","","","Battleforge Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","923","4615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1005","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6594","-1","","","","","Battleforge Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1121","5605","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","922","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6595","-1","","","","","Battleforge Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","5625","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","754","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6596","-1","","","","","Battleforge Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2258","11291","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","586","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6597","-1","","","","","Battleforge Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1707","8537","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1174","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6598","-1","","","","","Dervish Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2426","12132","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2022","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6599","-1","","","","","Battleforge Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2678","13393","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2022","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6600","-1","","","","","Dervish Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","867","4339","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","900","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6601","-1","","","","","Dervish Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1437","7185","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","817","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6602","-1","","","","","Dervish Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","874","4370","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1068","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","22" +"6603","-1","","","","","Dervish Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2335","11675","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","481","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6604","-1","","","","","Dervish Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","960","4801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","984","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","21" +"6605","-1","","","","","Dervish Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","971","4858","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","733","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6607","-1","","","","","Dervish Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2202","11012","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","565","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6608","-1","","","","","Bright Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1328","6644","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","4","0","0","0","0","0","0","0","0","22" +"6609","-1","","","","","Sage's Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2148","10740","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6610","-1","","","","","Sage's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2156","10780","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6611","-1","","","","","Sage's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","812","4064","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","880","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6612","-1","","","","","Sage's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1112","5563","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","796","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6613","-1","","","","","Sage's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","744","3722","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1048","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6614","-1","","","","","Sage's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6615","-1","","","","","Sage's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","824","4124","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","712","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"6616","-1","","","","","Sage's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2204","11020","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","545","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","27" +"6617","-1","","","","","Sage's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1371","6855","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1132","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"6618","-1","","","","","Monster - Orb","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6619","-1","","","","","Manual: The Path of Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6620","-1","","","","","Elaborate Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6621","-1","Teaches Taunt (Rank 1).","","","","Manual of Taunt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6622","-1","","","","","Sword of Zeal","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49863","249316","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"6623","-1","Learn Summon Succubus.","","","","Succubus Summoning Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6624","-1","","","","","Ken'zigla's Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6625","-1","","","","","Dirt-caked Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6626","-1","","","","","Dogran's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6627","-1","","","","","Mutant Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2620","13104","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","5","0","0","0","0","0","0","0","0","20" +"6628","-1","","","","","Raven's Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1852","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","3","0","0","0","0","0","0","0","0","17" +"6629","-1","","","","","Sporid Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","756","3781","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","5","4","0","0","0","0","0","0","0","0","18" +"6630","-1","","","","","Seedcloud Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2067","10337","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","6","0","0","0","0","0","0","0","0","20" +"6631","-1","","","","","Living Root","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4053","20266","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","2","0","0","0","0","0","0","0","0","20" +"6632","-1","","","","","Feyscale Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","511","2558","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","0","0","0","0","0","0","0","0","0","15" +"6633","-1","","","","","Butcher's Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2558","12791","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","3","0","0","0","0","0","0","0","0","18" +"6634","-1","","","","","Ritual Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6635","-1","","","","","Earth Sapta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6636","-1","","","","","Fire Sapta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6637","-1","","","","","Water Sapta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6638","-1","","","","","Air Sapta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6639","-1","","","","","Deprecated Rough Pebble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6640","-1","","","","","Felstalker Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6641","-1","","","","","Haunting Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4410","22052","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","26","-1","0","0","66","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","20" +"6642","-1","","","","","Phantom Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1880","9403","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","5","11","3","0","0","0","0","0","0","0","20" +"6643","-1","","","","","Bloated Smallfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6644","-1","","","","","Bloated Mackerel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6645","-1","","","","","Bloated Mud Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6646","-1","","","","","Bloated Albacore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","31","125","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6647","-1","","","","","Bloated Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"6648","-1","Teaches Stoneskin Totem (Rank 1).","","","","Stoneskin Totem Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6649","-1","Teaches Searing Totem (Rank 1).","","","","Searing Totem Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6650","-1","Teaches Healing Stream Totem (Rank 1).","","","","Healing Stream Totem Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6651","-1","Alterac Old-and-Yellow","","","","Broken Wine Bottle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1173","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","12","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","7" +"6652","-1","","","","","Reagent Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6653","-1","","","","","Torch of the Dormant Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6654","-1","","","","","Torch of the Eternal Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6655","-1","","","","","Glowing Ember","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6656","-1","","","","","Rough Quartz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6657","-1","","","","","Savory Deviate Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6658","-1","","","","","Example Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6659","-1","","","","","Scarab Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","541","2706","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"6660","-1","","","","","Julie's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36157","180789","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","55","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"6661","-1","Teaches you how to cook a Savory Deviate Delight.","","","","Recipe: Savory Deviate Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","460","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","185","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6662","-1","","","","","Elixir of Giant Growth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"6663","-1","Teaches you how to make an Elixir of Giant Growth.","","","","Recipe: Elixir of Giant Growth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","171","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6664","-1","","","","","Voodoo Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","892","4460","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","5","0","0","0","0","0","0","0","0","0" +"6665","-1","","","","","Hexed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","4477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","0" +"6666","-1","","","","","Dredge Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","830","4153","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","3","0","0","0","0","0","0","0","0","0" +"6667","-1","","","","","Engineer's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","992","4962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","0" +"6668","-1","","","","","Draftsman Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1245","6226","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","5","0","0","0","0","0","0","0","0","0" +"6669","-1","","","","","Sacred Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1378","5515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","4","0","0","0","0","0","0","0","0","0" +"6670","-1","","","","","Panther Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1672","8364","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","2","0","0","0","0","0","0","0","0","0" +"6671","-1","","","","","Juggernaut Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10341","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","0","0","0","0","0","0","0","0","0","0" +"6672","-1","Teaches you how to make a Flash Bomb.","","","","Schematic: Flash Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","202","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6673","-1","","","","","Test HP Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","0","0","-60","0","0","0","0","0","0","0","0","0","1" +"6674","-1","","","","","Test MP Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","4210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","0","0","-60","0","0","0","0","0","0","0","0","0","1" +"6675","-1","","","","","Tempered Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1049","5245","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","1","0","0","0","0","0","0","0","0","0" +"6676","-1","","","","","Constable Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2246","11230","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","3","0","0","0","0","0","0","0","0","0" +"6677","-1","","","","","Spellcrafter Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2401","12006","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6678","-1","","","","","Band of Elven Grace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","2710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","4","0","0","0","0","0","0","0","0","0" +"6679","-1","","","","","Armor Piercer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5823","29118","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","29","-1","0","0","49","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","0","0","0","0","0","0","0","0","0","24" +"6680","-1","","","","","Monster - Spear, Sharp Thin","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"6681","-1","","","","","Thornspike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6249","31247","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","27" +"6682","-1","","","","","Death Speaker Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2281","11406","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","3","8","6","12","0","0","0","0","0","0","26" +"6683","-1","","","","","Tyranis' Pendant (old)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2901","0","0","0","0","1","-1","0","0","41","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","3","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6684","-1","","","","","Snufflenose Command Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6685","-1","","","","","Death Speaker Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1573","7866","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","7","3","0","0","0","0","0","0","0","0","25" +"6686","-1","","","","","Tusken Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3152","15762","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","12","0","0","0","0","0","0","0","0","27" +"6687","-1","","","","","Corpsemaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9930","49653","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","34","-1","0","0","88","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","8","0","0","0","0","0","0","0","0","27" +"6688","-1","","","","","Whisperwind Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2471","12356","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","3","7","7","0","0","0","0","0","0","0","27" +"6689","-1","","","","","Wind Spirit Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8267","41337","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","32","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","15","3","0","0","0","0","0","0","0","27" +"6690","-1","","","","","Ferine Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4015","20078","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","13","0","0","0","0","0","0","0","0","29" +"6691","-1","","","","","Swinetusk Shank","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8866","44333","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","4","0","0","0","0","0","0","0","0","30" +"6692","-1","","","","","Pronged Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9788","48943","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","6","0","0","0","0","0","0","0","0","30" +"6693","-1","","","","","Agamaggan's Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1816","7265","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","5","0","0","0","0","0","0","0","0","27" +"6694","-1","","","","","Heart of Agamaggan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6309","31546","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","7","0","0","0","0","0","0","0","0","27" +"6695","-1","","","","","Stygian Bone Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3002","12010","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","4","0","0","0","0","0","0","0","0","27" +"6696","-1","","","","","Nightstalker Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5086","25431","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","32","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","27" +"6697","-1","","","","","Batwing Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2041","10208","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","10","0","0","0","0","0","0","0","0","27" +"6698","-1","","","","","Stone of Pierce","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6707","-1","","","","","Stone of Lapidis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6708","-1","","","","","Stone of Goodman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6709","-1","","","","","Moonglow Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","545","2726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","3","0","0","0","0","0","0","0","0","13" +"6710","-1","Teaches you how to craft a Moonglow Vest.","","","","Pattern: Moonglow Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","165","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6711","-1","","","","","Stone of Kurtz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6712","-1","","","","","Practice Lock","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6713","-1","","","","","Ripped Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6714","-1","","","","","Ez-Thro Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"6715","-1","","","","","Ruined Jumper Cables","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6716","-1","Teaches you how to make EZ-Thro Dynamite.","","","","Schematic: EZ-Thro Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","202","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6717","-1","","","","","Gaffer Jack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6718","-1","","","","","Electropeller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6719","-1","","","","","Windborne Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1097","5486","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","5","0","0","0","0","0","0","0","0","0" +"6720","-1","","","","","Spirit Hunter Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3219","16095","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","9","0","0","0","0","0","0","0","0","0" +"6721","-1","","","","","Chestplate of Kor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1419","7095","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","4","4","0","0","0","0","0","0","0","0" +"6722","-1","","","","","Beastial Manacles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1331","6657","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","6","0","0","0","0","0","0","0","0","0" +"6723","-1","","","","","Medal of Courage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8155","32620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","0","0","0","0","0","0","0","0","0","0" +"6724","-1","","","","","Stone of Backus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6725","-1","","","","","Marbled Buckler","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6105","30529","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","3","4","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","5","5","5","0","0","0","0","0","0","0" +"6726","-1","","","","","Razzeric's Customized Seatbelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2388","11941","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","1","12","0","0","0","0","0","0","0","0","0" +"6727","-1","","","","","Razzeric's Racing Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2996","14982","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","8","0","0","0","0","0","0","0","0","0" +"6728","-1","","","","","Stone of Brownell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","1" +"6729","-1","","","","","Fizzle's Zippy Lighter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7187","35939","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","38","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6730","-1","","","","","Ironforge Chain","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","2483","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","11" +"6731","-1","","","","","Ironforge Breastplate","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","871","4358","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","3","0","0","0","0","0","0","0","0","15" +"6732","-1","","","","","Gnomish Mechanic's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12109","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","0" +"6733","-1","","","","","Ironforge Gauntlets","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1145","5727","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"6734","-1","Teaches you how to make Ironforge Chain.","","","","Plans: Ironforge Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","164","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6735","-1","Teaches you how to make an Ironforge Breastplate.","","","","Plans: Ironforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6736","-1","Teaches you how to make Ironforge Gauntlets.","","","","Plans: Ironforge Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","164","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6737","-1","","","","","Dryleaf Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2805","14028","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","9","0","0","0","0","0","0","0","0","0" +"6738","-1","","","","","Bleeding Crescent","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7040","35204","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","35","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6739","-1","","","","","Cliffrunner's Aim","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2991","14959","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","29","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"6740","-1","","","","","Azure Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1001","5005","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","7","0","0","0","0","0","0","0","0","0" +"6741","-1","","","","","Orcish War Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3014","15072","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","29","-1","0","0","45","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6742","-1","","","","","Stonefist Girdle","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2830","14151","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","0" +"6743","-1","","","","","Sustaining Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1462","5850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","4","0","0","0","0","0","0","0","0","0" +"6744","-1","","","","","Gloves of Kapelan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1190","5950","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6745","-1","","","","","Swiftrunner Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1791","8958","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","6","0","0","0","0","0","0","0","0","0" +"6746","-1","","","","","Basalt Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7076","35380","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","8","0","0","0","0","0","0","0","0","0" +"6747","-1","","","","","Enforcer Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5015","25076","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"6748","-1","","","","","Monkey Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6749","-1","","","","","Tiger Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6750","-1","","","","","Snake Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","897","3590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","0" +"6751","-1","","","","","Mourning Shawl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7057","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","-3","7","0","0","0","0","0","0","0","0","0" +"6752","-1","","","","","Lancer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1602","8010","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","6","0","0","0","0","0","0","0","0","0" +"6753","-1","","","","","Feather Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6754","-1","","","","","Large Moneybag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6755","-1","","","","","A Small Container of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6756","-1","","","","","Jewelry Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1375","5500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6757","-1","","","","","Jaina's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4630","18520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","7","0","0","0","0","0","0","0","0","0" +"6766","-1","","","","","Flayed Demon Skin (old2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1480","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"6767","-1","","","","","Tyranis' Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6773","-1","","","","","Gelkis Marauder Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7366","36832","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","7","0","0","0","0","0","0","0","0","0" +"6774","-1","","","","","Uthek's Finger","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2885","11540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","5","5","0","0","0","0","0","0","0","0" +"6775","-1","","","","","Tome of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1642","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6776","-1","","","","","Tome of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1649","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"6777","-1","","","","","Tome of Righteousness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6778","-1","","","","","Tome of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6779","-1","","","","","Tome of Nobility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6780","-1","","","","","Lilac Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1560","7800","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","3","0","0","0","0","0","0","0","0","0" +"6781","-1","","","","","Bartleby's Mug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6782","-1","","","","","Marshal Haggard's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6783","-1","","","","","Dead-tooth's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6784","-1","","","","","Braced Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2032","10160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","7","0","0","0","0","0","0","0","0","0" +"6785","-1","By the hand of Khadgar","","","","Powers of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6786","-1","","","","","Simple Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","298","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6787","-1","","","","","White Woolen Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","466","2331","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","17" +"6788","-1","","","","","Magram Hunter's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3331","16658","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","0" +"6789","-1","","","","","Ceremonial Centaur Blanket","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4012","20061","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","9","0","0","0","0","0","0","0","0","0" +"6790","-1","","","","","Ring of Calm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1540","6160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","0","0","0","0","0","0","0","0","0","0" +"6791","-1","","","","","Hellion Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3464","17322","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","9","0","0","0","0","0","0","0","0","0" +"6792","-1","","","","","Sanguine Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4738","23693","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","8","0","0","0","0","0","0","0","0","0" +"6793","-1","","","","","Auric Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3157","15787","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","3","0","0","0","0","0","0","0","0","0" +"6794","-1","","","","","Stormfire Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2641","13206","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","4","0","0","0","0","0","0","0","0","0" +"6795","-1","","","","","White Swashbuckler's Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6796","-1","","","","","Red Swashbuckler's Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6797","-1","","","","","Eyepoker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6362","31813","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","37","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6798","-1","","","","","Blasting Hackbut","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6386","31934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","37","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"6799","-1","","","","","Vejrek's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6800","-1","","","","","Umbral Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6801","-1","","","","","Baroque Apron","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4456","22282","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","6","0","0","0","0","0","0","0","0","0" +"6802","-1","","","","","Sword of Omen","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18255","91277","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","44","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","3","0","0","0","0","0","0","0","0" +"6803","-1","","","","","Prophetic Cane","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","19540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","5","0","0","0","0","0","0","0","0","0" +"6804","-1","","","","","Windstorm Hammer","0.6","0","1.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8060","40302","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","34","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","0","0","0","0","0","0","0","0","0" +"6805","-1","","","","","Horn of Vorlus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6806","-1","","","","","Dancing Flame","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10209","51048","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","40","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","0" +"6807","-1","","","","","Frog Leg Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6808","-1","","","","","Elunite Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6809","-1","","","","","Elura's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6810","-1","","","","","Surena's Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6811","-1","","","","","Aquadynamic Fish Lens","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6812","-1","","","","","Case of Elunite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6826","-1","","","","","Brilliant Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","548","2195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6827","-1","","","","","Box of Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6828","-1","","","","","Visionary Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6268","31340","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","7","0","0","0","0","0","0","0","0","0" +"6829","-1","","","","","Sword of Serenity","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18714","93573","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","44","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","0","0","0","0","0","0","0","0","0" +"6830","-1","","","","","Bonebiter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23476","117382","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","44","-1","0","0","105","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","10","0","0","0","0","0","0","0","0","0" +"6831","-1","","","","","Black Menace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17522","87614","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","44","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"6832","-1","","","","","Cloak of Blight","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3770","18850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","0" +"6833","-1","","","","","White Tuxedo Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6834","-1","","","","","Black Tuxedo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6835","-1","","","","","Black Tuxedo Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","504","2521","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6836","-1","","","","","Dress Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6837","-1","","","","","Wedding Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6838","-1","","","","","Scorched Spider Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6839","-1","","","","","Charred Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6840","-1","","","","","Galvanized Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6841","-1","","","","","Vial of Phlogiston","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6842","-1","","","","","Furen's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6843","-1","","","","","Cask of Scalder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6844","-1","","","","","Burning Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6845","-1","","","","","Burning Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6846","-1","","","","","Defias Script","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","811","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6847","-1","","","","","Dark Iron Script","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6848","-1","","","","","Searing Coral","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6849","-1","","","","","Sunscorched Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6850","-1","","","","","Bloodscalp Scalp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6851","-1","","","","","Essence of the Exile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6852","-1","","","","","Eternal Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6866","-1","","","","","Symbol of Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6886","-1","","","","","Monster - Throwing Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"6887","-1","","","","","Spotted Yellowtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"6888","-1","","","","","Herb Baked Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"6889","-1","","","","","Small Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6890","-1","","","","","Smoked Bear Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"6891","-1","Teaches you how to cook a Herb Baked Egg.","","","","Recipe: Herb Baked Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6892","-1","Teaches you how to cook Smoked Bear Meat.","","","","Recipe: Smoked Bear Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","185","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6893","-1","","","","","Workshop Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6894","-1","","","","","Whirlwind Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6895","-1","","","","","Jordan's Smithing Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6896","-1","","","","","Twain Component Test","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","50","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","15" +"6897","-1","","","","","Manual: Path of the Berserker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"6898","-1","","","","","Orb of Soran'ruk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4132","16530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","25","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"6899","-1","","","","","Warlock Orb 35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","21530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6900","-1","","","","","Enchanted Gold Bloodrobe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4685","23427","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","256","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","17","0","0","0","0","0","0","0","0","0" +"6901","-1","","","","","Glowing Thresher Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1523","7616","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","3","0","0","0","0","0","0","0","0","24" +"6902","-1","","","","","Bands of Serra'kis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1052","5264","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","4","2","6","0","0","0","0","0","0","0","22" +"6903","-1","","","","","Gaze Dreamer Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1859","9297","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","7","6","0","0","0","0","0","0","0","0","23" +"6904","-1","","","","","Bite of Serra'kis","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4665","23326","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","28","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","23" +"6905","-1","","","","","Reef Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4813","24065","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","27","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","0","0","0","0","0","0","0","0","0","22" +"6906","-1","","","","","Algae Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1275","6377","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","4","0","0","0","0","0","0","0","0","23" +"6907","-1","","","","","Tortoise Armor","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1873","9365","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","6","0","0","0","0","0","0","0","0","0","20" +"6908","-1","","","","","Ghamoo-ra's Bind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","626","3133","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","4","0","0","0","0","0","0","0","0","20" +"6909","-1","","","","","Strike of the Hydra","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7155","35778","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","31","-1","0","0","67","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","24" +"6910","-1","","","","","Leech Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2298","11493","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","15","1","0","0","0","0","0","0","0","24" +"6911","-1","","","","","Moss Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1442","7210","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","5","0","0","0","0","0","0","0","0","24" +"6912","-1","","","","","Heartswood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6913","-1","","","","","Heartswood Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6914","-1","","","","","Soran'ruk Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6915","-1","","","","","Large Soran'ruk Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6916","-1","","","","","Tome of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1646","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"6926","-1","This letter is sealed","","","","Furen's Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6927","-1","","","","","Big Will's Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6928","-1","","","","","Bloodstone Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6929","-1","","","","","Bath'rah's Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","855","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6930","-1","","","","","Rod of Channeling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6931","-1","Faint letters on the cover of the locked book read, 'Tome of the Cabal.'","","","","Moldy Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6946","-1","","","","","Monster - Gun, Club","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","3","0","0","0","0","0","0","0","0","0","0","1" +"6947","-1","","","","","Instant Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","22","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"6948","-1","","","","","Hearthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6949","-1","","","","","Instant Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"6950","-1","","","","","Instant Poison III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"6951","-1","","","","","Mind-numbing Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"6952","-1","","","","","Thick Bear Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6953","-1","","","","","Verigan's Fist","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7459","37297","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","2","0","0","65","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","12","6","0","0","0","0","0","0","0","0" +"6966","-1","","","","","Elunite Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","693","3468","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6967","-1","","","","","Elunite Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","696","3481","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6968","-1","","","","","Elunite Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","698","3494","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6969","-1","","","","","Elunite Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3507","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6970","-1","","","","","Furen's Favor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","906","4531","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"6971","-1","","","","","Fire Hardened Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2221","11106","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"6972","-1","","","","","Fire Hardened Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3242","16214","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","5","0","0","0","0","0","0","0","0","0" +"6973","-1","","","","","Fire Hardened Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2465","12327","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"6974","-1","","","","","Fire Hardened Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1497","7485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"6975","-1","","","","","Whirlwind Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16766","83831","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","40","1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","14","0","0","0","0","0","0","0","0","0" +"6976","-1","","","","","Whirlwind Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17264","86321","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","15","0","0","0","0","0","0","0","0","0" +"6977","-1","","","","","Whirlwind Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17325","86627","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","15","0","0","0","0","0","0","0","0","0" +"6978","-1","","","","","Umbral Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","672","3363","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6979","-1","","","","","Haggard's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","3376","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6980","-1","","","","","Haggard's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","3389","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6981","-1","","","","","Umbral Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","680","3402","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6982","-1","","","","","Umbral Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3415","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6983","-1","","","","","Haggard's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3428","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6984","-1","","","","","Umbral Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3441","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6985","-1","","","","","Haggard's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"6986","-1","","","","","Crimson Lotus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"6987","-1","","","","","Fish Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","13","55","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6988","-1","Learn Summon Felhunter.","","","","Felhunter Summoning Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","96","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6989","-1","","","","","Vial of Hatefury Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6990","-1","","","","","Lesser Infernal Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6991","-1","","","","","Smoldering Coal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6992","-1","","","","","Jordan's Ore Shipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6993","-1","","","","","Jordan's Refined Ore Shipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6994","-1","","","","","Whitestone Oak Lumber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6995","-1","","","","","Corrupted Kor Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6996","-1","","","","","Jordan's Weapon Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","871","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6997","-1","A large number of papers from the 'Tome of the Cabal.'","","","","Tattered Manuscript","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"6998","-1","","","","","Nimbus Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","774","3872","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","0" +"6999","-1","","","","","Tome of the Cabal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7000","-1","","","","","Heartwood Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","3252","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","0" +"7001","-1","","","","","Gravestone Scepter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3535","17677","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","29","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","1","0","0","0","0","0","0","0","0","0","0" +"7002","-1","","","","","Arctic Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3028","15142","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","642","0","0","0","5","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","3","0","0","0","0","0","0","0","0","0" +"7003","-1","","","","","Beetle Clasps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","981","4906","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","0","0","0","0","0","0","0","0","0" +"7004","-1","","","","","Prelacy Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","985","4925","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7005","-1","","","","","Skinning Knife","0.6","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","1600","0","0","0","4","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7006","-1","","","","","Reconstructed Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7007","-1","","","","","Backus' Phat Lewt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7026","-1","","","","","Linen Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22","112","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7027","-1","","","","","Boots of Darkness","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","5626","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","0","0","0","0","0","0","0","0","0","23" +"7046","-1","","","","","Azure Silk Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1494","7473","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","23" +"7047","-1","","","","","Hands of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","4125","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","24" +"7048","-1","","","","","Azure Silk Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","745","3726","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","24" +"7049","-1","","","","","Truefaith Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","914","4570","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","0","0","0","0","0","0","0","0","0","25" +"7050","-1","","","","","Silk Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","999","4995","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","27" +"7051","-1","","","","","Earthen Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2696","13481","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","6","0","0","0","0","0","0","0","0","29" +"7052","-1","","","","","Azure Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1488","7440","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","30" +"7053","-1","","","","","Azure Silk Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2240","11201","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","30" +"7054","-1","","","","","Robe of Power","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4701","23505","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","8","0","0","0","0","0","0","0","0","33" +"7055","-1","","","","","Crimson Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1504","7520","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","6","0","0","0","0","0","0","0","0","30" +"7056","-1","","","","","Crimson Silk Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2314","11574","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","31" +"7057","-1","","","","","Green Silken Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2323","11618","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","0","0","0","0","0","0","0","0","0","31" +"7058","-1","","","","","Crimson Silk Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2052","10263","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","32" +"7059","-1","","","","","Crimson Silk Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2781","13906","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","33" +"7060","-1","","","","","Azure Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2791","13958","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","33" +"7061","-1","","","","","Earthen Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2017","10088","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"7062","-1","","","","","Crimson Silk Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12151","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","34" +"7063","-1","","","","","Crimson Silk Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4741","23707","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","15","6","0","0","0","0","0","0","0","0","36" +"7064","-1","","","","","Crimson Silk Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2569","12849","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","37" +"7065","-1","","","","","Green Silk Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2398","11990","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","28" +"7067","-1","","","","","Elemental Earth","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7068","-1","","","","","Elemental Fire","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7069","-1","","","","","Elemental Air","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7070","-1","","","","","Elemental Water","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7071","-1","","","","","Iron Buckle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7072","-1","","","","","Naga Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7073","-1","","","","","Broken Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7074","-1","","","","","Chipped Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7075","-1","","","","","Core of Earth","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7076","-1","","","","","Essence of Earth","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7077","-1","","","","","Heart of Fire","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7078","-1","","","","","Essence of Fire","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7079","-1","","","","","Globe of Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7080","-1","","","","","Essence of Water","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7081","-1","","","","","Breath of Wind","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7082","-1","","","","","Essence of Air","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7083","-1","","","","","Purified Kor Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7084","-1","Teaches you how to sew Crimson Silk Shoulders.","","","","Pattern: Crimson Silk Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7085","-1","Teaches you how to sew Azure Shoulders.","","","","Pattern: Azure Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7086","-1","Teaches you how to sew an Earthen Silk Belt.","","","","Pattern: Earthen Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","197","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7087","-1","Teaches you how to sew a Crimson Silk Cloak.","","","","Pattern: Crimson Silk Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","197","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7088","-1","Teaches you how to sew a Crimson Silk Robe.","","","","Pattern: Crimson Silk Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","197","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7089","-1","Teaches you how to sew an Azure Silk Cloak.","","","","Pattern: Azure Silk Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","197","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7090","-1","Teaches you how to sew Green Silk Armor.","","","","Pattern: Green Silk Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","197","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7091","-1","Teaches you how to sew Truefaith Gloves.","","","","Pattern: Truefaith Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","197","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7092","-1","Teaches you how to sew Hands of Darkness.","","","","Pattern: Hands of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","197","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7093","-1","Teaches you how to sew Boots of Darkness.","","","","Pattern: Boots of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","197","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7094","-1","","","","","Driftwood Branch","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174","872","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","10","-1","0","0","15","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7095","-1","","","","","Bog Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7096","-1","","","","","Plucked Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7097","-1","","","","","Leg Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7098","-1","","","","","Splintered Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7099","-1","","","","","Severed Pincer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7100","-1","","","","","Sticky Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7101","-1","","","","","Bug Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7106","-1","","","","","Zodiac Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6174","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","7","0","0","0","0","0","0","0","0","0" +"7107","-1","","","","","Belt of the Stars","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1858","9294","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7108","-1","","","","","Infantry Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","209","1046","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","6278","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","6" +"7109","-1","","","","","Pioneer Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74","372","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7110","-1","","","","","Silver-thread Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2070","10350","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","4","0","0","0","0","0","0","0","0","26" +"7111","-1","","","","","Nightsky Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3329","16648","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","8","0","0","0","0","0","0","0","32" +"7112","-1","","","","","Aurora Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4547","22735","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","15","0","0","0","0","0","0","0","0","36" +"7113","-1","","","","","Mistscape Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6707","33535","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","18","0","0","0","0","0","0","0","0","41" +"7114","-1","Teaches you how to sew Azure Silk Gloves.","","","","Pattern: Azure Silk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","197","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7115","-1","","","","","Heirloom Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","683","3415","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7116","-1","","","","","Heirloom Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","685","3428","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7117","-1","","","","","Heirloom Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","688","3441","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7118","-1","","","","","Heirloom Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7119","-1","This antenna won't twitch forever","","","","Twitching Antenna","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7120","-1","","","","","Ruga's Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","896","4480","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"7126","-1","","","","","Smoky Iron Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7127","-1","","","","","Powdered Azurite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7128","-1","","","","","Uncloven Satyr Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7129","-1","","","","","Brutal Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1546","7734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7130","-1","","","","","Brutal Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2328","11643","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","8","7","0","0","0","0","0","0","0","0","0" +"7131","-1","","","","","Dragonmaw Shinbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7132","-1","","","","","Brutal Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2338","11692","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","7","0","0","0","0","0","0","0","0","0" +"7133","-1","","","","","Brutal Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3098","15494","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","5","0","0","0","0","0","0","0","0","0" +"7134","-1","","","","","Sturdy Dragonmaw Shinbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7135","-1","","","","","Broken Dragonmaw Shinbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7146","-1","","","","","The Scarlet Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7148","-1","","","","","Goblin Jumper Cables","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","85","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7166","-1","","","","","Copper Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","973","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","11","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7170","-1","","","","","Twain Random Sword FOO","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","692","3462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","20","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","15" +"7171","-1","","","","","TWAIN TEST ITEM VISUAL SWORD","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7187","-1","","","","","VanCleef's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","979","4898","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","20" +"7188","-1","","","","","Stormwind Guard Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1485","7426","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","4","0","0","0","0","0","0","0","0","19" +"7189","-1","","","","","Goblin Rocket Boots","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4712","23563","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7190","-1","","","","","Scorched Rocket Boots","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7191","-1","","","","","Fused Wiring","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7192","-1","Teaches you how to make Goblin Rocket Boots.","","","","Schematic: Goblin Rocket Boots","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","202","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7206","-1","","","","","Mirror Lake Water Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7207","-1","","","","","Jennea's Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7208","-1","","","","","Tazan's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7209","-1","","","","","Tazan's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","319","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7226","-1","","","","","Mage-tastic Gizmonitor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7227","-1","","","","","Balnir Snapdragons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7228","-1","","","","","Tigule's Strawberry Ice Cream","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7229","-1","","","","","Explorer's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","285","1428","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","1","0","0","0","0","0","0","0","0","0" +"7230","-1","","","","","Smite's Mighty Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3103","15516","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","23","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","4","0","0","0","0","0","0","0","0","18" +"7231","-1","","","","","Astor's Letter of Introduction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7247","-1","","","","","Chest of Containment Coffers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7248","-1","","","","","Twain TEST Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","341","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","7" +"7249","-1","","","","","Charged Rift Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7266","-1","","","","","Ur's Treatise on Shadow Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7267","-1","","","","","Pristine Spider Silk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7268","-1","","","","","Xavian Water Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7269","-1","","","","","Deino's Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7270","-1","","","","","Laughing Sister's Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7271","-1","","","","","Flawless Ivory Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7272","-1","","","","","Bolt Charged Bramble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7273","-1","","","","","Witherbark Totem Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7274","-1","By Magus Tirth","","","","Rituals of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7275","-1","","","","","The Agamaggan Scrolls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7276","-1","","","","","Handstitched Leather Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34","170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7277","-1","","","","","Handstitched Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","143","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"7278","-1","","","","","Light Leather Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7279","-1","","","","","Small Leather Ammo Pouch","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","8","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7280","-1","","","","","Rugged Leather Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","814","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","6" +"7281","-1","","","","","Light Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85","427","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"7282","-1","","","","","Light Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","599","2999","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","3","0","0","0","0","0","0","0","0","14" +"7283","-1","","","","","Black Whelp Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2077","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","15" +"7284","-1","","","","","Red Whelp Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","586","2934","1","1","1","64","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","19" +"7285","-1","","","","","Nimble Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2945","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"7286","-1","","","","","Black Whelp Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7287","-1","","","","","Red Whelp Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7288","-1","Teaches you how to craft Rugged Leather Pants.","","","","Pattern: Rugged Leather Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","165","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7289","-1","Teaches you how to craft a Black Whelp Cloak.","","","","Pattern: Black Whelp Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","650","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7290","-1","Teaches you how to craft Red Whelp Gloves.","","","","Pattern: Red Whelp Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7291","-1","","","","","Infernal Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7292","-1","","","","","Filled Containment Coffer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7293","-1","","","","","Dalaran Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7294","-1","","","","","Andron's Ledger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7295","-1","","","","","Tazan's Logbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7296","-1","","","","","Extinguished Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","56","225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"7297","-1","","","","","Morbent's Bane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7298","-1","","","","","Blade of Cunning","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","469","2345","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","13","8","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","0","0","0","0","0","0","0","0","0","0" +"7299","-1","","","","","Test - Magic Stone Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","516","2583","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","25" +"7306","-1","","","","","Fenwick's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7307","-1","","","","","Flesh Eating Worm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","250","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7308","-1","Use near a mana rift disturbance","","","","Cantation of Manifestation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7309","-1","","","","","Dalaran Status Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7326","-1","","","","","Thun'grim's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","696","3480","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","15","1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7327","-1","","","","","Thun'grim's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","698","3493","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","15","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7328","-1","","","","","Thun'grim's Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3506","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","15","1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7329","-1","","","","","Thun'grim's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","703","3519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","15","1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7330","-1","","","","","Infiltrator Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3923","19615","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2028","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7331","-1","","","","","Phalanx Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4330","21654","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2034","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7332","-1","","","","","Regal Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6692","33462","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","465","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7333","-1","","","","","Overseer's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7334","-1","","","","","Efflorescent Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1544","7721","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","9","0","0","0","0","0","0","0","0","0" +"7335","-1","","","","","Grizzly Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1937","9686","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","0","0","0","0","0","0","0","0","0","0" +"7336","-1","","","","","Wildwood Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1509","7549","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","1","0","0","0","0","0","0","0","0","0" +"7337","-1","It's huge!","","","","The Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7338","-1","It's blue, wait, it's green!","","","","Mood Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7339","-1","Hey, it's still a diamond.","","","","Miniscule Diamond Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7340","-1","Will you marry me?","","","","Flawless Diamond Solitaire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7341","-1","Trust me, she'll know.","","","","Cubic Zirconia Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7342","-1","Nothing says sorry like Piffeny.","","","","Silver Piffeny Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7343","-1","","","","","Bingles' Wrench","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7344","-1","","","","","Torch of Holy Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7345","-1","","","","","Bingles' Screwdriver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7346","-1","","","","","Bingles' Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7347","-1","","","","","Bingles' Cog Inverter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7348","-1","","","","","Fletcher's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3454","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"7349","-1","","","","","Herbalist's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","861","4309","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"7350","-1","","","","","Disciple's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7351","-1","","","","","Disciple's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","291","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7352","-1","","","","","Earthen Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1306","6533","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","22" +"7353","-1","","","","","Elder's Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2998","14991","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7354","-1","","","","","Elder's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1865","9325","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","797","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7355","-1","","","","","Elder's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5156","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1049","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7356","-1","","","","","Elder's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7056","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7357","-1","","","","","Elder's Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","9379","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","630","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7358","-1","","","","","Pilferer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","885","4429","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","23" +"7359","-1","","","","","Heavy Earthen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","978","4890","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"7360","-1","Teaches you how to craft Dark Leather Gloves.","","","","Pattern: Dark Leather Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","165","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7361","-1","Teaches you how to craft Herbalist's Gloves.","","","","Pattern: Herbalist's Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","165","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7362","-1","Teaches you how to craft Earthen Leather Shoulders.","","","","Pattern: Earthen Leather Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","165","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7363","-1","Teaches you how to craft Pilferer's Gloves.","","","","Pattern: Pilferer's Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","165","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7364","-1","Teaches you how to craft Heavy Earthen Gloves.","","","","Pattern: Heavy Earthen Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","165","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7365","-1","","","","","Gnoam Sprecklesprocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7366","-1","","","","","Elder's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1098","5491","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","713","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7367","-1","","","","","Elder's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1818","9094","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1133","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7368","-1","","","","","Elder's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2677","13385","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","546","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7369","-1","","","","","Elder's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14777","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7370","-1","","","","","Elder's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1012","5064","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7371","-1","","","","","Heavy Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7372","-1","","","","","Heavy Leather Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7373","-1","","","","","Dusky Leather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15485","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","28" +"7374","-1","","","","","Dusky Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3760","18804","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","0","0","0","0","0","0","0","0","0","30" +"7375","-1","","","","","Green Whelp Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3774","18870","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","30" +"7376","-1","","","","","Bingles' Blastencapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7377","-1","","","","","Frost Leather Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2269","11347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7378","-1","","","","","Dusky Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2146","10732","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","32" +"7386","-1","","","","","Green Whelp Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11938","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","33" +"7387","-1","","","","","Dusky Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2587","12939","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"7388","-1","","","","","Skull Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7389","-1","","","","","Venture Co. Ledger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7390","-1","","","","","Dusky Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4237","21189","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","3","0","0","0","0","0","0","0","0","35" +"7391","-1","","","","","Swift Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4253","21266","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","35" +"7392","-1","","","","","Green Whelp Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7406","-1","","","","","Infiltrator Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6862","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","902","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7407","-1","","","","","Infiltrator Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3666","18334","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","483","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7408","-1","","","","","Infiltrator Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2281","11405","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1154","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7409","-1","","","","","Infiltrator Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2289","11446","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","818","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7410","-1","","","","","Infiltrator Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1174","5874","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1070","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7411","-1","","","","","Infiltrator Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1415","7077","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","986","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7412","-1","","","","","Infiltrator Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1302","6512","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","734","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7413","-1","","","","","Infiltrator Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2157","10786","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","650","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7414","-1","","","","","Infiltrator Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3176","15880","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","567","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7415","-1","","","","","Dervish Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1153","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","24" +"7416","-1","","","","","Phalanx Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1442","7213","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1091","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7417","-1","","","","","Phalanx Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2903","14519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","840","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7418","-1","","","","","Phalanx Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4256","21281","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","504","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7419","-1","","","","","Phalanx Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1326","6631","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7420","-1","","","","","Phalanx Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2658","13290","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","671","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7421","-1","","","","","Phalanx Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1778","8892","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","755","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7422","-1","","","","","Phalanx Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1622","8114","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","923","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"7423","-1","","","","","Phalanx Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3941","19709","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","588","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7424","-1","","","","","Phalanx Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2709","13546","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1175","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","28" +"7425","-1","","","","","Cyrik's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7426","-1","","","","","Cerulean Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1243","4975","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3476","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","25" +"7427","-1","","","","","Cerulean Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3788","15155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","3506","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","26" +"7428","-1","","","","","Shadowcat Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7429","-1","","","","","Twilight Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4620","23100","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","464","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7430","-1","","","","","Twilight Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4194","20974","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","464","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7431","-1","","","","","Twilight Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3899","19496","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","547","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7432","-1","","","","","Twilight Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2718","13590","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","631","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7433","-1","","","","","Twilight Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1684","8421","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7434","-1","","","","","Twilight Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2536","12680","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","799","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7435","-1","","","","","Twilight Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2749","13747","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1135","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7436","-1","","","","","Twilight Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2111","10559","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","966","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7437","-1","","","","","Twilight Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1554","7772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1050","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7438","-1","","","","","Twilight Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1560","7802","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","882","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7439","-1","","","","","Sentinel Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5425","27127","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","485","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7440","-1","","","","","Sentinel Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5042","25212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","568","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7441","-1","","","","","Sentinel Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3514","17574","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","652","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7442","-1","","","","","Gyromast's Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7443","-1","","","","","Sentinel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2243","11218","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","736","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7444","-1","","","","","Sentinel Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3377","16888","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","820","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7445","-1","","","","","Sentinel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3660","18304","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1156","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7446","-1","","","","","Sentinel Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2474","12370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","987","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7447","-1","","","","","Sentinel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10344","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1071","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7448","-1","","","","","Sentinel Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2076","10381","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","903","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7449","-1","Teaches you how to craft Dusky Leather Leggings.","","","","Pattern: Dusky Leather Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7450","-1","Teaches you how to craft Green Whelp Armor.","","","","Pattern: Green Whelp Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","165","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7451","-1","Teaches you how to craft Green Whelp Bracers.","","","","Pattern: Green Whelp Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7452","-1","Teaches you how to craft Dusky Boots.","","","","Pattern: Dusky Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7453","-1","Teaches you how to craft Swift Boots.","","","","Pattern: Swift Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7454","-1","","","","","Knight's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5915","29575","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","505","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7455","-1","","","","","Knight's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5937","29688","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","589","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7456","-1","","","","","Knight's Headguard","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4139","20695","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","673","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7457","-1","","","","","Knight's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2564","12823","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","757","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7458","-1","","","","","Knight's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3983","19916","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","841","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7459","-1","","","","","Knight's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4317","21589","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1177","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7460","-1","","","","","Knight's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","10004","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1008","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"7461","-1","","","","","Knight's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2429","12149","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1092","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"7462","-1","","","","","Knight's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2682","13412","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","925","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7463","-1","","","","","Sentinel Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6202","31013","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","2040","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","33" +"7464","-1","","","","","Glyphs of Summoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7465","-1","","","","","Knight's Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6747","33736","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","2040","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7466","-1","","","","","Vermilion Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1921","7685","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3479","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"7467","-1","","","","","Vermilion Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5658","22635","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3507","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7468","-1","","","","","Regal Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6763","33816","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","465","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7469","-1","","","","","Regal Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6284","31422","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","549","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7470","-1","","","","","Regal Wizard Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3668","18342","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","632","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7471","-1","","","","","Regal Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2455","12276","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","716","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7472","-1","","","","","Regal Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3423","17116","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","800","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7473","-1","","","","","Regal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3710","18554","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1136","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7474","-1","","","","","Regal Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3281","16407","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","968","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7475","-1","","","","","Regal Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2371","11857","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1052","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7476","-1","","","","","Regal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2203","11019","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","884","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7477","-1","","","","","Ranger Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8125","40625","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","486","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7478","-1","","","","","Ranger Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6991","34958","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","570","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7479","-1","","","","","Ranger Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4873","24365","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","653","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7480","-1","","","","","Ranger Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3019","15095","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","737","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7481","-1","","","","","Ranger Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4908","24541","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","821","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7482","-1","","","","","Ranger Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4926","24631","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1157","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7483","-1","","","","","Ranger Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3390","16954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","989","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7484","-1","","","","","Ranger Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3062","15314","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1073","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7485","-1","","","","","Ranger Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3073","15368","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","905","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7486","-1","","","","","Captain's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9325","46629","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","507","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7487","-1","","","","","Captain's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8665","43329","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","591","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7488","-1","","","","","Captain's Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6038","30193","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","674","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7489","-1","","","","","Captain's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3740","18704","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","758","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7490","-1","","","","","Captain's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5680","28403","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","842","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7491","-1","","","","","Captain's Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6158","30792","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1179","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7492","-1","","","","","Captain's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3015","15077","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1009","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","34" +"7493","-1","","","","","Captain's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3268","16344","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1094","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7494","-1","","","","","Captain's Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3543","17718","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","926","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"7495","-1","","","","","Captain's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9558","47793","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7496","-1","","","","","Field Plate Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8882","44413","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","38" +"7497","-1","","","","","Ivory Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1983","7935","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","3480","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7498","-1","","","","","Top of Gelkak's Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7499","-1","","","","","Middle of Gelkak's Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7500","-1","","","","","Bottom of Gelkak's Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7506","-1","","","","","Gnomish Universal Remote","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7507","-1","","","","","Arcane Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7508","-1","","","","","Ley Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","0" +"7509","-1","","","","","Manaweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","553","2769","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","128","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","0","0","0","0","0","0","0","0","0","0" +"7510","-1","","","","","Lesser Spellfire Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","556","2780","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","128","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","0","0","0","0","0","0","0","0","0","0" +"7511","-1","","","","","Astral Knot Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1938","9691","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","6","0","0","0","0","0","0","0","0" +"7512","-1","","","","","Nether-lace Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1945","9727","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","6","6","0","0","0","0","0","0","0","0" +"7513","-1","","","","","Ragefire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9805","49028","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","40","128","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7514","-1","","","","","Icefury Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9842","49212","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","40","128","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7515","-1","","","","","Celestial Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","21530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","3","0","0","0","0","0","0","0","0","0","0" +"7516","-1","","","","","Tabetha's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","911","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7517","-1","","","","","Gossamer Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9372","46864","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","467","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7518","-1","","","","","Gossamer Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9406","47032","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","467","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7519","-1","","","","","Gossamer Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7635","38176","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","550","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7520","-1","","","","","Gossamer Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5747","28737","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","634","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7521","-1","","","","","Gossamer Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3560","17803","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","718","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7522","-1","","","","","Gossamer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4963","24815","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","801","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7523","-1","","","","","Gossamer Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4993","24965","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1138","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7524","-1","","","","","Gossamer Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4297","21487","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","969","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7525","-1","","","","","Gossamer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3106","15530","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1053","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7526","-1","","","","","Gossamer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3367","16836","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","886","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7527","-1","","","","","Cabalist Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11284","56424","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","488","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7528","-1","","","","","Cabalist Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9894","49471","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","571","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7529","-1","","","","","Cabalist Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6897","34486","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","655","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7530","-1","","","","","Cabalist Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4273","21366","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","739","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7531","-1","","","","","Cabalist Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6434","32171","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","823","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7532","-1","","","","","Cabalist Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6975","34876","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1159","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7533","-1","","","","","Cabalist Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4446","22232","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","990","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7534","-1","","","","","Cabalist Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4016","20081","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1074","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7535","-1","","","","","Cabalist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4353","21769","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","907","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7536","-1","","","","","Champion's Wall Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13048","65244","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","2058","0","0","0","0","0","0","0","0","0","0","1493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7537","-1","","","","","Gothic Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14012","70063","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","44" +"7538","-1","","","","","Champion's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12322","61613","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","508","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7539","-1","","","","","Champion's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12692","63462","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","592","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7540","-1","","","","","Champion's Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8845","44228","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","676","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7541","-1","","","","","Champion's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5479","27396","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","760","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7542","-1","","","","","Champion's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8284","41423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","844","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7543","-1","","","","","Champion's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8123","40619","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1180","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"7544","-1","","","","","Champion's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4296","21484","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1011","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","39" +"7545","-1","","","","","Champion's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4658","23291","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1095","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7546","-1","","","","","Champion's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5050","25251","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","928","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7547","-1","","","","","Onyx Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3092","12370","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3482","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7548","-1","","","","","Onyx Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6507","26030","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3511","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","41" +"7549","-1","","","","","Fairy's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6420","25680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","5","5","0","0","0","0","0","0","0","42" +"7550","-1","","","","","Warrior's Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7645","30580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","10","0","0","0","0","0","0","0","0","42" +"7551","-1","","","","","Entwined Opaline Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7145","28580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","3","0","0","0","0","0","0","0","0","42" +"7552","-1","","","","","Falcon's Hook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","9","0","0","0","0","0","0","0","0","39" +"7553","-1","","","","","Band of the Unicorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7554","-1","","","","","Willow Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","4158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2002","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","14" +"7555","-1","","","","","Regal Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7123","28493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","45","-1","0","2050","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7556","-1","","","","","Twilight Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5387","21548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7557","-1","","","","","Gossamer Rod","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7596","30385","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2062","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","45" +"7558","-1","","","","","Shimmering Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1609","6438","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","20" +"7559","-1","","","","","Runic Cane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","666","2665","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","12" +"7560","-1","Teaches you how to make a Gnomish Universal Remote.","","","","Schematic: Gnomish Universal Remote","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7561","-1","Teaches you how to make Goblin Jumper Cables.","","","","Schematic: Goblin Jumper Cables","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","202","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7566","-1","","","","","Agamand Family Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7567","-1","","","","","Agamand Family Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7568","-1","","","","","Agamand Family Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7569","-1","","","","","Agamand Family Mace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7586","-1","","","","","Tharnariun's Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7587","-1","","","","","Thun'grim's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","931","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7606","-1","","","","","Polar Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","557","2789","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","0" +"7607","-1","","","","","Sable Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1399","6998","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","22","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7608","-1","","","","","Seer's Fine Stein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1106","4425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","1","0","0","0","0","0","0","0","0","16" +"7609","-1","","","","","Elder's Amber Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4210","16843","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","30" +"7610","-1","","","","","Aurora Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5811","23245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","4","0","0","0","0","0","0","0","0","36" +"7611","-1","","","","","Mistscape Stave","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7364","29458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","9","0","0","0","0","0","0","0","0","41" +"7612","-1","","","","","Monster - Axe, 2H Special NPC (Herod)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7613","-1","Teaches you how to craft Green Leather Armor.","","","","Pattern: Green Leather Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","165","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7626","-1","","","","","Bundle of Furs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7627","-1","","","","","Dolanaar Delivery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7628","-1","A sealed letter","","","","Nondescript Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7629","-1","","","","","Ukor's Burden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7646","-1","","","","","Crate of Inn Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7666","-1","","","","","Shattered Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2198","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","37" +"7667","-1","","","","","Talvash's Phial of Scrying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7668","-1","","","","","Bloodstained Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","951","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7669","-1","","","","","Shattered Necklace Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7670","-1","","","","","Shattered Necklace Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7671","-1","","","","","Shattered Necklace Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7672","-1","","","","","Shattered Necklace Power Source","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7673","-1","","","","","Talvash's Enhancing Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8990","35961","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","10","0","0","0","0","0","0","0","0" +"7674","-1","Sealed","","","","Delivery to Mathias","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7675","-1","","","","","Defias Shipping Schedule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7676","-1","","","","","Thistle Tea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"7678","-1","Teaches you how to brew a Thistle Tea.","","","","Recipe: Thistle Tea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7679","-1","","","","","Shrike Bat Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7680","-1","","","","","Jadespine Basilisk Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7682","-1","","","","","Torturing Poker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7678","38392","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","34","-1","0","0","26","5","0","0","0","49","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","29" +"7683","-1","","","","","Bloody Brass Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7916","39584","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","29" +"7684","-1","","","","","Bloodmage Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2621","13109","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","8","4","10","0","0","0","0","0","0","0","30" +"7685","-1","","","","","Orb of the Forgotten Seer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","33" +"7686","-1","","","","","Ironspine's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4308","17235","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","30" +"7687","-1","","","","","Ironspine's Fist","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8836","44181","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","35","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","0","0","0","0","0","0","0","0","0","30" +"7688","-1","","","","","Ironspine's Ribcage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5320","26602","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","6","3","0","0","0","0","0","0","0","30" +"7689","-1","","","","","Morbid Dawn","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11124","55622","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","10","0","0","0","0","0","0","0","0","30" +"7690","-1","","","","","Ebon Vise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2232","11164","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","4","6","8","0","0","0","0","0","0","0","30" +"7691","-1","","","","","Embalmed Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2689","13445","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","11","7","0","0","0","0","0","0","0","0","30" +"7706","-1","","","","","Monster - Mace2H, Special NPC (Mograine)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7707","-1","","","","","Twain Test","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5610","28054","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","40","1","0","0","47","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","35" +"7708","-1","","","","","Necrotic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6649","33249","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","35","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","30" +"7709","-1","","","","","Blighted Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3559","17797","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","7","0","0","0","0","0","0","0","0","0","30" +"7710","-1","","","","","Loksey's Training Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12279","61399","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","77","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"7711","-1","","","","","Robe of Doan","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1405","7027","1","0.3","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","4","13","0","0","0","0","0","0","0","0","33" +"7712","-1","","","","","Mantle of Doan","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1057","5289","1","0.3","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","7","9","0","0","0","0","0","0","0","33" +"7713","-1","","","","","Illusionary Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4777","23886","1","0.3","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","39","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","7","10","0","0","0","0","0","0","0","34" +"7714","-1","","","","","Hypnotic Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3835","19175","1","0.3","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","39","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","3","0","0","0","0","0","0","0","0","34" +"7715","-1","","","","","Onin's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7717","-1","","","","","Ravager","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18923","94617","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","42","-1","0","0","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","37" +"7718","-1","","","","","Herod's Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34339","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","15","0","0","0","0","0","0","0","0","37" +"7719","-1","","","","","Raging Berserker's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6863","34315","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","8","13","0","0","0","0","0","0","0","0","37" +"7720","-1","","","","","Whitemane's Chapeau","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5356","26783","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","9","0","0","0","0","0","0","0","39" +"7721","-1","","","","","Hand of Righteousness","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17922","89612","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","44","-1","0","0","56","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","0","0","0","0","0","0","0","0","0","39" +"7722","-1","","","","","Triune Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9295","37180","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","7","7","0","0","0","0","0","0","0","39" +"7723","-1","","","","","Mograine's Might","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22567","112837","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","17","0","0","0","0","0","0","0","0","39" +"7724","-1","","","","","Gauntlets of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27180","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","39" +"7725","-1","","","","","Tabard of the Scarlet Crusade DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7143","28575","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7726","-1","","","","","Aegis of the Scarlet Commander","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11681","58406","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","12","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","8","7","0","0","0","0","0","0","0","39" +"7727","-1","","","","","Watchman Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2488","12444","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","3","11","4","0","0","0","0","0","0","0","27" +"7728","-1","","","","","Beguiler Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3223","16119","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","8","7","12","0","0","0","0","0","0","0","29" +"7729","-1","","","","","Chesterfall Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5514","27573","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","33","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","28" +"7730","-1","","","","","Cobalt Crusher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10146","50733","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","34","-1","0","0","74","5","0","0","0","111","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","29" +"7731","-1","","","","","Ghostshard Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","0","0","0","0","0","0","0","0","0","30" +"7733","-1","","","","","Staff of Prehistoria","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7734","-1","","","","","Six Demon Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15495","61980","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","46" +"7735","-1","","","","","Jannok's Rose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7736","-1","","","","","Fight Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11971","59855","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","39","-1","0","0","41","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","0","0","0","0","0","0","0","0","34" +"7737","-1","Written in a language you cannot decipher.","","","","Sethir's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7738","-1","","","","","Evergreen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1059","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"7739","-1","","","","","Timberland Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","318","1594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"7740","-1","","","","","Gni'kiv Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7741","-1","","","","","The Shaft of Tsol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7742","-1","Teaches you how to make a Gnomish Cloaking Device.","","","","Schematic: Gnomish Cloaking Device","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7746","-1","","","","","Explorers' League Commendation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8430","33720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7747","-1","","","","","Vile Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7754","38774","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","0","0","0","0","0","0","0","0","0","0" +"7748","-1","","","","","Forcestone Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10862","54313","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","9","0","0","0","0","0","0","0","0","0" +"7749","-1","","","","","Omega Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","19540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7750","-1","","","","","Mantle of Woe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1712","8563","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","7","0","0","0","0","0","0","0","0","0" +"7751","-1","","","","","Vorrel's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1614","8073","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","8","0","0","0","0","0","0","0","0","0" +"7752","-1","","","","","Dreamslayer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6903","34515","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","33","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"7753","-1","","","","","Bloodspiller","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7874","39372","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","32","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","27" +"7754","-1","","","","","Harbinger Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1959","9799","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","3","2","0","0","0","0","0","0","0","25" +"7755","-1","","","","","Flintrock Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4140","20702","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","10","10","0","0","0","0","0","0","0","33" +"7756","-1","","","","","Dog Training Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1927","9636","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","8","0","0","0","0","0","0","0","0","29" +"7757","-1","","","","","Windweaver Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12875","64375","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","37","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","7","0","0","0","0","0","0","0","0","32" +"7758","-1","","","","","Ruthless Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15074","75370","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","39","-1","0","0","75","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","19","0","0","0","0","0","0","0","0","34" +"7759","-1","","","","","Archon Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6724","33620","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","8","12","0","0","0","0","0","0","0","33" +"7760","-1","","","","","Warchief Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6074","30371","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","19","5","0","0","0","0","0","0","0","34" +"7761","-1","","","","","Steelclaw Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11290","56454","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","38","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","8","0","0","0","0","0","0","0","0","33" +"7766","-1","","","","","Empty Brown Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7767","-1","","","","","Empty Blue Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7768","-1","","","","","Empty Red Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7769","-1","","","","","Filled Brown Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7770","-1","","","","","Filled Blue Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7771","-1","","","","","Filled Red Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7786","-1","","","","","Headsplitter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5605","28028","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","30","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","5","0","0","0","0","0","0","0","0","25" +"7787","-1","","","","","Resplendent Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3960","19802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","680","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","26" +"7806","-1","","","","","Lollipop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7807","-1","","","","","Candy Bar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7808","-1","","","","","Chocolate Square","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7809","-1","","","","","Easter Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1024","5124","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7810","-1","","","","","Vial of Purest Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7811","-1","","","","","Remaining Drops of Purest Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7812","-1","","","","","Corrupt Manifestation's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7813","-1","","","","","Shard of Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7826","-1","","","","","Monster - Staff, Special NPC (Whitemane)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"7846","-1","","","","","Crag Coyote Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7847","-1","","","","","Buzzard Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7848","-1","","","","","Rock Elemental Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7866","-1","","","","","Empty Thaumaturgy Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7867","-1","","","","","Vessel of Dragon's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7868","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","Thieven' Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","16","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7869","-1","","","","","Lucius's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","50","242","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7870","-1","Inside this lockbox are the empty thaumaturgy vessels.","","","","Thaumaturgy Vessel Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7871","-1","","","","","Token of Thievery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"7872","-1","","","","","Rusty Thieves' Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7886","-1","You do not understand the writing in the journal.","","","","Untranslated Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7887","-1","","","","","Necklace and Gem Salvage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7888","-1","","","","","Jarkal's Enhancing Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8990","35961","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","10","0","0","0","0","0","0","0","0" +"7906","-1","","","","","Horns of Nez'ra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7907","-1","","","","","Certificate of Thievery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","992","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7908","-1","","","","","Klaven Mortwake's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1151","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7909","-1","","","","","Aquamarine","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7910","-1","","","","","Star Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7911","-1","","","","","Truesilver Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7912","-1","","","","","Solid Stone","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7913","-1","","","","","Barbaric Iron Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","12503","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","0","0","0","0","0","0","0","0","27" +"7914","-1","","","","","Barbaric Iron Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3331","16655","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","0","0","0","0","0","0","0","0","0","27" +"7915","-1","","","","","Barbaric Iron Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3337","16686","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","30" +"7916","-1","","","","","Barbaric Iron Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3700","18503","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","7","0","0","0","0","0","0","0","0","31" +"7917","-1","","","","","Barbaric Iron Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2711","13557","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","32" +"7918","-1","","","","","Heavy Mithril Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6466","32330","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","0","0","0","0","0","0","0","0","0","40" +"7919","-1","","","","","Heavy Mithril Gauntlet","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4359","21795","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","40" +"7920","-1","","","","","Mithril Scale Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8053","40266","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","0","0","0","0","0","0","0","0","0","37" +"7921","-1","","","","","Heavy Mithril Pants","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9427","47139","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","0","0","0","0","0","0","0","0","0","40" +"7922","-1","","","","","Steel Plate Helm","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4152","20761","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","40" +"7923","-1","","","","","Defias Tower Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7924","-1","","","","","Mithril Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4103","20516","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","0","0","0","0","0","0","0","0","38" +"7925","-1","","","","","Mithril Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4447","22238","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","39" +"7926","-1","","","","","Ornate Mithril Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10416","52084","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","40" +"7927","-1","","","","","Ornate Mithril Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5257","26288","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"7928","-1","","","","","Ornate Mithril Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8484","42422","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","40" +"7929","-1","","","","","Orcish War Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7739","38699","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","0","0","0","0","0","0","0","0","0","37" +"7930","-1","","","","","Heavy Mithril Breastplate","0.2","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12330","61652","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","0","0","0","0","0","0","0","0","0","41" +"7931","-1","","","","","Mithril Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7955","39779","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","41" +"7932","-1","","","","","Mithril Scale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8662","43310","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","42" +"7933","-1","","","","","Heavy Mithril Boots","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10077","50387","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","42" +"7934","-1","","","","","Heavy Mithril Helm","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10114","50571","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","42" +"7935","-1","","","","","Ornate Mithril Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14645","73225","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"7936","-1","","","","","Ornate Mithril Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11771","58857","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"7937","-1","","","","","Ornate Mithril Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11813","59069","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","44" +"7938","-1","","","","","Truesilver Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7090","35453","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","7","0","0","0","0","0","0","0","0","40" +"7939","-1","","","","","Truesilver Breastplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19074","95370","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","44" +"7941","-1","","","","","Heavy Mithril Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12520","62602","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","0","0","0","0","0","0","0","0","0","37" +"7942","-1","","","","","Blue Glittering Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14659","73296","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","44","-1","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","39" +"7943","-1","","","","","Wicked Mithril Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15892","79460","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","45","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","6","4","0","0","0","0","0","0","0","0","40" +"7944","-1","","","","","Dazzling Mithril Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20092","100464","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","48","-1","0","0","34","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","0","0","0","0","0","0","0","0","0","43" +"7945","-1","","","","","Big Black Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17291","86455","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","46","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","8","0","0","0","0","0","0","0","0","0","41" +"7946","-1","","","","","Runed Mithril Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21661","108305","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","49","-1","0","0","41","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","7","4","0","0","0","0","0","0","0","0","44" +"7947","-1","","","","","Ebon Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24892","124461","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","51","-1","0","0","32","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","46" +"7948","-1","","","","","Girdle of Thero-shan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1357","6788","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"7949","-1","","","","","Leggings of Thero-shan","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3990","19951","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","11","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","0","0","0","0","0","0","0","0","0","0" +"7950","-1","","","","","Armor of Thero-shan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6473","32365","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","42","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","0","0","0","0","0","0","0","0","0","0" +"7951","-1","","","","","Hands of Thero-shan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1372","6863","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","0","0","0","0","0","0","0","0","0","0" +"7952","-1","","","","","Boots of Thero-shan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3025","15127","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","36","8","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","3","0","0","0","0","0","0","0","0","0" +"7953","-1","","","","","Mask of Thero-shan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4907","24539","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","42","8","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","0","0","0","0","0","0","0","0","0","0" +"7954","-1","","","","","The Shatterer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23160","115800","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","47","-1","0","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","42" +"7955","-1","","","","","Copper Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","241","1208","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","11","-1","0","0","15","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","6" +"7956","-1","","","","","Bronze Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1944","9723","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","25","-1","0","0","37","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"7957","-1","","","","","Bronze Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2205","11029","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","26","-1","0","0","38","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","21" +"7958","-1","","","","","Bronze Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2435","12179","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","27","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","22" +"7959","-1","","","","","Blight","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33858","169290","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","93","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"7960","-1","","","","","Truesilver Champion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38548","192744","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","47" +"7961","-1","","","","","Phantom Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25508","127541","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","49","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","44" +"7963","-1","","","","","Steel Breastplate","0.2","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6488","32441","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"7964","-1","","","","","Solid Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"7965","-1","","","","","Solid Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"7966","-1","","","","","Solid Grinding Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7967","-1","","","","","Mithril Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7968","-1","","","","","Southsea Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7969","-1","","","","","Mithril Spurs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7970","-1","Enormous Chemically Altered Cracker","","","","E.C.A.C.","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7971","-1","","","","","Black Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7972","-1","","","","","Ichor of Undeath","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7973","-1","","","","","Big-mouth Clam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","185","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7974","-1","","","","","Zesty Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7975","-1","Teaches you how to make Heavy Mithril Pants.","","","","Plans: Heavy Mithril Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7976","-1","Teaches you how to make a Mithril Shield Spike.","","","","Plans: Mithril Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7977","-1","Teaches you how to make Mithril Scale Gloves.","","","","Plans: Mithril Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7978","-1","Teaches you how to make Barbaric Iron Shoulders.","","","","Plans: Barbaric Iron Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7979","-1","Teaches you how to make a Barbaric Iron Breastplate.","","","","Plans: Barbaric Iron Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7980","-1","Teaches you how to make a Barbaric Iron Helm.","","","","Plans: Barbaric Iron Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","3400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","164","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7981","-1","Teaches you how to make Barbaric Iron Boots.","","","","Plans: Barbaric Iron Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","164","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7982","-1","Teaches you how to make Barbaric Iron Gloves.","","","","Plans: Barbaric Iron Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7983","-1","Teaches you how to make Ornate Mithril Pants.","","","","Plans: Ornate Mithril Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7984","-1","Teaches you how to make Ornate Mithril Gloves.","","","","Plans: Ornate Mithril Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7985","-1","Teaches you how to make an Ornate Mithril Shoulder.","","","","Plans: Ornate Mithril Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7986","-1","Teaches you how to make an Ornate Mithril Breastplate.","","","","Plans: Ornate Mithril Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","164","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7987","-1","Teaches you how to make an Ornate Mithril Helm.","","","","Plans: Ornate Mithril Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7988","-1","Teaches you how to make Ornate Mithril Boots.","","","","Plans: Ornate Mithril Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7989","-1","Teaches you how to make Mithril Spurs.","","","","Plans: Mithril Spurs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","164","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7990","-1","Teaches you how to make a Heavy Mithril Helm.","","","","Plans: Heavy Mithril Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7991","-1","Teaches you how to make Mithril Scale Shoulders.","","","","Plans: Mithril Scale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","164","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"7992","-1","Teaches you how to make a Blue Glittering Axe.","","","","Plans: Blue Glittering Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","164","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7993","-1","Teaches you how to make a Dazzling Mithril Rapier.","","","","Plans: Dazzling Mithril Rapier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","164","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7994","-1","Teaches you how to make Orcish War Leggings.","","","","Plans: Orcish War Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","164","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"7995","-1","Teaches you how to make Mithril Scale Bracers.","","","","Plans: Mithril Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","164","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"7996","-1","","","","","Worn Fishing Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1222","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","15" +"7997","-1","","","","","Red Defias Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","406","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8006","-1","","","","","The Ziggler","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12472","62361","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","39","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","34" +"8007","-1","","","","","Mana Citrine","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8008","-1","","","","","Mana Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8009","-1","","","","","Dentrium Power Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8026","-1","","","","","Garrett Family Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8027","-1","","","","","Krom Stoutarm's Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8028","-1","Teaches you how to make a Runed Mithril Hammer.","","","","Plans: Runed Mithril Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","164","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"8029","-1","Teaches you how to make a Wicked Mithril Blade.","","","","Plans: Wicked Mithril Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8030","-1","Teaches you how to make an Ebon Shiv.","","","","Plans: Ebon Shiv","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","164","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8046","-1","","","","","Kearnen's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8047","-1","","","","","Magenta Fungus Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8048","-1","","","","","Emerald Dreamcatcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8049","-1","The glowing emerald just needs to be pulled out...","","","","Gnarlpine Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2052","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8050","-1","","","","","Tallonkai's Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8051","-1","","","","","Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8052","-1","","","","","An'Alleum Power Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8053","-1","","","","","Obsidian Power Source","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8066","-1","","","","","Fizzule's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8067","-1","","","","","Crafted Light Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","10","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","2","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","5" +"8068","-1","","","","","Crafted Heavy Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","50","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","15" +"8069","-1","","","","","Crafted Solid Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","35","-1","0","0","8","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8070","-1","","","","","Reward Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8071","-1","","","","","Sizzle Stick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1534","7673","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8072","-1","","","","","Silixiz's Tower Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8073","-1","","","","","Cache of Zanzil's Altered Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8074","-1","","","","","Gallywix's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8075","-1","","","","","Conjured Sourdough","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8076","-1","","","","","Conjured Sweet Roll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8077","-1","","","","","Conjured Mineral Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8078","-1","","","","","Conjured Sparkling Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8079","-1","","","","","Conjured Crystal Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"8080","-1","","","","","Light Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10477","52389","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","53" +"8081","-1","","","","","Light Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4989","24945","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","52" +"8082","-1","","","","","Light Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5570","27852","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","47" +"8083","-1","","","","","Light Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3980","19903","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","48" +"8084","-1","","","","","Light Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4758","23792","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","51" +"8085","-1","","","","","Light Plate Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9194","45971","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","50" +"8086","-1","","","","","Light Plate Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6516","32580","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","49" +"8087","-1","","","","","Sample of Zanzil's Altered Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8088","-1","","","","","Platemail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4694","23470","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8089","-1","","","","","Platemail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7015","35075","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8090","-1","","","","","Platemail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4730","23653","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8091","-1","","","","","Platemail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4748","23742","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8092","-1","","","","","Platemail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7095","35479","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8093","-1","","","","","Platemail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9515","47577","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8094","-1","","","","","Platemail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9551","47759","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8095","-1","","","","","Hinott's Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8106","-1","","","","","Hibernal Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10438","52194","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","20","0","0","0","0","0","0","0","0","45" +"8107","-1","","","","","Hibernal Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5938","29692","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","7","0","0","0","0","0","0","0","0","42" +"8108","-1","","","","","Hibernal Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3594","17973","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","10","0","0","0","0","0","0","0","0","42" +"8109","-1","","","","","Hibernal Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5012","25060","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","0","0","0","0","0","0","0","0","41" +"8110","-1","","","","","Hibernal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3622","18111","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","0","0","0","0","0","0","0","0","0","42" +"8111","-1","","","","","Hibernal Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5890","29453","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8112","-1","","","","","Hibernal Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8436","42181","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","0","0","0","0","0","0","0","0","44" +"8113","-1","","","","","Hibernal Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9694","48474","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","4","20","0","0","0","0","0","0","0","0","46" +"8114","-1","","","","","Hibernal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3677","18389","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","13","0","0","0","0","0","0","0","0","42" +"8115","-1","","","","","Hibernal Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5980","29903","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","14","0","0","0","0","0","0","0","0","43" +"8116","-1","","","","","Heraldic Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4632","23161","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","10","0","0","0","0","0","0","0","0","42" +"8117","-1","","","","","Heraldic Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7161","35808","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","13","0","0","0","0","0","0","0","0","42" +"8118","-1","","","","","Heraldic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4436","22184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","8","0","0","0","0","0","0","0","0","41" +"8119","-1","","","","","Heraldic Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12726","63630","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","20","0","0","0","0","0","0","0","0","46" +"8120","-1","","","","","Heraldic Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4965","24829","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","4","0","0","0","0","0","0","0","0","40" +"8121","-1","","","","","Heraldic Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4843","24219","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","0","0","0","0","0","0","0","0","42" +"8122","-1","","","","","Heraldic Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7875","39377","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","8","0","0","0","0","0","0","0","43" +"8123","-1","","","","","Heraldic Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11276","56380","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","13","0","0","0","0","0","0","0","0","44" +"8124","-1","","","","","Heraldic Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7932","39660","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8125","-1","","","","","Myrmidon's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6367","31838","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","5","0","0","0","0","0","0","0","43" +"8126","-1","","","","","Myrmidon's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15656","78284","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","6","0","0","0","0","0","0","0","0","46" +"8127","-1","","","","","Myrmidon's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5937","29689","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","42" +"8128","-1","","","","","Myrmidon's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6229","31148","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","44" +"8129","-1","","","","","Myrmidon's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6253","31269","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","10","0","0","0","0","0","0","0","0","44" +"8130","-1","","","","","Myrmidon's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9459","47295","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","4","0","0","0","0","0","0","0","0","44" +"8131","-1","","","","","Myrmidon's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10115","50576","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","11","14","0","0","0","0","0","0","0","45" +"8132","-1","","","","","Myrmidon's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14485","72426","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","14","0","0","0","0","0","0","0","0","46" +"8133","-1","","","","","Myrmidon's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10517","52586","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","10","0","0","0","0","0","0","0","0","45" +"8134","-1","","","","","Myrmidon's Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15993","79967","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","11","0","0","0","0","0","0","0","46" +"8135","-1","","","","","Chromite Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11234","56171","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","10","0","0","0","0","0","0","0","0","41" +"8136","-1","","","","","Gargantuan Tumor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8137","-1","","","","","Chromite Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4940","24703","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","40" +"8138","-1","","","","","Chromite Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13416","67080","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","454","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","11","10","0","0","0","0","0","0","0","42" +"8139","-1","","","","","Chromite Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5375","26875","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","40" +"8140","-1","","","","","Chromite Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4994","24972","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","9","0","0","0","0","0","0","0","0","40" +"8141","-1","","","","","Chromite Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8058","40294","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","12","0","0","0","0","0","0","0","0","40" +"8142","-1","","","","","Chromite Barbute","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8087","40439","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","12","0","0","0","0","0","0","0","0","40" +"8143","-1","","","","","Chromite Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12647","63238","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"8144","-1","","","","","Chromite Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8796","43984","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","40" +"8146","-1","","","","","Wicked Claw","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8147","-1","A reagent for mage spells.","","","","Tiny Copper Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8148","-1","A reagent for mage spells.","","","","Tiny Silver Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8149","-1","","","","","Voodoo Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8150","-1","","","","","Deeprock Salt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8151","-1","","","","","Flask of Mojo","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8152","-1","","","","","Flask of Big Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8153","-1","","","","","Wildvine","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8154","-1","","","","","Scorpid Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8155","-1","","","","","Sathrah's Sacrifice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8156","-1","","","","","Jouster's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3907","19536","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","2","0","0","0","0","0","0","0","0","40" +"8157","-1","","","","","Jouster's Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9096","45482","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","4","0","0","0","0","0","0","0","0","40" +"8158","-1","","","","","Jouster's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3936","19680","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","3","0","0","0","0","0","0","0","0","40" +"8159","-1","","","","","Jouster's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3950","19750","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","4","0","0","0","0","0","0","0","0","40" +"8160","-1","","","","","Jouster's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5901","29507","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","40" +"8161","-1","","","","","Jouster's Visor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5922","29614","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","40" +"8162","-1","","","","","Jouster's Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8575","42876","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","0","0","0","0","0","0","0","0","40" +"8163","-1","","","","","Jouster's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6442","32211","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","8","0","0","0","0","0","0","0","0","40" +"8164","-1","","","","","Test Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8165","-1","","","","","Worn Dragonscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8167","-1","","","","","Turtle Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8168","-1","","","","","Jet Black Feather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8169","-1","","","","","Thick Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8170","-1","","","","","Rugged Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8171","-1","","","","","Rugged Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8172","-1","","","","","Cured Thick Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8173","-1","","","","","Thick Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8174","-1","","","","","Comfortable Leather Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4131","20658","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","35" +"8175","-1","","","","","Nightscape Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5971","29857","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","6","0","0","0","0","0","0","0","0","36" +"8176","-1","","","","","Nightscape Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4495","22476","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","11","0","0","0","0","0","0","0","0","36" +"8177","-1","","","","","Practice Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71","359","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","7","-1","0","0","9","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","2" +"8178","-1","","","","","Training Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1532","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","10","-1","0","5173","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","5" +"8179","-1","","","","","Cadet's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","144","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","6","-1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"8180","-1","","","","","Hunting Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1204","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","11","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","6" +"8181","-1","","","","","Hunting Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79","398","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","9","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","4" +"8182","-1","","","","","Pellet Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","203","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","7","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","2" +"8183","-1","","","","","Precision Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2426","12132","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","27","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","22" +"8184","-1","","","","","Firestarter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2947","14737","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","29","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","24" +"8185","-1","","","","","Turtle Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10952","54764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","11","10","0","0","0","0","0","0","0","42" +"8186","-1","","","","","Dire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2231","11156","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","26","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","21" +"8187","-1","","","","","Turtle Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3477","17387","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","6","0","0","0","0","0","0","0","36" +"8188","-1","","","","","Explosive Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6414","32072","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","37","-1","0","0","30","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","32" +"8189","-1","","","","","Turtle Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7567","37839","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","9","9","0","0","0","0","0","0","0","37" +"8190","-1","","","","","Hanzo Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37286","186433","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","55","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"8191","-1","","","","","Turtle Scale Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7780","38901","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","10","0","0","0","0","0","0","0","41" +"8192","-1","","","","","Nightscape Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4782","23914","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","37" +"8193","-1","","","","","Nightscape Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8708","43542","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","7","0","0","0","0","0","0","0","0","41" +"8194","-1","","","","","Goblin Nutcracker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13877","69388","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","43","-1","0","5251","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","38" +"8195","-1","","","","","Nightscape Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5263","26319","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","41" +"8196","-1","","","","","Ebon Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13979","69895","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","43","-1","0","5258","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","38" +"8197","-1","","","","","Nightscape Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7158","35790","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","42" +"8198","-1","","","","","Turtle Scale Bracers","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4013","20069","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"8199","-1","","","","","Battlefield Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24661","123306","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","47","-1","0","5272","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","42" +"8200","-1","","","","","Big Voodoo Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7275","36378","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","14","9","0","0","0","0","0","0","0","0","38" +"8201","-1","","","","","Big Voodoo Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5350","26754","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","0","0","0","0","0","0","0","0","39" +"8202","-1","","","","","Big Voodoo Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9022","45112","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","0","0","0","0","0","0","0","0","42" +"8203","-1","","","","","Tough Scorpid Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8628","43140","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","7","0","0","0","0","0","0","0","0","39" +"8204","-1","","","","","Tough Scorpid Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4676","23383","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","40" +"8205","-1","","","","","Tough Scorpid Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4346","21734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","0","0","0","0","0","0","0","0","39" +"8206","-1","","","","","Tough Scorpid Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12704","63521","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","10","0","0","0","0","0","0","0","0","44" +"8207","-1","","","","","Tough Scorpid Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8978","44893","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8208","-1","","","","","Tough Scorpid Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10272","51360","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","45" +"8209","-1","","","","","Tough Scorpid Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","41879","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","7","0","0","0","0","0","0","0","0","42" +"8210","-1","","","","","Wild Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","27686","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1158","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"8211","-1","","","","","Wild Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8002","40013","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","486","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8212","-1","","","","","Wild Leather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11585","57925","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","572","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"8213","-1","","","","","Wild Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8150","40753","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","824","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"8214","-1","","","","","Wild Leather Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6230","31152","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","654","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8215","-1","","","","","Wild Leather Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7213","36069","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"8216","-1","","","","","Big Voodoo Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6323","31618","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","5","0","0","0","0","0","0","0","0","43" +"8217","-1","","","","","Quickdraw Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8218","-1","","","","","Thick Leather Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8223","-1","","","","","Blade of the Basilisk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10066","50334","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","32" +"8224","-1","","","","","Silithid Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7655","38279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","36","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"8225","-1","","","","","Tainted Pierce","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9222","46111","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"8226","-1","","","","","The Butcher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5747","28738","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","31","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","4","0","0","0","0","0","0","0","0","26" +"8243","-1","Scooby-dooby-doo!","","","","Scooby Snack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8244","-1","","","","","Flawless Draenethyst Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"8245","-1","","","","","Imperial Red Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12923","64615","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","21","0","0","0","0","0","0","0","0","51" +"8246","-1","","","","","Imperial Red Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7917","39586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","15","0","0","0","0","0","0","0","0","0","47" +"8247","-1","","","","","Imperial Red Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4997","24989","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","46" +"8248","-1","","","","","Imperial Red Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7032","35162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","11","0","0","0","0","0","0","0","0","45" +"8249","-1","","","","","Imperial Red Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5336","26682","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","47" +"8250","-1","","","","","Imperial Red Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8034","40171","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","47" +"8251","-1","","","","","Imperial Red Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12080","60401","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","0","0","0","0","0","0","0","0","0","49" +"8252","-1","","","","","Imperial Red Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13623","68115","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","21","0","0","0","0","0","0","0","0","51" +"8253","-1","","","","","Imperial Red Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5107","25539","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","15","0","0","0","0","0","0","0","0","0","46" +"8254","-1","","","","","Imperial Red Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8640","43200","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","48" +"8255","-1","","","","","Serpentskin Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6010","30052","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","13","0","0","0","0","0","0","0","0","45" +"8256","-1","","","","","Serpentskin Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51307","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","10","0","0","0","0","0","0","0","47" +"8257","-1","","","","","Serpentskin Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6053","30265","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","2","0","0","0","0","0","0","0","45" +"8258","-1","","","","","Serpentskin Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17396","86984","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","15","11","0","0","0","0","0","0","0","51" +"8259","-1","","","","","Serpentskin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7315","36578","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","11","0","0","0","0","0","0","0","0","45" +"8260","-1","","","","","Serpentskin Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6938","34691","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","47" +"8261","-1","","","","","Serpentskin Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10617","53086","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","49" +"8262","-1","","","","","Serpentskin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14606","73030","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","5","16","0","0","0","0","0","0","0","49" +"8263","-1","","","","","Serpentskin Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10373","51867","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","48" +"8264","-1","","","","","Ebonhold Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7857","39288","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","0","0","0","0","0","0","0","0","47" +"8265","-1","","","","","Ebonhold Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19914","99572","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","6","0","0","0","0","0","0","0","0","51" +"8266","-1","","","","","Ebonhold Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7468","37342","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","7","9","0","0","0","0","0","0","0","46" +"8267","-1","","","","","Ebonhold Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8928","44640","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","7","0","0","0","0","0","0","0","0","49" +"8268","-1","","","","","Ebonhold Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8960","44801","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","14","0","0","0","0","0","0","0","0","49" +"8269","-1","","","","","Ebonhold Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14362","71814","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","4","0","0","0","0","0","0","0","0","50" +"8270","-1","","","","","Ebonhold Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14351","71759","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","50" +"8271","-1","","","","","Ebonhold Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20358","101791","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","5","14","0","0","0","0","0","0","0","51" +"8272","-1","","","","","Ebonhold Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13697","68489","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","49" +"8273","-1","","","","","Valorous Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6290","31454","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","4","0","0","0","0","0","0","0","0","41" +"8274","-1","","","","","Valorous Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17940","89704","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","3","0","0","0","0","0","0","0","0","46" +"8275","-1","","","","","Ebonhold Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22028","110140","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","12","0","0","0","0","0","0","0","0","51" +"8276","-1","","","","","Valorous Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34337","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","2","0","0","0","0","0","0","0","0","42" +"8277","-1","","","","","Valorous Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6381","31907","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","3","0","0","0","0","0","0","0","0","41" +"8278","-1","","","","","Valorous Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9567","47837","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","7","0","0","0","0","0","0","0","42" +"8279","-1","","","","","Valorous Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10371","51857","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","13","0","0","0","0","0","0","0","0","43" +"8280","-1","","","","","Valorous Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14881","74407","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","13","0","0","0","0","0","0","0","0","44" +"8281","-1","","","","","Valorous Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10450","52253","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","43" +"8282","-1","","","","","Valorous Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15695","78478","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","9","0","0","0","0","0","0","0","0","46" +"8283","-1","","","","","Arcane Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16550","82750","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","23","0","0","0","0","0","0","0","0","56" +"8284","-1","","","","","Arcane Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10514","52571","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","4","3","0","0","0","0","0","0","0","52" +"8285","-1","","","","","Arcane Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6637","33187","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","11","0","0","0","0","0","0","0","0","51" +"8286","-1","","","","","Arcane Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9427","47138","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","50" +"8287","-1","","","","","Arcane Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7087","35437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","52" +"8288","-1","","","","","Arcane Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11876","59382","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","18","0","0","0","0","0","0","0","0","54" +"8289","-1","","","","","Arcane Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16688","83442","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","17","0","0","0","0","0","0","0","0","55" +"8290","-1","","","","","Arcane Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16982","84910","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","23","0","0","0","0","0","0","0","0","56" +"8291","-1","","","","","Arcane Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6784","33923","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","16","0","0","0","0","0","0","0","0","51" +"8292","-1","","","","","Arcane Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11476","57383","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","17","10","0","0","0","0","0","0","0","53" +"8293","-1","","","","","Traveler's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8542","42714","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","16","0","0","0","0","0","0","0","0","51" +"8294","-1","","","","","Traveler's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12652","63260","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","4","0","0","0","0","0","0","0","0","52" +"8295","-1","","","","","Traveler's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7988","39941","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","11","0","0","0","0","0","0","0","0","51" +"8296","-1","","","","","Traveler's Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20145","100727","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","6","10","0","0","0","0","0","0","0","56" +"8297","-1","","","","","Traveler's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9113","45566","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","11","0","0","0","0","0","0","0","0","50" +"8298","-1","","","","","Traveler's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8565","42825","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","52" +"8299","-1","","","","","Traveler's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14354","71770","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","14","14","0","0","0","0","0","0","0","54" +"8300","-1","","","","","Traveler's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20172","100862","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","17","0","0","0","0","0","0","0","0","55" +"8301","-1","","","","","Traveler's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14463","72318","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8302","-1","","","","","Hero's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11060","55302","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","12","0","0","0","0","0","0","0","0","53" +"8303","-1","","","","","Hero's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25164","125823","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","24","0","0","0","0","0","0","0","0","57" +"8304","-1","","","","","Hero's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10513","52566","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","6","0","0","0","0","0","0","0","0","52" +"8305","-1","","","","","Hero's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11743","58719","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8306","-1","","","","","Hero's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11787","58938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","13","0","0","0","0","0","0","0","0","54" +"8307","-1","","","","","Hero's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18717","93587","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","2","0","0","0","0","0","0","0","0","55" +"8308","-1","","","","","Hero's Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18703","93518","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","14","17","0","0","0","0","0","0","0","55" +"8309","-1","","","","","Hero's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25377","126887","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","17","0","0","0","0","0","0","0","0","56" +"8310","-1","","","","","Hero's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19420","97100","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","55" +"8311","-1","","","","","Alabaster Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10287","51435","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","2","0","0","0","0","0","0","0","48" +"8312","-1","","","","","Alabaster Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25918","129593","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","3","3","0","0","0","0","0","0","0","52" +"8313","-1","","","","","Hero's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28565","142829","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","12","0","0","0","0","0","0","0","0","57" +"8314","-1","","","","","Alabaster Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9405","47029","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","7","0","0","0","0","0","0","0","0","48" +"8315","-1","","","","","Alabaster Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8908","44540","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","15","4","0","0","0","0","0","0","0","0","47" +"8316","-1","","","","","Alabaster Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14110","70554","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","11","0","0","0","0","0","0","0","0","48" +"8317","-1","","","","","Alabaster Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15013","75069","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","49" +"8318","-1","","","","","Alabaster Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22622","113111","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","3","16","0","0","0","0","0","0","0","51" +"8319","-1","","","","","Alabaster Plate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16037","80185","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","12","0","0","0","0","0","0","0","0","50" +"8320","-1","","","","","Alabaster Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22092","110461","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","13","0","0","0","0","0","0","0","0","52" +"8343","-1","","","","","Heavy Silken Thread","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8344","-1","","","","","Silvery Spinnerets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8345","-1","","","","","Wolfshead Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7421","37109","1","1","1","64","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32256","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","40" +"8346","-1","","","","","Gauntlets of the Sea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5363","26816","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","41" +"8347","-1","","","","","Dragonscale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5980","29900","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","7","0","0","0","0","0","0","0","0","40" +"8348","-1","","","","","Helm of Fire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10819","54099","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","10","0","0","0","0","0","0","0","0","45" +"8349","-1","","","","","Feathered Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14478","72392","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","24","10","0","0","0","0","0","0","0","0","45" +"8350","-1","Not quite as good as the 2 Ring","","","","The 1 Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","1","1","1","1","0","0","0","0","0","10" +"8363","-1","","","","","Shaman Voodoo Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8364","-1","","","","","Mithril Head Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8365","-1","","","","","Raw Mithril Head Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8366","-1","","","","","Bloated Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8367","-1","","","","","Dragonscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18455","92276","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","306","0","13","0","13","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","0","0","0","0","0","0","0","0","0","46" +"8368","-1","","","","","Thick Wolfhide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8383","-1","","","","","Plain Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8384","-1","Teaches you how to craft a Comfortable Leather Hat.","","","","Pattern: Comfortable Leather Hat","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"8385","-1","Teaches you how to craft Turtle Scale Gloves.","","","","Pattern: Turtle Scale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","165","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8386","-1","Teaches you how to craft a Big Voodoo Robe.","","","","Pattern: Big Voodoo Robe","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","165","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8387","-1","Teaches you how to craft a Big Voodoo Mask.","","","","Pattern: Big Voodoo Mask","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8388","-1","Teaches you how to craft a Nightscape Cloak.","","","","Pattern: Nightscape Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","165","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8389","-1","Teaches you how to craft Big Voodoo Pants.","","","","Pattern: Big Voodoo Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8390","-1","Teaches you how to craft a Big Voodoo Cloak.","","","","Pattern: Big Voodoo Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8391","-1","","","","","Snickerfang Jowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8392","-1","","","","","Blasted Boar Lung","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8393","-1","","","","","Scorpok Pincer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8394","-1","","","","","Basilisk Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8395","-1","Teaches you how to craft a Tough Scorpid Breastplate.","","","","Pattern: Tough Scorpid Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8396","-1","","","","","Vulture Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8397","-1","Teaches you how to craft Tough Scorpid Bracers.","","","","Pattern: Tough Scorpid Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8398","-1","Teaches you how to craft Tough Scorpid Gloves.","","","","Pattern: Tough Scorpid Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8399","-1","Teaches you how to craft Tough Scorpid Boots.","","","","Pattern: Tough Scorpid Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","165","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8400","-1","Teaches you how to craft Tough Scorpid Shoulders.","","","","Pattern: Tough Scorpid Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","165","48","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8401","-1","Teaches you how to craft Tough Scorpid Leggings.","","","","Pattern: Tough Scorpid Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1375","5500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","165","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8402","-1","Teaches you how to craft a Tough Scorpid Helm.","","","","Pattern: Tough Scorpid Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1375","5500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8403","-1","Teaches you how to craft Wild Leather Shoulders.","","","","Pattern: Wild Leather Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","165","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8404","-1","Teaches you how to craft a Wild Leather Vest.","","","","Pattern: Wild Leather Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8405","-1","Teaches you how to craft a Wild Leather Helmet.","","","","Pattern: Wild Leather Helmet","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","165","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8406","-1","Teaches you how to craft Wild Leather Boots.","","","","Pattern: Wild Leather Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","165","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8407","-1","Teaches you how to craft Wild Leather Leggings.","","","","Pattern: Wild Leather Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8408","-1","Teaches you how to craft a Wild Leather Cloak.","","","","Pattern: Wild Leather Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8409","-1","Teaches you how to craft Nightscape Shoulders.","","","","Pattern: Nightscape Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","165","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8410","-1","Robust Operational Imbue Derived From Snickerfang","","","","R.O.I.D.S.","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8411","-1","100% Grade A Lung Juice - Freshly Squeezed","","","","Lung Juice Cocktail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8412","-1","","","","","Ground Scorpok Assay","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8423","-1","Best Served Chilled","","","","Cerebral Cortex Compound","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8424","-1","Strawberry Flavor","","","","Gizzard Gum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8425","-1","","","","","Parrot Droppings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8426","-1","","","","","Large Ruffled Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8427","-1","","","","","Mutilated Rat Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8428","-1","","","","","Laden Dew Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8429","-1","","","","","Punctured Dew Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","31","125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8430","-1","","","","","Empty Dew Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","46","185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8431","-1","","","","","Spool of Light Chartreuse Silk Thread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8432","-1","","","","","Eau de Mixilpixil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8443","-1","","","","","Gahz'ridian Ornament","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8444","-1","","","","","Executioner's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8463","-1","The seal is broken.","","","","Warchief's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1071","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8483","-1","","","","","Wastewander Water Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","171","685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8484","-1","Model 103-XB!","","","","Gadgetzan Water Co. Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","275","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8485","-1","","","","","Cat Carrier (Bombay)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8486","-1","","","","","Cat Carrier (Cornish Rex)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8487","-1","","","","","Cat Carrier (Orange Tabby)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8488","-1","","","","","Cat Carrier (Silver Tabby)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8489","-1","","","","","Cat Carrier (White Kitten)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8490","-1","","","","","Cat Carrier (Siamese)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8491","-1","","","","","Cat Carrier (Black Tabby)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8492","-1","","","","","Parrot Cage (Green Wing Macaw)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8493","-1","","","","","Weegli's Barrel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8494","-1","","","","","Parrot Cage (Hyacinth Macaw)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8495","-1","","","","","Parrot Cage (Senegal)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8496","-1","","","","","Parrot Cage (Cockatiel)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8497","-1","","","","","Rabbit Crate (Snowshoe)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8498","-1","","","","","Tiny Emerald Whelpling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8499","-1","","","","","Tiny Crimson Whelpling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8500","-1","","","","","Great Horned Owl","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8501","-1","","","","","Hawk Owl","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8502","-1","Will always have a level 20 or higher Uncommon or better item.","","","","Bronze Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8503","-1","Will always have a level 25 or higher Uncommon or better item.","","","","Heavy Bronze Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","25000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8504","-1","Will always have a level 30 or higher Uncommon or better item.","","","","Iron Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","45000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8505","-1","Will always have a level 35 or higher Uncommon or better item.","","","","Heavy Iron Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","60000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8506","-1","Will always have a level 40 or higher Uncommon or better item.","","","","Mithril Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","90000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8507","-1","Will always have a level 45 or higher Uncommon or better item.","","","","Heavy Mithril Lotterybox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","120000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8508","-1","","","","","Large Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","178","715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"8523","-1","","","","","Field Testing Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8524","-1","Using this power source will activate the Field Testing Kit.","","","","Model 4711-FTZ Power Source","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","654","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8525","-1","","","","","Zinge's Purchase Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8526","-1","","","","","Violet Tragan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8527","-1","","","","","Sealed Field Testing Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8528","-1","","","","","Violet Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8529","-1","","","","","Noggenfogger Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","3500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8543","-1","","","","","Underwater Mushroom Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","25","5","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"8544","-1","","","","","Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","340","1360","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8545","-1","","","","","Heavy Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8546","-1","","","","","Powerful Smelling Salts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50","200","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8547","-1","Teaches you how to make Powerful Smelling Salts.","","","","Formula: Powerful Smelling Salts ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","129","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8548","-1","","","","","Divino-matic Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8563","68","","","","","Red Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8564","-1","It's huge!","","","","Hippogryph Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8583","735","","","","","Horn of the Skeletal Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","554","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8584","-1","","","","","Untapped Dowsing Widget","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8585","-1","","","","","Tapped Dowsing Widget","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8586","658","","","","","Whistle of the Mottled Red Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"8587","-1","","","","","Centipaar Insect Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8588","658","","","","","Whistle of the Emerald Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8589","223","","","","","Old Whistle of the Ivory Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8590","223","","","","","Old Whistle of the Obsidian Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","533","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8591","658","","","","","Whistle of the Turquoise Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8592","658","","","","","Whistle of the Violet Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8593","-1","","","","","Scrimshank's Surveying Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8594","-1","","","","","Insect Analysis Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8595","68","","","","","Blue Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8603","-1","","","","","Thistleshrub Dew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8623","-1","","","","","OOX-17/TN Distress Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","0","43","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","43" +"8624","-1","","","","","Red Sparkler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8625","-1","","","","","White Sparkler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8626","-1","","","","","Blue Sparkler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8627","223","","","","","Reins of the Night saber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8628","223","","","","","Reins of the Spotted Nightsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8629","1101","","","","","Reins of the Striped Nightsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8630","223","","","","","Reins of the Bengal Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8631","1101","","","","","Reins of the Striped Frostsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8632","1101","","","","","Reins of the Spotted Frostsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"8633","223","","","","","Reins of the Leopard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","150","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8643","-1","There's something very special about this egg...","","","","Extraordinary Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8644","-1","","","","","Fine Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8645","-1","","","","","Ordinary Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8646","-1","","","","","Bad Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8647","-1","Quality Guaranteed!","","","","Egg Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8663","-1","E Pluribus Mithril","","","","Mithril Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8683","-1","A fresh piece of fruit that's good to eat... and is apparently good for disguises also!","","","","Clara's Fresh Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8684","-1","","","","","Hinterlands Honey Ripple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8685","-1","This barrel contains Dran's packaged ripple and his extra bottles.","","","","Dran's Ripple Delivery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8686","-1","Bears the Seal of Galvan the Ancient","","","","Mithril Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8687","-1","","","","","Sealed Description of Thredd's Visitor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8688","-1","","","","","Bind On Acquire Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1087","4350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"8703","-1","Honorable Member of the Mithril Order","","","","Signet of Expertise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6492","25968","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","164","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"8704","-1","","","","","OOX-09/HL Distress Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","43","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","43" +"8705","-1","","","","","OOX-22/FE Distress Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2766","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"8707","-1","","","","","Gahz'rilla's Electrified Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8708","-1","","","","","Hammer of Expertise","0.6","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65536","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","50","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","40" +"8723","-1","","","","","Caliph Scorpidsting's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8724","-1","","","","","Rin'ji's Secret","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8743","-1","Teaches Mark of the Wild (Rank 1).","","","","Book of Mark of the Wild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8744","-1","Teaches Wrath (Rank 2).","","","","Book of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"8746","-1","","","","","Interlaced Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","682","3412","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","28" +"8747","-1","","","","","Hardened Leather Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1036","5181","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","30" +"8748","-1","","","","","Double Mail Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","775","3875","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","25" +"8749","-1","","","","","Crochet Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1604","8020","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","38" +"8750","-1","","","","","Thick Leather Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1863","9317","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","37" +"8751","-1","","","","","Overlinked Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2618","13092","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","39" +"8752","-1","","","","","Laminated Scale Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5217","26087","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","49" +"8753","-1","","","","","Smooth Leather Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5198","25990","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","52" +"8754","-1","","","","","Twill Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3937","19687","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","51" +"8755","-1","","","","","Light Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6512","32563","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","50" +"8756","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8757","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8758","-1","","","","","Book of Remove Curse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8759","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8760","-1","","","","","Book of Abolish Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8761","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8762","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8763","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8764","-1","Teaches Faerie Fire (Rank 2).","","","","Book of Faerie Fire II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8765","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8766","-1","","","","","Morning Glory Dew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8768","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8769","-1","Teaches Thorns (Rank 3).","","","","Book of Thorns IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8770","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8771","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8772","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8773","-1","","","","","Book of Entangling Roots V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8774","-1","Teaches Healing Touch (Rank 6).","","","","Book of Healing Touch VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8775","-1","Teaches Tranquility (Rank 1).","","","","Book of Tranquility II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8776","-1","Teaches Mark of the Wild (Rank 4).","","","","Book of Mark of the Wild VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8777","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8778","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8779","-1","Teaches Faerie Fire (Rank 3).","","","","Book of Faerie Fire III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8780","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8781","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8782","-1","Teaches Thorns (Rank 3).","","","","Book of Thorns V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8783","-1","Teaches Healing Touch (Rank 6).","","","","Book of Healing Touch IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8784","-1","Teaches Wrath (Rank 6).","","","","Book of Wrath VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8785","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8786","-1","Teaches Tranquility (Rank 1).","","","","Book of Tranquility III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8787","-1","Teaches Wrath (Rank 4).","","","","Book of Soothe Animal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8788","-1","Teaches Wrath (Rank 4).","","","","Book of Soothe Animal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8789","-1","Teaches Wrath (Rank 4).","","","","Book of Soothe Animal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8790","-1","Teaches Faerie Fire (Rank 1).","","","","Book of Faerie Fire IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8791","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8792","-1","Teaches Thorns (Rank 3).","","","","Book of Thorns VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8793","-1","Teaches Wrath (Rank 6).","","","","Book of Wrath VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8794","-1","Teaches Healing Touch (Rank 6).","","","","Book of Healing Touch X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8795","-1","","","","","Book of Entangling Roots VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8796","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8797","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8798","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8799","-1","Teaches Mark of the Wild (Rank 4).","","","","Book of Mark of the Wild VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8800","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8801","-1","Teaches Tranquility (Rank 1).","","","","Book of Tranquility IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8802","-1","Teaches Arcane Intellect (Rank 2).","","","","Tome of Arcane Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8804","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8805","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Detect Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8806","-1","Teaches Remove Curse.","","","","Tome of Remove Lesser Curse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8807","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Amplify Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"8808","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8809","-1","Teaches Sleep (Rank 1).","","","","Tome of Sleep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8810","-1","Teaches Frostbolt (Rank 2).","","","","Tome of Sleep II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8811","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8812","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8813","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Dampen Magic II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8814","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8815","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Cone of Cold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8816","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8818","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8819","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8820","-1","Teaches Fire Ward.","","","","Tome of Fire Ward II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8821","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Amplify Magic II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8822","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8823","-1","Teaches Fire Blast (Rank 3).","","","","Tome of Fire Blast IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8824","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8825","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Frost Ward III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8826","-1","Teaches Arcane Missiles (Rank 3).","","","","Tome of Arcane Missiles IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8827","-1","","","","","Elixir of Water Walking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"8828","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8829","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Cone of Cold II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8830","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8831","-1","","","","","Purple Lotus","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8832","-1","Teaches Blizzard (Rank 2).","","","","Tome of Blizzard III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8833","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8834","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Dampen Magic III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8835","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8836","-1","","","","","Arthas' Tears","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8837","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8838","-1","","","","","Sungrass","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8839","-1","","","","","Blindweed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8840","-1","Teaches Conjure Mana Gem.","","","","Tome of Conjure Mana Gem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8841","-1","Teaches Fire Blast (Rank 3).","","","","Tome of Fire Blast V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8842","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8843","-1","Teaches Fire Ward.","","","","Tome of Fire Ward III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8844","-1","Teaches Frostbolt (Rank 2).","","","","Tome of Sleep III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8845","-1","","","","","Ghost Mushroom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8846","-1","","","","","Gromsblood","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8847","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8848","-1","Teaches Slow (Rank 2).","","","","Tome of Flamestrike IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8849","-1","Teaches Arcane Missiles (Rank 3).","","","","Tome of Arcane Missiles V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8850","-1","Teaches Conjure Water (Rank 4).","","","","Tome of Conjure Water V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8851","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8852","-1","Teaches Arcane Intellect (Rank 3).","","","","Tome of Arcane Intellect IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8853","-1","Teaches Conjure Food (Rank 4).","","","","Tome of Conjure Food V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8854","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Cone of Cold III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8855","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Amplify Magic III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8856","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8857","-1","Teaches Blizzard (Rank 2).","","","","Tome of Blizzard IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8858","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8859","-1","Teaches Fire Blast (Rank 3).","","","","Tome of Fire Blast VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8860","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8861","-1","Teaches Conjure Mana Gem.","","","","Tome of Conjure Mana Gem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8862","-1","Teaches Arcane Missiles (Rank 3).","","","","Tome of Arcane Missiles VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8863","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Dampen Magic IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8864","-1","Teaches Slow (Rank 2).","","","","Tome of Flamestrike V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8865","-1","Teaches Ice Armor (Rank 2).","","","","Tome of Ice Armor III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8866","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Cone of Cold IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8867","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8868","-1","Teaches Conjure Water (Rank 4).","","","","Tome of Conjure Water VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8869","-1","Teaches Fire Ward.","","","","Tome of Fire Ward IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8871","-1","Teaches Conjure Food (Rank 4).","","","","Tome of Conjure Food VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8872","-1","Teaches Blizzard (Rank 2).","","","","Tome of Blizzard V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8873","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8874","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8875","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Frost Ward IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8876","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Frost Ward II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8877","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8878","-1","Teaches Fire Blast (Rank 3).","","","","Tome of Fire Blast VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8879","-1","Teaches Frost Nova (Rank 3).","","","","Tome of Frost Nova IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8880","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8881","-1","Teaches Agitating Totem (Rank 4).","","","","Tome of Khadgar's Unlocking IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8882","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Amplify Magic IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8883","-1","Teaches Arcane Intellect (Rank 3).","","","","Tome of Arcane Intellect V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8884","-1","Teaches Frostbolt (Rank 4).","","","","Tome of Frostbolt X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8885","-1","Teaches Arcane Missiles (Rank 3).","","","","Tome of Arcane Missiles VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8886","-1","Teaches Slow (Rank 2).","","","","Tome of Flamestrike VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8887","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8888","-1","Teaches Chains of Ice (Rank 1).","","","","Tome of Cone of Cold V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8889","-1","Teaches Conjure Mana Gem.","","","","Tome of Conjure Mana Gem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8890","-1","Teaches Fireball (Rank 4).","","","","Tome of Fireball XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8891","-1","Teaches Ice Armor (Rank 2).","","","","Tome of Ice Armor IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8892","-1","Teaches Conjure Water (Rank 4).","","","","Tome of Conjure Water VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8893","-1","Teaches Frostbolt (Rank 2).","","","","Tome of Sleep IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8894","-1","Teaches Dampen Magic (Rank 1).","","","","Tome of Dampen Magic V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8895","-1","Teaches Blizzard (Rank 2).","","","","Tome of Blizzard VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8896","-1","Teaches Blizzard (Rank 1).","","","","Tome of Mana Shield VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8897","-1","Teaches Fire Ward.","","","","Tome of Fire Ward V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8898","-1","Teaches Arcane Missiles (Rank 1).","","","","Tome of Arcane Explosion IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8899","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Scorch IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8900","-1","","","","","Book of Entangling Roots IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8901","-1","Teaches Healing Touch (Rank 6).","","","","Book of Healing Touch VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8902","-1","Teaches Mark of the Wild (Rank 4).","","","","Book of Mark of the Wild V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8903","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8904","-1","Teaches Moonfire (Rank 4).","","","","Book of Moonfire VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8905","-1","Teaches Rejuvenation (Rank 1).","","","","Book of Regrowth VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8906","-1","Teaches Rejuvenation (Rank 4).","","","","Book of Rejuvenation VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8907","-1","Teaches Moonfire (Rank 1).","","","","Book of Starfire IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8909","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8910","-1","Teaches Holy Light (Rank 2).","","","","Libram: Lay on Hands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8911","-1","Teaches Holy Light (Rank 2).","","","","Libram: Fist of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8912","-1","Teaches Holy Light (Rank 2).","","","","Libram: Crusader Strike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8913","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8914","-1","Teaches Holy Light (Rank 2).","","","","Libram: Crusader Strike II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8915","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8916","-1","Teaches Holy Light (Rank 2).","","","","Libram: Fist of Justice II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8917","-1","Teaches Holy Light (Rank 2).","","","","Libram: Lay on Hands II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8918","-1","Teaches Seal of Protection (Rank 2).","","","","Libram: Seal of Protection III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8919","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8920","-1","Teaches Holy Light (Rank 2).","","","","Libram: Crusader Strike III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8921","-1","Teaches Holy Light (Rank 2).","","","","Libram: Fist of Justice III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8922","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8923","-1","Used by rogues to brew poison.","","","","Essence of Agony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8924","-1","Used by rogues to brew poison.","","","","Dust of Deterioration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8925","-1","","","","","Crystal Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","2500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8926","-1","","","","","Instant Poison IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8927","-1","","","","","Instant Poison V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8928","-1","","","","","Instant Poison VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8929","-1","Teaches Exorcism (Rank 3).","","","","Libram: Exorcism IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8930","-1","Teaches Seal of Righteousness (Rank 3).","","","","Libram: Seal of Righteousness IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8931","-1","Teaches Holy Light (Rank 2).","","","","Libram: Crusader Strike IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8932","-1","","","","","Alterac Swiss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8933","-1","Teaches Holy Light (Rank 6).","","","","Libram: Holy Light VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8934","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"8935","-1","Teaches Judgement.","","","","Libram: Judgement II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8936","-1","Teaches Seal of Reckoning (Rank 2).","","","","Libram: Seal of Wrath III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8937","-1","Teaches Holy Light (Rank 2).","","","","Libram: Lay on Hands III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"8938","-1","Teaches Turn Undead (Rank 2).","","","","Libram: Turn Undead III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8939","-1","Teaches Exorcism (Rank 3).","","","","Libram: Exorcism V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"8940","-1","Teaches Holy Light (Rank 2).","","","","Libram: Fist of Justice IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8941","-1","Teaches Holy Light (Rank 6).","","","","Libram: Holy Light VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8942","-1","Teaches Seal of Righteousness (Rank 3).","","","","Libram: Seal of Righteousness V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8943","-1","Teaches Holy Light (Rank 2).","","","","Libram: Holy Strike VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"8944","-1","Teaches Holy Light (Rank 2).","","","","Libram: Crusader Strike V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"8945","-1","Teaches Judgement.","","","","Libram: Judgement III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8947","-1","Teaches Exorcism (Rank 3).","","","","Libram: Exorcism VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"8948","-1","","","","","Dried King Bolete","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8949","-1","","","","","Elixir of Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"8950","-1","","","","","Homemade Cherry Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8951","-1","","","","","Elixir of Greater Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","29" +"8952","-1","","","","","Roasted Quail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8953","-1","","","","","Deep Fried Plantains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8954","-1","Teaches Holy Word: Fortitude (Rank 2).","","","","Codex of Holy Word: Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"8955","-1","Teaches Renew (Rank 1).","","","","Codex of Fade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"8956","-1","","","","","Oil of Immolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","31" +"8957","-1","","","","","Spinefin Halibut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8958","-1","Teaches Mind Rot.","","","","Codex of Mind Blast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"8959","-1","","","","","Raw Spinefin Halibut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","160","3200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"8960","-1","Teaches Renew (Rank 2).","","","","Codex of Cure Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8961","-1","Teaches Renew (Rank 2).","","","","Codex of Psychic Scream","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"8962","-1","Teaches Mind Rot.","","","","Codex of Mind Blast II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"8963","-1","Teaches Inner Fire (Rank 2).","","","","Codex of Mind Soothe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8964","-1","Teaches Inner Fire (Rank 2).","","","","Codex of Flash Heal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8965","-1","Teaches Inner Fire (Rank 2).","","","","Codex of Fade II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8966","-1","Teaches Inner Fire (Rank 2).","","","","Codex of Shackle Undead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"8967","-1","Teaches Mind Vision (Rank 1).","","","","Codex of Mind Blast III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"8968","-1","Teaches Holy Word: Shield (Rank 4).","","","","Codex of Mana Burn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"8969","-1","Teaches Renew (Rank 4).","","","","Codex of Flash Heal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"8971","-1","Teaches Heal (Rank 3).","","","","Codex of Psychic Scream II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8972","-1","Teaches Heal (Rank 3).","","","","Codex of Mind Blast IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"8973","-1","","","","","Thick Yeti Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"8974","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Mind Control","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8975","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Fade III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"8976","-1","Teaches Renew (Rank 2).","","","","Codex of Abolish Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8977","-1","Teaches Renew (Rank 5).","","","","Codex of Mana Burn II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8978","-1","Teaches Renew (Rank 5).","","","","Codex of Flash Heal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"8980","-1","Teaches Heal (Rank 4).","","","","Codex of Mind Blast V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"8981","-1","Teaches Holy Word: Fortitude (Rank 4).","","","","Codex of Mind Soothe II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"8983","-1","Teaches Holy Smite (Rank 6).","","","","Codex of Flash Heal IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"8984","-1","","","","","Deadly Poison III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"8985","-1","","","","","Deadly Poison IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"8986","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Shackle Undead II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8987","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Holy Protection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8988","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Mana Burn III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8989","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Fade IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8990","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Mind Blast VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8991","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Inner Fire IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"8992","-1","Teaches Heal (Rank 3).","","","","Codex of Psychic Scream III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8993","-1","Teaches Heal (Rank 3).","","","","Codex of Shadow Protection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8994","-1","Teaches Heal (Rank 3).","","","","Codex of Shadow Word: Pain VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8995","-1","Teaches Heal (Rank 3).","","","","Codex of Holy Word: Shield VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8996","-1","Teaches Heal (Rank 3).","","","","Codex of Resurrection III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"8997","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Mind Control II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8998","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Mind Vision II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"8999","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Flash Heal V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9000","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Renew VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9001","-1","Teaches Greater Heal.","","","","Codex of Greater Heal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9002","-1","Teaches Greater Heal.","","","","Codex of Mind Blast VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9003","-1","Teaches Greater Heal.","","","","Codex of Holy Smite VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9004","-1","Teaches Holy Word: Fortitude (Rank 4).","","","","Codex of Holy Word: Fortitude V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9005","-1","Teaches Holy Word: Fortitude (Rank 4).","","","","Codex of Mana Burn IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9006","-1","Teaches Holy Word: Fortitude (Rank 4).","","","","Codex of Holy Word: Shield VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9007","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Fade V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9008","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Prayer of Healing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9009","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Inner Fire V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9010","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Flash Heal VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9011","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Shadow Word: Pain VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9012","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Renew VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9013","-1","Teaches Greater Heal.","","","","Codex of Greater Heal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9014","-1","Teaches Greater Heal.","","","","Codex of Mind Soothe III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9015","-1","Teaches Greater Heal.","","","","Codex of Mind Blast VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9016","-1","Teaches Greater Heal.","","","","Codex of Holy Smite VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9017","-1","Teaches Greater Heal.","","","","Codex of Holy Protection III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9018","-1","Teaches Greater Heal.","","","","Codex of Holy Word: Shield IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11000","44000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9019","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Renew IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9020","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Psychic Scream IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9021","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Mana Burn V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9022","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Flash Heal VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9023","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Shadow Protection III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9024","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Mind Control III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9025","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Greater Heal IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9026","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Resurrection IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9027","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Mind Blast IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9028","-1","Teaches Inner Fire (Rank 3).","","","","Codex of Shadow Word: Pain VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9029","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Fade VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9030","-1","","","","","Restorative Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9031","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Shackle Undead III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9032","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Prayer of Healing IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9033","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Inner Fire VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9034","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Holy Word: Fortitude VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9035","-1","Teaches Prayer of Healing (Rank 2).","","","","Codex of Holy Word: Shield X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9036","-1","","","","","Magic Resistance Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9037","-1","Teaches Lightning Bolt (Rank 2).","","","","Tablet of Rockbiter Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9039","-1","Teaches Serpent Totem (Rank 1).","","","","Tablet of Earth Shock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9040","-1","Teaches Molten Blast (Rank 1).","","","","Tablet of Healing Wave II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9041","-1","Teaches Earthbind Totem.","","","","Tablet of Earthbind Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9043","-1","Teaches Agitating Totem (Rank 1).","","","","Tablet of Stoneclaw Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9044","-1","Teaches Lightning Shield (Rank 1).","","","","Tablet of Earth Shock II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9046","-1","Teaches Serpent Totem (Rank 1).","","","","Tablet of Strength of Earth Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9047","-1","Teaches Serpent Totem (Rank 1).","","","","Tablet of Flame Shock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9048","-1","Teaches Purge.","","","","Tablet of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9049","-1","Teaches Molten Blast (Rank 2).","","","","Tablet of Fire Nova Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9050","-1","Teaches Purge.","","","","Tablet of Healing Wave III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9051","-1","Teaches Molten Blast (Rank 2).","","","","Tablet of Earth Shock III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9052","-1","Teaches Molten Blast (Rank 2).","","","","Tablet of Stoneskin Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9053","-1","Teaches Lightning Bolt (Rank 2).","","","","Tablet of Rockbiter Weapon II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"9054","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Flame Shock II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9055","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Stoneclaw Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9056","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Healing Wave IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9057","-1","Teaches Water Breathing.","","","","Tablet of Frostbrand Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9058","-1","Teaches Water Breathing.","","","","Tablet of Frost Shock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9059","-1","Teaches Serpent Totem (Rank 1).","","","","Tablet of Flametongue Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9060","-1","Used by Gnomish Engineers to reinforce their creations","","","","Inlaid Mithril Cylinder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9061","-1","Used by Goblin Engineers to power their creations","","","","Goblin Rocket Fuel","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9062","-1","Teaches Molten Blast (Rank 3).","","","","Tablet of Cure Disease","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9063","-1","Teaches Molten Blast (Rank 3).","","","","Tablet of Poison Cleansing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9064","-1","Teaches Molten Blast (Rank 3).","","","","Tablet of Flametongue Weapon II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9065","-1","Teaches Molten Blast (Rank 3).","","","","Tablet of Fire Nova Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1050","4200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"9066","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Frost Resistance Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9067","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Strength of Earth Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9068","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Stoneskin Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9069","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Earth Shock IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9070","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Healing Wave V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9071","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Mana Font Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9072","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Flametongue Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9073","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Windfury Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9074","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Flame Shock III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9075","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Fire Resistance Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9076","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Magma Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9077","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Stoneclaw Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9078","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Grounding Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9079","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Lightning Shock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9080","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Nature Resistance Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9081","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Healing Stream Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9082","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Rockbiter Weapon III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9083","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Searing Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9084","-1","Teaches Chain Lightning (Rank 1).","","","","Tablet of Windfury Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9085","-1","Teaches Chain Lightning (Rank 1).","","","","Tablet of Fire Nova Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9086","-1","Teaches Chain Lightning (Rank 1).","","","","Tablet of Healing Wave VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9087","-1","Teaches Chain Lightning (Rank 1).","","","","Tablet of Purge II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9088","-1","","","","","Gift of Arthas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9089","-1","Teaches Water Breathing.","","","","Tablet of Frost Shock II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9090","-1","Teaches Water Breathing.","","","","Tablet of Frostbrand Weapon II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9091","-1","Teaches Water Breathing.","","","","Tablet of Stoneskin Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9093","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Mana Font Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9094","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Flametongue Weapon III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9095","-1","Teaches Lightning Bolt (Rank 4).","","","","Tablet of Earth Shock V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9096","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Disease Cleansing Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9097","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Magma Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9098","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Strength of Earth Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9099","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Stoneclaw Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9100","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Lightning Shield V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9101","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Windfury Weapon II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9102","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Chain Lightning II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9103","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Healing Stream Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9104","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Searing Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9105","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Healing Wave VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9123","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Lightning Bolt VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9124","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Lightning Shock II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9125","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Grace of Air Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9126","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Flametongue Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9127","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Fire Resistance Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9128","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Fire Nova Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"9129","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Rockbiter Weapon IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9130","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Nature Resistance Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9131","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Stoneskin Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"9132","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Molten Blast VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9133","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Chain Heal II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9134","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Windfury Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9135","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Frost Shock III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9136","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Mana Font Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"9137","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Lightning Shield VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9138","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Magma Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9139","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Frostbrand Weapon III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9140","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Chain Lightning III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9141","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Stoneclaw Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9142","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Earth Shock VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9143","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Healing Wave VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9144","-1","","","","","Wildvine Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"9145","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Lightning Bolt VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9146","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Searing Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9147","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Healing Stream Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9148","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Flametongue Weapon IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"9149","-1","Required for Alchemical Transmutation.","","","","Philosopher's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","200","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","5","5","5","5","5","0","0","0","0","0","35" +"9150","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Strength of Earth Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9151","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Flame Shock V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9152","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Fire Nova Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9153","-1","","","","","Rig Blueprints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9154","-1","","","","","Elixir of Detect Undead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9155","-1","","","","","Arcane Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9156","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Molten Blast VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9157","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Chain Heal III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9158","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Frost Resistance Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9159","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Lightning Shock III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9160","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Windfury Weapon III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9161","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Stoneskin Totem VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"9162","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Lightning Shield VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9164","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Grace of Air Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9165","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Flametongue Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9166","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Mana Font Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9167","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Chain Lightning IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9168","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Healing Wave IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"9169","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Lightning Bolt VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9170","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Fire Resistance Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9171","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Magma Totem IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9172","-1","","","","","Invisibility Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9173","-1","","","","","Goblin Transponder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9174","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Frost Shock IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9175","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Rockbiter Weapon V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9176","-1","Teaches Lightning Bolt (Rank 5).","","","","Tablet of Stoneclaw Totem VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13250","53000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"9177","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Earth Shock VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9178","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Nature Resistance Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9179","-1","","","","","Elixir of Greater Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","37" +"9180","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Windfury Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9181","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Healing Stream Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9182","-1","Teaches Lightning Shield (Rank 4).","","","","Tablet of Searing Totem VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"9183","-1","Teaches Molten Blast (Rank 5).","","","","Tablet of Chain Heal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9184","-1","Teaches Lightning Bolt (Rank 3).","","","","Tablet of Flame Shock IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9185","-1","Teaches Lightning Shield (Rank 3).","","","","Tablet of Frost Resistance Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9186","-1","","","","","Mind-numbing Poison III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"9187","-1","","","","","Elixir of Greater Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9188","-1","Teaches Molten Blast (Rank 4).","","","","Tablet of Searing Totem II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9189","-1","","","","","Shay's Bell","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","67648","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9190","-1","Teaches Immolate (Rank 2).","","","","Grimoire of Immolate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"9191","-1","Teaches Curse of Tongues (Rank 1).","","","","Grimoire of Curse of Weakness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9192","-1","Teaches Corruption (Rank 1).","","","","Grimoire of Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"9193","-1","Teaches Shadow Bolt (Rank 2).","","","","Grimoire of Life Tap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9194","-1","Teaches Curse of Agony (Rank 1).","","","","Grimoire of Curse of Agony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9195","-1","Teaches Fear (Rank 1).","","","","Grimoire of Drain Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"9197","-1","","","","","Elixir of Dream Vision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9198","-1","Teaches Health Funnel (Rank 1).","","","","Grimoire of Health Funnel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9199","-1","Teaches Health Funnel (Rank 1).","","","","Grimoire of Curse of Recklessness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"9200","-1","Teaches Drain Life (Rank 1).","","","","Grimoire of Curse of Weakness II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","225","900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"9201","-1","Teaches Corruption (Rank 2).","","","","Grimoire of Corruption II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"9202","-1","Teaches Create Soulstone.","","","","Grimoire of Life Tap II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"9203","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Ritual of Summoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9204","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Health Funnel II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9205","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Curse of Agony II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","2900","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"9206","-1","","","","","Elixir of Giants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9207","-1","Teaches Fear (Rank 2).","","","","Grimoire of Create Bloodstone II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9208","-1","Teaches Fear (Rank 2).","","","","Grimoire of Drain Soul II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9209","-1","Teaches Fear (Rank 2).","","","","Grimoire of Curse of Weakness III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","5300","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"9210","-1","","","","","Ghost Dye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9211","-1","Teaches Drain Mana (Rank 1).","","","","Grimoire of Curse of Recklessness II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1675","6700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"9212","-1","Teaches Shadow Bolt (Rank 4).","","","","Grimoire of Shadow Bolt V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9214","-1","Teaches Inferno.","","","","Grimoire of Inferno","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"9215","-1","Teaches Shadow Bolt (Rank 4).","","","","Grimoire of Health Funnel III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9216","-1","Teaches Corruption (Rank 3).","","","","Grimoire of Corruption III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2025","8100","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9217","-1","Teaches Drain Life (Rank 3).","","","","Grimoire of Life Tap III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9218","-1","Teaches Drain Life (Rank 3).","","","","Grimoire of Enslave Demon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9219","-1","Teaches Drain Life (Rank 3).","","","","Grimoire of Hellfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","9700","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"9221","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Curse of Agony III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9222","-1","Teaches Rain of Fire (Rank 1).","","","","Grimoire of Curse of the Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"9223","-1","Teaches Demon Armor (Rank 2).","","","","Grimoire of Curse of Weakness IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"9224","-1","","","","","Elixir of Demonslaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9225","-1","Teaches Shadow Bolt (Rank 4).","","","","Grimoire of Shadow Bolt VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9226","-1","Teaches Shadow Bolt (Rank 4).","","","","Grimoire of Health Funnel IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9227","-1","Teaches Drain Mana (Rank 2).","","","","Grimoire of Drain Soul III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9228","-1","Teaches Drain Mana (Rank 2).","","","","Grimoire of Create Bloodstone III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9229","-1","Teaches Drain Mana (Rank 2).","","","","Grimoire of Life Drain IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"9230","-1","Teaches Detect Invisibility.","","","","Grimoire of Curse of Recklessness III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9231","-1","Teaches Rain of Fire (Rank 2).","","","","Grimoire of Corruption IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9233","-1","","","","","Elixir of Detect Demon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9234","-1","","","","","Tiara of the Deep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9235","-1","","","","","Pratt's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9236","-1","","","","","Jangdor's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9237","-1","","","","","Woodpaw Gnoll Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9238","-1","","","","","Uncracked Scarab Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9240","-1","","","","","Mallet of Zul'Farrak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9241","-1","","","","","Sacred Mallet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9242","-1","","","","","Ancient Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","9685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1091","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9243","-1","","","","","Shriveled Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8155","32620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","-5","-5","13","0","0","0","0","0","0","0","40" +"9244","-1","","","","","Stoley's Shipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9245","-1","","","","","Stoley's Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9246","-1","","","","","Firebeard's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9247","-1","","","","","Hatecrest Naga Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9248","-1","","","","","Mysterious Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9249","-1","","","","","Captain's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1553","6215","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9250","-1","","","","","Ship Schedule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2876","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9251","-1","","","","","Upper Map Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9252","-1","","","","","Lower Map Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9253","-1","","","","","Middle Map Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9254","-1","","","","","Cuergo's Treasure Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2882","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9255","-1","","","","","Lahassa Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9256","-1","","","","","Imbel Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9257","-1","","","","","Samha Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9258","-1","","","","","Byltan Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9259","-1","","","","","Troll Tribal Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","64","258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9260","-1","","","","","Volatile Rum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9261","-1","","","","","Lead Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9262","-1","","","","","Black Vitriol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9263","-1","","","","","Troyas' Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9264","-1","","","","","Elixir of Shadow Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"9265","-1","","","","","Cuergo's Hidden Treasure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","60","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9266","-1","","","","","Woodpaw Battle Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9275","-1","","","","","Cuergo's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9276","-1","","","","","Pirate's Footlocker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9277","-1","","","","","Techbot's Memory Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9278","-1","","","","","Essential Artificial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9279","-1","Grants access to Matrix Punchograph 3005-A","","","","White Punch Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","45","180","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1131","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9280","-1","Grants access to Matrix Punchograph 3005-B","","","","Yellow Punch Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1191","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9281","-1","Grants access to Matrix Punchograph 3005-D","","","","Red Punch Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1193","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9282","-1","Grants access to Matrix Punchograph 3005-C","","","","Blue Punch Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1192","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9283","-1","One Shot, One Fill","","","","Empty Leaden Collection Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9284","-1","Keep Out of Reach of Children","","","","Full Leaden Collection Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9285","-1","","","","","Field Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4204","21022","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1115","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9286","-1","","","","","Field Plate Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10571","52856","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","528","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9287","-1","","","","","Field Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4235","21177","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","779","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9288","-1","","","","","Field Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4250","21252","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","947","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9289","-1","","","","","Field Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6350","31752","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","863","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9290","-1","","","","","Field Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6883","34417","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","695","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9291","-1","","","","","Field Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9251","46257","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","612","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9292","-1","","","","","Field Plate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6436","32183","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1199","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9293","-1","Teaches you how to make a Magic Resistance Potion.","","","","Recipe: Magic Resistance Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","171","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9294","-1","Teaches you how to make a Wildvine potion.","","","","Recipe: Wildvine Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9295","-1","Teaches you how to make an Invisibility Potion.","","","","Recipe: Invisibility Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","171","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9296","-1","Teaches you how to make a Gift of Arthas.","","","","Recipe: Gift of Arthas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","171","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9297","-1","Teaches you how to make an Elixir of Dream Vision.","","","","Recipe: Elixir of Dream Vision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","171","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9298","-1","Teaches you how to make an Elixir of Giants.","","","","Recipe: Elixir of Giants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","171","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9299","-1","","","","","Thermaplugg's Safe Combination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9300","-1","Teaches you how to make an Elixir of Demonslaying.","","","","Recipe: Elixir of Demonslaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9301","-1","Teaches you how to make an Elixir of Shadow Power.","","","","Recipe: Elixir of Shadow Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9302","-1","Teaches you how to make Ghost Dye.","","","","Recipe: Ghost Dye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","171","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9303","-1","Teaches you how to make a Philosopher's Stone.","","","","Recipe: Philosopher's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9304","-1","Teaches you how to transmute Iron into Gold.","","","","Recipe: Transmute Iron to Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9305","-1","Teaches you how to transmute Mithril into Truesilver.","","","","Recipe: Transmute Mithril to Truesilver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","171","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9306","-1","","","","","Stave of Equinex","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9307","-1","","","","","A Sparkling Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9308","-1","Caked grime obscures the true identity of this object.","","","","Grime-Encrusted Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","38","152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9309","-1","","","","","Robo-mechanical Guts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9311","-1","","","","","Default Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9312","-1","","","","","Blue Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9313","-1","","","","","Green Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9314","-1","","","","","Red Streaks Firework","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9315","-1","","","","","Yellow Rose Firework","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9316","-1","Data card only","","","","Prismatic Punch Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1194","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9317","-1","","","","","Red, White and Blue Firework","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9318","-1","","","","","Red Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9319","-1","","","","","Nimboya's Laden Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9320","-1","","","","","Witherbark Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9321","-1","","","","","Venom Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9322","-1","","","","","Undamaged Venom Sac","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","67584","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9323","-1","","","","","Gadrin's Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9324","-1","","","","","Shadra's Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9325","-1","Troyas has entrusted this to you until you return.","","","","A Small Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9326","-1","","","","","Grime-Encrusted Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2945","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"9327","-1","","","","","Security DELTA Data Access Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","202","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9328","-1","New & Improved!","","","","Super Snapper FX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9329","-1","Tied with a bow.","","","","A Short Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1156","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9330","-1","She's so photogenic...","","","","Snapshot of Gammerita","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1171","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9331","-1","","","","","Feralas: A History","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","2","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9332","-1","","","","","Crusted Bandages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","38","155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9333","-1","","","","","Tarnished Silver Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","73","295","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9334","-1","","","","","Cracked Pottery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","47","190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9335","-1","","","","","Broken Obsidian Club","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","52","210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9336","-1","","","","","Gold-capped Troll Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1288","5155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9355","-1","","","","","Hoop Earring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","376","1505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9356","-1","","","","","A Wooden Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","217","870","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9357","-1","","","","","A Parrot Skeleton","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","227","910","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9358","-1","","","","","A Head Rag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","228","915","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"9359","-1","","","","","Southsea Lamp","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19577","97889","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","45","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","4","0","0","0","0","0","0","0","0","40" +"9360","-1","","","","","Cuergo's Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9361","-1","","","","","Cuergo's Gold with Worm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9362","-1","","","","","Brilliant Gold Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","4","0","0","0","0","0","0","0","0","0" +"9363","-1","","","","","Sparklematic-Wrapped Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9364","-1","Handle With Care","","","","Heavy Leaden Collection Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9365","-1","DANGER! DO NOT INGEST!","","","","High Potency Radioactive Fallout","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9366","-1","","","","","Golden Scale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3689","18447","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","4","0","0","0","0","0","0","0","0","36" +"9367","-1","Teaches you how to make Golden Scale Gauntlets.","","","","Plans: Golden Scale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","164","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9368","-1","","","","","Jer'kai's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9369","-1","","","","","Iridescent Sprite Darter Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9370","-1","","","","","Gordunni Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2978","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"9371","-1","","","","","Gordunni Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9372","-1","","","","","Sul'thraze the Lasher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","61936","309681","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","55","-1","0","0","108","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","50" +"9375","-1","","","","","Expert Goldminer's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","21102","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","5","17","0","0","0","0","0","0","0","33" +"9378","-1","","","","","Shovelphlange's Mining Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11380","56902","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","33" +"9379","-1","","","","","Sang'thraze the Deflector","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26383","131918","1","1","1","525312","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","49","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9380","-1","","","","","Jang'thraze the Protector","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28334","141671","1","1","1","1104","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9381","-1","","","","","Earthen Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8628","43144","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","38","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","33" +"9382","-1","","","","","Tromping Miner's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3608","18040","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","7","0","0","0","0","0","0","0","0","33" +"9383","-1","","","","","Obsidian Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16895","84476","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","40","-1","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","19","6","5","0","0","0","0","0","0","0","35" +"9384","-1","","","","","Stonevault Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9789","48947","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","31" +"9385","-1","","","","","Archaic Defender","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12281","61405","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","36","-1","0","0","77","0","0","0","0","117","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","31" +"9386","-1","","","","","Excavator's Brand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9859","49296","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","36","-1","0","0","43","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","31" +"9387","-1","","","","","Revelosh's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7208","36040","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","863","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","0","0","0","0","0","0","0","0","0","40" +"9388","-1","","","","","Revelosh's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3835","19178","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1094","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","0","0","0","0","0","0","0","0","0","35" +"9389","-1","","","","","Revelosh's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5198","25990","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1157","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","0","0","0","0","0","0","0","0","0","36" +"9390","-1","","","","","Revelosh's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2576","12882","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","716","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","35" +"9391","-1","","","","","The Shoveler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12831","64158","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","37","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","32" +"9392","-1","","","","","Annealed Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12980","64901","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","34","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","0","0","0","0","0","0","0","0","35" +"9393","-1","","","","","Beacon of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7882","31530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","0","0","0","0","0","0","0","0","0","33" +"9394","-1","","","","","Horned Viking Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2397","11988","1","0.3","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","15","0","0","0","0","0","0","0","0","40" +"9395","-1","","","","","Gloves of Old","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1565","7828","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","12","0","0","0","0","0","0","0","0","29" +"9396","-1","","","","","Legguards of the Vault","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7319","36596","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","5","13","0","0","0","0","0","0","0","34" +"9397","-1","","","","","Energy Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3672","18364","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","34" +"9398","-1","","","","","Worn Running Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1493","7465","1","0.3","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","10","0","0","0","0","0","0","0","0","35" +"9399","-1","","","","","Precision Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","-1","0","0","11","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9400","-1","","","","","Baelog's Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3248","16243","1","0.3","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","7","0","0","0","0","0","0","0","0","0","36" +"9401","-1","","","","","Nordic Longshank","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5070","25352","1","0.3","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","43","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","5","0","0","0","0","0","0","0","0","38" +"9402","-1","","","","","Earthborn Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25308","126543","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"9403","-1","","","","","Battered Viking Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2662","13311","1","0.3","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","1078","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","7","0","0","0","0","0","0","0","0","35" +"9404","-1","","","","","Olaf's All Purpose Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14097","1","0.3","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","11","0","0","0","0","0","0","0","0","0","37" +"9405","-1","","","","","Girdle of Golem Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2055","10278","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","28" +"9406","-1","","","","","Spirewind Fetter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4161","20807","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","7","11","0","0","0","0","0","0","0","30" +"9407","-1","","","","","Stoneweaver Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5094","25471","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","9","0","0","0","0","0","0","0","0","35" +"9408","-1","","","","","Ironshod Bludgeon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18639","93199","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","42","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","8","0","0","0","0","0","0","0","0","37" +"9409","-1","","","","","Ironaya's Bracers","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4490","22451","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1096","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","37" +"9410","-1","","","","","Cragfists","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6662","33310","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","782","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","40" +"9411","-1","","","","","Rockshard Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8587","42936","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","2","0","0","0","0","0","0","0","0","40" +"9412","-1","","","","","Galgann's Fireblaster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16681","83405","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","47","-1","0","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","40" +"9413","-1","","","","","The Rockpounder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32249","161245","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","49","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","5","0","0","0","0","0","0","0","0","0","40" +"9414","-1","","","","","Oilskin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10374","51873","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","17","0","0","0","0","0","0","0","0","40" +"9415","-1","","","","","Grimlok's Tribal Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8997","44986","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","14","5","0","0","0","0","0","0","0","40" +"9416","-1","","","","","Grimlok's Charge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28218","141093","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","15","0","0","0","0","0","0","0","0","40" +"9417","-1","","","","","Archaedic Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10795","43180","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","42" +"9418","-1","","","","","Stoneslayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32851","164259","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","49","1535","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","40" +"9419","-1","","","","","Galgann's Firehammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21692","108461","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","46","-1","0","0","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","40" +"9420","-1","","","","","Adventurer's Pith Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4083","20417","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","9","14","0","0","0","0","0","0","0","32" +"9421","-1","","","","","Major Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"9422","-1","","","","","Shadowforge Bushmaster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13052","65262","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","7","0","0","0","0","0","0","0","0","0","38" +"9423","-1","","","","","The Jackhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25464","127320","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","79","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","40" +"9424","-1","","","","","Ginn-su Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13594","67971","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","41","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","4","0","0","0","0","0","0","0","0","36" +"9425","-1","","","","","Pendulum of Doom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21489","107447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","44","-1","0","0","124","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","39" +"9426","-1","","","","","Monolithic Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10275","51375","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","41","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","36" +"9427","-1","","","","","Stonevault Bonebreaker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","74266","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","42","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","4","0","0","0","0","0","0","0","0","37" +"9428","-1","","","","","Unearthed Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2096","10482","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1073","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","30" +"9429","-1","","","","","Miner's Hat of the Deep","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5236","26184","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","4","10","7","0","0","0","0","0","0","0","39" +"9430","-1","","","","","Spaulders of a Lost Age","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8553","42769","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","0","0","0","0","0","0","0","0","0","40" +"9431","-1","","","","","Papal Fez","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4885","24427","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","9","0","0","0","0","0","0","0","0","38" +"9432","-1","","","","","Skullplate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5327","26638","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","5","5","0","0","0","0","0","0","0","40" +"9433","-1","","","","","Forgotten Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4133","20669","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","4","0","0","0","0","0","0","0","0","41" +"9434","-1","","","","","Elemental Raiment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5648","28240","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","36" +"9435","-1","","","","","Reticulated Bone Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2916","14584","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","5","0","0","0","0","0","0","0","0","31" +"9436","-1","","","","","Faranell's Parcel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9437","-1","","","","","Untested Basilisk Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9438","-1","","","","","Acceptable Scorpid Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9439","-1","","","","","Untested Hyena Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9440","-1","","","","","Acceptable Basilisk Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9441","-1","","","","","Acceptable Hyena Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9442","-1","","","","","Untested Scorpid Sample","0","7260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9443","-1","","","","","Used Monster Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9444","-1","","","","","Techbot CPU Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1120","5602","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","21" +"9445","-1","","","","","Grubbis Paws","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2260","11303","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","6","9","0","0","0","0","0","0","0","29" +"9446","-1","","","","","Electrocutioner Leg","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7564","37820","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","34","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","28" +"9447","-1","","","","","Electrocutioner Lagnut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3237","12950","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","28" +"9448","-1","","","","","Spidertank Oilrag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1385","6929","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","28" +"9449","-1","","","","","Manual Crowd Pummeler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9564","47823","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","34","-1","0","0","46","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","5","0","0","0","0","0","0","0","0","28" +"9450","-1","","","","","Gnomebot Operating Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2618","13091","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","3","0","0","0","0","0","0","0","0","28" +"9451","-1","","","","","Bubbling Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"9452","-1","","","","","Hydrocane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8210","41052","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","59","0","0","0","0","90","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","27" +"9453","-1","","","","","Toxic Revenger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6592","32962","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","32","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","27" +"9454","-1","","","","","Acidic Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1984","9923","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","4","0","0","0","0","0","0","0","0","27" +"9455","-1","","","","","Emissary Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1826","9130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1072","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","5","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","28" +"9456","-1","","","","","Glass Shooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6652","33262","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","30" +"9457","-1","","","","","Royal Diplomatic Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8902","44511","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","35","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","2","0","0","0","0","0","0","0","0","30" +"9458","-1","","","","","Thermaplugg's Central Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6918","34590","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","795","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","3","0","0","0","0","0","0","0","0","0","28" +"9459","-1","","","","","Thermaplugg's Left Arm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13560","67802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","7","0","0","0","0","0","0","0","0","28" +"9460","-1","","","","","Grimtotem Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9461","-1","","","","","Charged Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4586","18345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3481","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","28" +"9462","-1","","","","","Crate of Grimtotem Horns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9463","-1","","","","","Gordunni Cobalt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9464","-1","","","","","Deprecated Orwin's Shovel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","48","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9465","-1","Also serves as a mining pick.","","","","Digmaster 5000","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18561","92805","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","11","0","0","0","0","0","0","0","1800","0","175","186","45","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","40" +"9466","-1","","","","","Orwin's Shovel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9467","-1","","","","","Gahz'rilla Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22418","112092","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","47","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","42" +"9468","-1","","","","","Sharpbeak's Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9469","-1","","","","","Gahz'rilla Scale Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14634","73172","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","0","0","0","0","0","0","0","0","0","43" +"9470","-1","","","","","Bad Mojo Mask","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7858","39292","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","0","0","0","0","0","0","0","0","0","44" +"9471","-1","","","","","Nekrum's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9472","-1","","","","","Hexx's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9473","-1","","","","","Jinxed Hoodoo Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13241","66208","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","8","10","0","0","0","0","0","0","0","44" +"9474","-1","","","","","Jinxed Hoodoo Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13290","66450","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","10","0","0","0","0","0","0","0","0","44" +"9475","-1","","","","","Diabolic Skiver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33346","166732","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","49","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9476","-1","","","","","Big Bad Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15010","75051","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","8","0","0","0","0","0","0","0","45" +"9477","-1","","","","","The Chief's Enforcer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35936","179683","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","50","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9478","-1","","","","","Ripsaw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28853","144265","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","63","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"9479","-1","","","","","Embrace of the Lycan","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10858","54294","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","5","8","0","0","0","0","0","0","0","45" +"9480","-1","","","","","Eyegouger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31725","158626","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","48","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","10","0","0","0","0","0","0","0","0","43" +"9481","-1","","","","","The Minotaur","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34067","170336","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","49","-1","0","0","109","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","24","5","8","0","0","0","0","0","0","0","44" +"9482","-1","","","","","Witch Doctor's Cane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29585","147925","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","47","-1","0","0","75","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","0","0","0","0","0","0","0","0","0","42" +"9483","-1","","","","","Flaming Incinerator","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19139","95695","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","49","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","8","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","44" +"9484","-1","","","","","Spellshock Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10962","54812","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","9","0","0","0","0","0","0","0","0","45" +"9485","-1","","","","","Vibroblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5288","26441","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","30","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","25" +"9486","-1","","","","","Supercharger Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5483","27418","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","28","-1","0","0","51","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","23" +"9487","-1","","","","","Hi-tech Supergun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3632","18164","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","29","-1","0","0","29","0","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","24" +"9488","-1","","","","","Oscillating Power Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4419","22097","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","28","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","1","0","0","0","0","0","0","0","0","23" +"9489","-1","","","","","Gyromatic Icemaker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3690","18450","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","31","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9490","-1","","","","","Gizmotron Megachopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6122","30610","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","29","-1","0","0","61","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","5","0","0","0","0","0","0","0","0","24" +"9491","-1","","","","","Hotshot Pilot's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1308","6542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","5","5","0","0","0","0","0","0","0","27" +"9492","-1","","","","","Electromagnetic Gigaflux Reactivator","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3172","15862","1","1","1","64","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","28" +"9507","-1","","","","","A Carefully-packed Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9508","-1","","","","","Mechbuilder's Overalls","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2352","11763","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","202","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","5","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","5","0","0","0","0","0","0","0","0","26" +"9509","-1","Keep away from fire.","","","","Petrolspill Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2683","13417","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","-10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","6","0","0","0","0","0","0","0","0","25" +"9510","-1","","","","","Caverndeep Trudgers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2945","14729","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","4","4","10","0","0","0","0","0","0","0","27" +"9511","-1","","","","","Bloodletter Scalpel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21060","105300","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","46","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","41" +"9512","-1","","","","","Blackmetal Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6341","31706","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","5","0","0","0","0","0","0","0","0","41" +"9513","-1","","","","","Ley Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","620","3102","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","13","128","0","0","20","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","2","0","0","0","0","0","0","0","0","0" +"9514","-1","","","","","Arcane Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","306","1532","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","10","128","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"9515","-1","","","","","Nether-lace Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2011","10056","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","9","0","0","0","0","0","0","0","0","0" +"9516","-1","","","","","Astral Knot Blouse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2071","10355","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","128","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","9","0","0","0","0","0","0","0","0","0" +"9517","-1","","","","","Celestial Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15737","78687","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","40","128","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","0" +"9518","-1","","","","","Mud's Crushers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1900","9500","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","0" +"9519","-1","","","","","Durtfeet Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2288","11444","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","9","0","0","0","0","0","0","0","0","0" +"9520","-1","","","","","Silent Hunter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11461","57309","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","41","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","0" +"9521","-1","","","","","Skullsplitter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14382","71912","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","41","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","4","0","0","0","0","0","0","0","0","0" +"9522","-1","","","","","Energized Stone Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4938","24694","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","7","0","0","0","0","0","0","0","0","0" +"9523","-1","","","","","Troll Temper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9527","-1","","","","","Spellshifter Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21613","108069","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","46","-1","0","0","77","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","16","0","0","0","0","0","0","0","0","0" +"9528","-1","","","","","Edana's Dark Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9529","-1","Soft Like Pudding","","","","Internal Warrior Equipment Kit L25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9530","-1","","","","","Horn of Hatetalon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9531","-1","","","","","Gemshale Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9195","45976","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9532","-1","Made With Love","","","","Internal Warrior Equipment Kit L30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9533","-1","","","","","Masons Fraternity Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7092","28370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","5","0","0","0","0","0","0","0","0","0" +"9534","-1","","","","","Engineer's Guild Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8847","44237","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","9","0","0","0","0","0","0","0","0","0" +"9535","-1","","","","","Fire-welded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1406","7034","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","6","0","0","0","0","0","0","0","0","0" +"9536","-1","","","","","Fairywing Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1411","7059","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","1","8","0","0","0","0","0","0","0","0","0" +"9537","-1","","","","","Neatly Wrapped Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9538","-1","","","","","Talvash's Gold Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6463","25852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"9539","-1","","","","","Box of Rations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9540","-1","","","","","Box of Spells","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9541","-1","","","","","Box of Goodies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9542","-1","","","","","Simple Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2439","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9543","-1","","","","","Simple Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2442","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9544","-1","","","","","Simple Memorandum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2440","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9545","-1","","","","","Simple Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2444","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9546","-1","","","","","Simple Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2443","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9547","-1","","","","","Simple Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2441","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9548","-1","","","","","Hallowed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2465","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9550","-1","","","","","Encrypted Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2435","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9551","-1","","","","","Encrypted Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2437","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9552","-1","","","","","Rune-Inscribed Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2460","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9553","-1","","","","","Etched Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2454","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9554","-1","","","","","Encrypted Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2438","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9555","-1","","","","","Encrypted Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2432","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9556","-1","","","","","Hallowed Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2466","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9557","-1","","","","","Hallowed Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2468","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9558","-1","","","","","Encrypted Memorandum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2433","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9559","-1","","","","","Encrypted Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2436","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9560","-1","","","","","Encrypted Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2434","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9561","-1","","","","","Hallowed Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2469","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9562","-1","","","","","Rune-Inscribed Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2462","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9563","-1","","","","","Consecrated Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2464","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9564","-1","","","","","Etched Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2457","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9565","-1","","","","","Etched Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2453","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9566","-1","","","","","Etched Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2455","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9567","-1","","","","","Etched Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2456","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9568","-1","","","","","Rune-Inscribed Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2461","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9569","-1","","","","","Hallowed Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2467","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9570","-1","","","","","Consecrated Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2463","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9571","-1","","","","","Glyphic Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2445","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9572","-1","","","",""," Glyphic Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3111","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9573","-1","","","","","Glyphic Memorandum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2446","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9574","-1","","","","","Glyphic Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2447","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9575","-1","","","","","Glyphic Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2448","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9576","-1","","","","","Tainted Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2449","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9577","-1","","","","","Tainted Memorandum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2450","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9578","-1","","","","","Tainted Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2452","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9579","-1","","","","","Tainted Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2451","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9580","-1","","","","","Verdant Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2459","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9581","-1","","","","","Verdant Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2458","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9587","-1","","","","","Thawpelt Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9588","-1","","","","","Nogg's Gold Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6463","25852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"9589","-1","","","","","Encrusted Minerals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9590","-1","","","","","Splintered Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9591","-1","","","","","Resilient Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9592","-1","","","","","Metallic Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9593","-1","","","","","Treant Muisek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9594","-1","","","","","Wildkin Muisek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9595","-1","","","","","Hippogryph Muisek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9596","-1","","","","","Faerie Dragon Muisek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9597","-1","","","","","Mountain Giant Muisek","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9598","-1","","","","","Sleeping Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94","474","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9599","-1","","","","","Barkmail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142","714","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9600","-1","","","","","Lace Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93","466","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9601","-1","","","","","Cushioned Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","438","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9602","-1","","","","","Brushwood Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","301","1505","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","17","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9603","-1","","","","","Gritroot Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1510","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","10","-1","0","0","14","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"9604","-1","","","","","Mechanic's Pipehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5632","28160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","30","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","10","3","0","0","0","0","0","0","0","0","0" +"9605","-1","","","","","Repairman's Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1356","6783","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","6","0","0","0","0","0","0","0","0","0" +"9606","-1","","","","","Treant Muisek Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9607","-1","","","","","Bastion of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1762","8811","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9608","-1","","","","","Shoni's Disarming Tool","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5028","25144","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","31","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9609","-1","","","","","Shilly Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1009","5047","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","0" +"9618","-1","","","","","Wildkin Muisek Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9619","-1","","","","","Hippogryph Muisek Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9620","-1","","","","","Faerie Dragon Muisek Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9621","-1","","","","","Mountain Giant Muisek Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9622","-1","","","","","Reedknot Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5665","22660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","6","0","0","0","0","0","0","0","0","0" +"9623","-1","","","","","Civinad Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4198","20992","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","18","7","0","0","0","0","0","0","0","0","0" +"9624","-1","","","","","Triprunner Dungarees","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5267","26338","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","18","3","0","0","0","0","0","0","0","0" +"9625","-1","","","","","Dual Reinforced Leggings","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6344","31722","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","0" +"9626","-1","","","","","Dwarven Charge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16243","81219","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","42","-1","0","0","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","11","0","0","0","0","0","0","0","0","0" +"9627","-1","","","","","Explorer's League Lodestar","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","7","6","0","0","0","0","0","0","0","0","0" +"9628","-1","","","","","Neeru's Herb Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9629","-1","","","","","A Shrunken Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9630","-1","","","","","Pratt's Handcrafted Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5780","28904","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","11","0","0","0","0","0","0","0","0","0" +"9631","-1","","","","","Pratt's Handcrafted Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3868","19342","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9632","-1","","","","","Jangdor's Handcrafted Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3883","19417","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9633","-1","","","","","Jangdor's Handcrafted Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5847","29238","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","11","0","0","0","0","0","0","0","0","0" +"9634","-1","","","","","Skilled Handling Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3381","16906","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","10","0","0","0","0","0","0","0","0","0" +"9635","-1","","","","","Master Apothecary Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4713","23568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","10","0","0","0","0","0","0","0","0","0" +"9636","-1","","","","","Swashbuckler Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3154","15772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","0","0","0","0","0","0","0","0","0","0" +"9637","-1","","","","","Shinkicker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8296","41480","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","0" +"9638","-1","","","","","Chelonian Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6875","34376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","10","0","0","0","0","0","0","0","0","0" +"9639","-1","","","","","The Hand of Antu'sul","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24111","120557","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","48","-1","0","0","61","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","43" +"9640","-1","","","","","Vice Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8519","42595","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","783","0","0","0","0","0","0","0","0","0","0","318","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","43" +"9641","-1","","","","","Lifeblood Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13041","52165","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","0","0","0","0","0","0","0","0","0","43" +"9642","-1","","","","","Band of the Great Tortoise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2092","8370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9643","-1","","","","","Optomatic Deflector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15988","79943","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","0" +"9644","-1","","","","","Thermotastic Egg Timer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9885","39540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","11","0","0","0","0","0","0","0","0","0" +"9645","-1","","","","","Gnomish Inventor Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6768","33841","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","2","11","0","0","0","0","0","0","0","0" +"9646","-1","","","","","Gnomish Water Sinking Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11863","59315","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","-5","16","0","0","0","0","0","0","0","0","0" +"9647","-1","","","","","Failed Flying Experiment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7962","39813","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","0","0","0","0","0","0","0","0","0" +"9648","-1","Now even less absorbant!","","","","Chainlink Towel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6392","31964","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","10","0","0","0","0","0","0","0","0","0" +"9649","-1","","","","","Royal Highmark Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15875","79376","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","3","3","16","0","0","0","0","0","0","0","0" +"9650","-1","","","","","Honorguard Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21619","108098","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","15","0","0","0","0","0","0","0","0","0" +"9651","-1","","","","","Gryphon Rider's Stormhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32193","160969","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","0" +"9652","-1","","","","","Gryphon Rider's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16159","80796","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","0" +"9653","-1","","","","","Speedy Racer Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6745","33728","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","0","0","0","0","0","0","0","0","0","0" +"9654","-1","","","","","Cairnstone Sliver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16929","84645","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","50","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"9655","-1","","","","","Seedtime Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7092","28370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","10","0","0","0","0","0","0","0","0","0" +"9656","-1","","","","","Granite Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7482","37412","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","0","0","0","0","0","0","0","0","0","0" +"9657","-1","","","","","Vinehedge Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5333","26669","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","3","0","0","0","0","0","0","0","0","0" +"9658","-1","","","","","Boots of the Maharishi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4086","20433","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","9","0","0","0","0","0","0","0","0","0" +"9659","-1","","","","","Monster - Mace, Tauren Spiked","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9660","-1","","","","","Stargazer Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4227","21139","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","0" +"9661","-1","","","","","Earthclasp Barrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9051","45257","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","9","0","0","0","0","0","0","0","0","0" +"9662","-1","","","","","Rushridge Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7437","37189","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","7","0","0","0","0","0","0","0","0","0" +"9663","-1","","","","","Dawnrider's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9969","49849","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","5","0","0","0","0","0","0","0","0","0" +"9664","-1","","","","","Sentinel's Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8738","43691","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","9","12","0","0","0","0","0","0","0","0" +"9665","-1","","","","","Wingcrest Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4827","24135","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"9666","-1","","","","","Stronghorn Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7266","36332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","10","0","0","0","0","0","0","0","0","0" +"9678","-1","","","","","Tok'kar's Murloc Basher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17486","87430","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","43","-1","0","0","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","18","0","0","0","0","0","0","0","0","0","0" +"9679","-1","","","","","Tok'kar's Murloc Chopper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17550","87751","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","43","-1","0","0","83","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","6","0","0","0","0","0","0","0","0","0" +"9680","-1","","","","","Tok'kar's Murloc Shanker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14090","70451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","43","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","6","0","0","0","0","0","0","0","0","0" +"9681","-1","","","","","Grilled King Crawler Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"9682","-1","","","","","Leather Chef's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3832","19160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","12","0","0","0","0","0","0","0","0","0" +"9683","-1","","","","","Strength of the Treant","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38459","192298","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","51","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","24","0","0","0","0","0","0","0","0","0" +"9684","-1","","","","","Force of the Hippogryph","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30875","154379","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","51","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","0","0","0","0","0","0","0","0","0","0" +"9685","-1","","","","","Will of the Mountain Giant","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32277","161389","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","51","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","14","0","0","0","0","0","0","0","0","46" +"9686","-1","","","","","Spirit of the Faerie Dragon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31097","155489","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","51","-1","0","0","62","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","0","0","0","0","0","0","0","0","0","0" +"9687","-1","","","","","Grappler's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1554","7772","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","5","0","0","0","0","0","0","0","0","0" +"9698","-1","","","","","Gloves of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1505","7525","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","6","0","0","0","0","0","0","0","0","0" +"9699","-1","","","","","Garrison Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1812","9062","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","3","0","0","0","0","0","0","0","0","0" +"9700","-1","","","","","Monster - Item, Sparkler Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9701","-1","","","","","Monster - Item, Sparkler Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9702","-1","","","","","Monster - Item, Sparkler White","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"9703","-1","","","","","Scorched Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4272","21362","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","9","0","0","0","0","0","0","0","0","0" +"9704","-1","","","","","Rustler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3573","17866","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","0" +"9705","-1","","","","","Tharg's Shoelace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3586","17930","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","0" +"9706","-1","","","","","Tharg's Disk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9212","46062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","10","0","0","0","0","0","0","0","0","0","0" +"9718","-1","","","","","Reforged Blade of Heroes","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11421","57106","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","38","-1","0","0","39","5","0","0","0","74","10","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","33" +"9719","-1","","","","","Broken Blade of Heroes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"9738","-1","","","","","Gem of Cobrahn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9739","-1","","","","","Gem of Anacondra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9740","-1","","","","","Gem of Pythas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9741","-1","","","","","Gem of Serpentis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9742","-1","","","","","Simple Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49","247","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9743","-1","","","","","Simple Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","336","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9744","-1","","","","","Simple Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9745","-1","","","","","Simple Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","271","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9746","-1","","","","","Simple Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","283","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9747","-1","","","","","Simple Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","227","1139","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","539","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9748","-1","","","","","Simple Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","274","1372","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","455","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9749","-1","","","","","Simple Blouse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1377","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","455","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9750","-1","","","","","Gypsy Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","288","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9751","-1","","","","","Gypsy Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","433","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9752","-1","","","","","Gypsy Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","290","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9753","-1","","","","","Gypsy Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","248","1242","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6278","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","7" +"9754","-1","","","","","Gypsy Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9755","-1","","","","","Gypsy Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","366","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9756","-1","","","","","Gypsy Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1472","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","560","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9757","-1","","","","","Gypsy Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1820","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","476","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9758","-1","","","","","Cadet Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","365","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9759","-1","","","","","Cadet Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","690","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9760","-1","","","","","Cadet Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","367","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","7" +"9761","-1","","","","","Cadet Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","295","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","6" +"9762","-1","","","","","Cadet Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92","463","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"9763","-1","","","","","Cadet Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","336","1682","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","581","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"9764","-1","","","","","Cadet Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1501","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","6279","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","8" +"9765","-1","","","","","Cadet Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","406","2034","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","497","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","10" +"9766","-1","","","","","Greenweave Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","362","1810","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","878","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9767","-1","","","","","Greenweave Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","616","3080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","794","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","18" +"9768","-1","","","","","Greenweave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","317","1586","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","1045","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","16" +"9769","-1","","","","","Greenweave Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1637","6548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9770","-1","","","","","Greenweave Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","417","2085","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","961","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9771","-1","","","","","Greenweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","532","2662","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","711","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9772","-1","","","","","Greenweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1328","6644","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","543","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9773","-1","","","","","Greenweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1369","6848","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","459","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9774","-1","","","","","Greenweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1374","6872","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","459","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9775","-1","","","","","Bandit Cinch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","316","1580","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","898","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9776","-1","","","","","Bandit Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","547","2736","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","814","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9777","-1","","","","","Bandit Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","318","1591","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1066","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9778","-1","","","","","Bandit Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","940","4702","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","2004","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9779","-1","","","","","Bandit Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","334","1672","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","981","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","13" +"9780","-1","","","","","Bandit Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","370","1850","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","730","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9781","-1","","","","","Bandit Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4910","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","563","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9782","-1","","","","","Bandit Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1113","5568","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","479","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"9783","-1","","","","","Raider's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","812","4060","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","499","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"9784","-1","","","","","Raider's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","533","2669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","835","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9785","-1","","","","","Raider's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","269","1345","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1086","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","12" +"9786","-1","","","","","Raider's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","234","1174","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1002","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","11" +"9787","-1","","","","","Raider's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1792","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","751","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9788","-1","","","","","Raider's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1564","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","918","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","13" +"9789","-1","","","","","Raider's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","742","3710","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","583","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9790","-1","","","","","Raider's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","794","3972","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2004","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","14" +"9791","-1","","","","","Ivycloth Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1644","8224","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","460","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9792","-1","","","","","Ivycloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","823","4116","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","795","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9793","-1","","","","","Ivycloth Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2754","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1047","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9794","-1","","","","","Ivycloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","829","4146","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","963","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9795","-1","","","","","Ivycloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","626","3134","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","711","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9796","-1","","","","","Ivycloth Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1038","5191","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1131","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9797","-1","","","","","Ivycloth Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1528","7640","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","544","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9798","-1","","","","","Ivycloth Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1686","8434","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","460","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9799","-1","","","","","Ivycloth Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","635","3179","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","879","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9800","-1","","","","","Ivy Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","8110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2020","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9801","-1","","","","","Superior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","708","3542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","900","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9802","-1","","","","","Superior Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1205","6025","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","816","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9803","-1","","","","","Superior Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","729","3647","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1068","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9804","-1","","","","","Superior Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1874","9372","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","2016","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9805","-1","","","","","Superior Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","709","3549","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","983","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9806","-1","","","","","Superior Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","834","4170","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","732","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9807","-1","","","","","Superior Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1255","6278","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1152","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"9808","-1","","","","","Superior Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1848","9242","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","565","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9809","-1","","","","","Superior Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1855","9276","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","481","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","23" +"9810","-1","","","","","Fortified Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1231","6156","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","837","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9811","-1","","","","","Fortified Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","725","3629","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","1088","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9812","-1","","","","","Fortified Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","1004","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","17" +"9813","-1","","","","","Fortified Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","826","4130","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","753","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9814","-1","","","","","Fortified Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","733","3668","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","920","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","19" +"9815","-1","","","","","Fortified Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1664","8320","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","585","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9816","-1","","","","","Fortified Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1781","8907","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2016","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9817","-1","","","","","Fortified Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7134","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1173","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"9818","-1","","","","","Fortified Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1682","8411","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","501","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","20" +"9819","-1","","","","","Durable Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2726","13630","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9820","-1","","","","","Durable Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1541","7707","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","797","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9821","-1","","","","","Durable Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","871","4357","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1048","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9822","-1","","","","","Durable Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1192","5964","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","964","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9823","-1","","","","","Durable Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4829","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","713","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9824","-1","","","","","Durable Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1599","7998","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1133","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9825","-1","","","","","Durable Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2355","11775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","545","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9826","-1","","","","","Durable Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2600","13001","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","462","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9827","-1","","","","","Scaled Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1114","5570","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","901","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9828","-1","","","","","Scaled Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1845","9225","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","818","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9829","-1","","","","","Scaled Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5101","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1069","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9830","-1","","","","","Scaled Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3489","17446","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2026","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9831","-1","","","","","Scaled Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1233","6166","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","985","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9832","-1","","","","","Scaled Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1248","6241","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","734","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9833","-1","","","","","Scaled Leather Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3031","15158","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","566","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9834","-1","","","","","Scaled Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2074","10372","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1154","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9835","-1","","","","","Scaled Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3053","15267","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","482","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9836","-1","","","","","Banded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3677","18387","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","503","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9837","-1","","","","","Banded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1287","6436","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1090","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"9838","-1","","","","","Banded Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1174","5873","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"9839","-1","","","","","Banded Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1426","7134","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","755","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9840","-1","","","","","Banded Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1432","7161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","923","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"9841","-1","","","","","Banded Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3163","15815","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","587","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9842","-1","","","","","Banded Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2391","11958","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1175","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"9843","-1","","","","","Banded Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3739","18697","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2028","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9844","-1","","","","","Conjurer's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3709","18547","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","463","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9845","-1","","","","","Conjurer's Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2136","10683","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","798","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9846","-1","","","","","Conjurer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1429","7149","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1050","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9847","-1","","","","","Conjurer's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1779","8896","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","965","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9848","-1","","","","","Conjurer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1584","7923","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","714","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9849","-1","","","","","Conjurer's Hood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2385","11927","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","630","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9850","-1","","","","","Conjurer's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2394","11971","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1134","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9851","-1","","","","","Conjurer's Breeches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3524","17623","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","547","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9852","-1","","","","","Conjurer's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3820","19103","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","463","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9853","-1","","","","","Conjurer's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1368","6842","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","882","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9854","-1","","","","","Archer's Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4935","24678","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","484","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9855","-1","","","","","Archer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1895","9475","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","903","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9856","-1","","","","","Archer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2839","14196","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","819","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9857","-1","","","","","Archer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1570","7851","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1071","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9858","-1","","","","","Archer's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4882","24414","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2034","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9859","-1","","","","","Archer's Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2872","14360","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","651","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9860","-1","","","","","Archer's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1906","9531","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","987","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9861","-1","","","","","Archer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1753","8769","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","735","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9862","-1","","","","","Archer's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4260","21303","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","568","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9863","-1","","","","","Archer's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3207","16037","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1156","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9864","-1","","","","","Renegade Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3527","17638","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","840","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9865","-1","","","","","Renegade Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9711","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1092","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","29" +"9866","-1","","","","","Renegade Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5605","28025","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","505","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9867","-1","","","","","Renegade Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1779","8895","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1007","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"9868","-1","","","","","Renegade Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2160","10802","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","756","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9869","-1","","","","","Renegade Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2225","11129","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","924","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"9870","-1","","","","","Renegade Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3686","18430","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","672","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9871","-1","","","","","Renegade Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5425","27128","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","589","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9872","-1","","","","","Renegade Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4101","20508","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1177","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9873","-1","","","","","Renegade Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5828","29141","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2040","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","32" +"9874","-1","","","","","Sorcerer Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5801","29005","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","465","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9875","-1","","","","","Sorcerer Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2139","10697","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","883","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9876","-1","","","","","Sorcerer Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3146","15734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","800","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9877","-1","","","","","Sorcerer Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2708","13541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","967","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9878","-1","","","","","Sorcerer Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3425","17125","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","632","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9879","-1","","","","","Sorcerer Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1964","9824","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1051","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9880","-1","","","","","Sorcerer Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2130","10651","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","716","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9881","-1","","","","","Sorcerer Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3464","17321","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1136","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9882","-1","","","","","Sorcerer Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6209","24836","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","43","-1","0","2050","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9883","-1","","","","","Sorcerer Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5026","25130","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","548","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9884","-1","","","","","Sorcerer Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5448","27244","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","465","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9885","-1","","","","","Huntsman's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4180","20900","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","821","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9886","-1","","","","","Huntsman's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2589","12948","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1072","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9887","-1","","","","","Huntsman's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7071","35357","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","486","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9888","-1","","","","","Deprecated Elven Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5204","26021","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2044","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"9889","-1","","","","","Huntsman's Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4240","21204","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","653","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9890","-1","","","","","Huntsman's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2919","14595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","988","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9891","-1","","","","","Huntsman's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2636","13182","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","904","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9892","-1","","","","","Huntsman's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2857","14287","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","737","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9893","-1","","","","","Huntsman's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6689","33449","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","569","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9894","-1","","","","","Huntsman's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4661","23308","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1157","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9895","-1","","","","","Jazeraint Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5221","26106","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","842","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9896","-1","","","","","Jazeraint Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2913","14567","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1093","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"9897","-1","","","","","Jazeraint Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7368","36843","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","506","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9898","-1","","","","","Jazeraint Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2718","13591","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1009","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","33" +"9899","-1","","","","","Jazeraint Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7920","39600","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","2046","0","0","0","0","0","0","0","0","0","0","1148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9900","-1","","","","","Jazeraint Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3195","15975","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","758","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9901","-1","","","","","Jazeraint Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3295","16475","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","926","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","35" +"9902","-1","","","","","Jazeraint Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5357","26786","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","674","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9903","-1","","","","","Jazeraint Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7743","38715","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","590","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9904","-1","","","","","Jazeraint Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5420","27104","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1178","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9905","-1","","","","","Royal Blouse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8251","41259","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","466","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9906","-1","","","","","Royal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3043","15217","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","885","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9907","-1","","","","","Royal Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4581","22909","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","801","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9908","-1","","","","","Royal Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4257","21289","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","969","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9909","-1","","","","","Royal Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2848","14243","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1053","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9910","-1","","","","","Royal Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3087","15438","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","717","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9911","-1","","","","","Royal Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7228","36143","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","550","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9912","-1","","","","","Royal Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5037","25189","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1137","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9913","-1","","","","","Royal Gown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8491","42455","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","466","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9914","-1","","","","","Royal Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7557","30230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","48","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9915","-1","","","","","Royal Headband","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5091","25456","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","633","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9916","-1","","","","","Tracker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3566","17834","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","906","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9917","-1","","","","","Tracker's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5519","27598","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","822","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9918","-1","","","","","Brigade Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10212","51062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9919","-1","","","","","Tracker's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4119","20597","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","990","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9920","-1","","","","","Tracker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3721","18607","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","738","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9921","-1","","","","","Tracker's Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6050","30253","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","654","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9922","-1","","","","","Tracker's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8745","43726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","571","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9923","-1","","","","","Tracker's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6095","30478","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1158","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9924","-1","","","","","Tracker's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10276","51380","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","487","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9925","-1","","","","","Tracker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3790","18950","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1074","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9926","-1","","","","","Brigade Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6368","31840","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","843","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9927","-1","","","","","Brigade Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3927","19639","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1094","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"9928","-1","","","","","Brigade Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9930","49654","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","507","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9929","-1","","","","","Brigade Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3662","18314","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1010","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"9930","-1","","","","","Brigade Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4287","21439","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","759","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9931","-1","","","","","Brigade Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4303","21516","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","927","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","38" +"9932","-1","","","","","Brigade Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6995","34978","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","675","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9933","-1","","","","","Brigade Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9394","46971","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","591","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9934","-1","","","","","Brigade Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6577","32889","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1179","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"9935","-1","","","","","Embossed Plate Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10097","50486","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2052","0","0","0","0","0","0","0","0","0","0","1408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9936","-1","","","","","Abjurer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6403","32016","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","803","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9937","-1","","","","","Abjurer's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4004","20023","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1054","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9938","-1","","","","","Abjurer's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6029","30148","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","970","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9939","-1","","","","","Abjurer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4317","21586","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","719","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9940","-1","","","","","Abjurer's Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6954","34772","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","635","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9941","-1","","","","","Abjurer's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6523","32619","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1139","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9942","-1","","","","","Abjurer's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9341","46709","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","551","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9943","-1","","","","","Abjurer's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11271","56359","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","468","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9944","-1","","","","","Abjurer's Crystal","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8570","34283","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2068","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9945","-1","","","","","Abjurer's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4124","20623","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","886","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9946","-1","","","","","Abjurer's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11396","56982","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","468","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9947","-1","","","","","Chieftain's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5193","25965","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","907","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9948","-1","","","","","Chieftain's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8365","41826","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","824","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9949","-1","","","","","Chieftain's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4855","24276","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1075","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9950","-1","","","","","Chieftain's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13418","67091","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","489","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"9951","-1","","","","","Chieftain's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5436","27181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","991","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9952","-1","","","","","Chieftain's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5255","26276","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","740","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9953","-1","","","","","Chieftain's Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8467","42335","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","656","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9954","-1","","","","","Chieftain's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12126","60630","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","572","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"9955","-1","","","","","Chieftain's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8531","42655","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1160","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9956","-1","","","","","Warmonger's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5130","25650","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1096","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"9957","-1","","","","","Warmonger's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13753","68767","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","509","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9958","-1","","","","","Warmonger's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14724","73621","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","45" +"9959","-1","","","","","Warmonger's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4803","24017","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1011","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9960","-1","","","","","Warmonger's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5623","28119","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","760","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9961","-1","","","","","Warmonger's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5644","28224","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","928","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"9962","-1","","","","","Warmonger's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9218","46092","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","844","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9963","-1","","","","","Warmonger's Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9211","46058","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","676","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"9964","-1","","","","","Warmonger's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13190","65952","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","593","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9965","-1","","","","","Warmonger's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9973","49867","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1181","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"9966","-1","","","","","Embossed Plate Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11800","59002","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","528","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9967","-1","","","","","Embossed Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5105","25527","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","780","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9968","-1","","","","","Embossed Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4744","23720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","947","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9969","-1","","","","","Embossed Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6925","34627","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","696","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9970","-1","","","","","Embossed Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10029","50147","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","612","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9971","-1","","","","","Embossed Plate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6978","34892","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1200","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9972","-1","","","","","Embossed Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4357","21786","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1115","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9973","-1","","","","","Embossed Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6510","32554","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","863","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"9974","-1","","","","","Overlord's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16449","82246","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","47" +"9978","-1","","","","","Gahz'ridian Detector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"9998","-1","","","","","Black Mageweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4815","24076","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","11","0","0","0","0","0","0","0","0","36" +"9999","-1","","","","","Black Mageweave Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4833","24165","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","8","0","0","0","0","0","0","0","0","36" +"10000","-1","","","","","Margol's Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3181","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10001","-1","","","","","Black Mageweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5257","26285","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","14","8","0","0","0","0","0","0","0","0","37" +"10002","-1","","","","","Shadoweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5276","26381","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","37" +"10003","-1","","","","","Black Mageweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2859","14297","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"10004","-1","","","","","Shadoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5738","28694","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","0","0","0","0","0","0","0","0","0","38" +"10005","-1","","","","","Margol's Gigantic Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10007","-1","","","","","Red Mageweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5800","29000","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","0","0","0","0","0","0","0","0","0","38" +"10008","-1","","","","","White Bandit Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4365","21827","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","0","0","0","0","0","0","0","0","0","38" +"10009","-1","","","","","Red Mageweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5284","26424","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","38" +"10010","-1","","","","","Stormcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5729","28649","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","0","0","0","0","0","0","0","0","0","39" +"10011","-1","","","","","Stormcloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2875","14378","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"10018","-1","","","","","Red Mageweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3275","16376","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","0","0","0","0","0","0","0","0","0","40" +"10019","-1","","","","","Dreamweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3944","19721","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","4","0","0","0","0","0","0","0","0","40" +"10020","-1","","","","","Stormcloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6597","32989","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","8","0","0","0","0","0","0","0","0","40" +"10021","-1","","","","","Dreamweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7946","39731","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","9","0","0","0","0","0","0","0","0","40" +"10022","-1","","","","","Proof of Deed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1231","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10023","-1","","","","","Shadoweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3334","16673","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","0","0","0","0","0","0","0","0","0","40" +"10024","-1","","","","","Black Mageweave Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5421","27107","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","41" +"10025","-1","","","","","Shadoweave Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6790","33952","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","44" +"10026","-1","","","","","Black Mageweave Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5459","27299","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","7","0","0","0","0","0","0","0","0","41" +"10027","-1","","","","","Black Mageweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5479","27396","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","41" +"10028","-1","","","","","Shadoweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5938","29692","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","0","0","0","0","0","0","0","0","0","42" +"10029","-1","","","","","Red Mageweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5391","26959","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","42" +"10030","-1","","","","","Admiral's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6007","30038","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10031","-1","","","","","Shadoweave Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6030","30151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","43" +"10032","-1","","","","","Stormcloth Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6052","30264","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","43" +"10033","-1","","","","","Red Mageweave Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6075","30378","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","43" +"10034","-1","","","","","Tuxedo Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10035","-1","","","","","Tuxedo Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1735","8677","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10036","-1","","","","","Tuxedo Jacket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1741","8705","1","1157","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10038","-1","","","","","Stormcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6620","33104","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10039","-1","","","","","Stormcloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7110","35551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","0","0","0","0","0","0","0","0","0","45" +"10040","-1","","","","","White Wedding Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1767","8837","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10041","-1","","","","","Dreamweave Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8593","42968","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","10","0","0","0","0","0","0","0","0","45" +"10042","-1","","","","","Cindercloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6644","33222","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10043","-1","","","","","Pious Legwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2033","10168","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","0" +"10044","-1","","","","","Cindercloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6765","33828","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10045","-1","","","","","Simple Linen Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","118","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","2" +"10046","-1","","","","","Simple Linen Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","161","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"10047","-1","","","","","Simple Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164","823","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","10" +"10048","-1","","","","","Colorful Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","935","4679","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","5","0","0","0","0","0","0","0","0","0","14" +"10049","-1","","","","","Diabolist's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2653","13268","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","256","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10050","-1","","","","","Mageweave Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10051","-1","","","","","Red Mageweave Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10052","-1","","","","","Orange Martial Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10053","-1","","","","","Simple Black Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4499","22497","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10054","-1","","","","","Lavender Mageweave Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10055","-1","","","","","Pink Mageweave Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10056","-1","","","","","Orange Mageweave Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10057","-1","","","","","Duskwoven Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12711","63558","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","469","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10058","-1","","","","","Duskwoven Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7083","35417","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","803","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10059","-1","","","","","Duskwoven Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4739","23698","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1055","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10060","-1","","","","","Duskwoven Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6668","33340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","971","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10061","-1","","","","","Duskwoven Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7661","38309","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","635","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10062","-1","","","","","Duskwoven Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4758","23792","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10063","-1","","","","","Duskwoven Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7165","35826","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1139","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10064","-1","","","","","Duskwoven Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10775","53875","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","552","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10065","-1","","","","","Duskwoven Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12153","60768","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","469","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10066","-1","","","","","Duskwoven Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","21101","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","887","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10067","-1","","","","","Righteous Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5295","26478","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","908","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10068","-1","","","","","Righteous Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9128","45641","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","824","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10069","-1","","","","","Righteous Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5335","26677","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1076","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10070","-1","","","","","Righteous Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15482","77412","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","490","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10071","-1","","","","","Righteous Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6450","32252","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","992","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10072","-1","","","","","Righteous Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6177","30887","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","740","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10073","-1","","","","","Righteous Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9858","49294","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","657","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10074","-1","","","","","Righteous Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13985","69929","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","573","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10075","-1","","","","","Righteous Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9369","46846","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1160","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10076","-1","","","","","Lord's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6571","32855","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1097","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10077","-1","","","","","Lord's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16968","84842","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","510","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10078","-1","","","","","Lord's Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18642","93213","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1635","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10079","-1","","","","","Lord's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6370","31853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1012","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10080","-1","","","","","Lord's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7319","36599","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","761","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10081","-1","","","","","Lord's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7345","36728","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","929","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10082","-1","","","","","Lord's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10752","53764","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","845","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10083","-1","","","","","Lord's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10745","53728","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","677","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10084","-1","","","","","Lord's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15246","76231","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","594","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10085","-1","","","","","Lord's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11529","57649","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1182","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10086","-1","","","","","Gothic Plate Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14768","73841","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","530","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10087","-1","","","","","Gothic Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5973","29865","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","781","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","41" +"10088","-1","","","","","Gothic Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5551","27759","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","948","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10089","-1","","","","","Gothic Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8296","41480","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","864","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10090","-1","","","","","Gothic Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8992","44963","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","697","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","41" +"10091","-1","","","","","Gothic Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13023","65115","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","613","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","42" +"10092","-1","","","","","Gothic Plate Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9785","48927","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1201","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"10093","-1","","","","","Revenant Deflector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18903","94517","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10094","-1","","","","","Gothic Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5828","29142","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1116","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10095","-1","","","","","Councillor's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10295","51477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","805","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10096","-1","","","","","Councillor's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6130","30653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1056","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10097","-1","","","","","Councillor's Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10992","54960","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","637","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10098","-1","","","","","Councillor's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8737","43685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10099","-1","","","","","Councillor's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6568","32840","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","721","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10100","-1","","","","","Councillor's Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11109","55545","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1141","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10101","-1","","","","","Councillor's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15756","78782","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","554","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10102","-1","","","","","Councillor's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15020","75102","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","470","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10103","-1","","","","","Councillor's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5687","28437","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","888","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10104","-1","","","","","Councillor's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15137","75686","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","470","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10105","-1","","","","","Wanderer's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19942","99711","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","491","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10106","-1","","","","","Wanderer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12120","60601","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","826","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10107","-1","","","","","Wanderer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7218","36094","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1077","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10108","-1","","","","","Wanderer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8203","41017","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","993","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10109","-1","","","","","Wanderer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7273","36366","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","909","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10110","-1","","","","","Wanderer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7948","39740","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","742","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10111","-1","","","","","Wanderer's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13444","67223","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","658","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10112","-1","","","","","Wanderer's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19071","95357","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","575","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10113","-1","","","","","Wanderer's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13541","67709","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1162","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10118","-1","","","","","Ornate Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23382","116910","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","512","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10119","-1","","","","","Ornate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16676","83384","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","847","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10120","-1","","","","","Ornate Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8797","43988","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1014","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10121","-1","","","","","Ornate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10515","52577","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","763","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10122","-1","","","","","Ornate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9007","45036","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","931","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10123","-1","","","","","Ornate Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15239","76199","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","679","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10124","-1","","","","","Ornate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20396","101982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","595","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10125","-1","","","","","Ornate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14551","72757","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1183","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10126","-1","","","","","Ornate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8865","44327","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1098","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10127","-1","","","","","Revenant Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7656","38284","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1118","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10128","-1","","","","","Revenant Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20838","104191","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","531","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10129","-1","","","","","Revenant Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8253","41265","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","782","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10130","-1","","","","","Revenant Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8283","41417","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","950","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10131","-1","","","","","Revenant Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12376","61881","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","866","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10132","-1","","","","","Revenant Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13289","66449","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","698","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10133","-1","","","","","Revenant Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18887","94437","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","615","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10134","-1","","","","","Revenant Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13386","66934","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1202","0","0","0","0","0","0","0","0","0","0","366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10135","-1","","","","","High Councillor's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17950","89752","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","472","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10136","-1","","","","","High Councillor's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8530","42653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1058","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10137","-1","","","","","High Councillor's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13021","65108","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","807","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10138","-1","","","","","High Councillor's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12274","61372","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","974","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10139","-1","","","","","High Councillor's Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13294","66472","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","639","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10140","-1","","","","","High Councillor's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8773","43867","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","723","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10141","-1","","","","","High Councillor's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18094","90473","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","555","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10142","-1","","","","","High Councillor's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12495","62477","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1143","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10143","-1","","","","","High Councillor's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17176","85883","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","472","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10144","-1","","","","","High Councillor's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8164","40821","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","890","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10145","-1","","","","","Mighty Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9755","48779","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","911","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10146","-1","","","","","Mighty Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15638","78193","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","828","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10147","-1","","","","","Mighty Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10319","51596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1079","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10148","-1","","","","","Mighty Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11273","56368","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","995","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10149","-1","","","","","Mighty Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10541","52706","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","744","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10150","-1","","","","","Mighty Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16087","80437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","660","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10151","-1","","","","","Mighty Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22114","110571","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","493","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10152","-1","","","","","Mighty Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21901","109507","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","576","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10153","-1","","","","","Mighty Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16264","81324","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1164","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10154","-1","","","","","Mercurial Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12880","64401","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","933","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10155","-1","","","","","Mercurial Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19476","97383","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","849","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10156","-1","","","","","Mercurial Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12794","63974","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1100","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10157","-1","","","","","Mercurial Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27117","135587","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","514","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10158","-1","","","","","Mercurial Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26964","134822","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10159","-1","","","","","Mercurial Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11444","57221","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1016","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10160","-1","","","","","Mercurial Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18599","92996","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","681","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10161","-1","","","","","Mercurial Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12277","61388","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","765","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10162","-1","","","","","Mercurial Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25325","126627","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","597","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10163","-1","","","","","Mercurial Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18893","94469","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1185","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10164","-1","","","","","Templar Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25915","129579","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","533","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10165","-1","","","","","Templar Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10983","54915","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","784","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10166","-1","","","","","Templar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10399","51995","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","951","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10167","-1","","","","","Templar Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16470","82352","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","868","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10168","-1","","","","","Templar Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17523","87617","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","700","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10169","-1","","","","","Templar Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24903","124516","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","616","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10170","-1","","","","","Templar Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17651","88257","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1204","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10171","-1","","","","","Templar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10591","52959","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1119","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10172","-1","","","","","Mystical Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9603","48019","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1141","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10173","-1","","","","","Mystical Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5718","28592","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1056","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10174","-1","","","","","Mystical Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8121","40608","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10175","-1","","","","","Mystical Headwrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9011","45055","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","637","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10176","-1","","","","","Mystical Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5689","28446","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","720","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10177","-1","","","","","Mystical Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12833","64166","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","553","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10178","-1","","","","","Mystical Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14475","72375","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","470","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10179","-1","","","","","Mystical Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8632","43161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","804","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10180","-1","","","","","Mystical Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5141","25707","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","888","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10181","-1","","","","","Mystical Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14640","73203","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","470","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10182","-1","","","","","Swashbuckler's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18370","91851","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","491","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10183","-1","","","","","Swashbuckler's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10954","54772","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","825","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10184","-1","","","","","Swashbuckler's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6523","32617","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1077","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10185","-1","","","","","Swashbuckler's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7412","37064","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10186","-1","","","","","Swashbuckler's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6966","34834","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","741","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10187","-1","","","","","Swashbuckler's Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11785","58929","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","658","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10188","-1","","","","","Swashbuckler's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16717","83588","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","574","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10189","-1","","","","","Swashbuckler's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11872","59361","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1162","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10190","-1","","","","","Swashbuckler's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6669","33349","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","909","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10191","-1","","","","","Crusader's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7777","38887","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1097","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10192","-1","","","","","Crusader's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13212","66060","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","846","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10193","-1","","","","","Crusader's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19776","98880","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","511","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10194","-1","","","","","Crusader's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7345","36728","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1013","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10195","-1","","","","","Crusader's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19221","96107","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10196","-1","","","","","Crusader's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7593","37968","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","762","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10197","-1","","","","","Crusader's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7623","38115","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","930","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10198","-1","","","","","Crusader's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12167","60837","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","678","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10199","-1","","","","","Crusader's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17261","86305","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","594","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10200","-1","","","","","Crusader's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12314","61571","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1182","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10201","-1","","","","","Overlord's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10411","52055","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","865","0","0","0","0","0","0","0","0","0","0","318","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10202","-1","","","","","Overlord's Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7020","35101","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1117","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10203","-1","","","","","Overlord's Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18195","90977","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","531","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10204","-1","","","","","Heavy Lamellar Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19888","99441","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10205","-1","","","","","Overlord's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7596","37981","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","782","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10206","-1","","","","","Overlord's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7125","35629","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","949","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"10207","-1","","","","","Overlord's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11694","58474","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","698","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10208","-1","","","","","Overlord's Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16777","83885","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","614","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10209","-1","","","","","Overlord's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12604","63020","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1202","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"10210","-1","","","","","Elegant Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12845","64229","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1142","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10211","-1","","","","","Elegant Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12276","61384","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10212","-1","","","","","Elegant Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11069","55348","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","973","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10213","-1","","","","","Elegant Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7850","39252","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1058","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10214","-1","","","","","Elegant Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8271","41356","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","722","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10215","-1","","","","","Elegant Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16212","81061","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","471","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10216","-1","","","","","Elegant Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7180","35902","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","890","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10217","-1","","","","","Elegant Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16116","80581","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","555","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10218","-1","","","","","Elegant Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16399","81999","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","471","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10219","-1","","","","","Elegant Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12011","60057","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","638","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10220","-1","","","","","Nightshade Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20938","104691","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","492","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10221","-1","","","","","Nightshade Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9148","45742","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","911","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10222","-1","","","","","Nightshade Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14462","72310","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","827","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10223","-1","","","","","Nightshade Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9466","47331","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1079","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10224","-1","","","","","Nightshade Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10755","53779","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","994","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10225","-1","","","","","Nightshade Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10012","50062","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","743","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10226","-1","","","","","Nightshade Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16046","80234","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","660","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10227","-1","","","","","Nightshade Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21769","108847","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","576","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10228","-1","","","","","Nightshade Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15940","79703","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1163","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10229","-1","","","","","Engraved Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10331","51658","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1099","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10230","-1","","","","","Engraved Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25686","128433","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","512","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10231","-1","","","","","Engraved Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9816","49080","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1015","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10232","-1","","","","","Engraved Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11732","58663","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","764","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10233","-1","","","","","Engraved Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11106","55534","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","931","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10234","-1","","","","","Engraved Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17801","89007","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","848","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10235","-1","","","","","Engraved Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16896","84481","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","680","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10236","-1","","","","","Engraved Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22616","113080","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","596","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10237","-1","","","","","Engraved Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16287","81436","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1184","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10238","-1","","","","","Heavy Lamellar Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13362","66811","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","867","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10239","-1","","","","","Heavy Lamellar Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8733","43669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1118","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10240","-1","","","","","Heavy Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22009","110045","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","532","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10241","-1","","","","","Heavy Lamellar Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14716","73580","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","699","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10242","-1","","","","","Heavy Lamellar Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9360","46802","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","783","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"10243","-1","","","","","Heavy Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8863","44316","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","950","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"10244","-1","","","","","Heavy Lamellar Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21069","105348","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","615","0","0","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"10245","-1","","","","","Heavy Lamellar Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14932","74662","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1203","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10246","-1","","","","","Master's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18058","90292","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10247","-1","","","","","Master's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13238","66190","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","807","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10248","-1","","","","","Master's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8737","43688","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10249","-1","","","","","Master's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12974","64874","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","975","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10250","-1","","","","","Master's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13380","66902","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","639","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10251","-1","","","","","Master's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8952","44761","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","723","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10252","-1","","","","","Master's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18207","91039","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","556","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10253","-1","","","","","Master's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13523","67615","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1143","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10254","-1","","","","","Master's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18580","92900","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10255","-1","","","","","Master's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8330","41651","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","891","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10256","-1","","","","","Adventurer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10309","51545","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1080","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10257","-1","","","","","Adventurer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15735","78679","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","828","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10258","-1","","","","","Adventurer's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12292","61462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","995","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10259","-1","","","","","Adventurer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10569","52847","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","912","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10260","-1","","","","","Adventurer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10752","53760","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","744","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10261","-1","","","","","Adventurer's Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16187","80939","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","660","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10262","-1","","","","","Adventurer's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21954","109772","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","577","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10263","-1","","","","","Adventurer's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16306","81531","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1164","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10264","-1","","","","","Adventurer's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22406","112034","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","493","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10265","-1","","","","","Masterwork Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12964","64823","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1101","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10266","-1","","","","","Masterwork Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27085","135426","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","514","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10267","-1","","","","","Masterwork Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12880","64401","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1017","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10268","-1","","","","","Masterwork Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13283","66416","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","765","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10269","-1","","","","","Masterwork Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13152","65762","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","933","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10270","-1","","","","","Masterwork Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20158","100790","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","849","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10271","-1","","","","","Masterwork Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27321","136606","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10272","-1","","","","","Masterwork Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18780","93901","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","681","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10273","-1","","","","","Masterwork Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25473","127367","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","598","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10274","-1","","","","","Masterwork Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19008","95041","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1185","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10275","-1","","","","","Emerald Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28357","141787","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","533","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10276","-1","","","","","Emerald Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17200","86004","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","868","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10277","-1","","","","","Emerald Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12294","61471","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","784","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"10278","-1","","","","","Emerald Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10981","54909","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","952","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"10279","-1","","","","","Emerald Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19543","97718","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","701","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10280","-1","","","","","Emerald Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27515","137578","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","617","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10281","-1","","","","","Emerald Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19689","98447","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1205","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10282","-1","","","","","Emerald Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11813","59069","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1120","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"10283","-1","","","","","Wolf Heart Samples","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10285","-1","","","","","Shadow Silk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10286","-1","","","","","Heart of the Wild","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10287","-1","","","","","Greenweave Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","964","4822","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1131","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"10288","-1","","","","","Sage's Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1410","7052","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"10289","-1","","","","","Durable Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1557","7788","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10290","-1","","","","","Pink Dye","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","625","2500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10298","-1","","","","","Gnomeregan Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1243","4975","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3476","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","25" +"10299","-1","","","","","Gnomeregan Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3778","15112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","3506","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","26" +"10300","-1","Teaches you how to sew a Red Mageweave Vest.","","","","Pattern: Red Mageweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10301","-1","Teaches you how to sew a White Bandit Mask.","","","","Pattern: White Bandit Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10302","-1","Teaches you how to sew Red Mageweave Pants.","","","","Pattern: Red Mageweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","197","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10303","-1","Teaches you how to sew Stormcloth Pants.","","","","Pattern: Stormcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10304","-1","Teaches you how to sew Stormcloth Gloves.","","","","Pattern: Stormcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10305","-1","","","","","Scroll of Protection IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10306","-1","","","","","Scroll of Spirit IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10307","-1","","","","","Scroll of Stamina IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"10308","-1","","","","","Scroll of Intellect IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"10309","-1","","","","","Scroll of Agility IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"10310","-1","","","","","Scroll of Strength IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"10311","-1","Teaches you how to sew an Orange Martial Shirt.","","","","Pattern: Orange Martial Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","197","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10312","-1","Teaches you how to sew Red Mageweave Gloves.","","","","Pattern: Red Mageweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10313","-1","Teaches you how to sew a Stormcloth Vest.","","","","Pattern: Stormcloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10314","-1","Teaches you how to sew a Lavender Mageweave Shirt.","","","","Pattern: Lavender Mageweave Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","197","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10315","-1","Teaches you how to sew Red Mageweave Shoulders.","","","","Pattern: Red Mageweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","197","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10316","-1","Teaches you how to sew a Colorful Kilt.","","","","Pattern: Colorful Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","197","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10317","-1","Teaches you how to sew a Pink Mageweave Shirt.","","","","Pattern: Pink Mageweave Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","197","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10318","-1","Teaches you how to sew an Admiral's Hat.","","","","Pattern: Admiral's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10319","-1","Teaches you how to sew a Stormcloth Headband.","","","","Pattern: Stormcloth Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10320","-1","Teaches you how to sew a Red Mageweave Headband.","","","","Pattern: Red Mageweave Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10321","-1","Teaches you how to sew a Tuxedo Shirt.","","","","Pattern: Tuxedo Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","197","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10322","-1","Teaches you how to sew Stormcloth Shoulders.","","","","Pattern: Stormcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10323","-1","Teaches you how to sew Tuxedo Pants.","","","","Pattern: Tuxedo Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10324","-1","Teaches you how to sew Stormcloth Boots.","","","","Pattern: Stormcloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10325","-1","Teaches you how to sew a White Wedding Dress.","","","","Pattern: White Wedding Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10326","-1","Teaches you how to sew a Tuxedo Jacket.","","","","Pattern: Tuxedo Jacket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10327","-1","","","","","Horn of Echeyakee","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10328","-1","","","","","Scarlet Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6992","34964","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","8","0","0","0","0","0","0","0","0","34" +"10329","-1","","","","","Scarlet Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2507","12538","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","7","0","0","0","0","0","0","0","0","32" +"10330","-1","","","","","Scarlet Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9587","47939","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","10","0","0","0","0","0","0","0","0","38" +"10331","-1","","","","","Scarlet Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2729","13645","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","7","0","0","0","0","0","0","0","0","33" +"10332","-1","","","","","Scarlet Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3790","18951","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","5","0","0","0","0","0","0","0","0","30" +"10333","-1","","","","","Scarlet Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2314","11574","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","0","0","0","0","0","0","0","0","0","31" +"10338","-1","","","","","Fresh Zhevra Carcass","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10358","-1","","","","","Duracin Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","12108","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","7","0","0","0","0","0","0","0","0","0" +"10359","-1","","","","","Everlast Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12152","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"10360","-1","","","","","Black Kingsnake","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10361","-1","","","","","Brown Snake","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10362","-1","","","","","Ornate Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24760","123802","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10363","-1","","","","","Engraved Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27396","136982","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10364","-1","","","","","Templar Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24938","124692","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","53" +"10365","-1","","","","","Emerald Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26276","131382","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10366","-1","","","","","Demon Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28849","144246","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","2088","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10367","-1","","","","","Hyperion Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27639","138196","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10368","-1","","","","","Imbued Plate Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29156","145780","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","14","14","0","0","0","0","0","0","0","57" +"10369","-1","","","","","Imbued Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12984","64921","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","3","3","0","0","0","0","0","0","0","53" +"10370","-1","","","","","Imbued Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12295","61477","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","12","0","0","0","0","0","0","0","0","52" +"10371","-1","","","","","Imbued Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19474","97373","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","12","0","0","0","0","0","0","0","0","53" +"10372","-1","","","","","Imbued Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20525","102625","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","17","0","0","0","0","0","0","0","0","54" +"10373","-1","","","","","Imbued Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29298","146490","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","17","0","0","0","0","0","0","0","0","56" +"10374","-1","","","","","Imbued Plate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20676","103380","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","13","0","0","0","0","0","0","0","0","54" +"10375","-1","","","","","Imbued Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12525","62626","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","4","0","0","0","0","0","0","0","0","52" +"10376","-1","","","","","Commander's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21868","109341","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","869","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10377","-1","","","","","Commander's Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14042","70210","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1121","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10378","-1","","","","","Commander's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30662","153310","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","534","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10379","-1","","","","","Commander's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22418","112092","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","702","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10380","-1","","","","","Commander's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14904","74523","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","785","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10381","-1","","","","","Commander's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14246","71231","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","953","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","54" +"10382","-1","","","","","Commander's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30689","153446","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","618","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10383","-1","","","","","Commander's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21121","105606","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1206","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10384","-1","","","","","Hyperion Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29882","149413","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","535","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"10385","-1","","","","","Hyperion Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21575","107876","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","870","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10386","-1","","","","","Hyperion Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14548","72744","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","786","0","0","0","0","0","0","0","0","0","0","368","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"10387","-1","","","","","Hyperion Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14405","72029","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","954","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"10388","-1","","","","","Hyperion Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22117","110588","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","702","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10389","-1","","","","","Hyperion Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30056","150280","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","619","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"10390","-1","","","","","Hyperion Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22285","111425","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1206","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"10391","-1","","","","","Hyperion Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14420","72101","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1121","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"10392","-1","","","","","Crimson Snake","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10393","-1","","","","","Cockroach","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10394","-1","","","","","Prairie Dog Whistle","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10398","-1","","","","","Mechanical Chicken","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10399","-1","","","","","Blackened Defias Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1467","7336","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","3","4","0","0","0","0","0","0","0","19" +"10400","-1","","","","","Blackened Defias Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","563","2818","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","0","0","0","0","0","0","0","0","13" +"10401","-1","","","","","Blackened Defias Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1279","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"10402","-1","","","","","Blackened Defias Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","385","1926","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","3","0","0","0","0","0","0","0","0","13" +"10403","-1","","","","","Blackened Defias Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","541","2706","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","17" +"10404","-1","","","","","Durable Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","864","4323","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","880","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"10405","-1","","","","","Bandit Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2045","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"10406","-1","","","","","Scaled Leather Headband","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1976","9884","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","650","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10407","-1","","","","","Raider's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","432","2160","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"10408","-1","","","","","Banded Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2390","11951","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","671","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10409","-1","","","","","Banded Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2409","12049","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","839","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"10410","-1","","","","","Leggings of the Fang","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1256","6280","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","4","9","0","0","0","0","0","0","0","18" +"10411","-1","","","","","Footpads of the Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","945","4728","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","0","0","0","0","0","0","0","0","18" +"10412","-1","","","","","Belt of the Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","486","2434","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","16" +"10413","-1","","","","","Gloves of the Fang","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","369","1847","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","5","0","0","0","0","0","0","0","0","14" +"10414","-1","","","","","Sample Snapjaw Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10418","-1","Courage, Honor, and above all, Patience","","","","Glimmering Mithril Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16464","65859","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10420","-1","","","","","Skull of the Coldbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10421","-1","","","","","Rough Copper Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","162","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","2" +"10423","-1","","","","","Silvered Bronze Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2842","14212","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","6","6","0","0","0","0","0","0","0","26" +"10424","-1","Teaches you how to make Silvered Bronze Leggings.","","","","Plans: Silvered Bronze Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","164","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10438","-1","","","","","Felix's Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10439","-1","","","","","Durnan's Scalding Mornbrew","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10440","-1","","","","","Nori's Mug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10441","-1","","","","","Glowing Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6981","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"10442","-1","The Stone Emanates Evil","","","","Mysterious Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10443","-1","","","","","Singed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10444","-1","","","","","Standard Issue Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10445","-1","","","","","Drawing Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10446","-1","The cold black heart is still pulsing","","","","Heart of Obsidion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10447","-1","The remnants of a once honorable dwarf","","","","Head of Lathoric the Black","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10450","-1","","","","","Undamaged Hippogryph Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","396","1585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10454","-1","Green mists swirl inside the lattices of this gem.","","","","Essence of Eranikus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3373","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","48" +"10455","-1","","","","","Chained Essence of Eranikus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6464","25859","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10456","-1","","","","","A Bulging Coin Purse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10457","-1","","","","","Empty Sea Snail Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","142","570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10458","-1","Your heart feels light when you hold this item.","","","","Prayer to Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10459","-1","","","","","Chief Sharptusk Thornmantle's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10460","-1","","","","","Hakkari Blood","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","629","2518","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10461","-1","","","","","Shadowy Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3082","15410","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","0" +"10462","-1","","","","","Shadowy Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3609","18045","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","11","4","0","0","0","0","0","0","0","0" +"10463","-1","Teaches you how to sew a Shadoweave Mask.","","","","Pattern: Shadoweave Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10464","-1","","","","","Staff of Command","0","2700","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10465","-1","","","","","Egg of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10466","-1","","","","","Atal'ai Stone Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10467","-1","Full of trade goods.","","","","Trader's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10478","-1","","","","","Roland's Mana Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10479","-1","","","","","Kovic's Trading Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","48","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10498","-1","","","","","Gyromatic Micro-Adjustor","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10499","-1","","","","","Bright-Eye Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2105","10526","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","0" +"10500","-1","","","","","Fire Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3478","17394","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","17","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10501","-1","","","","","Catseye Ultra Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4398","21993","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10502","-1","","","","","Spellpower Goggles Xtreme","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4088","20441","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10503","-1","","","","","Rose Colored Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5169","25847","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","12","0","0","0","0","0","0","0","0","0" +"10504","-1","","","","","Green Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7770","38852","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","202","49","-1","0","8652","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","0" +"10505","-1","","","","","Solid Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10506","-1","","","","","Deepdive Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5227","26136","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10507","-1","","","","","Solid Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10508","-1","","","","","Mithril Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8959","44795","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","41","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","5","0","0","0","0","0","0","0","0","0","36" +"10509","-1","The flame burns eternally","","","","Heart of Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10510","-1","","","","","Mithril Heavy-bore Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11369","56846","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","44","-1","0","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","39" +"10511","-1","The oil is encased in stone","","","","Golem Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10512","-1","","","","","Hi-Impact Mithril Slugs","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","42","-1","0","0","12","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","37" +"10513","-1","","","","","Mithril Gyro-Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","5","2000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","49","-1","0","0","15","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","44" +"10514","-1","","","","","Mithril Frag Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10515","-1","The flame never falters","","","","Torch of Retribution","0.15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","128","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10518","-1","","","","","Parachute Cloak","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4696","23483","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","0" +"10538","-1","","","","","Tablet of Beth'Amara","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10539","-1","","","","","Tablet of Jin'yael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10540","-1","","","","","Tablet of Markri","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10541","-1","","","","","Tablet of Sael'hai","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10542","-1","","","","","Goblin Mining Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5255","26279","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10543","-1","","","","","Goblin Construction Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3517","17586","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10544","-1","","","","","Thistlewood Maul","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10545","-1","","","","","Gnomish Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3929","19646","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","9","0","0","0","0","0","0","0","0","0" +"10546","-1","","","","","Deadly Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10547","-1","","","","","Camping Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81","408","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","8","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10548","-1","","","","","Sniper Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10549","-1","","","","","Rancher's Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","811","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"10550","-1","","","","","Wooly Mittens","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","244","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10551","-1","","","","","Thorium Plated Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10552","-1","The symbol emanates old magic","","","","Symbol of Ragnaros","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10553","-1","","","","","Foreman Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131","658","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"10554","-1","","","","","Foreman Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","598","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","6" +"10555","-1","","","","","Resist Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","6530","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","-50","-50","-50","-50","-50","-50","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10556","-1","","","","","Stone Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10558","-1","","","","","Gold Power Core","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10559","-1","","","","","Mithril Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10560","-1","","","","","Unstable Trigger","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10561","-1","","","","","Mithril Casing","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10562","-1","","","","","Hi-Explosive Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10563","-1","","","","","Rubbing: Rune of Beth'Amara","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10564","-1","","","","","Rubbing: Rune of Jin'yael","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10565","-1","","","","","Rubbing: Rune of Markri","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10566","-1","","","","","Rubbing: Rune of Sael'hai","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10567","-1","","","","","Quillshooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8725","43629","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","38","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","33" +"10568","-1","","","","","Monster - Mace2H, Pacifier","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10569","-1","Bears the mark of Velarok the Deceiver","","","","Hoard of the Black Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10570","-1","","","","","Manslayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15875","79375","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","39","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","0","0","0","0","0","0","0","0","0","34" +"10571","-1","","","","","Ebony Boneclub","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10927","54635","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","37","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","5","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","32" +"10572","-1","","","","","Freezing Shard","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9592","47960","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","39","128","0","0","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","34" +"10573","-1","","","","","Boneslasher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13754","68774","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","0","70","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","7","16","5","0","0","0","0","0","0","0","32" +"10574","-1","","","","","Corpseshroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3775","18879","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","19","0","0","0","0","0","0","0","0","35" +"10575","-1","A dull and gray patch of black dragon skin","","","","Black Dragonflight Molt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10576","-1","","","","","Mithril Mechanical Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","40" +"10577","-1","","","","","Goblin Mortar","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10578","-1","","","","","Thoughtcast Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3377","16886","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","3","13","0","0","0","0","0","0","0","33" +"10579","-1","","","","","Explosive Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","42","-1","0","0","14","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","37" +"10580","-1","","","","","Goblin ""Boom"" Box","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10581","-1","","","","","Death's Head Vestment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5310","26553","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","13","12","0","0","0","0","0","0","0","35" +"10582","-1","","","","","Briar Tredders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3606","18031","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","5","9","0","0","0","0","0","0","0","31" +"10583","-1","","","","","Quillward Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6191","30956","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","8","0","0","0","0","0","0","0","0","34" +"10584","-1","","","","","Stormgale Fists","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2905","14529","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","7","3","0","0","0","0","0","0","0","31" +"10585","-1","","","","","Goblin Radio","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10586","-1","","","","","The Big One","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10587","-1","","","","","Goblin Bomb Dispenser","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10588","-1","","","","","Goblin Rocket Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5834","29171","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"10589","-1","Using this stone binds someone to aid Ysera's Dragonflight.","","","","Oathstone of Ysera's Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3374","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"10590","-1","","","","","Pocked Black Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3482","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10591","-1","","","","","Monster - Mace, Stormhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10592","-1","","","","","Catseye Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"10593","-1","","","","","Imperfect Draenethyst Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10594","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","[PH] Hakkar'i Urn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10595","-1","Invalid loot table, crashes when you modify Miscellaneous","","","","Kum'isha's Junk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10596","-1","","","","","Deprecated Rose Colored Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2068","10340","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10597","-1","","","","","Head of Magus Rimtori","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10598","-1","","","","","Hetaera's Bloodied Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10599","-1","","","","","Hetaera's Beaten Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10600","-1","","","","","Hetaera's Bruised Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10601","-1","Teaches you how to make Bright-Eye Goggles.","","","","Schematic: Bright-Eye Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10602","-1","Teaches you how to make a Deadly Scope.","","","","Schematic: Deadly Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10603","-1","Teaches you how to make Catseye Ultra Goggles.","","","","Schematic: Catseye Ultra Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","3300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10604","-1","Teaches you how to make a Mithril Heavy-bore Rifle.","","","","Schematic: Mithril Heavy-bore Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","3300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","202","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10605","-1","Teaches you how to make Spellpower Goggles Xtreme.","","","","Schematic: Spellpower Goggles Xtreme","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10606","-1","Teaches you how to make a Parachute Cloak.","","","","Schematic: Parachute Cloak","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10607","-1","Teaches you how to make a Deepdive Helmet.","","","","Schematic: Deepdive Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","900","3600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10608","-1","Teaches you how to make a Sniper Scope.","","","","Schematic: Sniper Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","202","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10609","-1","Teaches you how to make a Mithril Mechanical Dragonling.","","","","Schematic: Mithril Mechanical Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10610","-1","Blood of the Sea Queen","","","","Hetaera's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10611","-1","","","","","Monster - Axe, Horde Badass 01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10612","-1","","","","","Monster - Axe, Horde Badass 02 ","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10613","-1","","","","","Monster - Sword, Katana","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10614","-1","","","","","Monster - Sword, Horde Sword Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10615","-1","","","","","Monster - Sword, Horde Sword Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10616","-1","","","","","Monster - Dagger, Curvey Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10617","-1","","","","","Monster - Dagger, Curved Bone Bloody","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10618","-1","","","","","Monster - Dagger, Tanto Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10619","-1","","","","","Monster - Dagger, Badass Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10620","-1","","","","","Thorium Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","755","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10621","-1","","","","","Runed Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3513","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"10622","-1","","","","","Kadrak's Flag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10623","-1","","","","","Winter's Bite","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24748","123741","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","48","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","43" +"10624","-1","","","","","Stinging Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17249","86246","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","47","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","42" +"10625","-1","","","","","Stealthblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27366","136832","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","49","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"10626","-1","","","","","Ragehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36732","183662","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","50","-1","0","0","128","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","45" +"10627","-1","","","","","Bludgeon of the Grinning Dog","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26974","134870","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","47","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","42" +"10628","-1","","","","","Deathblow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29245","146226","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","48","1535","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","43" +"10629","-1","","","","","Mistwalker Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8066","40331","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","12","0","0","0","0","0","0","0","0","45" +"10630","-1","","","","","Soulcatcher Halo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8664","43320","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","10","0","0","0","0","0","0","0","0","46" +"10631","-1","","","","","Murkwater Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6086","30434","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","4","0","0","0","0","0","0","0","0","41" +"10632","-1","","","","","Slimescale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7624","38124","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","4","4","0","0","0","0","0","0","0","0","44" +"10633","-1","","","","","Silvershell Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20447","102236","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","20","10","0","0","0","0","0","0","0","46" +"10634","-1","","","","","Mindseye Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10812","43250","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","8","0","0","0","0","0","0","0","0","41" +"10635","-1","","","","","Painted Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","74","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10636","-1","","","","","Nomadic Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10637","-1","","","","","Brewer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","699","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","0","0","0","0","0","0","0","0","0","0" +"10638","-1","","","","","Long Draping Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","210","1052","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"10639","-1","","","","","Hyacinth Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10640","-1","","","","","Webwood Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10641","-1","","","","","Moonpetal Lily","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10642","-1","","","","","Iverron's Antidote","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10643","-1","","","","","Sealed Letter to Ag'tor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10644","-1","Teaches you how to make Goblin Rocket Fuel.","","","","Recipe: Goblin Rocket Fuel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","171","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10645","-1","Death or Serious Injury may result from use of this device.","","","","Gnomish Death Ray","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10646","-1","","","","","Goblin Sapper Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10647","-1","","","","","Engineer's Ink","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10648","-1","","","","","Blank Parchment","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10649","-1","","","","","Nightmare Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10650","-1","","","","","Plague-Infested Quilboar Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10651","-1","","","","","Cracked Arcane Focusing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","257","1028","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10652","-1","","","","","Will of the Mountain Giant","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36370","181853","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","51","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","19","0","0","0","0","0","0","0","0","0" +"10653","-1","","","","","Trailblazer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1639","8198","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","7","0","0","0","0","0","0","0","0","0" +"10654","-1","","","","","Jutebraid Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","965","4828","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","0" +"10655","-1","","","","","Sedgeweed Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10656","-1","","","","","Barkmail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","74","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10657","-1","","","","","Talbar Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","933","4669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","0" +"10658","-1","","","","","Quagmire Galoshes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1249","6248","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","0" +"10659","-1","","","","","Shard of the Splithooves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4662","18650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10660","-1","","","","","First Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10661","-1","","","","","Second Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10662","-1","","","","","Filled Egg of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10663","-1","","","","","Essence of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10664","-1","","","","","A Note to Magus Rimtori","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"10678","-1","","","","","Magatha's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10679","-1","","","","","Andron's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10680","-1","","","","","Jes'rimon's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10681","-1","","","","","Xylem's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"10682","-1","","","","","Belnistrasz's Oathstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10683","-1","","","","","Explorer's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10684","-1","","","","","Colossal Parachute","0","1200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10685","-1","","","","","Monster - Mace2H, Kazon's Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10686","-1","","","","","Aegis of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25395","126978","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","1898","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","12","11","0","0","0","0","0","0","0","0","0" +"10687","-1","","","","","Empty Vial Labeled #1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10688","-1","","","","","Empty Vial Labeled #2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10689","-1","","","","","Empty Vial Labeled #3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10690","-1","","","","","Empty Vial Labeled #4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10691","-1","","","","","Filled Vial Labeled #1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10692","-1","","","","","Filled Vial Labeled #2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10693","-1","","","","","Filled Vial Labeled #3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10694","-1","","","","","Filled Vial Labeled #4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10695","-1","","","","","Box of Empty Vials","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10696","-1","Etched across the blade: Rakh'likh","","","","Enchanted Azsharite Felbane Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41891","209455","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10697","-1","Engraved upon the blade: Rakh'likh","","","","Enchanted Azsharite Felbane Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42044","210222","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","60","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10698","-1","Carved into the shaft: Rakh'likh","","","","Enchanted Azsharite Felbane Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52747","263736","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","60","-1","0","0","104","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10699","-1","","","","","Yeh'kinya's Bramble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10700","-1","","","","","Encarmine Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4983","24919","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","0","0","0","0","0","0","0","0","0" +"10701","-1","","","","","Boots of Zua'tec","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7536","37681","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","2","0","0","0","0","0","0","0","0","0" +"10702","-1","","","","","Enormous Ogre Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5379","26898","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","9","0","0","0","0","0","0","0","0","0" +"10703","-1","","","","","Fiendish Skiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16792","83964","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","45","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","0" +"10704","-1","","","","","Chillnail Splinter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13649","68247","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","46","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10705","-1","","","","","Firwillow Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3666","18334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","0","0","0","0","0","0","0","0","0","0" +"10706","-1","","","","","Nightscale Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5521","27606","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","2","0","0","0","0","0","0","0","0","0" +"10707","-1","","","","","Steelsmith Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13576","67880","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","11","0","0","0","0","0","0","0","0","0" +"10708","-1","","","","","Skullspell Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8982","35930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","0","0","0","0","0","0","0","0","0","0" +"10709","-1","","","","","Pyrestone Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10953","43814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","13","0","0","0","0","0","0","0","0","0","0" +"10710","-1","","","","","Dragonclaw Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6130","24520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","10","0","0","0","0","0","0","0","0","0" +"10711","-1","","","","","Dragon's Blood Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8377","33510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","5","0","0","0","0","0","0","0","0","0" +"10712","-1","","","","","Cuely's Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10713","-1","Teaches you how to make an Inlaid Mithril Cylinder. This item is used by Gnomish Engineers.","","","","Plans: Inlaid Mithril Cylinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10714","-1","Hot out of the oven.","","","","Crystallized Azsharite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10715","-1","","","","","Kim'Jael's Scope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10716","-1","","","","","Gnomish Shrink Ray","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10717","-1","","","","","Kim'Jael's Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10718","-1","","","","","Kim'Jael's Wizzlegoober","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10719","-1","","","","","Mobile Alarm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10720","-1","","","","","Gnomish Net-o-Matic Projector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","202","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10721","-1","","","","","Gnomish Harm Prevention Belt","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3317","16588","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","0" +"10722","-1","","","","","Kim'Jael's Stuffed Chicken","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10723","-1","","","","","Gnomish Ham Radio","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10724","-1","","","","","Gnomish Rocket Boots","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4697","23485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10725","-1","","","","","Gnomish Battle Chicken","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10726","-1","","","","","Gnomish Mind Control Cap","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5520","27603","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","202","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","0","0","0","0","0","0","0","0","0","0" +"10727","-1","","","","","Goblin Dragon Gun","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10728","-1","Teaches you how to sew a Black Swashbuckler's Shirt.","","","","Pattern: Black Swashbuckler's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","197","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10738","-1","The massive box is surprisingly light.","","","","Shipment to Galvan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10739","-1","","","","","Ring of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5292","21170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"10740","-1","","","","","Centurion Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18712","93564","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","15","0","0","0","0","0","0","0","0","0" +"10741","-1","","","","","Lordrec Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10063","50318","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","3","16","10","0","0","0","0","0","0","0","0" +"10742","-1","","","","","Dragonflight Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9589","47949","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","6","0","0","0","0","0","0","0","0","0" +"10743","-1","","","","","Drakefire Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10830","54150","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","9","15","0","0","0","0","0","0","0","0" +"10744","-1","","","","","Axe of the Ebon Drake","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24159","120797","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","51","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","0" +"10745","-1","","","","","Kaylari Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8498","42493","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","10","0","0","0","0","0","0","0","0","0" +"10746","-1","","","","","Runesteel Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8007","40039","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","11","0","0","0","0","0","0","0","0","0" +"10747","-1","","","","","Teacher's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2327","11638","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","1","12","0","0","0","0","0","0","0","0","0" +"10748","-1","","","","","Wanderlust Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4380","21904","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","10","0","0","0","0","0","0","0","0","0" +"10749","-1","","","","","Avenguard Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18436","92180","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","5","25","0","0","0","0","0","0","0","0" +"10750","-1","","","","","Lifeforce Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35315","176577","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","0","0","0","0","0","0","0","0","0","0" +"10751","-1","","","","","Gemburst Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10634","53171","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","17","18","0","0","0","0","0","0","0","0" +"10752","-1","","","","","Emerald Encrusted Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10753","-1","Once worn by Grol the Destroyer.","","","","Amulet of Grol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10754","-1","The putrid scent of Sevine still radiates from this amulet.","","","","Amulet of Sevine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10755","-1","The only thing that remains from a once powerful sorcerer.","","","","Amulet of Allistarj","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10756","-1","","","","","Monster - Mace2H, Smite's Mighty Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10757","-1","The completed amulet of Rakh'likh.","","","","Ward of the Defiler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10758","-1","","","","","X'caliboar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20144","100723","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","42","-1","0","0","98","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","8","0","0","0","0","0","0","0","0","35" +"10759","-1","A severed and bloody horn of Razelikh the Defiler.","","","","Severed Horn of the Defiler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10760","-1","","","","","Swine Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2914","14570","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","10","0","0","0","0","0","0","0","0","34" +"10761","-1","","","","","Coldrage Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17193","85966","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","44","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","37" +"10762","-1","","","","","Robes of the Lich","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6903","34519","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","13","14","0","0","0","0","0","0","0","37" +"10763","-1","","","","","Icemetal Barbute","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9079","45395","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","7","10","0","0","0","0","0","0","0","40" +"10764","-1","","","","","Deathchill Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10434","52174","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","3","9","0","0","0","0","0","0","0","0","37" +"10765","-1","","","","","Bonefingers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4041","20206","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","9","0","0","0","0","0","0","0","0","37" +"10766","-1","","","","","Plaguerot Sprig","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9660","48304","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","40","128","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","35" +"10767","-1","","","","","Savage Boar's Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9652","48261","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","1287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","11","6","0","0","0","0","0","0","0","0","37" +"10768","-1","","","","","Boar Champion's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4541","22705","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","37" +"10769","-1","","","","","Glowing Eye of Mordresh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5277","21110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","0","0","0","0","0","0","0","0","0","36" +"10770","-1","","","","","Mordresh's Lifeless Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7835","31340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","36" +"10771","-1","","","","","Deathmage Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2910","14553","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","6","0","0","0","0","0","0","0","0","36" +"10772","-1","","","","","Glutton's Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14604","73023","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","36" +"10773","-1","","","","","Hakkari Urn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10774","-1","","","","","Fleshhide Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5957","29788","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","5","15","6","0","0","0","0","0","0","0","37" +"10775","-1","","","","","Carapace of Tuten'kash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11161","55805","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","10","8","0","0","0","0","0","0","0","40" +"10776","-1","","","","","Silky Spider Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4800","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","5","0","0","0","0","0","0","0","0","35" +"10777","-1","","","","","Arachnid Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4014","20071","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","739","0","0","0","0","0","0","0","0","0","0","79","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","37" +"10778","-1","","","","","Necklace of Sanctuary","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16930","67720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10779","-1","","","","","Demon's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8807","35230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10780","-1","","","","","Mark of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","22170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","10","0","0","0","0","0","0","0","0","0" +"10781","-1","","","","","Hakkari Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15072","75360","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","4","0","0","0","0","0","0","0","0","0" +"10782","-1","","","","","Hakkari Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4539","22695","1","0.5","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"10783","-1","","","","","Atal'ai Spaulders","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11476","57382","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1163","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10784","-1","","","","","Atal'ai Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18432","92164","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","512","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10785","-1","","","","","Atal'ai Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15840","79204","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","573","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","0","0","0","0","0","0","0","0","0","47" +"10786","-1","","","","","Atal'ai Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14373","71867","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","846","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","0","0","0","0","0","0","0","0","0","47" +"10787","-1","","","","","Atal'ai Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6382","31914","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","722","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","47" +"10788","-1","","","","","Atal'ai Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11275","56376","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","951","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","0","0","0","0","0","0","0","0","0","47" +"10789","-1","","","","","Manual of Engineering Disciplines","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1271","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","5","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10790","-1","A member in good standing of the Mechanical Engineering Guild, Associated.","","","","Gnome Engineer Membership Card","0","1209600","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10791","-1","A member in good standing of the Goblin Experimental Engineering Korporation.","","","","Goblin Engineer Membership Card","0","1209600","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10792","-1","","","","","Nixx's Pledge of Secrecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10793","-1","","","","","Overspark's Pledge of Secrecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10794","-1","","","","","Oglethorpe's Pledge of Secrecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10795","-1","","","","","Drakeclaw Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","22170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","3486","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","49" +"10796","-1","","","","","Drakestone","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8982","35930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","49" +"10797","-1","","","","","Firebreather","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35069","175348","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","53","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"10798","-1","","","","","Atal'alarion's Tusk Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11024","55123","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","302","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","8","0","0","0","0","0","0","0","0","46" +"10799","-1","","","","","Headspike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39288","196443","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","51","-1","0","0","106","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","15","0","0","0","0","0","0","0","0","46" +"10800","-1","","","","","Darkwater Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7562","37813","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1079","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","0","0","0","0","0","0","0","0","0","47" +"10801","-1","","","","","Slitherscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11704","58521","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","5","0","0","0","0","0","0","0","0","47" +"10802","-1","","","","","Wingveil Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9397","46988","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","47" +"10803","-1","","","","","Blade of the Wretched","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35329","176649","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","54","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","49" +"10804","-1","","","","","Fist of the Damned","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35462","177310","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","54","-1","0","0","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","49" +"10805","-1","","","","","Eater of the Dead","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35594","177971","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","54","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","49" +"10806","-1","","","","","Vestments of the Atal'ai Prophet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15146","75732","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","18","18","0","0","0","0","0","0","0","50" +"10807","-1","","","","","Kilt of the Atal'ai Prophet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15202","76013","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","4","9","0","0","0","0","0","0","0","50" +"10808","-1","","","","","Gloves of the Atal'ai Prophet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7629","38146","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","6","0","0","0","0","0","0","0","0","50" +"10818","-1","","","","","Yeh'kinya's Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10819","-1","","","","","Wildkin Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10820","-1","","","","","Jackseed Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138","691","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"10821","-1","","","","","Sower's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1041","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"10822","-1","","","","","Dark Whelpling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10823","-1","","","","","Vanquisher's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17796","88982","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","44","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10824","-1","","","","","Amberglow Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5930","23720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","1","10","7","0","0","0","0","0","0","0","0" +"10825","-1","","","","","Monster - Sword, Red Long","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10826","-1","","","","","Staff of Lore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25501","127506","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","48","-1","0","0","92","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","18","0","0","0","0","0","0","0","0","0" +"10827","-1","","","","","Surveyor's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10238","51191","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","15","0","0","0","0","0","0","0","0","0" +"10828","-1","","","","","Dire Nail","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40427","202137","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","56","-1","0","5315","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","50" +"10829","-1","","","","","Dragon's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10680","42720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","10","0","0","0","0","0","0","0","0","50" +"10830","-1","","","","","M73 Frag Grenade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10831","-1","Use to conjure a Felhound Tracker.","","","","Fel Orb","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10832","-1","Information on how to control your new Felhound Tracker.","","","","Fel Tracker Owner's Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1291","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10833","-1","","","","","Horns of Eranikus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8597","42987","1","0.5","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","11","0","0","0","0","0","0","0","0","50" +"10834","-1","FRAGILE - Handle With Care","","","","Felhound Tracker Kit","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10835","-1","","","","","Crest of Supremacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24645","123225","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","1930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","10","0","0","0","0","0","0","0","0","50" +"10836","-1","","","","","Rod of Corrosion","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28989","144947","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","56","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","0","0","0","0","0","0","0","0","0","50" +"10837","-1","","","","","Tooth of Eranikus","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38801","194005","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","56","-1","0","0","62","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","10","0","0","0","0","0","0","0","0","50" +"10838","-1","","","","","Might of Hakkar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34665","173325","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","54","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","49" +"10839","-1","A note encased in azsharite crystal.","","","","Crystallized Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1311","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10840","-1","A note encased in azsharite crystal.","","","","Crystallized Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1313","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"10841","-1","","","","","Goldthorn Tea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"10842","-1","","","","","Windscale Sarong","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17595","87976","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","7","10","10","0","0","0","0","0","0","0","49" +"10843","-1","","","","","Featherskin Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10595","52978","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","4","0","0","0","0","0","0","0","0","49" +"10844","-1","","","","","Spire of Hakkar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44314","221571","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","54","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","16","0","0","0","0","0","0","0","0","49" +"10845","-1","","","","","Warrior's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24908","124542","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","4","24","0","0","0","0","0","0","0","49" +"10846","-1","","","","","Bloodshot Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16143","80717","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","6","0","0","0","0","0","0","0","0","49" +"10847","-1","","","","","Dragon's Call","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56921","284608","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","57","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","52" +"10858","-1","Teaches you how to make a Solid Iron Maul.","","","","Plans: Solid Iron Maul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","164","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10878","-1","","","","","Monster - Sword, Horde Jagged Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10898","-1","","","","","Monster - Sword, Horde Sword Centurion","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"10918","-1","","","","","Wound Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","42","170","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"10919","-1","","","","","Apothecary Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1075","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","0" +"10920","-1","","","","","Wound Poison II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","67","270","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"10921","-1","","","","","Wound Poison III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"10922","-1","","","","","Wound Poison IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"10938","-1","","","","","Lesser Magic Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","800","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10939","-1","","","","","Greater Magic Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10940","-1","","","","","Strange Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10958","-1","","","","","Hilary's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"10959","-1","","","","","Demon Hide Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10978","-1","","","","","Small Glimmering Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"10998","-1","","","","","Lesser Astral Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","3000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"10999","-1","Etched into the face of the hammer are the letters: F.F.F.","","","","Ironfel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11000","-1","Master Key to the Depths, Courtesy of F.F.F.","","","","Shadowforge Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11018","-1","","","","","Un'Goro Soil","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11019","-1","","","","","Monster - Sword, Horde Jagged Bloody","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11020","-1","","","","","Evergreen Pouch","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11021","-1","","","","","Monster - Big Sniper Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"11022","-1","","","","","Packet of Tharlendris Seeds","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11023","-1","","","","","Ancona Chicken","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11024","-1","Using Un'Goro soil, Tharlendris seeds have been cultivated inside.","","","","Evergreen Herb Casing","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11025","-1","","","","","Monster - Sword, Katana 2H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11026","-1","","","","","Tree Frog Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11027","-1","","","","","Wood Frog Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11038","-1","Teaches you how to permanently enchant a two-handed weapon so it grants +3 Spirit.","","","","Formula: Enchant 2H Weapon - Lesser Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11039","-1","Teaches you how to permanently enchant a cloak so it grants +1 Agility.","","","","Formula: Enchant Cloak - Minor Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11040","-1","","","","","Morrowgrain","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11041","-1","","","","","Monster - Shield, Kite Metal Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11042","-1","","","","","Monster - Sword, Horde Jagged w/ Bolts","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11058","-1","","","","","Sha'ni's Nose-Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11078","-1","","","","","Relic Coffer Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11079","-1","Gor'tesh's severed head, propped up on a pike.","","","","Gor'tesh's Lopped Off Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11080","-1","Squishy, Smelly, Slimy","","","","Gor'tesh's Lopped Off Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11081","-1","Teaches you how to permanently enchant a shield with +30 armor.","","","","Formula: Enchant Shield - Lesser Protection","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","333","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11082","-1","","","","","Greater Astral Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","9000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11083","-1","","","","","Soul Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11084","-1","","","","","Large Glimmering Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11085","-1","","","","","Customer of the Month Coffer Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11086","-1","","","","","Jang'thraze the Protector","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27403","137016","1","1","1","525376","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","45" +"11087","-1","","","","","Monster - Sword2H, Ragglesnout X'Caliboar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11098","-1","Teaches you how to permanently enchant a cloak so it grants 10 shadow resistance.","","","","Formula: Enchant Cloak - Lesser Shadow Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","333","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11099","-1","","","","","Old Dark Iron Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11101","-1","Teaches you how to permanently enchant a bracer to give +3 Strength.","","","","Formula: Enchant Bracer - Lesser Strength","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","333","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11102","-1","","","","","Unhatched Sprite Darter Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11103","-1","Good for twenty packs of Tharlendris seeds.","","","","Seed Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11104","-1","It always points towards the center of Ungoro Crater...","","","","Large Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11105","-1","","","","","Curled Map Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11106","-1","","","","","Lion-headed Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11107","-1","","","","","A Small Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11108","-1","","","","","Faded Photograph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11109","-1","","","","","Special Chicken Feed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11110","-1","","","","","Chicken Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11111","-1","","","","","Broken Sprite Darter Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","134","536","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11112","-1","Property of Marshal Expeditions.","","","","Research Equipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11113","-1","Property of Marshal Expeditions.","","","","Crate of Foodstuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11114","-1","","","","","Dinosaur Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11115","-1","","","","","Secret Safe Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11116","-1","Property of Williden Marshal","","","","A Mangled Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3884","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","48" +"11118","-1","","","","","Archaedic Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10795","43180","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3484","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","40" +"11119","-1","","","","","Milly's Harvest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11120","-1","","","","","Belgrom's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30144","150721","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","55","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","10","0","0","0","0","0","0","0","0","0","0" +"11121","-1","","","","","Darkwater Talwar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3529","17647","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","26","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","21" +"11122","-1","","","","","Carrot on a Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7162","28650","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11123","-1","","","","","Rainstrider Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15037","75187","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","7","27","0","0","0","0","0","0","0","0","0" +"11124","-1","","","","","Helm of Exile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16980","84900","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","18","11","0","0","0","0","0","0","0","0" +"11125","-1","","","","","Grape Manifest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1392","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11126","-1","Runes filled with liquid fire dance across the tablet.","","","","Tablet of Kurniya","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11127","-1","","","","","Scavenged Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11128","-1","Needed by Enchanters.","","","","Golden Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11129","-1","","","","","Essence of the Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11130","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Golden Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11131","-1","","","","","Hive Wall Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11132","-1","","","","","Unused Scraping Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11133","-1","","","","","Linken's Training Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11134","-1","","","","","Lesser Mystic Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","10000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11135","-1","","","","","Greater Mystic Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","30000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11136","-1","","","","","Linken's Tempered Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11137","-1","","","","","Vision Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11138","-1","","","","","Small Glowing Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11139","-1","","","","","Large Glowing Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11140","-1","Various runes and etchings cover the surface of the key.","","","","Prison Cell Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11141","-1","","","","","Bait","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11142","-1","","","","","Broken Samophlange","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11143","-1","","","","","Nugget Slug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11144","-1","Needed by Enchanters.","","","","Truesilver Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11145","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Truesilver Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11146","-1","","","","","Broken and Battered Samophlange","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11147","-1","","","","","Samophlange Manual Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11148","-1","","","","","Samophlange Manual Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11149","-1","","","","","Samophlange Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11150","-1","Teaches you how to permanently enchant gloves to give +2 mining skill.","","","","Formula: Enchant Gloves - Mining","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11151","-1","Teaches you how to permanently enchant gloves to give +2 herbalism skill.","","","","Formula: Enchant Gloves - Herbalism","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11152","-1","Teaches you how to permanently enchant gloves to give +2 fishing skill.","","","","Formula: Enchant Gloves - Fishing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","333","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11162","-1","","","","","Linken's Superior Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11163","-1","Teaches you how to permanently enchant a bracer to give +3 defense rating.","","","","Formula: Enchant Bracer - Lesser Deflection","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","333","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11164","-1","Teaches you how to permanently enchant a weapon to do 6 additional damage to beasts.","","","","Formula: Enchant Weapon - Lesser Beastslayer","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","333","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11165","-1","Teaches you how to permanently enchant a weapon to do 6 additional damage to elementals.","","","","Formula: Enchant Weapon - Lesser Elemental Slayer","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","333","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11166","-1","Teaches you how to permanently enchant gloves to give +5 skinning skill.","","","","Formula: Enchant Gloves - Skinning","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","333","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11167","-1","Teaches you how to permanently enchant a pair of boots to grant +3 Spirit.","","","","Formula: Enchant Boots - Lesser Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","333","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11168","-1","Teaches you how to permanently enchant a shield to grant +10 block rating.","","","","Formula: Enchant Shield - Lesser Block","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","195","333","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11169","-1","","","","","Book of Aquor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11170","-1","","","","","Deprecated Silver Totem of Aquementas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11171","-1","","","","","Fel Iron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11172","-1","","","","","Silvery Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11173","-1","","","","","Irontree Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11174","-1","","","","","Lesser Nether Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","20000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11175","-1","","","","","Greater Nether Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","60000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11176","-1","","","","","Dream Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11177","-1","","","","","Small Radiant Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11178","-1","","","","","Large Radiant Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11179","-1","","","","","Golden Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11184","-1","","","","","Blue Power Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11185","-1","","","","","Green Power Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11186","-1","","","","","Red Power Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11187","-1","","","","","Stemleaf Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11188","-1","","","","","Yellow Power Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11189","-1","","","","","Woodland Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11190","-1","","","","","Viny Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11191","-1","","","","","Farmer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","228","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11192","-1","","","","","Outfitter Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11193","-1","","","","","Blazewind Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16938","84692","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","5","3","0","0","0","0","0","0","0","0" +"11194","-1","","","","","Prismscale Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20405","102025","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","4","23","0","0","0","0","0","0","0","0" +"11195","-1","","","","","Warforged Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23897","119488","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","2","0","0","0","0","0","0","0","0","0" +"11196","-1","","","","","Mindburst Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16875","67500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","6","5","0","0","0","0","0","0","0","0" +"11197","-1","","","","","Dark Keeper Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11198","-1","Etched in Gold: Ironforge","","","","Rune of Escape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11199","-1","","","","","Engineer's Shield 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11200","-1","","","","","Engineer's Shield 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11201","-1","","","","","Engineer's Shield 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"11202","-1","Teaches you how to permanently enchant a shield to grant +5 Stamina.","","","","Formula: Enchant Shield - Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","333","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11203","-1","Teaches you how to permanently enchant gloves to give +5 mining skill.","","","","Formula: Enchant Gloves - Advanced Mining","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","333","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11204","-1","Teaches you how to permanently enchant a bracer to give +7 Spirit.","","","","Formula: Enchant Bracer - Greater Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","220","333","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11205","-1","Teaches you how to permanently enchant gloves to give +5 herbalism skill.","","","","Formula: Enchant Gloves - Advanced Herbalism","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","333","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11206","-1","Teaches you how to permanently enchant a cloak so it grants +3 Agility.","","","","Formula: Enchant Cloak - Lesser Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","333","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11207","-1","Teaches you how to permanently enchant a weapon to regularly blast its target with fire.","","","","Formula: Enchant Weapon - Fiery Weapon","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11208","-1","Teaches you how to permanently enchant a weapon to have a chance of stunning and inflicting heavy damage on demons.","","","","Formula: Enchant Weapon - Demonslaying","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1350","5400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","230","333","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11222","-1","","","","","Head of Krom'zar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11223","-1","Teaches you how to permanently enchant a bracer to give +5 Defense Rating.","","","","Formula: Enchant Bracer - Deflection","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","5800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","333","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11224","-1","Teaches you how to permanently enchant a shield to grant 8 frost resistance.","","","","Formula: Enchant Shield - Frost Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","5800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","333","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11225","-1","Teaches you how to permanently enchant a bracer to give +7 Stamina.","","","","Formula: Enchant Bracer - Greater Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","6200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","333","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11226","-1","Teaches you how to permanently enchant gloves to give a minor bonus to riding speed.","","","","Formula: Enchant Gloves - Riding Skill","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","6200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","333","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11227","-1","","","","","Piece of Krom'zar's Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11228","-1","A dull and gray patch of black dragon skin","","","","Frenzied Dragonflight Molt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","10","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11229","-1","","","","","Brightscale Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1696","8481","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","0" +"11230","-1","The fiery essence of Bael'Gar wrapped tightly inside black dragonflight molt.","","","","Encased Fiery Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11231","-1","A dull and gray patch of black dragon skin","","","","Altered Black Dragonflight Molt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","10","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11242","-1","","","","","Evoroot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11243","-1","","","","","Videre Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11262","-1","","","","","Orb of Lorica","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8142","32570","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","11","6","0","0","0","0","0","0","0","0","0" +"11263","-1","","","","","Nether Force Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10103","50517","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","40","128","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"11264","-1","","","","","Monster - Mace, Baron Silverlaine","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11265","-1","","","","","Cragwood Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16485","82425","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","42","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","17","0","0","0","0","0","0","0","0","0","0" +"11266","-1","","","","","Fractured Elemental Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11267","-1","","","","","Elemental Shard Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11268","-1","The dark, pale skin feels like clay.","","","","Head of Argelmach","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11269","-1","","","","","Intact Elemental Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11270","-1","","","","","Nixx's Signed Pledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11282","-1","","","","","Oglethorpe's Signed Pledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11283","-1","","","","","Overspark's Signed Pledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11284","-1","","","","","Accurate Slugs","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","45","-1","0","0","13","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","40" +"11285","-1","","","","","Jagged Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","45","-1","0","0","13","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","40" +"11286","-1","Unbreakable bindings.","","","","Thorium Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11287","-1","","","","","Lesser Magic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","508","2544","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","15","-1","0","0","12","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","5" +"11288","-1","","","","","Greater Magic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","7675","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","23","-1","0","0","22","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","13" +"11289","-1","","","","","Lesser Mystic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3581","17905","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","31","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","26" +"11290","-1","","","","","Greater Mystic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5263","26316","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","35","-1","0","0","40","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","30" +"11291","-1","","","","","Star Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1125","4500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11302","-1","","","","","Uther's Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7130","28520","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","47" +"11303","-1","","","","","Fine Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","637","3185","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","16","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","11" +"11304","-1","","","","","Fine Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","972","4862","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","19","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","14" +"11305","-1","","","","","Dense Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5162","25814","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","35","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","30" +"11306","-1","","","","","Sturdy Recurve","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3893","19468","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","32","-1","0","0","27","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"11307","-1","","","","","Massive Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13590","67952","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","47","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","42" +"11308","-1","","","","","Sylvan Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15765","78829","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","49","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","44" +"11309","-1","","","","","The Heart of the Mountain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11310","-1","","","","","Flameseer Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6598","32991","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","0","0","0","0","0","0","0","0","0","40" +"11311","-1","","","","","Emberscale Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6132","30664","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","12","0","0","0","0","0","0","0","0","40" +"11312","-1","","","","","Lost Thunderbrew Recipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11313","-1","","","","","Ribbly's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11314","-1","","","","","Monster - Claw Insect","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11315","-1","","","","","Bloodpetal Sprout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11316","-1","","","","","Bloodpetal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11317","-1","","","","","Monster - Axe, 2H War C01 Blue Limited","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11318","-1","","","","","Atal'ai Haze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11319","-1","","","","","Unloaded Zapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11320","-1","","","","","Bloodpetal Zapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11321","-1","","","","","Monster - Sword2H, Horde Massive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11322","-1","","","","","Monster - Sword2H, Horde Broad","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11323","-1","","","","","Monster - Sword2H, Horde Jagged","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11324","-1","","","","","Explorer's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11325","-1","","","","","Dark Iron Ale Mug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11342","-1","","","","","Monster - Axe, 2H Pendulum of Doom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11343","-1","","","","","Monster - Staff, Jeweled Red Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11362","-1","","","","","Medium Quiver","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","10" +"11363","-1","","","","","Medium Shot Pouch","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","10","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","10" +"11364","-1","","","","","Tabard of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11365","-1","","","","","Monster - Staff, Badass Red Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11366","-1","Sealed","","","","Helendis Riverhorn's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11367","-1","","","","","Solomon's Plea to Bolvar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11368","-1","Bears the Seal of Stormwind","","","","Bolvar's Decree","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1471","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11369","-1","","","","","Monster - Mace, Thaurissan Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11370","-1","","","","","Dark Iron Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11371","-1","","","","","Dark Iron Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11382","-1","","","","","Blood of the Mountain","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11383","-1","","","","","Monster - Mace, Green Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11384","-1","","","","","Broken Basilisk Teeth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11385","-1","","","","","Basilisk Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","145","580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11386","-1","","","","","Squishy Basilisk Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","676","2705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11387","-1","","","","","Basilisk Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1013","4055","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11388","-1","","","","","Basilisk Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1563","6255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11389","-1","","","","","Shimmering Basilisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2163","8655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11390","-1","","","","","Broken Bat Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","80","320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11391","-1","","","","","Spined Bat Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","205","820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11392","-1","","","","","Severed Bat Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","403","1612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11393","-1","","","","","Small Bat Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","780","3120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11394","-1","","","","","Bat Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","580","2320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11395","-1","","","","","Bat Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11402","-1","","","","","Sleek Bat Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1205","4820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11403","-1","","","","","Large Bat Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1592","6370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11404","-1","","","","","Evil Bat Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2080","8320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11405","-1","","","","","Giant Silver Vein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11406","-1","","","","","Rotting Bear Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","168","675","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11407","-1","","","","","Torn Bear Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","108","435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11408","-1","","","","","Bear Jaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","898","3595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11409","-1","","","","","Bear Organ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","503","2015","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11410","-1","","","","","Savage Bear Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","578","2315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11411","-1","","","","","Large Bear Bone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7420","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","28","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","23" +"11412","-1","","","","","Nagmara's Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11413","-1","","","","","Nagmara's Filled Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11414","-1","","","","","Grizzled Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1828","7315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11415","-1","","","","","Mixed Berries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11416","-1","","","","","Delicate Ribcage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","328","1315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11417","-1","","","","","Feathery Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1204","4816","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11418","-1","","","","","Hollow Wing Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","604","2416","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11419","-1","","","","","Mysterious Unhatched Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1900","7600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11420","-1","","","","","Elegant Writing Tool","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1712","6850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11422","-1","","","","","Goblin Engineer's Renewal Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11423","-1","","","","","Gnome Engineer's Renewal Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11424","-1","","","","","Monster - Staff, Wooden Handle Spiral Head","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11443","-1","","","","","Deprecated Grim Guzzler Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11444","-1","","","","","Grim Guzzler Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11445","-1","","","","","Flute of the Ancients","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11446","-1","","","","","A Crumpled Up Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4264","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"11462","-1","","","","","Discarded Knife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11463","-1","","","","","Undelivered Parcel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4281","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"11464","-1","-General Angerforge","","","","Marshal Windsor's Lost Information","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11465","-1","-Golem Lord Argelmach","","","","Marshal Windsor's Lost Information","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11466","-1","","","","","Raschal's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11467","-1","","","","","Blackrock Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11468","-1","","","","","Dark Iron Fanny Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11469","-1","","","","","Bloodband Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3563","17816","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","4","3","0","0","0","0","0","0","0","0" +"11470","-1","","","","","Tablet Transcript","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11471","-1","","","","","Fragile Sprite Darter Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11472","-1","","","","","Silvermane Stalker Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11473","-1","","","","","PX83-Enigmatron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11474","-1","","","","","Sprite Darter Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11475","-1","","","","","Wine-stained Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11476","-1","","","","","U'cha's Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11477","-1","","","","","White Ravasaur Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11478","-1","","","","","Un'Goro Gorilla Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11479","-1","","","","","Un'Goro Stomper Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11480","-1","","","","","Un'Goro Thunderer Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11482","-1","","","","","Crystal Pylon User's Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11502","-1","","","","","Loreskin Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6510","32552","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","9","0","0","0","0","0","0","0","0","0" +"11503","-1","","","","","Blood Amber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11504","-1","","","","","Piece of Threshadon Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11505","-1","","","","","Monster - Claw - Bear Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11506","-1","","","","","Monster - Claw Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11507","-1","","","","","Spotted Hyena Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11508","-1","","","","","Gamemaster's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11509","-1","","","","","Ravasaur Pheromone Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11510","-1","","","","","Lar'korwi's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11511","-1","This device helps identify corrupted elements of nature.","","","","Cenarion Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11512","-1","","","","","Patch of Tainted Skin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11513","-1","","","","","Tainted Vitriol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11514","-1","","","","","Fel Creep","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11515","-1","","","","","Corrupted Soul Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11516","-1","This druidic brew is used to cleanse corrupted plants.","","","","Cenarion Plant Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11522","-1","","","","","Silver Totem of Aquementas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11542","-1","","","","","Monster - Staff, Red Feathered","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11562","-1","","","","","Crystal Restore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11563","-1","","","","","Crystal Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11564","-1","","","","","Crystal Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11565","-1","","","","","Crystal Yield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11566","-1","","","","","Crystal Charge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11567","-1","","","","","Crystal Spire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11568","-1","","","","","Torwa's Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11569","-1","","","","","Preserved Threshadon Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11570","-1","","","","","Preserved Pheromone Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11582","-1","Use on Grol, Sevine, and Allistarj to break Razelikh's Ward.","","","","Fel Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11583","-1","","","","","Cactus Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11584","-1","","","","","Cactus Apple Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11585","-1","","","","","Monster - Shield, Engineer A01","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11586","-1","","","","","Monster - Shield, Engineer B01","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11587","-1","","","","","Monster - Shield, Engineer C01","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11588","-1","","","","","Monster - Staff, Jeweled D01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11589","-1","","","","","Monster - Shield, Orange Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11590","-1","","","","","Mechanical Repair Kit","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11591","-1","","","","","Monster - Sword2H, Battlefield Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11602","-1","","","","","Grim Guzzler Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11603","-1","","","","","Vilerend Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30656","153284","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","51","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","46" +"11604","-1","","","","","Dark Iron Plate","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34000","170001","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","19","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","54" +"11605","-1","","","","","Dark Iron Shoulders","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18822","94113","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","414","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","0","0","0","0","0","0","0","0","0","53" +"11606","-1","","","","","Dark Iron Mail","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19256","96280","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","51" +"11607","-1","","","","","Dark Iron Sunderer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51225","256126","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","101","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11608","-1","","","","","Dark Iron Pulverizer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45760","228804","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","55","-1","0","0","140","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","50" +"11609","-1","Used to collect the fiery essence of Bael'Gar.","","","","Altered Black Dragonflight Molt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11610","-1","Teaches you how to make a Dark Iron Pulverizer.","","","","Plans: Dark Iron Pulverizer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11611","-1","Teaches you how to make a Dark Iron Sunderer.","","","","Plans: Dark Iron Sunderer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11612","-1","Teaches you how to make Dark Iron Plate.","","","","Plans: Dark Iron Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11613","-1","","","","","DEBUG Samophlange Manual Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11614","-1","Teaches you how to make Dark Iron Mail.","","","","Plans: Dark Iron Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11615","-1","Teaches you how to make Dark Iron Shoulders.","","","","Plans: Dark Iron Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11616","-1","","","","","DEBUG Samophlange Manual Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11617","-1","","","","","Eridan's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11622","-1","","","","","Lesser Arcanum of Rumination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11623","-1","","","","","Spritecaster Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9999","49999","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","4","5","0","0","0","0","0","0","0","47" +"11624","-1","","","","","Kentic Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9079","45399","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","6","5","0","0","0","0","0","0","0","47" +"11625","-1","","","","","Enthralled Sphere","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","3","0","0","0","0","0","0","0","0","48" +"11626","-1","","","","","Blackveil Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9698","48493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","14","0","0","0","0","0","0","0","0","48" +"11627","-1","","","","","Fleetfoot Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14668","73344","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","5","6","0","0","0","0","0","0","0","48" +"11628","-1","","","","","Houndmaster's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24433","122168","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","48" +"11629","-1","","","","","Houndmaster's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24527","122636","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","53","-1","0","0","56","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","3","0","0","0","0","0","0","0","0","0","48" +"11630","-1","","","","","Rockshard Pellets","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","18","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","47" +"11631","-1","","","","","Stoneshell Guard","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19893","99468","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1803","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","9","0","0","0","0","0","0","0","0","47" +"11632","-1","","","","","Earthslag Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16349","81748","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","13","8","0","0","0","0","0","0","0","47" +"11633","-1","","","","","Spiderfang Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24633","123166","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","14","13","0","0","0","0","0","0","0","49" +"11634","-1","","","","","Silkweb Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7063","35319","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","13","0","0","0","0","0","0","0","0","49" +"11635","-1","","","","","Hookfang Shanker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35451","177256","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","54","-1","0","0","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","49" +"11642","-1","","","","","Lesser Arcanum of Constitution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11643","-1","","","","","Lesser Arcanum of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11644","-1","","","","","Lesser Arcanum of Resilience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11645","-1","","","","","Lesser Arcanum of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11646","-1","","","","","Lesser Arcanum of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11647","-1","","","","","Lesser Arcanum of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11648","-1","","","","","Lesser Arcanum of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11649","-1","","","","","Lesser Arcanum of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11662","-1","","","","","Ban'thok Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7462","37313","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","49" +"11663","-1","","","","","[PH] Greater Arcane Amalgamation (MANA/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11664","-1","","","","","[PH] Greater Arcane Amalgamation (HP/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11665","-1","","","","","Ogreseer Fists","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8532","42661","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","8","0","0","0","0","0","0","0","49" +"11666","-1","","","","","[PH] Greater Arcane Amalgamation (AC/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11667","-1","","","","","[PH] Greater Arcane Amalgamation (STR/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11668","-1","","","","","Flute of Xavaric","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","939","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"11669","-1","","","","","Naglering","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17157","68630","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"11670","-1","","","","","[PH] Greater Arcane Amalgamation (STA/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11671","-1","","","","","[PH] Greater Arcane Amalgamation (AGI/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11672","-1","","","","","[PH] Greater Arcane Amalgamation (SPI/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11673","-1","","","","","[PH] Greater Arcane Amalgamation (INT/FR)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"11674","-1","","","","","Jadefire Felbind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11675","-1","","","","","Shadefiend Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14464","72320","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","13","11","0","0","0","0","0","0","0","50" +"11676","-1","","","","","[PH] Legendary Arcane Amalgamation (Melee)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"11677","-1","","","","","Graverot Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11655","58276","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","50" +"11678","-1","","","","","Carapace of Anub'shiah","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27293","136469","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","11","11","0","0","0","0","0","0","0","50" +"11679","-1","","","","","Rubicund Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11738","58691","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","50" +"11682","-1","","","","","Eridan's Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11683","-1","","","","","[PH] Legendary Arcane Amalgamation (Caster)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"11684","-1","","","","","Ironfoe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63086","315430","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","55" +"11685","-1","","","","","Splinthide Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13941","69706","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","10","10","8","0","0","0","0","0","0","50" +"11686","-1","","","","","Girdle of Beastial Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9329","46646","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","50" +"11702","-1","","","","","Grizzle's Skinner","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36752","183763","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","55","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","5","6","0","0","0","0","0","0","0","50" +"11703","-1","","","","","Stonewall Girdle","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12986","64931","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","5","0","0","0","0","0","0","0","0","50" +"11722","-1","","","","","Dregmetal Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16610","83052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","15","0","0","0","0","0","0","0","0","50" +"11723","-1","","","","","Goodsteel's Balanced Flameberge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11724","-1","To: Krinkle Goodsteel, Tanaris","","","","Overdue Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11725","-1","","","","","Solid Crystal Leg Shaft","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11726","-1","","","","","Savage Gladiator Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33533","167666","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","13","14","0","0","0","0","0","0","0","0","52" +"11727","-1","","","","","Goodsteel Ledger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1551","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11728","-1","","","","","Savage Gladiator Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25336","126682","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","18","0","0","0","0","0","0","0","0","52" +"11729","-1","","","","","Savage Gladiator Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19073","95365","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","28","0","0","0","0","0","0","0","0","52" +"11730","-1","","","","","Savage Gladiator Grips","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12762","63813","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","12","14","0","0","0","0","0","0","0","52" +"11731","-1","","","","","Savage Gladiator Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19300","96501","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","13","0","0","0","0","0","0","0","0","52" +"11732","-1","Dark runes skitter across the surface.","","","","Libram of Rumination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11733","-1","Dark runes skitter across the surface.","","","","Libram of Constitution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1631","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11734","-1","Dark runes skitter across the surface.","","","","Libram of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1633","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11735","-1","","","","","Ragefury Eyepatch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16670","83350","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","6","0","0","0","0","0","0","0","0","52" +"11736","-1","Dark runes skitter across the surface.","","","","Libram of Resilience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1632","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11737","-1","Dark runes skitter across the surface.","","","","Libram of Voracity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1634","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11742","-1","","","","","Wayfarer's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11743","-1","","","","","Rockfist","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36881","184407","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","55","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","50" +"11744","-1","","","","","Bloodfist","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39242","196214","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","56","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11745","-1","","","","","Fists of Phalanx","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13865","69328","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","20","9","0","0","0","0","0","0","0","0","51" +"11746","-1","","","","","Golem Skull Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20718","103594","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","18","0","0","0","0","0","0","0","0","51" +"11747","-1","","","","","Flamestrider Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16659","83299","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","16","5","6","10","0","0","0","0","0","0","48" +"11748","-1","","","","","Pyric Caduceus","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25083","125417","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","48" +"11749","-1","","","","","Searingscale Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20141","100708","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","13","0","0","0","0","0","0","0","48" +"11750","-1","","","","","Kindling Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43234","216172","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","10","12","0","0","0","0","0","0","0","48" +"11751","-1","The smoldering remains of something...","","","","Burning Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11752","-1","The putrid scent of burned blood assaults your senses.","","","","Black Blood of the Tormented","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11753","-1","The pupil tracks your every move.","","","","Eye of Kajal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11754","-1","","","","","Black Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11755","-1","","","","","Verek's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14627","58510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","7","0","0","0","0","0","0","0","0","51" +"11762","-1","","","","","Monster - Axe, Hatchet Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11763","-1","","","","","Monster - Axe, Hatchet Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11764","-1","","","","","Cinderhide Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10398","51991","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1080","0","0","0","0","0","0","0","0","0","0","71","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11765","-1","","","","","Pyremail Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12525","62626","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1101","0","0","0","0","0","0","0","0","0","0","148","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11766","-1","","","","","Flameweave Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8606","43031","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11767","-1","","","","","Emberplate Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15202","76013","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1122","0","0","0","0","0","0","0","0","0","0","261","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11768","-1","","","","","Incendic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8669","43346","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","14","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","0","0","0","0","0","0","0","0","0","52" +"11782","-1","","","","","Boreal Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12720","63602","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","8","5","0","0","0","0","0","0","0","0","52" +"11783","-1","","","","","Chillsteel Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12767","63839","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","0","0","0","0","0","0","0","0","0","52" +"11784","-1","","","","","Arbiter's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33835","169178","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","8","0","0","0","0","0","0","0","0","48" +"11785","-1","","","","","Rock Golem Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29083","145415","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","1994","0","0","10","0","0","10","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","53" +"11786","-1","","","","","Stone of the Earth","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50740","253700","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","51" +"11787","-1","","","","","Shalehusk Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23986","119933","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","0","0","0","0","0","0","0","0","0","53" +"11802","-1","","","","","Lavacrest Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31459","157295","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","53" +"11803","-1","","","","","Force of Magma","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50177","250889","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","0","0","0","0","0","0","0","0","0","51" +"11804","-1","","","","","Spraggle's Canteen","0","1500","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","67648","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11805","-1","","","","","Rubidium Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40439","202197","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","56","-1","0","0","51","0","0","0","0","96","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","51" +"11807","-1","","","","","Sash of the Burning Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9153","45767","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","10","10","0","0","0","0","0","0","0","53" +"11808","-1","","","","","Circle of Flame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19292","96461","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","0","0","0","0","0","0","0","0","0","54" +"11809","-1","","","","","Flame Wrath","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51287","256435","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","56","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11810","-1","","","","","Force of Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"11811","-1","","","","","Smoking Heart of the Mountain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","7","7","7","7","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","50" +"11812","-1","","","","","Cape of the Fire Salamander","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13979","69895","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","53" +"11813","-1","Teaches you how to make a smoking heart of the mountain.","","","","Formula: Smoking Heart of the Mountain","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11814","-1","","","","","Molten Fists","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13083","65415","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","11","10","0","0","0","0","0","0","0","53" +"11815","-1","","","","","Hand of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"11816","-1","","","","","Angerforge's Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48882","244414","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","11","0","0","0","0","0","0","0","0","51" +"11817","-1","","","","","Lord General's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39254","196274","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11818","-1","","","","","Grimesilt Outhouse Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4451","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","43" +"11819","-1","","","","","Second Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","54" +"11820","-1","","","","","Royal Decorated Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26761","133809","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","26","12","0","0","0","0","0","0","0","53" +"11821","-1","","","","","Warstrife Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22385","111925","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","9","12","24","0","0","0","0","0","0","0","53" +"11822","-1","","","","","Omnicast Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14153","70768","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","6","0","0","0","0","0","0","0","0","54" +"11823","-1","","","","","Luminary Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23677","118385","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","8","8","0","0","0","0","0","0","0","54" +"11824","-1","","","","","Cyclopean Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13657","54630","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","18","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","7","8","0","0","0","0","0","0","49" +"11825","-1","","","","","Pet Bombling","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11826","-1","","","","","Lil' Smoky","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11827","-1","Teaches you how to make your own Lil' Smoky robot.","","","","Schematic: Lil' Smoky","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11828","-1","Teaches you how to make a Pet Bombling.","","","","Schematic: Pet Bombling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","675","2700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11829","-1","","","","","Un'Goro Ash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11830","-1","","","","","Webbed Diemetradon Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11831","-1","","","","","Webbed Pterrordax Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11832","-1","","","","","Burst of Knowledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"11833","-1","","","","","Gorishi Queen Lure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11834","-1","","","","","Super Sticky Tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11835","-1","","","","","Gorishi Queen Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11837","-1","","","","","Gorishi Scent Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11838","-1","","","","","Monster - Trident, Flame Wrath","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"11839","-1","","","","","Chief Architect's Monocle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11191","55958","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","10","21","0","0","0","0","0","0","0","50" +"11840","-1","","","","","Master Builder's Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7137","28550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11841","-1","","","","","Senior Designer's Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15032","75164","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","8","7","0","0","0","0","0","0","0","50" +"11842","-1","","","","","Lead Surveyor's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17050","85252","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","0","0","0","0","0","0","0","0","0","50" +"11843","-1","","","","","Bank Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11844","-1","","","","","Pestlezugg's Un'Goro Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11845","-1","","","","","Handmade Leather Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11846","-1","","","","","Wizbang's Special Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11847","-1","","","","","Battered Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11848","-1","","","","","Flax Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","26","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11849","-1","","","","","Rustmetal Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11850","-1","","","","","Short Duskbat Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11851","-1","","","","","Scavenger Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11852","-1","","","","","Roamer's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11853","-1","","","","","Rambling Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","388","1941","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","3","0","0","0","0","0","0","0","0","0" +"11854","-1","","","","","Samophlange Screwdriver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1494","7472","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","19","-1","0","0","25","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"11855","-1","","","","","Tork Wrench","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","782","3130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","0" +"11856","-1","","","","","Ceremonial Elven Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15775","78876","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","45","-1","0","0","33","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","6","0","0","0","0","0","0","0","0","0" +"11857","-1","","","","","Sanctimonial Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21377","106888","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","46","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","17","0","0","0","0","0","0","0","0","0" +"11858","-1","","","","","Battlehard Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4768","23842","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","0" +"11859","-1","","","","","Jademoon Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7135","28540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","4","8","0","0","0","0","0","0","0","0" +"11860","-1","","","","","Charged Lightning Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12971","64855","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","46","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11861","-1","","","","","Girdle of Reprisal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5207","26039","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","0","0","0","0","0","0","0","0","0","0" +"11862","-1","","","","","White Bone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7042","28170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11863","-1","","","","","White Bone Shredder","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27191","135957","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","52","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","2","0","4","7","0","0","0","0","0","0","0","0","0" +"11864","-1","","","","","White Bone Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34108","170543","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","52","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","3","0","0","0","0","0","0","0","0","0" +"11865","-1","","","","","Rancor Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8708","43542","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"11866","-1","","","","","Nagmara's Whipping Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9819","49099","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","14","8","0","0","0","0","0","0","0","0" +"11867","-1","","","","","Maddening Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8769","43849","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","5","0","0","0","0","0","0","0","0","0" +"11868","-1","","","","","Choking Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6542","26170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","0","0","0","0","0","0","0","0","0","0" +"11869","-1","","","","","Sha'ni's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6542","26170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"11870","-1","","","","","Oblivion Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10287","41150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","11","0","0","0","0","0","0","0","0","0" +"11871","-1","","","","","Snarkshaw Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10666","53332","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","0" +"11872","-1","","","","","Eschewal Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14962","74811","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"11873","-1","","","","","Ethereal Mist Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9662","48310","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","0" +"11874","-1","","","","","Clouddrift Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12124","60620","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11875","-1","","","","","Breezecloud Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5776","28881","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","0","0","0","0","0","0","0","0","0" +"11876","-1","","","","","Plainstalker Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16287","81438","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","4","0","0","0","0","0","0","0","0","0" +"11882","-1","","","","","Outrider Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20520","102604","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","16","0","0","0","0","0","0","0","0","0" +"11883","-1","","","","","A Dingy Fanny Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11884","-1","","","","","Moonlit Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1846","9232","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","6","0","0","0","0","0","0","0","0","0" +"11885","-1","","","","","Shadowforge Torch","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","711","2846","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11886","-1","","","","","Urgent Message","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1711","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11887","-1","","","","","Cenarion Circle Cache","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11888","-1","","","","","Quintis' Research Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4879","24399","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"11889","-1","","","","","Bark Iron Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12830","64153","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","8","0","0","0","0","0","0","0","0" +"11902","-1","","","","","Linken's Sword of Mastery","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34194","170974","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","56","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11903","-1","","","","","Cat Carrier (Corrupted Kitten)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11904","-1","","","","","Spirit of Aquementas","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13815","55260","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11905","-1","","","","","Linken's Boomerang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6203","24813","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11906","-1","","","","","Beastsmasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32723","163616","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11907","-1","","","","","Beastslayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41050","205250","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","55","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11908","-1","","","","","Archaeologist's Quarry Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9887","49435","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","9","0","0","0","0","0","0","0","0","0" +"11909","-1","","","","","Excavator's Utility Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8267","41338","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","16","0","0","0","0","0","0","0","0","0" +"11910","-1","","","","","Bejeweled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21604","108023","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","8","0","0","0","0","0","0","0","0","0" +"11911","-1","","","","","Treetop Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12392","61961","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","8","0","0","0","0","0","0","0","0","0" +"11912","-1","","","","","Package of Empty Ooze Containers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11913","-1","","","","","Clayridge Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14045","70225","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"11914","-1","","","","","Empty Cursed Ooze Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11915","-1","","","","","Shizzle's Drizzle Blocker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20124","100623","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","13","1","0","0","0","0","0","0","0","0","0" +"11916","-1","","","","","Shizzle's Muzzle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11834","59172","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","6","12","0","0","0","0","0","0","0","0" +"11917","-1","","","","","Shizzle's Nozzle Wiper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6335","31675","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","12","3","0","0","0","0","0","0","0","0" +"11918","-1","","","","","Grotslab Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9537","47688","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11919","-1","","","","","Cragplate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16720","83601","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","12","0","0","0","0","0","0","0","0","0" +"11920","-1","","","","","Wraith Scythe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40732","203663","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","56","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"11921","-1","","","","","Impervious Giant","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54167","270837","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","105","0","0","0","0","159","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11922","-1","","","","","Blood-etched Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43491","217457","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","0","0","0","0","0","0","0","0","0","52" +"11923","-1","","","","","The Hammer of Grace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43649","218245","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11924","-1","","","","","Robes of the Royal Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20475","102378","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","10","12","19","0","0","0","0","0","0","0","55" +"11925","-1","","","","","Ghostshroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16484","82424","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","12","0","0","0","0","0","0","0","52" +"11926","-1","","","","","Deathdealer Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24590","122953","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","8","0","0","0","0","0","0","0","0","52" +"11927","-1","","","","","Legplates of the Eternal Guardian","0.2","0","220","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28799","143997","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","52" +"11928","-1","","","","","Thaurissan's Royal Scepter","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","10","5","5","0","0","0","0","0","0","0","55" +"11929","-1","","","","","Haunting Specter Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16581","82905","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","52" +"11930","-1","","","","","The Emperor's New Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14588","72941","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","7","0","0","0","0","0","0","0","0","55" +"11931","-1","","","","","Dreadforge Retaliator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58103","290517","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","59","-1","0","0","149","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"11932","-1","","","","","Guiding Stave of Wisdom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58322","291612","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","59","-1","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","11","0","0","0","0","0","0","0","0","54" +"11933","-1","","","","","Imperial Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","78585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","55" +"11934","-1","","","","","Emperor's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19921","79685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","55" +"11935","-1","","","","","Magmus Stone","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13162","52650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","7","0","0","0","0","0","0","0","0","53" +"11936","-1","","","","","Relic Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","284","1422","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","4","0","0","0","0","0","0","0","0","0" +"11937","-1","","","","","Fat Sack of Coins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187","749","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11938","-1","","","","","Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11939","-1","","","","","Shiny Bracelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","671","2684","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11940","-1","","","","","Sparkly Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","389","1558","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11941","-1","","","","","False Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5896","23584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11942","-1","","","","","Legal Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5303","21215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11943","-1","","","","","Deed to Thandol Span","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21485","85941","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11944","-1","","","","","Dark Iron Baby Booties","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8821","35284","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"11945","-1","","","","","Dark Iron Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6592","26370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","3484","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","48" +"11946","-1","","","","","Fire Opal Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7912","31650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","3513","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","0","0","0","0","0","0","0","0","0","47" +"11947","-1","","","","","Filled Cursed Ooze Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11948","-1","","","","","Empty Tainted Ooze Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11949","-1","","","","","Filled Tainted Ooze Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11950","-1","","","","","Windblossom Berries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11951","-1","","","","","Whipper Root Tuber","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11952","-1","","","","","Night Dragon's Breath","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"11953","-1","","","","","Empty Pure Sample Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11954","-1","","","","","Filled Pure Sample Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11955","-1","","","","","Bag of Empty Ooze Containers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11962","-1","","","","","Manacle Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7939","39699","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","15","0","0","0","0","0","0","0","0","0" +"11963","-1","","","","","Penance Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10025","50129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","8","7","0","0","0","0","0","0","0","0" +"11964","-1","","","","","Swiftstrike Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30156","150784","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","55","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"11965","-1","","","","","Quartz Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","464","1858","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","3295","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","15" +"11966","-1","","","","","Small Sack of Coins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","164","658","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"11967","-1","","","","","Zircon Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1087","4351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","3296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","18" +"11968","-1","","","","","Amber Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","997","3988","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3297","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"11969","-1","","","","","Jacinth Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1721","6887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","3298","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","24" +"11970","-1","","","","","Spinel Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","6841","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","3300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","29" +"11971","-1","","","","","Amethyst Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3969","15876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","3301","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"11972","-1","","","","","Carnelian Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18597","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","3302","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","35" +"11973","-1","","","","","Hematite Link","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3971","15887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","3303","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","38" +"11974","-1","","","","","Aquamarine Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3304","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"11975","-1","","","","","Topaz Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4739","18958","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","3305","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","44" +"11976","-1","","","","","Sardonyx Knuckle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7778","31112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","3306","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","47" +"11977","-1","","","","","Serpentine Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7896","31587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3307","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11978","-1","","","","","Jasper Link","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7414","29658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","53" +"11979","-1","","","","","Peridot Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7471","29885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3309","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","56" +"11980","-1","","","","","Opal Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10539","42158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","3310","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"11981","-1","","","","","Lead Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","1985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","3241","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","15" +"11982","-1","","","","","Viridian Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1062","4251","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","3242","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","18" +"11983","-1","","","","","Chrome Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4521","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","3243","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","21" +"11984","-1","","","","","Cobalt Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2189","8756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","3244","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","24" +"11985","-1","","","","","Cerulean Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2144","8576","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3246","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","30" +"11986","-1","","","","","Thallium Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1745","6981","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","3247","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","34" +"11987","-1","","","","","Iridium Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2885","11543","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","3249","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","38" +"11988","-1","","","","","Tellurium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7113","28455","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3250","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","42" +"11989","-1","","","","","Vanadium Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7471","29887","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","3251","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","46" +"11990","-1","","","","","Selenium Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8306","33225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3253","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","50" +"11991","-1","","","","","Quicksilver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6317","25268","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","3254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","54" +"11992","-1","","","","","Vermilion Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7396","29585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","3255","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"11993","-1","","","","","Clay Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","874","3498","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","3259","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","17" +"11994","-1","","","","","Coral Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1312","5251","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","3260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"11995","-1","","","","","Ivory Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","914","3658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","3261","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","23" +"11996","-1","","","","","Basalt Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1713","6854","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","3263","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","29" +"11997","-1","","","","","Greenstone Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6469","25876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","3264","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","33" +"11998","-1","","","","","Jet Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2896","11587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","3265","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","37" +"11999","-1","","","","","Lodestone Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5538","22155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","3267","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","41" +"12000","-1","","","","","Limb Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41054","205270","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","55","-1","0","0","82","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","6","0","0","0","0","0","0","0","0","0" +"12001","-1","","","","","Onyx Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","3268","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12002","-1","","","","","Marble Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6322","25289","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","3269","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12003","-1","","","","","Dark Dwarven Lager","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12004","-1","","","","","Obsidian Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9163","36652","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3271","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12005","-1","","","","","Granite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8813","35254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12006","-1","","","","","Meadow Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2123","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","17" +"12007","-1","","","","","Prairie Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","2124","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","20" +"12008","-1","","","","","Savannah Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","895","3581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","23" +"12009","-1","","","","","Tundra Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2174","8698","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2126","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","28" +"12010","-1","","","","","Fen Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2469","9876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","32" +"12011","-1","","","","","Forest Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18599","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2129","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","36" +"12012","-1","","","","","Marsh Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","9853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","40" +"12013","-1","","","","","Desert Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","18599","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","2132","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","44" +"12014","-1","","","","","Arctic Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6289","25158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2133","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","48" +"12015","-1","","","","","Swamp Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8811","35245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12016","-1","","","","","Jungle Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7781","31125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","2136","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12017","-1","","","","","Prismatic Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8963","35853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3461","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"12018","-1","","","","","Conservator Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13842","69211","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","15","0","0","0","0","0","0","0","0","0" +"12019","-1","","","","","Cerulean Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4220","16881","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2030","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","27" +"12020","-1","","","","","Thallium Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3969","15878","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2036","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","31" +"12021","-1","","","","","Shieldplate Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16291","81459","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","11","0","0","0","0","0","0","0","0","0" +"12022","-1","","","","","Iridium Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4718","18875","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2048","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","36" +"12023","-1","","","","","Tellurium Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","19885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","2054","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","40" +"12024","-1","","","","","Vanadium Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2066","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12025","-1","","","","","Selenium Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5282","21130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","2072","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12026","-1","","","","","Quicksilver Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7757","31030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2084","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","54" +"12027","-1","","","","","Vermilion Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6257","25030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","2090","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"12028","-1","","","","","Basalt Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4007","16030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","3281","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","27" +"12029","-1","","","","","Greenstone Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","3282","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"12030","-1","","","","","Jet Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7143","28574","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","3283","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12031","-1","","","","","Lodestone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7894","31578","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","3285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","39" +"12032","-1","","","","","Onyx Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","3286","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","43" +"12033","-1","","","","","Thaurissan Family Jewels","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12034","-1","","","","","Marble Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5012","20050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","3288","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","48" +"12035","-1","","","","","Obsidian Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5513","22053","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","3289","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12036","-1","","","","","Granite Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5982","23930","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3291","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12037","-1","","","","","Mystery Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12038","-1","","","","","Lagrave's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9092","36370","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","7","7","0","0","0","0","0","0","0","0" +"12039","-1","","","","","Tundra Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4224","16899","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","3539","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","28" +"12040","-1","","","","","Forest Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4164","16658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","3541","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","33" +"12041","-1","","","","","Windshear Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14446","72233","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","14","16","0","0","0","0","0","0","0","0" +"12042","-1","","","","","Marsh Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4749","18997","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","3542","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","37" +"12043","-1","","","","","Desert Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5396","21587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","3544","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","42" +"12044","-1","","","","","Arctic Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5145","20581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","3545","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","46" +"12045","-1","","","","","Swamp Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7767","31068","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","3547","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12046","-1","","","","","Jungle Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5757","23030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3548","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12047","-1","","","","","Spectral Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4996","19987","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","3463","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","25" +"12048","-1","","","","","Prismatic Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6507","26030","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3462","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"12049","-1","","","","","Splintsteel Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16850","84252","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","12","12","0","0","0","0","0","0","0","0" +"12050","-1","","","","","Hazecover Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8963","44818","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","0","0","0","0","0","0","0","0","0" +"12051","-1","","","","","Brazen Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8996","44984","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","2","12","0","0","0","0","0","0","0","0" +"12052","-1","","","","","Ring of the Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","16" +"12053","-1","","","","","Volcanic Rock Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","3","0","0","0","0","0","0","0","0","16" +"12054","-1","","","","","Demon Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","2","2","0","0","0","0","0","0","0","19" +"12055","-1","","","","","Stardust Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","5","3","0","0","0","0","0","0","0","47" +"12056","-1","","","","","Ring of the Heavens","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","3","0","0","0","0","0","0","0","0","51" +"12057","-1","","","","","Dragonscale Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","4","0","0","0","0","0","0","0","0","55" +"12058","-1","","","","","Demonic Bone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8376","33505","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","5","5","0","0","0","0","0","0","0","59" +"12059","-1","","","","","Conqueror's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12377","49510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","10","5","4","0","0","0","0","0","0","0" +"12060","-1","","","","","Shindrell's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12061","-1","","","","","Blade of Reckoning","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40212","201061","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12062","-1","","","","","Skilled Fighting Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40365","201828","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","60","-1","0","0","35","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","0" +"12063","-1","","","","","Monster - Trident, Wicked","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"12064","-1","","","","","Gamemaster Hood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12065","-1","","","","","Ward of the Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7953","31813","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","8","8","8","8","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12066","-1","","","","","Shaleskin Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11149","55748","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","6","0","0","0","0","0","0","0","0","0" +"12082","-1","","","","","Wyrmhide Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13726","68634","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12083","-1","","","","","Valconian Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7348","36744","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","17","0","0","0","0","0","0","0","0","0" +"12102","-1","","","","","Ring of the Aristocrat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9042","36170","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","6","0","0","0","0","0","0","0","0","0" +"12103","-1","","","","","Star of Mystaria","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","9","9","0","0","0","0","0","0","0","58" +"12104","-1","","","","","Brindlethorn Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20879","104396","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","0" +"12105","-1","","","","","Pridemail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25144","125722","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","0" +"12106","-1","","","","","Boulderskin Breastplate","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29442","147213","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","0" +"12107","-1","","","","","Whispersilk Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16885","84428","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","0","0","0","0","0","0","0","0","0","0" +"12108","-1","","","","","Basaltscale Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23055","115275","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","10","0","0","0","0","0","0","0","0","0" +"12109","-1","","","","","Azure Moon Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11569","57846","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","15","0","0","0","0","0","0","0","0","0" +"12110","-1","","","","","Raincaster Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11610","58054","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","0" +"12111","-1","","","","","Lavaplate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13672","68362","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","5","0","0","0","0","0","0","0","0","0" +"12112","-1","","","","","Crypt Demon Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10407","52035","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","0","0","0","0","0","0","0","0","0","0" +"12113","-1","","","","","Sunborne Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10444","52220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"12114","-1","","","","","Nightfall Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8734","43672","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","0" +"12115","-1","","","","","Stalwart Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12341","61708","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","0","0","0","0","0","0","0","0","0","0" +"12122","-1","A chest full of ""junk""","","","","Kum'isha's Junk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12142","-1","","","","","Monster - Sword, Thick/Fat Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12143","-1","","","","","Dragonspine Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12144","-1","","","","","Eggscilloscope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12162","-1","Teaches you how to make a Hardened Iron Shortsword.","","","","Plans: Hardened Iron Shortsword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","164","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12163","-1","Teaches you how to make a Moonsteel Broadsword.","","","","Plans: Moonsteel Broadsword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","164","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12164","-1","Teaches you how to make a Massive Iron Axe.","","","","Plans: Massive Iron Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","4400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","164","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12182","-1","","","","","Monster - Staff of Jordan","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12183","-1","","","","","Monster - Mace, Thrall's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12184","-1","","","","","Raptor Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12185","-1","","","","","Bloodsail Admiral's Hat","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12895","64478","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","25","0","0","0","0","0","0","0","0","0","0" +"12186","-1","","","","","Drakefire Amulet (OLD) (UNUSED)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2899","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12187","-1","","","","","Test Defense Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18182","90913","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"12188","-1","","","","","Test Armor Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18245","91226","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"12189","-1","","","","","Test Strength Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16567","82835","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12190","-1","","","","","Dreamless Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12191","-1","","","","","Silver Dawning's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12192","-1","","","","","Mist Veil's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12202","-1","","","","","Tiger Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12203","-1","","","","","Red Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12204","-1","","","","","Heavy Kodo Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12205","-1","","","","","White Spider Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12206","-1","","","","","Tender Crab Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12207","-1","","","","","Giant Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12208","-1","","","","","Tender Wolf Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12209","-1","","","","","Lean Wolf Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"12210","-1","","","","","Roast Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12211","-1","","","","","Spiced Wolf Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12212","-1","","","","","Jungle Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12213","-1","","","","","Carrion Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12214","-1","","","","","Mystery Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"12215","-1","","","","","Heavy Kodo Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12216","-1","","","","","Spiced Chili Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"12217","-1","","","","","Dragonbreath Chili","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12218","-1","","","","","Monster Omelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"12219","-1","Three empty sockets cover the face.","","","","Unadorned Seal of Ascension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12220","-1","","","","","Intact Elemental Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12223","-1","","","","","Meaty Bat Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12224","-1","","","","","Crispy Bat Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12225","-1","","","","","Blump Family Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","940","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","1","356","10","-1","0","0","13","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12226","-1","Teaches you how to cook up a Crispy Bat Wing.","","","","Recipe: Crispy Bat Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12227","-1","Teaches you how to cook Lean Wolf Steak.","","","","Recipe: Lean Wolf Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12228","-1","Teaches you how to cook Roast Raptor.","","","","Recipe: Roast Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12229","-1","Teaches you how to cook Hot Wolf Ribs.","","","","Recipe: Hot Wolf Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12230","-1","","","","","Felwood Slime Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12231","-1","Teaches you how to cook Jungle Stew.","","","","Recipe: Jungle Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12232","-1","Teaches you how to cook Carrion Surprise.","","","","Recipe: Carrion Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12233","-1","Teaches you how to cook Mystery Stew.","","","","Recipe: Mystery Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12234","-1","","","","","Corrupted Felwood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12235","-1","","","","","Un'Goro Slime Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12236","-1","","","","","Pure Un'Goro Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12237","-1","","","","","Fine Crab Chunks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12238","-1","","","","","Darkshore Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","40","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"12239","-1","Teaches you how to cook Dragonbreath Chili.","","","","Recipe: Dragonbreath Chili","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12240","-1","Teaches you how to cook Heavy Kodo Stew.","","","","Recipe: Heavy Kodo Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12241","-1","","","","","Collected Dragon Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12242","-1","","","","","Sea Creature Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12243","-1","","","","","Smoldering Claw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45980","229902","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","54","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","0","0","0","0","0","0","0","0","0","49" +"12244","-1","","","","","Test Agility Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17982","89912","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12245","-1","","","","","Test Spirit Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18046","90234","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"12247","-1","","","","","Broad Bladed Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5674","28373","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","32","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","27" +"12248","-1","","","","","Daring Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6406","32030","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","34","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","29" +"12249","-1","","","","","Merciless Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6039","30195","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","31","-1","0","0","54","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","12","0","0","0","0","0","0","0","0","0","26" +"12250","-1","","","","","Midnight Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8068","40342","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","34","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","29" +"12251","-1","","","","","Big Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10779","53897","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","37","1535","0","0","61","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","15","0","0","0","0","0","0","0","0","0","32" +"12252","-1","","","","","Staff of Protection","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12619","63095","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","39","1535","0","0","66","0","0","0","0","100","0","0","0","0","100","0","6","6","6","6","6","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12253","-1","","","","","Brilliant Red Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3545","17728","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","36" +"12254","-1","","","","","Well Oiled Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4483","22416","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","39" +"12255","-1","","","","","Pale Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6997","34988","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","12","0","0","0","0","0","0","0","0","41" +"12256","-1","","","","","Cindercloth Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8765","43828","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","0","0","0","0","0","0","0","0","0","44" +"12257","-1","","","","","Heavy Notched Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3886","19430","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","10","0","0","0","0","0","0","0","0","37" +"12258","-1","","","","","Serpent Clasp Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4549","22747","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","39" +"12259","-1","","","","","Glinting Steel Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8072","40364","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"12260","-1","","","","","Searing Golden Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10395","51977","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","39","-1","0","0","21","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","34" +"12261","-1","Teaches you how to make a Searing Golden Blade.","","","","Plans: Searing Golden Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12262","-1","","","","","Empty Worg Pup Cage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12263","-1","The cage rattles and shakes.","","","","Caged Worg Pup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12264","-1","","","","","Worg Carrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12282","-1","","","","","Worn Battleaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","44","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12283","-1","","","","","Broodling Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12284","-1","","","","","Draco-Incarcinatrix 900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12285","-1","","","","","Monster - Axe, 2H Rev. Bearded Single Bladed - Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12286","-1","","","","","Eggscilloscope Prototype","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12287","-1","","","","","Collectronic Module","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12288","-1","","","","","Encased Corrupt Ooze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12289","-1","","","","","Sea Turtle Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12290","-1","","","","","Monster - Axe, Horde Badass Copper 01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12291","-1","","","","","Merged Ooze Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12292","-1","","","","","Strangely Marked Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12293","-1","","","","","Fine Gold Thread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12294","-1","","","","","Monster - Axe, 2H Horde Green War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12295","-1","","","","","Leggings of the People's Militia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","282","1414","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","0","0","0","0","0","0","0","0","0","0" +"12296","-1","","","","","Spark of the People's Militia","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","722","3612","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","17","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12297","-1","","","","","Monster - Sword, Horde Jagged Brown","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12298","-1","","","","","Monster - Dagger, Dark Pronged","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12299","-1","","","","","Netted Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12300","-1","","","","","Orb of Draconic Energy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12301","-1","","","","","Bamboo Cage Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12302","1101","","","","","Reins of the Frostsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12303","1101","","","","","Reins of the Nightsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12304","-1","","","","","Monster - Sword, Horde Broad Pointed","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12322","-1","","","","","Monster - Staff, Green Feathered","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"12323","-1","","","","","Unforged Seal of Ascension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12324","-1","","","","","Forged Seal of Ascension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12325","1101","","","","","Reins of the Primal Leopard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"12326","1101","","","","","Reins of the Tawny Sabercat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"12327","1101","","","","","Reins of the Golden Sabercat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"12328","-1","","","","","Monster - Staff, 3 Piece Taped Staff Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12329","-1","","","","","Monster - Staff, Crooked Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12330","690","","","","","Horn of the Red Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12331","-1","","","","","Monster - Sword2H, Horde Massive Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12332","-1","","","","","Monster - Dagger, Green Pronged","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12334","-1","","","","","Frostmaul Shards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12335","-1","","","","","Gemstone of Smolderthorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12336","-1","","","","","Gemstone of Spirestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12337","-1","","","","","Gemstone of Bloodaxe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12338","-1","","","","","Monster - Polearm, Rend Blackhand","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12339","-1","","","","","Vaelan's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12341","-1","","","","","Blackwood Fruit Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12342","-1","","","","","Blackwood Grain Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12343","-1","","","","","Blackwood Nut Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12344","-1","Draconic runes appear and disappear along the inner band.","","","","Seal of Ascension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12345","-1","","","","","Bijou's Belongings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12346","-1","","","","","Empty Cleansing Bowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12347","-1","","","","","Filled Cleansing Bowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12348","-1","","","","","Monster - Axe, Horde Badass Copper 01 (Special1H)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12349","-1","","","","","Cliffspring River Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12350","-1","","","","","Empty Sampling Tube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12351","690","","","","","Horn of the Arctic Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12352","-1","","","","","Doomrigger's Clasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12353","1101","","","","","White Stallion Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12354","1101","","","","","Palomino Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"12355","-1","","","","","Talisman of Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12356","-1","","","","","Highperch Wyvern Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12358","-1","","","","","Darkstone Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12359","-1","","","","","Thorium Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12360","-1","","","","","Arcanite Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12361","-1","","","","","Blue Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12363","-1","","","","","Arcane Crystal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12364","-1","","","","","Huge Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12365","-1","","","","","Dense Stone","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12366","-1","","","","","Thick Yeti Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12367","-1","","","","","Pristine Yeti Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12368","-1","","","","","Dawn's Gambit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12369","-1","","","","","Scepter of Vectus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12382","-1","Master Key to the City of Stratholme","","","","Key to the City","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12383","-1","","","","","Moontouched Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12384","-1","","","","","Cache of Mau'ari","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12385","-1","test","","","","test","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12402","-1","","","","","Ancient Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12403","-1","","","","","Monster - Polearm, Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12404","-1","","","","","Dense Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12405","-1","","","","","Thorium Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16170","80850","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","480","0","8","8","8","8","8","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12406","-1","","","","","Thorium Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8160","40804","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","6","6","6","6","6","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"12408","-1","","","","","Thorium Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8797","43986","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"12409","-1","","","","","Thorium Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18054","90274","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","7","7","7","7","7","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12410","-1","","","","","Thorium Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18117","90589","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"12411","-1","","","","","Third Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12412","-1","","","","","Fourth Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12414","-1","","","","","Thorium Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30408","152044","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12415","-1","","","","","Radiant Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17003","85018","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","16","16","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","49" +"12416","-1","","","","","Radiant Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7596","37980","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"12417","-1","","","","","Radiant Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17034","85174","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"12418","-1","","","","","Radiant Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10242","51214","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"12419","-1","","","","","Radiant Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16421","82107","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","15","15","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12420","-1","","","","","Radiant Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24462","122310","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12421","-1","","","","","Monster - Staff, White Jeweled","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12422","-1","","","","","Imperial Plate Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28357","141787","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","17","0","0","0","0","0","0","0","0","55" +"12424","-1","","","","","Imperial Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9738","48691","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","11","0","0","0","0","0","0","0","0","47" +"12425","-1","","","","","Imperial Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10638","53190","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","8","0","0","0","0","0","0","0","0","49" +"12426","-1","","","","","Imperial Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21069","105345","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","12","0","0","0","0","0","0","0","0","54" +"12427","-1","","","","","Imperial Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21145","105727","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","17","0","0","0","0","0","0","0","0","54" +"12428","-1","","","","","Imperial Plate Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15103","75516","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","47" +"12429","-1","","","","","Imperial Plate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30289","151448","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","18","0","0","0","0","0","0","0","0","56" +"12430","-1","","","","","Frostsaber E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12431","-1","","","","","Winterfall E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12432","-1","","","","","Shardtooth E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12433","-1","","","","","Wildkin E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12434","-1","","","","","Chillwind E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12435","-1","","","","","Ice Thistle E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12436","-1","","","","","Frostmaul E'ko","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12437","-1","","","","","Ridgewell's Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12438","-1","","","","","Tinkee's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12440","-1","","","","","Magic Knucklebone (DND)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12442","-1","","","","","Charm Pouch (DND)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11463","45852","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12443","-1","","","","","Knucklebone Pouch (DND)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17896","71587","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12444","-1","","","","","Uncracked Chillwind Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12445","-1","","","","","Felnok's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12446","-1","","","","","Anvilmar Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","96","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","5","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","0" +"12447","-1","","","","","Thistlewood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","97","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","5","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"12448","-1","","","","","Light Hunting Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","97","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","5","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","0" +"12449","-1","","","","","Primitive Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","97","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","5","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"12450","-1","","","","","Juju Flurry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12451","-1","","","","","Juju Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12452","-1","","","","","Monster - Shield, Horde A02 Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12453","-1","","","","","Monster - Shield, Horde A03 Triangle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12454","-1","","","","","Monster - Shield, Horde B01 Brown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12455","-1","","","","","Juju Ember","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12456","-1","","","","","Monster - Shield, Horde B02 Brown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12457","-1","","","","","Juju Chill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12458","-1","","","","","Juju Guile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12459","-1","","","","","Juju Escape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12460","-1","","","","","Juju Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12461","-1","","","","","Monster - Axe, 2H Horde Brown Tombstone","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12462","-1","","","","","Embrace of the Wind Serpent","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20274","101370","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","12","17","9","0","0","0","0","0","0","0","50" +"12463","-1","","","","","Drakefang Butcher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42446","212232","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","48" +"12464","-1","","","","","Bloodfire Talons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8520","42602","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","5","10","0","0","0","0","0","0","0","48" +"12465","-1","","","","","Nightfall Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10261","51309","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","8","0","0","0","0","0","0","0","0","48" +"12466","-1","","","","","Dawnspire Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6865","34328","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","8","12","0","0","0","0","0","0","0","48" +"12467","-1","Something seems to shake from within","","","","Alien Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12468","-1","","","","","Chilton Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8644","43221","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","53","-1","0","0","18","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12469","-1","","","","","Mutilator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29179","145898","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","47","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","42" +"12470","-1","","","","","Sandstalker Ankleguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8784","43922","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","3","6","0","0","0","0","0","0","0","42" +"12471","-1","","","","","Desertwalker Cane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8409","33638","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","13","4","5","0","0","0","0","0","0","0","42" +"12472","-1","Quality Guaranteed by Kraklenheit Industries","","","","Krakle's Thermometer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12482","-1","","","","","Monster - Glaive - Demonhunter Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12502","-1","","","","","Monster - Glaive - Demonhunter Black Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12522","-1","","","","","Bingles' Flying Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","182","910","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"12523","-1","","","","","Monster - Gun, Silver Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"12524","-1","","","","","Blue-feathered Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12525","-1","","","","","Jaron's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12526","-1","","","","","TEST Challenge to Urok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12527","-1","","","","","Ribsplitter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35332","176663","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","5304","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"12528","-1","","","","","The Judge's Gavel","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37833","189166","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","52","-1","0","0","122","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","47" +"12529","-1","","","","","Smolderweb Carrier","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12530","-1","","","","","Spire Spider Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12531","-1","","","","","Searing Needle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28883","144417","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","51","-1","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","46" +"12532","-1","","","","","Spire of the Stoneshaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48501","242507","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","56","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","17","0","0","0","0","0","0","0","0","51" +"12533","-1","","","","","Roughshod Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12534","-1","","","","","Omokk's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12535","-1","","","","","Doomforged Straightedge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34926","174630","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","54","-1","0","0","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","49" +"12542","-1","","","","","Funeral Pyre Vestment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12356","61781","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","13","13","0","0","0","0","0","0","0","46" +"12543","-1","","","","","Songstone of Ironforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7156","28625","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","0","0","0","0","0","0","0","0","0" +"12544","-1","","","","","Thrall's Resolve","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7407","29630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","0","0","0","0","0","0","0","0","0" +"12545","-1","","","","","Eye of Orgrimmar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7082","28330","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","7","0","0","0","0","0","0","0","0","0" +"12546","-1","","","","","Aristocratic Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7463","37316","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","6","0","0","0","0","0","0","0","0","49" +"12547","-1","","","","","Mar Alom's Grip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10519","52597","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","10","5","0","0","0","0","0","0","0","51" +"12548","-1","","","","","Magni's Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","7","0","0","0","0","0","0","0","0","0" +"12549","-1","","","","","Braincage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13670","68350","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","9","5","0","0","0","0","0","0","0","47" +"12550","-1","","","","","Runed Golem Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11378","56892","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","0","0","0","0","0","0","0","0","0","48" +"12551","-1","","","","","Stoneshield Cloak","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11594","57972","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","51" +"12552","-1","","","","","Blisterbane Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10980","54901","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","3","0","0","0","0","0","0","0","0","50" +"12553","-1","","","","","Swiftwalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17699","88496","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","7","4","0","0","0","0","0","0","0","54" +"12554","-1","","","","","Hands of the Exalted Herald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9474","47373","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","12","0","0","0","0","0","0","0","0","54" +"12555","-1","","","","","Battlechaser's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19923","99616","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","14","8","0","0","0","0","0","0","0","50" +"12556","-1","","","","","High Priestess Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14317","71585","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","7","0","0","0","0","0","0","0","0","54" +"12557","-1","","","","","Ebonsteel Spaulders","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25096","125483","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","7","6","0","0","0","0","0","0","0","54" +"12558","-1","","","","","Blue-feathered Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4882","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12562","-1","","","","","Important Blackrock Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1772","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12563","-1","Bears the seal of the K.E.F.","","","","Warlord Goretooth's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4903","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12564","-1","","","","","Assassination Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4881","1771","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","23" +"12565","-1","","","","","Winna's Kitten Carrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12566","-1","","","","","Hardened Flasket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12567","-1","","","","","Filled Flasket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12582","-1","","","","","Keris of Zul'Serak","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51199","255997","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12583","-1","","","","","Blackhand Doomsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66915","334578","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12584","-1","","","","","Grand Marshal's Longsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"12585","-1","","","","","Stormwind Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10000","40000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12586","-1","Protects the brood against Mother's Milk. Efficacy decays over time.","","","","Immature Venom Sac","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12587","-1","","","","","Eye of Rend","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18929","94649","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","13","0","0","0","0","0","0","0","0","58" +"12588","-1","","","","","Bonespike Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22903","114518","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12589","-1","","","","","Dustfeather Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9899","49499","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","8","0","0","0","0","0","0","0","0","56" +"12590","-1","","","","","Felstriker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68066","340333","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"12591","-1","","","","","Monster - Staff, Holy Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12592","-1","","","","","Blackblade of Shahram","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85722","428613","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"12593","-1","","","","","Monster - Sword, Horde Sword Bronze","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12602","-1","","","","","Draconian Deflector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31693","158467","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","10","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","58" +"12603","-1","","","","","Nightbrace Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24189","120948","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","10","5","0","0","0","0","0","0","0","56" +"12604","-1","","","","","Starfire Tiara","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14368","71844","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","28","0","0","0","0","0","0","0","0","55" +"12605","-1","","","","","Serpentine Skuller","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29106","145534","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","56","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","0","0","0","0","0","0","0","0","0","51" +"12606","-1","","","","","Crystallized Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12233","61167","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","19","6","0","0","0","0","0","0","0","56" +"12607","-1","","","","","Brilliant Chromatic Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8048","32195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12608","-1","","","","","Butcher's Apron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13232","66160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","16","0","0","0","0","0","0","0","0","53" +"12609","-1","","","","","Polychromatic Visionwrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19795","98977","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","20","20","20","20","20","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12610","-1","","","","","Runic Plate Shoulders","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21392","106963","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","427","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12611","-1","","","","","Runic Plate Boots","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21473","107365","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"12612","-1","","","","","Runic Plate Helm","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21854","109273","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","13","13","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"12613","-1","","","","","Runic Breastplate","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29704","148524","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","15","15","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12614","-1","","","","","Runic Plate Leggings","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29815","149076","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","14","14","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"12615","-1","","","","","Savage Mail Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25650","128252","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","0","0","0","0","0","0","0","0","0","57" +"12616","-1","","","","","Savage Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19658","98291","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","15","0","0","0","0","0","0","0","0","58" +"12617","-1","","","","","Savage Mail Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19728","98643","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","17","0","0","0","0","0","0","0","0","58" +"12618","-1","","","","","Enchanted Thorium Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37759","188797","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","12","0","0","0","0","0","0","0","0","58" +"12619","-1","","","","","Enchanted Thorium Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37893","189468","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","20","0","0","0","0","0","0","0","0","58" +"12620","-1","","","","","Enchanted Thorium Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28084","140423","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","12","0","0","0","0","0","0","0","0","57" +"12621","-1","","","","","Demonfork","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45085","225426","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","59","-1","0","0","76","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","54" +"12622","-1","","","","","Shardtooth Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12623","-1","","","","","Chillwind Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12624","-1","","","","","Wildthorn Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20642","103212","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","5","0","0","0","0","0","0","0","0","49" +"12625","-1","","","","","Dawnbringer Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22847","114235","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","455","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","0","0","0","0","0","0","0","0","0","53" +"12626","-1","","","","","Funeral Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9191","45956","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","5","0","0","0","0","0","0","0","0","54" +"12627","-1","","","","","Temporal Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12628","-1","","","","","Demon Forged Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29121","145606","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","52" +"12629","-1","","","","","Monster - Axe, Horde Hatchet 01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12630","-1","Sickening, bloody, foulness.","","","","Head of Rend Blackhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12631","-1","","","","","Fiery Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15698","78493","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","53" +"12632","-1","","","","","Storm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14099","70498","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","0","0","0","0","0","0","0","0","0","54" +"12633","-1","","","","","Whitesoul Helm","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25955","129776","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","15","0","0","0","0","0","0","0","0","55" +"12634","-1","","","","","Chiselbrand Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15310","76552","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","6","0","0","0","0","0","0","0","0","55" +"12635","-1","","","","","Simple Parchment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2131","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12636","-1","","","","","Helm of the Great Chief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23452","117262","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","30","0","0","0","0","0","0","0","0","56" +"12637","-1","","","","","Backusarian Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18157","90785","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","15","0","0","0","0","0","0","0","55" +"12638","-1","The hands of this watch are frozen at 3:00.","","","","Andorhal Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12639","-1","","","","","Stronghold Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25061","125306","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","504","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","0","0","0","0","0","0","0","0","0","57" +"12640","-1","","","","","Lionheart Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36930","184651","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","0","0","0","0","0","0","0","0","0","56" +"12641","-1","","","","","Invulnerable Mail","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39455","197276","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","57" +"12642","-1","","","","","Cleansed Infernal Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12643","-1","","","","","Dense Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"12644","-1","","","","","Dense Grinding Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12645","-1","","","","","Thorium Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12646","-1","","","","","Infus Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12647","-1","","","","","Felhas Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12648","-1","","","","","Imprisoned Felhound Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12649","-1","","","","","Imprisoned Infernal Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12650","-1","This object has been attuned to weaken Araj the Summoner.","","","","Attuned Dampener","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12651","-1","","","","","Blackcrow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36055","180279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","59","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","3","0","0","0","0","0","0","0","0","0","54" +"12652","-1","TOP SECRET","","","","Bijou's Reconnaissance Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12653","-1","","","","","Riphook","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36318","181593","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","59","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","54" +"12654","-1","","","","","Doomshot","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","59","-1","0","0","20","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","54" +"12655","-1","","","","","Enchanted Thorium Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12662","-1","","","","","Demonic Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12663","-1","Glyphs of a druidic nature adorn the branch.","","","","Glyphed Oaken Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12682","-1","Teaches you how to make Thorium Armor.","","","","Plans: Thorium Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12683","-1","Teaches you how to make a Thorium Belt.","","","","Plans: Thorium Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","164","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12684","-1","Teaches you how to make Thorium Bracers.","","","","Plans: Thorium Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","164","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12685","-1","Teaches you how to make a Radiant Belt.","","","","Plans: Radiant Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","164","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12687","-1","Teaches you how to make Imperial Plate Shoulders.","","","","Plans: Imperial Plate Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12688","-1","Teaches you how to make an Imperial Plate Belt.","","","","Plans: Imperial Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","164","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12689","-1","Teaches you how to make a Radiant Breastplate.","","","","Plans: Radiant Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12690","-1","Teaches you how to make Imperial Plate Bracers.","","","","Plans: Imperial Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12691","-1","Teaches you how to make Wildthorn Mail.","","","","Plans: Wildthorn Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12692","-1","Teaches you how to make a Thorium Shield Spike.","","","","Plans: Thorium Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12693","-1","Teaches you how to make Thorium Boots.","","","","Plans: Thorium Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12694","-1","Teaches you how to make a Thorium Helm.","","","","Plans: Thorium Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12695","-1","Teaches you how to make Radiant Gloves.","","","","Plans: Radiant Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12696","-1","Teaches you how to make a Demon Forged Breastplate.","","","","Plans: Demon Forged Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12697","-1","Teaches you how to make Radiant Boots.","","","","Plans: Radiant Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12698","-1","Teaches you how to make Dawnbringer Shoulders.","","","","Plans: Dawnbringer Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12699","-1","Teaches you how to make Fiery Plate Gaunlets.","","","","Plans: Fiery Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12700","-1","Teaches you how to make Imperial Plate Boots.","","","","Plans: Imperial Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12701","-1","Teaches you how to make an Imperial Plate Helm.","","","","Plans: Imperial Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12702","-1","Teaches you how to make a Radiant Circlet.","","","","Plans: Radiant Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12703","-1","Teaches you how to make Storm Gauntlets.","","","","Plans: Storm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12704","-1","Teaches you how to make Thorium Leggings.","","","","Plans: Thorium Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12705","-1","Teaches you how to make an Imperial Plate Chest.","","","","Plans: Imperial Plate Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12706","-1","Teaches you how to make Runic Plate Shoulders.","","","","Plans: Runic Plate Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12707","-1","Teaches you how to make Runic Plate Boots.","","","","Plans: Runic Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12708","-1","","","","","Crossroads' Supply Crates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12709","-1","Also serves as a skinning knife.","","","","Pip's Skinner","0.6","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52195","260977","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","1","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12710","-1","It Glows!","","","","Glowing Hunk of the Beast's Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12711","-1","Teaches you how to make a Whitesoul Helm.","","","","Plans: Whitesoul Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12712","-1","","","","","Warosh's Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12713","-1","Teaches you how to make Radiant Leggings.","","","","Plans: Radiant Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12714","-1","Teaches you how to make a Runic Plate Helm.","","","","Plans: Runic Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12715","-1","Teaches you how to make Imperial Plate Leggings.","","","","Plans: Imperial Plate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12716","-1","Teaches you how to make a Helm of the Great Chief.","","","","Plans: Helm of the Great Chief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12717","-1","Teaches you how to make a Lionheart Helm.","","","","Plans: Lionheart Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12718","-1","Teaches you how to make a Runic Breastplate.","","","","Plans: Runic Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12719","-1","Teaches you how to make Runic Plate Leggings.","","","","Plans: Runic Plate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12720","-1","Teaches you how to make Stronghold Gauntlets.","","","","Plans: Stronghold Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12721","-1","","","","","Good Luck Half-Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12722","-1","","","","","Good Luck Other-Half-Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12723","-1","","","","","Good Luck Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12724","-1","","","","","Janice's Parcel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12725","-1","Teaches you how to make an Enchanted Thorium Helm.","","","","Plans: Enchanted Thorium Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12726","-1","Teaches you how to make Enchanted Thorium Leggings.","","","","Plans: Enchanted Thorium Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12727","-1","Teaches you how to make an Enchanted Thorium Breastplate.","","","","Plans: Enchanted Thorium Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12728","-1","Teaches you how to make Invulnerable Mail.","","","","Plans: Invulnerable Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12729","-1","","","","","Viagra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12730","-1","","","","","Warosh's Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2212","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12731","-1","","","","","Pristine Hide of the Beast","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12732","-1","","","","","Incendia Agave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12733","-1","","","","","Sacred Frostsaber Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12734","-1","","","","","Enchanted Scarlet Thread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12735","-1","","","","","Frayed Abomination Stitching","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12736","-1","","","","","Frostwhisper's Embalming Fluid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12737","-1","","","","","Gloom Weed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12738","-1","","","","","Dalson Outhouse Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12739","-1","","","","","Dalson Cabinet Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12740","-1","","","","","Fifth Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12741","-1","","","","","Sixth Mosh'aru Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12742","-1","","","","","Monster - Item, Book - Brown","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12743","-1","","","","","Monster - Item, Book - Brown Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12744","-1","","","","","Monster - Item, Bag - Brown","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12745","-1","","","","","Monster - Item, Bag - Brown Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12746","-1","","","","","Monster - Item, Orb - Lava","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12747","-1","","","","","Monster - Item, Orb - Lava Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12748","-1","","","","","Monster - Item, Scepter - Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12749","-1","","","","","Monster - Item, Scepter - Gold Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12750","-1","","","","","Monster - Item, Book - Black Skull Glowing","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12751","-1","","","","","Monster - Item, Book - Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12752","-1","","","","","Cap of the Scarlet Savant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21359","106795","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1488","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","17","0","0","0","0","0","0","0","0","0" +"12753","-1","","","","","Skin of Shadow","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12754","-1","","","","","Monster - Axe, 2H War Green - Mulgore Protector","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12755","-1","","","","","Monster - Sword2H, Blackblade of Shahram","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"12756","-1","","","","","Leggings of Arcana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32687","163436","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","20","0","0","0","0","0","0","0","0","0" +"12757","-1","","","","","Breastplate of Bloodthirst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32813","164066","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","20","13","0","0","0","0","0","0","0","0","0" +"12762","-1","","","","","Secrecy of Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2231","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12763","-1","","","","","Un'Goro Etherfruit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"12764","-1","","","","","Thorium Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33621","168108","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","52","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","0","0","0","0","0","0","0","0","0","47" +"12765","-1","","","","","Secret Note #1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2232","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12766","-1","","","","","Secret Note #2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2233","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12768","-1","","","","","Secret Note #3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","18432","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2234","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12769","-1","","","","","Bleakwood Hew","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46154","230773","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","54","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","5","0","0","0","0","0","0","0","0","49" +"12770","-1","","","","","Bijou's Information","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12771","-1","","","","","Empty Firewater Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5083","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12772","-1","","","","","Inlaid Thorium Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38871","194358","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","0","0","0","0","0","0","0","0","0","49" +"12773","-1","","","","","Ornate Thorium Handaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33080","165400","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","55","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","10","0","0","0","0","0","0","0","0","0","50" +"12774","-1","","","","","Dawn's Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36044","180221","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"12775","-1","","","","","Huge Thorium Battleaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39949","199747","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","56","-1","0","0","114","0","0","0","0","172","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","24","0","0","0","0","0","0","0","0","0","51" +"12776","-1","","","","","Enchanted Battlehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48125","240625","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","100","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"12777","-1","","","","","Blazing Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38648","193242","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","56","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","51" +"12778","-1","","","","","Document Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12779","-1","","","","","Rune Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35338","176692","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","57","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","5","5","5","0","0","0","0","0","0","0","52" +"12780","-1","","","","","General Drakkisath's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5089","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12781","-1","","","","","Serenity","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42721","213605","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","57","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","52" +"12782","-1","","","","","Corruption","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56808","284042","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","58","1535","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","30","-40","0","0","0","0","0","0","0","53" +"12783","-1","","","","","Heartseeker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52397","261988","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","58" +"12784","-1","","","","","Arcanite Reaper","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65736","328683","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","153","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","0","0","0","0","0","0","0","0","0","58" +"12785","-1","","","","","Incendia Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12786","-1","","","","","Monster - Mace, Horde Skull Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12787","-1","","","","","Monster - Mace, Horde Bone Claw Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12788","-1","","","","","Monster - Mace, Horde Bone Spike Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12789","-1","","","","","QATest Raid Buffs lvl 60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12790","-1","","","","","Arcanite Champion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67161","335809","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12791","-1","","","","","Barman Shanker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39411","197059","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","50" +"12792","-1","","","","","Volcanic Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39255","196279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","58","-1","0","0","60","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","53" +"12793","-1","","","","","Mixologist's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19846","99230","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","18","11","0","0","0","0","0","0","0","50" +"12794","-1","","","","","Masterwork Stormhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50676","253384","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","57" +"12795","-1","","","","","Blood Talon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48821","244108","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","60","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12796","-1","","","","","Hammer of the Titans","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63825","319127","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","0","0","0","0","0","0","0","0","0","58" +"12797","-1","","","","","Frostguard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51252","256261","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","63","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12798","-1","","","","","Annihilator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51438","257194","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12799","-1","","","","","Large Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12800","-1","","","","","Azerothian Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12801","-1","","","","","Monster - Item, Bucket - Wood","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12802","-1","","","","","Darkspear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62625","313125","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","60","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12803","-1","","","","","Living Essence","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12804","-1","","","","","Powerful Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12805","-1","","","","","Orb of Fire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3987","15950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12806","-1","Covered in demonic runes.","","","","Unforged Rune Covered Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12807","-1","","","","","Scourge Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12808","-1","","","","","Essence of Undeath","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12809","-1","","","","","Guardian Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12810","-1","","","","","Enchanted Leather","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12811","-1","","","","","Righteous Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12812","-1","","","","","Unfired Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12813","-1","","","","","Flask of Mystery Goo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12814","-1","It's got enough juice to set a large tent on fire!","","","","Flame in a Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12815","-1","","","","","Beacon Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12816","-1","Teaches you how to make a Thorium Greatsword.","","","","Plans: Thorium Greatsword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","164","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12817","-1","Teaches you how to make Bleakwood Hew.","","","","Plans: Bleakwood Hew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12818","-1","Teaches you how to make an Inlaid Thorium Hammer.","","","","Plans: Inlaid Thorium Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","164","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12819","-1","Teaches you how to make an Ornate Thorium Handaxe.","","","","Plans: Ornate Thorium Handaxe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12820","-1","","","","","Winterfall Firewater","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"12821","-1","Teaches you how to make Dawn's Edge.","","","","Plans: Dawn's Edge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12822","-1","","","","","Toxic Horror Droplet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12823","-1","Teaches you how to make a Huge Thorium Battleaxe.","","","","Plans: Huge Thorium Battleaxe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12824","-1","Teaches you how to make an Enchanted Battlehammer.","","","","Plans: Enchanted Battlehammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12825","-1","Teaches you how to make a Blazing Rapier.","","","","Plans: Blazing Rapier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","164","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12826","-1","Teaches you how to make Rune Edge.","","","","Plans: Rune Edge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12827","-1","Teaches you how to make Serenity.","","","","Plans: Serenity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","164","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12828","-1","Teaches you how to make a Volcanic Hammer.","","","","Plans: Volcanic Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12829","-1","","","","","Winterfall Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12830","-1","Teaches you how to make Corruption.","","","","Plans: Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12831","-1","Teaches you how to make Blood Talon.","","","","Plans: Blood Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12832","-1","Teaches you how to make a Darkspear.","","","","Plans: Darkspear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12833","-1","Teaches you how to make a Hammer of the Titans.","","","","Plans: Hammer of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12834","-1","Teaches you how to make an Arcanite Champion.","","","","Plans: Arcanite Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12835","-1","Teaches you how to make an Annihilator.","","","","Plans: Annihilator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12836","-1","Teaches you how to make a Frostguard.","","","","Plans: Frostguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12837","-1","Teaches you how to make a Masterwork Stormhammer.","","","","Plans: Masterwork Stormhammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12838","-1","Teaches you how to make an Arcanite Reaper.","","","","Plans: Arcanite Reaper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12839","-1","Teaches you how to make Heartseeker.","","","","Plans: Heartseeker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"12840","-1","","","","","Minion's Scourgestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12841","-1","","","","","Invader's Scourgestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12842","-1","","","","","Crudely-written Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5123","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"12843","-1","","","","","Corruptor's Scourgestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12844","-1","","","","","Argent Dawn Valor Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12845","-1","","","","","Medallion of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12846","-1","Equipping this badge is an indication of service to the Argent Dawn.","","","","Argent Dawn Commission","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12847","-1","","","","","Soul Stained Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12848","-1","Fel energies pulse across the pike.","","","","Blood Stained Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12849","-1","","","","","Demon Kissed Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"12850","-1","","","","","Monster - Item, Bag - Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12851","-1","","","","","Monster - Item, Bag - Black Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12852","-1","","","","","Monster - Item, Bag - Gray","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12853","-1","","","","","Monster - Item, Bag - Gray Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12854","-1","","","","","Monster - Item, Bag - Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12855","-1","","","","","Monster - Item, Bag - Green Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12856","-1","","","","","Monster - Item, Bag - Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12857","-1","","","","","Monster - Item, Bag - Red Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12858","-1","","","","","Monster - Item, Bag - White","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12859","-1","","","","","Monster - Item, Bag - White Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12860","-1","","","","","Monster - Item, Book - Blue Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12861","-1","","","","","Monster - Item, Book - Black Skull Glowing Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12862","-1","","","","","Monster - Item, Book - Black Simple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12863","-1","","","","","Monster - Item, Book - Black Simple Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12864","-1","","","","","Monster - Item, Book - B01 Black Glowing","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12865","-1","","","","","Monster - Item, Book - B01 Black Glowing Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12866","-1","","","","","Monster - Item, Book - B02 Black Glowing","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12867","-1","","","","","Monster - Item, Book - B02 Black Glowing Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12868","-1","","","","","Monster - Item, Book - B02 Blue Glowing","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12869","-1","","","","","Monster - Item, Book - B02 Blue Glowing Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12870","-1","","","","","Monster - Item, Potion Red Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12871","-1","","","","","Chromatic Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8048","32195","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"12882","-1","","","","","Monster - Sword2H, Horde Curved Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12883","-1","","","","","Monster - Mace, Thaurissan Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12884","-1","","","","","Arnak's Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12885","-1","","","","","Pamela's Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12886","-1","","","","","Pamela's Doll's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12887","-1","","","","","Pamela's Doll's Left Side","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12888","-1","","","","","Pamela's Doll's Right Side","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12889","-1","","","","","Monster - Sword2H, Horde Curved Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12890","-1","","","","","Monster - Sword, Militia Long Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12891","-1","","","","","Jaron's Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12892","-1","","","","","Monster - Sword1H, Dark Short Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12893","-1","","","","","Monster - Shield, Black Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12894","-1","","","","","Joseph's Wedding Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12895","-1","","","","","Breastplate of the Chromatic Flight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48071","240359","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","806","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","20","10","0","0","0","0","0","0","0","0" +"12896","-1","","","","","First Relic Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12897","-1","","","","","Second Relic Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12898","-1","","","","","Third Relic Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12899","-1","","","","","Fourth Relic Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12900","-1","","","","","Annals of Darrowshire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2371","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12901","-1","","","","","Monster - Mace2H, Golden Stone Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12902","-1","","","","","Monster - Sword2H, Luminous Evil Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12903","-1","","","","","Legguards of the Chromatic Defier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42407","212035","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","9","15","0","0","0","0","0","0","0","0" +"12904","-1","","","","","Shawn's Super Special Swami Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13118","65593","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"12905","-1","","","","","Wildfire Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15798","78992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12906","-1","","","","","Purified Moonwell Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12907","-1","","","","","Corrupt Moonwell Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12922","-1","","","","","Empty Canteen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12923","-1","","","","","Awbee's Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12924","-1","A ritual candle from the depths of Jaedenar, new home of the Shadow Council.","","","","Ritual Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12925","-1","","","","","Arikara Serpent Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12926","-1","","","","","Flaming Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14907","59630","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12927","-1","","","","","Truestrike Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18492","92460","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","56" +"12928","-1","","","","","Umi's Mechanical Yeti","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12929","-1","","","","","Emberfury Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","78585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","7","0","0","0","0","0","0","0","56" +"12930","-1","","","","","Briarwood Reed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"12931","-1","","","","","Monster - Shield, Scarlet Crusade A01/A02 Model","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12932","-1","","","","","Monster - Shield, Scarlet Crusade A02","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12933","-1","","","","","Monster - Shield, Scarlet Crusade B03","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12934","-1","","","","","Monster - Mace, Maul B03 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12935","-1","","","","","Warmaster Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36536","182684","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","13","24","0","0","0","0","0","0","0","58" +"12936","-1","","","","","Battleborn Armbraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18440","92201","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12937","-1","","","","","Monster - Staff, Basic Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12938","-1","","","","","Blood of Heroes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12939","-1","","","","","Dal'Rend's Tribal Guardian","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54330","271653","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","41","0","0","0","1800","0","0","0","63","-1","0","0","52","0","0","0","0","97","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12940","-1","","","","","Dal'Rend's Sacred Charge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49334","246673","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","41","0","0","0","2800","0","0","0","63","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","0","0","0","0","0","0","0","0","0","58" +"12941","-1","","","","","Monster - Wand, Jeweled - B02 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12942","-1","","","","","Panther Cage Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12943","-1","","","","","Monster - Staff, 3 Piece Taped Staff Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12944","-1","","","","","Monster - Sword, Golden Long","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12945","-1","","","","","Legplates of the Chromatic Defier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39686","198434","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","26","16","0","0","0","0","0","0","0","0" +"12946","-1","","","","","Hypercapacitor Gizmo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12947","-1","","","","","Alex's Ring of Audacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","6","0","0","0","0","0","0","0","0","0","0","0","0" +"12949","-1","","","","","Monster - Sword2H, Red White Broad","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12950","-1","","","","","Monster - Mace2H, Warhammer Ebony","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12951","-1","","","","","Monster - Axe, 2H War - Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12952","-1","","","","","Gyth's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25957","129789","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","0","0","0","0","0","0","0","0","0","55" +"12953","-1","","","","","Dragoneye Coif","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22374","111874","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","0","0","0","0","0","0","0","0","0","55" +"12954","-1","","","","","Davil's Libram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12955","-1","","","","","Redpath's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12956","-1","","","","","Skull of Horgus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12957","-1","","","","","Shattered Sword of Marduk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12958","-1","Teaches you how to transmute Thorium and Arcane Crystals into Arcanite.","","","","Recipe: Transmute Arcanite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12959","-1","","","","","Monster - Staff, Demon Skull Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12960","-1","","","","","Tribal War Feathers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17752","88761","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3304","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","55" +"12961","-1","","","","","JEFF TEST SHIELD","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12962","-1","","","","","JEFF TEST GLOVES","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12963","-1","","","","","Blademaster Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24947","124735","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","5","0","0","0","0","0","0","0","0","58" +"12964","-1","","","","","Tristam Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30051","150258","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","24","0","0","0","0","0","0","0","0","58" +"12965","-1","","","","","Spiritshroud Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20111","100555","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"12966","-1","","","","","Blackmist Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12617","63087","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","5","10","0","0","0","0","0","0","0","58" +"12967","-1","","","","","Bloodmoon Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15196","75984","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","5","17","0","0","0","0","0","0","0","58" +"12968","-1","","","","","Frostweaver Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15254","76271","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","12","10","0","0","0","0","0","0","0","58" +"12969","-1","","","","","Seeping Willow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63799","318998","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"12970","-1","","","","","General's Ceremonial Plate","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35862","179310","1","1","1","16","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","0","0","0","0","0","0","0","0","0","58" +"12971","-1","","","","","JEFF TEST SWORD","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14282","71410","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","50","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12972","-1","","","","","JEFF TEST SWORD II","0.6","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14334","71670","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","50","-1","0","0","10","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12973","-1","","","","","Scarlet Cannonball","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"12974","-1","","","","","The Black Knight","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6105","30526","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","31","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","26" +"12975","-1","","","","","Prospector Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2205","11027","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","20","-1","0","0","33","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","7","0","0","0","0","0","0","0","0","15" +"12976","-1","","","","","Ironpatch Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1770","8853","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","15" +"12977","-1","","","","","Magefist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","355","1777","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","3","4","5","0","0","0","0","0","0","0","15" +"12978","-1","","","","","Stormbringer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","534","2674","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","2","5","0","0","0","0","0","0","0","0","15" +"12979","-1","","","","","Firebane Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","617","3086","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","5","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","5","0","0","0","0","0","0","0","0","0","16" +"12980","-1","","","","","Monster - Shield, Wall Metal Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12981","-1","","","","","Monster - Shield, Wall Metal Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12982","-1","","","","","Silver-linked Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","851","4255","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","3","7","0","0","0","0","0","0","0","0","16" +"12983","-1","","","","","Rakzur Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2362","11813","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","38","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","5","8","0","0","0","0","0","0","0","16" +"12984","-1","","","","","Skycaller","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7115","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","21","-1","0","0","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","16" +"12985","-1","","","","","Ring of Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1153","4615","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","17" +"12987","-1","","","","","Darkweave Breeches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","906","4533","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","7","4","0","0","0","0","0","0","0","17" +"12988","-1","","","","","Starsight Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1137","5687","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","4","10","0","0","0","0","0","0","0","0","17" +"12989","-1","","","","","Gargoyle's Bite","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2854","14271","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","22","-1","0","0","44","0","0","0","0","66","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","0","0","0","0","0","0","0","0","0","20" +"12990","-1","","","","","Razor's Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2589","12947","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"12991","-1","","","","","Monster - Dagger, Curvey Green Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12992","-1","","","","","Searing Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3260","16302","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","23","-1","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","18" +"12993","-1","","","","","Monster - Sword, Green Gold Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12994","-1","","","","","Thorbia's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","788","3940","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","3","0","0","0","0","0","0","0","0","18" +"12995","-1","","","","","Monster - Shield, Wall Metal Red","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"12996","-1","","","","","Band of Purification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1527","6110","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","2","0","0","0","0","0","0","0","0","18" +"12997","-1","","","","","Redbeard Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1920","9600","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","3","0","0","0","0","0","0","0","0","19" +"12998","-1","","","","","Magician's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5103","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","0","0","0","0","0","0","0","0","0","20" +"12999","-1","","","","","Drakewing Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","853","4267","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","3","0","0","0","0","0","0","0","0","20" +"13000","-1","","","","","Staff of Hale Magefire","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60815","304077","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","62","-1","0","0","140","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","25","0","0","0","0","0","0","0","0","57" +"13001","-1","","","","","Maiden's Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10648","42594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","7","0","0","0","0","0","0","0","0","55" +"13002","-1","","","","","Lady Alizabeth's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14617","58469","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","8","0","0","0","0","0","0","0","0","54" +"13003","-1","","","","","Lord Alexander's Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49640","248204","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","56","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","16","17","0","0","0","0","0","0","0","51" +"13004","-1","","","","","Torch of Austen","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33591","167955","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","58","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13005","-1","","","","","Amy's Blanket","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1331","6657","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","3","0","0","0","0","0","0","0","0","23" +"13006","-1","","","","","Mass of McGowan","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51132","255661","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","62","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","10","0","0","0","0","0","0","0","0","57" +"13007","-1","","","","","Mageflame Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13585","67926","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13008","-1","","","","","Dalewind Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12815","64076","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","9","5","0","0","0","0","0","0","0","47" +"13009","-1","","","","","Cow King's Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15167","75839","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","0","0","0","0","0","0","0","0","0","46" +"13010","-1","","","","","Dreamsinger Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2241","11208","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","5","8","8","0","0","0","0","0","0","0","21" +"13011","-1","","","","","Silver-lined Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5155","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","4","0","0","0","0","0","0","0","0","22" +"13012","-1","","","","","Yorgen Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1241","6208","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","3","3","0","0","0","0","0","0","0","22" +"13013","-1","","","","","Elder Wizard's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12355","61779","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","0","0","0","0","0","0","0","0","0","51" +"13014","-1","","","","","Axe of Rin'ji","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34705","173528","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","53","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"13015","-1","","","","","Serathil","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52106","260533","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","61","-1","0","0","53","0","0","0","0","99","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","0","0","0","0","0","0","0","0","0","56" +"13016","-1","","","","","Killmaim","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4771","23856","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","26","-1","0","0","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","21" +"13017","-1","","","","","Hellslayer Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17209","86048","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","40","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","35" +"13018","-1","","","","","Executioner's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31967","159835","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","48","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","0","0","0","0","0","0","0","0","0","43" +"13019","-1","","","","","Harpyclaw Short Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4765","23829","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","32","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","27" +"13020","-1","","","","","Skystriker Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8985","44928","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","39","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","34" +"13021","-1","","","","","Needle Threader","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16694","83473","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","47","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","4","6","0","0","0","0","0","0","0","0","42" +"13022","-1","","","","","Gryphonwing Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27990","139953","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","55","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","4","0","0","0","0","0","0","0","0","50" +"13023","-1","","","","","Eaglehorn Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38435","192176","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","63","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"13024","-1","","","","","Beazel's Basher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4863","24319","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","29","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","2","0","0","0","0","0","0","0","0","24" +"13025","-1","","","","","Deadwood Sledge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10464","52324","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","2","7","0","0","0","0","0","0","0","0","32" +"13026","-1","","","","","Heaven's Light","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19441","97209","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","45","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","3","6","5","7","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","4","5","4","4","0","0","0","0","0","40" +"13027","-1","","","","","Bonesnapper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33832","169161","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"13028","-1","","","","","Bludstone Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50800","254001","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","5","0","0","0","0","0","0","0","0","56" +"13029","-1","","","","","Umbral Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5613","22453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","38" +"13030","-1","","","","","Basilisk Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13113","52453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","6","6","6","6","0","254","0","0","0","0","0","0","7","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","46" +"13031","-1","","","","","Orb of Mistmantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1401","5605","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","4","0","0","0","0","0","0","0","0","0","23" +"13032","-1","","","","","Sword of Corruption","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4138","20693","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","27","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","22" +"13033","-1","","","","","Zealot Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8094","40472","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","5","0","0","0","0","0","0","0","0","29" +"13034","-1","","","","","Speedsteel Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14710","73552","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","41","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","36" +"13035","-1","","","","","Serpent Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25141","125707","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","49","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"13036","-1","","","","","Assassination Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40988","204943","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","0","0","0","0","0","0","0","0","0","52" +"13037","-1","","","","","Crystalpine Stinger","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4729","23645","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","32","-1","0","0","46","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","0","0","0","0","0","0","0","0","0","0","27" +"13038","-1","","","","","Swiftwind","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9630","48150","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","-1","0","0","43","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","7","0","0","0","0","0","0","0","0","0","35" +"13039","-1","","","","","Skull Splitting Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17892","89462","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","48","-1","0","0","66","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","3","0","0","0","0","0","0","0","0","0","43" +"13040","-1","","","","","Heartseeking Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29444","147221","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","56","-1","0","0","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","9","4","0","0","0","0","0","0","0","0","51" +"13041","-1","","","","","Guardian Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4516","22583","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","26","-1","0","0","50","0","0","0","0","76","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","21" +"13042","-1","","","","","Sword of the Magistrate","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17596","87983","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","41","-1","0","0","96","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","10","15","0","0","0","0","0","0","0","36" +"13043","-1","","","","","Blade of the Titans","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32389","161949","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","49","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","24","10","0","0","0","0","0","0","0","0","44" +"13044","-1","","","","","Demonslayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52800","264001","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","57","-1","0","0","121","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13045","-1","","","","","Viscous Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10809","54049","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","35","-1","0","0","70","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","6","0","0","0","0","0","0","0","0","30" +"13046","-1","","","","","Blanchard's Stout","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35042","175214","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","50","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","5","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","15","0","0","0","0","0","0","0","0","45" +"13047","-1","","","","","Twig of the World Tree","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56588","282942","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","58","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","12","21","0","0","0","0","0","0","0","53" +"13048","-1","","","","","Looming Gavel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5971","29859","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","31","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","3","0","0","0","0","0","0","0","0","26" +"13049","-1","","","","","Deanship Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6191","30959","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","29","-1","0","0","53","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","0","0","0","0","0","0","0","0","0","26" +"13050","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13051","-1","","","","","Witchfury","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22911","114558","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","44","-1","0","0","87","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","39" +"13052","-1","","","","","Warmonger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41677","208389","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","3","0","0","0","0","0","0","0","0","0","47" +"13053","-1","","","","","Doombringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59186","295933","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","60","-1","0","0","115","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13054","-1","","","","","Grim Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15805","79026","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","40","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","35" +"13055","-1","","","","","Bonechewer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29367","146839","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","48","-1","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","10","0","0","0","0","0","0","0","0","43" +"13056","-1","","","","","Frenzied Striker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48330","241654","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","56","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","51" +"13057","-1","","","","","Bloodpike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5382","26911","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","28","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","23" +"13058","-1","","","","","Khoo's Point","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21833","109168","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","44","-1","0","0","77","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","10","0","0","0","0","0","0","0","0","39" +"13059","-1","","","","","Stoneraven","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38719","193599","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","3","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","13","13","15","9","0","0","0","0","0","0","47" +"13060","-1","","","","","The Needler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60784","303923","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13061","-1","","","","","Monster - Staff, Green Crystal Sphere","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13062","-1","","","","","Thunderwood","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2991","14958","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","27","-1","0","0","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","22" +"13063","-1","","","","","Starfaller","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5851","29259","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","34","-1","0","0","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","29" +"13064","-1","","","","","Jaina's Firestarter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11487","57435","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","42","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","6","3","0","0","0","0","0","0","0","0","37" +"13065","-1","","","","","Wand of Allistarj","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20945","104728","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","9","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","45" +"13066","-1","","","","","Wyrmslayer Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15716","78583","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","8","0","0","0","0","0","0","0","46" +"13067","-1","","","","","Hydralick Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25098","125493","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","567","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","20","8","0","0","0","0","0","0","0","49" +"13068","-1","","","","","Obsidian Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8358","41794","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","10","10","0","0","0","0","0","0","0","40" +"13069","-1","","","","","Monster - Staff, D01 Flaming Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13070","-1","","","","","Sapphiron's Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24606","123030","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","14","14","0","0","0","0","0","0","0","53" +"13071","-1","","","","","Plated Fist of Hakoo","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7148","35743","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","0","0","0","0","0","0","0","40" +"13072","-1","","","","","Stonegrip Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18351","91756","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","14","0","0","0","0","0","0","0","0","55" +"13073","-1","","","","","Mugthol's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15861","79306","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","10","17","0","0","0","0","0","0","0","47" +"13074","-1","","","","","Golem Shard Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14043","70219","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","41" +"13075","-1","","","","","Direwing Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34795","173977","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","16","16","15","0","0","0","0","0","0","58" +"13076","-1","","","","","Giantslayer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8300","41500","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","5","6","0","0","0","0","0","0","0","43" +"13077","-1","","","","","Girdle of Uther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14478","72394","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","10","10","9","9","0","0","0","0","0","52" +"13078","-1","","","","","Monster - Staff, Pointed Red Crystal","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13079","-1","","","","","Shield of Thorsen","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3359","16798","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","25" +"13080","-1","","","","","Widow's Clutch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20262","101312","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","13","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","10","0","0","0","0","0","0","0","58" +"13081","-1","","","","","Skullance Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7123","35618","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","814","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","5","4","0","0","0","0","0","0","0","33" +"13082","-1","","","","","Mountainside Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13235","66176","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","1612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","12","5","0","0","0","0","0","0","0","0","41" +"13083","-1","","","","","Garrett Family Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32348","161741","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","5","4","17","0","0","0","0","0","0","0","57" +"13084","-1","","","","","Kaleidoscope Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6614","26458","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","4","4","4","4","4","0","0","0","0","0","30" +"13085","-1","","","","","Horizon Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9137","36548","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","4","4","0","0","0","0","0","0","0","46" +"13086","1101","","","","","Reins of the Winterspring Frostsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13087","-1","","","","","River Pride Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5896","23584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","4","0","0","0","0","0","0","0","0","28" +"13088","-1","","","","","Gazlowe's Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7413","29654","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","4","3","0","0","0","0","0","0","0","36" +"13089","-1","","","","","Skibi's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8039","32156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","5","13","3","0","0","0","0","0","0","0","44" +"13090","-1","","","","","Breastplate of the Chosen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32362","161810","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","14","14","14","14","0","0","0","0","0","58" +"13091","-1","","","","","Medallion of Grand Marshal Morris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10637","42549","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","52" +"13092","-1","","","","","Deprecated Dragonstalker Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27157","135788","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","12","0","0","0","0","0","0","0","0","58" +"13093","-1","","","","","Blush Ember Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3381","13524","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","6","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","5","4","0","0","0","0","0","0","0","32" +"13094","-1","","","","","The Queen's Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2646","10584","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","2","1","0","0","0","0","0","0","0","25" +"13095","-1","","","","","Assault Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6646","26584","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","5","0","0","0","0","0","0","0","0","39" +"13096","-1","","","","","Band of the Hierophant","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7913","31654","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","11","10","7","0","0","0","0","0","0","0","55" +"13097","-1","","","","","Thunderbrow Ring","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2164","8658","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","3","8","0","0","0","0","0","0","0","0","24" +"13098","-1","","","","","Painweaver Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15282","61130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","58" +"13099","-1","","","","","Moccasins of the White Hare","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1431","7156","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","24" +"13100","-1","","","","","Furen's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5421","27107","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","7","0","0","0","0","0","0","0","0","39" +"13101","-1","","","","","Wolfrunner Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14318","71592","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","0","0","0","0","0","0","0","54" +"13102","-1","","","","","Cassandra's Grace","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6879","34399","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","7","0","0","0","0","0","0","0","0","42" +"13103","-1","","","","","Pads of the Venom Spider","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3453","17269","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","6","0","0","0","0","0","0","0","0","33" +"13104","-1","","","","","Monster - Axe, Hatchet C03 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13105","-1","","","","","Sutarn's Ring","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2147","10738","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","6","6","0","0","0","0","0","0","0","32" +"13106","-1","","","","","Glowing Magical Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1216","6082","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","0","0","0","0","0","0","0","0","0","26" +"13107","-1","","","","","Magiskull Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10528","52640","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","57" +"13108","-1","","","","","Tigerstrike Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2446","12231","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","7","0","0","0","0","0","0","0","0","29" +"13109","-1","","","","","Blackflame Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8152","40762","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","5","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","44" +"13110","-1","","","","","Wolffear Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4968","24841","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","3","6","0","0","0","0","0","0","0","31" +"13111","-1","","","","","Sandals of the Insurgent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13993","69969","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","8","0","0","0","0","0","0","0","0","49" +"13112","-1","","","","","Winged Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9625","48125","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","23","0","0","0","0","0","0","0","0","43" +"13113","-1","","","","","Feathermoon Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18492","92463","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","20","13","0","0","0","0","0","0","0","58" +"13114","-1","","","","","Troll's Bane Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2574","12871","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","4","4","0","0","0","0","0","0","0","25" +"13115","-1","","","","","Sheepshear Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6991","34955","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","3","6","0","0","0","0","0","0","0","40" +"13116","-1","","","","","Spaulders of the Unseen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18705","93529","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","4","7","0","0","0","0","0","0","0","56" +"13117","-1","","","","","Ogron's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3830","19153","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","9","9","0","0","0","0","0","0","0","37" +"13118","-1","","","","","Serpentine Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","14","9","0","0","0","0","0","0","0","52" +"13119","-1","","","","","Enchanted Kodo Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3063","15316","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","4","0","0","0","0","0","0","0","0","34" +"13120","-1","","","","","Deepfury Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9505","47527","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","4","4","0","0","0","0","0","0","0","50" +"13121","-1","","","","","Wing of the Whelpling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3428","17142","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","4","0","0","0","0","0","0","0","0","33" +"13122","-1","","","","","Dark Phantom Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11489","57447","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","6","0","0","0","0","0","0","0","0","50" +"13123","-1","","","","","Dreamwalker Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31130","155651","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","17","20","0","0","0","0","0","0","0","57" +"13124","-1","","","","","Ravasaur Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3996","19981","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","3","11","0","0","0","0","0","0","0","30" +"13125","-1","","","","","Elven Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12954","64770","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","3","7","0","0","0","0","0","0","0","45" +"13126","-1","","","","","Battlecaller Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10374","51871","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","9","15","0","0","0","0","0","0","0","48" +"13127","-1","","","","","Frostreaver Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3021","15107","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","4","4","0","0","0","0","0","0","0","27" +"13128","-1","","","","","High Bergg Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10543","52717","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","10","15","0","0","0","0","0","0","0","42" +"13129","-1","","","","","Firemane Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7621","38107","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","5","0","0","0","0","0","0","0","0","34" +"13130","-1","","","","","Windrunner Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25065","125329","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","27","11","0","0","0","0","0","0","0","0","51" +"13131","-1","","","","","Sparkleshell Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2312","11563","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","4","0","0","0","0","0","0","0","0","24" +"13132","-1","","","","","Skeletal Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7340","36702","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","6","15","0","0","0","0","0","0","0","0","38" +"13133","-1","","","","","Drakesfire Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22291","111457","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","5","15","0","0","0","0","0","0","0","56" +"13134","-1","","","","","Belt of the Gladiator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7716","38584","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","7","0","0","0","0","0","0","0","0","44" +"13135","-1","","","","","Lordly Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14001","70008","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","7","5","3","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","8","8","7","7","0","0","0","0","0","54" +"13136","-1","","","","","Lil Timmy's Peashooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1456","7281","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","21","-1","0","0","26","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","16" +"13137","-1","","","","","Ironweaver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5874","29374","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","34","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","29" +"13138","-1","","","","","The Silencer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11532","57661","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","42","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","37" +"13139","-1","","","","","Guttbuster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21029","105149","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","0","62","0","0","0","0","116","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","8","3","0","0","0","0","0","0","0","0","45" +"13140","-1","The key looks tiny enough to fit a small lock.","","","","Blood Red Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5202","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"13141","-1","","","","","Tooth of Gnarr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12093","48373","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","8","0","0","0","0","0","0","0","0","58" +"13142","-1","","","","","Brigam Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18442","92210","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","16","0","0","0","0","0","0","0","0","58" +"13143","-1","","","","","Mark of the Dragon Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21372","85490","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","56" +"13144","-1","","","","","Serenity Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6865","34328","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","7","0","0","0","0","0","0","0","0","48" +"13145","-1","","","","","Enormous Ogre Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4760","23800","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","5","5","0","0","0","0","0","0","0","40" +"13146","-1","","","","","Shell Launcher Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34704","173521","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","58","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","53" +"13147","-1","","","","","Monster - Bow, White","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"13148","-1","","","","","Chillpike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60480","302402","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","61","-1","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13149","-1","","","","","Eldarathian Tome of Summoning Vol. 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13150","-1","","","","","Monster - Sword2H, Claymore Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13151","-1","","","","","The Mystic Studies of Hor'ank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13152","-1","","","","","The Story With No Conclusion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13153","-1","","","","","Tome of Mal'cin Vorail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13154","-1","","","","","Jael'marin's Studies of the Arcane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13155","-1","","","","","Resonating Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13156","-1","","","","","Mystic Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13157","-1","","","","","Fetid Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13158","-1","","","","","Words of the High Chief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2251","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13159","-1","","","","","Bone Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13160","-1","","","","","Monster - Sword2H, Claymore Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13161","-1","","","","","Trindlehaven Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63494","317470","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","25","12","0","0","0","0","0","0","0","0","56" +"13162","-1","","","","","Reiver Claws","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17945","89728","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","56" +"13163","-1","","","","","Relentless Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64835","324179","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","62","-1","0","0","140","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","20","8","0","0","0","0","0","0","0","57" +"13164","-1","","","","","Heart of the Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10539","42158","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13165","-1","","","","","Monster - Sword, Long Silver - Green Pommel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13166","-1","","","","","Slamshot Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24811","124055","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","0","0","0","0","0","0","0","0","0","55" +"13167","-1","","","","","Fist of Omokk","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59410","297053","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","60","-1","0","0","135","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13168","-1","","","","","Plate of the Shaman King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33398","166993","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","12","15","0","0","0","0","0","0","0","55" +"13169","-1","","","","","Tressermane Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23948","119741","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","12","14","0","0","0","0","0","0","0","55" +"13170","-1","","","","","Skyshroud Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19230","96151","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","8","0","0","0","0","0","0","0","0","55" +"13171","-1","","","","","Smokey's Lighter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13172","-1","Bears the mark of Ezra Grimm.","","","","Grimm's Premium Tobacco","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13173","-1","","","","","Broken Flightblade Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","11","47","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","4","0","0","0","0","0","0","0","0","0","0","55" +"13174","-1","","","","","Plagued Flesh Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13175","-1","","","","","Voone's Twitchbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30619","153096","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","60","-1","0","0","40","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","55" +"13176","-1","","","","","Scourge Data","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13177","-1","","","","","Talisman of Evasion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16396","65585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","0","0","0","0","0","0","0","0","0","55" +"13178","-1","","","","","Rosewine Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13782","55130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13179","-1","","","","","Brazecore Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14916","74583","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","11","10","0","0","0","0","0","0","0","0","55" +"13180","-1","Just 1 calorie.","","","","Stratholme Holy Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","16777280","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13181","-1","","","","","Demonskin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8797","43989","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","9","0","0","0","0","0","0","0","0","52" +"13182","-1","","","","","Phase Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44142","220713","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","57","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","7","0","0","0","0","0","0","0","0","52" +"13183","-1","","","","","Venomspitter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51771","258857","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","65","0","0","0","1900","0","0","0","60","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13184","-1","","","","","Fallbrush Handgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13170","65852","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","12","11","0","0","0","0","0","0","0","56" +"13185","-1","","","","","Sunderseer Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15858","79294","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","7","4","0","0","0","0","0","0","0","56" +"13186","-1","","","","","Empty Felstone Field Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13187","-1","","","","","Empty Dalson's Tears Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13188","-1","","","","","Empty Writhing Haunt Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13189","-1","","","","","Empty Gahrron's Withering Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13190","-1","","","","","Filled Felstone Field Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13191","-1","","","","","Filled Dalson's Tears Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13192","-1","","","","","Filled Writhing Haunt Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13193","-1","","","","","Filled Gahrron's Withering Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13194","-1","","","","","Felstone Field Cauldron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13195","-1","","","","","Dalson's Tears Cauldron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13196","-1","","","","","Gahrron's Withering Cauldron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13197","-1","","","","","Writhing Haunt Cauldron Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13198","-1","","","","","Hurd Smasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50851","254256","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13199","-1","","","","","Crushridge Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4399","21995","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","5","11","0","0","0","0","0","0","0","0","36" +"13202","-1","","","","","Extended Annals of Darrowshire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2377","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13203","-1","","","","","Armswake Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15529","77649","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","55" +"13204","-1","","","","","Bashguuder","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51945","259727","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","49","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","0","0","0","0","0","0","0","0","0","55" +"13205","-1","","","","","Rhombeard Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33829","169146","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","15","0","0","0","0","0","0","0","0","56" +"13206","-1","","","","","Wolfshear Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19198","95992","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","5","0","0","0","0","0","0","0","0","56" +"13207","-1","This is the head of the leader of the Shadow Council in Felwood.","","","","Shadow Lord Fel'dan's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13208","-1","","","","","Bleak Howler Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12091","60455","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","56" +"13209","-1","","","","","Seal of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13210","-1","","","","","Pads of the Dread Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18024","90123","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","0","0","0","0","0","0","0","0","0","55" +"13211","-1","","","","","Slashclaw Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14474","72374","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","7","7","0","0","0","0","0","0","0","55" +"13212","-1","","","","","Halycon's Spiked Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10670","42683","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","55" +"13213","-1","","","","","Smolderweb's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9633","38533","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13214","-1","","","","","TestBoots - Puffed Mail Green","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13216","-1","","","","","Crown of the Penitent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12795","63979","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","0" +"13217","-1","","","","","Band of the Penitent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8814","35258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13218","-1","","","","","Fang of the Crystal Spider","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51556","257784","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","65","0","0","0","1600","0","0","0","61","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13219","-1","","","","","Monster - Item, Holy Symbol Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13220","-1","","","","","Monster - Item, Holy Symbol","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13221","-1","","","","","Monster - Item, Staff Glowing Jeweled B01 Red Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13222","-1","","","","","Monster - Sword, Flaming Crimson Battlemage Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13223","-1","","","","","Stratholme Courier's Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13242","-1","","","","","Deprecated Stormrage Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16114","80574","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13243","-1","","","","","Argent Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34046","170233","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13244","-1","","","","","Gilded Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14482","72411","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","15","0","0","0","0","0","0","0","0","55" +"13245","-1","","","","","Kresh's Back","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","5323","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","15" +"13246","-1","","","","","Argent Avenger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49997","249986","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","0","71","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13247","-1","","","","","Quartermaster Zigris' Footlocker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5837","23350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13248","-1","","","","","Burstshot Harquebus","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29670","148350","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","56","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","8","0","0","0","0","0","0","0","0","0","51" +"13249","-1","","","","","Argent Crusader","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63199","315997","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","62","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","6","10","0","0","0","0","0","0","0","0" +"13250","-1","","","","","Head of Balnazzar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5262","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13251","-1","","","","","Head of Baron Rivendare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13252","-1","","","","","Cloudrunner Girdle","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12434","62171","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","0","0","0","0","0","0","0","0","55" +"13253","-1","","","","","Hands of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9983","49916","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","6","0","0","0","0","0","0","0","0","55" +"13254","-1","","","","","Astral Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25883","129419","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","4313","0","0","0","0","0","0","0","0","0","0","1930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","0","0","0","0","0","0","0","0","0","51" +"13255","-1","","","","","Trueaim Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14366","71834","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","10","0","0","0","0","0","0","0","0","54" +"13257","-1","","","","","Demonic Runed Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18088","90441","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","12","12","0","0","0","0","0","0","0","54" +"13258","-1","","","","","Slaghide Gauntlets","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12885","64427","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","745","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13259","-1","","","","","Ribsteel Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27105","135528","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","17","10","0","0","0","0","0","0","0","56" +"13260","-1","","","","","Wind Dancer Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21787","108938","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","9","0","0","0","0","0","0","0","0","56" +"13261","-1","Glows with the power of magiskull.","","","","Globe of D'sak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","16","5","7","0","0","0","0","0","0","0","54" +"13262","-1","Blade of the Scarlet Highlord","","","","Ashbringer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","146531","732658","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","76","-1","0","0","201","30","0","0","0","247","50","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","0","0","0","0","0","0","0","0","0","0","60" +"13282","-1","","","","","Ogreseer Tower Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13684","68423","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","13","0","0","0","0","0","0","0","54" +"13283","-1","","","","","Magus Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14907","59630","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","12","8","0","0","0","0","0","0","0","54" +"13284","-1","","","","","Swiftdart Battleboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19785","98926","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","17","10","0","0","0","0","0","0","0","53" +"13285","-1","","","","","The Blackrock Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54924","274624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4000","0","0","0","58","-1","0","0","159","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13286","-1","","","","","Rivenspike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44106","220534","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13287","-1","Teaches you how to craft a Raptor Hide Harness.","","","","Pattern: Raptor Hide Harness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13288","-1","Teaches you how to craft a Raptor Hide Belt.","","","","Pattern: Raptor Hide Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","165","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13289","-1","","","","","Egan's Blaster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13290","-1","","","","","Monster - Wand, Horde Purple Orb","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13291","-1","","","","","Monster - Wand, Horde Red Feathered","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13292","-1","","","","","Monster - Wand, Horde Demon Skull","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13293","-1","","","","","Monster - Wand, Horde Dark Skull","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13302","-1","","","","","Market Row Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13303","-1","","","","","Crusaders' Square Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13304","-1","","","","","Festival Lane Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13305","-1","","","","","Elders' Square Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13306","-1","","","","","King's Square Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13307","-1","","","","","Ezra Grimm's Postbox Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13308","-1","Teaches you how to make an Ice Deflector.","","","","Schematic: Ice Deflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","202","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13309","-1","Teaches you how to make a Lovingly Crafted Boomstick.","","","","Schematic: Lovingly Crafted Boomstick","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","202","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13310","-1","Teaches you how to make an Accurate Scope.","","","","Schematic: Accurate Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","202","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13311","-1","Teaches you how to make a Mechanical Dragonling.","","","","Schematic: Mechanical Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13312","-1","","","","","Monster - Mace, Hammer Gold Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13313","-1","The pages are tattered and worn...","","","","Sacred Highborne Writings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13314","-1","","","","","Alanna's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28178","140893","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","20","20","0","0","0","0","0","0","0","57" +"13315","-1","","","","","Testament of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11396","45587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","0" +"13316","-1","","","","","Monster - Sword2H, Claymore Silver Yellow Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13317","658","","","","","Whistle of the Ivory Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13318","-1","","","","","Monster - Shield, Horde A01 Red","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13319","-1","","","","","Monster - Shield, Horde B03","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13320","-1","This is used as a catalyst in transforming the toxins of the Scourge's cauldrons.","","","","Arcane Quickener","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","5000","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13321","68","","","","","Green Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13322","68","","","","","Unpainted Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13323","68","","","","","Purple Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13324","68","","","","","Red & Blue Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13325","68","","","","","Fluorescent Green Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13326","68","","","","","White Mechanostrider Mod A","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13327","68","","","","","Icy Blue Mechanostrider Mod A","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13328","1101","","","","","Black Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13329","1101","","","","","Frost Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13330","-1","Derek keeps all his Radish Pals here","","","","Derek's Radish Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13331","658","","","","","Red Skeletal Horse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13332","658","","","","","Blue Skeletal Horse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13333","658","","","","","Brown Skeletal Horse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"13334","658","","","","","Green Skeletal Warhorse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13335","-1","","","","","Deathcharger's Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"13336","-1","","","","","Monster - Staff, Feathered Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13337","-1","","","","","Monster - Staff, Feathered Gold","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13338","-1","","","","","Monster - Staff, Feathered Invert","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13339","-1","","","","","Monster - Staff, Feathered Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13340","-1","","","","","Cape of the Black Baron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14850","74250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","58" +"13341","-1","","","","","Monster - Item, Vial Yellow Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13342","-1","","","","","Pet Fish","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13343","-1","","","","","Pet Stone","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13344","-1","","","","","Dracorian Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15490","77453","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","10","11","0","0","0","0","0","0","0","58" +"13345","-1","","","","","Seal of Rivendare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","7","0","0","0","0","0","0","0","0","58" +"13346","-1","","","","","Robes of the Exalted","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20807","104038","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","11","5","0","0","0","0","0","0","0","0","58" +"13347","-1","","","","","Crystal of Zin-Malor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13348","-1","","","","","Demonshear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65497","327485","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"13349","-1","","","","","Scepter of the Unholy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52589","262946","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","69","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","58" +"13350","-1","","","","","Insignia of the Black Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13351","-1","","","","","Crimson Hammersmith's Apron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13352","-1","","","","","Vosh'gajin's Snakestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13353","-1","","","","","Book of the Dead","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","15","8","0","0","0","0","0","0","0","58" +"13354","-1","","","","","Ectoplasmic Resonator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13356","-1","","","","","Somatic Intensifier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13357","-1","","","","","Osseous Agitator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13358","-1","","","","","Wyrmtongue Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18933","94669","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","10","0","0","0","0","0","0","0","0","58" +"13359","-1","","","","","Crown of Tyranny","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22804","114023","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","-10","0","0","0","0","0","0","0","0","58" +"13360","-1","","","","","Gift of the Elven Magi","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50868","254343","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","10","5","0","0","0","0","0","0","0","58" +"13361","-1","","","","","Skullforge Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51060","255302","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"13362","-1","","","","","Letter from the Front","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13363","-1","","","","","Municipal Proclamation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13364","-1","","","","","Ezra Grimm's Advertisement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13365","-1","","","","","Town Meeting Notice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13366","-1","","","","","Ingenious Toy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13367","-1","","","","","Wrapped Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13368","-1","","","","","Bonescraper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51689","258448","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","62","-1","0","0","40","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13369","-1","","","","","Fire Striders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15775","78876","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","5","0","0","0","0","0","0","0","0","0","58" +"13370","-1","A device used to identify arcane components found in the body.","","","","Vitreous Focuser","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13371","-1","","","","","Father Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6657","26630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13372","-1","","","","","Slavedriver's Cane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63769","318846","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","60","-1","0","0","160","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13373","-1","","","","","Band of Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","6","3","0","0","0","0","0","0","0","55" +"13374","-1","","","","","Soulstealer Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14315","71576","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","22","0","0","0","0","0","0","0","0","55" +"13375","-1","","","","","Crest of Retribution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30656","153284","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","2057","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13376","-1","","","","","Royal Tribunal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13738","68693","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","7","0","0","0","0","0","0","0","0","54" +"13377","-1","","","","","Miniature Cannon Balls","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","32767","0","0","20","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13378","-1","","","","","Songbird Blouse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21972","109861","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","4","5","7","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","13","13","13","13","0","0","0","0","0","53" +"13379","-1","","","","","Piccolo of the Flaming Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10734","42939","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"13380","-1","","","","","Willey's Portable Howitzer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37124","185621","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","61","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","9","0","0","0","0","0","0","0","0","0","56" +"13381","-1","","","","","Master Cannoneer Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26032","130163","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","21","0","0","0","0","0","0","0","0","56" +"13382","-1","","","","","Cannonball Runner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10850","43400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13383","-1","","","","","Woollies of the Prancing Minstrel","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26864","134323","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","10","0","0","0","0","0","0","0","0","53" +"13384","-1","","","","","Rainbow Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15819","79097","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","10","9","10","9","0","0","0","0","0","53" +"13385","-1","","","","","Tome of Knowledge","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13237","52950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","8","8","8","8","0","0","0","0","0","56" +"13386","-1","","","","","Archivist Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15182","75912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","975","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13387","-1","","","","","Foresight Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15238","76192","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","933","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13388","-1","","","","","The Postmaster's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20392","101963","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","13","20","0","0","0","0","0","0","0","56" +"13389","-1","","","","","The Postmaster's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21000","105000","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","20","20","0","0","0","0","0","0","0","56" +"13390","-1","","","","","The Postmaster's Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15806","79030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","10","10","0","0","0","0","0","0","0","56" +"13391","-1","","","","","The Postmaster's Treads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15861","79309","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","6","14","0","0","0","0","0","0","0","56" +"13392","-1","","","","","The Postmaster's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12211","48846","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","6","3","0","0","0","0","0","0","0","56" +"13393","-1","","","","","Malown's Slam","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60240","301204","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","61","-1","0","0","158","0","0","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13394","-1","","","","","Skul's Cold Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31808","159041","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","19","0","0","0","0","0","0","0","0","54" +"13395","-1","","","","","Skul's Fingerbone Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11403","57019","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","54" +"13396","-1","","","","","Skul's Ghastly Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30853","154266","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13397","-1","It's white and looks longer than your average cloak or cape.","","","","Stoneskin Gargoyle Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14680","73401","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","7","14","0","0","0","0","0","0","0","56" +"13398","-1","","","","","Boots of the Shrieker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18674","93370","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","10","0","0","0","0","0","0","0","57" +"13399","-1","","","","","Gargoyle Shredder Talons","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46312","231560","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","59","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","54" +"13400","-1","","","","","Vambraces of the Sadist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16361","81809","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","6","0","0","0","0","0","0","0","0","54" +"13401","-1","","","","","The Cruel Hand of Timmy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49675","248377","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","61","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13402","-1","","","","","Timmy's Galoshes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21168","105843","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","17","11","0","0","0","0","0","0","0","54" +"13403","-1","","","","","Grimgore Noose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9401","47008","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","9","17","0","0","0","0","0","0","0","54" +"13404","-1","","","","","Mask of the Unforgiven","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15895","79479","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","0","0","0","0","0","0","0","0","0","52" +"13405","-1","","","","","Wailing Nightbane Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22885","114427","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","0","0","0","0","0","0","0","0","52" +"13406","-1","","","","","Monster - Item, Mutton Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13407","-1","","","","","Monster - Item, Mutton with Bite Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13408","-1","","","","","Soul Breaker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44142","220713","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","57","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13409","-1","","","","","Tearfall Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8860","44300","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1059","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","52" +"13422","-1","","","","","Stonescale Eel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13423","-1","","","","","Stonescale Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13442","-1","","","","","Mighty Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13443","-1","","","","","Superior Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","41" +"13444","-1","","","","","Major Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"13445","-1","","","","","Elixir of Superior Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","43" +"13446","-1","","","","","Major Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13447","-1","","","","","Elixir of the Sages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"13448","-1","Carries the Seal of Barov.","","","","The Deed to Caer Darrow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13450","-1","Carries the Seal of Barov.","","","","The Deed to Southshore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13451","-1","Carries the Seal of Barov.","","","","The Deed to Tarren Mill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13452","-1","","","","","Elixir of the Mongoose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13453","-1","","","","","Elixir of Brute Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13454","-1","","","","","Greater Arcane Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"13455","-1","","","","","Greater Stoneshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"13456","-1","","","","","Greater Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13457","-1","","","","","Greater Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13458","-1","","","","","Greater Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13459","-1","","","","","Greater Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13460","-1","","","","","Greater Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13461","-1","","","","","Greater Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13462","-1","","","","","Purification Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"13463","-1","","","","","Dreamfoil","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13464","-1","","","","","Golden Sansam","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13465","-1","","","","","Mountain Silversage","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13466","-1","","","","","Plaguebloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13467","-1","","","","","Icecap","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13468","-1","","","","","Black Lotus","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13469","-1","","","","","Head of Weldon Barov","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13470","-1","","","","","Head of Alexi Barov","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13471","-1","Carries the Seal of Barov.","","","","The Deed to Brill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13473","-1","","","","","Felstone Good Luck Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7164","28658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13474","-1","","","","","Farmer Dalson's Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24725","123625","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","56","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"13475","-1","","","","","Dalson Family Wedding Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8109","32436","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","0","0","0","0","0","0","0","0","0","0" +"13476","-1","Teaches you how to make a Mighty Rage Potion.","","","","Recipe: Mighty Rage Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","171","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13477","-1","Teaches you how to make a Superior Mana Potion.","","","","Recipe: Superior Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","171","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13478","-1","Teaches you how to make an Elixir of Superior Defense.","","","","Recipe: Elixir of Superior Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","171","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13479","-1","Teaches you how to make an Elixir of the Sages.","","","","Recipe: Elixir of the Sages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","171","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13480","-1","Teaches you how to make a Major Healing Potion.","","","","Recipe: Major Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13481","-1","Teaches you how to make an Elixir of Brute Force.","","","","Recipe: Elixir of Brute Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13482","-1","Teaches you how to transmute Essence of Air into Essence of Fire.","","","","Recipe: Transmute Air to Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13483","-1","Teaches you how to transmute Essence of Fire into Essence of Earth.","","","","Recipe: Transmute Fire to Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13484","-1","Teaches you how to transmute Essence of Earth into Essence of Water.","","","","Recipe: Transmute Earth to Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13485","-1","Teaches you how to transmute Essence of Water into Essence of Air.","","","","Recipe: Transmute Water to Air","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13486","-1","Teaches you how to transmute Essence of Undeath into Essence of Water.","","","","Recipe: Transmute Undeath to Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13487","-1","Teaches you how to transmute Essence of Water into Essence of Undeath.","","","","Recipe: Transmute Water to Undeath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13488","-1","Teaches you how to transmute Living Essence into Essence of Earth.","","","","Recipe: Transmute Life to Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13489","-1","Teaches you how to transmute Essence of Earth into Living Essence.","","","","Recipe: Transmute Earth to Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13490","-1","Teaches you how to make a Greater Stoneshield Potion.","","","","Recipe: Greater Stoneshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","171","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13491","-1","Teaches you how to make an Elixir of the Mongoose.","","","","Recipe: Elixir of the Mongoose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","171","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13492","-1","Teaches you how to make a Purification Potion.","","","","Recipe: Purification Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13493","-1","Teaches you how to make a Greater Arcane Elixir.","","","","Recipe: Greater Arcane Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13494","-1","Teaches you how to make a Greater Fire Protection Potion.","","","","Recipe: Greater Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13495","-1","Teaches you how to make a Greater Frost Protection Potion.","","","","Recipe: Greater Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13496","-1","Teaches you how to make a Greater Nature Protection Potion.","","","","Recipe: Greater Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13497","-1","Teaches you how to make a Greater Arcane Protection Potion.","","","","Recipe: Greater Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13498","-1","","","","","Handcrafted Mastersmith Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34808","174044","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"13499","-1","Teaches you how to make a Greater Shadow Protection Potion.","","","","Recipe: Greater Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13500","-1","Teaches you how to make a Greater Holy Protection Potion.","","","","Recipe: Greater Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13501","-1","Teaches you how to make a Major Mana Potion.","","","","Recipe: Major Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","171","59","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13502","-1","","","","","Handcrafted Mastersmith Girdle","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18989","94947","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","10","0","0","0","0","0","0","0","58" +"13503","-1","","","","","Alchemist's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","350","171","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","4","7","3","5","6","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","15","15","15","15","15","0","0","0","0","0","0" +"13504","-1","","","","","Monster - Sword, Doomguard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13505","-1","","","","","Runeblade of Baron Rivendare","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82215","411078","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","171","0","0","0","0","257","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"13506","-1","","","","","Flask of Petrification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13507","-1","","","","","Cliffwatcher Longhorn Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2271","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13508","-1","","","","","Eye of Arachnida","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4778","19115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13509","-1","","","","","Clutch of Foresight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5393","21573","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13510","-1","","","","","Flask of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13511","-1","","","","","Flask of Distilled Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13512","-1","","","","","Flask of Supreme Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13513","-1","","","","","Flask of Chromatic Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"13514","-1","","","","","Wail of the Banshee","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5820","23280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13515","-1","","","","","Ramstein's Lightning Bolts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9600","38400","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13517","-1","Teaches you how to make an Alchemist's Stone.","","","","Recipe: Alchemist's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13518","-1","Teaches you how to make a Flask of Petrification.","","","","Recipe: Flask of Petrification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13519","-1","Teaches you how to make a Flask of the Titans.","","","","Recipe: Flask of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13520","-1","Teaches you how to make a Flask of Distilled Wisdom.","","","","Recipe: Flask of Distilled Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13521","-1","Teaches you how to make a Flask of Supreme Power.","","","","Recipe: Flask of Supreme Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13522","-1","Teaches you how to make a Flask of Chromatic Resistance.","","","","Recipe: Flask of Chromatic Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13523","-1","The blood is still fresh.","","","","Blood of Innocents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13524","-1","","","","","Skull of Burning Shadows","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12458","49835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","10","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13525","-1","","","","","Darkbind Fingers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8110","40552","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13526","-1","","","","","Flamescarred Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10177","50887","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13527","-1","","","","","Lavawalker Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21414","107072","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13528","-1","","","","","Twilight Void Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12306","61531","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"13529","-1","","","","","Husk of Nerub'enkan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31195","155975","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","15","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","56" +"13530","-1","","","","","Fangdrip Runners","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12232","61161","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13531","-1","","","","","Crypt Stalker Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20464","102324","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","18","0","18","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13532","-1","","","","","Darkspinner Claws","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12324","61621","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","13","0","13","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13533","-1","","","","","Acid-etched Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21607","108039","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"13534","-1","","","","","Banshee Finger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37728","188640","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","55" +"13535","-1","","","","","Coldtouch Phantom Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16829","84146","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","20","0","13","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13536","-1","","","","","Horn of Awakening","0","1500","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","67648","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13537","-1","","","","","Chillhide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10594","52970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13538","-1","","","","","Windshrieker Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19223","96116","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","20","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13539","-1","","","","","Banshee's Touch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15022","75114","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","13","0","13","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"13542","-1","","","","","Demon Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13543","-1","","","","","Krastinov's Bag of Horrors UNUSED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13544","-1","Allows communication with the deceased of Caer Darrow.","","","","Spectral Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13545","-1","","","","","Shellfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13546","-1","","","","","Bloodbelly Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1250","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"13562","-1","","","","","Remains of Trey Lightforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13582","-1","","","","","Zergling Leash","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13583","-1","","","","","Panda Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13584","-1","","","","","Diablo Stone","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13585","-1","All of the pages are torn out.","","","","Keepsake of Remembrance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13586","-1","","","","","Test Crit Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17087","85438","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13602","-1","","","","","Greater Spellstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","48" +"13603","-1","","","","","Major Spellstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","60" +"13604","-1","","","","","Monster - Item, Bucket - Wood Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13605","-1","","","","","Monster - Item, Bucket - Metal Dirty Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13606","-1","","","","","Monster - Item, Bucket - Metal Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13607","-1","","","","","Monster - Item, Bucket - Metal","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13608","-1","","","","","Monster - Item, Bucket - Metal Dirty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13609","-1","","","","","Monster - Item, Lantern - Round Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13610","-1","","","","","Monster - Item, Lantern - Square Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13611","-1","","","","","Monster - Hot Iron Poker Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13612","-1","","","","","Monster - Item, Glass - Purple Wine","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13622","-1","","","","","Monster - Staff, D01 Circling Black Skull","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13623","-1","","","","","Monster - Sword2H, Horde Skull Blue Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13624","-1","","","","","Soulbound Keepsake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13625","-1","","","","","Monster - Axe, Horde B03 Copper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13626","-1","","","","","Human Head of Ras Frostwhisper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13627","-1","","","","","Monster - Sword, Horde Jagged Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13628","-1","","","","","Monster - Shield, Horde B04","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13629","-1","","","","","Monster - Shield, Horde C02","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13630","-1","","","","","Monster - Shield, Horde C03","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13631","-1","","","","","Monster - Spear, Badass Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13632","-1","","","","","Monster - Spear, Badass Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13642","-1","","","","","Level 15 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13643","-1","","","","","Level 15 Test Gear Leather - Druid/Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13644","-1","","","","","Level 15 Test Gear Leather - Hunter/Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13645","-1","","","","","Level 15 Test Gear Mail - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13646","-1","","","","","Level 20 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13647","-1","","","","","Level 25 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13648","-1","","","","","Level 30 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13649","-1","","","","","Level 35 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13650","-1","","","","","Level 40 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13651","-1","","","","","Level 45 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13652","-1","","","","","Level 50 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13653","-1","","","","","Level 55 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13654","-1","","","","","Level 60 Test Gear Cloth - Mage/Priest/Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13655","-1","","","","","Level 65 Test Gear Cloth - Mage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13656","-1","","","","","Level 20 Test Gear Mail - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13657","-1","","","","","Level 25 Test Gear Mail - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13658","-1","","","","","Level 30 Test Gear Mail - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13659","-1","","","","","Level 35 Test Gear Mail - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13660","-1","","","","","Level 20 Test Gear Leather - Druid/Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13661","-1","","","","","Level 25 Test Gear Leather - Druid/Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13662","-1","","","","","Level 30 Test Gear Leather - Druid/Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13663","-1","","","","","Level 35 Test Gear Leather - Druid/Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13664","-1","","","","","Level 20 Test Gear Leather - Hunter/Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13665","-1","","","","","Level 25 Test Gear Leather - Hunter/Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13666","-1","","","","","Level 30 Test Gear Leather - Hunter/Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13667","-1","","","","","Level 35 Test Gear Leather - Hunter/Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13668","-1","","","","","Level 40 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13669","-1","","","","","Level 45 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13670","-1","","","","","Level 50 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13671","-1","","","","","Level 55 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13672","-1","","","","","Level 60 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13673","-1","","","","","Level 65 Test Gear Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13674","-1","","","","","Level 40 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13675","-1","","","","","Level 45 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13676","-1","","","","","Level 50 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13677","-1","","","","","Level 55 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13678","-1","","","","","Level 60 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13679","-1","","","","","Level 65 Test Gear Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13680","-1","","","","","Level 40 Test Gear Plate - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13681","-1","","","","","Level 45 Test Gear Plate - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13682","-1","","","","","Level 50 Test Gear Plate - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13683","-1","","","","","Level 55 Test Gear Plate - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13684","-1","","","","","Level 60 Test Gear Plate - Paladin/Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13685","-1","","","","","Level 65 Test Gear Plate - Paladin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13686","-1","","","","","Level 40 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13687","-1","","","","","Level 45 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13688","-1","","","","","Level 50 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13689","-1","","","","","Level 55 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13690","-1","","","","","Level 60 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13691","-1","","","","","Level 65 Test Gear Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13692","-1","","","","","Level 40 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13693","-1","","","","","Level 45 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13694","-1","","","","","Level 50 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13695","-1","","","","","Level 55 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13696","-1","","","","","Level 60 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13697","-1","","","","","Level 65 Test Gear Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13698","-1","","","","","Monster - Staff, Ornate Warlock Staff Black Glow Low","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13699","-1","","","","","Firestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13700","-1","","","","","Greater Firestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13701","-1","","","","","Major Firestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13702","-1","","","","","Doom Weed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13703","-1","","","","","Kodo Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13704","-1","","","","","Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13705","-1","","","","","Monster - Staff, Yellow Jeweled with Low Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13706","-1","","","","","Monster - Axe, 2H Horde Black Tombstone","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13707","-1","","","","","Monster - Sword, Horde Sword B04 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13708","-1","","","","","Monster - Sword2H, Horde Massive Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13709","-1","","","","","Monster - Staff Green Sphere Glowing","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13710","-1","","","","","Test Stamina Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17790","88954","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"13711","-1","","","","","Test Attack Power Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16574","82870","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13712","-1","","","","","Test Sword Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16636","83183","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13713","-1","","","","","Test Dodge Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16701","83505","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13714","-1","","","","","Test Parry Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16765","83827","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13715","-1","","","","","Test Block Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16829","84149","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13716","-1","","","","","Test Haste Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16892","84463","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13717","-1","","","","","Test Hit Chance Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16957","84785","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13718","-1","","","","","Monster - Sword, Horde Jagged Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13719","-1","","","","","Monster - Sword, Horde Jagged Red w/ Low Yellow Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13720","-1","","","","","Monster - Staff, Feathered Invert - Glow Black High","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"13721","-1","","","","","Monster - Staff, Wooden Handle Spiral Head White","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13722","-1","","","","","Monster - Staff, Demon Skull Staff Low Purple Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13723","-1","","","","","Monster - Staff, Wood w/ Spiral Head White Low Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13724","-1","","","","","Enriched Manna Biscuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13725","-1","","","","","Krastinov's Bag of Horrors","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13726","-1","","","","","[PH] Rising Dawn Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13727","-1","","","","","[PH] Brilliant Dawn Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8044","40220","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13728","-1","","","","","[PH] Shining Dawn Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8072","40360","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13730","-1","","","","","[PH] Brilliant Dawn Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12194","60970","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13731","-1","","","","","[PH] Brilliant Dawn Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12990","64953","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13732","-1","","","","","[PH] Rising Dawn Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","16","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13733","-1","","","","","[PH] Rising Dawn Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13734","-1","","","","","[PH] Rising Dawn Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","6","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","2","1","0","0","0","0","0","0","0","0","1" +"13736","-1","","","","","[PH] Shining Dawn Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11285","56428","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13737","-1","","","","","[PH] Shining Dawn Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13292","66461","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13738","-1","","","","","[PH] Cloth Bracers of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7581","37905","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13739","-1","","","","","[PH] Cloth Bracers of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7609","38045","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13740","-1","","","","","[PH] Cloth Bracers of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7637","38188","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13741","-1","","","","","[PH] Leather Bracers of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9583","47915","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13742","-1","","","","","[PH] Mail Bracers of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11542","57713","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13743","-1","","","","","[PH] Plate Bracers of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13954","69771","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13744","-1","","","","","[PH] Plate Bracers of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14004","70023","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13745","-1","","","","","[PH] Plate Bracers of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14055","70276","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13746","-1","","","","","[PH] Mail Bracers of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12020","60104","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13747","-1","","","","","[PH] Mail Bracers of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12063","60319","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13748","-1","","","","","[PH] Leather Bracers of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10089","50445","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13749","-1","","","","","[PH] Leather Bracers of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10124","50624","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","2","1","0","0","0","0","0","0","0","0","100" +"13750","-1","","","","","Monster - Staff, Jeweled Blue Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13751","-1","","","","","Monster - Staff, Jeweled Yellow Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13752","-1","","","","","Soulbound Keepsake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13753","-1","","","","","Monster - Staff, Jeweled Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13754","-1","","","","","Raw Glossy Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","120","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13755","-1","","","","","Winter Squid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","140","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13756","-1","","","","","Raw Summer Bass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","180","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13757","-1","","","","","Lightning Eel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","1200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13758","-1","","","","","Raw Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","80","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13759","-1","","","","","Raw Nightfin Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13760","-1","","","","","Raw Sunscale Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13761","-1","","","","","Frozen Eggs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13762","-1","","","","","[PH] Robe of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15798","78991","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13763","-1","","","","","[PH] Robe of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15855","79277","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13764","-1","","","","","[PH] Robe of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15912","79564","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13765","-1","","","","","[PH] Leather Chestguard of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19961","99805","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13766","-1","","","","","[PH] Leather Chestguard of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20032","100163","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13767","-1","","","","","[PH] Leather Chestguard of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20104","100522","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13768","-1","","","","","[PH] Mail Chestguard of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24211","121057","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13769","-1","","","","","[PH] Mail Chestguard of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24295","121476","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13770","-1","","","","","[PH] Mail Chestguard of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24381","121906","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13771","-1","","","","","[PH] Plate Chestguard of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25828","129141","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13772","-1","","","","","[PH] Plate Chestguard of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25928","129643","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13773","-1","","","","","[PH] Plate Chestguard of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26026","130132","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13775","-1","","","","","[PH] Cloth Leggings of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15398","76990","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13776","-1","","","","","[PH] Cloth Leggings of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15455","77277","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13777","-1","","","","","[PH] Leather Leggings of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19389","96945","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13778","-1","","","","","[PH] Leather Leggings of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19460","97304","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13779","-1","","","","","[PH] Leather Leggings of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19532","97662","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13780","-1","","","","","[PH] Mail Leggings of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23522","117614","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13781","-1","","","","","[PH] Mail Leggings of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23608","118044","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13782","-1","","","","","[PH] Mail Leggings of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23694","118474","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13783","-1","","","","","[PH] Plate Leggings of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27744","138722","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13784","-1","","","","","[PH] Plate Leggings of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27842","139211","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13785","-1","","","","","[PH] Plate Leggings of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27942","139713","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13787","-1","","","","","[PH] Rising Dawn Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13788","-1","","","","","[PH] Shining Dawn Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12103","60517","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13790","-1","","","","","[PH] Rising Dawn Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13791","-1","","","","","[PH] Shining Dawn Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14220","71102","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13793","-1","","","","","[PH] Rising Dawn Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13794","-1","","","","","[PH] Shining Dawn Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17256","86282","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13796","-1","","","","","[PH] Rising Dawn Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"13797","-1","","","","","[PH] Shining Dawn Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20317","101588","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13798","-1","","","","","[PH] Cloth Boots of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11675","58376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13801","-1","","","","","[PH] Leather Boots of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14754","73770","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13802","-1","","","","","[PH] Leather Boots of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14807","74039","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13803","-1","","","","","[PH] Leather Boots of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14860","74301","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13804","-1","","","","","[PH] Mail Boots of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17976","89882","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13805","-1","","","","","[PH] Mail Boots of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18041","90206","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13806","-1","","","","","[PH] Mail Boots of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18106","90530","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13807","-1","","","","","[PH] Plate Boots of the Brilliant Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19568","97840","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13808","-1","","","","","[PH] Plate Boots of the Rising Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19643","98216","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13809","-1","","","","","[PH] Plate Boots of the Shining Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19718","98591","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","100" +"13810","-1","","","","","Blessed Sunfruit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13811","-1","","","","","Necklace of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8988","35954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"13812","-1","","","","","Ring of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8303","33215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","14","0","0","0","0","0","0","0","0","0","0" +"13813","-1","","","","","Blessed Sunfruit Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","6000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13814","-1","","","","","Monster - Shield, Stromgarde B03","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13815","-1","","","","","Some Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13816","-1","","","","","Fine Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10561","52808","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","52","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","47" +"13817","-1","","","","","Tapered Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18797","93985","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","58","-1","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","53" +"13818","-1","","","","","Jagged Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13431","67158","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","56","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","51" +"13819","-1","","","","","Balanced War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19881","99405","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","59","-1","0","0","55","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","54" +"13820","-1","","","","","Clout Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12042","60211","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","54","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","49" +"13821","-1","","","","","Bulky Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17993","89968","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","57","-1","0","0","76","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","52" +"13822","-1","","","","","Spiked Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11442","57213","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","53","-1","0","0","21","0","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","48" +"13823","-1","","","","","Stout War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13107","65537","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","51","-1","0","0","59","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","46" +"13824","-1","","","","","Recurve Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9015","45078","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","55","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","45" +"13825","-1","","","","","Primed Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10168","50842","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","30","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","52" +"13842","-1","","","","","Fall/Winter Morning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13843","-1","","","","","Fall/Winter Afternoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13844","-1","","","","","Fall/Winter Evening","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13845","-1","","","","","Fall/Winter Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13846","-1","","","","","Spring/Summer Morning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13847","-1","","","","","Spring/Summer Afternoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13848","-1","","","","","Spring/Summer Evening","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13849","-1","","","","","Spring/Summer Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13850","-1","","","","","Rumbleshot's Ammo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13851","-1","","","","","Hot Wolf Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"13852","-1","Bears the mark of the Grand Crusader.","","","","The Grand Crusader's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13853","-1","","","","","Slab of Carrion Worm Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13854","-1","","","","","Monster - Item, Tankard Dirty Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13855","-1","","","","","Monster - Item, Tankard Metal Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13856","-1","","","","","Runecloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5112","25564","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","8","0","0","0","0","0","0","0","0","46" +"13857","-1","","","","","Runecloth Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10878","54393","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","11","0","0","0","0","0","0","0","0","47" +"13858","-1","","","","","Runecloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10917","54589","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","17","11","0","0","0","0","0","0","0","0","47" +"13859","-1","","","","","Monster - Item, Tankard Wooden Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13860","-1","","","","","Runecloth Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8741","43706","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","8","0","0","0","0","0","0","0","0","48" +"13861","-1","","","","","Monster - Item, Tankard Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13862","-1","","","","","Monster - Item, Tankard Gold Offhand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13863","-1","","","","","Runecloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6617","33086","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","9","0","0","0","0","0","0","0","0","50" +"13864","-1","","","","","Runecloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9553","47768","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","9","0","0","0","0","0","0","0","0","51" +"13865","-1","","","","","Runecloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13555","67775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","52" +"13866","-1","","","","","Runecloth Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11358","56794","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","54" +"13867","-1","","","","","Runecloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12138","60694","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","10","0","0","0","0","0","0","0","0","56" +"13868","-1","","","","","Frostweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9665","48329","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","0","0","0","0","0","0","0","0","0","46" +"13869","-1","","","","","Frostweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9702","48514","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","46" +"13870","-1","","","","","Frostweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5471","27359","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","0","0","0","0","0","0","0","0","0","47" +"13871","-1","","","","","Frostweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13436","67184","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","51" +"13872","-1","","","","","Bundle of Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13873","-1","","","","","Viewing Room Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13874","-1","Venture Company Supplies","","","","Heavy Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13875","-1","","","","","Ironbound Locked Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13876","-1","","","","","40 Pound Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13877","-1","","","","","47 Pound Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13878","-1","","","","","53 Pound Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13879","-1","","","","","59 Pound Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13880","-1","","","","","68 Pound Grouper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13881","-1","","","","","Bloated Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13882","-1","","","","","42 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13883","-1","","","","","45 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13884","-1","","","","","49 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13885","-1","","","","","34 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13886","-1","","","","","37 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13887","-1","","","","","52 Pound Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13888","-1","","","","","Darkclaw Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13889","-1","","","","","Raw Whitescale Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13890","-1","","","","","Plated Armorfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","70","1400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13891","-1","","","","","Bloated Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13892","-1","","","","","Kodo Kombobulator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"13893","-1","","","","","Large Raw Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13894","-1","","","","","Monster - Mace, Standard B01 White","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13895","-1","","","","","Formal Dangui","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101324","506622","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13896","-1","","","","","Dark Green Wedding Hanbok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11020","55103","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13897","-1","","","","","White Traditional Hanbok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","595","2977","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13898","-1","","","","","Royal Dangui","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57739","288699","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13899","-1","","","","","Red Traditional Hanbok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3528","17641","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13900","-1","","","","","Green Wedding Hanbok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27442","137214","1","10","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13901","-1","","","","","15 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13902","-1","","","","","18 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13903","-1","","","","","22 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13904","-1","","","","","25 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13905","-1","","","","","29 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13906","-1","","","","","32 Pound Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13907","-1","","","","","7 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13908","-1","","","","","9 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13909","-1","","","","","12 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13910","-1","","","","","15 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13911","-1","","","","","19 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80","320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13912","-1","","","","","21 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13913","-1","","","","","22 Pound Lobster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13914","-1","","","","","70 Pound Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13915","-1","","","","","85 Pound Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13916","-1","","","","","92 Pound Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13917","-1","","","","","103 Pound Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13918","-1","","","","","Reinforced Locked Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13920","-1","","","","","Healthy Dragon Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5582","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"13922","-1","","","","","Monster - Shield, B01 WoodSteelCap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13923","-1","","","","","Monster - Gun, Tauren Blade Silver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"13924","-1","","","","","Monster - Gun, Tauren Scope Blade Feathered Silver Deluxe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"13925","-1","","","","","Monster - Mace2H, Maul B02 Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"13926","-1","","","","","Golden Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"13927","-1","","","","","Cooked Glossy Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","32","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13928","-1","","","","","Grilled Squid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13929","-1","","","","","Hot Smoked Bass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13930","-1","","","","","Filet of Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","100","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13931","-1","","","","","Nightfin Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13932","-1","","","","","Poached Sunscale Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"13933","-1","","","","","Lobster Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","14","280","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13934","-1","","","","","Mightfish Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13935","-1","","","","","Baked Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","1200","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"13936","-1","","","","","Deprecated Dreadmaster's Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16082","80410","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","13","20","0","0","0","0","0","0","0","0","57" +"13937","-1","","","","","Headmaster's Charge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81129","405649","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","135","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","20","0","0","0","0","0","0","0","0","57" +"13938","-1","","","","","Bonecreeper Stylus","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36646","183232","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","62","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","57" +"13939","-1","Teaches you how to cook Spotted Yellowtail.","","","","Recipe: Spotted Yellowtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13940","-1","Teaches you how to cook Cooked Glossy Mightfish.","","","","Recipe: Cooked Glossy Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13941","-1","Teaches you how to cook Filet of Redgill.","","","","Recipe: Filet of Redgill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13942","-1","Teaches you how to cook Grilled Squid.","","","","Recipe: Grilled Squid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","185","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13943","-1","Teaches you how to cook Hot Smoked Bass.","","","","Recipe: Hot Smoked Bass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","240","185","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13944","-1","","","","","Tombstone Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24996","124980","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","10","0","0","0","0","0","0","0","0","57" +"13945","-1","Teaches you how to cook Nightfin Soup.","","","","Recipe: Nightfin Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13946","-1","Teaches you how to cook Poached Sunscale Salmon.","","","","Recipe: Poached Sunscale Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13947","-1","Teaches you how to cook Lobster Stew.","","","","Recipe: Lobster Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13948","-1","Teaches you how to cook Mightfish Steak.","","","","Recipe: Mightfish Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13949","-1","Teaches you how to cook Baked Salmon.","","","","Recipe: Baked Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"13950","-1","","","","","Detention Strap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15335","76675","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","11","10","0","0","0","0","0","0","0","57" +"13951","-1","","","","","Vigorsteel Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18059","90298","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","57" +"13952","-1","","","","","Iceblade Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52850","264251","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","62","-1","0","0","57","1","0","0","0","106","5","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13953","-1","","","","","Silent Fang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53034","265172","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13954","-1","","","","","Verdant Footpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19687","98437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13955","-1","","","","","Stoneform Shoulders","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27607","138039","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","56" +"13956","-1","","","","","Clutch of Andros","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10574","52873","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","9","0","0","0","0","0","0","0","0","56" +"13957","-1","","","","","Gargoyle Slashers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12001","60007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","10","12","0","0","0","0","0","0","0","56" +"13958","-1","","","","","Wyrmthalak's Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9505","47528","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","9","0","0","0","0","0","0","0","0","0" +"13959","-1","","","","","Omokk's Girth Restrainer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16794","83974","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","9","0","0","0","0","0","0","0","0","0" +"13960","-1","","","","","Heart of the Fiend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12828","51315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","5","5","0","0","0","0","0","0","0","56" +"13961","-1","","","","","Halycon's Muzzle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18028","90141","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","5","0","0","0","0","0","0","0","0","0" +"13962","-1","","","","","Vosh'gajin's Strand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12064","60324","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","6","0","0","0","0","0","0","0","0","0" +"13963","-1","","","","","Voone's Vice Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14533","72665","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","9","0","0","0","0","0","0","0","0","0" +"13964","-1","","","","","Witchblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49986","249934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","62","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","0","0","0","0","0","0","0","0","0","57" +"13965","-1","","","","","Blackhand's Breadth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13966","-1","","","","","Mark of Tyranny","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","10","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13967","-1","","","","","Windreaver Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22537","112688","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","0","0","0","0","0","0","0","0","0","56" +"13968","-1","","","","","Eye of the Beast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16250","65000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13969","-1","","","","","Loomguard Armbraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15470","77350","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","6","0","0","0","0","0","0","0","0","56" +"13982","-1","","","","","Warblade of Caer Darrow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62847","314236","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","142","1","0","0","0","214","22","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13983","-1","","","","","Gravestone War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62240","311204","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","62","-1","0","0","144","0","0","0","0","217","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","57" +"13984","-1","","","","","Darrowspike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52029","260148","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"13986","-1","","","","","Crown of Caer Darrow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15723","78619","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","8","0","0","0","0","0","0","0","0" +"14002","-1","","","","","Darrowshire Strongguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33050","165250","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","0","10","10","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","8","0","0","0","0","0","0","0","0","0" +"14022","-1","","","","","Barov Peasant Caller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14023","-1","","","","","Barov Peasant Caller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14024","-1","","","","","Frightalon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50623","253118","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","61","-1","0","0","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"14025","-1","","","","","Mystic's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188","942","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","0","0","0","0","0","0","0","0","0","12" +"14042","-1","","","","","Cindercloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10561","52808","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","47" +"14043","-1","","","","","Cindercloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5955","29778","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","49" +"14044","-1","","","","","Cindercloth Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9503","47517","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","0","0","0","0","0","0","0","0","0","50" +"14045","-1","","","","","Cindercloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13481","67405","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","51" +"14046","-1","","","","","Runecloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14047","-1","","","","","Runecloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14048","-1","","","","","Bolt of Runecloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14062","-1","","","","","Kodo Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","800000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"14082","-1","","","","","Monster - Mace2H, Tirion Fordring","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14083","-1","","","","","Tyrande's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","108","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","4","-1","0","0","4","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14084","-1","","","","","Monster - Mace2H, Cairne Totem","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14085","-1","","","","","Monster - Glaive Vol'jin","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14086","-1","","","","","Beaded Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","225","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14087","-1","","","","","Beaded Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"14088","-1","","","","","Beaded Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"14089","-1","","","","","Beaded Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","152","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14090","-1","","","","","Beaded Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","119","598","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","538","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14091","-1","","","","","Beaded Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120","600","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","454","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14092","-1","","","","","Monster - Staff, Holy Staff Archbishop Benedictus","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14093","-1","","","","","Beaded Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","107","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"14094","-1","","","","","Beaded Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","607","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","454","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"14095","-1","","","","","Native Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","183","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14096","-1","","","","","Native Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1627","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","456","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14097","-1","","","","","Native Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","236","1183","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","539","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"14098","-1","","","","","Native Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","219","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"14099","-1","","","","","Native Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","238","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","7" +"14100","-1","","","","","Brightcloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12089","60449","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","16","15","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14101","-1","","","","","Brightcloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6066","30334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","12","11","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14102","-1","","","","","Native Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","301","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","8" +"14103","-1","","","","","Brightcloth Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9716","48583","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","7","7","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14104","-1","","","","","Brightcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15484","77421","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","17","16","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14105","-1","","","","","Monster - Bow, C01/B02 White","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"14106","-1","","","","","Felcloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17434","87172","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","0","0","0","0","0","0","0","0","0","56" +"14107","-1","","","","","Felcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13141","65705","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","50" +"14108","-1","","","","","Felcloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11112","55561","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","52" +"14109","-1","","","","","Native Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","341","1705","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","456","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14110","-1","","","","","Native Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","420","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"14111","-1","","","","","Felcloth Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10775","53875","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","53" +"14112","-1","","","","","Felcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12596","62982","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","0","0","0","0","0","0","0","0","0","57" +"14113","-1","","","","","Aboriginal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139","699","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","875","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"14114","-1","","","","","Aboriginal Footwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","242","1211","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","792","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14115","-1","","","","","Aboriginal Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70","352","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"14116","-1","","","","","Aboriginal Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106","530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"14117","-1","","","","","Aboriginal Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","816","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","708","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"14118","-1","","","","","Monster - Bow, C02/B02 Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"14119","-1","","","","","Aboriginal Loincloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","378","1891","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","540","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","12" +"14120","-1","","","","","Aboriginal Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","577","2887","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","457","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14121","-1","","","","","Aboriginal Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","579","2898","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","457","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14122","-1","","","","","Ritual Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","219","1099","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1044","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","13" +"14123","-1","","","","","Ritual Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","287","1439","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","960","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","12" +"14124","-1","","","","","Ritual Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1464","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","709","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14125","-1","","","","","Ritual Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","676","3381","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","541","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","16" +"14126","-1","","","","","Ritual Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","396","1984","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"14127","-1","","","","","Ritual Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","5000","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","458","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14128","-1","","","","","Wizardweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16093","80465","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","18","0","0","0","17","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14129","-1","","","","","Ritual Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","415","2079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","793","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14130","-1","","","","","Wizardweave Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12330","61653","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","18","0","0","0","18","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14131","-1","","","","","Ritual Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","242","1214","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","877","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14132","-1","","","","","Wizardweave Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12441","62207","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","16","0","0","0","16","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14133","-1","","","","","Ritual Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","4752","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","458","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14134","-1","","","","","Cloak of Fire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11280","56401","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","6","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","50" +"14136","-1","","","","","Robe of Winter Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17025","85127","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","0","0","0","0","0","0","0","0","0","52" +"14137","-1","","","","","Mooncloth Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18113","90568","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","14","12","0","0","0","0","0","0","0","53" +"14138","-1","","","","","Mooncloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20042","100210","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","19","12","0","0","0","0","0","0","0","55" +"14139","-1","","","","","Mooncloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15297","76487","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","56" +"14140","-1","","","","","Mooncloth Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15565","77825","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","13","0","0","0","0","0","0","0","57" +"14141","-1","","","","","Ghostweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12859","64297","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","0","0","0","0","0","0","0","0","0","50" +"14142","-1","","","","","Ghostweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6087","30436","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","0","0","0","0","0","0","0","0","0","49" +"14143","-1","","","","","Ghostweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5763","28817","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","0","0","0","0","0","0","0","0","0","48" +"14144","-1","","","","","Ghostweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14374","71872","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","53" +"14145","-1","","","","","Cursed Felblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1238","6194","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","18","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","13" +"14146","-1","","","","","Gloves of Spell Mastery","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13132","65660","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31632","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","8","0","0","0","0","0","0","0","0","57" +"14147","-1","","","","","Cavedweller Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","374","1872","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","3","4","0","0","0","0","0","0","0","0","13" +"14148","-1","","","","","Crystalline Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1253","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","2","2","0","0","0","0","0","0","0","0","13" +"14149","-1","","","","","Subterranean Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","377","1886","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","4","0","0","0","0","0","0","0","0","13" +"14150","-1","","","","","Robe of Evocation","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","504","2524","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","5","4","5","0","0","0","0","0","0","0","13" +"14151","-1","","","","","Chanting Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1267","6336","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","3","2","0","0","0","0","0","0","0","0","13" +"14152","-1","","","","","Robe of the Archmage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26866","134334","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31360","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","12","0","0","0","0","0","0","0","0","0","57" +"14153","-1","","","","","Robe of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26965","134825","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31488","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","14","0","0","0","0","0","0","0","0","0","57" +"14154","-1","","","","","Truefaith Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27066","135330","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31248","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","14","0","0","0","0","0","0","0","0","0","57" +"14155","-1","","","","","Mooncloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14156","-1","","","","","Bottomless Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14157","-1","","","","","Pagan Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","434","2170","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"14158","-1","","","","","Pagan Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1236","6180","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","459","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14159","-1","","","","","Pagan Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","570","2853","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","794","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","17" +"14160","-1","","","","","Pagan Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","251","1255","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1045","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14161","-1","","","","","Pagan Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1686","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","960","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","13" +"14162","-1","","","","","Pagan Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","445","2229","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","710","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14163","-1","","","","","Pagan Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1168","5841","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","459","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14164","-1","","","","","Pagan Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","312","1563","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","877","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","16" +"14165","-1","","","","","Pagan Britches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1041","5209","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","543","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","20" +"14166","-1","","","","","Buccaneer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","238","1191","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1045","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14167","-1","","","","","Buccaneer's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1794","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","961","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14168","-1","","","","","Buccaneer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","276","1380","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","709","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14169","-1","","","","","Aboriginal Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1434","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"14170","-1","","","","","Buccaneer's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","331","1655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14171","-1","","","","","Buccaneer's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","738","3693","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","542","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"14172","-1","","","","","Buccaneer's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","4189","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","458","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14173","-1","","","","","Buccaneer's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","281","1406","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","877","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"14174","-1","","","","","Buccaneer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1841","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","793","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","14" +"14175","-1","","","","","Buccaneer's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4236","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","458","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","18" +"14176","-1","","","","","Watcher's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","920","4600","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","795","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14177","-1","","","","","Watcher's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","631","3159","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1047","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"14178","-1","","","","","Watcher's Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1532","7661","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14179","-1","","","","","Watcher's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","747","3738","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","962","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"14180","-1","","","","","Watcher's Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1870","9351","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","460","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14181","-1","","","","","Watcher's Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","775","3878","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","712","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14182","-1","","","","","Watcher's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1167","5837","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1132","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14183","-1","","","","","Watcher's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1710","8551","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","544","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14184","-1","","","","","Watcher's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1716","8584","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","460","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14185","-1","","","","","Watcher's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","647","3237","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","879","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","22" +"14186","-1","","","","","Raincaller Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1179","5898","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1132","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","24" +"14187","-1","","","","","Raincaller Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","717","3588","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1048","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14188","-1","","","","","Raincaller Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4911","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","963","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","22" +"14189","-1","","","","","Raincaller Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1588","7940","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","629","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14190","-1","","","","","Raincaller Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1932","9661","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14191","-1","","","","","Raincaller Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","4407","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","712","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14192","-1","","","","","Raincaller Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1946","9733","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","461","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14193","-1","","","","","Raincaller Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2006","10032","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","545","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14194","-1","","","","","Raincaller Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","756","3782","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","880","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"14195","-1","","","","","Raincaller Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1252","6262","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","796","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","24" +"14196","-1","","","","","Thistlefur Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1673","8366","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","797","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14197","-1","","","","","Thistlefur Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","925","4626","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1048","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"14198","-1","","","","","Thistlefur Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1531","7659","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","965","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"14199","-1","","","","","Thistlefur Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1240","6200","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","713","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"14200","-1","","","","","Thistlefur Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2258","11294","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","630","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14201","-1","","","","","Thistlefur Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2060","10304","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1134","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14202","-1","","","","","Thistlefur Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3336","16682","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","462","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14203","-1","","","","","Thistlefur Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2754","13770","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","546","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14204","-1","","","","","Thistlefur Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3041","15206","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","462","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14205","-1","","","","","Thistlefur Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1042","5213","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14206","-1","","","","","Vital Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1046","5232","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1049","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14207","-1","","","","","Vital Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3076","15381","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","546","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14208","-1","","","","","Vital Headband","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2316","11580","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","630","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14209","-1","","","","","Vital Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1196","5980","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","881","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"14210","-1","","","","","Vital Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1637","8185","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","965","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","27" +"14211","-1","","","","","Vital Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","6627","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","714","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14212","-1","","","","","Vital Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10974","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1134","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14213","-1","","","","","Vital Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3553","17769","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","463","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14214","-1","","","","","Vital Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2009","10049","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","798","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14215","-1","","","","","Vital Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3579","17898","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","463","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14216","-1","","","","","Geomancer's Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4887","24438","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","464","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14217","-1","","","","","Geomancer's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1638","8193","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","882","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14218","-1","","","","","Geomancer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2713","13568","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","799","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14219","-1","","","","","Geomancer's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2046","10230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","966","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","29" +"14220","-1","","","","","Geomancer's Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3442","17214","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","632","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14221","-1","","","","","Geomancer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1511","7555","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1050","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"14222","-1","","","","","Geomancer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1834","9174","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14223","-1","","","","","Geomancer's Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2699","13495","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1135","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14224","-1","","","","","Geomancer's Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3901","19508","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","547","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14225","-1","","","","","Geomancer's Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4694","23471","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","464","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14226","-1","","","","","Embersilk Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1731","8658","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1051","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14227","-1","","","","","Ironweb Spider Silk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14228","-1","","","","","Embersilk Coronet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3560","17800","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","632","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14229","-1","","","","","Embersilk Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","11938","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","966","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"14230","-1","","","","","Embersilk Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5164","25822","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","464","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14231","-1","","","","","Embersilk Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1905","9525","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","715","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14232","-1","","","","","Embersilk Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15486","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1135","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14233","-1","","","","","Embersilk Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4476","22381","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","548","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14234","-1","","","","","Embersilk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5240","26201","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","464","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14235","-1","","","","","Embersilk Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1789","8948","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","883","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"14236","-1","","","","","Embersilk Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2909","14547","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","799","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","33" +"14237","-1","","","","","Darkmist Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7206","36031","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","466","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14238","-1","","","","","Darkmist Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3691","18457","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","800","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14239","-1","","","","","Darkmist Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3176","15881","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","967","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","34" +"14240","-1","","","","","Darkmist Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2294","11474","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1052","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14241","-1","","","","","Darkmist Handguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2311","11559","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","716","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14242","-1","","","","","Darkmist Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5413","27069","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","549","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14243","-1","","","","","Darkmist Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4075","20376","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1137","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14244","-1","","","","","Darkmist Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6870","34354","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","466","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14245","-1","","","","","Darkmist Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2346","11734","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","884","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14246","-1","","","","","Darkmist Wizard Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4451","22256","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","633","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14247","-1","","","","","Lunar Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4467","22337","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1137","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14248","-1","","","","","Lunar Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2373","11865","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1052","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14249","-1","","","","","Lunar Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7559","37798","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","466","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14250","-1","","","","","Lunar Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3873","19365","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","800","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","37" +"14251","-1","","","","","Lunar Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3332","16662","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","968","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","35" +"14252","-1","","","","","Lunar Coronet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4914","24572","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","633","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14253","-1","","","","","Lunar Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2819","14095","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","717","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14254","-1","","","","","Lunar Raiment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7698","38494","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","466","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14255","-1","","","","","Lunar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2629","13145","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","884","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14256","-1","","","","","Felcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14257","-1","","","","","Lunar Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6194","30973","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","549","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14258","-1","","","","","Bloodwoven Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3109","15545","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","885","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14259","-1","","","","","Bloodwoven Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5056","25280","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","802","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14260","-1","","","","","Bloodwoven Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2900","14504","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1053","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","39" +"14261","-1","","","","","Bloodwoven Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4044","20222","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","969","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"14262","-1","","","","","Bloodwoven Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3156","15783","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","717","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14263","-1","","","","","Bloodwoven Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5987","29937","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","634","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14264","-1","","","","","Bloodwoven Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8013","40067","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","550","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14265","-1","","","","","Bloodwoven Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9853","49269","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","467","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14266","-1","","","","","Bloodwoven Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5606","28031","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1138","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14267","-1","","","","","Bloodwoven Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9926","49634","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","467","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14268","-1","","","","","Gaea's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3486","17432","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1054","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14269","-1","","","","","Gaea's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5669","28346","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","802","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14270","-1","","","","","Gaea's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4877","24389","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","969","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14271","-1","","","","","Gaea's Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6599","32996","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","635","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14272","-1","","","","","Gaea's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3821","19105","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","718","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14273","-1","","","","","Gaea's Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6375","31875","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1138","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14274","-1","","","","","Gaea's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10448","52244","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","551","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14275","-1","","","","","Gaea's Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11115","55575","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","468","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14276","-1","","","","","Gaea's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3598","17992","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","886","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14277","-1","","","","","Gaea's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10131","50656","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","468","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14278","-1","","","","","Opulent Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6725","33626","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1139","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14279","-1","","","","","Opulent Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4206","21032","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1055","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14280","-1","","","","","Opulent Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5919","29597","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","970","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14281","-1","","","","","Opulent Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8178","40891","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","636","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14282","-1","","","","","Opulent Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4552","22761","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14283","-1","","","","","Opulent Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11646","58233","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","552","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14284","-1","","","","","Opulent Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13135","65679","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","469","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14285","-1","","","","","Opulent Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6905","34527","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","803","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14286","-1","","","","","Opulent Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4620","23104","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","887","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14287","-1","","","","","Opulent Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13283","66415","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","469","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14288","-1","","","","","Arachnidian Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14132","70662","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","469","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14289","-1","","","","","Arachnidian Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5131","25659","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","887","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14290","-1","","","","","Arachnidian Footpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7725","38628","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","803","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14291","-1","","","","","Arachnidian Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4830","24154","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1055","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14292","-1","","","","","Arachnidian Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6795","33978","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","971","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14293","-1","","","","","Arachnidian Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9857","49288","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","637","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14294","-1","","","","","Arachnidian Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5223","26119","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","719","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14295","-1","","","","","Arachnidian Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13237","66185","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","553","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14296","-1","","","","","Arachnidian Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7568","37841","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","1140","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14297","-1","","","","","Arachnidian Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13556","67782","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","469","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14298","-1","","","","","Bonecaster's Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9629","48145","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1141","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14299","-1","","","","","Bonecaster's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8602","43014","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","804","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14300","-1","","","","","Bonecaster's Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7685","38425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","972","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14301","-1","","","","","Bonecaster's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5451","27258","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1056","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14302","-1","","","","","Bonecaster's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6517","32588","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","721","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14303","-1","","","","","Bonecaster's Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16209","81046","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","470","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14304","-1","","","","","Bonecaster's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6194","30974","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","889","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14305","-1","","","","","Bonecaster's Sarong","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14349","71748","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","553","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14306","-1","","","","","Bonecaster's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16831","84155","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","470","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14307","-1","","","","","Bonecaster's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12064","60324","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","638","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14308","-1","","","","","Celestial Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17188","85944","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","471","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14309","-1","","","","","Celestial Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34335","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","889","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14310","-1","","","","","Celestial Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11615","58077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14311","-1","","","","","Celestial Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6524","32622","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1057","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14312","-1","","","","","Celestial Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13077","65385","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","639","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14313","-1","","","","","Celestial Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9298","46494","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","972","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14314","-1","","","","","Celestial Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7854","39270","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","722","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14315","-1","","","","","Celestial Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16550","82753","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","554","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14316","-1","","","","","Celestial Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11271","56356","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1142","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14317","-1","","","","","Celestial Silk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16062","80312","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","471","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14318","-1","","","","","Resplendent Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16569","82846","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","471","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14319","-1","","","","","Resplendent Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11401","57007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","806","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14320","-1","","","","","Resplendent Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6855","34277","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1057","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14321","-1","","","","","Resplendent Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9438","47190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","973","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14322","-1","","","","","Resplendent Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12785","63928","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","639","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14323","-1","","","","","Resplendent Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8322","41613","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","722","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14324","-1","","","","","Resplendent Sarong","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16706","83533","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","554","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14325","-1","","","","","Resplendent Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12751","63758","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1143","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14326","-1","","","","","Resplendent Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17533","87666","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","471","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14327","-1","","","","","Resplendent Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7659","38297","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","890","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14328","-1","","","","","Eternal Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18134","90674","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14329","-1","","","","","Eternal Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13115","65577","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","807","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14330","-1","","","","","Eternal Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8655","43275","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1059","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14331","-1","","","","","Eternal Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11654","58274","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","974","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14332","-1","","","","","Eternal Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13616","68082","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","640","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"14333","-1","","","","","Eternal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8989","44947","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","723","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14334","-1","","","","","Eternal Sarong","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18041","90205","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","555","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14335","-1","","","","","Eternal Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13578","67894","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1143","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14336","-1","","","","","Eternal Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16880","84403","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","472","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14337","-1","","","","","Eternal Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8253","41266","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","891","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14338","-1","","","","","Empty Water Tube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14339","-1","","","","","Moonwell Water Tube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14340","-1","","","","","Freezing Lich Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20305","101528","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","0","0","0","0","0","0","0","0","0","57" +"14341","-1","","","","","Rune Thread","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14342","-1","","","","","Mooncloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14343","-1","","","","","Small Brilliant Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14344","-1","","","","","Large Brilliant Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","36000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14363","-1","","","","","Deprecated Runic Cloth Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","326","1633","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","11" +"14364","-1","","","","","Mystic's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1625","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","13" +"14365","-1","","","","","Mystic's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","214","1072","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","1","0","0","0","0","0","0","0","0","10" +"14366","-1","","","","","Mystic's Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","189","949","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14367","-1","","","","","Mystic's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","252","1260","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","0","0","0","0","0","0","0","0","0","14" +"14368","-1","","","","","Mystic's Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","346","1730","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14369","-1","","","","","Mystic's Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","809","4049","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","7","0","0","0","0","0","0","0","0","18" +"14370","-1","","","","","Mystic's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","473","2365","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","0","0","0","0","0","0","0","0","0","14" +"14371","-1","","","","","Mystic's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","816","4080","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","7","0","0","0","0","0","0","0","0","0","18" +"14372","-1","","","","","Sanguine Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1430","7151","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","7","0","0","0","0","0","0","0","0","23" +"14373","-1","","","","","Sanguine Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","525","2625","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","3","0","0","0","0","0","0","0","0","20" +"14374","-1","","","","","Sanguine Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","699","3498","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14375","-1","","","","","Sanguine Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2644","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","2","0","0","0","0","0","0","0","0","20" +"14376","-1","","","","","Sanguine Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","552","2760","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","17" +"14377","-1","","","","","Sanguine Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","602","3011","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","4","0","0","0","0","0","0","0","0","21" +"14378","-1","","","","","Sanguine Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","997","4987","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","22" +"14379","-1","","","","","Sanguine Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1615","8076","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","9","0","0","0","0","0","0","0","0","0","24" +"14380","-1","","","","","Sanguine Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1473","7369","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","6","7","0","0","0","0","0","0","0","0","23" +"14381","-1","","","","","Grimtotem Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14382","-1","","","","","Durability Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14383","-1","","","","","Durability Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14384","-1","","","","","Durability Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14385","-1","","","","","Durability Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14386","-1","","","","","Durability Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14387","-1","","","","","Durability Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14388","-1","","","","","Durability Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14389","-1","","","","","Durability Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14390","-1","","","","","Durability Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","16","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14391","-1","","","","","Durability Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14392","-1","","","","","Durability Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14393","-1","","","","","Durability Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","16","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14394","-1","","","","","Durability Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","16","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"14395","-1","You know opening this would be a terrible idea.","","","","Spells of Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14396","-1","You're glad you don't understand the runes inscribed on the cover.","","","","Incantations from the Nether","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14397","-1","","","","","Resilient Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1600","8001","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","0","0","0","0","0","0","0","0","0","27" +"14398","-1","","","","","Resilient Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2355","11778","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","0","0","0","0","0","0","0","0","0","28" +"14399","-1","","","","","Resilient Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1465","7328","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","0","0","0","0","0","0","0","0","0","26" +"14400","-1","","","","","Resilient Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1215","6079","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","0","0","0","0","0","0","0","0","0","24" +"14401","-1","","","","","Resilient Cap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1786","8933","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","4","0","0","0","0","0","0","0","0","28" +"14402","-1","","","","","Resilient Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","838","4190","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","0","0","0","0","0","0","0","0","24" +"14403","-1","","","","","Resilient Handgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1017","5089","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","4","0","0","0","0","0","0","0","0","26" +"14404","-1","","","","","Resilient Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2472","12360","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","0","0","0","0","0","0","0","0","0","28" +"14405","-1","","","","","Resilient Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2480","12403","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","0","0","0","0","0","0","0","0","0","28" +"14406","-1","","","","","Resilient Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","935","4675","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","0","0","0","0","0","0","0","0","25" +"14407","-1","","","","","Stonecloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4266","21332","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","15","0","0","0","0","0","0","0","0","34" +"14408","-1","","","","","Stonecloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2275","11376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","8","0","0","0","0","0","0","0","0","30" +"14409","-1","","","","","Stonecloth Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1707","8536","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","3","1","0","0","0","0","0","0","0","28" +"14410","-1","","","","","Stonecloth Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2710","13550","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","33" +"14411","-1","","","","","Stonecloth Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1387","6939","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","5","0","0","0","0","0","0","0","0","30" +"14412","-1","","","","","Stonecloth Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2298","11494","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","4","0","0","0","0","0","0","0","0","31" +"14413","-1","","","","","Stonecloth Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3947","19737","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","15","0","0","0","0","0","0","0","0","34" +"14414","-1","","","","","Stonecloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1276","6381","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","6","0","0","0","0","0","0","0","0","29" +"14415","-1","","","","","Stonecloth Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3410","17051","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","5","3","0","0","0","0","0","0","0","32" +"14416","-1","","","","","Stonecloth Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1285","6429","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","4","0","0","0","0","0","0","0","0","29" +"14417","-1","","","","","Silksand Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5888","29441","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","16","0","0","0","0","0","0","0","0","39" +"14418","-1","","","","","Silksand Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3098","15490","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","3","0","0","0","0","0","0","0","0","34" +"14419","-1","","","","","Silksand Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1919","9597","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","33" +"14420","-1","","","","","Silksand Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2889","14446","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","5","0","0","0","0","0","0","0","0","33" +"14421","-1","","","","","Silksand Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3945","19726","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","6","9","10","0","0","0","0","0","0","0","37" +"14422","-1","","","","","Silksand Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2263","11315","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","5","0","0","0","0","0","0","0","0","35" +"14423","-1","","","","","Silksand Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3406","17034","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","3","0","0","0","0","0","0","0","0","35" +"14424","-1","","","","","Silksand Legwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5316","26584","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","9","0","0","0","0","0","0","0","0","37" +"14425","-1","","","","","Silksand Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6223","31119","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","5","16","0","0","0","0","0","0","0","0","39" +"14426","-1","","","","","Silksand Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2125","10627","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","34" +"14427","-1","","","","","Windchaser Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9124","45623","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","17","0","0","0","0","0","0","0","0","44" +"14428","-1","","","","","Windchaser Footpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4717","23586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","12","0","0","0","0","0","0","0","0","39" +"14429","-1","","","","","Windchaser Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2644","13220","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","0","0","0","0","0","0","0","0","0","38" +"14430","-1","","","","","Windchaser Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3686","18433","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","6","0","0","0","0","0","0","0","37" +"14431","-1","","","","","Windchaser Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2877","14389","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","0","0","0","0","0","0","0","0","0","39" +"14432","-1","","","","","Windchaser Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4679","23398","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","0","0","0","0","0","0","0","0","0","40" +"14433","-1","","","","","Windchaser Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6764","33822","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","10","0","0","0","0","0","0","0","0","41" +"14434","-1","","","","","Windchaser Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8706","43531","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","10","17","0","0","0","0","0","0","0","0","44" +"14435","-1","","","","","Windchaser Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2778","13894","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","38" +"14436","-1","","","","","Windchaser Coronet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5270","26351","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","7","15","0","0","0","0","0","0","0","0","41" +"14437","-1","","","","","Venomshroud Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12002","60014","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","18","0","0","0","0","0","0","0","0","49" +"14438","-1","","","","","Venomshroud Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6192","30962","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","5","0","0","0","0","0","0","0","0","43" +"14439","-1","","","","","Venomshroud Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3836","19180","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","4","0","0","0","0","0","0","0","0","42" +"14440","-1","","","","","Venomshroud Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5347","26737","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","6","0","0","0","0","0","0","0","0","41" +"14441","-1","","","","","Venomshroud Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7167","35835","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","10","0","0","0","0","0","0","0","0","45" +"14442","-1","","","","","Venomshroud Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4481","22407","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","6","0","0","0","0","0","0","0","0","44" +"14443","-1","","","","","Venomshroud Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6745","33729","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","4","0","0","0","0","0","0","0","0","44" +"14444","-1","","","","","Venomshroud Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10955","54775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","6","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","12","0","0","0","0","0","0","0","0","47" +"14445","-1","","","","","Venomshroud Silk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12353","61765","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","4","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","20","0","0","0","0","0","0","0","0","49" +"14446","-1","","","","","Venomshroud Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4248","21242","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","8","0","0","0","0","0","0","0","0","43" +"14447","-1","","","","","Highborne Footpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8801","44009","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","9","0","0","0","0","0","0","0","0","48" +"14448","-1","","","","","Highborne Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5555","27777","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","6","0","0","0","0","0","0","0","0","47" +"14449","-1","","","","","Highborne Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10125","50629","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","22","6","0","0","0","0","0","0","0","0","52" +"14450","-1","","","","","Highborne Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7364","36824","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","4","0","0","0","0","0","0","0","46" +"14451","-1","","","","","Highborne Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","27685","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","3","0","0","0","0","0","0","0","48" +"14452","-1","","","","","Highborne Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8836","44184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","11","0","0","0","0","0","0","0","0","49" +"14453","-1","","","","","Highborne Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15677","78387","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","19","15","0","0","0","0","0","0","0","0","54" +"14454","-1","","","","","Highborne Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5598","27994","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","12","0","0","0","0","0","0","0","0","48" +"14455","-1","","","","","Highborne Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15792","78963","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","15","0","0","0","0","0","0","0","0","54" +"14456","-1","","","","","Elunarian Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17574","87870","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","21","0","0","0","0","0","0","0","0","59" +"14457","-1","","","","","Elunarian Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7575","37879","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","10","0","0","0","0","0","0","0","0","53" +"14458","-1","","","","","Elunarian Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12573","62867","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","6","0","0","0","0","0","0","0","0","55" +"14459","-1","","","","","Elunarian Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10798","53991","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","11","2","0","0","0","0","0","0","0","52" +"14460","-1","","","","","Elunarian Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13196","65982","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","16","0","0","0","0","0","0","0","0","58" +"14461","-1","","","","","Elunarian Handgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8711","43556","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","8","8","0","0","0","0","0","0","0","57" +"14462","-1","","","","","Elunarian Sarong","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17483","87419","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","14","14","0","0","0","0","0","0","0","57" +"14463","-1","","","","","Elunarian Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13160","65800","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","10","10","0","0","0","0","0","0","0","57" +"14464","-1","","","","","Elunarian Silk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18088","90444","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","12","21","0","0","0","0","0","0","0","0","59" +"14465","-1","","","","","Elunarian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8596","42981","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","20","0","0","0","0","0","0","0","0","55" +"14466","-1","Teaches you how to sew a Frostweave Tunic.","","","","Pattern: Frostweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","197","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14467","-1","Teaches you how to sew a Frostweave Robe.","","","","Pattern: Frostweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","197","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14468","-1","Teaches you how to sew a Runecloth Bag.","","","","Pattern: Runecloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14469","-1","Teaches you how to sew a Runecloth Robe.","","","","Pattern: Runecloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14470","-1","Teaches you how to sew a Runecloth Tunic.","","","","Pattern: Runecloth Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14471","-1","Teaches you how to sew a Cindercloth Vest.","","","","Pattern: Cindercloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14472","-1","Teaches you how to sew a Runecloth Cloak.","","","","Pattern: Runecloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14473","-1","Teaches you how to sew a Ghostweave Belt.","","","","Pattern: Ghostweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14474","-1","Teaches you how to sew Frostweave Gloves.","","","","Pattern: Frostweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","197","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14475","-1","","","","","Monster - Axe, 2H War A03 White","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14476","-1","Teaches you how to sew Cindercloth Gloves.","","","","Pattern: Cindercloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14477","-1","Teaches you how to sew Ghostweave Gloves.","","","","Pattern: Ghostweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14478","-1","Teaches you how to sew a Brightcloth Robe.","","","","Pattern: Brightcloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14479","-1","Teaches you how to sew Brightcloth Gloves.","","","","Pattern: Brightcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","197","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14480","-1","Teaches you how to sew a Ghostweave Vest.","","","","Pattern: Ghostweave Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14481","-1","Teaches you how to sew Runecloth Gloves.","","","","Pattern: Runecloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14482","-1","Teaches you how to sew a Cindercloth Cloak.","","","","Pattern: Cindercloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14483","-1","Teaches you how to sew Felcloth Pants.","","","","Pattern: Felcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14484","-1","Teaches you how to sew a Brightcloth Cloak.","","","","Pattern: Brightcloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14485","-1","Teaches you how to sew Wizardweave Leggings.","","","","Pattern: Wizardweave Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14486","-1","Teaches you how to sew a Cloak of Fire.","","","","Pattern: Cloak of Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14487","-1","","","","","Bonechill Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49623","248119","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","62","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"14488","-1","Teaches you how to sew Runecloth Boots.","","","","Pattern: Runecloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14489","-1","Teaches you how to sew Frostweave Pants.","","","","Pattern: Frostweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14490","-1","Teaches you how to sew Cindercloth Pants.","","","","Pattern: Cindercloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","197","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14491","-1","Teaches you how to sew Runecloth Pants.","","","","Pattern: Runecloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14492","-1","Teaches you how to sew Felcloth Boots.","","","","Pattern: Felcloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14493","-1","Teaches you how to sew a Robe of Winter Night.","","","","Pattern: Robe of Winter Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14494","-1","Teaches you how to sew Brightcloth Pants.","","","","Pattern: Brightcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14495","-1","Teaches you how to sew Ghostweave Pants.","","","","Pattern: Ghostweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14496","-1","Teaches you how to sew a Felcloth Hood.","","","","Pattern: Felcloth Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14497","-1","Teaches you how to sew Mooncloth Leggings.","","","","Pattern: Mooncloth Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14498","-1","Teaches you how to sew a Runecloth Headband.","","","","Pattern: Runecloth Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","197","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14499","-1","Teaches you how to sew a Mooncloth Bag.","","","","Pattern: Mooncloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14500","-1","Teaches you how to sew a Wizardweave Robe.","","","","Pattern: Wizardweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14501","-1","Teaches you how to sew a Mooncloth Vest.","","","","Pattern: Mooncloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14502","-1","","","","","Frostbite Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12169","60847","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","15","15","0","0","0","0","0","0","0","57" +"14503","-1","","","","","Death's Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18323","91616","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","4","7","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","10","10","0","0","0","0","0","57" +"14504","-1","Teaches you how to sew Runecloth Shoulders.","","","","Pattern: Runecloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14505","-1","Teaches you how to sew a Wizardweave Turban.","","","","Pattern: Wizardweave Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14506","-1","Teaches you how to sew a Felcloth Robe.","","","","Pattern: Felcloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14507","-1","Teaches you how to sew Mooncloth Shoulders.","","","","Pattern: Mooncloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14508","-1","Teaches you how to sew Felcloth Shoulders.","","","","Pattern: Felcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14509","-1","Teaches you how to sew a Mooncloth Circlet.","","","","Pattern: Mooncloth Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14510","-1","Teaches you how to sew a Bottomless Bag.","","","","Pattern: Bottomless Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"14511","-1","Teaches you how to sew Gloves of Spell Mastery.","","","","Pattern: Gloves of Spell Mastery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14512","-1","Teaches you how to sew Truefaith Vestments.","","","","Pattern: Truefaith Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14513","-1","Teaches you how to sew a Robe of the Archmage.","","","","Pattern: Robe of the Archmage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1376","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14514","-1","Teaches you how to sew a Robe of the Void.","","","","Pattern: Robe of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"14522","-1","","","","","Maelstrom Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29200","146003","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","20","20","0","0","0","0","0","0","0","57" +"14523","-1","","","","","Demon Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14524","-1","","","","","Monster - Sword, Katana 2H Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14525","-1","","","","","Boneclenched Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17330","86654","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","15","0","0","0","0","0","0","0","0","57" +"14526","-1","Teaches you how to purify Felcloth and turn it into Mooncloth.","","","","Pattern: Mooncloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14527","-1","","","","","Monster - Mace2H, Horde Hammer A03 Dark","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14528","-1","","","","","Rattlecage Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31870","159352","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","7","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","12","7","0","0","0","0","0","0","0","57" +"14529","-1","","","","","Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","425","1700","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14530","-1","","","","","Heavy Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14531","-1","","","","","Frightskull Shaft","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59891","299458","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","59","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"14532","-1","","","","","Monster - Mace2H, Warhammer Jade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14533","-1","","","","","Monster - Mace, Hammer Blue Mighty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14534","-1","","","","","Monster - Axe, Metal Blue Badass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14535","-1","","","","","Monster - Spear, Cool Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14536","-1","","","","","Bonebrace Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31164","155820","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1535","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","4","13","0","0","0","0","0","0","0","0","56" +"14537","-1","","","","","Corpselight Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27688","138441","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","0","0","0","0","0","0","0","0","0","57" +"14538","-1","","","","","Deadwalker Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15908","79544","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","9","0","0","0","0","0","0","0","0","57" +"14539","-1","","","","","Bone Ring Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19956","99784","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","6","5","3","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","30","6","6","5","0","0","0","0","0","57" +"14540","-1","","","","","Taragaman the Hungerer's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14541","-1","","","","","Barovian Family Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66079","330395","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","56" +"14542","-1","","","","","Kravel's Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14543","-1","","","","","Darkshade Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9770","48851","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","10","15","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","6","6","0","0","0","0","0","0","0","57" +"14544","-1","This small rune marks the bearer as a lieutenant in the Burning Blade.","","","","Lieutenant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14545","-1","","","","","Ghostloom Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24612","123062","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","13","10","0","0","0","0","0","0","0","57" +"14546","-1","","","","","Roon's Kodo Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14547","-1","","","","","Hand of Iruxos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14548","-1","","","","","Royal Cap Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23116","115582","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","9","8","0","0","0","0","0","0","0","57" +"14549","-1","","","","","Boots of Avoidance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13637","68188","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","14","11","0","0","0","0","0","0","0","0","40" +"14550","-1","","","","","Bladebane Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8802","44012","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","10","8","6","0","0","0","0","0","0","44" +"14551","-1","","","","","Edgemaster's Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53008","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","31","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","17","0","0","0","0","0","0","0","0","44" +"14552","-1","","","","","Stockade Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26860","134304","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","10","0","0","0","0","0","0","0","0","50" +"14553","-1","","","","","Sash of Mercy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17125","85625","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","14","0","0","0","0","0","0","0","0","56" +"14554","-1","","","","","Cloudkeeper Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48787","243938","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","705","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","20","20","0","0","0","0","0","0","0","57" +"14555","-1","","","","","Alcor's Sunrazor","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70900","354500","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"14557","-1","","","","","The Lion Horn of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17880","71520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","58" +"14558","-1","","","","","Lady Maye's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10500","42000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","10","10","0","0","0","0","0","0","0","59" +"14559","-1","","","","","Prospector's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1399","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","13" +"14560","-1","","","","","Prospector's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","484","2422","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","14" +"14561","-1","","","","","Prospector's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1225","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14562","-1","","","","","Prospector's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1039","5199","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","3","2","0","0","0","0","0","0","0","18" +"14563","-1","","","","","Prospector's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1377","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","1","0","0","0","0","0","0","0","0","12" +"14564","-1","","","","","Prospector's Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","304","1524","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","2","0","0","0","0","0","0","0","0","14" +"14565","-1","","","","","Prospector's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","809","4046","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","6","1","0","0","0","0","0","0","0","0","16" +"14566","-1","","","","","Prospector's Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1010","5054","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","4","0","0","0","0","0","0","0","0","20" +"14567","-1","","","","","Bristlebark Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","529","2648","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","4","0","0","0","0","0","0","0","0","18" +"14568","-1","","","","","Bristlebark Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","797","3987","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","3","0","0","0","0","0","0","0","0","18" +"14569","-1","","","","","Bristlebark Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","472","2361","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","2","0","0","0","0","0","0","0","0","17" +"14570","-1","","","","","Bristlebark Blouse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1870","9351","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","0","0","0","0","0","0","0","0","23" +"14571","-1","","","","","Bristlebark Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","496","2481","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","0","0","0","0","0","0","0","0","0","16" +"14572","-1","","","","","Bristlebark Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3048","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14573","-1","","","","","Bristlebark Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1289","6445","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","3","0","0","0","0","0","0","0","0","22" +"14574","-1","","","","","Bristlebark Britches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1568","7840","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","3","0","0","0","0","0","0","0","0","21" +"14575","-1","","","","","Monster - Mace, Bashguud's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14576","-1","","","","","Ebon Hilt of Marduk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48770","243854","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","59","-1","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","54" +"14577","-1","","","","","Skullsmoke Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20844","104223","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","10","0","0","5","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","56" +"14578","-1","","","","","Dokebi Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","983","4917","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","1","0","0","0","0","0","0","0","24" +"14579","-1","","","","","Dokebi Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1791","8958","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","0","0","0","0","0","0","0","0","26" +"14580","-1","","","","","Dokebi Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","818","4094","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","3","0","0","0","0","0","0","0","0","22" +"14581","-1","","","","","Dokebi Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2912","14563","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","6","0","0","0","0","0","0","0","0","28" +"14582","-1","","","","","Dokebi Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1089","5445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","2","0","0","0","0","0","0","0","0","23" +"14583","-1","","","","","Dokebi Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1333","6669","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","6","0","0","0","0","0","0","0","0","27" +"14584","-1","","","","","Dokebi Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2673","13365","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","5","11","4","0","0","0","0","0","0","0","30" +"14585","-1","","","","","Dokebi Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2687","13439","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","3","0","0","0","0","0","0","0","27" +"14586","-1","","","","","Monster - Mace2H, Fist of Omokk","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14587","-1","","","","","Dokebi Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2030","10154","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","5","2","0","0","0","0","0","0","0","27" +"14588","-1","","","","","Hawkeye's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1989","9947","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","6","0","0","0","0","0","0","0","31" +"14589","-1","","","","","Hawkeye's Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3294","16474","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","10","0","0","0","0","0","0","0","0","32" +"14590","-1","","","","","Hawkeye's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1821","9109","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","6","0","0","0","0","0","0","0","0","30" +"14591","-1","","","","","Hawkeye's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4180","20904","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","8","4","0","0","0","0","0","0","0","35" +"14592","-1","","","","","Hawkeye's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5594","27974","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","12","0","0","0","0","0","0","0","0","35" +"14593","-1","","","","","Hawkeye's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2210","11051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","3","0","0","0","0","0","0","0","0","30" +"14594","-1","","","","","Hawkeye's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2236","11183","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","8","0","0","0","0","0","0","0","0","32" +"14595","-1","","","","","Hawkeye's Breeches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","22503","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","3","0","0","0","0","0","0","0","0","33" +"14596","-1","","","","","Hawkeye's Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3388","16943","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","5","0","0","0","0","0","0","0","0","33" +"14597","-1","","","","","Deprecated Warden's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7312","36564","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","7","0","0","0","0","0","0","0","0","36" +"14598","-1","","","","","Warden's Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2655","13275","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","4","6","0","0","0","0","0","0","0","35" +"14599","-1","","","","","Warden's Footpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4663","23316","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","9","3","0","0","0","0","0","0","0","37" +"14600","-1","","","","","Warden's Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2675","13377","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","8","0","0","0","0","0","0","0","0","35" +"14601","-1","","","","","Warden's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7307","36535","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","12","0","0","0","0","0","0","0","0","39" +"14602","-1","","","","","Warden's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2995","14976","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","5","0","0","0","0","0","0","0","34" +"14603","-1","","","","","Warden's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4383","21917","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","4","4","0","0","0","0","0","0","0","36" +"14604","-1","","","","","Warden's Wizard Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5986","29931","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","11","3","0","0","0","0","0","0","0","40" +"14605","-1","","","","","Warden's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6868","34340","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","38" +"14606","-1","","","","","Warden's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2955","14775","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","4","0","0","0","0","0","0","0","0","36" +"14607","-1","","","","","Hawkeye's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5581","27906","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","6","0","0","0","0","0","0","0","0","32" +"14608","-1","","","","","Dokebi Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3162","15811","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","5","0","0","0","0","0","0","0","0","26" +"14609","-1","","","","","Deprecated Ceremonial Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","3004","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","2","0","0","0","0","0","0","0","0","12" +"14610","-1","","","","","Araj's Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14611","-1","","","","","Bloodmail Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31394","156970","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","15","10","10","0","0","0","0","0","0","56" +"14612","-1","","","","","Bloodmail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31503","157515","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","16","15","12","0","0","0","0","0","0","56" +"14613","-1","Engraved: To my dear boy, Taelan. With Love, Father.","","","","Taelan's Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14614","-1","","","","","Bloodmail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15863","79317","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","9","12","12","0","0","0","0","0","0","56" +"14615","-1","","","","","Bloodmail Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14404","72024","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","56" +"14616","-1","","","","","Bloodmail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21785","108926","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","9","9","0","0","0","0","0","0","56" +"14617","-1","","","","","Sawbones Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14618","-1","","","","","Monster - Staff, Jeweled Red Staff Low Red Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14619","-1","","","","","Skeletal Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14620","-1","","","","","Deathbone Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17226","86132","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","0","0","0","0","0","0","0","0","0","56" +"14621","-1","","","","","Deathbone Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25741","128709","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","0","0","0","0","0","0","0","0","0","56" +"14622","-1","","","","","Deathbone Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17357","86789","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","0","0","0","0","0","0","0","0","0","56" +"14623","-1","","","","","Deathbone Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34649","173246","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","56" +"14624","-1","","","","","Deathbone Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34776","173882","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","0","0","0","0","0","0","0","0","0","56" +"14625","-1","Order of the Silver Hand","","","","Symbol of Lost Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14626","-1","","","","","Necropile Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20021","100107","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","22","12","12","0","0","0","0","0","0","0","56" +"14627","-1","Teaches you how to sew a Bright Yellow Shirt.","","","","Pattern: Bright Yellow Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","197","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14628","-1","","","","","Imbued Skeletal Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14629","-1","","","","","Necropile Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10389","51945","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","7","11","0","0","0","0","0","0","0","56" +"14630","-1","Teaches you how to sew an Enchanter's Cowl.","","","","Pattern: Enchanter's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","165","197","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14631","-1","","","","","Necropile Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15694","78470","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","9","0","0","0","0","0","0","0","56" +"14632","-1","","","","","Necropile Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21000","105000","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","12","21","0","0","0","0","0","0","0","56" +"14633","-1","","","","","Necropile Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15806","79030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","56" +"14634","-1","Teaches you how to make Frost Oil.","","","","Recipe: Frost Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","171","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"14635","-1","Teaches you how to craft a Gem-studded Leather Belt.","","","","Pattern: Gem-studded Leather Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","185","165","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14636","-1","","","","","Cadaverous Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12048","60240","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","56" +"14637","-1","","","","","Cadaverous Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24189","120948","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","8","0","0","0","0","0","0","0","0","56" +"14638","-1","","","","","Cadaverous Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24282","121414","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","0","0","0","0","0","0","0","0","0","56" +"14639","-1","Teaches you how to make a Minor Recombobulator.","","","","Schematic: Minor Recombobulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","140","202","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14640","-1","","","","","Cadaverous Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12233","61167","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","56" +"14641","-1","","","","","Cadaverous Walkers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18420","92101","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","0","0","0","0","0","0","0","0","0","56" +"14642","-1","","","","","Monster - Gun, Tauren Feathers Silver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"14643","-1","","","","","Monster - Axe, 2H Battle A03 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14644","-1","","","","","Skeleton Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14645","-1","This key is missing its head.","","","","Unfinished Skeleton Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14646","-1","","","","","Goldshire Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5805","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14647","-1","","","","","Kharanos Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5841","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14648","-1","","","","","Dolanaar Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5842","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14649","-1","","","","","Razor Hill Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5843","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14650","-1","","","","","Bloodhoof Village Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5844","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14651","-1","","","","","Brill Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5847","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14652","-1","","","","","Scorpashi Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4216","21080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","7","4","0","0","0","0","0","0","0","40" +"14653","-1","","","","","Scorpashi Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6854","34271","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","13","0","0","0","0","0","0","0","0","41" +"14654","-1","","","","","Scorpashi Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3931","19655","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","6","1","0","0","0","0","0","0","0","39" +"14655","-1","","","","","Scorpashi Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10392","51963","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","8","4","0","0","0","0","0","0","0","44" +"14656","-1","","","","","Scorpashi Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4300","21500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","5","2","0","0","0","0","0","0","0","39" +"14657","-1","","","","","Scorpashi Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4195","20979","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","41" +"14658","-1","","","","","Scorpashi Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7884","39422","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","13","3","0","0","0","0","0","0","0","44" +"14659","-1","","","","","Scorpashi Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9382","46912","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","0","0","0","0","0","0","0","0","42" +"14660","-1","","","","","Scorpashi Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7063","35315","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","7","6","0","0","0","0","0","0","0","42" +"14661","-1","","","","","Keeper's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5461","27305","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","7","6","0","0","0","0","0","0","0","44" +"14662","-1","","","","","Keeper's Hooves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9413","47066","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","12","3","0","0","0","0","0","0","0","46" +"14663","-1","","","","","Keeper's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5141","25708","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","9","0","0","0","0","0","0","0","0","43" +"14664","-1","","","","","Keeper's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15058","75293","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","18","5","0","0","0","0","0","0","0","49" +"14665","-1","","","","","Keeper's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6214","31073","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","3","0","0","0","0","0","0","0","0","43" +"14666","-1","","","","","Keeper's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6367","31837","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","46" +"14667","-1","","","","","Keeper's Wreath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10770","53853","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","10","10","0","0","0","0","0","0","0","48" +"14668","-1","","","","","Keeper's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13597","67985","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","47" +"14669","-1","","","","","Keeper's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9654","48271","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","6","0","0","0","0","0","0","0","0","46" +"14670","-1","","","","","Pridelord Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20396","101980","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","5","0","0","0","0","0","0","0","0","54" +"14671","-1","","","","","Pridelord Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13012","65062","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","14","0","0","0","0","0","0","0","51" +"14672","-1","","","","","Pridelord Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7309","36548","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","5","3","0","0","0","0","0","0","0","48" +"14673","-1","","","","","Pridelord Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8303","41518","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","9","5","0","0","0","0","0","0","0","47" +"14674","-1","","","","","Pridelord Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8270","41353","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","12","8","0","0","0","0","0","0","0","50" +"14675","-1","","","","","Pridelord Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8182","40911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","8","7","0","0","0","0","0","0","0","51" +"14676","-1","","","","","Pridelord Halo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13841","69205","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","14","6","0","0","0","0","0","0","0","53" +"14677","-1","","","","","Pridelord Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18524","92622","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","23","4","3","0","0","0","0","0","0","0","53" +"14678","-1","","","","","Pridelord Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13156","65780","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","4","2","0","0","0","0","0","0","0","52" +"14679","-1","The picture brings a smile to your face.","","","","Of Love and Family","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2351","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","3","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14680","-1","","","","","Indomitable Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21805","109028","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","23","9","0","0","0","0","0","0","0","59" +"14681","-1","","","","","Indomitable Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15980","79902","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","5","6","16","0","0","0","0","0","0","0","57" +"14682","-1","","","","","Indomitable Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9906","49534","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","5","0","0","0","0","0","0","0","0","54" +"14683","-1","","","","","Indomitable Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11932","59660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","13","0","0","0","0","0","0","0","0","54" +"14684","-1","","","","","Indomitable Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10477","52389","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","17","0","0","0","0","0","0","0","0","55" +"14685","-1","","","","","Indomitable Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10810","54051","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","14","0","0","0","0","0","0","0","0","57" +"14686","-1","","","","","Indomitable Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16495","82478","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","18","9","0","0","0","0","0","0","0","58" +"14687","-1","","","","","Indomitable Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21778","108890","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","15","7","0","0","0","0","0","0","0","57" +"14688","-1","","","","","Indomitable Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16168","80841","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","5","0","0","0","0","0","0","0","0","56" +"14691","-1","","","","","Deprecated Battle Chain Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116","581","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14696","-1","","","","","Deprecated Battle Chain Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","118","592","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","6" +"14706","-1","","","","","Monster - Staff, 3 Piece Taped Staff Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14707","-1","","","","","Monster - Staff, 3 Piece Taped Staff Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14722","-1","","","","","War Paint Anklewraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","424","2121","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","2","0","0","0","0","0","0","0","0","12" +"14723","-1","","","","","War Paint Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","290","1450","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","12" +"14724","-1","","","","","War Paint Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","253","1265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","1","1","0","0","0","0","0","0","0","11" +"14725","-1","","","","","War Paint Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1460","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","12" +"14726","-1","","","","","War Paint Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1686","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","1","0","0","0","0","0","0","0","0","13" +"14727","-1","","","","","War Paint Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","778","3891","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","3","1","0","0","0","0","0","0","0","14" +"14728","-1","","","","","War Paint Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","485","2429","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","17" +"14729","-1","","","","","War Paint Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","870","4351","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","15" +"14730","-1","","","","","War Paint Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1223","6119","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","4","0","0","0","0","0","0","0","0","18" +"14742","-1","","","","","Hulking Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1118","5592","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","19" +"14743","-1","","","","","Hulking Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","583","2917","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","2","0","0","0","0","0","0","0","0","17" +"14744","-1","","","","","Hulking Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2310","11552","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","8","5","0","0","0","0","0","0","0","0","23" +"14745","-1","","","","","Hulking Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","444","2221","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","1","0","0","0","0","0","0","0","0","15" +"14746","-1","","","","","Hulking Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2948","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","17" +"14747","-1","","","","","Hulking Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","668","3343","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","1","0","0","0","0","0","0","0","18" +"14748","-1","","","","","Hulking Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","7753","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","3","0","0","0","0","0","0","0","0","20" +"14749","-1","","","","","Hulking Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1325","6625","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","4","2","0","0","0","0","0","0","0","0","21" +"14750","-1","","","","","Slayer's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1068","5341","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","0","0","0","0","0","0","0","0","23" +"14751","-1","","","","","Slayer's Surcoat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3454","17271","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","5","3","0","0","0","0","0","0","0","28" +"14752","-1","","","","","Slayer's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","978","4893","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","3","0","0","0","0","0","0","0","0","22" +"14753","-1","","","","","Slayer's Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2610","13052","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","9","7","3","0","0","0","0","0","0","0","28" +"14754","-1","","","","","Slayer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1193","5965","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","24" +"14755","-1","","","","","Slayer's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1118","5591","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","4","0","0","0","0","0","0","0","0","23" +"14756","-1","","","","","Slayer's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1860","9300","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","4","0","0","0","0","0","0","0","0","24" +"14757","-1","","","","","Slayer's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3298","16492","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","3","1","0","0","0","0","0","0","0","27" +"14758","-1","","","","","Slayer's Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2267","11336","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","3","0","0","0","0","0","0","0","0","26" +"14759","-1","","","","","Enduring Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2010","10050","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","3","2","0","0","0","0","0","0","0","29" +"14760","-1","","","","","Enduring Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6263","31318","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","7","3","0","0","0","0","0","0","0","34" +"14761","-1","","","","","Enduring Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2024","10123","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","3","0","0","0","0","0","0","0","0","29" +"14762","-1","","","","","Enduring Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4074","20373","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","4","1","0","0","0","0","0","0","0","32" +"14763","-1","","","","","Enduring Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1685","8425","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","2","2","0","0","0","0","0","0","0","27" +"14764","-1","","","","","Enduring Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2250","11254","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","5","3","0","0","0","0","0","0","0","30" +"14765","-1","","","","","Enduring Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4428","22140","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","6","3","0","0","0","0","0","0","0","33" +"14766","-1","","","","","Enduring Breeches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27430","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","6","8","0","0","0","0","0","0","0","32" +"14767","-1","","","","","Enduring Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4478","22394","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","0","0","0","0","0","0","0","0","33" +"14768","-1","","","","","Ravager's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8566","42834","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","4","10","10","4","0","0","0","0","0","0","39" +"14769","-1","","","","","Ravager's Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5554","27772","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","4","4","0","0","0","0","0","0","0","37" +"14770","-1","","","","","Ravager's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3172","15864","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","0","0","0","0","0","0","0","0","35" +"14771","-1","","","","","Ravager's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3030","15150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","2","2","0","0","0","0","0","0","0","34" +"14772","-1","","","","","Ravager's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3284","16423","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","6","0","0","0","0","0","0","0","0","35" +"14773","-1","","","","","Ravager's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3052","15264","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","6","4","0","0","0","0","0","0","0","34" +"14774","-1","","","","","Ravager's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6252","31262","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","7","0","0","0","0","0","0","0","0","38" +"14775","-1","","","","","Ravager's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8367","41837","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","10","9","9","0","0","0","0","0","0","0","38" +"14776","-1","","","","","Ravager's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6326","31633","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","7","5","3","0","0","0","0","0","0","0","38" +"14777","-1","","","","","Ravager's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9710","48551","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","1380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","6","3","0","0","0","0","0","0","0","39" +"14778","-1","","","","","Khan's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4933","24666","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","6","0","0","0","0","0","0","0","40" +"14779","-1","","","","","Khan's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13347","66739","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","10","0","0","0","0","0","0","0","0","44" +"14780","-1","","","","","Khan's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14289","71446","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","1521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","9","3","0","0","0","0","0","0","0","44" +"14781","-1","","","","","Khan's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4617","23089","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","8","1","0","0","0","0","0","0","0","39" +"14782","-1","","","","","Khan's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5004","25024","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","7","4","0","0","0","0","0","0","0","40" +"14783","-1","","","","","Khan's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5424","27123","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","11","7","0","0","0","0","0","0","0","0","41" +"14784","-1","","","","","Khan's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8202","41011","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","5","0","0","0","0","0","0","0","0","41" +"14785","-1","","","","","Khan's Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9558","47794","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","7","3","0","0","0","0","0","0","0","43" +"14786","-1","","","","","Khan's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11841","59209","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","11","5","0","0","0","0","0","0","0","42" +"14787","-1","","","","","Khan's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8323","41619","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","5","0","0","0","0","0","0","0","0","42" +"14788","-1","","","","","Protector Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6408","32042","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","3","0","0","0","0","0","0","0","0","44" +"14789","-1","","","","","Protector Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17541","87708","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","4","4","0","0","0","0","0","0","0","49" +"14790","-1","","","","","Protector Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18781","93907","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","5","10","0","0","0","0","0","0","0","49" +"14791","-1","","","","","Protector Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6056","30283","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","4","2","0","0","0","0","0","0","0","43" +"14792","-1","","","","","Protector Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6960","34800","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","4","0","0","0","0","0","0","0","0","45" +"14793","-1","","","","","Protector Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6985","34927","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","10","4","0","0","0","0","0","0","0","45" +"14794","-1","","","","","Protector Ankleguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10563","52819","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","8","8","0","0","0","0","0","0","0","45" +"14795","-1","","","","","Protector Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12690","63454","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","7","0","0","0","0","0","0","0","0","48" +"14796","-1","","","","","Protector Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16983","84918","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","6","0","0","0","0","0","0","0","0","48" +"14797","-1","","","","","Protector Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11427","57137","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","6","0","0","0","0","0","0","0","0","46" +"14798","-1","","","","","Bloodlust Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24037","120186","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","20","8","0","0","0","0","0","0","0","54" +"14799","-1","","","","","Bloodlust Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17308","86543","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","4","9","0","0","0","0","0","0","0","53" +"14800","-1","","","","","Bloodlust Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25826","129133","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","11","0","0","0","0","0","0","0","0","54" +"14801","-1","","","","","Bloodlust Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8156","40783","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","9","0","0","0","0","0","0","0","0","47" +"14802","-1","","","","","Bloodlust Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9749","48748","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","7","0","0","0","0","0","0","0","50" +"14803","-1","","","","","Bloodlust Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9087","45438","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","9","0","0","0","0","0","0","0","0","50" +"14804","-1","","","","","Bloodlust Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16296","81482","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","14","0","0","0","0","0","0","0","0","53" +"14805","-1","","","","","Bloodlust Britches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20577","102886","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","7","14","0","0","0","0","0","0","0","52" +"14806","-1","","","","","Bloodlust Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15560","77804","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","14","0","0","0","0","0","0","0","0","52" +"14807","-1","","","","","Bloodlust Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8211","41059","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","5","0","0","0","0","0","0","0","0","48" +"14808","-1","","","","","Warstrike Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11581","57907","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","5","4","0","0","0","0","0","0","0","54" +"14809","-1","","","","","Warstrike Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18905","94527","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","6","4","0","0","0","0","0","0","0","57" +"14810","-1","","","","","Warstrike Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11669","58346","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","3","0","0","0","0","0","0","0","0","54" +"14811","-1","","","","","Warstrike Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25972","129862","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","23","3","0","0","0","0","0","0","0","59" +"14812","-1","","","","","Warstrike Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27804","139024","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","1946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","15","0","0","0","0","0","0","0","0","59" +"14813","-1","","","","","Warstrike Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10601","53007","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","10","3","0","0","0","0","0","0","0","52" +"14814","-1","","","","","Warstrike Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19435","97176","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","10","3","0","0","0","0","0","0","0","58" +"14815","-1","","","","","Warstrike Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12830","64151","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","10","11","0","0","0","0","0","0","0","57" +"14816","-1","","","","","Warstrike Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25752","128764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","22","10","3","0","0","0","0","0","0","0","57" +"14817","-1","","","","","Warstrike Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19471","97358","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","8","0","0","0","0","0","0","0","0","57" +"14818","-1","","","","","Monster - Mace2H, Horde Spiked Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14820","-1","","","","","Monster - Mace2H, Horde Skull Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14821","-1","","","","","Symbolic Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9258","46291","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","9","0","0","0","0","0","0","0","0","40" +"14822","-1","","","","","Monster - Mace2H, Horde Metal Spiked Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14823","-1","","","","","Monster - Mace2H, Horde Red Spiked Badass","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14824","-1","","","","","Monster - Mace2H, Horde Black Spiked Badass","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14825","-1","","","","","Symbolic Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8595","42977","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","7","4","4","0","0","0","0","0","0","0","38" +"14826","-1","","","","","Symbolic Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4068","20342","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","6","0","0","0","0","0","0","0","0","40" +"14827","-1","","","","","Symbolic Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4083","20418","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","3","0","0","0","0","0","0","0","0","40" +"14828","-1","","","","","Symbolic Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6590","32951","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","233","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","6","4","0","0","0","0","0","0","0","40" +"14829","-1","","","","","Symbolic Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8837","44186","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","6","0","0","0","0","0","0","0","0","40" +"14830","-1","","","","","Symbolic Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6640","33201","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","5","0","0","0","0","0","0","0","0","40" +"14831","-1","","","","","Symbolic Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7197","35988","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","5","0","0","0","0","0","0","0","0","40" +"14832","-1","","","","","Symbolic Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4160","20804","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","0","0","0","0","0","0","0","0","40" +"14833","-1","","","","","Tyrant's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5260","26304","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","4","0","0","0","0","0","0","0","0","40" +"14834","-1","","","","","Tyrant's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4889","24446","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","4","4","0","0","0","0","0","0","0","40" +"14835","-1","","","","","Tyrant's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14337","71689","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","7","3","0","0","0","0","0","0","0","43" +"14836","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14837","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Purple Low Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14838","-1","","","","","Tyrant's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5090","25451","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","3","0","0","0","0","0","0","0","0","40" +"14839","-1","","","","","Tyrant's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8212","41064","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","8","8","0","0","0","0","0","0","0","40" +"14840","-1","","","","","Tyrant's Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13869","69349","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","4","0","0","0","0","0","0","0","0","42" +"14841","-1","","","","","Tyrant's Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7484","37420","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","4","0","0","0","0","0","0","0","0","40" +"14842","-1","","","","","Tyrant's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12483","62416","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","1493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","9","5","0","0","0","0","0","0","0","0","43" +"14843","-1","","","","","Tyrant's Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8796","43982","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","5","4","0","0","0","0","0","0","0","41" +"14844","-1","","","","","Sunscale Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20075","100377","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","6","0","0","0","0","0","0","0","0","49" +"14845","-1","","","","","Monster - Staff, Wooden Handle Rounded Head Low Yellow Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14846","-1","","","","","Sunscale Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7981","39907","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","3","0","0","0","0","0","0","0","45" +"14847","-1","","","","","Sunscale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7487","37439","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","5","0","0","0","0","0","0","0","0","44" +"14848","-1","","","","","Sunscale Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11972","59861","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","3","5","0","0","0","0","0","0","0","45" +"14849","-1","","","","","Sunscale Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14448","72240","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","12","6","0","0","0","0","0","0","0","48" +"14850","-1","","","","","Sunscale Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18275","91376","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","47" +"14851","-1","","","","","Sunscale Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12954","64772","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","5","4","0","0","0","0","0","0","0","46" +"14852","-1","","","","","Sunscale Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19420","97100","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","1663","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","6","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","10","5","0","0","0","0","0","0","0","49" +"14853","-1","","","","","Sunscale Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7346","36732","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","6","2","0","0","0","0","0","0","0","43" +"14854","-1","","","","","Vanguard Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28358","141792","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","7","6","0","0","0","0","0","0","0","54" +"14855","-1","","","","","Vanguard Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11444","57220","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","6","9","0","0","0","0","0","0","0","50" +"14856","-1","","","","","Vanguard Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10835","54175","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","8","0","0","0","0","0","0","0","0","49" +"14857","-1","","","","","Vanguard Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16185","80928","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","13","8","3","0","0","0","0","0","0","0","49" +"14858","-1","","","","","Vanguard Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20507","102535","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","10","0","0","0","0","0","0","0","0","53" +"14859","-1","","","","","Vanguard Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25936","129680","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","10","0","0","0","0","0","0","0","0","52" +"14860","-1","","","","","Vanguard Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18380","91904","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","12","8","0","0","0","0","0","0","0","51" +"14861","-1","","","","","Vanguard Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8880","44400","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","11","0","0","0","0","0","0","0","0","47" +"14862","-1","","","","","Warleader's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28887","144436","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","25","8","0","0","0","0","0","0","0","0","58" +"14863","-1","","","","","Warleader's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13995","69978","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","6","0","0","0","0","0","0","0","0","55" +"14864","-1","","","","","Warleader's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13380","66903","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","10","6","0","0","0","0","0","0","0","54" +"14865","-1","","","","","Warleader's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20993","104965","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","8","0","0","0","0","0","0","0","0","55" +"14866","-1","","","","","Warleader's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21662","108312","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","16","5","0","0","0","0","0","0","0","57" +"14867","-1","","","","","Warleader's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29048","145243","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","18","7","0","0","0","0","0","0","0","57" +"14868","-1","","","","","Warleader's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22112","110561","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","434","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","6","0","0","0","0","0","0","0","0","56" +"14869","-1","","","","","Warleader's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13336","66681","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","2","0","0","0","0","0","0","0","0","53" +"14870","-1","","","","","Monster - Axe, 2H Horde Massive Spiked","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14871","-1","","","","","Monster - Sword, Horde C02 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14872","-1","","","","","Tirion's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14873","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14874","-1","","","","","Monster - Axe, Horde C02 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14875","-1","","","","","Monster - Axe, Horde Double Blade A02","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14876","-1","","","","","Monster - Axe, Horde Crystal Blade A03","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14877","-1","","","","","Monster - Axe, Horde Spiked A04","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14878","-1","","","","","Monster - Sword2H, Katana B01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14879","-1","","","","","Monster - Polearm, Blademaster","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14880","-1","","","","","Monster - Axe, Wide Blade Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14881","-1","","","","","Monster - Glaive - 3 Blade Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14882","-1","","","","","Monster - Glaive - 2 Blade Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14883","-1","","","","","Test Glaive A","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","121","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14884","-1","","","","","Test Glaive B","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14885","-1","","","","","Test Glaive C","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14886","-1","","","","","Test Glaive D","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14887","-1","","","","","Test Glaive E","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","126","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14888","-1","","","","","Test Glaive F","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14889","-1","","","","","Test Glaive G","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14890","-1","","","","","Test Glaive H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","127","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14891","-1","","","","","Test Glaive I","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14892","-1","","","","","Test Glaive J","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"14893","-1","","","","","Monster - Axe, Horde C01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"14894","-1","","","","","Lily Root","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65538","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"14895","-1","","","","","Saltstone Surcoat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8583","42918","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","527","0","0","0","0","0","0","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14896","-1","","","","","Saltstone Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5970","29854","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","863","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14897","-1","","","","","Saltstone Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4025","20126","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","779","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14898","-1","","","","","Saltstone Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4039","20198","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","947","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14899","-1","","","","","Saltstone Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6517","32586","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","695","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14900","-1","","","","","Saltstone Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7521","37608","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","611","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14901","-1","","","","","Saltstone Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6104","30520","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1199","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14902","-1","","","","","Saltstone Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7482","37413","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2046","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","36" +"14903","-1","","","","","Saltstone Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3825","19125","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1115","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14904","-1","","","","","Brutish Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16179","80899","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","530","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14905","-1","","","","","Brutish Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5662","28312","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","780","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14906","-1","","","","","Brutish Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5262","26310","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","948","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14907","-1","","","","","Brutish Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10696","53483","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","697","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14908","-1","","","","","Brutish Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14342","71711","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","613","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14909","-1","","","","","Brutish Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8554","42770","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1200","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14910","-1","","","","","Brutish Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5339","26698","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1116","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14911","-1","","","","","Brutish Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9305","46527","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","865","0","0","0","0","0","0","0","0","0","0","306","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14912","-1","","","","","Brutish Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15232","76163","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14913","-1","","","","","Jade Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11698","58491","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","866","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14914","-1","","","","","Jade Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6318","31593","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1117","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14915","-1","","","","","Jade Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20246","101234","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","531","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14916","-1","","","","","Jade Deflector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17254","86272","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","2070","0","0","0","0","0","0","0","0","0","0","1635","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14917","-1","","","","","Jade Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6920","34601","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","781","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"14918","-1","","","","","Jade Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6432","32161","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","949","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14919","-1","","","","","Jade Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13480","67401","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","699","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14920","-1","","","","","Jade Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17053","85267","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","614","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14921","-1","","","","","Jade Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11191","55956","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1202","0","0","0","0","0","0","0","0","0","0","354","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14922","-1","","","","","Lofty Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14451","72255","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","867","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14923","-1","","","","","Lofty Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8104","40524","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1118","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14924","-1","","","","","Lofty Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24555","122778","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","532","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14925","-1","","","","","Lofty Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18448","92242","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","700","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14926","-1","","","","","Lofty Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9852","49264","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","783","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14927","-1","","","","","Lofty Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9329","46648","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","951","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14928","-1","","","","","Lofty Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22179","110896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","616","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14929","-1","","","","","Lofty Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15719","78595","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1203","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14930","-1","","","","","Lofty Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22950","114751","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14931","-1","","","","","Heroic Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30265","151328","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","534","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14932","-1","","","","","Heroic Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20583","102919","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","869","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14933","-1","","","","","Heroic Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13876","69381","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","785","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14934","-1","","","","","Heroic Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11887","59436","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","952","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14935","-1","","","","","Heroic Skullcap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20760","103803","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","701","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14936","-1","","","","","Heroic Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28227","141135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","618","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14937","-1","","","","","Heroic Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19923","99615","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1205","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14938","-1","","","","","Heroic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11387","56937","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1120","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14939","-1","","","","","Warbringer's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11888","59441","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","529","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14940","-1","","","","","Warbringer's Sabatons ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7090","35453","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","864","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14941","-1","","","","","Warbringer's Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4427","22135","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1115","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14942","-1","","","","","Warbringer's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4443","22219","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","779","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14943","-1","","","","","Warbringer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4460","22303","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","947","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14944","-1","","","","","Warbringer's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8395","41976","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","696","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14945","-1","","","","","Warbringer's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11257","56285","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","612","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14946","-1","","","","","Warbringer's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7251","36257","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1200","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14947","-1","","","","","Warbringer's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11198","55992","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","2058","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14948","-1","","","","","Bloodforged Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18028","90142","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","530","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14949","-1","","","","","Bloodforged Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6876","34383","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","781","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14950","-1","","","","","Bloodforged Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6390","31950","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","949","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"14951","-1","","","","","Bloodforged Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10309","51546","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","865","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14952","-1","","","","","Bloodforged Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12792","63963","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","698","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"14953","-1","","","","","Bloodforged Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16028","80140","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","614","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14954","-1","","","","","Bloodforged Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15234","76174","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","2064","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14955","-1","","","","","Bloodforged Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9463","47317","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1201","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","42" +"14956","-1","","","","","Bloodforged Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5471","27356","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1116","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","40" +"14957","-1","","","","","High Chief's Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12617","63088","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","866","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14958","-1","","","","","High Chief's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22643","113216","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","532","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14959","-1","","","","","High Chief's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9052","45263","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","783","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"14960","-1","","","","","High Chief's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8572","42864","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","950","0","0","0","0","0","0","0","0","0","0","275","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"14961","-1","","","","","High Chief's Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16172","80863","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","700","0","0","0","0","0","0","0","0","0","0","426","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14962","-1","","","","","High Chief's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20458","102294","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","615","0","0","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"14963","-1","","","","","High Chief's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14501","72505","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1203","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"14964","-1","","","","","High Chief's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21741","108705","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","2076","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14965","-1","","","","","High Chief's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7833","39165","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1118","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","44" +"14966","-1","","","","","Glorious Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30083","150418","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","534","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14967","-1","","","","","Glorious Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12087","60436","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","784","0","0","0","0","0","0","0","0","0","0","334","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14968","-1","","","","","Glorious Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11444","57220","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","952","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14969","-1","","","","","Glorious Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21381","106907","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","701","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","54" +"14970","-1","","","","","Glorious Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27297","136487","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","617","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","53" +"14971","-1","","","","","Glorious Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19346","96731","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1204","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","52" +"14972","-1","","","","","Glorious Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18316","91580","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","868","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","51" +"14973","-1","","","","","Glorious Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27810","139052","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14974","-1","","","","","Glorious Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10576","52881","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1120","0","0","0","0","0","0","0","0","0","0","229","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"14975","-1","","","","","Exalted Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29662","148311","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","535","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14976","-1","","","","","Exalted Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14191","70956","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","786","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","56" +"14977","-1","","","","","Exalted Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14049","70248","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","953","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"14978","-1","","","","","Exalted Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21873","109365","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","870","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14979","-1","","","","","Exalted Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22251","111257","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","703","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"14980","-1","","","","","Exalted Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30244","151224","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","618","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"14981","-1","","","","","Exalted Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22417","112085","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","1206","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"14982","-1","","","","","Exalted Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28601","143006","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2094","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"14983","-1","","","","","Exalted Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14054","70272","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1121","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15002","-1","","","","","Nimboya's Pike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15003","-1","","","","","Primal Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15004","-1","","","","","Primal Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","212","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15005","-1","","","","","Primal Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28","142","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15006","-1","","","","","Primal Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","365","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15007","-1","","","","","Primal Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15008","-1","","","","","Primal Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","186","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15009","-1","","","","","Primal Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162","812","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","559","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15010","-1","","","","","Primal Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163","815","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","475","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15011","-1","","","","","Lupine Cord","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184","920","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","896","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15012","-1","","","","","Lupine Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","296","1480","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","813","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15013","-1","","","","","Lupine Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","430","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15014","-1","","","","","Lupine Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","585","2928","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1996","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15015","-1","","","","","Lupine Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","434","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15016","-1","","","","","Lupine Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","1002","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","729","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15017","-1","","","","","Lupine Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","611","3059","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","562","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15018","-1","","","","","Lupine Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","706","3531","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","478","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15019","-1","","","","","Lupine Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","366","1834","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"15042","-1","","","","","Empty Termite Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15043","-1","","","","","Plagueland Termites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15044","-1","","","","","Barrel of Plagueland Termites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15045","-1","","","","","Green Dragonscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19938","99692","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","11","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","10","0","0","0","0","0","0","0","0","47" +"15046","-1","","","","","Green Dragonscale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22482","112411","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","11","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","10","0","0","0","0","0","0","0","0","49" +"15047","-1","","","","","Red Dragonscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28812","144063","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","56" +"15048","-1","","","","","Blue Dragonscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24409","122047","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","8","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","8","0","0","0","0","0","0","0","0","52" +"15049","-1","","","","","Blue Dragonscale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20543","102716","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","6","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","6","0","0","0","0","0","0","0","0","54" +"15050","-1","","","","","Black Dragonscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26071","130357","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","344","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","0","0","0","0","0","0","0","0","0","53" +"15051","-1","","","","","Black Dragonscale Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21736","108684","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","6","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","9","0","0","0","0","0","0","0","0","0","55" +"15052","-1","","","","","Black Dragonscale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29774","148871","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","13","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","0","0","0","0","0","0","0","0","0","57" +"15053","-1","","","","","Volcanic Breastplate","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17275","86377","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15054","-1","","","","","Volcanic Leggings","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14559","72799","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","20","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15055","-1","","","","","Volcanic Shoulders","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15470","77350","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15056","-1","","","","","Stormshroud Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20966","104834","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","52" +"15057","-1","","","","","Stormshroud Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18728","93643","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","50" +"15058","-1","","","","","Stormshroud Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17631","88158","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","0","0","0","0","0","0","0","0","0","54" +"15059","-1","","","","","Living Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24776","123882","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","10","0","0","0","0","0","0","0","0","55" +"15060","-1","","","","","Living Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21277","106387","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","8","0","0","0","0","0","0","0","0","52" +"15061","-1","","","","","Living Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13803","69017","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","3","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","8","0","0","0","0","0","0","0","0","49" +"15062","-1","","","","","Devilsaur Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25709","128545","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","0","0","0","0","0","0","0","0","0","55" +"15063","-1","","","","","Devilsaur Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11701","58506","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","53" +"15064","-1","","","","","Warbear Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19717","98586","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","27","11","0","0","0","0","0","0","0","0","50" +"15065","-1","","","","","Warbear Woolies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22233","111165","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","12","0","0","0","0","0","0","0","0","52" +"15066","-1","","","","","Ironfeather Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23650","118252","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","12","0","0","0","0","0","0","0","0","53" +"15067","-1","","","","","Ironfeather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12758","63791","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","8","0","0","0","0","0","0","0","0","49" +"15068","-1","","","","","Frostsaber Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20359","101795","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","18","18","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15069","-1","","","","","Frostsaber Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17013","85065","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","17","16","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15070","-1","","","","","Frostsaber Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9504","47521","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","13","12","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15071","-1","","","","","Frostsaber Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11443","57218","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","12","12","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15072","-1","","","","","Chimeric Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16234","81170","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","16","0","0","16","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15073","-1","","","","","Chimeric Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11530","57650","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","12","0","0","12","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15074","-1","","","","","Chimeric Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6867","34336","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","12","0","0","11","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15075","-1","","","","","Chimeric Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18449","92246","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","17","0","0","16","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15076","-1","","","","","Heavy Scorpid Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16604","83021","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","288","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","16","15","0","0","0","0","0","0","0","0","48" +"15077","-1","","","","","Heavy Scorpid Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7615","38077","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","8","8","0","0","0","0","0","0","0","0","46" +"15078","-1","","","","","Heavy Scorpid Gauntlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9649","48246","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","12","0","0","0","0","0","0","0","0","50" +"15079","-1","","","","","Heavy Scorpid Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21760","108803","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","52" +"15080","-1","","","","","Heavy Scorpid Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18230","91152","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","54" +"15081","-1","","","","","Heavy Scorpid Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19566","97830","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","13","0","0","0","0","0","0","0","0","56" +"15082","-1","","","","","Heavy Scorpid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10375","51879","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","12","0","0","0","0","0","0","0","0","51" +"15083","-1","","","","","Wicked Leather Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6872","34363","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","11","0","0","0","0","0","0","0","0","47" +"15084","-1","","","","","Wicked Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7311","36555","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","5","0","0","0","0","0","0","0","0","48" +"15085","-1","","","","","Wicked Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21952","109763","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","25","7","0","0","0","0","0","0","0","0","56" +"15086","-1","","","","","Wicked Leather Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13154","65771","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","16","0","0","0","0","0","0","0","0","51" +"15087","-1","","","","","Wicked Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17892","89464","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","12","0","0","0","0","0","0","0","0","53" +"15088","-1","","","","","Wicked Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9901","49508","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","13","0","0","0","0","0","0","0","0","55" +"15090","-1","","","","","Runic Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20514","102573","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","13","0","0","0","0","0","0","0","0","57" +"15091","-1","","","","","Runic Leather Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7195","35979","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","8","0","0","0","0","0","0","0","0","49" +"15092","-1","","","","","Runic Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7656","38283","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","10","0","0","0","0","0","0","0","0","50" +"15093","-1","","","","","Runic Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8368","41844","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","9","0","0","0","0","0","0","0","0","51" +"15094","-1","","","","","Runic Leather Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14155","70778","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","12","0","0","0","0","0","0","0","0","53" +"15095","-1","","","","","Runic Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20885","104427","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","20","13","0","0","0","0","0","0","0","0","55" +"15096","-1","","","","","Runic Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16161","80805","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","10","0","0","0","0","0","0","0","0","57" +"15102","-1","","","","","Un'Goro Tested Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15103","-1","","","","","Corrupt Tested Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15104","-1","","","","","Wingborne Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3825","19129","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","5","0","0","0","0","0","0","0","0","0" +"15105","-1","","","","","Staff of Noh'Orahil","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14397","71989","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","256","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","0" +"15106","-1","","","","","Staff of Dar'Orahil","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14447","72237","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","40","256","0","0","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","3","0","0","0","0","0","0","0","0","0" +"15107","-1","","","","","Orb of Noh'Orahil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","0" +"15108","-1","","","","","Orb of Dar'Orahil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","0","0","0","0","0","0","0","0","0","0" +"15109","-1","","","","","Staff of Soran'ruk","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3344","16724","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","25","256","0","0","39","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15110","-1","","","","","Rigid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","351","1759","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","898","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15111","-1","","","","","Rigid Moccasins","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","609","3046","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","814","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15112","-1","","","","","Rigid Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","354","1772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","1066","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15113","-1","","","","","Rigid Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1361","6805","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2010","0","0","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15114","-1","","","","","Rigid Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","372","1863","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","982","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15115","-1","","","","","Rigid Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","474","2370","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","731","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15116","-1","","","","","Rigid Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1163","5817","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1152","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15117","-1","","","","","Rigid Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1219","6096","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","563","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15118","-1","","","","","Rigid Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1562","7813","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","480","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15119","-1","","","","","Highborne Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13683","68416","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","10","0","0","0","0","0","0","0","0","51" +"15120","-1","","","","","Robust Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3935","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","900","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15121","-1","","","","","Robust Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1433","7167","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","817","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15122","-1","","","","","Robust Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","701","3507","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1068","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15123","-1","","","","","Robust Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2463","12319","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","2020","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15124","-1","","","","","Robust Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4238","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","984","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15125","-1","","","","","Robust Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","991","4955","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","733","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15126","-1","","","","","Robust Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1989","9948","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","565","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15127","-1","","","","","Robust Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1647","8238","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1153","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15128","-1","","","","","Robust Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2425","12127","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","482","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15129","-1","","","","","Robust Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1825","9129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","650","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15130","-1","","","","","Cutthroat's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3252","16263","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","483","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15131","-1","","","","","Cutthroat's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2023","10118","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","818","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15132","-1","","","","","Cutthroat's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1017","5086","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1069","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15133","-1","","","","","Cutthroat's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3827","19135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","2026","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15134","-1","","","","","Cutthroat's Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3295","16476","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","652","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15135","-1","","","","","Cutthroat's Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1357","6788","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","985","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15136","-1","","","","","Cutthroat's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1249","6245","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","902","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15137","-1","","","","","Cutthroat's Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1516","7584","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","734","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15138","-1","","","","","Onyxia Scale Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15198","75993","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","16","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","55" +"15139","-1","","","","","Cutthroat's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3055","15279","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","566","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15140","-1","","","","","Cutthroat's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2530","12650","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1155","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15141","-1","","","","","Onyxia Scale Breastplate","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39101","195509","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","455","0","9","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","15","15","14","14","0","0","0","0","0","57" +"15142","-1","","","","","Ghostwalker Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2603","13017","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","819","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15143","-1","","","","","Ghostwalker Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1439","7198","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1070","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15144","-1","","","","","Ghostwalker Rags","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4232","21160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","484","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15145","-1","","","","","Ghostwalker Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4943","24717","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2032","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15146","-1","","","","","Ghostwalker Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3730","18653","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","652","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15147","-1","","","","","Ghostwalker Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1754","8770","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","986","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15148","-1","","","","","Ghostwalker Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1614","8070","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","903","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15149","-1","","","","","Ghostwalker Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1960","9801","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","735","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15150","-1","","","","","Ghostwalker Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2951","14757","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1155","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15151","-1","","","","","Ghostwalker Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3949","19748","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","567","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15152","-1","","","","","Nocturnal Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4449","22248","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","821","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15153","-1","","","","","Nocturnal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2626","13131","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","988","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15154","-1","","","","","Nocturnal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2372","11861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","904","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15155","-1","","","","","Nocturnal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2571","12856","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","736","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15156","-1","","","","","Nocturnal Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5266","26333","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","654","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15157","-1","","","","","Nocturnal Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6200","31001","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","569","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15158","-1","","","","","Nocturnal Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4320","21603","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1157","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15159","-1","","","","","Nocturnal Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6743","33716","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","485","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15160","-1","","","","","Nocturnal Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2430","12152","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1072","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15161","-1","","","","","Imposing Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3319","16596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","906","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15162","-1","","","","","Imposing Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5829","29147","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","822","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15163","-1","","","","","Imposing Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3344","16723","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1074","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15164","-1","","","","","Imposing Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9135","45679","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","487","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15165","-1","","","","","Imposing Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3744","18724","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","989","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15166","-1","","","","","Imposing Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3945","19729","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","738","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15167","-1","","","","","Imposing Bandana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7484","37421","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","655","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15168","-1","","","","","Imposing Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7951","39758","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","570","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15169","-1","","","","","Imposing Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5542","27714","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1158","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15170","-1","","","","","Potent Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13104","65520","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","489","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15171","-1","","","","","Potent Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8697","43488","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","824","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15172","-1","","","","","Potent Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4706","23534","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1075","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15173","-1","","","","","Potent Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5387","26939","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","991","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15174","-1","","","","","Potent Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6017","30087","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","740","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15175","-1","","","","","Potent Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9692","48463","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","656","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15176","-1","","","","","Potent Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12121","60607","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","572","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15177","-1","","","","","Potent Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8525","42629","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1160","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15178","-1","","","","","Potent Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4936","24680","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","907","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15179","-1","","","","","Praetorian Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18593","92966","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","490","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15180","-1","","","","","Praetorian Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6686","33433","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","909","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15181","-1","","","","","Praetorian Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11312","56561","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","826","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15182","-1","","","","","Praetorian Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5996","29983","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1076","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15183","-1","","","","","Praetorian Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6751","33756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","992","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15184","-1","","","","","Praetorian Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7197","35986","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","741","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15185","-1","","","","","Praetorian Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12906","64530","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","658","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15186","-1","","","","","Praetorian Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15373","76867","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","574","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15187","-1","","","","","Praetorian Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10918","54594","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1161","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15188","-1","","","","","Grand Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8702","43512","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","1078","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15189","-1","","","","","Grand Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15723","78615","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","827","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15190","-1","","","","","Grand Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9614","48071","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","994","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15191","-1","","","","","Grand Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9035","45175","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","910","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15192","-1","","","","","Grand Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10596","52980","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","743","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15193","-1","","","","","Grand Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16397","81987","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","660","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15194","-1","","","","","Grand Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21643","108219","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","576","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15195","-1","","","","","Grand Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22020","110104","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","492","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15196","-1","","","","","Private's Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15197","-1","","","","","Scout's Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15198","-1","","","","","Knight's Colors","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15199","-1","","","","","Stone Guard's Herald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15200","-1","","","","","Senior Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","4","0","0","0","0","0","0","0","0","30" +"15202","-1","","","","","Wildkeeper Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","516","2580","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","2","1","0","0","0","0","0","0","0","0" +"15203","-1","","","","","Guststorm Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","621","3108","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","3","3","1","0","0","0","0","0","0","0","0" +"15204","-1","","","","","Moonstone Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","779","3899","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","18","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15205","-1","","","","","Owlsight Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1063","5318","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"15206","-1","","","","","Jadefinger Baton","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","857","3430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15207","-1","","","","","Steelcap Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","914","4571","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15208","-1","","","","","Cenarion Moondust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15209","-1","","","","","Relic Bundle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15210","-1","","","","","Raider Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","825","4129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","5177","11","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15211","-1","","","","","Militant Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1917","9585","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","22","-1","0","5195","19","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15212","-1","","","","","Fighter Broadsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3450","17253","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","27","-1","0","5204","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15213","-1","","","","","Mercenary Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8165","40829","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","5231","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15214","-1","","","","","Nobles Brand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11356","56781","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","40","-1","0","5249","32","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15215","-1","","","","","Furious Falchion","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16744","83721","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","5258","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15216","-1","","","","","Rune Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25932","129662","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","51","-1","0","5276","34","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15217","-1","","","","","Widow Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30996","154980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","54","-1","0","5285","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15218","-1","","","","","Crystal Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37048","185240","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","57","-1","0","5294","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15219","-1","","","","","Dimensional Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41376","206883","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","59","-1","0","5303","39","0","0","0","0","73","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15220","-1","","","","","Battlefell Sabre","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40552","202761","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","5312","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15221","-1","","","","","Holy War Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43545","217727","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","65","-1","0","5321","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15222","-1","","","","","Barbed Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1219","6096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","19","-1","0","5188","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15223","-1","","","","","Jagged Star","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2376","11884","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","24","-1","0","5197","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15224","-1","","","","","Battlesmasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2695","13479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","25","-1","0","5206","24","0","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15225","-1","","","","","Sequoia Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5958","29794","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","5224","32","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15226","-1","","","","","Giant Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8755","43779","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","5242","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15227","-1","","","","","Diamond-Tip Bludgeon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21925","109626","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","49","-1","0","5278","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15228","-1","","","","","Smashing Star","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28308","141544","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","5287","62","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15229","-1","","","","","Blesswind Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31924","159623","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","55","-1","0","5296","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15230","-1","","","","","Ridge Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2755","13778","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","25","-1","0","5205","19","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15231","-1","","","","","Splitting Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5033","25166","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","31","-1","0","5223","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15232","-1","","","","","Hacking Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6112","30562","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","33","-1","0","5223","22","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15233","-1","","","","","Savage Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10476","52381","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","39","-1","0","5241","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15234","-1","","","","","Greater Scythe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11354","56770","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","40","-1","0","5250","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15235","-1","","","","","Crescent Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21091","105455","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","48","-1","0","5268","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15236","-1","","","","","Moon Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27485","137428","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","52","-1","0","5286","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15237","-1","","","","","Corpse Harvester","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30526","152630","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","55","-1","0","5295","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15238","-1","","","","","Warlord's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36496","182481","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","58","-1","0","5304","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15239","-1","","","","","Felstone Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40954","204774","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","61","-1","0","5313","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15240","-1","","","","","Demon's Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42810","214051","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","64","-1","0","5322","61","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15241","-1","","","","","Battle Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3012","15060","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","26","-1","0","5207","15","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15242","-1","","","","","Honed Stiletto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4426","22133","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","30","-1","0","5216","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15243","-1","","","","","Deadly Kris","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7871","39357","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","36","-1","0","5234","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15244","-1","","","","","Razor Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12769","63849","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","42","-1","0","5252","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15245","-1","","","","","Vorpal Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23284","116423","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","50","-1","0","5279","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15246","-1","","","","","Demon Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42614","213072","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","5315","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15247","-1","","","","","Bloodstrike Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43935","219676","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","64","-1","0","5324","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15248","-1","","","","","Gleaming Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1791","8959","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","5191","30","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15249","-1","","","","","Polished Zweihander","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3877","19389","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","26","-1","0","5209","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15250","-1","","","","","Glimmering Flamberge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6895","34475","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","32","-1","0","5227","55","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15251","-1","","","","","Headstriker Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17685","88428","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","5263","62","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15252","-1","","","","","Tusker Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27906","139531","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","49","-1","0","5281","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15253","-1","","","","","Beheading Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31547","157738","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","52","-1","0","5290","113","0","0","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15254","-1","","","","","Dark Espadon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35584","177923","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","54","-1","0","5290","110","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15255","-1","","","","","Gallant Flamberge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42545","212729","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","57","-1","0","5299","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15256","-1","","","","","Massacre Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47531","237656","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","59","-1","0","5308","139","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15257","-1","","","","","Shin Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51499","257499","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","5317","84","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15258","-1","","","","","Divine Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53805","269027","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","5326","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15259","-1","","","","","Hefty Battlehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3306","16534","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","25","-1","0","5211","43","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15260","-1","","","","","Stone Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11556","57784","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","38","-1","0","5247","64","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15261","-1","","","","","Sequoia Branch","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13530","67654","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","40","-1","0","5256","88","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15262","-1","","","","","Greater Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21552","107763","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","46","-1","0","5274","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15263","-1","","","","","Royal Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28889","144449","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","50","-1","0","5283","83","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15264","-1","","","","","Backbreaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41517","207589","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","56","-1","0","5301","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15265","-1","","","","","Painbringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46823","234117","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","58","-1","0","5310","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15266","-1","","","","","Fierce Mauler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52538","262693","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","61","-1","0","5319","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15267","-1","","","","","Brutehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54186","270933","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","63","-1","0","5319","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15268","-1","","","","","Twin-bladed Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1024","5121","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","16","-1","0","5183","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15269","-1","","","","","Massive Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3036","15183","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","24","-1","0","5201","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15270","-1","","","","","Gigantic War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22775","113877","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","46","-1","0","5273","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15271","-1","","","","","Colossal Great Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43701","218506","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","56","-1","0","5300","132","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15272","-1","","","","","Razor Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51740","258702","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","59","-1","0","5309","91","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15273","-1","","","","","Death Striker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51401","257005","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","5318","109","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15274","-1","","","","","Diviner Long Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31666","158334","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","5293","84","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15275","-1","","","","","Thaumaturgist Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35714","178574","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","54","-1","0","5293","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15276","-1","","","","","Magus Long Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45263","226315","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","58","-1","0","5311","122","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15277","690","","","","","Gray Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"15278","-1","","","","","Solstice Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50286","251430","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","60","-1","0","5311","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15279","-1","","","","","Ivory Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18267","91339","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","51","-1","0","5280","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15280","-1","","","","","Wizard's Hand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20603","103018","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","5289","56","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15281","-1","","","","","Glowstar Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26110","130550","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","5298","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15282","-1","","","","","Dragon Finger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30628","153143","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","60","-1","0","5307","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15283","-1","","","","","Lunar Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32459","162295","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","64","-1","0","5850","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15284","-1","","","","","Long Battle Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3039","15199","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","29","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","24" +"15285","-1","","","","","Archer's Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4061","20305","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","32","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","27" +"15286","-1","","","","","Long Redwood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5568","27843","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","35","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","30" +"15287","-1","","","","","Crusader Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12516","62584","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","45","-1","0","5852","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","40" +"15288","-1","","","","","Blasthorn Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32585","162927","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","61","-1","0","5838","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","56" +"15289","-1","","","","","Archstrike Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34505","172525","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","65","-1","0","5859","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","60" +"15290","690","","","","","Brown Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"15291","-1","","","","","Harpy Needler","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19591","97959","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","51","-1","0","5854","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","46" +"15292","690","","","","","Green Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"15293","690","","","","","Teal Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"15294","-1","","","","","Siege Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20135","100679","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","5855","62","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","48" +"15295","-1","","","","","Quillfire Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22712","113561","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","55","-1","0","5856","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","50" +"15296","-1","","","","","Hawkeye Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31193","155968","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","5858","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","58" +"15297","-1","","","","","Grizzly Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45","227","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15298","-1","","","","","Grizzly Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","305","1525","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","6272","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","8" +"15299","-1","","","","","Grizzly Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","212","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15300","-1","","","","","Grizzly Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","432","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15301","-1","","","","","Grizzly Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","542","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15302","-1","","","","","Grizzly Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47","238","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15303","-1","","","","","Grizzly Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1496","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","560","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"15304","-1","","","","","Grizzly Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","414","2072","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","477","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15305","-1","","","","","Feral Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","2062","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","813","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15306","-1","","","","","Feral Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1043","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","1065","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15307","-1","","","","","Feral Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","815","4077","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","2004","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15308","-1","","","","","Feral Cord","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","241","1208","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","897","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15309","-1","","","","","Feral Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","220","1100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","980","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15310","-1","","","","","Feral Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","279","1399","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","729","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15311","-1","","","","","Feral Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","982","4914","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","479","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15312","-1","","","","","Feral Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","745","3729","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","562","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15313","-1","","","","","Feral Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","514","2572","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","19" +"15314","-1","","","","","Bundle of Relics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15322","-1","","","","","Smoothbore Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7745","38726","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","39","-1","0","0","38","0","0","0","0","72","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","34" +"15323","-1","","","","","Percussion Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17791","88956","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","50","-1","0","5854","48","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","45" +"15324","-1","","","","","Burnside Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25565","127828","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","56","-1","0","5856","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","51" +"15325","-1","","","","","Sharpshooter Harquebus","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31785","158925","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","5857","56","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","55" +"15326","-1","","","","","Broken Gleaming Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","800","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","35" +"15327","-1","","","","","Broken Wicked Throwing Dagger","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","800","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","35" +"15328","-1","","","","","Joseph's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15329","-1","","","","","Wrangler's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","623","3115","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","899","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15330","-1","","","","","Wrangler's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1059","5298","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","816","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15331","-1","","","","","Wrangler's Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","555","2776","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","1067","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15332","-1","","","","","Wrangler's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2263","11319","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","2014","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15333","-1","","","","","Wrangler's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","537","2686","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","983","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15334","-1","","","","","Wrangler's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","828","4142","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","732","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15335","-1","","","","","Briarsteel Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","580","2904","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","14","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"15336","-1","","","","","Wrangler's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1669","8346","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","564","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15337","-1","","","","","Wrangler's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","10137","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","481","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15338","-1","","","","","Wrangler's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1387","6937","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1153","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15339","-1","","","","","Pathfinder Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2466","12334","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","651","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15340","-1","","","","","Pathfinder Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1016","5082","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","984","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15341","-1","","","","","Pathfinder Footpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","817","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15342","-1","","","","","Pathfinder Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2907","14537","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","2020","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15343","-1","","","","","Pathfinder Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1139","5698","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","733","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15344","-1","","","","","Pathfinder Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2516","12583","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","566","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15345","-1","","","","","Pathfinder Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1894","9471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1154","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15346","-1","","","","","Pathfinder Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2788","13942","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","482","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15347","-1","","","","","Pathfinder Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","955","4778","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","901","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15348","-1","","","","","Pathfinder Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","792","3963","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1068","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15349","-1","","","","","Headhunter's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1550","7750","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","902","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15350","-1","","","","","Headhunter's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2385","11925","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","819","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15351","-1","","","","","Headhunter's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1090","5450","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1069","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15352","-1","","","","","Headhunter's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4101","20507","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2032","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15353","-1","","","","","Headhunter's Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3467","17338","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","652","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15354","-1","","","","","Headhunter's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1600","8004","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","986","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15355","-1","","","","","Headhunter's Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1620","8101","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","735","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15356","-1","","","","","Headhunter's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3935","19678","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","483","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15357","-1","","","","","Headhunter's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2693","13467","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1155","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15358","-1","","","","","Headhunter's Woolies","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3604","18021","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","567","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15359","-1","","","","","Trickster's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5955","29777","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","485","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15360","-1","","","","","Trickster's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2372","11862","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","1072","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15361","-1","","","","","Trickster's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2204","11024","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","904","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15362","-1","","","","","Trickster's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3871","19357","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","820","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15363","-1","","","","","Trickster's Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4894","24474","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","653","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15364","-1","","","","","Trickster's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2431","12158","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","987","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15365","-1","","","","","Trickster's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2415","12079","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","736","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15366","-1","","","","","Trickster's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5250","26251","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","569","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15367","-1","","","","","Trickster's Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6246","31233","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","2038","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15368","-1","","","","","Trickster's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3674","18371","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","1156","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15369","-1","","","","","Wolf Rider's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3097","15486","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","905","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15370","-1","","","","","Wolf Rider's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5439","27199","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","822","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15371","-1","","","","","Wolf Rider's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3467","17339","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","989","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15372","-1","","","","","Wolf Rider's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3383","16918","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","738","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15373","-1","","","","","Wolf Rider's Headgear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6930","34653","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","655","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15374","-1","","","","","Wolf Rider's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7363","36817","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","570","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15375","-1","","","","","Wolf Rider's Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5132","25663","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1158","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15376","-1","","","","","Wolf Rider's Padded Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8653","43267","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","487","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15377","-1","","","","","Wolf Rider's Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3191","15959","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1073","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15378","-1","","","","","Rageclaw Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4358","21793","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","907","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15379","-1","","","","","Rageclaw Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7654","38271","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","823","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15380","-1","","","","","Rageclaw Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4391","21955","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1075","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15381","-1","","","","","Rageclaw Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12593","62968","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","488","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15382","-1","","","","","Rageclaw Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5043","25216","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","990","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15383","-1","","","","","Rageclaw Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5313","26565","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","739","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15384","-1","","","","","Rageclaw Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9155","45779","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","656","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15385","-1","","","","","Rageclaw Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11449","57248","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","572","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15386","-1","","","","","Rageclaw Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7287","36438","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1159","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15387","-1","","","","","Jadefire Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5584","27920","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1076","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15388","-1","","","","","Jadefire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6357","31786","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","909","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15389","-1","","","","","Jadefire Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10146","50734","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","825","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15390","-1","","","","","Jadefire Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16175","80877","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","490","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15391","-1","","","","","Jadefire Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12178","60890","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","658","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15392","-1","","","","","Jadefire Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6382","31911","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","992","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15393","-1","","","","","Jadefire Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6479","32395","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","741","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15394","-1","","","","","Jadefire Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14615","73075","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","573","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15395","-1","","","","","Jadefire Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10379","51899","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1161","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15396","-1","","","","","Curvewood Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","582","2914","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","14","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"15397","-1","","","","","Oakthrush Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","731","3656","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","14","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15398","-1","","","","","Sandcomber Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108","542","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15399","-1","","","","","Dryweed Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151","756","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","0","0","0","0","0","0","0","0","0","0" +"15400","-1","","","","","Clamshell Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109","546","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15401","-1","","","","","Welldrip Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","365","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15402","-1","","","","","Noosegrip Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","550","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15403","-1","","","","","Ridgeback Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","280","1400","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15404","-1","","","","","Breakwater Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","337","1686","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","2","0","0","0","0","0","0","0","0","0" +"15405","-1","","","","","Shucking Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1226","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"15406","-1","","","","","Crustacean Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","402","2012","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15407","-1","","","","","Cured Rugged Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15408","-1","","","","","Heavy Scorpid Scale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15409","-1","","","","","Refined Deeprock Salt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15410","-1","","","","","Scale of Onyxia","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15411","-1","","","","","Mark of Fordring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15412","-1","","","","","Green Dragonscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15413","-1","","","","","Ornate Adamantium Breastplate","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35470","177351","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","0" +"15414","-1","","","","","Red Dragonscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15415","-1","","","","","Blue Dragonscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15416","-1","","","","","Black Dragonscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15417","-1","","","","","Devilsaur Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15418","-1","","","","","Shimmering Platinum Warhammer","0.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66242","331210","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","142","0","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15419","-1","","","","","Warbear Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15420","-1","","","","","Ironfeather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15421","-1","","","","","Shroud of the Exile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16070","80353","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","7","7","0","0","0","0","0","0","0","0" +"15422","-1","","","","","Frostsaber Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15423","-1","","","","","Chimera Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15424","-1","","","","","Axe of Orgrimmar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1404","7024","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","3","0","0","0","0","0","0","0","0","0" +"15425","-1","","","","","Peerless Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8273","41365","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1078","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15426","-1","","","","","Peerless Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13419","67098","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","827","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15427","-1","","","","","Peerless Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8536","42683","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","993","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15428","-1","","","","","Peerless Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8024","40120","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","910","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15429","-1","","","","","Peerless Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9049","45249","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","743","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15430","-1","","","","","Peerless Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15435","77177","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","659","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15431","-1","","","","","Peerless Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19673","98368","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","575","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15432","-1","","","","","Peerless Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14104","70524","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1163","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15433","-1","","","","","Peerless Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21099","105497","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","492","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15434","-1","","","","","Supreme Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10588","52943","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","912","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15435","-1","","","","","Supreme Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16380","81903","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","828","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15436","-1","","","","","Supreme Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10519","52596","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","1079","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15437","-1","","","","","Supreme Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12845","64225","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","996","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15438","-1","","","","","Supreme Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11039","55196","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","744","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15439","-1","","","","","Supreme Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16841","84208","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","661","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15440","-1","","","","","Supreme Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22238","111191","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","576","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15441","-1","","","","","Supreme Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16737","83685","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1164","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15442","-1","","","","","Supreme Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22996","114983","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","493","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15443","-1","","","","","Kris of Orgrimmar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1119","5599","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","18","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15444","-1","","","","","Staff of Orgrimmar","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1404","7023","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","18","-1","0","0","31","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","4","0","0","0","0","0","0","0","0","0" +"15445","-1","","","","","Hammer of Orgrimmar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1127","5638","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","18","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15446","-1","","","","","Stormwind Deputy Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15447","-1","","","","","Living Rot","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15448","-1","","","","","Coagulated Rot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15449","-1","","","","","Ghastly Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","2128","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","2","0","0","0","0","0","0","0","0","0" +"15450","-1","","","","","Dredgemire Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","534","2670","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","2","0","0","0","0","0","0","0","0" +"15451","-1","","","","","Gargoyle Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","643","3216","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","2","0","0","0","0","0","0","0","0" +"15452","-1","","","","","Featherbead Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","215","1076","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15453","-1","","","","","Savannah Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","270","1350","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15454","-1","","","","","Mortar and Pestle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15455","-1","","","","","Dustfall Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3541","17705","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","8","0","0","0","0","0","0","0","0","0" +"15456","-1","","","","","Lightstep Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4442","22211","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","5","0","0","0","0","0","0","0","0","0" +"15457","-1","","","","","Desert Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1134","5672","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","5","5","0","0","0","0","0","0","0","0","0" +"15458","-1","","","","","Tundra Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1423","7116","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","6","3","0","0","0","0","0","0","0","0" +"15459","-1","","","","","Grimtoll Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1142","5713","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","2","1","0","0","0","0","0","0","0","0" +"15460","-1","","","","","Monster - Gun, Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"15461","-1","","","","","Lightheel Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","841","4208","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15462","-1","","","","","Loamflake Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","653","3269","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15463","-1","","","","","Palestrider Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","787","3938","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"15464","-1","","","","","Brute Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4504","22523","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","28","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","8","4","1","0","0","0","0","0","0","0","0" +"15465","-1","","","","","Stingshot Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2713","13565","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","28","-1","0","0","28","0","0","0","0","52","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15466","-1","","","","","Clink Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2324","11620","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","4","2","3","0","0","0","0","0","0","0","0" +"15467","-1","","","","","Inventor's League Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8630","34520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15468","-1","","","","","Windsong Drape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1207","6036","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","4","0","0","0","0","0","0","0","0","0" +"15469","-1","","","","","Windsong Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1009","5049","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15470","-1","","","","","Plainsguard Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2432","12163","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","7","0","0","0","0","0","0","0","0","0" +"15471","-1","","","","","Brawnhide Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2034","10172","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","9","3","4","0","0","0","0","0","0","0","0" +"15472","-1","","","","","Charger's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","167","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","4" +"15473","-1","","","","","Charger's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65","329","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15474","-1","","","","","Charger's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","120","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15475","-1","","","","","Charger's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15476","-1","","","","","Charger's Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44","220","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15477","-1","","","","","Charger's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","192","960","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","580","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15478","-1","","","","","Charger's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","260","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15479","-1","","","","","Charger's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179","898","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","496","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","6" +"15480","-1","","","","","War Torn Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84","422","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15481","-1","","","","","War Torn Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","127","639","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","8" +"15482","-1","","","","","War Torn Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54","272","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","6" +"15483","-1","","","","","War Torn Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42","210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","5" +"15484","-1","","","","","War Torn Handgrips","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68","343","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","7" +"15485","-1","","","","","War Torn Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","344","1723","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","581","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","9" +"15486","-1","","","","","War Torn Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","245","1229","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6278","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","7" +"15487","-1","","","","","War Torn Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","479","2395","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","498","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15488","-1","","","","","Bloodspattered Surcoat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","967","4836","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","499","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15489","-1","","","","","Bloodspattered Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","363","1818","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","834","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","11" +"15490","-1","","","","","Bloodspattered Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105","526","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","9" +"15491","-1","","","","","Bloodspattered Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1057","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","749","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15492","-1","","","","","Bloodspattered Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","212","1061","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","917","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15493","-1","","","","","Bloodspattered Loincloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","647","3239","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","582","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15494","-1","","","","","Bloodspattered Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","693","3468","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1998","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15495","-1","","","","","Bloodspattered Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","220","1100","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","1085","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15496","-1","","","","","Bloodspattered Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","462","2310","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","16" +"15497","-1","","","","","Outrunner's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","387","1939","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","919","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15498","-1","","","","","Outrunner's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","674","3371","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","835","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15499","-1","","","","","Outrunner's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","307","1536","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","1086","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","13" +"15500","-1","","","","","Outrunner's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1378","6890","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","500","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15501","-1","","","","","Outrunner's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","269","1346","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","1002","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","12" +"15502","-1","","","","","Outrunner's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","411","2055","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","751","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15503","-1","","","","","Outrunner's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1091","5458","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","584","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15504","-1","","","","","Outrunner's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1168","5844","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","2010","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","17" +"15505","-1","","","","","Outrunner's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","561","2808","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","18" +"15506","-1","","","","","Grunt's AnkleWraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","723","3616","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","835","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15507","-1","","","","","Grunt's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1821","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1087","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15508","-1","","","","","Grunt's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","365","1828","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","1003","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","14" +"15509","-1","","","","","Grunt's Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","485","2427","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","751","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","16" +"15510","-1","","","","","Grunt's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","423","2118","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","919","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15511","-1","","","","","Grunt's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1474","7372","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","584","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15512","-1","","","","","Grunt's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1578","7891","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","2010","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15513","-1","","","","","Grunt's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1264","6320","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1173","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15514","-1","","","","","Grunt's Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1902","9514","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","501","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15515","-1","","","","","Spiked Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","845","4225","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","921","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15516","-1","","","","","Spiked Chain Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1588","7940","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","837","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15517","-1","","","","","Spiked Chain Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","4254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","1089","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","20" +"15518","-1","","","","","Spiked Chain Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","14128","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","502","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15519","-1","","","","","Spiked Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","607","3036","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","1004","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15520","-1","","","","","Spiked Chain Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","879","4398","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","753","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15521","-1","","","","","Spiked Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9713","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","585","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15522","-1","","","","","Spiked Chain Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2516","12584","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","2022","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15523","-1","","","","","Spiked Chain Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1474","7373","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","1173","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15524","-1","","","","","Sentry's Surcoat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2876","14384","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","503","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15525","-1","","","","","Sentry's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1634","8172","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","838","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15526","-1","","","","","Sentry's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","704","3523","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","1004","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15527","-1","","","","","Sentry's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1020","5102","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","753","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","22" +"15528","-1","","","","","Sentry's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","931","4655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","921","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15529","-1","","","","","Sentry's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2487","12437","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","586","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15530","-1","","","","","Sentry's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3222","16111","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","2028","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15531","-1","","","","","Sentry's Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2076","10380","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1174","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15532","-1","","","","","Sentry's Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","944","4722","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","1089","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15533","-1","","","","","Sentry's Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2290","11450","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","671","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15534","-1","","","","","Wicked Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2308","11542","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","839","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15535","-1","","","","","Wicked Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1270","6353","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1090","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15536","-1","","","","","Wicked Chain Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4107","20538","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","504","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15537","-1","","","","","Wicked Chain Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1163","5817","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","23" +"15538","-1","","","","","Wicked Chain Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1412","7063","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","754","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15539","-1","","","","","Wicked Chain Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1282","6413","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","922","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15540","-1","","","","","Wicked Chain Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2827","14139","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","672","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15541","-1","","","","","Wicked Chain Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3441","17205","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","587","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15542","-1","","","","","Wicked Chain Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2365","11827","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1175","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15543","-1","","","","","Wicked Chain Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4179","20899","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2034","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15544","-1","","","","","Thick Scale Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2448","12243","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","839","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15545","-1","","","","","Thick Scale Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1348","6741","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","1090","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15546","-1","","","","","Thick Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4794","23970","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","504","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15547","-1","","","","","Thick Scale Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1234","6172","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","1006","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","24" +"15548","-1","","","","","Thick Scale Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8246","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","755","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15549","-1","","","","","Thick Scale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1504","7524","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","923","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15550","-1","","","","","Thick Scale Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3316","16582","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","672","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15551","-1","","","","","Thick Scale Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4438","22190","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","588","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15552","-1","","","","","Thick Scale Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5226","26131","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","2034","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15553","-1","","","","","Thick Scale Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3061","15307","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","1176","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15554","-1","","","","","Pillager's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1853","9268","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","923","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15555","-1","","","","","Pillager's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2802","14014","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","839","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15556","-1","","","","","Pillager's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","1091","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15557","-1","","","","","Pillager's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5486","27430","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","505","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15558","-1","","","","","Pillager's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4128","20644","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","673","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15559","-1","","","","","Pillager's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1450","7250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","1007","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15560","-1","","","","","Pillager's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1937","9687","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","756","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15561","-1","","","","","Pillager's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4705","23528","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","588","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15562","-1","","","","","Pillager's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3558","17791","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1176","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15563","-1","","","","","Pillager's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5562","27814","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","2040","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15564","-1","","","","","Rugged Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"15565","-1","","","","","Marauder's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4274","21371","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","841","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15566","-1","","","","","Marauder's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2178","10894","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1092","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15567","-1","","","","","Marauder's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6666","33334","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","506","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15568","-1","","","","","Marauder's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1814","9070","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","1007","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","28" +"15569","-1","","","","","Marauder's Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7162","35814","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","2046","0","0","0","0","0","0","0","0","0","0","963","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15570","-1","","","","","Marauder's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2431","12159","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","756","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15571","-1","","","","","Marauder's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2218","11094","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","924","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15572","-1","","","","","Marauder's Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4714","23571","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","673","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15573","-1","","","","","Marauder's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5840","29202","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","589","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15574","-1","","","","","Marauder's Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5150","25752","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","1178","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15575","-1","","","","","Sparkleshell Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2300","11500","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","924","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15576","-1","","","","","Sparkleshell Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4462","22314","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","841","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15577","-1","","","","","Sparkleshell Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2317","11587","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","1092","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15578","-1","","","","","Sparkleshell Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6962","34814","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","506","0","0","0","0","0","0","0","0","0","0","234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15579","-1","","","","","Sparkleshell Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2122","10614","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","1008","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"15580","-1","","","","","Sparkleshell Headwrap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4871","24358","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","674","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15581","-1","","","","","Sparkleshell Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2794","13974","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","757","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15582","-1","","","","","Sparkleshell Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6544","32722","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","590","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","35" +"15583","-1","","","","","Sparkleshell Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5344","26722","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1178","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15584","-1","","","","","Sparkleshell Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7594","37974","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","2044","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15585","-1","","","","","Pardoc Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1447","7235","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15586","-1","","","","","Fast-growing Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15587","-1","","","","","Ringtail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1822","9111","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","0","0","0","0","0","0","0","0","0","0" +"15588","-1","","","","","Bracesteel Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2194","10972","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","7","4","4","0","0","0","0","0","0","0","0" +"15589","-1","","","","","Steadfast Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5462","27314","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","842","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15590","-1","","","","","Steadfast Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2674","13374","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1093","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15591","-1","","","","","Steadfast Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8740","43700","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","507","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15592","-1","","","","","Steadfast Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8465","42328","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","2050","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15593","-1","","","","","Steadfast Coronet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5532","27664","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","674","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15594","-1","","","","","Steadfast Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2520","12600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","1009","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15595","-1","","","","","Steadfast Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2950","14752","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","757","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","34" +"15596","-1","","","","","Steadfast Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6909","34546","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","590","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15597","-1","","","","","Steadfast Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5642","28214","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1178","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15598","-1","","","","","Steadfast Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2763","13817","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","925","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15599","-1","","","","","Ancient Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6631","33157","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","843","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15600","-1","","","","","Ancient Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3787","18938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","1094","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15601","-1","","","","","Ancient Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10345","51726","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","508","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15602","-1","","","","","Ancient Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7211","36056","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","675","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15603","-1","","","","","Ancient Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3546","17732","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","1010","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15604","-1","","","","","Ancient Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11158","55790","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","2056","0","0","0","0","0","0","0","0","0","0","1436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15605","-1","","","","","Ancient Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3858","19293","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","758","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15606","-1","","","","","Ancient Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3585","17929","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","926","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15607","-1","","","","","Ancient Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9306","46530","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","591","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15608","-1","","","","","Ancient Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7035","35178","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","1179","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15609","-1","","","","","Bonelink Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11806","59034","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","508","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15610","-1","","","","","Bonelink Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4354","21770","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1095","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15611","-1","","","","","Bonelink Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4369","21848","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","1011","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","38" +"15612","-1","","","","","Bonelink Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4285","21426","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","759","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","39" +"15613","-1","","","","","Bonelink Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3688","18441","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","926","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15614","-1","","","","","Bonelink Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7026","35132","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","843","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15615","-1","","","","","Bonelink Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7584","37920","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","676","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15616","-1","","","","","Bonelink Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10151","50755","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","592","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15617","-1","","","","","Bonelink Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7107","35538","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1179","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15618","-1","","","","","Bonelink Wall Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11782","58911","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","2056","0","0","0","0","0","0","0","0","0","0","1465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15619","-1","","","","","Gryphon Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5987","29937","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","928","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15620","-1","","","","","Gryphon Mail Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5564","27824","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","1096","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15621","-1","","","","","Gryphon Mail Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15766","78830","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","2062","0","0","0","0","0","0","0","0","0","0","1578","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15622","-1","","","","","Gryphon Mail Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14834","74174","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","509","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15623","-1","","","","","Gryphon Mail Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10715","53579","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","677","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15624","-1","","","","","Gryphon Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4971","24856","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","1011","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","40" +"15625","-1","","","","","Gryphon Mail Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5818","29094","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","760","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15626","-1","","","","","Gryphon Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8798","43993","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","844","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15627","-1","","","","","Gryphon Mail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14493","72469","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","593","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15628","-1","","","","","Gryphon Mail Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9570","47854","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1180","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15629","-1","","","","","Formidable Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6374","31872","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","1096","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15630","-1","","","","","Formidable Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10312","51564","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","845","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15631","-1","","","","","Formidable Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16672","83363","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","510","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15632","-1","","","","","Formidable Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4997","24989","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","1012","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15633","-1","","","","","Formidable Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16210","81050","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","2068","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15634","-1","","","","","Formidable Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11441","57209","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","678","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15635","-1","","","","","Formidable Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5896","29484","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","760","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","43" +"15636","-1","","","","","Formidable Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6333","31669","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","929","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15637","-1","","","","","Formidable Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14557","72786","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","593","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15638","-1","","","","","Formidable Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9615","48075","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1181","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15639","-1","","","","","Ironhide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7040","35200","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","1097","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","45" +"15640","-1","","","","","Ironhide Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20233","101168","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","511","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15641","-1","","","","","Ironhide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7587","37938","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","929","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15642","-1","","","","","Ironhide Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12162","60811","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","846","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15643","-1","","","","","Ironhide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6675","33379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","1013","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","44" +"15644","-1","","","","","Ironhide Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8130","40652","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","762","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15645","-1","","","","","Ironhide Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14577","72888","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","679","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15646","-1","","","","","Ironhide Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19507","97535","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","595","0","0","0","0","0","0","0","0","0","0","260","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15647","-1","","","","","Ironhide Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13125","65628","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","1182","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15648","-1","","","","","Ironhide Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22212","111061","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","2074","0","0","0","0","0","0","0","0","0","0","1720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15649","-1","","","","","Merciless Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7808","39041","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1097","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15650","-1","","","","","Merciless Surcoat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22230","111154","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","511","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15651","-1","","","","","Merciless Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15785","78925","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","679","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15652","-1","","","","","Merciless Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7139","35699","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","1013","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15653","-1","","","","","Merciless Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8053","40267","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","762","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","48" +"15654","-1","","","","","Merciless Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8569","42848","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","930","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15655","-1","","","","","Merciless Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19862","99311","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","595","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15656","-1","","","","","Merciless Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13366","66834","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1182","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15657","-1","","","","","Merciless Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22625","113128","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2074","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15658","-1","","","","","Impenetrable Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17851","89255","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","848","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15659","-1","","","","","Impenetrable Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9508","47541","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","1099","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15660","-1","","","","","Impenetrable Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25412","127063","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","513","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15661","-1","","","","","Impenetrable Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9036","45180","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1014","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15662","-1","","","","","Impenetrable Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10801","54007","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","763","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15663","-1","","","","","Impenetrable Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10226","51131","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","931","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15664","-1","","","","","Impenetrable Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19071","95355","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","680","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15665","-1","","","","","Impenetrable Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25520","127600","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","596","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15666","-1","","","","","Impenetrable Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18375","91878","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1184","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15667","-1","","","","","Impenetrable Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27798","138991","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","2086","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15668","-1","","","","","Magnificent Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11697","58489","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1100","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15669","-1","","","","","Magnificent Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26609","133046","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","513","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15670","-1","","","","","Magnificent Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19753","98768","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","681","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15671","-1","","","","","Magnificent Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9782","48913","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","1015","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15672","-1","","","","","Magnificent Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12164","60822","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","764","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15673","-1","","","","","Magnificent Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11075","55376","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","932","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15674","-1","","","","","Magnificent Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18464","92322","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","848","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15675","-1","","","","","Magnificent Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26976","134880","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2086","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15676","-1","","","","","Magnificent Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25039","125197","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","597","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15677","-1","","","","","Magnificent Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18933","94667","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1185","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15678","-1","","","","","Triumphant Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19525","97627","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","849","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15679","-1","","","","","Triumphant Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12658","63292","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","1101","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15680","-1","","","","","Triumphant Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26811","134055","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","514","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15681","-1","","","","","Triumphant Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11406","57034","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","1016","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15682","-1","","","","","Triumphant Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13149","65749","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","765","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15683","-1","","","","","Triumphant Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12666","63334","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","932","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15684","-1","","","","","Triumphant Skullcap","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20135","100676","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","682","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15685","-1","","","","","Triumphant Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26587","132937","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","597","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15686","-1","","","","","Triumphant Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20099","100497","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","1185","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15687","-1","","","","","Triumphant Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27239","136195","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","1975","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15688","-1","","","","","Magic Beans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15689","-1","","","","","Trader's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4040","16160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","0","0","0","0","0","0","0","0","0","0" +"15690","-1","","","","","Kodobone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4912","19650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","4","0","0","0","0","0","0","0","0","0" +"15691","-1","","","","","Sidegunner Shottie","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6909","34546","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","38","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"15692","-1","","","","","Kodo Brander","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6935","34677","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","38","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15693","-1","","","","","Grand Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14533","72666","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","1163","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15694","-1","","","","","Merciless Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13264","66322","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","846","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","49" +"15695","-1","","","","","Studded Ring Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5984","29924","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","0","0","0","0","0","0","0","0","0" +"15696","-1","An old, worthless tome.","","","","Ruined Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15697","-1","","","","","Kodo Rustler Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2826","14130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","5","3","0","0","0","0","0","0","0","0" +"15698","-1","","","","","Wrangling Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4273","21369","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","8","2","0","0","0","0","0","0","0","0" +"15699","-1","","","","","Small Brown-wrapped Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15702","-1","","","","","Chemist's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7396","29585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","4","4","0","0","0","0","0","0","0","0" +"15703","-1","","","","","Chemist's Smock","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9645","48227","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","12","0","0","0","0","0","0","0","0","0" +"15704","-1","","","","","Hunter's Insignia Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6145","24580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"15705","-1","","","","","Tidecrest Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33774","168871","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","57","-1","0","0","62","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15706","-1","","","","","Hunt Tracker Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33905","169527","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","35","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","8","0","0","0","0","0","0","0","0","0" +"15707","-1","","","","","Brantwood Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","36078","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","10","0","0","0","0","0","0","0","0","0" +"15708","-1","","","","","Blight Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9053","45267","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","8","8","0","0","0","0","0","0","0","0" +"15709","-1","","","","","Gearforge Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12796","63981","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","4","5","0","0","0","0","0","0","0","0" +"15710","-1","","","","","Cenarion Lunardust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15722","-1","","","","","Spraggle's Canteen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15723","-1","","","","","Tea with Sugar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2825","11300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15724","-1","Teaches you how to craft Heavy Scorpid Bracers.","","","","Pattern: Heavy Scorpid Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","165","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15725","-1","Teaches you how to craft Wicked Leather Gauntlets.","","","","Pattern: Wicked Leather Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","165","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15726","-1","Teaches you how to craft a Green Dragonscale Breastplate.","","","","Pattern: Green Dragonscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","165","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15727","-1","Teaches you how to craft a Heavy Scorpid Vest.","","","","Pattern: Heavy Scorpid Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15728","-1","Teaches you how to craft Wicked Leather Bracers.","","","","Pattern: Wicked Leather Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15729","-1","Teaches you how to craft Chimeric Gloves.","","","","Pattern: Chimeric Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","165","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15730","-1","Teaches you how to craft a Red Dragonscale Breastplate.","","","","Pattern: Red Dragonscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15731","-1","Teaches you how to craft Runic Leather Gauntlets.","","","","Pattern: Runic Leather Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15732","-1","Teaches you how to craft Volcanic Leggings.","","","","Pattern: Volcanic Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15733","-1","Teaches you how to craft Green Dragonscale Leggings.","","","","Pattern: Green Dragonscale Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15734","-1","Teaches you how to craft Living Shoulders.","","","","Pattern: Living Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15735","-1","Teaches you how to craft Ironfeather Shoulders.","","","","Pattern: Ironfeather Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","165","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15736","-1","Keep Away From Fire.","","","","Smokey's Special Compound","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15737","-1","Teaches you how to craft Chimeric Boots.","","","","Pattern: Chimeric Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15738","-1","Teaches you how to craft Heavy Scorpid Gauntlets.","","","","Pattern: Heavy Scorpid Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15739","-1","Teaches you how to craft Runic Leather Bracers.","","","","Pattern: Runic Leather Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15740","-1","Teaches you how to craft Frostsaber Boots.","","","","Pattern: Frostsaber Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15741","-1","Teaches you how to craft Stormshroud Pants.","","","","Pattern: Stormshroud Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15742","-1","Teaches you how to craft a Warbear Harness.","","","","Pattern: Warbear Harness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15743","-1","Teaches you how to craft a Heavy Scorpid Belt.","","","","Pattern: Heavy Scorpid Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15744","-1","Teaches you how to craft a Wicked Leather Headband.","","","","Pattern: Wicked Leather Headband","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15745","-1","Teaches you how to craft a Runic Leather Belt.","","","","Pattern: Runic Leather Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15746","-1","Teaches you how to craft Chimeric Leggings.","","","","Pattern: Chimeric Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","165","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15747","-1","Teaches you how to craft Frostsaber Leggings.","","","","Pattern: Frostsaber Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15748","-1","Teaches you how to craft Heavy Scorpid Leggings.","","","","Pattern: Heavy Scorpid Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15749","-1","Teaches you how to craft a Volcanic Breastplate.","","","","Pattern: Volcanic Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15750","-1","","","","","Sceptre of Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15751","-1","Teaches you how to craft a Blue Dragonscale Breastplate.","","","","Pattern: Blue Dragonscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15752","-1","Teaches you how to craft Living Leggings.","","","","Pattern: Living Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15753","-1","Teaches you how to craft Stormshroud Armor.","","","","Pattern: Stormshroud Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15754","-1","Teaches you how to craft Warbear Woolies.","","","","Pattern: Warbear Woolies","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15755","-1","Teaches you how to craft a Chimeric Vest.","","","","Pattern: Chimeric Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15756","-1","Teaches you how to craft a Runic Leather Headband.","","","","Pattern: Runic Leather Headband","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15757","-1","Teaches you how to craft Wicked Leather Pants.","","","","Pattern: Wicked Leather Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15758","-1","Teaches you how to craft Devilsaur Gauntlets.","","","","Pattern: Devilsaur Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15759","-1","Teaches you how to craft a Black Dragonscale Breastplate.","","","","Pattern: Black Dragonscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15760","-1","Teaches you how to craft an Ironfeather Breastplate.","","","","Pattern: Ironfeather Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15761","-1","Teaches you how to craft Frostsaber Gloves.","","","","Pattern: Frostsaber Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15762","-1","Teaches you how to craft a Heavy Scorpid Helm.","","","","Pattern: Heavy Scorpid Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15763","-1","Teaches you how to craft Blue Dragonscale Shoulders.","","","","Pattern: Blue Dragonscale Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15764","-1","Teaches you how to craft Stormshroud Shoulders.","","","","Pattern: Stormshroud Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15765","-1","Teaches you how to craft Runic Leather Pants.","","","","Pattern: Runic Leather Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15766","-1","","","","","Gem of the Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15767","-1","","","","","Hameya's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15768","-1","Teaches you how to craft a Wicked Leather Belt.","","","","Pattern: Wicked Leather Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15769","-1","Teaches you how to craft an Onyxia Scale Cloak.","","","","Pattern: Onyxia Scale Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15770","-1","Teaches you how to craft Black Dragonscale Shoulders.","","","","Pattern: Black Dragonscale Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15771","-1","Teaches you how to craft a Living Breastplate.","","","","Pattern: Living Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15772","-1","Teaches you how to craft Devilsaur Leggings.","","","","Pattern: Devilsaur Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15773","-1","Teaches you how to craft Wicked Leather Armor.","","","","Pattern: Wicked Leather Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15774","-1","Teaches you how to craft Heavy Scorpid Shoulders.","","","","Pattern: Heavy Scorpid Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15775","-1","Teaches you how to craft Volcanic Shoulders.","","","","Pattern: Volcanic Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15776","-1","Teaches you how to craft Runic Leather Armor.","","","","Pattern: Runic Leather Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15777","-1","Teaches you how to craft Runic Leather Shoulders.","","","","Pattern: Runic Leather Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15778","-1","","","","","Mechanical Yeti","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15779","-1","Teaches you how to craft a Frostsaber Tunic.","","","","Pattern: Frostsaber Tunic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15780","-1","Teaches you how to craft an Onyxia Scale Breastplate.","","","","Pattern: Onyxia Scale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"15781","-1","Teaches you how to craft Black Dragonscale Leggings.","","","","Pattern: Black Dragonscale Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15782","-1","","","","","Beaststalker Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43142","215714","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15783","-1","","","","","Beasthunter Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43292","216460","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","60","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15784","-1","","","","","Crystal Breeze Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11541","57706","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","12","0","0","0","0","0","0","0","0","0" +"15785","-1","","","","","Zaeldarr's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15786","-1","","","","","Fernpulse Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19381","96908","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","5","8","0","0","0","0","0","0","0","0" +"15787","-1","","","","","Willow Band Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23343","116716","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","6","10","20","0","0","0","0","0","0","0","0" +"15788","-1","","","","","Everlook Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15789","-1","","","","","Deep River Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9967","49836","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","11","0","0","0","0","0","0","0","0","0" +"15790","-1","This book is written in a language you cannot understand.","","","","Studies in Spirit Speaking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2411","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15791","-1","","","","","Turquoise Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7521","37605","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","15","0","0","0","0","0","0","0","0","0" +"15792","-1","","","","","Plow Wood Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14154","70770","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","6","6","0","0","0","0","0","0","0","0" +"15793","-1","","","","","A Chewed Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15794","-1","","","","","Ripped Ogre Loincloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39","195","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15795","-1","","","","","Emerald Mist Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13431","67158","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","13","0","0","0","0","0","0","0","0","0" +"15796","-1","","","","","Seaspray Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12063","60318","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","4","0","0","0","0","0","0","0","0","0" +"15797","-1","","","","","Shining Armplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14206","71030","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","2","0","0","0","0","0","0","0","0","0" +"15798","-1","","","","","Chipped Ogre Teeth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"15799","-1","","","","","Heroic Commendation Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","5","0","0","0","0","0","0","0","0","0" +"15800","-1","","","","","Intrepid Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36082","180413","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","58","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","0" +"15801","-1","","","","","Valiant Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36221","181109","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","58","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","0" +"15802","-1","","","","","Mooncloth Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11648","58243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","13","11","0","0","0","0","0","0","0","51" +"15803","-1","","","","","Book of the Ancients","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15804","-1","","","","","Cerise Drape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9781","48908","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","6","6","7","0","0","0","0","0","0","0" +"15805","-1","","","","","Penelope's Rose","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14662","58650","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","11","11","10","0","0","0","0","0","0","0","0" +"15806","-1","","","","","Mirah's Song","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49514","247570","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","61","-1","0","0","57","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","9","9","0","0","0","0","0","0","0","0","0" +"15807","-1","","","","","Light Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","294","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","8","-1","0","0","11","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","3" +"15808","-1","","","","","Fine Light Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","728","3641","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","21","-1","0","0","29","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","16" +"15809","-1","","","","","Heavy Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2938","14691","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","34","-1","0","0","49","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","29" +"15810","-1","","","","","Short Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2029","10145","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","25","-1","0","0","40","0","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15811","-1","","","","","Heavy Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5426","27133","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","35","-1","0","0","68","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15812","-1","","","","","Orchid Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10076","50383","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","4","3","0","0","0","0","0","0","0","0" +"15813","-1","","","","","Gold Link Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10113","50569","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","12","0","0","0","0","0","0","0","0","0" +"15814","-1","","","","","Hameya's Slayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41911","209558","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15815","-1","","","","","Hameya's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12619","63097","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","15","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15822","-1","","","","","Shadowskin Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11446","57230","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","0","0","0","0","0","0","0","0","0","0" +"15823","-1","","","","","Bricksteel Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9191","45959","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","0","0","0","0","0","0","0","0","0","0" +"15824","-1","","","","","Astoria Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15385","76926","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","10","0","0","0","0","0","0","0","0","0" +"15825","-1","","","","","Traphook Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19302","96513","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","24","5","0","0","0","0","0","0","0","0","0" +"15826","-1","","","","","Curative Animal Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15827","-1","","","","","Jadescale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23338","116692","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","7","0","0","0","0","0","0","0","0","0" +"15842","-1","","","","","Empty Dreadmist Peak Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15843","-1","","","","","Filled Dreadmist Peak Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15844","-1","","","","","Empty Cliffspring Falls Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15845","-1","","","","","Filled Cliffspring Falls Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15846","-1","","","","","Salt Shaker","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","165","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15847","-1","This book emits a faint glow.","","","","Quel'Thalas Registry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2431","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15848","-1","","","","","Crate of Ghost Magnets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15849","-1","","","","","Ghost-o-plasm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15850","-1","","","","","Patch of Duskwing's Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15851","-1","","","","","Lunar Fungus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15852","-1","","","","","Kodo Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15853","-1","","","","","Windreaper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51418","257091","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","60","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15854","-1","","","","","Dancing Sliver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64502","322514","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","98","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","0" +"15855","-1","","","","","Ring of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","0" +"15856","-1","","","","","Archlight Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","8","0","0","0","0","0","0","0","0" +"15857","-1","","","","","Magebane Scion","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15335","61342","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","10","0","10","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15858","-1","","","","","Freewind Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7516","37582","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","0","0","0","0","0","0","0","0","0","0" +"15859","-1","","","","","Seapost Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11317","56587","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","8","8","0","0","0","0","0","0","0","0" +"15860","-1","","","","","Blinkstrike Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13997","69985","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","0","0","0","0","0","0","0","0","0","0" +"15861","-1","","","","","Swiftfoot Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14969","74846","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","5","0","0","0","0","0","0","0","0","0" +"15862","-1","","","","","Blitzcleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28789","143946","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","54","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15863","-1","","","","","Grave Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28896","144482","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","36","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","5","0","0","0","0","0","0","0","0","0" +"15864","-1","","","","","Condor Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2043","10215","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","6","0","0","0","0","0","0","0","0","0" +"15865","-1","","","","","Anchorhold Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6562","32811","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","0","0","0","0","0","0","0","0","0" +"15866","-1","","","","","Veildust Medicine Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","562","2250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","1","0","0","0","0","0","0","0","0","0" +"15867","-1","","","","","Prismcharm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7464","29857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15868","-1","Bears the Seal of the Scarlet Crusade","","","","The Grand Crusader's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15869","-1","","","","","Silver Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","164","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15870","-1","","","","","Golden Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","164","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15871","-1","","","","","Truesilver Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","164","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15872","-1","","","","","Arcanite Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","164","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"15873","-1","","","","","Ragged John's Neverending Cup","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8144","32578","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"15874","-1","","","","","Soft-shelled Clam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15875","-1","The Worm is the Best Part.","","","","Rotten Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15876","-1","","","","","Nathanos' Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15877","-1","","","","","Shrine Bauble","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15878","-1","","","","","Rackmore's Silver Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15879","-1","","","","","Overlord Ror's Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15880","-1","","","","","Head of Ramstein the Gorger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15881","-1","","","","","Rackmore's Golden Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15882","-1","The pendant is missing its aquatic counterpart.","","","","Half Pendant of Aquatic Endurance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15883","-1","","","","","Half Pendant of Aquatic Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15884","-1","","","","","Augustus' Receipt Book","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15885","-1","","","","","Pendant of the Sea Lion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15886","-1","","","","","Timolain's Phylactery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"15887","-1","","","","","Heroic Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27581","137907","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2088","0","0","0","0","0","0","0","0","0","0","1890","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15888","-1","","","","","Deprecated Glorious Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26929","134648","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1833","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15889","-1","","","","","Deprecated Jademir Scale Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23125","115625","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","2082","0","0","0","0","0","0","0","0","0","0","1748","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15890","-1","","","","","Vanguard Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25831","129158","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","1805","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","12","5","0","0","0","0","0","0","0","0","54" +"15891","-1","","","","","Hulking Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2014","10074","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","21" +"15892","-1","","","","","Slayer's Shield","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3582","17912","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","3","0","0","0","0","0","0","0","0","27" +"15893","-1","","","","","Prospector's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1082","5411","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","3","0","0","0","0","0","0","0","0","16" +"15894","-1","","","","","Bristlebark Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1802","9011","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","4","0","0","0","0","0","0","0","0","20" +"15895","-1","","","","","Burnt Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53","265","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"15902","-1","","","","","A Crazy Grab Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15903","-1","","","","","Right-Handed Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1623","8118","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15904","-1","","","","","Right-Handed Blades","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4341","21708","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15905","-1","","","","","Right-Handed Brass Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","426","2130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","10" +"15906","-1","","","","","Left-Handed Brass Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","427","2138","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","15","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","10" +"15907","-1","","","","","Left-Handed Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1647","8237","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","25","-1","0","0","12","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","20" +"15908","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15909","-1","","","","","Left-Handed Blades","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4421","22107","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","35","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","30" +"15910","-1","","","","","Monster - Trident, Dark Ornate","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"15911","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15912","-1","","","","","Buccaneer's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1148","4594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","2008","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","18" +"15913","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15914","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15915","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15916","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15917","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15918","-1","","","","","Conjurer's Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4848","19392","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","38","-1","0","2038","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","33" +"15919","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15920","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15921","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15922","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15923","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15924","-1","","","","","Soft-shelled Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15925","-1","","","","","Journeyman's Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","439","1758","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","5" +"15926","-1","","","","","Spellbinder Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","3210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","12" +"15927","-1","","","","","Bright Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1864","7458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","2","0","0","0","0","0","0","0","0","22" +"15928","-1","","","","","Silver-thread Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2387","9548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","5","0","0","0","0","0","0","0","0","26" +"15929","-1","","","","","Nightsky Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4396","17585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","3","2","0","0","0","0","0","0","0","32" +"15930","-1","","","","","Imperial Red Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9146","36584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","4","2","0","0","0","0","0","0","0","51" +"15931","-1","","","","","Arcane Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10646","42584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","8","5","0","0","0","0","0","0","0","56" +"15932","-1","","","","","Disciple's Stein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","527","2110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","6273","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","7" +"15933","-1","","","","","Simple Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","620","2480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","6272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15934","-1","","","","","Sage's Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2596","10384","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","2026","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","27" +"15935","-1","","","","","Durable Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3323","13295","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","29" +"15936","-1","","","","","Duskwoven Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8950","35802","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","50" +"15937","-1","","","","","Hibernal Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7922","31690","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","0","0","0","0","0","0","0","0","0","46" +"15938","-1","","","","","Mystical Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9550","38203","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","53" +"15939","-1","","","","","Councillor's Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10455","41823","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","54" +"15940","-1","","","","","Elegant Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10957","43829","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","57" +"15941","-1","","","","","High Councillor's Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12345","49382","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","59" +"15942","-1","","","","","Master's Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12757","51029","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15943","-1","","","","","Imbued Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26800","134001","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","14","0","0","0","0","0","0","0","0","56" +"15944","-1","","","","","Ancestral Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","512","2051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","0","0","0","0","0","0","0","0","0","7" +"15945","-1","","","","","Runic Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3351","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","13" +"15946","-1","","","","","Mystic's Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","4495","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","3","0","0","0","0","0","0","0","0","18" +"15947","-1","","","","","Sanguine Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1887","7548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","4","4","0","0","0","0","0","0","0","0","23" +"15962","-1","","","","","Satyr's Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2716","10864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","3","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","2","6","0","0","0","0","0","0","0","28" +"15963","-1","","","","","Stonecloth Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4887","19548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","8","0","0","0","0","0","0","0","0","34" +"15964","-1","","","","","Silksand Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6364","25458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","9","2","0","0","0","0","0","0","0","0","39" +"15965","-1","","","","","Windchaser Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7996","31986","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","11","1","0","0","0","0","0","0","0","44" +"15966","-1","","","","","Venomshroud Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9137","36548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","5","0","0","0","0","0","0","0","0","49" +"15967","-1","","","","","Highborne Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10304","41218","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","11","6","3","0","0","0","0","0","0","0","54" +"15968","-1","","","","","Elunarian Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","48765","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","14","3","2","0","0","0","0","0","0","0","59" +"15969","-1","","","","","Beaded Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","1700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","6273","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","5" +"15970","-1","","","","","Native Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","587","2348","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","15","-1","0","6272","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","10" +"15971","-1","","","","","Aboriginal Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","2002","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","15" +"15972","-1","","","","","Ritual Stein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1171","4685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","24","-1","0","2008","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","19" +"15973","-1","","","","","Watcher's Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2313","9254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","30","-1","0","2020","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","25" +"15974","-1","","","","","Pagan Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1461","5846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","26","-1","0","2014","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","21" +"15975","-1","","","","","Raincaller Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2421","9684","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","31","-1","0","2026","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","26" +"15976","-1","","","","","Thistlefur Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4146","16584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","36","-1","0","2032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","31" +"15977","-1","","","","","Vital Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4614","18456","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","37","-1","0","2038","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","32" +"15978","-1","","","","","Geomancer's Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5385","21542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","41","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","36" +"15979","-1","","","","","Embersilk Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","23515","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","42","-1","0","2044","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","37" +"15980","-1","","","","","Darkmist Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7469","29878","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","46","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","41" +"15981","-1","","","","","Lunar Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","31548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","47","-1","0","2056","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","42" +"15982","-1","","","","","Bloodwoven Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8142","32568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","51","-1","0","2062","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","46" +"15983","-1","","","","","Gaea's Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8387","33548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","2068","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","47" +"15984","-1","","","","","Opulent Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9614","38458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","56","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","51" +"15985","-1","","","","","Arachnidian Branch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9887","39548","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","57","-1","0","2074","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15986","-1","","","","","Bonecaster's Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10813","43254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","2080","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","55" +"15987","-1","","","","","Astral Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10996","43985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","61","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","56" +"15988","-1","","","","","Resplendent Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12471","49885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","2086","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","58" +"15989","-1","","","","","Eternal Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12498","49995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","65","-1","0","2092","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"15990","-1","","","","","Enduring Shield","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6850","34252","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","6","4","3","0","0","0","0","0","0","0","34" +"15991","-1","","","","","Warleader's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26309","131545","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","14","4","0","0","0","0","0","0","0","0","58" +"15992","-1","","","","","Dense Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15993","-1","","","","","Thorium Grenade","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15994","-1","","","","","Thorium Widget","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15995","-1","","","","","Thorium Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19739","98698","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"15996","-1","","","","","Lifelike Mechanical Toad","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15997","-1","","","","","Thorium Shells","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","57","-1","0","0","17","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","52" +"15998","-1","","","","","Lewis' Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2512","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"15999","-1","","","","","Spellpower Goggles Xtreme Plus","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9003","45015","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","202","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16000","-1","","","","","Thorium Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3750","15000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16001","-1","","","","","SI:7 Insignia (Fredo)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16002","-1","","","","","SI:7 Insignia (Turyen)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16003","-1","","","","","SI:7 Insignia (Rutger)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16004","-1","","","","","Dark Iron Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29152","145763","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","55","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","50" +"16005","-1","","","","","Dark Iron Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16006","-1","","","","","Delicate Arcanite Converter","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16007","-1","","","","","Flawless Arcanite Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39231","196156","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","9","0","0","0","0","0","0","0","0","0","56" +"16008","-1","","","","","Master Engineer's Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11739","58697","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","16","0","0","0","0","0","0","0","0","0" +"16009","-1","","","","","Voice Amplification Modulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5930","23720","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16022","-1","","","","","Arcanite Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","50" +"16023","-1","","","","","Masterwork Target Dummy","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16024","-1","","","","","Ashbringer Test 001","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16025","-1","","","","","Ashbringer Test 002","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16026","-1","","","","","PVP Plate Helm Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12507","62535","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16027","-1","","","","","PVP Plate Breastplate Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16772","83862","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16028","-1","","","","","PVP Plate Legplates Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16835","84175","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16029","-1","","","","","PVP Plate Gauntlets Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8498","42490","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","338","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16030","-1","","","","","PVP Plate Boots Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12698","63493","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16031","-1","","","","","PVP Plate Shoulder Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12746","63734","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16033","-1","","","","","PVP Plate Wrist Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8626","43133","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16034","-1","","","","","PVP Plate Cloak Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7379","36899","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16035","-1","","","","","PVP Cloth Helm Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12938","64692","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16036","-1","","","","","PVP Cloth Robe Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9912","49562","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16037","-1","","","","","PVP Cloth Legs Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9949","49746","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16038","-1","","","","","PVP Cloth Shoulder Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13081","65409","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16039","-1","","","","","Ta'Kierthan Songblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53598","267991","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","57","-1","0","0","129","1","0","0","0","194","20","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","52" +"16040","-1","","","","","Arcane Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16041","-1","Teaches you how to make a Thorium Grenade.","","","","Schematic: Thorium Grenade","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16042","-1","Teaches you how to make a Thorium Widget.","","","","Schematic: Thorium Widget","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16043","-1","Teaches you how to make a Thorium Rifle.","","","","Schematic: Thorium Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16044","-1","Teaches you how to make a Lifelike Mechanical Toad.","","","","Schematic: Lifelike Mechanical Toad","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16045","-1","Teaches you how to make Spellpower Goggles Xtreme Plus.","","","","Schematic: Spellpower Goggles Xtreme Plus","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","202","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16046","-1","Teaches you how to make a Masterwork Target Dummy.","","","","Schematic: Masterwork Target Dummy","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16047","-1","Teaches you how to make a Thorium Tube.","","","","Schematic: Thorium Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16048","-1","Teaches you how to make a Dark Iron Rifle.","","","","Schematic: Dark Iron Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16049","-1","Teaches you how to make a Dark Iron Bomb.","","","","Schematic: Dark Iron Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16050","-1","Teaches you how to make a Delicate Arcanite Converter.","","","","Schematic: Delicate Arcanite Converter","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16051","-1","Teaches you how to make Thorium Shells.","","","","Schematic: Thorium Shells","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","202","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16052","-1","Teaches you how to make a Voice Amplification Modulator.","","","","Schematic: Voice Amplification Modulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16053","-1","Teaches you how to make Master Engineer's Goggles.","","","","Schematic: Master Engineer's Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16054","-1","Teaches you how to make an Arcanite Dragonling.","","","","Schematic: Arcanite Dragonling","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16055","-1","Teaches you how to make an Arcane Bomb.","","","","Schematic: Arcane Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16056","-1","Teaches you how to make a Flawless Arcanite Rifle.","","","","Schematic: Flawless Arcanite Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16057","-1","","","","","Explorer's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16058","-1","","","","","Fordring's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10156","40625","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","4","0","0","0","0","0","0","0","0","0" +"16059","-1","","","","","Common Brown Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16060","-1","","","","","Common White Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16061","-1","","","","","Test Fire Res Shoulders Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2259","11299","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16062","-1","","","","","Test Fire Res Waist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1511","7558","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16063","-1","","","","","Test Fire Res Hands Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1517","7585","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16064","-1","","","","","Test Fire Res Waist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2066","10332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16065","-1","","","","","Test Fire Res Feet Leather","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2593","12965","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16066","-1","","","","","Test Fire Res Feet Mail","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3137","15686","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16067","-1","","","","","Test Fire Res Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16068","-1","","","","","Test Fire Resist Cloth LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16069","-1","","","","","Test Fire Resist Leather LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16070","-1","","","","","Test Fire Resist Mail LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16071","-1","","","","","Test Fire Resist Plate LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16072","-1","","","","","Expert Cookbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16073","-1","","","","","Artisan Cookbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16074","-1","","","","","Test Potion LockBox (Warrior)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16075","-1","","","","","Test Potion LockBox (Rogue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16076","-1","","","","","Test Potion LockBox (Paladin)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16077","-1","","","","","Test Potion LockBox (Hunter)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16078","-1","","","","","Test Potion LockBox (Druid)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16079","-1","","","","","Test Potion LockBox (Shaman)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16080","-1","","","","","Test Potion LockBox (Mage/Priest/Warlock)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16081","-1","","","","","Test Potion LockBox (Raid)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16082","-1","","","","","Artisan Fishing - The Way of the Lure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","356","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16083","-1","","","","","Expert Fishing - The Bass and You","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16084","-1","","","","","Expert First Aid - Under Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16085","-1","","","","","Artisan First Aid - Heal Thyself","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16086","-1","","","","","Test Enchant Chest Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16102","-1","","","","","Test Enchant Chest Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16103","-1","","","","","Test Enchant Boots Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16104","-1","","","","","QAEnchhelp Cloak +7 Fire Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16105","-1","","","","","Test Enchant Bracer Greater Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16106","-1","","","","","Test Enchant Weapon Greater Striking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16107","-1","","","","","Test Enchant Bracer Greater Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16108","-1","","","","","Test Enchant 2H Weapon Greater Impact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16109","-1","","","","","Test Enchantments LockBox (Enchanting Items)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16110","-1","Teaches you how to cook a Monster Omelet.","","","","Recipe: Monster Omelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16111","-1","Teaches you how to cook Spiced Chili Crab.","","","","Recipe: Spiced Chili Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16112","-1","Teaches you how to make a Heavy Silk Bandage.","","","","Manual: Heavy Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","180","129","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16113","-1","Teaches you how to make a Mageweave Bandage.","","","","Manual: Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","210","129","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16114","-1","","","","","Foreman's Blackjack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16115","-1","","","","","Osric's Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16116","-1","","","","","Test Nature Res Cloak Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2219","11095","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16117","-1","","","","","Test Nature Res Hands Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1484","7423","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16118","-1","","","","","Test Nature Res Legs Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2980","14900","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16119","-1","","","","","Test Nature Res Wrist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1495","7476","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16120","-1","","","","","Test Nature Res Waist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","7503","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16121","-1","","","","","Test Nature Res Head Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2099","10496","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16122","-1","","","","","Test Nature Res Shoulders Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2107","10535","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16123","-1","","","","","Test Nature Res Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16124","-1","","","","","Test Frost Res Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16125","-1","","","","","Test Arcane Res Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5395","21581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16126","-1","","","","","Test Nature Res Waist Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1782","8912","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16127","-1","","","","","Test Nature Res Wrist Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1789","8945","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16129","-1","","","","","Test Nature Res Feet Mail","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3258","16294","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16131","-1","","","","","Test Nature Res Waist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2178","10894","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16132","-1","","","","","Test Nature Res Wrist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1822","9112","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16134","-1","","","","","Test Nature Res Shoulders Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3318","16594","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16135","-1","","","","","Test Frost Res Feet Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2210","11053","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16136","-1","","","","","Test Frost Res Waist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1479","7396","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16137","-1","","","","","Test Frost Res Wrist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1377","6889","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16138","-1","","","","","Test Frost Res Head Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2074","10374","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16139","-1","","","","","Test Frost Res Head Leather","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2603","13018","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16140","-1","","","","","Test Nature Res Head Leather","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2613","13068","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16141","-1","","","","","Test Nature Res Head Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3148","15741","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16142","-1","","","","","Test Frost Res Wrist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2106","10534","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16143","-1","","","","","Test Frost Res Shoulder Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3186","15931","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16144","-1","","","","","Test Frost Res Shoulders Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2653","13268","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16145","-1","","","","","Test Shadow Res Waist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1420","7102","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16146","-1","","","","","Test Shadow Res Head Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2138","10693","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16147","-1","","","","","Test Shadow Res Shoulders Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2146","10733","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16148","-1","","","","","Test Shadow Res Shoulders Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2693","13467","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16149","-1","","","","","Test Shadow Res Shoulder Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3258","16291","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16150","-1","","","","","Test Shadow Res Waist Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1808","9044","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16151","-1","","","","","Test Arcane Res Feet Cloth","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2178","10893","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16152","-1","","","","","Test Arcane Res Waist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1457","7288","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16153","-1","","","","","Test Arcane Res Wrist Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1463","7315","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16154","-1","","","","","Test Arcane Res Shoulders Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2260","11300","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16155","-1","","","","","Test Arcane Res Waist Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1890","9450","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16156","-1","","","","","Test Arcane Res Head Leather","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2844","14224","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16157","-1","","","","","Test Arcane Res Feet Mail","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3113","15569","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16158","-1","","","","","Test Arcane Res Wrist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2074","10373","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16159","-1","","","","","Test Arcane Res Head Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3124","15620","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16160","-1","","","","","Test Arcane Res Shoulders Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5565","27829","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16161","-1","","","","","Test Shadow Res Hands Plate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3753","18766","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16162","-1","","","","","Test Frost Res Shoulders Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5608","28042","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16163","-1","","","","","Test Arcane Res Waist Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2114","10573","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16164","-1","","","","","Test Arcane Res Hands Mail","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2122","10612","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16165","-1","","","","","Test Arcane Res Legs Mail","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4260","21304","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","30" +"16166","-1","","","","","Bean Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"16167","-1","","","","","Versicolor Treat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"16168","-1","","","","","Heaven Peach","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16169","-1","","","","","Wild Ricecake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","62","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"16170","-1","","","","","Steamed Mandu","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"16171","-1","","","","","Shinsollo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"16172","-1","","","","","Test Nature Res Hands Plate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4012","20064","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","40" +"16173","-1","","","","","Test Frost Resist Cloth LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16174","-1","","","","","Test Frost Resist Leather LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16175","-1","","","","","Test Frost Resist Mail LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16176","-1","","","","","Test Frost Resist Plate LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16177","-1","","","","","Test Nature Resist Plate LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16178","-1","","","","","Test Nature Resist Leather LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16179","-1","","","","","Test Nature Resist Mail LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16180","-1","","","","","Test Nature Resist Cloth LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16181","-1","","","","","Test Shadow Resist Cloth LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16182","-1","","","","","Test Shadow Resist Leather LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16183","-1","","","","","Test Shadow Resist Mail LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16184","-1","","","","","Test Shadow Resist Plate LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16185","-1","","","","","Test Arcane Resist Plate LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16186","-1","","","","","Test Arcane Resist Cloth LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16187","-1","","","","","Test Arcane Resist Leather LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16188","-1","","","","","Test Arcane Resist Mail LockBox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16189","-1","","","","","Maggran's Reserve Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2491","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16190","-1","","","","","Bloodfury Ripper's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16191","-1","","","","","Ornate Mirror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16192","-1","","","","","Besseleth's Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16202","-1","","","","","Lesser Eternal Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","40000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16203","-1","","","","","Greater Eternal Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","120000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16204","-1","","","","","Illusion Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16205","-1","","","","","Gaea Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16206","-1","Needed by Enchanters.","","","","Arcanite Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16207","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Arcanite Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","2000","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16208","-1","","","","","Enchanted Gaea Seeds","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16209","-1","","","","","Podrig's Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2515","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16210","-1","","","","","Gordon's Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16211","-1","","","","","Test Quality Modifier Chest","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17930","89651","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"16212","-1","","","","","TEST SWORD 3","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25706","128533","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16213","-1","","","","","Test Quality Modifier Chest","0","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18057","90286","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","55" +"16214","-1","Teaches you how to permanently enchant a bracer to give +7 Intellect.","","","","Formula: Enchant Bracer - Greater Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","255","333","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16215","-1","Teaches you how to permanently enchant a pair of boots to grant +7 Stamina.","","","","Formula: Enchant Boots - Greater Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","333","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16216","-1","Teaches you how to permanently enchant a cloak so it adds 5 to all resistances.","","","","Formula: Enchant Cloak - Greater Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16217","-1","Teaches you how to permanently enchant a shield to grant +7 Stamina.","","","","Formula: Enchant Shield - Greater Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","333","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16218","-1","Teaches you how to permanently enchant a bracer to give +9 Spirit.","","","","Formula: Enchant Bracer - Superior Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","333","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16219","-1","Teaches you how to permanently enchant gloves to give +7 Agility.","","","","Formula: Enchant Gloves - Greater Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","333","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16220","-1","Teaches you how to permanently enchant a pair of boots to grant +5 Spirit.","","","","Formula: Enchant Boots - Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16221","-1","Teaches you how to permanently enchant a piece of chest armor to give +100 health.","","","","Formula: Enchant Chest - Major Health","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16222","-1","Teaches you how to permanently enchant a shield to grant +9 Spirit.","","","","Formula: Enchant Shield - Superior Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","280","333","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16223","-1","Teaches you how to permanently enchant a weapon to give it an icy chill that sometimes slows its target.","","","","Formula: Enchant Weapon - Icy Chill","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","333","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16224","-1","Teaches you how to permanently enchant a cloak to give 70 additional armor.","","","","Formula: Enchant Cloak - Superior Defense","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","333","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16242","-1","Teaches you how to permanently enchant a piece of chest armor to give +100 mana.","","","","Formula: Enchant Chest - Major Mana","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16243","-1","Teaches you how to make a Runed Arcanite Rod.","","","","Formula: Runed Arcanite Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16244","-1","Teaches you how to permanently enchant gloves to give +7 Strength.","","","","Formula: Enchant Gloves - Greater Strength","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16245","-1","Teaches you how to permanently enchant a pair of boots to grant +7 Agility.","","","","Formula: Enchant Boots - Greater Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16246","-1","Teaches you how to permanently enchant a bracer to give +9 Strength.","","","","Formula: Enchant Bracer - Superior Strength","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16247","-1","Teaches you how to permanently enchant a two-handed weapon to do 9 additional damage.","","","","Formula: Enchant 2H Weapon - Superior Impact","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16248","-1","Teaches you how to permanently enchant a weapon to occasionally curse those it strikes.","","","","Formula: Enchant Weapon - Unholy","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","333","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16249","-1","Teaches you how to permanently enchant a two-handed weapon so it grants +9 Intellect.","","","","Formula: Enchant 2H Weapon - Major Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16250","-1","Teaches you how to permanently enchant a weapon to do 5 additional damage.","","","","Formula: Enchant Weapon - Superior Striking","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16251","-1","Teaches you how to permanently enchant a bracer to give +9 Stamina.","","","","Formula: Enchant Bracer - Superior Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16252","-1","Teaches you how to permanently enchant a weapon to occasionally bless the wielder with great strength.","","","","Formula: Enchant Weapon - Crusader","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16253","-1","Teaches you how to permanently enchant a piece of chest armor to give +4 to each of the five attributes.","","","","Formula: Enchant Chest - Greater Stats","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16254","-1","Teaches you how to permanently enchant a weapon to occasionally steal some of the health of the foe and give it to the wielder.","","","","Formula: Enchant Weapon - Lifestealing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16255","-1","Teaches you how to permanently enchant a two-handed weapon so it grants +9 Spirit.","","","","Formula: Enchant 2H Weapon - Major Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16262","-1","","","","","Nessa's Collection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16263","-1","","","","","Laird's Response","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2513","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16282","-1","","","","","Bundle of Hides","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16283","-1","","","","","Ahanu's Leather Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16302","-1","","","","","Grimoire of Firebolt (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"16303","-1","","","","","Ursangous's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16304","-1","","","","","Shadumbra's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16305","-1","","","","","Sharptalon's Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20" +"16306","-1","","","","","Zargh's Meats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16307","-1","","","","","Gryshka's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2511","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16308","-1","","","","","Northridge Crowbar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16309","-1","The Blood of Drakkisath Flows Within...","","","","Drakefire Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","0","0","0","0","0","0","0","0","0","50" +"16310","-1","","","","","Brock's List","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2514","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16311","-1","","","","","Honorary Picks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16312","-1","","","","","Incendrites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16313","-1","","","","","Felix's Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16314","-1","","","","","Felix's Bucket of Bolts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16316","-1","","","","","Grimoire of Firebolt (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"16317","-1","","","","","Grimoire of Firebolt (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"16318","-1","","","","","Grimoire of Firebolt (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16319","-1","","","","","Grimoire of Firebolt (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16320","-1","","","","","Grimoire of Firebolt (Rank 7)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16321","-1","","","","","Grimoire of Blood Pact (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"16322","-1","","","","","Grimoire of Blood Pact (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"16323","-1","","","","","Grimoire of Blood Pact (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16324","-1","","","","","Grimoire of Blood Pact (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16325","-1","","","","","Grimoire of Blood Pact (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16326","-1","","","","","Grimoire of Fire Shield (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","225","900","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"16327","-1","","","","","Grimoire of Fire Shield (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16328","-1","","","","","Grimoire of Fire Shield (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16329","-1","","","","","Grimoire of Fire Shield (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"16330","-1","","","","","Grimoire of Fire Shield (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"16331","-1","","","","","Grimoire of Phase Shift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"16332","-1","","","","","Thazz'ril's Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16333","-1","","","","","Samuel's Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16335","-1","","","","","Senior Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16338","223","","","","","Knight-Lieutenant's Steed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","400000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16339","223","","","","","Commander's Steed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","148","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16341","-1","","","","","Sergeant's Cloak","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","0","0","0","0","0","0","0","0","0","45" +"16342","-1","","","","","Sergeant's Cape","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","17","0","0","0","0","0","0","0","0","0","58" +"16343","223","","","","","Blood Guard's Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","400000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16344","223","","","","","zzUNUSEDLieutenant General's Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","5000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","149","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16345","-1","","","","","High Warlord's Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"16346","-1","","","","","Grimoire of Torment (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"16347","-1","","","","","Grimoire of Torment (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"16348","-1","","","","","Grimoire of Torment (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16349","-1","","","","","Grimoire of Torment (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16350","-1","","","","","Grimoire of Torment (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16351","-1","","","","","Grimoire of Sacrifice (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","300","1200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"16352","-1","","","","","Grimoire of Sacrifice (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16353","-1","","","","","Grimoire of Sacrifice (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16354","-1","","","","","Grimoire of Sacrifice (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16355","-1","","","","","Grimoire of Sacrifice (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16356","-1","","","","","Grimoire of Sacrifice (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"16357","-1","","","","","Grimoire of Consume Shadows (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18" +"16358","-1","","","","","Grimoire of Consume Shadows (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16359","-1","","","","","Grimoire of Consume Shadows (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16360","-1","","","","","Grimoire of Consume Shadows (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"16361","-1","","","","","Grimoire of Consume Shadows (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"16362","-1","","","","","Grimoire of Consume Shadows (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16363","-1","","","","","Grimoire of Suffering (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"16364","-1","","","","","Grimoire of Suffering (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16365","-1","","","","","Grimoire of Suffering (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16366","-1","","","","","Grimoire of Suffering (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16368","-1","","","","","Grimoire of Lash of Pain (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"16369","-1","","","","","Knight-Lieutenant's Silk Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7575","37875","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16371","-1","","","","","Grimoire of Lash of Pain (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16372","-1","","","","","Grimoire of Lash of Pain (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","44" +"16373","-1","","","","","Grimoire of Lash of Pain (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"16374","-1","","","","","Grimoire of Lash of Pain (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"16375","-1","","","","","Grimoire of Soothing Kiss (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","22" +"16376","-1","","","","","Grimoire of Soothing Kiss (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","34" +"16377","-1","","","","","Grimoire of Soothing Kiss (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"16378","-1","","","","","Grimoire of Soothing Kiss (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"16379","-1","","","","","Grimoire of Seduction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","26" +"16380","-1","","","","","Grimoire of Lesser Invisibility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16381","-1","","","","","Grimoire of Devour Magic (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","38" +"16382","-1","","","","","Grimoire of Devour Magic (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3250","13000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","46" +"16383","-1","","","","","Grimoire of Devour Magic (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","54" +"16384","-1","","","","","Grimoire of Tainted Blood (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1750","7000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","32" +"16385","-1","","","","","Grimoire of Tainted Blood (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16386","-1","","","","","Grimoire of Tainted Blood (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3500","14000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"16387","-1","","","","","Grimoire of Tainted Blood (Rank 4)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"16388","-1","","","","","Grimoire of Spell Lock (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2250","9000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"16389","-1","","","","","Grimoire of Spell Lock (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"16390","-1","","","","","Grimoire of Paranoia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2750","11000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","42" +"16391","-1","","","","","Knight-Lieutenant's Silk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5087","25436","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"16392","-1","","","","","Knight-Lieutenant's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9574","47874","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16393","-1","","","","","Knight-Lieutenant's Dragonhide Footwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9609","48048","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","5","12","5","5","0","0","0","0","0","58" +"16396","-1","","","","","Knight-Lieutenant's Leather Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6650","33250","1","0.5","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","0","0","0","0","0","0","0","0","58" +"16397","-1","","","","","Knight-Lieutenant's Dragonhide Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6673","33367","1","0.5","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","12","0","0","0","0","0","0","0","58" +"16401","-1","","","","","Knight-Lieutenant's Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12237","61188","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16403","-1","","","","","Knight-Lieutenant's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7401","37008","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","8","0","0","0","0","0","0","0","0","58" +"16405","-1","","","","","Knight-Lieutenant's Plate Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13027","65137","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","8","5","0","0","0","0","0","0","0","58" +"16406","-1","","","","","Knight-Lieutenant's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8785","43925","1","0.5","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16408","-1","","","","","Befouled Water Globe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1918","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","23" +"16409","-1","","","","","Knight-Lieutenant's Lamellar Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13227","66135","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","7","6","0","0","0","0","0","0","58" +"16410","-1","","","","","Knight-Lieutenant's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8919","44595","1","0.5","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16413","-1","","","","","Knight-Captain's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10524","52620","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16414","-1","","","","","Knight-Captain's Silk Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10562","52812","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"16415","-1","","","","","Lieutenant Commander's Silk Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7950","39752","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16416","-1","","","","","Lieutenant Commander's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7978","39892","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","16","16","0","0","0","0","0","0","0","58" +"16417","-1","","","","","Knight-Captain's Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13345","66727","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","13","0","0","0","0","0","0","0","0","58" +"16418","-1","","","","","Lieutenant Commander's Leather Veil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10045","50225","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","26","0","0","0","0","0","0","0","0","0","58" +"16419","-1","","","","","Knight-Captain's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13441","67207","1","0.5","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16420","-1","","","","","Lieutenant Commander's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10116","50580","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","7","0","0","0","0","0","0","0","0","58" +"16421","-1","","","","","Knight-Captain's Dragonhide Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13536","67680","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","13","9","8","0","0","0","0","0","0","58" +"16422","-1","","","","","Knight-Captain's Dragonhide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13583","67919","1","0.5","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","12","12","9","12","0","0","0","0","0","58" +"16423","-1","","","","","Lieutenant Commander's Dragonhide Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9251","46256","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","10","6","0","0","0","0","0","58" +"16424","-1","","","","","Lieutenant Commander's Dragonhide Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9286","46430","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","11","11","11","9","0","0","0","0","0","58" +"16425","-1","","","","","Knight-Captain's Chain Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14915","74577","1","0.5","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16426","-1","","","","","Knight-Captain's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14972","74864","1","0.5","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","17","0","0","0","0","0","0","0","0","58" +"16427","-1","","","","","Lieutenant Commander's Chain Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11632","58160","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","7","0","0","0","0","0","0","0","0","58" +"16428","-1","","","","","Lieutenant Commander's Chain Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11623","58119","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","10","10","0","0","0","0","0","0","0","58" +"16429","-1","","","","","Lieutenant Commander's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13585","67927","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16430","-1","","","","","Knight-Captain's Plate Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18215","91079","1","0.5","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","9","6","0","0","0","0","0","0","0","58" +"16431","-1","","","","","Knight-Captain's Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18281","91405","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16432","-1","","","","","Lieutenant Commander's Plate Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13734","68674","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","7","6","0","0","0","0","0","0","0","58" +"16433","-1","","","","","Knight-Captain's Lamellar Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18415","92076","1","0.5","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","9","8","0","0","0","0","0","0","0","58" +"16434","-1","","","","","Lieutenant Commander's Lamellar Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13835","69177","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16435","-1","","","","","Knight-Captain's Lamellar Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18547","92738","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16436","-1","","","","","Lieutenant Commander's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13934","69672","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","5","6","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","12","7","5","0","0","0","0","0","58" +"16437","-1","","","","","Marshal's Silk Footwraps","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","14","23","6","0","0","0","0","0","0","0","60" +"16440","-1","","","","","Marshal's Silk Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","12","5","0","0","0","0","0","0","0","60" +"16441","-1","","","","","Field Marshal's Coronet","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16442","-1","","","","","Marshal's Silk Leggings","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","10","20","0","0","0","0","0","0","0","60" +"16443","-1","","","","","Field Marshal's Silk Vestments","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16444","-1","","","","","Field Marshal's Silk Spaulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","15","5","0","0","0","0","0","0","0","60" +"16446","-1","","","","","Marshal's Leather Footguards","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","22","0","0","0","0","0","0","0","0","60" +"16448","-1","","","","","Marshal's Dragonhide Gauntlets","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","15","0","0","0","0","0","0","0","60" +"16449","-1","","","","","Field Marshal's Dragonhide Spaulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","14","13","11","11","0","0","0","0","0","60" +"16450","-1","","","","","Marshal's Dragonhide Legguards","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","18","18","15","13","0","0","0","0","0","60" +"16451","-1","","","","","Field Marshal's Dragonhide Helmet","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","19","19","20","15","7","0","0","0","0","0","60" +"16452","-1","","","","","Field Marshal's Dragonhide Breastplate","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","19","14","13","0","0","0","0","0","0","60" +"16453","-1","","","","","Field Marshal's Leather Chestpiece","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","26","0","0","0","0","0","0","0","0","60" +"16454","-1","","","","","Marshal's Leather Handgrips","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","20","0","0","0","0","0","0","0","0","60" +"16455","-1","","","","","Field Marshal's Leather Mask","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","27","0","0","0","0","0","0","0","0","60" +"16456","-1","","","","","Marshal's Leather Leggings","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","27","0","0","0","0","0","0","0","0","60" +"16457","-1","","","","","Field Marshal's Leather Epaulets","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","21","0","0","0","0","0","0","0","0","60" +"16459","-1","","","","","Marshal's Dragonhide Boots","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","14","10","10","11","0","0","0","0","0","60" +"16462","-1","","","","","Marshal's Chain Boots","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","18","9","0","0","0","0","0","0","0","60" +"16463","-1","","","","","Marshal's Chain Grips","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","14","4","0","0","0","0","0","0","0","60" +"16465","-1","","","","","Field Marshal's Chain Helm","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","23","12","0","0","0","0","0","0","0","60" +"16466","-1","","","","","Field Marshal's Chain Breastplate","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","23","12","0","0","0","0","0","0","0","60" +"16467","-1","","","","","Marshal's Chain Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","27","12","0","0","0","0","0","0","0","60" +"16468","-1","","","","","Field Marshal's Chain Spaulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","18","10","0","0","0","0","0","0","0","60" +"16471","-1","","","","","Marshal's Lamellar Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","16","0","0","0","0","0","0","0","60" +"16472","-1","","","","","Marshal's Lamellar Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","15","15","0","0","0","0","0","0","0","60" +"16473","-1","","","","","Field Marshal's Lamellar Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","21","20","0","0","0","0","0","0","0","60" +"16474","-1","","","","","Field Marshal's Lamellar Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","21","20","0","0","0","0","0","0","0","60" +"16475","-1","","","","","Marshal's Lamellar Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","20","17","0","0","0","0","0","0","0","60" +"16476","-1","","","","","Field Marshal's Lamellar Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","16","15","0","0","0","0","0","0","0","60" +"16477","-1","","","","","Field Marshal's Plate Armor","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","16","14","0","0","0","0","0","0","0","60" +"16478","-1","","","","","Field Marshal's Plate Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","28","0","0","0","0","0","0","0","0","60" +"16479","-1","","","","","Marshal's Plate Legguards","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16480","-1","","","","","Field Marshal's Plate Shoulderguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","18","16","0","0","0","0","0","0","0","60" +"16483","-1","","","","","Marshal's Plate Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","18","12","0","0","0","0","0","0","0","60" +"16484","-1","","","","","Marshal's Plate Gauntlets","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","23","0","0","0","0","0","0","0","0","60" +"16485","-1","","","","","Blood Guard's Silk Footwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7660","38303","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16486","-1","","","","","First Sergeant's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16487","-1","","","","","Blood Guard's Silk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5145","25727","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"16489","-1","","","","","Champion's Silk Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7774","38874","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","16","16","0","0","0","0","0","0","0","58" +"16490","-1","","","","","Legionnaire's Silk Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10404","52024","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","13","0","0","0","0","0","0","0","58" +"16491","-1","","","","","Legionnaire's Silk Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10716","53584","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16492","-1","","","","","Champion's Silk Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8066","40332","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","63","128","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16494","-1","","","","","Blood Guard's Dragonhide Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10154","50774","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","5","5","5","0","0","0","0","0","58" +"16496","-1","","","","","Blood Guard's Dragonhide Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6168","30843","1","0.5","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","12","0","0","0","0","0","0","0","58" +"16497","-1","","","","","First Sergeant's Leather Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16498","-1","","","","","Blood Guard's Leather Treads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9325","46625","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16499","-1","","","","","Blood Guard's Leather Vices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6240","31200","1","0.5","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","0","0","0","0","0","0","0","0","58" +"16501","-1","","","","","Champion's Dragonhide Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9431","47159","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","10","6","0","0","0","0","0","58" +"16502","-1","","","","","Legionnaire's Dragonhide Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12623","63119","1","0.5","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","12","12","12","9","0","0","0","0","0","58" +"16503","-1","","","","","Champion's Dragonhide Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9502","47514","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","11","11","11","9","0","0","0","0","0","58" +"16504","-1","","","","","Legionnaire's Dragonhide Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12718","63592","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","13","9","8","0","0","0","0","0","0","58" +"16505","-1","","","","","Legionnaire's Leather Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12766","63832","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","13","0","0","0","0","0","0","0","0","58" +"16506","-1","","","","","Champion's Leather Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9609","48048","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","26","0","0","0","0","0","0","0","0","0","58" +"16507","-1","","","","","Champion's Leather Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9903","49516","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","7","0","0","0","0","0","0","0","0","58" +"16508","-1","","","","","Legionnaire's Leather Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13252","66261","1","0.5","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16509","-1","","","","","Blood Guard's Plate Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13938","69693","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","8","5","0","0","0","0","0","0","0","58" +"16510","-1","","","","","Blood Guard's Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","15","0","0","0","0","0","0","0","0","58" +"16513","-1","","","","","Legionnaire's Plate Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18886","94434","1","0.5","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","9","6","0","0","0","0","0","0","0","58" +"16514","-1","","","","","Champion's Plate Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14187","70935","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","31","9","8","0","0","0","0","0","0","0","58" +"16515","-1","","","","","Legionnaire's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19019","95096","1","0.5","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","7","0","0","0","0","0","0","0","0","58" +"16516","-1","","","","","Champion's Plate Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12928","64641","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","7","6","0","0","0","0","0","0","0","58" +"16518","-1","","","","","Blood Guard's Mail Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11237","56187","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","10","0","0","0","0","0","0","0","0","58" +"16519","-1","","","","","Blood Guard's Mail Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7487","37436","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","7","6","0","0","0","0","0","0","0","58" +"16521","-1","","","","","Champion's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11316","56580","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","9","8","0","0","0","0","0","0","0","58" +"16522","-1","","","","","Legionnaire's Mail Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15145","75727","1","0.5","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","20","0","0","0","0","0","0","0","0","58" +"16523","-1","","","","","Legionnaire's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15615","78075","1","0.5","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","11","5","0","0","0","0","0","0","0","58" +"16524","-1","","","","","Champion's Mail Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11806","59033","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","63","64","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","5","5","0","0","0","0","0","0","58" +"16525","-1","","","","","Legionnaire's Chain Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15728","78643","1","0.5","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","11","0","0","0","0","0","0","0","0","58" +"16526","-1","","","","","Champion's Chain Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11839","59198","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","10","10","0","0","0","0","0","0","0","58" +"16527","-1","","","","","Legionnaire's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15843","79218","1","0.5","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","17","0","0","0","0","0","0","0","0","58" +"16528","-1","","","","","Champion's Chain Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11978","59894","1","0.5","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","7","0","0","0","0","0","0","0","0","58" +"16530","-1","","","","","Blood Guard's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8007","40036","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","8","0","0","0","0","0","0","0","0","58" +"16531","-1","","","","","Blood Guard's Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12107","60538","1","0.5","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","63","4","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16532","-1","","","","","First Sergeant's Mail Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"16533","-1","","","","","Warlord's Silk Cowl","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16534","-1","","","","","General's Silk Trousers","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","10","20","0","0","0","0","0","0","0","60" +"16535","-1","","","","","Warlord's Silk Raiment","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","28","17","6","0","0","0","0","0","0","0","60" +"16536","-1","","","","","Warlord's Silk Amice","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","74","128","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","15","5","0","0","0","0","0","0","0","60" +"16539","-1","","","","","General's Silk Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","14","6","0","0","0","0","0","0","0","60" +"16540","-1","","","","","General's Silk Handguards","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","12","5","0","0","0","0","0","0","0","60" +"16541","-1","","","","","Warlord's Plate Armor","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","16","14","0","0","0","0","0","0","0","60" +"16542","-1","","","","","Warlord's Plate Headpiece","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","28","0","0","0","0","0","0","0","0","60" +"16543","-1","","","","","General's Plate Leggings","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16544","-1","","","","","Warlord's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","74","1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","18","16","0","0","0","0","0","0","0","60" +"16545","-1","","","","","General's Plate Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","18","12","0","0","0","0","0","0","0","60" +"16548","-1","","","","","General's Plate Gauntlets","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","23","0","0","0","0","0","0","0","0","60" +"16549","-1","","","","","Warlord's Dragonhide Hauberk","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","19","14","13","0","0","0","0","0","0","60" +"16550","-1","","","","","Warlord's Dragonhide Helmet","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","19","19","20","15","7","0","0","0","0","0","60" +"16551","-1","","","","","Warlord's Dragonhide Epaulets","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","74","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","14","14","11","11","0","0","0","0","0","60" +"16552","-1","","","","","General's Dragonhide Leggings","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","18","18","13","15","0","0","0","0","0","60" +"16554","-1","","","","","General's Dragonhide Boots","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","14","10","11","10","0","0","0","0","0","60" +"16555","-1","","","","","General's Dragonhide Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","15","0","0","0","0","0","0","0","60" +"16558","-1","","","","","General's Leather Treads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","22","0","0","0","0","0","0","0","0","60" +"16560","-1","","","","","General's Leather Mitts","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","20","0","0","0","0","0","0","0","0","60" +"16561","-1","","","","","Warlord's Leather Helm","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","27","0","0","0","0","0","0","0","0","60" +"16562","-1","","","","","Warlord's Leather Spaulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","21","0","0","0","0","0","0","0","0","60" +"16563","-1","","","","","Warlord's Leather Breastplate","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","74","8","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","26","0","0","0","0","0","0","0","0","60" +"16564","-1","","","","","General's Leather Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","27","0","0","0","0","0","0","0","0","60" +"16565","-1","","","","","Warlord's Chain Chestpiece","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","28","12","0","0","0","0","0","0","0","60" +"16566","-1","","","","","Warlord's Chain Helmet","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","28","12","0","0","0","0","0","0","0","60" +"16567","-1","","","","","General's Chain Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","27","12","0","0","0","0","0","0","0","60" +"16568","-1","","","","","Warlord's Chain Shoulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","74","4","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","21","10","0","0","0","0","0","0","0","60" +"16569","-1","","","","","General's Chain Boots","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","20","9","0","0","0","0","0","0","0","60" +"16571","-1","","","","","General's Chain Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","20","4","0","0","0","0","0","0","0","60" +"16573","-1","","","","","General's Mail Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","17","0","0","0","0","0","0","0","0","60" +"16574","-1","","","","","General's Mail Gauntlets","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","17","0","0","0","0","0","0","0","60" +"16577","-1","","","","","Warlord's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","20","9","0","0","0","0","0","0","0","60" +"16578","-1","","","","","Warlord's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","19","11","0","0","0","0","0","0","0","60" +"16579","-1","","","","","General's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","23","0","0","0","0","0","0","0","0","60" +"16580","-1","","","","","Warlord's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","18","17","9","0","0","0","0","0","0","60" +"16581","-1","Magic stirs deep inside.","","","","Resonite Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16582","-1","","","","","Monster - Wand, Horde Green Feathered","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"16583","-1","","","","","Demonic Figurine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16602","-1","","","","","Troll Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16603","-1","","","","","Enchanted Resonite Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16604","-1","","","","","Moon Robes of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16605","-1","","","","","Friar's Robes of the Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16606","-1","","","","","Juju Hex Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16607","-1","","","","","Acolyte's Sacrificial Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","88","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"16608","-1","","","","","Aquarius Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","1066","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","1024","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"16622","-1","","","","","Thornflinger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27307","136536","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","57","-1","0","0","67","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"16623","-1","","","","","Opaline Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7783","31135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","13","3","0","0","0","0","0","0","0","0","0" +"16642","-1","","","","","Shredder Operating Manual - Chapter 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16643","-1","","","","","Shredder Operating Manual - Chapter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16644","-1","","","","","Shredder Operating Manual - Chapter 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16645","-1","","","","","Shredder Operating Manual - Page 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16646","-1","","","","","Shredder Operating Manual - Page 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16647","-1","","","","","Shredder Operating Manual - Page 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16648","-1","","","","","Shredder Operating Manual - Page 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16649","-1","","","","","Shredder Operating Manual - Page 5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16650","-1","","","","","Shredder Operating Manual - Page 6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16651","-1","","","","","Shredder Operating Manual - Page 7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16652","-1","","","","","Shredder Operating Manual - Page 8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16653","-1","","","","","Shredder Operating Manual - Page 9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16654","-1","","","","","Shredder Operating Manual - Page 10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16655","-1","","","","","Shredder Operating Manual - Page 11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16656","-1","","","","","Shredder Operating Manual - Page 12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62","250","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16658","-1","","","","","Wildhunter Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1649","8247","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"16659","-1","","","","","Deftkin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","856","4282","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"16660","-1","","","","","Driftmire Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2200","11004","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","2","3","0","0","0","0","0","0","0","0" +"16661","-1","","","","","Soft Willow Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1035","5176","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","0" +"16662","-1","","","","","Fragment of the Dragon's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16663","-1","","","","","Blood of the Black Dragon Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16664","-1","","","","","Ornate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9234","46172","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","1098","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","49" +"16665","-1","","","","","Tome of Tranquilizing Shot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"16666","-1","","","","","Vest of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32368","161841","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","20","13","0","0","0","0","0","0","0","58" +"16667","-1","","","","","Coif of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24035","120178","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","13","12","7","0","0","0","0","0","0","57" +"16668","-1","","","","","Kilt of Elements","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29493","147468","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","4","7","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","15","12","7","6","0","0","0","0","0","56" +"16669","-1","","","","","Pauldrons of Elements","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21995","109977","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","14","6","6","0","0","0","0","0","0","55" +"16670","-1","","","","","Boots of Elements","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21027","105136","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","9","0","0","0","0","0","0","0","0","54" +"16671","-1","","","","","Bindings of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12586","62932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16672","-1","","","","","Gauntlets of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14059","70299","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","5","4","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","10","9","4","0","0","0","0","0","0","54" +"16673","-1","","","","","Cord of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13440","67202","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","4","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","9","7","6","0","0","0","0","0","0","53" +"16674","-1","","","","","Beaststalker's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30993","154969","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","4","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","16","13","6","5","0","0","0","0","0","58" +"16675","-1","","","","","Beaststalker's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21421","107106","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","9","0","0","0","0","0","0","0","0","54" +"16676","-1","","","","","Beaststalker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14268","71344","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","6","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","9","0","0","0","0","0","0","54" +"16677","-1","","","","","Beaststalker's Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23186","115933","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","20","10","6","0","0","0","0","0","0","57" +"16678","-1","","","","","Beaststalker's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30607","153036","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","12","6","6","0","0","0","0","0","0","56" +"16679","-1","","","","","Beaststalker's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22822","114114","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","8","7","4","0","0","0","0","0","0","55" +"16680","-1","","","","","Beaststalker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13788","68941","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","3","5","4","7","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","7","9","9","6","0","0","0","0","0","53" +"16681","-1","","","","","Beaststalker's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13055","65275","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","7","0","0","0","0","0","0","0","0","52" +"16682","-1","","","","","Magister's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14582","72914","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16683","-1","","","","","Magister's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8765","43827","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","5","4","0","0","0","0","0","0","0","52" +"16684","-1","","","","","Magister's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9093","45468","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16685","-1","","","","","Magister's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8694","43470","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","6","6","0","0","0","0","0","0","0","53" +"16686","-1","","","","","Magister's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14836","74182","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","5","11","0","0","0","0","0","0","0","57" +"16687","-1","","","","","Magister's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19585","97928","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","20","12","0","0","0","0","0","0","0","56" +"16688","-1","","","","","Magister's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20202","101011","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","31","8","9","0","0","0","0","0","0","0","58" +"16689","-1","","","","","Magister's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14597","72986","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","6","6","0","0","0","0","0","0","0","55" +"16690","-1","","","","","Devout Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20355","101778","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","13","0","0","0","0","0","0","0","58" +"16691","-1","","","","","Devout Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14005","70029","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16692","-1","","","","","Devout Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9372","46861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16693","-1","","","","","Devout Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15230","76153","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","15","13","0","0","0","0","0","0","0","57" +"16694","-1","","","","","Devout Skirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20106","100531","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","15","12","0","0","0","0","0","0","0","56" +"16695","-1","","","","","Devout Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14925","74627","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","9","4","0","0","0","0","0","0","0","55" +"16696","-1","","","","","Devout Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9058","45293","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","20","9","4","0","0","0","0","0","0","0","53" +"16697","-1","","","","","Devout Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8577","42887","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16698","-1","","","","","Dreadmist Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15511","77557","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","12","0","0","0","0","0","0","0","57" +"16699","-1","","","","","Dreadmist Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20475","102377","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","15","14","0","0","0","0","0","0","0","56" +"16700","-1","","","","","Dreadmist Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21665","108329","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","21","20","13","0","0","0","0","0","0","0","58" +"16701","-1","","","","","Dreadmist Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15650","78254","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","14","9","0","0","0","0","0","0","0","55" +"16702","-1","","","","","Dreadmist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8593","42965","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","9","0","0","0","0","0","0","0","53" +"16703","-1","","","","","Dreadmist Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8138","40690","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"16704","-1","","","","","Dreadmist Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13639","68196","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16705","-1","","","","","Dreadmist Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9127","45639","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","9","13","0","0","0","0","0","0","0","54" +"16706","-1","","","","","Wildheart Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25058","125293","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","20","13","0","0","0","0","0","0","0","58" +"16707","-1","","","","","Shadowcraft Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18612","93064","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","18","13","5","0","0","0","0","0","0","57" +"16708","-1","","","","","Shadowcraft Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18175","90878","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","9","0","0","0","0","0","0","0","0","55" +"16709","-1","","","","","Shadowcraft Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24666","123331","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","12","12","0","0","0","0","0","0","0","56" +"16710","-1","","","","","Shadowcraft Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10446","52230","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","0","0","0","0","0","0","0","0","52" +"16711","-1","","","","","Shadowcraft Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17505","87528","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","9","0","0","0","0","0","0","0","0","54" +"16712","-1","","","","","Shadowcraft Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11714","58571","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","10","9","9","0","0","0","0","0","0","54" +"16713","-1","","","","","Shadowcraft Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11197","55985","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","10","9","9","0","0","0","0","0","0","53" +"16714","-1","","","","","Wildheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10602","53013","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","0","0","0","0","0","0","0","0","52" +"16715","-1","","","","","Wildheart Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17766","88833","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","10","9","0","0","0","0","0","0","0","54" +"16716","-1","","","","","Wildheart Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11621","58105","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","9","0","0","0","0","0","0","0","53" +"16717","-1","","","","","Wildheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12244","61224","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","9","0","0","0","0","0","0","0","0","54" +"16718","-1","","","","","Wildheart Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19354","96773","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","9","8","0","0","0","0","0","0","0","55" +"16719","-1","","","","","Wildheart Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26260","131300","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","13","12","0","0","0","0","0","56" +"16720","-1","","","","","Wildheart Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20037","100187","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","10","6","0","0","0","0","0","0","57" +"16721","-1","","","","","Shadowcraft Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27173","135865","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","13","12","0","0","0","0","0","0","0","58" +"16722","-1","","","","","Lightforge Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14266","71331","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","6","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","8","7","4","0","0","0","0","0","0","52" +"16723","-1","","","","","Lightforge Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15180","75904","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","9","10","0","0","0","0","0","0","53" +"16724","-1","","","","","Lightforge Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16001","80008","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","9","0","0","0","0","0","0","0","54" +"16725","-1","","","","","Lightforge Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23910","119550","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","6","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","9","8","0","0","0","0","0","0","0","54" +"16726","-1","","","","","Lightforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35078","175392","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","16","13","8","0","0","0","0","0","0","58" +"16727","-1","","","","","Lightforge Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26005","130028","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","13","14","10","6","0","0","0","0","0","57" +"16728","-1","","","","","Lightforge Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34398","171993","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","14","12","9","8","0","0","0","0","0","56" +"16729","-1","","","","","Lightforge Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25488","127443","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","11","9","5","4","0","0","0","0","0","55" +"16730","-1","","","","","Breastplate of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35611","178058","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","24","15","10","6","0","0","0","0","0","0","58" +"16731","-1","","","","","Helm of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26399","131997","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","15","9","8","0","0","0","0","0","0","57" +"16732","-1","","","","","Legplates of Valor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35849","179248","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","15","11","4","0","0","0","0","0","0","56" +"16733","-1","","","","","Spaulders of Valor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26562","132813","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","9","0","0","0","0","0","0","0","55" +"16734","-1","","","","","Boots of Valor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25389","126948","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","8","4","3","0","0","0","0","0","0","54" +"16735","-1","","","","","Bracers of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15379","76897","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","7","3","2","0","0","0","0","0","0","52" +"16736","-1","","","","","Belt of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16359","81796","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","3","6","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","8","7","4","0","0","0","0","0","0","53" +"16737","-1","","","","","Gauntlets of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17239","86195","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","6","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","8","3","0","0","0","0","0","0","54" +"16738","-1","","","","","Witherseed Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4235","21176","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","7","0","0","0","0","0","0","0","0","0" +"16739","-1","","","","","Rugwood Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7969","39848","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","6","4","0","0","0","0","0","0","0","0" +"16740","-1","","","","","Shredder Operating Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1032","5162","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","6","5","0","0","0","0","0","0","0","0","0" +"16741","-1","","","","","Oilrag Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1295","6476","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","8","2","2","0","0","0","0","0","0","0","0" +"16742","-1","","","","","Warsong Saw Blades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16743","-1","","","","","Logging Rope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16744","-1","","","","","Warsong Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16745","-1","","","","","Warsong Axe Shipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16746","-1","","","","","Warsong Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16747","-1","","","","","Broken Lock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"16748","-1","","","","","Padded Lining","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"16762","-1","","","","","Fathom Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16763","-1","","","","","Warsong Runner Update","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16764","-1","","","","","Warsong Scout Update","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16765","-1","","","","","Warsong Outrider Update","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16766","-1","","","","","Undermine Clam Chowder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"16767","-1","Teaches you how to cook a hot Undermine Clam Chowder.","","","","Recipe: Undermine Clam Chowder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16768","-1","","","","","Furbolg Medicine Pouch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","0" +"16769","-1","","","","","Furbolg Medicine Totem","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26616","133081","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","6","0","0","0","0","0","0","0","0","47" +"16782","-1","","","","","Strange Water Globe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6922","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","21" +"16783","-1","","","","","Bundle of Reports","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16784","-1","","","","","Sapphire of Aku'Mai","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16785","-1","","","","","Rokaro's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2531","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16786","-1","","","","","Black Dragonspawn Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16787","-1","","","","","Amulet of Draconic Subversion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16788","-1","","","","","Captain Rackmore's Wheel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5095","25476","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","678","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","8","0","0","0","0","0","0","0","0","0","0" +"16789","-1","","","","","Captain Rackmore's Tiller","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5992","29962","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","36","-1","0","0","31","0","0","0","0","58","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16790","-1","","","","","Damp Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6564","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","17" +"16791","-1","","","","","Silkstream Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1912","9562","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","4","5","0","0","0","0","0","0","0","0" +"16792","-1","","","","","Giant Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8886","44431","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","37","-1","0","5242","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","32" +"16793","-1","","","","","Arcmetal Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4353","21766","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","5","0","0","0","0","0","0","0","0","0" +"16794","-1","","","","","Gripsteel Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2899","14499","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","5","5","3","0","0","0","0","0","0","0","0" +"16795","-1","","","","","Arcanist Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22128","110640","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","94","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","27","10","0","0","0","0","0","0","0","60" +"16796","-1","","","","","Arcanist Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27491","137456","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","10","18","0","0","0","0","0","0","0","60" +"16797","-1","","","","","Arcanist Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20698","103491","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","5","10","0","0","0","0","0","0","0","60" +"16798","-1","","","","","Arcanist Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27704","138520","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","10","19","0","0","0","0","0","0","0","60" +"16799","-1","","","","","Arcanist Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13905","69526","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","6","0","0","0","0","0","0","0","60" +"16800","-1","","","","","Arcanist Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20935","104677","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","14","11","0","0","0","0","0","0","0","60" +"16801","-1","","","","","Arcanist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14010","70050","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","72","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","10","14","0","0","0","0","0","0","0","60" +"16802","-1","","","","","Arcanist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14063","70316","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","65","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","10","11","0","0","0","0","0","0","0","60" +"16803","-1","","","","","Felheart Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21174","105874","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","11","23","0","0","0","0","0","0","0","0","60" +"16804","-1","","","","","Felheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14168","70841","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","8","18","0","0","0","0","0","0","0","60" +"16805","-1","","","","","Felheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14221","71107","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","72","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","8","18","0","0","0","0","0","0","0","60" +"16806","-1","","","","","Felheart Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14274","71373","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","65","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","8","18","0","0","0","0","0","0","0","60" +"16807","-1","","","","","Felheart Shoulder Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21491","107459","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","7","25","0","0","0","0","0","0","0","60" +"16808","-1","","","","","Felheart Horns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21569","107847","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","94","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","10","27","0","0","0","0","0","0","0","60" +"16809","-1","","","","","Felheart Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28865","144328","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","31","0","0","0","0","0","0","0","0","60" +"16810","-1","","","","","Felheart Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28972","144860","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","10","20","0","0","0","0","0","0","0","60" +"16811","-1","","","","","Boots of Prophecy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21806","109033","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","15","17","0","0","0","0","0","0","0","60" +"16812","-1","","","","","Gloves of Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14591","72955","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","72","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","10","0","0","0","0","0","0","0","60" +"16813","-1","","","","","Circlet of Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22537","112688","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","94","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","20","17","0","0","0","0","0","0","0","60" +"16814","-1","","","","","Pants of Prophecy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30156","150783","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","20","18","0","0","0","0","0","0","0","60" +"16815","-1","","","","","Robes of Prophecy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27382","136910","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","17","20","0","0","0","0","0","0","0","60" +"16816","-1","","","","","Mantle of Prophecy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20616","103081","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","10","13","0","0","0","0","0","0","0","60" +"16817","-1","","","","","Girdle of Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13797","68987","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","65","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","10","10","0","0","0","0","0","0","0","60" +"16818","-1","","","","","Netherwind Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15636","78182","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","13","13","0","0","0","0","0","0","0","60" +"16819","-1","","","","","Vambraces of Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13902","69511","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","10","8","0","0","0","0","0","0","0","60" +"16820","-1","","","","","Nightslayer Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34888","174444","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","228","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","29","20","10","0","0","0","0","0","0","0","60" +"16821","-1","","","","","Nightslayer Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26266","131332","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","186","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","19","6","0","0","0","0","0","0","0","60" +"16822","-1","","","","","Nightslayer Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35154","175774","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","15","10","0","0","0","0","0","0","0","60" +"16823","-1","","","","","Nightslayer Shoulder Pads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26463","132315","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","12","3","0","0","0","0","0","0","0","60" +"16824","-1","","","","","Nightslayer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26562","132814","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","18","0","0","0","0","0","0","0","0","60" +"16825","-1","","","","","Nightslayer Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17775","88875","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","15","0","0","0","0","0","0","0","0","60" +"16826","-1","","","","","Nightslayer Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17839","89199","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","143","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","12","0","0","0","0","0","0","0","60" +"16827","-1","","","","","Nightslayer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17906","89531","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","128","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","18","9","0","0","0","0","0","0","0","60" +"16828","-1","","","","","Cenarion Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17972","89863","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","128","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","10","10","0","0","0","0","0","0","0","60" +"16829","-1","","","","","Cenarion Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27773","138866","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","15","16","0","0","0","0","0","0","0","60" +"16830","-1","","","","","Cenarion Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18580","92901","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","13","13","0","0","0","0","0","0","0","60" +"16831","-1","","","","","Cenarion Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18646","93233","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","143","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","15","17","0","0","0","0","0","0","0","60" +"16832","-1","","","","","Bloodfang Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31689","158445","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","192","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","17","6","0","0","0","0","0","0","0","60" +"16833","-1","","","","","Cenarion Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37559","187796","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","228","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","16","23","0","0","0","0","0","0","0","60" +"16834","-1","","","","","Cenarion Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28266","141332","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","186","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","13","26","0","0","0","0","0","0","0","60" +"16835","-1","","","","","Cenarion Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34223","171119","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","20","18","0","0","0","0","0","0","0","60" +"16836","-1","","","","","Cenarion Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25767","128838","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","10","13","0","0","0","0","0","0","0","60" +"16837","-1","","","","","Earthfury Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31178","155894","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","331","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","22","15","0","0","0","0","0","0","0","60" +"16838","-1","","","","","Earthfury Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20771","103858","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","271","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","7","12","0","0","0","0","0","0","0","60" +"16839","-1","","","","","Earthfury Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20851","104256","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","301","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","13","15","14","0","0","0","0","0","0","0","60" +"16840","-1","","","","","Earthfury Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20931","104655","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","11","10","0","0","0","0","0","0","0","60" +"16841","-1","","","","","Earthfury Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42021","210109","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","13","17","0","0","0","0","0","0","0","60" +"16842","-1","","","","","Earthfury Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31632","158164","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","392","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","13","24","0","0","0","0","0","0","0","60" +"16843","-1","","","","","Earthfury Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42336","211684","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","422","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","21","18","0","0","0","0","0","0","0","60" +"16844","-1","","","","","Earthfury Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32013","160069","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","10","17","0","0","0","0","0","0","0","60" +"16845","-1","","","","","Giantstalker's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43794","218973","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","18","11","23","0","0","0","0","0","0","0","60" +"16846","-1","","","","","Giantstalker's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32965","164828","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","392","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","15","8","23","0","0","0","0","0","0","60" +"16847","-1","","","","","Giantstalker's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44113","220568","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","422","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","6","8","15","0","0","0","0","0","0","60" +"16848","-1","","","","","Giantstalker's Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33352","166762","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","362","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","5","9","14","0","0","0","0","0","0","60" +"16849","-1","","","","","Giantstalker's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33469","167347","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","331","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","6","14","0","0","0","0","0","0","0","60" +"16850","-1","","","","","Giantstalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22294","111470","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","6","5","11","0","0","0","0","0","0","60" +"16851","-1","","","","","Giantstalker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22373","111869","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","271","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","9","4","16","0","0","0","0","0","0","60" +"16852","-1","","","","","Giantstalker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22453","112268","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","301","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","12","0","0","0","0","0","0","0","0","60" +"16853","-1","","","","","Lawbringer Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52573","262865","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","855","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","13","26","8","0","0","0","0","0","0","60" +"16854","-1","","","","","Lawbringer Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39494","197470","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","695","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","10","20","9","0","0","0","0","0","0","60" +"16855","-1","","","","","Lawbringer Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47908","239542","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","748","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","18","24","7","0","0","0","0","0","0","60" +"16856","-1","","","","","Lawbringer Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36002","180011","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","641","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","15","8","22","10","0","0","0","0","0","0","60" +"16857","-1","","","","","Lawbringer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24275","121379","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","11","11","10","0","0","0","0","0","0","60" +"16858","-1","","","","","Lawbringer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24369","121847","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","481","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","8","15","13","0","0","0","0","0","0","60" +"16859","-1","","","","","Lawbringer Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36416","182083","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","10","20","7","0","0","0","0","0","0","60" +"16860","-1","","","","","Lawbringer Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24554","122770","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","534","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","14","15","10","0","0","0","0","0","0","60" +"16861","-1","","","","","Bracers of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25318","126591","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","11","0","0","0","0","0","0","0","0","60" +"16862","-1","","","","","Sabatons of Might","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37829","189145","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","15","0","0","0","0","0","0","0","0","60" +"16863","-1","","","","","Gauntlets of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25505","127527","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","22","0","0","0","0","0","0","0","0","60" +"16864","-1","","","","","Belt of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25596","127983","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","481","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","21","0","0","0","0","0","0","0","0","60" +"16865","-1","","","","","Breastplate of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51088","255443","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","855","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","20","0","0","0","0","0","0","0","0","60" +"16866","-1","","","","","Helm of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38382","191914","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","15","0","0","0","0","0","0","0","0","60" +"16867","-1","","","","","Legplates of Might","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51461","257305","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","748","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","24","0","0","0","0","0","0","0","0","60" +"16868","-1","","","","","Pauldrons of Might","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38657","193289","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","641","0","0","0","0","7","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","15","0","0","0","0","0","0","0","0","60" +"16869","-1","","","","","The Skull of Scryer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16870","-1","","","","","The Skull of Somnus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16871","-1","","","","","The Skull of Chronalis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16872","-1","","","","","The Skull of Axtroz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16873","-1","","","","","Braidfur Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2469","12346","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","7","5","4","0","0","0","0","0","0","0","0" +"16882","-1","","","","","Battered Junkbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16883","-1","","","","","Worn Junkbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16884","-1","","","","","Sturdy Junkbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16885","-1","","","","","Heavy Junkbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16886","-1","","","","","Outlaw Sabre","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5492","27462","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","30","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"16887","-1","","","","","Witch's Finger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1988","7954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","4","0","0","0","0","0","0","0","0","0" +"16888","-1","","","","","Dull Drakefire Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16889","-1","","","","","Polished Walking Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3093","15467","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","24","-1","0","0","33","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","7","3","0","0","0","0","0","0","0","0","0" +"16890","-1","","","","","Slatemetal Cutlass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2483","12416","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","24","-1","0","0","19","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","2","2","0","0","0","0","0","0","0","0","0" +"16891","-1","","","","","Claystone Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1697","8486","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","21","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"16892","-1","","","","","Lesser Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16893","-1","","","","","Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16894","-1","","","","","Clear Crystal Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1993","9967","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","21","-1","0","0","34","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","5","4","0","0","0","0","0","0","0","0","0" +"16895","-1","","","","","Greater Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16896","-1","","","","","Major Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16897","-1","","","","","Stormrage Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39996","199981","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","257","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","17","20","0","0","0","0","0","0","0","60" +"16898","-1","","","","","Stormrage Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30106","150533","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","176","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","11","15","0","0","0","0","0","0","0","60" +"16899","-1","","","","","Stormrage Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20146","100731","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","15","13","0","0","0","0","0","0","0","60" +"16900","-1","","","","","Stormrage Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30331","151659","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","12","20","0","0","0","0","0","0","0","60" +"16901","-1","","","","","Stormrage Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40592","202963","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","224","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","16","17","0","0","0","0","0","0","0","60" +"16902","-1","","","","","Stormrage Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30554","152770","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","192","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","10","14","0","0","0","0","0","0","0","60" +"16903","-1","","","","","Stormrage Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20444","102222","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","10","12","0","0","0","0","0","0","0","60" +"16904","-1","","","","","Stormrage Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20519","102597","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","76","1024","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","12","11","0","0","0","0","0","0","0","60" +"16905","-1","","","","","Bloodfang Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41189","205945","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","257","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","17","12","0","0","0","0","0","0","0","60" +"16906","-1","","","","","Bloodfang Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31001","155007","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","176","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","17","6","0","0","0","0","0","0","0","60" +"16907","-1","","","","","Bloodfang Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20742","103713","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","19","0","0","0","0","0","0","0","60" +"16908","-1","","","","","Bloodfang Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31226","156133","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","25","19","0","0","0","0","0","0","0","60" +"16909","-1","","","","","Bloodfang Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38795","193975","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","224","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","17","11","0","0","0","0","0","0","0","60" +"16910","-1","","","","","Bloodfang Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19472","97363","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","15","13","0","0","0","0","0","0","0","60" +"16911","-1","","","","","Bloodfang Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19547","97738","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","13","0","0","0","0","0","0","0","0","60" +"16912","-1","","","","","Netherwind Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23547","117736","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","91","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","10","13","0","0","0","0","0","0","0","60" +"16913","-1","","","","","Netherwind Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15756","78783","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","6","16","0","0","0","0","0","0","0","60" +"16914","-1","","","","","Netherwind Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23725","118625","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","7","17","0","0","0","0","0","0","0","60" +"16915","-1","","","","","Netherwind Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31753","158767","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","5","16","0","0","0","0","0","0","0","60" +"16916","-1","","","","","Netherwind Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31873","159368","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","132","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","26","8","16","0","0","0","0","0","0","0","60" +"16917","-1","","","","","Netherwind Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23992","119964","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","99","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","12","16","0","0","0","0","0","0","0","60" +"16918","-1","","","","","Netherwind Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16055","80276","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","76","128","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","9","0","0","0","0","0","0","0","60" +"16919","-1","","","","","Boots of Transcendence","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24173","120865","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","91","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","17","17","0","0","0","0","0","0","0","60" +"16920","-1","","","","","Handguards of Transcendence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16175","80876","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","13","12","0","0","0","0","0","0","0","60" +"16921","-1","","","","","Halo of Transcendence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24350","121753","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","107","0","10","0","10","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","22","17","0","0","0","0","0","0","0","60" +"16922","-1","","","","","Leggings of Transcendence","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32587","162938","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","10","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","16","0","0","0","0","0","0","0","60" +"16923","-1","","","","","Robes of Transcendence","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32707","163539","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","132","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","16","17","0","0","0","0","0","0","0","60" +"16924","-1","","","","","Pauldrons of Transcendence","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24618","123092","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","99","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","13","12","0","0","0","0","0","0","0","60" +"16925","-1","","","","","Belt of Transcendence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16902","84512","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","9","14","0","0","0","0","0","0","0","60" +"16926","-1","","","","","Bindings of Transcendence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16962","84812","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","16","9","0","0","0","0","0","0","0","60" +"16927","-1","","","","","Nemesis Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25533","127669","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","91","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","6","20","0","0","0","0","0","0","0","60" +"16928","-1","","","","","Nemesis Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15456","77281","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","0","17","0","0","0","0","0","0","0","60" +"16929","-1","","","","","Nemesis Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23274","116373","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","6","26","0","0","0","0","0","0","0","60" +"16930","-1","","","","","Nemesis Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31152","155764","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","116","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","16","4","23","0","0","0","0","0","0","0","60" +"16931","-1","","","","","Nemesis Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31273","156365","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","132","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","16","8","26","0","0","0","0","0","0","0","60" +"16932","-1","","","","","Nemesis Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23542","117712","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","99","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","6","20","0","0","0","0","0","0","0","60" +"16933","-1","","","","","Nemesis Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15755","78775","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","8","6","18","0","0","0","0","0","0","0","60" +"16934","-1","","","","","Nemesis Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15815","79075","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","6","21","0","0","0","0","0","0","0","60" +"16935","-1","","","","","Dragonstalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23812","119063","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","6","6","13","0","0","0","0","0","0","60" +"16936","-1","","","","","Dragonstalker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23900","119501","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","14","13","11","15","0","0","0","0","0","0","60" +"16937","-1","","","","","Dragonstalker's Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36145","180727","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","413","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","13","6","15","0","0","0","0","0","0","60" +"16938","-1","","","","","Dragonstalker's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48160","240804","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","15","8","16","0","0","0","0","0","0","60" +"16939","-1","","","","","Dragonstalker's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36252","181261","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","447","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","16","8","26","0","0","0","0","0","0","60" +"16940","-1","","","","","Dragonstalker's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24258","121291","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","13","6","17","0","0","0","0","0","0","60" +"16941","-1","","","","","Dragonstalker's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37656","188284","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","379","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","6","6","15","0","0","0","0","0","0","60" +"16942","-1","","","","","Dragonstalker's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50167","250835","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","76","4","0","0","0","0","0","0","0","0","0","0","0","0","551","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","14","6","17","0","0","0","0","0","0","60" +"16943","-1","","","","","Bracers of Ten Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25171","125855","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","9","13","0","0","0","0","0","0","0","60" +"16944","-1","","","","","Belt of Ten Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25261","126306","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","11","13","0","0","0","0","0","0","0","60" +"16945","-1","","","","","Epaulets of Ten Storms","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38196","190980","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","413","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","8","23","0","0","0","0","0","0","0","60" +"16946","-1","","","","","Legplates of Ten Storms","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50882","254414","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","482","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","20","16","0","0","0","0","0","0","0","60" +"16947","-1","","","","","Helmet of Ten Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38293","191468","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","447","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","20","0","0","0","0","0","0","0","60" +"16948","-1","","","","","Gauntlets of Ten Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23182","115910","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","13","15","0","0","0","0","0","0","0","60" +"16949","-1","","","","","Greaves of Ten Storms","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35063","175317","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","379","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","16","17","0","0","0","0","0","0","0","60" +"16950","-1","","","","","Breastplate of Ten Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46724","233622","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","551","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","16","17","0","0","0","0","0","0","0","60" +"16951","-1","","","","","Judgement Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27514","137572","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","9","8","21","9","0","0","0","0","0","0","60" +"16952","-1","","","","","Judgement Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27620","138101","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","6","14","8","0","0","0","0","0","0","60" +"16953","-1","","","","","Judgement Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41273","206369","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","733","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","6","20","13","0","0","0","0","0","0","60" +"16954","-1","","","","","Judgement Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55341","276707","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","856","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","5","26","10","0","0","0","0","0","0","60" +"16955","-1","","","","","Judgement Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41584","207921","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","795","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","6","18","17","0","0","0","0","0","0","60" +"16956","-1","","","","","Judgement Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28040","140201","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","6","15","6","0","0","0","0","0","0","60" +"16957","-1","","","","","Judgement Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43025","215129","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","672","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","14","8","20","13","0","0","0","0","0","0","60" +"16958","-1","","","","","Judgement Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57681","288409","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","978","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","5","21","16","0","0","0","0","0","0","60" +"16959","-1","","","","","Bracelets of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29111","145557","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","13","0","0","0","0","0","0","0","0","60" +"16960","-1","","","","","Waistband of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29217","146085","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","20","0","0","0","0","0","0","0","0","60" +"16961","-1","","","","","Pauldrons of Wrath","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43651","218255","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","733","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","13","0","0","0","0","0","0","0","0","60" +"16962","-1","","","","","Legplates of Wrath","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58516","292584","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","856","0","10","0","0","0","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","19","0","0","0","0","0","0","0","0","60" +"16963","-1","","","","","Helm of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43961","219807","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","795","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","17","0","0","0","0","0","0","0","0","60" +"16964","-1","","","","","Gauntlets of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29637","148185","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","15","0","0","0","0","0","0","0","0","60" +"16965","-1","","","","","Sabatons of Wrath","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44276","221380","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","672","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","13","0","0","0","0","0","0","0","0","60" +"16966","-1","","","","","Breastplate of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59351","296759","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","978","0","10","10","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","17","0","0","0","0","0","0","0","0","60" +"16967","-1","","","","","Feralas Ahi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16968","-1","","","","","Sar'theris Striker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16969","-1","","","","","Savage Coast Blue Sailfin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16970","-1","","","","","Misty Reed Mahi Mahi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16971","-1","","","","","Clamlette Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"16972","-1","","","","","Karang's Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16973","-1","","","","","Vial of Dire Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16974","-1","","","","","Empty Water Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16975","-1","","","","","Warsong Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","813","4067","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","4","0","0","0","0","0","0","0","0","0" +"16976","-1","","","","","Murgut's Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16977","-1","","","","","Warsong Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1536","7682","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","6","0","0","0","0","0","0","0","0","0" +"16978","-1","","","","","Warsong Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1233","6168","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","3","0","0","0","0","0","0","0","0","0" +"16979","-1","","","","","Flarecore Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13894","69471","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31632","0","0","0","0","0","0","0","0","0","0","0","0","68","0","25","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","10","0","0","0","0","0","0","0","0","57" +"16980","-1","","","","","Flarecore Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20632","103164","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","10","10","9","0","0","0","0","0","0","0","56" +"16981","-1","","","","","Owlbeard Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","292","1460","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","1","1","0","0","0","0","0","0","0","0" +"16982","-1","","","","","Corehound Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24397","121986","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","10","0","0","0","0","0","0","0","0","54" +"16983","-1","","","","","Molten Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25709","128545","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","29","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","0","0","0","0","0","0","0","0","0","55" +"16984","-1","","","","","Black Dragonscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31533","157668","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","0","0","0","0","0","0","0","0","0","56" +"16985","-1","","","","","Windseeker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","847","4239","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","6","0","0","0","0","0","0","0","0","0","0" +"16986","-1","","","","","Sandspire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","850","4254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","2","0","0","0","0","0","0","0","0","0" +"16987","-1","","","","","Screecher Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","884","4423","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","5","3","2","0","0","0","0","0","0","0","0" +"16988","-1","","","","","Fiery Chain Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29333","146667","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","25","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","10","0","0","0","0","0","0","0","0","57" +"16989","-1","","","","","Fiery Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18610","93050","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","245","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","9","8","0","0","0","0","0","0","0","54" +"16990","-1","","","","","Spritekin Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","998","4990","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","3","0","0","0","0","0","0","0","0","0" +"16991","-1","","","","","Triage Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"16992","-1","","","","","Smokey's Explosive Launcher","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30874","154371","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","60","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"16993","-1","","","","","Smokey's Fireshooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30989","154946","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","70","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"16994","-1","","","","","Duskwing Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10368","51840","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","11","5","0","0","0","0","0","0","0","0" +"16995","-1","","","","","Duskwing Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15609","78048","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","6","0","0","0","0","0","0","0","0","0" +"16996","-1","","","","","Gorewood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38648","193241","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","62","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","9","3","2","0","0","0","0","0","0","0","0" +"16997","-1","","","","","Stormrager","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38790","193951","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","62","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","5","0","0","0","0","0","0","0","0","0" +"16998","-1","","","","","Sacred Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33222","166110","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","10","0","0","0","0","0","0","0","0","0" +"16999","-1","","","","","Royal Seal of Alexis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","8","0","0","0","0","0","0","0","54" +"17000","-1","","","","","Band of the Wraith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10314","41258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17001","-1","","","","","Elemental Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10314","41258","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17002","-1","","","","","Ichor Spitter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43287","216438","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","61","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17003","-1","","","","","Skullstone Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43439","217195","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","61","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","4","3","0","0","0","0","0","0","0","0" +"17004","-1","","","","","Sarah's Guide","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54493","272465","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","61","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","20","15","0","0","0","0","0","0","0","0","0" +"17005","-1","","","","","Boorguard Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1632","8161","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","6","0","0","0","0","0","0","0","0","0" +"17006","-1","","","","","Cobalt Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1966","9831","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","7","5","3","0","0","0","0","0","0","0","0" +"17007","-1","","","","","Stonerender Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11697","58487","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","10","10","0","0","0","0","0","0","0","46" +"17008","-1","The scroll bears an insignia foreign to you.","","","","Small Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6522","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"17009","-1","","","","","Ambassador Malcin's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17010","-1","","","","","Fiery Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17011","-1","","","","","Lava Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17012","-1","","","","","Core Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17013","-1","","","","","Dark Iron Leggings","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46272","231363","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","683","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","0","0","0","0","0","0","0","0","0","55" +"17014","-1","","","","","Dark Iron Bracers","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22242","111213","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","7","0","0","0","0","0","0","0","0","0","54" +"17015","-1","","","","","Dark Iron Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53430","267153","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","0","71","0","0","0","0","134","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","0","0","0","0","0","0","0","0","0","60" +"17016","-1","","","","","Dark Iron Destroyer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53627","268138","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","0","71","0","0","0","0","134","0","0","0","0","0","0","6","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","0","0","0","0","0","0","0","0","0","60" +"17017","-1","Teaches you how to sew a Flarecore Mantle.","","","","Pattern: Flarecore Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45000","180000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17018","-1","Teaches you how to sew Flarecore Gloves.","","","","Pattern: Flarecore Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17019","-1","","","","","ZZold Arcane Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17020","-1","","","","","Arcane Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17021","-1","","","","","Wild Berries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17022","-1","Teaches you how to craft Corehound Boots.","","","","Pattern: Corehound Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","165","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17023","-1","Teaches you how to craft a Molten Helm.","","","","Pattern: Molten Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17024","-1","","","","","Wild Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17025","-1","Teaches you how to craft Black Dragonscale Boots.","","","","Pattern: Black Dragonscale Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17026","-1","","","","","Wild Thornroot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17027","-1","","","","","Scented Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17028","-1","","","","","Holy Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17029","-1","","","","","Sacred Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17030","-1","","","","","Ankh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17031","-1","","","","","Rune of Teleportation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17032","-1","","","","","Rune of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17033","-1","","","","","Symbol of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17034","-1","","","","","Maple Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17035","-1","","","","","Stranglethorn Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17036","-1","","","","","Ashwood Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17037","-1","","","","","Hornbeam Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","1400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17038","-1","","","","","Ironwood Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17039","-1","","","","","Skullbreaker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8317","41585","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","36","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","3","0","0","0","0","0","0","0","0","0" +"17040","-1","","","","","Monster - Mace, Frying Pan","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17041","-1","","","","","Monster - Mace, Frying Pan w/ Eggs","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17042","-1","","","","","Nail Spitter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5706","28530","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","36","-1","0","0","26","0","0","0","0","49","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"17043","-1","","","","","Zealot's Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3055","15275","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","12","4","3","0","0","0","0","0","0","0","0" +"17044","-1","","","","","Will of the Martyr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","0","0","0","0","0","0","0","0","0","0" +"17045","-1","","","","","Blood of the Martyr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"17046","-1","","","","","Gutterblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4796","23983","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","31","-1","0","0","25","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","3","0","0","0","0","0","0","0","0","0" +"17047","-1","","","","","Luminescent Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1313","6565","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","4","2","0","0","0","0","0","0","0","0" +"17048","-1","","","","","Rumsey Rum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17049","-1","Teaches you how to make a Fiery Chain Girdle.","","","","Plans: Fiery Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17050","-1","","","","","Chan's Imperial Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12536","62683","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","5","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","10","10","0","0","0","0","0","0","0","47" +"17051","-1","Teaches you how to make Dark Iron Bracers.","","","","Plans: Dark Iron Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","295","164","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17052","-1","Teaches you how to make Dark Iron Leggings.","","","","Plans: Dark Iron Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45000","180000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17053","-1","Teaches you how to make Fiery Chain Shoulders.","","","","Plans: Fiery Chain Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17054","-1","","","","","Joonho's Mercy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28788","143943","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","50","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","45" +"17055","-1","","","","","Changuk Smasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28892","144461","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","50","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","6","5","0","0","0","0","0","0","0","45" +"17056","-1","","","","","Light Feather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17057","-1","","","","","Shiny Fish Scales","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17058","-1","","","","","Fish Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17059","-1","Teaches you how to make a Dark Iron Reaver.","","","","Plans: Dark Iron Reaver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55000","220000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17060","-1","Teaches you how to make a Dark Iron Destroyer.","","","","Plans: Dark Iron Destroyer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55000","220000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17061","-1","","","","","Juno's Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12888","64441","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","5","0","0","0","0","0","0","0","0","53" +"17062","-1","Teaches you how to cook Mithril Head Trout.","","","","Recipe: Mithril Head Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17063","-1","","","","","Band of Accuria","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23961","95846","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","12","0","0","0","0","0","0","0","0","60" +"17064","-1","","","","","Shard of the Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45914","183658","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17065","-1","","","","","Medallion of Steadfast Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33381","133525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","9","0","0","0","0","0","0","0","0","60" +"17066","-1","","","","","Drillborer Disk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45228","226144","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","2918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17067","-1","","","","","Ancient Cornerstone Grimoire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75452","301810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","11","15","10","0","0","0","0","0","0","0","60" +"17068","-1","","","","","Deathbringer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78453","392265","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","-1","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17069","-1","","","","","Striker's Mark","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54968","274840","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","69","-1","0","0","84","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"17070","-1","","","","","Fang of the Mystics","0.6","0","-10.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76483","382417","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","70","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17071","-1","","","","","Gutgore Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75814","379072","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","69","-1","0","0","63","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17072","-1","","","","","Blastershot Launcher","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57776","288882","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","70","-1","0","0","89","0","0","0","0","167","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","6","0","0","0","0","0","0","0","0","0","60" +"17073","-1","","","","","Earthshaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91903","459518","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17074","-1","","","","","Shadowstrike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88668","443341","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"17075","-1","","","","","Vis'kag the Bloodletter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81686","408430","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","74","-1","0","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17076","-1","","","","","Bonereaver's Edge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106067","530337","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","77","-1","0","0","206","0","0","0","0","310","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","16","0","0","0","0","0","0","0","0","0","60" +"17077","-1","","","","","Crimson Shocker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53771","268855","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","0","0","0","0","0","0","0","0","0","58" +"17078","-1","","","","","Sapphiron Drape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24190","120954","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","6","0","6","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","10","0","0","0","0","0","0","0","0","60" +"17082","-1","","","","","Shard of the Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46146","184585","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17102","-1","","","","","Cloak of the Shrouded Mists","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23363","116819","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","6","6","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","12","0","0","0","0","0","0","0","0","60" +"17103","-1","","","","","Azuresong Mageblade","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75431","377159","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","71","-1","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","12","7","0","0","0","0","0","0","0","0","60" +"17104","-1","","","","","Spinal Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100375","501879","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","76","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17105","-1","","","","","Aurastone Hammer","0.6","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74149","370747","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","69","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","10","0","0","0","0","0","0","0","0","60" +"17106","-1","","","","","Malistar's Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51180","255901","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","3244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","12","9","0","0","0","0","0","0","0","0","60" +"17107","-1","","","","","Dragon's Blood Cape","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23523","117617","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","5","0","0","5","5","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","9","0","0","0","0","0","0","0","0","60" +"17108","-1","","","","","Mark of Deflection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24213","96854","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"17109","-1","","","","","Choker of Enlightenment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","10","9","0","0","0","0","0","0","0","60" +"17110","-1","","","","","Seal of the Archmagus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24648","98595","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","6","6","6","6","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","11","11","0","0","0","0","0","0","0","60" +"17111","-1","","","","","Blazefury Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34648","138595","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","14","0","0","0","0","0","0","0","0","60" +"17112","-1","","","","","Empyrean Demolisher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73242","366213","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","66","-1","0","0","94","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17113","-1","","","","","Amberseal Keeper","0.4","0","-7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93061","465307","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","67","-1","0","0","168","0","0","0","0","252","0","0","0","0","0","0","5","5","5","5","5","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","20","0","0","0","0","0","0","0","0","0","60" +"17114","-1","","","","","Araj's Phylactery Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17115","-1","Value Be Ten Silver Coins...","","","","Squirrel Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6661","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17116","-1","Value Be Twenty Silver Coins...","","","","Squirrel Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6662","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17117","-1","","","","","Rat Catcher's Flute","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17118","-1","Handle With Care.","","","","Carton of Mystery Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17119","-1","","","","","Deeprun Rat Kabob","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17122","-1","","","","","ALEX BUG TEST ITEM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0" +"17123","-1","","","","","Monster - Sword, Horde Troll","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17124","-1","","","","","Syndicate Emblem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17125","-1","","","","","Seal of Ravenholdt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17126","-1","","","","","Elegant Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6681","0","0","0","0","0","1","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17142","-1","","","","","Shard of the Defiler","0.15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111335","556675","1","1","1","0","24580","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1100","0","0","0","70","-1","0","0","52","10","0","0","0","61","15","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","0","0","0","0","0","0","0","0","0","0","60" +"17162","-1","","","","","Eric Test Item A","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17163","-1","","","","","Eric Test Item B","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17182","-1","","","","","Sulfuras, Hand of Ragnaros","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","160402","802010","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","80","-1","0","0","223","0","0","0","0","372","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"17183","-1","","","","","Dented Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17184","-1","","","","","Small Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17185","-1","","","","","Round Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","260","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"17186","-1","","","","","Small Targe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52","260","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","3" +"17187","-1","","","","","Banded Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","232","1161","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","9" +"17188","-1","","","","","Ringed Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","489","2447","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","14" +"17189","-1","","","","","Metal Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2610","13054","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","29" +"17190","-1","","","","","Ornate Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7529","37647","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","1377","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","42" +"17191","-1","","","","","Scepter of Celebras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17192","-1","","","","","Reinforced Targe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","964","4820","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","19" +"17193","-1","","","","","Sulfuron Hammer","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95427","477138","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","67","-1","0","0","176","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"17194","-1","","","","","Holiday Spices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17195","-1","","","","","Fake Mistletoe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17196","-1","","","","","Holiday Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17197","-1","","","","","Gingerbread Cookie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17198","-1","","","","","Egg Nog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17199","-1","","","","","Bad Egg Nog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","9","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17200","-1","Teaches you how to bake a Gingerbread Cookie.","","","","Recipe: Gingerbread Cookie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17201","-1","Teaches you how to make Egg Nog.","","","","Recipe: Egg Nog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","240","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","185","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17202","-1","","","","","Snowball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","10","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17203","-1","","","","","Sulfuron Ingot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17204","-1","","","","","Eye of Sulfuras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"17222","-1","","","","","Spider Sausage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17223","-1","","","","","Thunderstrike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87372","436862","1","1","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","147","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","58" +"17224","-1","","","","","Scrying Scope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17242","-1","Opens Dark Cleric Salem's Chest","","","","Key to Salem's Chest","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17262","-1","Opens the stolen chest from the Cathedral of Light","","","","James' Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17282","-1","","","","","Monster - Dagger, Exotic B01 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17283","-1","","","","","Monster - Dagger, Exotic B01 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17302","-1","","","","","Blue Ribboned Holiday Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17303","-1","","","","","Blue Ribboned Wrapping Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17304","-1","","","","","Green Ribboned Wrapping Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17305","-1","","","","","Green Ribboned Holiday Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17306","-1","","","","","Stormpike Soldier's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17307","-1","","","","","Purple Ribboned Wrapping Paper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17308","-1","","","","","Purple Ribboned Holiday Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17309","-1","","","","","Discordant Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17310","-1","","","","","Aspect of Neptulon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17322","-1","","","","","Eye of the Emberseer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17323","-1","","","","","Mulverick's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17324","-1","","","","","Guse's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17325","-1","","","","","Jeztor's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17326","-1","Alliance: the other, other, OTHER, white meat.","","","","Stormpike Soldier's Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17327","-1","","","","","Stormpike Lieutenant's Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17328","-1","","","","","Stormpike Commander's Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17329","-1","","","","","Hand of Lucifron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17330","-1","","","","","Hand of Sulfuron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17331","-1","","","","","Hand of Gehennas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17332","-1","","","","","Hand of Shazzrah","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17333","-1","","","","","Aqual Quintessence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17342","-1","","","","","JYoo Random Item Test","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","7441","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","1","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17343","-1","","","","","Test Random Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","7441","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","100","0","0","0","0","0","0","0","0","0","1" +"17344","-1","","","","","Candy Cane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"17345","-1","Ewww...","","","","Silithid Goo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17346","-1","","","","","Encrusted Silithid Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17347","-1","","","","","Syndicate Man Tracker (MURP)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17348","-1","","","","","Major Healing Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"17349","-1","","","","","Superior Healing Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17351","-1","","","","","Major Mana Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"17352","-1","","","","","Superior Mana Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17353","-1","","","","","Stormpike Assault Orders","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17354","-1","","","","","Master Ryson's All Seeing Eye","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17355","-1","","","","","Rabine's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2551","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17362","-1","","","","","Ryson's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17363","-1","","","","","Ryson's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17364","-1","","","","","Scrying Scope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17382","-1","","","","","Monster - Glaive - 2 Blade Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17383","-1","","","","","Monster - Axe, 2H Horde Black War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17384","-1","","","","","Zinfizzlex's Portable Shredder Unit","0","259200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17402","-1","","","","","Greatfather's Winter Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17403","-1","","","","","Steamwheedle Fizzy Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17404","-1","","","","","Blended Bean Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17405","-1","","","","","Green Garden Tea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"17406","-1","","","","","Holiday Cheesewheel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"17407","-1","","","","","Graccu's Homemade Meat Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"17408","-1","","","","","Spicy Beefstick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"17409","-1","","","","","Encrusted Crystal Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1155","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","54" +"17410","-1","","","","","Zinfizzlex's Portable Shredder Unit","0","259200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17411","-1","","","","","Steamsaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17412","-1","Teaches Prayer of Fortitude (Rank 1).","","","","zzOLDCodex of Prayer of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","31264","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"17413","-1","Teaches Prayer of Fortitude (Rank 1).","","","","Codex: Prayer of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7750","31000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17414","-1","Teaches Prayer of Fortitude (Rank 2).","","","","Codex: Prayer of Fortitude II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"17422","-1","Return to your base blacksmith to help upgrade troops","","","","Armor Scraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17423","-1","","","","","Storm Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17442","-1","Give to Warmaster Garrick in the Field of Strife","","","","Frostwolf Assault Orders","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17462","-1","","","","","Monster - Axe, Horde B02 Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17463","-1","","","","","Monster - Axe, 2H Horde Blue War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17482","-1","","","","","Monster - Shield, B01 WoodCopperCap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17502","-1","","","","","Frostwolf Soldier's Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17503","-1","","","","","Frostwolf Lieutenant's Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17504","-1","","","","","Frostwolf Commander's Medal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17505","-1","","","","","Ichman's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17506","-1","","","","","Vipore's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17507","-1","","","","","Slidore's Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17508","-1","","","","","Forcestone Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7880","39403","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","1051","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","8","0","0","0","0","0","0","0","0","0" +"17522","-1","","","","","Irondeep Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17523","-1","","","","","Smokey's Drape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11453","57265","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","9","0","0","0","0","0","0","0","0","0","0" +"17542","-1","","","","","Coldtooth Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17562","-1","","","","","Knight-Lieutenant's Dreadweave Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7863","39317","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","0","0","0","0","0","0","0","0","58" +"17564","-1","","","","","Knight-Lieutenant's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5280","26400","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","11","0","0","0","0","0","0","0","0","58" +"17566","-1","","","","","Lieutenant Commander's Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7977","39889","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17567","-1","","","","","Knight-Captain's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10675","53377","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","20","0","0","0","0","0","0","0","0","58" +"17568","-1","","","","","Knight-Captain's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9949","49749","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17569","-1","","","","","Lieutenant Commander's Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7491","37455","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17570","-1","","","","","Champion's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7519","37599","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17571","-1","","","","","Legionnaire's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10064","50324","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","13","0","0","0","0","0","0","0","0","58" +"17572","-1","","","","","Legionnaire's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10102","50511","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17573","-1","","","","","Champion's Dreadweave Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7605","38027","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17576","-1","","","","","Blood Guard's Dreadweave Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7690","38454","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17577","-1","","","","","Blood Guard's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5146","25732","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","345","0","0","0","0","0","0","0","63","256","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17578","-1","","","","","Field Marshal's Coronal","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17579","-1","","","","","Marshal's Dreadweave Leggings","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","19","0","0","0","0","0","0","0","0","60" +"17580","-1","","","","","Field Marshal's Dreadweave Shoulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","17","0","0","0","0","0","0","0","0","60" +"17581","-1","","","","","Field Marshal's Dreadweave Robe","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17583","-1","","","","","Marshal's Dreadweave Boots","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","22","0","0","0","0","0","0","0","0","60" +"17584","-1","","","","","Marshal's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","6","0","0","0","0","0","0","0","0","60" +"17586","-1","","","","","General's Dreadweave Boots","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","13","0","0","0","0","0","0","0","0","60" +"17588","-1","","","","","General's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","6","0","0","0","0","0","0","0","0","60" +"17590","-1","","","","","Warlord's Dreadweave Mantle","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","17","0","0","0","0","0","0","0","0","60" +"17591","-1","","","","","Warlord's Dreadweave Hood","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17592","-1","","","","","Warlord's Dreadweave Robe","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","74","256","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","24","0","0","0","0","0","0","0","0","60" +"17593","-1","","","","","General's Dreadweave Pants","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","19","0","0","0","0","0","0","0","0","60" +"17594","-1","","","","","Knight-Lieutenant's Satin Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7633","38167","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17596","-1","","","","","Knight-Lieutenant's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5126","25633","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17598","-1","","","","","Lieutenant Commander's Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7746","38734","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17599","-1","","","","","Knight-Captain's Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10367","51837","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","13","16","0","0","0","0","0","0","0","58" +"17600","-1","","","","","Knight-Captain's Satin Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10680","53403","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17601","-1","","","","","Lieutenant Commander's Satin Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8039","40196","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17602","-1","","","","","Field Marshal's Headdress","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17603","-1","","","","","Marshal's Satin Pants","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","21","0","0","0","0","0","0","0","0","60" +"17604","-1","","","","","Field Marshal's Satin Mantle","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"17605","-1","","","","","Field Marshal's Satin Vestments","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17607","-1","","","","","Marshal's Satin Sandals","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","21","0","0","0","0","0","0","0","0","60" +"17608","-1","","","","","Marshal's Satin Gloves","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","13","0","0","0","0","0","0","0","0","60" +"17610","-1","","","","","Champion's Satin Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7517","37587","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17611","-1","","","","","Legionnaire's Satin Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10061","50308","1","0.5","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","13","16","0","0","0","0","0","0","0","58" +"17612","-1","","","","","Legionnaire's Satin Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10100","50500","1","0.5","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","58" +"17613","-1","","","","","Champion's Satin Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7603","38015","1","0.5","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17616","-1","","","","","Blood Guard's Satin Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7895","39477","1","0.5","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","15","0","0","0","0","0","0","0","0","58" +"17617","-1","","","","","Blood Guard's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5282","26411","1","0.5","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","63","16","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","0","0","0","0","0","0","0","0","0","58" +"17618","-1","","","","","General's Satin Boots","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","18","0","0","0","0","0","0","0","0","60" +"17620","-1","","","","","General's Satin Gloves","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","13","0","0","0","0","0","0","0","0","60" +"17622","-1","","","","","Warlord's Satin Mantle","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"17623","-1","","","","","Warlord's Satin Cowl","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17624","-1","","","","","Warlord's Satin Robes","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","74","16","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","28","0","0","0","0","0","0","0","0","60" +"17625","-1","","","","","General's Satin Leggings","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","21","0","0","0","0","0","0","0","0","60" +"17626","-1","","","","","Frostwolf Muzzle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17642","-1","","","","","Alterac Ram Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17643","-1","","","","","Frostwolf Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17662","-1","Deliver to: Smokywood Pastures Retail","","","","Stolen Treats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17682","-1","Teaches Gift of the Wild (Rank 1).","","","","Book: Gift of the Wild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"17683","-1","Teaches Gift of the Wild (Rank 2).","","","","Book: Gift of the Wild II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"17684","-1","","","","","Theradric Crystal Carving","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17685","-1","","","","","Smokywood Pastures Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17686","-1","","","","","Master Hunter's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10192","50963","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"17687","-1","","","","","Master Hunter's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10231","51155","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"17688","-1","","","","","Jungle Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5695","28479","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","4","7","0","0","0","0","0","0","0","0","0" +"17689","-1","","","","","Stormpike Training Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17690","-1","","","","","Frostwolf Insignia Rank 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17691","-1","","","","","Stormpike Insignia Rank 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17692","-1","","","","","Horn Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","3525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","2","0","0","0","0","0","0","0","0","0" +"17693","-1","","","","","Coated Cerulean Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17694","-1","","","","","Band of the Fist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","881","3525","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","0","0","0","0","0","0","0","0","0" +"17695","-1","","","","","Chestnut Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","930","4654","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","2","0","0","0","0","0","0","0","0","0" +"17696","-1","","","","","Filled Cerulean Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17702","-1","","","","","Celebrian Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17703","-1","","","","","Celebrian Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17704","-1","","","","","Edge of Winter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9178","45891","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","38","-1","0","0","30","0","0","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","33" +"17705","-1","","","","","Thrash Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32854","164273","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17706","-1","Teaches you how to make the Edge of Winter.","","","","Plans: Edge of Winter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","164","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17707","-1","","","","","Gemshard Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11631","46525","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","6","0","0","0","0","0","0","0","48" +"17708","-1","","","","","Elixir of Frost Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","28" +"17709","-1","Teaches you how to make an Elixir of Frost Power.","","","","Recipe: Elixir of Frost Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","171","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17710","-1","","","","","Charstone Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35483","177417","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","54","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","0","0","0","0","0","0","0","0","0","48" +"17711","-1","","","","","Elemental Rockridge Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24928","124642","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","20","10","0","0","0","0","0","0","0","48" +"17712","-1","For when the weather outside is frightful...","","","","Winter Veil Disguise Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17713","-1","","","","","Blackstone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14641","58565","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","48" +"17714","-1","","","","","Bracers of the Stone Princess","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11086","55433","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","5","0","0","0","0","0","0","0","0","48" +"17715","-1","","","","","Eye of Theradras","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11125","55626","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","13","11","0","0","0","0","0","0","0","48" +"17716","-1","","","","","Snowmaster 9000","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17717","-1","","","","","Megashot Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26426","132130","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","5","0","0","0","0","0","0","0","0","0","48" +"17718","-1","","","","","Gizlock's Hypertech Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22630","113150","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","1835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","5","0","0","0","0","0","0","0","0","48" +"17719","-1","","","","","Inventor's Focal Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32106","160531","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","53","-1","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17720","-1","Teaches you how to make a Snowmaster 9000.","","","","Schematic: Snowmaster 9000","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","202","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17721","-1","","","","","Gloves of the Greatfather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2268","11341","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","33" +"17722","-1","Teaches you how to craft Gloves of the Greatfather.","","","","Pattern: Gloves of the Greatfather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","700","2800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","165","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17723","-1","","","","","Green Holiday Shirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17724","-1","Teaches you how to sew a Green Holiday Shirt.","","","","Pattern: Green Holiday Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","197","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17725","-1","Teaches you how to permanently enchant a weapon to grant up to 7 additional frost damage when casting frost spells.","","","","Formula: Enchant Weapon - Winter's Might","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","333","38","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17726","-1","","","","","Smokywood Pastures Special Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17727","-1","","","","","Smokywood Pastures Gift Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17728","-1","","","","","Albino Crocscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12458","62291","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","5","5","0","0","0","0","0","0","0","48" +"17730","-1","","","","","Gatorbite Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42952","214760","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","53","-1","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17731","-1","","","","","Scroll of Celebras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17732","-1","","","","","Rotgrip Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10383","51916","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","0","0","0","0","0","0","0","0","48" +"17733","-1","","","","","Fist of Stone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34735","173679","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"17734","-1","","","","","Helm of the Mountain","0","0","230","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18265","91326","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","48" +"17735","-1","","","","","The Feast of Winter Veil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2571","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17736","-1","","","","","Rockgrip Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10532","52660","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","48" +"17737","-1","","","","","Cloud Stone","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10163","40655","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","10","10","0","0","0","0","0","0","0","0","48" +"17738","-1","","","","","Claw of Celebras","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33351","166759","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17739","-1","","","","","Grovekeeper's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9085","45428","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","10","0","0","0","0","0","0","0","0","46" +"17740","-1","","","","","Soothsayer's Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11401","57006","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","7","8","0","0","0","0","0","0","0","0","46" +"17741","-1","","","","","Nature's Embrace","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11516","57580","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17742","-1","","","","","Fungus Shroud Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14450","72253","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","10","0","0","0","0","0","0","0","0","46" +"17743","-1","","","","","Resurgence Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40748","203740","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","53","-1","0","0","139","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17744","-1","","","","","Heart of Noxxion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9031","36125","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17745","-1","","","","","Noxious Shooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22520","112600","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","51","-1","0","0","56","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","7","5","0","0","0","0","0","0","0","0","46" +"17746","-1","","","","","Noxxion's Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10608","53042","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","5","15","0","0","0","0","0","0","0","0","46" +"17747","-1","","","","","Razorlash Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"17748","-1","","","","","Vinerot Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9107","45539","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","0","0","0","0","0","0","0","0","46" +"17749","-1","","","","","Phytoskin Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11425","57127","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","10","0","0","0","0","0","0","0","46" +"17750","-1","","","","","Chloromesh Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6115","30578","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","46" +"17751","-1","","","","","Brusslehide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15344","76724","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","14","0","0","0","0","0","0","0","0","46" +"17752","-1","","","","","Satyr's Lash","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28785","143929","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","50","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","44" +"17753","-1","","","","","Verdant Keeper's Aim","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26046","130234","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","53","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","0" +"17754","-1","","","","","Infernal Trickster Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17394","86971","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","9","9","0","0","0","0","0","0","0","44" +"17755","-1","","","","","Satyrmane Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5818","29094","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","10","0","0","0","0","0","0","0","0","44" +"17756","-1","","","","","Shadowshard Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17757","-1","","","","","Amulet of Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17758","-1","A great deal of power radiates from the amulet...","","","","Amulet of Union","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17759","-1","","","","","Mark of Resolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10307","41230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17760","-1","","","","","Seed of Life","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17761","-1","Found on the body of Kolk...","","","","Gem of the First Khan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17762","-1","Found on the body of Gelk...","","","","Gem of the Second Khan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17763","-1","Found on the body of Magra...","","","","Gem of the Third Khan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17764","-1","Found on the body of Maraudos...","","","","Gem of the Fourth Khan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17765","-1","Found on the body of Veng...","","","","Gem of the Fifth Khan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17766","-1","","","","","Princess Theradras' Scepter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44863","224318","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","54","-1","0","0","126","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17767","-1","","","","","Bloomsprout Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13610","68052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","10","0","0","0","0","0","0","0","0","46" +"17768","-1","","","","","Woodseed Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7891","31565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","5","0","0","0","0","0","0","0","0","0" +"17769","-1","","","","","Sagebrush Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8673","43366","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","0" +"17770","-1","","","","","Branchclaw Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6778","33894","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","0","0","0","0","0","0","0","0","0","0" +"17771","-1","","","","","Elementium Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"17772","-1","","","","","Zealous Shadowshard Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7132","28530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17773","-1","","","","","Prodigious Shadowshard Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7132","28530","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","0" +"17774","-1","","","","","Mark of the Chosen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6133","24535","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17775","-1","","","","","Acumen Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7841","39208","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","20","0","0","0","0","0","0","0","0","0","0" +"17776","-1","","","","","Sprightring Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7377","36889","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","10","0","0","0","0","0","0","0","0","0" +"17777","-1","","","","","Relentless Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11011","55059","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","10","0","0","0","0","0","0","0","0","0" +"17778","-1","","","","","Sagebrush Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4605","23028","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","15","0","0","0","0","0","0","0","0","0","0" +"17779","-1","","","","","Hulkstone Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9689","48446","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","5","0","0","0","0","0","0","0","0","0" +"17780","-1","","","","","Blade of Eternal Darkness","0.6","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","46796","233983","1","1","1","64","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","54","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","49" +"17781","-1","","","","","The Pariah's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2591","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17782","-1","","","","","Talisman of Binding Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","5","0","13","8","5","0","0","0","0","0","0","0","60" +"17783","-1","","","","","Talisman of Binding Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","5","0","13","8","5","0","0","0","0","0","0","0","60" +"17802","-1","","","","","Thunderfury, Blessed Blade of the Windseeker DEPRECATED","0.6","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125928","629643","1","1","1","16","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","80","-1","0","0","82","16","0","0","0","153","30","0","0","0","0","0","8","9","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","5","8","0","0","0","0","0","0","0","0","100" +"17822","-1","","","","","Frostwolf Maps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17823","-1","","","","","Stormpike Battle Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17824","-1","","","","","Level 65 Test Gear Cloth - Priest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17825","-1","","","","","Level 65 Test Gear Cloth - Warlock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17826","-1","","","","","Level 65 Test Gear Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17827","-1","","","","","QAEnchant Bracer +9 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17828","-1","","","","","QAEnchant Bracer +9 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17829","-1","","","","","QAEnchant Bracer +9 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17830","-1","","","","","QAEnchant Bracer +7 Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17831","-1","","","","","Level 60 Test Gear Cloth - Mage/Priest/Warlock 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17832","-1","","","","","Level 60 Test Gear Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17833","-1","","","","","Level 60 Test Gear Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17834","-1","","","","","Level 60 Test Gear Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17835","-1","","","","","Level 60 Test Gear Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17836","-1","","","","","Level 60 Test Gear Plate - Paladin/Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17837","-1","","","","","Level 55 Test Gear Cloth - Mage/Priest/Warlock 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17838","-1","","","","","Level 55 Test Gear Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17839","-1","","","","","Level 55 Test Gear Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17840","-1","","","","","Level 55 Test Gear Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17841","-1","","","","","Level 55 Test Gear Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17842","-1","","","","","Level 55 Test Gear Plate - Paladin/Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17843","-1","","","","","Level 50 Test Gear Cloth - Mage/Priest/Warlock 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17844","-1","","","","","Level 50 Test Gear Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17845","-1","","","","","Level 50 Test Gear Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17846","-1","","","","","Level 50 Test Gear Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17847","-1","","","","","Level 50 Test Gear Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17848","-1","","","","","Level 50 Test Gear Plate - Paladin/Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17849","-1","","","","","Stormpike Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17850","-1","","","","","Frostwolf Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17851","-1","","","","","Level 65 Test Gear Cloth - Mage 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17852","-1","","","","","Level 65 Test Gear Cloth - Priest 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17853","-1","","","","","Level 65 Test Gear Cloth - Warlock 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17854","-1","","","","","Level 65 Test Gear Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17855","-1","","","","","Level 65 Test Gear Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17856","-1","","","","","Level 65 Test Gear Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17857","-1","","","","","Level 65 Test Gear Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17858","-1","","","","","Level 65 Test Gear Mail - Hunter 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17859","-1","","","","","Level 65 Test Gear Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17860","-1","","","","","Level 65 Test Gear Plate - Paladin 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17861","-1","","","","","Level 65 Test Gear Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17862","-1","","","","","Level 65 Test Gear Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17882","-1","","","","","QAEnchant Chest +100 Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17883","-1","","","","","QAEnchant Chest +100 Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17884","-1","","","","","QAEnchant Cloak +5 Resistances","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17885","-1","","","","","QAEnchant Cloak +70 Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17886","-1","What the combat specialist wants, the combat specialist gets... PEWPEWLAWLZ","","","","QA Test Ring +285 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","1" +"17887","-1","","","","","QAEnchant 2H Weapon +9 Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17888","-1","","","","","QAEnchant Weapon +5 Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17889","-1","","","","","zzOLD - QAEnchant 2H Weapon Major Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17890","-1","","","","","zzOLD - QAEnchant Shield +7 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17891","-1","","","","","QAEnchant Shield +7 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17892","-1","","","","","QAEnchant Shield +8 Frost Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17893","-1","","","","","QAEnchant Shield +9 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17894","-1","","","","","QAEnchant Boots +7 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17895","-1","","","","","QAEnchant Boots +5 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17896","-1","","","","","QAEnchant Boots +7 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17897","-1","","","","","QAEnchant Gloves +7 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17898","-1","","","","","QAEnchant Gloves +7 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17899","-1","","","","","QAEnchant Gloves +1% Haste","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17900","-1","","","","","Stormpike Insignia Rank 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17901","-1","","","","","Stormpike Insignia Rank 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17902","-1","","","","","Stormpike Insignia Rank 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17903","-1","","","","","Stormpike Insignia Rank 5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17904","-1","The Eye of Command","","","","Stormpike Insignia Rank 6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17905","-1","","","","","Frostwolf Insignia Rank 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17906","-1","","","","","Frostwolf Insignia Rank 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17907","-1","","","","","Frostwolf Insignia Rank 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17908","-1","","","","","Frostwolf Insignia Rank 5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17909","-1","The Eye of Command","","","","Frostwolf Insignia Rank 6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"17910","-1","","","","","Test Enchantments LockBox (Enchanting Items) 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17911","-1","","","","","Test Enchantments LockBox (Enchanting Items) 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"17922","-1","","","","","Lionfur Armor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","629","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","5" +"17942","-1","","","","","Monster - Mace2H, War Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"17943","-1","","","","","Fist of Stone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35234","176174","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","53","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","48" +"17962","-1","","","","","Blue Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4762","19050","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17963","-1","","","","","Green Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17964","-1","","","","","Gray Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5512","22050","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17965","-1","","","","","Yellow Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","213","854","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17966","-1","","","","","Onyxia Hide Backpack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17967","-1","","","","","Refined Scale of Onyxia","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17968","-1","","","","","Charged Scale of Onyxia","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"17969","-1","","","","","Red Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4773","19095","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"17982","-1","","","","","Ragnaros Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23961","95846","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","3474","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","60" +"18002","-1","","","","","Monster - Axe, 2H Horde Massive Spiked Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18022","-1","","","","","Royal Seal of Alexis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","8","0","0","0","0","0","0","0","0" +"18023","-1","","","","","Blood Ruby Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15538","62153","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","54" +"18042","-1","","","","","Thorium Headed Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","57","-1","0","0","17","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","52" +"18043","-1","","","","","Coal Miner Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15495","77476","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","10","17","0","0","0","0","0","0","0","52" +"18044","-1","","","","","Hurley's Tankard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41478","207391","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","57","-1","0","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","5","0","0","0","0","0","0","0","0","52" +"18045","-1","","","","","Tender Wolf Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18046","-1","Teaches you how to cook a Tender Wolf Steak.","","","","Recipe: Tender Wolf Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","185","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18047","-1","","","","","Flame Walkers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22776","113883","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","18","0","0","0","0","0","0","0","0","57" +"18048","-1","","","","","Mastersmith's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49204","246023","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","55" +"18062","-1","","","","","Monster - Mace2H, Horde Hammer A03/C01Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18063","-1","","","","","Test Epic Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"18082","-1","","","","","Zum'rah's Vexing Cane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28161","140809","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","47","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","10","0","0","0","0","0","0","0","0","42" +"18083","-1","","","","","Jumanza Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4522","22613","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","10","10","0","0","0","0","0","0","0","42" +"18102","-1","","","","","Dragonrider Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15444","77220","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","5","0","0","0","0","0","0","0","0","58" +"18103","-1","","","","","Band of Rumination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15252","61010","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18104","-1","","","","","Feralsurge Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15557","77787","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","9","0","0","0","0","0","0","0","0","58" +"18105","-1","","","","","PVP TEST Alliance Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18106","-1","","","","","PVP TEST Horde Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18122","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Blue High Blue Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18123","-1","","","","","Monster - Staff, Feathered Silver Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18142","-1","","","","","Severed Night Elf Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18143","-1","","","","","Tuft of Gnome Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18144","-1","","","","","Human Bone Chip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18145","-1","","","","","Tauren Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18146","-1","","","","","Darkspear Troll Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18147","-1","","","","","Forsaken Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18148","-1","","","","","Skull of Korrak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18149","-1","","","","","Rune of Recall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18150","-1","","","","","Rune of Recall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18151","-1","","","","","Filled Amethyst Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18152","-1","","","","","Amethyst Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18153","-1","","","","","Red Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18154","-1","","","","","Blizzard Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18155","-1","","","","","Blue Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18156","-1","","","","","Green Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18157","-1","","","","","Black Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18158","-1","","","","","Gold Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18159","-1","","","","","White Moro'gai Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18160","-1","Teaches you how to brew a Thistle Tea.","","","","Recipe: Thistle Tea","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18161","-1","","","","","5% Test Speed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18162","-1","","","","","8% Test Speed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18163","-1","","","","","10% Test Speed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18164","-1","","","","","13% Test Speed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18165","-1","","","","","15% Test Speed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18166","-1","","","","","Monster - Shield, Royal Dreadguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18167","-1","","","","","Monster - Sword, Machete C01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18168","-1","","","","","Force Reactive Disk","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47292","236463","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2836","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","11","0","0","0","0","0","0","0","0","0","60" +"18169","-1","","","","","Flame Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18170","-1","","","","","Frost Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18171","-1","","","","","Arcane Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18172","-1","","","","","Nature Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18173","-1","","","","","Shadow Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18182","-1","","","","","Chromatic Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18202","-1","","","","","Eskhandar's Left Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73256","366284","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","261","0","0","0","1500","0","0","0","66","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","4","0","0","0","0","0","0","0","0","0","60" +"18203","-1","","","","","Eskhandar's Right Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73522","367614","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","261","0","0","0","1500","0","0","0","66","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","4","0","0","0","0","0","0","0","0","0","60" +"18204","-1","","","","","Eskhandar's Pelt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22136","110683","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18205","-1","","","","","Eskhandar's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33287","133150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","0","0","0","0","0","0","0","0","0","60" +"18206","-1","","","","","Dwarf Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18207","-1","","","","","Orc Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18208","-1","","","","","Drape of Benediction","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22741","113705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","11","8","0","0","0","0","0","0","0","60" +"18209","-1","","","","","Energized Sparkplug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1231","4925","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18222","-1","","","","","Thorny Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3070","12280","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18223","-1","","","","","Serrated Petal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6142","24568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18224","-1","","","","","Lasher Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","1728","6912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18225","-1","","","","","Worn Running Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","140","560","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18226","-1","","","","","A Sealed Pact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","408","1633","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18227","-1","This item has seen much use.","","","","Nubless Pacifier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","248","995","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18228","-1","It's either a signature or someone spilled ink a dramatic fashion.","","","","Autographed Picture of Tigule","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18229","-1","This book is missing every page but the last.","","","","Nat Pagle's Guide to Extreme Anglin'","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","790","3163","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2611","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18230","-1","If only it worked.","","","","Broken I.W.I.N. Button","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","509","2037","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18231","-1","On the inside collar it reads, ""Inspected by Earl Z. Moade.""","","","","Sleeveless T-Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","361","1445","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18232","-1","","","","","Field Repair Bot 74A","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18233","-1","The owner of this item could have probably used a hug.","","","","Tear Stained Handkerchief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","130","520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18234","-1","You think that you can make out some numbers. This appears to be a repair bill.","","","","Document from Boomstick Imports","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18235","-1","Teaches you how to make a Field Repair Bot 74A that will repair any player's equipment for the normal cost.","","","","Schematic: Field Repair Bot 74A","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18236","-1","","","","","Gordok Chew Toy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2716","10864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18237","-1","","","","","Mastiff Jawbone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1622","6490","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18238","-1","","","","","Shadowskin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3321","16609","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","6","0","0","0","0","0","0","0","0","0","35" +"18239","-1","Teaches you how to craft Shadowskin Gloves.","","","","Pattern: Shadowskin Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","165","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18240","-1","","","","","Ogre Tannin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18241","1101","","","","","Black War Steed Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18242","1101","","","","","Reins of the Black War Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18243","68","","","","","Black Battlestrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18244","1101","","","","","Black War Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18245","690","","","","","Horn of the Black War Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18246","658","","","","","Whistle of the Black War Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18247","690","","","","","Black War Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18248","658","","","","","Red Skeletal Warhorse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","55" +"18249","-1","","","","","Crescent Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18250","-1","Used with Gordok ogre shackles.","","","","Gordok Shackle Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18251","-1","","","","","Core Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18252","-1","Teaches you how to craft a Core Armor Kit.","","","","Pattern: Core Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18253","-1","","","","","Major Rejuvenation Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"18254","-1","","","","","Runn Tum Tuber Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","18","72","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"18255","-1","","","","","Runn Tum Tuber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"18256","-1","","","","","Imbued Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","20000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18257","-1","Teaches you how to make a Major Rejuvenation Potion.","","","","Recipe: Major Rejuvenation Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18258","-1","It lifts AND supports!","","","","Gordok Ogre Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"18259","-1","Teaches you how to permanently enchant a weapon to add up to 30 damage to spells.","","","","Formula: Enchant Weapon - Spell Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18260","-1","Teaches you how to permanently enchant a weapon to add up to 55 points of healing to healing spells and up to 19 points of damage to damage spells.","","","","Formula: Enchant Weapon - Healing Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18261","-1","","","","","Book of Incantations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18262","-1","","","","","Elemental Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18263","-1","","","","","Flarecore Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14690","73454","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","1535","0","0","0","0","0","0","0","0","0","0","0","0","49","0","7","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","0","0","0","0","0","0","0","0","0","60" +"18264","-1","Teaches you how to make an Elemental Sharpening Stone.","","","","Plans: Elemental Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18265","-1","Teaches you how to sew Flarecore Wraps.","","","","Pattern: Flarecore Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18266","-1","","","","","Gordok Courtyard Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2557","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18267","-1","Teaches you how to cook Runn Tum Tuber Surprise.","","","","Recipe: Runn Tum Tuber Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18268","-1","","","","","Gordok Inner Door Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18269","-1","","","","","Gordok Green Grog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18282","-1","","","","","Core Marksman Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55617","278089","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","65","-1","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"18283","-1","","","","","Biznicks 247x128 Accurascope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18284","-1","","","","","Kreeg's Stout Beatdown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18285","-1","","","","","Crystallized Mana Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4558","18234","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18286","-1","","","","","Condensed Mana Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2953","11812","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18287","-1","Tastes better going down than coming up!","","","","Evermurky","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18288","-1","Do not consume near open flames.","","","","Molasses Firewater","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18289","-1","","","","","Barbed Thorn Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9701","38804","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","51" +"18290","-1","Teaches you how to make a Biznicks 247x128 Accurascope.","","","","Schematic: Biznicks 247x128 Accurascope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18291","-1","Teaches you how to make a Force Reactive Disk.","","","","Schematic: Force Reactive Disk","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18292","-1","Teaches you how to make a Core Marksman Rifle.","","","","Schematic: Core Marksman Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18293","-1","","","","","Monster - Glaive - 2 Blade B03 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18294","-1","","","","","Elixir of Greater Water Breathing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18295","-1","","","","","Phasing Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11582","57913","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3325","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","0","0","0","0","0","0","0","0","50" +"18296","-1","","","","","Marksman Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12322","61610","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","6","10","0","0","0","0","0","0","0","51" +"18297","-1","","","","","Thornling Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"18298","-1","","","","","Unbridled Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20685","103427","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","11","0","0","0","0","0","0","0","0","51" +"18299","-1","","","","","Hydrospawn Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18300","-1","","","","","Hyjal Nectar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"18301","-1","","","","","Lethtendris's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29363","146815","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","58","-1","0","0","60","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","53" +"18302","-1","","","","","Band of Vigor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7530","30122","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","7","7","0","0","0","0","0","0","0","53" +"18303","-1","","","","","Nimble Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25232","126160","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","1776","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","0","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","0","0","0","0","0","0","0","0","0","53" +"18304","-1","","","","","Greenroot Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21480","107402","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","0","0","0","0","0","0","0","0","0","53" +"18305","-1","","","","","Breakwater Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25157","125789","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18306","-1","","","","","Gloves of Shadowy Mist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7215","36075","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18307","-1","","","","","Riptide Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11163","55815","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","53" +"18308","-1","","","","","Clever Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14006","70030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","53" +"18309","-1","","","","","Gloves of Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11808","59044","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","54" +"18310","-1","","","","","Fiendish Machete","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47406","237032","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","59","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18311","-1","","","","","Quel'dorai Channeling Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56644","283224","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","58","-1","0","0","111","0","0","0","0","167","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","8","8","0","0","0","0","0","0","0","53" +"18312","-1","","","","","Energized Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33429","167149","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","20","12","0","0","0","0","0","0","0","54" +"18313","-1","","","","","Helm of Awareness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23920","119602","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","0","0","0","0","0","0","0","0","0","53" +"18314","-1","","","","","Ring of Demonic Guile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12100","48400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"18315","-1","","","","","Ring of Demonic Potency","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12100","48400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","54" +"18316","-1","","","","","Obsidian Bauble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13117","52468","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","0","0","0","0","0","0","0","0","0","53" +"18317","-1","","","","","Tempest Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12503","50012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","53" +"18318","-1","","","","","Merciful Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22057","110286","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","0","0","0","0","0","0","0","0","54" +"18319","-1","","","","","Fervent Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20989","104945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","3441","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","0","0","0","0","0","0","0","0","0","53" +"18320","-1","","","","","Demonheart Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21157","105789","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","9","0","0","0","0","0","0","0","53" +"18321","-1","","","","","Energetic Rod","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49320","246601","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","59","-1","0","0","71","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18322","-1","","","","","Waterspout Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17677","88385","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","0","0","0","0","0","0","0","0","53" +"18323","-1","","","","","Satyr's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32988","164943","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","58","-1","0","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","53" +"18324","-1","","","","","Waveslicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55189","275949","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","58","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","0","0","0","0","0","0","0","0","0","53" +"18325","-1","","","","","Felhide Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16617","83089","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","8","0","0","8","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","14","0","0","0","0","0","0","0","0","53" +"18326","-1","","","","","Razor Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16440","82201","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","0","0","0","0","0","0","0","0","0","54" +"18327","-1","","","","","Whipvine Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9376","46880","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","0","0","0","0","0","0","0","0","0","54" +"18328","-1","","","","","Shadewood Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14116","70583","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","7","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","13","7","0","0","0","0","0","0","0","0","54" +"18329","-1","","","","","Arcanum of Rapidity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18330","-1","","","","","Arcanum of Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18331","-1","","","","","Arcanum of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18332","-1","Dark runes skitter across the surface.","","","","Libram of Rapidity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2635","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18333","-1","Dark runes skitter across the surface.","","","","Libram of Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2631","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18334","-1","Dark runes skitter across the surface.","","","","Libram of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2633","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"18335","-1","","","","","Pristine Black Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18336","-1","This gauntlet looks as though it once was imbued with potent magic.","","","","Gauntlet of Gordok Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18337","-1","","","","","Orphic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8103","40516","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","7","0","0","0","0","0","0","0","0","54" +"18338","-1","","","","","Wand of Arcane Potency","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36595","182979","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","59","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18339","-1","","","","","Eidolon Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11370","56853","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","12","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","5","0","0","0","0","0","0","0","0","0","54" +"18340","-1","","","","","Eidolon Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28853","115412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","0","0","0","0","0","0","0","0","0","54" +"18341","-1","","","","","Quel'dorai Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7638","38190","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","12","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","54" +"18342","-1","","","","","Quel'dorai Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29442","147213","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","11","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18343","-1","","","","","Petrified Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14615","58462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","0","0","0","0","0","0","0","0","0","59" +"18344","-1","","","","","Stonebark Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11587","57937","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","16","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","54" +"18345","-1","","","","","Murmuring Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14727","58908","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18346","-1","","","","","Threadbare Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16345","81726","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18347","-1","","","","","Well Balanced Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41589","207948","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","61","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","56" +"18348","-1","The High Blade","","","","Quel'Serrar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75990","379952","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","71","3","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","0","0","0","0","0","0","0","0","0","60" +"18349","-1","","","","","Gauntlets of Accuracy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12568","62844","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","0","0","0","0","0","0","0","0","0","56" +"18350","-1","","","","","Amplifying Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12615","63077","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18351","-1","","","","","Magically Sealed Bracers","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14855","74277","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18352","-1","","","","","Petrified Bark Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27109","135548","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","1861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18353","-1","","","","","Stoneflower Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53142","265714","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","61","-1","0","0","113","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","24","0","0","0","0","0","0","0","0","0","56" +"18354","-1","","","","","Pimgib's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17466","69864","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18355","-1","","","","","Ferra's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14996","59984","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18356","-1","The tome is magically sealed.","","","","Garona: A Study on Stealth and Treachery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7498","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18357","-1","The tome is magically sealed.","","","","Codex of Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7499","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18358","-1","The tome is magically sealed.","","","","The Arcanist's Cookbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7500","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18359","-1","-By Uther","","","","The Light and How to Swing It","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7501","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18360","-1","Tales from the Blasted Lands as told by Lady Sevine.","","","","Harnessing Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7502","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18361","-1","A Tale of a Female Troll and Her Tiger","","","","The Greatest Race of Hunters","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7503","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18362","-1","-By Shadow Priest Allister","","","","Holy Bologna: What the Light Won't Tell You","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7504","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18363","-1","-By Drek'Thar","","","","Frost Shock and You","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7505","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18364","-1","Fact or Carefully Planned Out Farce Perpetrated By My Brother -By Illidan","","","","The Emerald Dream","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7506","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18365","-1","Someone really loves to fish.","","","","A Thoroughly Read Copy of ""Nat Pagle's Extreme' Anglin.""","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"18366","-1","","","","","Gordok's Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17257","86285","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18367","-1","","","","","Gordok's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14762","73814","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18368","-1","","","","","Gordok's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12348","61742","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18369","-1","","","","","Gordok's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9915","49577","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","9","0","0","0","0","0","0","0","0" +"18370","-1","","","","","Vigilance Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18371","-1","","","","","Mindtap Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20737","82948","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18372","-1","","","","","Blade of the New Moon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52881","264405","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","62","-1","0","0","40","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","57" +"18373","-1","","","","","Chestplate of Tranquility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26535","132675","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","6","10","0","0","0","0","0","0","0","57" +"18374","-1","","","","","Flamescarred Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19970","99851","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","12","11","0","0","0","0","0","0","0","57" +"18375","-1","","","","","Bracers of the Eclipse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13360","66804","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","9","0","0","0","0","0","0","0","0","57" +"18376","-1","","","","","Timeworn Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53632","268163","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","62","-1","0","0","62","0","0","0","0","117","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","11","0","0","0","0","0","0","0","0","57" +"18377","-1","","","","","Quickdraw Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12175","60879","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","7","7","0","0","0","0","0","0","0","57" +"18378","-1","","","","","Silvermoon Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29332","146662","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","10","16","6","0","0","0","0","0","0","57" +"18379","-1","","","","","Odious Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22182","110913","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","9","0","0","0","0","0","0","0","0","57" +"18380","-1","","","","","Eldritch Reinforced Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34486","172431","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","20","9","0","0","0","0","0","0","0","57" +"18381","-1","","","","","Evil Eye Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21635","86542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","57" +"18382","-1","","","","","Fluctuating Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14891","74458","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","3458","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18383","-1","","","","","Force Imbued Gauntlets","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17301","86505","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","0","0","0","0","0","0","0","0","0","56" +"18384","-1","","","","","Bile-etched Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26209","131046","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","6","6","0","0","0","0","0","0","0","57" +"18385","-1","","","","","Robe of Everlasting Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20080","100403","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","11","5","0","0","0","0","0","0","0","57" +"18386","-1","","","","","Padre's Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19882","99411","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","56" +"18387","-1","","","","","Brightspark Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9840","49204","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","55" +"18388","-1","","","","","Stoneshatter","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39093","195466","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","93","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","11","0","0","0","0","0","0","0","0","0","57" +"18389","-1","","","","","Cloak of the Cosmos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15692","78462","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","7","0","0","0","0","0","0","0","0","57" +"18390","-1","","","","","Tanglemoss Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25891","129459","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","13","12","0","0","0","0","0","0","0","57" +"18391","-1","","","","","Eyestalk Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13171","65858","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","9","0","0","0","0","0","0","0","0","57" +"18392","-1","","","","","Distracting Dagger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52875","264379","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","62","-1","0","0","42","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","14","0","0","0","0","0","0","0","0","0","57" +"18393","-1","","","","","Warpwood Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15701","78507","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","9","6","0","0","0","0","0","0","0","56" +"18394","-1","","","","","Demon Howl Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15974","79873","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","0","0","0","0","0","0","0","0","0","57" +"18395","-1","","","","","Emerald Flame Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36645","146580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","8","7","0","0","0","0","0","0","0","57" +"18396","-1","","","","","Mind Carver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53627","268138","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","62","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","8","0","0","0","0","0","0","0","0","0","57" +"18397","-1","","","","","Elder Magus Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","7","6","0","0","0","0","0","0","0","56" +"18398","-1","","","","","Tidal Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27103","108413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","7","4","0","0","0","0","0","0","0","0" +"18399","-1","","","","","Ocean's Breeze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27103","108413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","4","4","0","0","0","0","0","0","0","0" +"18400","-1","","","","","Ring of Living Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59412","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","9","0","0","0","0","0","0","0","0","0" +"18401","-1","Several pages are blank.","","","","Nostro's Compendium of Dragon Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7507","2637","0","0","0","0","60","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","3","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18402","-1","","","","","Glowing Crystal Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18662","74651","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","5","0","0","0","0","0","0","0","0","0" +"18403","-1","","","","","Dragonslayer's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49060","196240","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","6","12","0","0","0","0","0","0","0","0" +"18404","-1","","","","","Onyxia Tooth Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6714","26856","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","0" +"18405","-1","","","","","Belt of the Archmage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13747","68735","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1535","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","10","0","0","0","0","0","0","0","0","57" +"18406","-1","","","","","Onyxia Blood Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46030","184123","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18407","-1","","","","","Felcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10386","51930","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"18408","-1","","","","","Inferno Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10422","52114","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"18409","-1","","","","","Mooncloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10460","52303","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","15","9","0","0","0","0","0","0","0","57" +"18410","-1","","","","","Sprinter's Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45516","227582","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","57","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18411","-1","","","","","Spry Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13704","68520","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","0" +"18412","-1","","","","","Core Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18413","-1","","","","","Cloak of Warding","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15916","79582","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18414","-1","Teaches you how to sew a Belt of the Archmage.","","","","Pattern: Belt of the Archmage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18415","-1","Teaches you how to sew Felcloth Gloves.","","","","Pattern: Felcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18416","-1","Teaches you how to sew Inferno Gloves.","","","","Pattern: Inferno Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18417","-1","Teaches you how to sew Mooncloth Gloves.","","","","Pattern: Mooncloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18418","-1","Teaches you how to sew a Cloak of Warding.","","","","Pattern: Cloak of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18419","-1","","","","","Monster - Axe, 2H Horde Red War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18420","-1","","","","","Bonecrusher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64117","320585","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","0","0","0","0","0","0","0","0","0","0" +"18421","-1","","","","","Backwood Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23168","115842","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","9","9","13","0","0","0","0","0","0","0" +"18422","-1","The head of the Black Dragonflight's Brood Mother","","","","Head of Onyxia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7490","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18423","-1","The head of the Black Dragonflight's Brood Mother","","","","Head of Onyxia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7495","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18424","-1","","","","","Sedge Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19520","97604","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","5","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","0" +"18425","-1","","","","","Kreeg's Mug","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5537","22150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","12","15","-10","0","0","0","0","0","0","0","55" +"18426","-1","","","","","Lethtendris's Web","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18427","-1","","","","","Sergeant's Cloak","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","0","0","0","0","0","0","0","0","0","30" +"18428","-1","","","","","Senior Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18429","-1","","","","","First Sergeant's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18430","-1","","","","","First Sergeant's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","3","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18432","-1","","","","","First Sergeant's Mail Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","68","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18434","-1","","","","","First Sergeant's Dragonhide Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18435","-1","","","","","First Sergeant's Leather Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18436","-1","","","","","First Sergeant's Dragonhide Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","1024","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18437","-1","","","","","First Sergeant's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","400","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18438","-1","","","","","Sergeant's Mark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","35" +"18440","-1","","","","","Sergeant's Cape","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","0","0","0","0","0","0","0","0","0","30" +"18441","-1","","","","","Sergeant's Cape","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","0","0","0","0","0","0","0","0","0","45" +"18442","-1","","","","","Master Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","4","0","0","0","0","0","0","0","0","30" +"18443","-1","","","","","Master Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18444","-1","","","","","Master Sergeant's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18445","-1","","","","","Sergeant Major's Plate Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18447","-1","","","","","Sergeant Major's Plate Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","3","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18448","-1","","","","","Sergeant Major's Chain Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18449","-1","","","","","Sergeant Major's Chain Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","68","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18450","-1","","","","","Robe of Combustion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17016","85083","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","17","0","0","0","0","0","0","0","0","0","55" +"18451","-1","","","","","Hyena Hide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10673","53369","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18452","-1","","","","","Sergeant Major's Leather Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","8","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18453","-1","","","","","Sergeant Major's Leather Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","8","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18454","-1","","","","","Sergeant Major's Dragonhide Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1024","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18455","-1","","","","","Sergeant Major's Dragonhide Armsplints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","1024","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18456","-1","","","","","Sergeant Major's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18457","-1","","","","","Sergeant Major's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","400","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18458","-1","","","","","Modest Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12212","61064","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18459","-1","","","","","Gallant's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14383","71918","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","0","0","0","0","0","0","0","0","0","55" +"18460","-1","","","","","Unsophisticated Hand Cannon","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30762","153811","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","63","0","0","0","0","118","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","8","0","0","0","0","0","0","0","0","0","55" +"18461","-1","","","","","Sergeant's Cloak","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","17","0","0","0","0","0","0","0","0","0","58" +"18462","-1","","","","","Jagged Bone Fist","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41319","206595","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","60","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","7","0","0","0","0","0","0","0","0","55" +"18463","-1","","","","","Ogre Pocket Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41472","207361","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","60","-1","0","0","60","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","0","0","0","0","0","0","0","0","0","55" +"18464","-1","","","","","Gordok Nose Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29135","116541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","5","0","0","0","0","0","0","0","0","55" +"18465","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18466","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18467","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18468","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18469","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18470","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18471","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18472","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18473","-1","Blessed by the Shen'dralar Ancients.","","","","Royal Seal of Eldre'Thalas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18475","-1","","","","","Oddly Magical Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","804","4024","1","0.1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","13","0","0","0","0","0","0","0","0","0","55" +"18476","-1","","","","","Mud Stained Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1514","7574","1","0.1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","10","15","0","0","0","0","0","0","0","0","55" +"18477","-1","","","","","Shaggy Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2027","10138","1","0.1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","0","0","0","0","0","0","0","0","0","55" +"18478","-1","","","","","Hyena Hide Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2035","10176","1","0.1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","13","0","0","0","0","0","0","0","0","55" +"18479","-1","","","","","Carrion Scorpid Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1838","9192","1","0.1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","0","0","0","0","0","0","0","0","0","55" +"18480","-1","","","","","Scarab Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2148","10744","1","0.1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","13","0","0","0","0","0","0","0","0","55" +"18481","-1","","","","","Skullcracking Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5145","25725","1","0.1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","60","-1","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","10","0","0","0","0","0","0","0","0","55" +"18482","-1","","","","","Ogre Toothpick Shooter","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3098","15493","1","0.1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","80","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","6","5","0","0","0","0","0","0","0","0","55" +"18483","-1","","","","","Mana Channeling Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37839","189196","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","61","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18484","-1","","","","","Cho'Rush's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51975","259877","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","61","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18485","-1","","","","","Observer's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33383","166918","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","2089","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","14","5","9","0","0","0","0","0","0","0","56" +"18486","-1","","","","","Mooncloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20939","104697","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","12","12","0","0","0","0","0","0","0","56" +"18487","-1","Teaches you how to sew a Mooncloth Robe.","","","","Pattern: Mooncloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18488","-1","","","","","Heated Ancient Blade","0","1200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","98368","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18489","-1","","","","","Unfired Ancient Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18490","-1","","","","","Insightful Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18015","90077","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","9","12","0","0","0","0","0","0","0","56" +"18491","-1","","","","","Lorespinner","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40695","203475","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","-1","0","0","39","0","0","0","0","74","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","6","5","0","0","0","0","0","0","0","0" +"18492","-1","Tempered in the blood of Onyxia.","","","","Treated Ancient Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18493","-1","","","","","Bulky Iron Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25113","125567","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","12","5","0","0","0","0","0","0","0","55" +"18494","-1","","","","","Denwatcher's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21743","108718","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","10","10","0","0","0","0","0","0","0","55" +"18495","-1","","","","","Redoubt Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1509","7547","1","0.1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","58" +"18496","-1","","","","","Heliotrope Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14542","72710","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","55" +"18497","-1","","","","","Sublime Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9731","48657","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","6","6","0","0","0","0","0","0","0","55" +"18498","-1","","","","","Hedgecutter","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48836","244183","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","60","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","5","0","0","0","0","0","0","0","0","55" +"18499","-1","","","","","Barrier Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3225","16125","1","0.1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18500","-1","","","","","Tarnished Elven Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3134","12536","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","56" +"18501","-1","","","","","Felvine Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18502","-1","","","","","Monstrous Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65385","326927","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","62","-1","0","0","123","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","0","0","0","0","0","0","0","0","0","57" +"18503","-1","","","","","Kromcrush's Chestplate","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36748","183741","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","16","16","0","0","0","0","0","0","0","0","57" +"18504","-1","","","","","Girdle of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13171","65858","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","23","9","0","0","0","0","0","0","0","0","57" +"18505","-1","","","","","Mugger's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13218","66094","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","12","0","0","0","0","0","0","0","0","57" +"18506","-1","","","","","Mongoose Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19897","99487","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","9","0","0","0","0","0","0","0","0","57" +"18507","-1","","","","","Boots of the Full Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15974","79873","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","9","12","0","0","0","0","0","0","0","57" +"18508","-1","","","","","Swift Flight Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16031","80157","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","0","0","0","0","0","0","0","0","0","57" +"18509","-1","","","","","Chromatic Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21451","107255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","9","0","0","9","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","0","0","0","0","0","0","0","0","0","57" +"18510","-1","","","","","Hide of the Wild","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19477","97386","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","8","0","0","0","0","0","0","0","0","57" +"18511","-1","","","","","Shifting Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19553","97765","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","8","0","0","0","0","0","0","0","0","57" +"18512","-1","","","","","Larval Acid","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18513","-1","","","","","A Dull and Flat Elven Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7508","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18514","-1","Teaches you how to craft a Girdle of Insight.","","","","Pattern: Girdle of Insight","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18515","-1","Teaches you how to craft Mongoose Boots.","","","","Pattern: Mongoose Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18516","-1","Teaches you how to craft Swift Flight Bracers.","","","","Pattern: Swift Flight Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18517","-1","Teaches you how to craft a Chromatic Cloak.","","","","Pattern: Chromatic Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18518","-1","Teaches you how to craft a Hide of the Wild.","","","","Pattern: Hide of the Wild","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18519","-1","Teaches you how to craft a Shifting Cloak.","","","","Pattern: Shifting Cloak","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18520","-1","","","","","Barbarous Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6579","32897","1","0.1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","63","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18521","-1","","","","","Grimy Metal Boots","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2767","13839","1","0.1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","0","0","0","0","0","0","0","0","0","58" +"18522","-1","","","","","Band of the Ogre King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3625","14501","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","13","0","0","0","0","0","0","0","0","58" +"18523","-1","","","","","Brightly Glowing Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3481","13924","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","0","0","0","0","0","0","0","0","0","58" +"18524","-1","","","","","Leggings of Destruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3203","16019","1","0.1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","13","20","0","0","0","0","0","0","0","58" +"18525","-1","","","","","Bracers of Prosperity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1339","6698","1","0.1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","8","5","0","0","0","0","0","0","0","58" +"18526","-1","","","","","Crown of the Ogre King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1613","8066","1","0.1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","11","16","0","0","0","0","0","0","0","58" +"18527","-1","","","","","Harmonious Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1619","8095","1","0.1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","5","5","0","0","0","0","0","0","0","58" +"18528","-1","","","","","Cyclone Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1976","9881","1","0.1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","9","11","0","0","0","0","0","0","0","56" +"18529","-1","","","","","Elemental Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1861","9308","1","0.1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3499","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","56" +"18530","-1","","","","","Ogre Forged Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2921","14606","1","0.1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","13","8","8","0","0","0","0","0","0","57" +"18531","-1","","","","","Unyielding Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6109","30548","1","0.1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","62","-1","0","0","135","0","0","0","0","204","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","57" +"18532","-1","","","","","Mindsurge Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2016","10083","1","0.1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","13","12","0","0","0","0","0","0","0","0","57" +"18533","-1","","","","","Gordok Bracers of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1805","9027","1","0.1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","7","0","0","0","0","0","0","0","0","58" +"18534","-1","","","","","Rod of the Ogre Magi","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6435","32178","1","0.1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","11","7","0","0","0","0","0","0","0","58" +"18535","-1","","","","","Milli's Shield","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30231","151155","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","7","0","0","0","0","0","0","0","0","0" +"18536","-1","","","","","Milli's Lexicon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38664","154658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","6","0","0","0","0","0","0","0","0","0" +"18537","-1","","","","","Counterattack Lodestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6613","26454","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18538","-1","","","","","Treant's Bane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8707","43539","1","0.1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","63","-1","0","0","161","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","25","15","0","0","0","0","0","0","0","0","58" +"18539","-1","","","","","Reliquary of Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18540","-1","","","","","Sealed Reliquary of Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18541","-1","","","","","Puissant Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23110","115553","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"18542","-1","","","","","Typhoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94273","471368","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","68","-1","0","0","150","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","14","20","10","0","0","0","0","0","0","0","60" +"18543","-1","","","","","Ring of Entropy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63728","254912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","11","8","0","0","0","0","0","0","0","60" +"18544","-1","","","","","Doomhide Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19705","98527","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","8","0","0","8","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","14","0","0","0","0","0","0","0","0","60" +"18545","-1","","","","","Leggings of Arcane Supremacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30875","154376","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","10","0","10","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","14","14","0","0","0","0","0","0","0","60" +"18546","-1","","","","","Infernal Headcage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34859","174295","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","14","24","0","0","0","0","0","0","0","60" +"18547","-1","","","","","Unmelting Ice Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28041","140207","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","16","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","14","14","14","0","0","0","0","0","0","0","60" +"18562","-1","","","","","Elementium Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18563","-1","The Left Half of Thunderaan's Eternal Prison","","","","Bindings of the Windseeker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"18564","-1","The Right Half of Thunderaan's Eternal Prison","","","","Bindings of the Windseeker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0" +"18565","-1","","","","","Vessel of Rebirth DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7522","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","100" +"18566","-1","","","","","Essence of the Firelord DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","100" +"18567","-1","","","","","Elemental Flux","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","37500","150000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18582","-1","","","","","The Twin Blades of Azzinoth","0.05","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","271161","1355809","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","100","-1","0","0","118","40","40","0","0","125","60","60","0","0","0","0","0","0","0","100","100","0","254","0","0","0","0","0","0","3","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","75","100","-106","0","0","0","0","0","0","0","70" +"18583","-1","","","","","Warglaive of Azzinoth (Right)","0.1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","246242","1231214","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","77","30","0","0","0","85","60","0","0","0","0","0","0","0","0","50","60","0","254","0","0","0","0","0","0","1","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","40","50","60","0","0","0","0","0","0","0","70" +"18584","-1","","","","","Warglaive of Azzinoth (Left)","0.1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","247199","1235996","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","100","-1","0","0","77","30","0","0","0","85","60","0","0","0","0","0","0","0","0","60","50","0","254","0","0","0","0","0","0","1","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","6","0","60","50","40","0","0","0","0","0","0","0","70" +"18585","-1","","","","","Band of Allegiance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","4","0","0","0","0","0","0","0","0","0" +"18586","-1","","","","","Lonetree's Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14853","59413","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","0" +"18587","-1","","","","","Goblin Jumper Cables XL","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18588","-1","The dynamite for Non-Engineers that rarely* blows up in your hand with over twice the blasting power of standard EZ-Thro.","","","","Ez-Thro Dynamite II","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"18589","-1","","","","","Dormant Wind Kissed Blade DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7561","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"18590","-1","","","","","Raging Beast's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18591","-1","","","","","Case of Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18592","-1","Teaches you how to make a Sulfuron Hammer.","","","","Plans: Sulfuron Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18593","-1","Bound in Dark Iron Wiring","","","","Thorium Brotherhood Contract (OLD)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","2","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18594","-1","","","","","Powerful Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18595","-1","","","","","Blood Opal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18596","-1","","","","","Monster - Axe, Horde B01 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18597","-1","","","","","Orcish Orphan Whistle","0","172800","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18598","-1","","","","","Human Orphan Whistle","0","172800","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18599","-1","","","","","QAEnchant 2H Weapon +25 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18600","-1","Teaches Arcane Brilliance (Rank 1).","","","","Tome of Arcane Brilliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12000","48000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","56" +"18601","-1","","","","","Glowing Crystal Prison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18602","-1","","","","","Tome of Sacrifice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","0","0","0","0","0","0","0","0","0","0" +"18603","-1","","","","","Satyr Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18604","-1","","","","","Tears of the Hederine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18605","-1","","","","","Imprisoned Doomguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18606","-1","","","","","Alliance Battle Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18607","-1","","","","","Horde Battle Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18608","-1","","","","","Benediction","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","10","12","28","0","0","0","0","0","0","60" +"18609","-1","","","","","Anathema","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","22","0","0","0","0","0","0","0","0","60" +"18610","-1","","","","","Keen Machete","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37","185","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18611","-1","","","","","Gnarlpine Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","139","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","2" +"18612","-1","","","","","Bloody Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35","177","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","3" +"18622","-1","","","","","Flawless Fel Essence (Jaedenar)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18623","-1","","","","","Flawless Fel Essence (Dark Portal)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18624","-1","","","","","Flawless Fel Essence (Azshara)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18625","-1","","","","","Kroshius' Infernal Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18626","-1","","","","","Fel Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18627","-1","","","","","Gong of Dethmoora","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18628","-1","Bound in Dark Iron Wiring","","","","Thorium Brotherhood Contract","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7604","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18629","-1","","","","","Black Lodestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18630","-1","","","","","Doomsday Flare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18631","-1","","","","","Truesilver Transformer","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18632","-1","","","","","Moonbrook Riot Taffy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"18633","-1","","","","","Styleen's Sour Suckerpop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"18634","-1","","","","","Gyrofreeze Ice Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","47" +"18635","-1","","","","","Bellara's Nutterbar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18636","-1","","","","","Ruined Jumper Cables XL","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18637","-1","","","","","Major Recombobulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18638","-1","","","","","Hyper-Radiant Flame Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","53" +"18639","-1","","","","","Ultra-Flash Shadow Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"18640","-1","","","","","Happy Fun Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18641","-1","","","","","Dense Dynamite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18642","-1","Be strong Randis, and aspire to be the hero you were meant to be. -- Lady Jaina Proudmoore","","","","Jaina's Autograph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18643","-1","Heed the spirits, young Grunth. It is there that true heroes hear their calling. -- Cairne Bloodhoof","","","","Cairne's Hoofprint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18644","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Red Low Red Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18645","-1","","","","","Gnomish Alarm-O-Bot","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18646","-1","You can see movement when you peer into the Eye.","","","","The Eye of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2659","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","2","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18647","-1","Teaches you how to make a Red Firework.","","","","Schematic: Red Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18648","-1","Teaches you how to make a Green Firework.","","","","Schematic: Green Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18649","-1","Teaches you how to make a Blue Firework.","","","","Schematic: Blue Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","202","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18650","-1","Teaches you how to make EZ-Thro Dynamite II.","","","","Schematic: EZ-Thro Dynamite II","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","202","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18651","-1","Teaches you how to make a Truesilver Transformer.","","","","Schematic: Truesilver Transformer","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18652","-1","Teaches you how to make a Gyrofreeze Ice Reflector.","","","","Schematic: Gyrofreeze Ice Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18653","-1","Teaches you how to make a Goblin Jumper Cable XL.","","","","Schematic: Goblin Jumper Cables XL","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18654","-1","Teaches you how to make an Alarm-O-Bot.","","","","Schematic: Gnomish Alarm-O-Bot","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","265","202","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18655","-1","Teaches you how to make a Major Recombobulator.","","","","Schematic: Major Recombobulator","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18656","-1","Teaches you how to make a Powerful Seaforium Charge.","","","","Schematic: Powerful Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18657","-1","Teaches you how to make a Hyper-Radiant Flame Reflector.","","","","Schematic: Hyper-Radiant Flame Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","202","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18658","-1","Teaches you how to make an Ultra-Flash Shadow Reflector.","","","","Schematic: Ultra-Flash Shadow Reflector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18659","-1","A tiny fragment of the World Tree","","","","Splinter of Nordrassil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18660","-1","Only Gnomish Technology could invent a device that affects the entire world!","","","","World Enlarger","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","7500","30000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18661","-1","Teaches you how to make a World Enlarger.","","","","Schematic: World Enlarger","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18662","-1","","","","","Heavy Leather Ball","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"18663","-1","","","","","J'eevee's Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18664","-1","","","","","A Treatise on Military Ranks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2654","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18665","-1","Seething darkness engulfs the eye.","","","","The Eye of Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18666","-1","","","","","QAEnchant Weapon Crusader","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18667","-1","","","","","QAEnchant Weapon Icy Chill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18668","-1","","","","","QAEnchant Weapon Spell Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18669","-1","","","","","QAEnchant Weapon Healing Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18670","-1","","","","","Xorothian Glyphs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18671","-1","","","","","Baron Charr's Sceptre","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47747","238737","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","59","-1","0","0","70","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","54" +"18672","-1","","","","","Elemental Ember","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17855","71420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","54" +"18673","-1","","","","","Avalanchion's Stony Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30782","153914","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","2026","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","16","0","0","0","0","0","0","0","0","0","54" +"18674","-1","","","","","Hardened Stone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22003","88014","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","8","0","0","0","0","0","0","0","0","54" +"18675","-1","","","","","Military Ranks of the Horde & Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2661","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18676","-1","","","","","Sash of the Windreaver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15529","77645","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","7","6","0","0","0","0","0","0","0","56" +"18677","-1","","","","","Zephyr Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12059","60297","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","56" +"18678","-1","","","","","Tempestria's Frozen Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26635","106541","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","56" +"18679","-1","","","","","Frigid Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25136","100546","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","56" +"18680","-1","","","","","Ancient Bone Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36594","182973","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","61","-1","0","0","78","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","11","0","0","0","0","0","0","0","0","0","56" +"18681","-1","","","","","Burial Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14693","73469","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","0","0","0","0","0","0","0","0","0","56" +"18682","-1","","","","","Ghoul Skin Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24583","122915","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","8","8","0","0","0","0","0","0","0","56" +"18683","-1","","","","","Hammer of the Vesper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49347","246738","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","61","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","7","0","0","0","0","0","0","0","0","56" +"18684","-1","","","","","Dimly Opalescent Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36141","144564","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","3306","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","56" +"18685","-1","","","","","Shadowy Potion OLD","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","5000","60000","3","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18686","-1","","","","","Bone Golem Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22869","114345","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","9","9","0","0","0","0","0","0","0","57" +"18687","-1","","","","","Xorothian Stardust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1500000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18688","-1","","","","","Imp in a Jar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18689","-1","","","","","Phantasmal Cloak","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15347","76736","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","11","0","0","0","0","0","0","0","0","57" +"18690","-1","","","","","Wraithplate Leggings","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35939","179696","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","0","0","0","0","0","0","0","0","0","57" +"18691","-1","","","","","Dark Advisor's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31400","125601","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","7","0","0","0","0","0","0","0","0","56" +"18692","-1","","","","","Death Knight Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25109","125545","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","9","0","0","0","0","0","0","54" +"18693","-1","","","","","Shivery Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10652","53264","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","9","0","0","0","0","0","0","0","57" +"18694","-1","","","","","Shadowy Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24158","120793","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","0","0","0","0","0","0","0","0","0","57" +"18695","-1","","","","","Spellbound Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","17","6","3","0","0","0","0","0","0","0","57" +"18696","-1","","","","","Intricately Runed Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31173","155867","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","8","0","0","0","0","0","0","0","0","0","57" +"18697","-1","","","","","Coldstone Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10867","54339","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","9","0","0","0","0","0","0","0","0","50" +"18698","-1","","","","","Tattered Leather Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14454","72270","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","10","0","0","0","0","0","0","0","0","51" +"18699","-1","","","","","Icy Tomb Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15380","76901","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","10","10","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","0","0","0","0","0","0","0","0","52" +"18700","-1","","","","","Malefic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10910","54552","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","7","0","0","0","0","0","0","0","0","53" +"18701","-1","","","","","Innervating Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36410","145640","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","9","0","0","0","0","0","0","0","0","54" +"18702","-1","","","","","Belt of the Ordained","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17064","85322","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","9","0","0","0","0","0","0","0","0","55" +"18703","-1","A very large petrified leaf.","","","","Ancient Petrified Leaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7632","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18704","-1","","","","","Mature Blue Dragon Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18705","-1","","","","","Mature Black Dragon Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18706","-1","","","","","Arena Master","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10031","40124","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7810","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","5","0","0","0","0","0","0","0","0","0","35" +"18707","-1","A Gift from the Ancients.","","","","Ancient Rune Etched Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18708","-1","","","","","Petrified Bark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2671","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"18709","-1","","","","","Arena Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5758","28794","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18710","-1","","","","","Arena Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7224","36122","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","6","0","0","0","0","0","0","0","0","45" +"18711","-1","","","","","Arena Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8700","43502","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18712","-1","","","","","Arena Vambraces","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10245","51225","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","0","0","0","0","0","0","0","0","0","45" +"18713","-1","","","","","Rhok'delar, Longbow of the Ancient Keepers","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","4","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"18714","-1","","","","","Ancient Sinew Wrapped Lamina","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18715","-1","","","","","Lok'delar, Stave of the Ancient Keepers","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","4","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","15","0","0","0","0","0","0","0","0","60" +"18716","-1","","","","","Ash Covered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18015","90077","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","0","0","0","0","0","0","0","0","56" +"18717","-1","","","","","Hammer of the Grand Crusader","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61940","309701","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","10","9","0","0","0","0","0","0","0","58" +"18718","-1","","","","","Grand Crusader's Helm","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26065","130329","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","15","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","16","12","0","0","0","0","0","0","0","58" +"18719","-1","","","","","The Traitor's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18720","-1","","","","","Shroud of the Nathrezim","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15036","75183","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","0","0","0","0","0","0","0","0","58" +"18721","-1","","","","","Barrage Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14689","73446","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","6","6","0","0","0","0","0","0","0","56" +"18722","-1","","","","","Death Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17539","87698","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","0","0","0","0","0","0","0","0","0","57" +"18723","-1","","","","","Animated Chain Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","6","0","0","0","0","0","0","0","0","57" +"18724","-1","An almost indestructible string. Perfect for a mighty bow stave.","","","","Enchanted Black Dragon Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18725","-1","","","","","Peacemaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59927","299636","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","59","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","54" +"18726","-1","","","","","Magistrate's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12029","60146","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","0","0","0","0","0","0","0","0","0","54" +"18727","-1","","","","","Crimson Felt Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14487","72438","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","8","8","8","0","0","0","0","0","0","0","54" +"18728","-1","","","","","Anastari Heirloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32466","129865","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"18729","-1","","","","","Screeching Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38302","191512","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","60","-1","0","0","90","0","0","0","0","90","0","0","0","0","0","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","3","0","0","0","0","0","0","0","0","0","55" +"18730","-1","","","","","Shadowy Laced Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10250","51254","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","12","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","55" +"18731","-1","Teaches you how to craft a Heavy Leather Ball.","","","","Pattern: Heavy Leather Ball","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","165","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18734","-1","","","","","Pale Moon Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16031","80157","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","12","0","0","0","0","0","0","0","0","57" +"18735","-1","","","","","Maleki's Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16086","80433","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","9","0","0","0","0","0","0","0","0","57" +"18736","-1","","","","","Plaguehound Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24346","121733","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","6","0","0","0","0","0","0","0","0","57" +"18737","-1","","","","","Bone Slicing Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48882","244412","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","62","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","57" +"18738","-1","","","","","Carapace Spine Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36303","181517","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","61","-1","0","0","105","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","9","4","0","0","0","0","0","0","0","0","56" +"18739","-1","","","","","Chitinous Plate Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34010","170051","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","56" +"18740","-1","","","","","Thuzadin Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9754","48772","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","11","11","0","0","0","0","0","0","0","56" +"18741","-1","","","","","Morlune's Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17704","88520","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","11","7","0","0","0","0","0","0","0","56" +"18742","-1","","","","","Stratholme Militia Shoulderguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22503","112518","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","9","0","0","0","0","0","0","0","0","55" +"18743","-1","","","","","Gracious Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14275","71379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","54" +"18744","-1","","","","","Plaguebat Fur Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11371","56859","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","10","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","13","0","0","0","0","0","0","0","0","53" +"18745","-1","","","","","Sacred Cloth Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17228","86140","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","12","12","0","0","0","0","0","0","0","52" +"18746","-1","","","","","Divination Scryer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18747","-1","","","","","Item Properties Test","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7923","39616","1","0.5","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","58" +"18749","-1","","","","","Charger's Lost Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18752","-1","","","","","Exorcism Censer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18753","-1","","","","","Arcanite Barding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18754","-1","","","","","Fel Hardened Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18806","94033","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","12","0","0","0","0","0","0","0","0","57" +"18755","-1","","","","","Xorothian Firestick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40213","201065","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","62","-1","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","6","4","0","0","0","0","0","0","0","0","57" +"18756","-1","","","","","Dreadguard's Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31160","155802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","18","5","0","0","0","0","0","0","0","0","57" +"18757","-1","","","","","Diabolic Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15069","75348","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","0","0","0","0","0","0","0","0","0","57" +"18758","-1","","","","","Specter's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50416","252082","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","0","51","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18759","-1","","","","","Malicious Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63257","316285","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","62","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","0","0","0","0","0","0","0","0","0","57" +"18760","-1","","","","","Necromantic Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30866","123465","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","57" +"18761","-1","","","","","Oblivion's Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38238","191190","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","62","-1","0","0","78","0","0","0","0","147","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","11","0","0","0","0","0","0","0","0","0","57" +"18762","-1","","","","","Shard of the Green Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27631","110526","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","54","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","0","0","0","0","0","0","0","0","0","0" +"18763","-1","","","","","TEST GUN Alliance20 ","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19966","99831","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18764","-1","","","","","TEST GUN Raid","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20039","100198","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18765","-1","","","","","TEST GUN Horde50","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20113","100566","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"18766","1101","","","","","Reins of the Swift Frostsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18767","1101","","","","","Reins of the Swift Mistsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18768","1101","","","","","Reins of the Swift Dawnsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18769","-1","Volume I","","","","Enchanted Thorium Platemail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7649","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18770","-1","Volume II","","","","Enchanted Thorium Platemail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7650","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18771","-1","Volume III","","","","Enchanted Thorium Platemail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7651","0","0","0","300","164","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18772","68","","","","","Swift Green Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18773","68","","","","","Swift White Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18774","68","","","","","Swift Yellow Mechanostrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18775","-1","Oats and grains specially mixed with the Argent Dawn's enriched manna biscuits.","","","","Manna-Enriched Horse Feed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18776","1101","","","","","Swift Palomino","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18777","1101","","","","","Swift Brown Steed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18778","1101","","","","","Swift White Steed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18779","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18780","-1","","","","","Top Half of Advanced Armorsmithing: Volume I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18781","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18782","-1","","","","","Top Half of Advanced Armorsmithing: Volume II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18783","-1","","","","","Bottom Half of Advanced Armorsmithing: Volume III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18784","-1","","","","","Top Half of Advanced Armorsmithing: Volume III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","50" +"18785","1101","","","","","Swift White Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18786","1101","","","","","Swift Brown Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18787","1101","","","","","Swift Gray Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18788","658","","","","","Swift Blue Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18789","658","","","","","Swift Olive Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18790","658","","","","","Swift Orange Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18791","658","","","","","Purple Skeletal Warhorse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18792","-1","","","","","Blessed Arcanite Barding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18793","690","","","","","Great White Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18794","690","","","","","Great Brown Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18795","690","","","","","Great Gray Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18796","690","","","","","Horn of the Swift Brown Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18797","690","","","","","Horn of the Swift Timber Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18798","690","","","","","Horn of the Swift Gray Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18799","-1","","","","","Charger's Redeemed Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18800","-1","","","","","TEST 1H Amberseal Keeper","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72308","361542","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","67","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","5","5","5","5","5","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18801","-1","","","","","TEST 1H Benediction","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","75","16","0","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","10","12","0","0","0","0","0","0","0","60" +"18802","-1","","","","","Shadowy Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","60000","3","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18803","-1","Property of Pip Quickwit, Grandmaster Adventurer","","","","Hyperthermically Insulated Lava Dredger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94876","474384","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","70","-1","0","0","155","0","0","0","0","234","0","0","0","0","0","0","15","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","25","24","0","0","0","0","0","0","0","0","60" +"18804","-1","Your finished Divination Scryer and Blessed Arcanite Barding are inside the satchel.","","","","Lord Grayson's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18805","-1","","","","","Core Hound Tooth","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76460","382304","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","70","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"18806","-1","","","","","Core Forged Greaves","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41261","206308","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","621","0","12","0","0","8","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","0","0","0","0","0","0","0","0","0","60" +"18807","-1","","","","","Helm of Latent Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25796","128980","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","12","12","0","0","0","0","0","0","0","0" +"18808","-1","","","","","Gloves of the Hypnotic Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15859","79295","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","18","8","0","0","0","0","0","0","0","60" +"18809","-1","","","","","Sash of Whispered Secrets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14578","72891","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18810","-1","","","","","Wild Growth Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27440","137202","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","11","10","0","0","0","0","0","0","0","60" +"18811","-1","","","","","Fireproof Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22035","110175","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","9","8","0","0","0","0","0","0","0","60" +"18812","-1","","","","","Wristguards of True Flight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22119","110599","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","11","6","0","0","0","0","0","0","0","60" +"18813","-1","","","","","Ring of Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89103","356412","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18814","-1","","","","","Choker of the Fire Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89135","356542","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","7","7","0","0","0","0","0","0","0","0","60" +"18815","-1","","","","","Essence of the Pure Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64095","256380","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18816","-1","","","","","Perdition's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80298","401493","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","77","-1","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18817","-1","","","","","Crown of Destruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35861","179307","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","-1","0","0","0","0","0","0","0","0","0","0","0","0","447","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","9","9","0","0","0","0","0","0","0","60" +"18818","-1","","","","","Mor'zul's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2691","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18819","-1","","","","","Rohan's Exorcism Censer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18820","-1","","","","","Talisman of Ephemeral Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66290","265161","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18821","-1","","","","","Quick Strike Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64030","256120","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","5","0","0","0","0","0","0","0","0","60" +"18822","-1","","","","","Obsidian Edged Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94642","473212","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","68","-1","0","0","176","0","0","0","0","264","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","42","19","0","0","0","0","0","0","0","0","60" +"18823","-1","","","","","Aged Core Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19235","96177","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","8","0","0","5","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","12","0","0","0","0","0","0","0","60" +"18824","-1","","","","","Magma Tempered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40964","204823","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","621","0","8","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","12","0","0","0","0","0","0","0","60" +"18825","-1","","","","","Grand Marshal's Aegis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","3366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","23","10","0","0","0","0","0","0","0","0","60" +"18826","-1","","","","","High Warlord's Shield Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","3366","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","23","10","0","0","0","0","0","0","0","0","60" +"18827","-1","","","","","Grand Marshal's Handaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18828","-1","","","","","High Warlord's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18829","-1","","","","","Deep Earth Spaulders","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32943","164717","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","11","7","0","0","0","0","0","0","0","60" +"18830","-1","","","","","Grand Marshal's Sunderer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18831","-1","","","","","High Warlord's Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18832","-1","","","","","Brutality Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72832","364162","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","70","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","9","0","0","0","0","0","0","0","0","60" +"18833","-1","","","","","Grand Marshal's Bullseye","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18834","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18835","-1","","","","","High Warlord's Recurve","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18836","-1","","","","","Grand Marshal's Repeater","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","129","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18837","-1","","","","","High Warlord's Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","129","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"18838","-1","","","","","Grand Marshal's Dirk","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18839","-1","","","","","Combat Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"18840","-1","","","","","High Warlord's Razor","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","95","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18841","-1","","","","","Combat Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","41" +"18842","-1","","","","","Staff of Dominance","0.4","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97012","485061","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","70","-1","0","0","155","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","14","0","0","0","0","0","0","0","60" +"18843","-1","","","","","Grand Marshal's Right Hand Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18844","-1","","","","","High Warlord's Right Claw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18845","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18846","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18847","-1","","","","","Grand Marshal's Left Hand Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18848","-1","","","","","High Warlord's Left Claw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18849","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18850","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18851","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18852","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18853","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18854","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18855","-1","","","","","Grand Marshal's Hand Cannon","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","129","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","7","0","0","0","0","0","0","0","0","0","60" +"18856","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18857","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18858","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18859","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18860","-1","","","","","High Warlord's Street Sweeper","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","129","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","7","0","0","0","0","0","0","0","0","0","60" +"18861","-1","","","","","Flamewaker Legplates","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48152","240763","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","694","0","11","0","0","11","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","18","0","0","0","0","0","0","0","0","56" +"18862","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18863","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18864","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"18865","-1","","","","","Grand Marshal's Punisher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18866","-1","","","","","High Warlord's Bludgeon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"18867","-1","","","","","Grand Marshal's Battle Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18868","-1","","","","","High Warlord's Pulverizer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18869","-1","","","","","Grand Marshal's Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18870","-1","","","","","Helm of the Lifegiver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30139","150697","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","14","9","0","0","0","0","0","0","0","57" +"18871","-1","","","","","High Warlord's Pig Sticker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18872","-1","","","","","Manastorm Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27356","136783","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","19","14","0","0","0","0","0","0","0","0","58" +"18873","-1","","","","","Grand Marshal's Stave","0.4","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","78","-1","0","0","185","0","0","0","0","279","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","23","17","0","0","0","0","0","0","0","60" +"18874","-1","","","","","High Warlord's War Staff","0.4","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","78","-1","0","0","185","0","0","0","0","279","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","23","17","0","0","0","0","0","0","0","60" +"18875","-1","","","","","Salamander Scale Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35039","175198","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","10","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","14","0","0","0","0","0","0","0","0","59" +"18876","-1","","","","","Grand Marshal's Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18877","-1","","","","","High Warlord's Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","26","0","0","0","0","0","0","0","0","60" +"18878","-1","","","","","Sorcerous Dagger","0.6","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","71794","358972","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","65","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","8","0","0","0","0","0","0","0","0","60" +"18879","-1","","","","","Heavy Dark Iron Ring","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53364","213456","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","0","0","0","0","0","0","0","0","0","60" +"18880","-1","","","","","Darkreaver's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18881","-1","","","","","TEST Ragnaros Hammer","0.5","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","162741","813705","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","180","0","0","0","0","302","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"18882","-1","","","","","TEST Level 80 Epic","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108875","544379","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","80","-1","0","0","218","0","0","0","0","328","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18902","1101","","","","","Reins of the Swift Stormsaber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"18904","-1","","","","","Zorbin's Ultra-Shrinker","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18922","-1","Keep away from Thorium Brotherhood.","","","","Secret Plans: Fiery Flux","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18942","-1","","","","","Fiery Flux","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18943","-1","","","","","Dark Iron Pillow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18944","-1","","","","","Incendosaur Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","123","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18945","-1","","","","","Dark Iron Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","100","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18946","-1","","","","","Head of Overseer Maltorius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18947","-1","","","","","Rage Scar Yeti Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18948","-1","","","","","Barbaric Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1589","7945","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","6","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","4","4","0","0","0","0","0","0","0","27" +"18949","-1","Teaches you how to craft Barbaric Bracers.","","","","Pattern: Barbaric Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","155","165","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18950","-1","This is one big pillow.","","","","Chambermaid Pillaclencher's Pillow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7704","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18951","-1","","","","","Evonice's Landin' Pilla","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18952","-1","","","","","Simone's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18953","-1","","","","","Klinfran's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18954","-1","","","","","Solenor's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18955","-1","","","","","Artorius's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18956","-1","","","","","Miniaturization Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18957","-1","","","","","Brushwood Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1250","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","10","-1","0","0","11","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"18958","-1","","","","","Water Elemental Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18959","-1","","","","","Smithing Tuyere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18960","-1","","","","","Lookout's Spyglass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18961","-1","","","","","Zukk'ash Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18962","-1","","","","","Stinglasher's Glands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18963","-1","","","","","Turtle Egg (Albino)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18964","-1","","","","","Turtle Egg (Loggerhead)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18965","-1","","","","","Turtle Egg (Hawksbill)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18966","-1","","","","","Turtle Egg (Leatherback)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18967","-1","","","","","Turtle Egg (Olive)","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"18968","-1","","","","","Ring of Critical Testing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18969","-1","","","","","Pristine Yeti Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7735","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18970","-1","","","","","Ring of Critical Testing 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18971","-1","","","","","Ring of Critical Testing 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18972","-1","","","","","Perfect Yeti Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7738","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"18982","-1","","","","","Ring of Critical Testing 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56012","224050","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"18983","-1","","","","","Monster - Sword, Longsword Exotic Black - Low Red Flame","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18984","-1","","","","","Dimensional Ripper - Everlook","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18985","-1","","","","","Monster - Sword, Long Silver - Green Pommel - High Black Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"18986","-1","","","","","Ultrasafe Transporter: Gadgetzan","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","202","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"18987","-1","A letter of command from Rend Blackhand.","","","","Blackhand's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7761","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"19002","-1","The head of Nefarian: Brood of Deathwing.","","","","Head of Nefarian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7783","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19003","-1","The head of Nefarian: Brood of Deathwing.","","","","Head of Nefarian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7781","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19004","-1","","","","","Minor Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19005","-1","","","","","Minor Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19006","-1","","","","","Lesser Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"19007","-1","","","","","Lesser Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","12" +"19008","-1","","","","","Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"19009","-1","","","","","Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","24" +"19010","-1","","","","","Greater Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"19011","-1","","","","","Greater Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","36" +"19012","-1","","","","","Major Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"19013","-1","","","","","Major Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","48" +"19014","-1","","","","","Monster - Item, 2H Horde Wood Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19015","-1","","","","","Monster - Item, 2H Alliance Wood Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19016","-1","","","","","Vessel of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7785","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"19017","-1","","","","","Essence of the Firelord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19018","-1","","","","","Dormant Wind Kissed Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7787","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"19019","-1","","","","","Thunderfury, Blessed Blade of the Windseeker","0.6","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","123140","615704","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","80","-1","0","0","82","16","0","0","0","153","30","0","0","0","0","0","8","9","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","5","8","0","0","0","0","0","0","0","0","60" +"19020","-1","","","","","Camp Mojache Zukk'ash Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19022","-1","Limited Edition","","","","Nat Pagle's Extreme Angler FC-5000","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28580","142900","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","100","356","50","-1","0","0","93","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19023","-1","","","","","Katoom's Best Lure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19024","-1","","","","","Arena Grand Master","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10031","40124","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","13","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","12","0","0","0","0","0","0","0","0","0","0" +"19025","-1","","","","","Skylord Plume","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19026","-1","","","","","Snake Burst Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19027","-1","Teaches you how to make a Snake Burst Firework.","","","","Schematic: Snake Burst Firework","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","202","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19028","-1","","","","","Elegant Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1078","5393","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19029","-1","","","","","Horn of the Frostwolf Howler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19030","-1","","","","","Stormpike Battle Charger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19031","-1","","","","","Frostwolf Battle Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19032","-1","","","","","Stormpike Battle Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19033","-1","","","","","Slagtree's Lost Tools","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19034","-1","","","","","Lard's Lunch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19035","-1","","","","","Lard's Special Picnic Basket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19036","-1","","","","","Final Message to the Wildhammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19037","-1","","","","","Emerald Peak Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10266","51333","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","6","10","7","0","0","0","0","0","0","0","0" +"19038","-1","","","","","Ring of Subtlety","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11145","44581","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19039","-1","","","","","Zorbin's Water Resistant Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7403","37019","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","9","8","0","0","0","0","0","0","0","0" +"19040","-1","","","","","Zorbin's Mega-Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19817","99086","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","48","-1","0","0","46","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","5","0","0","0","0","0","0","0","0","0" +"19041","-1","","","","","Pratt's Handcrafted Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9946","49732","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","6","0","0","0","0","0","0","0","0" +"19042","-1","","","","","Jangdor's Handcrafted Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9984","49920","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","7","15","6","0","0","0","0","0","0","0","0" +"19043","-1","","","","","Heavy Timbermaw Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13291","66458","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","9","0","0","0","0","0","0","0","0","0","53" +"19044","-1","","","","","Might of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11116","55584","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","9","0","0","0","0","0","0","0","0","53" +"19045","-1","","","","","Stormpike Battle Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19046","-1","","","","","Frostwolf Battle Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19047","-1","","","","","Wisdom of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9232","46164","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","53" +"19048","-1","","","","","Heavy Timbermaw Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24376","121882","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","0","0","0","0","0","0","0","0","0","59" +"19049","-1","","","","","Timbermaw Brawlers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13531","67655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","59" +"19050","-1","","","","","Mantle of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16295","81478","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","0","0","0","0","0","0","0","0","0","59" +"19051","-1","","","","","Girdle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16483","82416","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","9","0","0","0","0","0","0","0","0","53" +"19052","-1","","","","","Dawn Treaders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17621","88105","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","0","0","0","0","0","0","0","0","0","53" +"19053","-1","","","","","Monster - Item, Orb - A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19054","-1","","","","","Red Dragon Orb","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19055","-1","","","","","Green Dragon Orb","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19056","-1","","","","","Argent Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12941","64705","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","4","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","7","0","0","0","0","0","0","0","0","53" +"19057","-1","","","","","Gloves of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17744","88723","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","59" +"19058","-1","","","","","Golden Mantle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18977","94885","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","0","0","0","0","0","0","0","0","0","59" +"19059","-1","","","","","Argent Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15238","76192","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","5","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","8","0","0","0","0","0","0","0","0","59" +"19060","-1","","","","","Warsong Gulch Enriched Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19061","-1","","","","","Warsong Gulch Iron Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19062","-1","","","","","Warsong Gulch Field Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19064","-1","","","","","Shackle Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19065","-1","","","","","Emerald Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17831","71324","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","8","0","0","0","0","0","0","0","0","0" +"19066","-1","","","","","Warsong Gulch Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19067","-1","","","","","Warsong Gulch Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19068","-1","","","","","Warsong Gulch Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19069","-1","","","","","Huntsman Malkhor's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19070","-1","","","","","Huntsman Malkhor's Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19071","-1","","","","","Vessel of Tainted Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19082","-1","","","","","Monster - Fire Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19083","-1","","","","","Frostwolf Legionnaire's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19084","-1","","","","","Stormpike Soldier's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19085","-1","","","","","Frostwolf Advisor's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19086","-1","","","","","Stormpike Sage's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","55" +"19087","-1","","","","","Frostwolf Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","8","18","0","0","0","0","0","0","0","55" +"19088","-1","","","","","Frostwolf Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","12","12","0","0","0","0","0","0","0","55" +"19089","-1","","","","","Frostwolf Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","15","11","0","0","0","0","0","0","0","55" +"19090","-1","","","","","Frostwolf Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","55" +"19091","-1","","","","","Stormpike Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","8","18","0","0","0","0","0","0","0","55" +"19092","-1","","","","","Stormpike Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","12","12","0","0","0","0","0","0","0","55" +"19093","-1","","","","","Stormpike Leather Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","15","11","0","0","0","0","0","0","0","55" +"19094","-1","","","","","Stormpike Cloth Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","5","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","11","0","0","0","0","0","0","0","0","55" +"19095","-1","","","","","Frostwolf Legionnaire's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"19096","-1","","","","","Frostwolf Advisor's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","55" +"19097","-1","","","","","Stormpike Soldier's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","55" +"19098","-1","","","","","Stormpike Sage's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","10","0","0","0","0","0","0","0","0","55" +"19099","-1","","","","","Glacial Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19100","-1","","","","","Electrified Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19101","-1","","","","","Whiteout Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","65","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","25","0","0","0","0","0","0","0","0","60" +"19102","-1","","","","","Crackling Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","65","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","25","0","0","0","0","0","0","0","0","60" +"19103","-1","","","","","Frostbite","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","60" +"19104","-1","","","","","Stormstrike Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","65","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","60" +"19105","-1","","","","","Frost Runed Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","58" +"19106","-1","","","","","Ice Barbed Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66021","330108","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","20","0","0","0","0","0","0","0","0" +"19107","-1","","","","","Bloodseeker","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39756","198784","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","7","8","0","0","0","0","0","0","0","0","0" +"19108","-1","","","","","Wand of Biting Cold","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39896","199484","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19109","-1","","","","","Deep Rooted Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33920","135681","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","58" +"19110","-1","","","","","Cold Forged Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","63","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19111","-1","","","","","Winteraxe Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22580","112901","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","6","20","0","0","0","0","0","0","0","58" +"19112","-1","","","","","Frozen Steel Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17650","88251","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","11","7","12","0","0","0","0","0","0","0","58" +"19113","-1","","","","","Yeti Hide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12583","62918","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","14","7","0","0","0","0","0","0","0","58" +"19114","-1","","","","","Highland Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18282","91414","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","51","-1","0","0","54","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","5","4","0","0","0","0","0","0","0","0","0" +"19115","-1","","","","","Flask of Forest Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11003","44012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","8","0","0","0","0","0","0","0","0","0","0" +"19116","-1","","","","","Greenleaf Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4590","22952","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","0","0","0","0","0","0","0","0","0","0" +"19117","-1","","","","","Laquered Wooden Plate Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16127","80637","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","10","0","0","0","0","0","0","0","0","0" +"19118","-1","","","","","Nature's Breath","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17344","86722","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","50","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","6","3","0","0","0","0","0","0","0","0","0" +"19119","-1","","","","","Owlbeast Hide Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5803","29015","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","8","8","0","0","0","0","0","0","0","0" +"19120","-1","","","","","Rune of the Guard Captain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16283","65132","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19121","-1","","","","","Deep Woodlands Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9007","45035","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","0" +"19122","-1","","","","","Woven Ivy Necklace DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21141","84564","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","9","10","6","0","0","0","0","0","0","0","0" +"19123","-1","","","","","Everwarm Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4114","20572","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","0","0","0","0","0","0","0","0","0","0" +"19124","-1","","","","","Slagplate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14453","72268","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","12","12","0","0","0","0","0","0","0","0","0" +"19125","-1","","","","","Seared Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6652","33261","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19126","-1","","","","","Slagplate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7833","39168","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19127","-1","","","","","Charred Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12258","61290","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","8","0","0","0","0","0","0","0","0","0" +"19128","-1","","","","","Seared Mail Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13358","66790","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","11","11","0","0","0","0","0","0","0","0" +"19129","-1","","","","","Everglowing Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8355","41775","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","11","11","0","0","0","0","0","0","0","0","0" +"19130","-1","","","","","Cold Snap","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54431","272157","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","70","-1","0","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","0","0","0","0","0","0","0","0","0","60" +"19131","-1","","","","","Snowblind Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21586","107931","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","10","0","0","0","0","0","0","0","0","60" +"19132","-1","","","","","Crystal Adorned Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21400","107000","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","14","13","0","0","0","0","0","0","0","0","60" +"19133","-1","","","","","Fel Infused Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29722","148614","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","0","0","0","0","0","0","0","0","0","60" +"19134","-1","","","","","Flayed Doomguard Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17969","89849","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","18","0","0","0","0","0","0","0","0","60" +"19135","-1","","","","","Blacklight Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14066","70331","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","8","11","0","0","0","0","0","0","0","60" +"19136","-1","","","","","Mana Igniting Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15029","75148","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19137","-1","","","","","Onslaught Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28803","144017","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","564","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","11","0","0","0","0","0","0","0","0","60" +"19138","-1","","","","","Band of Sulfuras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79853","319412","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","23","10","13","0","0","0","0","0","0","0","60" +"19139","-1","","","","","Fireguard Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28496","142482","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","182","0","22","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","0","0","0","0","0","0","0","0","0","60" +"19140","-1","","","","","Cauterizing Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19141","-1","","","","","Luffa","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16612","66451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19142","-1","","","","","Fire Runed Grimoire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18903","75615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","21","12","0","0","0","0","0","0","0","0","60" +"19143","-1","","","","","Flameguard Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27183","135917","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19144","-1","","","","","Sabatons of the Flamewalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34596","172980","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","11","0","0","0","0","0","0","0","0","60" +"19145","-1","","","","","Robe of Volatile Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29952","149763","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","15","10","10","0","0","0","0","0","0","0","60" +"19146","-1","","","","","Wristguards of Stability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18542","92714","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","8","0","0","0","0","0","0","0","0","60" +"19147","-1","","","","","Ring of Spell Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19148","-1","","","","","Dark Iron Helm","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35881","179408","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","695","0","35","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","0","0","0","0","0","0","0","0","0","60" +"19149","-1","","","","","Lava Belt","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17185","85928","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","26","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19150","-1","","","","","Sentinel Basic Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19151","-1","","","","","Sentinel Standard Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19152","-1","","","","","Sentinel Advanced Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19153","-1","","","","","Outrider Advanced Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19154","-1","","","","","Outrider Basic Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19155","-1","","","","","Outrider Standard Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19156","-1","","","","","Flarecore Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28236","141180","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","15","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","35","0","0","0","0","0","0","0","0","0","60" +"19157","-1","","","","","Chromatic Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22350","111754","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","318","0","5","5","5","5","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19158","-1","","","","","TEST Sulfuras, Hand of Ragnaros","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","157410","787054","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","180","0","0","0","0","302","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","12","12","0","0","0","0","0","0","0","0","60" +"19159","-1","","","","","Woven Ivy Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21141","84564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","51","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","10","6","0","0","0","0","0","0","0","0" +"19160","-1","","","","","Contest Winner's Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19162","-1","","","","","Corehound Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19474","97371","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","0","0","0","0","0","0","0","0","0","60" +"19163","-1","","","","","Molten Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19544","97720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","12","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","16","0","0","0","0","0","0","0","0","60" +"19164","-1","","","","","Dark Iron Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27616","138083","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","565","0","28","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19165","-1","","","","","Flarecore Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31491","157457","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","16","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","0","0","0","0","0","0","0","0","0","60" +"19166","-1","","","","","Black Amnesty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75133","375665","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","66","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19167","-1","","","","","Blackfury","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94248","471244","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","66","-1","0","0","105","0","0","0","0","158","0","0","0","0","0","0","10","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","15","0","0","0","0","0","0","0","0","60" +"19168","-1","","","","","Blackguard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71993","359967","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19169","-1","","","","","Nightfall","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90341","451706","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19170","-1","","","","","Ebon Hand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72552","362763","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","70","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","7","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19182","-1","","","","","Darkmoon Faire Prize Ticket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19183","-1","","","","","Hourglass Sand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19184","-1","","","","","3800 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67226","336133","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19185","-1","","","","","2100 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67466","337332","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19186","-1","","","","","2700 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67706","338530","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19187","-1","","","","","3200 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67939","339696","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","63","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19188","-1","","","","","2200 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61694","308470","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","63","-1","0","0","94","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19189","-1","","","","","2300 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61933","309669","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","63","-1","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19190","-1","","","","","2400 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62173","310867","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19191","-1","","","","","2500 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64123","320617","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19192","-1","","","","","2600 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64363","321816","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","63","-1","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19193","-1","","","","","2800 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64602","323014","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19194","-1","","","","","2900 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64842","324213","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19195","-1","","","","","3000 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65075","325379","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","129","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19196","-1","","","","","3100 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65315","326578","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","63","-1","0","0","133","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19197","-1","","","","","3300 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65555","327776","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","142","0","0","0","0","214","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19198","-1","","","","","3400 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65795","328975","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","63","-1","0","0","146","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19199","-1","","","","","3500 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66028","330141","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19200","-1","","","","","3600 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66267","331339","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","63","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19201","-1","","","","","3700 Test 2h Axe 63 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66507","332538","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","63","-1","0","0","159","0","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19202","-1","Teaches you how to make a Heavy Timbermaw Belt.","","","","Plans: Heavy Timbermaw Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19203","-1","Teaches you how to make a Girdle of the Dawn.","","","","Plans: Girdle of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","164","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19204","-1","Teaches you how to make Heavy Timbermaw Boots.","","","","Plans: Heavy Timbermaw Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19205","-1","Teaches you how to make Gloves of the Dawn.","","","","Plans: Gloves of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19206","-1","Teaches you how to make a Dark Iron Helm.","","","","Plans: Dark Iron Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19207","-1","Teaches you how to make Dark Iron Gauntlets.","","","","Plans: Dark Iron Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19208","-1","Teaches you how to make Black Amnesty.","","","","Plans: Black Amnesty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19209","-1","Teaches you how to make Blackfury.","","","","Plans: Blackfury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19210","-1","Teaches you how to make the Ebon Hand.","","","","Plans: Ebon Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19211","-1","Teaches you how to make Blackguard.","","","","Plans: Blackguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19212","-1","Teaches you how to make Nightfall.","","","","Plans: Nightfall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19213","-1","Proof of winning a battle in Warsong Gulch","","","","Silverwing Talisman of Merit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19214","-1","","","","","Monster - Staff, Wooden Handle Spiral Head Dark","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19215","-1","Teaches you how to sew the Wisdom of the Timbermaw.","","","","Pattern: Wisdom of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19216","-1","Teaches you how to sew Argent Boots.","","","","Pattern: Argent Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","197","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19217","-1","Teaches you how to sew Argent Shoulders.","","","","Pattern: Argent Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19218","-1","Teaches you how to sew a Mantle of the Timbermaw.","","","","Pattern: Mantle of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","197","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19219","-1","Teaches you how to sew a Flarecore Robe.","","","","Pattern: Flarecore Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19220","-1","Teaches you how to sew Flarecore Leggings.","","","","Pattern: Flarecore Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19221","-1","","","","","Darkmoon Special Reserve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19222","-1","","","","","Cheap Beer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19223","-1","","","","","Darkmoon Dog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"19224","-1","","","","","Red Hot Wings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"19225","-1","","","","","Deep Fried Candybar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"19226","-1","","","","","Fast Test Fist","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12077","60386","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","60","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"19227","-1","","","","","Ace of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19228","-1","Property of the Darkmoon Faire.","","","","Beasts Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7907","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19229","-1","Never eat beef with a tauren.","","","","Sayge's Fortune #1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19230","-1","","","","","Two of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19231","-1","","","","","Three of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19232","-1","","","","","Four of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19233","-1","","","","","Five of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19234","-1","","","","","Six of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19235","-1","","","","","Seven of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19236","-1","","","","","Eight of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19237","-1","The Forsaken are up to something.","","","","Sayge's Fortune #19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19238","-1","An enemy from your past will soon become an ally.","","","","Sayge's Fortune #3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19239","-1","You will be fortunate in everything you put your hands to.","","","","Sayge's Fortune #4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19240","-1","Someone is speaking well of you.","","","","Sayge's Fortune #5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19241","-1","Be cautious when landing in unfamiliar territory.","","","","Sayge's Fortune #6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19242","-1","Avoid taking unnecessary gambles.","","","","Sayge's Fortune #7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19243","-1","You will receive a fortune.","","","","Sayge's Fortune #8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19244","-1","Your first love and last love is self-love.","","","","Sayge's Fortune #9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19245","-1","Rest is a good thing, but boredom is its brother.","","","","Sayge's Fortune #10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19246","-1","Those with simple tastes are always satisfied with the best.","","","","Sayge's Fortune #11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19247","-1","Let not the tides of war wash you away.","","","","Sayge's Fortune #12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19248","-1","You leave your adversaries speechless.","","","","Sayge's Fortune #13","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19249","-1","You have a good eye for spotting hypocrisy.","","","","Sayge's Fortune #14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19250","-1","One learns most when teaching others.","","","","Sayge's Fortune #15","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19251","-1","The time will soon come for you to make a choice in a pressing matter.","","","","Sayge's Fortune #16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19252","-1","Accept the next proposition you hear.","","","","Sayge's Fortune #18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19253","-1","Never punt a gnome without due cause.","","","","Sayge's Fortune #17","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19254","-1","Divine Shields and Hearthstones do not make a hero heroic.","","","","Sayge's Fortune #21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19255","-1","An answer in blue is always true.","","","","Sayge's Fortune #22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19256","-1","You will find something wonderful tomorrow.","","","","Sayge's Fortune #2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19257","-1","Property of the Darkmoon Faire.","","","","Warlords Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7928","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19258","-1","","","","","Ace of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19259","-1","","","","","Two of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19260","-1","","","","","Three of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19261","-1","","","","","Four of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19262","-1","","","","","Five of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19263","-1","","","","","Six of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19264","-1","","","","","Seven of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19265","-1","","","","","Eight of Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19266","-1","Many a false step is made by standing still.","","","","Sayge's Fortune #20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19267","-1","Property of the Darkmoon Faire.","","","","Elementals Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7929","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19268","-1","","","","","Ace of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19269","-1","","","","","Two of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19270","-1","","","","","Three of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19271","-1","","","","","Four of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19272","-1","","","","","Five of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19273","-1","","","","","Six of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19274","-1","","","","","Seven of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19275","-1","","","","","Eight of Elementals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19276","-1","","","","","Ace of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19277","-1","Property of the Darkmoon Faire.","","","","Portals Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7927","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19278","-1","","","","","Two of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19279","-1","","","","","Three of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19280","-1","","","","","Four of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19281","-1","","","","","Five of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19282","-1","","","","","Six of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19283","-1","","","","","Seven of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19284","-1","","","","","Eight of Portals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19286","-1","","","","","Fast Test Ammo","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","10","4000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","45","-1","0","0","8","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19287","-1","","","","","Darkmoon Card: Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19288","-1","","","","","Darkmoon Card: Blue Dragon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19289","-1","","","","","Darkmoon Card: Maelstrom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19290","-1","","","","","Darkmoon Card: Twisting Nether","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19291","-1","","","","","Darkmoon Storage Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","14","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19292","-1","","","","","Last Month's Mutton","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4022","20113","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","34","-1","0","0","29","0","0","0","0","54","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","29" +"19293","-1","","","","","Last Year's Mutton","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19376","96881","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","55","-1","0","0","44","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","50" +"19295","-1","","","","","Darkmoon Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19296","-1","Guaranteed to contain an item of value!","","","","Greater Darkmoon Prize","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","45" +"19297","-1","Guaranteed to contain an item of value!","","","","Lesser Darkmoon Prize","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110","440","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","30" +"19298","-1","Guaranteed to contain an item of value!","","","","Minor Darkmoon Prize","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","15" +"19299","-1","","","","","Fizzy Faire Drink","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"19300","-1","","","","","Bottled Winterspring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19301","-1","","","","","Alterac Manna Biscuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","350","7000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","51" +"19302","-1","","","","","Darkmoon Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","50" +"19303","-1","","","","","Darkmoon Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","0","0","0","0","0","0","0","0","0","50" +"19304","-1","","","","","Spiced Beef Jerky","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"19305","-1","","","","","Pickled Kodo Foot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"19306","-1","","","","","Crunchy Frog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"19307","-1","May only be used in Alterac Valley.","","","","Alterac Heavy Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","100","8000","20","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19308","-1","","","","","Tome of Arcane Domination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19309","-1","","","","","Tome of Shadow Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","8","0","0","0","0","0","0","0","0","0","60" +"19310","-1","","","","","Tome of the Ice Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19311","-1","","","","","Tome of Fiery Arcana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19312","-1","","","","","Lei of the Lifegiver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19313","-1","","","","","1300 Test Dagger 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53014","265071","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","37","0","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19314","-1","","","","","2000 Test Dagger 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53206","266030","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19315","-1","","","","","Therazane's Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19316","-1","","","","","Ice Threaded Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","6000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","16","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","51" +"19317","-1","","","","","Ice Threaded Bullet","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","7","6000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","54","-1","0","0","16","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","51" +"19318","-1","From the mountain springs of Alterac!","","","","Bottled Alterac Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"19319","-1","","","","","Harpy Hide Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","55" +"19320","-1","","","","","Gnoll Skin Bandolier","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","55" +"19321","-1","","","","","The Immovable Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2836","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19322","-1","Proof of winning a battle in Warsong Gulch","","","","zzDEPRECATED Warsong Mark of Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19323","-1","","","","","The Unstoppable Force","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","65","-1","0","0","175","0","0","0","0","292","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","19","15","0","0","0","0","0","0","0","0","60" +"19324","-1","","","","","The Lobotomizer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19325","-1","","","","","Don Julio's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","0","0","0","0","0","0","0","0","0","60" +"19326","-1","Teaches you how to craft the Might of the Timbermaw.","","","","Pattern: Might of the Timbermaw","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19327","-1","Teaches you how to craft Timbermaw Brawlers.","","","","Pattern: Timbermaw Brawlers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","300","165","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19328","-1","Teaches you how to craft Dawn Treaders.","","","","Pattern: Dawn Treaders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","165","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19329","-1","Teaches you how to craft a Golden Mantle of the Dawn.","","","","Pattern: Golden Mantle of the Dawn","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19330","-1","Teaches you how to craft a Lava Belt.","","","","Pattern: Lava Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19331","-1","Teaches you how to craft Chromatic Gauntlets.","","","","Pattern: Chromatic Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19332","-1","Teaches you how to craft a Corehound Belt.","","","","Pattern: Corehound Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19333","-1","Teaches you how to craft a Molten Belt.","","","","Pattern: Molten Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19334","-1","","","","","The Untamed Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100551","502757","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","73","-1","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","16","0","0","0","0","0","0","0","0","60" +"19335","-1","","","","","Spineshatter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80731","403656","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","73","-1","0","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","9","0","0","0","0","0","0","0","0","60" +"19336","-1","","","","","Arcane Infused Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19337","-1","","","","","The Black Book","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19338","-1","","","","","Free Ticket Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19339","-1","","","","","Mind Quickening Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19340","-1","","","","","Rune of Metamorphosis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19341","-1","","","","","Lifegiving Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19342","-1","","","","","Venomous Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19343","-1","","","","","Scrolls of Blinding Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19344","-1","","","","","Natural Alignment Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19345","-1","","","","","Aegis of Preservation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72039","288156","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19346","-1","","","","","Dragonfang Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79053","395266","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","74","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","13","0","0","0","0","0","0","0","0","60" +"19347","-1","","","","","Claw of Chromaggus","0.6","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","82129","410645","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","77","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","7","0","0","0","0","0","0","0","0","60" +"19348","-1","","","","","Red Dragonscale Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50969","254848","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","3204","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","17","6","6","0","0","0","0","0","0","0","60" +"19349","-1","","","","","Elementium Reinforced Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52946","264730","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","3325","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","23","0","0","0","0","0","0","0","0","0","60" +"19350","-1","","","","","Heartstriker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60867","304337","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","-1","0","0","97","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","9","0","0","0","0","0","0","0","0","0","60" +"19351","-1","","","","","Maladath, Runed Blade of the Black Flight","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81453","407267","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","75","-1","0","0","86","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"19352","-1","","","","","Chromatically Tempered Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85814","429072","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","77","-1","0","0","106","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","14","7","0","0","0","0","0","0","0","60" +"19353","-1","","","","","Drake Talon Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105206","526031","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","75","-1","0","0","199","0","0","0","0","300","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","17","0","0","0","0","0","0","0","0","60" +"19354","-1","","","","","Draconic Avenger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91123","455619","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","71","-1","0","0","174","0","0","0","0","262","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","21","18","0","0","0","0","0","0","0","0","60" +"19355","-1","","","","","Shadow Wing Focus Staff","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95910","479550","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","40","22","17","0","0","0","0","0","0","0","60" +"19356","-1","","","","","Staff of the Shadow Flame","0.4","0","-21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102955","514777","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","81","-1","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","29","24","18","0","0","0","0","0","0","0","60" +"19357","-1","","","","","Herald of Woe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96642","483211","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","75","-1","0","0","199","0","0","0","0","300","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","20","17","22","0","0","0","0","0","0","60" +"19358","-1","","","","","Draconic Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91409","457045","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","27","19","0","0","0","0","0","0","0","0","60" +"19360","-1","The Hand of Nefarius","","","","Lok'amir il Romathis","0.6","0","-21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83625","418127","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","81","-1","0","0","92","0","0","0","0","172","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","18","8","10","0","0","0","0","0","0","0","60" +"19361","-1","","","","","Ashjre'thul, Crossbow of Smiting","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60230","301150","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","77","-1","0","0","149","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","0","0","0","0","0","0","0","0","0","60" +"19362","-1","","","","","Doom's Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74238","371192","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","70","-1","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","9","7","0","0","0","0","0","0","0","60" +"19363","-1","","","","","Crul'shorukh, Edge of Chaos","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84569","422845","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","81","-1","0","0","101","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19364","-1","The initials A.L. are etched on the hilt.","","","","Ashkandi, Greatsword of the Brotherhood","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106097","530487","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","0","0","229","0","0","0","0","344","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","0","0","0","0","0","0","0","0","0","60" +"19365","-1","","","","","Claw of the Black Drake","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79672","398362","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","7","0","0","0","0","0","0","0","0","60" +"19366","-1","","","","","Master Dragonslayer's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"19367","-1","","","","","Dragon's Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60199","300997","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","75","-1","0","0","107","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","12","7","0","0","0","0","0","0","0","0","60" +"19368","-1","","","","","Dragonbreath Hand Cannon","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62010","310053","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","75","-1","0","0","104","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","14","7","0","0","0","0","0","0","0","0","60" +"19369","-1","","","","","Gloves of Rapid Evolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16212","81060","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","32","12","0","0","0","0","0","0","0","60" +"19370","-1","","","","","Mantle of the Blackwing Cabal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24405","122025","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","12","0","0","0","0","0","0","0","0","60" +"19371","-1","","","","","Pendant of the Fallen Dragon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19372","-1","","","","","Helm of Endless Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43435","217175","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","26","29","0","0","0","0","0","0","0","60" +"19373","-1","","","","","Black Brood Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38038","190194","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","15","12","0","0","0","0","0","0","0","60" +"19374","-1","","","","","Bracers of Arcane Accuracy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15284","76423","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19375","-1","","","","","Mish'undare, Circlet of the Mind Flayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25143","125716","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","9","15","0","0","0","0","0","0","0","60" +"19376","-1","","","","","Archimtiros' Ring of Reckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111528","446112","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","28","0","0","0","0","0","0","0","0","60" +"19377","-1","","","","","Prestor's Talisman of Connivery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105328","421315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","25","0","0","0","0","0","0","0","0","0","60" +"19378","-1","The threading is unlike anything you have ever seen. It appears metallic in origin.","","","","Cloak of the Brood Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25432","127162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","10","0","0","0","0","0","0","0","0","60" +"19379","-1","A silver liquid flows within the impenetrable ebony shell. The item feels pure. It radiates an essence of extreme power.","","","","Neltharion's Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205863","823454","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19380","-1","The metal is warm to the touch. The links connecting the belt together appear to be fashioned out of Elementium.","","","","Therazane's Link","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25624","128122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","12","22","0","0","0","0","0","0","0","60" +"19381","-1","","","","","Boots of the Shadow Flame","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32152","160761","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","0","0","0","0","0","0","0","0","0","60" +"19382","-1","Flawless. Indestructible. You cannot comprehend the craftsmanship involved with the creation of this ring.","","","","Pure Elementium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128280","513121","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","10","9","0","0","0","0","0","0","0","60" +"19383","-1","","","","","Master Dragonslayer's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128862","515451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","24","0","0","0","0","0","0","0","0","60" +"19384","-1","","","","","Master Dragonslayer's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","130616","522464","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","0","0","0","0","0","0","0","0","0","60" +"19385","-1","","","","","Empowered Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33472","167360","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","24","12","0","0","0","0","0","0","0","60" +"19386","-1","","","","","Elementium Threaded Cloak","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25195","125976","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19387","-1","","","","","Chromatic Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44162","220812","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","20","19","0","0","0","0","0","0","0","60" +"19388","-1","","","","","Angelista's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16916","84583","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","13","17","0","0","0","0","0","0","0","60" +"19389","-1","The hides of several different dragon flights appear to be stitched together, comprising the top of the shoulders.","","","","Taut Dragonhide Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31832","159162","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","0","0","0","0","0","0","0","0","0","60" +"19390","-1","A cold chill passes through your spine as you place your hands on these gloves. They appear to be made from the skin of whelplings - a lot of whelplings.","","","","Taut Dragonhide Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21297","106488","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","0","0","0","0","0","0","0","0","60" +"19391","-1","","","","","Shimmering Geta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25645","128229","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","13","0","0","0","0","0","0","0","0","60" +"19392","-1","","","","","Girdle of the Fallen Crusader","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30198","150990","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","15","17","13","10","0","0","0","0","0","60" +"19393","-1","","","","","Primalist's Linked Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25828","129140","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","16","15","13","0","0","0","0","0","0","60" +"19394","-1","","","","","Drake Talon Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40037","200186","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","20","17","0","0","0","0","0","0","0","60" +"19395","-1","","","","","Rejuvenating Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103103","412413","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19396","-1","The flesh from different dragon flights has been sewn together to make this belt.","","","","Taut Dragonhide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19250","96251","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","0","0","0","0","0","0","0","0","0","60" +"19397","-1","","","","","Ring of Blackrock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107438","429754","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19398","-1","","","","","Cloak of Firemaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23275","116379","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"19399","-1","","","","","Black Ash Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31153","155766","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","17","21","0","0","0","0","0","0","0","60" +"19400","-1","","","","","Firemaw's Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16061","80306","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","12","0","0","0","0","0","0","0","0","60" +"19401","-1","","","","","Primalist's Linked Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48361","241809","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","12","22","0","0","0","0","0","0","0","60" +"19402","-1","","","","","Legguards of the Fallen Crusader","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56624","283121","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","845","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","22","17","22","0","0","0","0","0","0","60" +"19403","-1","","","","","Band of Forced Concentration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105328","421312","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","9","0","0","0","0","0","0","0","0","60" +"19404","-1","","","","","Monster - Mace, The Hand of Nefarius","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19405","-1","","","","","Malfurion's Blessed Bulwark","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40891","204455","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","22","0","0","0","0","0","0","0","0","60" +"19406","-1","","","","","Drake Fang Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19407","-1","","","","","Ebony Flame Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16473","82368","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","17","0","0","0","0","0","0","0","0","60" +"19422","-1","","","","","Darkmoon Faire Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19423","-1","Your fortune awaits you in Eastvale.","","","","Sayge's Fortune #23","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7937","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19424","-1","Your fortune awaits you inside the Deadmines.","","","","Sayge's Fortune #24","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7938","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19425","-1","","","","","Mysterious Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19426","-1","","","","","Orb of the Darkmoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19427","-1","","","","","1500 Test sword 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53206","266030","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","63","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19428","-1","","","","","2900 Test sword 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53392","266963","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","84","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19430","-1","","","","","Shroud of Pure Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24972","124863","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","10","0","0","0","0","0","0","0","0","60" +"19431","-1","","","","","Styleen's Impeding Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103117","412471","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19432","-1","","","","","Circle of Applied Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147286","589145","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","22","9","0","0","0","0","0","0","0","60" +"19433","-1","","","","","Emberweave Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46932","234661","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","476","0","35","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","17","12","0","0","0","0","0","0","0","60" +"19434","-1","","","","","Band of Dark Dominion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80863","323454","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","12","0","0","0","0","0","0","0","0","60" +"19435","-1","","","","","Essence Gatherer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55695","278479","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","70","-1","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","5","0","0","0","0","0","0","0","0","60" +"19436","-1","","","","","Cloak of Draconic Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22359","111799","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","16","4","0","0","0","0","0","0","0","60" +"19437","-1","","","","","Boots of Pure Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22443","112219","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","12","8","0","0","0","0","0","0","0","60" +"19438","-1","","","","","Ringo's Blizzard Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22804","114020","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","11","0","0","0","0","0","0","0","0","60" +"19439","-1","","","","","Interlaced Shadow Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38148","190741","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","30","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","0","0","0","0","0","0","0","0","0","60" +"19440","-1","","","","","Powerful Anti-Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19441","-1","","","","","Huge Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19442","-1","Teaches you how to make Powerful Anti-Venom.","","","","Formula: Powerful Anti-Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","129","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19443","-1","Your fortune awaits you inside Wailing Caverns.","","","","Sayge's Fortune #25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7944","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19444","-1","Teaches you how to permanently enchant a weapon to increase your strength by 15.","","","","Formula: Enchant Weapon - Strength","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19445","-1","Teaches you how to permanently enchant a weapon to increase your agility by 15.","","","","Formula: Enchant Weapon - Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19446","-1","Teaches you how to permanently enchant a bracer to restore 4 mana every 5 seconds.","","","","Formula: Enchant Bracer - Mana Regeneration","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19447","-1","Teaches you how to permanently enchant a bracer to increase the effects of healing spells by 24 and damage spells by 8.","","","","Formula: Enchant Bracer - Healing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","333","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19448","-1","Teaches you how to permanently enchant a weapon to increase your spirit by 20.","","","","Formula: Enchant Weapon - Mighty Spirit","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19449","-1","Teaches you how to permanently enchant a weapon to increase your intellect by 22.","","","","Formula: Enchant Weapon - Mighty Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19450","-1","","","","","A Jubling's Tiny Home","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19451","-1","Time is nothing; timing is everything.","","","","Sayge's Fortune #26","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19452","-1","Your fortune awaits you outside Palemane Rock.","","","","Sayge's Fortune #27","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7945","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"19453","-1","Hunters who specialize in survival are not guaranteed to survive.","","","","Sayge's Fortune #28","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19454","-1","Look out!","","","","Sayge's Fortune #29","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19455","-1","","","","","3500 Test 2h Axe 70 purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92807","464037","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","70","-1","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19456","-1","","","","","2900 Test sword 80 purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83663","418319","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","80","-1","0","0","125","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19457","-1","","","","","1500 Test sword 80 purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83977","419889","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","80","-1","0","0","64","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19462","-1","","","","","Unhatched Jubling Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19482","-1","","","","","LeCraft Rabbit Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19483","-1","The How to Guide On Dismantling the Stormpike - By Drek'Thar","","","","Peeling the Onion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2771","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19484","-1","Tales of Stormpike Glory - By Vanndar Stormpike","","","","The Frostwolf Artichoke","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2779","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19485","-1","","","","","Monster - Item, Fish - Blue Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19486","-1","","","","","Monster - Item, Fish - Green Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19487","-1","","","","","Monster - Item, Fish - Orange Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19488","-1","","","","","Monster - Item, Fish - Purple Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19489","-1","","","","","3300 Test Crossbow 63 blue","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37311","186559","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","63","-1","0","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","0","0","0","0","0","0","0","0","0","0","60" +"19490","-1","","","","","2800 Test Bow 63 Blue","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37455","187278","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","63","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","60" +"19491","-1","","","","","Amulet of the Darkmoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","10","10","0","0","0","0","0","0","0","60" +"19502","-1","","","","","2200 Test sword 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53600","268000","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","63","-1","0","0","63","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19503","-1","","","","","2200 Test sword 80 purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88076","440383","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","80","-1","0","0","95","0","0","0","0","177","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19504","-1","","","","","2200 Test sword 70 purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78728","393643","1","1","1","16","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","70","-1","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19505","-1","","","","","Warsong Battle Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19506","-1","","","","","Silverwing Battle Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19507","-1","","","","","Inquisitor's Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1701","8507","1","0.5","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","0","0","0","0","0","0","0","0","0","36" +"19508","-1","","","","","Branded Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1423","7116","1","0.5","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","4","0","0","0","0","0","0","0","0","0","36" +"19509","-1","","","","","Dusty Mail Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2583","12917","1","0.5","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","0","0","0","0","0","0","0","0","0","36" +"19510","-1","","","","","Legionnaire's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","11","8","0","0","0","0","0","0","0","58" +"19511","-1","","","","","Legionnaire's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","9","6","0","0","0","0","0","0","0","48" +"19512","-1","","","","","Legionnaire's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","5","0","0","0","0","0","0","0","38" +"19513","-1","","","","","Legionnaire's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","28" +"19514","-1","","","","","Protector's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","11","8","0","0","0","0","0","0","0","58" +"19515","-1","","","","","Protector's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","5","0","0","0","0","0","0","0","38" +"19516","-1","","","","","Protector's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","9","6","0","0","0","0","0","0","0","48" +"19517","-1","","","","","Protector's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","6","4","0","0","0","0","0","0","0","28" +"19518","-1","","","","","Advisor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","58" +"19519","-1","","","","","Advisor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","48" +"19520","-1","","","","","Advisor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","38" +"19521","-1","","","","","Advisor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","28" +"19522","-1","","","","","Lorekeeper's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","58" +"19523","-1","","","","","Lorekeeper's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","48" +"19524","-1","","","","","Lorekeeper's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","38" +"19525","-1","","","","","Lorekeeper's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","0","0","0","0","0","0","0","0","0","28" +"19526","-1","","","","","Battle Healer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","8","0","0","0","0","0","0","0","0","58" +"19527","-1","","","","","Battle Healer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","48" +"19528","-1","","","","","Battle Healer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","38" +"19529","-1","","","","","Battle Healer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","4","0","0","0","0","0","0","0","0","28" +"19530","-1","","","","","Caretaker's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","8","0","0","0","0","0","0","0","0","58" +"19531","-1","","","","","Caretaker's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","6","0","0","0","0","0","0","0","0","48" +"19532","-1","","","","","Caretaker's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","38" +"19533","-1","","","","","Caretaker's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","4","0","0","0","0","0","0","0","0","28" +"19534","-1","","","","","Scout's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","58" +"19535","-1","","","","","Scout's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","8","0","0","0","0","0","0","0","0","48" +"19536","-1","","","","","Scout's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","7","0","0","0","0","0","0","0","0","38" +"19537","-1","","","","","Scout's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","28" +"19538","-1","","","","","Sentinel's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","58" +"19539","-1","","","","","Sentinel's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","8","0","0","0","0","0","0","0","0","48" +"19540","-1","","","","","Sentinel's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","11","7","0","0","0","0","0","0","0","0","38" +"19541","-1","","","","","Sentinel's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","5","0","0","0","0","0","0","0","0","28" +"19542","-1","","","","","Scout's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19543","-1","","","","","Scout's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19544","-1","","","","","Scout's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","43","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19545","-1","","","","","Scout's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19546","-1","","","","","Sentinel's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","63","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19547","-1","","","","","Sentinel's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","53","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19548","-1","","","","","Sentinel's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","43","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19549","-1","","","","","Sentinel's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","33","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19550","-1","","","","","Legionnaire's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19551","-1","","","","","Legionnaire's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19552","-1","","","","","Legionnaire's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","43","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19553","-1","","","","","Legionnaire's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19554","-1","","","","","Protector's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","5","0","0","0","0","0","0","0","0","58" +"19555","-1","","","","","Protector's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","53","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","5","0","0","0","0","0","0","0","0","48" +"19556","-1","","","","","Protector's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","43","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","3","0","0","0","0","0","0","0","0","38" +"19557","-1","","","","","Protector's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","33","-1","0","0","40","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","3","0","0","0","0","0","0","0","0","28" +"19558","-1","","","","","Outrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"19559","-1","","","","","Outrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","3","0","0","0","0","0","0","0","0","48" +"19560","-1","","","","","Outrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","3","0","0","0","0","0","0","0","0","38" +"19561","-1","","","","","Outrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","33","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","28" +"19562","-1","","","","","Outrunner's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","63","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","58" +"19563","-1","","","","","Outrunner's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","53","-1","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","8","3","0","0","0","0","0","0","0","0","48" +"19564","-1","","","","","Outrunner's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","43","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","3","0","0","0","0","0","0","0","0","38" +"19565","-1","","","","","Outrunner's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","33","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","28" +"19566","-1","","","","","Advisor's Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","0","0","0","0","0","0","0","0","58" +"19567","-1","","","","","Advisor's Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","11","0","0","0","0","0","0","0","0","48" +"19568","-1","","","","","Advisor's Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","9","0","0","0","0","0","0","0","0","38" +"19569","-1","","","","","Advisor's Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","7","0","0","0","0","0","0","0","0","28" +"19570","-1","","","","","Lorekeeper's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","63","-1","0","0","125","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","21","13","0","0","0","0","0","0","0","0","58" +"19571","-1","","","","","Lorekeeper's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","53","-1","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","18","11","0","0","0","0","0","0","0","0","48" +"19572","-1","","","","","Lorekeeper's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","43","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","9","0","0","0","0","0","0","0","0","38" +"19573","-1","","","","","Lorekeeper's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","33","-1","0","0","64","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","7","0","0","0","0","0","0","0","0","28" +"19574","-1","","","","","Strength of Mugamba","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","7","0","0","0","0","0","0","0","0","0" +"19575","-1","","","","","Strength of Mugamba","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","7","10","0","0","0","0","0","0","0","0" +"19576","-1","","","","","Strength of Mugamba","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","13","0","0","0","0","0","0","0","0" +"19577","-1","","","","","Rage of Mugamba","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","15","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","8","13","10","0","0","0","0","0","0","0" +"19578","-1","","","","","Berserker Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","368","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","8","11","0","0","0","0","0","0","0","60" +"19579","-1","","","","","Heathen's Brand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19580","-1","","","","","Berserker Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","7","9","0","0","0","0","0","0","0","50" +"19581","-1","","","","","Berserker Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","6","8","0","0","0","0","0","0","0","40" +"19582","-1","","","","","Windtalker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","7","8","0","0","0","0","0","0","0","60" +"19583","-1","","","","","Windtalker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","6","7","0","0","0","0","0","0","0","50" +"19584","-1","","","","","Windtalker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","5","6","0","0","0","0","0","0","0","40" +"19585","-1","","","","","Heathen's Brand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","6","7","8","0","0","0","0","0","0","0" +"19586","-1","","","","","Heathen's Brand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","9","10","0","0","0","0","0","0","0" +"19587","-1","","","","","Forest Stalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","11","8","0","0","0","0","0","0","0","60" +"19588","-1","","","","","Hero's Brand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","6","9","10","0","0","0","0","0","0","0" +"19589","-1","","","","","Forest Stalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","9","7","0","0","0","0","0","0","0","50" +"19590","-1","","","","","Forest Stalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","8","6","0","0","0","0","0","0","0","40" +"19591","-1","","","","","The Eye of Zuldazar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","10","6","0","0","0","0","0","0","0","0" +"19592","-1","","","","","The Eye of Zuldazar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","10","6","0","0","0","0","0","0","0","0" +"19593","-1","","","","","The Eye of Zuldazar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","13","8","0","0","0","0","0","0","0","0" +"19594","-1","","","","","The All-Seeing Eye of Zuldazar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","13","8","0","0","0","0","0","0","0","0" +"19595","-1","","","","","Dryad's Wrist Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","8","7","8","0","0","0","0","0","0","0","60" +"19596","-1","","","","","Dryad's Wrist Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","6","7","0","0","0","0","0","0","0","50" +"19597","-1","","","","","Dryad's Wrist Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","6","5","6","0","0","0","0","0","0","0","40" +"19598","-1","","","","","Pebble of Kajaro","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","7","0","0","0","0","0","0","0","0","0" +"19599","-1","","","","","Pebble of Kajaro","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","7","0","0","0","0","0","0","0","0" +"19600","-1","","","","","Pebble of Kajaro","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","8","8","0","0","0","0","0","0","0","0" +"19601","-1","","","","","Jewel of Kajaro","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","8","8","0","0","0","0","0","0","0","0" +"19602","-1","","","","","Kezan's Taint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","0" +"19603","-1","","","","","Kezan's Taint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","6","0","0","0","0","0","0","0","0","0" +"19604","-1","","","","","Kezan's Taint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","8","0","0","0","0","0","0","0","0","0" +"19605","-1","","","","","Kezan's Unstoppable Taint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","8","0","0","0","0","0","0","0","0","0" +"19606","-1","","","","","Vision of Voodress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19607","-1","","","","","Vision of Voodress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","8","7","8","0","0","0","0","0","0","0" +"19608","-1","","","","","Vision of Voodress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","10","9","10","0","0","0","0","0","0","0" +"19609","-1","","","","","Unmarred Vision of Voodress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","10","9","10","0","0","0","0","0","0","0" +"19610","-1","","","","","Enchanted South Seas Kelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","8","7","8","0","0","0","0","0","0","0","0" +"19611","-1","","","","","Enchanted South Seas Kelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","8","7","8","0","0","0","0","0","0","0" +"19612","-1","","","","","Enchanted South Seas Kelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","10","9","10","0","0","0","0","0","0","0" +"19613","-1","","","","","Pristine Enchanted South Seas Kelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","10","9","10","0","0","0","0","0","0","0" +"19614","-1","","","","","Zandalarian Shadow Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19615","-1","","","","","Zandalarian Shadow Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","6","7","0","0","0","0","0","0","0","0" +"19616","-1","","","","","Zandalarian Shadow Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","6","9","0","0","0","0","0","0","0","0" +"19617","-1","","","","","Zandalarian Shadow Mastery Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","15","6","9","0","0","0","0","0","0","0","0" +"19618","-1","","","","","Maelstrom's Tendril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"19619","-1","","","","","Maelstrom's Tendril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","6","7","0","0","0","0","0","0","0","0" +"19620","-1","","","","","Maelstrom's Tendril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","6","9","0","0","0","0","0","0","0","0" +"19621","-1","","","","","Maelstrom's Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","6","9","0","0","0","0","0","0","0","0" +"19622","-1","","","","","1800 Test Dagger 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49744","248720","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","63","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19623","-1","","","","","Monster - Mace2H, Horde B01/B01 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19642","-1","Return to the iCoke redemption vendor to receive a virtual prize","","","","iCoke Prize Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19662","-1","","","","","3500 Test 2h Axe 80 purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104590","522952","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","80","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19682","-1","","","","","Bloodvine Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20986","104934","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","0","0","0","0","0","0","0","0","0","60" +"19683","-1","","","","","Bloodvine Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21065","105328","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","6","0","0","0","0","0","0","0","0","0","60" +"19684","-1","","","","","Bloodvine Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15856","79283","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","0","0","0","0","0","0","0","0","0","60" +"19685","-1","","","","","Primal Batskin Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26526","132632","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","32","6","0","0","0","0","0","0","0","0","60" +"19686","-1","","","","","Primal Batskin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13312","66562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","60" +"19687","-1","","","","","Primal Batskin Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13361","66808","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","7","0","0","0","0","0","0","0","0","60" +"19688","-1","","","","","Blood Tiger Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26819","134095","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","17","16","13","0","0","0","0","0","0","60" +"19689","-1","","","","","Blood Tiger Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20188","100940","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","13","12","10","0","0","0","0","0","0","60" +"19690","-1","","","","","Bloodsoul Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33265","166327","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","9","0","0","0","0","0","0","0","0","60" +"19691","-1","","","","","Bloodsoul Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25148","125744","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","10","0","0","0","0","0","0","0","0","60" +"19692","-1","","","","","Bloodsoul Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16749","83746","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","10","0","0","0","0","0","0","0","0","60" +"19693","-1","","","","","Darksoul Breastplate","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35490","177452","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","676","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","32","0","0","0","0","0","0","0","0","0","60" +"19694","-1","","","","","Darksoul Leggings","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35628","178141","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","592","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"19695","-1","","","","","Darksoul Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26773","133867","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","0","0","0","0","0","0","0","0","0","60" +"19696","-1","","","","","Harvest Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19697","-1","","","","","Bounty of the Harvest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19698","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Zulian Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19699","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Razzashi Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19700","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Hakkari Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19701","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Gurubashi Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19702","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Vilebranch Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19703","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Witherbark Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19704","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Sandfury Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19705","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Skullsplitter Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19706","-1","One of the lesser Paragons of Power from the Gurubashi Empire.","","","","Bloodscalp Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19707","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Red Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19708","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Blue Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19709","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Yellow Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19710","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Orange Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19711","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Green Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19712","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Purple Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19713","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Bronze Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19714","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Silver Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19715","-1","A significant Paragon of Power from the Gurubashi Empire.","","","","Gold Hakkari Bijou","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19716","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19717","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Armsplint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19718","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Stanchion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19719","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19720","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19721","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","134","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19722","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1090","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19723","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Kossack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","385","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19724","-1","A legendary Paragon of Power from the old Gurubashi Empire.","","","","Primal Hakkari Aegis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","28","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19725","-1","Proof of victory in Arathi Basin","","","","Arathi Resource Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19726","-1","","","","","Bloodvine","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19727","-1","Allows an Herbalist to collect Bloodvine from Zul'Gurub Flora when carried.","","","","Blood Scythe","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19742","-1","","","","","Earthborn Kilt TEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25169","125847","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","12","0","0","0","0","0","0","0","0","55" +"19743","-1","","","","","Cloaked Hood TEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3601","18005","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","10","0","0","0","0","0","0","0","0","33" +"19762","-1","","","","","Monster - Axe, Horde C04 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19763","-1","","","","","Monster - Shield, Round A01/Buckler Damaged A02Black","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19764","-1","Teaches you how to sew a Bloodvine Vest.","","","","Pattern: Bloodvine Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19765","-1","Teaches you how to sew Bloodvine Leggings.","","","","Pattern: Bloodvine Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19766","-1","Teaches you how to sew Bloodvine Boots.","","","","Pattern: Bloodvine Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19767","-1","","","","","Primal Bat Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19768","-1","","","","","Primal Tiger Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19769","-1","Teaches you how to craft a Primal Batskin Jerkin.","","","","Pattern: Primal Batskin Jerkin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19770","-1","Teaches you how to craft Primal Batskin Gloves.","","","","Pattern: Primal Batskin Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19771","-1","Teaches you how to craft Primal Batskin Bracers.","","","","Pattern: Primal Batskin Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19772","-1","Teaches you how to craft a Blood Tiger Breastplate.","","","","Pattern: Blood Tiger Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19773","-1","Teaches you how to craft Blood Tiger Shoulders.","","","","Pattern: Blood Tiger Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19774","-1","","","","","Souldarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19775","-1","Sealed tight.","","","","Sealed Azure Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19776","-1","Teaches you how to make a Bloodsoul Breastplate.","","","","Plans: Bloodsoul Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19777","-1","Teaches you how to make Bloodsoul Shoulders.","","","","Plans: Bloodsoul Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19778","-1","Teaches you how to make Bloodsoul Gauntlets.","","","","Plans: Bloodsoul Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19779","-1","Teaches you how to make a Darksoul Breastplate.","","","","Plans: Darksoul Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19780","-1","Teaches you how to make Darksoul Leggings.","","","","Plans: Darksoul Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19781","-1","Teaches you how to make Darksoul Shoulders.","","","","Plans: Darksoul Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19782","-1","","","","","Presence of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19783","-1","","","","","Syncretist's Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19784","-1","","","","","Death's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19785","-1","","","","","Falcon's Call","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19786","-1","","","","","Vodouisant's Vigilant Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19787","-1","","","","","Presence of Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19788","-1","","","","","Hoodoo Hex","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19789","-1","","","","","Prophetic Aura","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19790","-1","","","","","Animist's Caress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19802","-1","","","","","Heart of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8183","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","58" +"19803","-1","Someone in Booty Bay might be interested.","","","","Brownell's Blue Striped Racer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19804","-1","","","","","Pale Ghoulfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19805","-1","Someone in Booty Bay might be interested.","","","","Keefer's Angelfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19806","-1","Someone in Booty Bay might be interested.","","","","Dezian Queenfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19807","-1","","","","","Speckled Tastyfish","0","14400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19808","-1","","","","","Rockhide Strongfish","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15556","77783","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","45","-1","0","0","46","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","0","0","0","0","0","0","0","0","0","40" +"19809","-1","","","","","2500 Test 2h Axe 60 blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59920","299602","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19810","-1","","","","","1000 Test dagger 60 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48120","240602","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","60","-1","0","0","27","0","0","0","0","51","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19811","-1","","","","","2500 Test 2h Axe 60 blue (bear)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60380","301902","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","60","-1","0","0","102","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"19812","-1","","","","","Rune of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19813","-1","The doll resembles a warrior.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19814","-1","The doll resembles a rogue.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19815","-1","The doll resembles a paladin.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19816","-1","The doll resembles a hunter.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19817","-1","The doll resembles a shaman.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19818","-1","The doll resembles a mage.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19819","-1","The doll resembles a warlock.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19820","-1","The doll resembles a priest.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19821","-1","The doll resembles a druid.","","","","Punctured Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33792","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19822","-1","","","","","Zandalar Vindicator's Breastplate","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","842","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","24","15","0","0","0","0","0","0","0","0" +"19823","-1","","","","","Zandalar Vindicator's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","61","1","0","0","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","10","0","0","0","0","0","0","0","0","0" +"19824","-1","","","","","Zandalar Vindicator's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","61","1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","13","13","0","0","0","0","0","0","0","0" +"19825","-1","","","","","Zandalar Freethinker's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","842","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","26","16","7","0","0","0","0","0","0","0" +"19826","-1","","","","","Zandalar Freethinker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","61","2","0","0","0","0","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","12","16","10","0","0","0","0","0","0","0" +"19827","-1","","","","","Zandalar Freethinker's Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","61","2","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","12","12","6","0","0","0","0","0","0","0" +"19828","-1","","","","","Zandalar Augur's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","15","0","0","0","0","0","0","0","0","0" +"19829","-1","","","","","Zandalar Augur's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","61","64","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","10","0","0","0","0","0","0","0","0","0" +"19830","-1","","","","","Zandalar Augur's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","61","64","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","11","0","0","0","0","0","0","0","0","0" +"19831","-1","","","","","Zandalar Predator's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","372","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","15","15","11","0","0","0","0","0","0","0","0" +"19832","-1","","","","","Zandalar Predator's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","61","4","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","14","12","9","0","0","0","0","0","0","0" +"19833","-1","","","","","Zandalar Predator's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","61","4","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","10","0","0","0","0","0","0","0","0","0" +"19834","-1","","","","","Zandalar Madcap's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","0","0","0","0","0","0","0","0","0","0" +"19835","-1","","","","","Zandalar Madcap's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","61","8","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","12","12","0","0","0","0","0","0","0","0" +"19836","-1","","","","","Zandalar Madcap's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","61","8","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","14","9","0","0","0","0","0","0","0","0" +"19837","-1","","","","","Test Ranged Slot","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40691","203458","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","65","-1","0","0","55","0","0","0","0","104","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","0" +"19838","-1","","","","","Zandalar Haruspex's Tunic","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","23","15","0","0","0","0","0","0","0","0" +"19839","-1","","","","","Zandalar Haruspex's Belt","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","61","1024","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","12","10","0","0","0","0","0","0","0","0" +"19840","-1","","","","","Zandalar Haruspex's Bracers","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","61","1024","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","11","9","0","0","0","0","0","0","0","0" +"19841","-1","","","","","Zandalar Confessor's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","15","11","0","0","0","0","0","0","0","0" +"19842","-1","","","","","Zandalar Confessor's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","61","16","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","12","12","0","0","0","0","0","0","0","0" +"19843","-1","","","","","Zandalar Confessor's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","61","16","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","12","10","0","0","0","0","0","0","0","0" +"19844","-1","","","","","Zandalar Illusionist's Robe DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29665","148328","1","1","1","32784","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","23","0","0","0","0","0","0","0","0","0" +"19845","-1","","","","","Zandalar Illusionist's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","61","128","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","13","10","0","0","0","0","0","0","0","0" +"19846","-1","","","","","Zandalar Illusionist's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","61","128","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","11","9","0","0","0","0","0","0","0","0" +"19847","-1","","","","","Zandalar Demoniac's Robe DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27136","135684","1","1","1","32784","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","0","0","0","0","0","0","0","0","0","0" +"19848","-1","","","","","Zandalar Demoniac's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","61","256","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","8","0","0","0","0","0","0","0","0","0" +"19849","-1","","","","","Zandalar Demoniac's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","61","256","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","19","0","0","0","0","0","0","0","0","0" +"19850","-1","","","","","Uther's Tribute","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19851","-1","","","","","Grom's Tribute","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19852","-1","","","","","Ancient Hakkari Manslayer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73811","369057","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","68","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19853","-1","","","","","Gurubashi Dwarf Destroyer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55563","277816","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"19854","-1","","","","","Zin'rokh, Destroyer of Worlds","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","92937","464686","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","68","-1","0","0","196","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","28","0","0","0","0","0","0","0","0","0","60" +"19855","-1","","","","","Bloodsoaked Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52235","261179","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","770","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","21","0","0","0","0","0","0","0","0","60" +"19856","-1","","","","","The Eye of Hakkar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48628","194513","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19857","-1","","","","","Cloak of Consumption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22550","112752","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","0","0","0","0","0","0","0","0","0","60" +"19858","-1","","","","","Zandalar Honor Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19859","-1","","","","","Fang of the Faceless","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75706","378532","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","68","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19861","-1","","","","","Touch of Chaos","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57183","285918","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","68","-1","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19862","-1","","","","","Aegis of the Blood God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48971","244856","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","2959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19863","-1","","","","","Primalist's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61286","245144","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","8","0","0","0","0","0","0","0","0","60" +"19864","-1","","","","","Bloodcaller","0.6","0","-8.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","77063","385316","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","68","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","12","0","0","0","0","0","0","0","0","60" +"19865","-1","Forged in...","","","","Warblade of the Hakkari","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","77328","386644","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","461","0","0","0","1700","0","0","0","68","-1","0","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19866","-1","The seething flames of hatred.","","","","Warblade of the Hakkari","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70360","351800","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","461","0","0","0","1700","0","0","0","66","-1","0","0","57","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19867","-1","","","","","Bloodlord's Defender","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","70626","353130","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","66","-1","0","0","64","0","0","0","0","119","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","0","0","0","0","0","0","0","0","0","60" +"19868","-1","","","","","Mandokir's Sting DEPRECATED","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53169","265845","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","66","-1","0","0","111","0","0","0","0","167","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19869","-1","","","","","Blooddrenched Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14200","71004","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","0","0","0","0","0","0","0","0","0","60" +"19870","-1","","","","","Hakkari Loa Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17104","85523","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","6","6","0","0","0","0","0","0","0","60" +"19871","-1","","","","","Talisman of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50287","201151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19872","-1","","","","","Swift Razzashi Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19873","-1","","","","","Overlord's Crimson Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48660","194642","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","10","8","0","0","0","0","0","0","0","60" +"19874","-1","","","","","Halberd of Smiting","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90591","452959","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19875","-1","","","","","Bloodstained Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26132","130661","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","0","0","0","0","0","0","0","0","60" +"19876","-1","","","","","Soul Corrupter's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85311","341245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","8","10","0","0","0","0","0","0","0","60" +"19877","-1","","","","","Animist's Leggings","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29245","146226","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","18","15","0","0","0","0","0","0","0","60" +"19878","-1","","","","","Bloodsoaked Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30760","153801","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","16","11","0","0","0","0","0","0","0","60" +"19879","-1","","","","","Alex's Test Beatdown Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","97002","485014","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","70","-1","0","0","161","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19880","-1","","","","","Gurubashi Head Collection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19881","-1","","","","","Channeler's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19882","-1","","","","","The Hexxer's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19883","-1","","","","","Sacred Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19884","-1","","","","","Jin'do's Judgement","0.4","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87276","436380","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","66","-1","0","0","165","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","10","10","0","0","0","0","0","0","0","0","60" +"19885","-1","","","","","Jin'do's Evil Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","44203","176815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","6","5","0","0","0","0","0","0","0","60" +"19886","-1","","","","","The Hexxer's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16849","84249","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","10","0","0","0","0","0","0","0","0","60" +"19887","-1","","","","","Bloodstained Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33827","169136","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","15","11","0","0","0","0","0","0","0","60" +"19888","-1","","","","","Overlord's Embrace","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16975","84878","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","0","0","0","0","0","0","0","0","0","60" +"19889","-1","","","","","Blooddrenched Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28398","141994","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","35","15","0","0","0","0","0","0","0","0","60" +"19890","-1","","","","","Jin'do's Hexxer","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","71409","357047","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","66","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","6","0","0","0","0","0","0","0","0","60" +"19891","-1","","","","","Jin'do's Bag of Whammies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63628","254512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","11","8","0","0","0","0","0","0","0","0","60" +"19892","-1","","","","","Animist's Boots","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21535","107679","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","9","0","0","0","0","0","0","0","60" +"19893","-1","","","","","Zanzil's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55355","221421","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","60" +"19894","-1","","","","","Bloodsoaked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20364","101822","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","460","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","14","0","0","0","0","0","0","0","0","60" +"19895","-1","","","","","Bloodtinged Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23224","116120","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","20","0","0","0","0","0","0","0","0","60" +"19896","-1","","","","","Thekal's Grasp","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72049","360249","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","463","0","0","0","2200","0","0","0","65","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","0","0","0","0","0","0","0","0","0","60" +"19897","-1","","","","","Betrayer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21693","108468","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","12","8","0","0","0","0","0","0","0","60" +"19898","-1","","","","","Seal of Jin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","466","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19899","-1","","","","","Ritualistic Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21077","105386","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","14","13","0","0","0","0","0","0","0","60" +"19900","-1","Bears the mark of Jin.","","","","Zulian Stone Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66122","330610","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","0","0","0","0","0","0","0","0","0","60" +"19901","-1","Also serves as a skinning knife.","","","","Zulian Slicer","0.6","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53102","265511","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2500","0","0","0","68","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19902","-1","","","","","Swift Zulian Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19903","-1","","","","","Fang of Venoxis","0.6","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","68651","343255","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","65","-1","0","0","43","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","8","6","0","0","0","0","0","0","0","0","60" +"19904","-1","","","","","Runed Bloodstained Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41348","206740","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","19","0","0","0","0","0","0","0","0","60" +"19905","-1","","","","","Zanzil's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45253","181012","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","0","0","0","0","0","0","0","0","0","60" +"19906","-1","","","","","Blooddrenched Footpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20294","101474","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","10","0","0","0","0","0","0","0","0","60" +"19907","-1","","","","","Zulian Tigerhide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16295","81478","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","13","10","0","0","0","0","0","0","0","0","60" +"19908","-1","","","","","Sceptre of Smiting","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52467","262337","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","65","-1","0","0","77","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","60" +"19909","-1","","","","","Will of Arlokk","0.4","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87773","438869","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","65","-1","0","0","147","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","19","15","0","0","0","0","0","0","0","60" +"19910","-1","","","","","Arlokk's Grasp","0.6","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","70474","352373","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","463","0","0","0","1500","0","0","0","65","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19911","-1","","","","","Whipweed Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19912","-1","","","","","Overlord's Onyx Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43548","174192","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","11","0","0","0","0","0","0","0","0","0","60" +"19913","-1","","","","","Bloodsoaked Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29103","145517","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","8","0","0","0","0","0","0","0","0","60" +"19914","-1","","","","","Panther Hide Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","524288","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19915","-1","","","","","Zulian Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36742","183713","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","2312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","15","9","8","0","0","0","0","0","0","0","60" +"19916","-1","","","","","Monster - Mace, Standard Serpent Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19917","-1","","","","","Monster - Wand, Horde A01 Green","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","7","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19918","-1","","","","","Jeklik's Crusher","0.4","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93051","465256","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","65","-1","0","0","177","0","0","0","0","266","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19919","-1","","","","","Bloodstained Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23814","119073","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","10","10","0","0","0","0","0","0","0","60" +"19920","-1","","","","","Primalist's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56037","224151","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","8","0","0","0","0","0","0","0","0","60" +"19921","-1","","","","","Zulian Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51094","255472","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","65","-1","0","4990","71","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","60" +"19922","-1","","","","","Arlokk's Hoodoo Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63655","254621","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","8","0","0","0","0","0","0","0","0","0","60" +"19923","-1","","","","","Jeklik's Opaline Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44030","176121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19924","-1","","","","","Monster - Dagger, Fang Hook Curve Dark","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19925","-1","","","","","Band of Jin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43635","174541","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","466","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","8","0","0","0","0","0","0","0","0","60" +"19926","-1","","","","","Flowing Ritual Robes DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27044","135221","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","22","14","0","0","0","0","0","0","0","60" +"19927","-1","","","","","Mar'li's Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52265","261326","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","65","-1","0","0","91","0","0","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","11","6","5","0","0","0","0","0","0","0","60" +"19928","-1","","","","","Animist's Spaulders","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20444","102221","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","12","11","0","0","0","0","0","0","0","60" +"19929","-1","","","","","Bloodtinged Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11356","56780","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","0","0","0","0","0","0","0","60" +"19930","-1","","","","","Mar'li's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73852","295411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19931","-1","","","","","Gurubashi Mojo Madness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19932","-1","","","","","UNUSED Empowered Mojo Bundle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19933","-1","","","","","Glowing Scorpid Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2080","8320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19934","-1","","","","","Large Scorpid Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1400","5600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19935","-1","","","","","Empty Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19936","-1","","","","","Dried Scorpid Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","830","3320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19937","-1","","","","","Small Scorpid Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","780","3120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19938","-1","","","","","Heavy Scorpid Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","580","2320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"19939","-1","The Iron Blood of Gri'lek.","","","","Gri'lek's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19940","-1","The Razor Sharp Tooth of Renataki.","","","","Renataki's Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19941","-1","Wushoolay's Unkempt Mane.","","","","Wushoolay's Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19942","-1","","","","","Hazza'rah's Dream Thread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19943","-1","More Mojo than any one troll should have.","","","","Massive Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19944","-1","The inscription reads: Fishin's fer sissies -Nat Pagle","","","","Nat Pagle's Fish Terminator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86115","430576","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","65","-1","0","0","172","0","0","0","0","258","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","19","0","0","0","0","0","0","0","0","60" +"19945","-1","","","","","Lizardscale Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25933","129665","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","19","0","0","0","0","0","0","0","0","0","60" +"19946","-1","","","","","Tigule's Harpoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67629","338145","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","68","-1","0","0","154","0","0","0","0","232","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","0","0","0","0","0","0","0","0","0","60" +"19947","-1","The inscription reads: Fer really long castin'.","","","","Nat Pagle's Broken Reel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86528","346112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19948","-1","","","","","Zandalarian Hero Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19949","-1","","","","","Zandalarian Hero Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19950","-1","","","","","Zandalarian Hero Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"19951","-1","","","","","Gri'lek's Charm of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19952","-1","","","","","Gri'lek's Charm of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19953","-1","","","","","Renataki's Charm of Beasts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19954","-1","","","","","Renataki's Charm of Trickery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19955","-1","","","","","Wushoolay's Charm of Nature","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19956","-1","","","","","Wushoolay's Charm of Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19957","-1","","","","","Hazza'rah's Charm of Destruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19958","-1","","","","","Hazza'rah's Charm of Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19959","-1","","","","","Hazza'rah's Charm of Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"19960","-1","The crown jewel of killer bees.","","","","Crystalized Honey","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19961","-1","","","","","Gri'lek's Grinder","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53080","265400","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","68","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19962","-1","","","","","Gri'lek's Carver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66605","333029","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","68","-1","0","0","182","0","0","0","0","274","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19963","-1","","","","","Pitchfork of Madness","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68686","343433","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","68","-1","0","0","163","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19964","-1","","","","","Renataki's Soul Conduit","0.6","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55154","275770","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","68","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19965","-1","","","","","Wushoolay's Poker","0.6","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55358","276793","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","68","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19966","-1","","","","","Thrice Strung Longbow DEPRECATED","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41672","208362","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","98","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","4","0","0","0","0","0","0","0","0","60" +"19967","-1","","","","","Thoughtblighter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41821","209108","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","68","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","60" +"19968","-1","","","","","Fiery Retributer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55966","279834","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","68","-1","0","0","56","0","0","0","0","105","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","7","0","0","0","0","0","0","0","0","0","60" +"19969","-1","","","","","Nat Pagle's Extreme Anglin' Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3360","16801","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","12","0","0","0","0","0","0","0","0","0","0" +"19970","-1","It looks like Nat Pagle himself used this.","","","","Arcanite Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2175","10878","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","300","356","20","-1","0","0","42","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19971","-1","","","","","High Test Eternium Fishing Line","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","356","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"19972","-1","","","","","Lucky Fishing Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3396","16983","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","356","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","0","0","0","0","0","0","0","0","0","0" +"19973","-1","","","","","Nat's Measuring Tape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19974","-1","","","","","Mudskunk Lure","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19975","-1","","","","","Zulian Mudskunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19978","-1","","","","","Fishing Tournament!","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2786","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19979","-1","","","","","Hook of the Master Angler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19980","-1","","","","","Monster - Dagger, Ornate Spikey Base Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19981","-1","","","","","Monster - Sword2H, Claymore B01/Broadsword A03 Black Sharpened","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19982","-1","","","","","Duskbat Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9444","47222","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","1535","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","0","0","0","0","0","0","0","0","0","0" +"19983","-1","","","","","Monster - Wand, Horde Demon Skull Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19984","-1","","","","","Ebon Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11893","59469","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","11","0","0","0","0","0","0","0","0","0","0" +"19986","-1","Arrrrrgh!","","","","Pirate's Eye Patch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11980","59904","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","12","0","0","0","0","0","0","0","0","0" +"19987","-1","","","","","Monster - Dagger, Vulture Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19988","-1","","","","","Monster - Mace2H, Horde C01 Steel (Green)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"19989","-1","Some secrets are best left unknown.","","","","Tome of Devouring Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19990","-1","A friend in need is a friend without beads.","","","","Blessed Prayer Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19991","-1","","","","","Devilsaur Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19992","-1","","","","","Devilsaur Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"19993","-1","","","","","Hoodoo Hunting Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42730","213650","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","-1","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","4","0","0","0","0","0","0","0","0","60" +"19994","-1","","","","","Harvest Fruit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19995","-1","","","","","Harvest Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19996","-1","","","","","Harvest Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19997","-1","","","","","Harvest Nectar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"19998","-1","","","","","Bloodvine Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19457","97288","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","0","0","0","0","0","0","0","0","0","60" +"19999","-1","","","","","Bloodvine Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15625","78126","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20000","-1","Teaches you how to make Bloodvine Goggles.","","","","Schematic: Bloodvine Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20001","-1","Teaches you how to make a Bloodvine Lens.","","","","Schematic: Bloodvine Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20002","-1","","","","","Greater Dreamless Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"20003","-1","The claws hum with primal energy.","","","","Devilsaur Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31596","157980","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","4","0","0","0","0","0","0","0","0","0","0" +"20004","-1","","","","","Major Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","53" +"20005","-1","The claws hum with primal energy.","","","","Devilsaur Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31828","159141","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","4","9","0","0","0","0","0","0","0","0","0" +"20006","-1","Forged from pure light.","","","","Circle of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","0","0","0","0","0","0","0","0","0","0" +"20007","-1","","","","","Mageblood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20008","-1","","","","","Living Action Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","47" +"20009","-1","by Jennre Loresinger... dedicated to Uther Lightbringer","","","","For the Light!","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2787","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20010","-1","by Tolven Warsong... dedicated to Grom Hellscream","","","","The Horde's Hellscream","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2790","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20011","-1","Teaches you how to make a Mageblood Potion.","","","","Recipe: Mageblood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20012","-1","Teaches you how to make a Greater Dreamless Sleep Potion.","","","","Recipe: Greater Dreamless Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","275","171","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20013","-1","Teaches you how to make a Living Action Potion.","","","","Recipe: Living Action Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","285","171","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20014","-1","Teaches you how to make a Major Troll's Blood Potion.","","","","Recipe: Major Troll's Blood Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","290","171","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20015","-1","","","","","Elder Raptor Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1658","6632","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20016","-1","","","","","Trophy Raptor Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3635","14540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20017","-1","","","","","Perfect Courser Antler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20018","-1","","","","","Angerclaw Grizzly Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20019","-1","","","","","Tooth of Morphaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20020","-1","The crate contains carefully packed antlers and hides.","","","","Bundle of Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20021","-1","","","","","Gold Pirate Earring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20022","-1","","","","","Azure Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20023","-1","The text is written in an arcane language.","","","","Encoded Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20024","-1","","","","","Putrid Bile Duct","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20025","-1","","","","","Blood of Morphaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20026","-1","","","","","Rotting Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20027","-1","","","","","Healthy Courser Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20028","-1","","","","","Glittering Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20029","-1","","","","","Enchanted Coral","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20030","-1","It looks happy.","","","","Pet Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1580","6321","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20031","-1","","","","","Essence Mango","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"20032","-1","","","","","Flowing Ritual Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27040","135201","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","23","15","0","0","0","0","0","0","0","60" +"20033","-1","","","","","Zandalar Demoniac's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","35","0","0","0","0","0","0","0","0","0","0" +"20034","-1","","","","","Zandalar Illusionist's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","24","23","0","0","0","0","0","0","0","0","0" +"20035","-1","Diabolical runes adorn the blade.","","","","Glacial Spike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30651","153257","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","52","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","0" +"20036","-1","Unpredictability leads to both victory and death.","","","","Fire Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2750","11002","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20037","-1","Arcane crystals are best utilized for the purposes of a mage.","","","","Arcane Crystal Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15003","60012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","0","0","0","0","0","0","0","0","0","0" +"20038","-1","","","","","Mandokir's Sting","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52549","262745","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","66","-1","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","11","8","0","0","0","0","0","0","0","0","60" +"20039","-1","","","","","Dark Iron Boots","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38754","193772","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","866","0","0","0","0","0","0","0","0","0","0","621","0","28","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20040","-1","Teaches you how to make Dark Iron Boots.","","","","Plans: Dark Iron Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20041","-1","","","","","Highlander's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","58" +"20042","-1","","","","","Highlander's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","10","0","0","0","0","0","0","0","58" +"20043","-1","","","","","Highlander's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20044","-1","","","","","Highlander's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","17","0","0","0","0","0","0","0","0","58" +"20045","-1","","","","","Highlander's Leather Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","0","0","0","0","0","0","0","0","0","58" +"20046","-1","","","","","Highlander's Lizardhide Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","17","0","0","0","0","0","0","0","0","58" +"20047","-1","","","","","Highlander's Cloth Girdle","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","58" +"20048","-1","","","","","Highlander's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","12","12","0","0","0","0","0","0","0","58" +"20049","-1","","","","","Highlander's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","8","12","8","0","0","0","0","0","0","58" +"20050","-1","","","","","Highlander's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","10","8","0","0","0","0","0","0","0","58" +"20051","-1","","","","","Highlander's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","10","8","0","0","0","0","0","0","0","58" +"20052","-1","","","","","Highlander's Leather Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","12","0","0","0","0","0","0","0","0","58" +"20053","-1","","","","","Highlander's Lizardhide Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","8","8","0","0","0","0","0","0","0","58" +"20054","-1","","","","","Highlander's Cloth Boots","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","8","0","0","0","0","0","0","0","0","58" +"20055","-1","","","","","Highlander's Chain Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","18","17","0","0","0","0","0","0","0","60" +"20056","-1","","","","","Highlander's Mail Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","11","18","10","17","0","0","0","0","0","0","60" +"20057","-1","","","","","Highlander's Plate Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","65","3","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","20","17","0","0","0","0","0","0","0","60" +"20058","-1","","","","","Highlander's Lamellar Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","468","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","15","17","10","0","0","0","0","0","0","60" +"20059","-1","","","","","Highlander's Leather Shoulders","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20060","-1","","","","","Highlander's Lizardhide Shoulders","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","12","12","0","0","0","0","0","0","0","60" +"20061","-1","","","","","Highlander's Epaulets","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","473","0","0","0","0","0","0","0","65","400","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","17","0","0","0","0","0","0","0","0","60" +"20062","-1","","","","","Arathi Basin Enriched Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20063","-1","","","","","Arathi Basin Field Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20064","-1","","","","","Arathi Basin Iron Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20065","-1","","","","","Arathi Basin Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20066","-1","","","","","Arathi Basin Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20067","-1","","","","","Arathi Basin Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20068","-1","","","","","Deathguard's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","5","0","0","0","0","0","0","0","0","60" +"20069","-1","","","","","Ironbark Staff","0.5","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","65","-1","0","0","156","0","0","0","0","262","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","10","19","0","0","0","0","0","0","0","0","60" +"20070","-1","","","","","Sageclaw","0.6","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","65","-1","0","0","56","0","0","0","0","105","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","8","0","0","0","0","0","0","0","0","0","60" +"20071","-1","","","","","Talisman of Arathor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"20072","-1","","","","","Defiler's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"20073","-1","","","","","Cloak of the Honor Guard","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","5","0","0","0","0","0","0","0","0","60" +"20074","-1","","","","","Heavy Crocolisk Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"20075","-1","Teaches you how to cook a Heavy Crocilisk Stew.","","","","Recipe: Heavy Crocolisk Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","185","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20076","-1","","","","","Zandalar Signet of Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20077","-1","","","","","Zandalar Signet of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20078","-1","","","","","Zandalar Signet of Serenity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20079","-1","Blessed with the mojo of Zanza!","","","","Spirit of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20080","-1","Blessed with the mojo of Zanza!","","","","Sheen of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20081","-1","Blessed with the mojo of Zanza!","","","","Swiftness of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20082","-1","Woe to those who oppose.","","","","Woestave","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24229","121145","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","52","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","3","0","0","0","0","0","0","0","0","0","0" +"20083","-1","","","","","Hunting Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40524","202624","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","52","-1","0","0","111","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","0","0","0","0","0","0","0","0","0","0" +"20084","-1","","","","","Hunting Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20085","-1","","","","","Arcane Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20086","-1","","","","","Broken Dusksteel Throwing Knife","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","0","1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0" +"20087","-1","","","","","Wavethrasher Scales","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20088","-1","","","","","Highlander's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","0","0","0","0","0","0","0","0","0","48" +"20089","-1","","","","","Highlander's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","40" +"20090","-1","","","","","Highlander's Padded Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","0","0","0","0","0","0","0","0","0","28" +"20091","-1","","","","","Highlander's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","6","0","0","0","0","0","0","0","48" +"20092","-1","","","","","Highlander's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","7","3","0","0","0","0","0","0","0","40" +"20093","-1","","","","","Highlander's Padded Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20094","-1","","","","","Highlander's Cloth Boots","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","48" +"20095","-1","","","","","Highlander's Cloth Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","3","0","0","0","0","0","0","0","0","38" +"20096","-1","","","","","Highlander's Cloth Boots","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","28" +"20097","-1","","","","","Highlander's Cloth Girdle","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","48" +"20098","-1","","","","","Highlander's Cloth Girdle","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","4","0","0","0","0","0","0","0","0","38" +"20099","-1","","","","","Highlander's Cloth Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","3","0","0","0","0","0","0","0","0","28" +"20100","-1","","","","","Highlander's Lizardhide Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","7","0","0","0","0","0","0","0","48" +"20101","-1","","","","","Highlander's Lizardhide Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","6","5","0","0","0","0","0","0","0","38" +"20102","-1","","","","","Highlander's Lizardhide Boots","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","5","4","0","0","0","0","0","0","0","28" +"20103","-1","","","","","Highlander's Lizardhide Girdle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","10","0","0","0","0","0","0","0","0","48" +"20104","-1","","","","","Highlander's Lizardhide Girdle","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","15","0","0","0","0","0","0","0","0","38" +"20105","-1","","","","","Highlander's Lizardhide Girdle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","12","0","0","0","0","0","0","0","0","28" +"20106","-1","","","","","Highlander's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","4","8","0","0","0","0","0","0","0","48" +"20107","-1","","","","","Highlander's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","6","6","0","0","0","0","0","0","0","40" +"20108","-1","","","","","Highlander's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","4","5","0","0","0","0","0","0","0","28" +"20109","-1","","","","","Highlander's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","7","10","6","0","0","0","0","0","0","48" +"20110","-1","","","","","Highlander's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","6","8","5","0","0","0","0","0","0","40" +"20111","-1","","","","","Highlander's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","4","6","4","0","0","0","0","0","0","28" +"20112","-1","","","","","Highlander's Leather Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","11","0","0","0","0","0","0","0","0","48" +"20113","-1","","","","","Highlander's Leather Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","8","0","0","0","0","0","0","0","0","38" +"20114","-1","","","","","Highlander's Leather Boots","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","7","0","0","0","0","0","0","0","0","28" +"20115","-1","","","","","Highlander's Leather Girdle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","48" +"20116","-1","","","","","Highlander's Leather Girdle","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","38" +"20117","-1","","","","","Highlander's Leather Girdle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","28" +"20118","-1","","","","","Highlander's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","48" +"20119","-1","","","","","Highlander's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","15","0","0","0","0","0","0","0","0","40" +"20120","-1","","","","","Highlander's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","12","0","0","0","0","0","0","0","0","28" +"20121","-1","","","","","Highlander's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","6","0","0","0","0","0","0","0","48" +"20122","-1","","","","","Highlander's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","7","3","0","0","0","0","0","0","0","40" +"20123","-1","","","","","Highlander's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20124","-1","","","","","Highlander's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","8","0","0","0","0","0","0","0","0","48" +"20125","-1","","","","","Highlander's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","40" +"20126","-1","","","","","Highlander's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","5","0","0","0","0","0","0","0","0","28" +"20127","-1","","","","","Highlander's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","10","10","0","0","0","0","0","0","0","48" +"20128","-1","","","","","Highlander's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","8","0","0","0","0","0","0","0","40" +"20129","-1","","","","","Highlander's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","6","0","0","0","0","0","0","0","28" +"20130","-1","Served on the rocks.","","","","Diamond Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20131","-1","","","","","Battle Tabard of the Defilers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20132","-1","","","","","Arathor Battle Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20134","-1","","","","","Skyfury Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30246","151234","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","14","13","12","0","0","0","0","0","0","0","0" +"20135","-1","","","","","90 Epic Warrior Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32788","163944","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20136","-1","","","","","90 Epic Warrior Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65442","327212","1","1","1","16","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","1148","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20137","-1","","","","","90 Epic Warrior Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33030","165154","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20138","-1","","","","","90 Epic Warrior Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49353","246766","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20139","-1","","","","","90 Epic Warrior Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66173","330869","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","1005","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","32","0","0","0","0","0","0","0","0","60" +"20140","-1","","","","","90 Epic Warrior Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51020","255102","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","861","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20141","-1","","","","","90 Epic Warrior Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51203","256015","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","789","0","8","8","8","8","7","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20142","-1","","","","","90 Epic Warrior Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34518","172592","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","5","6","6","6","6","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","24","0","0","0","0","0","0","0","0","60" +"20143","-1","","","","","90 Epic Warrior Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","18","0","0","0","0","0","0","0","0","0" +"20144","-1","","","","","90 Epic Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","18","0","0","0","0","0","0","0","0","0" +"20145","-1","","","","","90 Epic Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13451","67257","1","0.5","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20146","-1","","","","","90 Epic Warrior Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67518","337594","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","120","0","0","0","0","223","0","0","0","0","0","0","3","2","2","2","2","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","10","0","0","0","0","0","0","0","0","60" +"20149","-1","","","","","90 Epic Warrior Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113825","569129","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","0","0","271","0","0","0","0","408","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","32","31","0","0","0","0","0","0","0","0","60" +"20150","-1","","","","","Defiler's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20151","-1","","","","","Defiler's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","0","0","0","0","0","0","0","0","0","48" +"20152","-1","","","","","Defiler's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","0","0","0","0","0","0","0","0","0","28" +"20153","-1","","","","","Defiler's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","40" +"20154","-1","","","","","Defiler's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","10","8","0","0","0","0","0","0","0","58" +"20155","-1","","","","","Defiler's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","6","0","0","0","0","0","0","0","48" +"20156","-1","","","","","Defiler's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","7","3","0","0","0","0","0","0","0","40" +"20157","-1","","","","","Defiler's Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20158","-1","","","","","Defiler's Chain Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","18","17","0","0","0","0","0","0","0","60" +"20159","-1","","","","","Defiler's Cloth Boots","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","8","0","0","0","0","0","0","0","0","58" +"20160","-1","","","","","Defiler's Cloth Boots","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","6","0","0","0","0","0","0","0","0","48" +"20161","-1","","","","","Defiler's Cloth Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","3","0","0","0","0","0","0","0","0","38" +"20162","-1","","","","","Defiler's Cloth Boots","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","28" +"20163","-1","","","","","Defiler's Cloth Girdle","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","58" +"20164","-1","","","","","Defiler's Cloth Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","400","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","3","0","0","0","0","0","0","0","0","28" +"20165","-1","","","","","Defiler's Cloth Girdle","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","400","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","5","0","0","0","0","0","0","0","0","48" +"20166","-1","","","","","Defiler's Cloth Girdle","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","400","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","4","0","0","0","0","0","0","0","0","38" +"20167","-1","","","","","Defiler's Lizardhide Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","8","8","0","0","0","0","0","0","0","58" +"20168","-1","","","","","Defiler's Lizardhide Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","6","5","0","0","0","0","0","0","0","38" +"20169","-1","","","","","Defiler's Lizardhide Boots","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","5","4","0","0","0","0","0","0","0","28" +"20170","-1","","","","","Defiler's Lizardhide Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","7","0","0","0","0","0","0","0","48" +"20171","-1","","","","","Defiler's Lizardhide Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","17","0","0","0","0","0","0","0","0","58" +"20172","-1","","","","","Defiler's Lizardhide Girdle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","12","0","0","0","0","0","0","0","0","28" +"20173","-1","","","","","Defiler's Lizardhide Girdle","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","15","0","0","0","0","0","0","0","0","38" +"20174","-1","","","","","Defiler's Lizardhide Girdle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","10","0","0","0","0","0","0","0","0","48" +"20175","-1","","","","","Defiler's Lizardhide Shoulders","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","12","12","0","0","0","0","0","0","0","60" +"20176","-1","","","","","Defiler's Epaulets","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","65","400","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","17","0","0","0","0","0","0","0","0","60" +"20177","-1","","","","","Defiler's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","10","0","0","0","0","0","0","0","58" +"20178","-1","","","","","Defiler's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","4","5","0","0","0","0","0","0","0","28" +"20179","-1","","","","","Defiler's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","4","8","0","0","0","0","0","0","0","48" +"20180","-1","","","","","Defiler's Lamellar Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","6","6","0","0","0","0","0","0","0","40" +"20181","-1","","","","","Defiler's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","2","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","8","12","8","0","0","0","0","0","0","58" +"20182","-1","","","","","Defiler's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","2","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","4","6","4","0","0","0","0","0","0","28" +"20183","-1","","","","","Defiler's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","2","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","6","8","5","0","0","0","0","0","0","40" +"20184","-1","","","","","Defiler's Lamellar Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","15","17","10","0","0","0","0","0","0","60" +"20185","-1","","","","","Defiler's Lamellar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","2","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","7","10","6","0","0","0","0","0","0","48" +"20186","-1","","","","","Defiler's Leather Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","12","0","0","0","0","0","0","0","0","58" +"20187","-1","","","","","Defiler's Leather Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","8","0","0","0","0","0","0","0","0","38" +"20188","-1","","","","","Defiler's Leather Boots","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","7","0","0","0","0","0","0","0","0","28" +"20189","-1","","","","","Defiler's Leather Boots","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","11","0","0","0","0","0","0","0","0","48" +"20190","-1","","","","","Defiler's Leather Girdle","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","63","1032","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","0","0","0","0","0","0","0","0","0","58" +"20191","-1","","","","","Defiler's Leather Girdle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","1032","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","28" +"20192","-1","","","","","Defiler's Leather Girdle","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","1032","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","4","0","0","0","0","0","0","0","0","0","38" +"20193","-1","","","","","Defiler's Leather Girdle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","1032","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","0","0","0","0","0","0","0","0","0","48" +"20194","-1","","","","","Defiler's Leather Shoulders","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","65","1032","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","0","0","0","0","0","0","0","0","60" +"20195","-1","","","","","Defiler's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","17","0","0","0","0","0","0","0","0","58" +"20196","-1","","","","","Defiler's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","10","0","0","0","0","0","0","0","0","48" +"20197","-1","","","","","Defiler's Padded Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","5","12","0","0","0","0","0","0","0","0","28" +"20198","-1","","","","","Defiler's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","6","15","0","0","0","0","0","0","0","0","40" +"20199","-1","","","","","Defiler's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","63","68","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","10","8","0","0","0","0","0","0","0","58" +"20200","-1","","","","","Defiler's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","68","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","7","3","0","0","0","0","0","0","0","40" +"20201","-1","","","","","Defiler's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","68","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","0","0","0","0","0","0","0","0","28" +"20202","-1","","","","","Defiler's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","68","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","8","6","0","0","0","0","0","0","0","48" +"20203","-1","","","","","Defiler's Mail Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","65","68","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","11","18","10","17","0","0","0","0","0","0","60" +"20204","-1","","","","","Defiler's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","369","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","10","0","0","0","0","0","0","0","0","58" +"20205","-1","","","","","Defiler's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","8","0","0","0","0","0","0","0","0","48" +"20206","-1","","","","","Defiler's Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","6","0","0","0","0","0","0","0","0","40" +"20207","-1","","","","","Defiler's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","5","0","0","0","0","0","0","0","0","28" +"20208","-1","","","","","Defiler's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","63","3","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","12","12","0","0","0","0","0","0","0","58" +"20209","-1","","","","","Defiler's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","3","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","8","8","0","0","0","0","0","0","0","40" +"20210","-1","","","","","Defiler's Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","3","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","6","6","6","0","0","0","0","0","0","0","28" +"20211","-1","","","","","Defiler's Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","3","0","0","0","0","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","10","10","0","0","0","0","0","0","0","48" +"20212","-1","","","","","Defiler's Plate Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","65","3","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","20","17","0","0","0","0","0","0","0","60" +"20213","-1","","","","","Belt of Shrunken Heads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20119","100599","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","23","11","7","0","0","0","0","0","0","0","0" +"20214","-1","","","","","Mindfang","0.6","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","65","-1","0","0","56","0","0","0","0","105","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","8","0","0","0","0","0","0","0","0","0","60" +"20215","-1","","","","","Belt of Shriveled Heads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17271","86358","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","18","11","11","0","0","0","0","0","0","0" +"20216","-1","","","","","Belt of Preserved Heads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14445","72227","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","11","0","0","0","0","0","0","0","0" +"20217","-1","","","","","Belt of Tiny Heads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11598","57991","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","13","0","0","0","0","0","0","0","0","0" +"20218","-1","","","","","Faded Hakkari Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14590","72950","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","5","0","0","0","0","0","0","0","0","0" +"20219","-1","","","","","Tattered Hakkari Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14641","73206","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","6","0","0","0","0","0","0","0","0","0" +"20220","-1","","","","","Ironbark Staff","0.5","0","-5.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","65","-1","0","0","156","0","0","0","0","262","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","10","19","0","0","0","0","0","0","0","0","60" +"20221","-1","","","","","Fabled Steed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"20222","-1","","","","","Defiler's Enriched Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20223","-1","","","","","Defiler's Field Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20224","-1","","","","","Defiler's Iron Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20225","-1","","","","","Highlander's Enriched Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20226","-1","","","","","Highlander's Field Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20227","-1","","","","","Highlander's Iron Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20228","-1","","","","","Defiler's Advanced Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20229","-1","","","","","Defiler's Basic Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20230","-1","","","","","Defiler's Standard Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20231","-1","","","","","Arathor Advanced Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20232","-1","","","","","Defiler's Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20233","-1","","","","","Arathor Basic Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20234","-1","","","","","Defiler's Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20235","-1","","","","","Defiler's Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20236","-1","","","","","Arathor Standard Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20237","-1","","","","","Highlander's Mageweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","1500","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","129","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"20238","-1","","","","","90 Green Warrior Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70067","350337","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","0","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","0","0","0","0","0","0","0","0","60" +"20239","-1","","","","","90 Green Warrior Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19807","99038","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20240","-1","","","","","90 Green Warrior Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39542","197712","1","1","1","16","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","838","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20241","-1","","","","","90 Green Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8506","42530","1","0.5","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20242","-1","","","","","90 Green Warrior Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20035","100177","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20243","-1","","","","","Highlander's Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20244","-1","","","","","Highlander's Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","129","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20245","-1","","","","","90 Green Warrior Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43174","215872","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","9","8","0","0","0","0","0","0","0","0","60" +"20246","-1","","","","","90 Green Warrior Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30278","151393","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20247","-1","","","","","90 Green Warrior Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40600","203004","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","27","28","0","0","0","0","0","0","0","0","60" +"20248","-1","","","","","90 Green Warrior Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","16","0","0","0","0","0","0","0","0","60" +"20249","-1","","","","","90 Green Warrior Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30617","153088","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20250","-1","","","","","90 Green Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","16","0","0","0","0","0","0","0","0","0" +"20251","-1","","","","","90 Green Warrior Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30845","154229","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20252","-1","","","","","90 Green Warrior Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21346","106731","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","20","21","0","0","0","0","0","0","0","0","60" +"20253","-1","Teaches you how to craft a Warbear Harness.","","","","Pattern: Warbear Harness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","275","165","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20254","-1","Teaches you how to craft Warbear Woolies.","","","","Pattern: Warbear Woolies","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20255","-1","","","","","Whisperwalk Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12425","62129","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","4","0","0","0","0","0","0","0","0","0" +"20256","-1","Second Place","","","","Warsong Gulch Ribbon of Sacrifice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20257","-1","","","","","Seafury Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23207","116037","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1535","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","9","9","0","0","0","0","0","0","0","60" +"20258","-1","","","","","Zulian Ceremonial Staff","0.4","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63375","316878","1","1","1","524288","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","65","-1","0","0","115","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","13","0","0","0","0","0","0","0","0","60" +"20259","-1","","","","","Shadow Panther Hide Gloves","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12724","63621","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","0","0","0","0","0","0","0","0","60" +"20260","-1","","","","","Seafury Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31854","159273","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","15","15","14","0","0","0","0","0","0","60" +"20261","-1","","","","","Shadow Panther Hide Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12821","64107","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","8","10","0","0","0","0","0","0","0","60" +"20262","-1","","","","","Seafury Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24182","120911","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"20263","-1","","","","","Gurubashi Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27080","135401","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","21","13","0","0","0","0","0","0","0","60" +"20264","-1","","","","","Peacekeeper Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25299","126495","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","1535","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","7","0","0","0","0","0","0","0","0","60" +"20265","-1","","","","","Peacekeeper Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28353","141765","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","10","0","0","0","0","0","0","0","0","60" +"20266","-1","","","","","Peacekeeper Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38019","190096","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","14","0","0","0","0","0","0","0","0","60" +"20267","-1","","","","","90 Epic Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23198","115990","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","8","8","8","8","7","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20268","-1","","","","","90 Epic Rogue Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35859","179298","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20269","-1","","","","","90 Epic Rogue Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23993","119967","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","4","4","4","4","5","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20270","-1","","","","","90 Epic Rogue Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36120","180604","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20271","-1","","","","","90 Epic Rogue Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24167","120838","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20272","-1","","","","","90 Epic Rogue Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48504","242524","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20273","-1","","","","","90 Epic Rogue Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36509","182546","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","18","18","0","0","0","0","0","0","0","60" +"20274","-1","","","","","90 Epic Rogue Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48853","244265","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","25","24","0","0","0","0","0","0","0","60" +"20275","-1","","","","","90 Epic Rogue Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","5","4","4","4","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20276","-1","","","","","90 Epic Rogue Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29518","147590","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","5","4","4","4","4","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","14","13","0","0","0","0","0","0","0","60" +"20277","-1","","","","","90 Epic Rogue Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","14","14","0","0","0","0","0","0","0","60" +"20278","-1","","","","","90 Epic Rogue Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67250","336253","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","120","0","0","0","0","223","0","0","0","0","0","0","3","3","3","3","3","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","8","8","7","0","0","0","0","0","0","0","60" +"20279","-1","","","","","90 Epic Rogue Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90006","450032","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","90","-1","0","0","104","0","0","0","0","194","0","0","0","0","0","0","2","2","2","2","3","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","11","10","10","0","0","0","0","0","0","0","60" +"20280","-1","","","","","63 Green Warrior Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51822","259110","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","63","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","19","18","0","0","0","0","0","0","0","0","58" +"20281","-1","","","","","63 Green Warrior Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14649","73246","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20282","-1","","","","","63 Green Warrior Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29244","146220","1","1","1","16","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20283","-1","","","","","63 Green Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6289","31449","1","0.5","1","32784","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20284","-1","","","","","63 Green Warrior Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15219","76097","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20285","-1","","","","","63 Green Warrior Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32547","162738","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","9","0","0","0","0","0","0","0","0","0","58" +"20286","-1","","","","","63 Green Warrior Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22823","114118","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20287","-1","","","","","63 Green Warrior Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30598","152992","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","19","0","0","0","0","0","0","0","0","58" +"20288","-1","","","","","63 Green Warrior Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20289","-1","","","","","63 Green Warrior Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23072","115363","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20290","-1","","","","","63 Green Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","10","0","0","0","0","0","0","0","0","58" +"20291","-1","","","","","63 Green Warrior Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23237","116189","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20292","-1","","","","","63 Green Warrior Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15666","78332","1","1","1","16","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1","0","0","0","0","0","0","0","0","0","0","0","0","336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","14","0","0","0","0","0","0","0","0","58" +"20295","-1","","","","","Blue Dragonscale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31083","155418","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","12","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","19","0","0","0","0","0","0","0","0","55" +"20296","-1","","","","","Green Dragonscale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12590","62954","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","9","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","5","0","0","0","0","0","0","0","0","51" +"20297","-1","","","","","90 Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15426","77134","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20298","-1","","","","","90 Green Rogue Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21011","105057","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20299","-1","","","","","90 Green Rogue Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42186","210930","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","90","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","6","10","0","0","0","0","0","0","0","0","60" +"20300","-1","","","","","90 Green Rogue Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14506","72531","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","18","11","0","0","0","0","0","0","0","0","60" +"20301","-1","","","","","90 Green Rogue Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21840","109204","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20302","-1","","","","","90 Green Rogue Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17536","87681","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20303","-1","","","","","90 Green Rogue Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58671","293359","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","90","-1","0","0","67","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","14","8","0","0","0","0","0","0","0","0","60" +"20304","-1","","","","","90 Green Rogue Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14722","73612","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20305","-1","","","","","90 Green Rogue Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20306","-1","","","","","90 Green Rogue Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29659","148297","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20307","-1","","","","","90 Green Rogue Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","11","18","0","0","0","0","0","0","0","0","60" +"20308","-1","","","","","90 Green Rogue Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22407","112039","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","24","15","0","0","0","0","0","0","0","0","60" +"20309","-1","","","","","90 Green Rogue Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29983","149915","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","32","20","0","0","0","0","0","0","0","0","60" +"20310","-1","","","","","Flayed Demon Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1480","0","0","67","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"20311","-1","","","","","63 Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11085","55428","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20312","-1","","","","","63 Green Rogue Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16688","83442","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20313","-1","","","","","63 Green Rogue Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33493","167467","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","4","7","0","0","0","0","0","0","0","0","58" +"20314","-1","","","","","63 Green Rogue Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11204","56022","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","7","0","0","0","0","0","0","0","0","58" +"20315","-1","","","","","63 Green Rogue Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16866","84333","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20316","-1","","","","","63 Green Rogue Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12587","62938","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20317","-1","","","","","63 Green Rogue Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42114","210570","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","6","0","0","0","0","0","0","0","0","58" +"20318","-1","","","","","63 Green Rogue Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10568","52842","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20319","-1","","","","","63 Green Rogue Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15038","60155","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20320","-1","","","","","63 Green Rogue Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21296","106483","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20321","-1","","","","","63 Green Rogue Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","12","0","0","0","0","0","0","0","0","58" +"20322","-1","","","","","63 Green Rogue Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16090","80454","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","10","0","0","0","0","0","0","0","0","58" +"20323","-1","","","","","63 Green Rogue Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21534","107671","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","14","0","0","0","0","0","0","0","0","58" +"20324","-1","","","","","90 Epic Frost Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18840","94204","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","11","12","0","0","0","0","0","0","0","60" +"20325","-1","","","","","90 Epic Frost Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18910","94552","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20326","-1","","","","","90 Epic Frost Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28470","142351","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","11","27","12","0","0","0","0","0","0","0","60" +"20327","-1","","","","","90 Epic Frost Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28574","142874","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","15","16","0","0","0","0","0","0","0","60" +"20328","-1","","","","","90 Epic Frost Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19117","95588","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","11","27","12","0","0","0","0","0","0","0","60" +"20329","-1","","","","","90 Epic Frost Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38374","191873","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","15","37","16","0","0","0","0","0","0","0","60" +"20330","-1","","","","","90 Epic Frost Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28885","144427","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","11","12","0","0","0","0","0","0","0","60" +"20331","-1","","","","","90 Epic Frost Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38653","193266","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","37","15","16","0","0","0","0","0","0","0","60" +"20332","-1","","","","","90 Epic Frost Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","20","9","0","0","0","0","0","0","0","60" +"20333","-1","","","","","90 Epic Frost Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20334","-1","","","","","90 Epic Frost Staff","0.4","0","-33","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113425","567129","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","15","0","0","0","0","0","0","0","60" +"20335","-1","","","","","90 Epic Frost Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68316","341583","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","90","-1","0","0","121","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","12","5","4","0","0","0","0","0","0","0","60" +"20336","-1","","","","","90 Epic Frost Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27428","137141","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","8","9","0","0","0","0","0","0","0","60" +"20337","-1","","","","","Gnome Head on a Stick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52791","211167","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20338","-1","","","","","90 Green Frost Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11515","57577","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20339","-1","","","","","90 Green Frost Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11559","57795","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20340","-1","","","","","90 Green Frost Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17402","87010","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20341","-1","","","","","90 Green Frost Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17467","87337","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20342","-1","","","","","90 Green Frost Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11688","58442","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20343","-1","","","","","90 Green Frost Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23461","117308","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20344","-1","","","","","90 Green Frost Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17661","88308","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","0","0","0","0","0","0","0","0","0","60" +"20345","-1","","","","","90 Green Frost Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20346","-1","","","","","90 Green Frost Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20347","-1","","","","","90 Green Frost Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23807","119038","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","28","0","0","0","0","0","0","0","0","0","60" +"20348","-1","","","","","90 Green Frost Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17921","89605","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","16","0","0","0","0","0","0","0","0","0","60" +"20349","-1","","","","","90 Green Frost Staff","0.4","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76891","384459","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","0","0","134","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","0","0","0","0","0","0","0","0","60" +"20350","-1","","","","","90 Green Frost Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46298","231491","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","90","-1","0","0","74","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","9","0","0","0","0","0","0","0","0","0","60" +"20351","-1","","","","","63 Green Frost Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8230","41151","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20352","-1","","","","","63 Green Frost Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8262","41310","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20353","-1","","","","","63 Green Frost Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12441","62205","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20354","-1","","","","","63 Green Frost Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12489","62445","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20355","-1","","","","","63 Green Frost Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8357","41785","1","1","1","16","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20356","-1","","","","","63 Green Frost Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16778","83891","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20357","-1","","","","","63 Green Frost Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12631","63158","1","1","1","16","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","0","0","0","0","0","0","0","0","0","58" +"20358","-1","","","","","63 Green Frost Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20359","-1","","","","","63 Green Frost Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20360","-1","","","","","63 Green Frost Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17032","85161","1","1","1","16","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20361","-1","","","","","63 Green Frost Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12822","64110","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","0","0","0","0","0","0","0","0","0","58" +"20362","-1","","","","","63 Green Frost Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53619","268099","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","105","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","19","0","0","0","0","0","0","0","0","0","58" +"20363","-1","","","","","63 Green Frost Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32291","161458","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","50","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","6","0","0","0","0","0","0","0","0","0","58" +"20364","-1","","","","","Test Ammo Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20367","-1","A fine box of gear.","","","","Hunting Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20368","-1","This bow has no real variance.","","","","Bland Bow of Steadiness","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38865","194329","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","60","-1","0","0","58","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","60" +"20369","-1","","","","","Azurite Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9975","49879","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","7","6","7","6","0","0","0","0","0","0","0" +"20370","-1","","","","","Test Staff 90 epic","0.4","0","-41","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123438","617194","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","90","-1","0","0","186","0","0","0","0","280","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","37","16","15","0","0","0","0","0","0","0","60" +"20371","-1","","","","","Blue Murloc Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20372","-1","","","","","Test Staff 77 epic","0.4","0","-20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98126","490631","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","77","-1","0","0","146","0","0","0","0","219","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","21","21","0","0","0","0","0","0","0","60" +"20373","-1","","","","","Stonelash Scorpid Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20374","-1","","","","","Stonelash Pincer Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20375","-1","","","","","Stonelash Flayer Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20376","-1","","","","","Sand Skitterer Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20377","-1","","","","","Rock Stalker Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20378","-1","","","","","Twilight Tablet Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20379","-1","","","","","Noggle's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20380","-1","","","","","Dreamscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43614","218072","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","496","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","15","15","14","0","0","0","0","0","0","0","60" +"20381","-1","","","","","Dreamscale","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20382","-1","Teaches you how to craft a Dreamscale Breastplate.","","","","Pattern: Dreamscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20383","-1","","","","","Head of the Broodlord Lashlayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20384","-1","","","","","Silithid Carapace Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20385","-1","","","","","Deathclasp's Pincer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20387","-1","Filled with a potent funk!","","","","Forsaken Stink Bomb Cluster","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20388","-1","","","","","Lollipop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20389","-1","","","","","Candy Corn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20390","-1","","","","","Candy Bar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20391","-1","","","","","Flimsy Male Gnome Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20392","-1","","","","","Flimsy Female Gnome Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20393","-1","Open your bag quickly as it will fade on logout.","","","","Treat Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131078","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20394","-1","","","","","Twilight Lexicon - Chapter 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20395","-1","","","","","Twilight Lexicon - Chapter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20396","-1","","","","","Twilight Lexicon - Chapter 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20397","-1","","","","","Hallowed Wand - Pirate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20398","-1","","","","","Hallowed Wand - Ninja","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20399","-1","","","","","Hallowed Wand - Leper Gnome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20400","-1","","","","","Pumpkin Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20401","-1","","","","","Restored Twilight Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20402","-1","As an Agent of Nozdormu, only you may take the Silithid Carapace Fragments from the corpses of the silithid. Keep your badge in your pack at all times.","","","","Agent of Nozdormu","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20403","-1","Bears the Seal of the Bronze Flight","","","","Proxy of Nozdormu","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20404","-1","These words are unintelligible","","","","Encrypted Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20405","-1","","","","","Decoded Tablet Transcription","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2807","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20406","-1","","","","","Twilight Cultist Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1929","9645","1","0.15","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20407","-1","","","","","Twilight Cultist Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2581","12905","1","0.15","1","32768","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20408","-1","","","","","Twilight Cultist Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1942","9713","1","0.15","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20409","-1","","","","","Hallowed Wand - Ghost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20410","-1","","","","","Hallowed Wand - Bat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20411","-1","","","","","Hallowed Wand - Skeleton","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20412","-1","","","","","Monster - Polearm, PVPAlliance_A01","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20413","-1","","","","","Hallowed Wand - Random","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20414","-1","","","","","Hallowed Wand - Wisp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20415","-1","This tome appears freshly inked.","","","","The War of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2793","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20416","-1","","","","","Crest of Beckoning: Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20417","-1","","","","","Monster - Glaive - 2 Blade Silver (offhand)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20418","-1","","","","","Crest of Beckoning: Thunder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20419","-1","","","","","Crest of Beckoning: Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20420","-1","","","","","Crest of Beckoning: Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20422","-1","","","","","Twilight Cultist Medallion of Station","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20423","-1","","","","","Sandy Scorpid Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20424","-1","","","","","Sandworm Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20425","-1","","","","","Advisor's Gnarled Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","4","0","0","0","0","0","0","0","0","18" +"20426","-1","","","","","Advisor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","2","0","0","0","0","0","0","0","0","0","18" +"20427","-1","","","","","Battle Healer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20428","-1","","","","","Caretaker's Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20429","-1","","","","","Legionnaire's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","2","0","0","0","0","0","0","0","18" +"20430","-1","","","","","Legionnaire's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20431","-1","","","","","Lorekeeper's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","2","0","0","0","0","0","0","0","0","0","18" +"20432","-1","","","","","Signet of Beckoning: Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20433","-1","","","","","Signet of Beckoning: Thunder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20434","-1","","","","","Lorekeeper's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","4","0","0","0","0","0","0","0","0","18" +"20435","-1","","","","","Signet of Beckoning: Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20436","-1","","","","","Signet of Beckoning: Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20437","-1","","","","","Outrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","18" +"20438","-1","","","","","Outrunner's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","23","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","18" +"20439","-1","","","","","Protector's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","4","4","2","0","0","0","0","0","0","0","18" +"20440","-1","","","","","Protector's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","23","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20441","-1","","","","","Scout's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20442","-1","","","","","Scout's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","2","0","0","0","0","0","0","0","0","18" +"20443","-1","","","","","Sentinel's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","23","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","2","0","0","0","0","0","0","0","0","18" +"20444","-1","","","","","Sentinel's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","2","0","0","0","0","0","0","0","0","18" +"20445","-1","","","","","Test Defense Ring +120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20446","-1","","","","","Test Defense Ring +140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","-116","0","0","0","0","0","0","0","0","0","0" +"20447","-1","","","","","Scepter of Beckoning: Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20448","-1","","","","","Scepter of Beckoning: Thunder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20449","-1","","","","","Scepter of Beckoning: Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20450","-1","","","","","Scepter of Beckoning: Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20451","-1","","","","","Twilight Cultist Ring of Lordship","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","60" +"20452","-1","","","","","Smoked Desert Dumplings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20453","-1","For use with Glyphed Crystals.","","","","Geologist's Transcription Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20454","-1","","","","","Hive'Zora Rubbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20455","-1","","","","","Hive'Ashi Rubbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20456","-1","","","","","Hive'Regal Rubbing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20457","-1","","","","","Hive'Ashi Silithid Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20458","-1","","","","","Hive'Zora Silithid Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20459","-1","","","","","Hive'Regal Silithid Brain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20460","-1","","","","","Brann Bronzebeard's Lost Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2064","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8308","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"20461","-1","","","","","Brann Bronzebeard's Lost Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8308","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"20463","-1","","","","","Glyphed Crystal Prism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20464","-1","","","","","Glyphs of Calling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20465","-1","","","","","Crystal Unlocking Mechanism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20466","-1","","","","","Vyral's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20467","-1","","","","","Torn Recipe Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20468","-1","","","","","Monster - Item, Orb - A01 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20469","-1","","","","","Decoded True Believer Clippings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20470","-1","","","","","Solanian's Scrying Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20471","-1","","","","","Scroll of Scourge Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20472","-1","","","","","Solanian's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20473","-1","","","","","The Arcanist's Compendium, Volume 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20474","-1","","","","","Sunstrider Book Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20475","-1","","","","","Adamantite Arrow Maker","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20476","-1","","","","","Sandstalker Bracers","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15292","76460","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","7","0","0","0","0","0","0","0","0","0","57" +"20477","-1","","","","","Sandstalker Gauntlets","0.2","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15755","78777","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","57" +"20478","-1","","","","","Sandstalker Breastplate","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31624","158121","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","0","0","0","0","0","0","0","0","0","57" +"20479","-1","","","","","Spitfire Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31734","158673","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","16","16","0","0","0","0","0","0","0","0","57" +"20480","-1","","","","","Spitfire Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15924","79620","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","12","0","0","0","0","0","0","0","0","57" +"20481","-1","","","","","Spitfire Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15980","79904","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","9","0","0","0","0","0","0","0","0","57" +"20482","-1","","","","","Arcane Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20483","-1","This arcane sliver glows with an eerie luster.","","","","Tainted Arcane Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8338","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20485","-1","","","","","Duke's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20487","-1","","","","","Lok'delar, Stave of the Ancient Keepers DEP","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","96642","483211","1","1","1","33856","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","75","4","0","0","187","0","0","0","0","282","0","0","0","0","0","0","0","10","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","15","0","0","0","0","0","0","0","0","60" +"20488","-1","","","","","Rhok'delar, Longbow of the Ancient Keepers DEP","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","33856","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","4","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"20489","-1","","","","","Crown of the Council","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20490","-1","A classic Hallow's End treat of the Dwarves.","","","","Ironforge Mint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20491","-1","A classic Hallow's End treat of the Forsaken.","","","","Undercity Mint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20492","-1","A classic Hallow's End treat of the Humans.","","","","Stormwind Nougat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20493","-1","An Orgrimmar classic Hallow's End treat.","","","","Orgrimmar Nougat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20494","-1","A classic Hallow's End treat of the Gnomes.","","","","Gnomeregan Gumdrop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20495","-1","A classic Hallow's End treat of the Darkspear tribe.","","","","Darkspear Gumdrop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20496","-1","A classic Hallow's End treat of the Night Elves.","","","","Darnassus Marzipan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20497","-1","A classic Hallow's End treat of the Tauren.","","","","Thunder Bluff Marzipan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20498","-1","","","","","Silithid Chitin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20499","-1","","","","","Broken Silithid Chitin","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20500","-1","","","","","Light Silithid Carapace","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20501","-1","","","","","Heavy Silithid Carapace","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20502","-1","","","","","Ironbark Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21277","106389","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1803","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","6","0","0","0","0","0","0","0","0","0","0" +"20503","-1","","","","","Enamored Water Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20504","-1","","","","","Lightforged Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37873","189365","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","10","0","10","10","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","9","0","0","0","0","0","0","0","0","47" +"20505","-1","","","","","Chivalrous Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","7","7","0","0","0","0","0","0","0","0" +"20506","-1","Teaches you how to craft Spitfire Bracers.","","","","Pattern: Spitfire Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20507","-1","Teaches you how to craft Spitfire Gauntlets.","","","","Pattern: Spitfire Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20508","-1","Teaches you how to craft a Spitfire Breastplate.","","","","Pattern: Spitfire Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20509","-1","Teaches you how to craft Sandstalker Bracers.","","","","Pattern: Sandstalker Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20510","-1","Teaches you how to craft Sandstalker Gauntlets.","","","","Pattern: Sandstalker Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20511","-1","Teaches you how to craft a Sandstalker Breastplate.","","","","Pattern: Sandstalker Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20512","-1","","","","","Sanctified Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20513","-1","","","","","Abyssal Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","1" +"20514","-1","","","","","Abyssal Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"20515","-1","","","","","Abyssal Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","1" +"20516","-1","Crisp, delicious and hopefully worm-free.","","","","Bobbing Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20517","-1","","","","","Razorsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17113","85565","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","9","10","0","0","0","0","0","0","0","0" +"20518","-1","","","","","Scroll: Create Crest of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20519","-1","","","","","Southsea Pirate Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20520","-1","","","","","Dark Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20521","-1","","","","","Fury Visor","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17358","86790","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","0","0","0","0","0","0","0","0","0","0" +"20522","-1","","","","","Feral Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41554","207772","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","52","-1","0","0","108","0","0","0","0","162","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","16","0","0","0","0","0","0","0","0","0" +"20524","-1","Shadowmaw panthers are known for their exquisite hides.","","","","Shadowhide Leggings","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15146","75730","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","6","0","0","0","0","0","0","0","0","0" +"20525","-1","","","","","Earthen Sigil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20526","-1","","","","","Scroll: Create Crest of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20527","-1","","","","","Scroll: Create Crest of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20528","-1","","","","","Scroll: Create Crest of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20530","-1","","","","","Robes of Servitude","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12735","63675","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","10","0","0","0","0","0","0","0","0","0" +"20531","-1","","","","","Scroll: Create Signet of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20532","-1","","","","","Scroll: Create Signet of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20533","-1","","","","","Scroll: Create Signet of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20534","-1","Dark rituals are trapped in dark gems.","","","","Abyss Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3975","15903","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20535","-1","","","","","Scroll: Create Signet of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20536","-1","","","","","Soul Harvester","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40671","203359","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","0","0","0","0","0","0","0","0","0","0" +"20537","-1","","","","","Runed Stygian Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15963","79816","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","8","0","0","0","0","0","0","0","0","0","58" +"20538","-1","","","","","Runed Stygian Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21361","106806","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","58" +"20539","-1","","","","","Runed Stygian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10717","53589","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","0","0","0","0","0","0","0","0","0","58" +"20540","-1","","","","","Scroll: Create Scepter of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20541","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2810","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20542","-1","","","","","Scroll: Create Scepter of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20543","-1","","","","","Scroll: Create Scepter of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20544","-1","","","","","Scroll: Create Scepter of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20545","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2811","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20546","-1","Teaches you how to sew Runed Stygian Leggings.","","","","Pattern: Runed Stygian Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20547","-1","Teaches you how to sew Runed Stygian Boots.","","","","Pattern: Runed Stygian Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20548","-1","Teaches you how to sew a Runed Stygian Belt.","","","","Pattern: Runed Stygian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20549","-1","","","","","Darkrune Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18192","90961","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","0","0","0","0","0","0","0","0","0","58" +"20550","-1","","","","","Darkrune Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36308","181541","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","0","0","0","0","0","0","0","0","0","58" +"20551","-1","","","","","Darkrune Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27279","136399","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","13","0","0","0","0","0","0","0","0","0","58" +"20552","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2812","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20553","-1","Teaches you how to make Darkrune Gauntlets.","","","","Plans: Darkrune Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20554","-1","Teaches you how to make a Darkrune Breastplate.","","","","Plans: Darkrune Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20555","-1","Teaches you how to make a Darkrune Helm.","","","","Plans: Darkrune Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20556","-1","","","","","Wildstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40667","203339","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","90","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","10","9","10","0","0","0","0","0","0","0","0" +"20557","-1","","","","","Hallow's End Pumpkin Treat","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","175","3500","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20558","-1","Medal awarded for fighting in Warsong Gulch","","","","Warsong Gulch Mark of Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20559","-1","Medal awarded for fighting in Arathi Basin","","","","Arathi Basin Mark of Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20560","-1","Medal awarded for fighting in Alterac Valley","","","","Alterac Valley Mark of Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20561","-1","","","","","Flimsy Male Dwarf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20562","-1","","","","","Flimsy Female Dwarf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20563","-1","","","","","Flimsy Female Nightelf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20564","-1","","","","","Flimsy Male Nightelf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20565","-1","","","","","Flimsy Female Human Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20566","-1","","","","","Flimsy Male Human Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20567","-1","","","","","Flimsy Female Troll Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20568","-1","","","","","Flimsy Male Troll Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20569","-1","","","","","Flimsy Female Orc Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20570","-1","","","","","Flimsy Male Orc Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20571","-1","","","","","Flimsy Female Tauren Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20572","-1","","","","","Flimsy Male Tauren Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20573","-1","","","","","Flimsy Male Undead Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20574","-1","","","","","Flimsy Female Undead Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20575","-1","","","","","Black Whelp Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","743","3719","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","15" +"20576","-1","Teaches you how to craft a Black Whelp Tunic.","","","","Pattern: Black Whelp Tunic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","350","1400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","165","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20577","-1","","","","","Nightmare Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72906","364533","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","71","32767","0","0","99","0","0","0","0","185","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"20578","-1","","","","","Emerald Dragonfang","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73189","365949","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","71","-1","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","0","0","0","0","0","0","0","0","0","60" +"20579","-1","","","","","Green Dragonskin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22041","110209","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","0","0","0","0","0","0","0","0","0","60" +"20580","-1","","","","","Hammer of Bestial Fury","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","73748","368742","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","71","-1","0","0","69","0","0","0","0","130","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","13","12","0","0","0","0","0","0","0","0","60" +"20581","-1","","","","","Staff of Rampant Growth","0.4","0","-11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92539","462697","1","1","1","524288","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","71","-1","0","0","142","0","0","0","0","213","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20582","-1","","","","","Trance Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62802","251211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","8","8","0","0","0","0","0","0","0","60" +"20583","-1","","","","","Sturdy Female Dwarf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4738","23694","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20584","-1","","","","","Sturdy Female Gnome Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4756","23782","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20585","-1","","","","","Sturdy Female Human Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4774","23872","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20586","-1","","","","","Sturdy Female Nightelf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4792","23962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20587","-1","","","","","Sturdy Female Orc Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4810","24051","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20588","-1","","","","","Sturdy Female Tauren Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4827","24139","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20589","-1","","","","","Sturdy Female Troll Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4845","24229","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20590","-1","","","","","Sturdy Female Undead Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4992","24963","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20591","-1","","","","","Sturdy Male Dwarf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5010","25053","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20592","-1","","","","","Sturdy Male Gnome Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5028","25140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20593","-1","","","","","Sturdy Male Human Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5046","25230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20594","-1","","","","","Sturdy Male Nightelf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5064","25320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20595","-1","","","","","Sturdy Male Orc Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5082","25410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20596","-1","","","","","Sturdy Male Tauren Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5099","25498","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20597","-1","","","","","Sturdy Male Troll Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4631","23155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20598","-1","","","","","Sturdy Male Undead Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4649","23245","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20599","-1","","","","","Polished Ironwood Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55093","275466","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","71","-1","0","0","124","0","0","0","0","186","0","0","0","0","0","0","0","7","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","5","0","0","0","0","0","0","0","0","0","60" +"20600","-1","","","","","Malfurion's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","98660","394641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","0","0","0","0","0","0","0","0","0","60" +"20601","-1","","","","","Sack of Spoils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20602","-1","","","","","Chest of Spoils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20603","-1","","","","","Bag of Spoils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20604","-1","Fights the funk of the Forsaken with the power of pine!","","","","Stink Bomb Cleaner","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","500","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20605","-1","Suitable for ruining the contents of a keg...","","","","Rotten Eggs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20606","-1","","","","","Amber Voodoo Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20607","-1","","","","","Blue Voodoo Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20608","-1","","","","","Green Voodoo Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20609","-1","","","","","Voodoo Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20610","-1","","","","","Bloodshot Spider Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20611","-1","","","","","Thick Black Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20612","-1","","","","","Inert Scourgestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20613","-1","","","","","Rotting Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20614","-1","","","","","Bloodvenom Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20615","-1","","","","","Dragonspur Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19996","99980","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","4","4","4","4","4","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","0","0","0","0","0","0","0","0","0","60" +"20616","-1","","","","","Dragonbone Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28254","141271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","9","0","0","0","0","0","0","0","0","60" +"20617","-1","","","","","Ancient Corroded Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44264","221323","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","16","11","21","0","0","0","0","0","0","60" +"20618","-1","","","","","Gloves of Delusional Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14810","74053","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","16","0","0","0","0","0","0","0","0","60" +"20619","-1","","","","","Acid Inscribed Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38954","194770","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","8","0","0","0","0","0","0","0","0","60" +"20620","-1","","","","","Holy Mightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20621","-1","","","","","Boots of the Endless Moor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33455","167276","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20622","-1","","","","","Dragonheart Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","114103","456415","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","6","6","0","0","0","0","0","0","0","60" +"20623","-1","","","","","Circlet of Restless Dreams","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29073","145369","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","38","14","0","0","0","0","0","0","0","60" +"20624","-1","","","","","Ring of the Unliving","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143303","573214","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","16","0","0","0","0","0","0","0","0","60" +"20625","-1","","","","","Belt of the Dark Bog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15433","77168","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","8","0","0","0","0","0","0","0","0","60" +"20626","-1","","","","","Black Bark Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15488","77444","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","4","4","0","0","0","0","0","0","0","60" +"20627","-1","","","","","Dark Heart Pants","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38863","194318","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","0","0","0","0","0","0","0","0","0","60" +"20628","-1","","","","","Deviate Growth Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29608","148041","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","16","14","0","0","0","0","0","0","0","0","60" +"20629","-1","","","","","Malignant Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35813","179069","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","14","12","11","0","0","0","0","0","0","60" +"20630","-1","","","","","Gauntlets of the Shining Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27991","139956","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","12","16","10","15","0","0","0","0","0","60" +"20631","-1","","","","","Mendicant's Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23655","118278","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","12","0","0","0","0","0","0","0","0","60" +"20632","-1","","","","","Mindtear Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101281","405124","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","6","0","0","0","0","0","0","0","0","60" +"20633","-1","","","","","Unnatural Leather Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30139","150698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","184","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","8","0","0","0","0","0","0","0","0","60" +"20634","-1","","","","","Boots of Fright","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30247","151236","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","10","11","0","0","0","0","0","0","0","60" +"20635","-1","","","","","Jade Inlaid Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31990","159954","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","18","16","8","0","0","0","0","0","0","0","60" +"20636","-1","","","","","Hibernation Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89103","356415","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20637","-1","","","","","Acid Inscribed Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38649","193248","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","697","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","12","0","0","0","0","0","0","0","0","60" +"20638","-1","","","","","Leggings of the Demented Mind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45658","228293","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","25","16","8","0","0","0","0","0","0","60" +"20639","-1","","","","","Strangely Glyphed Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53469","267345","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","813","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","12","21","16","20","0","0","0","0","0","60" +"20640","-1","","","","","Southsea Head Bucket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8405","42027","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","15","6","0","0","0","0","0","0","0","0","0" +"20641","-1","","","","","Southsea Mojo Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4829","24149","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20642","-1","","","","","Antiquated Nobleman's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7539","37696","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20643","-1","","","","","Undercity Reservist's Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7094","35471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","10","11","10","0","0","0","0","0","0","0","0" +"20644","-1","An unknown object shrouded in nightmares.","","","","Nightmare Engulfed Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8446","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"20645","-1","","","","","Nature's Whisper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21785","87141","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","5","0","0","0","0","0","0","0","0","0" +"20646","-1","","","","","Sandstrider's Mark","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35956","179781","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","59","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","11","0","0","0","0","0","0","0","0","0","0" +"20647","-1","","","","","Black Crystal Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","48117","240585","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","59","-1","0","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","3","0","0","0","0","0","0","0","0","0","0" +"20648","-1","","","","","Cold Forged Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","52827","264138","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","63","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","9","0","0","0","0","0","0","0","0","0" +"20649","-1","","","","","Sunprism Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22425","89701","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","7","0","0","0","0","0","0","0","0","0" +"20650","-1","","","","","Desert Wind Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14980","74902","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","10","0","0","0","0","0","0","0","0","0" +"20651","-1","","","","","Orange Murloc Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20652","-1","","","","","Abyssal Cloth Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12858","64291","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8654","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20653","-1","","","","","Abyssal Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15141","75705","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8657","0","0","0","0","0","0","0","0","0","0","356","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20654","-1","","","","","Amethyst War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60175","300876","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","60","-1","0","0","119","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","9","6","0","0","0","0","0","0","0","0","55" +"20655","-1","","","","","Abyssal Cloth Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8054","40270","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8654","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20656","-1","","","","","Abyssal Mail Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18269","91348","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8675","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20657","-1","","","","","Crystal Tipped Stiletto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48687","243437","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","60","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","55" +"20658","-1","","","","","Abyssal Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15272","76361","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8655","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20659","-1","","","","","Abyssal Mail Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12263","61319","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8659","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20660","-1","","","","","Stonecutting Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61543","307716","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","60","-1","0","0","152","0","0","0","0","228","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","12","0","0","0","0","0","0","0","0","55" +"20661","-1","","","","","Abyssal Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10295","51477","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8655","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20662","-1","","","","","Abyssal Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21659","108299","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","8657","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","55" +"20663","-1","","","","","Deep Strike Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37336","186681","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","60","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","6","6","4","0","0","0","0","0","0","0","55" +"20664","-1","","","","","Abyssal Cloth Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8909","44547","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8660","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20665","-1","","","","","Abyssal Leather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25775","128879","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8664","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20666","-1","","","","","Hardened Steel Warhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","51740","258704","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","62","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","6","0","0","0","0","0","0","0","0","57" +"20667","-1","","","","","Abyssal Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11258","56294","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8658","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20668","-1","","","","","Abyssal Mail Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31268","156342","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8663","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20669","-1","","","","","Darkstone Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65379","326895","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","62","-1","0","0","152","0","0","0","0","229","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","17","0","0","0","0","0","0","0","0","0","57" +"20670","-1","","","","","Abyssal Mail Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12679","63395","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8659","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20671","-1","","","","","Abyssal Plate Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34239","171196","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8662","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20672","-1","","","","","Sparkling Crystal Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36826","184133","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","0","0","0","0","0","0","0","0","0","57" +"20673","-1","","","","","Abyssal Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15048","75242","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","8661","0","0","0","0","0","0","0","0","0","0","346","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20674","-1","","","","","Abyssal Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19792","98961","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","8665","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20675","-1","","","","","Soulrender","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49664","248324","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","62","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","57" +"20676","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2816","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20677","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2817","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20678","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2819","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20679","-1","A decoded True Believer article","","","","Decoded Twilight Text","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2820","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20680","-1","","","","","Abyssal Mail Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24739","123698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8672","0","0","0","0","0","0","0","0","0","0","298","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20681","-1","","","","","Abyssal Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13734","68672","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8667","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20682","-1","","","","","Elemental Focus Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73553","294212","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","8","0","0","0","0","0","0","0","0","60" +"20683","-1","","","","","Abyssal Plate Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28999","144996","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8670","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20684","-1","","","","","Abyssal Mail Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16664","83320","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8668","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20685","-1","","","","","Wavefront Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61617","246471","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","6","5","0","0","0","0","0","0","0","0","60" +"20686","-1","","","","","Abyssal Cloth Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17224","86123","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8673","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20687","-1","","","","","Abyssal Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20282","101412","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8669","0","0","0","0","0","0","0","0","0","0","309","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20688","-1","","","","","Earthen Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47483","237416","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","2836","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","19","0","0","0","0","0","0","0","0","0","60" +"20689","-1","","","","","Abyssal Leather Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21761","108805","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8671","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20690","-1","","","","","Abyssal Cloth Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10538","52693","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","8666","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","60" +"20691","-1","","","","","Windshear Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20361","101805","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","4","5","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","15","14","8","7","0","0","0","0","0","0","60" +"20692","-1","","","","","Multicolored Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13362","53451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","3499","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","0","0","0","0","0","0","0","0","0","55" +"20693","-1","","","","","Weighted Cloak","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11985","59926","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","8","8","0","0","0","0","0","0","0","0","55" +"20694","-1","","","","","Glowing Black Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17828","71314","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","0","0","0","0","0","0","0","0","0","55" +"20695","-1","","","","","Abyssal War Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36253","145012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","58" +"20696","-1","","","","","Crystal Spiked Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63158","315791","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","63","-1","0","0","168","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","0","0","0","0","0","0","0","0","0","58" +"20697","-1","","","","","Crystalline Threaded Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15213","76069","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","4","5","0","0","0","0","0","0","0","0","58" +"20698","-1","","","","","Elemental Attuned Blade","0.6","0","-4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","67873","339366","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","6","0","0","0","0","0","0","0","0","0","58" +"20699","-1","","","","","Cenarion Reservist's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35767","178838","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20700","-1","","","","","Cenarion Reservist's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35901","179509","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20701","-1","","","","","Cenarion Reservist's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30885","154425","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20702","-1","","","","","Cenarion Reservist's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31824","159120","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","324","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","13","0","0","0","0","0","0","0","0","0" +"20703","-1","","","","","Cenarion Reservist's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26616","133080","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20704","-1","","","","","Cenarion Reservist's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26711","133559","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20705","-1","","","","","Cenarion Reservist's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21444","107220","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20706","-1","","","","","Cenarion Reservist's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21520","107604","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20707","-1","","","","","Cenarion Reservist's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21597","107987","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","0","0","0","0","0","0","0","0","0","0" +"20708","-1","","","","","Tightly Sealed Trunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20709","-1","","","","","Rumsey Rum Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20710","-1","","","","","Crystal Encrusted Greaves","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25873","129365","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","0","0","0","0","0","0","0","0","0","0" +"20711","-1","","","","","Crystal Lined Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25973","129867","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","12","0","0","0","0","0","0","0","0" +"20712","-1","","","","","Wastewalker's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14926","74631","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","3","6","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","10","10","10","0","0","0","0","0","0" +"20713","-1","","","","","Desertstalkers's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14983","74919","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","10","16","0","0","0","0","0","0","0","0" +"20714","-1","","","","","Sandstorm Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18801","94008","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","0","0","0","0","0","0","0","0","0" +"20715","-1","","","","","Dunestalker's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18873","94368","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","10","9","0","0","0","0","0","0","0","0" +"20716","-1","","","","","Sandworm Skin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10103","50516","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","8","5","0","0","0","0","0","0","0","0","0" +"20717","-1","","","","","Desert Bloom Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10141","50708","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","5","5","5","0","0","0","0","0","0","0","0" +"20718","-1","","","","","Monster - Staff, Jeweled Yellow Staff w/Low Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20719","-1","","","","","Monster - Staff, Jeweled D01/B02 Yellow w/Low Red Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20720","-1","","","","","Dark Whisper Blade","0.6","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54064","270320","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","65","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","60" +"20721","-1","","","","","Band of the Cultist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38790","155162","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","12","7","0","0","0","0","0","0","0","60" +"20722","-1","","","","","Crystal Slugthrower","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40843","204216","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","65","-1","0","0","82","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","4","0","0","0","0","0","0","0","0","0","60" +"20723","-1","Also serves as a mining pick.","","","","Brann's Trusty Pick","0.6","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43760","218803","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","11","0","0","0","0","0","0","0","2700","0","0","0","62","-1","0","0","70","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20724","-1","","","","","Corrupted Blackwood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54892","274463","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","62","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","11","0","0","0","0","0","0","0","0","0","0" +"20725","-1","","","","","Nexus Crystal","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20726","-1","Teaches you how to permanently enchant gloves to increase the threat that the wearer generates against monsters.","","","","Formula: Enchant Gloves - Threat","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20727","-1","Teaches you how to permanently enchant gloves to increase the shadow damage done by spells and abilities by 20.","","","","Formula: Enchant Gloves - Shadow Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20728","-1","Teaches you how to permanently enchant gloves to increase the frost damage done by spells and abilities by 20.","","","","Formula: Enchant Gloves - Frost Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20729","-1","Teaches you how to permanently enchant gloves to increase the fire damage done by spells and abilities by 20.","","","","Formula: Enchant Gloves - Fire Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20730","-1","Teaches you how to permanently enchant gloves to increase the healing done by spells and abilities by 30 and damage spells by up to 10.","","","","Formula: Enchant Gloves - Healing Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20731","-1","Teaches you how to permanently enchant gloves to increase Agility by 15.","","","","Formula: Enchant Gloves - Superior Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20732","-1","Teaches you how to permanently enchant a cloak to increase Fire Resistance by 15 .","","","","Formula: Enchant Cloak - Greater Fire Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20733","-1","Teaches you how to permanently enchant a cloak to increase Nature Resistance by 15 .","","","","Formula: Enchant Cloak - Greater Nature Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20734","-1","Teaches you how to permanently enchant a cloak to increase stealth.","","","","Formula: Enchant Cloak - Stealth","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20735","-1","Teaches you how to permanently enchant a cloak to reduce how threatening the wearer is to monsters by 2%.","","","","Formula: Enchant Cloak - Subtlety","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20736","-1","Teaches you how to permanently enchant a cloak to give 12 dodge rating.","","","","Formula: Enchant Cloak - Dodge","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20737","-1","","","","","Singed Corestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20738","-1","","","","","Monster - Mace, Scepter of the Shifting Sands","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20739","-1","","","","","Deadwood Headdress Feather DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2903","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","5","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20740","-1","","","","","Winterfall Spirit Beads DEPRECATED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20741","-1","The totem is thick with the taint of corruption.","","","","Deadwood Ritual Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8470","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20742","-1","The totem is thick with the taint of corruption.","","","","Winterfall Ritual Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8471","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"20743","-1","","","","","Unstable Mana Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20744","-1","","","","","Minor Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"20745","-1","","","","","Minor Mana Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20" +"20746","-1","","","","","Lesser Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"20747","-1","","","","","Lesser Mana Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20748","-1","","","","","Brilliant Mana Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20749","-1","","","","","Brilliant Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"20750","-1","","","","","Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"20752","-1","Teaches you how to create Minor Mana Oil.","","","","Formula: Minor Mana Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","333","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20753","-1","Teaches you how to create Lesser Wizard Oil.","","","","Formula: Lesser Wizard Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","333","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20754","-1","Teaches you how to create Lesser Mana Oil.","","","","Formula: Lesser Mana Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","333","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20755","-1","Teaches you how to create Wizard Oil.","","","","Formula: Wizard Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","333","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20756","-1","Teaches you how to create Brilliant Wizard Oil.","","","","Formula: Brilliant Wizard Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20757","-1","Teaches you how to create Brilliant Mana Oil.","","","","Formula: Brilliant Mana Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","270","300","333","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20758","-1","Teaches you how to create Minor Wizard Oil.","","","","Formula: Minor Wizard Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","333","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20759","-1","","","","","Otembe's Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20760","-1","","","","","Chieftain Zul'Marosh's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20761","-1","Teaches you how to transmute a Heart of Fire into three Elemental Fires.","","","","Recipe: Transmute Elemental Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20762","-1","","","","","DEPRECATED: Crystallized Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2902","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20763","-1","","","","","Broken Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","312","1250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20764","-1","","","","","Prospector Anvilward's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20765","-1","","","","","Incriminating Documents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8482","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4" +"20766","-1","","","","","Slimy Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20767","-1","","","","","Scum Covered Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20768","-1","","","","","Oozing Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20769","-1","","","","","Disgusting Oozeling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20770","-1","","","","","Bubbling Green Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20771","-1","","","","","Tainted Soil Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20772","-1","","","","","Springpaw Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20773","-1","","","","","63 green shaman coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19237","96185","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","18","0","0","0","0","0","0","0","0","0" +"20774","-1","","","","","63 green shaman pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19394","96974","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","14","0","0","0","0","0","0","0","0","0" +"20775","-1","","","","","63 green shaman vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25841","129205","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","18","19","0","0","0","0","0","0","0","0","0" +"20776","-1","","","","","63 green shaman bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12967","64836","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20777","-1","","","","","63 green shaman gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13015","65075","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","14","14","0","0","0","0","0","0","0","0","0" +"20778","-1","","","","","63 green shaman cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13063","65315","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","189","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","14","0","0","0","0","0","0","0","0","0" +"20779","-1","","","","","63 green shaman kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26222","131110","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","295","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","18","0","0","0","0","0","0","0","0","0" +"20780","-1","","","","","63 green shaman boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19824","99121","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","14","0","0","0","0","0","0","0","0","0" +"20781","-1","","","","","63 green shaman neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12377","49510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20782","-1","","","","","63 green shaman back","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13253","66267","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20783","-1","","","","","63 green shaman ring","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6646","26584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","10","0","0","0","0","0","0","0","0","0" +"20784","-1","","","","","63 green shaman weapon","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51643","258219","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","63","-1","0","0","139","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","18","19","0","0","0","0","0","0","0","0","0" +"20785","-1","","","","","90 green shaman back","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16948","84742","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","16","15","0","0","0","0","0","0","0","0","0" +"20786","-1","","","","","90 green shaman bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17013","85069","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","15","0","0","0","0","0","0","0","0","0" +"20787","-1","","","","","90 green shaman boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25732","128663","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","21","20","0","0","0","0","0","0","0","0","0" +"20788","-1","","","","","90 green shaman coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25714","128570","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","28","27","0","0","0","0","0","0","0","0","0" +"20789","-1","","","","","90 green shaman cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17208","86040","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","21","20","0","0","0","0","0","0","0","0","0" +"20790","-1","","","","","90 green shaman gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17273","86366","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","20","0","0","0","0","0","0","0","0","0" +"20791","-1","","","","","90 green shaman kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34673","173368","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","412","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","28","27","0","0","0","0","0","0","0","0","0" +"20792","-1","","","","","90 green shaman neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12377","49510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","16","15","0","0","0","0","0","0","0","0","0" +"20793","-1","","","","","90 green shaman pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26317","131588","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","20","21","0","0","0","0","0","0","0","0","0" +"20794","-1","","","","","90 green shaman ring","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6646","26584","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","16","15","0","0","0","0","0","0","0","0","0" +"20795","-1","","","","","90 green shaman vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35192","175963","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","28","27","0","0","0","0","0","0","0","0","0" +"20796","-1","","","","","90 green shaman weapon","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73590","367950","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","90","-1","0","0","177","0","0","0","0","296","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","0","0","0","0","0","0","0","0","0" +"20797","-1","These collars were used as markings for the lynxes of Sunstrider Isle.","","","","Lynx Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20798","-1","","","","","Intact Arcane Converter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8489","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20799","-1","","","","","Felendren's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20800","-1","","","","","Cenarion Logistics Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20801","-1","","","","","Cenarion Tactical Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20802","-1","","","","","Cenarion Combat Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20803","-1","","","","","Twilight Battle Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20804","-1","","","","","Erona's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20805","-1","","","","","Followup Logistics Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20806","-1","","","","","Logistics Task Briefing X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8496","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20807","-1","","","","","Logistics Task Briefing I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8497","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20808","-1","","","","","Combat Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20809","-1","","","","","Tactical Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20810","-1","","","","","Signed Field Duty Papers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20812","-1","","","","","Tattered Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20813","-1","","","","","Lynx Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20814","-1","","","","","Broken Master's Throwing Dagger","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","2500","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","60" +"20815","-1","","","","","Jeweler's Kit","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20816","-1","","","","","Delicate Copper Wire","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20817","-1","","","","","Bronze Setting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20818","-1","","","","","Elegant Silver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","2","0","0","0","0","0","0","0","0","17" +"20819","-1","","","","","Cut Malachite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20820","-1","","","","","Simple Pearl Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","0","0","0","0","0","0","0","0","0","17" +"20821","-1","","","","","Inlaid Malachite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","0","0","0","0","0","0","0","0","0","15" +"20822","-1","","","","","Cut Tigerseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20823","-1","","","","","Gloom Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","837","3350","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","19" +"20824","-1","","","","","Simple Grinder","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20825","-1","","","","","Cut Shadowgem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20826","-1","","","","","Heavy Silver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2207","8830","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","3476","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","22" +"20827","-1","","","","","Ring of Silver Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","3","0","0","0","0","0","0","0","0","21" +"20828","-1","","","","","Ring of Twilight Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","2710","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","4","4","0","0","0","0","0","0","0","0","23" +"20829","-1","","","","","Cut Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20830","-1","","","","","Amulet of the Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","6140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","4","0","0","0","0","0","0","0","0","25" +"20831","-1","","","","","Heavy Golden Necklace of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","6140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","5","5","0","0","0","0","0","0","0","0","30" +"20832","-1","","","","","Moonsoul Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1800","9003","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","6","0","0","0","0","0","0","0","0","0","26" +"20833","-1","","","","","Wicked Moonstone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1540","6160","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","27" +"20834","-1","","","","","Ornate Spyglass XT","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","27","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20835","-1","","","","","Sunstrider Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20836","-1","","","","","Sunstrider Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","5","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20837","-1","","","","","Sunstrider Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","130","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","5","-1","0","0","5","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20838","-1","","","","","Sunstrider Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","98","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","5","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"20839","-1","","","","","Sunstrider Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32","164","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","5","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20840","-1","","","","","Sunstrider Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26","131","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20841","-1","","","","","Sunstrider Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20842","-1","","","","","Frayed Tender Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20843","-1","","","","","Smashed Petal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20844","-1","","","","","Deadly Poison V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"20845","-1","","","","","Torn Wyrm Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20846","-1","","","","","Faintly Glowing Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20847","-1","","","","","Wraith Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20848","-1","","","","","Sparkling Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20849","-1","","","","","Arcane Forged Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","4","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20850","-1","","","","","Arcane Forged Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20851","-1","","","","","Arcane Forged Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","85","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","4","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20852","-1","","","","","Arcane Forged Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","85","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","4","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20853","-1","","","","","Mana Gathering Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21","107","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","4","-1","0","0","5","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20854","-1","Teaches you how to craft an Amulet of the Moon.","","","","Design: Amulet of the Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","450","1800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","755","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20855","-1","Teaches you how to craft a Wicked Moonstone Ring.","","","","Design: Wicked Moonstone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","755","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20856","-1","Teaches you how to craft a Heavy Golden Necklace of Battle.","","","","Design: Heavy Golden Necklace of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","755","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20857","-1","","","","","Honey Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20858","-1","","","","","Stone Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20859","-1","","","","","Gold Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20860","-1","","","","","Silver Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20861","-1","","","","","Bronze Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20862","-1","","","","","Crystal Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20863","-1","","","","","Clay Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20864","-1","","","","","Bone Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20865","-1","","","","","Ivory Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20866","-1","","","","","Azure Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20867","-1","","","","","Onyx Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","265","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20868","-1","","","","","Lambent Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","21","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20869","-1","","","","","Amber Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","326","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20870","-1","","","","","Jasper Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20871","-1","","","","","Obsidian Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20872","-1","","","","","Vermillion Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1098","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20873","-1","","","","","Alabaster Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20874","-1","","","","","Idol of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","141","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20875","-1","","","","","Idol of Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","393","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20876","-1","","","","","Idol of Death","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20877","-1","","","","","Idol of the Sage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","466","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20878","-1","","","","","Idol of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1362","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20879","-1","","","","","Idol of Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20881","-1","","","","","Idol of Strife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20882","-1","","","","","Idol of War","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","1037","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20883","-1","","","","","Qiraji Glyphed Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20884","-1","","","","","Qiraji Magisterial Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1219","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20885","-1","","","","","Qiraji Martial Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20886","-1","","","","","Qiraji Spiked Hilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","79","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20887","-1","","","","","Qiraji Engraved Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20888","-1","","","","","Qiraji Ceremonial Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","284","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20889","-1","","","","","Qiraji Regal Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1350","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"20890","-1","","","","","Qiraji Ornate Hilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20891","-1","","","","","Neophyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20892","-1","","","","","Acolyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20893","-1","","","","","Apprentice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20894","-1","","","","","Apprentice's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20895","-1","","","","","Apprentice's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20896","-1","","","","","Lookout's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20897","-1","","","","","Lookout's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20898","-1","","","","","Lookout's Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20899","-1","","","","","Warder's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20900","-1","","","","","Warder's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20901","-1","","","","","Warder's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20902","-1","","","","","Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20903","-1","","","","","Recruit's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20904","-1","","","","","Recruit's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0" +"20906","-1","","","","","Braided Copper Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","0","0","0","0","0","0","0","0","0","10" +"20907","-1","","","","","Solid Bronze Ring","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1200","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","17" +"20908","-1","","","","","Festival of Nian Firework","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","13","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20909","-1","","","","","Barbaric Iron Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1010","4040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","25" +"20910","-1","","","","","Stiff Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","63","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","4","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"20911","-1","","","","","Light Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20912","-1","","","","","Large Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20913","-1","","","","","Medium Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20914","-1","","","","","Unadorned Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20915","-1","","","","","Unadorned Chain Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20916","-1","","","","","Unadorned Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20917","-1","","","","","Unadorned Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20918","-1","","","","","Unadorned Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20919","-1","","","","","Unadorned Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20920","-1","","","","","Sun Cured Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20921","-1","","","","","Sun Cured Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20922","-1","","","","","Sun Cured Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20923","-1","","","","","Sun Cured Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20924","-1","","","","","Sun Cured Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","62","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20925","-1","","","","","Sun Cured Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","62","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20926","-1","","","","","Vek'nilash's Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20927","-1","","","","","Ouro's Intact Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","153","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20928","-1","","","","","Qiraji Bindings of Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","29","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20929","-1","","","","","Carapace of the Old God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","79","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20930","-1","","","","","Vek'lor's Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20931","-1","","","","","Skin of the Great Sandworm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1350","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20932","-1","","","","","Qiraji Bindings of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1474","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20933","-1","","","","","Husk of the Old God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20934","-1","","","","","Wraith Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20935","-1","","","","","Tainted Wraith Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20936","-1","","","","","Qiraji Blessed Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20937","-1","","","","","Qiraji Encased Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","401","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"20938","-1","","","","","Falconwing Square Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8547","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20939","-1","","","","","Logistics Task Briefing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8540","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20940","-1","","","","","Logistics Task Briefing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8541","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20941","-1","","","","","Combat Task Briefing XII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8501","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20942","-1","","","","","Combat Task Briefing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8502","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20943","-1","","","","","Tactical Task Briefing X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8498","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20944","-1","","","","","Tactical Task Briefing IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8740","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20945","-1","","","","","Tactical Task Briefing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8537","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20946","-1","","","","","Tactical Task Briefing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8536","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"20947","-1","","","","","Tactical Task Briefing IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8535","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20948","-1","","","","","Tactical Task Briefing V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8538","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"20949","-1","","","","","Magical Ledger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8575","2822","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","11","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20950","-1","","","","","Pendant of the Agate Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1535","6140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","4","4","0","0","0","0","0","0","0","0","26" +"20951","-1","","","","","Narain's Scrying Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20952","-1","","","","","Cut Agate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","450","1800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20953","-1","","","","","Cut Jade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20954","-1","","","","","Heavy Iron Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5681","28409","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","32","-1","0","0","18","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","27" +"20955","-1","","","","","Golden Dragon Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","665","2660","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","28" +"20956","-1","","","","","Silver Rose Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2777","11110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","29" +"20957","-1","","","","","Cut Citrine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20958","-1","","","","","Blazing Citrine Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1130","4520","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","30" +"20959","-1","","","","","The Jade Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","6880","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","32" +"20960","-1","","","","","Engraved Truesilver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","6880","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","3","5","6","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","3","3","3","3","0","0","0","0","0","32" +"20961","-1","","","","","Citrine Ring of Rapid Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1720","6880","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","33" +"20962","-1","","","","","Cut Aquamarine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1100","4400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20963","-1","","","","","Mithril Filigree","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","900","3600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20964","-1","","","","","Aquamarine Signet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6646","26584","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","42","-1","0","3482","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","37" +"20965","-1","","","","","Cut Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5500","22000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20966","-1","","","","","Jade Pendant of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","0","0","0","0","0","0","0","0","0","31" +"20967","-1","","","","","Citrine Pendant of Golden Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","0","0","0","0","0","0","0","0","0","34" +"20969","-1","","","","","Ruby Crown of Restoration","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5989","29947","1","1","1","64","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","0","0","0","0","0","0","0","0","0","40" +"20970","-1","Teaches you how to craft a Pendant of the Agate Shield.","","","","Design: Pendant of the Agate Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","755","31","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20971","-1","Teaches you how to craft Heavy Iron Knuckles.","","","","Design: Heavy Iron Knuckles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","375","1500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","755","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20972","-1","Teaches you how to craft a Silver Rose Pendant.","","","","Design: Silver Rose Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","755","34","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20973","-1","Teaches you how to craft a Blazing Citrine Ring.","","","","Design: Blazing Citrine Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","500","2000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","755","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20974","-1","Teaches you how to craft a Jade Pendant of Blasting.","","","","Design: Jade Pendant of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","160","755","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20975","-1","Teaches you how to craft The Jade Eye.","","","","Design: The Jade Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","170","755","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20976","-1","Teaches you how to craft a Citrine Pendant of Golden Healing.","","","","Design: Citrine Pendant of Golden Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","190","755","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"20977","-1","","","","","Recruit's Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20978","-1","","","","","Apprentice's Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20979","-1","","","","","Warder's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20980","-1","","","","","Warder's Shortbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","27","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","2","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","1" +"20981","-1","","","","","Neophyte's Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","2","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20982","-1","","","","","Sharp Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","2","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20983","-1","","","","","Acolyte's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","2","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20984","-1","","","","","Recruit's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"20985","-1","","","","","Light Cloth Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","38","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20986","-1","","","","","Light Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","51","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20987","-1","","","","","Light Cloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20988","-1","","","","","Light Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20989","-1","","","","","Light Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20990","-1","","","","","Light Cloth Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","52","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20991","-1","","","","","Daylight Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20992","-1","","","","","Sunrise Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20993","-1","","","","","Lynxskin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20994","-1","","","","","Green Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","73","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"20995","-1","","","","","Well Watcher Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20996","-1","","","","","Sunspire Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20997","-1","","","","","Green Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","56","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20998","-1","","","","","Wyrm Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"20999","-1","","","","","Green Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","37","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21000","-1","","","","","Vigorous Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","31","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21001","-1","","","","","Striding Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21002","-1","","","","","Unkempt Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21003","-1","","","","","Unkempt Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21004","-1","","","","","Unkempt Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21005","-1","","","","","Unkempt Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21006","-1","","","","","Unkempt Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21007","-1","","","","","Unkempt Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21008","-1","","","","","Unkempt Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21009","-1","","","","","Scraggy Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","20","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21010","-1","","","","","Scraggy Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21011","-1","","","","","Scraggy Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21012","-1","","","","","Scraggy Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21013","-1","","","","","Scraggy Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21014","-1","","","","","Scraggy Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","40","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21015","-1","","","","","Shoddy Chain Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21016","-1","","","","","Shoddy Chain Vest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21017","-1","","","","","Shoddy Chain Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21018","-1","","","","","Shoddy Chain Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21019","-1","","","","","Shoddy Chain Bracers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21020","-1","","","","","Shoddy Chain Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","-1","0","0","0","0","0","0","0","0","0","0","0","0","34","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21021","-1","","","","","Battered Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","35","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21022","-1","","","","","Weather Beaten Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21023","-1","","","","","Dirge's Kickin' Chimaerok Chops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"21024","-1","","","","","Chimaerok Tenderloin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21025","-1","Teaches you how to cook Dirge's Kickin' Chimaerok Chops.","","","","Recipe: Dirge's Kickin' Chimaerok Chops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21026","-1","","","","","Oracle Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21027","-1","It really does look like a big chicken.","","","","Lakmaeran's Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21028","-1","","","","","500 Pound Chicken","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21029","-1","","","","","Ransom Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21030","-1","","","","","Darnassus Kimchi Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"21031","-1","","","","","Cabbage Kimchi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"21032","-1","","","","","Meridith's Love Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21033","-1","","","","","Radish Kimchi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"21034","-1","","","","","3300 Test 2h Axe 60 white","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30193","150966","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","60","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","55" +"21035","-1","","","","","1700 Test Dagger 60 white","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24246","121233","1","1","1","16","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","60","-1","0","0","41","0","0","0","0","77","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","55" +"21036","-1","","","","","2800 test bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18252","91261","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","60","-1","0","0","69","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","55" +"21037","-1","A map indicating where the crooks expect the drop-off to be made.","","","","Crude Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2828","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21038","-1","","","","","Hardpacked Snowball","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","5","0","0","10","5","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","2597","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21039","-1","Use with Narain's Robe to disguise yourself as Narain!","","","","Narain's Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21040","-1","","","","","Narain's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21041","-1","","","","","Bag of Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21042","-1","","","","","Narain's Special Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21043","-1","","","","","Mysterious Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","16" +"21044","-1","","","","","Reindeer Reins (TEST)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21045","-1","","","","","63 Blue Fire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10760","53802","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21046","-1","","","","","63 Blue Fire Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10798","53993","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21047","-1","","","","","63 Blue Fire Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16254","81270","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21048","-1","","","","","63 Blue Fire Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16311","81558","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21049","-1","","","","","63 Blue Fire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9875","49376","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21050","-1","","","","","63 Blue Fire Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19827","99135","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21051","-1","","","","","63 Blue Fire Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14926","74631","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21052","-1","","","","","63 Blue Fire Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21053","-1","","","","","63 Blue Fire Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21054","-1","","","","","63 Blue Fire Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20131","100659","1","1","1","16","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21055","-1","","","","","63 Blue Fire Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15154","75774","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21056","-1","","","","","63 Blue Fire Staff","0.4","0","-33","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65101","325509","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","17","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21057","-1","","","","","63 Blue Fire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39204","196024","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","5","5","5","0","0","0","0","0","0","0","58" +"21058","-1","","","","","66 Epic Fire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14553","72768","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21059","-1","","","","","66 Epic Fire Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14605","73026","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21060","-1","","","","","66 Epic Fire Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21987","109939","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21061","-1","","","","","66 Epic Fire Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22067","110338","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21062","-1","","","","","66 Epic Fire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14763","73817","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21063","-1","","","","","66 Epic Fire Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29633","148167","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21064","-1","","","","","66 Epic Fire Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22304","111524","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21065","-1","","","","","66 Epic Fire Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21066","-1","","","","","66 Epic Fire Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21067","-1","","","","","66 Epic Fire Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30056","150280","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21068","-1","","","","","66 Epic Fire Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22621","113109","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21069","-1","","","","","66 Epic Fire Staff","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68476","342383","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","66","-1","0","0","91","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","21","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21070","-1","","","","","66 Epic Fire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51551","257758","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","66","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","6","6","6","0","0","0","0","0","0","0","60" +"21071","-1","","","","","Raw Sagefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"21072","-1","","","","","Smoked Sagefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"21073","-1","","","","","63 Blue Shadow Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10301","51506","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21074","-1","","","","","63 Blue Shadow Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10338","51692","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21075","-1","","","","","63 Blue Shadow Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15565","77826","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21076","-1","","","","","63 Blue Shadow Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15622","78114","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21077","-1","","","","","63 Blue Shadow Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10453","52268","1","1","1","16","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21078","-1","","","","","63 Blue Shadow Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20981","104909","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21079","-1","","","","","63 Blue Shadow Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15793","78969","1","1","1","16","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","11","0","0","0","0","0","0","0","58" +"21080","-1","","","","","63 Blue Shadow Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21081","-1","","","","","63 Blue Shadow Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21082","-1","","","","","63 Blue Shadow Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21286","106432","1","1","1","16","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21083","-1","","","","","63 Blue Shadow Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16022","80112","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","8","8","8","0","0","0","0","0","0","0","58" +"21084","-1","","","","","63 Blue Shadow Staff","0.4","0","-33","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67000","335000","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","-1","0","0","116","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","17","3","0","14","14","14","0","0","0","0","0","0","0","58" +"21085","-1","","","","","63 Blue Shadow Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40339","201699","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","5","5","5","0","0","0","0","0","0","0","58" +"21086","-1","","","","","66 Epic Shadow Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14973","74867","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21087","-1","","","","","66 Epic Shadow Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15026","75133","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21088","-1","","","","","66 Epic Shadow Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21032","105162","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21089","-1","","","","","66 Epic Shadow Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21110","105550","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21090","-1","","","","","66 Epic Shadow Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14126","70633","1","1","1","16","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21091","-1","","","","","66 Epic Shadow Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28359","141798","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21092","-1","","","","","66 Epic Shadow Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21349","106747","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","16","16","0","0","0","0","0","0","0","60" +"21093","-1","","","","","66 Epic Shadow Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21094","-1","","","","","66 Epic Shadow Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21095","-1","","","","","66 Epic Shadow Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28782","143911","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21096","-1","","","","","66 Epic Shadow Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21664","108322","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","12","0","0","0","0","0","0","0","60" +"21097","-1","","","","","66 Epic Shadow Staff","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72480","362403","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","66","-1","0","0","91","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","21","4","0","22","22","22","0","0","0","0","0","0","0","60" +"21098","-1","","","","","66 Epic Shadow Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54559","272799","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","66","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","6","6","6","0","0","0","0","0","0","0","60" +"21099","-1","Teaches you how to cook Smoked Sagefish.","","","","Recipe: Smoked Sagefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21100","-1","A symbol of honor and respect for one's ancestry.","","","","Coin of Ancestry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21101","-1","","","","","Staff of Spell Penetration - Fire (TEST)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66274","331372","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21102","-1","","","","","Staff of Spell Penetration - Frost (TEST)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66514","332570","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21103","-1","Chapter I","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21104","-1","Chapter II","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21105","-1","Chapter III","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21106","-1","Chapter IV","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21107","-1","Chapter V","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21108","-1","Chapter VI","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21109","-1","Chapter VII","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21110","-1","Chapter VIII","","","","Draconic for Dummies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24708","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21111","-1","","","","","Draconic For Dummies: Volume II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21112","-1","","","","","Magical Book Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21113","-1","","","","","Watertight Trunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21114","-1","","","","","Rumsey Rum Dark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21115","-1","","","","","Defiler's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","48" +"21116","-1","","","","","Defiler's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"21117","-1","","","","","Talisman of Arathor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","48" +"21118","-1","","","","","Talisman of Arathor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","38" +"21119","-1","","","","","Talisman of Arathor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","28" +"21120","-1","","","","","Defiler's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","33","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","28" +"21121","-1","","","","","Monster - Item, Flower - Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21122","-1","","","","","Monster - Dagger, Korean A01 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21123","-1","","","","","Monster - Item, Flower - White","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21124","-1","","","","","Ahn'Qiraj Wand [PH]","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57780","288903","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","75","32767","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21125","-1","","","","","Ahn'Qiraj Staff [PH]","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96672","483361","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","32767","0","0","170","0","0","0","0","255","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21126","-1","","","","","Death's Sting","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85698","428491","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","84","32767","0","0","95","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","7","0","0","0","0","0","0","0","0","60" +"21127","-1","","","","","Ahn'Qiraj Mace [PH]","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","77923","389617","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","75","32767","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21128","-1","","","","","Staff of the Qiraji Prophets","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97775","488877","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","75","32767","0","0","170","0","0","0","0","255","0","0","0","0","0","0","10","10","10","10","10","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","26","21","8","0","0","0","0","0","0","0","60" +"21129","-1","","","","","Monster - Axe, Doctor Weavil","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21130","-1","","","","","Diary of Weavil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2829","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21131","-1","","","","","Followup Combat Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21132","-1","","","","","Logistics Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21133","-1","","","","","Followup Tactical Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21134","-1","","","","","Dark Edge of Insanity","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110377","551889","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","32767","0","0","242","0","0","0","0","364","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","19","25","0","0","0","0","0","0","0","60" +"21135","-1","","","","","Broken Assassin's Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","4","11","0","0","0","0","0","0","0","0","0","58" +"21136","-1","","","","","Arcanite Buoy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21137","-1","","","","","Blue Scepter Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21138","-1","","","","","Red Scepter Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21139","-1","","","","","Green Scepter Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21140","-1","","","","","Auction Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21141","-1","","","","","Destroyed Red Scepter Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21142","-1","","","","","From the Desk of Lord Victor Nefarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2838","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21143","-1","","","","","Unsigned Field Duty Papers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21144","-1","A shamanistic device fashioned by the Timbermaw to summon forth corrupting demons.","","","","Demon Summoning Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21145","-1","","","","","Essence of Xandivious","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21146","-1","-Hinterlands","","","","Fragment of the Nightmare's Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21147","-1","-Ashenvale","","","","Fragment of the Nightmare's Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21148","-1","-Feralas","","","","Fragment of the Nightmare's Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21149","-1","-Duskwood","","","","Fragment of the Nightmare's Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21150","-1","","","","","Iron Bound Trunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21151","-1","","","","","Rumsey Rum Black Label","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21152","-1","","","","","The Nightmare's Corruption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21153","-1","","","","","Raw Greater Sagefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"21154","-1","","","","","Festival Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21155","-1","This truesilver-wrought item is a furbolg symbol of peace. A sealed message is attached to it.","","","","Timbermaw Offering of Peace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21156","-1","","","","","Scarab Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21157","-1","","","","","Festive Green Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21158","-1","","","","","Hive'Zora Scout Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21159","-1","","","","","Hive'Zora Scout Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"21160","-1","","","","","Hive'Regal Scout Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21161","-1","","","","","Hive'Ashi Scout Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21162","-1","","","","","Bloated Oily Blackmouth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"21163","-1","","","","","Bloated Firefin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40","160","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"21164","-1","","","","","Bloated Rockscale Cod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"21165","-1","","","","","Tactical Task Briefing VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8534","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21166","-1","","","","","Tactical Task Briefing VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8738","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21167","-1","","","","","Tactical Task Briefing VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8739","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21168","-1","","","","","Baby Shark","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21171","-1","","","","","Filled Festive Mug","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21173","-1","","","","","Empty Festive Mug","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","132160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21174","-1","","","","","Empty Festive Mug","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21175","-1","","","","","The Scepter of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21176","-1","","","","","Black Qiraji Resonating Crystal","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","10000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"21177","-1","","","","","Symbol of Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","37","3000","20","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21178","-1","","","","","Gloves of Earthen Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13268","66344","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","0","0","0","0","0","0","0","0","0","0" +"21179","-1","","","","","Band of Earthen Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","0","0","0","0","0","0","0","0","0","0" +"21180","-1","","","","","Earthstrike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21181","-1","","","","","Grace of Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21182","-1","","","","","Band of Earthen Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","0" +"21183","-1","","","","","Earthpower Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20620","103103","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","0" +"21184","-1","","","","","Deeprock Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23671","118358","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","352","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","10","8","0","0","0","0","0","0","0","0" +"21185","-1","","","","","Earthcalm Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","0","0","0","0","0","0","0","0","0","0" +"21186","-1","","","","","Rockfury Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13550","67753","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","1535","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","7","0","0","0","0","0","0","0","0","0","0" +"21187","-1","","","","","Earthweave Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15299","76499","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","0" +"21188","-1","","","","","Fist of Cenarius","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89953","449769","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","66","-1","0","0","175","0","0","0","0","263","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21189","-1","","","","","Might of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","3","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","0","0","0","0","0","0","0","0","0","0" +"21190","-1","","","","","Wrath of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","188888","755555","1","3","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21191","-1","","","","","Carefully Wrapped Present","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21192","-1","","","","","Monster - Axe, 2H UBER Blackwing","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21193","-1","","","","","D'Sak's Sack","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","30","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21194","-1","","","","","D'Sak's Big Sack","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","32","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21195","-1","","","","","D'Sak's Sacktastic","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","36","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21196","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","18","10","0","0","0","0","0","0","0","0","60" +"21197","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","19","11","0","0","0","0","0","0","0","0","60" +"21198","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","21","12","0","0","0","0","0","0","0","0","60" +"21199","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","22","12","0","0","0","0","0","0","0","0","60" +"21200","-1","The Path of the Protector","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","24","13","0","0","0","0","0","0","0","0","60" +"21201","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","14","8","0","0","0","0","0","0","0","0","60" +"21202","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","15","9","0","0","0","0","0","0","0","0","60" +"21203","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","17","11","0","0","0","0","0","0","0","0","60" +"21204","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","17","11","0","0","0","0","0","0","0","0","60" +"21205","-1","The Path of the Conqueror","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","18","13","0","0","0","0","0","0","0","0","60" +"21206","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","11","4","0","7","6","0","0","0","0","0","0","0","0","60" +"21207","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","11","4","0","8","7","0","0","0","0","0","0","0","0","60" +"21208","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21209","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21210","-1","The Path of the Invoker","","","","Signet Ring of the Bronze Dragonflight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","910","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","9","8","0","0","0","0","0","0","0","0","60" +"21211","-1","This strange dust should allow Metzen to be freed when sprinkled on him.","","","","Pouch of Reindeer Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21212","-1","","","","","Fresh Holly","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"21213","-1","","","","","Preserved Holly","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","30" +"21214","-1","Teaches Frostbolt (Rank 11).","","","","Tome of Frostbolt XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21215","-1","Preserved with Graccu's special spices! It'll be a very long time before these turn bad...","","","","Graccu's Mince Meat Fruitcake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"21216","-1","","","","","Smokywood Pastures Extra-Special Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21217","-1","","","","","Sagefish Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"21218","-1","","","","","Blue Qiraji Resonating Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21219","-1","Teaches you how to cook Sagefish Delight.","","","","Recipe: Sagefish Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21220","-1","","","","","Head of Ossirian the Unscarred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8791","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21221","-1","","","","","Eye of C'Thun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8801","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21222","-1","","","","","Armored Chitin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1750","7000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21223","-1","","","","","Black Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21224","-1","","","","","Ancient Armor Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21225","-1","","","","","Heavy Silithid Husk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21226","-1","","","","","Runic Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21227","-1","","","","","Ancient Hero's Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7500","30000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"21228","-1","","","","","Mithril Bound Trunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21229","-1","","","","","Qiraji Lord's Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21230","-1","","","","","Ancient Qiraji Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8784","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"21232","-1","Ceremonial Armaments of the Qiraji Lords. Used by Qiraji infantry.","","","","Imperial Qiraji Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21235","-1","","","","","Winter Veil Roast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21236","-1","","","","","Winter Veil Loaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21237","-1","Regalia of Qiraji Nobility. Used by Qiraji spell casters.","","","","Imperial Qiraji Regalia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21238","-1","","","","","Winter Veil Cookie UNUSED","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21240","-1","","","","","Winter Veil Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21241","-1","","","","","Winter Veil Eggnog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21242","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji War Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82145","410728","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","79","32767","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","10","9","0","0","0","0","0","0","0","0","60" +"21243","-1","","","","","Bloated Mightfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21244","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Pugio","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82758","413792","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","79","32767","0","0","72","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"21245","-1","","","","","Tactical Task Briefing I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8737","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21246","-1","","","","","Combat Task Briefing I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8770","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"21247","-1","","","","","Combat Task Briefing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8771","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","58" +"21248","-1","","","","","Combat Task Briefing IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8773","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21249","-1","","","","","Combat Task Briefing V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8539","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21250","-1","","","","","Combat Task Briefing VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8772","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21251","-1","","","","","Combat Task Briefing VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8687","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21252","-1","","","","","Combat Task Briefing VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8774","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21253","-1","","","","","Combat Task Briefing IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8775","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21254","-1","Fresh from the oven","","","","Winter Veil Cookie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21255","-1","","","","","Combat Task Briefing X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8776","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21256","-1","","","","","Combat Task Briefing XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8777","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21257","-1","","","","","Logistics Task Briefing IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8778","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21258","-1","","","","","Logistics Task Briefing IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8785","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21259","-1","","","","","Logistics Task Briefing V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8779","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21260","-1","","","","","Logistics Task Briefing VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8781","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21261","-1","","","","","Logistics Task Briefing VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8786","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21262","-1","","","","","Logistics Task Briefing VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8782","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21263","-1","","","","","Logistics Task Briefing VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8780","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21264","-1","","","","","Logistics Task Briefing VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8787","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21265","-1","","","","","Logistics Task Briefing IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8783","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21266","-1","","","","","Logistics Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21267","-1","","","","","Toasting Goblet","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21268","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji War Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86208","431040","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","79","32767","0","0","89","0","0","0","0","166","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","12","10","0","0","0","0","0","0","0","0","60" +"21269","-1","The shield is infused and reinforced with Elementium.","","","","Blessed Qiraji Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55371","276859","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","32767","0","0","0","0","0","0","0","0","0","0","0","0","3407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","20","0","0","0","0","0","0","0","0","0","60" +"21270","-1","","","","","Gently Shaken Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21271","-1","","","","","Gently Shaken Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21272","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","65581","327907","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","79","32767","0","0","103","0","0","0","0","192","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","0","0","0","0","0","0","0","0","0","60" +"21273","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Acolyte Staff","0.4","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109680","548400","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","79","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","32","0","0","0","0","0","0","0","0","60" +"21274","-1","","","","","Test Stackable Items","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21275","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Augur Staff","0.4","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","99954","499771","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","79","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","23","0","0","0","0","0","0","0","0","60" +"21276","-1","The weapon is infused and reinforced with Elementium.","","","","Blessed Qiraji Naturalist Staff UNUSED","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","101450","507253","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","32767","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21277","-1","","","","","Tranquil Mechanical Yeti","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21278","-1","","","","","Stormshroud Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9126","45632","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","19","10","0","0","0","0","0","0","0","0","50" +"21279","-1","Teaches Fireball (Rank 12).","","","","Tome of Fireball XII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21280","-1","Teaches Arcane Missiles (Rank 8).","","","","Tome of Arcane Missiles VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21281","-1","Teaches Shadow Bolt (Rank 10).","","","","Grimoire of Shadow Bolt X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21282","-1","Teaches Immolate (Rank 8).","","","","Grimoire of Immolate VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21283","-1","Teaches Corruption (Rank 7).","","","","Grimoire of Corruption VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21284","-1","Teaches Greater Heal (Rank 5).","","","","Codex of Greater Heal V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21285","-1","Teaches Renew (Rank 10).","","","","Codex of Renew X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21286","-1","","","","","Monster - Axe, 2H Large Double Bladed, Gold","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21287","-1","Teaches Prayer of Healing (Rank 5).","","","","Codex of Prayer of Healing V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21288","-1","Teaches Blessing of Wisdom (Rank 6).","","","","Libram: Blessing of Wisdom VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21289","-1","Teaches Blessing of Might (Rank 7).","","","","Libram: Blessing of Might VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21290","-1","Teaches Holy Light (Rank 9).","","","","Libram: Holy Light IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21291","-1","Teaches Healing Wave (Rank 10).","","","","Tablet of Healing Wave X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21292","-1","Teaches Strength of Earth Totem (Rank 5).","","","","Tablet of Strength of Earth Totem V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21293","-1","Teaches Grace of Air Totem (Rank 3).","","","","Tablet of Grace of Air Totem III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21294","-1","Teaches Healing Touch (Rank 11).","","","","Book of Healing Touch XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21295","-1","Teaches Starfire (Rank 7).","","","","Book of Starfire VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21296","-1","Teaches Rejuvenation (Rank 11).","","","","Book of Rejuvenation XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21297","-1","Teaches Heroic Strike (Rank 9).","","","","Manual of Heroic Strike IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21298","-1","Teaches Battle Shout (Rank 7).","","","","Manual of Battle Shout VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21299","-1","Teaches Revenge (Rank 6).","","","","Manual of Revenge VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21300","-1","Teaches Backstab (Rank 9).","","","","Handbook of Backstab IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21301","-1","","","","","Green Helper Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21302","-1","Teaches Deadly Poison (Rank 5).","","","","Handbook of Deadly Poison V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21303","-1","Teaches Feint (Rank 5).","","","","Handbook of Feint V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21304","-1","Teaches Multi-Shot (Rank 5).","","","","Guide: Multi-Shot V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21305","-1","","","","","Red Helper Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21306","-1","Teaches Serpent Sting (Rank 9).","","","","Guide: Serpent Sting IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21307","-1","Teaches Aspect of the Hawk (Rank 7).","","","","Guide: Aspect of the Hawk VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21308","-1","","","","","Jingling Bell","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21309","-1","","","","","Snowman Kit","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21310","-1","","","","","Gaily Wrapped Present","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21311","-1","","","","","Earth Warder's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8473","42365","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","13","0","0","0","0","0","0","0","0","0","0" +"21312","-1","","","","","Belt of the Den Watcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6377","31887","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","6","0","0","0","0","0","0","0","0","0","0" +"21313","-1","","","","","D'Sak's Small bag","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21314","-1","A collection of information related to the whereabouts of Metzen the reindeer, including both ransom notes.","","","","Metzen's Letters and Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2841","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21315","-1","Inside are the things you will need to rescue Metzen the Reindeer!","","","","Smokywood Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21316","-1","","","","","Leggings of the Ursa","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21713","108565","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21317","-1","","","","","Helm of the Pathfinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11675","58378","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21318","-1","","","","","Earth Warder's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7444","37221","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21319","-1","","","","","Gloves of the Pathfinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9339","46696","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","12","0","0","0","0","0","0","0","0","0" +"21320","-1","","","","","Vest of the Den Watcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22497","112489","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","12","0","0","0","0","0","0","0","0","0" +"21321","-1","","","","","Red Qiraji Resonating Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21322","-1","","","","","Ursa's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26439","132197","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","0","0","0","0","0","0","0","0","0","0" +"21323","-1","","","","","Green Qiraji Resonating Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21324","-1","","","","","Yellow Qiraji Resonating Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21325","-1","","","","","Mechanical Greench","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21326","-1","","","","","Defender of the Timbermaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8991","35965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21327","-1","","","","","Ticking Present","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21328","-1","","","","","Wand of Holiday Cheer","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21329","-1","","","","","Conqueror's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43010","215053","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","81","1","0","0","0","0","0","0","0","0","0","0","0","0","844","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","29","34","0","0","0","0","0","0","0","60" +"21330","-1","","","","","Conqueror's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41773","208865","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","78","1","0","0","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","20","21","0","0","0","0","0","0","0","60" +"21331","-1","","","","","Conqueror's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62274","311370","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","88","1","0","0","0","0","0","0","0","0","0","0","0","0","1124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","34","38","0","0","0","0","0","0","0","60" +"21332","-1","","","","","Conqueror's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58117","290587","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","81","1","0","0","0","0","0","0","0","0","0","0","0","0","909","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","33","24","0","0","0","0","0","0","0","60" +"21333","-1","","","","","Conqueror's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42255","211279","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","78","1","0","0","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","21","23","0","0","0","0","0","0","0","60" +"21334","-1","","","","","Doomcaller's Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35991","179955","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","88","256","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","17","7","23","0","0","0","0","0","0","0","60" +"21335","-1","","","","","Doomcaller's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24374","121870","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","78","256","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","11","4","20","0","0","0","0","0","0","0","60" +"21336","-1","","","","","Doomcaller's Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33714","168572","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","81","256","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","9","28","0","0","0","0","0","0","0","60" +"21337","-1","","","","","Doomcaller's Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25378","126892","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","81","256","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","6","27","0","0","0","0","0","0","0","60" +"21338","-1","","","","","Doomcaller's Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24648","123240","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","78","256","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","3","20","0","0","0","0","0","0","0","60" +"21339","-1","","","","","Doomcaller's Handwraps [PH]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16493","82467","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21340","-1","","","","","Soul Pouch","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21341","-1","","","","","Felcloth Bag","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21342","-1","","","","","Core Felcloth Bag","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80000","320000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","28","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21343","-1","","","","","Enigma Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37212","186064","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","88","128","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","23","7","19","0","0","0","0","0","0","0","60" +"21344","-1","","","","","Enigma Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25198","125991","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","78","128","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","15","6","15","0","0","0","0","0","0","0","60" +"21345","-1","","","","","Enigma Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25947","129739","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","78","128","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","4","16","0","0","0","0","0","0","0","60" +"21346","-1","","","","","Enigma Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35883","179415","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","81","128","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","8","21","0","0","0","0","0","0","0","60" +"21347","-1","","","","","Enigma Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27007","135037","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","81","128","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","24","0","0","0","0","0","0","0","60" +"21348","-1","","","","","Tiara of the Oracle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24526","122632","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","81","16","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","16","22","0","0","0","0","0","0","0","60" +"21349","-1","","","","","Footwraps of the Oracle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23821","119106","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","78","16","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","17","12","20","0","0","0","0","0","0","0","60" +"21350","-1","","","","","Mantle of the Oracle","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23913","119566","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","78","16","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","8","21","0","0","0","0","0","0","0","60" +"21351","-1","","","","","Vestments of the Oracle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35581","177907","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","88","16","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","26","15","23","0","0","0","0","0","0","0","60" +"21352","-1","","","","","Trousers of the Oracle","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33203","166015","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","81","16","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","14","23","0","0","0","0","0","0","0","60" +"21353","-1","","","","","Genesis Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31246","156234","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","81","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","12","15","22","12","22","0","0","0","0","0","60" +"21354","-1","","","","","Genesis Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30349","151746","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","78","1024","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","15","13","6","15","0","0","0","0","0","60" +"21355","-1","","","","","Genesis Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30464","152322","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","78","1024","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","12","14","6","14","0","0","0","0","0","60" +"21356","-1","","","","","Genesis Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42134","210672","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","81","1024","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","12","22","9","22","0","0","0","0","0","60" +"21357","-1","","","","","Genesis Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45491","227459","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","493","0","0","0","0","0","0","0","88","1024","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","12","13","24","11","24","0","0","0","0","0","60" +"21358","-1","Teaches you how to sew a Soul Pouch.","","","","Pattern: Soul Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21359","-1","","","","","Deathdealer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30922","154610","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","78","8","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","14","17","0","0","0","0","0","0","0","60" +"21360","-1","","","","","Deathdealer's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32073","160368","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","81","8","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","25","27","0","0","0","0","0","0","0","60" +"21361","-1","","","","","Deathdealer's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31974","159870","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","78","8","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","18","15","0","0","0","0","0","0","0","60" +"21362","-1","","","","","Deathdealer's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44219","221095","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","81","8","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","38","18","25","0","0","0","0","0","0","0","60" +"21363","-1","","","","","Festive Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21364","-1","","","","","Deathdealer's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47900","239501","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","88","8","0","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","19","28","0","0","0","0","0","0","0","60" +"21365","-1","","","","","Striker's Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39091","195455","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","78","4","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","8","6","16","0","0","0","0","0","0","60" +"21366","-1","","","","","Striker's Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40364","201823","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","18","10","26","0","0","0","0","0","0","60" +"21367","-1","","","","","Striker's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40683","203418","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","11","5","24","0","0","0","0","0","0","60" +"21368","-1","","","","","Striker's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49042","245214","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","81","4","0","0","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","14","10","22","0","0","0","0","0","0","60" +"21369","-1","Teaches you how to sew a Felcloth Bag.","","","","Pattern: Felcloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","197","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21370","-1","","","","","Striker's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53161","265808","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","88","4","0","0","0","0","0","0","0","0","0","0","0","0","631","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","15","7","26","0","0","0","0","0","0","60" +"21371","-1","Teaches you how to sew a Core Felcloth Bag.","","","","Pattern: Core Felcloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21372","-1","","","","","Stormcaller's Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37349","186748","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","81","64","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","8","12","22","12","22","0","0","0","0","0","60" +"21373","-1","","","","","Stormcaller's Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36438","182192","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","78","64","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","9","12","14","6","14","0","0","0","0","0","60" +"21374","-1","","","","","Stormcaller's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53975","269878","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","88","64","0","0","0","0","0","0","0","0","0","0","0","0","631","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","10","11","24","11","24","0","0","0","0","0","60" +"21375","-1","","","","","Stormcaller's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50365","251828","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","81","64","0","0","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","9","12","22","12","22","0","0","0","0","0","60" +"21376","-1","","","","","Stormcaller's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36851","184255","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","78","64","0","0","0","0","0","0","0","0","0","0","0","0","423","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","10","10","13","6","15","0","0","0","0","0","60" +"21377","-1","These may be gathered for the Timbermaw furbolgs to earn their trust.","","","","Deadwood Headdress Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21378","-1","","","","","Logistics Task Briefing I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8804","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21379","-1","","","","","Logistics Task Briefing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8805","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21380","-1","","","","","Logistics Task Briefing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8806","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21381","-1","","","","","Logistics Task Briefing IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8809","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21382","-1","","","","","Logistics Task Briefing V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8807","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21383","-1","These may be gathered for the Timbermaw furbolgs to earn their trust.","","","","Winterfall Spirit Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21384","-1","","","","","Logistics Task Briefing VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8808","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21385","-1","","","","","Logistics Task Briefing X","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8810","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21386","-1","","","","","Followup Logistics Assignment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21387","-1","","","","","Avenger's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47159","235798","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","81","2","0","0","0","0","0","0","0","0","0","0","0","0","844","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","12","20","22","12","22","0","0","0","0","0","60" +"21388","-1","","","","","Avenger's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41438","207190","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","78","2","0","0","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","18","14","6","18","0","0","0","0","0","60" +"21389","-1","","","","","Avenger's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61776","308883","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","88","2","0","0","0","0","0","0","0","0","0","0","0","0","1124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","12","23","24","11","24","0","0","0","0","0","60" +"21390","-1","","","","","Avenger's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57649","288245","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","81","2","0","0","0","0","0","0","0","0","0","0","0","0","909","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","12","21","22","9","22","0","0","0","0","0","60" +"21391","-1","","","","","Avenger's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41916","209583","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","505","0","0","0","0","0","0","0","78","2","0","0","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","18","13","6","15","0","0","0","0","0","60" +"21392","-1","","","","","Sickle of Unyielding Strength","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","495","0","0","0","2100","0","0","0","70","1","0","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","6","9","0","0","0","0","0","0","0","60" +"21393","-1","","","","","Signet of Unyielding Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","65","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","14","0","0","0","0","0","0","0","0","60" +"21394","-1","","","","","Drape of Unyielding Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","67","1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","15","9","9","0","0","0","0","0","0","0","60" +"21395","-1","","","","","Blade of Eternal Justice","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","506","0","0","0","2300","0","0","0","70","2","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","11","7","0","0","0","0","0","0","0","60" +"21396","-1","","","","","Ring of Eternal Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","65","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","12","11","0","0","0","0","0","0","0","60" +"21397","-1","","","","","Cape of Eternal Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","67","2","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","13","12","0","0","0","0","0","0","0","60" +"21398","-1","","","","","Hammer of the Gathering Storm","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","502","0","0","0","2400","0","0","0","70","64","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","9","7","0","0","0","0","0","0","0","60" +"21399","-1","","","","","Ring of the Gathering Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","65","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","9","11","10","0","0","0","0","0","0","60" +"21400","-1","","","","","Cloak of the Gathering Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","67","64","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","10","11","0","0","0","0","0","0","0","60" +"21401","-1","","","","","Scythe of the Unseen Path","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","510","0","0","0","2400","0","0","0","70","4","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","11","9","0","0","0","0","0","0","0","0","60" +"21402","-1","","","","","Signet of the Unseen Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","0","0","0","0","0","65","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","11","8","0","0","0","0","0","0","0","60" +"21403","-1","","","","","Cloak of the Unseen Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","510","0","0","0","0","0","0","0","67","4","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","13","0","0","0","0","0","0","0","0","60" +"21404","-1","","","","","Dagger of Veiled Shadows","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","498","0","0","0","1800","0","0","0","70","8","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","7","0","0","0","0","0","0","0","0","60" +"21405","-1","","","","","Band of Veiled Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","498","0","0","0","0","0","0","0","65","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","11","8","0","0","0","0","0","0","0","60" +"21406","-1","","","","","Cloak of Veiled Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","498","0","0","0","0","0","0","0","67","8","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","18","0","0","0","0","0","0","0","0","60" +"21407","-1","","","","","Mace of Unending Life","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","494","0","0","0","2600","0","0","0","70","1024","0","0","93","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","7","11","10","0","0","0","0","0","0","60" +"21408","-1","","","","","Band of Unending Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","0","0","0","0","0","65","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","7","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","9","8","10","7","0","0","0","0","0","60" +"21409","-1","","","","","Cloak of Unending Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","0","0","0","0","0","67","1024","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","3","6","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","10","12","8","7","0","0","0","0","0","60" +"21410","-1","","","","","Gavel of Infinite Wisdom","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","508","0","0","0","2700","0","0","0","70","16","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","11","10","0","0","0","0","0","0","0","0","60" +"21411","-1","","","","","Ring of Infinite Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","508","0","0","0","0","0","0","0","65","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21412","-1","","","","","Shroud of Infinite Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","508","0","0","0","0","0","0","0","67","16","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","12","11","0","0","0","0","0","0","0","60" +"21413","-1","","","","","Blade of Vaulted Secrets","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","504","0","0","0","2300","0","0","0","70","128","0","0","83","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","16","8","0","0","0","0","0","0","0","0","60" +"21414","-1","","","","","Band of Vaulted Secrets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","504","0","0","0","0","0","0","0","65","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","9","0","0","0","0","0","0","0","0","0","60" +"21415","-1","","","","","Drape of Vaulted Secrets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","504","0","0","0","0","0","0","0","67","128","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","9","14","6","0","0","0","0","0","0","0","60" +"21416","-1","","","","","Kris of Unspoken Names","0.6","0","-10","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1500","0","0","0","70","256","0","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","7","0","0","0","0","0","0","0","0","60" +"21417","-1","","","","","Ring of Unspoken Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","0","0","0","0","65","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21418","-1","","","","","Shroud of Unspoken Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","0","0","0","0","67","256","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","9","0","0","0","0","0","0","0","0","60" +"21419","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH LEGS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21420","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER CHEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21421","-1","","","","","AHNQIRAJ TEST ITEM C MAIL CHEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21422","-1","","","","","AHNQIRAJ TEST ITEM D PLATE CHEST","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21423","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER PANTS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21424","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER SHOULDER","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21425","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BELT","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21426","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21427","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BOOTS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21428","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER GAUNTLETS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21429","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH BELT","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21430","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH ROBE","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21431","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH FEET","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21432","-1","","","","","AHNQIRAJ TEST ITEM B LEATHER BRACER","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21433","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH BRACER","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21434","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21435","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH SHOULDERS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21436","-1","Seek out an Alliance Commendation Officer to exchange signets for recognition.","","","","Alliance Commendation Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21437","-1","","","","","AHNQIRAJ TEST ITEM A CLOTH GLOVES","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21438","-1","Seek out an Horde Commendation Officer to exchange signets for recognition.","","","","Horde Commendation Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21439","-1","","","","","AHNQIRAJ TEST ITEM D PLATE HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21440","-1","","","","","AHNQIRAJ TEST ITEM D PLATE LEGS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21441","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BELT","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21442","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BOOTS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21443","-1","","","","","AHNQIRAJ TEST ITEM D PLATE SHOULDERS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21444","-1","","","","","AHNQIRAJ TEST ITEM D PLATE GLOVES","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21445","-1","","","","","AHNQIRAJ TEST ITEM D PLATE BRACER","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21446","-1","","","","","AHNQIRAJ TEST ITEM C MAIL HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21447","-1","","","","","AHNQIRAJ TEST ITEM C MAIL SHOULDERS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21448","-1","","","","","AHNQIRAJ TEST ITEM C MAIL LEGS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21449","-1","","","","","AHNQIRAJ TEST ITEM C MAIL BOOTS","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21450","-1","","","","","AHNQIRAJ TEST ITEM C MAIL GLOVES","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21451","-1","","","","","AHNQIRAJ TEST ITEM C MAIL BELT","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21452","-1","","","","","Staff of the Ruins","0.4","0","-11","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96177","480887","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","72","32767","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","23","24","14","0","0","0","0","0","0","0","60" +"21453","-1","","","","","Mantle of the Horusath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40467","202338","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","19","12","0","0","0","0","0","0","0","60" +"21454","-1","","","","","Runic Stone Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35033","175166","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","19","12","0","0","0","0","0","0","0","60" +"21455","-1","","","","","Southwind Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22403","112016","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","24","14","0","0","0","0","0","0","0","60" +"21456","-1","","","","","Sandstorm Cloak","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23424","117120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","0","0","0","0","0","0","0","0","60" +"21457","-1","","","","","Bracers of Brutality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27585","137925","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","12","9","0","0","0","0","0","0","0","60" +"21458","-1","","","","","Gauntlets of New Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20174","100872","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","11","0","0","0","0","0","0","0","60" +"21459","-1","","","","","Crossbow of Imminent Doom","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60738","303692","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","72","32767","0","0","126","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","7","5","5","0","0","0","0","0","0","0","60" +"21460","-1","","","","","Helm of Domination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42586","212930","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","755","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","21","11","0","0","0","0","0","0","0","60" +"21461","-1","","","","","Leggings of the Black Blizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29522","147610","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","16","8","14","0","0","0","0","0","0","0","60" +"21462","-1","","","","","Gloves of Dark Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14816","74084","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","0","0","0","0","0","0","0","0","60" +"21463","-1","","","","","Ossirian's Binding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22311","111556","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","19","10","0","0","0","0","0","0","0","60" +"21464","-1","","","","","Shackles of the Unscarred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14931","74657","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","9","0","0","0","0","0","0","0","0","60" +"21465","-1","","","","","Monster - Axe, Insano","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21466","-1","","","","","Stinger of Ayamiss","0.6","0","-9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72521","362608","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","69","32767","0","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","9","0","0","0","0","0","0","0","0","60" +"21467","-1","","","","","Thick Silithid Chestguard","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36399","181995","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","5","5","5","5","5","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","21","15","0","0","0","0","0","0","0","60" +"21468","-1","","","","","Mantle of Maz'Nadir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17462","87311","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","15","7","0","0","0","0","0","0","0","60" +"21469","-1","","","","","Gauntlets of Southwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14605","73027","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","11","0","0","0","0","0","0","0","0","60" +"21470","-1","","","","","Cloak of the Savior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17592","87962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","10","10","0","0","0","0","0","0","0","60" +"21471","-1","","","","","Talon of Furious Concentration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88787","355151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","8","8","0","0","0","0","0","0","0","0","60" +"21472","-1","","","","","Dustwind Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22251","111257","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","15","29","18","0","0","0","0","0","0","0","60" +"21473","-1","","","","","Eye of Moam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82878","331515","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21474","-1","","","","","Chitinous Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22909","114547","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","11","7","0","0","0","0","0","0","0","60" +"21475","-1","","","","","Legplates of the Destroyer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42918","214592","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","670","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","18","18","10","0","0","0","0","0","0","60" +"21476","-1","","","","","Obsidian Scaled Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36919","184596","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","377","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","3","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","18","18","10","0","0","0","0","0","0","60" +"21477","-1","","","","","Ring of Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88503","354012","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","74","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","60" +"21478","-1","","","","","Bow of Taut Sinew","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57620","288102","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","68","32767","0","0","73","0","0","0","0","137","0","0","0","0","0","0","0","8","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","60" +"21479","-1","","","","","Gauntlets of the Immovable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27139","135696","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","15","0","0","0","0","0","0","0","0","60" +"21480","-1","","","","","Scaled Silithid Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18501","92506","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","18","8","7","0","0","0","0","0","0","60" +"21481","-1","","","","","Boots of the Desert Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29346","146732","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","14","0","0","0","0","0","0","0","60" +"21482","-1","","","","","Boots of the Fiery Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25412","127062","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","14","14","0","0","0","0","0","0","0","60" +"21483","-1","","","","","Ring of the Desert Winds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75303","301215","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","0","0","0","0","0","0","0","0","0","60" +"21484","-1","","","","","Helm of Regrowth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21244","106221","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","28","18","10","0","0","0","0","0","0","0","60" +"21485","-1","","","","","Buru's Skull Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45658","228292","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","2959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","20","11","0","0","0","0","0","0","0","0","60" +"21486","-1","","","","","Gloves of the Swarm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25208","126040","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","11","10","0","0","0","0","0","0","60" +"21487","-1","","","","","Slimy Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21566","107830","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","310","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","6","0","0","0","0","0","0","0","60" +"21488","-1","Ouch","","","","Fetish of Chitinous Spikes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67812","271251","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21489","-1","","","","","Quicksand Waders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17319","86599","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","14","11","0","0","0","0","0","0","0","60" +"21490","-1","","","","","Slime Kickers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31182","155911","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","12","12","0","0","0","0","0","0","0","60" +"21491","-1","","","","","Scaled Bracers of the Gorger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14931","74656","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","10","8","0","0","0","0","0","0","0","60" +"21492","-1","","","","","Manslayer of the Qiraji","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91625","458125","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","66","32767","0","0","180","0","0","0","0","270","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","20","15","0","0","0","0","0","0","0","60" +"21493","-1","","","","","Boots of the Vanguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27587","137936","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","11","22","0","0","0","0","0","0","0","60" +"21494","-1","","","","","Southwind's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14736","73680","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","11","0","0","0","0","0","0","0","0","60" +"21495","-1","","","","","Legplates of the Qiraji Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41405","207027","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","644","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","13","0","0","0","0","0","0","0","0","60" +"21496","-1","","","","","Bracers of Qiraji Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11872","59363","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","12","0","0","0","0","0","0","0","0","60" +"21497","-1","","","","","Boots of the Qiraji General","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26928","134640","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","26","11","0","0","0","0","0","0","0","0","60" +"21498","-1","Still dripping with blood","","","","Qiraji Sacrificial Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74888","374443","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","66","32767","0","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","0","0","0","0","0","0","0","0","0","60" +"21499","-1","","","","","Vestments of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30059","150295","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","14","8","0","0","0","0","0","0","0","60" +"21500","-1","","","","","Belt of the Inquisition","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12041","60206","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","0","0","0","0","0","0","0","0","60" +"21501","-1","","","","","Toughened Silithid Hide Gloves","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13668","68342","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","15","11","0","0","0","0","0","0","0","60" +"21502","-1","","","","","Sand Reaver Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16466","82330","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","11","7","0","0","0","0","0","0","0","60" +"21503","-1","","","","","Belt of the Sand Reaver","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19392","96964","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21504","-1","","","","","Charm of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","9","0","0","0","0","0","0","0","0","60" +"21505","-1","","","","","Choker of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","0","0","0","0","0","0","0","0","0","60" +"21506","-1","","","","","Pendant of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","14","0","0","0","0","0","0","0","0","60" +"21507","-1","","","","","Amulet of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111628","446512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21508","-1","","","","","Mark of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21509","-1","","","","","Ahn'Qiraj War Effort Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21510","-1","","","","","Ahn'Qiraj War Effort Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21511","-1","","","","","Ahn'Qiraj War Effort Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21512","-1","","","","","Ahn'Qiraj War Effort Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21513","-1","","","","","Ahn'Qiraj War Effort Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21514","-1","","","","","Logistics Task Briefing XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8829","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21515","-1","","","","","Mark of Remulos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21516","-1","","","","","Dagger of Spell Penetration - Fire 150 Resist (TEST)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53605","268025","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21517","-1","","","","","Gnomish Turban of Psychic Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24982","124911","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","17","0","0","0","0","0","0","0","0","60" +"21518","-1","","","","","Dagger of Spell Penetration - Frost 150 Resist (TEST)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53983","269917","1","1","1","16","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21519","-1","","","","","Mistletoe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","1","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21520","-1","","","","","Ravencrest's Legacy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85129","425646","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","76","32767","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","13","9","0","0","0","0","0","0","0","60" +"21521","-1","","","","","Runesword of the Red","0.6","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","77306","386531","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","76","32767","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","9","7","0","0","0","0","0","0","0","60" +"21522","-1","","","","","Shadowsong's Sorrow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79748","398744","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","76","32767","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","13","9","0","0","0","0","0","0","0","60" +"21523","-1","","","","","Fang of Korialstrasz","0.6","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80049","400246","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","76","32767","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","9","13","0","0","0","0","0","0","0","60" +"21524","-1","","","","","Red Winter Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21525","-1","","","","","Green Winter Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21526","-1","","","","","Band of Icy Depths","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","828085","3312341","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","0","0","0","0","0","0","0","0","0","60" +"21527","-1","","","","","Darkwater Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32868","164340","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","17","17","0","0","0","0","0","0","0","0","60" +"21528","-1","","","","","Colossal Bag of Loot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32772","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21529","-1","","","","","Amulet of Shadow Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90788","363154","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","7","0","0","0","0","0","0","0","0","60" +"21530","-1","","","","","Onyx Embedded Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49843","249218","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","30","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","23","17","0","0","0","0","0","0","0","60" +"21531","-1","","","","","Drake Tooth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103030","412121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","7","0","0","0","0","0","0","0","0","60" +"21532","-1","","","","","Drudge Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31380","156900","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","17","13","0","0","0","0","0","0","0","60" +"21533","-1","A tiny fragment of a very large insect.","","","","Colossus of Zora's Husk","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21534","-1","A tiny fragment of a very large insect.","","","","Colossus of Ashi's Husk","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21535","-1","A tiny fragment of a very large insect.","","","","Colossus of Regal's Husk","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21536","-1","","","","","Elune Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21537","-1","","","","","Festival Dumplings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21538","-1","","","","","Festive Pink Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21539","-1","","","","","Festive Purple Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21540","-1","A device said to capture the light shed by Elune herself.","","","","Elune's Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","40" +"21541","-1","","","","","Festive Black Pant Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21542","-1","","","","","Festival Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21543","-1","","","","","Festive Teal Pant Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21544","-1","","","","","Festive Blue Pant Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21545","-1","Use before expiry date","","","","Smokywood Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21546","-1","","","","","Elixir of Greater Firepower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","35","140","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"21547","-1","Teaches you how to make an Elixir of Greater Firepower.","","","","Recipe: Elixir of Greater Firepower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","171","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21548","-1","Teaches you how to craft Stormshroud Gloves.","","","","Pattern: Stormshroud Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21549","-1","","","","","Monster - Shield, Shieldguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21550","-1","","","","","Monster - Crossbow, Hakkari","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"21551","-1","","","","","Monster - Dagger, Alliance PvP","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21552","-1","","","","","Striped Yellowtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"21553","-1","","","","","Monster - Sword2H, Alliance PvP","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21554","-1","","","","","Monster - Gun, PvP Horde","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"21555","-1","","","","","Monster - Mace2H, Alliance PvP","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21557","-1","","","","","Small Red Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21558","-1","","","","","Small Blue Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21559","-1","","","","","Small Green Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21560","-1","","","","","Small Purple Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2","10","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21561","-1","","","","","Small White Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21562","-1","","","","","Small Yellow Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","25","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21563","-1","","","","","Don Rodrigo's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","7","0","0","0","0","0","0","0","0","0","60" +"21564","-1","","","","","Monster - Gun, Kaldorei PVP Alliance","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"21565","-1","","","","","Rune of Perfection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-48","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","7","0","0","0","0","0","0","0","0","0","40" +"21566","-1","","","","","Rune of Perfection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-48","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","4","0","0","0","0","0","0","0","0","0","20" +"21567","-1","","","","","Rune of Duty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1521","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","7","0","0","0","0","0","0","0","0","0","40" +"21568","-1","","","","","Rune of Duty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1521","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","4","0","0","0","0","0","0","0","0","0","20" +"21569","-1","","","","","Firework Launcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21570","-1","","","","","Cluster Launcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21571","-1","","","","","Blue Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21572","-1","","","","","Monster - Shield, Alliance PVP","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21573","-1","","","","","Monster - Sword, 1H Alliance PvP","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21574","-1","","","","","Green Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21575","-1","","","","","Purple Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21576","-1","","","","","Red Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21577","-1","","","","","White Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21578","-1","","","","","Yellow Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21579","-1","","","","","Vanquished Tentacle of C'Thun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108030","432121","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21580","-1","","","","","Monster - 2H Axe, Horde PvP","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21581","-1","","","","","Gauntlets of Annihilation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31789","158945","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","15","0","0","0","0","0","0","0","0","60" +"21582","-1","","","","","Grasp of the Old God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18128","90642","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","15","0","0","0","0","0","0","0","0","60" +"21583","-1","","","","","Cloak of Clarity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27295","136475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","7","6","0","0","0","0","0","0","0","60" +"21584","-1","","","","","Bracers of Eternal Reckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27397","136987","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","20","0","0","0","0","0","0","0","0","60" +"21585","-1","","","","","Dark Storm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18333","91666","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","19","0","0","0","0","0","0","0","0","60" +"21586","-1","","","","","Belt of Never-ending Agony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23611","118055","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","0","0","0","0","0","0","0","0","0","60" +"21587","-1","","","","","Wristguards of Castigation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33364","166822","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","13","8","0","0","0","0","0","0","0","60" +"21588","-1","","","","","Wristguards of Elemental Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28538","142690","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","11","0","0","0","0","0","0","0","0","60" +"21589","-1","","","","","Large Blue Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21590","-1","","","","","Large Green Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21591","-1","","","","","Large Purple Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21592","-1","","","","","Large Red Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21593","-1","","","","","Large White Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21594","-1","","","","","Bracers of the Fallen Son","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21980","109900","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","10","0","0","0","0","0","0","0","0","60" +"21595","-1","","","","","Large Yellow Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21596","-1","","","","","Ring of the Godslayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89033","356132","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","17","0","0","0","0","0","0","0","0","60" +"21597","-1","","","","","Royal Scepter of Vek'lor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","9","10","0","0","0","0","0","0","0","0","60" +"21598","-1","","","","","Royal Qiraji Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29215","146078","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","13","13","0","0","0","0","0","0","0","60" +"21599","-1","","","","","Vek'lor's Gloves of Devastation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24994","124974","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","365","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","17","0","0","0","0","0","0","0","60" +"21600","-1","","","","","Boots of Epiphany","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25090","125451","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","0","0","0","0","0","0","0","0","60" +"21601","-1","","","","","Ring of Emperor Vek'lor","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79025","316102","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","12","0","0","0","0","0","0","0","0","60" +"21602","-1","","","","","Qiraji Execution Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21633","108167","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","15","14","0","0","0","0","0","0","0","60" +"21603","-1","","","","","Wand of Qiraji Nobility","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63026","315134","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","78","32767","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","5","0","0","0","0","0","0","0","0","0","60" +"21604","-1","","","","","Bracelets of Royal Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17433","87168","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","9","8","0","0","0","0","0","0","0","60" +"21605","-1","","","","","Gloves of the Hidden Temple","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21869","109346","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","6","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","18","0","0","0","0","0","0","0","60" +"21606","-1","","","","","Belt of the Fallen Emperor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30903","154518","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","17","18","13","0","0","0","0","0","0","60" +"21607","-1","","","","","Grasp of the Fallen Emperor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26433","132168","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","329","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","13","12","17","17","0","0","0","0","0","0","60" +"21608","-1","","","","","Amulet of Vek'nilash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","5","9","0","0","0","0","0","0","0","0","60" +"21609","-1","","","","","Regenerating Belt of Vek'nilash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22184","110923","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","13","16","0","0","0","0","0","0","0","60" +"21610","-1","","","","","Wormscale Blocker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56995","284978","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","3488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21611","-1","","","","","Burrower Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17874","89373","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21612","-1","","","","","Wormscale Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40536","202681","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","12","12","0","0","0","0","0","0","0","60" +"21613","-1","","","","","Wormhide Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33749","168749","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","32","18","13","0","0","0","0","0","0","0","60" +"21614","-1","","","","","Wormhide Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30648","153242","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","24","18","0","0","0","0","0","0","0","60" +"21615","-1","","","","","Don Rigoberto's Lost Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24614","123070","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"21616","-1","","","","","Huhuran's Stinger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59764","298824","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","78","32767","0","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","18","0","0","0","0","0","0","0","0","0","60" +"21617","-1","","","","","Wasphide Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19998","99991","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","15","14","0","0","0","0","0","0","0","60" +"21618","-1","","","","","Hive Defiler Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29040","145200","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","439","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","18","0","0","0","0","0","0","0","0","60" +"21619","-1","","","","","Gloves of the Messiah","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16561","82807","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","13","0","0","0","0","0","0","0","0","60" +"21620","-1","","","","","Ring of the Martyr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88661","354646","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"21621","-1","","","","","Cloak of the Golden Hive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25024","125120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","19","13","10","0","0","0","0","0","0","0","60" +"21622","-1","Recently devoured","","","","Sharpened Silithid Femur","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83720","418602","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","78","32767","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","7","14","0","0","0","0","0","0","0","0","60" +"21623","-1","","","","","Gauntlets of the Righteous Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29577","147888","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","13","17","10","0","0","0","0","0","0","60" +"21624","-1","","","","","Gauntlets of Kalimdor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25297","126489","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","14","13","10","15","0","0","0","0","0","0","60" +"21625","-1","","","","","Scarab Brooch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83030","332121","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21626","-1","","","","","Slime-coated Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50964","254822","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","494","0","0","28","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","16","0","0","0","0","0","0","0","0","60" +"21627","-1","","","","","Cloak of Untold Secrets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25286","126431","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","21","0","0","0","0","0","0","0","0","0","60" +"21628","-1","","","","","Test AQ Resource - Copper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21629","-1","","","","","Test AQ Resource - Iron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21630","-1","","","","","Test AQ Resource - Thorium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21631","-1","","","","","Test AQ Resource - Light Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21632","-1","","","","","Test AQ Resource - Medium Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21633","-1","","","","","Test AQ Resource - Thick Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21634","-1","","","","","Test AQ Resource - Linen Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21635","-1","","","","","Barb of the Sand Reaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100824","504123","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","77","32767","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","32","31","0","0","0","0","0","0","0","0","60" +"21636","-1","","","","","Test AQ Resource - Silk Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21637","-1","","","","","Test AQ Resource - Runecloth Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21638","-1","","","","","Test AQ Resource - Spotted Yellowtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21639","-1","","","","","Pauldrons of the Unrelenting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42897","214489","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","743","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","11","0","0","0","0","0","0","0","0","60" +"21640","-1","Filled with fireworks to celebrate the Lunar Festival in style!","","","","Lunar Festival Fireworks Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21641","-1","","","","","Test AQ Resource - Rainbow Fin Albacore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21642","-1","","","","","Test AQ Resource - Roast Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21643","-1","","","","","Test AQ Resource - Arthas' Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21644","-1","","","","","Test AQ Resource - Stranglekelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21645","-1","","","","","Hive Tunneler's Boots","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31380","156900","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","17","10","0","0","0","0","0","0","0","60" +"21646","-1","","","","","Test AQ Resource - Purple Lotus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21647","-1","","","","","Fetish of the Sand Reaver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86370","345481","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21648","-1","","","","","Recomposed Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25088","125442","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","13","0","0","0","0","0","0","0","0","60" +"21649","-1","","","","","Test AQ Resource - Tin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21650","-1","","","","","Ancient Qiraji Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79141","395706","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","77","32767","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","11","0","0","0","0","0","0","0","0","0","60" +"21651","-1","","","","","Scaled Sand Reaver Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47667","238335","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","10","0","0","0","0","0","0","0","0","60" +"21652","-1","","","","","Silithid Carapace Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55824","279120","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","990","0","0","35","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","23","17","14","0","0","0","0","0","0","0","60" +"21653","-1","","","","","Test AQ Resource - Mithril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21655","-1","","","","","Test AQ Resource - Heavy Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21656","-1","","","","","Test AQ Resource - Rugged Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21657","-1","","","","","Test AQ Resource - Wool Bandages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21658","-1","","","","","Test AQ Resource - Mageweave Bandages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21659","-1","","","","","Test AQ Resource - Lean Wolf Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21660","-1","","","","","Test AQ Resource - Baked Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21661","-1","","","","","Test AQ Resource - Firebloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21662","-1","","","","","Test AQ Resource - Peacebloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21663","-1","","","","","Robes of the Guardian Saint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33225","166129","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","22","0","0","0","0","0","0","0","0","60" +"21664","-1","","","","","Barbed Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","0","0","0","0","0","0","0","0","0","60" +"21665","-1","","","","","Mantle of Wicked Revenge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31373","156869","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","77","32767","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","16","14","0","0","0","0","0","0","0","60" +"21666","-1","","","","","Sartura's Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91352","365411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","6","6","0","0","0","0","0","0","0","0","60" +"21667","-1","","","","","Legplates of Blazing Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54142","270713","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","856","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","9","23","17","0","0","0","0","0","0","0","60" +"21668","-1","","","","","Scaled Leggings of Qiraji Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46588","232941","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","20","0","0","0","0","0","0","0","0","60" +"21669","-1","","","","","Creeping Vine Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29227","146136","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","23","17","0","0","0","0","0","0","0","60" +"21670","-1","","","","","Badge of the Swarmguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80303","321213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21671","-1","","","","","Robes of the Battleguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31415","157079","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","23","17","8","0","0","0","0","0","0","0","60" +"21672","-1","","","","","Gloves of Enforcement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19707","98539","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","28","6","0","0","0","0","0","0","0","60" +"21673","-1","","","","","Silithid Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79132","395660","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","76","32767","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21674","-1","","","","","Gauntlets of Steadfast Determination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27960","139801","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","19","18","0","0","0","0","0","0","0","60" +"21675","-1","","","","","Thick Qirajihide Belt","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19933","99665","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","17","10","0","0","0","0","0","0","0","60" +"21676","-1","","","","","Leggings of the Festering Swarm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32009","160049","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","17","0","0","0","0","0","0","0","0","60" +"21677","-1","","","","","Ring of the Qiraji Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96853","387414","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21678","-1","","","","","Necklace of Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99641","398564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","9","0","0","0","0","0","0","0","0","60" +"21679","-1","","","","","Kalimdor's Revenge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106933","534669","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","81","32767","0","0","209","0","0","0","0","315","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","18","0","0","0","0","0","0","0","0","60" +"21680","-1","","","","","Vest of Swift Execution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41536","207682","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","41","21","20","0","0","0","0","0","0","0","60" +"21681","-1","","","","","Ring of the Devoured","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91369","365478","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","10","0","0","0","0","0","0","0","0","60" +"21682","-1","","","","","Bile-Covered Gauntlets","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20921","104609","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","21","10","0","0","0","0","0","0","0","60" +"21683","-1","","","","","Mantle of the Desert Crusade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44157","220785","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","17","10","6","0","0","0","0","0","0","60" +"21684","-1","","","","","Mantle of the Desert's Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38221","191108","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","17","6","0","0","0","0","0","0","0","60" +"21685","-1","","","","","Petrified Scarab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87120","348481","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21686","-1","","","","","Mantle of Phrenic Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25548","127742","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","20","0","0","0","0","0","0","0","0","60" +"21687","-1","","","","","Ukko's Ring of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102995","411981","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","76","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","0","0","0","0","0","0","0","0","0","60" +"21688","-1","","","","","Boots of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40213","201069","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","14","22","0","0","0","0","0","0","0","60" +"21689","-1","","","","","Gloves of Ebru","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19260","96301","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","15","15","0","0","0","0","0","0","0","0","60" +"21690","-1","","","","","Angelista's Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73749","294997","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","13","0","0","0","0","0","0","0","0","60" +"21691","-1","","","","","Ooze-ridden Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27324","136622","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","603","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","13","0","0","0","0","0","0","0","0","60" +"21692","-1","","","","","Triad Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27429","137145","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","19","17","0","0","0","0","0","0","0","60" +"21693","-1","","","","","Guise of the Devourer","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29332","146663","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","19","17","0","0","0","0","0","0","0","60" +"21694","-1","","","","","Ternary Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23555","117775","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","20","12","0","0","0","0","0","0","0","60" +"21695","-1","","","","","Angelista's Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90277","361110","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","11","0","0","0","0","0","0","0","0","60" +"21696","-1","","","","","Robes of the Triumvirate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31641","158205","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","21","0","0","0","0","0","0","0","0","60" +"21697","-1","","","","","Cape of the Trinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23819","119099","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","17","12","0","0","0","0","0","0","0","0","60" +"21698","-1","","","","","Leggings of Immersion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38927","194637","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","15","0","0","0","0","0","0","0","0","60" +"21699","-1","","","","","Barrage Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36256","181283","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","22","0","0","0","0","0","0","0","0","60" +"21700","-1","","","","","Pendant of the Qiraji Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90535","362141","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","17","12","11","0","0","0","0","0","0","0","60" +"21701","-1","","","","","Cloak of Concentrated Hatred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24238","121190","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","11","15","0","0","0","0","0","0","0","60" +"21702","-1","","","","","Amulet of Foul Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78630","314520","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","60" +"21703","-1","","","","","Hammer of Ji'zhi","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101707","508537","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","73","32767","0","0","198","0","0","0","0","297","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","22","26","16","0","0","0","0","0","0","0","60" +"21704","-1","","","","","Boots of the Redeemed Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42787","213938","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","15","16","15","0","0","0","0","0","0","60" +"21705","-1","","","","","Boots of the Fallen Prophet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37039","185197","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","4","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","15","15","15","0","0","0","0","0","0","60" +"21706","-1","","","","","Boots of the Unwavering Will","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43087","215437","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","12","8","0","0","0","0","0","0","0","60" +"21707","-1","","","","","Ring of Swarming Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85399","341597","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21708","-1","","","","","Beetle Scaled Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18740","93703","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","12","0","0","0","0","0","0","0","0","60" +"21709","-1","","","","","Ring of the Fallen God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113642","454568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","5","0","0","0","0","0","0","0","0","60" +"21710","-1","","","","","Cloak of the Fallen God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26680","133402","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","26","11","15","0","0","0","0","0","0","0","60" +"21711","-1","","","","","Lunar Festival Invitation","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","5","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21712","-1","","","","","Amulet of the Fallen God","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115200","460801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","11","0","0","0","0","0","0","0","0","0","60" +"21713","-1","","","","","Elune's Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21714","-1","","","","","Large Blue Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21715","-1","","","","","Sand Polished Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78119","390595","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","72","32767","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"21716","-1","","","","","Large Green Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21717","-1","","","","","Large Purple Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21718","-1","","","","","Large Red Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21719","-1","","","","","Large White Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21720","-1","","","","","Large Yellow Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21721","-1","","","","","Moonglow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21722","-1","Teaches you how to sew a Festival Dress.","","","","Pattern: Festival Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21723","-1","Teaches you how to sew a Festival Suit.","","","","Pattern: Festival Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21724","-1","Teaches you how to make a Small Blue Rocket.","","","","Schematic: Small Blue Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21725","-1","Teaches you how to make a Small Green Rocket.","","","","Schematic: Small Green Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21726","-1","Teaches you how to make a Small Red Rocket.","","","","Schematic: Small Red Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","202","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21727","-1","Teaches you how to make a Large Blue Rocket.","","","","Schematic: Large Blue Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21728","-1","Teaches you how to make a Large Green Rocket.","","","","Schematic: Large Green Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21729","-1","Teaches you how to make a Large Red Rocket.","","","","Schematic: Large Red Rocket","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","275","1100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","175","202","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21730","-1","Teaches you how to make a Blue Rocket Cluster.","","","","Schematic: Blue Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21731","-1","Teaches you how to make a Green Rocket Cluster.","","","","Schematic: Green Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21732","-1","Teaches you how to make a Red Rocket Cluster.","","","","Schematic: Red Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21733","-1","Teaches you how to make a Large Blue Rocket Cluster.","","","","Schematic: Large Blue Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21734","-1","Teaches you how to make a Large Green Rocket Cluster.","","","","Schematic: Large Green Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21735","-1","Teaches you how to make a Large Red Rocket Cluster.","","","","Schematic: Large Red Rocket Cluster","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21736","-1","","","","","Nether Drake Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21737","-1","Teaches you how to make a Firework Cluster Launcher.","","","","Schematic: Cluster Launcher","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21738","-1","Teaches you how to make a Firework Launcher.","","","","Schematic: Firework Launcher","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","202","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21739","-1","","","","","Lunar Festival Invitation DEBUG","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","5","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21740","-1","","","","","Small Rocket Recipes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21741","-1","","","","","Cluster Rocket Recipes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21742","-1","","","","","Large Rocket Recipes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21743","-1","","","","","Large Cluster Rocket Recipes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21744","-1","","","","","Lucky Rocket Cluster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21745","-1","","","","","Elder's Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21746","-1","","","","","Lucky Red Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21747","-1","","","","","Festival Firecracker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21748","-1","","","","","Figurine - Jade Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","755","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","3","2","0","0","0","0","0","0","0","0","35" +"21749","-1","","","","","Combat Task Briefing I","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8770","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21750","-1","","","","","Combat Task Briefing II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8771","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21751","-1","","","","","Tactical Task Briefing III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8536","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"21752","-1","","","","","Thorium Setting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21753","-1","","","","","Gem Studded Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","0","0","0","0","0","0","0","0","0","45" +"21754","-1","","","","","The Aquamarine Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4307","17230","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","44" +"21755","-1","","","","","Aquamarine Pendant of the Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4307","17230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","44","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","39" +"21756","-1","","","","","Figurine - Golden Hare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","755","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","35" +"21757","-1","","","","","Grimscale Murloc Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21758","-1","","","","","Figurine - Black Pearl Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","755","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","38" +"21760","-1","","","","","Figurine - Truesilver Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","755","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","40" +"21761","-1","","","","","Scarab Coffer Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21762","-1","","","","","Greater Scarab Coffer Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21763","-1","","","","","Figurine - Truesilver Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","755","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","42" +"21764","-1","","","","","Ruby Pendant of Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6420","25680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","42" +"21765","-1","","","","","Truesilver Healing Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","48","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","43" +"21766","-1","","","","","Opal Necklace of Impact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7500","30000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","45" +"21767","-1","","","","","Simple Opal Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","47" +"21768","-1","","","","","Sapphire Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","3461","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","50" +"21769","-1","","","","","Figurine - Ruby Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","755","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","4","4","0","0","0","0","0","0","0","0","47" +"21770","0","It's slightly tarnished and slimy.","","","","Ring of Mmmrrrggglll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21771","0","A little worse for the wear, but it doesn't sound like anything inside's broken.","","","","Captain Kelisendra's Cargo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21772","-1","","","","","Cut Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7500","30000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21773","-1","","","","","Cut Opal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7500","30000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21774","-1","","","","","Emerald Crown of Destruction","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11416","57083","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","50" +"21775","-1","","","","","Onslaught Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","0","0","0","0","0","0","0","0","0","51" +"21776","0","Luckily they were kept in a waterproofed case.","","","","Captain Kelisendra's Lost Rutters","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8887","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"21777","-1","","","","","Figurine - Emerald Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","755","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","50" +"21778","-1","","","","","Ring of Bitter Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18662","74651","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","52" +"21779","-1","","","","","Band of Natural Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21305","85220","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","57" +"21780","-1","","","","","Blood Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15216","76082","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"21781","-1","","","","","Thaelis's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21782","-1","","","","","2000 Test sword 63 blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49775","248875","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21783","-1","This journal appears to be relatively new, with only a few of its pages written in.","","","","Magister Duskwither's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2846","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21784","-1","","","","","Figurine - Black Diamond Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","55" +"21785","-1","","","","","Cut Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12000","48000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21786","-1","","","","","Cut Azerothian Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12000","48000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21789","-1","","","","","Figurine - Dark Iron Scorpid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","9","0","0","0","0","0","0","0","0","0","55" +"21790","-1","","","","","Sapphire Pendant of Winter Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7767","31068","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","51" +"21791","-1","","","","","Living Emerald Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12503","50012","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","53" +"21792","-1","","","","","Necklace of the Diamond Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25218","100872","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","3","3","3","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","56" +"21793","-1","","","","","Arcanite Sword Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25914","103656","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","58" +"21794","-1","","","","","Monster - Sword2H, Ahn'Qiraj","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21795","-1","","","","","Monster - Staff, Ahn'Qiraj","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21796","-1","","","","","Monster - Item, Ahn'Qiraj Held Scepter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"21800","-1","","","","","Silithid Husked Launcher","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39523","197619","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","68","32767","0","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","10","4","0","0","0","0","0","0","0","0","60" +"21801","-1","","","","","Antenna of Invigoration","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39677","198386","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","68","32767","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","60" +"21802","-1","","","","","The Lost Kris of Zedd","0.6","0","-3.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53107","265538","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","68","32767","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","60" +"21803","-1","","","","","Helm of the Holy Avenger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27935","139678","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","574","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21804","-1","","","","","Coif of Elemental Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24080","120400","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","17","0","0","0","0","0","0","0","0","60" +"21805","-1","","","","","Polished Obsidian Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28147","140736","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","17","0","0","0","0","0","0","0","0","60" +"21806","-1","","","","","Gavel of Qiraji Authority","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69942","349713","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","71","32767","0","0","108","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","16","15","15","0","0","0","0","0","0","0","60" +"21807","-1","","","","","Unmarked Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21808","-1","","","","","Arcane Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21809","-1","","","","","Fury of the Forgotten Swarm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48655","194623","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","0","0","0","0","0","0","0","0","0","60" +"21810","-1","","","","","Treads of the Wandering Nomad","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17039","85196","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","60" +"21811","-1","","","","","[PH] Object of Affection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21812","-1","","","","","Box of Chocolates","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21813","-1","","","","","Bag of Candies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21814","-1","","","","","Breastplate of Annihilation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56555","282778","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","13","0","0","0","0","0","0","0","0","60" +"21815","-1","A small message of affection...","","","","Love Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","10","10","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21816","-1","Be mine!","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21817","-1","I LOVE YOU","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21818","-1","I'll follow you all around Azeroth.","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21819","-1","All yours.","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21820","-1","You're the best!","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21821","-1","I'm all yours!","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21822","-1","You're mine!","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21823","-1","Hot lips.","","","","Heart Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21829","-1","","","","","Perfume Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21830","-1","This one is missing...","","","","Empty Wrapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21831","-1","","","","","Wrappered Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","512","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21833","-1","","","","","Cologne Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21835","-1","","","","","Anesthetic Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"21836","-1","","","","","Ritssyn's Ring of Chaos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96853","387414","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","6","0","0","0","0","0","0","0","0","0","60" +"21837","-1","","","","","Anubisath Warhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79716","398584","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","71","32767","0","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","9","0","0","0","0","0","0","0","0","60" +"21838","-1","","","","","Garb of Royal Ascension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31996","159984","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","25","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","0","0","0","0","0","0","0","0","0","60" +"21839","-1","","","","","Scepter of the False Prophet","0.6","0","-24.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92916","464583","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","84","32767","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","19","0","0","0","0","0","0","0","0","60" +"21840","-1","","","","","Bolt of Netherweave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21841","-1","","","","","Netherweave Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21842","-1","","","","","Bolt of Imbued Netherweave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8000","32000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21843","-1","","","","","Imbued Netherweave Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21844","-1","","","","","Bolt of Soulcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8000","32000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21845","-1","","","","","Primal Mooncloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21846","-1","","","","","Spellfire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","21632","108162","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2895","0","0","0","0","552","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","18","0","0","0","0","0","0","0","0","70" +"21847","-1","","","","","Spellfire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","21712","108562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2895","0","0","0","0","552","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","10","0","0","0","0","0","0","0","0","70" +"21848","-1","","","","","Spellfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","43584","217923","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","552","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","28","17","0","0","0","0","0","0","0","0","70" +"21849","-1","","","","","Netherweave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12261","61307","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","24","0","0","0","0","0","0","0","0","0","61" +"21850","-1","","","","","Netherweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12306","61531","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","30","0","0","0","0","0","0","0","0","0","61" +"21851","-1","","","","","Netherweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13059","65299","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","30","0","0","0","0","0","0","0","0","0","63" +"21852","-1","","","","","Netherweave Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26926","134630","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","45","0","0","0","0","0","0","0","0","0","64" +"21853","-1","","","","","Netherweave Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21336","106682","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","30","0","0","0","0","0","0","0","0","0","62" +"21854","-1","","","","","Netherweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29267","146337","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","45","0","0","0","0","0","0","0","0","0","67" +"21855","-1","","","","","Netherweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30091","150457","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","45","0","0","0","0","0","0","0","0","0","68" +"21856","-1","","","","","Neretzek, The Blood Drinker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99282","496413","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","71","32767","0","0","202","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","21","16","0","0","0","0","0","0","0","0","60" +"21857","-1","","","","","Test Herb Bag","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21858","-1","","","","","Spellfire Bag","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21859","-1","","","","","Imbued Netherweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31883","159418","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","26","39","0","0","0","0","0","0","0","0","67" +"21860","-1","","","","","Imbued Netherweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24616","123080","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","30","21","0","0","0","0","0","0","0","0","69" +"21861","-1","","","","","Imbued Netherweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34308","171542","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","42","28","0","0","0","0","0","0","0","0","70" +"21862","-1","","","","","Imbued Netherweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34437","172187","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","0","0","0","0","0","0","0","0","0","70" +"21863","-1","","","","","Soulcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20474","102374","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2863","0","0","0","0","557","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","35","0","254","0","0","0","3","2","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","13","9","0","0","0","0","0","0","0","70" +"21864","-1","","","","","Soulcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30824","154120","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2863","0","0","0","0","557","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","30","0","254","0","0","0","3","2","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","15","11","0","0","0","0","0","0","0","70" +"21865","-1","","","","","Soulcloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41251","206258","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2869","0","0","0","0","557","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","45","0","254","0","0","0","3","2","4","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","20","16","0","0","0","0","0","0","0","70" +"21866","-1","","","","","Arcanoweave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17197","85985","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","25","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","31","0","0","0","0","0","0","0","0","0","69" +"21867","-1","","","","","Arcanoweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26309","131549","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","35","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","39","0","0","0","0","0","0","0","0","0","70" +"21868","-1","","","","","Arcanoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35486","177430","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","50","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","45","0","0","0","0","0","0","0","0","0","70" +"21869","-1","","","","","Frozen Shadoweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","32801","164009","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2880","0","0","0","0","553","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","15","21","0","0","0","0","0","0","0","0","70" +"21870","-1","","","","","Frozen Shadoweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","32921","164609","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2880","0","0","0","0","553","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","9","15","0","0","0","0","0","0","0","0","70" +"21871","-1","","","","","Frozen Shadoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","44055","220278","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2880","0","0","0","0","553","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","30","0","0","0","0","0","0","0","0","70" +"21872","-1","","","","","Ebon Shadowbag","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21873","-1","","","","","Primal Mooncloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26798","24089","120445","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2863","0","0","0","0","554","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","12","11","0","0","0","0","0","0","0","0","70" +"21874","-1","","","","","Primal Mooncloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26798","33398","166991","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","554","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","15","0","0","0","0","0","0","0","0","70" +"21875","-1","","","","","Primal Mooncloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","26798","46852","234263","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2863","0","0","0","0","554","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","20","20","0","0","0","0","0","0","0","0","70" +"21876","-1","","","","","Primal Mooncloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21877","-1","","","","","Netherweave Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21878","-1","","","","","zzOLDSpellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21879","-1","","","","","Charged Draenethyst Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21880","-1","","","","","Perfect Draenethyst Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21881","-1","","","","","Netherweb Spider Silk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21882","-1","","","","","Soul Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21883","-1","","","","","Ebon Felcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21884","-1","","","","","Primal Fire","0","0","0","1224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21885","-1","","","","","Primal Water","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21886","-1","","","","","Primal Life","0","0","0","232","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21887","-1","","","","","Knothide Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21888","-1","","","","","Gloves of the Immortal","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15430","77153","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","16","0","0","0","0","0","0","0","0","60" +"21889","-1","","","","","Gloves of the Redeemed Prophecy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28578","142892","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","2","0","0","0","0","0","0","0","0","0","0","0","0","603","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","20","12","0","0","0","0","0","0","0","60" +"21890","-1","","","","","Gloves of the Fallen Prophet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24445","122228","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","64","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","17","12","0","0","0","0","0","0","0","60" +"21891","-1","","","","","Shard of the Fallen Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99378","397512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"21892","-1","Teaches you how to sew a Bolt of Imbued Netherweave.","","","","Pattern: Bolt of Imbued Netherweave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21893","-1","Teaches you how to sew an Imbued Netherweave Bag.","","","","Pattern: Imbued Netherweave Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","197","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21894","-1","Teaches you how to sew a Bolt of Soulcloth.","","","","Pattern: Bolt of Soulcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","197","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21895","-1","Teaches you how to create Primal Mooncloth.","","","","Pattern: Primal Mooncloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21896","-1","Teaches you how to sew a Netherweave Robe.","","","","Pattern: Netherweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","197","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21897","-1","Teaches you how to sew a Netherweave Tunic.","","","","Pattern: Netherweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","197","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21898","-1","Teaches you how to sew Imbued Netherweave Pants.","","","","Pattern: Imbued Netherweave Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","197","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21899","-1","Teaches you how to sew Imbued Netherweave Boots.","","","","Pattern: Imbued Netherweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21900","-1","Teaches you how to sew Imbued Netherweave Robe.","","","","Pattern: Imbued Netherweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","197","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21901","-1","Teaches you how to sew a Imbued Netherweave Tunic.","","","","Pattern: Imbued Netherweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","197","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21902","-1","Teaches you how to sew Soulcloth Gloves.","","","","Pattern: Soulcloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21903","-1","Teaches you how to sew Soulcloth Shoulders.","","","","Pattern: Soulcloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21904","-1","Teaches you how to sew a Soulcloth Vest.","","","","Pattern: Soulcloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"21905","-1","Teaches you how to sew Arcanoweave Bracers.","","","","Pattern: Arcanoweave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21906","-1","Teaches you how to sew Arcanoweave Boots.","","","","Pattern: Arcanoweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","197","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21907","-1","Teaches you how to sew an Arcanoweave Robe.","","","","Pattern: Arcanoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","197","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21908","-1","Teaches you how to sew a Spellfire Belt.","","","","Pattern: Spellfire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21909","-1","Teaches you how to sew Spellfire Gloves.","","","","Pattern: Spellfire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21910","-1","Teaches you how to sew a Spellfire Robe.","","","","Pattern: Spellfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26797","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21911","-1","Teaches you how to sew a Spellfire Bag.","","","","Pattern: Spellfire Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21912","-1","Teaches you how to sew Frozen Shadoweave Shoulders.","","","","Pattern: Frozen Shadoweave Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21913","-1","Teaches you how to sew a Frozen Shadoweave Robe","","","","Pattern: Frozen Shadoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21914","-1","Teaches you how to sew Frozen Shadoweave Boots.","","","","Pattern: Frozen Shadoweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26801","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21915","-1","Teaches you how to sew an Ebon Shadowbag.","","","","Pattern: Ebon Shadowbag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21916","-1","Teaches you how to sew a Primal Mooncloth Belt.","","","","Pattern: Primal Mooncloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26798","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21917","-1","Teaches you how to sew a Primal Mooncloth Robe.","","","","Pattern: Primal Mooncloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26798","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21918","-1","Teaches you how to sew Primal Mooncloth Shoulders.","","","","Pattern: Primal Mooncloth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","26798","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21919","-1","Teaches you how to sew a Primal Mooncloth Bag.","","","","Pattern: Primal Mooncloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"21920","-1","","","","","Creased Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21921","-1","","","","","Carefully Penned Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21923","-1","","","","","[PH] Picnic Parcel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21924","-1","Teaches you how to sew a Runecloth Robe.","","","","Pattern: Runecloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3000","12000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","197","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21925","-1","","","","","Immaculate Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21926","-1","","","","","Slightly Creased Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"21927","-1","","","","","Instant Poison VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"21928","-1","","","","","Winterspring Blood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21929","-1","","","","","Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21930","-1","","","","","[PH] Valentine Lockbox, Quest, Common","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21931","-1","","","","","Woven Copper Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","1","0","0","0","0","0","0","0","0","0","10" +"21932","-1","","","","","Heavy Copper Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","0","0","0","0","0","0","0","0","0","12" +"21933","-1","","","","","Thick Bronze Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","3","0","0","0","0","0","0","0","0","0","17" +"21934","-1","","","","","Ornate Tigerseye Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","0","0","0","0","0","0","0","0","0","15" +"21935","-1","","","","","Stable Ectoplasm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21936","-1","","","","","Frozen Ectoplasm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21937","-1","","","","","Scorched Ectoplasm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21938","-1","","","","","Magma Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21939","-1","Fel and Elemental, two great tastes...","","","","Fel Elemental Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21940","-1","Teaches you how to craft a Golden Hare.","","","","Design: Golden Hare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","755","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21941","-1","Teaches you how to craft a Black Pearl Panther.","","","","Design: Black Pearl Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","215","755","43","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21942","-1","Teaches you how to craft a Ruby Crown of Restoration.","","","","Design: Ruby Crown of Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","755","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21943","-1","Teaches you how to craft a Truesilver Crab.","","","","Design: Truesilver Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","755","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21944","-1","Teaches you how to craft a Truesilver Boar.","","","","Design: Truesilver Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","235","755","47","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21945","-1","Teaches you how to craft The Aquamarine Ward.","","","","Design: The Aquamarine Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","755","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21946","-1","","","","","Ectoplasmic Distiller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21947","-1","Teaches you how to craft a Gem Studded Band.","","","","Design: Gem Studded Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","755","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21948","-1","Teaches you how to craft an Opal Necklace of Impact.","","","","Design: Opal Necklace of Impact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1875","7500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","755","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21949","-1","Teaches you how to craft a Ruby Serpent.","","","","Design: Ruby Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","260","755","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21950","-1","Teaches you how to craft a Cut Emerald.","","","","Design: Cut Emerald - Deprecated","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","755","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21951","-1","Teaches you how to craft a Cut Azerothian Diamond.","","","","Design: Cut Azerothian Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","755","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21952","-1","Teaches you how to craft an Emerald Crown of Destruction.","","","","Design: Emerald Crown of Destruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","755","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21953","-1","Teaches you how to craft an Emerald Owl.","","","","Design: Emerald Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3125","12500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","755","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21954","-1","Teaches you how to craft a Ring of Bitter Shadows.","","","","Design: Ring of Bitter Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","755","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21955","-1","Teaches you how to craft a Black Diamond Crab.","","","","Design: Black Diamond Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","12500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21956","-1","Teaches you how to craft a Dark Iron Scorpid.","","","","Design: Dark Iron Scorpid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","12500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21957","-1","Teaches you how to craft a Necklace of the Diamond Tower.","","","","Design: Necklace of the Diamond Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3375","13500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21958","-1","Teaches you how to craft an Arcanite Sword Pendant.","","","","Design: Arcanite Sword Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3375","13500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21959","-1","Teaches you how to craft a Blood Crown.","","","","Design: Blood Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"21960","-1","","","","","Handmade Woodcraft","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21962","-1","","","","","[PH] Valentine Quest Item, UncommonStormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21963","-1","","","","","[PH] Valentine Quest Item, UncommonIronforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21964","-1","","","","","[PH] Valentine Quest Item, UncommonDarnassus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21975","-1","","","","","Pledge of Adoration: Stormwind","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21979","-1","","","","","Gift of Adoration: Darnassus","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21980","-1","","","","","Gift of Adoration: Ironforge","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21981","-1","","","","","Gift of Adoration: Stormwind","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21982","-1","","","","","Ogre Warbeads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21983","-1","","","","","Incomplete Banner of Provocation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21984","-1","The evil trapped within this fragment seems to be growing stronger...","","","","Left Piece of Lord Valthalak's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21985","-1","","","","","Sealed Blood Container","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21986","-1","","","","","Banner of Provocation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21987","-1","This still-smoldering chunk of Lord Incendius will make for an excellent coal.","","","","Incendicite of Incendius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21988","-1","This one's far too hot to touch... better wrap it in something nonflammable!","","","","Ember of Emberseer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21989","-1","This visceral chunk of the Duke burns on, fueled by his hatred for you.","","","","Cinder of Cynders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21990","-1","","","","","Netherweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1275","5100","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21991","-1","","","","","Heavy Netherweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","129","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21992","-1","Teaches you how to make a Netherweave Bandage.","","","","Manual: Netherweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","129","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21993","-1","Teaches you how to make a Heavy Netherweave Bandage.","","","","Manual: Heavy Netherweave Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","129","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"21994","-1","","","","","Belt of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18406","92033","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","12","9","0","0","0","0","0","0","0","0" +"21995","-1","","","","","Boots of Heroism","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34276","171384","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","20","0","0","0","0","0","0","0","0","0" +"21996","-1","","","","","Bracers of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18543","92717","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","9","5","0","0","0","0","0","0","0","0" +"21997","-1","","","","","Breastplate of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46128","230643","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","781","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","21","13","0","0","0","0","0","0","0","0" +"21998","-1","","","","","Gauntlets of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17731","88655","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","12","0","0","0","0","0","0","0","0","0" +"21999","-1","","","","","Helm of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34787","173939","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","32","18","0","0","0","0","0","0","0","0","0" +"22000","-1","","","","","Legplates of Heroism","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37912","189563","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","16","11","0","0","0","0","0","0","0","0" +"22001","-1","","","","","Spaulders of Heroism","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28117","140588","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","12","12","0","0","0","0","0","0","0","0" +"22002","-1","","","","","Darkmantle Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13464","67320","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","13","10","0","0","0","0","0","0","0","0" +"22003","-1","","","","","Darkmantle Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25261","126307","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","10","0","0","0","0","0","0","0","0","0" +"22004","-1","","","","","Darkmantle Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13913","69569","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","7","7","0","0","0","0","0","0","0","0" +"22005","-1","","","","","Darkmantle Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26102","130510","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","18","13","0","0","0","0","0","0","0","0" +"22006","-1","","","","","Darkmantle Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12034","60174","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","12","9","0","0","0","0","0","0","0","0" +"22007","-1","","","","","Darkmantle Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25791","128959","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","15","15","0","0","0","0","0","0","0","0" +"22008","-1","","","","","Darkmantle Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19166","95832","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","10","0","0","0","0","0","0","0","0","0" +"22009","-1","","","","","Darkmantle Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31970","159854","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","512","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","15","0","0","0","0","0","0","0","0","0" +"22010","-1","","","","","Beastmaster's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15451","77256","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","16","10","0","0","0","0","0","0","0","0" +"22011","-1","","","","","Beastmaster's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15508","77543","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","11","7","5","0","0","0","0","0","0","0","0" +"22012","-1","","","","","Master First Aid - Doctor in the House","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22013","-1","","","","","Beastmaster's Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29212","146062","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","359","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","15","21","12","0","0","0","0","0","0","0","0" +"22014","-1","","","","","Hallowed Brazier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","333333","1333333","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22015","-1","","","","","Beastmaster's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14941","74709","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","12","10","0","0","0","0","0","0","0","0" +"22016","-1","","","","","Beastmaster's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23809","119045","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","8","10","0","0","0","0","0","0","0","0" +"22017","-1","","","","","Beastmaster's Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32137","160687","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","14","9","0","0","0","0","0","0","0","0" +"22018","-1","","","","","Conjured Glacier Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22019","-1","","","","","Conjured Croissant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22020","-1","","","","","QAEnchant Weapon +15 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22021","-1","","","","","QAEnchant Weapon +22 Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22022","-1","","","","","QAEnchant Weapon +15 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22023","-1","","","","","QAEnchant Weapon +20 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22024","-1","","","","","QAEnchant Weapon Unholy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22025","-1","","","","","QAEnchant Weapon Lifestealing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22026","-1","","","","","QAE Test Item Update","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22027","-1","","","","","zzOLD - QAEnchant Weapon +5 Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22028","-1","","","","","QAEnchant Chest +4 Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22029","-1","","","","","QAEnchant Gloves +20 Frost Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22030","-1","","","","","QAEnchant Gloves +20 Fire Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22031","-1","","","","","QAEnchant Gloves +20 Shadow Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22032","-1","","","","","QAEnchant Gloves +30 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22033","-1","","","","","QAEnchant Gloves +15 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22034","-1","","","","","QAEnchant Gloves +2% Threat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22035","-1","","","","","QAEnchant Gloves +5 Skinning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22036","-1","","","","","QAEnchant Bracer +4 Mana5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22037","-1","","","","","QAEnchant Bracer +24 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22038","-1","","","","","QAEnchant Shield +2% Block Chance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22039","-1","","","","","QAEnchant Cloak +15 Fire Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22040","-1","","","","","QAEnchant Cloak +15 Nature Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22041","-1","","","","","QAEnchant Cloak +8 Stealth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22042","-1","","","","","QAEnchant Cloak -2% Threat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22043","-1","","","","","QAEnchant Cloak +1% Dodge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22044","-1","","","","","Mana Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"22045","-1","","","","","Test QARaid Uber Ammo Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22046","-1","This section of the amulet vibrates with a palpable fervor to be rejoined with its sibling pieces.","","","","Right Piece of Lord Valthalak's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22047","-1","This object feels wrong to the touch, as if an evil within is trying to escape.","","","","Top Piece of Lord Valthalak's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","3072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22048","-1","Reunited into its whole form, the amulet pulses strongly with the evil spirit of Lord Valthalak.","","","","Lord Valthalak's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22049","-1","","","","","Brazier of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22050","-1","","","","","Brazier of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22051","-1","","","","","Brazier of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22052","-1","","","","","Brazier of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22053","-1","","","","","Deadly Poison VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"22054","-1","","","","","Deadly Poison VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"22055","-1","","","","","Wound Poison V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"22056","-1","","","","","Brazier of Beckoning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22057","-1","","","","","Brazier of Invocation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22058","-1","","","","","Valentine's Day Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","6","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22059","-1","","","","","Valentine's Day Card","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","6","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22060","-1","","","","","Beastmaster's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41015","205076","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","16","13","0","0","0","0","0","0","0","0" +"22061","-1","","","","","Beastmaster's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31009","155045","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","9","0","0","0","0","0","0","0","0","0" +"22062","-1","","","","","Sorcerer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11049","55245","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","7","12","0","0","0","0","0","0","0","0" +"22063","-1","","","","","Sorcerer's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11088","55442","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","5","8","0","0","0","0","0","0","0","0" +"22064","-1","","","","","Sorcerer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20800","104000","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","16","14","0","0","0","0","0","0","0","0" +"22065","-1","","","","","Sorcerer's Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20873","104368","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","25","14","16","0","0","0","0","0","0","0","0" +"22066","-1","","","","","Sorcerer's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9623","48119","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","14","12","0","0","0","0","0","0","0","0" +"22067","-1","","","","","Sorcerer's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20624","103124","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","22","17","0","0","0","0","0","0","0","0" +"22068","-1","","","","","Sorcerer's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15749","78749","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","7","11","0","0","0","0","0","0","0","0" +"22069","-1","","","","","Sorcerer's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26269","131345","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","517","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","9","14","0","0","0","0","0","0","0","0" +"22070","-1","","","","","Deathmist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10578","52893","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","16","0","0","0","0","0","0","0","0","0" +"22071","-1","","","","","Deathmist Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10618","53090","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","12","0","0","0","0","0","0","0","0","0" +"22072","-1","","","","","Deathmist Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21591","107955","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","22","0","0","0","0","0","0","0","0","0" +"22073","-1","","","","","Deathmist Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16043","80217","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","16","0","0","0","0","0","0","0","0","0" +"22074","-1","","","","","Deathmist Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20067","100339","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","24","0","0","0","0","0","0","0","0","0" +"22075","-1","","","","","Deathmist Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26852","134263","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","27","0","0","0","0","0","0","0","0","0" +"22076","-1","","","","","Deathmist Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20213","101065","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","14","0","0","0","0","0","0","0","0","0" +"22077","-1","","","","","Deathmist Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10299","51498","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","518","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","13","0","0","0","0","0","0","0","0","0" +"22078","-1","","","","","Virtuous Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10891","54457","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","12","12","0","0","0","0","0","0","0","0" +"22079","-1","","","","","Virtuous Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10929","54649","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","8","8","8","0","0","0","0","0","0","0","0" +"22080","-1","","","","","Virtuous Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20505","102528","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","16","0","0","0","0","0","0","0","0" +"22081","-1","","","","","Virtuous Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10448","52241","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","12","15","14","0","0","0","0","0","0","0","0" +"22082","-1","","","","","Virtuous Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16572","82860","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","12","12","0","0","0","0","0","0","0","0" +"22083","-1","","","","","Virtuous Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27632","138163","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","22","12","21","0","0","0","0","0","0","0","0" +"22084","-1","","","","","Virtuous Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19333","96668","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","13","12","0","0","0","0","0","0","0","0" +"22085","-1","","","","","Virtuous Skirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21034","105173","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","13","14","12","0","0","0","0","0","0","0","0" +"22086","-1","","","","","Soulforge Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18341","91705","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","11","0","0","0","0","0","0","0","0" +"22087","-1","","","","","Soulforge Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34151","170759","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","12","12","10","0","0","0","0","0","0","0" +"22088","-1","","","","","Soulforge Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18477","92389","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","9","9","0","0","0","0","0","0","0","0" +"22089","-1","","","","","Soulforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45966","229831","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","781","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","17","16","12","0","0","0","0","0","0","0" +"22090","-1","","","","","Soulforge Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17667","88335","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","9","10","0","0","0","0","0","0","0","0" +"22091","-1","","","","","Soulforge Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34662","173313","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","17","12","0","0","0","0","0","0","0" +"22092","-1","","","","","Soulforge Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37780","188903","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","17","17","10","0","0","0","0","0","0","0" +"22093","-1","","","","","Soulforge Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28020","140100","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","10","0","0","0","0","0","0","0","0" +"22094","-1","Its red juice can leave an indelible stain on your clothing, so be careful.","","","","Bloodkelp","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22095","-1","","","","","Bindings of The Five Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16158","80792","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","9","10","0","0","0","0","0","0","0","0" +"22096","-1","","","","","Boots of The Five Thunders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30451","152257","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","12","13","12","10","0","0","0","0","0","0","0" +"22097","-1","","","","","Coif of The Five Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30427","152135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","359","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","22","12","0","0","0","0","0","0","0","0" +"22098","-1","","","","","Cord of The Five Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16334","81670","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","10","11","0","0","0","0","0","0","0","0" +"22099","-1","","","","","Gauntlets of The Five Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15558","77793","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","9","14","12","0","0","0","0","0","0","0","0" +"22100","-1","","","","","Kilt of The Five Thunders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30953","154768","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","4","7","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","17","10","17","0","0","0","0","0","0","0" +"22101","-1","","","","","Pauldrons of The Five Thunders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23106","115533","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","286","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","6","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","10","10","0","0","0","0","0","0","0" +"22102","-1","","","","","Vest of The Five Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38368","191844","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","519","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","16","17","12","0","0","0","0","0","0","0" +"22103","-1","","","","","Master Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22104","-1","","","","","Master Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22105","-1","","","","","Master Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22106","-1","","","","","Feralheart Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13023","65118","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","8","9","6","7","0","0","0","0","0","0" +"22107","-1","","","","","Feralheart Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24438","122191","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","4","3","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","13","12","12","7","0","0","0","0","0","0" +"22108","-1","","","","","Feralheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13122","65610","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","4","3","7","6","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","6","6","6","5","0","0","0","0","0","0" +"22109","-1","","","","","Feralheart Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24619","123099","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","17","16","17","14","9","0","0","0","0","0","0" +"22110","-1","","","","","Feralheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12546","62731","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","3","7","4","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","10","12","9","10","10","0","0","0","0","0","0" +"22111","-1","","","","","Feralheart Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26883","134418","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","14","14","14","12","0","0","0","0","0","0" +"22112","-1","","","","","Feralheart Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19976","99883","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","4","3","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","9","8","8","5","0","0","0","0","0","0" +"22113","-1","","","","","Feralheart Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33313","166569","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","4","3","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","14","17","16","9","0","0","0","0","0","0" +"22114","-1","","","","","Pink Murloc Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22115","-1","","","","","Extra-Dimensional Ghost Revealer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22116","-1","","","","","Master Soulstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22117","-1","","","","","Pledge of Loyalty: Stormwind","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22119","-1","","","","","Pledge of Loyalty: Ironforge","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22120","-1","","","","","Pledge of Loyalty: Darnassus","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22121","-1","","","","","Pledge of Loyalty: Undercity","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22122","-1","","","","","Pledge of Loyalty: Thunder Bluff","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22123","-1","","","","","Pledge of Loyalty: Orgrimmar","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22128","-1","","","","","Master Firestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22130","-1","","","","","Symbol of Love","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22131","-1","","","","","Stormwind Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22132","-1","","","","","Ironforge Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22133","-1","","","","","Darnassus Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22134","-1","","","","","Undercity Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22135","-1","","","","","Thunder Bluff Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22136","-1","","","","","Orgrimmar Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22137","-1","","","","","Ysida's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22138","-1","Crudely crafted, mostly from dark iron, these bracers exhibit trace amounts of a shiny metal.","","","","Blackrock Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22139","-1","","","","","Ysida's Locket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22140","-1","","","","","Sentinel's Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22141","-1","","","","","Ironforge Guard's Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22142","-1","","","","","Grunt's Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22143","-1","","","","","Stormwind Guard's Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22144","-1","","","","","Bluffwatcher's Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22145","-1","","","","","Guardian's Moldy Card","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22146","-1","Teaches Gift of the Wild (Rank 3).","","","","Book: Gift of the Wild III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"22147","-1","","","","","Flintweed Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22148","-1","","","","","Wild Quillvine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22149","-1","","","","","Beads of Ogre Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","12","0","0","0","0","0","0","0","0","0" +"22150","-1","","","","","Beads of Ogre Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","7","0","0","0","0","0","0","0","0","0","0" +"22151","-1","","","","","Anthion's Holy Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22152","-1","","","","","Anthion's Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22153","-1","Teaches Arcane Brilliance (Rank 2).","","","","Tome of Arcane Brilliance 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"22154","-1","","","","","Pledge of Adoration: Ironforge","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22155","-1","","","","","Pledge of Adoration: Darnassus","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22156","-1","","","","","Pledge of Adoration: Orgrimmar","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22157","-1","","","","","Pledge of Adoration: Undercity","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22158","-1","","","","","Pledge of Adoration: Thunder Bluff","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22159","-1","","","","","Pledge of Friendship: Darnassus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22160","-1","","","","","Pledge of Friendship: Ironforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22161","-1","","","","","Pledge of Friendship: Orgrimmar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22162","-1","","","","","Pledge of Friendship: Thunder Bluff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22163","-1","","","","","Pledge of Friendship: Undercity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22164","-1","","","","","Gift of Adoration: Orgrimmar","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22165","-1","","","","","Gift of Adoration: Thunder Bluff","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22166","-1","","","","","Gift of Adoration: Undercity","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22167","-1","","","","","Gift of Friendship: Darnassus","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22168","-1","","","","","Gift of Friendship: Ironforge","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22169","-1","","","","","Gift of Friendship: Orgrimmar","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22170","-1","","","","","Gift of Friendship: Stormwind","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22171","-1","","","","","Gift of Friendship: Thunder Bluff","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22172","-1","","","","","Gift of Friendship: Undercity","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196612","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22173","-1","","","","","Dwarven Homebrew","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22174","-1","","","","","Romantic Poem","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22175","-1","","","","","Freshly Baked Pie","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22176","-1","","","","","Homemade Bread","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22177","-1","","","","","Freshly Picked Flowers","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22178","-1","","","","","Pledge of Friendship: Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22179","-1","","","","","Grimoire of Firebolt (Rank 8)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13500","54000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"22180","-1","","","","","Grimoire of Blood Pact (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"22181","-1","","","","","Grimoire of Fire Shield (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9000","36000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"22182","-1","","","","","Grimoire of Torment (Rank 7)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16750","67000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"22183","-1","","","","","Grimoire of Suffering (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8000","32000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","63" +"22184","-1","","","","","Grimoire of Consume Shadows (Rank 7)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","11000","44000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","66" +"22185","-1","","","","","Grimoire of Sacrifice (Rank 7)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9000","36000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"22186","-1","","","","","Grimoire of Lash of Pain (Rank 7)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13500","54000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"22187","-1","","","","","Grimoire of Soothing Kiss (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16750","67000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"22188","-1","","","","","Grimoire of Devour Magic (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7250","29000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"22189","-1","","","","","Grimoire of Devour Magic (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16750","67000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"22190","-1","","","","","Grimoire of Tainted Blood (Rank 5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","9000","36000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"22191","-1","","","","","Obsidian Mail Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47549","237749","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22192","-1","","","","","Bloodkelp Elixir of Dodging","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22193","-1","","","","","Bloodkelp Elixir of Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22194","-1","","","","","Black Grasp of the Destroyer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23455","117276","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","318","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22195","-1","","","","","Light Obsidian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17221","86107","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22196","-1","","","","","Thick Obsidian Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56466","282334","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","929","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","38","16","0","0","0","0","0","0","0","0","60" +"22197","-1","","","","","Heavy Obsidian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18915","94579","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","0","0","0","0","0","0","0","0","0","60" +"22198","-1","","","","","Jagged Obsidian Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47188","235942","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","3040","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22199","-1","","","","","Monster - Axe, 2H Arcanite Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22200","-1","","","","","Silver Shafted Arrow","0","864000","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22201","-1","","","","","Reliquary of Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22202","-1","","","","","Small Obsidian Shard","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22203","-1","","","","","Large Obsidian Shard","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22204","-1","","","","","Wristguards of Renown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12403","62015","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","10","10","0","0","0","0","0","0","0","55" +"22205","-1","","","","","Black Steel Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14998","74994","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","10","7","0","0","0","0","0","0","0","52" +"22206","-1","","","","","Bouquet of Red Roses","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22207","-1","","","","","Sash of the Grand Hunt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15047","75239","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","6","8","0","0","0","0","0","0","55" +"22208","-1","","","","","Lavastone Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57079","285396","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","58","32767","0","0","135","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","17","17","0","0","0","0","0","0","0","53" +"22209","-1","Teaches you how to make a Heavy Obsidian Belt.","","","","Plans: Heavy Obsidian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22210","-1","","","","","Monster - Knuckle, B01 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22211","-1","","","","","Monster - Knuckle, B01 Red Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22212","-1","","","","","Golem Fitted Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18636","93180","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","17","0","0","0","0","0","0","0","0","51" +"22213","-1","","","","","Monster - Mace, Hand of Edward the Odd","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22214","-1","Teaches you how to make a Light Obsidian Belt.","","","","Plans: Light Obsidian Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22215","-1","","","","","Monster - Dagger, Bonescraper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22216","-1","","","","","Venoxis's Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22217","-1","","","","","Kurinnaxx's Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22218","-1","","","","","Handful of Rose Petals","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22219","-1","Teaches you how to make a Jagged Obsidian Shield.","","","","Plans: Jagged Obsidian Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22220","-1","Teaches you how to make the Black Grasp of the Destroyer.","","","","Plans: Black Grasp of the Destroyer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22221","-1","Teaches you how to make an Obsidian Mail Tunic.","","","","Plans: Obsidian Mail Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22222","-1","Teaches you how to make a Thick Obsidian Breastplate.","","","","Plans: Thick Obsidian Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22223","-1","","","","","Foreman's Head Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19722","98614","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","14","17","0","0","0","0","0","0","0","50" +"22224","-1","","","","","Jeering Spectre's Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22225","-1","","","","","Dragonskin Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14937","74687","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","3304","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","0","0","0","0","0","0","0","0","55" +"22226","-1","The silithid have left little to the corpse of this champion of the Cenarion Circle.","","","","Druidical Remains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22227","-1","This night elvic antiquity has been frozen solid by the Frostmaul giants. Handle with care.","","","","Starbreeze Village Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22228","-1","The keenest of edges, meant to indiscriminately cleave through any foe, living or dead.","","","","Brilliant Sword of Zealotry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22229","-1","These ashen remains of an exiled soul pulse faintly with the echo of a once-promising life.","","","","Soul Ashes of the Banished","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22230","-1","","","","","Frightmaw Hide","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9978","49894","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","0" +"22231","-1","","","","","Kayser's Boots of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15880","79400","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","32767","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","11","0","0","0","0","0","0","0","0","56" +"22232","-1","","","","","Marksman's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14421","72107","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","56" +"22233","-1","","","","","Zigris' Footlocker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5837","23350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22234","-1","","","","","Mantle of Lost Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9713","48568","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","32767","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","5","0","0","0","0","0","0","0","0","48" +"22235","-1","","","","","Truesilver Shafted Arrow","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22236","-1","","","","","Buttermilk Delight","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22237","-1","","","","","Dark Desire","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22238","-1","","","","","Very Berry Cream","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22239","-1","","","","","Sweet Surprise","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22240","-1","","","","","Greaves of Withering Despair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14972","74861","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","32767","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","10","0","0","0","0","0","0","0","0","48" +"22241","-1","","","","","Dark Warder's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15739","78697","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","7","0","0","0","0","0","0","0","52" +"22242","-1","","","","","Verek's Leash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11923","59617","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","8","8","8","0","0","0","0","0","0","0","51" +"22243","-1","","","","","Small Soul Pouch","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22244","-1","","","","","Box of Souls","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22245","-1","","","","","Soot Encrusted Footwear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12375","61875","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","32767","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","9","8","14","0","0","0","0","0","0","0","51" +"22246","-1","","","","","Enchanted Mageweave Pouch","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","16","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22247","-1","","","","","Faith Healer's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16087","80438","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","10","0","0","0","0","0","0","0","58" +"22248","-1","","","","","Enchanted Runecloth Bag","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22249","-1","","","","","Big Bag of Enchantment","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22250","-1","","","","","Herb Pouch","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","12","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22251","-1","","","","","Cenarion Herb Bag","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22252","-1","","","","","Satchel of Cenarius","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22253","-1","The title reads ""The Brode to Nowhere""","","","","Tome of the Lost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","7","6","0","0","0","0","0","0","0","0","58" +"22254","-1","","","","","Wand of Eternal Light","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30655","153277","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","57","32767","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","6","0","0","0","0","0","0","0","0","0","52" +"22255","-1","","","","","Magma Forged Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32802","131210","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","7","7","0","0","0","0","0","0","0","52" +"22256","-1","","","","","Mana Shaping Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8236","41184","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","11","9","7","0","0","0","0","0","0","0","52" +"22257","-1","","","","","Bloodclot Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36127","144510","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","8","8","7","0","0","0","0","0","0","0","52" +"22258","-1","","","","","Love Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","9","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22259","-1","","","","","Unbestowed Friendship Bracelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","10","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22260","-1","These are received from true friends...","","","","Friendship Bracelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22261","-1","","","","","Love Fool","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22262","-1","Give this collection to Kwee Q. Peddlefeet.","","","","Alliance Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22263","-1","Give this collection to Kwee Q. Peddlefeet.","","","","Horde Gift Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22264","-1","","","","","Carefully Written Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22265","-1","","","","","Lovingly Composed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22266","-1","","","","","Flarethorn","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43878","219394","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","32767","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","52" +"22267","-1","","","","","Spellweaver's Turban","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16084","80423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","9","0","0","0","0","0","0","0","0","0","60" +"22268","-1","","","","","Draconic Infused Emblem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66290","265161","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22269","-1","","","","","Shadow Prowler's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16199","80998","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","17","7","0","0","0","0","0","0","0","0","58" +"22270","-1","","","","","Entrenching Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20755","103775","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","31","3","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","8","10","10","0","0","0","0","0","0","50" +"22271","-1","","","","","Leggings of Frenzied Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22328","111644","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","15","0","0","0","0","0","0","0","0","52" +"22272","-1","","","","","Forest's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15152","75761","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","8","7","0","0","0","0","0","0","0","0","0" +"22273","-1","","","","","Moonshadow Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11408","57042","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","0","0","0","0","0","0","0","0","0","0" +"22274","-1","","","","","Grizzled Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15270","76350","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","17","16","11","0","0","0","0","0","0","0","0" +"22275","-1","","","","","Firemoss Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15383","76917","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","8","0","0","0","0","0","0","0","0","52" +"22276","-1","","","","","Lovely Red Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22277","-1","","","","","Red Dinner Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22278","-1","","","","","Lovely Blue Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22279","-1","","","","","Lovely Black Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22280","-1","","","","","Lovely Purple Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22281","-1","","","","","Blue Dinner Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22282","-1","","","","","Purple Dinner Suit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22283","-1","","","","","Sack of Homemade Bread","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22284","-1","","","","","Bundle of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22285","-1","","","","","Stormwind Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22286","-1","","","","","Ironforge Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22287","-1","","","","","Parcel of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22288","-1","","","","","Case of Homebrew","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22289","-1","","","","","Stack of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22290","-1","","","","","Darnassus Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22291","-1","","","","","Box of Woodcrafts","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22292","-1","","","","","Box of Fresh Pies","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22293","-1","","","","","Package of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22294","-1","","","","","Orgrimmar Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22295","-1","","","","","Satchel of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22296","-1","","","","","Basket of Flowers","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22297","-1","","","","","Thunder Bluff Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22298","-1","","","","","Book of Romantic Poems","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22299","-1","","","","","Sheaf of Cards","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22300","-1","","","","","Undercity Pledge Collection","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","66560","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22301","-1","","","","","Ironweave Robe","0.2","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20983","104919","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","15","0","0","0","0","0","0","0","0","58" +"22302","-1","","","","","Ironweave Cowl","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15795","78977","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","63","400","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","15","0","0","0","0","0","0","0","0","58" +"22303","-1","","","","","Ironweave Pants","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20853","104269","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","62","400","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","15","0","0","0","0","0","0","0","0","57" +"22304","-1","","","","","Ironweave Gloves","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10322","51612","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22305","-1","","","","","Ironweave Mantle","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15538","77690","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22306","-1","","","","","Ironweave Belt","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10396","51980","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22307","-1","Teaches you how to sew an Enchanted Mageweave Pouch.","","","","Pattern: Enchanted Mageweave Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","197","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22308","-1","Teaches you how to sew an Enchanted Runecloth Bag.","","","","Pattern: Enchanted Runecloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22309","-1","Teaches you how to sew a Big Bag of Enchantment.","","","","Pattern: Big Bag of Enchantment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22310","-1","Teaches you how to sew a Cenarion Herb Bag.","","","","Pattern: Cenarion Herb Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","275","197","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22311","-1","","","","","Ironweave Boots","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14758","73794","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","11","0","0","0","0","0","0","0","0","56" +"22312","-1","Teaches you how to sew a Satchel of Cenarius.","","","","Pattern: Satchel of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22313","-1","","","","","Ironweave Bracers","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9912","49564","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","520","0","0","0","0","0","0","0","61","400","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","8","0","0","0","0","0","0","0","0","56" +"22314","-1","","","","","Huntsman's Harpoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62189","310945","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","61","-1","0","0","150","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","35","0","0","0","0","0","0","0","0","0","56" +"22315","-1","","","","","Hammer of Revitalization","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49937","249689","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","61","-1","0","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","5","0","0","0","0","0","0","0","0","0","56" +"22316","-1","","","","","Test Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","509","2545","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","3","0","0","0","0","0","0","0","0","0","10" +"22317","-1","","","","","Lefty's Brass Knuckle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50306","251530","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","61","-1","0","0","42","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","12","0","0","0","0","0","0","0","0","56" +"22318","-1","","","","","Malgen's Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37869","189347","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","61","-1","0","0","80","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","4","0","0","0","0","0","0","0","0","0","56" +"22319","-1","","","","","Tome of Divine Right","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38664","154658","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","5","4","0","0","0","0","0","0","0","0","56" +"22320","-1","","","","","Mux's Quality Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22321","-1","","","","","Heart of Wyrmthalak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10539","42158","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","56" +"22322","-1","Not edible","","","","The Jaw Breaker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51234","256170","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","61","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","56" +"22324","-1","","","","","Winter Kimchi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22325","-1","","","","","Belt of the Trickster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12019","60095","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","9","0","0","0","0","0","0","0","0","56" +"22326","-1","","","","","Amalgam's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15282","61130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","6","5","0","0","0","0","0","0","0","0","58" +"22327","-1","","","","","Amulet of the Redeemed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2535","10140","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","9","9","8","0","0","0","0","0","0","0","58" +"22328","-1","","","","","Legplates of Vigilance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34980","174902","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","58" +"22329","-1","","","","","Scepter of Interminable Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22330","-1","","","","","Shroud of Arcane Mastery","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14701","73507","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","10","11","0","0","0","0","0","0","0","0","56" +"22331","-1","","","","","Band of the Steadfast Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36253","145013","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","12","0","0","0","0","0","0","0","0","57" +"22332","-1","","","","","Blade of Necromancy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50053","250267","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","32767","0","0","42","0","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","4","0","0","0","0","0","0","0","0","0","57" +"22333","-1","","","","","Hammer of Divine Might","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62803","314016","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","62","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","13","0","0","0","0","0","0","0","0","57" +"22334","-1","","","","","Band of Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13782","55130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","7","6","0","0","0","0","0","0","0","57" +"22335","-1","","","","","Lord Valthalak's Staff of Command","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64130","320650","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","11","10","0","0","0","0","0","0","0","0","58" +"22336","-1","","","","","Draconian Aegis of the Legion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32957","164786","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","2153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","7","0","0","0","0","0","0","0","0","0","58" +"22337","-1","","","","","Shroud of Domination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15506","77531","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","7","17","0","0","0","0","0","0","0","0","58" +"22338","-1","","","","","Volcanic Ash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22339","-1","","","","","Rune Band of Wizardry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15282","61130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","0","0","0","0","0","0","0","0","0","58" +"22340","-1","","","","","Pendant of Celerity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65328","421315","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","58" +"22341","-1","","","","","Monster - Mace, Horde A04 Pale - Bone Wrench","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22342","-1","","","","","Leggings of Torment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21605","108029","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","16","0","0","0","0","0","0","0","0","58" +"22343","-1","","","","","Handguards of Savagery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16260","81301","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","9","0","0","0","0","0","0","0","0","58" +"22344","-1","Where to find Haunted Loci","","","","Brazier of Invocation: User's Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2859","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22345","-1","","","","","Totem of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","14620","73101","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22346","-1","","","","","Monster - Mace2H, Unstoppable Force","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22347","-1","","","","","Fahrad's Reloading Repeater","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38332","191664","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","65","-1","0","0","107","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","4","0","0","0","0","0","0","0","0","0","0" +"22348","-1","","","","","Doomulus Prime","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64134","320670","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","65","-1","0","0","158","0","0","0","0","265","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","22","0","0","0","0","0","0","0","0","0" +"22349","-1","","","","","Desecrated Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22350","-1","","","","","Desecrated Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22351","-1","","","","","Desecrated Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22352","-1","","","","","Desecrated Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22353","-1","","","","","Desecrated Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22354","-1","","","","","Desecrated Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22355","-1","","","","","Desecrated Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22356","-1","","","","","Desecrated Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22357","-1","","","","","Desecrated Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22358","-1","","","","","Desecrated Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22359","-1","","","","","Desecrated Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22360","-1","","","","","Desecrated Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22361","-1","","","","","Desecrated Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22362","-1","","","","","Desecrated Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22363","-1","","","","","Desecrated Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22364","-1","","","","","Desecrated Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22365","-1","","","","","Desecrated Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1094","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22366","-1","","","","","Desecrated Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22367","-1","","","","","Desecrated Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22368","-1","","","","","Desecrated Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22369","-1","","","","","Desecrated Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22370","-1","","","","","Desecrated Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22371","-1","","","","","Desecrated Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22372","-1","","","","","Desecrated Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22373","-1","","","","","Wartorn Leather Scrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22374","-1","","","","","Wartorn Chain Scrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22375","-1","","","","","Wartorn Plate Scrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22376","-1","","","","","Wartorn Cloth Scrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22377","-1","","","","","The Thunderwood Poker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54468","272342","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","-1","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","6","0","0","0","0","0","0","0","0","0" +"22378","-1","","","","","Ravenholdt Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54665","273326","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","65","-1","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","6","0","0","0","0","0","0","0","0","0","0" +"22379","-1","","","","","Shivsprocket's Shiv","0.6","0","-1.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54862","274311","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","65","32767","0","0","44","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","0","0","0","0","0","0","0","0","0","0" +"22380","-1","","","","","Simone's Cultivating Hammer","0.6","0","-1.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55053","275269","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","65","32767","0","0","53","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","6","0","0","0","0","0","0","0","0","0","0" +"22381","-1","","","","","Silithus Venom Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22382","-1","","","","","Sealed Venom Container","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22383","-1","","","","","Sageblade","0.6","0","-5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73223","366118","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","64","32767","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","6","0","0","0","0","0","0","0","0","59" +"22384","-1","","","","","Persuader","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72503","362516","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","63","32767","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","58" +"22385","-1","","","","","Titanic Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44234","221172","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","683","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","0","0","0","0","0","0","0","0","0","55" +"22386","-1","","","","","Head of Instructor Razuvious DEP","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","32","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22387","-1","","","","","Heart of Anub'Rekhan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22388","-1","Teaches you how to make Titanic Leggings.","","","","Plans: Titanic Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22389","-1","Teaches you how to make a Sageblade.","","","","Plans: Sageblade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22390","-1","Teaches you how to make the Persuader.","","","","Plans: Persuader","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22391","-1","","","","","Monster - Staff, Lord Valthalak","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64875","324375","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","63","-1","0","0","90","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22392","-1","Teaches you how to permanently enchant a two-handed weapon to increase your agility by 25.","","","","Formula: Enchant 2H Weapon - Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","576","290","333","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22393","-1","Teaches Prayer of Shadow Protection (Rank 1).","","","","Codex: Prayer of Shadow Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22394","-1","","","","","Staff of Metanoia","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64707","323539","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","62","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","15","15","13","0","0","0","0","0","0","0","57" +"22395","-1","","","","","Totem of Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12973","64867","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22396","-1","","","","","Totem of Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25392","126962","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22397","-1","","","","","Idol of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13067","65339","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22398","-1","","","","","Idol of Rejuvenation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15755","78777","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22399","-1","","","","","Idol of Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25666","128332","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22400","-1","","","","","Libram of Truth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13208","66041","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","57","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","52" +"22401","-1","","","","","Libram of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15924","79620","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","57" +"22402","-1","","","","","Libram of Grace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25942","129714","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22403","-1","","","","","Nacreous Shell Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","8","8","0","0","0","0","0","0","0","0","56" +"22404","-1","","","","","Willey's Back Scratcher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52913","264568","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","61","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","0","0","0","0","0","0","0","0","0","56" +"22405","-1","","","","","Mantle of the Scarlet Crusade","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14415","72077","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","11","12","0","0","0","0","0","0","0","56" +"22406","-1","","","","","Redemption","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61968","309841","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","61","-1","0","0","87","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","12","0","0","0","0","0","0","0","0","0","56" +"22407","-1","","","","","Helm of the New Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18658","93293","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","13","12","0","0","0","0","0","0","0","56" +"22408","-1","","","","","Ritssyn's Wand of Bad Mojo","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38489","192448","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","63","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","4","0","0","0","0","0","0","0","0","0","58" +"22409","-1","","","","","Tunic of the Crescent Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25755","128778","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","14","12","11","0","0","0","0","0","0","0","58" +"22410","-1","","","","","Gauntlets of Deftness","0.2","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15509","77546","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","10","0","0","0","0","0","0","0","0","58" +"22411","-1","","","","","Helm of the Executioner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27190","135951","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","14","20","0","0","0","0","0","0","0","0","58" +"22412","-1","","","","","Thuzadin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15624","78122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","11","18","0","0","0","0","0","0","0","0","58" +"22413","-1","","","","","Sin'dorei Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22414","-1","","","","","Antheol's Elemental Grimoire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22415","-1","","","","","Dragonhawk Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22416","-1","","","","","Dreadnaught Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68505","342525","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","92","1535","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","43","0","0","0","0","0","0","0","0","60" +"22417","-1","","","","","Dreadnaught Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66097","330489","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","983","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","37","0","0","0","0","0","0","0","0","60" +"22418","-1","","","","","Dreadnaught Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49653","248265","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","913","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","21","0","0","0","0","0","0","0","0","60" +"22419","-1","","","","","Dreadnaught Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48830","244154","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","825","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","16","0","0","0","0","0","0","0","0","60" +"22420","-1","","","","","Dreadnaught Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49006","245030","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","15","34","0","0","0","0","0","0","0","0","60" +"22421","-1","","","","","Dreadnaught Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33715","168576","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","17","0","0","0","0","0","0","0","0","60" +"22422","-1","","","","","Dreadnaught Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31441","157208","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","26","0","0","0","0","0","0","0","0","60" +"22423","-1","","","","","Dreadnaught Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31561","157808","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","28","0","0","0","0","0","0","0","0","60" +"22424","-1","","","","","Redemption Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31681","158409","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","492","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","15","0","0","0","0","0","0","0","0","60" +"22425","-1","","","","","Redemption Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65783","328919","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","25","31","0","0","0","0","0","0","0","0","60" +"22426","-1","","","","","Redemption Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31919","159595","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","22","0","0","0","0","0","0","0","0","60" +"22427","-1","","","","","Redemption Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63714","318572","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","983","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","31","0","0","0","0","0","0","0","0","60" +"22428","-1","","","","","Redemption Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47873","239368","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","913","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","26","0","0","0","0","0","0","0","0","60" +"22429","-1","","","","","Redemption Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47082","235412","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","825","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","20","0","0","0","0","0","0","0","0","60" +"22430","-1","","","","","Redemption Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47257","236289","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","18","0","0","0","0","0","0","0","0","60" +"22431","-1","","","","","Redemption Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32516","162583","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","29","0","0","0","0","0","0","0","0","60" +"22432","-1","","","","","Devilsaur Barb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22433","-1","","","","","Don Mauricio's Band of Domination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15282","61130","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","0","0","0","0","0","0","0","0","0","58" +"22434","-1","","","","","Bloodcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22435","-1","","","","","Gorishi Sting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22436","-1","","","","","Cryptstalker Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58712","293564","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","658","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","27","15","0","0","0","0","0","0","0","60" +"22437","-1","","","","","Cryptstalker Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56644","283221","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","26","10","0","0","0","0","0","0","0","60" +"22438","-1","","","","","Cryptstalker Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39580","197903","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","30","12","0","0","0","0","0","0","0","60" +"22439","-1","","","","","Cryptstalker Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39109","195545","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","23","10","0","0","0","0","0","0","0","60" +"22440","-1","","","","","Cryptstalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39260","196301","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","425","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","19","8","0","0","0","0","0","0","0","60" +"22441","-1","","","","","Cryptstalker Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26691","133458","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","15","21","0","0","0","0","0","0","0","60" +"22442","-1","","","","","Cryptstalker Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26794","133970","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","22","12","0","0","0","0","0","0","0","60" +"22443","-1","","","","","Cryptstalker Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26896","134482","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","16","0","0","0","0","0","0","0","0","60" +"22444","-1","","","","","Putrid Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22445","-1","","","","","Arcane Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22446","-1","","","","","Greater Planar Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","120000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22447","-1","","","","","Lesser Planar Essence","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","40000","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22448","-1","","","","","Small Prismatic Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","72000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22449","-1","","","","","Large Prismatic Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","72000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22450","-1","","","","","Void Crystal","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22451","-1","","","","","Primal Air","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22452","-1","","","","","Primal Earth","0","0","0","1224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22456","-1","","","","","Primal Shadow","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22457","-1","","","","","Primal Mana","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22458","-1","","","","","Moonshadow Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37892","189464","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","52","-1","0","0","133","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22459","-1","Matches a Red, Yellow or Blue Socket.","","","","Void Sphere","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22460","-1","Matches a Red, Yellow or Blue Socket.","","","","Prismatic Sphere","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","72000","1","1","1","0","24580","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22461","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Fel Iron Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","2000","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22462","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Adamantite Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32000","128000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","2000","0","350","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22463","-1","Can also serve as any lesser runed enchanting rod.","","","","Runed Eternium Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","2000","0","375","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22464","-1","","","","","Earthshatter Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56155","280779","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","658","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","32","0","0","0","0","0","0","0","0","60" +"22465","-1","","","","","Earthshatter Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54191","270957","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","30","0","0","0","0","0","0","0","0","60" +"22466","-1","","","","","Earthshatter Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40797","203986","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","26","30","0","0","0","0","0","0","0","0","60" +"22467","-1","","","","","Earthshatter Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40302","201512","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","19","0","0","0","0","0","0","0","0","60" +"22468","-1","","","","","Earthshatter Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40453","202268","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","425","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","25","0","0","0","0","0","0","0","0","60" +"22469","-1","","","","","Earthshatter Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27502","137513","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","28","0","0","0","0","0","0","0","0","60" +"22470","-1","","","","","Earthshatter Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28338","141693","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","18","0","0","0","0","0","0","0","0","60" +"22471","-1","","","","","Earthshatter Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28438","142192","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","18","0","0","0","0","0","0","0","0","60" +"22472","-1","","","","","Boots of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19500","97501","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","13","0","0","0","0","0","0","0","56" +"22473","-1","","","","","Antheol's Disciplinary Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22474","-1","","","","","Meledor's Apprentice Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22475","-1","","","","","Ralen's Apprentice Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22476","-1","","","","","Bonescythe Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50184","250923","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","92","1535","0","0","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","29","0","0","0","0","0","0","0","0","0","60" +"22477","-1","","","","","Bonescythe Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48416","242084","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","25","31","0","0","0","0","0","0","0","60" +"22478","-1","","","","","Bonescythe Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32973","164867","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","29","18","0","0","0","0","0","0","0","60" +"22479","-1","","","","","Bonescythe Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32436","162182","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","86","1535","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","15","22","0","0","0","0","0","0","0","60" +"22480","-1","","","","","Bonescythe Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32562","162810","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","0","0","0","0","0","0","0","0","0","60" +"22481","-1","","","","","Bonescythe Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22238","111192","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22482","-1","","","","","Bonescythe Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22321","111607","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","24","20","23","0","0","0","0","0","0","0","60" +"22483","-1","","","","","Bonescythe Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22406","112034","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","88","1535","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","14","0","0","0","0","0","0","0","0","60" +"22484","-1","","","","","Necrotic Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22485","-1","","","","","[UNUSED] Scourge Invasion Focus Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22486","-1","","","","","[UNUSED] Scourge Invasion Boss Summoner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22487","-1","","","","","Aldaron's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22488","-1","","","","","Dreamwalker Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48769","243845","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","299","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","19","29","29","0","0","0","0","0","0","0","60" +"22489","-1","","","","","Dreamwalker Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47055","235279","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","26","22","0","0","0","0","0","0","0","60" +"22490","-1","","","","","Dreamwalker Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35416","177082","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","235","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","31","25","0","0","0","0","0","0","0","60" +"22491","-1","","","","","Dreamwalker Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34830","174152","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","22","18","0","0","0","0","0","0","0","60" +"22492","-1","","","","","Dreamwalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34955","174779","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","14","20","0","0","0","0","0","0","0","60" +"22493","-1","","","","","Dreamwalker Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23864","119323","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","17","22","0","0","0","0","0","0","0","60" +"22494","-1","","","","","Dreamwalker Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23950","119750","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","14","23","13","0","0","0","0","0","0","0","60" +"22495","-1","","","","","Dreamwalker Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24035","120177","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","16","0","0","0","0","0","0","0","0","60" +"22496","-1","","","","","Frostfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40143","200719","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","27","0","0","0","0","0","0","0","0","60" +"22497","-1","","","","","Frostfire Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38726","193631","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","10","26","25","0","0","0","0","0","0","0","60" +"22498","-1","","","","","Frostfire Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26376","131880","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","23","0","0","0","0","0","0","0","0","60" +"22499","-1","","","","","Frostfire Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25946","129732","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","9","0","0","0","0","0","0","0","60" +"22500","-1","","","","","Frostfire Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26046","130234","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","10","18","17","0","0","0","0","0","0","0","60" +"22501","-1","","","","","Frostfire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17787","88935","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","19","10","0","0","0","0","0","0","0","60" +"22502","-1","","","","","Frostfire Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18344","91721","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","10","19","21","0","0","0","0","0","0","0","60" +"22503","-1","","","","","Frostfire Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18412","92063","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","15","0","0","0","0","0","0","0","0","60" +"22504","-1","","","","","Plagueheart Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38446","192234","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","22","0","0","0","0","0","0","0","0","60" +"22505","-1","","","","","Plagueheart Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37094","185473","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","25","0","0","0","0","0","0","0","0","60" +"22506","-1","","","","","Plagueheart Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27923","139617","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","25","0","0","0","0","0","0","0","0","60" +"22507","-1","","","","","Plagueheart Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27462","137314","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","12","0","0","0","0","0","0","0","0","60" +"22508","-1","","","","","Plagueheart Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27560","137802","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","16","0","0","0","0","0","0","0","0","60" +"22509","-1","","","","","Plagueheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18818","94093","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","17","0","0","0","0","0","0","0","0","60" +"22510","-1","","","","","Plagueheart Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18886","94434","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","12","0","0","0","0","0","0","0","0","60" +"22511","-1","","","","","Plagueheart Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18955","94776","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","14","0","0","0","0","0","0","0","0","60" +"22512","-1","","","","","Robe of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39571","197859","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","27","26","0","0","0","0","0","0","0","60" +"22513","-1","","","","","Leggings of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38179","190899","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","26","25","0","0","0","0","0","0","0","60" +"22514","-1","","","","","Circlet of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28737","143686","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","22","22","0","0","0","0","0","0","0","60" +"22515","-1","","","","","Shoulderpads of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28260","141302","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","18","17","0","0","0","0","0","0","0","60" +"22516","-1","","","","","Sandals of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28358","141790","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","86","32767","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","19","22","0","0","0","0","0","0","0","60" +"22517","-1","","","","","Gloves of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19361","96806","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","16","0","0","0","0","0","0","0","60" +"22518","-1","","","","","Belt of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18071","90356","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","18","17","0","0","0","0","0","0","0","60" +"22519","-1","","","","","Bindings of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18139","90697","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","15","17","0","0","0","0","0","0","0","60" +"22520","-1","","","","","The Phylactery of Kel'Thuzad","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9120","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22521","-1","","","","","Superior Mana Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"22522","-1","","","","","Superior Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"22523","-1","","","","","Insignia of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22524","-1","","","","","Insignia of the Crusade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22525","-1","","","","","Crypt Fiend Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22526","-1","","","","","Bone Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22527","-1","","","","","Core of Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22528","-1","","","","","Dark Iron Scraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22529","-1","","","","","Savage Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22530","-1","Teaches you how to permanently enchant a bracer to give 12 defense rating.","","","","Formula: Enchant Bracer - Major Defense","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","333","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22531","-1","Teaches you how to permanently enchant a bracer to increase the effect of healing spells by up to 30 and damage spells by up to 10.","","","","Formula: Enchant Bracer - Superior Healing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22532","-1","Teaches you how to permanently enchant a bracer to restore 6 mana every 5 seconds.","","","","Formula: Enchant Bracer - Restore Mana Prime","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","333","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22533","-1","Teaches you how to permanently enchant a bracer to increase Stamina by 12.","","","","Formula: Enchant Bracer - Fortitude","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22534","-1","Teaches you how to permanently enchant a bracer to increase spell damage and healing by up to 15.","","","","Formula: Enchant Bracer - Spellpower","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22535","-1","Teaches you how to permanently enchant a ring to add 2 damage to physical attacks.","","","","Formula: Enchant Ring - Striking","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22536","-1","Teaches you how to permanently enchant a ring to increase spell damage and healing by up to 12.","","","","Formula: Enchant Ring - Spellpower","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22537","-1","Teaches you how to permanently enchant a ring to increase healing spell effects by up to 20 and damage spell effects by up to 7.","","","","Formula: Enchant Ring - Healing Power","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","370","333","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22538","-1","Teaches you how to permanently enchant a ring to increase all stats by 4.","","","","Formula: Enchant Ring - Stats","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22539","-1","Teaches you how to permanently enchant a shield to increase Intellect by 12.","","","","Formula: Enchant Shield - Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22540","-1","Teaches you how to permanently enchant a shield to give +15 block rating.","","","","Formula: Enchant Shield - Shield Block","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","333","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22541","-1","Teaches you how to permanently enchant a shield to increase all spell resistances by 5.","","","","Formula: Enchant Shield - Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22542","-1","Teaches you how to permanently enchant boots to restore 4 mana and health every 5 seconds.","","","","Formula: Enchant Boots - Vitality","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22543","-1","Teaches you how to permanently enchant boots to grant 12 Stamina.","","","","Formula: Enchant Boots - Fortitude","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","333","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22544","-1","Teaches you how to permanently enchant boots to grant 12 Agility.","","","","Formula: Enchant Boots - Dexterity","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","333","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22545","-1","Teaches you how to permanently enchant boots to give 5% snare and root resistance as well as 10 hit rating.","","","","Formula: Enchant Boots - Surefooted","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","333","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22546","-1","Teaches you how to permanently enchant chest armor to grant 150 additional mana.","","","","Formula: Enchant Chest - Exceptional Mana","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22547","-1","Teaches you how to permanently enchant chest armor to increase all stats by 6.","","","","Formula: Enchant Chest - Exceptional Stats","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","345","333","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22548","-1","Teaches you how to permanently enchant a cloak to increase all resistances by 7.","","","","Formula: Enchant Cloak - Major Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","333","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22549","-1","There's barely enough room on the page for everything written here. Who's going to carry all of this?","","","","Quartermaster Lymel's Bill of Lading","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22550","-1","You're not certain, but it sounded like something inside might have broken.","","","","Quartermaster Lymel's Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22551","-1","Teaches you how to permanently enchant a weapon to increase Intellect by 30.","","","","Formula: Enchant Weapon - Major Intellect","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","333","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22552","-1","Teaches you how to permanently enchant a weapon to increase damage by 7.","","","","Formula: Enchant Weapon - Major Striking","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","340","333","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22553","-1","Teaches you how to permanently enchant a weapon to increase Strength by 20.","","","","Formula: Enchant Weapon - Potency","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22554","-1","Teaches you how to permanently enchant a two-handed weapon to increase attack power by 70.","","","","Formula: Enchant 2H Weapon - Savagery","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22555","-1","Teaches you how to permanently enchant a melee weapon to increase spell damage and healing by up to 40.","","","","Formula: Enchant Weapon - Major Spellpower","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22556","-1","Teaches you how to permanently enchant a two-handed weapon to increase Agility by 35.","","","","Formula: Enchant 2H Weapon - Major Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22557","-1","Teaches you how to permanently enchant a weapon to give a chance on striking to heal your party of 180 to 300 damage.","","","","Formula: Enchant Weapon - Battlemaster","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22558","-1","Teaches you how to permanently enchant a Melee Weapon to have a 3% chance on spellcast to restore 100 mana to all party members over 10 seconds.","","","","Formula: Enchant Weapon - Spellsurge","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22559","-1","Learn how to permanently enchant a Melee Weapon to occasionally increase Agility by 120 and attack speed slightly.","","","","Formula: Enchant Weapon - Mongoose","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22560","-1","Learn how to permanently enchant a Melee Weapon to increase the damage done by your arcane and fire spells by up to 50.","","","","Formula: Enchant Weapon - Sunfire","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22561","-1","Learn how to permanently enchant a Melee Weapon to increase the damage done by your frost and shadow spells by up to 54.","","","","Formula: Enchant Weapon - Soulfrost","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22562","-1","Teaches you how to make Superior Mana Oil.","","","","Formula: Superior Mana Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","310","333","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22563","-1","Teaches you how to make Superior Wizard Oil.","","","","Formula: Superior Wizard Oil","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","333","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22564","-1","Teaches you how to turn an Arcane Crystal into Arcane Dust.","","","","Formula: Arcane Dust","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22565","-1","Teaches you how to turn Small Prismatic Shards into a Large Prismatic Shard.","","","","Formula: Large Prismatic Shard","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","333","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22566","-1","Strange to the touch... tingly, as if there's still some energy in it.","","","","Phantasmal Substance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22567","-1","Shattered into a hundred tiny pieces, they don't seem quite as menacing.","","","","Gargoyle Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22568","-1","","","","","Sealed Craftsman's Writ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22569","-1","","","","","Intact Spider Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22570","-1","","","","","Plagued Blood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22571","-1","","","","","Courier's Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62","250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22572","-1","","","","","Mote of Air","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22573","-1","","","","","Mote of Earth","0","0","0","1224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22574","-1","","","","","Mote of Fire","0","0","0","1224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22575","-1","","","","","Mote of Life","0","0","0","232","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22576","-1","","","","","Mote of Mana","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22577","-1","","","","","Mote of Shadow","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22578","-1","","","","","Mote of Water","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","400","1600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22579","-1","","","","","Plagued Murloc Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","325","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22580","-1","","","","","Crystallized Mana Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22581","-1","","","","","Damaged Arcane Instruments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22582","-1","","","","","Case of Crystallized Essences","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22583","-1","Amazingly, between the ghouls and the corrosive slime, it appears undamaged.","","","","Rathis Tomber's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22584","-1","","","","","QAEnchant Cloak +3 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22585","-1","","","","","QAEnchant Gloves +5 Mining","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22586","-1","","","","","QAEnchant Gloves +5 Herbalism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22587","-1","","","","","QAEnchant Boots +8% Speed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22588","-1","","","","","QAEnchant Cloak +10 Shadow Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22589","-1","","","","","Atiesh, Greatstaff of the Guardian","0.4","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184558","922791","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","31","32","24","0","0","0","0","0","0","0","60" +"22590","-1","These contain a detailed map and tactical situation for An'daroth.","","","","Night Elf Plans: An'daroth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22591","-1","These contain a detailed map and tactical situation for An'owyn.","","","","Night Elf Plans: An'owyn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22592","-1","These plans talk of using the high elf moon crystals to scry upon the blood elves!","","","","Night Elf Plans: Scrying on the Sin'dorei","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22593","-1","","","","","Writ of Safe Passage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22594","-1","All of the plans gathered from Shalandis Isle rolled up together.","","","","Night Elf Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22595","-1","","","","","Call to Arms Announcement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2872","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22596","-1","","","","","Monster - Sword2H, Horde A02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22597","-1","There's an inscription, which reads: To Sylvanas. Love always, Alleria.","","","","The Lady's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9175","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"22598","-1","","","","","Stone of Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22599","-1","","","","","Stone of Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22600","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Dense Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9178","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22601","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Imperial Plate Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9179","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22602","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Volcanic Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9181","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22603","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Huge Thorium Battleaxe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9182","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22604","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Radiant Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9183","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22605","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Wicked Leather Headband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9184","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22606","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Rugged Armor Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9185","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22607","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Wicked Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9186","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22608","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runic Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9187","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22609","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Brightcloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9188","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22610","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9190","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22611","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9191","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22612","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runecloth Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9194","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22613","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Goblin Sapper Charge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9195","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22614","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Thorium Grenade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9196","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22615","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Gnomish Battle Chicken","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9197","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22616","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Thorium Tube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9198","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22617","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Major Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9200","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22618","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Major Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9202","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22619","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Greater Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22620","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Greater Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9201","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22621","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Flask of Petrification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9203","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22622","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Stonescale Eel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9204","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22623","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Plated Armorfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9205","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22624","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Lightning Eel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9206","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22625","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Baked Salmon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22626","-1","Bears the seal of the Argent Dawn.","","","","Craftsman's Writ - Runn Tum Tuber Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22627","-1","There's an inscription, which reads: To Sylvanas. Love always, Alleria.","","","","The Lady's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22628","-1","","","","","Renzithen's Restorative Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22629","-1","This sheaf of papers is rolled and protected with the ambassador's seal.","","","","Sealed Sin'dorei Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22630","-1","","","","","Atiesh, Greatstaff of the Guardian","0.4","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","185158","925791","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","30","29","0","0","0","0","0","0","0","0","60" +"22631","-1","","","","","Atiesh, Greatstaff of the Guardian","0.4","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","172821","864107","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","28","28","27","0","0","0","0","0","0","0","60" +"22632","-1","","","","","Atiesh, Greatstaff of the Guardian","0.4","0","-32.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","173474","867372","1","1","1","64","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","90","-1","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","28","28","27","0","0","0","0","0","0","0","60" +"22633","-1","Shiny!","","","","Troll Juju","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22634","-1","This stuff gives off a faint aura in the dark.","","","","Underlight Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22635","-1","","","","","Savage Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22636","-1","","","","","Ice Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22637","-1","An ancient evil stirs within...","","","","Primal Hakkari Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","58" +"22638","-1","","","","","Shadow Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"22639","-1","At least they string together nicely.","","","","Zeb'Sora Troll Ear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22640","-1","Somehow he doesn't seem so wicked now.","","","","Head of Kel'gash the Wicked","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22641","-1","","","","","Rotting Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22642","-1","","","","","Spinal Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22644","-1","","","","","Crunchy Spider Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","12","48","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22645","-1","","","","","Crunchy Spider Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"22646","-1","","","","","Master Spellstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","1","0","0","0","0","0","0","0","0","0","0","0","66" +"22647","-1","Teaches you how to cook Crunchy Spider Surprise.","","","","Recipe: Crunchy Spider Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22648","-1","","","","","Hive'Ashi Dossier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22649","-1","","","","","Hive'Regal Dossier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22650","-1","","","","","Hive'Zora Dossier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22651","-1","","","","","Outrider's Plate Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","737","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22652","-1","","","","","Glacial Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33356","166784","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","0","0","0","0","0","0","0","0","0","60" +"22653","-1","","","","","Dar'Khan's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22654","-1","","","","","Glacial Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16804","84020","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","0","0","0","0","0","0","0","0","0","60" +"22655","-1","","","","","Glacial Wrists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16865","84325","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22656","-1","","","","","The Purifier","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49612","248063","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","60","-1","0","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","0" +"22657","-1","","","","","Amulet of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","13","13","0","0","0","0","0","0","0","0","0" +"22658","-1","","","","","Glacial Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25580","127901","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","0","0","0","0","0","0","0","0","0","60" +"22659","-1","","","","","Medallion of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33625","134500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","0" +"22660","-1","","","","","Gaea's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17213","86069","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","49","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","0","0","0","0","0","0","0","0","0","60" +"22661","-1","","","","","Polar Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43100","215503","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","18","0","0","0","0","0","0","0","0","60" +"22662","-1","","","","","Polar Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21628","108144","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","18","0","0","0","0","0","0","0","0","60" +"22663","-1","","","","","Polar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22267","111336","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","1535","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","12","0","0","0","0","0","0","0","0","60" +"22664","-1","","","","","Icy Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48533","242666","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","578","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22665","-1","","","","","Icy Scale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24360","121804","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","0","0","0","0","0","0","0","0","0","60" +"22666","-1","","","","","Icy Scale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24455","122275","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","1535","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","0","0","0","0","0","0","0","0","0","60" +"22667","-1","","","","","Bracers of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12789","63948","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1535","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","10","11","0","0","0","0","0","0","0","0" +"22668","-1","","","","","Bracers of Subterfuge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16048","80242","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1535","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","10","12","15","0","0","0","0","0","0","0","0" +"22669","-1","","","","","Icebane Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57715","288576","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","42","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","12","0","0","0","0","0","0","0","0","60" +"22670","-1","","","","","Icebane Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29130","145650","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","642","0","0","0","32","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","9","0","0","0","0","0","0","0","0","60" +"22671","-1","","","","","Icebane Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29240","146203","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","6","0","0","0","0","0","0","0","0","60" +"22672","-1","","","","","Sentinel's Plate Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","737","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22673","-1","","","","","Outrider's Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","35","15","0","0","0","0","0","0","0","0","60" +"22674","-1","","","","","Wavefront Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","8","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22675","-1","","","","","Bundle of Medallions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22676","-1","","","","","Outrider's Mail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","22","22","0","0","0","0","0","0","0","60" +"22677","-1","Dirty, but sharp.","","","","Catlord Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22678","-1","","","","","Talisman of Ascendance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111303","445213","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"22679","-1","","","","","Supply Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22680","-1","","","","","Band of Resolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","0","0","0","0","0","0","0","0","0","0" +"22681","-1","","","","","Band of Piety","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","10","0","0","0","0","0","0","0","0","0" +"22682","-1","","","","","Frozen Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22683","-1","Teaches you how to sew Gaea's Embrace.","","","","Pattern: Gaea's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22684","-1","Teaches you how to sew Glacial Gloves.","","","","Pattern: Glacial Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22685","-1","Teaches you how to sew a Glacial Cloak.","","","","Pattern: Glacial Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22686","-1","Teaches you how to sew Glacial Vest.","","","","Pattern: Glacial Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22687","-1","Teaches you how to sew Glacial Wrists.","","","","Pattern: Glacial Wrists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","197","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22688","-1","","","","","Verimonde's Last Resort","0.6","0","-1.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","52177","260885","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","66","-1","0","0","42","0","0","0","0","79","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","7","8","0","0","0","0","0","0","0","0","0" +"22689","-1","","","","","Sanctified Leather Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19639","98195","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","14","19","0","0","0","0","0","0","0","0" +"22690","-1","","","","","Leggings of the Plague Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31542","157711","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","20","10","16","0","0","0","0","0","0","0","0" +"22691","-1","Blade of the Scarlet Highlord","","","","Corrupted Ashbringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","110631","553155","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","86","32767","0","0","259","0","0","0","0","389","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","-25","0","0","0","0","0","0","0","0","0","60" +"22692","-1","Teaches you how to craft a Polar Tunic.","","","","Pattern: Polar Tunic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22693","-1","","","","","Infused Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22694","-1","Teaches you how to craft Polar Gloves.","","","","Pattern: Polar Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22695","-1","Teaches you how to craft Polar Bracers.","","","","Pattern: Polar Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22696","-1","Teaches you how to craft an Icy Scale Breastplate.","","","","Pattern: Icy Scale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22697","-1","Teaches you how to craft Icy Scale Gauntlets.","","","","Pattern: Icy Scale Gauntlets","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22698","-1","Teaches you how to craft Icy Scale Bracers.","","","","Pattern: Icy Scale Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","165","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22699","-1","","","","","Icebane Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61463","307317","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","898","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","10","0","0","0","0","0","0","0","0","0" +"22700","-1","","","","","Glacial Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35244","176221","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","0","0","0","0","0","0","0","0","0","0" +"22701","-1","","","","","Polar Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44212","221061","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","234","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","15","0","0","0","0","0","0","0","0","0" +"22702","-1","","","","","Icy Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53243","266215","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","505","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","15","0","0","0","0","0","0","0","0","0" +"22703","-1","Teaches you how to make an Icebane Breastplate.","","","","Plans: Icebane Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22704","-1","Teaches you how to make Icebane Gauntlets.","","","","Plans: Icebane Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22705","-1","Teaches you how to make Icebane Bracers.","","","","Plans: Icebane Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","749","300","164","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22706","-1","","","","","Dar'Khan's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22707","-1","Inscribed on the band: Ramaladni","","","","Ramaladni's Icy Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","98660","394641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","0","0","0","0","0","0","0","0","0","0" +"22708","-1","Inscribed on the band: Ramaladni","","","","Fate of Ramaladni","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22709","-1","","","","","Monster - Sword2H, Corrupted Ashbringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22710","31232","","","","","Bloodthistle","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","120","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22711","-1","","","","","Cloak of the Hakkari Worshippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22162","110810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","6","6","0","0","0","0","0","0","0","0","60" +"22712","-1","","","","","Might of the Tribe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16737","83685","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22713","-1","","","","","Zulian Scepter of Rites","0.6","0","-3.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55994","279973","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","68","-1","0","0","81","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","9","8","0","0","0","0","0","0","0","0","60" +"22714","-1","","","","","Sacrificial Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19782","98910","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","19","0","0","0","0","0","0","0","0","0","60" +"22715","-1","","","","","Gloves of the Tormented","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16919","84597","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","9","19","0","0","0","0","0","0","0","0","60" +"22716","-1","","","","","Belt of Untapped Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11320","56602","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","6","0","0","0","0","0","0","0","0","60" +"22717","-1","","","","","Letter from Silvermoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22718","-1","","","","","Blooddrenched Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21379","106897","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","17","0","0","0","0","0","0","0","0","60" +"22719","-1","","","","","Omarion's Handbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9233","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22720","-1","","","","","Zulian Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17224","86123","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","14","13","0","0","0","0","0","0","0","60" +"22721","-1","","","","","Band of Servitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64030","256120","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","8","9","0","0","0","0","0","0","0","0","60" +"22722","-1","","","","","Seal of the Gurubashi Berserker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64030","256120","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","13","0","0","0","0","0","0","0","0","0","60" +"22723","-1","The indelible mark of the Argent Dawn is pressed clearly into the wax of the seal.","","","","A Letter from the Keeper of the Rolls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9247","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22724","-1","","","","","Monster - Mace1H, Korth'azz","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22725","-1","","","","","Band of Cenarius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38790","155162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","0","0","0","0","0","0","0","0","0","0" +"22726","-1","A splinter of Atiesh, Greatstaff of the Guardian.","","","","Splinter of Atiesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","1","1","1","33856","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","1424","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22727","-1","The head and base are missing.","","","","Frame of Atiesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9250","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22728","-1","","","","","Steam Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22729","-1","Teaches you how to make a Steam Tonk Controller.","","","","Schematic: Steam Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22730","-1","","","","","Eyestalk Waist Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18480","92404","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","9","10","0","0","0","0","0","0","0","0","60" +"22731","-1","","","","","Cloak of the Devoured","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27821","139105","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","11","0","0","0","0","0","0","0","0","60" +"22732","-1","","","","","Mark of C'Thun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22733","-1","","","","","Staff Head of Atiesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22734","-1","","","","","Base of Atiesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22735","-1","","","","","Research Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22736","-1","This blade is dimensional. It appears to be fading from this plane of existence.","","","","Andonisus, Reaper of Souls","0.6","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","229378","24580","0","0","0","125","0","0","0","0","0","0","0","0","2017","0","0","0","0","0","2800","0","0","0","100","32767","0","0","159","0","0","0","0","296","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22737","-1","An entity of great evil is imprisoned within the staff.","","","","Atiesh, Greatstaff of the Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","60" +"22738","-1","","","","","Monster - Sword, 1H Uber Demon Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"22739","-1","Teaches Polymorph: Turtle.","","","","Tome of Polymorph: Turtle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22740","-1","","","","","Outrider's Leather Pants","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22741","-1","","","","","Outrider's Lizardhide Pants","0.2","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","10","22","9","22","0","0","0","0","0","60" +"22742","-1","","","","","Bloodsail Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22743","-1","","","","","Bloodsail Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22744","-1","","","","","Bloodsail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22745","-1","","","","","Bloodsail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22746","-1","","","","","Buccaneer's Uniform","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22747","-1","","","","","Outrider's Silk Leggings","0.2","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","19","10","0","0","0","0","0","0","0","60" +"22748","-1","","","","","Sentinel's Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","35","15","0","0","0","0","0","0","0","0","60" +"22749","-1","","","","","Sentinel's Leather Pants","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","28","27","0","0","0","0","0","0","0","0","60" +"22750","-1","","","","","Sentinel's Lizardhide Pants","0.2","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","10","22","9","22","0","0","0","0","0","60" +"22752","-1","","","","","Sentinel's Silk Leggings","0.2","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","19","10","0","0","0","0","0","0","0","60" +"22753","-1","","","","","Sentinel's Lamellar Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","737","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","0","0","0","0","0","0","0","0","60" +"22754","-1","","","","","Eternal Quintessence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22755","-1","","","","","Blazing Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22756","-1","","","","","Sylvan Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23205","116029","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","98","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","0","0","0","0","0","0","0","0","0","60" +"22757","-1","","","","","Sylvan Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17465","87328","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","10","0","0","0","0","0","0","0","0","0","60" +"22758","-1","","","","","Sylvan Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17528","87642","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22759","-1","","","","","Bramblewood Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20424","102123","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","0","0","0","0","0","0","0","0","0","60" +"22760","-1","","","","","Bramblewood Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20503","102516","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","25","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","0","0","0","0","0","0","0","0","0","60" +"22761","-1","","","","","Bramblewood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13719","68599","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","0","0","0","0","0","0","0","0","0","60" +"22762","-1","","","","","Ironvine Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38562","192812","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","726","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","0","0","0","0","0","0","0","0","0","60" +"22763","-1","","","","","Ironvine Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19465","97326","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","454","0","0","20","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","60" +"22764","-1","","","","","Ironvine Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19537","97685","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","408","0","0","15","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","0","0","0","0","0","0","0","0","0","60" +"22765","-1","A few words are still legible...","","","","Mildewed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2873","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22766","-1","Teaches you how to make an Ironvine Breastplate.","","","","Plans: Ironvine Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22767","-1","Teaches you how to make Ironvine Gloves.","","","","Plans: Ironvine Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22768","-1","Teaches you how to make an Ironvine Belt.","","","","Plans: Ironvine Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22769","-1","Teaches you how to craft a Bramblewood Belt.","","","","Pattern: Bramblewood Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22770","-1","Teaches you how to craft Bramblewood Boots.","","","","Pattern: Bramblewood Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22771","-1","Teaches you how to craft a Bramblewood Helm.","","","","Pattern: Bramblewood Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22772","-1","Teaches you how to sew Sylvan Shoulders.","","","","Pattern: Sylvan Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22773","-1","Teaches you how to sew a Sylvan Crown.","","","","Pattern: Sylvan Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22774","-1","Teaches you how to sew a Sylvan Vest.","","","","Pattern: Sylvan Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","609","300","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22775","-1","The light passing through the bottle reveals a magical property to the wine.","","","","Suntouched Special Reserve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22776","-1","A succulent aroma wafts off of the covered platter.","","","","Springpaw Appetizers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22777","-1","They *look* safe...","","","","Bundle of Fireworks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22778","-1","","","","","Scourgebane Infusion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22779","-1","","","","","Scourgebane Draught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","700","2800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22780","-1","","","","","White Murloc Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"22781","-1","","","","","Polar Bear Collar","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22782","-1","","","","","Sin'dorei Cloak of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","414","2073","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"22783","-1","","","","","Sunwell Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1387","6938","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","0" +"22784","-1","","","","","Sunwell Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","3210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","1" +"22785","-1","","","","","Felweed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22786","-1","","","","","Dreaming Glory","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22787","-1","","","","","Ragveil","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22788","-1","","","","","Flame Cap","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22789","-1","","","","","Terocone","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22790","-1","","","","","Ancient Lichen","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22791","-1","","","","","Netherbloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22792","-1","","","","","Nightmare Vine","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22793","-1","","","","","Mana Thistle","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22794","-1","","","","","Fel Lotus","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22795","-1","","","","","Fel Blossom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","182","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22796","-1","","","","","Apothecary's Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22797","-1","","","","","Nightmare Seed","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22798","-1","","","","","Might of Menethil","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111458","557292","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","89","-1","0","0","289","0","0","0","0","435","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","20","0","0","0","0","0","0","0","0","60" +"22799","-1","","","","","Soulseeker","0.4","0","-31.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111889","559447","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","89","-1","0","0","243","0","0","0","0","366","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","31","0","0","0","0","0","0","0","0","60" +"22800","-1","","","","","Brimstone Staff","0.4","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105618","528092","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","83","-1","0","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","30","0","0","0","0","0","0","0","0","60" +"22801","-1","","","","","Spire of Twilight","0.4","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106023","530119","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","83","-1","0","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","38","0","0","0","0","0","0","0","0","60" +"22802","-1","","","","","Kingsfall","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90536","452684","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","89","32767","0","0","105","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","0","0","0","0","0","0","0","0","0","60" +"22803","-1","","","","","Midnight Haze","0.6","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83651","418256","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","81","32767","0","0","79","0","0","0","0","147","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","12","0","0","0","0","0","0","0","0","60" +"22804","-1","","","","","Maexxna's Fang","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85783","428915","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","83","32767","0","0","94","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","8","0","0","0","0","0","0","0","0","0","60" +"22805","-1","","","","","Naxxramas Sword 1H 1 [PH]","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","80643","403216","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","77","-1","0","0","106","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","14","7","0","0","0","0","0","0","0","60" +"22806","-1","","","","","Widow's Remorse","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84594","422974","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","70","0","0","0","0","131","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","17","0","0","0","0","0","0","0","0","0","60" +"22807","-1","","","","","Wraith Blade","0.6","0","-23.9","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86747","433735","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","83","-1","0","0","82","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","8","0","0","0","0","0","0","0","0","60" +"22808","-1","","","","","The Castigator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89393","446969","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","83","32767","0","0","119","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","9","0","0","0","0","0","0","0","0","0","60" +"22809","-1","","","","","Maul of the Redeemed Crusader","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112147","560738","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","83","-1","0","0","244","0","0","0","0","367","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","24","29","0","0","0","0","0","0","0","0","60" +"22810","-1","","","","","Toxin Injector","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66096","330484","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","81","-1","0","0","82","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","10","0","0","0","0","0","0","0","0","0","60" +"22811","-1","","","","","Soulstring","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67768","338842","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","83","-1","0","0","123","0","0","0","0","229","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","6","0","0","0","0","0","0","0","0","0","60" +"22812","-1","","","","","Nerubian Slavemaker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72327","361637","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","89","-1","0","0","151","0","0","0","0","281","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","0","0","0","0","0","0","0","0","0","0","60" +"22813","-1","","","","","Claymore of Unholy Might","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111341","556706","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","81","-1","0","0","235","0","0","0","0","354","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22814","-1","","","","","Naxxramas Sword 2H 2 [PH]","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111738","558690","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","0","0","229","0","0","0","0","344","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","0","0","0","0","0","0","0","0","0","60" +"22815","-1","","","","","Severance","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112134","560673","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","81","-1","0","0","235","0","0","0","0","354","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","18","43","0","0","0","0","0","0","0","0","60" +"22816","-1","","","","","Hatchet of Sundered Bone","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91970","459852","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","83","-1","0","0","119","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22817","-1","","","","","Naxxramas Polearm [PH]","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97767","488836","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","77","32767","0","0","225","0","0","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","41","31","0","0","0","0","0","0","0","0","60" +"22818","-1","","","","","The Plague Bearer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53656","268280","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3570","0","0","0","15","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","0","0","0","0","0","0","0","0","0","60" +"22819","-1","","","","","Shield of Condemnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58990","294952","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","-1","0","0","0","0","0","0","0","0","0","0","0","0","3936","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","10","10","0","0","0","0","0","0","0","0","60" +"22820","-1","","","","","Wand of Fates","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63364","316822","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","83","-1","0","0","119","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","7","7","0","0","0","0","0","0","0","0","60" +"22821","-1","","","","","Doomfinger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69654","348274","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","92","-1","0","0","146","0","0","0","0","271","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22822","-1","Return to the iCoke redemption vendor to receive a virtual prize","","","","iCoke Prize Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22823","-1","","","","","Elixir of Camouflage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22824","-1","","","","","Elixir of Major Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22825","-1","","","","","Elixir of Healing Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22826","-1","","","","","Sneaking Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22827","-1","","","","","Elixir of Major Frost Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22828","-1","","","","","Insane Strength Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22829","-1","","","","","Super Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22830","-1","","","","","Elixir of the Searching Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22831","-1","","","","","Elixir of Major Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22832","-1","","","","","Super Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22833","-1","","","","","Elixir of Major Firepower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"22834","-1","","","","","Elixir of Major Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22835","-1","","","","","Elixir of Major Shadow Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22836","-1","","","","","Major Dreamless Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22837","-1","","","","","Heroic Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22838","-1","","","","","Haste Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22839","-1","","","","","Destruction Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22840","-1","","","","","Elixir of Major Mageblood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22841","-1","","","","","Major Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22842","-1","","","","","Major Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22843","-1","","","","","Blood Guard's Chain Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","14","0","0","0","0","0","0","0","0","60" +"22844","-1","","","","","Major Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22845","-1","","","","","Major Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22846","-1","","","","","Major Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22847","-1","","","","","Major Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6000","24000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22848","-1","","","","","Elixir of Empowerment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22849","-1","","","","","Ironshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"22850","-1","","","","","Super Rejuvenation Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22851","-1","","","","","Flask of Fortification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22852","-1","","","","","Blood Guard's Dragonhide Treads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","6","6","6","0","0","0","0","0","60" +"22853","-1","","","","","Flask of Mighty Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22854","-1","","","","","Flask of Relentless Assault","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22855","-1","","","","","Blood Guard's Dreadweave Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","13","0","0","0","0","0","0","0","0","60" +"22856","-1","","","","","Blood Guard's Leather Walkers","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22857","-1","","","","","Blood Guard's Mail Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","12","13","0","0","0","0","0","0","0","60" +"22858","-1","","","","","Blood Guard's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","10","9","0","0","0","0","0","0","0","60" +"22859","-1","","","","","Blood Guard's Satin Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","15","0","0","0","0","0","0","0","0","60" +"22860","-1","","","","","Blood Guard's Silk Walkers","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"22861","-1","","","","","Flask of Blinding Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22862","-1","","","","","Blood Guard's Chain Vices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","12","0","0","0","0","0","0","0","0","60" +"22863","-1","","","","","Blood Guard's Dragonhide Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","10","12","9","0","0","0","0","0","0","60" +"22864","-1","","","","","Blood Guard's Leather Grips","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","0","0","0","0","0","0","0","0","0","60" +"22865","-1","","","","","Blood Guard's Dreadweave Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","4","0","0","0","0","0","0","0","0","60" +"22866","-1","","","","","Flask of Pure Death","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"22867","-1","","","","","Blood Guard's Mail Vices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","60" +"22868","-1","","","","","Blood Guard's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","17","0","0","0","0","0","0","0","0","60" +"22869","-1","","","","","Blood Guard's Satin Handwraps","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","5","0","0","0","0","0","0","0","0","60" +"22870","-1","","","","","Blood Guard's Silk Handwraps","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","10","0","0","0","0","0","0","0","0","60" +"22871","-1","","","","","Shrouding Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22872","-1","","","","","Legionnaire's Plate Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","21","0","0","0","0","0","0","0","0","60" +"22873","-1","","","","","Legionnaire's Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","12","0","0","0","0","0","0","0","0","60" +"22874","-1","","","","","Legionnaire's Chain Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","13","6","0","0","0","0","0","0","0","60" +"22875","-1","","","","","Legionnaire's Chain Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","11","13","6","0","0","0","0","0","0","0","60" +"22876","-1","","","","","Legionnaire's Mail Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","18","17","0","0","0","0","0","0","0","60" +"22877","-1","","","","","Legionnaire's Dragonhide Chestpiece","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","13","12","12","0","0","0","0","0","0","60" +"22878","-1","","","","","Legionnaire's Dragonhide Leggings","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","12","12","5","12","0","0","0","0","0","60" +"22879","-1","","","","","Legionnaire's Leather Chestpiece","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","60" +"22880","-1","","","","","Legionnaire's Leather Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"22881","-1","","","","","Legionnaire's Dreadweave Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","13","0","0","0","0","0","0","0","0","60" +"22882","-1","","","","","Legionnaire's Satin Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","15","0","0","0","0","0","0","0","0","60" +"22883","-1","","","","","Legionnaire's Silk Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","17","5","0","0","0","0","0","0","0","60" +"22884","-1","","","","","Legionnaire's Dreadweave Tunic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","60" +"22885","-1","","","","","Legionnaire's Satin Tunic","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","19","15","0","0","0","0","0","0","0","0","60" +"22886","-1","","","","","Legionnaire's Silk Tunic","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","18","17","5","0","0","0","0","0","0","0","60" +"22887","-1","","","","","Legionnaire's Mail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","17","0","0","0","0","0","0","0","0","60" +"22888","-1","","","","","Azure Watch Gift Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9278","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22889","-1","One extraction is more than enough to replenish a healing crystal.","","","","Vial of Moth Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22890","-1","Teaches Frost Ward (Rank 5).","","","","Tome of Frost Ward V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22891","-1","Teaches Shadow Ward (Rank 4).","","","","Grimoire of Shadow Ward IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22892","-1","","","","","Dim Necrotic Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22893","-1","","","","","Luzran's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22894","-1","","","","","Knucklerot's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22895","-1","","","","","Conjured Cinnamon Roll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"22896","-1","","","","","Healing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22897","-1","Teaches Conjure Food (Rank 7).","","","","Tome of Conjure Food VII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"22898","-1","","","","","Consecrated Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2874","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22899","-1","","","","","Etched Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2875","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22900","-1","Teaches you how to make an Elixir of Camouflage.","","","","Recipe: Elixir of Camouflage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","171","61","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22901","-1","Teaches you how to make a Sneaking Potion","","","","Recipe: Sneaking Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","171","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22902","-1","Teaches you how to make an Elixir of Major Frost Power.","","","","Recipe: Elixir of Major Frost Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","171","64","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22903","-1","Teaches you how to make an Insane Strength Potion.","","","","Recipe: Insane Strength Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","171","64","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22904","-1","Teaches you how to make an Elixir of the Searching Eye.","","","","Recipe: Elixir of the Searching Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","171","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22905","-1","Teaches you how to make an Elixir of Major Agility.","","","","Recipe: Elixir of Major Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","330","171","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22906","-1","Teaches you how to make a Shrouding Potion.","","","","Recipe: Shrouding Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","335","171","67","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22907","-1","Teaches you how to make a Super Mana Potion.","","","","Recipe: Super Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","171","68","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22908","-1","Teaches you how to make an Elixir of Major Firepower.","","","","Recipe: Elixir of Major Firepower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","345","171","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22909","-1","Teaches you how to make an Elixir of Major Defense.","","","","Recipe: Elixir of Major Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","171","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22910","-1","Teaches you how to make an Elixir of Major Shadow Power.","","","","Recipe: Elixir of Major Shadow Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22911","-1","Teaches you how to make a Major Dreamless Sleep Potion.","","","","Recipe: Major Dreamless Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22912","-1","Teaches you how to make a Heroic Potion.","","","","Recipe: Heroic Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22913","-1","Teaches you how to make a Haste Potion.","","","","Recipe: Haste Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22914","-1","Teaches you how to make a Destruction Potion.","","","","Recipe: Destruction Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22915","-1","Teaches you how to Transmute Primal Air into Primal Fire.","","","","Recipe: Transmute Primal Air to Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22916","-1","Teaches you how to Transmute Primal Earth into Primal Water.","","","","Recipe: Transmute Primal Earth to Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22917","-1","Teaches you how to Transmute Primal Fire into Primal Earth.","","","","Recipe: Transmute Primal Fire to Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22918","-1","Teaches you how to Transmute Primal Water into Air.","","","","Recipe: Transmute Primal Water to Air","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22919","-1","Teaches you how to make an Elixir of Major Mageblood.","","","","Recipe: Elixir of Major Mageblood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","171","71","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22920","-1","Teaches you how to make a Major Fire Protection Potion.","","","","Recipe: Major Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22921","-1","Teaches you how to make a Major Frost Protection Potion.","","","","Recipe: Major Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22922","-1","Teaches you how to make a Major Nature Protection Potion.","","","","Recipe: Major Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22923","-1","Teaches you how to make a Major Arcane Protection Potion.","","","","Recipe: Major Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22924","-1","Teaches you how to make a Major Shadow Protection Potion.","","","","Recipe: Major Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22925","-1","Teaches you how to make a Major Holy Protection Potion.","","","","Recipe: Major Holy Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22926","-1","Teaches you how to make an Elixir of Empowerment.","","","","Recipe: Elixir of Empowerment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","171","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22927","-1","Teaches you how to make an Ironshield Potion.","","","","Recipe: Ironshield Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","171","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22928","-1","","","","","Simple Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2876","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22929","-1","","","","","Glyphic Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2877","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22930","-1","","","","","A Bloodstained Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2878","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22931","-1","","","","","Hallowed Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2879","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","4","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22932","-1","","","","","A Torn Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2880","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22933","-1","","","","","[UNUSED] Abom Stoone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22934","-1","Looks like it's in good condition.","","","","Lasher Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22935","-1","","","","","Touch of Frost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88355","353421","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","0","0","0","0","0","0","0","0","0","60" +"22936","-1","","","","","Wristguards of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30895","154479","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1535","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","10","0","0","0","0","0","0","0","0","60" +"22937","-1","","","","","Gem of Nerubis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"22938","-1","","","","","Cryptfiend Silk Cloak","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26523","132618","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","14","0","0","0","0","0","0","0","0","0","60" +"22939","-1","","","","","Band of Unanswered Prayers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","11","11","12","0","0","0","0","0","0","0","60" +"22940","-1","","","","","Icebane Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46667","233339","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","797","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","9","0","0","0","0","0","0","0","0","60" +"22941","-1","","","","","Polar Shoulder Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33516","167580","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","0","0","0","0","0","0","0","0","0","60" +"22942","-1","","","","","The Widow's Embrace","0.6","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","87803","439016","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","81","32767","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","12","12","14","0","0","0","0","0","0","0","60" +"22943","-1","","","","","Malice Stone Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","8","9","0","0","0","0","0","0","0","0","60" +"22944","-1","","","","","A Crumpled Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2881","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22945","-1","","","","","A Careworn Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2882","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22946","-1","","","","","A Ragged Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2883","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22947","-1","","","","","Pendant of Forgotten Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","18","0","0","0","0","0","0","0","0","60" +"22948","-1","","","","","A Smudged Document","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2884","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22949","-1","","","","","Cracked Necrotic Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22950","-1","","","","","Faint Necrotic Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22951","-1","","","","","Springpaw Hide Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27","136","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22952","-1","","","","","Springpaw Hide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","84","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22953","-1","","","","","Fur Lined Chain Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","169","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22954","-1","","","","","Kiss of the Spider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"22955","-1","","","","","Neutralizing Agent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22956","-1","","","","","Rusty Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","285","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","7","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22957","-1","","","","","Rusty Sin'dorei Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","286","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","7","-1","0","0","5","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22958","-1","","","","","Farstrider Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","182","914","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","10","-1","0","0","15","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22959","-1","","","","","Smooth Metal Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","918","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","10","-1","0","0","13","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22960","-1","","","","","Cloak of Suturing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26713","133565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","12","12","0","0","0","0","0","0","0","0","60" +"22961","-1","","","","","Band of Reanimation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113642","454568","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","0","0","0","0","0","0","0","0","0","60" +"22962","-1","","","","","Inoculating Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22963","-1","","","","","Ranger's Pocketknife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","745","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","10","-1","0","0","4","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22964","-1","","","","","Sunsail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","123","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22965","-1","","","","","Longshoreman's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","103","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22966","-1","","","","","Silk Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","82","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22967","-1","","","","","Icy Scale Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41269","206348","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","0","0","0","0","0","0","0","0","0","0" +"22968","-1","","","","","Glacial Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25550","127754","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","33","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","0","0","0","0","0","0","0","0","0","0" +"22969","-1","","","","","Ven'jashi's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","230","1150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","9","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"22970","-1","","","","","A Bloodstained Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9301","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22971","-1","","","","","Hoodoo Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","231","1158","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","11","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22972","-1","","","","","A Careworn Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9299","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22973","-1","","","","","A Crumpled Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9302","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22974","-1","","","","","A Ragged Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9300","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22975","-1","","","","","A Smudged Document","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9304","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22976","-1","","","","","Magister's Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22977","-1","","","","","A Torn Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9295","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"22978","-1","Looks like it's still in working order.","","","","Emitter Spare Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"22979","-1","","","","","Slayer's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","403","1615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","2","0","0","0","0","0","0","0","0","0" +"22980","-1","","","","","Staff of the Sun","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2493","12467","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","21","-1","0","0","44","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","10","0","0","0","0","0","0","0","0","0" +"22981","-1","","","","","Gluth's Missing Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128862","515451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"22982","-1","","","","","Farstrider's Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1507","7535","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","21","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","0" +"22983","-1","","","","","Rime Covered Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26999","134997","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","12","12","0","0","0","0","0","0","0","0","60" +"22984","-1","","","","","Dawnblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1879","9395","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","21","-1","0","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","5","0","0","0","0","0","0","0","0","0","0" +"22985","-1","","","","","Suncrown Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","407","2038","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","10" +"22986","-1","","","","","Apothecary's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","272","1364","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","2","0","4","0","0","0","0","0","0","0","0","0","10" +"22987","-1","","","","","Deathstalker's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","342","1712","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","5","2","0","4","0","0","0","0","0","0","0","0","0","10" +"22988","-1","","","","","The End of Dreams","0.6","0","-21.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85160","425804","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","83","32767","0","0","86","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","13","0","0","0","0","0","0","0","0","60" +"22989","-1","Only slightly tinged with blood.","","","","Blood Elf Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"22990","-1","","","","","Tranquillien Champion's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","576","2883","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","16","3","0","7","0","0","0","0","0","0","0","0","0","16" +"22991","-1","","","","","Apprentice Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","208","1042","1","1","1","32768","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","8","2","0","2","1","0","0","0","0","0","0","0","0","10" +"22992","-1","","","","","Bogwalker Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","261","1308","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","8","2","0","2","1","0","0","0","0","0","0","0","0","10" +"22993","-1","","","","","Volunteer's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","316","1582","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","8","2","0","2","1","0","0","0","0","0","0","0","0","10" +"22994","-1","","","","","Digested Hand of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91352","365411","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","10","0","0","0","0","0","0","0","0","60" +"22995","-1","","","","","Sin'dorei Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2448","12240","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","21","-1","0","0","49","0","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","4","10","0","0","0","0","0","0","0","0","0" +"22996","-1","","","","","Reforged Quel'dorei Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","911","4558","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","411","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","0" +"22997","-1","","","","","Ley-Keeper's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1072","5361","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","20","-1","0","0","14","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"22998","-1","","","","","Ghostclaw Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","717","3587","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","4","0","0","0","0","0","0","0","0","0" +"22999","-1","","","","","Tabard of the Argent Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23000","-1","","","","","Plated Abomination Ribcage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63636","318181","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","1087","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","25","0","0","0","0","0","0","0","0","60" +"23001","-1","","","","","Eye of Diminution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23002","-1","","","","","Turtle Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23003","-1","","","","","Blood Elf Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2906","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23004","-1","","","","","Idol of Longevity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25159","125795","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23005","-1","","","","","Totem of Flowing Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25253","126268","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23006","-1","","","","","Libram of Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25351","126755","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23007","-1","","","","","Piglet's Collar","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23008","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2885","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23009","-1","","","","","Wand of the Whispering Dead","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64100","320503","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","83","-1","0","0","119","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","9","0","0","0","0","0","0","0","0","60" +"23010","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2886","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23011","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2887","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23012","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2888","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23013","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2889","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23014","-1","","","","","Iblis, Blade of the Fallen Seraph","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85238","426191","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23015","-1","","","","","Rat Cage","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23016","-1","","","","","Sealed Research Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2890","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23017","-1","","","","","Veil of Eclipse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27110","135550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","10","10","0","0","0","0","0","0","0","0","60" +"23018","-1","","","","","Signet of the Fallen Defender","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23019","-1","","","","","Icebane Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47692","238460","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","12","0","0","0","0","0","0","0","0","60" +"23020","-1","","","","","Polar Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34249","171245","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"23021","-1","","","","","The Soul Harvester's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18331","91655","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1503","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","14","11","0","0","0","0","0","0","0","0","60" +"23022","-1","A bag of 5 gold. For those who like telling children there's no Great Father Winter...","","","","Curmudgeon's Payoff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23023","-1","","","","","Sadist's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23024","-1","","","","","Prepared Field Duty Papers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23025","-1","","","","","Seal of the Damned","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","17","0","0","0","0","0","0","0","0","0","60" +"23026","-1","The crystal glows with the list of emergency supplies contained within it.","","","","Supply Request Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23027","-1","","","","","Warmth of Forgiveness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23028","-1","","","","","Hailstone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98660","394641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","0","0","0","0","0","0","0","0","0","60" +"23029","-1","","","","","Noth's Frigid Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","12","13","0","0","0","0","0","0","0","0","60" +"23030","-1","","","","","Cloak of the Scourge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25734","128674","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","23","0","0","0","0","0","0","0","0","0","60" +"23031","-1","","","","","Band of the Inevitable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23032","-1","","","","","Glacial Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25926","129634","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","40","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","20","21","0","0","0","0","0","0","0","0","60" +"23033","-1","","","","","Icy Scale Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40081","200406","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","44","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","18","0","0","0","0","0","0","0","0","60" +"23034","-1","","","","","Nax PH Crit Plate Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46842","234212","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1","0","0","0","0","0","0","0","0","0","0","0","0","797","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","33","0","0","0","0","0","0","0","0","60" +"23035","-1","","","","","Preceptor's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26915","134577","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","18","24","0","0","0","0","0","0","0","0","60" +"23036","-1","","","","","Necklace of Necropsy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","10","11","10","0","0","0","0","0","0","0","60" +"23037","-1","","","","","Ring of Spiritual Fervor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","11","0","0","0","0","0","0","0","0","60" +"23038","-1","","","","","Band of Unnatural Forces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23039","-1","","","","","The Eye of Nerub","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113747","568736","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","83","32767","0","0","251","0","0","0","0","378","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","22","16","0","0","0","0","0","0","0","60" +"23040","-1","","","","","Glyph of Deflection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23041","-1","","","","","Slayer's Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23042","-1","","","","","Loatheb's Reflection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","13","13","13","13","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23043","-1","","","","","The Face of Death","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57405","287026","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","3854","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","0","0","0","0","0","0","0","0","0","60" +"23044","-1","","","","","Harbinger of Doom","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83837","419187","1","1","1","524288","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","83","32767","0","0","83","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","8","8","0","0","0","0","0","0","0","0","60" +"23045","-1","","","","","Shroud of Dominion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27117","135588","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","0","0","0","0","0","0","0","0","0","60" +"23046","-1","","","","","The Restrained Essence of Sapphiron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23047","-1","","","","","Eye of the Dead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23048","-1","","","","","Sapphiron's Right Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","10","9","0","0","0","0","0","0","0","0","60" +"23049","-1","","","","","Sapphiron's Left Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72651","290604","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","12","8","0","0","0","0","0","0","0","0","60" +"23050","-1","","","","","Cloak of the Necropolis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28385","141928","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","11","12","0","0","0","0","0","0","0","0","60" +"23051","-1","","","","","Monster - Bow, Raid Snake ZG","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"23052","-1","","","","","Monster - Crossbow, Ornate","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"23053","-1","","","","","Stormrage's Talisman of Seething","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","12","0","0","0","0","0","0","0","0","0","60" +"23054","-1","","","","","Gressil, Dawn of Ruin","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95047","475239","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","89","-1","0","0","138","0","0","0","0","257","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","0","0","0","0","0","0","0","0","0","60" +"23055","-1","","","","","Word of Thawing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23056","-1","","","","","Hammer of the Twisting Nether","0.6","0","-31.7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","95737","478687","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","89","32767","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","8","11","0","0","0","0","0","0","0","0","60" +"23057","-1","","","","","Gem of Trapped Innocents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","9","7","0","0","0","0","0","0","0","0","60" +"23058","-1","","","","","Life Channeling Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","92","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23059","-1","","","","","Ring of the Dreadnaught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","92","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","0","0","0","0","0","0","0","0","0","60" +"23060","-1","","","","","Bonescythe Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","92","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","20","20","0","0","0","0","0","0","0","60" +"23061","-1","","","","","Ring of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","92","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23062","-1","","","","","Frostfire Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","92","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","10","0","0","0","0","0","0","0","0","60" +"23063","-1","","","","","Plagueheart Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","92","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","0","0","0","0","0","0","0","0","0","60" +"23064","-1","","","","","Ring of the Dreamwalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","92","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","16","0","0","0","0","0","0","0","60" +"23065","-1","","","","","Ring of the Earthshatterer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","92","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23066","-1","","","","","Ring of Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","92","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","16","0","0","0","0","0","0","0","0","60" +"23067","-1","","","","","Ring of the Cryptstalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","92","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","0","0","0","0","0","0","0","0","0","60" +"23068","-1","","","","","Legplates of Carnage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61207","306038","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","1535","0","0","0","0","0","0","0","0","0","0","0","0","930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","18","0","0","0","0","0","0","0","0","60" +"23069","-1","","","","","Necro-Knight's Garb","0","0","320","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35844","179222","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","400","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","32","0","0","0","0","0","0","0","0","0","60" +"23070","-1","","","","","Leggings of Polarity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35976","179884","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","14","0","0","0","0","0","0","0","0","60" +"23071","-1","","","","","Leggings of Apocalypse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44201","221008","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","32767","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","23","15","0","0","0","0","0","0","0","60" +"23072","-1","","","","","Fists of the Unrelenting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33544","167721","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","1535","0","0","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","26","0","0","0","0","0","0","0","0","60" +"23073","-1","","","","","Boots of Displacement","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33391","166956","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","21","0","0","0","0","0","0","0","0","60" +"23074","-1","","","","","[PH] Goblin Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23075","-1","","","","","Death's Bargain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57402","287014","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","12","12","0","0","0","0","0","0","0","0","60" +"23076","-1","","","","","Brilliant Citrine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23077","-1","","","","","Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23078","-1","","","","","Gauntlets of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18870","94354","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","410","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23079","-1","","","","","Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23081","-1","","","","","Handwraps of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12591","62957","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23082","-1","","","","","Handguards of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15167","75836","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23083","-1","","","","","Captured Flame","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23084","-1","","","","","Gloves of Undead Cleansing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10187","50936","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","0" +"23085","-1","","","","","Robe of Undead Cleansing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20451","102255","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","13","0","0","0","0","0","0","0","0","58" +"23086","-1","","","","","[UNUSED] Letter Cookie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23087","-1","","","","","Breastplate of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36057","180289","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23088","-1","","","","","Chestguard of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31018","155093","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23089","-1","","","","","Tunic of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25944","129724","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","0","0","0","0","0","0","0","0","0","58" +"23090","-1","","","","","Bracers of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18332","91663","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","533","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23091","-1","","","","","Bracers of Undead Cleansing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10454","52273","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","536","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","6","7","0","0","0","0","0","0","0","0","58" +"23092","-1","","","","","Wristguards of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15737","78689","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","63","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23093","-1","","","","","Wristwraps of Undead Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13162","65814","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","63","1535","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","0","0","0","0","0","0","0","0","0","58" +"23094","-1","Matches a Red Socket.","","","","Teardrop Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23095","-1","Matches a Red Socket.","","","","Bold Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23096","-1","Matches a Red Socket.","","","","Runed Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23097","-1","Matches a Red Socket.","","","","Delicate Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23098","-1","Matches a Yellow or Red Socket.","","","","Inscribed Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23099","-1","Matches a Yellow or Red Socket.","","","","Luminous Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23100","-1","Matches a Yellow or Red Socket.","","","","Glinting Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23101","-1","Matches a Yellow or Red Socket.","","","","Potent Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23103","-1","Matches a Yellow or Blue Socket.","","","","Radiant Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23104","-1","Matches a Yellow or Blue Socket.","","","","Jagged Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23105","-1","Matches a Yellow or Blue Socket.","","","","Enduring Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23106","-1","Matches a Yellow or Blue Socket.","","","","Dazzling Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23107","-1","","","","","Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23108","-1","Matches a Red or Blue Socket.","","","","Glowing Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23109","-1","Matches a Red or Blue Socket.","","","","Royal Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23110","-1","Matches a Red or Blue Socket.","","","","Shifting Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23111","-1","Matches a Red or Blue Socket.","","","","Sovereign Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23112","-1","","","","","Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23113","-1","Matches a Yellow Socket.","","","","Brilliant Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23114","-1","Matches a Yellow Socket.","","","","Gleaming Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23115","-1","Matches a Yellow Socket.","","","","Thick Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23116","-1","Matches a Yellow Socket.","","","","Rigid Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23117","-1","","","","","Azure Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23118","-1","Matches a Blue Socket.","","","","Solid Azure Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23119","-1","Matches a Blue Socket.","","","","Sparkling Azure Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23120","-1","Matches a Blue Socket.","","","","Stormy Azure Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23121","-1","Matches a Blue Socket.","","","","Lustrous Azure Moonstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23122","-1","","","","","Consecrated Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"23123","-1","","","","","Blessed Wizard Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40","160","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","50" +"23124","-1","","","","","Staff of Balzaphon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61095","305478","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","60","-1","0","0","160","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","8","10","7","0","0","0","0","0","0","0","55" +"23125","-1","","","","","Chains of the Lich","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","55" +"23126","-1","","","","","Waistband of Balzaphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9847","49239","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","13","0","0","0","0","0","0","0","0","55" +"23127","-1","","","","","Cloak of Revanchion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15448","77243","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","10","10","0","0","0","0","0","0","0","58" +"23128","-1","","","","","The Shadow's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10198","50994","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","0","0","0","0","0","0","0","0","57" +"23129","-1","","","","","Bracers of Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10507","52538","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","13","5","0","0","0","0","0","0","0","57" +"23130","-1","Teaches you how to cut a Teardrop Blood Garnet.","","","","Design: Teardrop Blood Garnet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23131","-1","Teaches you how to cut a Bold Blood Garnet.","","","","Design: Bold Blood Garnet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23132","-1","","","","","Lord Blackwood's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53100","265504","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","62","-1","0","0","42","0","0","0","0","80","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","14","0","0","0","0","0","0","0","0","0","57" +"23133","-1","Teaches you how to cut a Runed Blood Garnet.","","","","Design: Runed Blood Garnet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23134","-1","Teaches you how to cut a Delicate Blood Garnet.","","","","Design: Delicate Blood Garnet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23135","-1","Teaches you how to cut an Inscribed Flame Spessarite.","","","","Design: Inscribed Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23136","-1","Teaches you how to cut a Luminous Flame Spessarite.","","","","Design: Luminous Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23137","-1","Teaches you how to cut a Glinting Flame Spessarite.","","","","Design: Glinting Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23138","-1","Teaches you how to cut a Potent Flame Spessarite.","","","","Design: Potent Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23139","-1","","","","","Lord Blackwood's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31549","157749","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","2121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","10","0","0","0","0","0","0","0","0","0","57" +"23140","-1","Teaches you how to cut a Radiant Deep Peridot.","","","","Design: Radiant Deep Peridot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23141","-1","Teaches you how to cut a Jagged Deep Peridot.","","","","Design: Jagged Deep Peridot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23142","-1","Teaches you how to cut an Enduring Deep Peridot.","","","","Design: Enduring Deep Peridot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23143","-1","Teaches you how to cut a Dazzling Deep Peridot.","","","","Design: Dazzling Deep Peridot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23144","-1","Teaches you how to cut a Glowing Shadow Draenite.","","","","Design: Glowing Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23145","-1","Teaches you how to cut a Royal Shadow Draenite.","","","","Design: Royal Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23146","-1","Teaches you how to cut a Shifting Shadow Draenite.","","","","Design: Shifting Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23147","-1","Teaches you how to cut a Sovereign Shadow Draenite.","","","","Design: Sovereign Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23148","-1","Teaches you how to cut a Brilliant Golden Draenite.","","","","Design: Brilliant Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23149","-1","Teaches you how to cut a Gleaming Golden Draenite.","","","","Design: Gleaming Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23150","-1","Teaches you how to cut a Thick Golden Draenite.","","","","Design: Thick Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23151","-1","Teaches you how to cut a Rigid Golden Draenite.","","","","Design: Rigid Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23152","-1","Teaches you how to cut a Solid Azure Moonstone.","","","","Design: Solid Azure Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23153","-1","Teaches you how to cut a Sparkling Azure Moonstone.","","","","Design: Sparkling Azure Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23154","-1","Teaches you how to cut a Stormy Azure Moonstone.","","","","Design: Stormy Azure Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23155","-1","Teaches you how to cut a Lustrous Azure Moonstone.","","","","Design: Lustrous Azure Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23156","-1","","","","","Blackwood's Thigh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13113","52453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","13","0","0","0","0","0","0","0","0","57" +"23157","-1","","","","","Thick Citrine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23158","-1","","","","","Solid Aquamarine","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23159","-1","","","","","Sparkling Aquamarine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23160","-1","","","","","Friendship Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23161","-1","","","","","Freshly-Squeezed Lemonade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23162","-1","","","","","A Very Large Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","36","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23163","-1","","","","","Performer's Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23164","-1","","","","","Bubbly Beverage","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23165","-1","Surprisingly well made, despite being stone.","","","","Headhunter Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23166","-1","Good versus skeletal scourge.","","","","Hexxer Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23167","-1","The snake engraving is very realistic.","","","","Shadowcaster Mace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23168","-1","","","","","Scorn's Focal Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2665","13328","1","0.3","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","35","-1","0","0","22","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","30" +"23169","-1","","","","","Scorn's Icy Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3482","13930","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","6","5","0","0","0","0","0","0","0","0","30" +"23170","-1","","","","","The Frozen Clutch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2684","13424","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","0","0","0","0","0","0","0","0","0","30" +"23171","-1","","","","","The Axe of Severing","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4213","21067","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","25","-1","0","0","50","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","14","0","0","0","0","0","0","0","0","0","20" +"23172","-1","The perfect snack on a warm summer day.","","","","Refreshing Red Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23173","-1","","","","","Abomination Skin Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1357","6789","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","8","7","0","0","0","0","0","0","0","0","20" +"23174","-1","","","","","Monster - Dagger Basic Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23175","-1","","","","","Tasty Summer Treat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23176","-1","","","","","Fizzy Energy Drink","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","15","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23177","-1","","","","","Lady Falther'ess' Finger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10536","52683","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","41","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","36" +"23178","-1","","","","","Mantle of Lady Falther'ess","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4230","21152","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","9","0","0","0","0","0","0","0","0","0","36" +"23179","-1","","","","","Flame of Orgrimmar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9324","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23180","-1","","","","","Flame of Thunder Bluff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9325","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23181","-1","","","","","Flame of the Undercity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9326","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23182","-1","","","","","Flame of Stormwind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9330","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23183","-1","","","","","Flame of Ironforge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9331","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23184","-1","","","","","Flame of Darnassus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9332","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23191","-1","","","","","Crystal Controlling Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23192","-1","","","","","Tabard of the Scarlet Crusade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7143","28575","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23193","-1","","","","","Skeletal Steed Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250000","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23194","-1","","","","","Lesser Mark of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23195","-1","","","","","Mark of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23196","-1","","","","","Greater Mark of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23197","-1","","","","","Idol of the Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15690","78453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23198","-1","","","","","Idol of Brutality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15749","78749","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23199","-1","","","","","Totem of the Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15808","79044","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23200","-1","","","","","Totem of Sustaining","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15867","79339","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23201","-1","","","","","Libram of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15925","79627","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23203","-1","","","","","Libram of Fervor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16043","80217","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23205","-1","The leaf of a rugged plant found in Hellfire Peninsula.","","","","Hellfire Spineleaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23206","-1","","","","","Mark of the Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23207","-1","","","","","Mark of the Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23211","-1","Gooey, melty, good.","","","","Toasted Smorc","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23212","-1","","","","","Scrapper's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23213","-1","","","","","Scrapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23214","-1","The final word in incendiary catapult ammunition.","","","","Plump Helboar Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23215","-1","Sweet honey crackers, marshmallow and chocolate.","","","","Bag of Smorc Ingredients","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23216","-1","Seething with malevolent energy, the unwary could easily become corrupted peering into its depths.","","","","Pulsating Voidwalker Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","34816","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9347","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"23217","-1","It shakes nonstop, as though the hatchling could emerge at any moment.","","","","Ravager Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23218","-1","The voidwalker essence radiates energy. It's just the kind of thing that Screed could use to ""improve"" his zeppelin's engine.","","","","Condensed Voidwalker Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23219","-1","","","","","Girdle of the Mentor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31190","155951","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","21","20","0","0","0","0","0","0","0","60" +"23220","-1","","","","","Crystal Webbed Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35572","177862","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","1535","0","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","25","19","0","0","0","0","0","0","0","0","60" +"23221","-1","","","","","Misplaced Servo Arm","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87413","437066","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","83","-1","0","0","128","0","0","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23222","-1","The thick and heavy, but discolored hide of a mutated clefthoof.","","","","Clefthoof Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23223","-1","A twisted, mutated set of bones from a once-majestic animal.","","","","Clefthoof Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23224","-1","","","","","Summer Gift Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23225","-1","","","","","Monster - Sword, 1H Blood Elf A02 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23226","-1","","","","","Ghoul Skin Tunic","0","0","170","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45674","228370","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","22","0","0","0","0","0","0","0","0","60" +"23227","-1","Return to the iCoke redemption vendor to receive a gift box","","","","iCoke Gift Box Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23228","-1","","","","","Old Whitebark's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8474","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","7" +"23229","-1","","","","","Sword of Sockety Goodness","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11352","56762","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2392","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","7","7","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","5","0","0","0","0","0","0","0","0","0" +"23230","-1","","","","","Dagger of Sockety Goodness","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11396","56982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","7","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","5","0","0","0","0","0","0","0","0","0" +"23231","-1","Weathered and twisted sinew from a mutated beast native to Outland.","","","","Clefthoof Sinew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23232","-1","","","","","Huge Sword of Sockety Goodness","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11483","57417","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","41","-1","0","0","37","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","7","7","1","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","4","5","0","0","0","0","0","0","0","0","0" +"23233","-1","","","","","Red Bryanite of Strength stuff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","11","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23234","-1","","","","","Blue Bryanite of Agility","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","2" +"23235","-1","","","","","Yellow Bryanite of Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23236","-1","","","","","Meta Bryanite of Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23237","-1","","","","","Ring of the Eternal Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","60" +"23238","-1","","","","","Stygian Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55321","276609","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","3570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23239","-1","Premium quality wings from only the finest free range carrion birds.","","","","Plump Buzzard Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23240","-1","","","","","Monster - Staff, Blood Elf A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23241","-1","","","","","Monster - Dagger, Blood Elf A01 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23242","-1","","","","","Claw of the Frost Wyrm","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94813","474065","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","88","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","8","0","0","0","0","0","0","0","0","0","60" +"23243","-1","","","","","Champion's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","17","0","0","0","0","0","0","0","0","60" +"23244","-1","","","","","Champion's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","21","0","0","0","0","0","0","0","0","60" +"23246","-1","","","","","Fiery Festival Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23247","-1","","","","","Burning Blossom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23248","-1","Tender, succulent free range helboar meat, but not quite organic.","","","","Purified Helboar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23249","-1","","","","","Amani Invasion Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9360","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"23250","-1","","","","","Prismatic Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23251","-1","","","","","Champion's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","14","9","0","0","0","0","0","0","0","60" +"23252","-1","","","","","Champion's Chain Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","13","0","0","0","0","0","0","0","0","60" +"23253","-1","","","","","Champion's Dragonhide Headguard","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","12","16","16","8","0","0","0","0","0","60" +"23254","-1","","","","","Champion's Dragonhide Shoulders","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","6","12","6","12","0","0","0","0","0","60" +"23255","-1","","","","","Champion's Dreadweave Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","18","0","0","0","0","0","0","0","0","60" +"23256","-1","","","","","Champion's Dreadweave Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23257","-1","","","","","Champion's Leather Helm","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","0","0","0","0","0","0","0","0","0","60" +"23258","-1","","","","","Champion's Leather Shoulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","0","0","0","0","0","0","0","0","0","60" +"23259","-1","","","","","Champion's Mail Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","16","6","0","0","0","0","0","0","0","60" +"23260","-1","","","","","Champion's Mail Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","538","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","5","0","0","0","0","0","0","0","60" +"23261","-1","","","","","Champion's Satin Hood","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","18","0","0","0","0","0","0","0","0","60" +"23262","-1","","","","","Champion's Satin Mantle","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","12","0","0","0","0","0","0","0","0","60" +"23263","-1","","","","","Champion's Silk Cowl","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","6","0","0","0","0","0","0","0","60" +"23264","-1","","","","","Champion's Silk Mantle","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","11","4","0","0","0","0","0","0","0","60" +"23265","-1","","","","","Blackened Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","293","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23266","-1","","","","","Ranger's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98","491","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23267","-1","","","","","Satin Lined Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59","295","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23268","-1","","","","","Purification Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23269","-1","","","","","Felblood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23270","-1","Discolored, malodorous flesh from a deranged creature.","","","","Tainted Helboar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23271","-1","","","","","QATest Darkmoon Faire Tickets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20000","80000","1","1","1","20","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23272","-1","","","","","Knight-Captain's Lamellar Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","17","12","0","0","0","0","0","0","0","60" +"23273","-1","","","","","Knight-Captain's Lamellar Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","18","12","0","0","0","0","0","0","0","60" +"23274","-1","","","","","Knight-Lieutenant's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","12","0","0","0","0","0","0","0","0","60" +"23275","-1","","","","","Knight-Lieutenant's Lamellar Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","12","0","0","0","0","0","0","0","60" +"23276","-1","","","","","Lieutenant Commander's Lamellar Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","12","0","0","0","0","0","0","0","60" +"23277","-1","","","","","Lieutenant Commander's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","8","0","0","0","0","0","0","0","60" +"23278","-1","","","","","Knight-Lieutenant's Chain Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","14","0","0","0","0","0","0","0","0","60" +"23279","-1","","","","","Knight-Lieutenant's Chain Vices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","66","4","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","12","0","0","0","0","0","0","0","0","60" +"23280","-1","","","","","Knight-Lieutenant's Dragonhide Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","10","12","9","0","0","0","0","0","0","60" +"23281","-1","","","","","Knight-Lieutenant's Dragonhide Treads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","66","1024","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","6","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","13","13","6","6","6","0","0","0","0","0","60" +"23282","-1","","","","","Knight-Lieutenant's Dreadweave Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","4","0","0","0","0","0","0","0","0","60" +"23283","-1","","","","","Knight-Lieutenant's Dreadweave Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","66","256","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23284","-1","","","","","Knight-Lieutenant's Leather Grips","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","0","0","0","0","0","0","0","0","0","60" +"23285","-1","","","","","Knight-Lieutenant's Leather Walkers","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","66","8","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","0","0","0","0","0","0","0","0","0","60" +"23286","-1","","","","","Knight-Lieutenant's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","17","0","0","0","0","0","0","0","0","60" +"23287","-1","","","","","Knight-Lieutenant's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","66","1","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","10","9","0","0","0","0","0","0","0","60" +"23288","-1","","","","","Knight-Lieutenant's Satin Handwraps","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","5","0","0","0","0","0","0","0","0","60" +"23289","-1","","","","","Knight-Lieutenant's Satin Walkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","66","16","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","17","15","0","0","0","0","0","0","0","0","60" +"23290","-1","","","","","Knight-Lieutenant's Silk Handwraps","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","10","0","0","0","0","0","0","0","0","60" +"23291","-1","","","","","Knight-Lieutenant's Silk Walkers","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","66","128","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","10","0","0","0","0","0","0","0","0","60" +"23292","-1","","","","","Knight-Captain's Chain Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","11","13","6","0","0","0","0","0","0","0","60" +"23293","-1","","","","","Knight-Captain's Chain Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","68","4","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","11","13","6","0","0","0","0","0","0","0","60" +"23294","-1","","","","","Knight-Captain's Dragonhide Chestpiece","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","13","12","12","0","0","0","0","0","0","60" +"23295","-1","","","","","Knight-Captain's Dragonhide Leggings","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","68","1024","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","12","12","5","12","0","0","0","0","0","60" +"23296","-1","","","","","Knight-Captain's Dreadweave Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","13","0","0","0","0","0","0","0","0","60" +"23297","-1","","","","","Knight-Captain's Dreadweave Tunic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","68","256","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","20","20","0","0","0","0","0","0","0","0","60" +"23298","-1","","","","","Knight-Captain's Leather Chestpiece","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","0","0","0","0","0","0","0","0","0","60" +"23299","-1","","","","","Knight-Captain's Leather Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","68","8","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","0","0","0","0","0","0","0","0","0","60" +"23300","-1","","","","","Knight-Captain's Plate Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","21","0","0","0","0","0","0","0","0","60" +"23301","-1","","","","","Knight-Captain's Plate Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","68","1","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","12","0","0","0","0","0","0","0","0","60" +"23302","-1","","","","","Knight-Captain's Satin Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","15","0","0","0","0","0","0","0","0","60" +"23303","-1","","","","","Knight-Captain's Satin Tunic","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","68","16","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","19","15","0","0","0","0","0","0","0","0","60" +"23304","-1","","","","","Knight-Captain's Silk Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","17","5","0","0","0","0","0","0","0","60" +"23305","-1","","","","","Knight-Captain's Silk Tunic","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","68","128","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","18","17","5","0","0","0","0","0","0","0","60" +"23306","-1","","","","","Lieutenant Commander's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","14","9","0","0","0","0","0","0","0","60" +"23307","-1","","","","","Lieutenant Commander's Chain Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","71","4","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","13","0","0","0","0","0","0","0","0","60" +"23308","-1","","","","","Lieutenant Commander's Dragonhide Headguard","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","12","16","16","8","0","0","0","0","0","60" +"23309","-1","","","","","Lieutenant Commander's Dragonhide Shoulders","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","71","1024","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","6","12","6","12","0","0","0","0","0","60" +"23310","-1","","","","","Lieutenant Commander's Dreadweave Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","18","0","0","0","0","0","0","0","0","60" +"23311","-1","","","","","Lieutenant Commander's Dreadweave Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","71","256","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","13","0","0","0","0","0","0","0","0","60" +"23312","-1","","","","","Lieutenant Commander's Leather Helm","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","0","0","0","0","0","0","0","0","0","60" +"23313","-1","","","","","Lieutenant Commander's Leather Shoulders","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","71","8","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","0","0","0","0","0","0","0","0","0","60" +"23314","-1","","","","","Lieutenant Commander's Plate Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","21","0","0","0","0","0","0","0","0","60" +"23315","-1","","","","","Lieutenant Commander's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","71","1","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","17","0","0","0","0","0","0","0","0","60" +"23316","-1","","","","","Lieutenant Commander's Satin Hood","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","18","0","0","0","0","0","0","0","0","60" +"23317","-1","","","","","Lieutenant Commander's Satin Mantle","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","71","16","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","12","0","0","0","0","0","0","0","0","60" +"23318","-1","","","","","Lieutenant Commander's Silk Cowl","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","6","0","0","0","0","0","0","0","60" +"23319","-1","","","","","Lieutenant Commander's Silk Mantle","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","71","128","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","11","4","0","0","0","0","0","0","0","60" +"23320","-1","Teaches Flame Shock (Rank 6).","","","","Tablet of Flame Shock VI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23321","-1","","","","","Recruit's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23322","-1","","","","","Acolyte's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23323","-1","","","","","Crown of the Fire Festival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23324","-1","","","","","Mantle of the Fire Festival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23326","-1","","","","","Midsummer Sausage","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23327","-1","","","","","Fire-toasted Bun","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23328","-1","","","","","Monster - Sword2H, Instructor Razuvious","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23329","-1","","","","","Enriched Lasher Root","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","12","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23330","-1","","","","","Wilted Petal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23331","-1","","","","","Broken Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23332","-1","","","","","Withered Lasher Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23333","-1","","","","","Shattered Power Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23334","-1","","","","","Cracked Power Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23335","-1","","","","","Monster - Staff, (Thiah Redmane)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23336","-1","","","","","Helboar Blood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23337","-1","","","","","Cenarion Antidote","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23338","-1","This case seems to have spent some time in the digestive system of a large worm.","","","","Eroded Leather Case","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9373","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"23339","-1","","","","","Arelion's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23340","-1","","","","","Arelion's Journal Page 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23341","-1","","","","","Arelion's Journal Page 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23342","-1","","","","","Arelion's Journal Page 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23343","-1","Although torn and stained, this pack shows unmistakable signs of blood elf craftsmanship.","","","","Torn Pilgrim's Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23344","-1","","","","","Scout's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23345","-1","","","","","Scout's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23346","-1","","","","","Battleworn Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","2","-1","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23347","-1","","","","","Weathered Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5","27","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","2","-1","0","0","6","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","1" +"23348","-1","","","","","Scout's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23349","-1","","","","","Battleworn Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23350","-1","","","","","Battleworn Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23351","-1","","","","","Battleworn Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23352","-1","An unusually powerful concentrate of a wild voidwalker's energy.","","","","Potent Voidwalker Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23353","-1","","","","","Mana Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23354","-1","","","","","Crystalized Mana Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","6","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23355","-1","Not fit for consumption.","","","","Toxic Helboar Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23356","-1","","","","","Monster - Shield, Skullflame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23357","-1","A ravager has already hatched from this egg.","","","","Hatched Ravager Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23358","-1","","","","","Signaling Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23360","-1","","","","","Head of Instructor Razuvious","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23361","-1","","","","","Cleansing Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23362","-1","","","","","Hammer of the Sun","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89714","448573","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","90","32767","0","0","104","0","0","0","0","194","0","0","0","0","80","0","10","0","0","10","0","0","254","0","0","0","1","2","4","0","0","0","0","0","0","4","7","3","0","0","0","0","0","0","0","0","0","0","0","21","4","0","4","4","4","0","0","0","0","0","0","0","60" +"23363","-1","","","","","Titanic Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63037","315187","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","1148","0","0","10","0","0","10","0","254","0","0","0","1","1","1","0","0","0","0","0","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","5","4","0","15","15","0","0","0","0","0","0","0","0","60" +"23364","-1","","","","","zzDEPRECATEDHeart of the Sky","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23365","-1","","","","","Steel Rimmed Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23366","-1","","","","","zzDEPRECATEDPerfect Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23367","-1","","","","","Light Silk Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","49","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23368","-1","","","","","Soft Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","46","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23369","-1","","","","","Monster - Dagger, Claw of Chromaggus","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23370","-1","","","","","Ley-Keeper's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38","191","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","6","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23371","-1","","","","","Velania's Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","240","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","6","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23372","-1","","","","","Bloodhawk Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","361","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","7","-1","0","0","8","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23373","-1","","","","","Long Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58","290","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","7","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23374","-1","","","","","Warp Hound Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23375","-1","","","","","Black Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19","97","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","37","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23376","-1","","","","","Gatewatcher's Chain Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","58","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23377","-1","","","","","Guard's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","78","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23378","-1","","","","","Undamaged Warp Hound Corpse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23379","-1","","","","","Cinder Bracers","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23380","-1","","","","","Broken Power Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23381","-1","","","","","Chipped Power Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23382","-1","","","","","Monster - Sword, 1H Blood Elf A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23383","-1","","","","","Ripped Wyrm Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23384","-1","","","","","Dimly Glowing Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23385","-1","","","","","Dormant Mana Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23386","-1","","","","","Condensed Mana Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","17","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23387","-1","Perfect for use in fletching or the tickling of feet.","","","","Bonestripper Tail Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23388","-1","","","","","Tranquillien Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23389","-1","","","","","Empty Draenei Supply Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","60","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23390","-1","","","","","Exodar Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31","159","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23391","-1","","","","","Exodar Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","5","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23392","-1","","","","","Exodar Maul","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","128","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23393","-1","","","","","Exodar Shortsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","129","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","5","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23394","-1","","","","","Healing Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23395","-1","","","","","Farstrider's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73","366","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23396","-1","","","","","Slightly Used Ranger's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115","575","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","9","-1","0","0","6","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23397","-1","","","","","Satin Lined Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","115","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23398","-1","","","","","Worn Ranger's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86","434","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","9","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","0" +"23399","-1","","","","","Fallen Apprentice's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","503","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","1","0","0","0","0","0","0","0","0","0" +"23400","-1","","","","","Sylastor's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","2","0","0","0","0","0","0","0","0","0","0" +"23401","-1","","","","","Divining Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","802","3210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","1","1","0","0","0","0","0","0","0","0","0" +"23402","-1","","","","","Arcanist's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","577","2886","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","14","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23403","-1","","","","","Salvaged Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","347","1738","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","2","0","0","0","0","0","0","0","0","0" +"23404","-1","","","","","Padded Running Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","218","1090","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","2","0","0","0","0","0","0","0","0","0","0" +"23405","-1","","","","","Farstrider's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","194","973","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","1","0","0","0","0","0","0","0","0","0" +"23406","-1","","","","","Sentry Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","368","1844","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"23407","-1","","","","","Supple Cotton Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","246","1234","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","1","0","0","0","0","0","0","0","0","0" +"23408","-1","","","","","Farstrider's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","309","1548","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"23409","-1","","","","","Well Crafted Long Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1072","5362","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","20","-1","0","0","20","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"23410","-1","","","","","Well Crafted Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1435","7176","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","20","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","3","0","0","0","0","0","0","0","0","0","0" +"23411","-1","","","","","Well Crafted Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1800","9003","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","20","-1","0","0","26","0","0","0","0","39","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23412","-1","","","","","Troll Kickers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","429","2148","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"23413","-1","","","","","Troll Kickers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1431","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","1","0","0","0","0","0","0","0","0","0" +"23414","-1","","","","","Troll Kickers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","359","1795","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"23415","-1","","","","","Survival Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","726","3633","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","15","-1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23416","-1","","","","","Monster - Staff, Gul'dan","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23417","-1","The crystal shimmers with the power of a stored spell.","","","","Sanctified Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23418","-1","","","","","Test Sapper Charge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","205","202","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23420","-1","","","","","Engraved Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","859","4296","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","15","1","0","0","28","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","4","0","0","0","0","0","0","0","0","0","0" +"23421","-1","","","","","Engraved Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","690","3450","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","15","1","0","0","13","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23422","-1","","","","","Engraved Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","692","3463","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","15","1","0","0","8","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23423","-1","","","","","Mercenary Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","297","1485","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","10","1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23424","-1","","","","","Fel Iron Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23425","-1","","","","","Adamantite Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23426","-1","","","","","Khorium Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23427","-1","","","","","Eternium Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23428","-1","","","","","Monster - Axe, 1h Grom's","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23429","-1","","","","","Mercenary Clout","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","303","1519","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","10","1","0","0","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23430","-1","","","","","Mercenary Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1219","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","10","1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23431","-1","","","","","Mercenary Stiletto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1224","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","10","1","0","0","5","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23432","-1","","","","","Engraved Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","898","4491","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","15","1","0","0","23","0","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","2","3","0","0","0","0","0","0","0","0","0" +"23433","-1","","","","","Blood Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","288","1442","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","2","0","0","0","0","0","0","0","0" +"23434","-1","","","","","Robes of the Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","289","1447","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","16","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","2","2","2","0","0","0","0","0","0","0","0" +"23435","-1","","","","","Elderberry Pie","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23436","-1","","","","","Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23437","-1","","","","","Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23438","-1","","","","","Star of Elune","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23439","-1","","","","","Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23440","-1","","","","","Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23441","-1","","","","","Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23442","-1","A dark, inky substance swirls within the depths of the crystal and threatens to shatter it.","","","","Glowing Sanctified Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23443","-1","The crystal shimmers with the power of a stored spell.","","","","zzOLDTEST Sanctified Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23444","-1","","","","","Goldenmist Special Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","110","440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23445","-1","","","","","Fel Iron Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23446","-1","","","","","Adamantite Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23447","-1","","","","","Eternium Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23448","-1","","","","","Felsteel Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22500","90000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23449","-1","","","","","Khorium Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23450","-1","","","","","Monster - Dagger, Gul'dan","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23451","-1","","","","","Grand Marshal's Mageblade","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23452","-1","","","","","Grand Marshal's Tome of Power","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","17","16","0","0","0","0","0","0","0","0","60" +"23453","-1","","","","","Grand Marshal's Tome of Restoration","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","14","14","0","0","0","0","0","0","0","60" +"23454","-1","","","","","Grand Marshal's Warhammer","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","121","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23455","-1","","","","","Grand Marshal's Demolisher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","28","27","0","0","0","0","0","0","0","0","60" +"23456","-1","","","","","Grand Marshal's Swiftblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"23457","-1","","","","","High Warlord's Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","28","27","0","0","0","0","0","0","0","0","60" +"23458","-1","","","","","High Warlord's Spellblade","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23459","-1","","","","","High Warlord's Battle Mace","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","121","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23460","-1","","","","","Broken Blood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23461","-1","","","","","High Warlord's Quickblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"23462","-1","","","","","High Warlord's Tome of Destruction","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","17","16","0","0","0","0","0","0","0","0","60" +"23463","-1","","","","","High Warlord's Tome of Mending","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","14","14","0","0","0","0","0","0","0","60" +"23464","-1","","","","","High Warlord's Battle Mace","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","78","-1","0","0","121","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23465","-1","","","","","High Warlord's Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","78","-1","0","0","235","0","0","0","0","353","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","28","27","0","0","0","0","0","0","0","0","60" +"23466","-1","","","","","High Warlord's Spellblade","0.6","0","-18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","78","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","8","0","0","0","0","0","0","0","0","60" +"23467","-1","","","","","High Warlord's Quickblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","78","-1","0","0","85","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","7","0","0","0","0","0","0","0","0","0","60" +"23468","-1","","","","","High Warlord's Tome of Destruction","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","17","16","0","0","0","0","0","0","0","0","60" +"23469","-1","","","","","High Warlord's Tome of Mending","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","78","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","14","14","0","0","0","0","0","0","0","60" +"23470","-1","","","","","Rugged Trapper's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23471","-1","","","","","Rugged Trapper's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23472","-1","","","","","Rugged Trapper's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23473","-1","","","","","Recruit's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23474","-1","","","","","Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23475","-1","","","","","Recruit's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23476","-1","","","","","Squire's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23477","-1","","","","","Squire's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23478","-1","","","","","Recruit's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23479","-1","","","","","Recruit's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23480","-1","","","","","Lit Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23481","-1","","","","","Monster - Dagger, Epic Red Tassel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23482","-1","","","","","Fel Iron Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20269","101347","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","24","21","0","0","0","0","0","0","0","0","61" +"23483","-1","","","","","Haal'eshi Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23484","-1","","","","","Fel Iron Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20969","104846","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","90","32767","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","21","30","0","0","0","0","0","0","0","0","61" +"23485","-1","","","","","Empty Birdcage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23486","-1","","","","","Caged Female Kaliri Hatchling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23487","-1","","","","","Fel Iron Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33419","167096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","96","32767","0","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","4","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","30","23","0","0","0","0","0","0","0","0","62" +"23488","-1","","","","","Fel Iron Plate Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44805","224026","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","96","32767","0","0","0","0","0","0","0","0","0","0","0","0","779","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","34","33","0","0","0","0","0","0","0","0","62" +"23489","-1","","","","","Fel Iron Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47475","237376","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","102","32767","0","0","0","0","0","0","0","0","0","0","0","0","943","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","4","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","46","32","0","0","0","0","0","0","0","0","64" +"23490","-1","","","","","Fel Iron Chain Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39760","198800","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","99","32767","0","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","24","36","0","0","0","0","0","0","0","0","63" +"23491","-1","","","","","Fel Iron Chain Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18866","94332","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","17","24","0","0","0","0","0","0","0","0","61" +"23492","-1","Deceptively light and fruity with a magical aftertaste.","","","","Suntouched Special Reserve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23493","-1","","","","","Fel Iron Chain Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27683","138418","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","21","33","0","0","0","0","0","0","0","0","60" +"23494","-1","","","","","Fel Iron Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19615","98076","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","13","19","0","0","0","0","0","0","0","0","62" +"23495","-1","Succulent and tasty!","","","","Springpaw Appetizer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23497","-1","","","","","Fel Iron Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58164","290820","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","93","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","31","4","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","15","8","0","0","0","0","0","0","0","0","61" +"23498","-1","","","","","Fel Iron Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60063","300318","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","96","-1","0","0","76","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","12","0","0","0","0","0","0","0","0","0","62" +"23499","-1","","","","","Fel Iron Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79583","397916","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","99","-1","0","0","172","0","0","0","0","259","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","30","0","0","0","0","0","0","0","0","0","63" +"23500","-1","","","","","Saltheril's Haven Party Invitation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23501","31232","","","","","Bloodthistle Petal","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23502","-1","","","","","Adamantite Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82647","413237","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","102","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","47","0","0","0","0","0","0","0","0","0","64" +"23503","-1","","","","","Adamantite Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85143","425716","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","25","39","0","0","0","0","0","0","0","0","65" +"23504","-1","","","","","Adamantite Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68364","341822","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","105","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","15","10","0","0","0","0","0","0","0","0","65" +"23505","-1","","","","","Adamantite Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70380","351901","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","13","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","16","15","0","0","0","0","0","0","0","0","66" +"23506","-1","","","","","Adamantite Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28586","142931","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","1583","0","0","0","0","562","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","0","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","9","3","0","22","24","0","0","0","0","0","0","0","0","66" +"23507","-1","","","","","Adamantite Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58548","292740","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","1585","0","0","0","0","562","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","0","0","0","0","0","254","0","0","0","4","4","2","0","0","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","5","3","0","34","40","0","0","0","0","0","0","0","0","67" +"23508","-1","","","","","Adamantite Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28793","143968","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","1584","0","0","0","0","562","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","0","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","10","3","0","24","34","0","0","0","0","0","0","0","0","66" +"23509","-1","","","","","Enchanted Adamantite Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62984","314922","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2873","0","0","0","0","563","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","1154","0","0","0","0","0","40","0","254","0","0","0","4","4","3","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","27","0","0","0","0","0","0","0","0","0","70" +"23510","-1","","","","","Enchanted Adamantite Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31529","157648","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","112","0","0","0","0","563","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","644","0","0","0","0","0","30","0","254","0","0","0","4","3","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","70" +"23511","-1","","","","","Enchanted Adamantite Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47104","235520","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2876","0","0","0","0","563","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","30","0","254","0","0","0","2","4","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","0","0","0","0","0","0","0","0","0","70" +"23512","-1","","","","","Enchanted Adamantite Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64163","320818","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","113","0","0","0","0","563","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","40","0","254","0","0","0","2","4","4","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","27","0","0","0","0","0","0","0","0","0","70" +"23513","-1","","","","","Flamebane Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64391","321957","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","113","0","0","0","0","564","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","40","0","0","0","0","0","254","0","0","0","4","3","2","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","19","0","0","0","0","0","0","0","0","0","70" +"23514","-1","","","","","Flamebane Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32234","161172","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2870","0","0","0","0","564","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","722","0","30","0","0","0","0","0","254","0","0","0","4","3","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","0","0","0","0","0","0","0","0","0","70" +"23515","-1","","","","","Flamebane Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29607","148038","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2907","0","0","0","0","564","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","497","0","28","0","0","0","0","0","254","0","0","0","4","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","0","0","0","0","0","0","0","0","0","69" +"23516","-1","","","","","Flamebane Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44599","222998","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2873","0","0","0","0","564","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","930","0","40","0","0","0","0","0","254","0","0","0","4","2","3","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","0","0","0","0","0","0","0","0","0","70" +"23517","-1","","","","","Felsteel Gloves","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30311","151556","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2870","0","0","0","0","569","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","25","0","0","0","0","0","0","0","0","70" +"23518","-1","","","","","Felsteel Leggings","0","0","247","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60504","302520","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","569","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","1010","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","33","0","0","0","0","0","0","0","0","70" +"23519","-1","","","","","Felsteel Helm","0","0","338","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45822","229114","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2873","0","0","0","0","569","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","27","33","0","0","0","0","0","0","0","0","70" +"23520","-1","","","","","Ragesteel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30896","154481","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","35","27","0","0","0","0","0","0","0","0","70" +"23521","-1","","","","","Ragesteel Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46159","230797","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","45","37","0","0","0","0","0","0","0","0","70" +"23522","-1","","","","","Ragesteel Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61891","309456","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","50","29","0","0","0","0","0","0","0","0","70" +"23523","-1","","","","","Khorium Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61628","308141","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","565","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","1010","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","42","0","0","0","0","0","0","0","0","70" +"23524","-1","","","","","Khorium Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31103","155519","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","565","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","30","0","0","0","0","0","0","0","0","70" +"23525","-1","","","","","Khorium Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46837","234185","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","565","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","31","0","0","0","0","0","0","0","0","70" +"23526","-1","","","","","Swiftsteel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26912","134563","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","76","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","70" +"23527","-1","","","","","Earthpeace Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54020","270104","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","70" +"23528","-1","","","","","Fel Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23529","-1","","","","","Adamantite Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"23530","-1","","","","","Felsteel Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","12000","48000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23531","-1","","","","","Felfury Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31259","156296","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","0","0","0","2","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","27","0","0","0","0","0","0","0","0","70" +"23532","-1","","","","","Gauntlets of the Iron Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36818","184091","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","0","0","0","2","0","7","35","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","26","20","0","0","0","0","0","0","0","70" +"23533","-1","","","","","Steelgrip Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36955","184775","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","0","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","36","0","0","0","0","0","0","0","0","70" +"23534","-1","","","","","Storm Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47423","237118","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","0","0","0","2","0","5","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","22","21","0","0","0","0","0","0","0","70" +"23535","-1","","","","","Helm of the Stalwart Defender","0","0","286","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55431","277158","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2892","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","2","0","7","35","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","47","23","23","0","0","0","0","0","0","0","70" +"23536","-1","","","","","Oathkeeper's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55635","278177","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2908","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","3","4","2","0","0","0","0","2","0","5","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","40","15","0","0","0","0","0","0","0","70" +"23537","-1","","","","","Black Felsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37514","187570","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","22","15","0","0","0","0","0","0","0","70" +"23538","-1","","","","","Bracers of the Green Fortress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37654","188274","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","39","10","17","0","0","0","0","0","0","0","70" +"23539","-1","","","","","Blessed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37795","188977","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","12","14","0","0","0","0","0","0","0","70" +"23540","-1","","","","","Felsteel Longblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107762","538812","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","105","-1","0","0","128","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","13","4","0","26","15","0","0","0","0","0","0","0","0","70" +"23541","-1","","","","","Khorium Champion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135202","676014","1","1","1","64","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","105","-1","0","0","286","0","0","0","0","430","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","50","37","0","0","0","0","0","0","0","0","70" +"23542","-1","","","","","Fel Edged Battleaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108562","542810","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","2200","0","0","0","105","-1","0","0","128","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","1","1","0","0","2","0","32","31","0","0","0","0","0","0","0","0","0","0","0","0","13","4","0","21","14","0","0","0","0","0","0","0","0","70" +"23543","-1","","","","","Felsteel Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","136202","681010","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","105","-1","0","0","295","0","0","0","0","443","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","30","0","0","0","0","0","0","0","0","0","70" +"23544","-1","","","","","Runic Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109350","546753","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","105","-1","0","0","140","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","0","0","0","0","0","0","0","0","0","70" +"23545","-1","","","","","Power of the Scourge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23546","-1","","","","","Fel Hardened Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137687","688438","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","105","-1","0","0","286","0","0","0","0","430","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","4","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","50","21","0","0","0","0","0","0","0","70" +"23547","-1","","","","","Resilience of the Scourge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23548","-1","","","","","Might of the Scourge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23549","-1","","","","","Fortitude of the Scourge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23550","-1","","","","","Heavy Stone Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23551","-1","","","","","Azure Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23552","-1","","","","","Filled Azure Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23553","-1","","","","","Living Branch","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","176","881","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","10","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23554","-1","","","","","Eternium Runed Blade","0.6","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105375","526875","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","0","0","99","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","21","19","0","0","0","0","0","0","0","0","70" +"23555","-1","","","","","Dirge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105763","528819","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","81","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","20","0","0","0","0","0","0","0","0","0","70" +"23556","-1","","","","","Hand of Eternity","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106163","530818","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","105","-1","0","0","111","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","0","0","0","0","0","0","0","0","0","70" +"23557","-1","","","","","Larvae of the Great Worm","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63465","317327","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","81","32767","0","0","123","0","0","0","0","229","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","60" +"23558","-1","","","","","The Burrower's Shell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","7230","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23559","-1","","","","","Lesser Rune of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"23560","-1","","","","","Arena Team Charter (2v2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1","1","1","1","8192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23561","-1","","","","","Arena Team Charter (3v3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1","1","1","1","8192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23562","-1","","","","","Arena Team Charter (5v5)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1","1","1","1","8192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23563","-1","","","","","Nether Chain Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","68232","341164","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","107","-1","0","0","0","0","0","0","0","0","0","0","0","0","757","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","18","40","0","0","0","0","0","0","0","70" +"23564","-1","","","","","Twisting Nether Chain Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","80028","400144","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","893","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","22","48","0","0","0","0","0","0","0","70" +"23565","-1","","","","","Embrace of the Twisting Nether","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","91327","456637","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","27","56","0","0","0","0","0","0","0","70" +"23566","-1","","","","","Azure Phial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23567","-1","","","","","zzOLD[PH] Silithus PvP Dust [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23568","-1","Be careful! The vials inside are fragile.","","","","Bundle of Vials","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23569","-1","","","","","Letter from the Mag'har","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23570","-1","","","","","Jom Gabbar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","7230","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","60" +"23571","-1","","","","","Primal Might","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","16000","64000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23572","-1","","","","","Primal Nether","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","16000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23573","-1","","","","","Hardened Adamantite Bar","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23574","-1","Teaches you how to Transmute Primal Air, Water, Earth, Fire and Mana into Primal Might.","","","","Recipe: Transmute Primal Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23575","-1","","","","","Lesser Ward of Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"23576","-1","","","","","Greater Ward of Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"23577","-1","","","","","The Hungering Cold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91925","459627","1","1","1","524288","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","89","-1","0","0","76","0","0","0","0","143","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","14","0","0","0","0","0","0","0","0","60" +"23578","-1","Food for the Mind","","","","Diet McWeaksauce","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","49" +"23579","-1","The Original.","","","","The McWeaksauce Classic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"23580","-1","","","","","Avruu's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9418","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"23582","-1","","","","","Monster - Lady Blameux","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23583","-1","","","","","Monster - Sir Zeliek","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23584","-1","","","","","Loch Modan Lager","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23585","-1","For those warm days in the sun!","","","","Stouthammer Lite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23586","-1","","","","","Aerie Peak Pale Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23587","-1","","","","","Mirren's Drinking Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18522","92614","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","0","0","0","0","0","0","0","0","0","0" +"23588","-1","","","","","Kaliri Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23589","-1","","","","","Mag'har Ancestral Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23590","-1","Teaches you how to make an Adamantite Maul.","","","","Plans: Adamantite Maul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","164","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23591","-1","Teaches you how to make an Adamantite Cleaver.","","","","Plans: Adamantite Cleaver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23592","-1","Teaches you how to make an Adamantite Dagger.","","","","Plans: Adamantite Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","164","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23593","-1","Teaches you how to make an Adamantite Rapier.","","","","Plans: Adamantite Rapier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","164","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23594","-1","Teaches you how to make Adamantite Plate Bracers.","","","","Plans: Adamantite Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","164","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23595","-1","Teaches you how to make Adamantite Plate Gloves.","","","","Plans: Adamantite Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","164","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23596","-1","Teaches you how to make an Adamantite Breastplate.","","","","Plans: Adamantite Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23597","-1","Teaches you how to make an Enchanted Adamantite Belt.","","","","Plans: Enchanted Adamantite Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","355","164","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23598","-1","Teaches you how to make Enchanted Adamantite Boots.","","","","Plans: Enchanted Adamantite Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","355","164","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23599","-1","Teaches you how to make Enchanted Adamantite Breastplate.","","","","Plans: Enchanted Adamantite Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23600","-1","Teaches you how to make Enchanted Adamantite Leggings.","","","","Plans: Enchanted Adamantite Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23601","-1","Teaches you how to make Flamebane Bracers.","","","","Plans: Flamebane Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23602","-1","Teaches you how to make a Flamebane Helm.","","","","Plans: Flamebane Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","355","164","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23603","-1","Teaches you how to make Flamebane Gloves.","","","","Plans: Flamebane Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23604","-1","Teaches you how to make a Flamebane Breastplate.","","","","Plans: Flamebane Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23605","-1","Teaches you how to make Felsteel Gloves.","","","","Plans: Felsteel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23606","-1","Teaches you how to make Felsteel Leggings.","","","","Plans: Felsteel Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23607","-1","Teaches you how to make a Felsteel Helm.","","","","Plans: Felsteel Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23608","-1","Teaches you how to make a Khorium Belt.","","","","Plans: Khorium Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23609","-1","Teaches you how to make Khorium Pants.","","","","Plans: Khorium Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23610","-1","Teaches you how to make Khorium Boots.","","","","Plans: Khorium Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23611","-1","Teaches you how to make Ragesteel Gloves.","","","","Plans: Ragesteel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23612","-1","Teaches you how to make a Ragesteel Helm.","","","","Plans: Ragesteel Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23613","-1","Teaches you how to make a Ragesteel Breastplate.","","","","Plans: Ragesteel Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","164","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23614","-1","","","","","Red Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23615","-1","Teaches you how to make Swiftsteel Gloves.","","","","Plans: Swiftsteel Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","164","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23616","-1","This looks like it was once part of the Exodar.","","","","Crushed Crystal Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23617","-1","Teaches you how to make an Earthpeace Breastplate.","","","","Plans: Earthpeace Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","164","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23618","-1","Teaches you how to make an Adamantite Sharpening Stone.","","","","Plans: Adamantite Sharpening Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","350","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23619","-1","Teaches you how to make a Felsteel Shield Spike.","","","","Plans: Felsteel Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23620","-1","Teaches you how to make Felfury Gauntlets.","","","","Plans: Felfury Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23621","-1","Teaches you how to make Gauntlets of the Iron Tower.","","","","Plans: Gauntlets of the Iron Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23622","-1","Teaches you how to make Steelgrip Gauntlets.","","","","Plans: Steelgrip Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23623","-1","Teaches you how to make a Storm Helm.","","","","Plans: Storm Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23624","-1","Teaches you how to make a Helm of the Stalwart Defender.","","","","Plans: Helm of the Stalwart Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23625","-1","Teaches you how to make an Oathkeeper's Helm.","","","","Plans: Oathkeeper's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23626","-1","Teaches you how to make Black Felsteel Bracers.","","","","Plans: Black Felsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23627","-1","Teaches you how to make Bracers of the Green Fortress.","","","","Plans: Bracers of the Green Fortress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23628","-1","Teaches you how to make Blessed Bracers.","","","","Plans: Blessed Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23629","-1","Teaches you how to make a Felsteel Longblade.","","","","Plans: Felsteel Longblade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23630","-1","Teaches you how to make a Khorium Champion.","","","","Plans: Khorium Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23631","-1","Teaches you how to make a Fel Edged Battleaxe.","","","","Plans: Fel Edged Battleaxe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23632","-1","Teaches you how to make a Felsteel Reaper.","","","","Plans: Felsteel Reaper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23633","-1","Teaches you how to make a Runic Hammer.","","","","Plans: Runic Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23634","-1","Teaches you how to make a Fel Hardened Maul.","","","","Plans: Fel Hardened Maul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23635","-1","Teaches you how to make an Eternium Runed Blade.","","","","Plans: Eternium Runed Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23636","-1","Teaches you how to make Dirge.","","","","Plans: Dirge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23637","-1","Teaches you how to make Hand of Eternity.","","","","Plans: Hand of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23638","-1","Teaches you how to make a Lesser Ward of Shielding.","","","","Plans: Lesser Ward of Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","164","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23639","-1","Teaches you how to make a Greater Ward of Shielding.","","","","Plans: Greater Ward of Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23642","-1","","","","","Sha'naar Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23643","-1","This clump of earth, found at the core of a boulderkin, radiates a sense of purity absent from the rest of the elemental's body.","","","","Purifying Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23644","-1","A container full of the reagents needed to make a trial dose of Magistrix Elosai's tonic.","","","","Crate of Reagents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23645","-1","","","","","Seer's Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23646","-1","A plain, unmarked box containing valuable crystals from the Azurelode Mine.","","","","Shipment of Rare Crystals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23647","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55304","276523","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23648","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55514","277572","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","10","10","0","0","0","0","0","0","0","0" +"23649","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55718","278592","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","10","10","0","0","0","0","0","0","0","0" +"23650","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74571","372855","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23651","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74850","374253","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23652","-1","","","","","Deprecated: Keanna's Will","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75130","375652","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23653","-1","","","","","Deprecated: Keanna's Will","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75402","377012","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23654","-1","","","","","Draenei Fishing Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23655","-1","A wicked-looking restraint device of exquisite craftsmanship.","","","","Elven Manacles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23656","-1","","","","","Promotion Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23657","-1","The remaining cargo from the holds of the Dawn Runner.","","","","Dawn Runner Cargo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23658","-1","A brightly-colored silken bag. It looks to have spent some time as a chewtoy for some Dark Iron dwarf's pet.","","","","Advisor's Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23659","-1","","","","","Fel-Tainted Morsels","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23660","-1","A finely crafted elven sword, destined for the slag heap of a Dark Iron smithy.","","","","Advisor's Rapier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23661","-1","The holy symbol carried by Uther Lightbringer during his final days.","","","","Mark of the Lightbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23662","-1","","","","","Letter from Nazgrel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23663","-1","","","","","Girdle of Elemental Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25793","128966","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","21","0","0","0","0","0","0","0","0","60" +"23664","-1","","","","","Pauldrons of Elemental Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39007","195037","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","64","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","21","0","0","0","0","0","0","0","0","60" +"23665","-1","","","","","Leggings of Elemental Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51978","259893","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","64","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","27","0","0","0","0","0","0","0","0","60" +"23666","-1","","","","","Belt of the Grand Crusader","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30610","153053","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","18","18","0","0","0","0","0","0","0","60" +"23667","-1","","","","","Spaulders of the Grand Crusader","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45741","228708","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","816","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","17","18","0","0","0","0","0","0","0","60" +"23668","-1","","","","","Leggings of the Grand Crusader","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61330","306654","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","2","0","0","0","0","0","0","0","0","0","0","0","0","952","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","21","0","0","0","0","0","0","0","60" +"23669","-1","","","","","Ancestral Spirit Wolf Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23670","-1","A vial of water from the moonwell in Thalanaar.","","","","Thalanaar Moonwell Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23671","-1","The crystal vibrates with elemental earth energy.","","","","Earth Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23672","-1","","","","","Crate of Red Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23673","-1","","","","","Monster - Sword, Lightsaber Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23674","-1","This strange-looking key seems to fit into the ignition on the control panel near Wizlo Bearingshiner.","","","","Robotron Control Panel Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23675","-1","Control your very own top-of-the-line Robotron 3000!","","","","Robotron Control Unit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23676","-1","Dripping with tender juicy goodness.","","","","Moongraze Stag Tenderloin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23677","-1","Unusually rigid.","","","","Moongraze Buck Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23678","-1","Removed from the stomach of a nightstalker runt. It looks familiar.","","","","Faintly Glowing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9455","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"23679","-1","An unusual looking totem with inscriptions in a language unknown to trolls.","","","","Bloodscalp Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23680","-1","The totem's inscription identifies the bearer as an ally of the water elemental Naias.","","","","Gift of Naias","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23681","-1","The heart shimmers with the volatile energy of a powerful elemental.","","","","Heart of Naias","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23682","-1","","","","","Ritual Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23684","-1","","","","","Crystal Infused Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","129","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23685","-1","","","","","Root Trapper Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23686","-1","","","","","Lacy Handkerchief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23687","-1","","","","","Blacktalon's Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23688","-1","The ashes still glow with a heat that is nigh-unbearable.","","","","Hauteur's Ashes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23689","-1","Teaches you how to make a Crystal Infused Bandage.","","","","Manual: Crystal Infused Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","129","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23691","-1","The corrupting fel magics make it almost unbearable to hold.","","","","Corrupted Mark of the Lightbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23692","-1","","","","","Azure Snapdragon Bulb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23693","-1","","","","","Carinda's Scroll of Retribution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23694","-1","An unhatched gryphon egg rescued from the Witherbark trolls.","","","","Gryphon Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23695","-1","A hand-drawn map of the Shadra'Alor area, pinpointing the locations of stolen gryphon eggs.","","","","Featherbeard's Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2907","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23696","-1","","","","","[PH] Potion of Heightened Senses [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23697","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23698","-1","","","","","[PH] Nature Resist Potion [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23699","-1","","","","","[PH] Light Consumable [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23700","-1","","","","","[PH] Glorious Standard of the Alliance [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23701","-1","","","","","[PH] Victorious Standard of the Horde [DEP]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23702","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23703","-1","","","","","Taming Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23704","-1","","","","","Eversong Port","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23705","-1","","","","","Tabard of Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23706","-1","","","","","Arcane Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23707","-1","","","","","Spindleweb Silk Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23708","-1","","","","","Monster - Mace2H, WarA01/B02Silver (1H, Special)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23709","-1","","","","","Tabard of Frost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23710","-1","","","","","Upperdeck Tabard #3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23711","-1","","","","","Grimoire of Intercept (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","52" +"23712","-1","","","","","White Tiger Cub","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23713","-1","","","","","Hippogryph Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23714","-1","","","","","Perpetual Purple Firework","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23715","-1","100% Grade A Lung Juice - Freshly Squeezed","","","","Permanent Lung Juice Cocktail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23716","-1","","","","","Carved Ogre Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"23717","-1","","","","","Pitted Gold Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23718","-1","","","","","Permanent Ground Scorpok Assay","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23719","-1","Best Served Chilled","","","","Permanent Cerebral Cortex Compound","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23720","-1","","","","","Riding Turtle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","1" +"23721","-1","Strawberry Flavor","","","","Permanent Gizzard Gum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23722","-1","Robust Operational Imbue Derived From Snickerfang","","","","Permanent R.O.I.D.S.","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23723","-1","Warchief Kargath Bladefist's fearsome namesake.","","","","Warchief Kargath's Fist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23725","-1","","","","","QAEnchant Fiery Weapon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23726","-1","The smoldering ember emits faint purple sparks, but no heat. Its coolness belies the immense power held within.","","","","Fel Ember","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23727","-1","","","","","QAEnchant Gloves +5 Fishing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23728","-1","","","","","QAEnchant Gloves Riding Skill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23729","-1","","","","","Fel Horde Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23730","-1","","","","","Grimoire of Intercept (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"23731","-1","","","","","Grimoire of Intercept (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","69" +"23732","-1","","","","","Voidstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23733","-1","The torch burns with an almost unbearable heat.","","","","Ritual Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23734","-1","","","","","Grimoire of Cleave (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"23735","-1","The necklace's charm is shaped as a small cage and can be used to retrieve a Fel Ember from one of the braziers to either side of the Grand Warlock's throne.","","","","Grand Warlock's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23736","-1","","","","","Fel Iron Bomb","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","202","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23737","-1","","","","","Adamantite Grenade","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23738","-1","Property of Alliance Naval Command","","","","Nautical Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23739","-1","Property of Alliance Naval Command","","","","Nautical Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23740","-1","From the desk of Mogul Razdunk","","","","Top Secret Venture Company Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23741","-1","","","","","Monster - 1H Sword - Widow's Remore","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","18","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23742","-1","","","","","Fel Iron Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47216","236084","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","99","-1","0","0","99","0","0","0","0","185","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","14","0","0","0","0","0","0","0","0","0","63" +"23743","-1","","","","","Monster - Sword 1H - Widow's Remorse","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23744","-1","The smell of this watery remnant is truly offensive.","","","","Foul Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23745","-1","","","","","Grimoire of Cleave (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"23746","-1","","","","","Adamantite Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55725","278627","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","117","-1","0","0","126","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","12","0","0","0","0","0","0","0","0","0","69" +"23747","-1","","","","","Felsteel Boomstick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62413","312067","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","108","-1","0","0","104","0","0","0","0","194","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","13","12","0","0","0","0","0","0","0","0","70" +"23748","-1","","","","","Ornate Khorium Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66312","331560","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","115","-1","0","0","144","0","0","0","0","268","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","14","13","0","0","0","0","0","0","0","0","70" +"23749","-1","","","","","Empty Bota Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23750","-1","The purity of the water within makes the bag glow ever so slightly.","","","","Filled Bota Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23751","-1","","","","","Skin of Purest Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23752","-1","The water within radiates with the power of purity.","","","","Flask of Purest Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23753","-1","","","","","Drycap Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23754","-1","","","","","Bristlehide Clefthoof Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23755","-1","","","","","Grimoire of Cleave (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"23756","-1","","","","","Cookie's Jumbo Gumbo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23757","-1","","","","","Skittering Crawler Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23758","-1","","","","","Cogspinner Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29667","148336","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","106","-1","63","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23759","-1","","","","","Rune Covered Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9514","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","6" +"23760","-1","A shimmering silver vessel somehow untarnished by its long exposure to corrupt influences.","","","","Chalice of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23761","-1","","","","","Power Amplification Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20534","102671","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","89","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","21","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","31","46","0","0","0","0","0","0","0","0","0" +"23762","-1","","","","","Ultra-Spectropic Detection Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25324","126620","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","48","47","0","0","0","0","0","0","0","0","0" +"23763","-1","","","","","Hyper-Vision Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31774","158870","1","1","1","64","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","202","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","0","0","0","0","0","0","0","0","0","0" +"23764","-1","","","","","Adamantite Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23765","-1","","","","","Khorium Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"23766","-1","","","","","Stabilized Eternium Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"23767","-1","","","","","Crashin' Thrashin' Robot","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23768","-1","","","","","White Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23769","-1","","","","","Red Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23770","-1","","","","","Blue Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23771","-1","","","","","Green Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23772","-1","","","","","Fel Iron Shells","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","20","8000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","97","-1","0","0","26","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","57" +"23773","-1","","","","","Adamantite Shells","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","118","-1","0","0","43","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","62" +"23774","-1","","","","","Fel Iron Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23775","-1","Filled with small compartments that are perfect for storing engineering devices.","","","","Khorium Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23776","-1","This tortured lumber bears long, jagged scars from a Horde sawblade.","","","","Warsong Lumber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","15","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23777","-1","","","","","Diabolical Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9520","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"23778","-1","A sealed report written by Sentinel Luciel Starwhisper, intended for Sentinel Farsong.","","","","Sentinel Luciel's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23779","-1","","","","","Ancient Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23780","-1","The ink appears to be dried blood.","","","","Diabolical Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2909","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"23781","-1","","","","","Elemental Blasting Powder","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23782","-1","","","","","Fel Iron Casing","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","8000","32000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23783","-1","","","","","Handful of Fel Iron Bolts","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23784","-1","","","","","Adamantite Frame","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23785","-1","","","","","Hardened Adamantite Tube","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23786","-1","","","","","Khorium Power Core","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12000","48000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23787","-1","","","","","Felsteel Stabilizer","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12000","48000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23788","-1","","","","","Tree Seedlings","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23789","-1","","","","","Remains of Cowlen's Family","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23790","-1","","","","","Hollowed Out Tree","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23791","-1","","","","","Pile of Leaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23792","-1","","","","","Tree Disguise Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23793","-1","","","","","Heavy Knothide Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23794","-1","Blessed with the mojo of Zanza!","","","","Permanent Sheen of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23795","-1","Blessed with the mojo of Zanza!","","","","Permanent Spirit of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23796","-1","Blessed with the mojo of Zanza!","","","","Permanent Swiftness of Zanza","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","55" +"23797","-1","","","","","Diabolical Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9535","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"23798","-1","The ink appears to be dried blood.","","","","Diabolical Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2911","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","1","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","27" +"23799","-1","Teaches you how to make an Adamantite Rifle.","","","","Schematic: Adamantite Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23800","-1","Teaches you how to make a Felsteel Boomstick.","","","","Schematic: Felsteel Boomstick","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","202","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23801","-1","","","","","Bristlelimb Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23802","-1","Teaches you how to make an Ornate Khorium Rifle.","","","","Schematic: Ornate Khorium Rifle","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23803","-1","Teaches you how to make Cogspinner Goggles.","","","","Schematic: Cogspinner Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23804","-1","Teaches you how to make Power Amplification Goggles.","","","","Schematic: Power Amplification Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23805","-1","Teaches you how to make Ultra-Spectropic Detection Goggles.","","","","Schematic: Ultra-Spectropic Detection Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23806","-1","Teaches you how to make Hyper-Vision Goggles.","","","","Schematic: Hyper-Vision Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","202","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23807","-1","Teaches you how to make an Adamantite Scope.","","","","Schematic: Adamantite Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23808","-1","Teaches you how to make a Khorium Scope.","","","","Schematic: Khorium Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","202","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23809","-1","Teaches you how to make a Stabilized Eternium Scope.","","","","Schematic: Stabilized Eternium Scope","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23810","-1","Teaches you how to make a Crashin' Thrashin' Robot.","","","","Schematic: Crashin' Thrashin' Robot","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23811","-1","Teaches you how to make a White Smoke Flare.","","","","Schematic: White Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23812","-1","Teaches you how to make a Red Smoke Flare.","","","","Schematic: Red Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23813","-1","Teaches you how to make a Blue Smoke Flare.","","","","Schematic: Blue Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23814","-1","Teaches you how to make a Green Smoke Flare.","","","","Schematic: Green Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23815","-1","Teaches you how to make an Adamantite Shell Machine.","","","","Schematic: Adamantite Shell Machine","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23816","-1","Teaches you how to make a Fel Iron Toolbox.","","","","Schematic: Fel Iron Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23817","-1","Teaches you how to make a Khorium Toolbox.","","","","Schematic: Khorium Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23818","-1","The primer provides translations for the basic symbology of the furbolg language.","","","","Stillpine Furbolg Language Primer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23819","-1","","","","","Elemental Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23820","-1","The practical uses for this device are nearly limitless.","","","","Critter Enlarger","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23821","-1","","","","","Zapthrottle Mote Extractor","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","202","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23822","-1","They just don't make 'em like this anymore...","","","","Healing Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"23823","-1","They just don't make 'em like this anymore...","","","","Mana Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"23824","-1","","","","","Rocket Boots Xtreme","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32734","163670","1","1","1","67108928","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","202","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23825","-1","Protection not always valid. In RARE cases wearer may take additional damage.","","","","Nigh Invulnerability Belt","0","0","140","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17096","85481","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","0","0","0","0","0","0","0","0","0","0" +"23826","-1","","","","","The Bigger One","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23827","-1","","","","","Super Sapper Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23828","-1","","","","","Gnomish Power Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","30547","152738","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","0","0","0","0","0","0","0","0","0","0" +"23829","-1","","","","","Gnomish Battle Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","38321","191607","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","0","0","0","0","0","0","0","0","0","0" +"23830","-1","The equipment appears unharmed, if a bit slimy.","","","","Clopper's Equipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23831","-1","","","","","Goblin Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23832","-1","","","","","Gnomish Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23833","-1","A crudely knapped stone blade affixed to a long stick with sinew.","","","","Crude Murloc Knife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23834","-1","A roughly carved idol depicting no discernable figure.","","","","Crude Murloc Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23835","-1","","","","","Gnomish Poultryizer","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","202","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","45","0","0","0","0","0","0","0","0","0","0" +"23836","-1","","","","","Goblin Rocket Launcher","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","45","0","0","0","0","0","0","0","0","0","0" +"23837","-1","The parchment is yellowed, faded, and full of holes, but most of the writing is still visible.","","","","Weathered Treasure Map","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9550","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","13" +"23838","-1","","","","","Foreman's Enchanted Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","29454","147271","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","30","0","0","0","0","0","0","0","0","0" +"23839","-1","","","","","Foreman's Reinforced Helmet","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","44345","221729","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","30","0","0","0","0","0","0","0","0","0" +"23840","-1","","","","","Remote Mail Terminal","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23841","-1","","","","","Gnomish Flame Turret","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23843","-1","A swirl from Susurrus somehow retains its cohesion in your hand.","","","","Whorl of Air","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23844","-1","","","","","Nolkai's Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","666","2665","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","3","0","0","0","0","0","0","0","0","0","0" +"23845","-1","","","","","Ravager Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23846","-1","","","","","Nolkai's Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23847","-1","An inscription on the inside of the band reads: A token for my love to remember me by. May Elune watch over my dear Nolkai.","","","","Nolkai's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23848","-1","","","","","Nethergarde Bitter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"23849","-1","","","","","Stillpine Grain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23850","-1","A small patch of white fur belonging to Gurf of the Stillpine.","","","","Gurf's Dignity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9564","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","7" +"23851","-1","The cover of this journal is well worn and its pages yellowed, but two sets of text are still visible within.","","","","Battered Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23852","-1","Despite its long time buried in the earth, this bag seems nearly new.","","","","Nolkai's Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","875","3500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"23853","-1","","","","","Letter to ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23854","-1","","","","","Shadoweave Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23855","-1","","","","","Spellfire Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23856","-1","","","","","Monster - Mace2H, Horde Black Spiked Badass Fire","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23857","-1","The essence of this book is bound to Karazhan.","","","","Legacy of the Mountain King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23858","-1","One page remains after breaking the seal on 'Legacy of the Mountain King.'","","","","Singed Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2913","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23859","-1","Wicked looking characters accompany a series of humanoid figures as part of some kind of narrative.","","","","Nazzivus Monument Glyph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23860","-1","","","","","The Kurken's Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23861","-1","A simple portable drawing kit for making sketches or rubbings in the field.","","","","Drawing Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23862","-1","The essence of this book is bound to Karazhan.","","","","Redemption of the Fallen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23863","-1","The crystal pulsates with an angry red light. It's hard to believe such a thing was once a part of the Exodar.","","","","Corrupted Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23864","-1","The essence of this book is bound to Karazhan.","","","","Torment of the Worgen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23865","-1","The essence of this book is bound to Karazhan.","","","","Wrath of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23866","-1","One page remains after breaking the seal on 'Redemption of the Fallen.'","","","","Singed Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2914","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23867","-1","One page remains after breaking the seal on the 'Wrath of the Titans.'","","","","Singed Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3001","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23868","-1","One page remains after breaking the seal on 'Torment of the Worgen.'","","","","Singed Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2918","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23869","-1","Pieces of red crystal have become embedded within the bark and appear to be replacing the wood.","","","","Crystallized Bark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23870","-1","A piece of jewelry fashioned from a crystal shard and a rolled seaweed cord.","","","","Red Crystal Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9576","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","9" +"23871","-1","","","","","Potion of Water Breathing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"23872","-1","","","","","Blue Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"23873","-1","A small jeweled charm dangles from the end of a fine chain.","","","","Galaen's Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23874","-1","Teaches you how to make an Elemental Seaforium Charge.","","","","Schematic: Elemental Seaforium Charge","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23875","-1","","","","","Crystal Mining Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23876","-1","","","","","Crystal Mining Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23877","-1","","","","","Crystal Mining Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23878","-1","A chunk of crystal from Exodar crash debris.","","","","Impact Site Crystal Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23879","-1","A shard of crystal that once formed part of the Exodar, but has been modified by blood elves.","","","","Altered Crystal Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23880","-1","A sample chipped from the crystals found in satyr settlements.","","","","Axxarien Crystal Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23881","-1","","","","","Gargolmar's Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23882","-1","Teaches you how to make a Critter Enlarger.","","","","Schematic: Critter Enlarger","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23883","-1","Teaches you how to make a Healing Potion Injector.","","","","Schematic: Healing Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","202","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23884","-1","Teaches you how to make a Mana Potion Injector.","","","","Schematic: Mana Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","202","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23885","-1","Teaches you how to make a Remote Mail Terminal.","","","","Schematic: Remote Mail Terminal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23886","-1","","","","","Omor's Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23887","-1","Teaches you how to make Rocket Boots Xtreme.","","","","Schematic: Rocket Boots Xtreme","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","202","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"23888","-1","Teaches you how to make a Zapthrottle Mote Extractor.","","","","Schematic: Zapthrottle Mote Extractor","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6000","24000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","202","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23889","-1","","","","","Monster - Bow, Horde PVP","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"23890","-1","","","","","Ominous Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9587","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","59" +"23891","-1","","","","","Ominous Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2916","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","59" +"23892","-1","","","","","Ominous Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9588","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","59" +"23893","-1","","","","","Ominous Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2917","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","59" +"23894","-1","Not quite the same shade of red as you might expect. And it glows ever so slightly.","","","","Fel Orc Blood Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23895","-1","It looks like you caught something!","","","","Netted Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","131076","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23896","-1","","","","","Taming Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23897","-1","","","","","Taming Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23898","-1","","","","","Taming Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23899","-1","This document is held together by an unusual seal.","","","","Traitor's Communication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2919","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23900","-1","A piece of armor plating carved from the body of the felguard Tzerak.","","","","Tzerak's Armor Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9594","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","10" +"23901","-1","","","","","Nazan's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23902","-1","A list of items most urgently needed for the Blood Watch inn.","","","","Topher's List","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23903","-1","A box filled with a variety of building materials, first aid supplies, and other items for the Blood Watch inn.","","","","Nurguni's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23904","-1","","","","","Shattered Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9613","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"23905","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59295","296479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","0","0","0","0","0","0","0","0","0","0" +"23906","-1","","","","","Monster - Mace, Draenei A02 Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23907","-1","","","","","Monster - Shield, Draenei A02 Purple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23908","-1","","","","","Monster - Dagger, Blood Elf A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23909","-1","","","","","Blood Elf Bandit Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","5" +"23910","-1","","","","","Blood Elf Communication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9616","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"23911","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54873","274369","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","10","10","0","0","0","0","0","0","0","0" +"23912","-1","","","","","Deprecated: Keanna's Will","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73444","367223","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23914","-1","","","","","Deprecated: Keanna's Will","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73996","369982","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","65","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23916","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55916","279584","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","67","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","10","10","0","0","0","0","0","0","0","0" +"23917","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76831","384156","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23918","-1","","","","","Deprecated: Keanna's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77110","385554","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","10","10","0","0","0","0","0","0","0","0" +"23919","-1","The reports are all signed by Keltus Darkleaf.","","","","Stack of Reports","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23920","-1","The handkerchief is covered in blood and dirt, ruining its scent.","","","","Tattered Handkerchief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","3","15","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23921","-1","","","","","Bulging Sack of Silver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23922","-1","","","","","Rat Skeleton","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23923","-1","","","","","Amani Sacrificial Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","582","2914","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","17","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","12" +"23924","-1","","","","","Robes of Silvermoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17","87","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23925","-1","","","","","Ravager Cage Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23926","-1","","","","","Tome of Divinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2994","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23927","-1","A bright, juicy fruit favored by the elekk.","","","","Sand Pear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23928","-1","Sealed.","","","","The Exarch's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23929","-1","","","","","Letter from Lor'themar Theron","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2924","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23930","-1","","","","","Letter Sealed by Sylvanas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2923","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23931","-1","","","","","Azure Watch Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","16","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","0","0","0","0","0","0","0","0","0","0" +"23932","-1","A draenei crystal containing information on the eastern part of Bloodmyst Isle.","","","","Survey Data Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23933","-1","","","","","Medivh's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23934","-1","","","","","Medivh's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23937","-1","A letter written by Anchorite Paetheus.","","","","Letter of Introduction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23938","-1","","","","","Pristine Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23939","-1","","","","","Pristine Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23940","-1","","","","","Pristine Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1053","4212","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23941","-1","","","","","Crushed Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2","2","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23942","-1","","","","","Crushed Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","3","3","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23943","-1","","","","","Crushed Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","4","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23944","-1","","","","","Broken Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7","7","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23945","-1","","","","","Broken Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","8","8","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23946","-1","","","","","Broken Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","9","9","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23947","-1","","","","","Cracked Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","14","14","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23948","-1","","","","","Cracked Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","17","17","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23949","-1","","","","","Cracked Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22","22","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23950","-1","","","","","Damaged Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","28","28","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23951","-1","","","","","Damaged Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","34","34","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23952","-1","","","","","Damaged Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","40","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23953","-1","","","","","Worn Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","50","50","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23954","-1","","","","","Worn Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","59","59","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23955","-1","","","","","Worn Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","70","70","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23957","-1","","","","","Weathered Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","77","77","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23958","-1","","","","","Weathered Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","89","89","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23959","-1","","","","","Weathered Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","104","104","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23960","-1","","","","","Beaten Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","112","112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23961","-1","","","","","Beaten Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","132","132","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23962","-1","","","","","Beaten Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23965","-1","","","","","Chipped Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23966","-1","","","","","Flawed Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","217","217","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23967","-1","","","","","Flawed Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","244","244","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23968","-1","","","","","Flawed Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","275","275","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23969","-1","","","","","Imperfect Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","292","292","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23970","-1","","","","","Imperfect Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","328","328","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23971","-1","","","","","Imperfect Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","368","368","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23972","-1","","","","","Mangled Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","398","398","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23973","-1","","","","","Mangled Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","430","430","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23974","-1","","","","","Mangled Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","474","474","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23975","-1","","","","","Damaged Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","28","28","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23976","-1","","","","","Gnarled Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","705","2820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23977","-1","","","","","Gnarled Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","498","1992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23978","-1","","","","","Gnarled Ravager Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","605","2420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23979","-1","","","","","Chipped Ravager Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23980","-1","","","","","Chipped Ravager Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","758","3032","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23981","-1","A little rusty, but it appears to be in working order.","","","","Steam Pump Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23982","-1","Can only be used while on Azuremyst Isle.","","","","Kessel's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23983","-1","","","","","Shadowbat Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23984","-1","","","","","Irradiated Crystal Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23985","-1","","","","","Crystal of Vitality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23986","-1","","","","","Crystal of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23987","-1","","","","","Mutated Petal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","25","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23988","-1","","","","","Mutated Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23989","-1","","","","","Crystal of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23990","-1","","","","","Completed Star Chart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23992","-1","","","","","Torn Saurian Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","30","30","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23993","-1","","","","","Cracked Saurian Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","40","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"23994","-1","","","","","Thorny Constrictor Vine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23995","-1","Where are you, little murloc? This won't hurt a bit...","","","","Murloc Tagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23996","-1","","","","","Monster - Axe, Malchezzar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23997","-1","","","","","Head of Tel'athion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"23998","-1","","","","","Monster - Staff, Atiesh","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"23999","-1","","","","","Honor Hold Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24000","-1","Teaches you how to permanently enchant a bracer to increase the effect of healing spells by up to 30 and damage spells by up to 10.","","","","Formula: Enchant Bracer - Superior Healing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24001","-1","Teaches you how to make an Elixir of Major Agility.","","","","Recipe: Elixir of Major Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","330","171","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24002","-1","Teaches you how to make a Felsteel Shield Spike.","","","","Plans: Felsteel Shield Spike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","360","164","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24003","-1","Teaches you how to permanently enchant chest armor to increase all stats by 6.","","","","Formula: Enchant Chest - Exceptional Stats","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","345","333","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24004","-1","","","","","Thrallmar Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24005","-1","The stub is emblazoned with a series of letters and numbers corresponding to the tag worn by a lucky murloc.","","","","Murloc Tag Stub","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","6","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24006","-1","","","","","Grunt's Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"24007","-1","","","","","Footman's Waterskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","100","2000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"24008","-1","","","","","Dried Mushroom Rations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","225","4500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"24009","-1","","","","","Dried Fruit Rations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","225","4500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"24010","-1","","","","","Hellfire Prison Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24011","-1","","","","","Monster - Mace2H, Draenei A01 Magenta","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24012","-1","","","","","Monster - Mace2H, Draenei A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24013","-1","","","","","Monster - Mace2H, Draenei A01 Olive","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24014","-1","","","","","Monster - Mace2H, Draenei A01 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24015","-1","","","","","Monster - Mace2H, Draenei A01 Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24016","-1","","","","","Monster - Mace2H, Draenei A02 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24017","-1","","","","","Monster - Mace2H, Draenei A02 Magenta","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24018","-1","","","","","Monster - Mace2H, Draenei A02 Olive","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24019","-1","","","","","Monster - Mace2H, Draenei A02 Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24020","-1","","","","","Shadowrend Longblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63979","319899","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","85","-1","0","0","96","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","12","0","0","0","0","0","0","0","0","60" +"24021","-1","","","","","Light-Touched Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44959","224798","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","25","25","0","0","0","0","0","0","0","60" +"24022","-1","","","","","Scale Leggings of the Skirmisher","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38681","193409","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","24","15","0","0","0","0","0","0","0","60" +"24023","-1","","","","","Bracers of Finesse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16179","80897","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","16","0","0","0","0","0","0","0","0","60" +"24024","-1","","","","","Pauldrons of Arcane Rage","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19489","97449","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","18","12","0","0","0","0","0","0","0","60" +"24025","-1","","","","","Deathclaw's Paw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24026","-1","","","","","Elder Brown Bear Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24027","-1","Matches a Red Socket.","","","","Bold Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24028","-1","Matches a Red Socket.","","","","Delicate Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24029","-1","Matches a Red Socket.","","","","Teardrop Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24030","-1","Matches a Red Socket.","","","","Runed Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24031","-1","Matches a Red Socket.","","","","Bright Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24032","-1","Matches a Red Socket.","","","","Subtle Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24033","-1","Matches a Blue Socket.","","","","Solid Star of Elune","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24034","-1","","","","","Monster - Sword, 1H Blood Elf A03 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24035","-1","Matches a Blue Socket.","","","","Sparkling Star of Elune","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24036","-1","Matches a Red Socket.","","","","Flashing Living Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24037","-1","Matches a Blue Socket.","","","","Lustrous Star of Elune","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24038","-1","","","","","Monster - Shield, Blood Elf A01","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24039","-1","Matches a Blue Socket.","","","","Stormy Star of Elune","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24040","-1","","","","","Blood Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24041","-1","","","","","Aquatic Stinkhorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24042","-1","","","","","Ruinous Polyspore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24043","-1","","","","","Fel Cone Fungus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24044","-1","","","","","Hellreaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81199","405999","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","85","-1","0","0","187","0","0","0","0","281","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","30","27","25","0","0","0","0","0","0","0","60" +"24045","-1","","","","","Band of Renewal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13782","55130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","14","12","0","0","0","0","0","0","0","60" +"24046","-1","","","","","Kilt of Rolling Thunders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40337","201685","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","85","64","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","27","0","0","0","0","0","0","0","0","60" +"24047","-1","Matches a Yellow Socket.","","","","Brilliant Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24048","-1","Matches a Yellow Socket.","","","","Smooth Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24049","-1","","","","","Ysera's Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24050","-1","Matches a Yellow Socket.","","","","Gleaming Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24051","-1","Matches a Yellow Socket.","","","","Rigid Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24052","-1","Matches a Yellow Socket.","","","","Thick Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24053","-1","Matches a Yellow Socket.","","","","Mystic Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24054","-1","Matches a Red or Blue Socket.","","","","Sovereign Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24055","-1","Matches a Red or Blue Socket.","","","","Shifting Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24056","-1","Matches a Red or Blue Socket.","","","","Glowing Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24057","-1","Matches a Red or Blue Socket.","","","","Royal Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24058","-1","Matches a Red or Yellow Socket.","","","","Inscribed Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24059","-1","Matches a Red or Yellow Socket.","","","","Potent Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24060","-1","Matches a Red or Yellow Socket.","","","","Luminous Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24061","-1","Matches a Red or Yellow Socket.","","","","Glinting Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24062","-1","Matches a Yellow or Blue Socket.","","","","Enduring Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24063","-1","","","","","Shifting Sash of Midnight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16619","83096","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","19","0","0","0","0","0","0","0","0","60" +"24064","-1","","","","","Ironsole Clompers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34963","174819","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2861","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","19","19","0","0","0","0","0","0","0","60" +"24065","-1","Matches a Yellow or Blue Socket.","","","","Dazzling Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24066","-1","Matches a Blue or Yellow Socket.","","","","Radiant Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24067","-1","Matches a Yellow or Blue Socket.","","","","Jagged Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24068","-1","","","","","Arcane Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","100","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24069","-1","","","","","Crystalfire Staff","0.4","0","-11.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84950","424751","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","85","-1","0","0","115","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","34","16","0","0","0","0","0","0","0","60" +"24071","-1","Looks like this is for internal use only.","","","","Bland Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57107","285536","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","69","-1","0","0","82","0","0","0","0","82","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24072","-1","","","","","Sand Pear Pie","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","125","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"24073","-1","","","","","Garrote-String Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","16","14","0","0","0","0","0","0","0","0","60" +"24074","-1","","","","","Fel Iron Blood Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24491","97964","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24075","-1","","","","","Golden Draenite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24491","97964","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","16","0","0","0","0","0","0","0","0","0","61" +"24076","-1","","","","","Azure Moonstone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25650","102600","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24077","-1","","","","","Thick Adamantite Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27388","109552","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","42","0","0","0","0","0","0","0","0","0","66" +"24078","-1","","","","","Heavy Adamantite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27388","109552","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","83","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","42","0","0","0","0","0","0","0","0","0","66" +"24079","-1","","","","","Khorium Band of Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","69" +"24080","-1","","","","","Khorium Band of Frost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"24081","-1","The foul presence of the satyr has corrupted this wood.","","","","Satyrnaar Fel Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24082","-1","","","","","Khorium Inferno Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"24083","-1","","","","","Lifegiver Britches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26588","132940","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","25","12","0","0","0","0","0","0","0","60" +"24084","-1","","","","","Draenei Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24085","-1","","","","","Khorium Band of Leaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"24086","-1","","","","","Arcane Khorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"24087","-1","","","","","Heavy Felsteel Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37037","148148","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","21","13","0","0","0","0","0","0","0","68" +"24088","-1","","","","","Delicate Eternium Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","101","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","15","16","0","0","0","0","0","0","0","70" +"24089","-1","","","","","Blazing Eternium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","27","0","0","0","0","0","0","0","0","70" +"24090","-1","","","","","Bloodstained Ravager Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20458","102292","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","19","14","0","0","0","0","0","0","0","60" +"24091","-1","It has the power... to move you.","","","","Tenacious Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24092","120460","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2862","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","14","19","0","0","0","0","0","0","0","60" +"24092","-1","","","","","Pendant of Frozen Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","0","0","0","0","0","0","0","0","0","70" +"24093","-1","","","","","Pendant of Thawing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","0","0","0","0","0","0","0","0","0","70" +"24094","-1","","","","","Heart Fire Warhammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80302","401510","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","85","32767","0","0","121","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","4","7","0","0","0","0","0","0","0","0","0","0","0","17","3","0","19","19","23","0","0","0","0","0","0","0","60" +"24095","-1","","","","","Pendant of Withering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","0","0","0","0","0","0","0","0","0","70" +"24096","-1","","","","","Heartblood Prayer Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44030","176121","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","15","0","0","0","0","0","0","0","0","60" +"24097","-1","","","","","Pendant of Shadow's End","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","0","0","0","0","0","0","0","0","0","70" +"24098","-1","","","","","Pendant of the Null Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","0","0","0","0","0","0","0","0","0","70" +"24099","-1","","","","","The High Chief's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24100","-1","","","","","Warder's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","36","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","2","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24101","-1","Teaches Ferocious Bite (Rank 5).","","","","Book of Ferocious Bite V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24102","-1","Teaches Eviscerate (Rank 9).","","","","Manual of Eviscerate IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24103","-1","","","","","Moongraze Hide Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29","148","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","31","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24104","-1","","","","","Moongraze Fur Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33","166","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24105","-1","","","","","Roasted Moongraze Tenderloin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24106","-1","","","","","Thick Felsteel Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","36","23","0","0","0","0","0","0","0","0","70" +"24107","-1","","","","","Ravager Chitin Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145","729","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24108","-1","","","","","Ravager Hide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121","609","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24109","-1","","","","","Thick Ravager Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","244","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24110","-1","","","","","Living Ruby Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","24","0","0","0","0","0","0","0","0","70" +"24111","-1","","","","","Kurken Hide Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","126","632","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24112","-1","","","","","Kurkenstoks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76","380","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24113","-1","","","","","Cowlen's Bracers of Kinship","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46","230","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24114","-1","","","","","Braided Eternium Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","21","0","0","0","0","0","0","0","0","0","70" +"24115","-1","","","","","TestProspectIronOre","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","150","600","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","755","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24116","-1","","","","","Eye of the Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","21","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","26","16","0","0","0","0","0","0","0","0","70" +"24117","-1","","","","","Embrace of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","19","27","0","0","0","0","0","0","0","0","70" +"24118","-1","","","","","Signet of Argas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","3","0","0","0","0","0","0","0","0","0" +"24119","-1","","","","","Band of Argas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","4","0","0","0","0","0","0","0","0","0" +"24120","-1","","","","","Seal of Argas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","0","0","0","0","0","0","0","0","0","0" +"24121","-1","","","","","Chain of the Twilight Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","19","18","0","0","0","0","0","0","0","0","70" +"24122","-1","","","","","Coronet of Verdant Flame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30597","152988","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","36","0","0","0","0","0","0","0","0","70" +"24123","-1","","","","","Circlet of Arcane Might","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30712","153561","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","27","27","39","0","0","0","0","0","0","0","70" +"24124","-1","","","","","Figurine - Felsteel Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12000","48000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"24125","-1","","","","","Figurine - Dawnstone Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","70" +"24126","-1","","","","","Figurine - Living Ruby Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","23","33","0","0","0","0","0","0","0","0","70" +"24127","-1","","","","","Figurine - Talasite Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"24128","-1","","","","","Figurine - Nightseye Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"24129","-1","","","","","Salvaged Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","32","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24130","-1","","","","","Worn Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24131","-1","","","","","Slightly Rusted Bracers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24132","-1","","","","","A Letter from the Admiral","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9672","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"24133","-1","","","","","Weathered Mail Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14","72","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24134","-1","","","","","Weathered Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24135","-1","","","","","Weathered Cloth Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","48","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24136","-1","","","","","Farstrider's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","284","1421","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","12","4","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","0" +"24137","-1","","","","","PH Plate Ramparts Reward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34395","171975","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","86","-1","0","0","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","26","26","39","0","0","0","0","0","0","0","0" +"24138","-1","","","","","Silver Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","286","1431","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","12","4","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","0" +"24139","-1","","","","","Faint Arcane Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24140","-1","","","","","Blackened Urn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24141","-1","","","","","Battle Worn Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23","117","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24142","-1","","","","","Battle Worn Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","100","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24143","-1","","","","","Initiate's Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24144","-1","","","","","Battle Worn Handguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16","81","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24145","-1","","","","","Initiate's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24146","-1","","","","","Initiate's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","3","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24147","-1","Constellations, orbits and ecliptic are unmarked in this chart.","","","","Unprepared Star Chart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24148","-1","Constellations and orbits are unmarked in this chart.","","","","Partial Star Chart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24149","-1","Orbits are unmarked in this chart.","","","","Unfinished Star Chart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24150","-1","","","","","Mok'Nathal Wildercloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20984","104920","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","21","21","0","0","0","0","0","0","0","0","60" +"24151","-1","","","","","Mok'Nathal Clan Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75303","301215","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","180","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","14","0","0","0","0","0","0","0","0","60" +"24152","-1","","","","","Charred Bone Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24153","-1","","","","","Bloodcursed Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24154","-1","","","","","Witching Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13782","55130","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","14","0","0","0","0","0","0","0","0","60" +"24155","-1","","","","","Ursol's Claw","0.4","0","-11.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80578","402894","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","85","-1","0","0","165","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","28","27","27","0","0","0","0","0","0","0","60" +"24156","-1","Strange fluid fills the vessel, radiating a holy power.","","","","Filled Shimmering Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24157","-1","A delicate container made of an indistinguishable material.","","","","Shimmering Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24158","-1","Teaches you how to craft a Khorium Band of Shadows.","","","","Design: Khorium Band of Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24159","-1","Teaches you how to craft a Khorium Band of Frost.","","","","Design: Khorium Band of Frost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","755","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24160","-1","Teaches you how to craft a Khorium Inferno Band.","","","","Design: Khorium Inferno Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","755","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24161","-1","Teaches you how to craft a Khorium Band of Leaves.","","","","Design: Khorium Band of Leaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24162","-1","Teaches you how to craft an Arcane Khorium Band.","","","","Design: Arcane Khorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24163","-1","Teaches you how to craft a Heavy Felsteel Ring.","","","","Design: Heavy Felsteel Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","755","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24164","-1","Teaches you how to craft a Delicate Eternium Ring.","","","","Design: Delicate Eternium Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","755","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24165","-1","Teaches you how to craft a Blazing Eternium Band.","","","","Design: Blazing Eternium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24166","-1","Teaches you how to craft a Thick Felsteel Necklace.","","","","Design: Thick Felsteel Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","755","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24167","-1","Teaches you how to craft a Living Ruby Pendant.","","","","Design: Living Ruby Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","755","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24168","-1","Teaches you how to craft a Braided Eternium Chain.","","","","Design: Braided Eternium Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24169","-1","Teaches you how to craft an Eye of the Night.","","","","Design: Eye of the Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24170","-1","Teaches you how to craft an Embrace of the Dawn.","","","","Design: Embrace of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24171","-1","Teaches you how to craft a Chain of the Twilight Owl.","","","","Design: Chain of the Twilight Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24172","-1","Teaches you how to craft a Coronet of the Verdant Flame.","","","","Design: Coronet of Verdant Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24173","-1","Teaches you how to craft a Circlet of Arcane Might.","","","","Design: Circlet of Arcane Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24174","-1","Teaches you how to craft a Pendant of Frozen Flame.","","","","Design: Pendant of Frozen Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24175","-1","Teaches you how to craft a Pendant of Thawing.","","","","Design: Pendant of Thawing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24176","-1","Teaches you how to craft a Pendant of Withering.","","","","Design: Pendant of Withering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24177","-1","Teaches you how to craft a Pendant of Shadow's End.","","","","Design: Pendant of Shadow's End","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24178","-1","Teaches you how to craft a Pendant of the Null Rune.","","","","Design: Pendant of the Null Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24179","-1","Teaches you how to craft a Felsteel Boar.","","","","Design: Felsteel Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24180","-1","Teaches you how to craft a Dawnstone Crab.","","","","Design: Dawnstone Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24181","-1","Teaches you how to craft a Living Ruby Serpent.","","","","Design: Living Ruby Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24182","-1","Teaches you how to craft a Talasite Owl.","","","","Design: Talasite Owl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24183","-1","Teaches you how to craft a Nightseye Panther.","","","","Design: Nightseye Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24184","-1","Strange fluid fills the vessel, radiating a holy power.","","","","Filled Shimmering Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24185","-1","This bone has been used in a ritual.","","","","Dragon Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24186","-1","","","","","Copper Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24187","-1","","","","","Shiny Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24188","-1","","","","","Tin Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24189","-1","","","","","Crystalline Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24190","-1","","","","","Iron Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","1600","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24191","-1","","","","","Small Gem Shards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24192","-1","Teaches you how to cut a Bright Living Ruby.","","","","Design: Bright Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24193","-1","Teaches you how to cut a Bold Living Ruby.","","","","Design: Bold Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24194","-1","Teaches you how to cut a Delicate Living Ruby.","","","","Design: Delicate Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24195","-1","Teaches you how to cut a Teardrop Living Ruby.","","","","Design: Teardrop Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24196","-1","Teaches you how to cut a Runed Living Ruby.","","","","Design: Runed Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24197","-1","Teaches you how to cut a Subtle Living Ruby.","","","","Design: Subtle Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24198","-1","Teaches you how to cut a Flashing Living Ruby.","","","","Design: Flashing Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24199","-1","Teaches you how to cut a Solid Star of Elune.","","","","Design: Solid Star of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24200","-1","Teaches you how to cut a Sparkling Star of Elune.","","","","Design: Sparkling Star of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24201","-1","Teaches you how to cut a Lustrous Star of Elune.","","","","Design: Lustrous Star of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24202","-1","Teaches you how to cut a Stormy Star of Elune.","","","","Design: Stormy Star of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24203","-1","Teaches you how to cut a Brilliant Dawnstone.","","","","Design: Brilliant Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24204","-1","Teaches you how to cut a Smooth Dawnstone.","","","","Design: Smooth Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24205","-1","Teaches you how to cut a Rigid Dawnstone.","","","","Design: Rigid Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24206","-1","Teaches you how to cut a Gleaming Dawnstone.","","","","Design: Gleaming Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24207","-1","Teaches you how to cut a Thick Dawnstone.","","","","Design: Thick Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24208","-1","Teaches you how to cut a Mystic Dawnstone.","","","","Design: Mystic Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24209","-1","Teaches you how to cut a Sovereign Nightseye.","","","","Design: Sovereign Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24210","-1","Teaches you how to cut a Shifting Nightseye.","","","","Design: Shifting Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24211","-1","Teaches you how to cut a Glowing Nightseye.","","","","Design: Glowing Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24212","-1","Teaches you how to cut a Royal Nightseye.","","","","Design: Royal Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24213","-1","Teaches you how to cut an Inscribed Noble Topaz.","","","","Design: Inscribed Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24214","-1","Teaches you how to cut a Potent Noble Topaz.","","","","Design: Potent Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24215","-1","Teaches you how to cut a Luminous Noble Topaz.","","","","Design: Luminous Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24216","-1","Teaches you how to cut a Glinting Noble Topaz.","","","","Design: Glinting Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24217","-1","Teaches you how to cut an Enduring Talasite.","","","","Design: Enduring Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24218","-1","Teaches you how to cut a Radiant Talasite.","","","","Design: Radiant Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24219","-1","Teaches you how to cut a Dazzling Talasite.","","","","Design: Dazzling Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24220","-1","Teaches you how to cut a Jagged Talasite.","","","","Design: Jagged Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24221","-1","","","","","Bundle of Dragon Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24222","-1","","","","","The Shadowfoot Stabber","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44210","221054","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","57","-1","0","0","47","0","0","0","0","88","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","8","0","0","0","0","0","0","0","0","0","52" +"24223","-1","Knight-Lord Bloodvalor's handwritten instructions to candidates for the Blood Knight rank of Adept.","","","","Bloodvalor's Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2930","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24224","-1","A crate filled with dark metal ingots radiating a sense of wrongness.","","","","Crate of Bloodforged Ingots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24225","-1","A stoppered flask of potent demon blood, perfect for quenching a newly-forged Blood Knight weapon.","","","","Blood of the Wrathful","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24226","-1","A small, black and red enameled metal pendant in the shape of a falcon.","","","","Blood Knight Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24227","-1","","","","","Soft Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6","30","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24228","-1","This letter bears the seal of the blood elves.","","","","The Sun King's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9695","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"24229","-1","This letter bears the seal of the blood elves.","","","","UNUSED Translated Sun King's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2928","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","14" +"24230","-1","Bears the seal of the Prophet.","","","","Velen's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24231","-1","","","","","Coarse Snuff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","52","211","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24232","-1","","","","","Shabby Knot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","225","900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24233","-1","These mushroom remains are desiccated and have likely been here a while.","","","","Discarded Nutriment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24234","-1","","","","","Mithril Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24235","-1","","","","","Thorium Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","800","3200","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24236","-1","","","","","Medical Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24237","-1","","","","","Galaen's Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2937","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","35","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24238","-1","Looks like the ones that the boglords have discarded, except fresher.","","","","Mushroom Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24239","-1","","","","","Crate of Materials","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24240","-1","These are heavy! Ogre-sized, in fact.","","","","Box of Mushrooms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24241","-1","","","","","Green Chain Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","39","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24242","-1","","","","","Fel Iron Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24243","-1","","","","","Adamantite Powder","0","0","0","1536","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2250","9000","1","1","1","262144","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24244","-1","","","","","Monster - Gun, Draenei A01 Orange","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"24245","-1","","","","","Glowcap","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24246","-1","It certainly has a 'passionate' fragrance.","","","","Sanguine Hibiscus","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","400","1600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24247","-1","Smells like it's a thousand years old, too.","","","","Underspore Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24248","-1","Ok, this is disgusting!","","","","Brain of the Black Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24249","-1","","","","","Unyielding Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16563","82815","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2909","0","0","0","0","570","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","2","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","39","12","0","0","0","0","0","0","0","0","69" +"24250","-1","","","","","Bracers of Havok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16626","83133","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2884","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","0","0","0","0","0","0","0","0","0","69" +"24251","-1","","","","","Blackstrike Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16690","83451","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","26","0","0","0","0","0","0","0","0","0","69" +"24252","-1","","","","","Cloak of the Black Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25128","125640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","0","0","0","0","0","0","0","0","0","69" +"24253","-1","","","","","Cloak of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25223","126117","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","12","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","23","36","0","0","0","0","0","0","0","0","69" +"24254","-1","","","","","White Remedy Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26001","130008","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","69" +"24255","-1","","","","","Unyielding Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21880","109404","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","81","0","0","0","0","570","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","6","0","0","2","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","20","0","0","0","0","0","0","0","0","70" +"24256","-1","","","","","Girdle of Ruination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21960","109804","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2883","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","13","20","0","0","0","0","0","0","0","70" +"24257","-1","","","","","Black Belt of Knowledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22040","110204","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","21","0","0","0","0","0","0","0","0","70" +"24258","-1","","","","","Resolute Cape","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33181","165905","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","21","0","0","0","0","0","0","0","0","70" +"24259","-1","","","","","Vengeance Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33297","166489","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","2941","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","23","0","0","0","0","0","0","0","0","0","70" +"24260","-1","","","","","Manaweave Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33417","167088","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","21","0","0","0","0","0","0","0","0","70" +"24261","-1","","","","","Whitemend Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44716","223584","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","94","0","0","0","0","571","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","0","0","0","0","0","0","0","0","70" +"24262","-1","","","","","Spellstrike Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44876","224383","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2882","0","0","0","0","559","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","7","0","0","2","0","21","18","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","26","22","12","8","0","0","0","0","0","0","70" +"24263","-1","","","","","Battlecast Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45032","225161","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2875","0","0","0","0","572","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","27","0","0","0","0","0","0","0","0","70" +"24264","-1","","","","","Whitemend Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33894","169470","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","94","0","0","0","0","571","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","15","15","0","0","0","0","0","0","0","0","70" +"24265","-1","","","","","Old Spellstrike Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34014","170070","1","1","1","16","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","70" +"24266","-1","","","","","Spellstrike Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30889","154448","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2868","0","0","0","0","559","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","7","0","0","2","0","21","18","5","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","16","12","16","0","0","0","0","0","0","70" +"24267","-1","","","","","Battlecast Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31006","155032","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2875","0","0","0","0","572","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","28","0","0","0","0","0","0","0","0","70" +"24268","-1","","","","","Netherweave Net","0.25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24269","-1","","","","","Heavy Netherweave Net","0.25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","197","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24270","-1","","","","","Bag of Jewels","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"24271","-1","","","","","Spellcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24272","-1","","","","","Shadowcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24273","-1","","","","","Mystic Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24274","-1","","","","","Runic Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","200000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"24275","-1","","","","","Silver Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24276","-1","","","","","Golden Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","200000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"24277","-1","A list of items and resources required by Magister Astalor Bloodmourn","","","","Items for Magister Astalor Bloodsworn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2941","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24278","-1","Property of the Hand of Argus","","","","Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24279","-1","This one has the eerie blue glow that permeates everything in the thicket.","","","","Vicious Teromoth Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24280","-1","","","","","Naga Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24281","-1","Looks like the carving was never finished...","","","","Carved Ivory Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","302","1210","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24282","-1","All the pages are blank.","","","","Rogue's Diary","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4562","18250","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24283","-1","The name 'Lasitor' is etched into the barrel.","","","","An Antique Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38086","152345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24284","-1","A vial containing a sample of holy water from the Scarlet Crusade's abbey at Tyr's Hand.","","","","Tyr's Hand Holy Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24285","-1","This dark powder seems to readily absorb light.","","","","Crepuscular Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","375000","1500000","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24286","-1","A brightly colored powder used to promote reactions between magical substances.","","","","Arcane Catalyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125000","500000","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24287","-1","A shimmering, inky black liquid capable of extinguishing an eternal flame.","","","","Extinguishing Mixture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24288","-1","","","","","zzOLDGreater Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24289","-1","","","","","Chrono-beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","2366","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24290","-1","","","","","Mature Spore Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24291","-1","","","","","Bog Lord Tendril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24292","-1","Teaches you how to create Mystic Spellthread.","","","","Pattern: Mystic Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","335","197","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24293","-1","Teaches you how to create Silver Spellthread.","","","","Pattern: Silver Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","335","197","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24294","-1","Teaches you how to create Runic Spellthread.","","","","Pattern: Runic Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90000","360000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24295","-1","Teaches you how to create Golden Spellthread.","","","","Pattern: Golden Spellthread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90000","360000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24296","-1","Teaches you how to sew Unyielding Bracers.","","","","Pattern: Unyielding Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24297","-1","Teaches you how to sew Bracers of Havok.","","","","Pattern: Bracers of Havok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24298","-1","Teaches you how to sew Blackstrike Bracers.","","","","Pattern: Blackstrike Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24299","-1","Teaches you how to sew a Cloak of the Black Void.","","","","Pattern: Cloak of the Black Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24300","-1","Teaches you how to sew a Cloak of Eternity.","","","","Pattern: Cloak of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24301","-1","Teaches you how to sew a White Remedy Cape.","","","","Pattern: White Remedy Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"24302","-1","Teaches you how to sew an Unyielding Girdle.","","","","Pattern: Unyielding Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24303","-1","Teaches you how to sew a Girdle of Ruination.","","","","Pattern: Girdle of Ruination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24304","-1","Teaches you how to sew a Black Belt of Knowledge.","","","","Pattern: Black Belt of Knowledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24305","-1","Teaches you how to sew a Resolute Cape.","","","","Pattern: Resolute Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24306","-1","Teaches you how to sew a Vengeance Wrap.","","","","Pattern: Vengeance Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24307","-1","Teaches you how to sew a Manaweave Cloak.","","","","Pattern: Manaweave Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24308","-1","Teaches you how to sew Whitemend Pants.","","","","Pattern: Whitemend Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24309","-1","Teaches you how to sew Spellstrike Pants.","","","","Pattern: Spellstrike Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24310","-1","Teaches you how to sew Battlecast Pants.","","","","Pattern: Battlecast Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24311","-1","Teaches you how to sew a Whitemend Hood.","","","","Pattern: Whitemend Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24312","-1","Teaches you how to sew a Spellstrike Hood.","","","","Pattern: Spellstrike Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24313","-1","Teaches you how to sew a Battlecast Hood.","","","","Pattern: Battlecast Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"24314","-1","Teaches you how to sew a Bag of Jewels.","","","","Pattern: Bag of Jewels","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","340","197","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24315","-1","Teaches you how to sew a Heavy Netherweave Net.","","","","Pattern: Heavy Netherweave Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","325","197","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24316","-1","Teaches you how to sew Spellcloth.","","","","Pattern: Spellcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24317","-1","It's glowing red.","","","","Bloodmyst Water Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24318","-1","","","","","Water Sample Flask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24319","-1","","","","","Monster - Bow, Blood Elf B01 Blue","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"24320","-1","","","","","Monster - Axe, 1H Blood Elf A02 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24321","-1","","","","","Monster - Staff, Blood Elf A02 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24322","-1","","","","","Monster - Shield, Blood Elf A02","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24323","-1","This letter bears the seal of the blood elves.","","","","Translated Sunhawk Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2943","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24324","-1","","","","","Monster - Dagger, Blood Elf A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24325","-1","","","","","Monster - Sword2H, Blood Elf B02 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24326","-1","","","","","Monster - Bow, Blood Elf B01 Yellow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"24327","-1","","","","","Monster - Axe, 1H Blood Elf A02 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24328","-1","","","","","Monster - Shield, Blood Elf A03","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24329","-1","","","","","Test Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24330","-1","","","","","Drain Schematics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9731","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","59" +"24331","-1","","","","","Monster - Shield, Draenei A02 Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24332","-1","","","","","Monster - Mace, Draenei A02 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24333","-1","","","","","Monster - Mace, Draenei A01 Magenta","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24334","-1","","","","","Wheel of the Lost Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","798","3993","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","395","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","3","0","0","0","0","0","0","0","0","0","0" +"24335","-1","","","","","Orb of Returning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24336","-1","","","","","Fireproof Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24337","-1","","","","","Deactivating Jewel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24338","-1","","","","","Hellfire Spineleaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"24339","-1","","","","","Stung","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","299","1498","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","11","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24340","-1","","","","","Vandril's Hand Me Down Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120","601","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24341","-1","","","","","Fortified Oven Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90","453","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24342","-1","","","","","Stillpine Shocker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","355","1776","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","13","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"24343","-1","","","","","The Thumper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","475","2377","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","13","-1","0","0","13","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","1","0","0","0","0","0","0","0","0","0","0" +"24344","-1","","","","","Tabard of the Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24345","-1","Teaches Cower (Rank 4).","","","","Book of Cower IV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"24346","-1","","","","","Robe of the Dragon Slayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","421","2106","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","3","3","2","0","0","0","0","0","0","0","0" +"24347","-1","","","","","Vest of the Dragon Slayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","528","2643","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","3","2","0","0","0","0","0","0","0","0" +"24348","-1","","","","","Tunic of the Dragon Slayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","636","3183","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","3","2","0","0","0","0","0","0","0","0" +"24349","-1","","","","","Signet Ring of the Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","1650","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","0","0","0","0","0","0","0","0","0","0" +"24350","-1","","","","","Signet Ring of the Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","412","1650","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","2","0","0","0","0","0","0","0","0","0" +"24351","-1","","","","","Mace of the Hand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1456","7284","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","20","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","3","0","0","0","0","0","0","0","0","0" +"24352","-1","","","","","Blade of the Hand","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1827","9138","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","20","-1","0","0","27","0","0","0","0","41","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","6","0","0","0","0","0","0","0","0","0","0" +"24353","-1","","","","","Crossbow of the Hand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1100","5502","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","20","-1","0","0","29","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","0" +"24354","-1","","","","","Staff of the Hand","0.1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1840","9203","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","20","-1","0","0","27","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","3","4","0","0","0","0","0","0","0","0","0" +"24355","-1","","","","","Ironvine Seeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24356","-1","","","","","Wastewalker Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","74307","371539","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","91","-1","0","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","12","0","0","0","0","0","0","0","0","62" +"24357","-1","","","","","Vest of Living Lightning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44738","223693","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","12","15","0","0","0","0","0","0","0","0","62" +"24358","-1","","","","","QATest +1000 Spell Dmg Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","1" +"24359","-1","These leggings will guide you to the princely reign.","","","","Princely Reign Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27182","135911","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","28","18","12","0","0","0","0","0","0","62" +"24360","-1","","","","","Tracker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20465","102329","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","21","14","0","0","0","0","0","0","0","62" +"24361","-1","","","","","Spellfire Longsword","0.6","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68476","342380","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","91","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","14","10","0","0","0","0","0","0","0","62" +"24362","-1","","","","","Spore-Soaked Vaneer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20621","103109","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","15","11","0","0","0","0","0","0","0","62" +"24363","-1","","","","","Unscarred Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48302","241512","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","21","23","0","0","0","0","0","0","0","62" +"24364","-1","","","","","Azureplate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48487","242436","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","815","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","27","26","0","0","0","0","0","0","0","62" +"24365","-1","","","","","Deft Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17381","86905","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","12","0","0","0","0","0","0","0","0","62" +"24366","-1","","","","","Scorpid-Sting Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31544","157720","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","12","0","0","0","0","0","0","0","0","62" +"24367","-1","","","","","Orders from Lady Vashj","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9764","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"24368","-1","","","","","Coilfang Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24369","-1","","","","","Coilfang Spellbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24372","-1","A thin, nearly transparent insect wing.","","","","Diaphanous Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24373","-1","Stained and streaked, this document contains the scout's observations about the Dead Mire.","","","","Scout Jyoba's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24374","-1","Finally, a non-fungal meal alternative...","","","","Eel Filet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24375","-1","A tough scale from the belly of a hydra.","","","","Thick Hydra Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24376","-1","","","","","Runed Fungalcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1807","7230","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","30","0","0","0","0","0","0","0","0","0","62" +"24378","-1","","","","","Coilfang Hammer of Renewal","0.6","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74821","374105","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","91","-1","0","0","93","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","10","13","12","0","0","0","0","0","0","0","62" +"24379","-1","","","","","Bogstrok Scale Cloak","0","0","208","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20384","101922","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","22","16","0","0","0","0","0","0","0","0","62" +"24380","-1","","","","","Calming Spore Reed","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51153","255769","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","91","-1","0","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","9","0","0","0","0","0","0","0","0","62" +"24381","-1","","","","","Coilfang Needler","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51351","256758","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","91","-1","0","0","124","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","12","0","0","0","0","0","0","0","0","0","62" +"24382","-1","","","","","Zurai's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24383","-1","","","","","Fulgor Spore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24384","-1","","","","","Diamond-Core Sledgemace","0.6","0","-12.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69061","345306","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","88","-1","0","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","14","0","0","0","0","0","0","0","0","61" +"24385","-1","","","","","Pendant of Battle-Lust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","78585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","19","14","19","0","0","0","0","0","0","0","61" +"24386","-1","","","","","Libram of Saints Departed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20872","104360","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","61" +"24387","-1","","","","","Ironblade Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24577","122887","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2870","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","564","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","20","14","19","6","0","0","0","0","0","0","61" +"24388","-1","","","","","Girdle of the Gale Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21023","105118","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","13","19","0","0","0","0","0","0","0","0","61" +"24389","-1","","","","","Legion Blunderbuss","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52751","263755","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","88","-1","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","9","0","0","0","0","0","0","0","0","0","61" +"24390","-1","","","","","Auslese's Light Channeler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20737","82948","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","61" +"24391","-1","","","","","Kilt of the Night Strider","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35419","177099","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","21","26","8","0","0","0","0","0","0","0","61" +"24392","-1","","","","","Arcing Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14219","71096","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","15","10","0","0","0","0","0","0","0","61" +"24393","-1","","","","","Bloody Surgeon's Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14270","71352","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","20","12","0","0","0","0","0","0","0","61" +"24394","-1","","","","","Warsong Howling Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89510","447550","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","88","-1","0","0","174","0","0","0","0","262","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","37","0","0","0","0","0","0","0","0","0","61" +"24395","-1","","","","","Mindfire Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14371","71857","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2880","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","10","14","8","11","0","0","0","0","0","0","61" +"24396","-1","","","","","Vest of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36056","180283","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","27","18","11","0","0","0","0","0","0","0","61" +"24397","-1","","","","","Raiments of Divine Authority","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28947","144738","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","16","21","18","0","0","0","0","0","0","0","61" +"24398","-1","","","","","Mantle of the Dusk-Dweller","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27234","136172","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","21","13","0","0","0","0","0","0","0","61" +"24399","-1","This letter bears the seal of the blood elves.","","","","Sunhawk Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24400","-1","A sample of slick, sickly soil from Zangarmarsh's Dead Mire region.","","","","Dead Mire Soil Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24401","-1","","","","","Unidentified Plant Parts","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24402","-1","","","","","Package of Identified Plants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24403","-1","","","","","Common Fern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24404","-1","","","","","Ruined Specimen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24405","-1","This plant was probably carried through the Dark Portal by someone from Azeroth.","","","","Common Azerothian Species","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24406","-1","","","","","Common Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24407","-1","This plant is not listed in Lauranna's manual.","","","","Uncatalogued Species","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9875","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"24408","-1","","","","","Edible Stalks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24409","-1","","","","","Monster - Axe, 2H Grom's","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24410","-1","","","","","Needle Shrike DEPRECATED","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","1","200","1","1","0","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","16","17","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","4","10","10","0","0","0","0","0","0","0","0","63" +"24411","-1","","","","","Ikeyen's Belongings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24412","-1","","","","","Warden's Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","942","0","0","115","-1","0","0","37","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","62" +"24413","-1","","","","","Totem of the Thunderhead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","22693","113467","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","63" +"24414","-1","","","","","Blood Elf Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9798","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","2" +"24415","-1","","","","","Vindicator Idaar's Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24416","-1","It even oozes red sap.","","","","Corrupted Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24417","-1","","","","","Scout's Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","2000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","942","0","0","97","-1","0","0","26","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","24","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24418","-1","","","","","Monster - Dagger Badass Naxx","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24419","-1","It smells a little funky.","","","","Digested Caracoli","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24420","-1","","","","","Unique Equippable Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1087","4350","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","35" +"24421","-1","","","","","Nagrand Cherry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24422","-1","A small stone statue depicting an animal spirit worshipped by the Feralfen Lost Ones.","","","","Feralfen Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24423","-1","","","","","Beaten Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15","75","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24424","-1","","","","","Rough Leather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","63","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24425","-1","","","","","Hand Sewn Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","50","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","9","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24426","-1","","","","","Sporebat Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24427","-1","","","","","Fen Strider Tentacle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24428","-1","The liquid in this vial bubbles softly.","","","","Ahuurn's Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24429","-1","","","","","Expedition Flare","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"24430","-1","","","","","Seafarer's Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184","924","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","10","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24431","-1","","","","","McWeaksauce's Meat Tenderizer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","761","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24432","-1","","","","","The Shell Cracker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","172","864","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","10","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24433","-1","","","","","Crossbow of the Albatross","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104","520","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","10","-1","0","0","14","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","0" +"24434","-1","","","","","The Discipline Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174","871","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","10","-1","0","0","12","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24435","-1","","","","","Reinforced Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24","124","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24436","-1","","","","","Huntsman's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13","68","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24437","-1","","","","","Slightly Worn Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","55","1","1","1","0","24580","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","-1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24438","-1","","","","","Fur Covered Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122","613","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","1","1","0","0","0","0","0","0","0","0","0" +"24439","-1","","","","","Savage Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","153","769","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"24440","-1","","","","","Heavy Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","185","927","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"24441","-1","","","","","Exodar Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","93","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","0" +"24442","-1","","","","","Mail Belt of the Silverpine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","215","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24443","-1","","","","","Bracers of Shed Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","180","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24444","-1","","","","","Newly Weaved Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57","289","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24445","-1","","","","","Fortified Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43","217","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24446","-1","","","","","Sturdy Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36","182","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24447","-1","","","","","Naga Scale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67","339","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24448","-1","","","","","Battle Tested Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","753","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","10","-1","0","0","6","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24449","-1","","","","","Fertile Spores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24450","-1","","","","","Manaspark Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15352","76760","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","14","10","15","0","0","0","0","0","0","63" +"24451","-1","","","","","Lykul Bloodbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23107","115536","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","18","0","0","0","0","0","0","0","0","63" +"24452","-1","","","","","Starlight Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17487","87438","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","21","8","0","0","0","0","0","0","0","63" +"24453","-1","","","","","Zangartooth Shortblade","0.6","0","-15.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70222","351112","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","94","-1","0","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","14","12","0","0","0","0","0","0","0","63" +"24454","-1","","","","","Cloak of Enduring Swiftness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21148","105740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","13","23","0","0","0","0","0","0","0","63" +"24455","-1","","","","","Tunic of the Nightwatcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35379","176895","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","27","21","18","0","0","0","0","0","0","0","63" +"24456","-1","","","","","Greaves of the Iron Guardian","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49720","248603","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2873","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","32","33","7","0","0","0","0","0","0","0","63" +"24457","-1","","","","","Truth Bearer Shoulderguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37361","186808","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","721","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","21","22","0","0","0","0","0","0","0","63" +"24458","-1","","","","","Studded Girdle of Virtue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25193","125967","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","18","14","0","0","0","0","0","0","0","63" +"24459","-1","","","","","Cloak of Healing Rays","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21551","107755","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","13","15","0","0","0","0","0","0","0","63" +"24460","-1","","","","","Talisman of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32466","129865","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","30","20","0","0","0","0","0","0","0","0","63" +"24461","-1","","","","","Hatebringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90474","452373","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","106","0","0","0","0","0","0","0","0","3600","0","0","0","94","-1","0","0","212","0","0","0","0","318","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","1","2","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","25","21","22","0","0","0","0","0","0","0","63" +"24462","-1","","","","","Luminous Pearls of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","15","11","0","0","0","0","0","0","0","63" +"24463","-1","","","","","Pauldrons of Brute Force","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39226","196132","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","721","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","22","18","0","0","0","0","0","0","0","63" +"24464","-1","","","","","The Stalker's Fangs","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75131","375656","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","94","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","16","15","0","0","0","0","0","0","0","0","63" +"24465","-1","","","","","Shamblehide Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45241","226208","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","539","0","0","0","0","0","0","0","254","0","0","0","3","4","2","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","16","19","21","0","0","0","0","0","0","0","63" +"24466","-1","","","","","Skulldugger's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37833","189167","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","7","13","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","21","16","0","0","0","0","0","0","0","63" +"24467","-1","Chaotic fires dance inside the bottle.","","","","Living Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24468","-1","A soft, spongy fungus that can explode into a toxic cloud if not handled properly.","","","","Burstcap Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24469","-1","Oozing with tainted muck.","","","","Muck-ridden Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24470","-1","A cage filled with baby murlocs.","","","","Murloc Cage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24471","-1","Crudely-written attack plans scribbled on ogre's napkin. Although the handwriting looks childish, the plans represent a clear threat to Zabra'jin.","","","","Ango'rosh Attack Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24472","-1","","","","","Boss Grog'ak's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24473","-1","","","","","Enraged Crusher Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24474","-1","","","","","Violet Scrying Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24475","-1","A piece of earth with Gordawg's map imprint displaying the location of the Enraged Crushers.","","","","Gordawg's Imprint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2944","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24476","-1","","","","","Jaggal Clam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24477","-1","","","","","Jaggal Clam Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","100","400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24478","-1","","","","","Jaggal Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"24479","-1","","","","","Shadow Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"24480","-1","","","","","Ghostly Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24481","-1","","","","","Robes of the Augurer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29723","148619","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","18","18","11","0","0","0","0","0","0","0","63" +"24482","-1","","","","","Alturus's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24483","-1","A piece of a withered boglord from the Dead Mire.","","","","Withered Basidium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9827","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"24484","-1","A piece of a withered boglord from the Dead Mire.","","","","Withered Basidium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9828","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"24485","-1","The potent, concentrated venom of a Zangarmarsh fen bleeder.","","","","Marshlight Bleeder Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24486","-1","A thick, scaly hide from a muckclaw thrasher","","","","Fenclaw Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24487","-1","","","","","Second Key Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24488","-1","","","","","Third Key Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24489","-1","","","","","Restored Apprentice's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24490","-1","","","","","The Master's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24491","-1","","","","","Cannonball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24492","-1","","","","","Keanna's Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24493","-1","Even touching the blade lightly is sufficient to draw blood.","","","","Marshfang Slicer Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24494","-1","","","","","Tears of the Goddess","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8454208","24580","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24495","-1","","","","","Monster - Sword2H, Felguard Legionnaire","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24496","-1","This thing is massive!","","","","Horn of Banthar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24497","-1","A cleverly carved wooden depiction of an animal spirit worshipped by the Feralfen.","","","","Feralfen Protection Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24498","-1","A cleverly carved wooden depiction of an animal spirit worshipped by the Feralfen.","","","","Feralfen Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24499","-1","A 'how-to' guide to the unique poisons of the Daggerfen Lost Ones.","","","","Daggerfen Poison Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24500","-1","A vial of the poison favored by Daggerfen Lost One assassins.","","","","Daggerfen Poison Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24501","-1","","","","","Gordawg's Boulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24502","-1","","","","","Warmaul Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24503","-1","","","","","Gurok's Earthen Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24504","-1","","","","","Howling Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9861","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"24505","-1","Looks like you'll need your friend's help to carry this one back to the camp.","","","","Heart of Tusker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24506","-1","","","","","Elemental Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","605","2420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24507","-1","","","","","Elemental Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24508","-1","","","","","Elemental Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24509","-1","","","","","Primordial Element","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","705","2820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24510","-1","","","","","Primordial Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24511","-1","","","","","Primordial Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24512","-1","","","","","Monster - Axe, 2H Zul'Gurub Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"24513","-1","The eye still looks as if it were alive and looking at you.","","","","Eye of Gutripper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24514","-1","","","","","First Key Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24515","-1","","","","","Mangy Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","758","3032","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24516","-1","","","","","Damaged Rock Flayer Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24517","-1","","","","","Blood Soaked Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24518","-1","","","","","Coarse Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1053","4212","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24519","-1","","","","","Twisted Rock Flayer Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24520","-1","","","","","Honor Hold Favor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24521","-1","","","","","Mangled Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"24522","-1","","","","","Thrallmar Favor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24523","-1","King of the stags, indeed!","","","","Hoof of Bach'lor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24524","-1","","","","","130 Epic Warrior Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167860","839301","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","130","-1","0","0","344","0","0","0","0","517","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","42","41","61","0","0","0","0","0","0","0","70" +"24525","-1","","","","","zzold","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","168467","842335","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","130","-1","0","0","344","0","0","0","0","517","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","42","41","61","0","0","0","0","0","0","0","70" +"24526","-1","","","","","130 Epic Warrior Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47611","238055","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","16","17","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","23","24","14","14","0","0","0","0","0","70" +"24527","-1","","","","","130 Epic Warrior Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88252","441261","1","1","1","16","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","52","54","35","0","0","0","0","0","0","0","70" +"24528","-1","","","","","130 Epic Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18984","94920","1","0.5","1","32784","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","16","17","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","20","19","30","19","19","0","0","0","0","0","70" +"24529","-1","","","","","130 Epic Warrior Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44720","223600","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1020","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","32","46","24","15","15","0","0","0","0","0","70" +"24530","-1","","","","","130 Epic Warrior Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95638","478192","1","1","1","16","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","130","-1","0","0","149","0","0","0","0","278","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","20","18","0","0","0","0","0","0","0","0","70" +"24531","-1","","","","","130 Epic Warrior Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67073","335369","1","1","1","16","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","61","41","0","0","0","0","0","0","0","70" +"24532","-1","","","","","130 Epic Warrior Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89942","449711","1","1","1","16","8192","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","16","17","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","41","28","61","28","28","0","0","0","0","0","70" +"24533","-1","","","","","130 Epic Warrior Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7108","28435","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","23","34","23","0","0","0","0","0","0","0","70" +"24534","-1","","","","","130 Epic Warrior Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67830","339150","1","1","1","16","8192","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","16","17","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","31","21","46","22","22","0","0","0","0","0","70" +"24535","-1","","","","","130 Epic Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","30","20","0","0","0","0","0","0","0","70" +"24536","-1","","","","","130 Epic Warrior Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68338","341694","1","1","1","16","8192","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","16","17","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","27","39","26","26","0","0","0","0","0","70" +"24537","-1","","","","","130 Epic Warrior Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46077","230389","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","31","31","21","21","0","0","0","0","0","70" +"24538","-1","","","","","Fire Bomb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24539","-1","","","","","Marsh Lichen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"24540","-1","","","","","Edible Fern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24541","-1","","","","","Medicinal Swamp Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24542","-1","An idol of unknown origin or representation.","","","","Murkblood Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24543","-1","","","","","Head of Ortor of Murkblood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24544","-1","","","","","Gladiator's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","123","1","0","0","0","0","0","0","0","0","0","0","0","0","1547","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","49","23","30","23","12","0","0","0","0","0","70" +"24545","-1","","","","","Gladiator's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2927","0","0","0","0","567","0","0","0","0","0","0","0","123","1","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","52","30","28","25","0","0","0","0","0","0","70" +"24546","-1","","","","","Gladiator's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","567","0","0","0","0","0","0","0","123","1","0","0","0","0","0","0","0","0","0","0","0","0","1160","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","22","23","19","0","0","0","0","0","0","70" +"24547","-1","","","","","Gladiator's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","123","1","0","0","0","0","0","0","0","0","0","0","0","0","1353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","40","36","21","12","0","0","0","0","0","70" +"24548","-1","","","","","zzOLDbrokenitem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17552","87760","1","0.5","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","1","0","0","0","0","0","0","0","0","0","0","0","0","793","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","23","23","7","0","0","0","0","0","0","70" +"24549","-1","","","","","Gladiator's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","123","1","0","0","0","0","0","0","0","0","0","0","0","0","967","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","42","28","26","21","0","0","0","0","0","0","70" +"24550","-1","Finely crafted to Proximo's specification.","","","","Gladiator's Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","123","-1","0","0","341","0","0","0","0","513","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","32","35","28","20","0","0","0","0","0","70" +"24551","-1","","","","","Talisman of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","4","0","34","0","0","0","0","0","0","0","0","0","70" +"24552","-1","","","","","Gladiator's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","568","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","57","19","24","0","0","0","0","0","0","0","70" +"24553","-1","","","","","Gladiator's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","568","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","20","30","0","0","0","0","0","0","0","70" +"24554","-1","","","","","Gladiator's Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","568","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","42","14","21","12","0","0","0","0","0","0","70" +"24555","-1","","","","","Gladiator's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","30","30","0","0","0","0","0","0","0","70" +"24556","-1","","","","","Gladiator's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","25","21","0","0","0","0","0","0","0","70" +"24557","-1","","","","","Gladiator's War Staff","0.4","0","-49.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","123","-1","0","0","189","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","21","36","25","35","0","0","0","0","0","70" +"24558","-1","","","","","Murkblood Invasion Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9872","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"24559","-1","","","","","Murkblood Invasion Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9871","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","64" +"24560","-1","","","","","Torch of Liquid Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24561","-1","","","","","130 Test Caster Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27256","136282","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","39","26","0","0","0","0","0","0","0","70" +"24562","-1","","","","","130 Test Caster Shoulder","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41030","205151","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","39","27","0","0","0","0","0","0","0","70" +"24563","-1","","","","","130 Test Caster Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41176","205880","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","30","31","31","0","0","0","0","0","0","70" +"24564","-1","","","","","130 Test Caster Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55090","275451","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","35","36","23","35","0","0","0","0","0","0","70" +"24565","-1","","","","","130 Test Caster Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37523","187616","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","31","21","0","0","0","0","0","0","0","70" +"24566","-1","","","","","130 Test Caster Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25112","125563","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","31","0","0","0","0","0","0","0","0","70" +"24567","-1","","","","","130 Test Caster Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37814","189072","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","29","19","20","0","0","0","0","0","0","0","70" +"24568","-1","","","","","130 Test Caster Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15457","61830","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","28","0","0","0","0","0","0","0","0","70" +"24569","-1","","","","","130 Test Caster Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95254","476273","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","130","-1","0","0","158","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","19","13","0","0","0","0","0","0","0","0","70" +"24570","-1","","","","","130 Test Caster Staff","0.4","0","-53.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","159364","796823","1","1","1","16","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","130","-1","0","0","265","0","0","0","0","399","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","52","35","35","35","0","0","0","0","0","0","70" +"24571","-1","","","","","130 Test Caster Neck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12157","48630","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","28","20","19","0","0","0","0","0","0","0","70" +"24572","-1","","","","","130 Test Caster Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25689","128449","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","28","19","0","0","0","0","0","0","0","70" +"24573","-1","A politely worded, but firm refusal of Anchorite Ahuurn's message.","","","","Elder Kuruti's Response","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"24575","-1","","","","","Outlander's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10617","53086","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24576","-1","","","","","Loosely Threaded Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3666","18334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","61" +"24577","-1","","","","","Loosely Threaded Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5520","27600","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","61" +"24578","-1","","","","","Loosely Threaded Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3693","18467","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"24579","-1","","","","","Mark of Honor Hold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24580","-1","","","","","Loosely Threaded Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5579","27897","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","61" +"24581","-1","","","","","Mark of Thrallmar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"24582","-1","","","","","Outlander's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16765","83827","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24583","-1","","","","","Outlander's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22431","112156","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24584","-1","","","","","Outlander's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11255","56276","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24585","-1","","","","","Outlander's Facewrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15332","76661","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24586","-1","","","","","Outlander's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20522","102612","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24587","-1","","","","","Outlander's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15449","77248","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24588","-1","","","","","Outlander's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10339","51697","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","61","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24589","-1","","","","","Fireheart Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10715","53578","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24590","-1","","","","","Fireheart Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16134","80674","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24591","-1","","","","","Fireheart Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21592","107964","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24592","-1","","","","","Fireheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11130","55653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24593","-1","","","","","Fireheart Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16757","83788","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24594","-1","","","","","Fireheart Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22423","112116","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24595","-1","","","","","Fireheart Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16878","84394","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24596","-1","","","","","Fireheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11293","56467","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","61","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24597","-1","","","","","Starfire Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11690","58451","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24598","-1","","","","","Starfire Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17597","87985","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24599","-1","","","","","Starfire Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23547","117737","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24600","-1","","","","","Starfire Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11815","59079","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24601","-1","","","","","Starfire Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17787","88936","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24602","-1","","","","","Starfire Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23798","118993","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24603","-1","","","","","Starfire Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","89561","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24604","-1","","","","","Starfire Wristwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11983","59919","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","61","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24605","-1","","","","","Laughing Skull Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11214","56071","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24606","-1","","","","","Laughing Skull Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16885","84425","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24607","-1","","","","","Laughing Skull Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22600","113002","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24608","-1","","","","","Laughing Skull Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11655","58277","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24609","-1","","","","","Laughing Skull Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17546","87734","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24610","-1","","","","","Laughing Skull Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23482","117414","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24611","-1","","","","","Laughing Skull Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17677","88387","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24612","-1","","","","","Laughing Skull Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11828","59142","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24613","-1","","","","","Vindicator Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12221","61107","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24614","-1","","","","","Vindicator Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18399","91997","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24615","-1","","","","","Vindicator Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24622","123112","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24616","-1","","","","","Vindicator Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12356","61780","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24617","-1","","","","","Vindicator Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18599","92997","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24618","-1","","","","","Vindicator Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24888","124444","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24619","-1","","","","","Vindicator Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18733","93669","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24620","-1","","","","","Vindicator Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12534","62670","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","61","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24621","-1","","","","","Slavehandler Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12938","64693","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24622","-1","","","","","Slavehandler Footpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19477","97385","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24623","-1","","","","","Slavehandler Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26061","130308","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24624","-1","","","","","Slavehandler Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12158","60792","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24625","-1","","","","","Slavehandler Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18306","91534","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24626","-1","","","","","Slavehandler Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24501","122507","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24627","-1","","","","","Slavehandler Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18445","92226","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24628","-1","","","","","Slavehandler Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12341","61708","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","61","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24629","-1","","","","","Feralfen Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12733","63666","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24630","-1","","","","","Feralfen Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19171","95855","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24631","-1","","","","","Feralfen Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25656","128281","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24632","-1","","","","","Feralfen Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12874","64371","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24633","-1","","","","","Feralfen Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19382","96912","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24634","-1","","","","","Feralfen Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25938","129690","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24635","-1","","","","","Feralfen Amice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19524","97623","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24636","-1","","","","","Feralfen Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13062","65312","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","61","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24637","-1","","","","","Mistyreed Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13465","67328","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24638","-1","","","","","Mistyreed Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20271","101357","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24639","-1","","","","","Mistyreed Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27126","135630","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24640","-1","","","","","Mistyreed Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12642","63210","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24641","-1","","","","","Mistyreed Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19036","95180","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24642","-1","","","","","Mistyreed Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25478","127394","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24643","-1","","","","","Mistyreed Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19180","95901","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24644","-1","","","","","Mistyreed Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12835","64177","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","61","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24645","-1","","","","","Astralaan Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13224","66122","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24646","-1","","","","","Astralaan Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19911","99558","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24647","-1","","","","","Astralaan Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26646","133231","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24648","-1","","","","","Astralaan Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13373","66865","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24649","-1","","","","","Astralaan Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20134","100672","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24650","-1","","","","","Astralaan Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26946","134730","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24651","-1","","","","","Astralaan Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20282","101412","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24652","-1","","","","","Astralaan Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13571","67858","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","61","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24653","-1","","","","","Consortium Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13972","69860","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24654","-1","","","","","Consortium Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21035","105175","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24655","-1","","","","","Consortium Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28146","140732","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24656","-1","","","","","Consortium Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14491","72458","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24657","-1","","","","","Consortium Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21814","109071","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24658","-1","","","","","Consortium Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26412","132061","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24659","-1","","","","","Consortium Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19886","99430","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24660","-1","","","","","Consortium Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13308","66543","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","61","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24661","-1","","","","","Shadow Council Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13695","68475","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24662","-1","","","","","Shadow Council Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20619","103097","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24663","-1","","","","","Shadow Council Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27597","137988","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24664","-1","","","","","Shadow Council Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13851","69256","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24665","-1","","","","","Shadow Council Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20855","104279","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24666","-1","","","","","Shadow Council Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27910","139550","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24667","-1","","","","","Shadow Council Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21011","105056","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24668","-1","","","","","Shadow Council Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14060","70300","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","61","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24669","-1","","","","","Eldr'naan Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14458","72290","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24670","-1","","","","","Eldr'naan Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21765","108828","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24671","-1","","","","","Eldr'naan Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29128","145642","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24672","-1","","","","","Eldr'naan Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15003","75018","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24673","-1","","","","","Eldr'naan Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22583","112919","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24674","-1","","","","","Eldr'naan Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30219","151097","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24675","-1","","","","","Eldr'naan Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22745","113727","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24676","-1","","","","","Eldr'naan Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15217","76087","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","61","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24677","-1","","","","","Archmage Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15634","78173","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24678","-1","","","","","Archmage Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21298","106491","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24679","-1","","","","","Archmage Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28507","142539","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24680","-1","","","","","Archmage Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14309","71545","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24681","-1","","","","","Archmage Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21544","107720","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24682","-1","","","","","Archmage Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28835","144177","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24683","-1","","","","","Archmage Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21709","108546","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24684","-1","","","","","Archmage Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14528","72640","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","61","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24685","-1","","","","","Elementalist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14921","74609","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24686","-1","","","","","Elementalist Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22467","112337","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24687","-1","","","","","Elementalist Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30069","150347","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24688","-1","","","","","Elementalist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15495","77475","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24689","-1","","","","","Elementalist Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23324","116624","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24690","-1","","","","","Elementalist Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31212","156062","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24691","-1","","","","","Elementalist Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23494","117470","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24692","-1","","","","","Elementalist Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15717","78587","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","61","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24693","-1","","","","","Bonechewer Pelt-Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13872","69360","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24694","-1","","","","","Bonechewer Shredboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20882","104412","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24695","-1","","","","","Bonechewer Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27942","139712","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24696","-1","","","","","Bonechewer Spikegloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14019","70097","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24697","-1","","","","","Bonechewer Skincloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21103","105518","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24698","-1","","","","","Bonechewer Ripleggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25553","127769","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24699","-1","","","","","Bonechewer Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19239","96199","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24700","-1","","","","","Bonechewer Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12874","64374","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","63","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24701","-1","","","","","Haal'eshi Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13343","66716","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24702","-1","","","","","Haal'eshi Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20091","100458","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24703","-1","","","","","Haal'eshi Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26891","134457","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24704","-1","","","","","Haal'eshi Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13862","69311","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24705","-1","","","","","Haal'eshi Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20870","104351","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24706","-1","","","","","Haal'eshi Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27929","139646","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24707","-1","","","","","Haal'eshi Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21021","105108","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24708","-1","","","","","Haal'eshi Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14065","70328","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","63","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24709","-1","","","","","Vengeance Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14560","72800","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24710","-1","","","","","Vengeance Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21919","109596","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24711","-1","","","","","Vengeance Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29328","146643","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24712","-1","","","","","Vengeance Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14717","73585","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24713","-1","","","","","Vengeance Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22154","110774","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24714","-1","","","","","Vengeance Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29645","148227","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24715","-1","","","","","Vengeance Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22311","111555","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24716","-1","","","","","Vengeance Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14926","74634","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","63","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24717","-1","","","","","Dreghood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15435","77178","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24718","-1","","","","","Dreghood Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21026","105134","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24719","-1","","","","","Dreghood Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28141","140708","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24720","-1","","","","","Dreghood Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14515","72575","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24721","-1","","","","","Dreghood Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21854","109270","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24722","-1","","","","","Dreghood Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29244","146224","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24723","-1","","","","","Dreghood Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22015","110076","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24724","-1","","","","","Dreghood Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14731","73656","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","63","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24725","-1","","","","","Dementia Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15222","76112","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24726","-1","","","","","Dementia Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22915","114577","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24727","-1","","","","","Dementia Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30665","153329","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24728","-1","","","","","Dementia Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15389","76945","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24729","-1","","","","","Dementia Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23167","115837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24730","-1","","","","","Dementia Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30999","154995","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24731","-1","","","","","Dementia Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23333","116666","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24732","-1","","","","","Dementia Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15611","78057","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","63","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24733","-1","","","","","Sunroc Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16117","80585","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24734","-1","","","","","Sunroc Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24259","121299","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24735","-1","","","","","Sunroc Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32461","162308","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24736","-1","","","","","Sunroc Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15142","75710","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24737","-1","","","","","Sunroc Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22797","113986","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24738","-1","","","","","Sunroc Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30511","152557","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24739","-1","","","","","Sunroc Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22970","114850","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24740","-1","","","","","Sunroc Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15371","76855","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","63","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24741","-1","","","","","Ranger Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15857","79287","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24742","-1","","","","","Ranger Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23875","119375","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24743","-1","","","","","Ranger Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31951","159759","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24744","-1","","","","","Ranger Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16035","80175","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24745","-1","","","","","Ranger Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24139","120696","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24746","-1","","","","","Ranger Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32304","161520","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24747","-1","","","","","Ranger Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24316","121584","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24748","-1","","","","","Ranger Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16270","81352","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","63","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24749","-1","","","","","Daggerfen Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16771","83856","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24750","-1","","","","","Daggerfen Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25248","126240","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24751","-1","","","","","Daggerfen Battlevest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33785","168929","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24752","-1","","","","","Daggerfen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15743","78716","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24753","-1","","","","","Daggerfen Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23703","118519","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24754","-1","","","","","Daggerfen Stitchpants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31726","158634","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24755","-1","","","","","Daggerfen Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23886","119432","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24756","-1","","","","","Daggerfen Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15983","79917","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","63","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24757","-1","","","","","Umbrafen Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16468","82341","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24758","-1","","","","","Umbrafen Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24796","123980","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24759","-1","","","","","Umbrafen Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33186","165931","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24760","-1","","","","","Umbrafen Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16653","83269","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24761","-1","","","","","Umbrafen Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25074","125372","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24762","-1","","","","","Umbrafen Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33557","167788","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24763","-1","","","","","Umbrafen Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25261","126309","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24764","-1","","","","","Umbrafen Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16902","84510","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","63","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24765","-1","","","","","Clefthoof Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17401","87005","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24766","-1","","","","","Clefthoof Wanderboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26197","130989","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24767","-1","","","","","Clefthoof Hidemantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35058","175292","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24768","-1","","","","","Clefthoof Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17591","87958","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24769","-1","","","","","Clefthoof Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27171","135858","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24770","-1","","","","","Clefthoof Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36357","181785","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24771","-1","","","","","Clefthoof Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24761","123807","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24772","-1","","","","","Clefthoof Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16571","82858","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","63","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24773","-1","","","","","Boneshredder Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17053","85266","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24774","-1","","","","","Boneshredder Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25678","128392","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24775","-1","","","","","Boneshredder Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34365","171828","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24776","-1","","","","","Boneshredder Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17248","86242","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24777","-1","","","","","Boneshredder Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25971","129856","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24778","-1","","","","","Boneshredder Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34759","173798","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24779","-1","","","","","Boneshredder Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26165","130828","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24780","-1","","","","","Boneshredder Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17509","87547","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","63","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24781","-1","","","","","Murkblood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18005","90026","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24782","-1","","","","","Loosely Threaded Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3572","17861","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","61" +"24783","-1","","","","","Murkblood Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27207","136035","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24784","-1","","","","","Murkblood Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36410","182053","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24785","-1","","","","","Murkblood Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18754","93772","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24786","-1","","","","","Murkblood Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28229","141149","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24787","-1","","","","","Murkblood Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37774","188872","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24788","-1","","","","","Murkblood Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28431","142158","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24789","-1","","","","","Murkblood Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19021","95108","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","63","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24790","-1","","","","","Expedition Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19543","97716","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24791","-1","","","","","Expedition Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26622","133114","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24792","-1","","","","","Expedition Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35634","178174","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24793","-1","","","","","Expedition Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17886","89431","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24794","-1","","","","","Expedition Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26930","134650","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24795","-1","","","","","Expedition Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36044","180222","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24796","-1","","","","","Expedition Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27136","135683","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24797","-1","","","","","Expedition Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18160","90800","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","63","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24798","-1","","","","","Dragonhawk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18652","93261","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24799","-1","","","","","Dragonhawk Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28084","140421","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24800","-1","","","","","Dragonhawk Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37586","187933","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24801","-1","","","","","Dragonhawk Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19366","96834","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24802","-1","","","","","Dragonhawk Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29156","145780","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24803","-1","","","","","Dragonhawk Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39015","195078","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24804","-1","","","","","Dragonhawk Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29367","146837","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24805","-1","","","","","Dragonhawk Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19646","98234","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24806","-1","","","","","Unyielding Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16646","83232","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24807","-1","","","","","Unyielding Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25170","125851","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24808","-1","","","","","Unyielding Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33531","167655","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24809","-1","","","","","Unyielding Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16823","84117","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24810","-1","","","","","Unyielding Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25324","126622","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24811","-1","","","","","Unyielding Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30664","153323","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24812","-1","","","","","Unyielding Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23190","115951","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24813","-1","","","","","Unyielding Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15449","77248","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","64","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24814","-1","","","","","Felstone Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16011","80059","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24815","-1","","","","","Felstone Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24217","121086","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24816","-1","","","","","Felstone Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32269","161348","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24817","-1","","","","","Felstone Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16634","83173","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24818","-1","","","","","Felstone Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25044","125221","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24819","-1","","","","","Felstone Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33515","167576","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24820","-1","","","","","Felstone Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25338","126691","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","331","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24821","-1","","","","","Felstone Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16878","84394","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","64","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24822","-1","","","","","Netherstalker Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17472","87360","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24823","-1","","","","","Netherstalker Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26420","132100","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24824","-1","","","","","Netherstalker Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35194","175971","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24825","-1","","","","","Netherstalker Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17660","88302","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24826","-1","","","","","Netherstalker Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26585","132929","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24827","-1","","","","","Netherstalker Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35574","177872","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24828","-1","","","","","Netherstalker Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26892","134462","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24829","-1","","","","","Netherstalker Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17912","89561","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","64","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24830","-1","","","","","Nexus-Strider Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18522","92614","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24831","-1","","","","","Nexus-Strider Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25344","126721","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24832","-1","","","","","Nexus-Strider Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33770","168850","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24833","-1","","","","","Nexus-Strider Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17418","87090","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24834","-1","","","","","Nexus-Strider Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26225","131125","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24835","-1","","","","","Nexus-Strider Legwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35093","175468","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","412","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24836","-1","","","","","Nexus-Strider Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26535","132678","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24837","-1","","","","","Nexus-Strider Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17677","88387","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","64","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24838","-1","","","","","Wrathfin Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18266","91334","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24839","-1","","","","","Wrathfin Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27620","138103","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24840","-1","","","","","Wrathfin Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36799","183995","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24841","-1","","","","","Wrathfin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18466","92334","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24842","-1","","","","","Wrathfin Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27801","139005","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24843","-1","","","","","Wrathfin Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37198","185994","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24844","-1","","","","","Wrathfin Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28124","140622","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24845","-1","","","","","Wrathfin Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18733","93669","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","64","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24846","-1","","","","","Fenclaw Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19340","96703","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24847","-1","","","","","Fenclaw Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29241","146206","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24848","-1","","","","","Fenclaw Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38954","194770","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24849","-1","","","","","Fenclaw Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18170","90852","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24850","-1","","","","","Fenclaw Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27356","136783","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24851","-1","","","","","Fenclaw Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36613","183069","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24852","-1","","","","","Fenclaw Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27686","138433","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24853","-1","","","","","Fenclaw Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18445","92226","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","64","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24854","-1","","","","","Marshcreeper Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19028","95144","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24855","-1","","","","","Marshcreeper Sludgeboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28777","143886","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24856","-1","","","","","Marshcreeper Fen-Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38342","191711","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24857","-1","","","","","Marshcreeper Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19242","96210","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24858","-1","","","","","Marshcreeper Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28967","144835","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24859","-1","","","","","Marshcreeper Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38764","193824","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24860","-1","","","","","Marshcreeper Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29310","146550","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24861","-1","","","","","Marshcreeper Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19524","97623","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","64","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24862","-1","","","","","Blood Knight Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20125","100627","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24863","-1","","","","","Blood Knight Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30432","152162","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24864","-1","","","","","Blood Knight Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40543","202715","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24865","-1","","","","","Blood Knight Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18890","94450","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24866","-1","","","","","Blood Knight Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28444","142223","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24867","-1","","","","","Blood Knight Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38072","190361","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24868","-1","","","","","Blood Knight Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28791","143955","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24869","-1","","","","","Blood Knight Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19180","95901","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","64","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24870","-1","","","","","Ironspine Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19761","98809","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24871","-1","","","","","Ironspine Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29887","149437","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24872","-1","","","","","Ironspine Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39823","199117","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24873","-1","","","","","Ironspine Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19984","99923","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24874","-1","","","","","Ironspine Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30089","150447","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24875","-1","","","","","Ironspine Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40269","201345","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24876","-1","","","","","Ironspine Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30449","152245","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24877","-1","","","","","Ironspine Bracelets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20282","101412","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","64","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24878","-1","","","","","Der'izu Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20881","104406","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24879","-1","","","","","Der'izu Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31577","157885","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24880","-1","","","","","Der'izu Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42070","210351","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24881","-1","","","","","Der'izu Fists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21660","108302","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24882","-1","","","","","Der'izu Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32606","163030","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24883","-1","","","","","Der'izu Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43628","218142","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24884","-1","","","","","Der'izu Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29845","149229","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24885","-1","","","","","Der'izu Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19886","99430","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","64","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24886","-1","","","","","Skettis Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20463","102319","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24887","-1","","","","","Skettis Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30951","154755","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24888","-1","","","","","Skettis Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41238","206194","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24889","-1","","","","","Skettis Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20698","103491","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24890","-1","","","","","Skettis Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31165","155827","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24891","-1","","","","","Skettis Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41711","208558","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24892","-1","","","","","Skettis Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31538","157691","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","430","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24893","-1","","","","","Skettis Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21011","105056","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","64","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24894","-1","","","","","Sundered Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21606","108032","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24895","-1","","","","","Sundered Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32675","163376","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24896","-1","","","","","Sundered Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43531","217656","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24897","-1","","","","","Sundered Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22424","112123","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24898","-1","","","","","Sundered Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33758","168790","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24899","-1","","","","","Sundered Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45167","225839","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24900","-1","","","","","Sundered Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34148","170740","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24901","-1","","","","","Tortured Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22745","113727","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","64","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"24902","-1","","","","","Talhide Stitched-Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23371","116857","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24903","-1","","","","","Talhide Lined-Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35334","176671","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24904","-1","","","","","Talhide Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42596","212982","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24905","-1","","","","","Talhide Lined-Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21380","106904","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24906","-1","","","","","Talhide Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32195","160976","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24907","-1","","","","","Talhide Lined-Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43088","215440","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24908","-1","","","","","Talhide Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32584","162921","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24909","-1","","","","","Talhide Lined-Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21709","108546","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","64","0","0","0","0","0","0","0","0","0","0","0","264","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"24910","-1","","","","","Netherstorm Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22300","111502","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24911","-1","","","","","Netherstorm Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33723","168617","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24912","-1","","","","","Netherstorm Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44934","224674","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24913","-1","","","","","Netherstorm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23157","115789","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24914","-1","","","","","Netherstorm Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34860","174301","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24915","-1","","","","","Netherstorm Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46649","233248","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24916","-1","","","","","Netherstorm Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35270","176350","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24917","-1","","","","","Netherstorm Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23494","117470","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","64","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"24918","-1","","","","","Grimscale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19462","97310","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24919","-1","","","","","Grimscale Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29075","145379","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24920","-1","","","","","Grimscale Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38980","194903","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24921","-1","","","","","Grimscale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19671","98357","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24922","-1","","","","","Grimscale Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29384","146924","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","616","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24923","-1","","","","","Grimscale Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39393","196967","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24924","-1","","","","","Grimscale Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26780","133902","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","569","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24925","-1","","","","","Grimscale Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18059","90298","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","65","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"24926","-1","","","","","Ango'rosh Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18715","93576","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24927","-1","","","","","Ango'rosh Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27967","139838","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24928","-1","","","","","Ango'rosh Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37504","187523","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","785","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24929","-1","","","","","Ango'rosh Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19445","97229","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24930","-1","","","","","Ango'rosh Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29055","145276","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24931","-1","","","","","Ango'rosh Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38957","194788","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24932","-1","","","","","Ango'rosh Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29269","146349","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24933","-1","","","","","Ango'rosh Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19732","98662","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","65","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"24934","-1","","","","","Darkcrest Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20426","102131","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24935","-1","","","","","Darkcrest Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30518","152590","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24936","-1","","","","","Darkcrest Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40916","204581","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24937","-1","","","","","Darkcrest Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20647","103236","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24938","-1","","","","","Darkcrest Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30847","154235","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","660","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24939","-1","","","","","Darkcrest Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41355","206779","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24940","-1","","","","","Darkcrest Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31068","155342","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24941","-1","","","","","Darkcrest Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20942","104713","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","65","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"24942","-1","","","","","Bloodscale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21656","108284","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24943","-1","","","","","Bloodscale Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32353","161766","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24944","-1","","","","","Bloodscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39250","196250","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","838","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24945","-1","","","","","Bloodscale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20360","101802","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24946","-1","","","","","Bloodscale Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30423","152117","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24947","-1","","","","","Bloodscale Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40794","203972","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24948","-1","","","","","Bloodscale Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30648","153242","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24949","-1","","","","","Bloodscale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20664","103324","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","65","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"24950","-1","","","","","Bogslayer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21354","106771","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24951","-1","","","","","Bogslayer Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31906","159531","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24952","-1","","","","","Bogslayer Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42775","213877","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24953","-1","","","","","Bogslayer Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21588","107944","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24954","-1","","","","","Bogslayer Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32255","161276","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24955","-1","","","","","Bogslayer Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43246","216230","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24956","-1","","","","","Bogslayer Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32487","162435","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24957","-1","","","","","Bogslayer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21902","109511","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","65","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"24958","-1","","","","","Khan'aish Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22611","113059","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24959","-1","","","","","Khan'aish Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33781","168908","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24960","-1","","","","","Khan'aish Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45285","226425","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24961","-1","","","","","Khan'aish Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21238","106194","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24962","-1","","","","","Khan'aish Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31737","158688","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24963","-1","","","","","Khan'aish Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42554","212774","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","779","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24964","-1","","","","","Khan'aish Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31976","159880","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24965","-1","","","","","Khan'aish Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21561","107806","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","65","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"24966","-1","","","","","Talonguard Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22246","111230","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24967","-1","","","","","Talonguard Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33237","166185","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24968","-1","","","","","Talonguard Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44566","222833","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","917","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24969","-1","","","","","Talonguard Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22494","112470","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24970","-1","","","","","Talonguard Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33609","168048","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24971","-1","","","","","Talonguard Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45059","225299","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24972","-1","","","","","Talonguard Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33854","169273","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","688","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24973","-1","","","","","Talonguard Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22825","114127","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","65","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"24974","-1","","","","","Reaver Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23530","117652","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24975","-1","","","","","Reaver Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35152","175762","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24976","-1","","","","","Reaver Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47129","235649","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","943","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24977","-1","","","","","Reaver Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22081","110405","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24978","-1","","","","","Reaver Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32994","164973","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24979","-1","","","","","Reaver Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44247","221236","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","826","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24980","-1","","","","","Reaver Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33249","166248","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24981","-1","","","","","Reaver Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22421","112107","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","65","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"24982","-1","","","","","Boulderfist Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23099","115496","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24983","-1","","","","","Boulderfist Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34517","172587","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24984","-1","","","","","Boulderfist Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46285","231429","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24985","-1","","","","","Boulderfist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23363","116815","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24986","-1","","","","","Boulderfist Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34906","174532","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","788","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24987","-1","","","","","Boulderfist Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46805","234029","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","849","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24988","-1","","","","","Boulderfist Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35168","175842","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24989","-1","","","","","Boulderfist Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23712","118562","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","65","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"24990","-1","","","","","Warmaul Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24410","122053","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24991","-1","","","","","Warmaul Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36472","182364","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24992","-1","","","","","Warmaul Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48902","244513","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24993","-1","","","","","Warmaul Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24678","123393","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24994","-1","","","","","Warmaul Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37833","189168","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","810","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24995","-1","","","","","Warmaul Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50720","253603","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24996","-1","","","","","Warmaul Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38102","190511","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24997","-1","","","","","Warmaul Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23242","116214","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","65","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"24998","-1","","","","","Bloodfist Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23918","119592","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"24999","-1","","","","","Bloodfist Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35743","178718","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25000","-1","","","","","Bloodfist Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47933","239665","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","1023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25001","-1","","","","","Bloodfist Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24193","120967","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25002","-1","","","","","Bloodfist Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36152","180764","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25003","-1","","","","","Bloodfist Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48479","242398","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","895","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25004","-1","","","","","Bloodfist Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36428","182141","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25005","-1","","","","","Bloodfist Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24560","122804","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","65","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25006","-1","","","","","Conqueror's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25256","126283","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25007","-1","","","","","Conqueror's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37739","188695","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25008","-1","","","","","Conqueror's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50603","253016","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","1050","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25009","-1","","","","","Conqueror's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25538","127692","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25010","-1","","","","","Conqueror's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39168","195842","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25011","-1","","","","","Conqueror's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52512","262563","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25012","-1","","","","","Conqueror's Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39446","197233","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25013","-1","","","","","Conqueror's Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26593","132966","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","65","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25014","-1","","","","","Shattered Hand Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27325","136628","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25015","-1","","","","","Shattered Hand Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40822","204111","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25016","-1","","","","","Shattered Hand Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54721","273606","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","1076","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25017","-1","","","","","Shattered Hand Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24989","124949","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","673","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25018","-1","","","","","Shattered Hand Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37345","186726","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25019","-1","","","","","Shattered Hand Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50081","250408","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","942","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25020","-1","","","","","Shattered Hand Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37630","188151","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","807","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25021","-1","","","","","Shattered Hand Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25375","126876","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","65","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25022","-1","","","","","Warlord's Iron-Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26066","130333","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","620","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25023","-1","","","","","Warlord's Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38951","194758","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25024","-1","","","","","Warlord's Iron-Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52226","261133","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25025","-1","","","","","Warlord's Iron-Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26361","131809","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25026","-1","","","","","Warlord's Iron-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40449","202245","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","896","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25027","-1","","","","","Warlord's Iron-Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54227","271136","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","965","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25028","-1","","","","","Warlord's Iron-Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40740","203703","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25029","-1","","","","","Warlord's Iron-Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27467","137335","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","65","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25030","-1","","","","","Silky Velvet Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16529","82645","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","66","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25031","-1","","","","","Silvermoon Royal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17124","85623","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","66","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25032","-1","","","","","Hellfire Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17725","88628","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","66","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25033","-1","","","","","Scavenger's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18330","91652","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","66","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25034","-1","","","","","Elementalist Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18939","94696","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","66","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25035","-1","","","","","Silver-Lined Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19549","97749","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","66","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25036","-1","","","","","Boulderfist Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20166","100831","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","66","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25037","-1","","","","","Patched Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18811","94055","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","66","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25038","-1","","","","","Forest Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19383","96915","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","66","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25039","-1","","","","","Farseer Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19956","99783","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","66","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25040","-1","","","","","Murkblood Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20536","102681","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","66","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25041","-1","","","","","Ambusher's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21119","105599","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","66","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25042","-1","","","","","Nether Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22296","111484","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","66","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25043","-1","","","","","Amber Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22901","114509","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","66","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25044","-1","","","","","Rubellite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26809","107236","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25045","-1","","","","","Azurite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27678","110712","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25046","-1","","","","","Spined Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25047","-1","","","","","Tourmaline Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25048","-1","","","","","Smoky Quartz Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25049","-1","","","","","Scheelite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31154","124616","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25050","-1","","","","","Moldavite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25051","-1","","","","","Blue Topaz Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25052","-1","","","","","Hauyne Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33760","135040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25053","-1","","","","","Lazuli Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25054","-1","","","","","Sodalite Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25055","-1","","","","","Alexandrite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25056","-1","","","","","Almandine Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37236","148944","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25057","-1","","","","","Amber Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38105","152420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25058","-1","","","","","Anglesite Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26809","107236","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25059","-1","","","","","Fire Opal Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27678","110712","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25060","-1","","","","","Sunstone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25061","-1","","","","","Hiddenite Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25062","-1","","","","","Zircon Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25063","-1","","","","","Multi-Colored Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31154","124616","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25064","-1","","","","","Amethyst Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25065","-1","","","","","Turquoise Brooch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25066","-1","","","","","Pink Sapphire Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33760","135040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25067","-1","","","","","Diopside Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25068","-1","","","","","Kunzite Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25069","-1","","","","","Epidote Stone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25070","-1","","","","","Coral Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37236","148944","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25071","-1","","","","","Tanzanite Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38105","152420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25072","-1","","","","","Northman's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35505","177528","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","82","0","0","0","0","0","0","0","0","0","0","0","2428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25073","-1","","","","","Emperor Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36784","183920","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","82","0","0","0","0","0","0","0","0","0","0","0","2513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25074","-1","","","","","Telaari Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35384","176924","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","82","0","0","0","0","0","0","0","0","0","0","0","2598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25075","-1","","","","","Hardened Steel Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36601","183006","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","82","0","0","0","0","0","0","0","0","0","0","0","2683","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25076","-1","","","","","Screaming Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37822","189110","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","82","0","0","0","0","0","0","0","0","0","0","0","2768","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25077","-1","","","","","Modani War-Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39054","195274","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","82","0","0","0","0","0","0","0","0","0","0","0","2853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25078","-1","","","","","Zangari Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40295","201479","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","82","0","0","0","0","0","0","0","0","0","0","0","2938","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25079","-1","","","","","Outland Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41545","207725","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","82","0","0","0","0","0","0","0","0","0","0","0","3023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25080","-1","","","","","Spell-Breaker Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42798","213991","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","82","0","0","0","0","0","0","0","0","0","0","0","3108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25081","-1","","","","","Bayeaux Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44063","220319","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","82","0","0","0","0","0","0","0","0","0","0","0","3193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25082","-1","","","","","Fel-Iron Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45337","226688","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","82","0","0","0","0","0","0","0","0","0","0","0","3278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25083","-1","","","","","Smouldering Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46619","233098","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","82","0","0","0","0","0","0","0","0","0","0","0","3363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25084","-1","","","","","Zeth'Gor Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47905","239526","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","82","0","0","0","0","0","0","0","0","0","0","0","3448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25085","-1","","","","","Dragonscale Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49203","246018","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","82","0","0","0","0","0","0","0","0","0","0","0","3533","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25086","-1","","","","","Dreamseeker Dandelion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26809","107236","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25087","-1","","","","","Bleeding Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27678","110712","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25088","-1","","","","","Laughing Skull Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25089","-1","","","","","Supplicant's Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25090","-1","","","","","Slavehandler Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25091","-1","","","","","Mistyreed Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31154","124616","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25092","-1","","","","","Consortium Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25093","-1","","","","","Shadow Council Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25094","-1","","","","","Eldr'naan Scepter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33760","135040","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25095","-1","","","","","Archmage Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25096","-1","","","","","Elementalist Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25097","-1","","","","","Astralaan Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25098","-1","","","","","Tuurik Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37236","148944","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25099","-1","","","","","Draenei Crystal Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38105","152420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","83","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25100","-1","","","","","Liege Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53097","265485","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","86","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25101","-1","","","","","Cross Pommel Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55022","275114","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","86","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25102","-1","","","","","Jaedenis Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56961","284808","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","86","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25103","-1","","","","","Nightstalker Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58907","294536","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","86","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25104","-1","","","","","Anzac Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60871","304357","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","86","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25105","-1","","","","","Arachnid Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62848","314243","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","86","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25106","-1","","","","","Cobra Shortblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66529","332647","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","86","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25107","-1","","","","","Draconic Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68578","342891","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","86","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25108","-1","","","","","Grave Keeper Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70639","353199","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","86","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25109","-1","","","","","Moon Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72714","363571","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","86","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25110","-1","","","","","Sharp Bowie Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67687","338439","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","86","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25111","-1","","","","","Lionhead Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69613","348069","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","86","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25112","-1","","","","","Fel Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71552","357763","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","86","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25113","-1","","","","","Phantom Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73504","367522","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","86","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25114","-1","","","","","Doomsayer's Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51906","259533","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","87","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25115","-1","","","","","Riversong Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53793","268969","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","87","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25116","-1","","","","","Pneumatic War Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55694","278470","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","87","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25117","-1","","","","","Flanged Battle Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57607","288035","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","87","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25118","-1","","","","","Battle Star","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59526","297634","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","87","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25119","-1","","","","","Silvermoon War-Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61465","307327","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","87","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25120","-1","","","","","Rockshard Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63416","317084","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","87","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25121","-1","","","","","Dreaded Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65381","326906","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","87","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25122","-1","","","","","Khorium Plated Bludgeon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69140","345704","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","87","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25123","-1","","","","","Boneshredder Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71176","355883","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","87","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25124","-1","","","","","Footman Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73225","366127","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","87","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25125","-1","","","","","Retro-Spike Club","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75279","376399","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","87","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25126","-1","","","","","Anvilmar Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77354","386770","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","87","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25127","-1","","","","","Knight's War Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79441","397206","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","87","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25128","-1","","","","","Shining Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70111","350555","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","88","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25129","-1","","","","","Giant's Leg Bone","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72632","363163","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","88","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25130","-1","","","","","Gronn-Bone Club","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68033","340166","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","88","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25131","-1","","","","","Hateful Bludgeon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70376","351881","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","88","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25132","-1","","","","","Thrallmar War Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72735","363677","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","88","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25133","-1","","","","","Stormwind Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75102","375514","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","88","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25134","-1","","","","","Highmountain Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77493","387469","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","88","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25135","-1","","","","","Clefthoof Mace","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79901","399505","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","88","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25136","-1","","","","","Blood Stained Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82324","411621","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","88","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25137","-1","","","","","Draenethyst Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84754","423774","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","88","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25138","-1","","","","","Blood Knight Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89561","447808","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","88","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25139","-1","","","","","Algaz Battle Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92090","460452","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","88","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25140","-1","","","","","Commanding Mallet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94626","473130","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","88","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25141","-1","","","","","Halaani Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97186","485933","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","88","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25142","-1","","","","","Telaari Longblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54898","274492","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","89","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25143","-1","","","","","Silver Hand Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56882","284413","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","89","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25144","-1","","","","","Skettis Curved Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58874","294371","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","89","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25145","-1","","","","","Wisdom Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60884","304420","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","89","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25146","-1","","","","","Light-Etched Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62906","314533","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","89","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25147","-1","","","","","Skystrider Katana","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64942","324711","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","89","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25148","-1","","","","","Bone Collector Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66984","334921","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","89","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25149","-1","","","","","Baron's Broadsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69045","345226","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","89","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25150","-1","","","","","Honor Hold Saber","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64360","321802","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","89","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25151","-1","","","","","Assassins' Short Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66273","331366","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","89","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25152","-1","","","","","Howling Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68191","340959","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","89","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25153","-1","","","","","Gladiator Greatblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70130","350651","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","89","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25154","-1","","","","","Blood Groove Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74055","370275","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","89","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25155","-1","","","","","Iron Skull Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76057","380287","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","89","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25156","-1","","","","","Royal Crusader Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67135","335676","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","90","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25157","-1","","","","","Serpentlord Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69567","347836","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","90","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25158","-1","","","","","Skeletal Broadsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72015","360077","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","90","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25159","-1","","","","","Thunderstrike Falchion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74472","372362","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","90","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25160","-1","","","","","Vengeance Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76952","384762","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","90","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25161","-1","","","","","Dragon Wing Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79448","397243","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","90","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25162","-1","","","","","Darkened Broadsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81961","409805","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","90","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25163","-1","","","","","Elexorien Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84481","422405","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","90","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25164","-1","","","","","Crude Umbrafen Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87025","435126","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","90","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25165","-1","","","","","Boulderfist Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89585","447928","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","90","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25166","-1","","","","","Mok'Nathal Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92161","460809","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","90","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25167","-1","","","","","Nethersteel Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94745","473726","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","90","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25168","-1","","","","","Sha'tari Longsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97353","486768","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","90","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25169","-1","","","","","Fel Orc Brute Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99977","499889","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","90","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25170","-1","","","","","Rattan Bo Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65647","328237","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","91","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25171","-1","","","","","Straight Hardwood Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68031","340156","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","91","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25172","-1","","","","","Jinbali Warp-Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70431","352156","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","91","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25173","-1","","","","","Master's Bo Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72847","364236","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","91","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25174","-1","","","","","Hanbo Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75271","376359","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","91","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25175","-1","","","","","Demoniac Longstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77719","388598","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","91","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25176","-1","","","","","Taiji Quarterstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80183","400919","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","91","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25177","-1","","","","","Tanjo Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82663","413319","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","91","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25178","-1","","","","","Bata Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85151","425758","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","91","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25179","-1","","","","","Nguni Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87663","438318","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","91","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25180","-1","","","","","Calenda Fighting Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90191","450959","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","91","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25181","-1","","","","","Tapered Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92736","463680","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","91","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25182","-1","","","","","Crystal-Etched Warstaff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95287","476435","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","91","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25183","-1","","","","","Voodoo Hex-Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97863","489315","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","91","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25184","-1","","","","","Ravager Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55279","276396","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","93","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25185","-1","","","","","Thrasher Blades","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57275","286379","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","93","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25186","-1","","","","","Vampiric Handscythes","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55077","275387","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","93","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25187","-1","","","","","Shekketh Talons","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56971","284858","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","93","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25188","-1","","","","","Spleenripper Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58878","294394","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","93","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25189","-1","","","","","Ironspine Point","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60792","303963","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","93","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25190","-1","","","","","Wight's Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62725","313626","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","93","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25191","-1","","","","","Dread Fangs","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64670","323353","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","93","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25192","-1","","","","","Gutrippers","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66629","333145","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","93","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25193","-1","","","","","Deathclaw Talons","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68593","342967","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","93","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25194","-1","","","","","Serpent's Fangs","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70577","352886","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","93","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25195","-1","","","","","Diamond Tipped Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72574","362870","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","93","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25196","-1","","","","","Boneshredder Claws","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74583","372918","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","93","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25197","-1","","","","","Razor Scythes","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76598","382993","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","93","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25198","-1","","","","","Karaborian Battle Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54088","270444","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","92","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25199","-1","","","","","Knight's War Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56046","280234","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","92","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25200","-1","","","","","Jagged Broadaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58017","290089","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","92","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25201","-1","","","","","Reaver's Sickle","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59995","299978","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","92","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25202","-1","","","","","Kingly Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61992","309960","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","92","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25203","-1","","","","","Chipped Woodchopper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59415","297078","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","92","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25204","-1","","","","","Colossal War Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61303","306517","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","92","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25205","-1","","","","","Silvermoon Crescent Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63210","316051","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","92","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25206","-1","","","","","Berserker Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65130","325650","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","92","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25207","-1","","","","","Shadowmoon Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67062","335314","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","92","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25208","-1","","","","","Bladespire Broadaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69001","345006","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","92","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25209","-1","","","","","Amani Tomahawk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70959","354797","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","92","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25210","-1","","","","","Double-Bladed Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72930","364652","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","92","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25211","-1","","","","","Rockbiter Cutter","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74914","374572","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","92","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25212","-1","","","","","Lucky Strike Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66123","330616","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","92","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25213","-1","","","","","Fel-Touched Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68522","342612","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","92","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25214","-1","","","","","Mok'Nathal Battleaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70937","354689","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","92","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25215","-1","","","","","Spiked Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73369","366847","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","92","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25216","-1","","","","","Ogre Splitting Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75809","379046","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","92","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25217","-1","","","","","Sundering Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78272","391363","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","92","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25218","-1","","","","","Silver-Edged Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80752","403761","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","92","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25219","-1","","","","","Rending Claw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85418","427092","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","92","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25220","-1","","","","","Glorious War-Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87987","439937","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","92","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25221","-1","","","","","Ghostly Battle Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90572","452862","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","92","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25222","-1","","","","","Ceremonial Slayer's Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93173","465868","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","92","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25223","-1","","","","","Windcaller Hatchet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86680","433404","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","92","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25224","-1","","","","","Slavemaster Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89096","445482","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","92","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25225","-1","","","","","Deepforge Broadaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91528","457640","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","92","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25226","-1","","","","","War Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64642","323210","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","94","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25227","-1","","","","","Sha'tari Longspear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66986","334932","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","94","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25228","-1","","","","","Halberd Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69353","346768","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","94","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25229","-1","","","","","Partisan Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71736","358684","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","94","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25230","-1","","","","","Voulge Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74136","370680","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","94","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25231","-1","","","","","Fel-Wrought Halberd","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76543","382718","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","94","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25232","-1","","","","","War Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78974","394874","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","94","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25233","-1","","","","","Battle Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81422","407111","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","94","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25234","-1","","","","","Telaari Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83877","419386","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","94","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25235","-1","","","","","Ethereal-Etched Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88650","443253","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","94","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25236","-1","","","","","Grim Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91203","456017","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","94","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25237","-1","","","","","Nether Trident","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93772","468862","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","94","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25238","-1","","","","","Hellfire War Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96348","481741","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","94","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25239","-1","","","","","Legend's Glaive","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98949","494745","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","94","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25240","-1","","","","","Azerothian Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41917","209589","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","95","0","84","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","57" +"25241","-1","","","","","Ashenvale Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43430","217150","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","95","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","58" +"25242","-1","","","","","Telaari Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44947","224739","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","95","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","59" +"25243","-1","","","","","Windtalker Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42062","210312","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","95","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","60" +"25244","-1","","","","","Viper Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43473","217366","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","95","0","91","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","61" +"25245","-1","","","","","Razorsong Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44893","224467","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","95","0","93","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","62" +"25246","-1","","","","","Thalassian Compound Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46318","231593","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","95","0","96","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","63" +"25247","-1","","","","","Expert's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47758","238790","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","95","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","64" +"25248","-1","","","","","Talbuk Hunting Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49207","246035","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","95","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","65" +"25249","-1","","","","","Ranger's Recurved Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50665","253329","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","95","0","104","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","66" +"25250","-1","","","","","Rocslayer Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52128","260644","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","95","0","107","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","67" +"25251","-1","","","","","Orc Flatbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55052","275262","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","95","0","110","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","68" +"25252","-1","","","","","Dream Catcher Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56574","282872","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","95","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","69" +"25253","-1","","","","","Windspear Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58100","290502","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","95","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","0","0","0","0","0","0","0","0","0","0","70" +"25254","-1","","","","","Tower Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41025","205125","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","95","0","84","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","57" +"25255","-1","","","","","Ram's Head Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42508","212542","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","95","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","58" +"25256","-1","","","","","Stronghold Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44001","220007","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","95","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","59" +"25257","-1","","","","","Citadel Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45499","227498","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","95","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","60" +"25258","-1","","","","","Repeater Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47011","235059","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","95","0","91","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","61" +"25259","-1","","","","","Collapsible Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48533","242668","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","95","0","93","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","62" +"25260","-1","","","","","Archer's Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50065","250326","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","95","0","96","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","63" +"25261","-1","","","","","Mighty Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51601","258007","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","95","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","64" +"25262","-1","","","","","Battle Damaged Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53152","265760","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","95","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","65" +"25263","-1","","","","","Assassins' Silent Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49512","247563","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","95","0","104","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","66" +"25264","-1","","","","","Pocket Ballista","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50952","254761","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","95","0","107","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","67" +"25265","-1","","","","","Barreled Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52395","261979","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","95","0","110","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","68" +"25266","-1","","","","","Well-Balanced Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53854","269272","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","95","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","69" +"25267","-1","","","","","Rampant Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56837","284187","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","95","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","0","0","0","0","0","0","0","0","0","0","70" +"25268","-1","","","","","Lead-Slug Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40132","200661","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","95","0","84","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","57" +"25269","-1","","","","","Longbeard Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41586","207934","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","95","0","86","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","58" +"25270","-1","","","","","Gnomish Assault Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43050","215254","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","95","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","59" +"25271","-1","","","","","Croc-Hunter's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44524","222623","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","95","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","60" +"25272","-1","","","","","PC-54 Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46003","230017","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","95","0","91","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","61" +"25273","-1","","","","","Sawed-Off Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47496","237481","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","95","0","93","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","62" +"25274","-1","","","","","Cliffjumper Shotgun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48998","244994","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","95","0","96","0","0","0","0","179","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","63" +"25275","-1","","","","","Dragonbreath Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50511","252555","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","95","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","64" +"25276","-1","","","","","Tauren Runed Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52027","260139","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","95","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","65" +"25277","-1","","","","","Sporting Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53559","267795","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","95","0","104","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","66" +"25278","-1","","","","","Nessingwary Longrifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55100","275500","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","95","0","107","0","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","67" +"25279","-1","","","","","Sen'jin Longrifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56650","283254","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","95","0","110","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","68" +"25280","-1","","","","","Game Hunter Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58205","291027","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","95","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","69" +"25281","-1","","","","","Big-Boar Battle Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59775","298876","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","95","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","70" +"25282","-1","","","","","Mahogany Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42203","211016","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","96","0","87","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25283","-1","","","","","Crystallized Ebony Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40665","203325","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","96","0","91","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25284","-1","","","","","Purpleheart Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42100","210501","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","96","0","94","0","0","0","0","175","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25285","-1","","","","","Bloodwood Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43545","217725","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","96","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25286","-1","","","","","Yew Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44999","224997","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","96","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25287","-1","","","","","Magician's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46458","232294","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","96","0","104","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25288","-1","","","","","Conjurer's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47932","239662","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","96","0","109","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25289","-1","","","","","Majestic Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49415","247079","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","96","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25290","-1","","","","","Solitaire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50908","254543","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","96","0","117","0","0","0","0","219","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25291","-1","","","","","Nobility Torch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52406","262030","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","96","0","121","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25292","-1","","","","","Mechano-Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53918","269590","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","96","0","125","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25293","-1","","","","","Draenethyst Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55439","277198","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","96","0","130","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25294","-1","","","","","Dragonscale Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56971","284855","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","96","0","133","0","0","0","0","249","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25295","-1","","","","","Flawless Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58506","292532","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","96","0","137","0","0","0","0","255","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25296","-1","","","","","Absorption Dagger","0.6","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55080","275404","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","84","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25297","-1","","","","","Tuning Knife","0.6","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57071","285355","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","84","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25298","-1","","","","","Combustion Dagger","0.6","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59068","295341","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","84","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25299","-1","","","","","Siphoning Dagger","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56754","283770","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","84","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25300","-1","","","","","Lightning Dagger","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58654","293273","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","84","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25301","-1","","","","","Shattering Dagger","0.6","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60568","302841","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","84","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25302","-1","","","","","Soul-Drain Dagger","0.6","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62488","312441","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","84","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25303","-1","","","","","Amplifying Blade","0.6","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64427","322136","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","84","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25304","-1","","","","","Destructo-Blade","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66379","331896","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","84","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25305","-1","","","","","Elemental Dagger","0.6","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68344","341720","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","84","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25306","-1","","","","","Permafrost Dagger","0.6","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70314","351573","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","84","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25307","-1","","","","","Shadow Dagger","0.6","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72305","361525","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","84","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25308","-1","","","","","Thunder Spike","0.6","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74308","371541","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","84","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25309","-1","","","","","Warpdagger","0.6","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76324","381621","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","84","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25310","-1","","","","","Naaru Lightmace","0.6","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53890","269452","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","84","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25311","-1","","","","","Revitalizing Hammer","0.6","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55842","279210","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","84","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25312","-1","","","","","Glorious Scepter","0.6","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57806","289032","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","84","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25313","-1","","","","","Cold-Iron Scepter","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59783","298919","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","84","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25314","-1","","","","","Ceremonial Hammer","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61768","308840","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","84","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25315","-1","","","","","Restorative Mace","0.6","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65421","327109","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","84","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25316","-1","","","","","Spirit-Clad Mace","0.6","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61072","305364","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","84","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25317","-1","","","","","Lesser Sledgemace","0.6","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62967","314835","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","84","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25318","-1","","","","","Ancestral Hammer","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64880","324401","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","84","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25319","-1","","","","","Tranquility Mace","0.6","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66806","334032","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","84","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25320","-1","","","","","Queen's Insignia","0.6","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68745","343728","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","84","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25321","-1","","","","","Divine Hammer","0.6","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70690","353451","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","84","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25322","-1","","","","","Lordly Scepter","0.6","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72654","363274","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","84","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25323","-1","","","","","Ascendant's Scepter","0.6","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74632","373162","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","84","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25324","-1","","","","","Angerstaff","0.4","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65881","329409","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","85","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"25325","-1","","","","","Brutal Scar-Limb","0.4","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68266","341332","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","85","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"25326","-1","","","","","Primal Lore-Staff","0.4","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70673","353369","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","85","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"25327","-1","","","","","Frenzied Staff","0.4","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73097","365486","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","85","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"25328","-1","","","","","Faerie-Kind Staff","0.4","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75536","377684","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","85","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"25329","-1","","","","","Tranquility Staff","0.4","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77984","389922","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","85","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"25330","-1","","","","","Starshine Staff","0.4","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80456","402280","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","85","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"25331","-1","","","","","Vengeance Staff","0.4","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85122","425612","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","85","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"25332","-1","","","","","Reflective Staff","0.4","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87675","438376","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","85","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"25333","-1","","","","","Purification Staff","0.4","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90252","451261","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","85","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"25334","-1","","","","","Intimidating Greatstaff","0.4","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92845","464226","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","85","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"25335","-1","","","","","Feral Warp-Staff","0.4","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95454","477272","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","85","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"25336","-1","","","","","Splintering Greatstaff","0.4","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88752","443760","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","85","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"25337","-1","","","","","Swarming Sting-Staff","0.4","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91175","455878","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","85","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"25338","-1","","","","","Loosely Threaded Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6906","34533","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25339","-1","","","","","Loosely Threaded Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5199","25999","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25340","-1","","","","","Loosely Threaded Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6959","34795","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25341","-1","","","","","Dilapidated Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3763","18815","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25342","-1","","","","","Dilapidated Cloth Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5666","28330","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25343","-1","","","","","Dilapidated Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3791","18958","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25344","-1","","","","","Dilapidated Cloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3805","19028","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25345","-1","","","","","Dilapidated Cloth Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5729","28649","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25346","-1","","","","","Dilapidated Cloth Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7668","38343","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25347","-1","","","","","Dilapidated Cloth Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5926","29631","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25348","-1","","","","","Dilapidated Cloth Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7930","39652","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25349","-1","","","","","Moldy Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9234","46171","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25350","-1","","","","","Moldy Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4633","23169","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25351","-1","","","","","Moldy Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6974","34874","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25352","-1","","","","","Moldy Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4666","23333","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25353","-1","","","","","Moldy Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4683","23416","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25354","-1","","","","","Moldy Leather Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7049","35248","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25355","-1","","","","","Moldy Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9432","47160","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25356","-1","","","","","Moldy Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6424","32122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25357","-1","","","","","Decaying Leather Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9264","46321","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25358","-1","","","","","Decaying Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4650","23250","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25359","-1","","","","","Decaying Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7001","35006","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25360","-1","","","","","Decaying Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4685","23427","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25361","-1","","","","","Decaying Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4703","23516","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25362","-1","","","","","Decaying Leather Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7081","35405","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","131","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25363","-1","","","","","Decaying Leather Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9733","48669","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25364","-1","","","","","Decaying Leather Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7327","36636","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25365","-1","","","","","Eroded Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10921","54608","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","317","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25366","-1","","","","","Eroded Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5480","27401","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25367","-1","","","","","Eroded Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8286","41434","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25368","-1","","","","","Eroded Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5520","27600","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25369","-1","","","","","Eroded Mail Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8310","41550","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25370","-1","","","","","Eroded Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5559","27797","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25371","-1","","","","","Eroded Mail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11158","55794","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25372","-1","","","","","Eroded Mail Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8436","42182","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25373","-1","","","","","Corroded Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12108","60540","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25374","-1","","","","","Corroded Mail Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6075","30375","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25375","-1","","","","","Corroded Mail Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9185","45926","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25376","-1","","","","","Corroded Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5536","27682","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25377","-1","","","","","Corroded Mail Circlet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8337","41685","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25378","-1","","","","","Corroded Mail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5578","27894","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25379","-1","","","","","Corroded Mail Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11508","57543","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25380","-1","","","","","Corroded Mail Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8702","43511","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25381","-1","","","","","Tarnished Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6313","31565","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25382","-1","","","","","Tarnished Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9432","47164","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25383","-1","","","","","Tarnished Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6359","31799","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","246","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25384","-1","","","","","Tarnished Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12694","63470","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25385","-1","","","","","Tarnished Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6406","32030","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","351","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25386","-1","","","","","Tarnished Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9571","47856","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25387","-1","","","","","Tarnished Plate Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12832","64162","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25388","-1","","","","","Tarnished Plate Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9640","48204","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","61" +"25389","-1","","","","","Deteriorating Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7001","35009","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25390","-1","","","","","Deteriorating Plate Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10460","52304","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25391","-1","","","","","Deteriorating Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7052","35261","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25392","-1","","","","","Deteriorating Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14074","70373","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","610","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25393","-1","","","","","Deteriorating Plate Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","35510","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25394","-1","","","","","Deteriorating Plate Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10609","53049","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","496","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25395","-1","","","","","Deteriorating Plate Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13226","66131","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","534","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25396","-1","","","","","Deteriorating Plate Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9937","49686","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","67" +"25397","-1","","","","","Eroded Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18352","91762","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","69","-1","0","0","31","0","0","0","0","59","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25398","-1","","","","","Stone Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23027","115135","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","69","-1","0","0","62","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25399","-1","","","","","Deteriorating Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18490","92453","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","69","-1","0","0","36","0","0","0","0","68","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25400","-1","","","","","Tarnished Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23197","115986","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","69","-1","0","0","72","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25401","-1","","","","","Corroded Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18626","93134","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","69","-1","0","0","38","0","0","0","0","71","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25402","-1","","","","","The Stoppable Force","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23370","116850","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","69","-1","0","0","89","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25403","-1","","","","","Sharpened Stilleto","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18765","93825","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","69","-1","0","0","26","0","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25404","-1","","","","","Dense War Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23540","117701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","69","-1","0","0","76","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25405","-1","","","","","Rusted Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14176","70880","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","69","-1","0","0","34","0","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","64" +"25406","-1","","","","","Broken Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14227","71139","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","69","-1","0","0","48","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","64" +"25407","-1","","","","","The Movable Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12185","60926","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","1842","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","64" +"25408","-1","","","","","Shiny Tail Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25409","-1","","","","","Resilient Tail Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25410","-1","","","","","Damaged Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25411","-1","","","","","Worn Hoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25412","-1","","","","","Dirt-covered Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25413","-1","","","","","Smooth Fur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25414","-1","","","","","Brittle Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25415","-1","","","","","Aged Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25416","-1","","","","","Oshu'gun Crystal Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25417","-1","","","","","Bloody Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25418","-1","","","","","Razor Sharp Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25419","-1","","","","","Unmarked Bag of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25420","-1","","","","","Severed Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25421","-1","","","","","Gnarled Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25422","-1","","","","","Bulging Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25423","-1","","","","","Bag of Premium Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25424","-1","","","","","Gem-Stuffed Envelope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25425","-1","","","","","Molted Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25426","-1","","","","","Brilliant Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25427","-1","","","","","Beaten Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25428","-1","","","","","Savage Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25429","-1","","","","","Grime-encrusted Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25430","-1","","","","","Glimmering Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25431","-1","","","","","Ripped Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25432","-1","","","","","Pristine Fin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25433","-1","","","","","Obsidian Warbeads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25434","-1","","","","","Fractured Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25435","-1","","","","","Hardened Carapace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25436","-1","","","","","Twitching Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25437","-1","","","","","Barbed Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25438","-1","","","","","Malachite Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","0","0","0","0","0","0","0","0","0","13" +"25439","-1","","","","","Tigerseye Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250","1000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","2","0","0","0","0","0","0","0","0","0","13" +"25440","-1","","","","","Cracked Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25441","-1","","","","","Gnarled Boar Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25442","-1","","","","","Mangled Snout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25443","-1","","","","","Bloody Snout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25444","-1","","","","","Corrosive Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25445","-1","","","","","Wretched Ichor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25446","-1","","","","","Brittle Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25447","-1","","","","","Broken Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25448","-1","It's still oozing venom.","","","","Blacksting's Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25449","-1","Heavy and slightly damp from the marsh.","","","","Bundle of Skins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25450","-1","","","","","Creeping Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25451","-1","","","","","Swamp Moss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25452","-1","","","","","Blighted Fungus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25453","-1","","","","","Death Cap Fungus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25454","-1","","","","","Luminescent Globe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25455","-1","","","","","Phosphorescent Globe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25456","-1","","","","","Glowing Spores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25457","-1","","","","","Incandescent Spores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25458","-1","","","","","Mag'har Battle Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25459","-1","Giant mandibles indicative of provincial insect nobility.","","","","""Count"" Ungula's Mandible","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9911","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"25460","-1","","","","","Bleeding Hollow Supply Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25461","-1","","","","","Book of Forgotten Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25462","-1","","","","","Tome of Dusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25463","-1","Pristine!","","","","Pair of Ivory Tusks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25464","-1","","","","","Blood-Tempered Ranseur","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3301","16506","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","23","-1","0","0","45","0","0","0","0","69","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","6","9","6","0","0","0","0","0","0","0","0" +"25465","-1","","","","","Stormcrow Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25466","-1","","","","","Broken Antenna","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25467","-1","","","","","Torn Moth Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","4","16","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25468","-1","Smudged with food, blood, and unidentifiable liquids and substances.","","","","Boulderfist Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2975","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25469","-1","","","","","Grimoire of Avoidance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"25470","-1","","","","","Golden Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25471","-1","","","","","Ebon Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25472","-1","","","","","Snowy Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25473","-1","","","","","Swift Blue Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25474","-1","","","","","Tawny Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25475","-1","","","","","Blue Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25476","-1","","","","","Green Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"25477","-1","","","","","Swift Red Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25478","-1","","","","","Defender's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21595","107976","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","0","0","0","0","0","0","0","0","0","0","0","10","2","0","16","17","25","0","0","0","0","0","0","0","0" +"25479","-1","","","","","Boots of the Earthcaller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27828","139143","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","17","25","0","0","0","0","0","0","0","0","0" +"25480","-1","","","","","Wastewalker's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12358","61792","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","17","18","11","0","0","0","0","0","0","0","0" +"25481","-1","","","","","Suntrider's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21829","109148","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","0","0","0","0","0","0","0","0","0","0","0","10","2","0","16","17","25","0","0","0","0","0","0","0","0" +"25482","-1","","","","","Venn'ren's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28132","140663","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","17","16","0","0","0","0","0","0","0","0","0" +"25483","-1","","","","","Fine Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12491","62458","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","17","16","10","0","0","0","0","0","0","0","0" +"25484","-1","","","","","Telhamat Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12536","62682","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","10","10","0","0","0","0","0","0","0","0","0" +"25485","-1","","","","","Amaan's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22143","110715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","0","0","0","0","0","0","0","0","0","0","0","11","2","0","18","15","7","0","0","0","0","0","0","0","0" +"25486","-1","","","","","Demonslayer's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15782","78913","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","12","18","0","0","0","0","0","0","0","0","0" +"25487","-1","","","","","Wind Dancer's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","12","18","0","0","0","0","0","0","0","0","0" +"25488","-1","","","","","Signet of Aeranas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","0" +"25489","-1","","","","","Windtalker's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17320","86601","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","12","8","0","0","0","0","0","0","0","0" +"25490","-1","","","","","Boulderfist Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25491","-1","","","","","Salvaged Spore Sacs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25492","-1","","","","","Earthcaller's Mace","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60005","300027","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","93","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","13","10","0","0","0","0","0","0","0","0","0" +"25493","-1","","","","","QR 9447 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75286","376434","1","1","1","16","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","93","-1","0","0","173","0","0","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","33","22","0","0","0","0","0","0","0","0" +"25494","-1","","","","","Totemic Staff","0.4","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75559","377797","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","93","-1","0","0","173","0","0","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","33","22","0","0","0","0","0","0","0","0","0" +"25495","-1","","","","","Wolfrider's Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60671","303358","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","93","-1","0","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","7","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","10","13","0","0","0","0","0","0","0","0","0" +"25496","-1","","","","","Mag'har Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45671","228359","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","93","-1","0","0","95","0","0","0","0","177","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","9","0","0","0","0","0","0","0","0","0","0" +"25497","-1","","","","","Broken Balanced Stone Dirk","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1","1200","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","93","-1","0","0","0","1","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","4","12","0","0","0","0","0","0","0","0","0","0" +"25498","-1","","","","","Rough Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25499","-1","","","","","Felblood Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","18","0","0","0","0","0","0","0","0","0" +"25500","-1","","","","","Felforce Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","18","12","0","0","0","0","0","0","0","0","0" +"25501","-1","","","","","Lost Anchorite's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18603","93015","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","13","0","0","0","0","0","0","0","0","0","0" +"25502","-1","","","","","Lightbearer's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21275","106379","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25503","-1","","","","","Flamehandler's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12132","60660","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","18","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","16","10","0","0","0","0","0","0","0","0" +"25504","-1","","","","","Pilgrim's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15219","76097","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","16","0","0","0","0","0","0","0","0","0" +"25505","-1","","","","","Carinda's Wedding Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","18","12","0","0","0","0","0","0","0","0","0" +"25506","-1","","","","","Vindicator's Chain Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28403","142017","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","33","0","0","0","0","0","0","0","0","0" +"25507","-1","","","","","Leggings of Telhamat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31671","158356","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","33","23","0","0","0","0","0","0","0","0","0" +"25508","-1","","","","","Omenai Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29554","147772","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","28","19","0","0","0","0","0","0","0","0","0" +"25509","-1","","","","","Northwind Cleft Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25510","-1","","","","","Ceremonial Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23820","119102","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","22","23","14","0","0","0","0","0","0","0","0" +"25511","-1","","","","","Thunderforge Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41842","209213","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","28","19","0","0","0","0","0","0","0","0" +"25512","-1","","","","","Tribal Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35999","179998","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","28","19","0","0","0","0","0","0","0","0" +"25513","-1","","","","","Clefthoof Hide Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22581","112907","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","33","23","0","0","0","0","0","0","0","0","0" +"25514","-1","","","","","Ikeyen's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25751","128759","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","24","0","0","0","0","0","0","0","0","0" +"25515","-1","","","","","Mud Encrusted Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21444","107220","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","24","0","0","0","0","0","0","0","0","0" +"25516","-1","","","","","Ikeyen's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17218","86093","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","15","10","0","0","0","0","0","0","0","0" +"25517","-1","","","","","Preserver's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25518","-1","","","","","Explorer's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30665","153329","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","23","22","0","0","0","0","0","0","0","0","0" +"25519","-1","","","","","Warden's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61556","307780","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","93","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","12","0","0","0","0","0","0","0","0","0","0" +"25520","-1","","","","","Monster - Polearm, Lantresor","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25521","-1","","","","","Greater Rune of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"25522","-1","","","","","Marshstrider's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32604","163022","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","22","31","0","0","0","0","0","0","0","0","0" +"25523","-1","","","","","Windcaller's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18733","93669","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","16","0","0","0","0","0","0","0","0","0" +"25524","-1","","","","","Cenarion Expedition Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21827","109137","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","16","0","0","0","0","0","0","0","0","0" +"25525","-1","","","","","Zangar Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18032","90160","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","18","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","17","12","12","0","0","0","0","0","0","0","0" +"25526","-1","Teaches you how to make a Greater Rune of Warding.","","","","Plans: Greater Rune of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","350","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25527","-1","","","","","Swift Red Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25528","-1","","","","","Swift Green Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25529","-1","","","","","Swift Purple Gryphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25530","-1","","","","","Helm of Natural Purity","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32096","160484","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","34","23","0","0","0","0","0","0","0","0" +"25531","-1","","","","","Swift Green Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25532","-1","","","","","Swift Yellow Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25533","-1","","","","","Swift Purple Windrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25534","-1","","","","","Marsh Survivalist's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18650","93254","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","18","25","0","0","0","0","0","0","0","0","0" +"25535","-1","","","","","Netherwhelp's Collar","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25536","-1","","","","","Sporeggar Smasher","0.6","0","-15.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73751","368759","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","94","-1","0","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","18","12","12","0","0","0","0","0","0","0","0" +"25537","-1","","","","","Hewing Axe of the Marsh","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92529","462646","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","94","-1","0","0","176","0","0","0","0","265","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","42","28","0","0","0","0","0","0","0","0" +"25538","-1","","","","","Sporeling Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74294","371474","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","94","-1","0","0","99","0","0","0","0","184","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","12","0","0","0","0","0","0","0","0","0" +"25539","-1","","","","","Potion of Water Breathing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"25540","-1","","","","","Dark Cloak of the Marsh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23032","115162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","24","0","0","0","0","0","0","0","0","0" +"25541","-1","","","","","Cenarion Ring of Casting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","24","0","0","0","0","0","0","0","0","0" +"25542","-1","","","","","Lucky Circle of the Fool","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","0","0","0","0","0","0","0","0","0","0" +"25543","-1","","","","","Talbuk Sticker","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64630","323152","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","105","-1","0","0","58","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","15","11","10","0","0","0","0","0","0","0","0" +"25544","-1","","","","","Zerid's Vintage Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48660","243301","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","8","12","0","0","0","0","0","0","0","0","0" +"25545","-1","","","","","Talbuk Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65130","325650","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","15","11","0","0","0","0","0","0","0","0","0" +"25546","-1","","","","","QR XXXX Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45766","228830","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","33","21","0","0","0","0","0","0","0","0" +"25547","-1","","","","","QR XXXX Druid Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24608","123043","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","19","19","0","0","0","0","0","0","0","0","0" +"25548","-1","","","","","Tallstalk Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"25549","-1","","","","","Blood Knight Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25550","-1","","","","","Redcap Toadstool","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"25551","-1","","","","","QR XXXX Hunter Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39969","199846","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","26","39","0","0","0","0","0","0","0","0","0" +"25552","-1","Bears the symbol of Warmaul.","","","","Warmaul Ogre Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25553","-1","","","","","Exodar Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30","150","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","5","-1","0","0","7","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25554","-1","","","","","Kil'sorrow Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25555","-1","","","","","Kil'sorrow Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25556","-1","After a good washing, this mail is serviceable, if a little baggy.","","","","Oversized Ogre Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40712","203563","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","31","20","0","0","0","0","0","0","0","0","0" +"25557","-1","","","","","Salvaged Ango'rosh Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35683","178416","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","19","27","18","0","0","0","0","0","0","0","0" +"25558","-1","","","","","Ango'rosh Souleater's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20500","102502","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","25","25","16","0","0","0","0","0","0","0","0" +"25559","-1","","","","","Lo'ap's Tunic of Muck Diving","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27343","136719","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","19","0","0","0","0","0","0","0","0","0" +"25560","-1","","","","","Lo'ap's Muck Diving Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24806","124033","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","-1","0","0","0","0","0","0","0","0","0","0","0","0","313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","18","11","0","0","0","0","0","0","0","0" +"25561","-1","","","","","Muck-ridden Galoshes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28859","144299","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","32767","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","15","21","13","0","0","0","0","0","0","0","0" +"25562","-1","","","","","Earthen Mark of Razing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","23","13","0","0","0","0","0","0","0","0","0" +"25563","-1","","","","","Earthen Mark of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","23","13","0","0","0","0","0","0","0","0","0" +"25564","-1","","","","","Earthen Mark of Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","0","0","0","0","0","0","0","0","0","0" +"25565","-1","","","","","Spaulders of the Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24421","122106","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","28","19","0","0","0","0","0","0","0","0","0" +"25566","-1","","","","","Judicator's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23009","115045","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25567","-1","","","","","Cord of the Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19684","98424","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","28","19","0","0","0","0","0","0","0","0","0" +"25568","-1","","","","","Warcaster's Scaled Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39519","197598","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","33","22","21","0","0","0","0","0","0","0","0" +"25569","-1","","","","","Murkblood Avenger's Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46281","231405","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","26","25","39","0","0","0","0","0","0","0","0" +"25570","-1","","","","","Melia's Lustrous Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24884","124423","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","33","22","21","0","0","0","0","0","0","0","0" +"25571","-1","","","","","QR 9863 Druid Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24978","124891","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","33","22","21","0","0","0","0","0","0","0","0" +"25572","-1","","","","","QR 9863 Shaman Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41188","205944","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","33","22","21","0","0","0","0","0","0","0","0" +"25573","-1","","","","","QR 9863 Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48223","241118","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","26","25","39","0","0","0","0","0","0","0","0" +"25574","-1","","","","","Greenkeeper's Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27656","138281","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","22","21","15","0","0","0","0","0","0","0" +"25575","-1","","","","","Thunderbringer's Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31225","156129","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","39","26","0","0","0","0","0","0","0","0","0" +"25576","-1","","","","","Smuggler's Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17410","87050","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","28","0","0","0","0","0","0","0","0","0" +"25577","-1","","","","","Greenblood Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27953","139767","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","22","15","21","0","0","0","0","0","0","0" +"25578","-1","","","","","Caustic Feelers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17533","87666","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","28","0","0","0","0","0","0","0","0","0" +"25579","-1","","","","","Dark Shaman's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31672","158362","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","39","26","0","0","0","0","0","0","0","0","0" +"25580","-1","","","","","QR 9867 Warrior Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49443","247215","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","849","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","26","39","26","0","0","0","0","0","0","0","0" +"25581","-1","","","","","QR 9867 Hunter Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21262","106314","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25582","-1","","","","","QR 9867 Druid Moonkin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16091","80459","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","16","24","0","0","0","0","0","0","0","0" +"25583","-1","","","","","Eighty Silver Links","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16154","80771","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","16","24","0","0","0","0","0","0","0","0" +"25584","-1","","","","","Murkblood Oven Mitts","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19460","97300","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25585","-1","","","","","Murkblood Avenger's Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45576","227884","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","849","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","26","39","25","0","0","0","0","0","0","0","0" +"25586","-1","It's heavy!","","","","Burning Blade Peace Offering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25587","-1","","","","","Monster - Item, Broom (On Fire)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25588","-1","","","","","Monster - Mace2H, Totem (Zorbo)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25589","-1","","","","","Clefthoof Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35575","177876","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","788","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","22","22","33","21","0","0","0","0","0","0","0" +"25590","-1","","","","","Head of Cho'war","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25591","-1","","","","","Clefthoof Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17097","85489","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25592","-1","","","","","Clefthoof Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20590","102951","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","0","0","0","0","0","0","0","0","0","0" +"25593","-1","","","","","Windroc Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36095","180476","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","28","18","0","0","0","0","0","0","0","0" +"25594","-1","","","","","Windroc Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31248","156243","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","27","19","0","0","0","0","0","0","0","0","0" +"25595","-1","","","","","Windroc Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27753","138767","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","22","22","21","14","0","0","0","0","0","0","0" +"25596","-1","Welcome to Alex country. Buckle up!","","","","Peep's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","70" +"25597","-1","","","","","Vindicator's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21431","107155","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25598","-1","","","","","Fen Strider's Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18330","91652","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","12","0","0","0","0","0","0","0","0","0" +"25599","-1","","","","","Explorer's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15329","76649","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","12","0","0","0","0","0","0","0","0","0" +"25600","-1","","","","","Bog Walker's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15382","76913","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","12","0","0","0","0","0","0","0","0","0" +"25601","-1","","","","","Murk-Darkened Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18524","92623","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","12","0","0","0","0","0","0","0","0","0" +"25602","-1","","","","","Bog Walker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19739","98696","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","24","16","0","0","0","0","0","0","0","0" +"25603","-1","","","","","Lantresor's Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90253","451269","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","97","-1","0","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","27","0","0","0","0","0","0","0","0","0" +"25604","-1","","","","","Warmaul Prison Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25605","-1","","","","","Burning Blade Devotee's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18690","93451","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","33","22","22","0","0","0","0","0","0","0","0" +"25606","-1","","","","","Burning Blade Cultist Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","21","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","24","0","0","0","0","0","0","0","0","0" +"25607","-1","","","","","Burning Blade Cultist Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","21","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","24","0","0","0","0","0","0","0","0","0" +"25608","-1","","","","","Lantresor's Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94489","472446","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","97","-1","0","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","27","0","0","0","0","0","0","0","0","0" +"25609","-1","","","","","Burning Blade Devotee's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18967","94838","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","33","22","22","0","0","0","0","0","0","0","0" +"25610","-1","","","","","Fen Strider's Footguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28044","140223","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","515","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","14","21","14","0","0","0","0","0","0","0","0" +"25611","-1","","","","","The Witch Doctor's Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10742","53711","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","14","0","0","0","0","0","0","0","0","0" +"25612","-1","","","","","Daggerfen Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33757","168788","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","17","25","16","0","0","0","0","0","0","0","0" +"25613","-1","","","","","Feralfen Mystic's Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12711","63559","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","18","12","0","0","0","0","0","0","0","0" +"25614","-1","","","","","Feralfen Beastmaster's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40408","202044","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","31","20","0","0","0","0","0","0","0","0" +"25615","-1","","","","","Feralfen Champion's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33543","167716","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","25","17","0","0","0","0","0","0","0","0" +"25616","-1","Not the most attractive of headgear, but it gets the job done. Be sure to escape as quickly as possible after putting it on.","","","","Tim's Trusty Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24091","120458","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","34","0","0","0","0","0","0","0","0","0" +"25617","-1","","","","","Captain Krosh's Crash Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24178","120890","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","34","15","0","0","0","0","0","0","0","0" +"25618","-1","","","","","Telaar Courier's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19411","97058","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","13","19","13","0","0","0","0","0","0","0","0" +"25619","-1","","","","","Glowing Crystal Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25620","-1","","","","","Ancient Crystal Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25621","-1","","","","","Serpent Spirit's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18241","91207","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","13","19","13","0","0","0","0","0","0","0","0" +"25622","-1","","","","","Staff of the Four Golden Coins","0.4","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80542","402712","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","102","-1","0","0","201","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","25","24","37","0","0","0","0","0","0","0","0" +"25623","-1","","","","","Bracers of the Battle Cleric","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22766","113832","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","16","11","0","0","0","0","0","0","0","0" +"25624","-1","","","","","King's Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41549","207746","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","3023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","25","18","0","0","0","0","0","0","0","0","0" +"25625","-1","","","","","QR 9922 Feral Druid Staff","0.4","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81455","407275","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","102","-1","0","0","201","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","25","24","37","0","0","0","0","0","0","0","0" +"25626","-1","","","","","QR 9922 Paladin Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23021","115105","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","16","11","0","0","0","0","0","0","0","0" +"25627","-1","","","","","QR 9922 Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42012","210061","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","3023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","25","18","0","0","0","0","0","0","0","0","0" +"25628","-1","","","","","Ogre Mauler's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25629","-1","","","","","Ogre Handler's Shooter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49598","247991","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","10","8","0","0","0","0","0","0","0","0","0" +"25630","-1","","","","","Ogre Basher's Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19910","99551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","19","13","0","0","0","0","0","0","0","0" +"25631","-1","","","","","Boots of the Specialist","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19983","99917","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","19","12","0","0","0","0","0","0","0","0" +"25632","-1","","","","","Wand of Happiness","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50141","250705","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","10","8","0","0","0","0","0","0","0","0","0" +"25633","-1","","","","","Uniting Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25634","-1","","","","","Oshu'gun Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25635","-1","Soft blue light pulses within the crystal.","","","","Eye of Veil Skith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25636","-1","","","","","Talbuk Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19393","96966","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","14","21","0","0","0","0","0","0","0","0","0" +"25637","-1","","","","","Ethereal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12977","64887","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","19","19","12","18","0","0","0","0","0","0","0" +"25638","-1","The globe emits a soft blue glow.","","","","Eye of Veil Reskk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25639","-1","","","","","Hemet's Elekk Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57838","289191","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","103","-1","0","0","103","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","12","0","0","0","0","0","0","0","0","0","0" +"25640","-1","","","","","Nesingwary Safari Stick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58059","290296","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","103","-1","0","0","142","0","0","0","0","265","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","12","0","0","0","0","0","0","0","0","0","0" +"25641","-1","","","","","Broken Fitz's Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","11","47","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","4","12","12","0","0","0","0","0","0","0","0","0" +"25642","-1","Dark energies swirl within the orb.","","","","Eye of Veil Shienor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25643","-1","","","","","Harold's Rejuvenating Broach","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23486","117432","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25644","-1","","","","","Blessed Book of Nagrand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23574","117874","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25645","-1","","","","","Totem of the Plains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23660","118304","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25646","-1","","","","","Monster - Item, Rolling Pin (Mace)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25647","-1","","","","","Telaar Supply Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25648","-1","","","","","Cho'war's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25649","-1","","","","","Knothide Leather Scraps","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25650","-1","","","","","Knothide Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"25651","-1","","","","","Vindicator's Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"25652","-1","","","","","Magister's Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"25653","-1","","","","","Riding Crop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","69" +"25654","-1","","","","","Felscale Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17436","87184","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","0","0","0","0","0","0","0","0","0","57" +"25655","-1","","","","","Felscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26106","130533","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","20","0","0","0","0","0","0","0","0","0","61" +"25656","-1","","","","","Felscale Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36782","183910","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","31","0","0","0","0","0","0","0","0","0","63" +"25657","-1","","","","","Felscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39930","199650","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","611","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","30","0","0","0","0","0","0","0","0","0","66" +"25658","-1","Used for managing smoke signals.","","","","Damp Woolen Blanket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25659","-1","","","","","Scaled Draenic Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30312","151562","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","30","0","0","0","0","0","0","0","0","0","66" +"25660","-1","","","","","Scaled Draenic Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38360","191802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","36","0","0","0","0","0","0","0","0","0","64" +"25661","-1","","","","","Scaled Draenic Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17727","88636","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","24","0","0","0","0","0","0","0","0","0","61" +"25662","-1","","","","","Scaled Draenic Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32525","162627","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","30","0","0","0","0","0","0","0","0","0","57" +"25663","-1","","","","","Monster - Mace, Good Wooden Hammer, On Fire","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25664","-1","Patience is a virtue.","","","","Crappy's Bell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60" +"25665","-1","","","","","Broken Test Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","47","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"25666","-1","","","","","Mug'gok's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25667","-1","","","","","Idol of the Beast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","18839","94198","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","79","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","64" +"25668","-1","","","","","Thick Draenic Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24047","120239","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","613","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","17","27","0","0","0","0","0","0","0","0","63" +"25669","-1","","","","","Thick Draenic Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14274","71373","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","613","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","22","0","0","0","0","0","0","0","0","57" +"25670","-1","","","","","Thick Draenic Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32249","161249","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","613","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","23","34","0","0","0","0","0","0","0","0","62" +"25671","-1","","","","","Thick Draenic Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35070","175350","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","613","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","25","39","0","0","0","0","0","0","0","0","65" +"25672","-1","Doesn't look unusual to you.","","","","Teromoth Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25673","-1","","","","","Wild Draenish Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21717","108585","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","614","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","5","0","0","0","0","0","0","0","0","0","0","8","2","0","11","18","11","11","0","0","0","0","0","0","57" +"25674","-1","","","","","Wild Draenish Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15897","79488","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","614","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","13","18","12","0","0","0","0","0","0","61" +"25675","-1","","","","","Wild Draenish Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30530","152650","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","614","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","18","27","17","0","0","0","0","0","0","63" +"25676","-1","","","","","Wild Draenish Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32311","161559","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","614","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","19","28","19","0","0","0","0","0","0","65" +"25677","-1","","","","","Terokkar Chokeberry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25678","-1","","","","","Warp Hunter Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25679","-1","","","","","Comfortable Insoles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25680","-1","","","","","Stylin' Purple Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31300","156503","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","48","45","0","0","0","0","0","0","0","0","69" +"25681","-1","","","","","Stylin' Adventure Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37703","188519","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","69" +"25682","-1","","","","","Stylin' Jungle Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31539","157695","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","3","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","24","24","24","0","0","0","0","0","0","69" +"25683","-1","","","","","Stylin' Crimson Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37986","189930","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","0","0","0","0","0","0","0","0","0","69" +"25684","-1","","","","","Kokorek's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25685","-1","","","","","Fel Leather Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20771","103855","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","1584","0","0","0","0","573","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","2","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","24","0","0","0","0","0","0","0","0","67" +"25686","-1","","","","","Fel Leather Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32862","164314","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","1584","0","0","0","0","573","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","8","0","0","2","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","17","0","0","0","0","0","0","0","0","69" +"25687","-1","","","","","Fel Leather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43976","219880","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","1585","0","0","0","0","573","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","8","0","0","2","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","25","0","0","0","0","0","0","0","0","69" +"25688","-1","","","","","Monster - Sword2H, Draenei A02 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25689","-1","","","","","Heavy Clefthoof Vest","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45010","225054","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","574","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","290","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","8","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","45","24","0","0","0","0","0","0","0","0","70" +"25690","-1","","","","","Heavy Clefthoof Leggings","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44808","224040","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2871","0","0","0","0","574","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","8","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","29","0","0","0","0","0","0","0","0","70" +"25691","-1","","","","","Heavy Clefthoof Boots","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33726","168631","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2876","0","0","0","0","574","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","30","21","0","0","0","0","0","0","0","0","69" +"25692","-1","","","","","Netherfury Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51110","255553","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2864","0","0","0","0","576","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","37","0","0","0","0","0","0","0","0","0","67" +"25693","-1","","","","","Netherfury Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36667","183339","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2875","0","0","0","0","576","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","36","0","0","0","0","0","0","0","0","0","69" +"25694","-1","","","","","Netherfury Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25734","128671","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2875","0","0","0","0","576","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","27","0","0","0","0","0","0","0","0","0","67" +"25695","-1","","","","","Felstalker Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24563","122819","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2895","0","0","0","0","575","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","357","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","17","0","0","0","0","0","0","0","0","69" +"25696","-1","","","","","Felstalker Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50116","250583","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","104","0","0","0","0","575","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","26","0","0","0","0","0","0","0","0","70" +"25697","-1","","","","","Felstalker Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25155","125776","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2925","0","0","0","0","575","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","11","0","0","0","0","0","0","0","0","70" +"25698","-1","","","","","Monster - Staff, Green Feathered - Green Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25699","-1","","","","","Crystal Infused Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25700","-1","","","","","Fel Scales","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25701","-1","","","","","Breastplate of Retribution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48531","242659","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","23","22","0","0","0","0","0","0","0","0" +"25702","-1","","","","","Scaled Legs of Ruination","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41752","208761","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","23","22","0","0","0","0","0","0","0","0" +"25703","-1","","","","","Zhevra Leather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25705","-1","A document imprinted with a series of sharp, angular characters. The very script itself seems to seethe with anger.","","","","Luanga's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9984","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"25706","-1","A document imprinted with a series of sharp, angular characters. The very script itself seems to seethe with anger.","","","","Luanga's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9985","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"25707","-1","","","","","Fel Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25708","-1","","","","","Thick Clefthoof Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25710","-1","","","","","Moonkin Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26858","134291","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","20","19","0","0","0","0","0","0","0" +"25711","-1","","","","","Deadly Borer Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28751","143756","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","21","22","15","0","0","0","0","0","0","0" +"25712","-1","","","","","Perfectly Balanced Cape","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21640","108201","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","22","0","0","0","0","0","0","0","0","0" +"25713","-1","","","","","Holy Healing Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34604","138416","1","3","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","0" +"25714","-1","","","","","Crimson Pendant of Clarity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28836","115344","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","0" +"25715","-1","","","","","Jade Warrior Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33525","167627","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","20","28","19","0","0","0","0","0","0","0","0" +"25716","-1","","","","","Handguards of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19266","96332","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","307","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","28","20","0","0","0","0","0","0","0","0","0" +"25717","-1","","","","","Sure-Step Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24843","124216","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","20","28","0","0","0","0","0","0","0","0","0" +"25718","-1","","","","","Mantle of Magical Might","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19949","99745","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","17","16","16","10","0","0","0","0","0","0","0" +"25719","-1","","","","","Arakkoa Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","868","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25720","-1","Teaches you how to make Heavy Knothide Leather.","","","","Pattern: Heavy Knothide Leather","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25721","-1","Teaches you how to make a Vindicator's Armor Kit.","","","","Pattern: Vindicator's Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","325","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25722","-1","Teaches you how to make a Magister's Armor Kit.","","","","Pattern: Magister's Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","325","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25723","-1","","","","","Bent Antenna","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20","80","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25724","-1","","","","","Ripped Moth Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22","90","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25725","-1","Teaches you how to make a Riding Crop.","","","","Pattern: Riding Crop","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25726","-1","Teaches you how to make Comfortable Insoles.","","","","Pattern: Comfortable Insoles","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","165","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25727","-1","It's sealed. Maybe you should shake it?","","","","Sealed Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25728","-1","Teaches you how to make a Stylin' Purple Hat.","","","","Pattern: Stylin' Purple Hat","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25729","-1","Teaches you how to make a Stylin' Adventure Hat.","","","","Pattern: Stylin' Adventure Hat","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25730","-1","Teaches you how to make a Stylin' Jungle Hat.","","","","Pattern: Stylin' Jungle Hat","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25731","-1","Teaches you how to make a Stylin' Crimson Hat.","","","","Pattern: Stylin' Crimson Hat","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25732","-1","Teaches you how to make Fel Leather Gloves.","","","","Pattern: Fel Leather Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25733","-1","Teaches you how to make Fel Leather Boots.","","","","Pattern: Fel Leather Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25734","-1","Teaches you how to make Fel Leather Leggings.","","","","Pattern: Fel Leather Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25735","-1","Teaches you how to make a Heavy Clefthoof Vest.","","","","Pattern: Heavy Clefthoof Vest","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25736","-1","Teaches you how to make Heavy Clefthoof Leggings.","","","","Pattern: Heavy Clefthoof Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","355","165","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25737","-1","Teaches you how to make Heavy Clefthoof Boots.","","","","Pattern: Heavy Clefthoof Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","355","165","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25738","-1","Teaches you how to make a Felstalker Belt.","","","","Pattern: Felstalker Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25739","-1","Teaches you how to make Felstalker Bracers.","","","","Pattern: Felstalker Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25740","-1","Teaches you how to make a Felstalker Breastplate.","","","","Pattern: Felstalker Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25741","-1","Teaches you how to make a Netherfury Belt.","","","","Pattern: Netherfury Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25742","-1","Teaches you how to make Netherfury Leggings.","","","","Pattern: Netherfury Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25743","-1","Teaches you how to make Netherfury Boots.","","","","Pattern: Netherfury Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25744","-1","","","","","Dampscale Basilisk Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","676","2705","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25745","-1","Fist-sized, oily seeds from the olemba tree of Terokkar Forest.","","","","Olemba Seed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25746","-1","Looks like a whole bunch of exotic engineering stuff","","","","Box of Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25747","-1","","","","","(Deprecated)Mana Bomb Schematics - Page 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25748","-1","","","","","(Deprecated)Mana Bomb Schematics - Page 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25749","-1","","","","","(Deprecated)Mana Bomb Schematics - Page 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25750","-1","","","","","(Deprecated)Mana Bomb Schematics - Page 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150","600","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25751","-1","","","","","The Master Planner's Blueprints","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25752","-1","","","","","(Deprecated)Mana Bomb Schematics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10014","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"25753","-1","","","","","(Deprecated)Mana Bomb Schematics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10015","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"25754","-1","","","","","Mana Bomb Code Sheet 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25755","-1","","","","","Mana Bomb Code Sheet 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25756","-1","","","","","Mana Bomb Code Sheet 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25757","-1","","","","","Mana Bomb Code Sheet 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25758","-1","","","","","Monster - Polearm, Blood Elf D01","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25759","-1","The inscription reads: Never give them the chance to doubt you.","","","","Mogor's Anointing Club","0.6","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79164","395821","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","103","-1","0","0","92","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","19","0","0","0","0","0","0","0","0","0" +"25760","-1","","","","","Battle Mage's Baton","0.4","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99323","496618","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","103","-1","0","0","137","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","45","31","30","0","0","0","0","0","0","0","0" +"25761","-1","","","","","Staff of Beasts","0.4","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99692","498460","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","103","-1","0","0","215","0","0","0","0","323","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","31","45","30","0","0","0","0","0","0","0","0" +"25762","-1","","","","","Honed Voidaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100050","500251","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","103","-1","0","0","221","0","0","0","0","333","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","31","45","30","0","0","0","0","0","0","0","0" +"25763","-1","","","","","Ceremonial Warmaul Blood-blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80334","401674","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","103","-1","0","0","74","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","19","0","0","0","0","0","0","0","0","0" +"25764","-1","","","","","Mag'hari Fury Brand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80629","403147","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","103","-1","0","0","109","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","19","0","0","0","0","0","0","0","0","0" +"25765","-1","The locations of the Allerian Stronghold and Stonebreaker Hold are clearly marked on this map along with a series of bold ink strokes and assorted orders.","","","","Fel Orc Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25766","-1","The list of creatures that owe Sal'salabim money.","","","","""Creatures That Owe Sal'salabim Golds""","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2976","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25767","-1","","","","","Raliq's Debt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25768","-1","","","","","Coosh'coosh's Debt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25769","-1","","","","","Floon's Debt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25770","-1","Forge Camp: Hate","","","","Fel Cannon Activator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25771","-1","Forge Camp: Fear","","","","Fel Cannon Activator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25772","-1","","","","","Crystalline Kopesh","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75090","375451","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","100","-1","0","0","88","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","12","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","18","13","0","0","0","0","0","0","0","0" +"25773","-1","","","","","Hungering Bone Cudgel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75369","376847","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","100","-1","0","0","67","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","18","0","0","0","0","0","0","0","0","0" +"25774","-1","","","","","Azure Lightblade","0.4","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75656","378282","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","100","-1","0","0","72","0","0","0","0","109","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","5","7","0","0","0","0","0","0","0","0","0","0","0","21","3","0","12","13","18","0","0","0","0","0","0","0","0" +"25775","-1","","","","","Ogre Slayer's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","16","25","0","0","0","0","0","0","0","0" +"25776","-1","","","","","Ogre Slayer's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","24","0","0","0","0","0","0","0","0","0" +"25777","-1","","","","","Ogre Slayer's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22952","114764","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","16","18","11","0","0","0","0","0","0","0","0" +"25778","-1","","","","","Manacles of Remembrance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13373","66865","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","10","14","9","0","0","0","0","0","0","0","0" +"25779","-1","","","","","Warmaul Slayer's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16778","83894","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","18","0","0","0","0","0","0","0","0","0","0" +"25780","-1","","","","","Warmaul Defender's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20207","101037","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","14","21","14","0","0","0","0","0","0","0","0" +"25781","-1","","","","","Segmented Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43576","217883","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","23","33","22","0","0","0","0","0","0","0","0" +"25782","-1","","","","","Sunstrider Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37485","187429","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","22","23","0","0","0","0","0","0","0","0","0" +"25783","-1","","","","","Pilgrim's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18810","94051","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","22","16","15","0","0","0","0","0","0","0","0" +"25784","-1","","","","","Imbued Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","16","12","11","0","0","0","0","0","0","0","0" +"25785","-1","","","","","Adept's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","5","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","12","11","0","0","0","0","0","0","0","0","0" +"25786","-1","I'm going to count backwards from three. When I reach zero, you're going to stop pummeling me... well, that's the theory.","","","","Hypnotist's Watch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7464","29857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25787","-1","","","","","Charm of Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8910","35640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25788","-1","","","","","Dauntless Handguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29291","146456","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","36","25","0","0","0","0","0","0","0","0","0" +"25789","-1","","","","","Rune-Engraved Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25060","125304","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","24","0","0","0","0","0","0","0","0","0" +"25790","-1","","","","","Expedition Scout's Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31447","157236","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","217","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","25","0","0","0","0","0","0","0","0","0" +"25791","-1","","","","","Gloves of Preservation","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21045","105228","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","25","0","0","0","0","0","0","0","0","0" +"25792","-1","","","","","Curate's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25349","126745","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","25","0","0","0","0","0","0","0","0","0" +"25793","-1","","","","","Curate's Footwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21204","106024","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","21","21","0","0","0","0","0","0","0","0","0" +"25794","-1","","","","","Bone Studded Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21285","106428","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","21","21","0","0","0","0","0","0","0","0","0" +"25795","-1","","","","","Gloves of Preservation","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17805","89026","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","21","0","0","0","0","0","0","0","0","0" +"25796","-1","","","","","Lurking Shadow Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26806","134030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","21","0","0","0","0","0","0","0","0","0" +"25797","-1","","","","","Crushing Grasp","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25935","129676","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","31","21","0","0","0","0","0","0","0","0","0" +"25798","-1","","","","","130 Epic Warrior Trinket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25799","-1","","","","","130 Epic Warrior 1H Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","133868","669341","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","130","-1","0","0","145","0","0","0","0","271","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","2","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","23","21","15","0","0","0","0","0","0","0","70" +"25800","-1","","","","","130 Test Caster Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50057","250286","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","35","35","0","0","0","0","0","0","0","70" +"25801","-1","","","","","130 Test Caster Trinket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"25802","-1","","","","","Dreadfang Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25803","-1","","","","","Medallion of the Valiant Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","12","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","18","17","0","0","0","0","0","0","0","0" +"25804","-1","","","","","Naliko's Revenge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","27","18","0","0","0","0","0","0","0","0","0" +"25805","-1","","","","","Mantle of Vivification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26207","131037","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","0","0","0","0","0","0","0","0","0","0" +"25806","-1","","","","","Nethekurse's Rod of Torment","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65751","328757","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","109","-1","0","0","152","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","10","0","0","0","0","0","0","0","0","0" +"25807","-1","The thick, luxurious tail of one of Terokkar Forest's most dangerous predators.","","","","Timber Worg Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25808","-1","","","","","Rod of Dire Shadows","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59918","299592","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","109","-1","0","0","152","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","5","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","10","10","0","0","0","0","0","0","0","0","0" +"25809","-1","","","","","Maimfist's Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","12","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","18","17","0","0","0","0","0","0","0","0" +"25810","-1","","","","","Vicar's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24153","120767","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","0","0","0","0","0","0","0","0","0","0" +"25811","-1","","","","","Conquerer's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","27","18","0","0","0","0","0","0","0","0","0" +"25812","-1","The shaggy pelt of a timber worg.","","","","Timber Worg Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25813","-1","","","","","Small Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1020","4080","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"25814","-1","","","","","Deathskitter's Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25815","-1","","","","","Stonegazer's Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25816","-1","","","","","Monster - Sword, Legion (2H as 1H)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25817","-1","","","","","Blessed Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25818","-1","","","","","Monster - Shield, Legion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25819","-1","","","","","Breastplate of the Warbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56869","284349","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","1048","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","45","31","30","0","0","0","0","0","0","0","0" +"25820","-1","","","","","Metallic Headband of Simm'onz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36691","183459","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","45","0","0","0","0","0","0","0","0","0","0" +"25821","-1","","","","","Leggings of Unending Assault","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40916","204580","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","45","30","0","0","0","0","0","0","0","0","0" +"25822","-1","","","","","Watcher's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32847","164237","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","45","30","0","0","0","0","0","0","0","0","0" +"25823","-1","","","","","Grunt's Waraxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69463","347318","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","947","0","0","85","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","7","0","0","0","0","0","0","0","0","0","5","0","0","13","3","0","11","16","0","0","0","0","0","0","0","0","60" +"25824","-1","","","","","Farseer's Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28695","114780","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","3","0","15","14","0","0","0","0","0","0","0","0","60" +"25825","-1","","","","","Footman's Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69960","349801","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","946","0","0","85","-1","0","0","77","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","13","3","0","16","11","0","0","0","0","0","0","0","0","60" +"25826","-1","","","","","Sage's Band","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","28695","114780","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","11","3","0","15","14","0","0","0","0","0","0","0","0","60" +"25827","-1","","","","","Muck-Covered Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","97","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","16","3","0","30","0","0","0","0","0","0","0","0","0","64" +"25828","-1","","","","","Petrified Lichen Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","3043","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","14","3","0","24","15","0","0","0","0","0","0","0","0","62" +"25829","-1","","","","","Talisman of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","4","0","34","0","0","0","0","0","0","0","0","0","70" +"25830","-1","","","","","Gladiator's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","577","0","0","0","0","0","0","0","123","8","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","53","34","23","13","0","0","0","0","0","0","70" +"25831","-1","","","","","Gladiator's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","577","0","0","0","0","0","0","0","123","8","0","0","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","50","33","23","12","0","0","0","0","0","0","70" +"25832","-1","","","","","Gladiator's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","577","0","0","0","0","0","0","0","123","8","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","29","21","23","0","0","0","0","0","0","70" +"25833","-1","","","","","Gladiator's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","123","8","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","36","19","36","0","0","0","0","0","0","70" +"25834","-1","","","","","Gladiator's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","123","8","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","27","23","14","0","0","0","0","0","0","70" +"25835","-1","","","","","Explorer's Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89596","447982","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","942","0","0","91","-1","0","0","132","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","17","3","0","51","0","0","0","0","0","0","0","0","0","62" +"25836","-1","","","","","Preserver's Cudgel","0.6","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71940","359704","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","942","0","0","91","-1","0","0","97","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","21","3","0","16","11","0","0","0","0","0","0","0","0","62" +"25837","-1","A wolf pelt unlike any other from Terokkar Forest.","","","","Ironjaw's Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25838","-1","","","","","Warden's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36230","181153","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","2873","0","0","0","0","0","0","0","0","0","942","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","5","3","0","30","39","0","0","0","0","0","0","0","0","62" +"25839","-1","","","","","Monster - Staff, Basic Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25840","-1","","","","","Extract of the Afterlife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25841","-1","A sealed vessel of draenei manufacture, containing charged crystals.","","","","Draenei Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25842","-1","The remains are suffused with a soft, white glow.","","","","Restless Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25843","-1","Needed by Enchanters.","","","","Fel Iron Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8000","32000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25844","-1","Needed by Enchanters.","","","","Adamantite Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32000","128000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25845","-1","Needed by Enchanters.","","","","Eternium Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25846","-1","Teaches you how to make an Adamantite Rod.","","","","Plans: Adamantite Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25847","-1","Teaches you how to make an Eternium Rod.","","","","Plans: Eternium Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25848","-1","Teaches you how to make a Runed Adamantite Rod.","","","","Formula: Runed Adamantite Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25849","-1","Teaches you how to make a Runed Eternium Rod.","","","","Formula: Runed Eternium Rod","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25850","-1","","","","","Tuurem Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25852","-1","A grand plumage, fit for the king of the bonelashers.","","","","Tail Feather of Torgos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25853","-1","","","","","Pack of Incendiary Bombs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25854","-1","","","","","Gladiator's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","579","0","0","0","0","0","0","0","123","128","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","42","13","21","13","0","0","0","0","0","0","70" +"25855","-1","","","","","Gladiator's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","579","0","0","0","0","0","0","0","123","128","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","15","18","30","0","0","0","0","0","0","70" +"25856","-1","","","","","Gladiator's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","579","0","0","0","0","0","0","0","123","128","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","51","18","25","24","0","0","0","0","0","0","70" +"25857","-1","","","","","Gladiator's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","123","128","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","14","21","21","0","0","0","0","0","0","70" +"25858","-1","","","","","Gladiator's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","123","128","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","25","28","30","0","0","0","0","0","0","70" +"25859","-1","","","","","Monster - Axe (No Visual)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25860","-1","","","","","Monster - Sword (No Visual)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25861","-1","","","","","Crude Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","3","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","1" +"25862","-1","","","","","Marshberry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25863","-1","","","","","Olemba Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25864","-1","","","","","Telaari Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25865","-1","","","","","Dragonspine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25866","-1","","","","","Greatmother's List of Herbs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2979","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25867","-1","","","","","Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25868","-1","","","","","Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25869","-1","Teaches you how to Transmute an Earthstorm Diamond.","","","","Recipe: Transmute Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25870","-1","Teaches you how to Transmute a Skyfire Diamond.","","","","Recipe: Transmute Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25871","-1","","","","","Standard Thrown Weapon","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","80","-1","0","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25872","-1","","","","","Balanced Throwing Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","30","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","8","-1","0","0","3","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","3" +"25873","-1","","","","","Keen Throwing Knife","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","11" +"25874","-1","","","","","Large Throwing Knife","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","20","-1","0","0","17","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","15" +"25875","-1","","","","","Deadly Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","27","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","22" +"25876","-1","","","","","Gleaming Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","35" +"25877","-1","","","","","Master's Throwing Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","65","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","60" +"25878","-1","","","","","Dusksteel Throwing Knife","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","13253","53012","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","35","1","0","0","0","65","7","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25879","-1","","","","","Monster - Sword2H, Doom Walker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"25880","-1","","","","","Coarse Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25881","-1","","","","","Heavy Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","600","2400","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25882","-1","","","","","Solid Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25883","-1","","","","","Dense Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25884","-1","","","","","Primal Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25886","-1","","","","","Purple Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25887","-1","Teaches you how to make a Purple Smoke Flare.","","","","Schematic: Purple Smoke Flare","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"25888","-1","Teaches you how to craft a Primal Stone Statue.","","","","Design: Primal Stone Statue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","755","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25889","-1","A vial of blessed water from the city of Shattrath.","","","","Draenei Holy Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25890","-1","Only fits in a meta gem slot.","","","","Destructive Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25891","-1","","","","","Pristine Shimmerscale Eel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25893","-1","Only fits in a meta gem slot.","","","","Mystical Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25894","-1","Only fits in a meta gem slot.","","","","Swift Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25895","-1","Only fits in a meta gem slot.","","","","Enigmatic Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25896","-1","Only fits in a meta gem slot.","","","","Powerful Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25897","-1","Only fits in a meta gem slot.","","","","Bracing Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25898","-1","Only fits in a meta gem slot.","","","","Tenacious Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25899","-1","Only fits in a meta gem slot.","","","","Brutal Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25900","-1","","","","","Grimoire of Demonic Frenzy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","56" +"25901","-1","Only fits in a meta gem slot.","","","","Insightful Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25902","-1","Teaches you how to cut a Powerful Earthstorm Diamond.","","","","Design: Powerful Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25903","-1","Teaches you how to cut a Bracing Earthstorm Diamond.","","","","Design: Bracing Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25904","-1","Teaches you how to cut an Insightful Earthstorm Diamond.","","","","Design: Insightful Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25905","-1","Teaches you how to cut a Tenacious Earthstorm Diamond.","","","","Design: Tenacious Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25906","-1","Teaches you how to cut a Brutal Earthstorm Diamond.","","","","Design: Brutal Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25907","-1","Teaches you how to cut a Destructive Skyfire Diamond.","","","","Design: Destructive Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25908","-1","Teaches you how to cut a Swift Skyfire Diamond.","","","","Design: Swift Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25909","-1","Teaches you how to cut a Mystical Skyfire Diamond.","","","","Design: Mystical Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"25910","-1","Teaches you how to cut an Enigmatic Skyfire Diamond.","","","","Design: Enigmatic Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25911","-1","","","","","Salvaged Wood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25912","-1","","","","","Salvaged Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25913","-1","","","","","Ring of the Slain Anchorite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30284","121136","1","3","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","0" +"25914","-1","","","","","Broken Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","13","18","12","0","0","0","0","0","0","0","0" +"25915","-1","","","","","Fallen Vindicator's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62470","312353","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","93","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","10","13","0","0","0","0","0","0","0","0","0" +"25916","-1","","","","","Terokkar Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64487","322436","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","0","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","13","10","0","0","0","0","0","0","0","0","0" +"25917","-1","","","","","Healer's Staff of the Forest","0.4","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80897","404487","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","96","-1","0","0","161","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","34","23","0","0","0","0","0","0","0","0","0" +"25918","-1","","","","","Blood-Guided Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64948","324742","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","96","-1","0","0","45","0","0","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","15","10","9","0","0","0","0","0","0","0","0" +"25919","-1","","","","","Sedai's Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","13","18","12","0","0","0","0","0","0","0","0" +"25920","-1","","","","","Sedai's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","63579","317895","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","93","-1","0","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","9","13","0","0","0","0","0","0","0","0","0" +"25921","-1","","","","","Sedai's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30284","121136","1","3","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","0" +"25922","-1","","","","","Fearless Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21574","107871","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","12","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","25","12","12","0","0","0","0","0","0","0","0" +"25923","-1","","","","","Fierce Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27810","139052","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","12","25","0","0","0","0","0","0","0","0","0" +"25924","-1","","","","","Swamprunner's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23159","115796","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","12","25","0","0","0","0","0","0","0","0","0" +"25925","-1","","","","","Terrorcloth Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18598","92992","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","22","15","0","0","0","0","0","0","0","0" +"25926","-1","Worn by affiliates of the Consortium.","","","","Nexus-Stalker's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","0","0","0","0","0","0","0","0","0","0","0","11","2","0","14","13","21","0","0","0","0","0","0","0","0" +"25927","-1","","","","","Consortium Cloak of the Quick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19247","96239","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","14","14","0","0","0","0","0","0","0","0","0" +"25928","-1","","","","","Ethereal Healing Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","14","0","0","0","0","0","0","0","0","0","0" +"25929","-1","","","","","Cenarion Thicket Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42788","213940","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","16","24","0","0","0","0","0","0","0","0","0" +"25930","-1","","","","","Cenarion Thicket Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27607","138037","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","5","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","24","0","0","0","0","0","0","0","0","0" +"25931","-1","","","","","Cenarion Thicket Circlet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18470","92352","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","16","0","0","0","0","0","0","0","0","0" +"25932","-1","","","","","Cenarion Thicket Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30896","154480","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","31","3","7","0","0","0","0","0","0","0","0","0","0","0","5","2","0","16","17","24","0","0","0","0","0","0","0","0" +"25933","-1","","","","","Extra Sharp Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327876","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","99","-1","0","0","69","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","10","10","9","0","0","0","0","0","0","0","0" +"25934","-1","","","","","Spiked Destroyer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82265","411326","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","99","-1","0","0","183","0","0","0","0","276","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","24","24","36","0","0","0","0","0","0","0","0" +"25935","-1","","","","","Invincible Stave","0.4","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82553","412767","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","99","-1","0","0","167","0","0","0","0","251","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","34","23","0","0","0","0","0","0","0","0" +"25936","-1","","","","","Terokkar Tablet of Vim","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","22","0","0","0","0","0","0","0","0","0","0" +"25937","-1","","","","","Terokkar Tablet of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","22","0","0","0","0","0","0","0","0","0","0" +"25938","-1","A book read many times over, but lovingly cared for by its owner","","","","Mysteries of the Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"25939","-1","","","","","Voidfire Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59195","295975","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","97","-1","0","0","138","0","0","0","0","257","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","9","7","0","0","0","0","0","0","0","64" +"25940","-1","","","","","Idol of the Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","23761","118809","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","64" +"25941","-1","","","","","Boots of the Outlander","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32513","162565","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","21","15","0","0","0","0","0","0","0","64" +"25942","-1","","","","","Faith Bearer's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26119","130597","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","18","19","0","0","0","0","0","0","0","64" +"25943","-1","","","","","Creepjacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74482","372410","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","97","-1","0","0","106","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","13","0","0","0","0","0","0","0","0","64" +"25944","-1","","","","","Shaarde the Greater","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93451","467258","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","97","-1","0","0","205","0","0","0","0","309","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","33","29","0","0","0","0","0","0","0","64" +"25945","-1","","","","","Cloak of Revival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22512","112560","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","16","0","0","0","0","0","0","0","0","64" +"25946","-1","","","","","Nethershade Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28242","141210","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","14","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","21","15","0","0","0","0","0","0","0","64" +"25947","-1","","","","","Lightning-Rod Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34167","170836","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","18","19","0","0","0","0","0","0","0","64" +"25948","-1","","","","","Girdle of the Penitent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22665","113327","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","17","0","0","0","0","0","0","0","0","0","0" +"25949","-1","","","","","Gloves of the Afterlife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16156","80784","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","17","0","0","0","0","0","0","0","0","0" +"25950","-1","","","","","Staff of Polarities","0.4","0","-16.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95526","477634","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","97","-1","0","0","127","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","33","28","0","0","0","0","0","0","0","64" +"25951","-1","","","","","Fleet Refugee's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29422","147114","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","31","3","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","17","18","0","0","0","0","0","0","0","0","0" +"25952","-1","","","","","Scimitar of the Nexus-Stalkers","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76979","384899","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","97","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","14","16","12","0","0","0","0","0","0","0","64" +"25953","-1","","","","","Ethereal Warp-Bow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57944","289721","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","97","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","13","14","0","0","0","0","0","0","0","0","64" +"25954","-1","","","","","Sigil of Shaffar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8377","33510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","16","0","0","0","0","0","0","0","0","64" +"25955","-1","","","","","Mask of the Howling Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35014","175072","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","28","21","0","0","0","0","0","0","0","64" +"25956","-1","","","","","Nexus-Bracers of Vigor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27487","137437","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","433","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","23","13","13","0","0","0","0","0","0","0","64" +"25957","-1","","","","","Ethereal Boots of the Skystrider","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23508","117541","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","19","12","17","0","0","0","0","0","0","64" +"25958","-1","","","","","Eagle Engraved Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21241","106205","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","13","19","0","0","0","0","0","0","0","0" +"25959","-1","","","","","Feathered Armbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18172","90861","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","13","19","0","0","0","0","0","0","0","0","0" +"25960","-1","","","","","Talonstalker Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15201","76006","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","19","0","0","0","0","0","0","0","0","0" +"25961","-1","","","","","Feathered Wrist Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12205","61029","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","13","8","0","0","0","0","0","0","0","0" +"25962","-1","","","","","Longstrider's Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83797","335188","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","16","15","11","0","0","0","0","0","0","0","64" +"25963","-1","","","","","Kokorek's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","31154","124616","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","13","19","0","0","0","0","0","0","0","0" +"25964","-1","","","","","Shaarde the Lesser","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76819","384098","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","100","-1","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","25","14","0","0","0","0","0","0","0","0","65" +"25965","-1","","","","","Cloak of Grasping Talons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18583","92917","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","11","16","0","0","0","0","0","0","0","0" +"25966","-1","","","","","Arakkoa Sage's Shawl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18652","93263","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","11","17","0","0","0","0","0","0","0","0","0" +"25967","-1","","","","","Eagle Crested Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37416","187084","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","699","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","31","15","0","0","0","0","0","0","0","0" +"25968","-1","","","","","Shalassi Sentry's Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32394","161974","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2883","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","15","15","0","0","0","0","0","0","0","0","0" +"25969","-1","A faded engraving reads, 'presented upon graduation from Lonika's School of Roguery.'","","","","Rapscallion's Touch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17981","89908","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","31","32","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","21","15","0","0","0","0","0","0","0","0" +"25970","-1","","","","","Shalassi Oracle's Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21657","108285","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2883","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","15","0","0","0","0","0","0","0","0","0" +"25971","-1","","","","","Stout Oak Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40426","202133","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","80","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","6","7","0","0","0","0","0","0","0","0","0" +"25972","-1","","","","","Deadeye's Piece","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40569","202849","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","80","-1","0","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","6","6","5","0","0","0","0","0","0","0","0" +"25973","-1","","","","","Dark Augur's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40717","203585","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","80","-1","0","0","86","0","0","0","0","161","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","6","0","0","0","0","0","0","0","0","0","0" +"25974","-1","","","","","Helm of Lupine Cunning","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17826","89132","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","24","15","0","0","0","0","0","0","0","0" +"25975","-1","","","","","Wolf Hunter's Guise","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22369","111848","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","34","23","23","0","0","0","0","0","0","0","0" +"25976","-1","","","","","Helm of Lupine Grace","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26944","134722","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","34","0","0","0","0","0","0","0","0","0" +"25977","-1","","","","","Helm of Lupine Ferocity","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31496","157480","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","23","34","23","0","0","0","0","0","0","0","0" +"25978","-1","","","","","Seth's Graphite Fishing Pole","0.4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50177","250886","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","200","356","60","-1","0","0","111","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","52","0","0","0","0","0","0","0","0","0","0" +"25979","-1","","","","","Flintlocke's Piloting Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38850","194250","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","31","21","0","0","0","0","0","0","0","0" +"25980","-1","","","","","Aerodynamic Scaled Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33423","167116","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","0","0","0","0","0","0","0","0","0","0","0","5","2","0","21","21","31","0","0","0","0","0","0","0","0" +"25981","-1","","","","","Dirigible Crash Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20968","104844","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","31","0","0","0","0","0","0","0","0","0" +"25982","-1","","","","","Foreman's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11225","56128","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","15","11","0","0","0","0","0","0","0","0" +"25983","-1","","","","","Heavy Miner's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16901","84508","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","22","0","0","0","0","0","0","0","0","0" +"25984","-1","","","","","Miner's Brace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21204","106021","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","3","2","0","16","22","16","0","0","0","0","0","0","0","0" +"25985","-1","","","","","Cenarion Naturalist's Staff","0.4","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75264","376321","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","93","-1","0","0","188","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","33","22","0","0","0","0","0","0","0","0" +"25986","-1","","","","","Dreadtusk's Fury","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75544","377721","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","93","-1","0","0","111","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","23","33","22","0","0","0","0","0","0","0","0" +"25987","-1","","","","","Helboar Carving Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75824","379122","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","0","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","23","33","0","0","0","0","0","0","0","0" +"25988","-1","","","","","Glowing Alabaster Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","0" +"25989","-1","","","","","Draenethyst Chaplet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"25990","-1","","","","","Smooth Soapstone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","0" +"25991","-1","","","","","Seamless Stone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","22","14","0","0","0","0","0","0","0","0","0" +"25992","-1","","","","","Enforcer's Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","14","0","0","0","0","0","0","0","0","0" +"25993","-1","","","","","Finely Wrought Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","0" +"25994","-1","","","","","Rune of Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","30","0","0","0","0","0","0","0","0","0","0" +"25995","-1","","","","","Star of Sha'naar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","30","0","0","0","0","0","0","0","0","0","0" +"25996","-1","","","","","Emblem of Perseverance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","30","0","0","0","0","0","0","0","0","0","0" +"25997","-1","","","","","Gladiator's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","578","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","866","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","29","28","26","0","0","0","0","0","0","70" +"25998","-1","","","","","Gladiator's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","578","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","34","26","30","0","0","0","0","0","0","70" +"25999","-1","","","","","Gladiator's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","578","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","42","19","22","21","0","0","0","0","0","0","70" +"26000","-1","","","","","Gladiator's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","25","27","21","0","0","0","0","0","0","70" +"26001","-1","","","","","Gladiator's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","30","36","28","25","0","0","0","0","0","70" +"26002","-1","A lively flame crackles on the end of a torch soaked in pitch.","","","","Flaming Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"26003","-1","","","","","Monster - Sword2H, Blood Elf B02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"26004","-1","","","","","Farmhand's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124","622","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26005","-1","","","","","Maatparm's Fungus Lined Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","323","1617","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","29","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","0" +"26006","-1","","","","","Crystal-Flecked Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160","804","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","0","0","0","0","0","0","0","0","0","0" +"26007","-1","","","","","Vindicator's Woolies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","384","1923","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","27","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","4","3","0","0","0","0","0","0","0","0","0" +"26008","-1","","","","","Scholar's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101","506","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26009","-1","","","","","Flutterer Silk Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","294","1473","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"26010","-1","","","","","Vindicator's Soft Sole Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183","918","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26011","-1","","","","","Cryo-Core Attendant's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","386","1934","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","0" +"26012","-1","","","","","Kessel's Cinch Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148","740","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"26013","-1","","","","","Cincture of Woven Reeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","298","1493","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"26014","-1","","","","","Maatparm's Fungus Lined Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93","468","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26015","-1","","","","","Anchorite Neophyte's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205","1029","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"26016","-1","","","","","Surveyor's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","169","849","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26017","-1","","","","","Venomous Silk Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","358","1790","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","0","0","0","0","0","0","0","0","0","0" +"26018","-1","","","","","Elekk Handler's Leathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152","760","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26019","-1","","","","","Maatparm's Fungus Lined Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","395","1976","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","0","0","0","0","0","0","0","0","0","0" +"26020","-1","","","","","Shard-Covered Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","191","958","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","2","0","0","0","0","0","0","0","0","0","0" +"26021","-1","","","","","Vindicator's Leather Chaps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","458","2290","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","4","3","0","0","0","0","0","0","0","0","0" +"26022","-1","","","","","Researcher's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123","619","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26023","-1","","","","","Ravager Hide Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","360","1801","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"26024","-1","","","","","Vindicator's Leather Moccasins","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","224","1123","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26025","-1","","","","","Technician's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","473","2367","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","3","0","0","0","0","0","0","0","0","0","0" +"26026","-1","","","","","Ornately Tooled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","364","1821","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","44","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"26027","-1","","","","","Kessel's Sweat Stained Elekk Leash","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181","908","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"26028","-1","","","","","Maatparm's Fungus Lined Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","126","633","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26029","-1","","","","","Watchman's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","278","1391","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","2","2","0","0","0","0","0","0","0","0","0" +"26030","-1","","","","","Maatparm's Fungus Lined Hauberk","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","507","2535","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","2","3","0","0","0","0","0","0","0","0","0" +"26031","-1","","","","","Elekk Rider's Mail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","196","983","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26032","-1","","","","","Crystal-Studded Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","246","1233","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26033","-1","","","","","Vindicator's Iron Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","589","2946","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","139","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","4","3","0","0","0","0","0","0","0","0","0" +"26034","-1","","","","","Protective Field Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140","702","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26035","-1","","","","","Corin's Handguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","408","2042","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","3","3","0","0","0","0","0","0","0","0","0" +"26036","-1","","","","","Vindicator's Stompers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","255","1279","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","2","0","0","0","0","0","0","0","0","0","0" +"26037","-1","","","","","Lightweight Mesh Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","539","2696","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","3","2","0","0","0","0","0","0","0","0","0" +"26038","-1","","","","","Segmented Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","424","2122","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","4","3","0","0","0","0","0","0","0","0","0" +"26039","-1","","","","","Kessel's Sturdy Riding Handle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","211","1059","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","3","0","0","0","0","0","0","0","0","0","0" +"26040","-1","","","","","Maatparm's Fungus Lined Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147","738","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26041","-1","","","","","Vigilant Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","324","1622","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","3","0","0","0","0","0","0","0","0","0","0","0","9","2","0","2","1","1","0","0","0","0","0","0","0","0" +"26042","-1","You may turn 20 of these items in to Chief Researcher Amereldine at Halaa if the Horde have control of the base.","","","","Oshu'gun Crystal Powder Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"26043","-1","You may turn 20 of these items in to Chief Researcher Kartos at Halaa if the Alliance have control of the base.","","","","Oshu'gun Crystal Powder Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"26044","-1","","","","","Halaa Research Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"26045","-1","","","","","Halaa Battle Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"26046","-1","","","","","[PH] Mark of Nagrand, Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"26047","-1","","","","","[PH] Mark of Nagrand, Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"26048","-1","","","","","Letter to Kialon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"26049","-1","","","","","Old Elekk Prod","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","325","1626","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","11","-1","0","0","7","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26050","-1","","","","","Fist of Argus","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","844","4224","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","16","-1","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26051","-1","","","","","2 Stone Sledgehammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","409","2048","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","11","-1","0","0","21","0","0","0","0","33","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26052","-1","","","","","Vindicator's Smasher","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1063","5318","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","24","0","0","0","0","36","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","4","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","2","3","0","0","0","0","0","0","0","0","0" +"26053","-1","","","","","Elekk Handler's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","330","1650","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","11","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","0" +"26054","-1","","","","","Blade of Argus","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","797","3985","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","16","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","1","0","0","0","0","0","0","0","0","0" +"26055","-1","","","","","Oculus of the Hidden Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92386","369545","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","65" +"26056","-1","","","","","59 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10584","52920","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26057","-1","","","","","59 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15935","79677","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26058","-1","","","","","59 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21326","106633","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26059","-1","","","","","59 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10701","53509","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","64","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26060","-1","","","","","59 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16112","80562","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26061","-1","","","","","59 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21562","107813","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26062","-1","","","","","59 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16231","81157","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26063","-1","","","","","59 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10859","54298","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26064","-1","","","","","60 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11252","56262","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26065","-1","","","","","60 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16940","84701","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26066","-1","","","","","60 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22668","113344","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26067","-1","","","","","60 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11374","56871","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26068","-1","","","","","60 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17122","85614","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26069","-1","","","","","60 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22912","114562","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26070","-1","","","","","60 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16021","80109","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26071","-1","","","","","60 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10722","53611","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26072","-1","","","","","61 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11101","55505","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","62","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26073","-1","","","","","61 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16715","83575","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26074","-1","","","","","61 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22369","111845","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26075","-1","","","","","61 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11226","56133","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26076","-1","","","","","61 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16903","84517","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26077","-1","","","","","61 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22622","113112","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26078","-1","","","","","61 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17028","85142","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26079","-1","","","","","61 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11394","56973","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26080","-1","","","","","62 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11784","58924","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26081","-1","","","","","62 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17742","88713","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26082","-1","","","","","62 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23741","118708","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26083","-1","","","","","62 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11914","59572","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26084","-1","","","","","62 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17936","89684","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26085","-1","","","","","62 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24000","120003","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26086","-1","","","","","62 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16766","83833","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26087","-1","","","","","62 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11221","56106","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","49","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26088","-1","","","","","63 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11597","57988","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26089","-1","","","","","63 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17461","87309","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26090","-1","","","","","63 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23372","116861","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26091","-1","","","","","63 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11730","58654","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26092","-1","","","","","63 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17663","88318","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26093","-1","","","","","63 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23638","118193","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26094","-1","","","","","63 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17796","88981","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26095","-1","","","","","63 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11909","59545","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26096","-1","","","","","64 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12296","61484","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26097","-1","","","","","64 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18512","92562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","82","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26098","-1","","","","","64 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24775","123878","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26099","-1","","","","","64 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12433","62169","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26100","-1","","","","","64 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18720","93600","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26101","-1","","","","","64 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25049","125248","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26102","-1","","","","","64 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18856","94282","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26103","-1","","","","","64 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12947","64736","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26104","-1","","","","","65 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13354","66772","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26105","-1","","","","","65 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20102","100514","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26106","-1","","","","","65 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26898","134493","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26107","-1","","","","","65 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12214","61072","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26108","-1","","","","","65 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18391","91955","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26109","-1","","","","","65 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24616","123080","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26110","-1","","","","","65 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18533","92666","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26111","-1","","","","","65 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12402","62014","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26112","-1","","","","","66 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12786","63934","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26113","-1","","","","","66 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19253","96266","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26114","-1","","","","","66 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25768","128841","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26115","-1","","","","","66 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12932","64664","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26116","-1","","","","","66 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19470","97351","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26117","-1","","","","","66 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26057","130288","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26118","-1","","","","","66 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19616","98081","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26119","-1","","","","","66 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13473","67367","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26120","-1","","","","","67 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13879","69397","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","73","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26121","-1","","","","","67 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20894","104470","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26122","-1","","","","","67 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27958","139794","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26123","-1","","","","","67 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14028","70140","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26124","-1","","","","","67 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21117","105585","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26125","-1","","","","","67 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28255","141279","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26126","-1","","","","","67 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21266","106334","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26127","-1","","","","","67 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12874","64373","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26128","-1","","","","","68 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13257","66287","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26129","-1","","","","","68 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19963","99815","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26130","-1","","","","","68 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26719","133599","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26131","-1","","","","","68 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13409","67048","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26132","-1","","","","","68 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20191","100957","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26133","-1","","","","","68 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27024","135122","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26134","-1","","","","","68 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20343","101716","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26135","-1","","","","","68 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13980","69902","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26136","-1","","","","","69 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14383","71919","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26137","-1","","","","","69 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21654","108272","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26138","-1","","","","","69 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28974","144874","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26139","-1","","","","","69 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14540","72700","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26140","-1","","","","","69 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21888","109444","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26141","-1","","","","","69 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29290","146451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26142","-1","","","","","69 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22044","110221","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26143","-1","","","","","69 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14748","73743","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26144","-1","","","","","70 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15163","75818","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26145","-1","","","","","70 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22826","114130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26146","-1","","","","","70 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30539","152698","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26147","-1","","","","","70 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13867","69337","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26148","-1","","","","","70 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20881","104409","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26149","-1","","","","","70 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27947","139736","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26150","-1","","","","","70 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21041","105206","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26151","-1","","","","","70 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14466","72334","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26152","-1","","","","","71 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14867","74338","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26153","-1","","","","","71 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22381","111909","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26154","-1","","","","","71 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29952","149763","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26155","-1","","","","","71 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15031","75157","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26156","-1","","","","","71 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22629","113149","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26157","-1","","","","","71 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30280","151401","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26158","-1","","","","","71 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22792","113964","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26159","-1","","","","","71 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15250","76251","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26160","-1","","","","","72 TEST Green Cloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15662","78313","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26161","-1","","","","","72 TEST Green Cloth Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23576","117881","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26162","-1","","","","","72 TEST Green Cloth Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31547","157739","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26163","-1","","","","","72 TEST Green Cloth Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15830","79151","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26164","-1","","","","","72 TEST Green Cloth Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23830","119150","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26165","-1","","","","","72 TEST Green Cloth Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31883","159416","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26166","-1","","","","","72 TEST Green Cloth Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23997","119985","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26167","-1","","","","","72 TEST Green Cloth Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14932","74662","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26168","-1","","","","","59 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13180","65902","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26169","-1","","","","","59 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19845","99225","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26170","-1","","","","","59 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26559","132796","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26171","-1","","","","","59 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13329","66646","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26172","-1","","","","","59 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20066","100330","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26173","-1","","","","","59 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26854","134270","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26174","-1","","","","","59 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20214","101074","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26175","-1","","","","","59 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13526","67631","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26176","-1","","","","","60 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14014","70072","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26177","-1","","","","","60 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21098","105492","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26178","-1","","","","","60 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28233","141169","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26179","-1","","","","","60 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14168","70840","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26180","-1","","","","","60 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21326","106634","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26181","-1","","","","","60 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28538","142691","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26182","-1","","","","","60 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21480","107402","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26183","-1","","","","","60 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13351","66758","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26184","-1","","","","","61 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13823","69118","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26185","-1","","","","","61 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20814","104073","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26186","-1","","","","","61 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27858","139292","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26187","-1","","","","","61 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13980","69903","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26188","-1","","","","","61 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21050","105250","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26189","-1","","","","","61 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28172","140862","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26190","-1","","","","","61 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21208","106042","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26191","-1","","","","","61 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14190","70952","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26192","-1","","","","","62 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14676","73384","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26193","-1","","","","","62 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22096","110484","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26194","-1","","","","","62 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29571","147856","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26195","-1","","","","","62 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14838","74193","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26196","-1","","","","","62 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22339","111697","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26197","-1","","","","","62 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29894","149474","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26198","-1","","","","","62 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","112502","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26199","-1","","","","","62 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13972","69861","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26200","-1","","","","","63 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14441","72205","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26201","-1","","","","","63 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21745","108728","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26202","-1","","","","","63 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29103","145516","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26203","-1","","","","","63 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14607","73038","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26204","-1","","","","","63 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21995","109977","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26205","-1","","","","","63 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29439","147197","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26206","-1","","","","","63 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22161","110806","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26207","-1","","","","","63 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14830","74151","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26208","-1","","","","","64 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15313","76567","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26209","-1","","","","","64 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23056","115282","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26210","-1","","","","","64 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30854","154271","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26211","-1","","","","","64 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15484","77423","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26212","-1","","","","","64 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23313","116567","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26213","-1","","","","","64 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31196","155984","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26214","-1","","","","","64 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23484","117420","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26215","-1","","","","","64 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16126","80632","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26216","-1","","","","","65 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16635","83177","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26217","-1","","","","","65 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25039","125199","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26218","-1","","","","","65 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33504","167524","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26219","-1","","","","","65 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16811","84058","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26220","-1","","","","","65 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22902","114511","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26221","-1","","","","","65 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30651","153258","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26222","-1","","","","","65 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23077","115388","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26223","-1","","","","","65 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15444","77221","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26224","-1","","","","","66 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15924","79621","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26225","-1","","","","","66 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23975","119876","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26226","-1","","","","","66 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32088","160443","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26227","-1","","","","","66 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16105","80525","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26228","-1","","","","","66 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24249","121245","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26229","-1","","","","","66 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32450","162252","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26230","-1","","","","","66 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24429","122145","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26231","-1","","","","","66 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16782","83913","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26232","-1","","","","","67 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17286","86434","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26233","-1","","","","","67 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26024","130120","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26234","-1","","","","","67 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34823","174118","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26235","-1","","","","","67 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17474","87371","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26236","-1","","","","","67 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26302","131512","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26237","-1","","","","","67 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35195","175975","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26238","-1","","","","","67 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26489","132449","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26239","-1","","","","","67 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17722","88612","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26240","-1","","","","","68 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16507","82538","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26241","-1","","","","","68 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24857","124288","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26242","-1","","","","","68 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33271","166358","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26243","-1","","","","","68 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16699","83499","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26244","-1","","","","","68 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25143","125716","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26245","-1","","","","","68 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33652","168263","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26246","-1","","","","","68 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25335","126677","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26247","-1","","","","","68 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17411","87057","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26248","-1","","","","","69 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17914","89570","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26249","-1","","","","","69 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26969","134848","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26250","-1","","","","","69 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36090","180454","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26251","-1","","","","","69 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18109","90546","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26252","-1","","","","","69 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27262","136312","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26253","-1","","","","","69 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36481","182407","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26254","-1","","","","","69 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27459","137297","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26255","-1","","","","","69 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18370","91851","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26256","-1","","","","","70 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18887","94436","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26257","-1","","","","","70 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28431","142158","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26258","-1","","","","","70 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38043","190217","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26259","-1","","","","","70 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19087","95436","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26260","-1","","","","","70 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26001","130007","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26261","-1","","","","","70 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34803","174016","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26262","-1","","","","","70 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26200","131003","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26263","-1","","","","","70 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18016","90081","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26264","-1","","","","","71 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18515","92578","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26265","-1","","","","","71 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27876","139383","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26266","-1","","","","","71 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37303","186515","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26267","-1","","","","","71 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18720","93602","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26268","-1","","","","","71 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28183","140919","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26269","-1","","","","","71 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37716","188581","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26270","-1","","","","","71 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28387","141939","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26271","-1","","","","","71 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18994","94970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26272","-1","","","","","72 TEST Green Rogue Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19507","97539","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26273","-1","","","","","72 TEST Green Rogue Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29367","146837","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26274","-1","","","","","72 TEST Green Rogue Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39293","196469","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26275","-1","","","","","72 TEST Green Rogue Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19717","98587","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26276","-1","","","","","72 TEST Green Rogue Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29681","148409","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26277","-1","","","","","72 TEST Green Rogue Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39713","198565","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26278","-1","","","","","72 TEST Green Rogue Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29890","149452","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26279","-1","","","","","72 TEST Green Rogue Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18595","92976","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26280","-1","","","","","59 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15758","78792","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26281","-1","","","","","59 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23830","119150","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26282","-1","","","","","59 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31752","158760","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26283","-1","","","","","59 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15935","79677","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26284","-1","","","","","59 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23992","119962","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26285","-1","","","","","59 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32105","160529","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26286","-1","","","","","59 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24276","121380","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26287","-1","","","","","59 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16171","80859","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26288","-1","","","","","60 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16757","83788","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26289","-1","","","","","60 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25338","126691","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26290","-1","","","","","60 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33757","168788","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26291","-1","","","","","60 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16940","84701","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26292","-1","","","","","60 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25502","127513","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26293","-1","","","","","60 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34123","170615","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26294","-1","","","","","60 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25798","128992","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","331","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26295","-1","","","","","60 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15962","79810","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26296","-1","","","","","61 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16524","82624","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26297","-1","","","","","61 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24993","124965","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26298","-1","","","","","61 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33303","166517","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26299","-1","","","","","61 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16715","83575","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26300","-1","","","","","61 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25165","125825","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26301","-1","","","","","61 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33680","168401","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26302","-1","","","","","61 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25467","127339","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26303","-1","","","","","61 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16966","84834","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26304","-1","","","","","62 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17546","87734","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26305","-1","","","","","62 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26535","132678","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26306","-1","","","","","62 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35354","176774","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26307","-1","","","","","62 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17742","88713","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26308","-1","","","","","62 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26709","133547","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26309","-1","","","","","62 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35743","178716","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","412","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26310","-1","","","","","62 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27024","135124","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26311","-1","","","","","62 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18000","90002","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26312","-1","","","","","63 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17262","86310","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26313","-1","","","","","63 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26109","130547","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26314","-1","","","","","63 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34793","173965","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26315","-1","","","","","63 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17461","87309","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26316","-1","","","","","63 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26293","131469","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26317","-1","","","","","63 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35192","175964","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26318","-1","","","","","63 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26613","133066","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26319","-1","","","","","63 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17729","88645","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26320","-1","","","","","64 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18306","91534","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26321","-1","","","","","64 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27686","138433","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26322","-1","","","","","64 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36890","184452","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26323","-1","","","","","64 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18512","92562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26324","-1","","","","","64 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27872","139362","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26325","-1","","","","","64 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37301","186508","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26326","-1","","","","","64 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28202","141010","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26327","-1","","","","","64 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18787","93936","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26328","-1","","","","","65 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19891","99458","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26329","-1","","","","","65 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30077","150385","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26330","-1","","","","","65 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40063","200318","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26331","-1","","","","","65 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20102","100514","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26332","-1","","","","","65 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30261","151305","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26333","-1","","","","","65 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36643","183218","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26334","-1","","","","","65 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27709","138545","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26335","-1","","","","","65 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18462","92310","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26336","-1","","","","","66 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19036","95180","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26337","-1","","","","","66 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28791","143955","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26338","-1","","","","","66 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38360","191802","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26339","-1","","","","","66 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19253","96266","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26340","-1","","","","","66 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28989","144946","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26341","-1","","","","","66 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38794","193972","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26342","-1","","","","","66 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29335","146676","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26343","-1","","","","","66 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19543","97716","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26344","-1","","","","","67 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20671","103356","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26345","-1","","","","","67 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31254","156273","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26346","-1","","","","","67 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41638","208192","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26347","-1","","","","","67 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20894","104470","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26348","-1","","","","","67 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31453","157268","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26349","-1","","","","","67 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42084","210420","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26350","-1","","","","","67 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31816","159081","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26351","-1","","","","","67 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21191","105959","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26352","-1","","","","","68 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21814","109071","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26353","-1","","","","","68 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29845","149229","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26354","-1","","","","","68 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39772","198861","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26355","-1","","","","","68 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19963","99815","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26356","-1","","","","","68 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30059","150299","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26357","-1","","","","","68 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40229","201146","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26358","-1","","","","","68 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30421","152109","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26359","-1","","","","","68 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20268","101342","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26360","-1","","","","","69 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21418","107090","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26361","-1","","","","","69 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32388","161943","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26362","-1","","","","","69 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43151","215757","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26363","-1","","","","","69 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21654","108272","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26364","-1","","","","","69 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32596","162984","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26365","-1","","","","","69 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43620","218100","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26366","-1","","","","","69 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32979","164895","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","430","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26367","-1","","","","","69 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21967","109838","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26368","-1","","","","","70 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22583","112919","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26369","-1","","","","","70 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34148","170740","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26370","-1","","","","","70 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45490","227454","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26371","-1","","","","","70 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22826","114130","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26372","-1","","","","","70 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34357","171785","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26373","-1","","","","","70 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41602","208012","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26374","-1","","","","","70 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31462","157310","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26375","-1","","","","","70 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20960","104802","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26376","-1","","","","","71 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22136","110680","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26377","-1","","","","","71 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33476","167381","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26378","-1","","","","","71 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44602","223014","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26379","-1","","","","","71 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22381","111909","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26380","-1","","","","","71 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33696","168483","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26381","-1","","","","","71 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45094","225471","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26382","-1","","","","","71 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34095","170478","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26383","-1","","","","","71 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22710","113551","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","264","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26384","-1","","","","","72 TEST Green Hunter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23324","116624","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26385","-1","","","","","72 TEST Green Hunter Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35270","176350","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26386","-1","","","","","72 TEST Green Hunter Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46988","234940","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26387","-1","","","","","72 TEST Green Hunter Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23576","117881","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26388","-1","","","","","72 TEST Green Hunter Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35491","177456","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26389","-1","","","","","72 TEST Green Hunter Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47491","237455","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26390","-1","","","","","72 TEST Green Hunter Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35900","179502","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26391","-1","","","","","72 TEST Green Hunter Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23912","119562","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26392","-1","","","","","59 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18420","92101","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26393","-1","","","","","59 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27525","137625","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26394","-1","","","","","59 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36905","184525","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26395","-1","","","","","59 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18627","93139","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26396","-1","","","","","59 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27834","139170","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","616","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26397","-1","","","","","59 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37321","186608","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26398","-1","","","","","59 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28039","140195","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","569","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26399","-1","","","","","59 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18905","94526","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26400","-1","","","","","60 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19590","97950","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26401","-1","","","","","60 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29269","146349","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26402","-1","","","","","60 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39240","196203","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","785","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26403","-1","","","","","60 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19804","99022","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26404","-1","","","","","60 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29589","147945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26405","-1","","","","","60 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39670","198353","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26406","-1","","","","","60 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29800","149003","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26407","-1","","","","","60 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20090","100454","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26408","-1","","","","","61 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19316","96584","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26409","-1","","","","","61 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28863","144318","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26410","-1","","","","","61 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38706","193530","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26411","-1","","","","","61 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19538","97690","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26412","-1","","","","","61 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29195","145978","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","660","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26413","-1","","","","","61 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39145","195728","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26414","-1","","","","","61 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29414","147070","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26415","-1","","","","","61 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19833","99167","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26416","-1","","","","","62 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20513","102568","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26417","-1","","","","","62 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30648","153242","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26418","-1","","","","","62 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41095","205475","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","838","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26419","-1","","","","","62 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20741","103707","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26420","-1","","","","","62 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30990","154953","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26421","-1","","","","","62 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41548","207740","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26422","-1","","","","","62 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31215","156078","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26423","-1","","","","","62 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21045","105229","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26424","-1","","","","","63 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22309","111547","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26425","-1","","","","","63 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30151","150755","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26426","-1","","","","","63 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40435","202175","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26427","-1","","","","","63 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20411","102059","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26428","-1","","","","","63 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30500","152501","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26429","-1","","","","","63 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40901","204507","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26430","-1","","","","","63 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30735","153675","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26431","-1","","","","","63 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20725","103626","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26432","-1","","","","","64 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21398","106994","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26433","-1","","","","","64 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31976","159880","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26434","-1","","","","","64 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42877","214387","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26435","-1","","","","","64 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21642","108212","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26436","-1","","","","","64 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32335","161676","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26437","-1","","","","","64 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43357","216786","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","779","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26438","-1","","","","","64 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32576","162884","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26439","-1","","","","","64 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21962","109813","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26440","-1","","","","","65 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23256","116280","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26441","-1","","","","","65 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34744","173720","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26442","-1","","","","","65 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46579","232898","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","917","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26443","-1","","","","","65 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23504","117520","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26444","-1","","","","","65 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35113","175565","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26445","-1","","","","","65 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47072","235363","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26446","-1","","","","","65 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32002","160011","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","688","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26447","-1","","","","","65 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21578","107894","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26448","-1","","","","","66 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22250","111250","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26449","-1","","","","","66 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33249","166248","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26450","-1","","","","","66 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44588","222940","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","943","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26451","-1","","","","","66 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22504","112523","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26452","-1","","","","","66 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33628","168144","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26453","-1","","","","","66 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45094","225472","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","826","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26454","-1","","","","","66 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33880","169402","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26455","-1","","","","","66 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22845","114225","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26456","-1","","","","","67 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24166","120832","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26457","-1","","","","","67 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36105","180529","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26458","-1","","","","","67 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48403","242016","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26459","-1","","","","","67 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24427","122139","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26460","-1","","","","","67 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36495","182475","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","788","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26461","-1","","","","","67 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48927","244639","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","849","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26462","-1","","","","","67 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36753","183767","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26463","-1","","","","","67 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24777","123886","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26464","-1","","","","","68 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25505","127526","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26465","-1","","","","","68 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38102","190511","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26466","-1","","","","","68 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46221","231108","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26467","-1","","","","","68 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23333","116665","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26468","-1","","","","","68 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34868","174343","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","810","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26469","-1","","","","","68 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46759","233798","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26470","-1","","","","","68 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35133","175668","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26471","-1","","","","","68 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23691","118457","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26472","-1","","","","","69 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25040","125203","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26473","-1","","","","","69 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37410","187051","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26474","-1","","","","","69 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50159","250797","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","1023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26475","-1","","","","","69 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25315","126577","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26476","-1","","","","","69 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37823","189116","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26477","-1","","","","","69 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50706","253531","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","895","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26478","-1","","","","","69 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38094","190474","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26479","-1","","","","","69 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25682","128414","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26480","-1","","","","","70 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26406","132031","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26481","-1","","","","","70 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39446","197233","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26482","-1","","","","","70 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52884","264421","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","1050","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26483","-1","","","","","70 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26687","133439","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26484","-1","","","","","70 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39869","199348","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26485","-1","","","","","70 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53444","267221","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26486","-1","","","","","70 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36332","181664","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26487","-1","","","","","70 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24501","122507","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26488","-1","","","","","71 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25876","129380","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26489","-1","","","","","71 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38664","193321","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26490","-1","","","","","71 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51843","259218","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","1076","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26491","-1","","","","","71 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26166","130834","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","673","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26492","-1","","","","","71 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39093","195468","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26493","-1","","","","","71 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52417","262085","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","942","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26494","-1","","","","","71 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39382","196911","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","807","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26495","-1","","","","","71 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26552","132761","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26496","-1","","","","","72 TEST Green Warrior Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27268","136342","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","620","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26497","-1","","","","","72 TEST Green Warrior Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40740","203703","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26498","-1","","","","","72 TEST Green Warrior Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54621","273109","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26499","-1","","","","","72 TEST Green Warrior Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27566","137831","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26500","-1","","","","","72 TEST Green Warrior Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41179","205899","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","896","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26501","-1","","","","","72 TEST Green Warrior Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55208","276043","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","965","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26502","-1","","","","","72 TEST Green Warrior Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41475","207377","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26503","-1","","","","","72 TEST Green Warrior Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27957","139789","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26504","-1","","","","","59 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15639","78197","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26505","-1","","","","","60 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16207","81039","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26506","-1","","","","","61 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16780","83900","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26507","-1","","","","","62 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17354","86772","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26508","-1","","","","","63 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17934","89672","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26509","-1","","","","","64 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18518","92590","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26510","-1","","","","","65 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19105","95528","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26511","-1","","","","","66 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19695","98476","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26512","-1","","","","","67 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20290","101452","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26513","-1","","","","","68 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20889","104448","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26514","-1","","","","","69 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21492","107463","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26515","-1","","","","","70 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22097","110486","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26516","-1","","","","","71 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22708","113540","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26517","-1","","","","","72 TEST Green Cloth Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23322","116612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26518","-1","","","","","59 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26519","-1","","","","","60 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26520","-1","","","","","61 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26521","-1","","","","","62 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26522","-1","","","","","63 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26523","-1","","","","","64 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26524","-1","","","","","65 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26525","-1","","","","","66 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26526","-1","","","","","67 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26527","-1","","","","","68 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26528","-1","","","","","69 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26529","-1","","","","","70 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26530","-1","","","","","71 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26531","-1","","","","","72 TEST Green Cloth Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26532","-1","","","","","59 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26533","-1","","","","","60 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26534","-1","","","","","61 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26535","-1","","","","","62 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26536","-1","","","","","63 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26537","-1","","","","","64 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26538","-1","","","","","65 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26539","-1","","","","","66 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26540","-1","","","","","67 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26541","-1","","","","","68 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26542","-1","","","","","69 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26543","-1","","","","","70 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26544","-1","","","","","71 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26545","-1","","","","","72 TEST Green Cloth Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26546","-1","","","","","59 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33608","168040","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","2428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26547","-1","","","","","60 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34828","174142","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","2513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26548","-1","","","","","61 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36057","180285","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","2598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26549","-1","","","","","62 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37290","186451","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","2683","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26550","-1","","","","","63 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38535","192676","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","2768","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26551","-1","","","","","64 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39788","198942","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","2853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26552","-1","","","","","65 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41045","205229","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","2938","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26553","-1","","","","","66 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43431","217155","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","3023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26554","-1","","","","","67 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44738","223692","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","3108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26555","-1","","","","","68 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46054","230270","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","3193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26556","-1","","","","","69 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47373","236866","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","3278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26557","-1","","","","","70 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48705","243525","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","3363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26558","-1","","","","","71 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50045","250226","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","3448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26559","-1","","","","","72 TEST Green Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46511","232556","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","3533","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26560","-1","","","","","59 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26561","-1","","","","","60 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26562","-1","","","","","61 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26563","-1","","","","","62 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26564","-1","","","","","63 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26565","-1","","","","","64 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26566","-1","","","","","65 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26567","-1","","","","","66 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26568","-1","","","","","67 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26569","-1","","","","","68 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26570","-1","","","","","69 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26571","-1","","","","","70 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26572","-1","","","","","71 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26573","-1","","","","","72 TEST Green Off Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26574","-1","","","","","59 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55504","277522","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","103","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26575","-1","","","","","60 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57502","287513","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","103","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26576","-1","","","","","61 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59519","297596","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","103","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26577","-1","","","","","62 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61548","307744","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","103","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26578","-1","","","","","63 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63591","317955","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","103","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26579","-1","","","","","64 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59403","297015","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","103","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26580","-1","","","","","65 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61297","306485","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","103","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26581","-1","","","","","66 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63203","316019","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","103","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26582","-1","","","","","67 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65116","325583","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","103","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26583","-1","","","","","68 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67048","335244","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","103","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26584","-1","","","","","69 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68994","344970","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","103","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26585","-1","","","","","70 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72879","364398","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","103","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26586","-1","","","","","71 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74889","374445","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","103","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26587","-1","","","","","72 TEST Green Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76918","384593","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","103","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26588","-1","","","","","59 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54314","271570","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","103","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26589","-1","","","","","60 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56279","281397","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","103","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26590","-1","","","","","61 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58251","291259","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","103","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26591","-1","","","","","62 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60242","301213","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","103","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26592","-1","","","","","63 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62246","311232","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","103","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26593","-1","","","","","64 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64263","321315","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","103","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26594","-1","","","","","65 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66286","331430","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","103","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26595","-1","","","","","66 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68328","341641","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","103","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26596","-1","","","","","67 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70383","351916","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","103","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26597","-1","","","","","68 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72451","362255","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","103","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26598","-1","","","","","69 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74524","372623","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","103","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26599","-1","","","","","70 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69337","346687","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","103","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26600","-1","","","","","71 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71269","356348","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","103","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26601","-1","","","","","72 TEST Green Mace1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75226","376134","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","103","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26602","-1","","","","","59 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66404","332023","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","102","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26603","-1","","","","","60 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68813","344065","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","102","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26604","-1","","","","","61 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71237","356188","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","102","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26605","-1","","","","","62 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73670","368354","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","102","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26606","-1","","","","","63 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76127","380636","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","102","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26607","-1","","","","","64 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78599","392999","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","102","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26608","-1","","","","","65 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81088","405442","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","102","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26609","-1","","","","","66 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83584","417924","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","102","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26610","-1","","","","","67 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86105","430526","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","102","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26611","-1","","","","","68 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88641","443209","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","102","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26612","-1","","","","","69 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91194","455973","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","102","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26613","-1","","","","","70 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93754","468771","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","102","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26614","-1","","","","","71 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96338","481694","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","102","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26615","-1","","","","","72 TEST Green Mace2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98939","494698","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","102","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26616","-1","","","","","59 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55879","279398","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","102","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26617","-1","","","","","60 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53821","269108","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","102","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26618","-1","","","","","61 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55722","278613","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","102","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26619","-1","","","","","62 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57636","288182","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","102","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26620","-1","","","","","63 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59557","297786","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","102","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26621","-1","","","","","64 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61496","307483","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","102","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26622","-1","","","","","65 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63448","317244","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","102","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26623","-1","","","","","66 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65414","327070","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","102","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26624","-1","","","","","67 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67385","336926","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","102","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26625","-1","","","","","68 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69376","346880","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","102","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26626","-1","","","","","69 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71379","356898","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","102","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26627","-1","","","","","70 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73396","366980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","102","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26628","-1","","","","","71 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75417","377089","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","102","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26629","-1","","","","","72 TEST Green Sword1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77459","387299","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","102","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26630","-1","","","","","59 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68368","341842","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","102","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26631","-1","","","","","60 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70833","354168","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","102","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26632","-1","","","","","61 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73321","366607","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","102","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26633","-1","","","","","62 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70413","352065","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","102","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26634","-1","","","","","63 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72773","363866","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","102","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26635","-1","","","","","64 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75141","375709","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","102","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26636","-1","","","","","65 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77533","387669","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","102","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26637","-1","","","","","66 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79942","399710","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","102","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26638","-1","","","","","67 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82366","411832","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","102","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26639","-1","","","","","68 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84798","423990","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","102","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26640","-1","","","","","69 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87254","436271","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","102","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26641","-1","","","","","70 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89726","448633","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","102","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26642","-1","","","","","71 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92215","461075","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","102","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26643","-1","","","","","72 TEST Green Sword2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94709","473549","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","102","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26644","-1","","","","","59 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66880","334403","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","102","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26645","-1","","","","","60 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69304","346522","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","102","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26646","-1","","","","","61 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71737","358686","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","102","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26647","-1","","","","","62 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74193","370965","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","102","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26648","-1","","","","","63 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76664","383324","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","102","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26649","-1","","","","","64 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81216","406083","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","102","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26650","-1","","","","","65 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83770","418851","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","102","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26651","-1","","","","","66 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78116","390583","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","102","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26652","-1","","","","","67 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80492","402463","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","102","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26653","-1","","","","","68 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82884","414424","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","102","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26654","-1","","","","","69 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85284","426421","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","102","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26655","-1","","","","","70 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87708","438541","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","102","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26656","-1","","","","","71 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90148","450742","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","102","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26657","-1","","","","","72 TEST Green Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92604","463023","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","102","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26658","-1","","","","","59 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52314","261570","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","102","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26659","-1","","","","","60 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54214","271073","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","102","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26660","-1","","","","","61 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56128","280640","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","102","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26661","-1","","","","","62 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58054","290271","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","102","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26662","-1","","","","","63 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59987","299936","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","102","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26663","-1","","","","","64 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61939","309695","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","102","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26664","-1","","","","","65 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63903","319518","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","102","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26665","-1","","","","","66 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67617","338089","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","102","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26666","-1","","","","","67 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69654","348270","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","102","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26667","-1","","","","","68 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71703","358515","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","102","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26668","-1","","","","","69 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73765","368825","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","102","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26669","-1","","","","","70 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75832","379163","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","102","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26670","-1","","","","","71 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77920","389600","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","102","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26671","-1","","","","","72 TEST Green FistWeapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80020","400102","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","102","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26672","-1","","","","","59 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20451","102258","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","103","0","48","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","57" +"26673","-1","","","","","60 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52985","264929","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","84","-1","103","0","83","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26674","-1","","","","","61 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54860","274302","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","87","-1","103","0","85","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26675","-1","","","","","62 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56748","283741","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","90","-1","103","0","87","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26676","-1","","","","","63 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58648","293243","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","103","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26677","-1","","","","","64 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60555","302779","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","96","-1","103","0","90","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26678","-1","","","","","65 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62481","312409","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","99","-1","103","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26679","-1","","","","","66 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64420","322103","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","102","-1","103","0","98","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26680","-1","","","","","67 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66365","331829","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","103","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26681","-1","","","","","68 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70165","350828","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","108","-1","103","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26682","-1","","","","","69 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72188","360944","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","103","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26683","-1","","","","","70 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74225","371125","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","114","-1","103","0","112","0","0","0","0","209","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26684","-1","","","","","71 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76266","381334","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","117","-1","103","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26685","-1","","","","","72 TEST Green Axe1H","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78328","391643","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","103","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26686","-1","","","","","59 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69132","345662","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","103","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26687","-1","","","","","60 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71629","358146","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","103","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26688","-1","","","","","61 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74135","370675","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","103","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26689","-1","","","","","62 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76663","383319","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","103","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26690","-1","","","","","63 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79208","396043","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","103","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26691","-1","","","","","64 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81769","408848","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","103","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26692","-1","","","","","65 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76325","381625","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","103","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26693","-1","","","","","66 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78700","393502","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","103","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26694","-1","","","","","67 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81092","405460","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","103","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26695","-1","","","","","68 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83490","417454","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","103","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26696","-1","","","","","69 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85914","429571","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","103","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26697","-1","","","","","70 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90763","453815","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","103","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26698","-1","","","","","71 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93276","466381","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","103","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26699","-1","","","","","72 TEST Green Axe2H","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95795","478979","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","103","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26700","-1","","","","","59 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67644","338223","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","103","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26701","-1","","","","","60 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70093","350466","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","103","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26702","-1","","","","","61 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72557","362789","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","103","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26703","-1","","","","","62 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75031","375156","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","103","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26704","-1","","","","","63 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77527","387639","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","103","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26705","-1","","","","","64 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80040","400203","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","103","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26706","-1","","","","","65 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82569","412847","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","103","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26707","-1","","","","","66 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85106","425530","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","103","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26708","-1","","","","","67 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87666","438334","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","103","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26709","-1","","","","","68 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90243","451217","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","103","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26710","-1","","","","","69 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92827","464137","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","103","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26711","-1","","","","","70 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95436","477181","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","103","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26712","-1","","","","","71 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88742","443713","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","103","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26713","-1","","","","","72 TEST Green Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93690","468453","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","103","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26714","-1","","","","","59 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39694","198470","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","103","0","120","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26715","-1","","","","","60 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41134","205671","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","103","0","122","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26716","-1","","","","","61 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42584","212920","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","103","0","125","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26717","-1","","","","","62 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44043","220218","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","103","0","128","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26718","-1","","","","","63 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45508","227541","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","103","0","131","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26719","-1","","","","","64 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46987","234935","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","103","0","133","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26720","-1","","","","","65 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48475","242376","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","103","0","137","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26721","-1","","","","","66 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49973","249866","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","103","0","141","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26722","-1","","","","","67 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51475","257379","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","103","0","145","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26723","-1","","","","","68 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52993","264965","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","103","0","149","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26724","-1","","","","","69 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54519","272598","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","103","0","154","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26725","-1","","","","","70 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56056","280281","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","103","0","158","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26726","-1","","","","","71 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57596","287983","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","103","0","162","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26727","-1","","","","","72 TEST Green Bow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59152","295761","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","103","0","165","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26728","-1","","","","","59 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41765","208825","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","102","0","120","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26729","-1","","","","","60 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40212","201063","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","102","0","122","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26730","-1","","","","","61 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41633","208167","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","102","0","125","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26731","-1","","","","","62 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43064","215320","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","102","0","128","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26732","-1","","","","","63 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44504","222522","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","102","0","131","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26733","-1","","","","","64 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45949","229748","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","102","0","133","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26734","-1","","","","","65 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47409","237045","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","102","0","137","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26735","-1","","","","","66 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48878","244390","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","102","0","141","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26736","-1","","","","","67 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50356","251783","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","102","0","145","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26737","-1","","","","","68 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51839","259199","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","102","0","149","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26738","-1","","","","","69 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53337","266688","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","102","0","154","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26739","-1","","","","","70 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54845","274225","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","102","0","158","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26740","-1","","","","","71 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56362","281811","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","102","0","162","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26741","-1","","","","","72 TEST Green Crossbow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57883","289416","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","102","0","165","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26742","-1","","","","","59 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40872","204361","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","81","-1","103","0","120","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26743","-1","","","","","60 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42350","211753","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","84","-1","103","0","122","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26744","-1","","","","","61 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43834","219172","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","103","0","125","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26745","-1","","","","","62 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42084","210423","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","90","-1","103","0","128","0","0","0","0","129","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26746","-1","","","","","63 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43495","217479","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","93","-1","103","0","131","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26747","-1","","","","","64 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44916","224584","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","103","0","133","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26748","-1","","","","","65 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46342","231713","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","99","-1","103","0","137","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26749","-1","","","","","66 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47782","238913","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","102","-1","103","0","141","0","0","0","0","142","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26750","-1","","","","","67 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49232","246162","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","103","0","145","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26751","-1","","","","","68 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50691","253459","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","103","0","149","0","0","0","0","150","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26752","-1","","","","","69 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52155","260778","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","103","0","154","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26753","-1","","","","","70 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53634","268170","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","103","0","158","0","0","0","0","158","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26754","-1","","","","","71 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55122","275611","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","117","-1","103","0","162","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26755","-1","","","","","72 TEST Green Gun","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56620","283101","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","120","-1","103","0","165","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26756","-1","","","","","59 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39979","199897","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","101","0","125","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26757","-1","","","","","60 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41429","207145","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","101","0","130","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26758","-1","","","","","61 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42888","214440","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","101","0","134","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26759","-1","","","","","62 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44352","221762","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","101","0","139","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26760","-1","","","","","63 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45830","229154","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","101","0","144","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26761","-1","","","","","64 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47318","236593","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","101","0","148","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26762","-1","","","","","65 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50089","250446","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","101","0","155","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26763","-1","","","","","66 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51626","258130","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","101","0","162","0","0","0","0","162","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26764","-1","","","","","67 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48108","240541","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","101","0","168","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26765","-1","","","","","68 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49538","247693","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","101","0","174","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26766","-1","","","","","69 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50978","254894","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","101","0","179","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26767","-1","","","","","70 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52423","262115","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","101","0","185","0","0","0","0","186","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26768","-1","","","","","71 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53882","269412","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","101","0","191","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26769","-1","","","","","72 TEST Green Wand","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55351","276756","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","101","0","196","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26770","-1","","","","","59 TEST Green Spell Dagger","0.6","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52121","260605","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","105","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26771","-1","","","","","60 TEST Green Spell Dagger","0.6","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54009","270049","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","105","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26772","-1","","","","","61 TEST Green Spell Dagger","0.6","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55916","279584","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","105","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26773","-1","","","","","62 TEST Green Spell Dagger","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57836","289182","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","105","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26774","-1","","","","","63 TEST Green Spell Dagger","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59769","298846","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","105","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26775","-1","","","","","64 TEST Green Spell Dagger","0.6","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61708","308542","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","105","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26776","-1","","","","","65 TEST Green Spell Dagger","0.6","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63666","318333","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","105","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26777","-1","","","","","66 TEST Green Spell Dagger","0.6","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65637","328188","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","105","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26778","-1","","","","","67 TEST Green Spell Dagger","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69404","347021","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","105","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26779","-1","","","","","68 TEST Green Spell Dagger","0.6","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71446","357234","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","105","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26780","-1","","","","","69 TEST Green Spell Dagger","0.6","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73502","367512","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","105","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26781","-1","","","","","70 TEST Green Spell Dagger","0.6","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75570","377853","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","105","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26782","-1","","","","","71 TEST Green Spell Dagger","0.6","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77644","388222","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","105","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26783","-1","","","","","72 TEST Green Spell Dagger","0.6","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79738","398692","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","105","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26784","-1","","","","","59 TEST Green Healer Mace","0.6","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56297","281489","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","105","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26785","-1","","","","","60 TEST Green Healer Mace","0.6","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52786","263932","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","105","0","54","0","0","0","0","101","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26786","-1","","","","","61 TEST Green Healer Mace","0.6","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54649","273246","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","105","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26787","-1","","","","","62 TEST Green Healer Mace","0.6","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56530","282652","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","105","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26788","-1","","","","","63 TEST Green Healer Mace","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58424","292123","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","105","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26789","-1","","","","","64 TEST Green Healer Mace","0.6","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60331","301657","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","105","0","59","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26790","-1","","","","","65 TEST Green Healer Mace","0.6","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62244","311224","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","105","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26791","-1","","","","","66 TEST Green Healer Mace","0.6","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64177","320886","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","105","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26792","-1","","","","","67 TEST Green Healer Mace","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66122","330613","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","105","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26793","-1","","","","","68 TEST Green Healer Mace","0.6","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68074","340370","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","105","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26794","-1","","","","","69 TEST Green Healer Mace","0.6","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71926","359631","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","105","0","71","0","0","0","0","132","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26795","-1","","","","","70 TEST Green Healer Mace","0.6","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73956","369780","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","105","0","73","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26796","-1","","","","","71 TEST Green Healer Mace","0.6","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75998","379993","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","105","0","75","0","0","0","0","141","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26797","-1","","","","","72 TEST Green Healer Mace","0.6","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78046","390233","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","105","0","77","0","0","0","0","144","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26798","-1","","","","","59 TEST Green Feral Staff","0.4","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68884","344422","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","81","-1","102","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26799","-1","","","","","60 TEST Green Feral Staff","0.4","0","-4.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71373","356866","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","84","-1","102","0","166","0","0","0","0","250","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26800","-1","","","","","61 TEST Green Feral Staff","0.4","0","-5.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73878","369391","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","87","-1","102","0","170","0","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26801","-1","","","","","62 TEST Green Feral Staff","0.4","0","-6.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76391","381959","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","90","-1","102","0","174","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26802","-1","","","","","63 TEST Green Feral Staff","0.4","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78928","394643","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","93","-1","102","0","178","0","0","0","0","267","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26803","-1","","","","","64 TEST Green Feral Staff","0.4","0","-8.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81481","407407","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","96","-1","102","0","181","0","0","0","0","273","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26804","-1","","","","","65 TEST Green Feral Staff","0.4","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84050","420252","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","102","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26805","-1","","","","","66 TEST Green Feral Staff","0.4","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78396","391981","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","102","-1","102","0","196","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26806","-1","","","","","67 TEST Green Feral Staff","0.4","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80779","403898","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","102","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26807","-1","","","","","68 TEST Green Feral Staff","0.4","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83179","415896","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","102","0","210","0","0","0","0","316","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26808","-1","","","","","69 TEST Green Feral Staff","0.4","0","-18.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85585","427929","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","111","-1","102","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26809","-1","","","","","70 TEST Green Feral Staff","0.4","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88017","440087","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","102","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26810","-1","","","","","71 TEST Green Feral Staff","0.4","0","-22","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92931","464659","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","117","-1","102","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26811","-1","","","","","72 TEST Green Feral Staff","0.4","0","-23.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95453","477265","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","120","-1","102","0","237","0","0","0","0","356","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26812","-1","","","","","59 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13479","67396","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26813","-1","","","","","59 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20293","101466","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26814","-1","","","","","59 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27157","135785","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26815","-1","","","","","59 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13628","68140","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26816","-1","","","","","59 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20514","102572","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26817","-1","","","","","59 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27451","137259","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26818","-1","","","","","59 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20663","103316","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26819","-1","","","","","59 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13825","69125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26820","-1","","","","","60 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14323","71615","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26821","-1","","","","","60 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21561","107807","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26822","-1","","","","","60 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28851","144255","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26823","-1","","","","","60 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14475","72376","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26824","-1","","","","","60 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21789","108949","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26825","-1","","","","","60 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26384","131924","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26826","-1","","","","","60 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20415","102078","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26827","-1","","","","","60 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13660","68301","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26828","-1","","","","","61 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14141","70709","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26829","-1","","","","","61 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21292","106460","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26830","-1","","","","","61 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28495","142475","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26831","-1","","","","","61 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14298","71494","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26832","-1","","","","","61 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21527","107637","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26833","-1","","","","","61 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28809","144045","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26834","-1","","","","","61 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21686","108430","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26835","-1","","","","","61 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14508","72543","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26836","-1","","","","","62 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15004","75024","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26837","-1","","","","","62 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22588","112944","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","147","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26838","-1","","","","","62 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30227","151136","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26839","-1","","","","","62 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15166","75832","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26840","-1","","","","","62 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22831","114157","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26841","-1","","","","","62 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30550","152754","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26842","-1","","","","","62 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21368","106844","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26843","-1","","","","","62 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14300","71501","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26844","-1","","","","","63 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14778","73893","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26845","-1","","","","","63 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22252","111261","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26846","-1","","","","","63 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29778","148893","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26847","-1","","","","","63 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14945","74726","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26848","-1","","","","","63 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22502","112510","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26849","-1","","","","","63 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30114","150573","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26850","-1","","","","","63 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22667","113339","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26851","-1","","","","","63 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15167","75839","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26852","-1","","","","","64 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15660","78303","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26853","-1","","","","","64 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23577","117888","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26854","-1","","","","","64 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31548","157744","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26855","-1","","","","","64 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15832","79160","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26856","-1","","","","","64 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23834","119173","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26857","-1","","","","","64 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31891","159458","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26858","-1","","","","","64 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22285","111427","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26859","-1","","","","","64 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14914","74573","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26860","-1","","","","","65 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15389","76949","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26861","-1","","","","","65 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23171","115856","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26862","-1","","","","","65 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31013","155067","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26863","-1","","","","","65 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15566","77830","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26864","-1","","","","","65 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23437","117189","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26865","-1","","","","","65 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31365","156829","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26866","-1","","","","","65 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23613","118066","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26867","-1","","","","","65 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15801","79006","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26868","-1","","","","","66 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16291","81455","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26869","-1","","","","","66 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24525","122626","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26870","-1","","","","","66 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32822","164110","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26871","-1","","","","","66 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16471","82359","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26872","-1","","","","","66 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24796","123983","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26873","-1","","","","","66 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33183","165919","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26874","-1","","","","","66 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25632","128164","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26875","-1","","","","","66 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17149","85747","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26876","-1","","","","","67 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17663","88316","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26877","-1","","","","","67 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24054","120270","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26878","-1","","","","","67 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32197","160985","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26879","-1","","","","","67 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16161","80805","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26880","-1","","","","","67 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24332","121663","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26881","-1","","","","","67 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32568","162842","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26882","-1","","","","","67 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24520","122600","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26883","-1","","","","","67 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16409","82045","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26884","-1","","","","","68 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16893","84469","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26885","-1","","","","","68 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25436","127184","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26886","-1","","","","","68 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34043","170219","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26887","-1","","","","","68 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17084","85421","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26888","-1","","","","","68 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25722","128612","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26889","-1","","","","","68 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34424","172124","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26890","-1","","","","","68 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26602","133014","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26891","-1","","","","","68 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17797","88988","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26892","-1","","","","","69 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18309","91549","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26893","-1","","","","","69 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27563","137817","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26894","-1","","","","","69 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36882","184412","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26895","-1","","","","","69 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18505","92525","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26896","-1","","","","","69 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27856","139281","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26897","-1","","","","","69 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37273","186365","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26898","-1","","","","","69 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25388","126941","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26899","-1","","","","","69 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16989","84946","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"26900","-1","","","","","70 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17472","87362","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26901","-1","","","","","70 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26309","131548","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26902","-1","","","","","70 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35214","176071","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26903","-1","","","","","70 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17672","88362","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26904","-1","","","","","70 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26609","133048","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26905","-1","","","","","70 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35614","178071","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26906","-1","","","","","70 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27531","137658","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","198","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26907","-1","","","","","70 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18421","92108","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"26908","-1","","","","","71 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18930","94654","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26909","-1","","","","","71 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28499","142497","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","186","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26910","-1","","","","","71 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38133","190667","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26911","-1","","","","","71 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19135","95677","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","169","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26912","-1","","","","","71 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28806","144033","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26913","-1","","","","","71 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38546","192733","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26914","-1","","","","","71 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29010","145052","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26915","-1","","","","","71 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19409","97046","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"26916","-1","","","","","72 TEST Green Druid Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19932","99663","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26917","-1","","","","","72 TEST Green Druid Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30004","150024","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26918","-1","","","","","72 TEST Green Druid Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36329","181646","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26919","-1","","","","","72 TEST Green Druid Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18235","91175","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26920","-1","","","","","72 TEST Green Druid Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27458","137292","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26921","-1","","","","","72 TEST Green Druid Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36748","183742","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26922","-1","","","","","72 TEST Green Druid Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28424","142122","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26923","-1","","","","","72 TEST Green Druid Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19020","95100","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"26924","-1","","","","","59 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16117","80586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26925","-1","","","","","59 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24370","121853","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","293","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26926","-1","","","","","59 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32469","162347","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26927","-1","","","","","59 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16294","81471","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26928","-1","","","","","59 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24530","122653","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","105","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26929","-1","","","","","59 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32823","164116","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26930","-1","","","","","59 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24816","124082","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26931","-1","","","","","59 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16530","82653","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"26932","-1","","","","","60 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17127","85639","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26933","-1","","","","","60 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25896","129480","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26934","-1","","","","","60 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34498","172491","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26935","-1","","","","","60 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17310","86553","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26936","-1","","","","","60 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26055","130277","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","105","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26937","-1","","","","","60 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34863","174318","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26938","-1","","","","","60 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24515","122575","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","331","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26939","-1","","","","","60 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16332","81662","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"26940","-1","","","","","61 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16906","84534","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26941","-1","","","","","61 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25568","127842","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26942","-1","","","","","61 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34067","170336","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26943","-1","","","","","61 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17097","85485","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26944","-1","","","","","61 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25738","128690","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","105","0","0","0","0","0","0","0","0","0","0","0","371","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26945","-1","","","","","61 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34444","172220","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26946","-1","","","","","61 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26043","130217","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26947","-1","","","","","61 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17348","86744","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"26948","-1","","","","","62 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17940","89702","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","265","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26949","-1","","","","","62 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27128","135643","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26950","-1","","","","","62 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36142","180710","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26951","-1","","","","","62 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18134","90673","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26952","-1","","","","","62 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27299","136499","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","105","0","0","0","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26953","-1","","","","","62 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36530","182652","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","412","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26954","-1","","","","","62 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25660","128304","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26955","-1","","","","","62 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17095","85475","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"26956","-1","","","","","63 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17667","88336","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26957","-1","","","","","63 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26720","133600","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26958","-1","","","","","63 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35603","178017","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26959","-1","","","","","63 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17867","89335","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26960","-1","","","","","63 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26901","134508","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","105","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26961","-1","","","","","63 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36003","180016","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26962","-1","","","","","63 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27223","136118","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26963","-1","","","","","63 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18134","90671","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"26964","-1","","","","","64 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18723","93618","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26965","-1","","","","","64 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28314","141573","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26966","-1","","","","","64 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37724","188620","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26967","-1","","","","","64 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18929","94646","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26968","-1","","","","","64 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28497","142489","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","105","0","0","0","0","0","0","0","0","0","0","0","406","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26969","-1","","","","","64 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38135","190677","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26970","-1","","","","","64 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26757","133786","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26971","-1","","","","","64 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17828","89142","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"26972","-1","","","","","65 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18396","91984","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26973","-1","","","","","65 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27824","139124","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26974","-1","","","","","65 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37074","185370","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26975","-1","","","","","65 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18608","93040","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26976","-1","","","","","65 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28018","140094","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","105","0","0","0","0","0","0","0","0","0","0","0","417","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26977","-1","","","","","65 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","187503","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26978","-1","","","","","65 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28354","141773","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26979","-1","","","","","65 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18890","94452","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"26980","-1","","","","","66 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19476","97381","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26981","-1","","","","","66 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29454","147270","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26982","-1","","","","","66 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39240","196202","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26983","-1","","","","","66 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19693","98466","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26984","-1","","","","","66 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29649","148247","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","105","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26985","-1","","","","","66 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39674","198373","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26986","-1","","","","","66 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29998","149991","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26987","-1","","","","","66 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20506","102531","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"26988","-1","","","","","67 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21123","105615","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26989","-1","","","","","67 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31935","159676","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26990","-1","","","","","67 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38486","192433","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26991","-1","","","","","67 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19318","96591","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26992","-1","","","","","67 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29089","145449","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","105","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26993","-1","","","","","67 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38932","194661","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26994","-1","","","","","67 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29441","147209","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26995","-1","","","","","67 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19616","98080","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"26996","-1","","","","","68 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20197","100989","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26997","-1","","","","","68 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30544","152720","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26998","-1","","","","","68 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40698","203494","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"26999","-1","","","","","68 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20426","102131","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27000","-1","","","","","68 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30751","153758","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","105","0","0","0","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27001","-1","","","","","68 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41156","205780","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27002","-1","","","","","68 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31120","155600","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27003","-1","","","","","68 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21282","106411","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27004","-1","","","","","69 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21893","109465","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27005","-1","","","","","69 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33104","165521","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27006","-1","","","","","69 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44101","220507","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27007","-1","","","","","69 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22129","110647","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27008","-1","","","","","69 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33309","166546","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","105","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27009","-1","","","","","69 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44570","222850","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27010","-1","","","","","69 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33694","168474","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","430","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27011","-1","","","","","69 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20310","101553","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27012","-1","","","","","70 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20886","104431","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27013","-1","","","","","70 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31590","157951","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27014","-1","","","","","70 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42095","210478","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27015","-1","","","","","70 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21126","105631","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27016","-1","","","","","70 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31810","159053","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","105","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27017","-1","","","","","70 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42575","212878","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27018","-1","","","","","70 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32195","160976","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27019","-1","","","","","70 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22025","110126","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27020","-1","","","","","71 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22634","113171","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27021","-1","","","","","71 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34226","171134","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","414","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27022","-1","","","","","71 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45599","227996","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27023","-1","","","","","71 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22880","114400","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","376","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27024","-1","","","","","71 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34444","172220","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","105","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27025","-1","","","","","71 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46090","230453","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27026","-1","","","","","71 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34846","174231","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27027","-1","","","","","71 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23208","116042","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","264","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27028","-1","","","","","72 TEST Green Shaman Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23834","119173","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27029","-1","","","","","72 TEST Green Shaman Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36038","180191","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27030","-1","","","","","72 TEST Green Shaman Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48007","240038","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27031","-1","","","","","72 TEST Green Shaman Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21797","108987","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27032","-1","","","","","72 TEST Green Shaman Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32823","164116","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","105","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27033","-1","","","","","72 TEST Green Shaman Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43933","219667","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27034","-1","","","","","72 TEST Green Shaman Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33220","166103","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27035","-1","","","","","72 TEST Green Shaman Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22739","113697","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27036","-1","","","","","59 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18841","94205","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27037","-1","","","","","59 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28151","140757","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27038","-1","","","","","59 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37742","188710","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27039","-1","","","","","59 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19048","95243","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27040","-1","","","","","59 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28460","142302","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","616","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27041","-1","","","","","59 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38158","190793","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27042","-1","","","","","59 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28665","143328","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","569","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27043","-1","","","","","59 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19326","96630","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27044","-1","","","","","60 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20024","100123","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27045","-1","","","","","60 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29916","149584","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27046","-1","","","","","60 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40104","200523","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","785","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27047","-1","","","","","60 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20239","101195","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27048","-1","","","","","60 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30235","151179","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27049","-1","","","","","60 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40530","202654","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27050","-1","","","","","60 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30447","152238","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27051","-1","","","","","60 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19091","95456","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27052","-1","","","","","61 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19765","98825","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27053","-1","","","","","61 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29530","147653","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27054","-1","","","","","61 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39597","197986","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27055","-1","","","","","61 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19986","99930","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27056","-1","","","","","61 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29862","149314","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","660","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27057","-1","","","","","61 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40036","200184","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27058","-1","","","","","61 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30081","150406","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27059","-1","","","","","61 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20281","101407","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27060","-1","","","","","62 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20975","104877","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27061","-1","","","","","62 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31336","156680","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","576","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27062","-1","","","","","62 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42013","210067","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","838","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27063","-1","","","","","62 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21203","106016","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27064","-1","","","","","62 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31675","158375","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27065","-1","","","","","62 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42466","212332","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","733","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27066","-1","","","","","62 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31903","159516","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27067","-1","","","","","62 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19983","99918","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27068","-1","","","","","63 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20650","103253","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27069","-1","","","","","63 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30858","154294","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27070","-1","","","","","63 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41380","206902","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27071","-1","","","","","63 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20887","104436","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27072","-1","","","","","63 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31207","156039","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27073","-1","","","","","63 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41846","209234","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","756","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27074","-1","","","","","63 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31442","157214","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27075","-1","","","","","63 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21200","106004","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","378","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27076","-1","","","","","64 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21888","109440","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27077","-1","","","","","64 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32704","163520","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","612","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27078","-1","","","","","64 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43850","219250","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27079","-1","","","","","64 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22131","110657","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27080","-1","","","","","64 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33063","165316","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","724","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27081","-1","","","","","64 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44329","221649","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","779","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27082","-1","","","","","64 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33304","166524","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27083","-1","","","","","64 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20837","104187","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27084","-1","","","","","65 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21502","107510","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27085","-1","","","","","65 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32133","160665","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27086","-1","","","","","65 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43091","215458","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","917","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27087","-1","","","","","65 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21750","108750","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27088","-1","","","","","65 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32502","162511","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27089","-1","","","","","65 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43584","217924","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27090","-1","","","","","65 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32750","163752","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","688","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27091","-1","","","","","65 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22081","110407","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27092","-1","","","","","66 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22766","113832","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27093","-1","","","","","66 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34018","170092","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27094","-1","","","","","66 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45614","228074","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","943","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27095","-1","","","","","66 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23021","115105","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27096","-1","","","","","66 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34397","171988","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27097","-1","","","","","66 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46121","230607","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","826","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27098","-1","","","","","66 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34649","173246","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27099","-1","","","","","66 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23975","119875","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27100","-1","","","","","67 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24696","123482","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27101","-1","","","","","67 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36894","184474","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27102","-1","","","","","67 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49457","247286","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","970","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27103","-1","","","","","67 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22578","112894","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27104","-1","","","","","67 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33742","168712","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","788","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27105","-1","","","","","67 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45250","226254","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","849","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27106","-1","","","","","67 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34000","170004","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27107","-1","","","","","67 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22928","114641","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27108","-1","","","","","68 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23608","118042","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27109","-1","","","","","68 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35278","176394","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27110","-1","","","","","68 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47302","236513","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27111","-1","","","","","68 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23876","119383","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27112","-1","","","","","68 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35678","178390","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","810","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27113","-1","","","","","68 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47836","239180","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27114","-1","","","","","68 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35942","179714","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27115","-1","","","","","68 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24881","124405","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27116","-1","","","","","69 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25597","127989","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27117","-1","","","","","69 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38239","191199","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27118","-1","","","","","69 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51267","256339","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","1023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27119","-1","","","","","69 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25872","129364","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27120","-1","","","","","69 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38652","193264","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27121","-1","","","","","69 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51814","259072","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","895","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27122","-1","","","","","69 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38924","194622","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27123","-1","","","","","69 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26240","131201","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27124","-1","","","","","70 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24414","122072","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27125","-1","","","","","70 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36481","182407","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27126","-1","","","","","70 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48923","244615","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","1050","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27127","-1","","","","","70 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24696","123480","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27128","-1","","","","","70 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36900","184503","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27129","-1","","","","","70 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49483","247416","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27130","-1","","","","","70 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37182","185913","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27131","-1","","","","","70 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25750","128754","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27132","-1","","","","","71 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26460","132302","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27133","-1","","","","","71 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39534","197672","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27134","-1","","","","","71 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53006","265031","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","1076","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27135","-1","","","","","71 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26751","133757","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","673","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27136","-1","","","","","71 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39963","199819","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27137","-1","","","","","71 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53579","267898","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","942","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27138","-1","","","","","71 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40252","201263","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","807","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27139","-1","","","","","71 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27136","135684","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27140","-1","","","","","72 TEST Green Paladin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27866","139333","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","620","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27141","-1","","","","","72 TEST Green Paladin Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41631","208156","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27142","-1","","","","","72 TEST Green Paladin Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55811","279058","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27143","-1","","","","","72 TEST Green Paladin Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28164","140822","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27144","-1","","","","","72 TEST Green Paladin Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38073","190365","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","896","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27145","-1","","","","","72 TEST Green Paladin Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51058","255292","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","965","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27146","-1","","","","","72 TEST Green Paladin Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38368","191843","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27147","-1","","","","","72 TEST Green Paladin Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26581","132908","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27148","-1","","","","","59 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15998","79991","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27149","-1","","","","","60 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16578","82891","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27150","-1","","","","","61 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17162","85810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27151","-1","","","","","62 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17748","88740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27152","-1","","","","","63 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18339","91698","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27153","-1","","","","","64 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18934","94674","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27154","-1","","","","","65 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19534","97671","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27155","-1","","","","","66 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20135","100676","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27156","-1","","","","","67 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20742","103711","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27157","-1","","","","","68 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21353","106765","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27158","-1","","","","","69 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21967","109838","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27159","-1","","","","","70 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22583","112919","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27160","-1","","","","","71 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23206","116031","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27161","-1","","","","","72 TEST Green Rogue/Hunter Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23832","119161","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27162","-1","","","","","59 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27163","-1","","","","","60 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27164","-1","","","","","61 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27165","-1","","","","","62 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27166","-1","","","","","63 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27167","-1","","","","","64 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27168","-1","","","","","65 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27169","-1","","","","","66 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27170","-1","","","","","67 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27171","-1","","","","","68 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27172","-1","","","","","69 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27173","-1","","","","","70 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27174","-1","","","","","71 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27175","-1","","","","","72 TEST Green Rogue/Hunter Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27176","-1","","","","","59 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27177","-1","","","","","60 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27178","-1","","","","","61 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27179","-1","","","","","62 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27180","-1","","","","","63 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27181","-1","","","","","64 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27182","-1","","","","","65 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27183","-1","","","","","66 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27184","-1","","","","","67 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27185","-1","","","","","68 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27186","-1","","","","","69 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27187","-1","","","","","70 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27188","-1","","","","","71 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27189","-1","","","","","72 TEST Green Rogue/Hunter Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27190","-1","","","","","59 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16112","80562","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27191","-1","","","","","60 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16696","83480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27192","-1","","","","","61 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17282","86410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27193","-1","","","","","62 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17873","89366","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27194","-1","","","","","63 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18468","92343","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27195","-1","","","","","64 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19067","95338","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27196","-1","","","","","65 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18254","91273","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27197","-1","","","","","66 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18823","94115","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27198","-1","","","","","67 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19395","96976","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27199","-1","","","","","68 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19971","99856","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27200","-1","","","","","69 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20549","102745","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27201","-1","","","","","70 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21132","105664","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27202","-1","","","","","71 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21720","108602","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27203","-1","","","","","72 TEST Green Druid/Warrior Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22311","111559","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27204","-1","","","","","59 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27205","-1","","","","","60 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27206","-1","","","","","61 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27207","-1","","","","","62 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27208","-1","","","","","63 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27209","-1","","","","","64 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27210","-1","","","","","65 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27211","-1","","","","","66 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27212","-1","","","","","67 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27213","-1","","","","","68 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27214","-1","","","","","69 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27215","-1","","","","","70 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27216","-1","","","","","71 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27217","-1","","","","","72 TEST Green Druid/Warrior Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27218","-1","","","","","59 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27219","-1","","","","","60 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27220","-1","","","","","61 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27221","-1","","","","","62 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27222","-1","","","","","63 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27223","-1","","","","","64 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27224","-1","","","","","65 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27225","-1","","","","","66 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27226","-1","","","","","67 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27227","-1","","","","","68 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27228","-1","","","","","69 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27229","-1","","","","","70 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27230","-1","","","","","71 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27231","-1","","","","","72 TEST Green Druid/Warrior Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27232","-1","","","","","59 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16652","83264","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27233","-1","","","","","60 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17254","86270","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27234","-1","","","","","61 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17857","89287","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27235","-1","","","","","62 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18466","92332","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27236","-1","","","","","63 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19079","95395","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27237","-1","","","","","64 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17824","89123","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27238","-1","","","","","65 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18391","91955","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27239","-1","","","","","66 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18963","94815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27240","-1","","","","","67 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19539","97695","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27241","-1","","","","","68 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20116","100583","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27242","-1","","","","","69 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20700","103501","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27243","-1","","","","","70 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21287","106439","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27244","-1","","","","","71 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22471","112356","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27245","-1","","","","","72 TEST Green Shaman Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23077","115389","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27246","-1","","","","","59 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27247","-1","","","","","60 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27248","-1","","","","","61 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27249","-1","","","","","62 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27250","-1","","","","","63 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27251","-1","","","","","64 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27252","-1","","","","","65 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27253","-1","","","","","66 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27254","-1","","","","","67 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27255","-1","","","","","68 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27256","-1","","","","","69 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27257","-1","","","","","70 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27258","-1","","","","","71 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27259","-1","","","","","72 TEST Green Shaman Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27260","-1","","","","","59 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27261","-1","","","","","60 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27262","-1","","","","","61 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27263","-1","","","","","62 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27264","-1","","","","","63 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27265","-1","","","","","64 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27266","-1","","","","","65 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27267","-1","","","","","66 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27268","-1","","","","","67 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27269","-1","","","","","68 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27270","-1","","","","","69 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27271","-1","","","","","70 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27272","-1","","","","","71 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27273","-1","","","","","72 TEST Green Shaman Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","104","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27274","-1","","","","","59 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16767","83835","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27275","-1","","","","","60 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17370","86851","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","53","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27276","-1","","","","","61 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16718","83592","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27277","-1","","","","","62 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17292","86463","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27278","-1","","","","","63 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17870","89354","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27279","-1","","","","","64 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18450","92254","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27280","-1","","","","","65 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19036","95183","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27281","-1","","","","","66 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19626","98131","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27282","-1","","","","","67 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20219","101098","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","65","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27283","-1","","","","","68 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20814","104074","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27284","-1","","","","","69 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21416","107080","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27285","-1","","","","","70 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22020","110104","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27286","-1","","","","","71 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22629","113149","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27287","-1","","","","","72 TEST Green Paladin Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23240","116201","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27288","-1","","","","","59 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27289","-1","","","","","60 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27290","-1","","","","","61 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27291","-1","","","","","62 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27292","-1","","","","","63 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27293","-1","","","","","64 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27294","-1","","","","","65 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27295","-1","","","","","66 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27296","-1","","","","","67 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27297","-1","","","","","68 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27298","-1","","","","","69 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27299","-1","","","","","70 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27300","-1","","","","","71 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27301","-1","","","","","72 TEST Green Paladin Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27302","-1","","","","","59 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","57" +"27303","-1","","","","","60 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","58" +"27304","-1","","","","","61 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","59" +"27305","-1","","","","","62 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","60" +"27306","-1","","","","","63 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","61" +"27307","-1","","","","","64 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","62" +"27308","-1","","","","","65 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","63" +"27309","-1","","","","","66 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","64" +"27310","-1","","","","","67 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","65" +"27311","-1","","","","","68 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","66" +"27312","-1","","","","","69 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","67" +"27313","-1","","","","","70 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","68" +"27314","-1","","","","","71 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","69" +"27315","-1","","","","","72 TEST Green Paladin Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","70" +"27316","-1","","","","","Level 61 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27317","-1","","","","","Elemental Sapta","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27318","-1","","","","","Level 62 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27319","-1","","","","","Level 63 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27320","-1","","","","","Level 64 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27321","-1","","","","","Level 65 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27322","-1","","","","","Level 66 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27323","-1","","","","","Level 67 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27324","-1","","","","","Level 68 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27325","-1","","","","","Level 69 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27326","-1","","","","","Level 70 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27327","-1","","","","","Level 61 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27328","-1","","","","","Level 62 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27329","-1","","","","","Level 63 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27330","-1","","","","","Level 64 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27331","-1","","","","","Level 65 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27332","-1","","","","","Level 66 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27333","-1","","","","","Level 67 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27334","-1","","","","","Level 68 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27335","-1","","","","","Level 69 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27336","-1","","","","","Level 70 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27337","-1","","","","","Level 61 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27338","-1","","","","","Level 62 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27339","-1","","","","","Level 63 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27340","-1","","","","","Level 64 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27341","-1","","","","","Level 65 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27342","-1","","","","","Level 66 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27343","-1","","","","","Level 67 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27344","-1","","","","","Level 68 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27345","-1","","","","","Level 69 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27346","-1","","","","","Level 70 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27347","-1","","","","","Level 61 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27348","-1","","","","","Level 62 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27349","-1","","","","","Level 63 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27350","-1","","","","","Level 64 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27351","-1","","","","","Level 65 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27352","-1","","","","","Level 66 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27353","-1","","","","","Level 67 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27354","-1","","","","","Level 68 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27355","-1","","","","","Level 69 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27356","-1","","","","","Level 70 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27357","-1","Drink to open your spiritual pathways and see what you normally cannot see.","","","","Potion of Greater Vision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27358","-1","","","","","Level 61 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27359","-1","","","","","Level 62 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27360","-1","","","","","Level 63 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27361","-1","","","","","Level 64 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27362","-1","","","","","Level 65 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27363","-1","","","","","Level 66 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27364","-1","","","","","Level 67 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27365","-1","","","","","Level 68 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27366","-1","","","","","Level 69 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27367","-1","","","","","Level 70 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27368","-1","","","","","Level 61 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27369","-1","","","","","Level 62 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27370","-1","","","","","Level 63 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27371","-1","","","","","Level 64 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27372","-1","","","","","Level 65 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27373","-1","","","","","Level 66 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27374","-1","","","","","Level 67 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27375","-1","","","","","Level 68 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27376","-1","","","","","Level 69 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27377","-1","","","","","Level 70 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27378","-1","","","","","Level 61 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27379","-1","","","","","Level 62 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27380","-1","","","","","Level 63 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27381","-1","","","","","Level 64 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27382","-1","","","","","Level 65 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27383","-1","","","","","Level 66 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27384","-1","","","","","Level 67 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27385","-1","","","","","Level 68 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27386","-1","","","","","Level 69 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27387","-1","","","","","Level 70 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27388","-1","","","","","Mr. Pinchy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2000","40000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27389","-1","","","","","Surplus Bastard Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","383","1918","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","11","-1","0","0","20","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","1","1","0","0","0","0","0","0","0","0","0" +"27390","-1","","","","","Vindicator's Letter Opener","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","996","4982","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","16","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","3","2","0","0","0","0","0","0","0","0","0" +"27391","-1","","","","","Level 60 Test Gear Green - Cloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27392","-1","","","","","Level 60 Test Gear Green - Leather - Druid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27393","-1","","","","","Level 60 Test Gear Green - Leather - Rogue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27394","-1","","","","","Level 60 Test Gear Green - Mail - Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27395","-1","","","","","Level 60 Test Gear Green - Mail - Shaman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27396","-1","","","","","Level 60 Test Gear Green - Plate - Pally","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27397","-1","","","","","Level 60 Test Gear Green - Plate - Warrior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27398","-1","","","","","Carved Crystalline Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","425","1700","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","2","2","0","0","0","0","0","0","0","0","0" +"27399","-1","","","","","Stillpine Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","254","1273","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","14","2","0","1","0","0","0","0","0","0","0","0","0","0" +"27400","-1","","","","","Peacekeeper's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","608","3043","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","2","2","0","0","0","0","0","0","0","0","0" +"27401","-1","","","","","Arugoo's Crossbow of Destruction","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","300","1503","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","12","-1","0","0","16","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","1","0","0","0","0","0","0","0","0","0","0" +"27402","-1","","","","","Huntsman's Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","718","3592","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","17","-1","0","0","21","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","1","0","0","0","0","0","0","0","0","0","0" +"27403","-1","","","","","Stillpine Stinger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","302","1514","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","12","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","1","0","0","0","0","0","0","0","0","0","0" +"27404","-1","","","","","Lightspark","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","671","3359","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","17","-1","0","0","16","0","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","1","0","0","0","0","0","0","0","0","0","0" +"27405","-1","","","","","Monster - Sword, 1H Blood Elf A03 (Blood Knight)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27406","-1","","","","","Monster - Shield, Blood Elf (Blood Knight)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27407","-1","","","","","Monster - Mace, Draenei A02 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27408","-1","","","","","Hope Bearer Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39509","197549","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","3","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","19","23","13","0","0","0","0","0","0","65" +"27409","-1","","","","","Raven-Heart Headdress","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28382","141914","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","8","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","24","23","16","0","0","0","0","0","0","65" +"27410","-1","","","","","Collar of Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22792","113961","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","23","29","0","0","0","0","0","0","0","65" +"27411","-1","","","","","Slippers of Serenity","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22876","114380","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","10","22","15","0","0","0","0","0","0","0","65" +"27412","-1","","","","","Ironstaff of Regeneration","0.4","0","-19","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95675","478378","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","100","-1","0","0","132","0","0","0","0","198","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","33","29","35","0","0","0","0","0","0","0","65" +"27413","-1","","","","","Ring of the Exarchs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18750","75000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","24","0","0","0","0","0","0","0","0","65" +"27414","-1","","","","","Mok'Nathal Beast-Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34701","173507","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","22","15","0","0","0","0","0","0","0","65" +"27415","-1","","","","","Darkguard Face Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29022","145112","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","29","30","20","0","0","0","0","0","0","0","65" +"27416","-1","","","","","Fetish of the Fallen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10307","41230","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","65" +"27417","-1","","","","","Ravenwing Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30024","150120","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","4","7","5","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","19","13","14","0","0","0","0","0","0","66" +"27418","-1","","","","","Stormreaver Shadow-Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32140","160701","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","19","26","14","25","0","0","0","0","0","0","66" +"27419","-1","","","","","Forge Camp: Spite Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27420","-1","","","","","Uther's Ceremonial Warboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42412","212063","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","720","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","21","20","0","0","0","0","0","0","0","66" +"27421","-1","","","","","Forge Camp: Rage Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27422","-1","","","","","Barbed Gill Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27423","-1","","","","","Cloak of Impulsiveness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22786","113932","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","19","0","0","0","0","0","0","0","0","66" +"27424","-1","","","","","Amani Venom-Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76249","381248","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","103","-1","0","0","101","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","15","0","0","0","0","0","0","0","0","66" +"27425","-1","","","","","Spotted Feltail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27426","-1","","","","","Northshire Battlemace","0.6","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76831","384155","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","103","-1","0","0","118","0","0","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","16","0","0","0","0","0","0","0","0","66" +"27427","-1","This is a legacy chest piece worn by Frostwolf chieftans for eleven generations.","","","","Durotan's Battle Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53987","269939","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","1048","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","34","16","0","0","0","0","0","0","0","66" +"27428","-1","","","","","Stormfront Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23226","116130","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","16","0","0","0","0","0","0","0","0","66" +"27429","-1","","","","","Zangarian Sporefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27430","-1","","","","","Scaled Greaves of Patience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46800","234004","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","24","13","0","0","0","0","0","0","0","66" +"27431","-1","","","","","Time-Shifted Dagger","0.6","0","-21.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78296","391481","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","103","-1","0","0","74","0","0","0","0","139","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","15","13","0","0","0","0","0","0","0","66" +"27432","-1","","","","","Broxigar's Ring of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36645","146580","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","21","19","17","0","0","0","0","0","0","0","66" +"27433","-1","","","","","Pauldrons of Sufferance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23663","118316","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","13","19","0","0","0","0","0","0","0","66" +"27434","-1","","","","","Mantle of Perenolde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29689","148448","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","23","23","0","0","0","0","0","0","0","66" +"27435","-1","","","","","Figluster's Mudfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27436","-1","","","","","Iron Band of the Unbreakable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4308","17235","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","17","0","0","0","0","0","0","0","0","66" +"27437","-1","","","","","Icefin Bluefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27438","-1","","","","","Golden Darter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27439","-1","","","","","Furious Crawdad","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27440","-1","","","","","Diamond Prism of Recurrence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12377","49510","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","12","18","20","0","0","0","0","0","0","0","66" +"27441","-1","A twisted fish that lives in fel pools and lava. Do Not Eat!","","","","Felblood Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27442","-1","","","","","Goldenscale Vendorfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60000","1200000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27443","-1","","","","","Steam Pump Debris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27444","-1","","","","","Foulfin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27445","-1","","","","","Magical Crawdad Box","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27446","-1","","","","","Mr. Pinchy's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27447","-1","","","","","Bracers of Just Rewards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29989","149945","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","23","16","15","0","0","0","0","0","0","0","70" +"27448","-1","","","","","Cloak of the Everliving","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25656","128282","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27449","-1","","","","","Blood Knight Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54936","274682","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","20","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","26","18","0","0","0","0","0","0","0","0","70" +"27450","-1","","","","","Wild Stalker Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38946","194730","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","17","17","0","0","0","0","0","0","0","70" +"27451","-1","","","","","Boots of the Darkwalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25946","129734","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","36","25","0","0","0","0","0","0","0","0","70" +"27452","-1","","","","","Light Scribe Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17361","86806","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","15","22","0","0","0","0","0","0","0","70" +"27453","-1","","","","","Averinn's Ring of Slaying","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","22","18","0","0","0","0","0","0","0","0","70" +"27454","-1","","","","","Volcanic Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40584","202921","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","25","18","0","0","0","0","0","0","0","70" +"27455","-1","","","","","Irondrake Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47219","236098","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","32","37","0","0","0","0","0","0","0","70" +"27456","-1","","","","","Raiments of Nature's Breath","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45215","226076","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","32","18","0","0","0","0","0","0","0","70" +"27457","-1","","","","","Life Bearer's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31946","159730","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","25","18","0","0","0","0","0","0","0","70" +"27458","-1","","","","","Oceansong Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54649","273245","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","36","34","0","0","0","0","0","0","0","0","70" +"27459","-1","","","","","Vambraces of Daring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32175","160876","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","26","11","0","0","0","0","0","0","0","70" +"27460","-1","","","","","Reavers' Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","117","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","23","18","18","0","0","0","0","0","0","0","70" +"27461","-1","","","","","Chestguard of the Prowler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46024","230123","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","14","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","26","16","17","0","0","0","0","0","0","70" +"27462","-1","","","","","Crimson Bracers of Gloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18474","92374","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","18","12","0","0","0","0","0","0","0","70" +"27463","-1","","","","","Terror Flame Dagger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83894","419470","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","14","0","0","0","0","0","0","0","0","70" +"27464","-1","","","","","Omor's Unyielding Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","19","19","0","0","0","0","0","0","0","0","70" +"27465","-1","","","","","Mana-Etched Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16907","84536","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2859","0","0","0","0","658","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","17","16","0","0","0","0","0","0","0","70" +"27466","-1","","","","","Headdress of Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25458","127292","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","33","18","17","0","0","0","0","0","0","70" +"27467","-1","","","","","Silent-Strider Kneeboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31941","159709","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","30","0","0","0","0","0","0","0","0","70" +"27468","-1","","","","","Moonglade Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21376","106880","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","19","13","18","20","17","0","0","0","0","0","70" +"27469","-1","","","","","Gladiator's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","580","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","866","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","23","23","25","0","0","0","0","0","0","70" +"27470","-1","","","","","Gladiator's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","18","21","21","0","0","0","0","0","0","70" +"27471","-1","","","","","Gladiator's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","580","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","15","18","30","0","0","0","0","0","0","70" +"27472","-1","","","","","Gladiator's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","25","22","29","0","0","0","0","0","0","70" +"27473","-1","","","","","Gladiator's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","580","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","17","20","20","0","0","0","0","0","0","70" +"27474","-1","","","","","Beast Lord Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26933","134669","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2860","0","0","0","0","650","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","12","17","0","0","0","0","0","0","0","70" +"27475","-1","","","","","Gauntlets of the Bold","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31713","158569","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2870","0","0","0","0","653","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","16","31","14","0","0","0","0","0","0","70" +"27476","-1","","","","","Truncheon of Five Hells","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90421","452109","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","31","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","19","14","15","0","0","0","0","0","0","0","70" +"27477","-1","","","","","Faol's Signet of Cleansing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27478","-1","","","","","Girdle of the Blasted Reaches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27321","136609","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","22","20","0","0","0","0","0","0","0","70" +"27479","-1","A lively flame crackles on the end of a torch soaked in pitch.","","","","Flaming Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27480","-1","If you look closely enough, you can see something swirling around in it. Creepy.","","","","Soul Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27481","-1","Steam Pump Replacement Parts","","","","Heavy Supply Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27483","-1","","","","","Moon-Touched Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20969","104845","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","20","12","0","0","0","0","0","0","0","70" +"27484","-1","","","","","Libram of Avengement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25260","126302","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27485","-1","","","","","Embroidered Cape of Mysteries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26057","130288","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","20","0","0","0","0","0","0","0","0","70" +"27486","-1","","","","","Alex Test BK Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12430","62151","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","440","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27487","-1","","","","","Bloodlord Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61250","306253","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","38","27","11","0","0","0","0","0","0","0","70" +"27488","-1","","","","","Mage-Collar of the Firestorm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26347","131739","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","32","33","23","0","0","0","0","0","0","0","70" +"27489","-1","","","","","Virtue Bearer's Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31029","155147","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","15","0","0","0","0","0","0","0","0","70" +"27490","-1","","","","","Firebrand Battleaxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88468","442344","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","120","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","17","15","14","0","0","0","0","0","0","0","70" +"27491","-1","","","","","Signet of Repose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30866","123465","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","17","18","20","0","0","0","0","0","0","0","70" +"27492","-1","","","","","Moonchild Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44559","222799","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","26","20","19","21","0","0","0","0","0","0","70" +"27493","-1","","","","","Gloves of the Deadwatcher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17889","89445","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","24","18","0","0","0","0","0","0","0","70" +"27494","-1","","","","","Emerald Eye Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26928","134643","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","13","0","0","0","0","0","0","0","0","70" +"27495","-1","","","","","Soldier's Dog Tags","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","21","19","19","0","0","0","0","0","0","0","70" +"27496","-1","","","","","Monster - Dagger, Blood Elf A01 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27497","-1","","","","","Doomplate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31936","159684","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2860","0","0","0","0","661","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","25","0","0","0","0","0","0","0","0","70" +"27498","-1","","","","","Scroll of Agility V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27499","-1","","","","","Scroll of Intellect V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27500","-1","","","","","Scroll of Protection V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27501","-1","","","","","Scroll of Spirit V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","100","550","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27502","-1","","","","","Scroll of Stamina V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","112","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27503","-1","","","","","Scroll of Strength V","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"27505","-1","","","","","Ruby Helm of the Just","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45504","227524","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","24","25","16","0","0","0","0","0","0","70" +"27506","-1","","","","","Robe of Effervescent Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34866","174333","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","33","18","0","0","0","0","0","0","0","70" +"27507","-1","","","","","Adamantine Repeater","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65619","328096","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","-1","0","0","159","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","15","10","0","0","0","0","0","0","0","0","70" +"27508","-1","","","","","Incanter's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17563","87817","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","24","12","14","0","0","0","0","0","0","70" +"27509","-1","","","","","Handgrips of Assassination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22033","110168","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","620","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","24","17","0","0","0","0","0","0","0","70" +"27510","-1","","","","","Tidefury Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26538","132690","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","26","0","0","0","0","0","0","0","0","70" +"27511","-1","","","","","Inscribed Scrollcase","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27512","-1","","","","","The Willbreaker","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89111","445555","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","14","17","0","0","0","0","0","0","0","70" +"27513","-1","","","","","Curious Crate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20","80","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27514","-1","","","","","Leggings of the Unrepentant","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44876","224383","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","25","0","0","0","0","0","0","0","0","70" +"27515","-1","","","","","Huge Spotted Feltail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27516","-1","","","","","Enormous Barbed Gill Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27517","-1","","","","","Bands of Nethekurse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16449","82248","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","13","0","0","0","0","0","0","0","0","68" +"27518","-1","","","","","Ivory Idol of the Moongoddess","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24770","123850","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27519","-1","","","","","Cloak of Malice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24865","124326","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","21","18","0","0","0","0","0","0","0","0","68" +"27520","-1","","","","","Greathelm of the Unbreakable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43593","217967","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","48","30","0","0","0","0","0","0","0","68" +"27521","-1","","","","","Telaari Hunting Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25661","128308","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","17","0","0","0","0","0","0","0","0","70" +"27522","-1","","","","","World's End Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25759","128797","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","19","17","0","0","0","0","0","0","0","70" +"27523","-1","","","","","Exarch's Diamond Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","19","19","0","0","0","0","0","0","0","0","70" +"27524","-1","","","","","Firemaul of Destruction","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105570","527851","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","112","-1","0","0","250","0","0","0","0","418","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","31","50","40","0","0","0","0","0","0","0","68" +"27525","-1","","","","","Jeweled Boots of Sanctification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25432","127161","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","25","0","0","0","0","0","0","0","0","68" +"27526","-1","","","","","Skyfire Hawk-Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63818","319094","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","112","-1","0","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","14","0","0","0","0","0","0","0","0","0","68" +"27527","-1","","","","","Greaves of the Shatterer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61238","306192","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2888","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","37","25","0","0","0","0","0","0","0","70" +"27528","-1","","","","","Gauntlets of Desolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26340","131700","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2859","0","0","0","0","660","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","16","17","0","0","0","0","0","0","0","70" +"27529","-1","","","","","Figurine of the Colossus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66290","265161","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","15","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","70" +"27530","-1","","","","","Test Epic Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17956","89780","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","61","0","0","0","0","0","0","0","0","0","0","0","87","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","70" +"27531","-1","","","","","Wastewalker Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22191","110959","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2876","0","0","0","0","659","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","32","33","0","0","0","0","0","0","0","0","70" +"27532","-1","","","","","Master Fishing - The Art of Angling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","356","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"27533","-1","","","","","Demonblood Eviscerator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91750","458751","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","16","17","0","0","0","0","0","0","0","0","70" +"27534","-1","","","","","Hortus' Seal of Brilliance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","18","20","0","0","0","0","0","0","0","0","70" +"27535","-1","","","","","Gauntlets of the Righteous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29422","147111","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","20","19","0","0","0","0","0","0","0","70" +"27536","-1","","","","","Hallowed Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16782","83911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","662","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","19","20","26","0","0","0","0","0","0","0","70" +"27537","-1","","","","","Gloves of Oblivion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16847","84237","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","644","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","21","20","0","0","0","0","0","0","0","70" +"27538","-1","","","","","Lightsworn Hammer","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84562","422813","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","11","0","0","0","0","0","0","0","0","70" +"27539","-1","","","","","Justice Bearer's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44476","222384","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","25","0","0","0","0","0","0","0","0","70" +"27540","-1","","","","","Nexus Torch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63903","319518","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","163","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","10","11","0","0","0","0","0","0","0","70" +"27541","-1","","","","","Archery Belt of the Broken","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25659","128295","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","19","18","0","0","0","0","0","0","0","70" +"27542","-1","","","","","Cord of Belief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17171","85855","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","23","20","0","0","0","0","0","0","0","0","70" +"27543","-1","","","","","Starlight Dagger","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86172","430863","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","15","16","0","0","0","0","0","0","0","70" +"27544","-1","","","","","Totem of Spontaneous Regrowth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25949","129747","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27545","-1","","","","","Mennu's Scaled Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43411","217059","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","32","0","0","0","0","0","0","0","0","70" +"27546","-1","","","","","Traitor's Noose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","18","12","0","0","0","0","0","0","0","70" +"27547","-1","","","","","Coldwhisper Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17493","87465","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","23","12","16","0","0","0","0","0","0","70" +"27548","-1","","","","","Girdle of Many Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30902","154512","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","22","21","0","0","0","0","0","0","0","70" +"27549","-1","","","","","Wavefury Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40882","204413","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","24","0","0","0","0","0","0","0","0","70" +"27550","-1","","","","","Ironscale War Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27229","136147","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","26","19","0","0","0","0","0","0","0","0","70" +"27551","-1","","","","","Skeletal Necklace of Battlerage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","26","21","12","0","0","0","0","0","0","0","70" +"27552","-1","","","","","Soft Leather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","60","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27553","-1","The perfect pick me up for those rough mornings after a late night.","","","","Crimson Steer Energy Drink","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","30","120","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"27554","-1","","","","","Level 60 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27555","-1","","","","","Level 61 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27556","-1","","","","","Level 62 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27557","-1","","","","","Level 63 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27558","-1","","","","","Level 64 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27559","-1","","","","","Level 65 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27560","-1","","","","","Level 66 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27561","-1","","","","","Level 67 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27562","-1","","","","","Level 68 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27563","-1","","","","","Level 69 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27564","-1","","","","","Level 70 Test Gear Green - Cloth 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27565","-1","","","","","Level 60 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27566","-1","","","","","Level 61 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27567","-1","","","","","Level 62 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27568","-1","","","","","Level 63 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27569","-1","","","","","Level 64 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27570","-1","","","","","Level 65 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27571","-1","","","","","Level 66 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27572","-1","","","","","Level 67 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27573","-1","","","","","Level 68 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27574","-1","","","","","Level 69 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27575","-1","","","","","Level 70 Test Gear Green - Leather - Druid 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27576","-1","","","","","Level 60 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27577","-1","","","","","Level 61 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27578","-1","","","","","Level 62 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27579","-1","","","","","Level 63 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27580","-1","","","","","Level 64 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27581","-1","","","","","Level 65 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27582","-1","","","","","Level 66 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27583","-1","","","","","Level 70 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27584","-1","","","","","Level 69 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27585","-1","","","","","Level 68 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27586","-1","","","","","Level 67 Test Gear Green - Leather - Rogue 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27587","-1","","","","","Level 60 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27588","-1","","","","","Level 61 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27589","-1","","","","","Level 62 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27590","-1","","","","","Level 63 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27591","-1","","","","","Level 70 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27592","-1","","","","","Level 69 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27593","-1","","","","","Level 68 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27594","-1","","","","","Level 67 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27595","-1","","","","","Level 66 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27596","-1","","","","","Level 65 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27597","-1","","","","","Level 64 Test Gear Green - Mail - Hunter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27598","-1","","","","","Level 70 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27599","-1","","","","","Level 69 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27600","-1","","","","","Level 68 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27601","-1","","","","","Level 67 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27602","-1","","","","","Level 66 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27603","-1","","","","","Level 65 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27604","-1","","","","","Level 64 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27605","-1","","","","","Level 63 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27606","-1","","","","","Level 62 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27607","-1","","","","","Level 61 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27608","-1","","","","","Level 60 Test Gear Green - Mail - Shaman 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27609","-1","","","","","Level 70 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27610","-1","","","","","Level 69 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27611","-1","","","","","Level 68 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27612","-1","","","","","Level 67 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27613","-1","","","","","Level 66 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27614","-1","","","","","Level 65 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27615","-1","","","","","Level 64 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27616","-1","","","","","Level 63 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27617","-1","","","","","Level 62 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27618","-1","","","","","Level 61 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27619","-1","","","","","Level 60 Test Gear Green - Plate - Pally 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27620","-1","","","","","Level 70 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27621","-1","","","","","Level 69 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27622","-1","","","","","Level 68 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27623","-1","","","","","Level 67 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27624","-1","","","","","Level 66 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27625","-1","","","","","Level 65 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27626","-1","","","","","Level 64 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27627","-1","","","","","Level 63 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27628","-1","","","","","Level 62 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27629","-1","","","","","Level 61 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27630","-1","","","","","Level 60 Test Gear Green - Plate - Warrior 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27631","-1","","","","","Needle Shrike","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","94","-1","0","0","57","0","0","0","0","86","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","11","0","0","0","0","0","0","0","0","0","63" +"27632","-1","A long, slender arakkoa spear ending in a razor-sharp point. It appears to have been forged from a single piece of metal and shows no signs of age.","","","","Terokk's Quill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27633","-1","A gem encrusted, feathered mask molded to fit an arakkoa face, although it appears to have been crafted for an arakkoa much bigger than any you've yet seen.","","","","Terokk's Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27634","-1","A scroll containing stories from the life of the great arakkoa hero Terokk.","","","","The Saga of Terokk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27635","-1","","","","","Lynx Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","6","24","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27636","-1","","","","","Bat Bites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"27637","-1","","","","","Shadowstalker's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","17","13","16","0","0","0","0","0","0","66" +"27638","-1","","","","","Hierophant's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","28","19","19","0","0","0","0","0","0","0","66" +"27639","-1","","","","","Slayer's Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","19","35","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","22","19","19","0","0","0","0","0","0","66" +"27640","-1","","","","","Hand of Argus Crossfire","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","606","3033","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","16","-1","0","0","25","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","1","1","0","0","0","0","0","0","0","0","0" +"27641","-1","","","","","Vindicator's Walking Stick","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1014","5074","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","16","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","3","2","0","0","0","0","0","0","0","0","0" +"27643","-1","","","","","Stormbreaker's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","28","19","19","19","0","0","0","0","0","0","66" +"27644","-1","","","","","Avenger's Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","32","35","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","25","11","12","17","0","0","0","0","0","66" +"27645","-1","","","","","Dreamstalker Sash","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","4","3","35","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","15","15","14","15","0","0","0","0","0","66" +"27646","-1","","","","","Marksman's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","28","19","9","13","12","0","0","0","0","0","66" +"27647","-1","","","","","Marksman's Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","25","11","13","13","0","0","0","0","0","66" +"27648","-1","","","","","Dreamstalker Leggings","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","4","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","10","20","7","20","0","0","0","0","0","66" +"27649","-1","","","","","Hierophant's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","119","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","17","25","0","0","0","0","0","0","0","66" +"27650","-1","","","","","Shadowstalker's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","23","15","17","0","0","0","0","0","0","66" +"27651","-1","","","","","Buzzard Bites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27652","-1","","","","","Stormbreaker's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","16","14","22","0","0","0","0","0","0","66" +"27653","-1","","","","","Slayer's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","25","17","25","0","0","0","0","0","0","66" +"27654","-1","","","","","Avenger's Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","891","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","34","12","22","0","0","0","0","0","0","66" +"27655","-1","Don't ask what it's made of.","","","","Ravager Dog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27656","-1","Pets love sporeling snacks!","","","","Sporeling Snack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27657","-1","Seared to perfection!","","","","Blackened Basilisk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27658","-1","","","","","Roasted Clefthoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27659","-1","","","","","Warp Burger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27660","-1","","","","","Talbuk Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27661","-1","","","","","Blackened Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27662","-1","","","","","Feltail Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27663","-1","","","","","Blackened Sporefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27664","-1","","","","","Grilled Mudfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27665","-1","","","","","Poached Bluefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27666","-1","","","","","Golden Fish Sticks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27667","-1","","","","","Spicy Crawdad","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27668","-1","","","","","Lynx Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27669","-1","","","","","Bat Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27671","-1","","","","","Buzzard Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27672","-1","","","","","Girdle of the Immovable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29874","149372","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","7","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","17","33","18","12","0","0","0","0","0","0","70" +"27673","-1","","","","","Phosphorescent Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85196","425980","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","120","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","11","0","0","0","0","0","0","0","0","70" +"27674","-1","","","","","Ravager Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27676","-1","","","","","Strange Spores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27677","-1","","","","","Chunk o' Basilisk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27678","-1","","","","","Clefthoof Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27679","-1","Matches a Yellow Socket.","","","","Sublime Mystic Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"27680","-1","","","","","Halaani Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27681","-1","","","","","Warped Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27682","-1","","","","","Talbuk Venison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27683","-1","","","","","Quagmirran's Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27684","-1","Teaches you how to cook a Buzzard Bite.","","","","Recipe: Buzzard Bites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27685","-1","Teaches you how to cook Lynx Steak.","","","","Recipe: Lynx Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27686","-1","Teaches you how to cook Roasted Moongraze Tenderloin.","","","","Recipe: Roasted Moongraze Tenderloin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10","40","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27687","-1","Teaches you how to cook Bat Bites.","","","","Recipe: Bat Bites","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","185","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27688","-1","Teaches you how to cook a Ravager Dog.","","","","Recipe: Ravager Dog","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27689","-1","Teaches you how to cook a Sporeling Snack.","","","","Recipe: Sporeling Snack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","310","185","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27690","-1","Teaches you how to cook a Blackened Basilisk.","","","","Recipe: Blackened Basilisk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","185","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27691","-1","Teaches you how to cook a Roasted Clefthoof.","","","","Recipe: Roasted Clefthoof","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27692","-1","Teaches you how to cook a Warp Burger.","","","","Recipe: Warp Burger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27693","-1","Teaches you how to cook a Talbuk Steak.","","","","Recipe: Talbuk Steak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27694","-1","Teaches you how to cook Blackened Trout.","","","","Recipe: Blackened Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27695","-1","Teaches you how to cook Feltail Delight.","","","","Recipe: Feltail Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27696","-1","Teaches you how to cook Blackened Sporefish.","","","","Recipe: Blackened Sporefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","310","185","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27697","-1","Teaches you how to cook Grilled Mudfish.","","","","Recipe: Grilled Mudfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","185","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27698","-1","Teaches you how to cook Poached Bluefish.","","","","Recipe: Poached Bluefish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","320","185","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27699","-1","Teaches you how to cook Golden Fish Sticks.","","","","Recipe: Golden Fish Sticks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27700","-1","Teaches you how to cook a Spicy Crawdad.","","","","Recipe: Spicy Crawdad","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27701","-1","","","","","Monster - Mace, Durn","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27702","-1","","","","","Gladiator's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","582","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1547","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","25","30","27","0","0","0","0","0","0","70" +"27703","-1","","","","","Gladiator's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","967","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","24","24","14","0","0","0","0","0","0","70" +"27704","-1","","","","","Gladiator's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","582","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","57","21","22","32","0","0","0","0","0","0","70" +"27705","-1","","","","","Gladiator's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","57","21","32","32","0","0","0","0","0","0","70" +"27706","-1","","","","","Gladiator's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","582","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1160","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","18","24","21","0","0","0","0","0","0","70" +"27707","-1","","","","","Gladiator's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","20","28","0","0","0","0","0","0","0","70" +"27708","-1","","","","","Gladiator's Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","581","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","20","30","0","0","0","0","0","0","0","70" +"27709","-1","","","","","Gladiator's Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","30","30","0","0","0","0","0","0","0","70" +"27710","-1","","","","","Gladiator's Satin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","581","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","40","22","24","0","0","0","0","0","0","0","70" +"27711","-1","","","","","Gladiator's Satin Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","581","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","51","26","28","0","0","0","0","0","0","0","70" +"27712","-1","","","","","Shackles of Quagmirran","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21793","108969","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","20","18","0","0","0","0","0","0","0","0","70" +"27713","-1","","","","","Pauldrons of Desolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39550","197752","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2860","0","0","0","0","660","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","16","19","17","0","0","0","0","0","0","70" +"27714","-1","","","","","Swamplight Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","22","0","0","0","0","0","0","0","0","0","70" +"27715","-1","","","","","Circle's Stalwart Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30889","154445","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2892","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","22","15","0","0","0","0","0","0","0","0" +"27716","-1","","","","","Refuge Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40188","200944","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","27","18","17","0","0","0","0","0","0","0","0" +"27717","-1","","","","","Expedition Forager Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35626","178133","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","412","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","7","5","0","0","0","0","0","0","0","0","0","0","0","7","2","0","12","18","12","0","0","0","0","0","0","0","0" +"27718","-1","","","","","Aldor Defender's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45414","227070","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","6","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","14","21","14","0","0","0","0","0","0","0" +"27719","-1","","","","","Aldor Leggings of Puissance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32557","162785","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","20","21","0","0","0","0","0","0","0","0" +"27720","-1","","","","","Robes of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26137","130689","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","5","7","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","15","15","14","9","0","0","0","0","0","0","0" +"27721","-1","","","","","Expedition Footgear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32499","162498","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","25","16","0","0","0","0","0","0","0","0" +"27722","-1","","","","","Gloves of Marshmanship","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18673","93369","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","17","16","0","0","0","0","0","0","0","0","0" +"27723","-1","","","","","Belt of the Moonkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15616","78080","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","14","14","0","0","0","0","0","0","0","0" +"27724","-1","","","","","Wild Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23508","117541","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","31","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","14","14","21","0","0","0","0","0","0","0" +"27725","-1","","","","","Expedition Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32966","164831","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","21","15","0","0","0","0","0","0","0","0" +"27726","-1","","","","","Hearty Cenarion Cincture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17603","88018","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","21","14","0","0","0","0","0","0","0","0" +"27727","-1","","","","","Swift Cenarion Footwear","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22086","110431","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","17","0","0","0","0","0","0","0","0","0" +"27728","-1","","","","","Cushy Cenarion Walkers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17736","88681","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","80","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","18","11","0","0","0","0","0","0","0","0" +"27729","-1","","","","","Humanoid Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","667","2669","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27730","-1","","","","","Watcher's Cloak of Vigilance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17870","89354","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","13","12","18","0","0","0","0","0","0","0","0" +"27731","-1","","","","","Vindicator's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17421","87107","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","15","10","10","0","0","0","0","0","0","0","0" +"27732","-1","","","","","Infiltrator's Cloak","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17486","87434","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","10","10","10","6","0","0","0","0","0","0","0" +"27733","-1","","","","","Warden's Ring of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","12","0","0","0","0","0","0","0","0","0" +"27734","-1","","","","","Expedition Caster's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","10","13","9","0","0","0","0","0","0","0","0" +"27735","-1","","","","","Pendant of the Marsh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","10","9","13","0","0","0","0","0","0","0","0" +"27736","-1","","","","","Master Cookbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27737","-1","","","","","Moonglade Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33294","166472","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2863","0","0","0","0","637","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","13","12","18","19","18","0","0","0","0","0","70" +"27738","-1","","","","","Incanter's Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26730","133653","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2875","0","0","0","0","647","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","17","16","0","0","0","0","0","0","0","70" +"27739","-1","","","","","Spaulders of the Righteous","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46860","234300","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2861","0","0","0","0","623","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","22","20","0","0","0","0","0","0","0","70" +"27740","-1","","","","","Band of Ursol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","23","12","22","0","0","0","0","0","0","0","70" +"27741","-1","","","","","Bleeding Hollow Warhammer","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90078","450393","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","120","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","17","16","0","0","0","0","0","0","0","70" +"27742","-1","","","","","Mage-Fury Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16784","83920","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","23","20","0","0","0","0","0","0","0","70" +"27743","-1","","","","","Girdle of Living Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25273","126368","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","17","16","0","0","0","0","0","0","0","70" +"27744","-1","","","","","Idol of Ursoc","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25371","126857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27745","-1","","","","","Hungarhide Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25469","127345","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","21","20","0","0","0","0","0","0","0","70" +"27746","-1","","","","","Arcanium Signet Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17042","85213","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","14","15","0","0","0","0","0","0","0","0","70" +"27747","-1","","","","","Boggspine Knuckles","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85539","427696","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","15","10","11","0","0","0","0","0","0","0","70" +"27748","-1","","","","","Cassock of the Loyal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60105","300526","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","34","25","0","0","0","0","0","0","0","70" +"27749","-1","","","","","Staff of the Wild","0.4","0","-10.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78430","392152","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","99","-1","0","0","167","0","0","0","0","251","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","4","3","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","30","21","20","20","0","0","0","0","0","0","0" +"27750","-1","","","","","Hammer of the Sporelings","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78718","393593","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","99","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","30","20","0","0","0","0","0","0","0","0","0" +"27751","-1","","","","","Survivalist's Pike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79015","395075","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","99","-1","0","0","172","0","0","0","0","259","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","30","20","0","0","0","0","0","0","0","0" +"27752","-1","","","","","Zangarmarsh Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79311","396556","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","99","-1","0","0","151","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","30","21","20","20","0","0","0","0","0","0","0" +"27753","-1","","","","","Ensorcelled Marshfang Blade","0.6","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60223","301117","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","21","7","0","0","0","0","0","0","0","0","0","0","0","21","2","0","9","10","13","0","0","0","0","0","0","0","0" +"27754","-1","","","","","Keen Marshfang Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60447","302238","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","93","-1","0","0","89","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","10","9","0","0","0","0","0","0","0","0","0" +"27755","-1","","","","","Girdle of Gallantry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31020","155101","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","27","14","22","13","0","0","0","0","0","0","70" +"27756","-1","","","","","Marshfang Blade Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60895","304479","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","93","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","12","0","0","0","0","0","0","0","0","0","0" +"27757","-1","","","","","Greatstaff of the Leviathan","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110959","554799","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","39","36","0","0","0","0","0","0","0","0","70" +"27758","-1","","","","","Hydra-fang Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","16","16","0","0","0","0","0","0","0","70" +"27759","-1","","","","","Headdress of the Tides","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41287","206438","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","35","0","0","0","0","0","0","0","0","70" +"27760","-1","","","","","Dunewind Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23018","115094","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","16","0","0","0","0","0","0","0","0","70" +"27761","-1","","","","","Ring of the Shadow Deeps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","21","13","0","0","0","0","0","0","0","70" +"27762","-1","","","","","Weathered Band of the Swamplord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","32","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","20","21","14","0","0","0","0","0","0","0","70" +"27763","-1","","","","","Crown of the Forest Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31588","157944","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","26","30","27","0","0","0","0","0","0","0","70" +"27764","-1","","","","","Hands of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16912","84562","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","23","21","0","0","0","0","0","0","0","70" +"27765","-1","","","","","Armwraps of Disdain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21219","106099","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","20","0","0","0","0","0","0","0","0","70" +"27766","-1","","","","","Swampstone Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","15","18","0","0","0","0","0","0","0","70" +"27767","-1","","","","","Bogreaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85530","427652","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","115","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","18","0","0","0","0","0","0","0","0","70" +"27768","-1","","","","","Oracle Belt of Timeless Mystery","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17171","85855","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","400","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","24","17","0","0","0","0","0","0","0","70" +"27769","-1","","","","","Endbringer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107715","538579","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","115","-1","0","0","253","0","0","0","0","381","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","28","45","0","0","0","0","0","0","0","70" +"27770","-1","","","","","Argussian Compass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21612","86450","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","36","0","0","0","0","0","0","0","0","0","70" +"27771","-1","","","","","Doomplate Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45495","227477","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2870","0","0","0","0","661","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","22","20","0","0","0","0","0","0","0","70" +"27772","-1","","","","","Stormshield of Renewal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55769","278849","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","12","16","0","0","0","0","0","0","0","0","70" +"27773","-1","","","","","Barbaric Legstraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52479","262397","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2869","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","13","17","0","0","0","0","0","0","0","70" +"27774","-1","Matches a Red Socket.","","","","zzOLDMighty Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27775","-1","","","","","Hallowed Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27134","135672","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2863","0","0","0","0","662","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","10","17","20","0","0","0","0","0","0","0","70" +"27776","-1","","","","","Shoulderpads of Assassination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34036","170184","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2895","0","0","0","0","620","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","25","0","0","0","0","0","0","0","0","70" +"27777","-1","Matches a Red Socket.","","","","Stark Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27778","-1","","","","","Spaulders of Oblivion","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27424","137124","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2880","0","0","0","0","644","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","17","0","0","0","0","0","0","0","0","70" +"27779","-1","","","","","Bone Chain Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50287","201151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","19","18","13","0","0","0","0","0","0","0","70" +"27780","-1","","","","","Ring of Fabled Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83797","335188","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","11","0","0","0","0","0","0","0","0","70" +"27781","-1","","","","","Demonfang Ritual Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25073","125366","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","30","19","0","0","0","0","0","0","0","70" +"27783","-1","","","","","Moonrage Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20557","102789","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","21","20","0","0","0","0","0","0","0","68" +"27784","-1","","","","","Scintillating Coral Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","14","15","17","0","0","0","0","0","0","0","68" +"27785","-1","Matches a Yellow or Blue Socket.","","","","Notched Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27786","-1","Matches a Yellow or Blue Socket.","","","","Barbed Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27787","-1","","","","","Chestguard of No Remorse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41742","208714","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","35","21","0","0","0","0","0","0","0","0","68" +"27788","-1","","","","","Bloodsworn Warboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43913","219565","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","780","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","31","29","17","0","0","0","0","0","0","0","68" +"27789","-1","","","","","Cloak of Whispering Shells","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25236","126181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","16","0","0","0","0","0","0","0","0","68" +"27790","-1","","","","","Mask of Penance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45438","227193","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","27","30","0","0","0","0","0","0","0","0","68" +"27791","-1","","","","","Serpentcrest Life-Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108780","543902","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","112","-1","0","0","173","0","0","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","27","46","0","0","0","0","0","0","0","68" +"27792","-1","","","","","Steam-Hinge Chain of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","26","19","0","0","0","0","0","0","0","0","68" +"27793","-1","","","","","Earth Mantle Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26298","131490","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","21","18","16","0","0","0","0","0","0","0","68" +"27794","-1","","","","","Recoilless Rocket Ripper X-54","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65983","329916","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","112","-1","0","0","131","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","13","16","0","0","0","0","0","0","0","0","68" +"27795","-1","","","","","Sash of Serpentra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18086","90430","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","31","21","17","0","0","0","0","0","0","0","70" +"27796","-1","","","","","Mana-Etched Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27226","136134","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","658","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","17","16","0","0","0","0","0","0","0","70" +"27797","-1","","","","","Wastewalker Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34155","170778","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2887","0","0","0","0","659","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","13","16","0","0","0","0","0","0","0","70" +"27798","-1","","","","","Gauntlets of Vindication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32175","160876","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","25","0","0","0","0","0","0","0","0","70" +"27799","-1","","","","","Vermillion Robes of the Dominant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","183447","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","37","33","12","0","0","0","0","0","0","0","70" +"27800","-1","","","","","Earthsoul Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46024","230123","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","33","26","0","0","0","0","0","0","0","70" +"27801","-1","","","","","Beast Lord Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41753","208767","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2895","0","0","0","0","650","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","12","0","0","0","0","0","0","0","0","70" +"27802","-1","","","","","Tidefury Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37916","189580","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","630","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","18","23","0","0","0","0","0","0","0","0","70" +"27803","-1","","","","","Shoulderguards of the Bold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44126","220632","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2876","0","0","0","0","653","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","25","17","0","0","0","0","0","0","0","70" +"27804","-1","","","","","Devilshark Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25360","126804","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","22","18","20","0","0","0","0","0","0","0","70" +"27805","-1","","","","","Ring of the Silver Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","18","19","0","0","0","0","0","0","0","70" +"27806","-1","","","","","Fathomheart Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26252","131264","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","25","0","0","0","0","0","0","0","0","70" +"27807","-1","Frozen solid!","","","","Air Elemental Gas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27808","-1","Etched on the side: Wazat will not be held accountable for any accidents that occur as a result of using the Jump-a-tron 4000.","","","","Jump-a-tron 4000 Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"27809","-1","Matches a Yellow or Blue Socket.","","","","Barbed Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","281","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27811","-1","Matches a Red Socket.","","","","zzOLDMighty Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","282","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27812","-1","Matches a Red Socket.","","","","Stark Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27813","-1","","","","","Boots of the Colossus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47044","235222","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2861","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","27","19","0","0","0","0","0","0","0","70" +"27814","-1","","","","","Twinblade of Mastery","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90096","450481","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","115","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","21","11","0","0","0","0","0","0","0","70" +"27815","-1","","","","","Totem of the Astral Winds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27126","135632","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27816","-1","","","","","Mindrage Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27224","136121","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","15","0","0","0","0","0","0","0","0","70" +"27817","-1","","","","","Starbolt Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68304","341523","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","115","-1","0","0","130","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","19","15","0","0","0","0","0","0","0","0","70" +"27818","-1","","","","","Starry Robes of the Crescent","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45694","228474","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","23","30","24","19","0","0","0","0","0","0","70" +"27819","-1","","","","","Crazy Raptor 75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27820","-1","Matches a Yellow or Blue Socket.","","","","Notched Deep Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"27821","-1","","","","","Extravagant Boots of Malice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27707","138536","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","24","14","0","0","0","0","0","0","0","70" +"27822","-1","","","","","Crystal Band of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","22","16","0","0","0","0","0","0","0","70" +"27823","-1","","","","","Shard Encrusted Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51920","259600","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","32","24","23","0","0","0","0","0","0","0","70" +"27824","-1","","","","","Robe of the Great Dark Beyond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34743","173717","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","30","18","23","0","0","0","0","0","0","70" +"27825","-1","","","","","Predatory Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21793","108969","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","19","21","0","0","0","0","0","0","0","70" +"27826","-1","","","","","Mantle of the Sea Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39550","197752","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","25","0","0","0","0","0","0","0","0","70" +"27827","-1","","","","","Lucid Dream Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21956","109783","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","13","15","17","0","0","0","0","0","0","0","70" +"27828","-1","","","","","Warp-Scarab Brooch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"27829","-1","","","","","Axe of the Nexus-Kings","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110586","552930","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","115","-1","0","0","253","0","0","0","0","381","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","33","35","0","0","0","0","0","0","0","0","70" +"27830","-1","","","","","Circlet of the Victor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","4","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","13","0","0","0","0","0","0","0","0","60" +"27831","-1","","","","","Mantle of the Unforgiven","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33419","167099","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","21","12","0","0","0","0","0","0","0","70" +"27832","-1","","","","","Band of the Victor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","1583","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","4","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","13","0","0","0","0","0","0","0","0","60" +"27833","-1","","","","","Band of the Victor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","1583","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","4","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","13","0","0","0","0","0","0","0","0","60" +"27834","-1","","","","","Circlet of the Victor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","80","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","4","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","13","0","0","0","0","0","0","0","0","60" +"27835","-1","","","","","Stillwater Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27123","135619","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","26","0","0","0","0","0","0","0","0","70" +"27836","-1","","","","","Monster - Mace, Ornate Metal Hammer (Red Fire)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27837","-1","","","","","Wastewalker Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45527","227638","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2878","0","0","0","0","659","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","31","27","19","0","0","0","0","0","0","0","70" +"27838","-1","","","","","Incanter's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33962","169811","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","647","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","30","17","18","0","0","0","0","0","0","70" +"27839","-1","","","","","Legplates of the Righteous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59661","298309","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","27","24","26","0","0","0","0","0","0","0","70" +"27840","-1","Stolen long ago by the Nexus-Kings, the Scepter embodies the righteous power of the Naaru.","","","","Scepter of Sha'tar","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106935","534675","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","245","0","0","0","0","408","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","31","28","26","30","0","0","0","0","0","0","70" +"27841","-1","This is the biggest talon you have ever seen.","","","","Severed Talon of the Matriarch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27842","-1","","","","","Grand Scepter of the Nexus-Kings","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107748","538743","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","45","43","19","0","0","0","0","0","0","0","70" +"27843","-1","","","","","Glyph-Lined Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17304","86524","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","21","23","9","0","0","0","0","0","0","0","70" +"27844","-1","","","","","Pauldrons of Swift Retribution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45504","227524","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","29","24","20","19","0","0","0","0","0","0","70" +"27845","-1","","","","","Magma Plume Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39399","196996","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","26","14","0","0","0","0","0","0","0","70" +"27846","-1","","","","","Claw of the Watcher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87492","437461","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","2500","0","0","0","115","-1","0","0","125","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","2","0","7","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","0","0","0","0","0","0","0","0","0","70" +"27847","-1","","","","","Fanblade Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46016","230082","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2870","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","4","7","12","14","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","22","20","15","0","0","0","0","0","0","70" +"27848","-1","","","","","Embroidered Spellpyre Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26440","132201","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","21","0","0","0","0","0","0","0","0","70" +"27849","-1","","","","","Monster - Axe, 1H Large Double Bladed (Broken)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27850","-1","","","","","Monster - Axe, 1H Hot Steel (Broken)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27851","-1","","","","","Monster - Shield (Broken)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27852","-1","","","","","Monster - Mace2H (Broken)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27853","-1","","","","","Crazy Raptor 150","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27854","-1","","","","","Smoked Talbuk Venison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27855","-1","","","","","Mag'har Grainbread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27856","-1","","","","","Skethyl Berries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27857","-1","","","","","Garadar Sharp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27858","-1","","","","","Sunspring Carp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27859","-1","","","","","Zangar Caps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"27860","-1","","","","","Purified Draenic Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"27861","-1","None of this stuff looks familiar to you. Just what is Lathrai up to?","","","","Lathrai's Stolen Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27862","-1","","","","","Monster - Mace2H, Olhorn Totem","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27863","-1","","","","","Brian's Bryanite of Extended Cost","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"27864","-1","","","","","Brian's Bryanite of Extended Cost Copying","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","0","10","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"27865","-1","","","","","Bracers of Shirrak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26147","130736","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","17","14","0","0","0","0","0","0","0","0","70" +"27866","-1","","","","","Scintillating Headdress of Second Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26242","131212","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","27","32","0","0","0","0","0","0","0","70" +"27867","-1","","","","","Boots of the Unjust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32925","164625","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","19","13","0","0","0","0","0","0","0","70" +"27868","-1","","","","","Runesong Dagger","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86036","430183","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","112","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","12","11","20","0","0","0","0","0","0","0","68" +"27869","-1","","","","","Soulpriest's Ring of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","34","24","0","0","0","0","0","0","0","0","70" +"27870","-1","","","","","Doomplate Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62137","310687","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","36","33","27","17","0","0","0","0","0","0","70" +"27871","-1","","","","","Maladaar's Blessed Chaplet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","30","12","20","0","0","0","0","0","0","0","70" +"27872","-1","","","","","The Harvester of Souls","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91750","458751","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","16","13","15","0","0","0","0","0","0","0","70" +"27873","-1","","","","","Moonglade Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46037","230189","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","637","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","16","24","25","23","0","0","0","0","0","70" +"27874","-1","","","","","Beast Lord Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50151","250758","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","650","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","25","19","0","0","0","0","0","0","0","70" +"27875","-1","","","","","Hallowed Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33564","167823","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","662","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","33","18","0","0","0","0","0","0","0","70" +"27876","-1","","","","","Will of the Fallen Exarch","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84237","421185","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","19","21","0","0","0","0","0","0","0","0","70" +"27877","-1","","","","","Draenic Wildstaff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105703","528516","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","32","33","22","0","0","0","0","0","0","70" +"27878","-1","","","","","Auchenai Death Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25463","127319","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","15","17","0","0","0","0","0","0","0","70" +"27879","-1","","","","","Gladiator's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","583","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1547","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","23","26","31","25","0","0","0","0","0","70" +"27880","-1","","","","","Gladiator's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","967","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","14","16","36","16","0","0","0","0","0","70" +"27881","-1","","","","","Gladiator's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","583","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","21","16","45","16","0","0","0","0","0","70" +"27882","-1","","","","","Gladiator's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","21","22","48","21","0","0","0","0","0","70" +"27883","-1","","","","","Gladiator's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","583","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1160","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","15","16","32","16","0","0","0","0","0","70" +"27884","-1","","","","","Ornate Boots of the Sanctified","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44417","222085","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","780","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","37","18","20","0","0","0","0","0","0","0","68" +"27885","-1","","","","","Soul-Wand of the Aldor","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63806","319030","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","112","-1","0","0","158","0","0","0","0","293","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","8","10","0","0","0","0","0","0","0","68" +"27886","-1","","","","","Idol of the Emerald Queen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25617","128088","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27887","-1","","","","","Platinum Shield of the Valorous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56311","281556","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","3711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","33","24","0","0","0","0","0","0","0","0","68" +"27888","-1","","","","","Dream-Wing Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39736","198684","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","25","20","13","0","0","0","0","0","0","68" +"27889","-1","","","","","Jaedenfire Gloves of Annihilation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17722","88613","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","25","0","0","0","0","0","0","0","0","68" +"27890","-1","","","","","Wand of the Netherwing","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66698","333491","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","112","-1","0","0","158","0","0","0","0","293","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","19","0","0","0","0","0","0","0","0","0","68" +"27891","-1","","","","","Adamantine Figurine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66290","265161","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","68" +"27892","-1","","","","","Cloak of the Inciter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26870","134350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","18","16","0","0","0","0","0","0","0","68" +"27893","-1","","","","","Ornate Leggings of the Venerated","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62913","314565","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","35","21","25","0","0","0","0","0","0","0","68" +"27894","-1","","","","","Tangled Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","256","1026","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27895","-1","","","","","Band of Many Prisms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30866","123465","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","10","10","10","10","10","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27896","-1","","","","","Alembic of Infernal Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","33","0","0","0","0","0","0","0","0","0","70" +"27897","-1","","","","","Breastplate of Many Graces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57778","288893","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","1135","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","40","28","0","0","0","0","0","0","0","0","68" +"27898","-1","","","","","Wrathfire Hand-Cannon","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62144","310720","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","112","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","10","0","0","0","0","0","0","0","0","0","68" +"27899","-1","","","","","Mana Wrath","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85196","425980","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","24","18","0","0","0","0","0","0","0","0","70" +"27900","-1","","","","","Jewel of Charismatic Mystique","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21612","86450","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27901","-1","","","","","Blackout Truncheon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83803","419017","1","1","1","524288","24580","0","0","0","90","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","1500","0","0","0","112","-1","0","0","73","0","0","0","0","136","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27902","-1","","","","","Silent Slippers of Meditation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25849","129245","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","25","21","0","0","0","0","0","0","0","70" +"27903","-1","","","","","Sonic Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111025","555129","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","35","30","24","0","0","0","0","0","0","0","70" +"27904","-1","","","","","Resounding Ring of Glory","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","24","24","15","0","0","0","0","0","0","0","70" +"27905","-1","","","","","Greatsword of Horrid Dreams","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","89462","447314","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","14","14","0","0","0","0","0","0","0","70" +"27906","-1","","","","","Crimsonforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62851","314259","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","36","45","26","16","0","0","0","0","0","0","70" +"27907","-1","","","","","Mana-Etched Pantaloons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36045","180227","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","658","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","34","32","21","0","0","0","0","0","0","0","70" +"27908","-1","","","","","Leggings of Assassination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45215","226076","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","620","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","40","33","22","0","0","0","0","0","0","0","70" +"27909","-1","","","","","Tidefury Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54453","272268","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","31","19","0","0","0","0","0","0","0","70" +"27910","-1","","","","","Silvermoon Crest Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58292","291461","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","20","0","0","0","0","0","0","0","0","0","70" +"27911","-1","","","","","Epoch's Whispering Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22851","114259","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","24","17","0","0","0","0","0","0","0","70" +"27912","-1","","","","","Harness of the Deep Currents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55034","275171","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","30","0","0","0","0","0","0","0","0","70" +"27913","-1","","","","","Whispering Blade of Slaying","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92049","460247","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","115","-1","0","0","109","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","21","15","0","0","0","0","0","0","0","0","70" +"27914","-1","","","","","Moonstrider Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33819","169097","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","22","20","0","0","0","0","0","0","0","68" +"27915","-1","","","","","Sky-Hunter Swift Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37017","185086","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","19","24","0","0","0","0","0","0","0","68" +"27916","-1","","","","","Sethekk Feather-Darts","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","112","-1","0","0","80","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","15","0","0","0","0","0","0","0","0","0","68" +"27917","-1","","","","","Libram of the Eternal Rest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24759","123798","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","68" +"27918","-1","","","","","Bands of Syth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29163","145816","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","21","19","18","0","0","0","0","0","0","0","68" +"27919","-1","","","","","Light-Woven Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25630","128153","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","19","24","13","0","0","0","0","0","0","0","68" +"27920","-1","","","","","Mark of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","1037","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27921","-1","","","","","Mark of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","1037","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27922","-1","","","","","Mark of Defiance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27923","-1","","","","","Monster - Staff, Coryth's","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"27924","-1","","","","","Mark of Defiance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27925","-1","","","","","Ravenclaw Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","20","15","13","0","0","0","0","0","0","0","68" +"27926","-1","","","","","Mark of Vindication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","66","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27927","-1","","","","","Mark of Vindication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","66","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27928","-1","","","","","Terminal Edge","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","91","-1","0","0","63","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","12","7","0","0","0","0","0","0","0","0","62" +"27929","-1","","","","","Terminal Edge","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","91","-1","0","0","63","0","0","0","0","96","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","12","7","0","0","0","0","0","0","0","0","62" +"27930","-1","","","","","Splintermark","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","91","-1","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","12","7","0","0","0","0","0","0","0","0","62" +"27931","-1","","","","","Splintermark","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","91","-1","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","12","7","0","0","0","0","0","0","0","0","62" +"27932","-1","","","","","Razor Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27933","-1","","","","","Serrated Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27934","-1","","","","","Vorpal Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27935","-1","","","","","Needle Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"27936","-1","","","","","Greaves of Desolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51920","259600","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","660","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","33","22","12","0","0","0","0","0","0","68" +"27937","-1","","","","","Sky Breaker","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86858","434294","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","20","0","0","0","0","0","0","0","0","68" +"27938","-1","","","","","Savage Mask of the Lynx Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32690","163454","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","35","34","15","0","0","0","0","0","0","0","70" +"27939","-1","","","","","Incendic Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","91","-1","0","0","129","0","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","0","0","0","0","0","0","0","0","0","62" +"27940","-1","This anchors your spirit to the world, allowing you to come back from the most dreadful of demises once your essence returns to where you perished!","","","","Marvelous Madstone of Immortality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27941","-1","This amulet keeps dangerous critters at bay. Its powerful warding magic is broken temporarily if you harm a critter.","","","","Compassionate Critter's Friend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","1" +"27942","-1","","","","","Incendic Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","91","-1","0","0","129","0","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","0","0","0","0","0","0","0","0","0","62" +"27943","-1","","","","","Chieftain Mummaki's Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27944","-1","Wearing this, one might find the rarest of items in the most mundane of locales!","","","","Talisman of True Treasure Tracking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87500","350000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27945","-1","Allows you to move through the seas with the greatest of ease. ","","","","Shark's Tooth of Bona Fide Fluidic Mobility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","1" +"27946","-1","","","","","Avian Cloak of Feathers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26928","134643","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","12","0","0","0","0","0","0","0","0","68" +"27947","-1","","","","","Totem of Impact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27948","-1","","","","","Trousers of Oblivion","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36165","180826","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","644","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","33","12","0","0","0","0","0","0","0","68" +"27949","-1","","","","","Libram of Zeal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27950","-1","","","","","TEST 60 Blue Paladin DPS Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18122","90610","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27951","-1","","","","","TEST 60 Blue Paladin DPS Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25155","125775","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27952","-1","","","","","TEST 60 Blue Paladin DPS Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33733","168665","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27953","-1","","","","","TEST 60 Blue Paladin DPS Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17025","85129","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27954","-1","","","","","TEST 60 Blue Paladin DPS Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25441","127209","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27955","-1","","","","","TEST 60 Blue Paladin DPS Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34116","170580","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27956","-1","","","","","TEST 60 Blue Paladin DPS Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25634","128173","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27957","-1","","","","","TEST 60 Blue Paladin DPS Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17283","86416","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27958","-1","","","","","TEST 60 Blue Paladin DPS Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27959","-1","","","","","TEST 60 Blue Paladin DPS Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27960","-1","","","","","TEST 60 Blue Paladin DPS Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14895","74478","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","121","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27961","-1","","","","","TEST 60 Blue Paladin DPS Sword2H Slow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62289","311447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","60","-1","121","0","156","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27962","-1","","","","","TEST 60 Blue Paladin DPS Sword2H Fast","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62519","312597","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","121","0","82","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27963","-1","","","","","TEST 130 Epic Paladin DPS Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46609","233045","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27964","-1","","","","","TEST 130 Epic Paladin DPS Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69631","348156","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27965","-1","","","","","TEST 130 Epic Paladin DPS Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93358","466794","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27966","-1","","","","","TEST 130 Epic Paladin DPS Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47117","235585","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1020","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27967","-1","","","","","TEST 130 Epic Paladin DPS Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65334","326672","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27968","-1","","","","","TEST 130 Epic Paladin DPS Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87609","438047","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27969","-1","","","","","TEST 130 Epic Paladin DPS Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65836","329181","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","1224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27970","-1","","","","","TEST 130 Epic Paladin DPS Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44396","221983","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27971","-1","","","","","TEST 130 Epic Paladin DPS Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27972","-1","","","","","TEST 130 Epic Paladin DPS Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27973","-1","","","","","TEST 130 Epic Paladin DPS Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38271","191355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","121","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27974","-1","","","","","TEST 130 Epic Paladin DPS Sword2H Slow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160069","800349","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","130","-1","121","0","374","0","0","0","0","561","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27975","-1","","","","","TEST 130 Epic Paladin DPS Sword2H Fast","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160676","803383","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","130","-1","121","0","196","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"27976","-1","Focusing one's metabolism, this pendant allows the wearer to draw great energy from ordinary food and drink - even heal wounds!","","","","Polished Pendant of Edible Energy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27977","-1","","","","","Legplates of the Bold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60782","303913","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","653","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","31","19","45","26","0","0","0","0","0","0","68" +"27978","-1","Adventuring is no excuse for being filthy. Now you can carry your soap wherever you go!","","","","Soap on a Rope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","1" +"27979","-1","A simple stone that grants the wearer the ability to bound over obstacles and across small gaps!","","","","Stone of Stupendous Springing Strides","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27980","-1","","","","","Terokk's Nightmace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87800","439001","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","115","-1","0","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","25","19","0","0","0","0","0","0","0","0","68" +"27981","-1","","","","","Sethekk Oracle Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26437","132188","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","18","12","0","0","0","0","0","0","0","68" +"27982","-1","When worn, this amulet will win over your heart's desire. Guaranteed!","","","","Charm of Potent and Powerful Passions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27983","-1","","","","","Libram of Zeal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27984","-1","","","","","Totem of Impact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27985","-1","","","","","Deathforge Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32296","161480","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","25","20","0","0","0","0","0","0","0","68" +"27986","-1","","","","","Crow Wing Reaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115094","575474","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","3400","0","0","0","115","-1","0","0","253","0","0","0","0","381","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","2","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","28","17","33","0","0","0","0","0","0","0","68" +"27987","-1","","","","","Melmorta's Twilight Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61203","306017","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","112","-1","0","0","135","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","15","0","0","0","0","0","0","0","0","0","68" +"27988","-1","","","","","Burnoose of Shifting Ages","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24576","122883","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","26","0","0","0","0","0","0","0","0","68" +"27989","-1","","","","","Idol of Savagery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27990","-1","","","","","Idol of Savagery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","62" +"27991","-1","","","","","Shadow Labyrinth Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27992","-1","With this trusty warding talisman, no tikbalang will ever find you and steal you away to the treetops. It really works!","","","","Infallible Tikbalang Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"27993","-1","","","","","Mask of Inner Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37576","187881","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","33","22","0","0","0","0","0","0","0","68" +"27994","-1","","","","","Mantle of Three Terrors","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25143","125718","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","29","25","12","0","0","0","0","0","0","0","68" +"27995","-1","","","","","Sun-Gilded Shouldercaps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31548","157743","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","26","15","0","0","0","0","0","0","0","68" +"27996","-1","","","","","Ring of Spiritual Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30866","123465","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","18","15","0","0","0","0","0","0","0","68" +"27997","-1","","","","","TEST 60 Blue Ret Paladin DPS Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17279","86399","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27998","-1","","","","","TEST 60 Blue Ret Paladin DPS Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25817","129085","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","431","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","55" +"27999","-1","","","","","TEST 60 Blue Ret Paladin DPS Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35540","177700","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28000","-1","","","","","TEST 60 Blue Ret Paladin DPS Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17936","89682","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28001","-1","","","","","TEST 60 Blue Ret Paladin DPS Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26797","133986","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28002","-1","","","","","TEST 60 Blue Ret Paladin DPS Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35923","179615","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28003","-1","","","","","TEST 60 Blue Ret Paladin DPS Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26987","134937","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28004","-1","","","","","TEST 60 Blue Ret Paladin DPS Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18193","90968","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","274","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28005","-1","","","","","TEST 60 Blue Ret Paladin DPS Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28006","-1","","","","","TEST 60 Blue Ret Paladin DPS Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28007","-1","","","","","TEST 60 Blue Ret Paladin DPS Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14176","70882","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","102","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28008","-1","","","","","TEST 60 Blue Ret Paladin DPS Sword2H Slow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59298","296493","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","60","-1","102","0","156","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28009","-1","","","","","TEST 60 Blue Ret Paladin DPS Sword2H Fast","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59528","297643","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","60","-1","102","0","82","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"28010","-1","","","","","TEST 130 Epic Ret Paladin DPS Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44382","221914","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28011","-1","","","","","TEST 130 Epic Ret Paladin DPS Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66324","331622","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28012","-1","","","","","TEST 130 Epic Ret Paladin DPS Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88941","444705","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1632","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28013","-1","","","","","TEST 130 Epic Ret Paladin DPS Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44890","224454","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1020","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28014","-1","","","","","TEST 130 Epic Ret Paladin DPS Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67080","335403","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28015","-1","","","","","TEST 130 Epic Ret Paladin DPS Legs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92385","461926","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28016","-1","","","","","TEST 130 Epic Ret Paladin DPS Shoulder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69411","347056","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","1224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28017","-1","","","","","TEST 130 Epic Ret Paladin DPS Wrist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46793","233968","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28018","-1","","","","","TEST 130 Epic Ret Paladin DPS Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28019","-1","","","","","TEST 130 Epic Ret Paladin DPS Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28020","-1","","","","","TEST 130 Epic Ret Paladin DPS Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40317","201589","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","102","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28021","-1","","","","","TEST 130 Epic Ret Paladin DPS Sword2H Slow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","168581","842909","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","130","-1","102","0","374","0","0","0","0","561","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28022","-1","","","","","TEST 130 Epic Ret Paladin DPS Sword2H Fast","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","169188","845943","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","130","-1","102","0","196","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28023","-1","","","","","Monster - Throwing Axe (Poison)","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"28024","-1","","","","","Orion's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2985","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28025","-1","Debug - Video Mount","","","","Video Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"28026","-1","","","","","Crazy Cenarion Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19557","97787","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","32767","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","16","11","11","0","0","0","0","0","0","0","0" +"28027","-1","","","","","Lunatic's Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22457","112285","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","16","11","0","0","0","0","0","0","0","0","0" +"28028","-1","","","","","Moonstruck Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14852","74261","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","11","11","0","0","0","0","0","0","0","0" +"28029","-1","","","","","Goldenvine Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14047","70237","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","19","13","13","0","0","0","0","0","0","0","0" +"28030","-1","","","","","Spell-slinger's Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21753","108768","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","32767","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","14","13","9","0","0","0","0","0","0","0" +"28031","-1","","","","","Nomad's Woven Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22437","112187","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","14","14","21","13","0","0","0","0","0","0","0" +"28032","-1","They won't see you coming but they'll definitely see you leaving.","","","","Delicate Green Poncho","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22518","112594","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","19","14","14","0","0","0","0","0","0","0","0" +"28033","-1","","","","","Epoch-Mender","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107191","535957","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","112","-1","0","0","173","0","0","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","37","35","0","0","0","0","0","0","0","0","68" +"28034","-1","","","","","Hourglass of the Unraveller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","68" +"28037","-1","","","","","Monster - Sword, Shivan","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28038","-1","Manufactured: Garvin the Goblin, Area 52","","","","Seaforium PU-36 Explosive Nether Modulator","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28039","-1","These explosives are a great example of fel orc 'engineering' in action. They could make even the most accomplished goblin engineer blush.","","","","Crude Explosives","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28040","-1","","","","","Vengeance of the Illidari","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","26","0","0","0","0","0","0","0","0","0","0" +"28041","-1","","","","","Bladefist's Breadth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","26","0","0","0","0","0","0","0","0","0","0" +"28042","-1","","","","","Regal Protectorate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","26","0","0","0","0","0","0","0","0","0","0" +"28043","-1","","","","","Demon Stalker Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","12","0","0","0","0","0","0","0","0","0","0","0","2","2","0","18","6","12","0","0","0","0","0","0","0","0" +"28044","-1","","","","","Band of the Demon Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","29415","117660","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","31","13","4","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","10","6","12","0","0","0","0","0","0","0" +"28045","-1","","","","","Cloak of the Demon Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18399","91996","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","0","0","0","0","0","0","0","0","0","0" +"28046","-1","Bears the seal of Arazzius.","","","","Legion Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2981","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28047","-1","","","","","Nekrogg's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28048","-1","These explosives are a great example of fel orc 'engineering' in action. They could make even the most accomplished goblin engineer blush.","","","","Crude Explosives","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28049","-1","","","","","(Deprecated)Gems of Goliathon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28050","-1","","","","","Sacred Feather Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33134","165671","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","10","13","15","14","0","0","0","0","0","0","0" +"28051","-1","","","","","Jerkin of the Untamed Spirit","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33255","166275","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","26","25","22","0","0","0","0","0","0","0","0" +"28052","-1","","","","","Goldweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26703","133517","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","14","13","8","0","0","0","0","0","0","0" +"28053","-1","","","","","Wicked Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1600","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","22","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28054","-1","","","","","Fleshripper's Bladed Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47078","235393","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","31","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","36","14","13","22","0","0","0","0","0","0","0" +"28055","-1","","","","","Gilded Crimson Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47247","236239","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","0","0","0","0","0","0","0","0","0","0","0","5","3","0","13","14","15","0","0","0","0","0","0","0","0" +"28056","-1","","","","","Blackflight Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","3000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","118","-1","0","0","32","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","65" +"28057","-1","","","","","Bonechewer Berserker's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40796","203981","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","13","15","14","0","0","0","0","0","0","0","0" +"28058","-1","","","","","Shredded Wyrm Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"28059","-1","","","","","Iridescent Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"28060","-1","","","","","Impact Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1600","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","80","-1","0","0","22","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28061","-1","","","","","Ironbite Shell","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","3","3000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","118","-1","0","0","32","0","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","65" +"28062","-1","","","","","Expedition Repeater","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46848","234242","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","93","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","6","7","0","0","0","0","0","0","0","0","0" +"28063","-1","","","","","Survivalist's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43673","218365","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","93","-1","0","0","77","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","4","35","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","7","9","0","0","0","0","0","0","0","0","0" +"28064","-1","","","","","Idol of the Wild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17536","87682","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28065","-1","","","","","Libram of Wracking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17603","88018","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28066","-1","","","","","Totem of Lightning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17669","88345","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28067","-1","","","","","Monster - Staff, Atiesh (Medivh's)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28068","-1","","","","","Grimoire of Suffering (Rank 6)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","69" +"28069","-1","","","","","Golden Cenarion Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36740","183703","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","641","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","34","0","0","0","0","0","0","0","0" +"28070","-1","","","","","Verdant Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21111","105558","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","13","8","0","0","0","0","0","0","0","0" +"28071","-1","","","","","Grimoire of Anguish (Rank 1)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3750","15000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"28072","-1","","","","","Grimoire of Anguish (Rank 2)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6500","26000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"28073","-1","","","","","Grimoire of Anguish (Rank 3)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","16750","67000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"28074","-1","","","","","Studded Green Anklewraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26782","133913","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","31","13","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","30","12","13","8","8","0","0","0","0","0","0" +"28075","-1","","","","","Destroyers' Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21505","107526","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","6","0","0","0","0","0","0","0","0","0","0","3","3","0","12","12","9","8","0","0","0","0","0","0","0" +"28076","-1","","","","","Level 60 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28077","-1","","","","","Level 61 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28078","-1","","","","","Level 62 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28079","-1","","","","","Level 63 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28080","-1","","","","","Level 64 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28081","-1","","","","","Level 65 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28082","-1","","","","","Level 66 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28083","-1","","","","","Level 67 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28084","-1","","","","","Level 68 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28085","-1","","","","","Level 69 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28086","-1","","","","","Level 70 Test Gear Green - Leather - Rogue 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28087","-1","","","","","Monster - Sword, Iblis, Blade of the Fallen Seraph","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83728","418642","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28088","-1","","","","","Level 60 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28089","-1","","","","","Level 61 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28090","-1","","","","","Level 62 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28091","-1","","","","","Level 63 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28092","-1","","","","","Level 64 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28093","-1","","","","","Level 65 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28094","-1","","","","","Level 66 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28095","-1","","","","","Level 67 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28096","-1","","","","","Level 68 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28097","-1","","","","","Level 69 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28098","-1","","","","","Level 70 Test Gear Green - Plate - Warrior 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28099","-1","","","","","Drillmaster Zurok's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28100","-1","","","","","Volatile Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28101","-1","","","","","Unstable Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28102","-1","","","","","Onslaught Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"28103","-1","","","","","Adept's Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"28104","-1","","","","","Elixir of Mastery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"28105","-1","Sealed","","","","Duron's Report","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28106","-1","","","","","Kingston's Primers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28107","-1","Bears the seal of Arazzius.","","","","Legion Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2982","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28108","-1","","","","","Power Infused Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10307","41230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28109","-1","","","","","Essence Infused Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10307","41230","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28110","-1","","","","","Fat Gnome and Little Elf","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28111","-1","","","","","Everlasting Underspore Frond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28112","-1","","","","","Underspore Pod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28113","-1","","","","","Warboss Nekrogg's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10130","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28114","-1","","","","","Warboss Nekrogg's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10152","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28115","-1","","","","","Monster - Obsidian Edged Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11","59","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","24","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28116","-1","","","","","Zeppelin Debris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28117","-1","Matches a Red Socket.","","","","zzOLDBold Ornate Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28118","-1","Matches a Red Socket.","","","","Runed Ornate Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28119","-1","Matches a Yellow Socket.","","","","Smooth Ornate Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28120","-1","Matches a Yellow Socket.","","","","Gleaming Ornate Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28121","-1","","","","","Icon of Unyielding Courage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","30","0","0","0","0","0","0","0","0","0","70" +"28122","-1","Matches a Red or Yellow Socket.","","","","zzOLDEnscribed Ornate Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28123","-1","Matches a Red or Yellow Socket.","","","","Potent Ornate Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28124","-1","","","","","Liar's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21217","106088","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","24","18","0","0","0","0","0","0","0","0","70" +"28125","-1","","","","","Monster - Sword2H, Vazruden","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28126","-1","","","","","Gladiator's Dragonhide Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","30","18","19","20","0","0","0","0","0","70" +"28127","-1","","","","","Gladiator's Dragonhide Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","584","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","33","19","20","24","0","0","0","0","0","70" +"28128","-1","","","","","Gladiator's Dragonhide Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","40","25","29","28","0","0","0","0","0","70" +"28129","-1","","","","","Gladiator's Dragonhide Spaulders","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","584","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","28","12","17","18","0","0","0","0","0","70" +"28130","-1","","","","","Gladiator's Dragonhide Tunic","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","584","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","32","18","20","26","0","0","0","0","0","70" +"28131","-1","","","","","Reaver Buster Launcher","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28132","-1","","","","","Area 52 Special","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","196672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28133","-1","","","","","Monster - Sword, Shivan D01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28134","-1","","","","","Brooch of Heightened Potential","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","14","9","14","0","0","0","0","0","0","68" +"28135","-1","Caution: Bombs inside.","","","","Bomb Crate","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"28136","-1","","","","","Gladiator's Wyrmhide Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","21","22","0","0","0","0","0","0","0","70" +"28137","-1","","","","","Gladiator's Wyrmhide Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","585","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","25","27","0","0","0","0","0","0","0","70" +"28138","-1","","","","","Gladiator's Wyrmhide Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","29","29","0","0","0","0","0","0","0","70" +"28139","-1","","","","","Gladiator's Wyrmhide Spaulders","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","585","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","14","20","0","0","0","0","0","0","0","70" +"28140","-1","","","","","Gladiator's Wyrmhide Tunic","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","585","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","22","26","0","0","0","0","0","0","0","70" +"28141","-1","","","","","Ranger's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134","674","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","16","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28142","-1","","","","","Farstrider's Belt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","169","846","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28143","-1","","","","","Rusted Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203","1019","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28144","-1","","","","","Troll Handler Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77","389","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","1","1","0","0","0","0","0","0","0","0","0" +"28145","-1","","","","","Tranquillien Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122","610","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28146","-1","","","","","Courier's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48","241","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28147","-1","","","","","Tranquillien Scout's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60","302","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28148","-1","","","","","Bronze Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72","364","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28149","-1","","","","","Tranquillien Breeches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","158","793","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","1","1","0","0","0","0","0","0","0","0","0" +"28150","-1","","","","","Renzithen's Dusty Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149","746","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","-1","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28151","-1","","","","","Arcanist's Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","449","2247","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","14","-1","0","0","11","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28152","-1","","","","","Quel'Thalas Recurve","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","240","1203","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","11","-1","0","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","1","0","0","0","0","0","0","0","0","0","0" +"28153","-1","","","","","Farstrider's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","257","1287","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","-1","0","0","0","0","0","0","0","0","0","0","0","0","239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","1","0","0","0","0","0","0","0","0","0","0" +"28154","-1","","","","","Red Silk Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","334","1672","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","3","2","0","0","0","0","0","0","0","0","0" +"28155","-1","","","","","Apothecary's Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","965","1","1","1","32768","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","12" +"28156","-1","","","","","Rotting Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","193","968","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","19","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28157","-1","","","","","Black Leather Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","422","2112","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","3","2","0","0","0","0","0","0","0","0","0" +"28158","-1","","","","","Batskin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","243","1219","1","1","1","32768","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","5","0","0","6","2","0","2","0","0","0","0","0","0","0","0","0","12" +"28159","-1","","","","","Undertaker's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","244","1223","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28160","-1","","","","","An'telas Scale Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","476","2382","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","3","2","0","0","0","0","0","0","0","0","0" +"28161","-1","","","","","Tranquillien Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","478","2391","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","2","3","0","0","0","0","0","0","0","0","0" +"28162","-1","","","","","Tranquillien Defender's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","276","1380","1","1","1","32768","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","922","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","0","0","0","0","0","0","0","0","0","5","0","0","6","2","0","2","2","0","0","0","0","0","0","0","0","12" +"28163","-1","","","","","Maltendis's Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","277","1385","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","2","2","0","0","0","0","0","0","0","0","0" +"28164","-1","","","","","Tranquillien Flamberge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","876","4381","1","1","1","32768","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","922","0","0","15","-1","0","0","29","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","5","4","0","0","0","0","0","0","0","0","0","4","0","0","17","2","0","2","3","0","0","0","0","0","0","0","0","10" +"28165","-1","","","","","TEST GUN RocketLauncher","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18960","94801","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","47" +"28166","-1","","","","","Shield of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46065","230325","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","3234","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","24","16","0","0","0","0","0","0","0","0","64" +"28167","-1","","","","","Sha'tari Wrought Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31029","155147","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","20","18","12","0","0","0","0","0","0","0","0" +"28168","-1","","","","","Insignia of the Mag'hari Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","14","15","21","0","0","0","0","0","0","0","0" +"28169","-1","","","","","Mag'hari Ritualist's Horns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24112","120562","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","18","7","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","16","15","12","18","0","0","0","0","0","0","0" +"28170","-1","","","","","Auchenai Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26735","133679","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","0","0","0","0","0","0","0","0","0","0" +"28171","-1","","","","","Spymistress's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22359","111795","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2926","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","15","15","0","0","0","0","0","0","0","0" +"28172","-1","","","","","Mag'hari Scout's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40625","203126","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","12","18","0","0","0","0","0","0","0","0" +"28173","-1","","","","","Mag'hari Huntsman's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48927","244636","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","0","0","0","0","0","0","0","0","0","0","7","3","0","16","18","12","15","0","0","0","0","0","0","0" +"28174","-1","","","","","Shattrath Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18082","90413","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","15","0","0","0","0","0","0","0","0","0" +"28175","-1","","","","","Mag'hari Warlord's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57488","287443","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","917","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","31","32","4","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","64","16","15","12","12","0","0","0","0","0","0" +"28176","-1","","","","","Sha'tari Wrought Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44320","221600","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","0","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","21","22","0","0","0","0","0","0","0","0" +"28177","-1","","","","","Auchenai Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38377","191887","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","25","0","0","0","0","0","0","0","0","0" +"28178","-1","","","","","Spymistress's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31961","159808","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","27","0","0","0","0","0","0","0","0","0" +"28179","-1","","","","","Shattrath Jumpers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25664","128322","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","17","0","0","0","0","0","0","0","0","0" +"28180","-1","","","","","Myrmidon's Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44997","224988","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","6","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","37","33","0","0","0","0","0","0","0","0" +"28181","-1","","","","","Earthwarden's Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38789","193947","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","25","18","0","0","0","0","0","0","0","0" +"28182","-1","","","","","Helm of the Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32446","162233","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","21","14","0","0","0","0","0","0","0","0" +"28183","-1","","","","","Hydromancer's Headwrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26052","130261","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","27","0","0","0","0","0","0","0","0","0" +"28184","-1","","","","","Millennium Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85100","425502","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","112","-1","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","19","21","0","0","0","0","0","0","0","0","68" +"28185","-1","","","","","Khadgar's Kilt of Abjuration","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34167","170836","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","22","20","15","0","0","0","0","0","0","0","68" +"28186","-1","","","","","Laughing Skull Battle-Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51441","257208","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","635","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","29","20","0","0","0","0","0","0","0","68" +"28187","-1","","","","","Star-Heart Lamp","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","17","18","12","0","0","0","0","0","0","0","68" +"28188","-1","","","","","Bloodfire Greatstaff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110575","552875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","42","28","0","0","0","0","0","0","0","70" +"28189","-1","","","","","Latro's Shifting Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88785","443927","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","737","0","0","0","1400","0","0","0","115","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","14","0","0","0","0","0","0","0","0","70" +"28190","-1","","","","","Scarab of the Infinite Cycle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28191","-1","","","","","Mana-Etched Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35771","178855","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2889","0","0","0","0","658","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","25","17","0","0","0","0","0","0","0","70" +"28192","-1","","","","","Helm of Desolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41438","207190","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2873","0","0","0","0","660","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","25","14","0","0","0","0","0","0","0","70" +"28193","-1","","","","","Mana-Etched Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25081","125405","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","658","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","27","20","0","0","0","0","0","0","0","0","70" +"28194","-1","","","","","Primal Surge Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25176","125880","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","18","0","0","0","0","0","0","0","0","70" +"28195","-1","","","","","Monster - Staff, Ethereal (Black)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28196","-1","","","","","Monster - Staff, Ethereal (Gold)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28197","-1","","","","","Monster - Staff, Ethereal (Gray)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28198","-1","","","","","Monster - Staff, Ethereal (Purple)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28199","-1","","","","","Monster - Staff, Ethereal (White)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28200","-1","","","","","Monster - Staff, Ethereal (Black) (White Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28201","-1","","","","","Monster - Mace, Ethereal (Orange)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28202","-1","","","","","Moonglade Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43253","216267","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","637","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","4","7","5","6","3","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","25","16","17","14","17","0","0","0","0","0","70" +"28203","-1","","","","","Breastplate of the Righteous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60782","303913","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2865","0","0","0","0","623","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","28","20","0","0","0","0","0","0","0","70" +"28204","-1","","","","","Tunic of Assassination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43578","217894","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","620","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","21","0","0","0","0","0","0","0","0","70" +"28205","-1","","","","","Breastplate of the Bold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61232","306161","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2932","0","0","0","0","653","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","6","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","21","33","19","0","0","0","0","0","0","70" +"28206","-1","","","","","Cowl of the Guiltless","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32925","164625","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","13","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","28","30","31","0","0","0","0","0","0","0","70" +"28207","-1","","","","","Pauldrons of the Crimson Flight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46177","230889","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","40","28","0","0","0","0","0","0","0","0","70" +"28208","-1","","","","","Monster - Staff, Ethereal (White) (Black Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28209","-1","","","","","Old Whitebark's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","7" +"28210","-1","","","","","Bloodskull Destroyer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91424","457124","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","21","12","0","0","0","0","0","0","0","0","70" +"28211","-1","","","","","Lieutenant's Signet of Lordaeron","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","30","21","0","0","0","0","0","0","0","0","70" +"28212","-1","","","","","Aran's Sorcerous Slacks","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36830","184151","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","28","21","0","0","0","0","0","0","0","70" +"28213","-1","","","","","Lordaeron Medical Guide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","10","16","0","0","0","0","0","0","0","70" +"28214","-1","","","","","Grips of the Lunar Eclipse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20977","104889","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","25","18","0","0","0","0","0","0","0","70" +"28215","-1","","","","","Mok'Nathal Mask of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37906","189533","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","23","21","21","19","0","0","0","0","0","0","70" +"28216","-1","","","","","Dathrohan's Ceremonial Hammer","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84562","422813","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","14","18","0","0","0","0","0","0","0","70" +"28217","-1","","","","","Tarren Mill Vitality Locket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","35","24","0","0","0","0","0","0","0","0","70" +"28218","-1","","","","","Pontiff's Pantaloons of Prophecy","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34081","170409","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","27","24","0","0","0","0","0","0","0","70" +"28219","-1","","","","","Emerald-Scale Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51318","256591","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","20","0","0","0","0","0","0","0","0","70" +"28220","-1","","","","","Moon-Crown Antlers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32192","160963","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","31","20","16","0","0","0","0","0","0","70" +"28221","-1","","","","","Boots of the Watchful Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45154","225772","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","26","0","0","0","0","0","0","0","0","70" +"28222","-1","","","","","Reaver of the Infinites","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108122","540613","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","1","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","22","27","0","0","0","0","0","0","0","0","70" +"28223","-1","","","","","Arcanist's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","25","0","0","0","0","0","0","0","0","0","70" +"28224","-1","","","","","Wastewalker Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33551","167759","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2936","0","0","0","0","659","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","22","18","0","0","0","0","0","0","0","70" +"28225","-1","","","","","Doomplate Warhelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47053","235268","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2873","0","0","0","0","661","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","39","0","0","0","0","0","0","0","0","70" +"28226","-1","","","","","Timeslicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90122","450613","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","115","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","15","0","0","0","0","0","0","0","0","70" +"28227","-1","","","","","Sparking Arcanite Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83797","335188","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","14","10","14","0","0","0","0","0","0","70" +"28228","-1","","","","","Beast Lord Cuirass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54458","272294","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","650","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","20","30","24","0","0","0","0","0","0","0","70" +"28229","-1","","","","","Incanter's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36436","182181","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2869","0","0","0","0","647","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","22","22","8","0","0","0","0","0","0","70" +"28230","-1","","","","","Hallowed Garments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36566","182832","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2868","0","0","0","0","662","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","12","26","26","0","0","0","0","0","0","0","70" +"28231","-1","","","","","Tidefury Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55044","275224","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","630","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","22","10","0","0","0","0","0","0","0","70" +"28232","-1","","","","","Robe of Oblivion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36823","184116","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2868","0","0","0","0","644","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","30","20","0","0","0","0","0","0","0","0","70" +"28233","-1","","","","","Necklace of Resplendent Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28234","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28235","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28236","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28237","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28238","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28239","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28240","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28241","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28242","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28243","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"28244","-1","","","","","Pendant of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","2886","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","28","10","17","0","0","0","0","0","0","0","70" +"28245","-1","","","","","Pendant of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","2884","0","0","0","0","0","0","0","0","0","0","0","0","113","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","31","16","12","0","0","0","0","0","0","0","70" +"28246","-1","","","","","Band of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","21","16","16","0","0","0","0","0","0","0","70" +"28247","-1","","","","","Band of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","15","0","0","0","0","0","0","0","0","70" +"28248","-1","","","","","Totem of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27226","136134","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28249","-1","","","","","Capacitus' Cloak of Calibration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27324","136622","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","22","18","19","0","0","0","0","0","0","0","70" +"28250","-1","","","","","Vestia's Pauldrons of Inner Grace","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27422","137110","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","25","0","0","0","0","0","0","0","0","70" +"28251","-1","","","","","Boots of the Glade-Keeper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34396","171982","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","24","20","0","0","0","0","0","0","0","70" +"28252","-1","","","","","Bloodfyre Robes of Annihilation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36819","184098","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","27","27","0","0","0","0","0","0","0","0","70" +"28253","-1","","","","","Plasma Rat's Hyper-Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115468","577343","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","45","26","0","0","0","0","0","0","0","70" +"28254","-1","","","","","Warp Engineer's Prismatic Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","18","16","0","0","0","0","0","0","0","70" +"28255","-1","","","","","Lunar-Claw Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31579","157895","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","26","17","0","0","0","0","0","0","0","70" +"28256","-1","","","","","Thoriumweave Cloak","0","0","312","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26060","130301","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","35","0","0","0","0","0","0","0","0","0","70" +"28257","-1","","","","","Hammer of the Penitent","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87193","435965","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","16","13","0","0","0","0","0","0","0","0","70" +"28258","-1","","","","","Nethershrike","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","82","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","15","16","0","0","0","0","0","0","0","0","70" +"28259","-1","","","","","Cosmic Lifeband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30866","123465","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28260","-1","","","","","Manual of the Nethermancer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","15","19","0","0","0","0","0","0","0","70" +"28261","-1","Debug - Video Invis","","","","Video Invis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"28262","-1","","","","","Jade-Skull Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62162","310810","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","50","25","23","0","0","0","0","0","0","70" +"28263","-1","","","","","Stellaris","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89128","445643","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","115","-1","0","0","95","0","0","0","0","177","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","21","12","0","0","0","0","0","0","0","0","70" +"28264","-1","","","","","Wastewalker Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44727","223635","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2877","0","0","0","0","659","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","3","3","3","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","36","0","0","0","0","0","0","0","0","70" +"28265","-1","","","","","Dath'Remar's Ring of Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","15","0","0","0","0","0","0","0","0","70" +"28266","-1","","","","","Molten Earth Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54057","270289","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","32","0","0","0","0","0","0","0","0","70" +"28267","-1","","","","","Edge of the Cosmos","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90421","452109","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","16","0","0","0","0","0","0","0","0","70" +"28268","-1","","","","","Natural Mender's Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22686","113434","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","25","18","0","0","0","0","0","0","0","70" +"28269","-1","","","","","Baba's Cloak of Arcanistry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27319","136596","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","15","15","14","0","0","0","0","0","0","0","70" +"28270","-1","Teaches you how to permanently enchant a chest item to give 15 resilience rating.","","","","Formula: Enchant Chest - Major Resilience","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","333","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28271","-1","Teaches you how to permanently enchant gloves to grant 15 spell hit rating.","","","","Formula: Enchant Gloves - Spell Strike","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28272","-1","Teaches you how to permanently enchant gloves to increase spell damage and healing by up to 20.","","","","Formula: Enchant Gloves - Major Spellpower","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28273","-1","Teaches you how to permanently enchant gloves to increase Healing by 35 and Spell Damage by 12.","","","","Formula: Enchant Gloves - Major Healing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28274","-1","Teaches you how to permanently enchant a cloak to give 20 Spell Penetration.","","","","Formula: Enchant Cloak - Spell Penetration","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28275","-1","","","","","Beast Lord Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38940","194700","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","650","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","21","22","0","0","0","0","0","0","0","70" +"28276","-1","Teaches you how to permanently enchant a cloak to increase Arcane Resistance by 15.","","","","Formula: Enchant Cloak - Greater Arcane Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28277","-1","Teaches you how to permanently enchant a cloak to increase Shadow Resistance by 15.","","","","Formula: Enchant Cloak - Greater Shadow Resistance","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28278","-1","","","","","Incanter's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26250","131251","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2890","0","0","0","0","647","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","0","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","15","27","17","19","0","0","0","0","0","0","70" +"28279","-1","Teaches you how to permanently enchant boots to increase move speed slightly and Agility by 6.","","","","Formula: Enchant Boots - Cat's Swiftness","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28280","-1","Teaches you how to permanently enchant boots to increase move speed slightly and Stamina by 9.","","","","Formula: Enchant Boots - Boar's Speed","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28281","-1","Teaches you how to permanently enchant a melee weapon to increase healing by 81 and spell damage by 27.","","","","Formula: Enchant Weapon - Major Healing","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28282","-1","Teaches you how to permanently enchant a shield to give 18 Stamina.","","","","Formula: Enchant Shield - Major Stamina","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","333","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28283","-1","Used by the Auchenai priesthood to commune with spirits.","","","","Soul Mirror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28284","-1","","","","","Don Carlos Tequila","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28285","-1","","","","","Helm of the Righteous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47035","235176","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2869","0","0","0","0","623","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","6","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","21","0","0","0","0","0","0","0","70" +"28286","-1","","","","","Telescopic Sharprifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67565","337828","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","-1","0","0","139","0","0","0","0","259","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","13","0","0","0","0","0","0","0","0","0","70" +"28287","-1","","","","","Vial of Sedative Serum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28288","-1","","","","","Abacus of Violent Odds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28289","-1","","","","","Dargonhawk Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"28290","-1","Matches a Yellow Socket.","","","","Smooth Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","301","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28291","-1","Teaches you how to cut a Smooth Golden Draenite.","","","","Design: Smooth Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28292","-1","Although the staff shows no visible signs of age, you get the impression that it is quite old.","","","","Archmage Vargoth's Staff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28293","-1","","","","","High Warlord's Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","4","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","28","18","0","0","0","0","0","70" +"28294","-1","","","","","Gladiator's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3100","0","0","0","123","-1","0","0","204","0","0","0","0","307","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","15","12","12","0","0","0","0","0","0","0","70" +"28295","-1","","","","","Gladiator's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","123","-1","0","0","189","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28296","-1","","","","","Libram of the Lightbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26052","130261","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28297","-1","","","","","Gladiator's Spellblade","0.6","0","-49.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","123","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","28","18","18","0","0","0","0","0","0","0","70" +"28298","-1","","","","","Gladiator's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","123","-1","0","0","341","0","0","0","0","513","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","35","28","20","0","0","0","0","0","0","70" +"28299","-1","","","","","Gladiator's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","123","-1","0","0","341","0","0","0","0","513","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","32","35","28","20","0","0","0","0","0","70" +"28300","-1","","","","","Gladiator's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","123","-1","0","0","208","0","0","0","0","313","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","35","36","0","0","0","0","0","0","0","70" +"28301","-1","","","","","Syrannis' Mystic Sheen","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26538","132690","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","12","12","12","12","12","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28302","-1","","","","","Gladiator's Bonecracker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","123","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28303","-1","","","","","Invoker's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","403","1615","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","3","2","0","0","0","0","0","0","0","0","0" +"28304","-1","","","","","Prismatic Mittens of Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17885","89427","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","26","0","0","0","0","0","0","0","0","70" +"28305","-1","","","","","Gladiator's Pummeler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","123","-1","0","0","189","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28306","-1","","","","","Towering Mantle of the Hunt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37788","188944","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","23","21","0","0","0","0","0","0","0","70" +"28307","-1","","","","","Gladiator's Quickblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","123","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28308","-1","","","","","Gladiator's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","123","-1","0","0","189","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28309","-1","","","","","Gladiator's Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","123","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28310","-1","","","","","Gladiator's Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","123","-1","0","0","89","0","0","0","0","166","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28311","-1","","","","","Revenger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85213","426068","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28312","-1","","","","","Gladiator's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","123","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28313","-1","","","","","Gladiator's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","123","-1","0","0","166","0","0","0","0","309","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28314","-1","","","","","Gladiator's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","123","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","15","10","9","0","0","0","0","0","0","70" +"28315","-1","","","","","Stormreaver Warblades","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86506","432534","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","13","21","0","0","0","0","0","0","0","0","70" +"28316","-1","","","","","Aegis of the Sunbird","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55572","277863","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","27","19","0","0","0","0","0","0","0","0","70" +"28317","-1","","","","","Energis Armwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17431","87157","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","26","0","0","0","0","0","0","0","0","70" +"28318","-1","","","","","Obsidian Clodstompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45836","229183","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","34","30","0","0","0","0","0","0","0","0","70" +"28319","-1","","","","","Gladiator's War Edge","0.2","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","123","-1","0","0","140","0","0","0","0","172","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","15","11","12","0","0","0","0","0","0","0","70" +"28320","-1","","","","","Gladiator's Touch of Defeat","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","123","-1","0","0","223","0","0","0","0","414","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","15","11","12","0","0","0","0","0","0","0","70" +"28321","-1","","","","","Enchanted Thorium Torque","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","13","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","21","16","0","0","0","0","0","0","0","70" +"28322","-1","","","","","Runed Dagger of Solace","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91099","455496","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","24","21","0","0","0","0","0","0","0","0","70" +"28323","-1","","","","","Ring of Umbral Doom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","20","0","0","0","0","0","0","0","0","70" +"28324","-1","","","","","Gauntlets of Cruel Intention","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32296","161480","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","30","25","21","0","0","0","0","0","0","0","70" +"28325","-1","","","","","Dreamer's Dragonstaff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115094","575474","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","46","27","28","0","0","0","0","0","0","0","70" +"28327","-1","","","","","Arcane Netherband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","18","0","0","0","0","0","0","0","0","70" +"28328","-1","","","","","Mithril-Bark Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25271","126355","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","32","26","0","0","0","0","0","0","0","0","70" +"28331","-1","","","","","Gladiator's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","586","0","0","0","0","0","0","0","123","4","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","49","34","20","20","18","0","0","0","0","0","70" +"28332","-1","","","","","Gladiator's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","123","4","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","53","35","19","31","14","0","0","0","0","0","70" +"28333","-1","","","","","Gladiator's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","586","0","0","0","0","0","0","0","123","4","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","27","11","18","8","0","0","0","0","0","70" +"28334","-1","","","","","Gladiator's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","586","0","0","0","0","0","0","0","123","4","0","0","0","0","0","0","0","0","0","0","0","0","866","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","27","18","20","17","0","0","0","0","0","70" +"28335","-1","","","","","Gladiator's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","123","4","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","41","26","14","18","10","0","0","0","0","0","70" +"28336","-1","","","","","Belmara's Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28337","-1","","","","","Breastplate of Righteous Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62630","313151","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","29","28","0","0","0","0","0","0","0","70" +"28338","-1","","","","","Devil-Stitched Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35918","179594","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","32","28","0","0","0","0","0","0","0","0","70" +"28339","-1","","","","","Boots of the Shifting Sands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33796","168980","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","30","19","0","0","0","0","0","0","0","0","70" +"28340","-1","","","","","Mantle of Autumn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33918","169590","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","31","22","21","0","0","0","0","0","0","0","70" +"28341","-1","","","","","Warpstaff of Arcanum","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113456","567281","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","37","38","16","26","0","0","0","0","0","0","70" +"28342","-1","","","","","Warp Infused Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36436","182181","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","27","28","12","0","0","0","0","0","0","0","70" +"28343","-1","","","","","Jagged Bark Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10283","41135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","26","15","0","0","0","0","0","0","0","0","70" +"28344","-1","","","","","Wyrmfury Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41467","207335","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","25","18","20","0","0","0","0","0","0","0","70" +"28345","-1","","","","","Warp Splinter's Thorn","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92058","460291","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","115","-1","0","0","74","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","16","13","15","0","0","0","0","0","0","0","70" +"28346","-1","","","","","Gladiator's Endgame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","21","14","15","0","0","0","0","0","0","0","70" +"28347","-1","","","","","Warpscale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41951","209757","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","32","31","21","14","0","0","0","0","0","0","70" +"28348","-1","","","","","Moonglade Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31582","157911","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2890","0","0","0","0","637","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","8","0","0","1","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","8","18","25","13","0","0","0","0","0","70" +"28349","-1","","","","","Tidefury Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38045","190226","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2869","0","0","0","0","630","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","31","26","0","0","0","0","0","0","0","0","70" +"28350","-1","","","","","Warhelm of the Bold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44472","222360","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2927","0","0","0","0","653","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","6","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","22","23","20","0","0","0","0","0","0","70" +"28351","-1","","","","","Dathric's Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28352","-1","","","","","Luminrath's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28353","-1","","","","","Cohlien's Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28354","-1","","","","","Monster - Axe, 2H Draenei B01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28355","-1","","","","","Gladiator's Idol of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28356","-1","","","","","Gladiator's Libram of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28357","-1","","","","","Gladiator's Totem of the Third Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28358","-1","","","","","Gladiator's Shield Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","5197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","45","29","0","0","0","0","0","0","0","0","70" +"28359","-1","","","","","Netherologist's Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2984","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28360","-1","Matches a Red Socket.","","","","Mighty Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28361","-1","Matches a Red Socket.","","","","Mighty Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28362","-1","Matches a Red Socket.","","","","Bold Ornate Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28363","-1","Matches a Red or Yellow Socket.","","","","Inscribed Ornate Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","324","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28364","-1","You wonder if it's safe to handle these while they're still glowing?","","","","Etherlithium Matrix Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28365","-1","","","","","Monster - Glaive - Magtheridon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28366","-1","","","","","Test Orb","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10452","41810","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28367","-1","","","","","Greatsword of Forlorn Visions","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104856","524282","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","26","28","0","0","0","0","0","0","0","0","70" +"28368","-1","The sigil seems to have been forged from an unearthly material and glows softly.","","","","Sigil of Krasus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28369","-1","","","","","Battery Recharging Blaster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28370","-1","","","","","Bangle of Endless Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28371","-1","","","","","Netherfury Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26252","131264","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","19","19","21","0","0","0","0","0","0","0","70" +"28372","-1","","","","","Idol of Feral Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26350","131753","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28373","-1","","","","","Cloak of Scintillating Auras","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26448","132241","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","16","18","0","0","0","0","0","0","0","70" +"28374","-1","","","","","Mana-Sphere Shoulderguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26545","132729","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","26","17","0","0","0","0","0","0","0","70" +"28375","-1","","","","","Rubium War-Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31258","156293","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","31","29","18","0","0","0","0","0","0","0","70" +"28376","-1","","","","","B'naar Personnel Roster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28377","-1","","","","","Sergeant's Heavy Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","27","19","19","0","0","0","0","0","0","0","70" +"28378","-1","","","","","Sergeant's Heavy Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","33","16","12","0","0","0","0","0","0","0","70" +"28379","-1","","","","","Sergeant's Heavy Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","33","16","12","0","0","0","0","0","0","0","70" +"28380","-1","","","","","Sergeant's Heavy Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","27","19","19","0","0","0","0","0","0","0","70" +"28381","-1","","","","","General's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","14","14","0","0","0","0","0","0","70" +"28383","-1","","","","","General's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","27","0","0","0","0","0","0","70" +"28384","-1","","","","","Outland Striders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41455","207276","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","18","24","21","0","0","0","0","0","0","0","70" +"28385","-1","","","","","General's Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","40","27","27","27","0","0","0","0","0","0","70" +"28386","-1","","","","","Nether Core's Control Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64411","322058","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","163","0","0","0","0","303","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","9","10","8","0","0","0","0","0","0","0","70" +"28387","-1","","","","","Lamp of Peaceful Repose","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","16","18","0","0","0","0","0","0","0","0","70" +"28388","-1","Matches a Red Socket.","","","","TCHILTON TEST RUBY","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","361","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28389","-1","Matches a Yellow Socket.","","","","TCHILTON TEST DAWNSTONE","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","362","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"28390","-1","","","","","Thatia's Self-Correcting Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30685","153429","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","35","18","0","0","0","0","0","0","0","70" +"28391","-1","","","","","Worldfire Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52500","262503","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","32","22","0","0","0","0","0","0","0","70" +"28392","-1","","","","","Reflex Blades","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87826","439132","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","115","-1","0","0","135","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","16","0","0","0","0","0","0","0","0","70" +"28393","-1","","","","","Warmaul of Infused Light","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110190","550950","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","245","0","0","0","0","408","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","1","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","20","30","28","21","0","0","0","0","0","0","70" +"28394","-1","","","","","Ryngo's Band of Ingenuity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","14","14","0","0","0","0","0","0","0","70" +"28395","-1","","","","","Shattered Halls Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28396","-1","","","","","Gloves of the Unbound","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22279","111399","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2862","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","20","0","0","0","0","0","0","0","0","70" +"28397","-1","","","","","Emberhawk Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67077","335387","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","-1","0","0","159","0","0","0","0","239","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","18","0","0","0","0","0","0","0","0","0","70" +"28398","-1","","","","","The Sleeper's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22440","112202","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","18","24","21","0","0","0","0","0","0","0","70" +"28399","-1","","","","","Filtered Draenic Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"28400","-1","","","","","Warp-Storm Warblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90413","452065","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","115","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","21","13","15","0","0","0","0","0","0","0","70" +"28401","-1","","","","","Hauberk of Desolation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50552","252764","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2952","0","0","0","0","660","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","28","25","16","0","0","0","0","0","0","0","70" +"28402","-1","","","","","General's Dreadweave Stalkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","0","0","0","0","0","0","0","70" +"28403","-1","","","","","Doomplate Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59434","297170","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2952","0","0","0","0","661","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","27","19","0","0","0","0","0","0","0","70" +"28404","-1","","","","","General's Dreadweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","0","0","0","0","0","0","0","70" +"28405","-1","","","","","General's Dreadweave Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","14","0","0","0","0","0","0","0","70" +"28406","-1","","","","","Sigil-Laced Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25762","128810","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","18","17","0","0","0","0","0","0","0","70" +"28407","-1","","","","","Elementium Band of the Sentry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","24","20","19","0","0","0","0","0","0","0","70" +"28408","-1","","","","","Broken Silver Star","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","9","37","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28409","-1","","","","","General's Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","23","24","24","0","0","0","0","0","0","70" +"28410","-1","","","","","General's Silk Footguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","23","24","24","0","0","0","0","0","0","70" +"28411","-1","","","","","General's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","17","12","11","0","0","0","0","0","0","70" +"28412","-1","","","","","Lamp of Peaceful Radiance","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22045","88181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","13","14","12","13","0","0","0","0","0","0","70" +"28413","-1","","","","","Hallowed Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26440","132201","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2890","0","0","0","0","662","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","0","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","24","26","0","0","0","0","0","0","0","70" +"28414","-1","","","","","Helm of Assassination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33172","165862","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2871","0","0","0","0","620","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","25","25","0","0","0","0","0","0","0","0","70" +"28415","-1","","","","","Hood of Oblivion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26635","133178","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2889","0","0","0","0","644","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","27","32","0","0","0","0","0","0","0","0","70" +"28416","-1","","","","","Hungering Spineripper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89102","445511","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","16","0","0","0","0","0","0","0","0","70" +"28417","-1","The stuff dripping out of the tip burns a hole... in the ground!","","","","Nether Ray Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28418","-1","","","","","Shiffar's Nexus-Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","30","0","0","0","0","0","0","0","0","0","70" +"28419","-1","","","","","Choker of Fluid Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39470","157880","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","17","17","0","0","0","0","0","0","0","70" +"28420","-1","","","","","Fel Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"28421","-1","","","","","Adamantite Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"28422","-1","","","","","General's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","15","26","0","0","0","0","0","0","70" +"28423","-1","","","","","General's Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","15","26","0","0","0","0","0","0","70" +"28424","-1","","","","","General's Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","7","13","0","0","0","0","0","0","70" +"28425","-1","","","","","Fireguard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","106842","534212","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","107","-1","0","0","94","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","31","0","0","0","0","0","0","0","0","0","0","0","13","4","0","23","16","16","0","0","0","0","0","0","0","70" +"28426","-1","","","","","Blazeguard","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","121723","608617","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","123","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","31","0","0","0","0","0","0","0","0","0","0","0","13","4","0","25","17","17","0","0","0","0","0","0","0","70" +"28427","-1","","","","","Blazefury","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","133976","669880","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","136","-1","0","0","109","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","31","0","0","0","0","0","0","0","0","0","0","0","13","4","0","28","19","18","0","0","0","0","0","0","0","70" +"28428","-1","","","","","Lionheart Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17039","135064","675320","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","107","-1","0","0","315","0","0","0","0","474","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","47","42","0","0","0","0","0","0","0","0","70" +"28429","-1","","","","","Lionheart Champion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17039","153869","769345","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","123","-1","0","0","341","0","0","0","0","513","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","49","44","0","0","0","0","0","0","0","0","70" +"28430","-1","","","","","Lionheart Executioner","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17039","169367","846839","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","136","-1","0","0","365","0","0","0","0","549","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","52","44","0","0","0","0","0","0","0","0","70" +"28431","-1","","","","","The Planar Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","109260","546300","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","107","-1","0","0","159","0","0","0","0","296","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","0","0","0","0","0","0","0","0","0","70" +"28432","-1","","","","","Black Planar Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","124467","622336","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","123","-1","0","0","172","0","0","0","0","320","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","21","0","0","0","0","0","0","0","0","0","70" +"28433","-1","","","","","Wicked Edge of the Planes","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","140623","703115","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","136","-1","0","0","184","0","0","0","0","343","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","23","0","0","0","0","0","0","0","0","0","70" +"28434","-1","","","","","Lunar Crescent","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17041","141739","708698","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","107","-1","0","0","324","0","0","0","0","487","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","47","0","0","0","0","0","0","0","0","0","70" +"28435","-1","","","","","Mooncleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17041","161430","807150","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","123","-1","0","0","351","0","0","0","0","527","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","52","0","0","0","0","0","0","0","0","0","70" +"28436","-1","","","","","Bloodmoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17041","177659","888296","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","136","-1","0","0","375","0","0","0","0","564","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","17","4","0","56","0","0","0","0","0","0","0","0","0","70" +"28437","-1","","","","","Drakefist Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","114600","573002","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","107","-1","0","0","159","0","0","0","0","296","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28438","-1","","","","","Dragonmaw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","130528","652642","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","123","-1","0","0","172","0","0","0","0","320","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","9","0","0","0","0","0","0","0","0","0","70" +"28439","-1","","","","","Dragonstrike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","129941","649707","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","136","-1","0","0","184","0","0","0","0","343","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","19","0","0","0","0","0","0","0","0","0","70" +"28440","-1","","","","","Thunder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17040","131012","655060","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","107","-1","0","0","333","0","0","0","0","500","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","0","0","0","0","0","0","0","0","0","0","0","17","4","0","37","55","37","0","0","0","0","0","0","0","70" +"28441","-1","","","","","Deep Thunder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17040","149270","746351","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","123","-1","0","0","360","0","0","0","0","541","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","0","0","0","0","0","0","0","0","0","0","0","17","4","0","37","55","37","0","0","0","0","0","0","0","70" +"28442","-1","","","","","Stormherald","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","17040","164324","821622","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","136","-1","0","0","386","0","0","0","0","579","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","0","0","0","0","0","0","0","0","0","0","0","17","4","0","42","61","42","0","0","0","0","0","0","0","70" +"28443","-1","","","","","General's Dragonhide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","24","24","23","15","0","0","0","0","0","70" +"28444","-1","","","","","General's Dragonhide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","24","24","23","15","0","0","0","0","0","70" +"28445","-1","","","","","General's Dragonhide Bracers","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","4","3","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","16","13","11","0","0","0","0","0","0","70" +"28446","-1","","","","","General's Wyrmhide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","24","0","0","0","0","0","0","0","70" +"28447","-1","","","","","General's Wyrmhide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","24","0","0","0","0","0","0","0","70" +"28448","-1","","","","","General's Wyrmhide Bracers","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","13","0","0","0","0","0","0","0","70" +"28449","-1","","","","","General's Chain Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","18","14","18","0","0","0","0","0","70" +"28450","-1","","","","","General's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","18","14","18","0","0","0","0","0","70" +"28451","-1","","","","","General's Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","18","11","7","9","0","0","0","0","0","70" +"28452","-1","","","","","Bloodgem Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28453","-1","","","","","Bracers of the White Stag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30149","150747","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","18","22","0","0","0","0","0","0","0","70" +"28454","-1","","","","","Stalker's War Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36305","181529","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","18","17","0","0","0","0","0","0","0","70" +"28455","-1","Although the staff shows no visible signs of age, you get the impression that it is quite old.","","","","Archmage Vargoth's Staff","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28456","-1","","","","","Monster - Staff, Archmage Vargoth's","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28457","-1","Goblins and ethereal technology should mix well...","","","","Ethereal Technology","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28458","-1","Matches a Red Socket.","","","","Bold Tourmaline","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28459","-1","Matches a Red Socket.","","","","Delicate Tourmaline","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","382","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28460","-1","Matches a Red Socket.","","","","Teardrop Tourmaline","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","383","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28461","-1","Matches a Red Socket.","","","","Runed Tourmaline","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28462","-1","Matches a Red Socket.","","","","Bright Tourmaline","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28463","-1","Matches a Blue Socket.","","","","Solid Zircon","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","386","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28464","-1","Matches a Blue Socket.","","","","Sparkling Zircon","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28465","-1","Matches a Blue Socket.","","","","Lustrous Zircon","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28466","-1","Matches a Yellow Socket.","","","","Brilliant Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28467","-1","Matches a Yellow Socket.","","","","Smooth Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","390","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28468","-1","Matches a Yellow Socket.","","","","Rigid Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","391","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28469","-1","Matches a Yellow Socket.","","","","Gleaming Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28470","-1","Matches a Yellow Socket.","","","","Thick Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","393","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28471","-1","","","","","Krasus's Compendium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28472","-1","","","","","Krasus's Compendium - Chapter 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28473","-1","","","","","Krasus's Compendium - Chapter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28474","-1","","","","","Krasus's Compendium - Chapter 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28475","-1","","","","","Heliotrope Oculus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28476","-1","","","","","Gladiator's Maul","0.4","0","-49.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","123","-1","0","0","189","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","48","32","35","28","20","0","0","0","0","0","70" +"28477","-1","","","","","Harbinger Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24459","122298","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","21","14","0","0","0","0","0","0","0","70" +"28478","-1","","","","","To'arch's Primers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28479","-1","This smooth, timeworn stone summons Archmage Vargoth's familiar, Glacius.","","","","Stone of Glacius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28481","1101","","","","","Brown Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"28482","1101","","","","","Great Elite Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28483","-1","","","","","Breastplate of Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","76235","381179","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","107","-1","0","0","0","0","0","0","0","0","0","0","0","0","1353","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","0","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","46","31","20","0","0","0","0","0","0","70" +"28484","-1","","","","","Bulwark of Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","89420","447102","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","1595","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","0","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","55","37","23","0","0","0","0","0","0","70" +"28485","-1","","","","","Bulwark of the Ancient Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","102060","510304","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","0","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","56","41","25","0","0","0","0","0","0","70" +"28486","-1","","","","","Moser's Magnificent Muffin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28487","-1","","","","","Monster - Work Wrench, Ethereal (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28488","-1","","","","","Monster - Sword2H, Draenei A02 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28489","-1","","","","","Monster - Work Wrench, Ethereal (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28490","-1","","","","","Shaffar's Wrappings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28491","-1","","","","","Windwalker's Footwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","112322","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","141","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","63" +"28492","-1","","","","","Talonite's Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28179","140898","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","142","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","63" +"28493","-1","","","","","Dreadhawk's Schynbald","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34088","170443","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","143","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","63" +"28494","-1","","","","","Ravenguard's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39661","198305","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","144","0","0","0","0","0","0","0","0","0","0","0","661","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","63" +"28495","-1","","","","","Windwalker's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13258","66292","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","141","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"28496","-1","","","","","Talonite's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16632","83161","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","142","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"28497","-1","","","","","Dreadhawk's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18615","93079","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","143","0","0","0","0","0","0","0","0","0","0","0","289","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"28498","-1","","","","","Ravenguard's Baldric","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21925","109629","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","144","0","0","0","0","0","0","0","0","0","0","0","516","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","0","0","0","0","0","0","0","0","0","0","63" +"28499","-1","","","","","Arakkoa Hunter's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28500","-1","","","","","Fossil Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28501","-1","You aren't really going to eat that, are you?","","","","Ravager Egg Omelet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"28502","-1","","","","","Vambraces of Courage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40765","203828","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2926","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","15","0","0","0","0","0","0","0","0","70" +"28503","-1","","","","","Whirlwind Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34870","174351","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","20","0","0","0","0","0","0","0","0","70" +"28504","-1","","","","","Steelhawk Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87501","437505","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","115","-1","0","0","155","0","0","0","0","288","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","16","0","0","0","0","0","0","0","0","0","70" +"28505","-1","","","","","Gauntlets of Renewed Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41219","206099","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","906","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","29","0","0","0","0","0","0","0","0","70" +"28506","-1","","","","","Gloves of Dexterous Manipulation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29384","146920","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3092","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","22","0","0","0","0","0","0","0","0","70" +"28507","-1","","","","","Handwraps of Flowing Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23591","117958","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2880","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","22","14","0","0","0","0","0","0","0","70" +"28508","-1","","","","","Gloves of Saintly Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23678","118392","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","25","25","0","0","0","0","0","0","0","70" +"28509","-1","","","","","Worgen Claw Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128862","515451","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","21","17","0","0","0","0","0","0","0","70" +"28510","-1","","","","","Spectral Band of Innervation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","24","0","0","0","0","0","0","0","0","70" +"28511","-1","","","","","Bands of Indwelling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23936","119682","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","18","20","0","0","0","0","0","0","0","70" +"28512","-1","","","","","Bracers of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42281","211405","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","22","16","0","0","0","0","0","0","0","70" +"28513","-1","","","","","Demonic Rune Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28514","-1","","","","","Bracers of Maliciousness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28084","140424","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","22","0","0","0","0","0","0","0","0","70" +"28515","-1","","","","","Bands of Nefarious Deeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22554","112773","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","22","0","0","0","0","0","0","0","0","70" +"28516","-1","","","","","Barbed Choker of Discipline","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","39","21","16","0","0","0","0","0","0","0","70" +"28517","-1","","","","","Boots of Foretelling","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34092","170462","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","23","19","0","0","0","0","0","0","0","70" +"28518","-1","","","","","Iron Gauntlets of the Maiden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40150","200752","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2972","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","906","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","16","17","0","0","0","0","0","0","0","70" +"28519","-1","","","","","Gloves of Quickening","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34349","171747","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","24","17","0","0","0","0","0","0","0","70" +"28520","-1","","","","","Gloves of Centering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34479","172398","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","20","0","0","0","0","0","0","0","0","70" +"28521","-1","","","","","Mitts of the Treemender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28841","144207","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","22","14","0","0","0","0","0","0","0","70" +"28522","-1","","","","","Shard of the Virtuous","0.6","0","-46.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","115788","578941","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","115","32767","0","0","116","0","0","0","0","217","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","22","20","0","0","0","0","0","0","0","0","70" +"28523","-1","","","","","Totem of Healing Rains","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34866","174333","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28524","-1","","","","","Emerald Ripper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","116656","583281","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","32767","0","0","126","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","19","18","0","0","0","0","0","0","0","0","70" +"28525","-1","","","","","Signet of Unshakable Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","19","21","22","0","0","0","0","0","0","0","70" +"28526","-1","Well, they sure do sound important.","","","","Etherlithium Matrix Crystals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28527","-1","Clearly these can be used to jump-start the engines.","","","","Mana Wraith Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28528","-1","","","","","Moroes' Lucky Pocket Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","13","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","38","0","0","0","0","0","0","0","0","0","70" +"28529","-1","","","","","Royal Cloak of Arathi Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35640","178204","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","26","31","16","0","0","0","0","0","0","0","70" +"28530","-1","","","","","Brooch of Unquenchable Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","21","15","0","0","0","0","0","0","0","70" +"28531","-1","","","","","Barbed Shrike","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26809","107236","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","81","-1","95","0","47","0","0","0","0","89","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","57" +"28532","-1","","","","","Silver Throwing Knifes","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27678","110712","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","84","-1","95","0","49","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","58" +"28533","-1","","","","","Wooden Boomerang","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","87","-1","95","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","59" +"28534","-1","","","","","Fel Tipped Dart","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29415","117660","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","90","-1","95","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","60" +"28535","-1","","","","","Amani Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","93","-1","95","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","61" +"28536","-1","","","","","Jagged Guillotine","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31154","124616","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","95","0","53","0","0","0","0","99","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","62" +"28537","-1","","","","","Wildhammer Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","99","-1","95","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","63" +"28538","-1","","","","","Forked Shuriken","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","102","-1","95","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28539","-1","","","","","Razor-Edged Boomerang","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33760","135040","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","105","-1","95","0","59","0","0","0","0","111","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","65" +"28540","-1","","","","","Arakkoa Talon-Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","95","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","66" +"28541","-1","","","","","Sawshrike","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","95","0","64","0","0","0","0","119","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","67" +"28542","-1","","","","","Heartseeker Knives","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","114","-1","95","0","66","0","0","0","0","123","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","68" +"28543","-1","","","","","Dreghood Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37236","148944","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","117","-1","95","0","68","0","0","0","0","127","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","69" +"28544","-1","","","","","Assassin's Shuriken","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38105","152420","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","120","-1","95","0","69","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","70" +"28545","-1","","","","","Edgewalker Longboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43900","219500","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","28","13","0","0","0","0","0","0","0","70" +"28546","-1","","","","","TEST Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28547","-1","","","","","Elemental Power Extractor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28548","-1","A solid lump of elemental essence. What more could an engineer want?","","","","Elemental Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28549","-1","An indecipherable tome taken from an Unyielding spirit.","","","","Armory History","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28550","-1","","","","","Flaming Torch","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28551","-1","Small is a relative term. Maybe Mama Wheeler would like to lug these around?","","","","Fel Reaver Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28552","-1","A strange book, written in a ghostly ink.","","","","A Mysterious Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10229","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"28553","-1","","","","","Band of the Exorcist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","16","11","10","0","0","0","0","0","0","67" +"28554","-1","","","","","Shredder Spare Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28555","-1","","","","","Seal of the Exorcist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","95","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","18","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","12","11","0","0","0","0","0","0","0","67" +"28556","-1","Only fits in a meta gem slot.","","","","Swift Windfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","528384","24580","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28557","-1","Only fits in a meta gem slot.","","","","Swift Starfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","528384","24580","0","0","0","0","0","0","0","0","402","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"28558","-1","The shard pulses with energy.","","","","Spirit Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28559","-1","","","","","Exorcist's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","25","25","11","0","0","0","0","0","0","66" +"28560","-1","","","","","Exorcist's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","3204","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","16","16","11","0","0","0","0","0","0","66" +"28561","-1","","","","","Exorcist's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","33","27","14","10","0","0","0","0","0","0","66" +"28562","-1","An ancient horn that has seen many battles.","","","","Unyielding Battle Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28563","-1","Still sharp, and interestingly, trying to move around.","","","","Doomclaw's Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28564","-1","An incredible amount of energy seems isolated and buffered in this thin-walled container, through the use of some unknown technology.","","","","Energy Isolation Cube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28565","-1","","","","","Nethershard Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24032","120163","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","30","22","0","0","0","0","0","0","0","70" +"28566","-1","","","","","Crimson Girdle of the Indomitable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42450","212251","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2870","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","816","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","4","7","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","36","24","20","0","0","0","0","0","0","70" +"28567","-1","","","","","Belt of Gale Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36305","181529","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","28","0","0","0","0","0","0","0","0","70" +"28568","-1","","","","","Idol of the Avian Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36436","182181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28569","-1","","","","","Boots of Valiance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63869","319346","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","28","25","0","0","0","0","0","0","0","70" +"28570","-1","","","","","Shadow-Cloak of Dalaran","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36696","183483","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","19","0","0","0","0","0","0","0","0","70" +"28571","-1","","","","","Blank Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28572","-1","","","","","Blade of the Unrequited","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111436","557182","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","1600","0","0","0","115","32767","0","0","112","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","3","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","13","9","0","0","0","0","0","0","0","0","70" +"28573","-1","","","","","Despair","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139838","699190","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","32767","0","0","319","0","0","0","0","479","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","52","0","0","0","0","0","0","0","0","0","70" +"28574","-1","","","","","Exorcist's Dragonhide Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","8","0","0","1","0","7","4","35","3","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","23","12","17","0","0","0","0","0","0","66" +"28575","-1","","","","","Exorcist's Wyrmhide Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","35","16","11","0","0","0","0","0","0","0","66" +"28576","-1","","","","","Exorcist's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","5","0","0","1","0","7","3","35","5","32","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","35","20","12","15","10","0","0","0","0","0","66" +"28577","-1","","","","","Exorcist's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","3205","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","24","22","13","13","0","0","0","0","0","66" +"28578","-1","","","","","Masquerade Gown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46850","234251","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","34","32","0","0","0","0","0","0","0","0","70" +"28579","-1","","","","","Romulo's Poison Vial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","35","0","0","0","0","0","0","0","0","0","70" +"28580","-1","","","","","B'naar Console Transcription","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28581","-1","","","","","Wolfslayer Sniper Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88820","444103","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","115","-1","0","0","149","0","0","0","0","278","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","15","0","0","0","0","0","0","0","0","0","70" +"28582","-1","","","","","Red Riding Hood's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35654","178274","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","22","0","0","0","0","0","0","0","0","70" +"28583","-1","","","","","Big Bad Wolf's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53677","268388","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","659","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","40","28","0","0","0","0","0","0","0","70" +"28584","-1","","","","","Big Bad Wolf's Paw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","119717","598589","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","115","-1","0","0","153","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","18","20","0","0","0","0","0","0","0","70" +"28585","-1","There's no place like home.","","","","Ruby Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36045","180227","1","1","1","64","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","29","16","0","0","0","0","0","0","0","70" +"28586","-1","","","","","Wicked Witch's Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36172","180861","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","38","32","0","0","0","0","0","0","0","70" +"28587","-1","Legend tells of this axe being wielded by Draenei exarchs since the time of their banishment from Argus.","","","","Legacy","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151260","756301","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","115","-1","0","0","319","0","0","0","0","479","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","40","0","0","0","0","0","0","0","0","70" +"28588","-1","","","","","Blue Diamond Witchwand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91081","455408","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","169","0","0","0","0","314","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","13","11","0","0","0","0","0","0","0","0","70" +"28589","-1","","","","","Beastmaw Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55082","275413","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","22","23","0","0","0","0","0","0","0","70" +"28590","-1","","","","","Ribbon of Sacrifice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28591","-1","","","","","Earthsoul Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61366","306831","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","319","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","30","24","0","0","0","0","0","0","0","70" +"28592","-1","","","","","Libram of Souls Redeemed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36949","184749","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28593","-1","","","","","Eternium Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58607","293039","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1178","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","48","34","0","0","0","0","0","0","0","70" +"28594","-1","","","","","Trial-Fire Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46155","230779","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","3","3","3","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","40","0","0","0","0","0","0","0","0","70" +"28595","-1","Matches a Red Socket.","","","","Bright Blood Garnet","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","421","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"28596","-1","Teaches you how to cut a Bright Blood Garnet.","","","","Design: Bright Blood Garnet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","755","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28597","-1","","","","","Panzar'Thar Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81675","408379","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2972","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","26","24","0","0","0","0","0","0","0","70" +"28598","-1","","","","","Fel Reaver Construction Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10244","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"28599","-1","","","","","Scaled Breastplate of Carnage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70528","352643","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","38","24","0","0","0","0","0","0","0","70" +"28600","-1","","","","","Stonebough Jerkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58990","294954","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","35","31","0","0","0","0","0","0","0","70" +"28601","-1","","","","","Chestguard of the Conniver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59202","296010","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","364","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","36","22","0","0","0","0","0","0","0","70" +"28602","-1","","","","","Robe of the Elder Scribes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47535","237676","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","27","29","24","24","0","0","0","0","0","0","70" +"28603","-1","","","","","Talisman of Nightbane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","19","19","17","0","0","0","0","0","0","0","70" +"28604","-1","","","","","Nightstaff of the Everliving","0.4","0","-46.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","149618","748090","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","115","-1","0","0","291","0","0","0","0","438","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","33","34","55","0","0","0","0","0","0","0","70" +"28605","-1","","","","","General's Linked Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","10","15","9","0","0","0","0","0","70" +"28606","-1","","","","","Shield of Impenetrable Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77160","385800","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","4872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","33","22","0","0","0","0","0","0","0","0","70" +"28607","-1","","","","","Sunfury Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28608","-1","","","","","Ironstriders of Urgency","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63623","318117","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","20","28","0","0","0","0","0","0","0","70" +"28609","-1","","","","","Emberspur Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28610","-1","","","","","Ferocious Swift-Kickers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51371","256856","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","22","21","16","0","0","0","0","0","0","0","70" +"28611","-1","","","","","Dragonheart Flameshield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73015","365079","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","4872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","19","21","0","0","0","0","0","0","0","0","70" +"28612","-1","","","","","Pauldrons of the Solace-Giver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34352","171764","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","22","0","0","0","0","0","0","0","0","70" +"28613","-1","","","","","Grand Marshal's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","595","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","20","12","16","15","0","0","0","0","0","70" +"28614","-1","","","","","Grand Marshal's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","11","14","6","0","0","0","0","0","70" +"28615","-1","","","","","Grand Marshal's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","595","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","14","15","14","0","0","0","0","0","70" +"28616","-1","","","","","Grand Marshal's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","14","25","8","0","0","0","0","0","70" +"28617","-1","","","","","Grand Marshal's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","595","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","31","14","17","16","4","0","0","0","0","0","70" +"28618","-1","","","","","Grand Marshal's Dragonhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","17","11","17","16","0","0","0","0","0","70" +"28619","-1","","","","","Grand Marshal's Dragonhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","601","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","22","15","22","21","0","0","0","0","0","70" +"28620","-1","","","","","Grand Marshal's Dragonhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","23","22","22","22","0","0","0","0","0","70" +"28621","-1","","","","","Wrynn Dynasty Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82874","414373","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","1269","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","1","0","0","1","0","4","7","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","48","27","29","0","0","0","0","0","0","70" +"28622","-1","","","","","Grand Marshal's Dragonhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","601","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","17","13","17","13","0","0","0","0","0","70" +"28623","-1","","","","","Grand Marshal's Dragonhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","601","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","18","18","18","18","0","0","0","0","0","70" +"28624","-1","","","","","Grand Marshal's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","591","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","12","0","0","0","0","0","0","0","70" +"28625","-1","","","","","Grand Marshal's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","591","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","49","14","14","0","0","0","0","0","0","0","70" +"28626","-1","","","","","Grand Marshal's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","591","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","49","22","22","0","0","0","0","0","0","0","70" +"28627","-1","","","","","Grand Marshal's Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","591","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","15","17","6","0","0","0","0","0","0","70" +"28628","-1","","","","","Grand Marshal's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","591","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","49","14","14","0","0","0","0","0","0","0","70" +"28629","-1","","","","","General's Linked Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","19","27","18","0","0","0","0","0","70" +"28630","-1","","","","","General's Linked Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","19","27","18","0","0","0","0","0","70" +"28631","-1","","","","","Dragon-Quake Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51556","257784","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","28","0","0","0","0","0","0","0","0","70" +"28632","-1","Teaches you how to make an Adamantite Weightstone.","","","","Plans: Adamantite Weightstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","350","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28633","-1","","","","","Staff of Infinite Mysteries","0.4","0","-46.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143665","718325","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","115","-1","0","0","291","0","0","0","0","438","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","61","51","23","0","0","0","0","0","0","0","70" +"28634","-1","","","","","Scrap Reaver X6000 Controller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28635","-1","","","","","Sunfury Arcanist Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28636","-1","","","","","Sunfury Researcher Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28637","-1","","","","","Sunfury Guardsman Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28638","-1","","","","","General's Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","12","13","14","0","0","0","0","0","0","70" +"28639","-1","","","","","General's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28640","-1","","","","","General's Mail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28641","-1","","","","","General's Lamellar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28642","-1","","","","","General's Lamellar Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28643","-1","","","","","General's Lamellar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","12","13","0","0","0","0","0","0","70" +"28644","-1","","","","","General's Scaled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","36","16","23","16","0","0","0","0","0","70" +"28645","-1","","","","","General's Scaled Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","36","16","23","16","0","0","0","0","0","70" +"28646","-1","","","","","General's Scaled Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","26","7","11","8","0","0","0","0","0","70" +"28647","-1","","","","","Forest Wind Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42122","210614","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","28","24","0","0","0","0","0","0","0","70" +"28648","-1","","","","","Monster - Item, Book - Book of the Dead (Skull)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28649","-1","","","","","Garona's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","25","18","0","0","0","0","0","0","0","70" +"28650","-1","","","","","Monster - Polearm, Battle Scythe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","1","-1","94","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28651","-1","An ancient horn that has seen many battles.","","","","Unyielding Battle Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28652","-1","","","","","Cincture of Will","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22897","114486","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","24","28","25","0","0","0","0","0","0","0","70" +"28653","-1","","","","","Shadowvine Cloak of Infusion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34472","172362","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","21","22","0","0","0","0","0","0","0","0","70" +"28654","-1","","","","","Malefic Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23068","115342","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","26","21","0","0","0","0","0","0","0","70" +"28655","-1","","","","","Cord of Nature's Sustenance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28944","144720","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","24","30","16","0","0","0","0","0","0","0","70" +"28656","-1","","","","","Girdle of the Prowler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34863","174315","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","21","22","17","0","0","0","0","0","0","70" +"28657","-1","","","","","Fool's Bane","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116632","583164","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","2600","0","0","0","115","32767","0","0","159","0","0","0","0","296","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","24","0","0","0","0","0","0","0","0","0","70" +"28658","-1","","","","","Terestian's Stranglestaff","0.4","0","-46.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","150219","751096","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","32767","0","0","273","0","0","0","0","411","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","38","37","48","25","0","0","0","0","0","0","70" +"28659","-1","","","","","Xavian Stiletto","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","115","-1","0","0","88","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","20","12","0","0","0","0","0","0","0","0","70" +"28660","-1","","","","","Gilded Thorium Cloak","0","0","288","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36313","181565","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","24","0","0","0","0","0","0","0","0","70" +"28661","-1","","","","","Mender's Heart-Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","18","21","19","0","0","0","0","0","0","0","70" +"28662","-1","","","","","Breastplate of the Lightbinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85329","426649","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","40","0","0","0","0","0","0","0","0","70" +"28663","-1","","","","","Boots of the Incorrupt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36700","183500","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","24","23","0","0","0","0","0","0","0","70" +"28664","-1","Read carefully...","","","","Nitrin's Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2983","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"28665","-1","","","","","Mountain Gronn Eyeball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28666","-1","","","","","Pauldrons of the Justice-Seeker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58626","293131","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","1087","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","26","22","0","0","0","0","0","0","0","70" +"28667","-1","","","","","Flawless Greater Windroc Beak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28668","-1","","","","","Aged Clefthoof Blubber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28669","-1","","","","","Rapscallion Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42439","212198","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","24","0","0","0","0","0","0","0","0","70" +"28670","-1","","","","","Boots of the Infernal Coven","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31250","125000","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","27","23","0","0","0","0","0","0","0","70" +"28671","-1","","","","","Steelspine Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51318","256591","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","659","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","34","34","0","0","0","0","0","0","0","70" +"28672","-1","","","","","Drape of the Dark Reavers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34338","171694","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","24","21","17","0","0","0","0","0","0","0","70" +"28673","-1","","","","","Tirisfal Wand of Ascendancy","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86172","430863","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","169","0","0","0","0","314","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","9","11","0","0","0","0","0","0","0","70" +"28674","-1","","","","","Saberclaw Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","33","0","0","0","0","0","0","0","0","70" +"28675","-1","","","","","Shermanar Great-Ring","0","0","223","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","36","23","0","0","0","0","0","0","0","0","70" +"28676","-1","The dark heart of Urtrak, commander of the southern wall of Zeth'gor. ","","","","Heart of Urtrak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28677","-1","","","","","The Book of the Dead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28678","-1","","","","","Monster - Dagger, Curvey Silver - Purple Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28679","-1","","","","","Grand Marshal's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2951","0","0","0","0","589","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","48","12","21","22","0","0","0","0","0","0","70" +"28680","-1","","","","","Grand Marshal's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","36","13","19","12","0","0","0","0","0","0","70" +"28681","-1","","","","","Grand Marshal's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","589","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","44","11","20","20","0","0","0","0","0","0","70" +"28683","-1","","","","","Grand Marshal's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","589","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","36","12","15","14","0","0","0","0","0","0","70" +"28684","-1","","","","","Grand Marshal's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","16","11","0","0","0","0","0","0","70" +"28685","-1","","","","","Grand Marshal's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","605","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","20","24","10","0","0","0","0","0","0","70" +"28686","-1","","","","","Grand Marshal's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","14","28","0","0","0","0","0","0","70" +"28687","-1","","","","","Grand Marshal's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","605","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","31","13","11","13","0","0","0","0","0","0","70" +"28688","-1","","","","","Grand Marshal's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","605","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","20","24","10","0","0","0","0","0","0","70" +"28689","-1","","","","","Grand Marshal's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","593","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","12","14","22","0","0","0","0","0","0","70" +"28690","-1","","","","","Grand Marshal's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","593","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","21","18","17","0","0","0","0","0","0","70" +"28691","-1","","","","","Grand Marshal's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","593","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","24","24","0","0","0","0","0","0","70" +"28692","-1","","","","","Grand Marshal's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","593","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","22","28","22","22","0","0","0","0","0","70" +"28693","-1","","","","","Grand Marshal's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","593","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","13","17","13","0","0","0","0","0","0","70" +"28694","-1","","","","","Grand Marshal's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","603","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","14","18","18","0","0","0","0","0","0","70" +"28695","-1","","","","","Grand Marshal's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","603","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","13","14","13","0","0","0","0","0","0","70" +"28696","-1","","","","","Grand Marshal's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","603","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","16","16","16","0","0","0","0","0","0","70" +"28697","-1","","","","","Grand Marshal's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","603","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","18","22","22","0","0","0","0","0","0","70" +"28698","-1","","","","","Grand Marshal's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","603","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","13","12","12","0","0","0","0","0","0","70" +"28699","-1","","","","","Grand Marshal's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","590","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","46","12","24","19","0","0","0","0","0","0","70" +"28700","-1","","","","","Grand Marshal's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","30","22","21","17","0","0","0","0","0","0","70" +"28701","-1","","","","","Grand Marshal's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","590","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","20","24","19","0","0","0","0","0","0","70" +"28702","-1","","","","","Grand Marshal's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","46","28","28","23","0","0","0","0","0","0","70" +"28703","-1","","","","","Grand Marshal's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","590","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","36","14","17","13","0","0","0","0","0","0","70" +"28704","-1","","","","","Grand Marshal's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"28705","-1","","","","","Grand Marshal's Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","597","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","46","19","19","0","0","0","0","0","0","0","70" +"28706","-1","","","","","Grand Marshal's Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","597","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","46","23","23","0","0","0","0","0","0","0","70" +"28707","-1","","","","","Grand Marshal's Satin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","597","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","17","17","0","0","0","0","0","0","0","70" +"28708","-1","","","","","Grand Marshal's Satin Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","597","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","46","15","15","0","0","0","0","0","0","0","70" +"28709","-1","","","","","Grand Marshal's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","607","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","12","13","27","14","0","0","0","0","0","70" +"28710","-1","","","","","Grand Marshal's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","607","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","12","12","28","12","0","0","0","0","0","70" +"28711","-1","","","","","Grand Marshal's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","607","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","16","13","28","14","0","0","0","0","0","70" +"28712","-1","","","","","Grand Marshal's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","607","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","16","16","36","16","0","0","0","0","0","70" +"28713","-1","","","","","Grand Marshal's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","607","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","8","9","25","10","0","0","0","0","0","70" +"28714","-1","","","","","Grand Marshal's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","599","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","16","15","8","0","0","0","0","0","0","70" +"28715","-1","","","","","Grand Marshal's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","599","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","16","17","19","0","0","0","0","0","0","70" +"28716","-1","","","","","Grand Marshal's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","12","17","17","0","0","0","0","0","0","70" +"28717","-1","","","","","Grand Marshal's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2951","0","0","0","0","599","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","42","15","17","18","0","0","0","0","0","0","70" +"28718","-1","","","","","Grand Marshal's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","599","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","22","22","22","0","0","0","0","0","0","70" +"28719","-1","","","","","Grand Marshal's Wyrmhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","15","14","0","0","0","0","0","0","0","70" +"28720","-1","","","","","Grand Marshal's Wyrmhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","609","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","18","17","0","0","0","0","0","0","0","70" +"28721","-1","","","","","Grand Marshal's Wyrmhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","609","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","22","20","0","0","0","0","0","0","0","70" +"28722","-1","","","","","Grand Marshal's Wyrmhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","609","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"28723","-1","","","","","Grand Marshal's Wyrmhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","609","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","17","18","0","0","0","0","0","0","0","70" +"28724","-1","","","","","Grand Marshal's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","48","15","24","24","0","0","0","0","0","0","70" +"28725","-1","","","","","Rune Activation Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28726","-1","","","","","Mantle of the Mind Flayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34483","172415","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","29","0","0","0","0","0","0","0","0","70" +"28727","-1","","","","","Pendant of the Violet Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"28728","-1","","","","","Aran's Soothing Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","22","0","0","0","0","0","0","0","0","0","70" +"28729","-1","","","","","Spiteblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116234","581170","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","115","-1","0","0","165","0","0","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","14","16","0","0","0","0","0","0","0","0","70" +"28730","-1","","","","","Mithril Band of the Unscarred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","26","24","22","0","0","0","0","0","0","0","70" +"28731","-1","","","","","Shining Chain of the Afterworld","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","21","19","0","0","0","0","0","0","0","70" +"28732","-1","","","","","Cowl of Defiance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44071","220358","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","33","24","0","0","0","0","0","0","0","70" +"28733","-1","","","","","Girdle of Truth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41521","207606","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","816","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","29","0","0","0","0","0","0","0","0","70" +"28734","-1","","","","","Jewel of Infinite Possibilities","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","19","18","21","0","0","0","0","0","0","0","70" +"28735","-1","","","","","Earthblood Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71295","356479","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","812","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","41","0","0","0","0","0","0","0","0","70" +"28736","-1","","","","","Monster - Mace, Aurastone Hammer","0.6","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28737","-1","","","","","Monster - Shield, Malistar's Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28738","-1","","","","","Monster - Staff, Benediction","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","16","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28739","-1","","","","","Monster - Staff, Anathema","0.4","0","-14","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","16","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","20","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28740","-1","","","","","Rip-Flayer Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67403","337019","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","30","28","0","0","0","0","0","0","0","70" +"28741","-1","","","","","Skulker's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56386","281934","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2871","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","319","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","28","28","0","0","0","0","0","0","0","70" +"28742","-1","","","","","Pantaloons of Repentance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45283","226415","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","34","26","0","0","0","0","0","0","0","70" +"28743","-1","","","","","Mantle of Abrahmis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59548","297741","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","1087","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","43","23","0","0","0","0","0","0","0","70" +"28744","-1","","","","","Uni-Mind Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34219","171096","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","40","25","19","0","0","0","0","0","0","70" +"28745","-1","","","","","Mithril Chain of Heroism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","28","22","22","0","0","0","0","0","0","0","70" +"28746","-1","","","","","Fiend Slayer Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51949","259746","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","24","16","17","0","0","0","0","0","0","70" +"28747","-1","","","","","Battlescar Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60451","302259","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2870","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","7","12","14","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","28","23","21","0","0","0","0","0","0","70" +"28748","-1","","","","","Legplates of the Innocent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81051","405259","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2869","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","1269","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","32","21","0","0","0","0","0","0","0","70" +"28749","-1","","","","","King's Defender","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","116222","581111","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","98","0","0","0","0","182","0","0","0","0","182","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","28","13","17","0","0","0","0","0","0","0","70" +"28750","-1","","","","","Girdle of Treachery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29164","145820","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","37","0","0","0","0","0","0","0","0","70" +"28751","-1","","","","","Heart-Flame Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70247","351235","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2869","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","33","0","0","0","0","0","0","0","0","70" +"28752","-1","","","","","Forestlord Striders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44067","220336","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","27","16","0","0","0","0","0","0","0","70" +"28753","-1","","","","","Ring of Recurrence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","15","19","0","0","0","0","0","0","0","70" +"28754","-1","","","","","Triptych Shield of the Ancients","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75763","378818","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","4872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","24","21","0","0","0","0","0","0","0","0","70" +"28755","-1","","","","","Bladed Shoulderpads of the Merciless","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45716","228584","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","273","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","8","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","13","21","0","0","0","0","0","0","0","70" +"28756","-1","","","","","Headdress of the High Potentate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36703","183518","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","38","32","0","0","0","0","0","0","0","70" +"28757","-1","","","","","Ring of a Thousand Marks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113642","454568","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","23","19","0","0","0","0","0","0","0","70" +"28758","-1","","","","","Exorcist's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","3204","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","16","24","17","0","0","0","0","0","0","66" +"28759","-1","","","","","Exorcist's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2880","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","25","20","0","0","0","0","0","0","0","66" +"28760","-1","","","","","Exorcist's Silk Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2880","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","14","14","25","0","0","0","0","0","0","66" +"28761","-1","","","","","Exorcist's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","827","0","0","0","0","0","0","0","254","0","0","0","1","0","0","0","6","0","0","1","0","7","4","32","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","29","18","15","0","0","0","0","0","0","66" +"28762","-1","","","","","Adornment of Stolen Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","18","23","0","0","0","0","0","0","0","70" +"28763","-1","","","","","Jade Ring of the Everliving","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28764","-1","","","","","Farstrider Wildercloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36919","184596","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","36","0","0","0","0","0","0","0","0","0","70" +"28765","-1","","","","","Stainless Cloak of the Pure Hearted","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37059","185299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","23","0","0","0","0","0","0","0","0","70" +"28766","-1","","","","","Ruby Drape of the Mysticant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37196","185982","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","21","18","0","0","0","0","0","0","0","70" +"28767","-1","","","","","The Decapitator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124456","622283","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","125","-1","0","0","167","0","0","0","0","312","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","27","0","0","0","0","0","0","0","0","0","70" +"28768","-1","","","","","Malchazeen","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","124925","624625","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","125","32767","0","0","132","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","16","15","0","0","0","0","0","0","0","0","70" +"28769","-1","","","","","The Keystone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28770","-1","","","","","Nathrezim Mindblade","0.6","0","-50.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125848","629244","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","125","32767","0","0","116","0","0","0","0","216","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","18","18","23","0","0","0","0","0","0","0","70" +"28771","-1","","","","","Light's Justice","0.6","0","-50.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","129671","648357","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","125","32767","0","0","116","0","0","0","0","216","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","16","21","20","0","0","0","0","0","0","0","70" +"28772","-1","","","","","Sunfury Bow of the Phoenix","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97604","488023","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","125","-1","0","0","169","0","0","0","0","314","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","19","0","0","0","0","0","0","0","0","0","70" +"28773","-1","The axe of Grom Hellscream has sown terror across hundreds of battlefields.","","","","Gorehowl","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163260","816300","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","125","-1","0","0","345","0","0","0","0","518","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","49","43","51","0","0","0","0","0","0","0","70" +"28774","-1","","","","","Glaive of the Pit","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163829","819147","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","3700","0","0","0","125","32767","0","0","354","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","2","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28775","-1","","","","","Thundering Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68922","344613","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","1535","0","0","0","0","0","0","0","0","0","0","0","0","1276","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","50","43","49","0","0","0","0","0","0","0","70" +"28776","-1","","","","","Liar's Tongue Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33000","165000","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","247","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","26","0","0","0","0","0","0","0","0","70" +"28777","-1","","","","","Cloak of the Pit Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39740","198702","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","28","24","0","0","0","0","0","0","0","0","70" +"28778","-1","","","","","Terror Pit Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36076","180381","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","495","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","22","21","0","0","0","0","0","0","0","70" +"28779","-1","","","","","Girdle of the Endless Pit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42494","212472","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","884","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","34","30","28","0","0","0","0","0","0","0","70" +"28780","-1","","","","","Soul-Eater's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24238","121191","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","24","21","0","0","0","0","0","0","0","70" +"28781","-1","","","","","Karaborian Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","23","23","0","0","0","0","0","0","0","0","70" +"28782","-1","","","","","Crystalheart Pulse-Staff","0.4","0","-50.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","152643","763219","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","125","-1","0","0","306","0","0","0","0","460","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","51","50","0","0","0","0","0","0","0","0","70" +"28783","-1","","","","","Eredar Wand of Obliteration","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91937","459687","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","125","-1","0","0","177","0","0","0","0","330","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","11","14","0","0","0","0","0","0","0","70" +"28784","-1","","","","","Unyielding Banner Scrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28785","-1","","","","","The Lightning Capacitor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28786","-1","","","","","Apex's Crystal Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28787","-1","Is it a good idea to hand over something to the goblins with the word annihilator in it?","","","","Annihilator Servo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28788","-1","For Heroism at the Battle for the Dark Portal","","","","Tabard of the Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28789","-1","","","","","Eye of Magtheridon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28790","-1","","","","","Naaru Lightwarden's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","25","0","0","0","0","0","0","0","0","0" +"28791","-1","","","","","Ring of the Recalcitrant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","27","0","0","0","0","0","0","0","0","0" +"28792","-1","","","","","A'dal's Signet of Defense","0","0","367","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","34","20","0","0","0","0","0","0","0","0","0" +"28793","-1","","","","","Band of Crimson Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","22","16","0","0","0","0","0","0","0","0" +"28794","-1","","","","","Axe of the Gronn Lords","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163813","819068","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","125","-1","0","0","345","0","0","0","0","518","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","0","0","0","0","0","0","0","0","0","70" +"28795","-1","","","","","Bladespire Warbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46294","231474","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","125","1535","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","16","24","0","0","0","0","0","0","0","70" +"28796","-1","","","","","Malefic Mask of the Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49495","247476","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","1535","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","42","31","0","0","0","0","0","0","0","70" +"28797","-1","","","","","Brute Cloak of the Ogre-Magi","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39732","198664","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","20","23","0","0","0","0","0","0","0","70" +"28798","-1","For Heroism at the Battle for the Dark Portal","","","","Badge of the Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28799","-1","","","","","Belt of Divine Inspiration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24142","120710","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","26","0","0","0","0","0","0","0","0","70" +"28800","-1","","","","","Hammer of the Naaru","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151457","757286","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2869","0","0","0","0","0","0","0","0","3600","0","0","0","125","-1","0","0","345","0","0","0","0","518","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","4","1","1","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","44","41","37","0","0","0","0","0","0","0","70" +"28801","-1","","","","","Maulgar's Warhelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54735","273676","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","31","42","0","0","0","0","0","0","0","70" +"28802","-1","","","","","Bloodmaw Magus-Blade","0.6","0","-44.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","122102","610512","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","125","-1","0","0","116","0","0","0","0","216","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","16","15","25","0","0","0","0","0","0","0","70" +"28803","-1","","","","","Cowl of Nature's Breath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47221","236109","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","42","34","0","0","0","0","0","0","0","70" +"28804","-1","","","","","Collar of Cho'gall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37914","189570","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","36","0","0","0","0","0","0","0","0","70" +"28805","-1","","","","","High Warlord's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","596","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","20","12","16","15","0","0","0","0","0","70" +"28806","-1","","","","","High Warlord's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","11","14","6","0","0","0","0","0","70" +"28807","-1","","","","","High Warlord's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","596","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","14","15","14","0","0","0","0","0","70" +"28808","-1","","","","","High Warlord's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","14","25","8","0","0","0","0","0","70" +"28809","-1","","","","","High Warlord's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","596","0","0","0","0","0","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","31","14","17","16","4","0","0","0","0","0","70" +"28810","-1","","","","","Windshear Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58388","291941","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","37","32","18","0","0","0","0","0","0","0","70" +"28811","-1","","","","","High Warlord's Dragonhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","17","12","17","16","0","0","0","0","0","70" +"28812","-1","","","","","High Warlord's Dragonhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","602","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","22","15","22","21","0","0","0","0","0","70" +"28813","-1","","","","","High Warlord's Dragonhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","22","22","22","22","0","0","0","0","0","70" +"28814","-1","","","","","High Warlord's Dragonhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","602","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","24","17","14","17","13","0","0","0","0","0","70" +"28815","-1","","","","","High Warlord's Dragonhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","602","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","18","18","18","18","0","0","0","0","0","70" +"28816","-1","","","","","QATest +400 Spell Dmg Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","1" +"28817","-1","","","","","High Warlord's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","592","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","12","0","0","0","0","0","0","0","70" +"28818","-1","","","","","High Warlord's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","592","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","49","14","14","0","0","0","0","0","0","0","70" +"28819","-1","","","","","High Warlord's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","592","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","49","22","22","0","0","0","0","0","0","0","70" +"28820","-1","","","","","High Warlord's Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","592","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","19","15","17","6","0","0","0","0","0","0","70" +"28821","-1","","","","","High Warlord's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","592","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","49","14","14","0","0","0","0","0","0","0","70" +"28822","-1","","","","","Teeth of Gruul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","21","19","0","0","0","0","0","0","0","0","70" +"28823","-1","","","","","Eye of Gruul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28824","-1","","","","","Gauntlets of Martial Perfection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44481","222407","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","982","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","34","23","0","0","0","0","0","0","0","70" +"28825","-1","","","","","Aldori Legacy Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81175","405875","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2976","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","5279","0","0","0","0","0","0","0","254","0","0","0","4","0","0","4","6","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","39","19","15","0","0","0","0","0","0","0","70" +"28826","-1","","","","","Shuriken of Negation","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1200","0","0","0","125","-1","0","0","79","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","19","0","0","0","0","0","0","0","0","0","70" +"28827","-1","","","","","Gauntlets of the Dragonslayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38328","191640","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","27","27","0","0","0","0","0","0","0","70" +"28828","-1","","","","","Gronn-Stitched Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32057","160285","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","25","0","0","0","0","0","0","0","0","70" +"28829","-1","Hopefully this is the one that the nether-stalker is looking for.","","","","Arklon Crystal Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28830","-1","","","","","Dragonspine Trophy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"28831","-1","","","","","High Warlord's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2951","0","0","0","0","587","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","48","12","21","22","0","0","0","0","0","0","70" +"28832","-1","","","","","High Warlord's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","587","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","36","13","19","12","0","0","0","0","0","0","70" +"28833","-1","","","","","High Warlord's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","587","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","44","11","20","20","0","0","0","0","0","0","70" +"28834","-1","","","","","High Warlord's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","587","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","48","15","24","24","0","0","0","0","0","0","70" +"28835","-1","","","","","High Warlord's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","587","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","36","12","15","14","0","0","0","0","0","0","70" +"28836","-1","","","","","High Warlord's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","21","16","11","0","0","0","0","0","0","70" +"28837","-1","","","","","High Warlord's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","606","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","20","24","10","0","0","0","0","0","0","70" +"28838","-1","","","","","High Warlord's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","14","28","0","0","0","0","0","0","70" +"28839","-1","","","","","High Warlord's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","606","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","31","13","11","13","0","0","0","0","0","0","70" +"28840","-1","","","","","High Warlord's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","606","0","0","0","0","0","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","20","24","10","0","0","0","0","0","0","70" +"28841","-1","","","","","High Warlord's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","594","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","12","14","22","0","0","0","0","0","0","70" +"28842","-1","","","","","High Warlord's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","21","18","17","0","0","0","0","0","0","70" +"28843","-1","","","","","High Warlord's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","594","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","20","24","24","0","0","0","0","0","0","70" +"28844","-1","","","","","High Warlord's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","594","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","22","28","22","22","0","0","0","0","0","70" +"28845","-1","","","","","High Warlord's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","594","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","13","17","13","0","0","0","0","0","0","70" +"28846","-1","","","","","High Warlord's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","604","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","14","18","18","0","0","0","0","0","0","70" +"28847","-1","","","","","High Warlord's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","13","14","13","0","0","0","0","0","0","70" +"28848","-1","","","","","High Warlord's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","604","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","16","16","16","0","0","0","0","0","0","70" +"28849","-1","","","","","High Warlord's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","18","22","22","0","0","0","0","0","0","70" +"28850","-1","","","","","High Warlord's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","604","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","13","12","12","0","0","0","0","0","0","70" +"28851","-1","","","","","High Warlord's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","588","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","46","12","24","19","0","0","0","0","0","0","70" +"28852","-1","","","","","High Warlord's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","30","22","21","17","0","0","0","0","0","0","70" +"28853","-1","","","","","High Warlord's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","588","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","20","24","19","0","0","0","0","0","0","70" +"28854","-1","","","","","High Warlord's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","46","28","28","23","0","0","0","0","0","0","70" +"28855","-1","","","","","High Warlord's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","588","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","36","14","17","13","0","0","0","0","0","0","70" +"28856","-1","","","","","High Warlord's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"28857","-1","","","","","High Warlord's Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","598","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","46","19","19","0","0","0","0","0","0","0","70" +"28858","-1","","","","","High Warlord's Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","46","23","23","0","0","0","0","0","0","0","70" +"28859","-1","","","","","High Warlord's Satin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","598","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","17","17","0","0","0","0","0","0","0","70" +"28860","-1","","","","","High Warlord's Satin Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","598","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","46","15","15","0","0","0","0","0","0","0","70" +"28861","-1","","","","","High Warlord's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","608","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","12","13","27","14","0","0","0","0","0","70" +"28862","-1","","","","","High Warlord's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","12","12","28","12","0","0","0","0","0","70" +"28863","-1","","","","","High Warlord's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","608","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","16","13","28","14","0","0","0","0","0","70" +"28864","-1","","","","","High Warlord's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","16","16","36","16","0","0","0","0","0","70" +"28865","-1","","","","","High Warlord's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","608","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","8","9","25","10","0","0","0","0","0","70" +"28866","-1","","","","","High Warlord's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","600","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","16","15","8","0","0","0","0","0","0","70" +"28867","-1","","","","","High Warlord's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","600","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","16","17","19","0","0","0","0","0","0","70" +"28868","-1","","","","","High Warlord's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","12","17","17","0","0","0","0","0","0","70" +"28869","-1","","","","","High Warlord's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2951","0","0","0","0","600","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","42","15","17","18","0","0","0","0","0","0","70" +"28870","-1","","","","","High Warlord's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","22","22","22","0","0","0","0","0","0","70" +"28871","-1","","","","","High Warlord's Wyrmhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","610","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","15","13","0","0","0","0","0","0","0","70" +"28872","-1","","","","","High Warlord's Wyrmhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","610","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","21","18","17","0","0","0","0","0","0","0","70" +"28873","-1","","","","","High Warlord's Wyrmhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","610","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","22","20","0","0","0","0","0","0","0","70" +"28874","-1","","","","","High Warlord's Wyrmhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","610","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"28875","-1","","","","","High Warlord's Wyrmhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","610","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","17","18","0","0","0","0","0","0","0","70" +"28878","-1","","","","","Inscription of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28881","-1","","","","","Inscription of Discipline","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28882","-1","","","","","Inscription of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28885","-1","","","","","Inscription of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28886","-1","","","","","Greater Inscription of Discipline","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28887","-1","","","","","Greater Inscription of Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28888","-1","","","","","Greater Inscription of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28889","-1","","","","","Greater Inscription of Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28903","-1","","","","","Inscription of the Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28904","-1","","","","","Inscription of the Oracle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28905","-1","","","","","Monster - Claw, Badass","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28906","-1","","","","","Monster - Claw, Badass offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28907","-1","","","","","Inscription of the Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28908","-1","","","","","Inscription of the Knight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","64" +"28909","-1","","","","","Greater Inscription of the Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28910","-1","","","","","Greater Inscription of the Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28911","-1","","","","","Greater Inscription of the Knight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28912","-1","","","","","Greater Inscription of the Oracle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"28913","-1","Heavy and full of strange, ethereal devices.","","","","Box of Surveying Equipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28914","-1","","","","","Monster - Spear, Darkspear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28915","-1","","","","","Reins of the Dark Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28916","-1","","","","","Monster - Sword2H, Sin'dorei Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28917","-1","","","","","High Warlord's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","28","19","18","0","0","0","0","0","70" +"28918","-1","","","","","High Warlord's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","18","0","0","0","0","0","0","70" +"28919","-1","","","","","High Warlord's Maul","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","28","19","18","0","0","0","0","0","70" +"28920","-1","","","","","High Warlord's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28921","-1","","","","","High Warlord's Hacker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28922","-1","","","","","High Warlord's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28923","-1","","","","","High Warlord's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","115","-1","0","0","164","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","18","0","0","0","0","0","0","70" +"28924","-1","","","","","High Warlord's Bonecracker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28925","-1","","","","","High Warlord's Pummeler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28926","-1","","","","","High Warlord's Quickblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28927","658","","","","","Red Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"28928","-1","","","","","High Warlord's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28929","-1","","","","","High Warlord's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28930","-1","","","","","High Warlord's Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","115","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28931","-1","","","","","High Warlord's Spellblade","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","18","13","13","13","0","0","0","0","0","0","70" +"28933","-1","","","","","High Warlord's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","115","-1","0","0","170","0","0","0","0","255","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","12","9","9","0","0","0","0","0","0","0","70" +"28934","-1","","","","","Surveying Equipment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28935","-1","","","","","High Warlord's War Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","-1","0","0","224","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","40","20","30","20","30","0","0","0","0","0","70" +"28936","658","","","","","Swift Pink Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"28937","-1","","","","","High Warlord's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28938","-1","","","","","High Warlord's Battletome","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","18","12","12","0","0","0","0","0","0","0","70" +"28939","-1","","","","","High Warlord's Barricade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","36","23","0","0","0","0","0","0","0","0","70" +"28940","-1","","","","","Grand Marshal's Barricade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","36","23","0","0","0","0","0","0","0","0","70" +"28941","-1","","","","","Grand Marshal's Battletome","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","18","12","12","0","0","0","0","0","0","0","70" +"28942","-1","","","","","Grand Marshal's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","28","19","18","0","0","0","0","0","70" +"28943","-1","","","","","Grand Marshal's Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","4","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","28","18","0","0","0","0","0","70" +"28944","-1","","","","","Grand Marshal's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28945","-1","","","","","Grand Marshal's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","18","0","0","0","0","0","0","70" +"28946","-1","","","","","Grand Marshal's Hacker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28947","-1","","","","","Grand Marshal's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28948","-1","","","","","Grand Marshal's Maul","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","28","19","18","0","0","0","0","0","70" +"28949","-1","","","","","Grand Marshal's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","115","-1","0","0","164","0","0","0","0","246","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","42","28","19","18","0","0","0","0","0","0","70" +"28950","-1","","","","","Grand Marshal's Bonecracker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28951","-1","","","","","Grand Marshal's Pummeler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28952","-1","","","","","Grand Marshal's Quickblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28953","-1","","","","","Grand Marshal's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28954","-1","","","","","Grand Marshal's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28955","-1","","","","","Grand Marshal's Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","115","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28956","-1","","","","","Grand Marshal's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","149","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","9","8","0","0","0","0","0","0","70" +"28957","-1","","","","","Grand Marshal's Spellblade","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","18","13","13","13","0","0","0","0","0","0","70" +"28959","-1","","","","","Grand Marshal's War Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","115","-1","0","0","224","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","40","20","30","20","30","0","0","0","0","0","70" +"28960","-1","","","","","Grand Marshal's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","115","-1","0","0","170","0","0","0","0","255","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","2","12","9","9","0","0","0","0","0","0","0","70" +"28962","-1","","","","","Triangulation Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28963","-1","","","","","Voidheart Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2908","0","0","0","0","645","0","0","0","0","0","0","0","120","256","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","36","19","0","0","0","0","0","0","0","70" +"28964","-1","","","","","Voidheart Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","645","0","0","0","0","0","0","0","120","256","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","33","13","0","0","0","0","0","0","0","70" +"28965","-1","","","","","Monster - Trident, Ornate (Red Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"28966","-1","","","","","Voidheart Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","120","256","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","38","17","25","0","0","0","0","0","0","70" +"28967","-1","","","","","Voidheart Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","645","0","0","0","0","0","0","0","120","256","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","22","14","0","0","0","0","0","0","0","70" +"28968","-1","","","","","Voidheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","645","0","0","0","0","0","0","0","120","256","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","28","22","0","0","0","0","0","0","0","70" +"28969","-1","","","","","Teleporter Power Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28970","-1","The condensed essence of nether dragonkin.","","","","Nether Dragon Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28971","-1","","","","","Nether Dragonkin Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"28972","-1","","","","","Flightblade Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2350","9400","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","32767","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","25","3","0","6","5","0","0","0","0","0","0","0","0","55" +"28973","-1","","","","","Marshal's Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","18","11","7","9","0","0","0","0","0","70" +"28974","-1","","","","","Marshal's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","18","14","18","0","0","0","0","0","70" +"28975","-1","","","","","Marshal's Chain Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","18","14","18","0","0","0","0","0","70" +"28976","-1","","","","","Marshal's Dragonhide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","24","24","23","15","0","0","0","0","0","70" +"28977","-1","","","","","Marshal's Dragonhide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","24","24","23","15","0","0","0","0","0","70" +"28978","-1","","","","","Marshal's Dragonhide Bracers","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","4","3","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","16","13","11","0","0","0","0","0","0","70" +"28979","-1","","","","","Light Throwing Knife","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","3","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","1" +"28980","-1","","","","","Marshal's Dreadweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","0","0","0","0","0","0","0","70" +"28981","-1","","","","","Marshal's Dreadweave Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","14","0","0","0","0","0","0","0","70" +"28982","-1","","","","","Marshal's Dreadweave Stalkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","0","0","0","0","0","0","0","70" +"28983","-1","","","","","Marshal's Lamellar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28984","-1","","","","","Marshal's Lamellar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","12","13","0","0","0","0","0","0","70" +"28985","-1","","","","","Marshal's Lamellar Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28986","-1","","","","","Marshal's Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","15","26","0","0","0","0","0","0","70" +"28987","-1","","","","","Marshal's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","15","26","0","0","0","0","0","0","70" +"28988","-1","","","","","Marshal's Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","7","13","0","0","0","0","0","0","70" +"28989","-1","","","","","Marshal's Linked Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","10","15","9","0","0","0","0","0","70" +"28990","-1","","","","","Marshal's Linked Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","19","27","18","0","0","0","0","0","70" +"28991","-1","","","","","Marshal's Linked Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","19","27","18","0","0","0","0","0","70" +"28992","-1","","","","","Marshal's Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","12","13","14","0","0","0","0","0","0","70" +"28993","-1","","","","","Marshal's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28994","-1","","","","","Marshal's Mail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"28995","-1","","","","","Marshal's Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","40","27","27","27","0","0","0","0","0","0","70" +"28996","-1","","","","","Marshal's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","14","14","0","0","0","0","0","0","70" +"28997","-1","","","","","Marshal's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","27","0","0","0","0","0","0","70" +"28998","-1","","","","","Marshal's Scaled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","36","16","23","16","0","0","0","0","0","70" +"28999","-1","","","","","Marshal's Scaled Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","26","7","11","8","0","0","0","0","0","70" +"29000","-1","","","","","Marshal's Scaled Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","36","16","23","16","0","0","0","0","0","70" +"29001","-1","","","","","Marshal's Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","33","23","24","24","0","0","0","0","0","0","70" +"29002","-1","","","","","Marshal's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","17","12","11","0","0","0","0","0","0","70" +"29003","-1","","","","","Marshal's Silk Footguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","23","24","24","0","0","0","0","0","0","70" +"29004","-1","","","","","Marshal's Wyrmhide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","24","0","0","0","0","0","0","0","70" +"29005","-1","","","","","Marshal's Wyrmhide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","24","0","0","0","0","0","0","0","70" +"29006","-1","","","","","Marshal's Wyrmhide Bracers","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","13","0","0","0","0","0","0","0","70" +"29007","-1","","","","","Weighted Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7","30","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","8","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","3" +"29008","-1","","","","","Sharp Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","16","-1","0","0","8","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","11" +"29009","-1","","","","","Heavy Throwing Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50","200","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","27","-1","0","0","14","0","0","0","0","27","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","22" +"29010","-1","","","","","Wicked Throwing Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","40","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","35" +"29011","-1","","","","","Warbringer Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2972","0","0","0","0","654","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","1","0","0","1","0","4","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","15","17","53","24","19","0","0","0","0","0","70" +"29012","-1","","","","","Warbringer Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2871","0","0","0","0","654","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1510","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","1","0","0","1","0","4","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","16","17","48","22","23","0","0","0","0","0","70" +"29013","-1","","","","","Jagged Throwing Axe","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","55","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","50" +"29014","-1","","","","","Blacksteel Throwing Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200","800","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","55","-1","0","0","35","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","1","0","0","0","0","0","0","0","0","0","0","0","50" +"29015","-1","","","","","Warbringer Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","654","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","13","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","24","55","33","35","0","0","0","0","0","70" +"29016","-1","","","","","Warbringer Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2861","0","0","0","0","654","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","4","3","7","12","13","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","14","15","38","17","26","0","0","0","0","0","70" +"29017","-1","","","","","Warbringer Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","654","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","14","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","17","20","38","23","29","0","0","0","0","0","70" +"29018","-1","","","","","Triangulation Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29019","-1","","","","","Warbringer Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2952","0","0","0","0","655","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1510","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","44","39","26","0","0","0","0","0","0","0","70" +"29020","-1","","","","","Warbringer Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","23","33","18","0","0","0","0","0","0","70" +"29021","-1","","","","","Warbringer Battle-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2873","0","0","0","0","655","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","45","24","14","0","0","0","0","0","0","70" +"29022","-1","","","","","Warbringer Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","51","37","54","0","0","0","0","0","0","0","70" +"29023","-1","","","","","Warbringer Shoulderplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","655","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","32","22","33","13","0","0","0","0","0","0","70" +"29024","-1","Medal awarded for fighting in the Eye of the Storm","","","","Eye of the Storm Mark of Honor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","100","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29025","-1","","","","","[UNUSED]Triangulation Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29026","-1","The crystal suffuses you with a sense of strength and clarity.","","","","Ata'mal Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29027","-1","A combination of magic and metal used for dangerous warp experiments.","","","","Unstable Warp Rift Generator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29028","-1","","","","","Cyclone Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","631","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","41","0","0","0","0","0","0","0","0","70" +"29029","-1","","","","","Cyclone Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2869","0","0","0","0","631","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","30","0","0","0","0","0","0","0","0","70" +"29030","-1","","","","","Cyclone Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","631","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","40","0","0","0","0","0","0","0","0","70" +"29031","-1","","","","","Cyclone Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2881","0","0","0","0","631","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","32","0","0","0","0","0","0","0","0","70" +"29032","-1","","","","","Cyclone Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","631","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","28","0","0","0","0","0","0","0","0","70" +"29033","-1","","","","","Cyclone Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","140","0","0","0","0","0","2908","0","0","0","0","632","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","32","20","0","0","0","0","0","0","0","70" +"29034","-1","","","","","Cyclone Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","29","19","0","0","0","0","0","0","0","70" +"29035","-1","","","","","Cyclone Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","632","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","31","25","0","0","0","0","0","0","0","70" +"29036","-1","","","","","Cyclone Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","40","20","0","0","0","0","0","0","0","70" +"29037","-1","","","","","Cyclone Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2900","0","0","0","0","632","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","26","12","0","0","0","0","0","0","0","70" +"29038","-1","","","","","Cyclone Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2927","0","0","0","0","633","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","31","23","25","0","0","0","0","0","0","70" +"29039","-1","","","","","Cyclone Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","633","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","31","3","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","26","24","19","21","0","0","0","0","0","70" +"29040","-1","","","","","Cyclone Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2873","0","0","0","0","633","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","27","40","27","0","0","0","0","0","0","70" +"29041","-1","","","","","Draenethyst Crystal of Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29042","-1","","","","","Cyclone War-Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","633","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","35","35","52","24","0","0","0","0","0","0","70" +"29043","-1","","","","","Cyclone Shoulderplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","85","0","0","0","0","0","2860","0","0","0","0","633","0","0","0","0","0","0","0","120","64","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","18","31","18","14","0","0","0","0","0","70" +"29044","-1","","","","","Netherblade Facemask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","621","0","0","0","0","0","0","0","120","8","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","39","14","0","0","0","0","0","0","0","70" +"29045","-1","","","","","Netherblade Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","621","0","0","0","0","0","0","0","120","8","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","39","11","0","0","0","0","0","0","0","70" +"29046","-1","","","","","Netherblade Breeches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","621","0","0","0","0","0","0","0","120","8","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","43","40","26","0","0","0","0","0","0","0","70" +"29047","-1","","","","","Netherblade Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2895","0","0","0","0","621","0","0","0","0","0","0","0","120","8","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","38","13","0","0","0","0","0","0","0","70" +"29048","-1","","","","","Netherblade Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","621","0","0","0","0","0","0","0","120","8","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","25","17","0","0","0","0","0","0","0","70" +"29049","-1","","","","","Light-Collar of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","663","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","34","25","0","0","0","0","0","0","0","70" +"29050","-1","","","","","Robes of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2869","0","0","0","0","663","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","32","20","0","0","0","0","0","0","0","70" +"29051","-1","","","","","Warp Nether","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29052","-1","A strange device made by Ogath the Mad","","","","Warp Nether Extractor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29053","-1","","","","","Trousers of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","663","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","37","36","0","0","0","0","0","0","0","70" +"29054","-1","","","","","Light-Mantle of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2895","0","0","0","0","663","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","30","22","0","0","0","0","0","0","0","70" +"29055","-1","","","","","Handwraps of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","663","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","26","18","0","0","0","0","0","0","0","70" +"29056","-1","","","","","Shroud of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2864","0","0","0","0","664","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","28","25","21","17","0","0","0","0","0","0","70" +"29057","-1","","","","","Gloves of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","26","21","24","0","0","0","0","0","0","70" +"29058","-1","","","","","Soul-Collar of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","664","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","35","24","16","0","0","0","0","0","0","70" +"29059","-1","","","","","Leggings of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","38","27","25","0","0","0","0","0","0","70" +"29060","-1","","","","","Soul-Mantle of the Incarnate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2880","0","0","0","0","664","0","0","0","0","0","0","0","120","16","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","28","18","0","0","0","0","0","0","0","70" +"29061","-1","","","","","Justicar Diadem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","624","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","32","33","28","0","0","0","0","0","0","0","70" +"29062","-1","","","","","Justicar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","624","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1510","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","35","17","0","0","0","0","0","0","0","70" +"29063","-1","","","","","Justicar Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","43","42","0","0","0","0","0","0","0","0","70" +"29064","-1","","","","","Justicar Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2863","0","0","0","0","624","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","31","24","0","0","0","0","0","0","0","0","70" +"29065","-1","","","","","Justicar Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","29","30","22","0","0","0","0","0","0","0","70" +"29066","-1","","","","","Justicar Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2932","0","0","0","0","625","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1510","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","30","23","23","0","0","0","0","0","0","70" +"29067","-1","","","","","Justicar Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","625","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","24","23","0","0","0","0","0","0","0","70" +"29068","-1","","","","","Justicar Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","625","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","24","29","24","0","0","0","0","0","0","70" +"29069","-1","","","","","Justicar Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","625","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","14","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","31","31","31","0","0","0","0","0","0","70" +"29070","-1","","","","","Justicar Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","625","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","14","15","17","0","0","0","0","0","0","70" +"29071","-1","","","","","Justicar Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","626","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1510","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","24","33","25","0","0","0","0","0","0","70" +"29072","-1","","","","","Justicar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","626","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","38","29","24","24","0","0","0","0","0","0","70" +"29073","-1","","","","","Justicar Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2873","0","0","0","0","626","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","1","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","22","33","31","0","0","0","0","0","0","70" +"29074","-1","","","","","Justicar Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","626","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","5","3","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","53","34","24","24","23","0","0","0","0","0","70" +"29075","-1","","","","","Justicar Shoulderplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2860","0","0","0","0","626","0","0","0","0","0","0","0","120","2","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","1","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","13","24","15","16","0","0","0","0","0","70" +"29076","-1","","","","","Collar of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","648","0","0","0","0","0","0","0","120","128","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","35","17","27","0","0","0","0","0","0","70" +"29077","-1","","","","","Vestments of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","648","0","0","0","0","0","0","0","120","128","0","0","0","0","0","0","0","0","0","0","0","0","202","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","34","32","14","0","0","0","0","0","0","0","70" +"29078","-1","","","","","Legwraps of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","120","128","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","40","23","24","0","0","0","0","0","0","70" +"29079","-1","","","","","Pauldrons of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","648","0","0","0","0","0","0","0","120","128","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","26","16","15","0","0","0","0","0","0","70" +"29080","-1","","","","","Gloves of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","648","0","0","0","0","0","0","0","120","128","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","19","22","19","17","19","0","0","0","0","0","70" +"29081","-1","","","","","Demon Stalker Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","651","0","0","0","0","0","0","0","120","4","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","28","27","0","0","0","0","0","0","0","70" +"29082","-1","","","","","Demon Stalker Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2936","0","0","0","0","651","0","0","0","0","0","0","0","120","4","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","24","35","0","0","0","0","0","0","0","70" +"29083","-1","","","","","Demon Stalker Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","120","4","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","30","30","15","0","0","0","0","0","0","70" +"29084","-1","","","","","Demon Stalker Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2863","0","0","0","0","651","0","0","0","0","0","0","0","120","4","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","23","23","19","0","0","0","0","0","0","0","70" +"29085","-1","","","","","Demon Stalker Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","120","4","0","0","0","0","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","24","24","0","0","0","0","0","0","0","70" +"29086","-1","","","","","Crown of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2869","0","0","0","0","638","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","27","25","0","0","0","0","0","0","0","70" +"29087","-1","","","","","Chestguard of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","638","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","29","25","0","0","0","0","0","0","0","70" +"29088","-1","","","","","Legguards of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","38","26","0","0","0","0","0","0","0","70" +"29089","-1","","","","","Shoulderguards of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2866","0","0","0","0","638","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","19","23","19","0","0","0","0","0","0","0","70" +"29090","-1","","","","","Handguards of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","25","24","0","0","0","0","0","0","0","70" +"29091","-1","","","","","Chestpiece of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2908","0","0","0","0","639","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","8","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","27","19","19","0","0","0","0","0","0","70" +"29092","-1","","","","","Gloves of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","27","21","18","0","0","0","0","0","0","70" +"29093","-1","","","","","Antlers of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2908","0","0","0","0","639","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","29","22","24","0","0","0","0","0","0","70" +"29094","-1","","","","","Britches of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","35","18","25","0","0","0","0","0","0","70" +"29095","-1","","","","","Pauldrons of Malorne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","639","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","24","17","0","0","0","0","0","0","0","70" +"29096","-1","","","","","Breastplate of Malorne","0","0","280","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2873","0","0","0","0","640","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","3","4","2","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","34","36","13","0","0","0","0","0","0","70" +"29097","-1","","","","","Gauntlets of Malorne","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","640","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","32","28","12","24","0","0","0","0","0","0","70" +"29098","-1","","","","","Stag-Helm of Malorne","0","0","182","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","640","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","41","33","30","19","0","0","0","0","0","0","70" +"29099","-1","","","","","Greaves of Malorne","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","640","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","32","39","26","0","0","0","0","0","0","70" +"29100","-1","","","","","Mantle of Malorne","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2887","0","0","0","0","640","0","0","0","0","0","0","0","120","1024","0","0","0","0","0","0","0","0","0","0","0","0","284","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","27","25","9","0","0","0","0","0","0","70" +"29101","-1","","","","","Challenge of the Blue Flight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29102","-1","","","","","Reins of the Cobalt War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29103","-1","","","","","Reins of the White War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29104","-1","","","","","Reins of the Silver War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29105","-1","","","","","Reins of the Tan War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29106","-1","The crystal suffuses you with a sense of strength and clarity.","","","","Ata'mal Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29107","-1","","","","","Monster - Staff, Jeweled Blue Staff, Blue Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29108","-1","","","","","Blade of the Unyielding","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58074","290374","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","87","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","10","7","0","0","0","0","0","0","0","0" +"29109","-1","","","","","Rod of the Unyielding","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72850","364252","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","87","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","18","27","17","0","0","0","0","0","0","0","0" +"29110","-1","","","","","Ruined Scented Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29111","-1","","","","","Box of Stale Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29112","-1","","","","","Cenarion Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29113","-1","","","","","Demonic Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29114","-1","","","","","Monster - Staff, Blood Elf A02 Red - High Red Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29115","-1","","","","","Consortium Blaster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","68812","344063","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","933","0","0","115","-1","0","0","111","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","26","3","3","7","15","0","0","0","0","0","0","0","0","70" +"29116","-1","","","","","Nomad's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","46037","230189","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","33","49","0","0","0","0","0","0","0","0","70" +"29117","-1","","","","","Stormspire Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33434","167172","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","49","0","0","0","0","0","0","0","0","0","70" +"29118","-1","","","","","Smuggler's Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","103","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","5","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","68" +"29119","-1","","","","","Haramad's Bargain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","25","26","0","0","0","0","0","0","0","0","70" +"29120","-1","Teaches you how to sew Truefaith Vestments.","","","","Pattern: Truefaith Vestments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","197","62","-1488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29121","-1","","","","","Guile of Khoraazi","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","399034","1995172","1","4","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","933","0","0","100","32767","0","0","104","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","19","0","0","0","0","0","0","0","0","0","70" +"29122","-1","","","","","Nether Runner's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","125555","627777","1","4","1","32768","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","933","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","1","4","0","45","39","0","0","0","0","0","0","0","0","70" +"29123","-1","","","","","Medallion of the Lightbearer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","28","18","0","0","0","0","0","0","0","0","70" +"29124","-1","","","","","Vindicator's Brand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","414544","2072720","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","932","0","0","100","-1","0","0","147","0","0","0","0","275","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","19","0","0","0","0","0","0","0","0","0","70" +"29125","-1","","","","","Retainer's Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","416074","2080372","1","4","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","934","0","0","100","32767","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","22","21","0","0","0","0","0","0","0","0","70" +"29126","-1","","","","","Seer's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","24","12","0","0","0","0","0","0","0","0","70" +"29127","-1","","","","","Vindicator's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62408","312042","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","39","19","46","0","0","0","0","0","0","0","70" +"29128","-1","","","","","Lightwarden's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7102","28410","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","3","0","18","27","0","0","0","0","0","0","0","0","70" +"29129","-1","","","","","Anchorite's Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","35918","179594","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","932","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","3","4","3","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","20","3","0","16","38","18","0","0","0","0","0","0","0","70" +"29130","-1","","","","","Auchenai Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","112653","563267","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","932","0","0","115","-1","0","0","156","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","21","18","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","17","3","0","46","26","19","0","0","0","0","0","0","0","70" +"29131","-1","","","","","Retainer's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","45224","226120","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","26","28","0","0","0","0","0","0","0","0","70" +"29132","-1","","","","","Scryer's Bloodgem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","70" +"29133","-1","","","","","Seer's Cane","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113863","569315","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","934","0","0","115","-1","0","0","156","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","17","3","0","28","46","0","0","0","0","0","0","0","0","70" +"29134","-1","","","","","Gauntlets of the Chosen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","32178","160892","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","3","12","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","30","15","35","0","0","0","0","0","0","0","70" +"29135","-1","","","","","Earthcaller's Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41279","206398","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","941","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","1","3","0","37","25","0","0","0","0","0","0","0","0","70" +"29136","-1","","","","","Far Seer's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41426","207131","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","978","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","1","3","0","37","25","0","0","0","0","0","0","0","0","70" +"29137","-1","","","","","Hellscream's Will","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104471","522358","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","941","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","3","0","42","0","0","0","0","0","0","0","0","0","70" +"29138","-1","","","","","Arechron's Gift","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104878","524392","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","978","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","3","0","42","0","0","0","0","0","0","0","0","0","70" +"29139","-1","","","","","Ceremonial Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25265","126329","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","16","3","0","15","26","0","0","0","0","0","0","0","0","70" +"29140","-1","","","","","Cloak of the Ancient Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26062","130314","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","16","3","0","15","26","0","0","0","0","0","0","0","0","70" +"29141","-1","","","","","Tempest Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43600","218004","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","941","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","8","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","18","11","0","0","0","0","0","0","0","0","70" +"29142","-1","","","","","Kurenai Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43763","218818","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","978","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","8","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","18","11","0","0","0","0","0","0","0","0","70" +"29143","-1","","","","","Clefthoof Hide Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","109","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","5","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","68" +"29144","-1","","","","","Worg Hide Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","0","0","109","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","5","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","68" +"29145","-1","","","","","Band of Ancestral Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","3","0","15","26","15","0","0","0","0","0","0","0","70" +"29146","-1","","","","","Band of Elemental Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","3","0","15","26","15","0","0","0","0","0","0","0","70" +"29147","-1","","","","","Talbuk Hide Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33426","167132","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","20","15","0","0","0","0","0","0","0","0","70" +"29148","-1","","","","","Blackened Leather Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","33548","167743","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","20","15","0","0","0","0","0","0","0","0","70" +"29149","-1","","","","","Sporeling's Firestick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","970","0","0","91","-1","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","26","3","0","9","12","0","0","0","0","0","0","0","0","62" +"29150","-1","","","","","Hardened Stone Shard","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","970","0","0","91","-1","0","0","79","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","13","3","0","16","12","0","0","0","0","0","0","0","0","62" +"29151","-1","","","","","Veteran's Musket","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","318849","1594245","1","4","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","946","0","0","100","-1","0","0","139","0","0","0","0","259","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","26","4","3","12","11","0","0","0","0","0","0","0","0","70" +"29152","-1","","","","","Marksman's Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","319996","1599984","1","4","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","947","0","0","100","-1","0","0","144","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","15","4","2","11","12","0","0","0","0","0","0","0","0","70" +"29153","-1","","","","","Blade of the Archmage","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","428192","2140963","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","946","0","0","100","32767","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","21","4","0","13","11","21","0","0","0","0","0","0","0","70" +"29154","-1","A compact, yet powerful offensive weapon 'liberated' from a Burning Legion forge camp.","","","","Legion Cannon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29155","-1","","","","","Stormcaller","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","431211","2156059","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","947","0","0","100","32767","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","21","4","0","12","12","21","0","0","0","0","0","0","0","70" +"29156","-1","","","","","Honor's Call","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","402301","2011508","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","946","0","0","100","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","13","16","8","0","0","0","0","0","0","0","70" +"29157","-1","","","","","Golden Ring of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","5","5","4","0","0","0","0","0","0","0","31" +"29158","-1","","","","","Truesilver Commander's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1750","7000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","7","7","6","0","0","0","0","0","0","0","35" +"29159","-1","","","","","Glowing Thorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","56","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","0","0","0","0","0","0","0","0","0","0","51" +"29160","-1","","","","","Emerald Lion Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9125","36500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","58","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","5","5","6","5","0","0","0","0","0","53" +"29161","-1","The shard of a powerful Voidwalker.","","","","Void Ridge Soul Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29162","-1","The soul shard of Galaxis.","","","","Galaxis Soul Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29163","-1","","","","","Raw Farahlite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29164","-1","","","","","Farahlite Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29165","-1","","","","","Warbringer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","415991","2079958","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","947","0","0","100","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","12","16","7","0","0","0","0","0","0","0","70" +"29166","-1","","","","","Hellforged Halberd","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111003","555019","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","946","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","17","3","0","19","26","0","0","0","0","0","0","0","0","70" +"29167","-1","","","","","Blackened Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","111410","557054","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","947","0","0","115","-1","0","0","261","0","0","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","17","3","0","19","26","0","0","0","0","0","0","0","0","70" +"29168","-1","","","","","Ancestral Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","70" +"29169","-1","","","","","Ring of Convalescence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","70" +"29170","-1","","","","","Windcaller's Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","23","4","0","12","16","0","0","0","0","0","0","0","0","70" +"29171","-1","","","","","Earthwarden","0.4","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","531363","2656817","1","4","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","942","0","0","100","-1","0","0","270","0","0","0","0","406","0","0","0","0","500","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","4","0","0","1","0","12","7","37","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","4","0","27","39","24","0","0","0","0","0","0","0","70" +"29172","-1","","","","","Ashyen's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","21","30","0","0","0","0","0","0","0","0","70" +"29173","-1","","","","","Strength of the Untamed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","27","19","18","0","0","0","0","0","0","0","70" +"29174","-1","","","","","Watcher's Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25474","127371","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","21","36","14","0","0","0","0","0","0","0","70" +"29175","-1","","","","","Gavel of Pure Light","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","400730","2003650","1","4","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","935","0","0","100","32767","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","21","4","0","12","12","0","0","0","0","0","0","0","0","70" +"29176","-1","","","","","Crest of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","268985","1344928","1","4","1","32768","24580","0","0","0","120","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","935","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","4465","0","0","0","0","0","0","0","254","0","0","0","4","4","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","14","4","0","19","13","0","0","0","0","0","0","0","0","70" +"29177","-1","","","","","A'dal's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","29","16","18","0","0","0","0","0","0","0","70" +"29179","-1","","","","","Xi'ri's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","557056","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","21","0","0","0","0","0","0","0","0","0","0","6","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","70" +"29180","-1","","","","","Blessed Scale Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26057","130288","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","6","3","0","20","15","0","0","0","0","0","0","0","0","70" +"29181","-1","","","","","Timelapse Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","12","4","0","27","24","0","0","0","0","0","0","0","0","70" +"29182","-1","","","","","Riftmaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","411359","2056797","1","4","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","989","0","0","100","32767","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","13","4","0","21","0","0","0","0","0","0","0","0","0","70" +"29183","-1","","","","","Bindings of the Timewalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","86279","431396","1","4","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","9","4","0","24","12","0","0","0","0","0","0","0","0","70" +"29184","-1","","","","","Timewarden's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","61700","308501","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","2888","0","0","0","0","0","0","0","0","0","989","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","57","11","18","0","0","0","0","0","0","0","70" +"29185","-1","","","","","Continuum Blade","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88468","442344","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","989","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","21","3","0","30","11","8","0","0","0","0","0","0","0","70" +"29186","-1","","","","","Glyph of the Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29187","-1","","","","","Inscription of Endurance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29188","-1","","","","","zzoldGlyph of the Wild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","69" +"29189","-1","","","","","Glyph of Renewal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29190","-1","","","","","Glyph of Renewal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29191","-1","","","","","Glyph of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29192","-1","","","","","Glyph of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29193","-1","","","","","Glyph of the Gladiator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29194","-1","","","","","Glyph of Nature Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29195","-1","","","","","Glyph of Arcane Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29196","-1","","","","","Glyph of Fire Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29197","-1","","","","","Glyph of Fire Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29198","-1","","","","","Glyph of Frost Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29199","-1","","","","","Glyph of Shadow Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"29200","-1","","","","","Falfindel's Blaster","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3658","18291","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","31","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","0","0","0","0","0","0","0","0","0","0","0" +"29201","-1","","","","","Thick Bronze Darts","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","20","-1","0","0","16","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","2","0","0","0","0","0","0","0","0","0","15" +"29202","-1","","","","","Whirling Steel Axes","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","600","2400","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","40","-1","0","0","30","0","0","0","0","57","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","4","3","0","0","0","0","0","0","0","0","35" +"29203","-1","","","","","Enchanted Thorium Blades","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","60","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","0","6","0","0","0","0","0","0","0","0","0","55" +"29204","-1","","","","","Felsteel Whisper Knives","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","110","-1","0","0","134","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","10","10","0","0","0","0","0","0","0","0","70" +"29205","-1","The top half of Ekkorash the Inquisitor's Crest","","","","Inquisitor's Crest - Top Half","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29206","-1","The bottom half of Ekkorash the Inquisitor's crest.","","","","Inquisitor's Crest - Bottom Half","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","3136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29207","-1","","","","","Conjuring Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29208","-1","","","","","Test Ammo Expansion 65 Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29209","-1","Sure enough, not every one of them is wearing one. Cowards!","","","","Zaxxis Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29210","-1","","","","","Assassin's Throwing Axe","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25914","103656","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","63","-1","0","0","112","0","0","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","11","0","0","0","0","0","0","0","0","0","58" +"29211","-1","","","","","Fitz's Throwing Axe","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9954","39818","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","103","32767","0","0","99","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","12","12","0","0","0","0","0","0","0","0","0" +"29212","-1","","","","","Balanced Stone Dirk","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","93","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","12","0","0","0","0","0","0","0","0","0","0" +"29213","-1","Teaches you how to make a Felstalker Belt.","","","","Pattern: Felstalker Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29214","-1","Teaches you how to make Felstalker Bracers.","","","","Pattern: Felstalker Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29215","-1","Teaches you how to make a Felstalker Breastplate.","","","","Pattern: Felstalker Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29216","-1","A gleaming piece of crystal shaped and polished by a draenei artisan.","","","","Flawless Crystal Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29217","-1","Teaches you how to make a Netherfury Belt.","","","","Pattern: Netherfury Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29218","-1","Teaches you how to make Netherfury Boots.","","","","Pattern: Netherfury Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29219","-1","Teaches you how to make Netherfury Leggings.","","","","Pattern: Netherfury Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29220","658","","","","","Blue Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"29221","658","","","","","Black Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"29222","658","","","","","Purple Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"29223","658","","","","","Swift Green Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29224","658","","","","","Swift Purple Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29225","658","","","","","zzoldSwift Warstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29226","-1","A combination of magic and metal used for dangerous warp experiments.","","","","Warp Rift Generator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29227","-1","","","","","Reins of the Cobalt War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29228","-1","","","","","Reins of the Dark War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29229","-1","","","","","Reins of the Silver War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29230","-1","","","","","Reins of the Tan War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29231","-1","","","","","Reins of the White War Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29232","-1","Teaches you how to Transmute a Skyfire Diamond.","","","","Recipe: Transmute Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29233","-1","","","","","Dathric's Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10182","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"29234","-1","","","","","Belmara's Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10305","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"29235","-1","","","","","Luminrath's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10306","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"29236","-1","","","","","Cohlien's Cap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10307","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"29237","-1","","","","","Warpath Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39750","198750","1","1","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","20","22","13","0","0","0","0","0","0","70" +"29238","-1","","","","","Lion's Heart Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39896","199483","1","1","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","782","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","12","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","31","23","22","0","0","0","0","0","0","70" +"29239","-1","","","","","Eaglecrest Warboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59610","298051","1","1","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","955","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","21","33","24","0","0","0","0","0","0","70" +"29240","-1","","","","","Bands of Negation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22835","114176","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","22","0","0","0","0","0","0","0","0","70" +"29241","-1","","","","","Belt of Depravity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22916","114582","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","27","17","0","0","0","0","0","0","0","70" +"29242","-1","","","","","Boots of Blasphemy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34499","172498","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","29","0","0","0","0","0","0","0","0","70" +"29243","-1","","","","","Wave-Fury Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34624","173124","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","18","0","0","0","0","0","0","0","0","70" +"29244","-1","","","","","Wave-Song Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34749","173749","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","25","23","0","0","0","0","0","0","0","70" +"29245","-1","","","","","Wave-Crest Striders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52539","262699","1","1","1","4096","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","26","0","0","0","0","0","0","0","0","70" +"29246","-1","","","","","Nightfall Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29163","145819","1","1","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","22","0","0","0","0","0","0","0","0","70" +"29247","-1","","","","","Girdle of the Deathdealer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29268","146340","1","1","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","28","20","0","0","0","0","0","0","0","70" +"29248","-1","","","","","Shadowstep Striders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44054","220271","1","1","1","4096","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","31","30","0","0","0","0","0","0","0","0","70" +"29249","-1","","","","","Bands of the Benevolent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23578","117894","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","20","18","0","0","0","0","0","0","0","70" +"29250","-1","","","","","Cord of Sanctification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21406","107033","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","24","0","0","0","0","0","0","0","0","70" +"29251","-1","","","","","Boots of the Pious","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32235","161175","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","26","23","0","0","0","0","0","0","0","70" +"29252","-1","","","","","Bracers of Dignity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37965","189826","1","1","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","12","21","0","0","0","0","0","0","0","70" +"29253","-1","","","","","Girdle of Valorous Deeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39163","195815","1","1","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","782","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","37","22","24","16","0","0","0","0","0","0","70" +"29254","-1","","","","","Boots of the Righteous Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58518","292590","1","1","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","955","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","26","23","0","0","0","0","0","0","0","70" +"29255","-1","","","","","Bands of Rarefied Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22418","112092","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","21","16","0","0","0","0","0","0","0","70" +"29257","-1","","","","","Sash of Arcane Visions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22582","112914","1","1","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","23","19","22","0","0","0","0","0","0","70" +"29258","-1","","","","","Boots of Ethereal Manipulation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33999","169997","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","27","21","0","0","0","0","0","0","0","70" +"29259","-1","","","","","Bracers of the Hunt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34124","170623","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","16","17","0","0","0","0","0","0","0","70" +"29260","-1","It's still beating. Woah!","","","","Heart of the Fel Reaver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29261","-1","","","","","Girdle of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34371","171856","1","1","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","438","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","28","21","22","14","0","0","0","0","0","0","70" +"29262","-1","","","","","Boots of the Endless Hunt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51974","259872","1","1","1","4096","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","535","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","19","23","0","0","0","0","0","0","0","70" +"29263","-1","","","","","Forestheart Bracers","0","0","84","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28848","144242","1","1","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","18","27","16","0","0","0","0","0","0","70" +"29264","-1","","","","","Tree-Mender's Belt","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28952","144763","1","1","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","27","22","21","0","0","0","0","0","0","70" +"29265","-1","","","","","Barkchip Boots","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43585","217926","1","1","1","4096","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","24","36","21","0","0","0","0","0","0","70" +"29266","-1","","","","","Azure-Shield of Coldarra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","4668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","31","22","0","0","0","0","0","0","0","0","70" +"29267","-1","","","","","Light-Bearer's Faith Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","4668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","22","0","0","0","0","0","0","0","0","70" +"29268","-1","","","","","Mazthoril Honor Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","4668","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","16","17","21","0","0","0","0","0","0","0","70" +"29269","-1","","","","","Sapphiron's Wing Bone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","12","0","0","0","0","0","0","0","0","0","70" +"29270","-1","","","","","Flametongue Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","17","0","0","0","0","0","0","0","0","0","70" +"29271","-1","","","","","Talisman of Kalecgos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","14","0","0","0","0","0","0","0","0","0","70" +"29272","-1","","","","","Orb of the Soul-Eater","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","18","0","0","0","0","0","0","0","0","0","70" +"29273","-1","","","","","Khadgar's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29274","-1","","","","","Tears of Heaven","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29275","-1","","","","","Searing Sunblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","110","32767","0","0","77","0","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","24","22","0","0","0","0","0","0","0","0","70" +"29276","-1","","","","","Violet Signet","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","13","0","0","0","0","0","0","0","0","0" +"29277","-1","","","","","Violet Signet","0","0","350","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","33","16","0","0","0","0","0","0","0","0","0" +"29278","-1","","","","","Violet Signet","0","0","371","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","36","18","0","0","0","0","0","0","0","0","0" +"29279","-1","","","","","Violet Signet of the Great Protector","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","37","19","0","0","0","0","0","0","0","0","0" +"29280","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","19","18","0","0","0","0","0","0","0","0","0" +"29281","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","22","0","0","0","0","0","0","0","0","0" +"29282","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","24","0","0","0","0","0","0","0","0","0" +"29283","-1","","","","","Violet Signet of the Master Assassin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","25","0","0","0","0","0","0","0","0","0" +"29284","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","18","12","0","0","0","0","0","0","0","0" +"29285","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","21","15","0","0","0","0","0","0","0","0" +"29286","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","22","17","0","0","0","0","0","0","0","0" +"29287","-1","","","","","Violet Signet of the Archmage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","23","17","0","0","0","0","0","0","0","0" +"29288","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","18","12","0","0","0","0","0","0","0","0" +"29289","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","21","15","0","0","0","0","0","0","0","0" +"29290","-1","","","","","Violet Signet of the Grand Restorer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","23","17","0","0","0","0","0","0","0","0" +"29291","-1","","","","","Violet Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","22","17","0","0","0","0","0","0","0","0" +"29292","-1","","","","","Helboar Bacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29293","-1","","","","","Bonestripper Buzzard Hotwings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10","40","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29294","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","37","25","0","0","0","0","0","0","0","0","0" +"29295","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","40","28","0","0","0","0","0","0","0","0","0" +"29296","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","144","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","43","30","0","0","0","0","0","0","0","0","0" +"29297","-1","","","","","Band of the Eternal Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","152","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","43","30","0","0","0","0","0","0","0","0","0" +"29298","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","25","37","0","0","0","0","0","0","0","0","0" +"29299","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","40","0","0","0","0","0","0","0","0","0" +"29300","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","43","0","0","0","0","0","0","0","0","0" +"29301","-1","","","","","Band of the Eternal Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","152","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","43","0","0","0","0","0","0","0","0","0" +"29302","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","22","21","0","0","0","0","0","0","0","0" +"29303","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","25","23","22","0","0","0","0","0","0","0","0" +"29304","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","25","24","0","0","0","0","0","0","0","0" +"29305","-1","","","","","Band of the Eternal Sage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","152","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","25","24","0","0","0","0","0","0","0","0" +"29306","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","25","23","0","0","0","0","0","0","0","0","0" +"29307","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","22","0","0","0","0","0","0","0","0","0" +"29308","-1","","","","","Band of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","144","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","25","0","0","0","0","0","0","0","0","0" +"29309","-1","","","","","Band of the Eternal Restorer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","152","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","25","0","0","0","0","0","0","0","0","0" +"29310","-1","","","","","Monster - Staff, Red Feathered - Red Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29311","-1","","","","","Fel Reaver Construction Manual","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29312","-1","","","","","Cover of Righteous Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11665","58329","1","0.3","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","804","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","40","34","12","0","0","0","0","0","0","0","0" +"29313","-1","","","","","Earthbreaker's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33669","168346","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","20","8","0","0","0","0","0","0","0","0" +"29314","-1","","","","","Leggings of the Third Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37384","186922","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","26","34","12","0","0","0","0","0","0","0","0" +"29315","-1","","","","","Gloves of Penitence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15009","75048","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","20","18","0","0","0","0","0","0","0","0" +"29316","-1","","","","","Warchief's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41649","208245","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","786","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","7","14","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","27","18","0","0","0","0","0","0","0","0" +"29317","-1","","","","","Tempest's Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16377","81887","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","20","6","0","0","0","0","0","0","0","0" +"29318","-1","","","","","Southshore Sneakers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30818","154092","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","16","23","0","0","0","0","0","0","0","0","0" +"29319","-1","","","","","Tarren Mill Defender's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24743","123715","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","19","18","0","0","0","0","0","0","0","0","0" +"29320","-1","","","","","Band of the Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","11","17","0","0","0","0","0","0","0","0","0" +"29321","-1","","","","","Time-bending Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","19","21","0","0","0","0","0","0","0","0","0" +"29322","-1","","","","","Keeper's Ring of Piety","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","0","0","0","0","0","0","0","0","0","0" +"29323","-1","","","","","Andormu's Tear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","12","13","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","26","15","0","0","0","0","0","0","0","0" +"29324","-1","","","","","Warp-Attuned Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29325","-1","","","","","Flesh Beast's Metal Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37866","189330","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","680","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","18","28","0","0","0","0","0","0","0","0" +"29326","-1","","","","","Consortium Mantle of Phasing","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32789","163946","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","416","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","21","0","0","0","0","0","0","0","0","0","0" +"29327","-1","","","","","Cryo-mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18203","91018","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","16","0","0","0","0","0","0","0","0","0" +"29328","-1","","","","","Consortium Prince's Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14618","73093","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","0","0","0","0","0","0","0","0","0","0" +"29329","-1","","","","","Terokk's Quill","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106924","534620","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","115","-1","0","0","246","0","0","0","0","370","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","54","33","0","0","0","0","0","0","0","0","0" +"29330","-1","","","","","The Saga of Terokk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34450","137801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","23","0","0","0","0","0","0","0","0","0","0" +"29331","-1","","","","","Annals of Kirin'Var","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29332","-1","","","","","Terokk's Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32440","162200","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","36","0","0","0","0","0","0","0","0","0" +"29333","-1","","","","","Torc of the Sethekk Prophet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","2","3","0","18","21","0","0","0","0","0","0","0","0","0" +"29334","-1","","","","","Sethekk Oracle's Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","19","0","0","0","0","0","0","0","0","0","0" +"29335","-1","","","","","Talon Lord's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","-1","-1","-1","-1","-1","-1","-1","-1","0","3","0","0","2","3","0","19","21","0","0","0","0","0","0","0","0","0" +"29336","-1","","","","","Mark of the Ravenguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","40","17","0","0","0","0","0","0","0","0","0" +"29337","-1","","","","","The Exarch's Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55814","279074","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","1018","0","0","0","0","0","0","0","254","0","0","0","3","3","3","0","0","0","0","1","0","4","12","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","23","18","0","0","0","0","0","0","0","0" +"29338","-1","","","","","Loathsome Remnant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29339","-1","","","","","Auchenai Tracker's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48180","240904","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","4","4","4","0","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","29","0","0","0","0","0","0","0","0","0","0" +"29340","-1","","","","","Auchenai Monk's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40294","201471","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","3","31","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","24","19","24","0","0","0","0","0","0","0","0" +"29341","-1","","","","","Auchenai Anchorite's Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32350","161751","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","7","0","0","1","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","24","23","0","0","0","0","0","0","0","0","0" +"29342","-1","","","","","Consortium Plated Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55280","276402","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","866","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","23","0","0","0","0","0","0","0","0","0","0" +"29343","-1","","","","","Haramad's Leggings of the Third Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35848","179243","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","8","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","16","0","0","0","0","0","0","0","0","0" +"29344","-1","","","","","Haramad's Linked Chain Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43186","215930","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2869","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","254","0","0","0","3","3","3","0","5","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","10","0","0","0","0","0","0","0","0","0","0" +"29345","-1","","","","","Haramad's Leg Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28902","144511","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","7","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","0","0","0","0","0","0","0","0","0","0" +"29346","-1","","","","","Feltooth Eviscerator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","108284","541421","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","110","32767","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","22","0","0","0","0","0","0","0","0","0","70" +"29347","-1","","","","","Talisman of the Breaker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","17","0","0","0","0","0","0","0","0","70" +"29348","-1","","","","","The Bladefist","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","104629","523148","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","0","0","152","0","0","0","0","283","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29349","-1","","","","","Adamantine Chain of the Unbroken","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","30","0","0","0","0","0","0","0","0","70" +"29350","-1","","","","","The Black Stalk","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84694","423473","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","110","-1","0","0","165","0","0","0","0","307","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","10","11","0","0","0","0","0","0","0","0","70" +"29351","-1","","","","","Wrathtide Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81510","407553","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","105","-1","0","0","158","0","0","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","14","0","0","0","0","0","0","0","0","0","70" +"29352","-1","This ring was empowered by the princess of the blue dragonflight.","","","","Cobalt Band of Tyrigosa","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","17","0","0","0","0","0","0","0","0","70" +"29353","-1","","","","","Shockwave Truncheon","0.6","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109480","547401","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","105","32767","0","0","111","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","24","16","0","0","0","0","0","0","0","0","70" +"29354","-1","","","","","Light-Touched Stole of Altruism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34374","171873","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","22","21","0","0","0","0","0","0","0","0","70" +"29355","-1","","","","","Terokk's Shadowstaff","0.4","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137836","689180","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","105","-1","0","0","278","0","0","0","0","417","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","40","42","37","0","0","0","0","0","0","0","70" +"29356","-1","","","","","Quantum Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138335","691679","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","105","-1","0","0","304","0","0","0","0","456","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","31","30","0","0","0","0","0","0","0","0","70" +"29357","-1","","","","","Master Thief's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28958","144791","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","23","25","0","0","0","0","0","0","0","0","70" +"29359","-1","","","","","Feral Staff of Lashing","0.4","0","-37.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","139821","699106","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","105","32767","0","0","260","0","0","0","0","391","0","0","0","0","300","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","36","35","34","0","0","0","0","0","0","0","70" +"29360","-1","","","","","Vileblade of the Betrayer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","112256","561283","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","32767","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29361","-1","","","","","Naberius's Phylactery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29362","-1","Forged in the heart of a dying star, this ethereal blade is feared across the cosmos.","","","","The Sun Eater","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","113045","565226","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","105","-1","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","22","13","19","0","0","0","0","0","0","0","70" +"29363","-1","","","","","Mana Wyrmling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29364","-1","","","","","Brown Rabbit Crate","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29365","-1","","","","","Smithing Hammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29366","-1","","","","","B'naar Access Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29367","-1","","","","","Ring of Cryptic Dreams","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","16","17","20","0","0","0","0","0","0","0","70" +"29368","-1","","","","","Manasurge Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","22","0","0","0","0","0","0","0","0","70" +"29369","-1","","","","","Shawl of Shifting Probabilities","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","16","22","0","0","0","0","0","0","0","70" +"29370","-1","","","","","Icon of the Silver Crescent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29371","-1","","","","","Nexus-Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69666","348334","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","108","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","14","0","0","0","0","0","0","0","0","0","66" +"29372","-1","","","","","Void-Talon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69923","349616","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","108","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","2","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","22","2","0","14","0","0","0","0","0","0","0","0","0","66" +"29373","-1","","","","","Band of Halos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","21","0","0","0","0","0","0","0","0","70" +"29374","-1","","","","","Necklace of Eternal Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","22","21","0","0","0","0","0","0","0","0","70" +"29375","-1","","","","","Bishop's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","17","0","0","0","0","0","0","0","0","70" +"29376","-1","","","","","Essence of the Martyr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29377","-1","","","","","Ethereum Phase-Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88988","444941","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","0","0","102","0","0","0","0","153","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","26","39","0","0","0","0","0","0","0","0","66" +"29378","-1","","","","","Starheart Baton","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53585","267925","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","108","-1","0","0","136","0","0","0","0","253","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","66" +"29379","-1","","","","","Ring of Arathi Warlords","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","23","0","0","0","0","0","0","0","0","70" +"29380","-1","","","","","Ethereum Phase Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71952","359762","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","108","-1","0","0","76","0","0","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","11","16","0","0","0","0","0","0","0","0","66" +"29381","-1","","","","","Choker of Vile Intent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","18","18","0","0","0","0","0","0","0","70" +"29382","-1","","","","","Blood Knight War Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","23","22","0","0","0","0","0","0","0","0","70" +"29383","-1","","","","","Bloodlust Brooch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29384","-1","","","","","Ring of Unyielding Force","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","22","0","0","0","0","0","0","0","0","70" +"29385","-1","","","","","Farstrider Defender's Cloak","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","0","0","0","0","0","0","0","0","0","70" +"29386","-1","","","","","Necklace of the Juggernaut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","33","22","0","0","0","0","0","0","0","70" +"29387","-1","","","","","Gnomeregan Auto-Blocker 600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29388","-1","","","","","Libram of Repentance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29389","-1","","","","","Totem of the Pulsing Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29390","-1","","","","","Everbloom Idol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29391","-1","","","","","Pulse Dagger","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69653","348265","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","108","-1","0","0","52","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","21","0","0","0","0","0","0","0","0","0","66" +"29393","-1","","","","","Diamond Berries","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29394","-1","","","","","Lyribread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29395","-1","","","","","Ethermead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29396","-1","","","","","Coruu Access Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29397","-1","","","","","Duro Access Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29398","-1","","","","","Circle of Banishing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30284","121136","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","18","0","0","0","0","0","0","0","0","0" +"29399","-1","","","","","Rod of the Void Caller","0.4","0","-7.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72796","363980","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","93","-1","0","0","142","0","0","0","0","214","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","48","13","18","0","0","0","0","0","0","0","0" +"29400","-1","","","","","Abyssal Shroud","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17538","87691","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","93","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","18","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","35","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","15","0","0","0","0","0","0","0","0","0" +"29401","-1","","","","","Sparkling Southshore Cider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29402","-1","","","","","Jessen's Special Slop OLD","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"29403","-1","","","","","Monster - Sword, 1H Blood Elf A01 Gold - Red Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29404","-1","","","","","Monster - Sword, 1H Blood Elf A01 Gold - White Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29405","-1","","","","","Monster - Sword, 1H Blood Elf A01 Gold - Blue Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29406","-1","","","","","Monster - Sword, 1H Blood Elf A01 Gold - Black Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29407","-1","","","","","Monster - Mace2H, Warhammer Ebony - Red Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29408","-1","","","","","Monster - Mace2H, Warhammer Ebony - Black Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29409","-1","","","","","Monster - Mace2H, Warhammer Ebony - Blue Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29410","-1","","","","","Monster - Mace2H, Warhammer Ebony - White Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29411","-1","","","","","Ara Access Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29412","-1","","","","","Jessen's Special Slop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29413","-1","","","","","Monster - Glaive - 2 Blade Purple - Ethereal, Consortium (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29414","-1","","","","","Monster - Glaive - 4 Blade Purple - Ethereal, Consortium (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29415","-1","","","","","Monster - Glaive - Crystal Scimitar - Ethereal, Consortium (Yellow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29416","-1","","","","","Monster - Glaive - Staff - Ethereal, Consortium","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29417","-1","","","","","Monster - Axe - Ethereal, Consortium (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29418","-1","","","","","Monster - Glaive - 2 Blade Purple - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29419","-1","","","","","Monster - Glaive - 3 Blade Purple - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29420","-1","","","","","Monster - Sword - 2H Crystal - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29421","-1","","","","","Monster - Staff - 2H Crystal - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29422","-1","","","","","Monster - Axe - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29423","-1","","","","","Monster - Mace - 2H Crystal - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29424","-1","","","","","Monster - Mace - 1H Crystal - Ethereal, Ethereum (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29425","-1","Present this to the Aldor in Shattrath City to prove your slaying of a low-ranking follower of the Burning Legion.","","","","Mark of Kil'jaeden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29426","-1","Present this to the Scryers in Shattrath City to prove your slaying of a low-ranking follower of Kael'thas.","","","","Firewing Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29427","-1","","","","","Mark of the Betrayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29428","-1","An old, battered brass cowbell.","","","","Bessy's Bell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29429","-1","","","","","Boom's Doom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29430","-1","","","","","Monster - Glaive - 2 Blade Purple - Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29431","-1","","","","","Monster - Staff, Ethereal (Black) (Red Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29432","-1","","","","","Monster - Staff, Ethereal (Gold) (Red Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29433","-1","","","","","Monster - Glaive - 2 Blade B03 Red - High Red Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29434","-1","","","","","Badge of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29435","-1","","","","","Monster - Dagger, Curvey Silver - Red Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29436","-1","","","","","Monster - Axe - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29437","-1","","","","","Monster - Glaive - 2 Blade Purple - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29438","-1","","","","","Monster - Glaive - 4 Blade Purple - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29439","-1","","","","","Monster - Sword - Crystal Scimitar - Ethereal, Protectorate (White Glow, Pink Crystal)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29440","-1","","","","","Monster - Staff - 2H Crystal - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29441","-1","","","","","Monster - Staff - 2H Crystal - Ethereal, Consortium (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29442","-1","","","","","Monster - Staff, Ethereal (Purple) (Purple Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29443","-1","","","","","Bloodmaul Brutebane Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29444","-1","","","","","Monster - Glaive - 2 Blade Purple - Ethereal, Ethereum Darkstalker (Black Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29445","-1","","","","","Surveying Markers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29446","-1","","","","","Monster - Sword, Frost Battlemage Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29447","-1","","","","","Fel Zapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29448","-1","","","","","Mag'har Mild Cheese","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29449","-1","","","","","Bladespire Bagel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29450","-1","","","","","Telaari Grapes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29451","-1","","","","","Clefthoof Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29452","-1","","","","","Zangar Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29453","-1","","","","","Sporeggar Mushroom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"29454","-1","","","","","Silverwine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29455","-1","","","","","Monster - Mace2H, Pip's Lava Dredger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29456","-1","","","","","Gift of the Ethereal","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","69716","348580","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","933","0","0","94","-1","0","0","79","0","0","0","0","147","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","21","3","0","12","18","0","0","0","0","0","0","0","0","63" +"29457","-1","","","","","Nethershard","0.6","0","-15.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","69987","349938","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","933","0","0","94","-1","0","0","67","0","0","0","0","125","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","21","7","5","0","0","0","0","0","0","0","0","5","0","0","21","3","0","6","15","18","0","0","0","0","0","0","0","63" +"29458","-1","","","","","Aegis of the Vindicator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77562","387811","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","5279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","21","0","0","0","0","0","0","0","0","0","70" +"29459","-1","A small crystal that rapidly changes color.","","","","Ethereum Relay Data","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29460","-1","","","","","Ethereum Prison Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29461","-1","A fragment of the casing of a devastating weapon used in the destruction of Kirin'Var Village","","","","Mana Bomb Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29462","-1","","","","","Monster - Sword - Crystal - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29463","-1","","","","","Amber Bands of the Aggressor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39750","198750","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","18","25","15","0","0","0","0","0","0","70" +"29464","-1","It's sweating an oily secretion... kind of like tar. And it's getting all over your pack.","","","","Shaleskin Shale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29465","68","","","","","Black Battlestrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29466","690","","","","","Black War Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29467","1101","","","","","Black War Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29468","1101","","","","","Black War Steed Bridle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29469","690","","","","","Horn of the Black War Wolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29470","658","","","","","Red Skeletal Warhorse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29471","1101","","","","","Reins of the Black War Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29472","690","","","","","Whistle of the Black War Raptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29473","-1","Standard Issue.","","","","Protectorate Igniter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29474","-1","","","","","Ivory Bell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29475","-1","Careful with this stuff, or you might end up pacifying yourself!","","","","Pacifying Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29476","-1","","","","","Crimson Crystal Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10134","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"29477","-1","Emanates with a sickly, evil aura.","","","","Crimson Crystal Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29478","-1","","","","","Seed of Revitalization","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29479","-1","","","","","Monster - Mace2H, Firemaul of Destruction","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"29480","-1","","","","","Parched Hydra Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29481","-1","","","","","Withered Bog Lord Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29482","-1","Drinking may cause brain damage.","","","","Ethereum Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29483","-1","","","","","Shadow Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","65" +"29484","-1","","","","","Monster - Mace2H, Firemaul of Destruction (No Fire)","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"29485","-1","","","","","Flame Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","65" +"29486","-1","","","","","Frost Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","65" +"29487","-1","","","","","Nature Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","65" +"29488","-1","","","","","Arcane Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","65" +"29489","-1","","","","","Enchanted Felscale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52781","263907","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","40","0","254","0","0","0","4","4","4","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","0","0","0","0","0","0","0","0","0","69" +"29490","-1","","","","","Enchanted Felscale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26486","132430","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","397","0","0","0","0","0","30","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29491","-1","","","","","Enchanted Felscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40049","200246","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","437","0","0","0","0","0","30","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29492","-1","","","","","Flamescale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53353","266767","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","556","0","40","0","0","0","0","0","254","0","0","0","4","4","4","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","0","0","0","0","0","0","0","0","0","69" +"29493","-1","","","","","Flamescale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40332","201663","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","437","0","30","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29494","-1","","","","","Flamescale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24968","124842","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","357","0","30","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29495","-1","","","","","Enchanted Clefthoof Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41772","208864","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","40","0","254","0","0","0","4","4","4","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","0","0","0","0","0","0","0","0","0","69" +"29496","-1","","","","","Enchanted Clefthoof Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20965","104829","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","30","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29497","-1","","","","","Enchanted Clefthoof Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31564","157824","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","0","0","0","0","30","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29498","-1","","","","","Blastguard Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42245","211226","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","249","0","40","0","0","0","0","0","254","0","0","0","4","4","4","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","0","0","0","0","0","0","0","0","0","69" +"29499","-1","","","","","Blastguard Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31803","159015","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","196","0","30","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29500","-1","","","","","Blastguard Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21281","106407","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","1585","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","30","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","27","0","0","0","0","0","0","0","0","0","69" +"29501","-1","","","","","Sha'naar Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29502","-1","","","","","Cobrascale Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40447","202237","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","42","18","0","0","0","0","0","0","0","70" +"29503","-1","","","","","Cobrascale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27064","135324","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","32","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","20","33","0","0","0","0","0","0","0","70" +"29504","-1","","","","","Windscale Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40743","203715","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","21","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","18","16","0","0","0","0","0","0","0","70" +"29505","-1","","","","","Hood of Primal Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40893","204465","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","31","34","0","0","0","0","0","0","0","70" +"29506","-1","","","","","Gloves of the Living Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27361","136809","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","22","16","0","0","0","0","0","0","0","70" +"29507","-1","","","","","Windslayer Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27461","137309","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","18","25","17","0","0","0","0","0","0","70" +"29508","-1","","","","","Living Dragonscale Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49606","248032","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","19","0","0","0","0","0","0","0","0","70" +"29509","-1","","","","","Windstrike Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33190","165954","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","18","25","17","0","0","0","0","0","0","70" +"29510","-1","","","","","Netherdrake Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46388","231940","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","31","26","16","0","0","0","0","0","0","0","70" +"29511","-1","","","","","Netherdrake Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31045","155226","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","24","23","0","0","0","0","0","0","0","70" +"29512","-1","","","","","Earthen Netherscale Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46950","234753","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","511","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","27","18","0","0","0","0","0","0","0","70" +"29513","-1","","","","","Staff of the Dreghood Elders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29514","-1","","","","","Thick Netherscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62803","314018","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","36","25","0","0","0","0","0","0","0","70" +"29515","-1","","","","","Ebon Netherscale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","71156","355784","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2877","0","0","0","0","616","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","32","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","25","23","0","0","0","0","0","0","0","70" +"29516","-1","","","","","Ebon Netherscale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","34352","171764","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2893","0","0","0","0","616","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","32","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","21","14","0","0","0","0","0","0","0","70" +"29517","-1","","","","","Ebon Netherscale Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","31758","158791","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","75","0","0","0","0","616","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","325","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","32","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","25","8","0","0","0","0","0","0","0","70" +"29518","-1","","","","","Amani Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","936","4682","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","21","-1","0","0","18","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","16" +"29519","-1","","","","","Netherstrike Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","72225","361125","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2889","0","0","0","0","617","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","846","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","32","34","23","0","0","0","0","0","0","0","70" +"29520","-1","","","","","Netherstrike Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","34870","174351","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2875","0","0","0","0","617","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","16","10","17","0","0","0","0","0","0","0","70" +"29521","-1","","","","","Netherstrike Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","35000","175002","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","617","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","13","13","0","0","0","0","0","0","0","70" +"29522","-1","","","","","Windhawk Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","60864","304321","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","618","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","29","29","28","19","0","0","0","0","0","0","70" +"29523","-1","","","","","Windhawk Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","29381","146905","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3016","0","0","0","0","618","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","7","22","16","0","0","0","0","0","0","70" +"29524","-1","","","","","Windhawk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","29489","147448","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2900","0","0","0","0","618","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","20","17","12","0","0","0","0","0","0","70" +"29525","-1","","","","","Primalstrike Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","61534","307674","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","38","39","12","0","0","0","0","0","0","0","70" +"29526","-1","","","","","Primalstrike Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","30483","152418","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","32","0","0","0","0","0","0","0","0","70" +"29527","-1","","","","","Primalstrike Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","30589","152946","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","21","0","0","0","0","0","0","0","0","70" +"29528","-1","","","","","Drums of War","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29529","-1","","","","","Drums of Battle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29530","-1","","","","","Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29531","-1","","","","","Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29532","-1","","","","","Drums of Panic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29533","-1","","","","","Cobrahide Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"29534","-1","","","","","Clefthide Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","60" +"29535","-1","","","","","Nethercobra Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40000","160000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29536","-1","","","","","Nethercleft Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","40000","160000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29537","-1","","","","","Monster - Staff, Blood Elf A02 Red - High Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29538","-1","","","","","Monster - Sword - 2H Crystal C03 - Ethereal, Ethereum (Black Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29539","-1","","","","","Cobra Scales","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29540","-1","","","","","Reinforced Mining Bag","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29541","-1","","","","","Monster - Axe, Horde Double Blade A02 (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29542","-1","","","","","Monster - Sword, Horde Sword B04 Black (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29543","-1","","","","","Monster - Mace, Ethereal (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29544","-1","","","","","Monster - Staff, Ethereal (White) (Red Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29545","-1","","","","","Sunfury Military Briefing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29546","-1","","","","","Sunfury Arcane Briefing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29547","-1","","","","","Wind Scales","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29548","-1","","","","","Nether Dragonscales","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29549","-1","Teaches Prayer of Fortitude (Rank 3).","","","","Codex: Prayer of Fortitude III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"29550","-1","Teaches Conjure Water (Rank 9).","","","","Tome of Conjure Water IX","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"29551","-1","","","","","Severed Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","705","2820","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29552","-1","","","","","Broken Rock Flayer Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","605","2420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29553","-1","","","","","Basilisk Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29554","-1","","","","","Encrusted Basilisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29555","-1","","","","","Glimmering Basilisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29556","-1","","","","","Basilisk Venom Sac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29557","-1","","","","","Rainbow Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29558","-1","","","","","Charged Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29559","-1","","","","","Vibrant Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29560","-1","","","","","Electrified Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29561","-1","","","","","Dragon Femur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29562","-1","","","","","Dragon's Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29563","-1","","","","","Dragon's Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29564","-1","","","","","Dragon's Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29565","-1","","","","","Raptor Liver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29566","-1","","","","","Raptor Blood Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29567","-1","","","","","Raptor Talon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29568","-1","","","","","Raptor War Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29569","-1","","","","","Strong Junkbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1665","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29570","-1","","","","","A Gnome Effigy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29571","-1","","","","","A Steamy Romance Novel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2986","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29572","-1","","","","","Aboriginal Carvings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29573","-1","","","","","Embalming Fluid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29574","-1","","","","","Mummified Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","80","320","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29575","-1","Trick it is...","","","","A Jack-o'-Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29576","-1","Just keep swimming...","","","","Shark Bait","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29577","-1","","","","","Troll Keepsake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","87","350","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29578","-1","","","","","Crystalized Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29579","-1","","","","","Crystalized Stone Chips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29580","-1","","","","","Crystal Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29581","-1","","","","","Strange Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29582","-1","","","","","Ethereum Data Cell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29583","-1","","","","","Sinister Scimitar","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1462","7313","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","20","-1","0","0","20","0","0","0","0","38","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","3","0","0","0","0","0","0","0","0","0","15" +"29584","-1","","","","","Throat Piercers","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150","600","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","19","-1","0","0","12","0","0","0","0","19","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","2","0","0","0","0","0","0","0","0","0","14" +"29585","-1","","","","","Legion Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"29586","-1","The head of the leader of Forge Base Mageddon.","","","","Head of Forgefiend Razorsaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29588","-1","A coded message.","","","","Burning Legion Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10395","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"29589","-1","A coded message.","","","","Burning Legion Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29590","-1","A coded message.","","","","Burning Legion Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10393","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","58" +"29591","-1","Coated in some type of slick substance.","","","","Prepared Ethereum Wrapping","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29592","-1","","","","","Insignia of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29593","-1","","","","","Insignia of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"29594","-1","","","","","Knight-Lieutenant's Mail Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","14","12","13","0","0","0","0","0","0","0","60" +"29595","-1","","","","","Knight-Lieutenant's Mail Vices","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","66","64","0","0","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","9","0","0","0","0","0","0","0","0","60" +"29596","-1","","","","","Knight-Captain's Mail Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","398","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","18","17","0","0","0","0","0","0","0","60" +"29597","-1","","","","","Knight-Captain's Mail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","68","64","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","18","17","0","0","0","0","0","0","0","0","60" +"29598","-1","","","","","Lieutenant Commander's Mail Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","337","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","24","16","6","0","0","0","0","0","0","0","60" +"29599","-1","","","","","Lieutenant Commander's Mail Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","718","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","16","10","5","0","0","0","0","0","0","0","60" +"29600","-1","","","","","Blood Guard's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","13","12","0","0","0","0","0","0","0","0","60" +"29601","-1","","","","","Blood Guard's Lamellar Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","66","2","0","0","0","0","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","12","12","0","0","0","0","0","0","0","60" +"29602","-1","","","","","Legionnaire's Lamellar Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","18","17","12","0","0","0","0","0","0","0","60" +"29603","-1","","","","","Legionnaire's Lamellar Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","68","2","0","0","0","0","0","0","0","0","0","0","0","0","618","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","17","18","12","0","0","0","0","0","0","0","60" +"29604","-1","","","","","Champion's Lamellar Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","598","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","19","18","12","0","0","0","0","0","0","0","60" +"29605","-1","","","","","Champion's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","697","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","14","14","8","0","0","0","0","0","0","0","60" +"29606","-1","","","","","Marshal's Mail Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","18","17","0","0","0","0","0","0","0","0","60" +"29607","-1","","","","","Marshal's Mail Gauntlets","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","323","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","17","0","0","0","0","0","0","0","60" +"29608","-1","","","","","Marshal's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","71","64","0","0","0","0","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","23","23","0","0","0","0","0","0","0","0","60" +"29609","-1","","","","","Field Marshal's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","20","9","0","0","0","0","0","0","0","60" +"29610","-1","","","","","Field Marshal's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","19","11","0","0","0","0","0","0","0","60" +"29611","-1","","","","","Field Marshal's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","717","0","0","0","0","0","0","0","74","64","0","0","0","0","0","0","0","0","0","0","0","0","403","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","18","17","9","0","0","0","0","0","0","60" +"29612","-1","","","","","General's Lamellar Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","630","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","15","15","0","0","0","0","0","0","0","60" +"29613","-1","","","","","General's Lamellar Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","17","16","0","0","0","0","0","0","0","60" +"29614","-1","","","","","General's Lamellar Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","71","2","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","20","20","17","0","0","0","0","0","0","0","60" +"29615","-1","","","","","Warlord's Lamellar Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","21","20","0","0","0","0","0","0","0","60" +"29616","-1","","","","","Warlord's Lamellar Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","21","20","0","0","0","0","0","0","0","60" +"29617","-1","","","","","Warlord's Lamellar Pauldrons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","698","0","0","0","0","0","0","0","74","2","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","16","16","15","0","0","0","0","0","0","0","60" +"29618","-1","","","","","Protectorate Disruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29619","-1","","","","","Monster - Mace, Draenei A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29620","-1","","","","","Monster - Axe, 2H Draenei B01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29621","-1","","","","","Monster - Axe, 2H Draenei B01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29622","-1","","","","","Monster - Axe, 2H Draenei B01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29623","-1","","","","","Monster - Axe, 2H Draenei B01 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29624","-1","","","","","First Half of Socrethar's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29625","-1","","","","","Second Half of Socrethar's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29626","-1","","","","","Monster - Gun, Draenei A01","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"29627","-1","","","","","Monster - Gun, Draenei A01 Gold","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"29628","-1","","","","","Monster - Gun, Draenei A01 Olive","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"29629","-1","","","","","Monster - Gun, Draenei A01 Purple","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","4","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"29630","-1","","","","","Monster - Mace, Draenei A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29631","-1","","","","","Monster - Mace, Draenei A01 Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29632","-1","","","","","Monster - Mace, Draenei A01 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29633","-1","","","","","Monster - Mace, Draenei A02 Magenta","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29634","-1","","","","","Monster - Mace, Draenei A02 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29635","-1","","","","","Monster - Shield, Draenei A02 Black","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29636","-1","","","","","Monster - Shield, Draenei A02 Orange","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29637","-1","","","","","Monster - Shield, Draenei A02 Red","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29638","-1","","","","","Monster - Shield, Draenei A01 Blue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29639","-1","","","","","Monster - Shield, Draenei A01 Brown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29640","-1","","","","","Monster - Shield, Draenei A01 Gold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29641","-1","","","","","Monster - Shield, Draenei A01 Orange","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29642","-1","","","","","Monster - Shield, Draenei A01 Purple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29643","-1","","","","","Monster - Sword2H, Draenei A02 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29644","-1","","","","","Monster - Sword2H, Draenei A02 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29645","-1","","","","","Monster - Sword2H, Draenei A02 Rusty","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29646","-1","","","","","Monster - Sword2H, Draenei A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29647","-1","","","","","Monster - Sword2H, Draenei A01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29648","-1","","","","","Monster - Sword2H, Draenei A01 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29649","-1","","","","","Monster - Sword2H, Draenei A01 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29650","-1","","","","","Monster - Sword2H, Draenei A01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29651","-1","","","","","Monster - Axe, 2H Draenei A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29652","-1","","","","","Monster - Axe, 2H Draenei A01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29653","-1","","","","","Monster - Axe, 2H Draenei A01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29654","-1","","","","","Monster - Axe, 2H Draenei A01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29655","-1","","","","","Monster - Axe, 2H Draenei C01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29656","-1","","","","","Monster - Axe, 2H Draenei C01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29657","-1","","","","","Monster - Axe, 2H Draenei C01 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29658","-1","","","","","Monster - Axe, 2H Draenei C01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29659","-1","","","","","Monster - Axe, 2H Draenei C01 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29660","-1","","","","","Monster - Axe, 2H Draenei D01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29661","-1","","","","","Monster - Axe, 2H Draenei D01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29662","-1","","","","","Monster - Axe, 2H Draenei D01 Pink","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29663","-1","","","","","Monster - Axe, 2H Draenei D01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29664","-1","Teaches you how to make a Reinforced Mining Bag.","","","","Pattern: Reinforced Mining Bag","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","325","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29665","-1","","","","","Monster - Axe, 2H Draenei D01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29666","-1","","","","","Monster - Sword, Draenei A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29667","-1","","","","","Monster - Sword, Draenei A01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29668","-1","","","","","Monster - Sword, Draenei A01 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29669","-1","Teaches you how to make a Shadow Armor Kit.","","","","Pattern: Shadow Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29670","-1","","","","","Monster - Sword, Draenei A01 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29671","-1","","","","","Monster - Sword, Draenei A01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29672","-1","Teaches you how to make a Flame Armor Kit.","","","","Pattern: Flame Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29673","-1","Teaches you how to make a Frost Armor Kit.","","","","Pattern: Frost Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29674","-1","Teaches you how to make a Nature Armor Kit.","","","","Pattern: Nature Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29675","-1","Teaches you how to make an Arcane Armor Kit.","","","","Pattern: Arcane Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29676","-1","","","","","Monster - Staff, Draenei A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29677","-1","Teaches you how to make Enchanted Felscale Leggings.","","","","Pattern: Enchanted Felscale Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29678","-1","","","","","Monster - Staff, Draenei A01 Brown","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29679","-1","","","","","Monster - Staff, Draenei A01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29680","-1","","","","","Monster - Staff, Draenei A01 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29681","-1","","","","","Monster - Staff, Draenei A01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29682","-1","Teaches you how to make Enchanted Felscale Gloves.","","","","Pattern: Enchanted Felscale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29683","-1","","","","","Monster - Staff, Draenei A02 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29684","-1","Teaches you how to make Enchanted Felscale Boots.","","","","Pattern: Enchanted Felscale Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29685","-1","","","","","Monster - Staff, Draenei A02 Copper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29686","-1","","","","","Monster - Staff, Draenei A02 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29687","-1","","","","","Monster - Staff, Draenei A02 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29688","-1","","","","","Monster - Staff, Draenei A02 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29689","-1","Teaches you how to make Flamescale Leggings.","","","","Pattern: Flamescale Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29690","-1","","","","","Monster - Staff, Draenei A03","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29691","-1","Teaches you how to make Flamescale Boots.","","","","Pattern: Flamescale Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29692","-1","","","","","Monster - Staff, Draenei A03 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29693","-1","Teaches you how to make a Flamescale Belt.","","","","Pattern: Flamescale Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29694","-1","","","","","Monster - Staff, Draenei A03 Dirt","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29695","-1","","","","","Monster - Staff, Draenei A03 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29696","-1","","","","","Monster - Staff, Draenei A03 Pink","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29697","-1","","","","","Monster - Staff, Draenei A03 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29698","-1","Teaches you how to make Enchanted Clefthoof Leggings.","","","","Pattern: Enchanted Clefthoof Leggings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29699","-1","","","","","Socrethar's Teleportation Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29700","-1","Teaches you how to make Enchanted Clefthoof Gloves.","","","","Pattern: Enchanted Clefthoof Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29701","-1","Teaches you how to make Enchanted Clefthoof Boots.","","","","Pattern: Enchanted Clefthoof Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29702","-1","Teaches you how to make Blastguard Pants.","","","","Pattern: Blastguard Pants","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29703","-1","Teaches you how to make Blastguard Boots.","","","","Pattern: Blastguard Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29704","-1","Teaches you how to make a Blastguard Belt.","","","","Pattern: Blastguard Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29705","-1","","","","","Monster - Axe, Draenei B01 Amethyst","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29706","-1","","","","","Monster - Axe, Draenei B01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29707","-1","","","","","Monster - Axe, Draenei B01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29708","-1","","","","","Monster - Axe, Draenei B01 Ice","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29709","-1","","","","","Monster - Axe, Draenei C01 Amethyst","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29710","-1","","","","","Monster - Axe, Draenei C01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29711","-1","","","","","Monster - Axe, Draenei C01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29712","-1","","","","","Monster - Axe, Draenei C01 Ice","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29713","-1","Teaches you how to make Drums of Panic.","","","","Pattern: Drums of Panic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","370","165","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29714","-1","Teaches you how to make Drums of Restoration.","","","","Pattern: Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29715","-1","","","","","Monster - Staff, Blood Elf A01 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"29716","-1","","","","","Monster - Staff, Blood Elf A01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"29717","-1","Teaches you how to make Drums of Battle.","","","","Pattern: Drums of Battle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29718","-1","Teaches you how to make Drums of Speed.","","","","Pattern: Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","165","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29719","-1","Teaches you how to make Cobrahide Leg Armor.","","","","Pattern: Cobrahide Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","335","165","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29720","-1","Teaches you how to make Clefthide Leg Armor.","","","","Pattern: Clefthide Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","335","165","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29721","-1","Teaches you how to make Nethercleft Leg Armor.","","","","Pattern: Nethercleft Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29722","-1","Teaches you how to make Nethercobra Leg Armor.","","","","Pattern: Nethercobra Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29723","-1","Teaches you how to make a Cobrascale Hood.","","","","Pattern: Cobrascale Hood","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29724","-1","Teaches you how to make Cobrascale Gloves.","","","","Pattern: Cobrascale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29725","-1","Teaches you how to make a Windscale Hood.","","","","Pattern: Windscale Hood","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29726","-1","Teaches you how to make a Hood of Primal Life.","","","","Pattern: Hood of Primal Life","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29727","-1","Teaches you how to make Gloves of the Living Touch.","","","","Pattern: Gloves of the Living Touch","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29728","-1","Teaches you how to make Windslayer Wraps.","","","","Pattern: Windslayer Wraps","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29729","-1","Teaches you how to make a Living Dragonscale Helm.","","","","Pattern: Living Dragonscale Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29730","-1","Teaches you how to make Earthen Netherscale Boots.","","","","Pattern: Earthen Netherscale Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29731","-1","Teaches you how to make Windstrike Gloves.","","","","Pattern: Windstrike Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29732","-1","Teaches you how to make a Netherdrake Helm.","","","","Pattern: Netherdrake Helm","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29733","-1","Teaches you how to make Netherdrake Gloves.","","","","Pattern: Netherdrake Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29734","-1","Teaches you how to make a Thick Netherscale Breastplate.","","","","Pattern: Thick Netherscale Breastplate","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"29735","-1","This shimmering dust is used as a material for Aldor inscriptions.","","","","Holy Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29736","-1","These glowing runes are used in Scryer inscriptions.","","","","Arcane Rune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29737","-1","Drink to feel the surge.","","","","Navuud's Concoction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29738","-1","Bubbling with ooze.","","","","Vial of Void Horror Ooze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10413","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"29739","-1","The Scryers in the Seer's Library would be interested in this item.","","","","Arcane Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29740","-1","Only the Aldor in the Temple of Unending Light could cleanse the demonic taint that permeates this item.","","","","Fel Armament","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29741","-1","","","","","Diagnostic Results","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29742","-1","","","","","The Warden's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29743","1101","","","","","Purple Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"29744","1101","","","","","Gray Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"29745","1101","","","","","Great Blue Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29746","1101","","","","","Great Green Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29747","1101","","","","","Great Purple Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"29748","-1","","","","","Monster - Staff, Blooming Druid Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109783","548916","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","32","33","22","0","0","0","0","0","0","70" +"29749","-1","","","","","Farahlon Lasher Cutting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29750","-1","","","","","Ethereum Stasis Chamber Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29751","-1","","","","","Talbuk Horn Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29753","0","","","","","Chestguard of the Fallen Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29754","0","","","","","Chestguard of the Fallen Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29755","0","","","","","Chestguard of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29756","0","","","","","Gloves of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29757","0","","","","","Gloves of the Fallen Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29758","0","","","","","Gloves of the Fallen Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29759","0","","","","","Helm of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29760","0","","","","","Helm of the Fallen Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29761","0","","","","","Helm of the Fallen Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29762","0","","","","","Pauldrons of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29763","0","","","","","Pauldrons of the Fallen Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29764","0","","","","","Pauldrons of the Fallen Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29765","0","","","","","Leggings of the Fallen Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29766","0","","","","","Leggings of the Fallen Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29767","0","","","","","Leggings of the Fallen Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29768","-1","","","","","Hulking Hydra Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29769","-1","A print out containing the results of diagnostic tests conducted at the Eco-Dome Sutheron Generator","","","","Diagnostic Results","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29770","-1","","","","","Experimental Repair Apparatus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29771","-1","","","","","Kirin'Var Journeyman's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14706","73530","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","12","0","0","0","0","0","0","0","0","0" +"29772","-1","","","","","Kirin'Var Scout's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18446","92232","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","20","20","19","12","0","0","0","0","0","0","0" +"29773","-1","","","","","Battle-Mage's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33322","166610","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","7","5","0","0","0","0","0","0","0","0","0","0","0","1","2","0","26","25","18","0","0","0","0","0","0","0","0" +"29774","-1","","","","","Kirin'Var Defender's Chausses","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52018","260091","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","895","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","27","19","0","0","0","0","0","0","0","0" +"29775","-1","","","","","Pendant of the Battle-Mage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","11","0","0","0","0","0","0","0","0","0" +"29776","-1","","","","","Core of Ar'kelos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29777","-1","","","","","Cloak of the Valiant Defender","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19896","99482","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","21","15","0","0","0","0","0","0","0","0","0" +"29778","-1","It will take multiple uses of this device to destroy the void conduit.","","","","Phase Disruptor","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"29779","-1","","","","","Rejuvenating Scepter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50120","250602","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","108","-1","0","0","100","0","0","0","0","186","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","0" +"29780","-1","","","","","Kirin Tor Apprentice's Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32469","162347","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","18","7","6","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","26","14","19","17","0","0","0","0","0","0","0" +"29781","-1","","","","","Lifewarden's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39728","198640","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","270","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","27","28","0","0","0","0","0","0","0","0" +"29782","-1","","","","","Coif of the Wicked","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35891","179456","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","490","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","26","0","0","0","0","0","0","0","0","0" +"29783","-1","","","","","Legguards of the Resolute Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57552","287763","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","31","23","0","0","0","0","0","0","0","0" +"29784","-1","","","","","Harmony's Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17922","89614","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","21","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","18","0","0","0","0","0","0","0","0","0" +"29785","-1","","","","","Crimson Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21586","107932","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","13","18","0","0","0","0","0","0","0","0","0" +"29786","-1","","","","","Kirin'Var Defender's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37841","189209","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","4","31","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","18","21","14","0","0","0","0","0","0","0" +"29787","-1","","","","","Master Smith's Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72472","362364","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","111","-1","0","0","108","0","0","0","0","202","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","7","0","0","0","0","0","0","0","0","0" +"29788","-1","","","","","Finely Wrought Scale Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43641","218206","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","24","0","0","0","0","0","0","0","0","0" +"29789","-1","","","","","Andrethan's Masterwork","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51098","255494","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","1023","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","7","4","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","27","34","18","0","0","0","0","0","0","0" +"29790","-1","","","","","Demolition Charges","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29791","-1","","","","","Reinforced Heaume","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38522","192613","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","12","7","3","4","0","0","0","0","0","0","0","0","0","0","1","2","0","27","39","17","17","0","0","0","0","0","0","0" +"29792","-1","","","","","Dawnstrike's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22133","110668","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","9","0","0","0","0","0","0","0","0","0" +"29793","-1","","","","","Signet of the Violet Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","11","2","0","5","7","0","0","0","0","0","0","0","0","0" +"29794","-1","","","","","Strength of the Violet Tower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35498","141992","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","21","18","9","0","0","0","0","0","0","0","0" +"29795","-1","","","","","Burning Legion Gate Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29796","-1","","","","","Socrethar's Teleportation Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29797","-1","","","","","Orders From Kael'thas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29798","-1","","","","","Dome Generator Segment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29799","-1","","","","","Lifeless Tendril","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29800","-1","","","","","Evil Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"29801","-1","","","","","Ripfang Lynx Pelt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29802","-1","","","","","Barbscale Crocolisk Skin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29803","-1","","","","","Diagnostic Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29804","-1","Made from 100% genuine leather.","","","","Wrangler's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26881","134409","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","13","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","28","11","0","0","0","0","0","0","0","0","0" +"29805","-1","","","","","Socrethar's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29806","-1","","","","","Cowpoke's Riding Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21660","108304","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","18","0","0","0","0","0","0","0","0","0" +"29807","-1","","","","","Engraved Cattleman's Buckle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25507","127539","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","31","32","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","21","30","10","15","0","0","0","0","0","0","0" +"29808","-1","","","","","Shimmering Azure Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21818","109092","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","16","0","0","0","0","0","0","0","0","0" +"29809","-1","","","","","Monster - Axe, Horde Massive Spiked (2H as 1H)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29810","-1","","","","","Dragon Crested Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27467","137337","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","0","0","0","0","0","0","0","0","0","0" +"29811","-1","","","","","Goldenlink Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22052","110264","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","12","0","0","0","0","0","0","0","0","0" +"29812","-1","","","","","Blued Steel Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25967","129839","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","28","16","12","0","0","0","0","0","0","0","0" +"29813","-1","","","","","Cloak of Woven Energy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25562","127813","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","1503","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","13","6","6","3","0","0","0","0","0","0","0" +"29814","-1","","","","","Celestial Jewel Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27999","111996","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","0","0","0","0","0","0","0","0","0","0" +"29815","-1","","","","","Chain of Glowing Tendrils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27999","111996","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","18","17","25","0","0","0","0","0","0","0","0" +"29816","-1","","","","","Monster - Sword, Consortium Phase Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29817","-1","Sweet dreams, bucky!","","","","Talbuk Tagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29818","-1","","","","","Energy Field Modulator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29819","-1","","","","","Monster - Sword - 2H Crystal C03 - Ethereal, Ethereum (White Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29820","-1","","","","","Monster - Sword - 2H (1H) Crystal C03 - Ethereal, Protectorate (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29821","-1","","","","","Monster - Shield, Ethereal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29822","-1","","","","","Fragment of Dimensius","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29823","-1","","","","","Rogue 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-88","-118","-55","-119","0","0","0","0","0","0","70" +"29824","-1","","","","","Rogue 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","8","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-34","10","10","-74","0","0","0","0","0","0","70" +"29825","-1","","","","","Rogue 105 Epic Test Dagger 1800","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109458","547293","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","32767","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29826","-1","","","","","Rogue 105 Epic Test Dagger 1300","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","103041","515207","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","105","32767","0","0","86","0","0","0","0","130","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29827","-1","","","","","Rogue 150 Epic Test Dagger 1300","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","142824","714122","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","150","32767","0","0","109","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29828","-1","","","","","Rogue 150 Epic Test Dagger 1800","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","142824","714122","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","150","32767","0","0","151","0","0","0","0","228","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29829","-1","","","","","Warrior 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","3","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","17","-31","-91","-78","89","0","0","0","0","0","70" +"29830","-1","","","","","Warrior 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","1","0","0","0","0","0","0","0","0","0","0","0","0","1874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","3","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-68","124","-37","-20","118","0","0","0","0","0","70" +"29831","-1","","","","","Warrior 105 Test 1H Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103041","515207","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","0","0","158","0","0","0","0","293","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29832","-1","","","","","Warrior 150 Test 1H Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142824","714122","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","150","-1","0","0","199","0","0","0","0","370","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29833","-1","","","","","Warrior 105 Test 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128801","644009","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29834","-1","","","","","Warrior 150 Test 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","178530","892653","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","150","-1","0","0","395","0","0","0","0","593","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29835","-1","","","","","Paladin 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","5","32","3","31","-1","-1","-1","-1","0","0","0","0","5","4","0","67","67","47","127","71","33","0","0","0","0","70" +"29836","-1","","","","","Paladin 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","32767","0","0","0","0","0","0","0","0","0","0","0","0","1874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","5","32","3","31","-1","-1","-1","-1","0","0","0","0","5","4","0","-84","-84","-111","-88","94","44","0","0","0","0","70" +"29837","-1","","","","","QAEnchant Weapon +81 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29838","-1","","","","","QAEnchant Weapon Battlemaster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29839","-1","","","","","QAEnchant Weapon Mongoose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29840","-1","","","","","QAEnchant Weapon Soulfrost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29841","-1","","","","","QAEnchant Weapon Sunfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29842","-1","","","","","QAEnchant Weapon +40 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29843","-1","","","","","QAEnchant Weapon +30 Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29844","-1","","","","","QAEnchant Weapon +7 Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29845","-1","","","","","QAEnchant Weapon +20 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29846","-1","","","","","QAEnchant 2H Weapon +35 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29847","-1","","","","","QAEnchant 2H Weapon +70 Attack Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5500","22000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29848","-1","","","","","QAEnchant Shield +5 Resistances","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29849","-1","","","","","QAEnchant Shield +18 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29850","-1","","","","","QAEnchant Shield +12 Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29851","-1","","","","","QAEnchant Shield +15 Block Value","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29852","-1","","","","","QAEnchant Boots +9 Stamina & +8% Speed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29853","-1","","","","","QAEnchant Boots +6 Agility & +8% Speed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29854","-1","","","","","QAEnchant Boots +5 Snare Resist & +10 Hit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29855","-1","","","","","Mage 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42184","210922","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","90","98","-75","89","-73","0","0","0","0","0","70" +"29856","-1","","","","","QAEnchant Boots +12 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29857","-1","","","","","QAEnchant Boots +12 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29858","-1","","","","","QAEnchant Cloak +15 Shadow Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29859","-1","","","","","QAEnchant Cloak +15 Arcane Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29860","-1","","","","","QAEnchant Cloak +12 Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29861","-1","","","","","QAEnchant Cloak +20 Spell Penetration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29862","-1","","","","","QAEnchant Gloves +35 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29863","-1","","","","","QAEnchant Gloves +20 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29864","-1","","","","","QAEnchant Gloves +15 Spell Hit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29865","-1","","","","","Mage 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57129","285649","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","32767","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","-54","-44","-17","118","-14","0","0","0","0","0","70" +"29866","-1","","","","","QAEnchant Gloves +10 Spell Crit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29867","-1","","","","","QAEnchant Gloves +15 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29868","-1","","","","","QAEnchant Gloves +26 Attack Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29869","-1","","","","","QAEnchant Chest +15 Resilience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29870","-1","","","","","QAEnchant Chest +6 Mana5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29871","-1","","","","","QAEnchant Chest +15 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29872","-1","","","","","QAEnchant Chest +6 Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29873","-1","","","","","QAEnchant Chest +150 Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29874","-1","","","","","QAEnchant Chest +150 Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29875","-1","","","","","Warlock 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","-97","100","81","-58","0","0","0","0","0","0","70" +"29876","-1","","","","","Warlock 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","37","-41","108","7","0","0","0","0","0","0","70" +"29877","-1","","","","","Indalamar's Trinket of Pwnage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29878","-1","","","","","Priest 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","93","85","-17","66","127","0","0","0","0","0","70" +"29879","-1","","","","","Priest 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","16","0","0","0","0","0","0","0","0","0","0","0","0","251","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","-51","-61","60","88","-88","0","0","0","0","0","70" +"29880","-1","","","","","Paladin 105 Test 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128801","644009","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","105","-1","0","0","260","0","0","0","0","391","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29881","-1","","","","","Paladin 150 Test 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","178530","892653","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","150","-1","0","0","329","0","0","0","0","494","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29882","-1","","","","","Hunter 105 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61824","309124","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","32","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","34","54","31","81","0","0","0","0","0","70" +"29883","-1","","","","","Hunter 150 Epic Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85694","428473","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","32767","0","0","0","0","0","0","0","0","0","0","0","0","1049","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","32","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-128","-128","-101","40","108","0","0","0","0","0","70" +"29884","-1","","","","","Hunter 105 Epic Test Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77281","386405","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","105","-1","0","0","142","0","0","0","0","265","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","70" +"29885","-1","","","","","Hunter 120 Epic Test Bullets","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","25","10000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","120","-1","0","0","46","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","62" +"29886","-1","","","","","Hunter 105 Epic Ammo Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29887","-1","","","","","Hunter 150 Epic Ammo Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29888","-1","","","","","Hunter 150 Epic Test Gun","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107118","535591","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","150","-1","0","0","180","0","0","0","0","335","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","70" +"29889","-1","","","","","Hunter 105/150 Epic Test Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","103","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","18","5","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","68" +"29890","-1","","","","","Druid 105 Epic Feral Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","32","31","-1","-1","-1","0","0","0","0","5","4","0","-18","26","105","-68","-80","94","31","0","0","0","70" +"29891","-1","","","","","Druid 150 Epic Feral Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","1024","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","6","32","31","-1","-1","-1","0","0","0","0","5","4","0","-115","118","-34","-7","-24","125","40","0","0","0","70" +"29892","-1","","","","","Druid 105 Epic Moonkin Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","47","62","-47","38","-114","0","0","0","0","0","70" +"29893","-1","","","","","Druid 150 Epic Moonkin Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","1024","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-111","-91","20","50","-67","0","0","0","0","0","70" +"29894","-1","","","","","Paladin 105 Command Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-34","-64","70","-93","0","0","0","0","0","0","70" +"29895","-1","","","","","Paladin 150 Command Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","2","0","0","0","0","0","0","0","0","0","0","0","0","1874","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","121","-2","-81","43","0","0","0","0","0","0","70" +"29896","-1","","","","","Shaman 105 Test Melee Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","31","32","3","-1","-1","-1","-1","0","0","0","0","5","4","0","-64","90","34","41","-108","89","0","0","0","0","70" +"29897","-1","","","","","Shaman 150 Test Melee Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","64","0","0","0","0","0","0","0","0","0","0","0","0","1049","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","31","32","3","-1","-1","-1","-1","0","0","0","0","5","4","0","80","-54","-128","54","-61","118","0","0","0","0","70" +"29898","-1","","","","","Shaman 105 Epic Nuker Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61824","309124","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","105","95","-45","79","0","0","0","0","0","0","70" +"29899","-1","","","","","Shaman 150 Epic Nuker Test Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85694","428473","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","64","0","0","0","0","0","0","0","0","0","0","0","0","1049","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","-34","-47","23","104","0","0","0","0","0","0","70" +"29900","-1","","","","","Monster - Axe, Horde C04 Fire","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"29901","-1","","","","","Blue Moth Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29902","-1","","","","","Red Moth Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29903","-1","","","","","Yellow Moth Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29904","-1","","","","","White Moth Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29905","-1","Contains a small amount of water from the Well of Eternity.","","","","Kael's Vial Remnant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29906","-1","Contains a small amount of water from the Well of Eternity.","","","","Vashj's Vial Remnant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29907","-1","","","","","Monster - Magic Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"29908","-1","","","","","Rage Reaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63676","318384","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","81","-1","0","0","167","0","0","0","0","251","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29909","-1","","","","","Screaming Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51139","255699","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","81","-1","0","0","56","0","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","7","12","0","0","0","0","0","0","0","0","0" +"29910","-1","","","","","The Staff of Twin Worlds","0.4","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64172","320864","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","81","-1","0","0","158","0","0","0","0","237","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","21","19","13","0","0","0","0","0","0","0","0" +"29911","-1","","","","","Agamaggan's Quill","0.4","0","-3.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64414","322071","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","81","-1","0","0","158","0","0","0","0","237","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","30","19","19","0","0","0","0","0","0","0","0" +"29912","-1","","","","","The Final Code","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29913","-1","","","","","Foe Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53349","266745","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","81","-1","0","0","81","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","7","12","0","0","0","0","0","0","0","0" +"29914","-1","","","","","Hellfire Skiver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53547","267736","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","81","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","22","2","0","7","9","5","0","0","0","0","0","0","0","0" +"29915","-1","","","","","Desolation Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40305","201526","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","81","-1","0","0","82","0","0","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","7","6","0","0","0","0","0","0","0","0","0","0","0","26","2","0","6","6","4","0","0","0","0","0","0","0","0" +"29916","-1","","","","","Ironstar Repeater","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40454","202270","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","81","-1","0","0","97","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","6","9","0","0","0","0","0","0","0","0","0" +"29917","-1","","","","","Landslide Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34647","173238","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","2428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","11","12","0","0","0","0","0","0","0","0","0" +"29918","-1","","","","","Mindstorm Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26216","131084","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","13","23","0","0","0","0","0","0","0","70" +"29919","-1","","","","","Adamantine Kite Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34898","174491","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","2428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","8","24","6","0","0","0","0","0","0","0","0" +"29920","-1","","","","","Phoenix-Ring of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","0","0","0","0","0","0","0","0","0","70" +"29921","-1","","","","","Fire Crest Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79504","397521","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","900","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","34","34","0","0","0","0","0","0","0","70" +"29922","-1","","","","","Band of Al'ar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","23","0","0","0","0","0","0","0","0","70" +"29923","-1","","","","","Talisman of the Sun King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","24","27","0","0","0","0","0","0","0","0","70" +"29924","-1","","","","","Netherbane","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139688","698441","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","134","-1","0","0","175","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","25","21","0","0","0","0","0","0","0","0","70" +"29925","-1","","","","","Phoenix-Wing Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40322","201613","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","37","22","27","0","0","0","0","0","0","0","70" +"29926","-1","","","","","Whispering Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22362","111813","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29927","-1","","","","","Shadowbrim Travel Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16831","84157","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29928","-1","","","","","Wanderer's Stitched Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20942","104714","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29929","-1","","","","","Raging Spirit Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26277","131388","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29930","-1","","","","","Nature-Stitched Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26374","131871","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29931","-1","","","","","Phantasmal Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19855","99275","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","19","12","0","0","0","0","0","0","0","0" +"29932","-1","","","","","Arcane Ringed Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31887","159435","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","19","0","0","0","0","0","0","0","0","0" +"29933","-1","","","","","Arcane Ringed Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32006","160030","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","19","0","0","0","0","0","0","0","0","0" +"29934","-1","","","","","Helm of Affinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24091","120457","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","19","0","0","0","0","0","0","0","0","0" +"29935","-1","","","","","Fire Scarred Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37614","188072","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","19","13","0","0","0","0","0","0","0","0" +"29936","-1","","","","","Skyfire Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37753","188766","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","19","13","0","0","0","0","0","0","0","0" +"29937","-1","","","","","Helm of Infinite Visions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28362","141811","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","616","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","19","13","0","0","0","0","0","0","0","0" +"29938","-1","","","","","Battle Seeker Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27162","135812","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","197","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29939","-1","","","","","Flayer-Hide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27261","136308","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29940","-1","","","","","Veteran's Skullcap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20520","102602","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29941","-1","","","","","Scale Brand Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32948","164743","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","427","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29942","-1","","","","","Battle Scarred Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33067","165339","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29943","-1","","","","","Legionnaire's Studded Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24890","124450","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","347","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","30","0","0","0","0","0","0","0","0","0" +"29944","-1","","","","","Protectorate Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36094","180472","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","19","30","19","0","0","0","0","0","0","0","0" +"29945","-1","","","","","Magistrate's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36229","181148","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","664","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","30","19","0","0","0","0","0","0","0","0" +"29946","-1","","","","","Invader's Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27224","136121","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","81","-1","0","0","0","0","0","0","0","0","0","0","0","0","616","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","19","30","19","0","0","0","0","0","0","0","0" +"29947","-1","","","","","Gloves of the Searing Grip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31454","157274","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","37","18","0","0","0","0","0","0","0","70" +"29948","-1","","","","","Claw of the Phoenix","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131728","658642","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","134","-1","0","0","101","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","30","0","0","0","0","0","0","0","0","70" +"29949","-1","","","","","Arcanite Steam-Pistol","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99160","495803","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","134","-1","0","0","177","0","0","0","0","329","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","20","19","0","0","0","0","0","0","0","0","70" +"29950","-1","","","","","Greaves of the Bloodwarder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89069","445349","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1406","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","49","46","31","0","0","0","0","0","0","0","70" +"29951","-1","","","","","Star-Strider Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57730","288650","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","13","18","0","0","0","0","0","0","0","70" +"29952","-1","","","","","Rina's Bough","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29953","-1","","","","","Golden Dragonhawk Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29954","-1","","","","","Spiritbinder's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20744","103721","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","15","11","11","0","0","0","0","0","0","0","0" +"29955","-1","","","","","Mana Infused Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17350","86754","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","8","7","0","0","0","0","0","0","0","0" +"29956","-1","","","","","Red Dragonhawk Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29957","-1","","","","","Silver Dragonhawk Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29958","-1","","","","","Blue Dragonhawk Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29959","-1","","","","","Spiritualist's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24788","123942","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","1535","0","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","27","17","0","0","0","0","0","0","0","0","0" +"29960","-1","Still flying...","","","","Captured Firefly","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29961","-1","","","","","Enraged Earthen Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29962","-1","","","","","Heartrazor","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128733","643667","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","134","32767","0","0","121","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","20","30","0","0","0","0","0","0","0","0","70" +"29963","-1","","","","","Enraged Fiery Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"29964","-1","","","","","Blackstorm Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","15290","76453","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","7","3","0","13","20","10","0","0","0","0","0","0","0","45" +"29965","-1","","","","","Girdle of the Righteous Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43947","219735","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","33","27","0","0","0","0","0","0","0","70" +"29966","-1","","","","","Vambraces of Ending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31332","156660","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","24","0","0","0","0","0","0","0","0","70" +"29967","-1","","","","","Nether Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33680","168401","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","28","17","0","0","0","0","0","0","0","0","0" +"29968","-1","","","","","Nether Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40565","202829","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","28","17","0","0","0","0","0","0","0","0","0" +"29969","-1","","","","","Sparky's Discarded Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35561","177809","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","810","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","29","28","25","0","0","0","0","0","0","0","0" +"29970","-1","","","","","Wildfeather Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","15642","78211","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","11","12","16","0","0","0","0","0","0","0","45" +"29971","-1","","","","","Dragonstrike Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","18839","94196","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","12","11","18","0","0","0","0","0","0","0","45" +"29972","-1","","","","","Trousers of the Astromancer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51269","256347","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","36","22","0","0","0","0","0","0","0","70" +"29973","-1","","","","","Primalstorm Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10658","38564","192824","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","27","17","0","0","0","0","0","0","0","65" +"29974","-1","","","","","Living Crystal Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10660","38708","193542","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","17","25","0","0","0","0","0","0","0","65" +"29975","-1","","","","","Golden Dragonstrike Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","10656","46617","233088","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","17","25","0","0","0","0","0","0","0","65" +"29976","-1","","","","","Worldstorm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40050","200254","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","22","15","0","0","0","0","0","0","0","70" +"29977","-1","","","","","Star-Soul Breeches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53592","267963","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","27","52","0","0","0","0","0","0","0","70" +"29978","-1","","","","","Consortium Combatant's Robes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30242","151214","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","21","10","16","0","0","0","0","0","0","0","0" +"29979","-1","","","","","Netherstorm Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28450","142254","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","16","21","10","0","0","0","0","0","0","0","0" +"29980","-1","","","","","Midrealm Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53296","266483","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","39","21","16","10","0","0","0","0","0","0","0" +"29981","-1","","","","","Ethereum Life-Staff","0.4","0","-55.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160275","801379","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","134","-1","0","0","321","0","0","0","0","483","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","52","44","62","0","0","0","0","0","0","0","70" +"29982","-1","","","","","Wand of the Forgotten Star","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","96539","482699","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","134","-1","0","0","186","0","0","0","0","346","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","18","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","11","14","0","0","0","0","0","0","0","0","70" +"29983","-1","","","","","Fel-Steel Warhelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64912","324564","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1306","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","46","46","44","30","0","0","0","0","0","0","70" +"29984","-1","","","","","Girdle of Zaetar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31089","155447","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","23","24","0","0","0","0","0","0","0","70" +"29985","-1","","","","","Void Reaver Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74902","374510","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","33","24","0","0","0","0","0","0","0","70" +"29986","-1","","","","","Cowl of the Grand Engineer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37590","187953","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","175","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","27","16","35","0","0","0","0","0","0","70" +"29987","-1","","","","","Gauntlets of the Sun King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26958","134794","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","29","20","28","0","0","0","0","0","0","70" +"29988","-1","","","","","The Nexus Key","0.4","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","172526","862632","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","141","-1","0","0","334","0","0","0","0","501","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","76","52","51","0","0","0","0","0","0","0","70" +"29989","-1","","","","","Sunshower Light Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40745","203729","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","24","20","0","0","0","0","0","0","0","70" +"29990","-1","","","","","Crown of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40895","204478","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","38","49","0","0","0","0","0","0","0","70" +"29991","-1","","","","","Sunhawk Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82099","410495","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","847","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","31","0","0","0","0","0","0","0","0","70" +"29992","-1","","","","","Royal Cloak of the Sunstriders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42305","211527","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","27","22","0","0","0","0","0","0","0","0","70" +"29993","-1","","","","","Twinblade of the Phoenix","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","180462","902312","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","3600","0","0","0","141","32767","0","0","375","0","0","0","0","564","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","1","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","53","37","0","0","0","0","0","0","0","0","70" +"29994","-1","","","","","Thalassian Wildercloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42609","213045","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","28","28","0","0","0","0","0","0","0","0","70" +"29995","-1","","","","","Leggings of Murderous Intent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71271","356357","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","31","37","0","0","0","0","0","0","0","70" +"29996","-1","","","","","Rod of the Sun King","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","145925","729627","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","141","32767","0","0","189","0","0","0","0","352","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"29997","-1","This ring was formerly held by Sylvanas Windrunner....","","","","Band of the Ranger-General","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","28","18","0","0","0","0","0","0","0","70" +"29998","-1","","","","","Royal Gauntlets of Silvermoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50711","253559","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","57","24","32","0","0","0","0","0","0","0","70" +"29999","-1","","","","","After Hours Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27088","135443","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","28","16","12","7","0","0","0","0","0","0","0" +"30000","-1","","","","","Mixologist's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14498","72492","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","12","7","0","0","0","0","0","0","0","0" +"30001","-1","","","","","Doc's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19742","98713","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","12","0","0","0","0","0","0","0","0","0" +"30002","-1","","","","","Boot's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34618","173091","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","14","7","32","4","0","0","0","0","0","0","0","0","0","0","8","2","0","16","12","7","28","0","0","0","0","0","0","0" +"30003","-1","","","","","Gloves of the Nether-Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17412","87062","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","12","16","8","0","0","0","0","0","0","0","0" +"30004","-1","","","","","Landing Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31603","158017","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","12","8","0","0","0","0","0","0","0","0" +"30005","-1","","","","","Overmaster's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36774","183874","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","31","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","8","12","30","0","0","0","0","0","0","0" +"30006","-1","","","","","Wind Trader's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","3","31","0","0","0","0","0","0","0","0","0","0","11","2","0","34","12","6","6","0","0","0","0","0","0","0" +"30007","-1","","","","","The Darkener's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","15","13","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","14","23","40","27","0","0","0","0","0","0","0" +"30008","-1","","","","","Pendant of the Lost Ages","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","27","17","0","0","0","0","0","0","0","0","70" +"30009","-1","","","","","The Burning Crusader","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105395","526977","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","109","-1","0","0","251","0","0","0","0","378","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","31","37","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","27","27","26","17","0","0","0","0","0","0" +"30010","-1","","","","","Fleshling Simulation Staff","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105783","528915","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","109","-1","0","0","167","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","31","37","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","27","27","26","17","0","0","0","0","0","0" +"30011","-1","","","","","Ameer's Impulse Taser","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106170","530853","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","109","-1","0","0","167","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","21","7","6","18","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","27","27","26","17","0","0","0","0","0","0" +"30012","-1","","","","","Ameer's Judgement","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106558","532791","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","109","-1","0","0","167","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","40","27","27","17","0","0","0","0","0","0","0" +"30013","-1","","","","","Twin-Bladed Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","85548","427741","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","109","-1","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","7","37","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","11","12","7","0","0","0","0","0","0","0" +"30014","-1","","","","","X-52 Pilot's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41860","209304","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","31","46","0","0","0","0","0","0","0","0","0" +"30015","-1","","","","","The Sun King's Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","22","16","24","0","0","0","0","0","0","0","0" +"30016","-1","","","","","X-52 Technician's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44182","220914","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","875","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","5","12","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","36","38","16","16","0","0","0","0","0","0","0" +"30017","-1","","","","","Telonicus's Pendant of Mayhem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","27","26","0","0","0","0","0","0","0","0","0" +"30018","-1","","","","","Lord Sanguinar's Claim","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","25","0","0","0","0","0","0","0","0","0" +"30019","-1","","","","","Area 52 Defender's Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51135","255676","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","24","21","30","0","0","0","0","0","0","0","0" +"30020","-1","","","","","Fire-Cord of the Magus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27073","135365","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","23","30","0","0","0","0","0","0","0","70" +"30021","-1","","","","","Wildfury Greatstaff","0.4","0","-55.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","160225","801126","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","134","32767","0","0","301","0","0","0","0","452","0","0","0","0","500","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","75","54","0","0","0","0","0","0","0","0","70" +"30022","-1","","","","","Pendant of the Perilous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","32","24","23","0","0","0","0","0","0","0","70" +"30023","-1","","","","","Totem of the Maelstrom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","37156","185780","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30024","-1","","","","","Mantle of the Elven Kings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38324","191620","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","18","17","25","18","0","0","0","0","0","70" +"30025","-1","","","","","Serpentshrine Shuriken","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","134","-1","0","0","97","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","14","12","20","0","0","0","0","0","0","0","70" +"30026","-1","","","","","Bands of the Celestial Archer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38611","193056","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","24","17","0","0","0","0","0","0","0","70" +"30027","-1","","","","","Boots of Courage Unending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67691","338459","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","31","19","0","0","0","0","0","0","0","70" +"30028","-1","","","","","Seventh Ring of the Tirisfalen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","15","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","37","24","17","0","0","0","0","0","0","0","70" +"30029","-1","","","","","Bark-Gloves of Ancient Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32531","162659","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","25","33","0","0","0","0","0","0","0","70" +"30030","-1","","","","","Girdle of Fallen Stars","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39181","195908","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","26","18","0","0","0","0","0","0","0","0","70" +"30031","-1","","","","","Red Havoc Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68688","343441","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","32","25","0","0","0","0","0","0","0","70" +"30032","-1","","","","","Red Belt of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46305","231528","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","2","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","41","21","24","14","0","0","0","0","0","0","70" +"30033","-1","","","","","Boots of the Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69183","345915","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","48","22","26","17","0","0","0","0","0","0","70" +"30034","-1","","","","","Belt of the Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46642","233212","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","2","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","48","13","19","0","0","0","0","0","0","0","70" +"30035","-1","","","","","Boots of the Long Road","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39891","199459","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","26","22","0","0","0","0","0","0","0","70" +"30036","-1","","","","","Belt of the Long Road","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26690","133451","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","13","18","33","0","0","0","0","0","0","0","70" +"30037","-1","","","","","Boots of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40179","200895","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","25","25","18","0","0","0","0","0","0","70" +"30038","-1","","","","","Belt of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26881","134408","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","2","0","21","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","30","23","0","0","0","0","0","0","0","0","70" +"30039","-1","","","","","Boots of Utter Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50577","252889","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","32","0","0","0","0","0","0","0","70" +"30040","-1","","","","","Belt of Deep Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31458","157290","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","2","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","32","14","18","0","0","0","0","0","0","0","70" +"30041","-1","","","","","Boots of Natural Grace","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47366","236833","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","26","37","13","14","0","0","0","0","0","70" +"30042","-1","","","","","Belt of Natural Power","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31697","158487","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","2","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","20","38","12","0","0","0","0","0","0","70" +"30043","-1","","","","","Hurricane Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57519","287597","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","26","26","0","0","0","0","0","0","0","70" +"30044","-1","","","","","Monsoon Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38320","191601","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","2","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","24","21","0","0","0","0","0","0","0","70" +"30045","-1","","","","","Boots of the Crimson Hawk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57952","289760","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","28","27","19","0","0","0","0","0","0","70" +"30046","-1","","","","","Belt of the Black Eagle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38607","193037","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","2","0","7","5","32","3","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","23","17","17","0","0","0","0","0","0","70" +"30047","-1","","","","","Blackfathom Warbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38747","193735","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","23","0","0","0","0","0","0","0","0","70" +"30048","-1","","","","","Brighthelm of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67929","339645","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1306","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","44","0","0","0","0","0","0","0","0","70" +"30049","-1","","","","","Fathomstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","16","12","23","0","0","0","0","0","0","0","70" +"30050","-1","","","","","Boots of the Shifting Nightmare","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33564","167823","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","41","22","18","0","0","0","0","0","0","0","70" +"30051","-1","","","","","Idol of the Crescent Goddess","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","39317","196587","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30052","-1","","","","","Ring of Lethality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","19","19","0","0","0","0","0","0","0","70" +"30053","-1","","","","","Pauldrons of the Wardancer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69176","345881","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1206","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","21","29","0","0","0","0","0","0","0","70" +"30054","-1","","","","","Ranger-General's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79488","397444","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","900","0","0","0","0","0","0","0","254","0","0","0","4","2","3","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","19","30","14","0","0","0","0","0","0","70" +"30055","-1","","","","","Shoulderpads of the Stranger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49859","249299","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","3149","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","7","32","37","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","28","16","10","0","0","0","0","0","0","70" +"30056","-1","","","","","Robe of Hateful Echoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49567","247836","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","34","36","25","0","0","0","0","0","0","0","70" +"30057","-1","","","","","Bracers of Eradication","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43787","218938","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","6","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","12","24","17","0","0","0","0","0","0","70" +"30058","-1","","","","","Mallet of the Tides","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","130230","651154","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","134","32767","0","0","115","0","0","0","0","214","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","34","16","14","0","0","0","0","0","0","0","70" +"30059","-1","","","","","Choker of Animalistic Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","23","24","0","0","0","0","0","0","0","0","70" +"30060","-1","","","","","Boots of Effortless Striking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47182","235912","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","42","41","0","0","0","0","0","0","0","0","70" +"30061","-1","","","","","Ancestral Ring of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","32","21","30","0","0","0","0","0","0","0","70" +"30062","-1","","","","","Grove-Bands of Remulos","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31691","158455","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","14","21","0","0","0","0","0","0","0","70" +"30063","-1","","","","","Libram of Absolute Truth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","38172","190864","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30064","-1","","","","","Cord of Screaming Terrors","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25544","127721","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","34","15","24","0","0","0","0","0","0","0","70" +"30065","-1","","","","","Glowing Breastplate of Truth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89730","448654","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1607","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","40","42","0","0","0","0","0","0","0","70" +"30066","-1","","","","","Tempest-Strider Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58156","290784","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","26","0","0","0","0","0","0","0","0","70" +"30067","-1","","","","","Velvet Boots of the Guardian","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33564","167823","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","21","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","15","24","21","0","0","0","0","0","0","70" +"30068","-1","","","","","Girdle of the Tidal Call","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38886","194434","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","35","30","20","33","0","0","0","0","0","0","70" +"30069","-1","","","","","Earthforged Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","22391","111955","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","7","3","12","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","16","24","10","10","0","0","0","0","0","0","47" +"30070","-1","","","","","Windforged Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","19263","96315","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","14","10","7","0","0","0","0","0","0","0","47" +"30071","-1","","","","","Light Earthforged Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","32222","161113","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","52","-1","0","0","58","0","0","0","0","108","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","0","0","0","0","0","0","0","0","0","47" +"30072","-1","","","","","Light Skyforged Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","32340","161701","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","60","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","13","0","0","0","0","0","0","0","0","0","47" +"30073","-1","","","","","Light Emberforged Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9787","33297","166488","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","63","0","0","0","0","117","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","47" +"30074","-1","","","","","Heavy Earthforged Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","51597","257985","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","1018","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","4","7","3","12","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","36","11","11","0","0","0","0","0","0","65" +"30075","-1","","","","","Gnarled Chestpiece of the Ancients","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61713","308567","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","32","34","0","0","0","0","0","0","0","70" +"30076","-1","","","","","Stormforged Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","9788","44570","222851","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","8","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","25","11","11","0","0","0","0","0","0","0","65" +"30077","-1","","","","","Windforged Rapier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","74563","372815","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","100","-1","0","0","72","0","0","0","0","134","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","24","0","0","0","0","0","0","0","0","0","65" +"30078","-1","","","","","Monster - Mace, Basic Metal Hammer (Fiery)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30079","-1","","","","","Illidari Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37598","187992","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","23","16","0","0","0","0","0","0","0","70" +"30080","-1","","","","","Luminescent Rod of the Naaru","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98401","492008","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","134","-1","0","0","186","0","0","0","0","346","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","14","0","0","0","0","0","0","0","0","0","70" +"30081","-1","","","","","Warboots of Obliteration","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66166","330834","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","44","29","31","0","0","0","0","0","0","0","70" +"30082","-1","","","","","Talon of Azshara","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","132200","661003","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","134","-1","0","0","182","0","0","0","0","339","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","20","0","0","0","0","0","0","0","0","70" +"30083","-1","","","","","Ring of Sundered Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","45","18","25","0","0","0","0","0","0","0","70" +"30084","-1","","","","","Pauldrons of the Argent Sentinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66912","334561","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","32","0","0","0","0","0","0","0","0","70" +"30085","-1","","","","","Mantle of the Tireless Tracker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57934","289673","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","675","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","22","23","0","0","0","0","0","0","0","70" +"30086","-1","","","","","Stoneforged Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17039","96412","482061","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","100","-1","0","0","207","0","0","0","0","311","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","40","35","0","0","0","0","0","0","0","0","65" +"30087","-1","","","","","Stormforged Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","77416","387084","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","100","-1","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","24","0","0","0","0","0","0","0","0","0","65" +"30088","-1","","","","","Skyforged Great Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17041","97120","485600","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","100","-1","0","0","213","0","0","0","0","321","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","35","0","0","0","0","0","0","0","0","0","65" +"30089","-1","","","","","Lavaforged Warhammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","80037","400189","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","100","-1","0","0","105","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","65" +"30090","-1","","","","","World Breaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","174677","873389","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","134","-1","0","0","371","0","0","0","0","558","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","50","51","0","0","0","0","0","0","0","0","70" +"30091","-1","","","","","True-Aim Stalker Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40338","201690","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","5","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","24","18","0","0","0","0","0","0","0","70" +"30092","-1","","","","","Orca-Hide Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50597","252986","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","27","19","0","0","0","0","0","0","0","70" +"30093","-1","","","","","Great Earthforged Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","17040","101472","507362","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","100","-1","0","0","220","0","0","0","0","330","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","60","0","0","0","0","0","0","0","0","0","65" +"30094","-1","","","","","Totem of Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30095","-1","","","","","Fang of the Leviathan","0.6","0","-55.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","128719","643599","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","134","-1","0","0","121","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","28","20","21","0","0","0","0","0","0","0","70" +"30096","-1","","","","","Girdle of the Invulnerable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43605","218027","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","14","7","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","37","22","19","0","0","0","0","0","0","70" +"30097","-1","","","","","Coral-Barbed Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56209","281049","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","675","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","33","0","0","0","0","0","0","0","0","70" +"30098","-1","","","","","Razor-Scale Battlecloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37451","187255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","33","23","22","0","0","0","0","0","0","0","70" +"30099","-1","","","","","Frayed Tether of the Drowned","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","45","24","18","0","0","0","0","0","0","0","70" +"30100","-1","","","","","Soul-Strider Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37734","188671","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","20","19","33","0","0","0","0","0","0","0","70" +"30101","-1","","","","","Bloodsea Brigand's Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63129","315649","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","36","27","0","0","0","0","0","0","0","70" +"30102","-1","","","","","Krakken-Heart Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95073","475369","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","1535","0","0","0","0","0","0","0","0","0","0","0","0","1728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","61","43","42","30","0","0","0","0","0","0","70" +"30103","-1","","","","","Fang of Vashj","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","139053","695266","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","141","32767","0","0","144","0","0","0","0","217","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","19","21","0","0","0","0","0","0","0","0","70" +"30104","-1","","","","","Cobra-Lash Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61847","309239","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","665","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","25","25","0","0","0","0","0","0","0","70" +"30105","-1","","","","","Serpent Spine Longbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107885","539425","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","141","-1","0","0","217","0","0","0","0","327","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","17","16","0","0","0","0","0","0","0","0","70" +"30106","-1","","","","","Belt of One-Hundred Deaths","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35382","176913","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","3","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","25","25","0","0","0","0","0","0","0","70" +"30107","-1","","","","","Vestments of the Sea-Witch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56812","284060","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","28","28","27","31","0","0","0","0","0","0","70" +"30108","-1","","","","","Lightfathom Scepter","0.6","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","145402","727011","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","141","32767","0","0","133","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","28","0","0","0","0","0","0","0","0","70" +"30109","-1","","","","","Ring of Endless Coils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","22","0","0","0","0","0","0","0","0","70" +"30110","-1","","","","","Coral Band of the Revived","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","14","27","21","0","0","0","0","0","0","0","70" +"30111","-1","","","","","Runetotem's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54025","270127","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","31","22","32","0","0","0","0","0","0","0","70" +"30112","-1","","","","","Glorious Gauntlets of Crestfall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50892","254461","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","138","32767","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","26","28","0","0","0","0","0","0","0","70" +"30113","-1","","","","","Destroyer Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","656","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","1","0","0","1","0","4","3","7","12","13","31","-1","-1","-1","-1","0","0","0","0","5","4","0","25","26","57","27","24","24","0","0","0","0","70" +"30114","-1","","","","","Destroyer Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","16","44","25","23","0","0","0","0","0","70" +"30115","-1","","","","","Destroyer Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","656","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","1","0","0","1","0","4","3","7","12","13","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","28","48","30","33","0","0","0","0","0","70" +"30116","-1","","","","","Destroyer Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","656","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1459","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","18","28","60","39","32","0","0","0","0","0","70" +"30117","-1","","","","","Destroyer Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","3017","0","0","0","0","656","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","13","21","44","29","0","0","0","0","0","0","70" +"30118","-1","","","","","Destroyer Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2927","0","0","0","0","657","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","3","4","2","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","50","48","33","15","0","0","0","0","0","0","70" +"30119","-1","","","","","Destroyer Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","657","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","44","46","30","0","0","0","0","0","0","0","70" +"30120","-1","","","","","Destroyer Battle-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2927","0","0","0","0","657","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","47","45","36","21","0","0","0","0","0","0","70" +"30121","-1","","","","","Destroyer Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2885","0","0","0","0","657","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1459","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","57","32","22","0","0","0","0","0","0","70" +"30122","-1","","","","","Destroyer Shoulderblades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","657","0","0","0","0","0","0","0","133","1","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","4","7","31","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","38","18","20","0","0","0","0","0","0","70" +"30123","-1","","","","","Crystalforge Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2932","0","0","0","0","628","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","1","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","55","27","28","0","0","0","0","0","0","0","70" +"30124","-1","","","","","Crystalforge Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","21","27","22","0","0","0","0","0","0","70" +"30125","-1","","","","","Crystalforge Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","628","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","28","28","19","0","0","0","0","0","0","70" +"30126","-1","","","","","Crystalforge Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","628","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1459","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","27","35","25","0","0","0","0","0","0","70" +"30127","-1","","","","","Crystalforge Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","628","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","1","0","0","1","0","7","5","12","14","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","26","26","19","0","0","0","0","0","0","70" +"30128","-1","","","","","Monster - Gun, Techno","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","1","-1","0","0","4","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"30129","-1","","","","","Crystalforge Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2927","0","0","0","0","629","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","1","0","0","1","0","4","7","5","31","32","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","56","40","20","23","21","0","0","0","0","0","70" +"30130","-1","","","","","Crystalforge Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","629","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","44","35","23","25","0","0","0","0","0","0","70" +"30131","-1","","","","","Crystalforge War-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2877","0","0","0","0","629","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","1","0","0","1","0","4","7","5","3","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","56","46","23","24","0","0","0","0","0","0","70" +"30132","-1","","","","","Crystalforge Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","3015","0","0","0","0","629","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1459","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","7","5","3","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","59","42","23","27","21","0","0","0","0","0","70" +"30133","-1","","","","","Crystalforge Shoulderbraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","629","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","34","15","16","0","0","0","0","0","0","70" +"30134","-1","","","","","Crystalforge Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2872","0","0","0","0","627","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","36","31","0","0","0","0","0","0","0","70" +"30135","-1","","","","","Crystalforge Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","627","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","25","24","0","0","0","0","0","0","0","70" +"30136","-1","","","","","Crystalforge Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","627","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","28","24","0","0","0","0","0","0","0","70" +"30137","-1","","","","","Crystalforge Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","3152","0","0","0","0","627","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1459","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","32","0","0","0","0","0","0","0","70" +"30138","-1","","","","","Crystalforge Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","627","0","0","0","0","0","0","0","133","2","0","0","0","0","0","0","0","0","0","0","0","0","1251","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","26","16","0","0","0","0","0","0","0","70" +"30139","-1","","","","","Rift Stalker Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2877","0","0","0","0","652","0","0","0","0","0","0","0","133","4","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","40","19","19","0","0","0","0","0","0","70" +"30140","-1","","","","","Rift Stalker Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","133","4","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","29","20","19","0","0","0","0","0","0","70" +"30141","-1","","","","","Rift Stalker Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2868","0","0","0","0","652","0","0","0","0","0","0","0","133","4","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","36","25","0","0","0","0","0","0","0","70" +"30142","-1","","","","","Rift Stalker Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2902","0","0","0","0","652","0","0","0","0","0","0","0","133","4","0","0","0","0","0","0","0","0","0","0","0","0","817","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","39","26","18","0","0","0","0","0","0","70" +"30143","-1","","","","","Rift Stalker Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2895","0","0","0","0","652","0","0","0","0","0","0","0","133","4","0","0","0","0","0","0","0","0","0","0","0","0","700","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","26","24","13","0","0","0","0","0","0","70" +"30144","-1","","","","","Deathmantle Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","622","0","0","0","0","0","0","0","133","8","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","57","17","0","0","0","0","0","0","0","70" +"30145","-1","","","","","Deathmantle Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","622","0","0","0","0","0","0","0","133","8","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","34","24","0","0","0","0","0","0","0","70" +"30146","-1","","","","","Deathmantle Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2936","0","0","0","0","622","0","0","0","0","0","0","0","133","8","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","48","25","0","0","0","0","0","0","0","70" +"30147","-1","","","","","Monster - Sword, 1H Blood Elf A03 Red - Red Flame","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30148","-1","","","","","Deathmantle Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3114","0","0","0","0","622","0","0","0","0","0","0","0","133","8","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","47","49","26","0","0","0","0","0","0","0","70" +"30149","-1","","","","","Deathmantle Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2887","0","0","0","0","622","0","0","0","0","0","0","0","133","8","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","37","13","0","0","0","0","0","0","0","70" +"30150","-1","","","","","Vestments of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2872","0","0","0","0","665","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","25","39","0","0","0","0","0","0","0","70" +"30151","-1","","","","","Gloves of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","665","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","27","29","0","0","0","0","0","0","0","70" +"30152","-1","","","","","Cowl of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2865","0","0","0","0","665","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","28","31","0","0","0","0","0","0","0","70" +"30153","-1","","","","","Breeches of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3151","0","0","0","0","665","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","27","0","0","0","0","0","0","0","70" +"30154","-1","","","","","Mantle of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2974","0","0","0","0","665","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","26","20","0","0","0","0","0","0","0","70" +"30155","-1","Chewy and Delicious!","","","","Clam Bar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"30156","-1","Teaches you how to deep fry a Clam Bar! Is there anything quite this tasty?","","","","Recipe: Clam Bar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30157","-1","","","","","Cursed Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30158","-1","","","","","Morkh's Shattered Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30159","-1","","","","","Shroud of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","666","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","35","20","19","0","0","0","0","0","0","70" +"30160","-1","","","","","Handguards of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","666","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","27","25","18","0","0","0","0","0","0","70" +"30161","-1","","","","","Hood of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","666","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","36","24","24","0","0","0","0","0","0","70" +"30162","-1","","","","","Leggings of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3153","0","0","0","0","666","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","26","25","18","0","0","0","0","0","70" +"30163","-1","","","","","Wings of the Avatar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","666","0","0","0","0","0","0","0","133","16","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","24","24","17","0","0","0","0","0","0","70" +"30164","-1","","","","","Cataclysm Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2872","0","0","0","0","634","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","33","24","0","0","0","0","0","0","0","70" +"30165","-1","","","","","Cataclysm Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","34","17","0","0","0","0","0","0","0","70" +"30166","-1","","","","","Cataclysm Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2865","0","0","0","0","634","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","37","21","0","0","0","0","0","0","0","70" +"30167","-1","","","","","Cataclysm Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3151","0","0","0","0","634","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","817","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","47","0","0","0","0","0","0","0","0","70" +"30168","-1","","","","","Cataclysm Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2974","0","0","0","0","634","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","700","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","28","0","0","0","0","0","0","0","0","70" +"30169","-1","","","","","Cataclysm Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2889","0","0","0","0","635","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","28","24","0","0","0","0","0","0","0","70" +"30170","-1","","","","","Cataclysm Handgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","635","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","27","19","19","0","0","0","0","0","0","70" +"30171","-1","","","","","Cataclysm Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2908","0","0","0","0","635","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","28","18","26","0","0","0","0","0","0","70" +"30172","-1","","","","","Cataclysm Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3153","0","0","0","0","635","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","817","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","46","24","14","0","0","0","0","0","0","70" +"30173","-1","","","","","Cataclysm Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2875","0","0","0","0","635","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","700","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","19","24","0","0","0","0","0","0","0","70" +"30174","-1","Gathered from the diaphanous wings of the dragonling, it tingles with magic.","","","","Dust of the Fey Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30175","-1","","","","","Gor'drek's Ointment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30176","-1","","","","","Shaman 150 Epic Test 1H Axe 2200","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147301","736509","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","150","32767","0","0","185","0","0","0","0","279","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30177","-1","Now how are you supposed to carry this back to Thunderlord Stronghold?","","","","Stronglimb Deeproot's Trunk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30178","-1","","","","","Monster - Axe, 2H Kor'kron Defender (A01 Purple)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30179","-1","","","","","Monster - Mace, 2H Kor'kron Defender (PvP Red)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30180","-1","","","","","Monster - Axe, 1H Kor'kron Defender (D02 Wolf)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30181","-1","","","","","Monster - Sword, 1H Kor'kron Defender (PvP Horde 2H)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30182","-1","","","","","Monster - Polearm, 2H Kor'kron Defender (PvP Horde 2H)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30183","-1","","","","","Nether Vortex","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30184","-1","Dire must mean big.","","","","Thunderlord Dire Wolf Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30185","-1","","","","","Cataclysm Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2952","0","0","0","0","636","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","5","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","41","32","46","28","19","0","0","0","0","0","70" +"30186","-1","","","","","Gladiator's Felweave Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","615","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","42","14","21","12","0","0","0","0","0","0","70" +"30187","-1","","","","","Gladiator's Felweave Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","615","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","15","18","30","0","0","0","0","0","0","70" +"30188","-1","","","","","Gladiator's Felweave Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","14","21","21","0","0","0","0","0","0","70" +"30189","-1","","","","","Cataclysm Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","636","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","24","34","23","24","0","0","0","0","0","70" +"30190","-1","","","","","Cataclysm Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","636","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","41","32","46","23","21","0","0","0","0","0","70" +"30191","-1","","","","","QAEnchant Ring +2 Weapon Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30192","-1","","","","","Cataclysm Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3149","0","0","0","0","636","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","817","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","41","32","58","31","21","0","0","0","0","0","70" +"30193","-1","","","","","QAEnchant Ring +12 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30194","-1","","","","","Cataclysm Shoulderplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2887","0","0","0","0","636","0","0","0","0","0","0","0","133","64","0","0","0","0","0","0","0","0","0","0","0","0","700","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","37","21","22","0","0","0","0","0","0","70" +"30195","-1","","","","","QAEnchant Ring +20 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30196","-1","","","","","Robes of Tirisfal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","649","0","0","0","0","0","0","0","133","128","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","35","20","19","0","0","0","0","0","0","70" +"30197","-1","","","","","QAEnchant Ring +4 Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30198","-1","","","","","QAEnchant Cloak +7 Resistances","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30199","-1","","","","","QAEnchant Boots +4 Health & Mana5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30200","-1","","","","","Gladiator's Felweave Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","615","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","51","16","27","24","0","0","0","0","0","0","70" +"30201","-1","","","","","Gladiator's Felweave Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","123","256","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","25","28","30","0","0","0","0","0","0","70" +"30204","-1","","","","","Monster - Sword2H, Claymore Blue - Medium Blue Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30205","-1","","","","","Gloves of Tirisfal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","133","128","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","27","18","27","0","0","0","0","0","0","70" +"30206","-1","","","","","Cowl of Tirisfal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2908","0","0","0","0","649","0","0","0","0","0","0","0","133","128","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","36","24","24","0","0","0","0","0","0","70" +"30207","-1","","","","","Leggings of Tirisfal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2909","0","0","0","0","649","0","0","0","0","0","0","0","133","128","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","26","17","26","0","0","0","0","0","70" +"30208","-1","","","","","Monster - Glaive - Demonhunter Black (Red Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30209","-1","","","","","Monster - Glaive - Demonhunter Black Offhand (Red Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30210","-1","","","","","Mantle of Tirisfal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","649","0","0","0","0","0","0","0","133","128","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","24","24","17","0","0","0","0","0","0","70" +"30211","-1","","","","","Gloves of the Corruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","646","0","0","0","0","0","0","0","133","256","0","0","0","0","0","0","0","0","0","0","0","0","140","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","50","24","25","0","0","0","0","0","0","0","70" +"30212","-1","","","","","Hood of the Corruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","646","0","0","0","0","0","0","0","133","256","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","57","33","31","0","0","0","0","0","0","0","70" +"30213","-1","","","","","Leggings of the Corruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2925","0","0","0","0","646","0","0","0","0","0","0","0","133","256","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","32","32","24","0","0","0","0","0","0","70" +"30214","-1","","","","","Robe of the Corruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","646","0","0","0","0","0","0","0","133","256","0","0","0","0","0","0","0","0","0","0","0","0","223","0","0","0","0","0","0","0","254","0","0","0","3","3","3","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","48","33","23","0","0","0","0","0","0","0","70" +"30215","-1","","","","","Mantle of the Corruptor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","646","0","0","0","0","0","0","0","133","256","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","24","18","0","0","0","0","0","0","0","70" +"30216","-1","","","","","Nordrassil Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","642","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","4","4","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","33","31","0","0","0","0","0","0","0","70" +"30217","-1","","","","","Nordrassil Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","642","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","27","24","0","0","0","0","0","0","0","70" +"30218","-1","","","","","Junior Technician 3rd Grade Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26421","132105","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","16","10","0","0","0","0","0","0","0","0" +"30219","-1","","","","","Nordrassil Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","642","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","28","31","0","0","0","0","0","0","0","70" +"30220","-1","","","","","Nordrassil Life-Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3151","0","0","0","0","642","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","27","0","0","0","0","0","0","0","70" +"30221","-1","","","","","Nordrassil Life-Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2974","0","0","0","0","642","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","27","16","0","0","0","0","0","0","0","70" +"30222","-1","","","","","Nordrassil Chestplate","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","641","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","30","43","17","0","0","0","0","0","0","70" +"30223","-1","","","","","Nordrassil Handgrips","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","641","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","27","40","18","0","0","0","0","0","0","70" +"30224","-1","","","","","Junior Technician 3rd Grade Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21594","107970","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","16","10","0","0","0","0","0","0","0","0" +"30225","-1","","","","","Junior Technician 3rd Grade Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25427","127136","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","31","3","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","24","11","11","10","0","0","0","0","0","0","0" +"30226","-1","","","","","Alley's Recurve","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54369","271847","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","108","-1","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","3","31","0","0","0","0","0","0","0","0","0","0","0","15","2","2","10","7","7","0","0","0","0","0","0","0","0" +"30227","-1","","","","","Mark V's Throwing Star","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","0","0","61","0","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","25","2","0","7","10","7","0","0","0","0","0","0","0","0" +"30228","-1","","","","","Nordrassil Headdress","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2868","0","0","0","0","641","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","46","33","43","17","0","0","0","0","0","0","70" +"30229","-1","","","","","Nordrassil Feral-Kilt","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3149","0","0","0","0","641","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","37","42","17","18","0","0","0","0","0","70" +"30230","-1","","","","","Nordrassil Feral-Mantle","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2879","0","0","0","0","641","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","35","34","28","11","0","0","0","0","0","0","70" +"30231","-1","","","","","Nordrassil Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2864","0","0","0","0","643","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","419","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","8","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","32","25","17","19","0","0","0","0","0","70" +"30232","-1","","","","","Nordrassil Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","643","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","26","27","23","24","0","0","0","0","0","0","70" +"30233","-1","","","","","Nordrassil Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","643","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","35","28","24","25","10","0","0","0","0","0","70" +"30234","-1","","","","","Nordrassil Wrath-Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3153","0","0","0","0","643","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","26","26","0","0","0","0","0","0","70" +"30235","-1","","","","","Nordrassil Wrath-Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","643","0","0","0","0","0","0","0","133","1024","0","0","0","0","0","0","0","0","0","0","0","0","314","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","8","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","27","16","15","0","0","0","0","0","0","70" +"30236","-1","","","","","Chestguard of the Vanquished Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30237","-1","","","","","Chestguard of the Vanquished Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30238","-1","","","","","Chestguard of the Vanquished Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30239","-1","","","","","Gloves of the Vanquished Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30240","-1","","","","","Gloves of the Vanquished Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30241","-1","","","","","Gloves of the Vanquished Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30242","-1","","","","","Helm of the Vanquished Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30243","-1","","","","","Helm of the Vanquished Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30244","-1","","","","","Helm of the Vanquished Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30245","-1","","","","","Leggings of the Vanquished Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30246","-1","","","","","Leggings of the Vanquished Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30247","-1","","","","","Leggings of the Vanquished Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30248","-1","","","","","Pauldrons of the Vanquished Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","74","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30249","-1","","","","","Pauldrons of the Vanquished Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30250","-1","","","","","Pauldrons of the Vanquished Hero","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","388","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30251","-1","","","","","Rina's Diminution Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30252","-1","","","","","Unearthed Enkaat Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51684","258420","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","108","-1","0","0","121","0","0","0","0","226","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","6","7","0","0","0","0","0","0","0","0","0","0","0","26","2","0","7","7","10","0","0","0","0","0","0","0","0" +"30253","-1","","","","","Ethereal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14527","72639","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","30","12","0","0","0","0","0","0","0","0","0" +"30254","-1","","","","","Zephyrion's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25661","128306","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","0","0","0","0","0","0","0","0","0","0" +"30255","-1","","","","","Chestguard of the Stormspire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43902","219511","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","588","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","16","0","0","0","0","0","0","0","0","0" +"30256","-1","","","","","Pants of the Naaru","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33847","169236","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","22","27","0","0","0","0","0","0","0","0" +"30257","-1","","","","","Shattrath Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42459","212299","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","37","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","35","25","27","22","0","0","0","0","0","0","0" +"30258","-1","","","","","Chestplate of A'dal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59660","298304","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","1106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","32","31","7","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","35","25","22","27","0","0","0","0","0","0","0" +"30259","-1","You feel Voren'thal the Seer watch over you through this orb.","","","","Voren'thal's Presence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30260","-1","This package bears the personal insignia of Voren'thal the Seer.","","","","Voren'thal's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30261","-1","","","","","Monster - Mace2H, Draenei A01 Olive (Red Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30262","-1","","","","","Trep's Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26795","133975","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","13","15","0","0","0","0","0","0","0","0","0" +"30263","-1","","","","","Heavy-Duty Engineering Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32412","162064","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","384","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","13","15","0","0","0","0","0","0","0","0","0" +"30264","-1","","","","","Area 52 Engineering Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25332","126660","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","12","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","19","10","25","13","0","0","0","0","0","0","0" +"30265","-1","","","","","Zaxxis Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13760","68802","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","9","2","0","10","9","15","0","0","0","0","0","0","0","0" +"30266","-1","","","","","Zaxxis Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25899","129497","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","13","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","19","13","13","12","0","0","0","0","0","0","0" +"30267","-1","","","","","Zaxxis Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24403","122016","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","31","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","13","19","13","12","0","0","0","0","0","0","0" +"30268","-1","","","","","Heap Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27154","135774","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","18","0","0","0","0","0","0","0","0","0","0","7","2","0","14","25","21","15","0","0","0","0","0","0","0" +"30269","-1","","","","","Warp-Raider's Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25551","127755","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","31","13","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","25","24","21","15","14","0","0","0","0","0","0" +"30270","-1","","","","","Scavenged Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47874","239374","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","3","31","4","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","36","25","15","14","14","0","0","0","0","0","0" +"30271","-1","","","","","Midrealm Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21111","105557","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","1","2","0","23","18","34","0","0","0","0","0","0","0","0" +"30272","-1","","","","","Eco-Dome Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35317","176585","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","18","23","34","0","0","0","0","0","0","0","0" +"30273","-1","","","","","Duro Footgear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32042","160210","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","23","15","0","0","0","0","0","0","0","0","0" +"30274","-1","","","","","Papa's Armbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20823","104116","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","12","8","0","0","0","0","0","0","0","0","0" +"30275","-1","","","","","Mech Tech Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36505","182527","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","32","31","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","25","12","9","23","0","0","0","0","0","0","0" +"30276","-1","","","","","Wheeler Family Heirloom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","13","9","0","0","0","0","0","0","0","0","0" +"30277","-1","","","","","Ripfang Paw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71933","359666","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","111","-1","0","0","113","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","10","9","0","0","0","0","0","0","0","0","0" +"30278","-1","","","","","Pilfered Ethereal Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72196","360980","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","111","-1","0","0","66","0","0","0","0","124","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","12","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","16","15","6","0","0","0","0","0","0","0","0" +"30279","-1","","","","","Mama's Insurance","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54344","271720","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","111","-1","0","0","87","0","0","0","0","163","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","3","10","6","0","0","0","0","0","0","0","0","0" +"30280","-1","Teaches you how to sew a Belt of Blasting.","","","","Pattern: Belt of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30281","-1","Teaches you how to sew a Belt of the Long Road.","","","","Pattern: Belt of the Long Road","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30282","-1","Teaches you how to sew Boots of Blasting.","","","","Pattern: Boots of Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30283","-1","Teaches you how to sew Boots of the Long Road.","","","","Pattern: Boots of the Long Road","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30284","-1","","","","","Audi's Embroidered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20559","102798","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","9","12","23","0","0","0","0","0","0","0","0" +"30285","-1","","","","","B.O.O.M. Operative's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17198","85994","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","13","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","22","9","12","0","0","0","0","0","0","0","0" +"30286","-1","Fashioned from materials ""liberated"" from the Consortium.","","","","Otherworldly Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31214","156071","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","430","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","23","12","0","0","0","0","0","0","0","0" +"30287","-1","","","","","Mantle of Arcane Mastery","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20796","103981","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","19","16","18","0","0","0","0","0","0","0","0" +"30288","-1","","","","","Cenarion Warden's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17394","86970","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","160","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","31","7","0","0","0","0","0","0","0","0","0","0","0","10","2","0","19","16","18","0","0","0","0","0","0","0","0" +"30289","-1","","","","","Cenarion Warden's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20951","104758","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","19","18","0","0","0","0","0","0","0","0" +"30290","-1","","","","","Leggings of Concentrated Power","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35050","175254","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","23","34","23","0","0","0","0","0","0","0","0" +"30291","-1","","","","","Nexus-Guard's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36867","184336","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","767","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","15","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","27","17","17","0","0","0","0","0","0","0","0" +"30292","-1","Bury those cock-a-roaches...","","","","My Little Friend","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0" +"30293","-1","","","","","Heavenly Inspiration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","21612","86450","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30294","-1","","","","","Red Pointy Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20821","104105","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","15","0","0","0","0","0","0","0","0","0" +"30295","-1","","","","","Exotic Spiked Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31483","157415","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","28","16","0","0","0","0","0","0","0","0","0" +"30296","-1","","","","","Lost Chestplate of the Reverent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48936","244682","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","12","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","22","24","0","0","0","0","0","0","0","0" +"30297","-1","","","","","Circlet of the Starcaller","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31838","159193","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","5","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","17","18","27","18","0","0","0","0","0","0","0" +"30298","-1","","","","","Void Slayer's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52460","262301","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","21","31","0","0","0","0","0","0","0","0","0" +"30299","-1","","","","","Starcaller's Plated Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61414","307074","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","968","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","21","0","0","0","0","0","0","0","0","0","0","0","7","3","0","18","27","17","0","0","0","0","0","0","0","0" +"30300","-1","","","","","Dabiri's Enigma","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","30","0","0","0","0","0","0","0","0","0","0" +"30301","-1","Teaches you how to make a Belt of Natural Power.","","","","Pattern: Belt of Natural Power","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30302","-1","Teaches you how to make a Belt of Deep Shadow.","","","","Pattern: Belt of Deep Shadow","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30303","-1","Teaches you how to make a Belt of the Black Eagle.","","","","Pattern: Belt of the Black Eagle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30304","-1","Teaches you how to make a Monsoon Belt.","","","","Pattern: Monsoon Belt","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30305","-1","Teaches you how to make Boots of Natural Grace.","","","","Pattern: Boots of Natural Grace","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30306","-1","Teaches you how to make Boots of Utter Darkness.","","","","Pattern: Boots of Utter Darkness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30307","-1","Teaches you how to make Boots of the Crimson Hawk.","","","","Pattern: Boots of the Crimson Hawk","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30308","-1","Teaches you how to make Hurricane Boots.","","","","Pattern: Hurricane Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30309","-1","","","","","Stonebreaker Brew","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30310","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Purple High Purple Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30311","-1","","","","","Warp Slicer","0.6","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100352","24580","0","0","0","125","0","0","0","0","0","0","0","550","0","0","0","0","0","0","2900","0","0","0","175","-1","0","0","248","0","0","0","0","461","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","35","25","0","0","0","0","0","0","0","0","70" +"30312","-1","","","","","Infinity Blade","0.6","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100352","24580","0","0","0","95","0","0","0","0","0","0","0","550","0","0","0","0","0","0","2000","0","0","0","175","-1","0","0","171","0","0","0","0","318","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","5","0","35","25","0","0","0","0","0","0","0","0","70" +"30313","-1","","","","","Staff of Disintegration","0.4","900","-80.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100480","24580","0","0","0","145","0","0","0","0","0","0","0","550","0","0","0","0","0","0","2800","0","0","0","175","-1","0","0","356","0","0","0","0","534","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","75","50","75","0","0","0","0","0","0","0","70" +"30314","-1","","","","","Phaseshift Bulwark","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100480","24580","0","0","0","145","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","0","0","0","175","-1","0","0","0","0","0","0","0","0","0","0","0","0","7313","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","0","0","7","12","0","0","0","0","0","0","0","0","0","0","0","0","14","5","0","40","40","0","0","0","0","0","0","0","0","70" +"30315","-1","It's not easy excavating crystals out of solid rock.","","","","Draenethyst Mine Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30316","-1","","","","","Devastation","0.4","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100352","24580","0","0","0","145","0","0","0","0","0","0","0","550","0","0","0","0","0","0","3900","0","0","0","175","-1","0","0","496","0","0","0","0","744","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","5","0","75","50","0","0","0","0","0","0","0","0","70" +"30317","-1","","","","","Cosmic Infuser","0.6","900","-80.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100352","24580","0","0","0","125","0","0","0","0","0","0","0","550","0","0","0","0","0","0","2800","0","0","0","175","-1","0","0","239","0","0","0","0","445","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","7","5","6","0","0","0","0","0","0","0","0","0","0","0","21","5","0","40","40","40","0","0","0","0","0","0","0","70" +"30318","-1","","","","","Netherstrand Longbow","0.4","900","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","100480","24580","0","0","0","110","0","0","0","0","0","0","0","550","0","0","0","0","0","0","2900","0","0","0","175","-1500","0","0","256","0","0","0","0","385","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","20","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","5","2","50","20","0","0","0","0","0","0","0","0","70" +"30319","-1","","","","","Nether Spike","0","900","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","0","0","0","175","-1","0","0","63","0","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","5","0","0","0","0","0","0","0","0","0","0","0","70" +"30320","-1","","","","","Bundle of Nether Spikes","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","0","0","0","175","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","70" +"30321","-1","Teaches you how to make a Belt of the Guardian.","","","","Plans: Belt of the Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30322","-1","Teaches you how to make a Red Belt of Battle.","","","","Plans: Red Belt of Battle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30323","-1","Teaches you how to make Boots of the Protector.","","","","Plans: Boots of the Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30324","-1","Teaches you how to make Red Havoc Boots.","","","","Plans: Red Havoc Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30325","-1","This thing looks like it's about to hatch!","","","","Ravenous Ravager Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30326","-1","","","","","Bonechewer Blood Samples","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30327","-1","","","","","Bonechewer Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30328","-1","","","","","Protectorate Assassin's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35632","178162","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","26","24","21","0","0","0","0","0","0","0","0" +"30329","-1","","","","","Flesh Handler's Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32187","160935","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","26","24","0","0","0","0","0","0","0","0","0" +"30330","-1","","","","","Starcaller's Plated Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25950","129753","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","30","12","16","0","0","0","0","0","0","0","0" +"30331","-1","","","","","Diviner's Cinch","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14798","73992","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","18","21","17","0","0","0","0","0","0","0","0" +"30332","-1","","","","","Ferocious Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18565","92826","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","31","0","0","0","0","0","0","0","0","0","0","9","2","0","16","15","15","10","0","0","0","0","0","0","0" +"30333","-1","","","","","Spaulders of the Protectorate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33684","168422","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","15","0","0","0","0","0","0","0","0","0" +"30334","-1","","","","","Starcaller's Plated Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39191","195956","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","12","0","0","0","0","0","0","0","0","0","0","0","8","2","0","14","21","13","0","0","0","0","0","0","0","0" +"30335","-1","","","","","Druidic Force Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28148","140740","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","20","12","15","11","0","0","0","0","0","0","0" +"30336","-1","","","","","Surger's Hand Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22599","112996","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","20","11","15","0","0","0","0","0","0","0","0" +"30337","-1","","","","","Protectorate Headplate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39610","198052","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","7","14","4","31","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","15","11","20","12","0","0","0","0","0","0" +"30338","-1","","","","","Diviner's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22758","113792","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","15","13","0","0","0","0","0","0","0","0","0" +"30339","-1","","","","","Protectorate Assassin's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","4","3","31","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","16","15","12","0","0","0","0","0","0","0" +"30340","-1","","","","","Starkiller's Bauble","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36368","145472","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","26","0","0","0","0","0","0","0","0","0","0" +"30341","-1","","","","","Flesh Handler's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17345","86726","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","37","0","0","0","0","0","0","0","0","0","0","10","2","0","18","17","27","18","0","0","0","0","0","0","0" +"30342","-1","","","","","Protectorate Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20895","104475","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","18","27","0","0","0","0","0","0","0","0","0" +"30343","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30344","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30345","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30346","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30347","-1","","","","","Alexander's Test Healthstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30348","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30349","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30350","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30351","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","20","0","0","0","0","0","0","0","0","0","70" +"30352","-1","","","","","Demolisher's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26134","130674","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","14","21","13","0","0","0","0","0","0","0" +"30353","-1","","","","","Bloodmaul Brutebane Keg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30354","-1","","","","","Ultra Deconsolodation Zapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30355","-1","","","","","Grilled Shadowmoon Tuber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30356","-1","","","","","Shadowmoon Tuber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30357","-1","","","","","Oronok's Tuber of Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30358","-1","","","","","Oronok's Tuber of Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30359","-1","","","","","Oronok's Tuber of Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30360","-1","","","","","Lurky's Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"30361","-1","","","","","Oronok's Tuber of Spell Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30362","-1","","","","","Energized Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25556","127781","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","1","2","0","26","25","18","0","0","0","0","0","0","0","0" +"30363","-1","","","","","Warp-Shielded Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41039","205198","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","26","25","18","0","0","0","0","0","0","0","0" +"30364","-1","","","","","Resonating Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","68655","343278","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","108","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","12","7","0","0","0","0","0","0","0","0" +"30365","-1","","","","","Overseer's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7086","28347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","15","10","0","0","0","0","0","0","0","0" +"30366","-1","","","","","Manastorm Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7086","28347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"30367","-1","","","","","Monster - Sword2H, Blood Elf B02 (Red Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30368","-1","","","","","Slippers of the High Priestess","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25292","126461","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","8","3","0","23","20","21","0","0","0","0","0","0","0","0" +"30369","-1","","","","","Cleansed Fel Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31731","158658","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","34","18","21","0","0","0","0","0","0","0","0" +"30370","-1","","","","","Gauntlets of the Redeemed Vindicator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25475","127379","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","20","21","0","0","0","0","0","0","0","0" +"30371","-1","","","","","Lightwarden's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","150004","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","622","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","14","30","23","0","0","0","0","0","0","0","0" +"30372","-1","","","","","Socrethar's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21384","106924","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","6","3","0","23","21","20","0","0","0","0","0","0","0","0" +"30373","-1","","","","","Netherfused Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32193","160968","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","21","20","0","0","0","0","0","0","0","0" +"30374","-1","","","","","Greaves of Spellpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38940","194702","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","426","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","21","23","0","0","0","0","0","0","0","0","0" +"30375","-1","","","","","Gauntlets of the Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30434","152172","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","24","23","30","14","0","0","0","0","0","0","0" +"30376","-1","","","","","Monster - Mace, Jeweled Club (Purple Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30377","-1","","","","","Karja's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7086","28347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","0" +"30378","-1","","","","","Thalodien's Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7086","28347","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","37","15","0","0","0","0","0","0","0","0","0" +"30379","-1","","","","","Vindicator's Light Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35377","176889","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","35","24","36","0","0","0","0","0","0","0","0" +"30380","-1","","","","","Girdle of the Lost Vindicator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","125003","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","12","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","39","18","18","0","0","0","0","0","0","0","0" +"30381","-1","","","","","Kaylaan's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37358","186790","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","27","18","0","0","0","0","0","0","0","0","0" +"30382","-1","","","","","Aldor Ceremonial Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14311","71555","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","14","13","0","0","0","0","0","0","0","0","0" +"30383","-1","","","","","Belt of the Sage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13678","68392","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","7","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","16","16","0","0","0","0","0","0","0","0","0" +"30384","-1","","","","","Brightdawn Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17162","85811","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","13","18","0","0","0","0","0","0","0","0","0" +"30385","-1","","","","","QR XXXX Plate Spell Bracer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25469","127346","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","18","9","0","0","0","0","0","0","0","0","0" +"30386","-1","","","","","Bloodguard's Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36236","181184","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","12","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","11","42","0","0","0","0","0","0","0","0" +"30387","-1","","","","","Monster - Mace, Cosmic Infuser","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30388","-1","","","","","Monster - Axe, 2H Devastation","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30389","-1","","","","","Monster - Dagger, Infinity Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30390","-1","","","","","Monster - Bow, Netherstrand Longbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1","9","1","1","1","128","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","5","0","0","0","0","9","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"30391","-1","","","","","Monster - Shield, Phaseshift Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1","7","1","1","1","128","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30392","-1","","","","","Monster - Staff, Staff of Disintegration","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3","15","1","1","1","128","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30393","-1","","","","","Monster - Sword, Warp Slicer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30394","-1","","","","","Sunfury Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86762","433813","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","114","-1","0","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","32","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","39","21","16","0","0","0","0","0","0","0","0" +"30395","-1","","","","","Warp-Master's Maul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87099","435495","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","114","-1","0","0","179","0","0","0","0","270","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","5","21","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","21","16","0","0","0","0","0","0","0","0","0" +"30396","-1","","","","","Jeweled Halberd","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87435","437177","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","114","-1","0","0","173","0","0","0","0","260","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","16","21","0","0","0","0","0","0","0","0","0" +"30397","-1","","","","","Spymaster's Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50141","250706","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","0","0","104","0","0","0","0","195","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","0","0","0","0","0","0","0","0","0","0","0","0","26","2","2","7","5","0","0","0","0","0","0","0","0","0" +"30398","-1","","","","","Boots of the Beneficent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20638","103193","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","18","0","0","0","0","0","0","0","0","0" +"30399","-1","","","","","Nightstalker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17264","86322","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","112","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","12","9","0","0","0","0","0","0","0","0","0" +"30400","-1","","","","","Thadell's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24400","122004","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","12","21","9","0","0","0","0","0","0","0","0" +"30401","-1","","","","","Farahlite Studded Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25452","127262","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","16","0","0","0","0","0","0","0","0","0" +"30402","-1","The inner surface is inscribed with the name of B.O.O.M.","","","","Field Agent's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23981","119907","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","16","8","21","0","0","0","0","0","0","0","0" +"30403","-1","","","","","Monster - Sword, Scimitar Badass (Red Glow, High)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30404","-1","","","","","Bleeding Hollow Blood Sample","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30405","-1","","","","","Monster - Sword, Draenei A02 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30406","-1","","","","","Monster - Sword, Draenei A02 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30407","-1","","","","","Monster - Sword, Draenei A02 Grey","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30408","-1","","","","","Monster - Sword, Draenei A02 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30409","-1","","","","","Monster - Sword, Draenei A02 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30410","-1","","","","","Monster - Sword, Draenei C01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30411","-1","","","","","Monster - Sword, Draenei B01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30412","-1","","","","","Monster - Sword, Draenei B01 Blue (Low White Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30413","-1","The blade appears to be kept razor sharp by the holy power contained within it.","","","","Vindicator Vuuleen's Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30414","-1","","","","","Monster - Axe, 2H Gorehowl","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30415","-1","The shield does not appear to have a scratch on it, as if it's surface was somehow magically maintained.","","","","Vindicator Vuuleen's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30416","-1","The portrait of a clawed boar is prominent on the banner.","","","","Bladespire Clan Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30417","-1","It's filthy, smelly and way too big for you, but it's what you're after.","","","","Helm of Gurn Grubnosh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30418","-1","","","","","Darkspear (Purple Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59304","296524","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","60","-1","0","0","131","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","55" +"30419","-1","","","","","Brilliant Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","4","3","5","6","7","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","2","2","2","2","1","0","0","0","0","0","20" +"30420","-1","","","","","Heavy Jade Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","677","2710","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","29","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","2","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","0","0","0","0","0","0","0","0","0","24" +"30421","-1","","","","","Red Ring of Destruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2542","10170","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","9","0","0","0","0","0","0","0","0","0","41" +"30422","-1","","","","","Diamond Focus Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8375","33500","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","53","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","8","0","0","0","0","0","0","0","0","0","48" +"30423","-1","","","","","Monster - Staff, Blood Elf A01 Blue - Med Blue Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30424","-1","","","","","Monster - Staff, Blood Elf A01 Red - High Red Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30425","-1","","","","","Bleeding Hollow Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30426","-1","","","","","Coilskar Chest Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30427","-1","X marksss the ssspot.","","","","Naga Treasure Map - Questgiver (PH)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"30428","-1","You wouldn't even know where to begin...","","","","First Fragment of the Cipher of Damnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30429","-1","","","","","Grom'tor's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30430","-1","","","","","Boiled Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30431","-1","","","","","Thunderlord Clan Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10524","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30432","-1","The skin stretched taut over the drum appears brittle.","","","","Thunderlord Clan Drum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30433","-1","Amazingly the fletchings on this arrow are still mostly intact. A testament to the skill of the Thunderlord hunters.","","","","Thunderlord Clan Arrow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30434","-1","You can't quite make out what is etched upon this old Thunderlord clan tablet.","","","","Thunderlord Clan Tablet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30435","-1","The large spear vibrates with immense power.","","","","The Thunderspike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30436","-1","","","","","Jagged Blue Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30437","-1","","","","","Jagged Red Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30438","-1","","","","","Cache of the Legion Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30439","-1","","","","","Monster - Polearm, 2H Ruul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30440","-1","","","","","Monster - Spear, The Thunderspike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30441","-1","","","","","Monster - Staff, Blood Elf A02 Red (Yellow Flame)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30442","-1","","","","","Crystalline Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30443","-1","Teaches you how to Transmute Primal Fire into Primal Earth.","","","","Recipe: Transmute Primal Fire to Earth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","350","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30444","-1","Teaches you how to make a Reinforced Mining Bag.","","","","Pattern: Reinforced Mining Bag","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","325","165","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30445","-1","","","","","Monster - Mace, Kurdran's Hammer","0.6","0","-6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30446","-1","","","","","Solarian's Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","30","0","0","0","0","0","0","0","0","0","70" +"30447","-1","","","","","Tome of Fiery Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30448","-1","","","","","Talon of Al'ar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","31236","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30449","-1","","","","","Void Star Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30450","-1","","","","","Warp-Spring Coil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","21","0","0","0","0","0","0","0","0","0","70" +"30451","-1","This ancient bow appears destroyed.","","","","Lohn'goron, Bow of the Torn-heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30452","-1","","","","","Monster - Bow, Spirit Hunter","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"30453","-1","You wouldn't even know where to begin...","","","","Second Fragment of the Cipher of Damnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30454","-1","","","","","Ar'tor's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30455","-1","","","","","Monster - 2H Typhoon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87913","439569","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","68","-1","0","0","150","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","14","20","10","0","0","0","0","0","0","0","60" +"30456","-1","","","","","Monster - Bow, Hunter Epic","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"30457","-1","","","","","Gilneas Sparkling Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"30458","-1","","","","","Stromgarde Muenster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"30459","-1","","","","","Netherflame Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33759","168797","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","21","18","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","35","14","21","0","0","0","0","0","0","0","70" +"30460","-1","","","","","Netherflame Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16942","84711","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","21","18","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","25","16","0","0","0","0","0","0","0","70" +"30461","-1","","","","","Netherflame Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25504","127523","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","21","18","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","25","11","16","0","0","0","0","0","0","0","70" +"30462","-1","","","","","Oronok's Boar Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30463","-1","","","","","Lifeblood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17128","85641","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","11","16","0","0","0","0","0","0","0","0","70" +"30464","-1","","","","","Lifeblood Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17473","87367","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","10","15","0","0","0","0","0","0","0","0","69" +"30465","-1","","","","","Lifeblood Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33367","166838","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","14","21","0","0","0","0","0","0","0","0","67" +"30466","-1","","","","","Crocolisk Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30467","-1","","","","","Crocolisk Tail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30468","-1","It smells a little funny.","","","","T'chali's Hookah","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30469","-1","Teaches you how to sew a Netherflame Robe.","","","","Pattern: Netherflame Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30470","-1","Teaches you how to sew a Netherflame Belt.","","","","Pattern: Netherflame Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30471","-1","Teaches you how to sew Netherflame Boots.","","","","Pattern: Netherflame Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30472","-1","Teaches you how to sew Lifeblood Leggings.","","","","Pattern: Lifeblood Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30473","-1","Teaches you how to sew a Lifeblood Belt.","","","","Pattern: Lifeblood Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30474","-1","Teaches you how to sew Lifeblood Bracers.","","","","Pattern: Lifeblood Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","197","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30475","-1","","","","","Razor Thorn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30476","-1","","","","","Hypnotic Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30477","-1","","","","","Connective Tissue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30478","-1","","","","","Stringy Ectoplasm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30479","-1","","","","","Wicked Strong Fetish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30480","-1","","","","","Fiery Warhorse's Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30481","-1","Rokgah's soul fragment is searing hot, yet does not burn your hand.","","","","Fiery Soul Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30482","-1","","","","","Monster - Sword2H, Blood Elf B02 (Blue Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30483","-1","Teaches you how to sew Shadowcloth.","","","","Pattern: Shadowcloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30484","-1","","","","","Monster - Sword, Caverns of Time Raid","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30485","-1","","","","","Monster - Sword, Crystal C02, Purple, Black Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30486","-1","","","","","Merciless Gladiator's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","136","1","0","0","0","0","0","0","0","0","0","0","0","0","1704","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","60","35","35","24","14","0","0","0","0","0","70" +"30487","-1","","","","","Merciless Gladiator's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","136","1","0","0","0","0","0","0","0","0","0","0","0","0","1065","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","33","29","24","0","0","0","0","0","0","70" +"30488","-1","","","","","Merciless Gladiator's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2892","0","0","0","0","567","0","0","0","0","0","0","0","136","1","0","0","0","0","0","0","0","0","0","0","0","0","1385","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","35","31","25","14","0","0","0","0","0","70" +"30489","-1","","","","","Merciless Gladiator's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","136","1","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","63","47","43","22","14","0","0","0","0","0","70" +"30490","-1","","","","","Merciless Gladiator's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","567","0","0","0","0","0","0","0","136","1","0","0","0","0","0","0","0","0","0","0","0","0","1278","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","51","29","27","20","0","0","0","0","0","0","70" +"30491","-1","","","","","General's Plate Greaves Tier 2","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","27","0","0","0","0","0","0","70" +"30497","-1","","","","","Sentinel's Mail Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","415","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","14","22","22","0","0","0","0","0","0","0","60" +"30498","-1","","","","","Outrider's Lamellar Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","737","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","21","21","0","0","0","0","0","0","0","0","60" +"30499","-1","","","","","Brightsong Wine","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30500","-1","Disgusting...","","","","Rotten Arakkoa Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30501","-1","","","","","Bundle of Bloodthistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30502","-1","","","","","Monster - Draenei_D01_Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30503","-1","","","","","Archeologist's Shrunken Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30504","-1","","","","","Leafblade Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1258","6291","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","19","8","0","0","12","0","0","0","0","24","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30505","-1","","","","","Ghostclaw Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","631","3157","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","5","3","0","0","0","0","0","0","0","0","0" +"30506","-1","","","","","Snipe Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30507","-1","","","","","Lucky Rock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","82","331","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30508","-1","","","","","Pickled Murloc Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","27","110","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30509","-1","","","","","Armor Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","55","220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30510","-1","","","","","Imbued Leaf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30511","-1","","","","","Stonewood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30512","-1","","","","","Giant Spinneret","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30513","-1","","","","","Bloody Spider Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30514","-1","","","","","Nether Guards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20361","101809","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","24","11","0","0","0","0","0","0","0","0","0" +"30515","-1","","","","","Junior Technician 3rd Grade Goggles","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20438","102194","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","15","14","0","0","0","0","0","0","0","0" +"30516","-1","","","","","Chief Engineer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13677","68385","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","0","0","0","0","0","0","0","0","0","0","0","6","2","0","16","11","10","0","0","0","0","0","0","0","0" +"30517","-1","","","","","Netherfarer's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28831","144159","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","39","21","16","0","0","0","0","0","0","0","0" +"30518","-1","","","","","Warpthread Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28939","144697","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","34","24","23","0","0","0","0","0","0","0","0" +"30519","-1","","","","","Boots of the Nexus Warden","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21785","108926","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","18","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","27","18","17","0","0","0","0","0","0","0","0" +"30520","-1","","","","","Gold-Trimmed Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14229","71145","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","9","18","0","0","0","0","0","0","0","0","0" +"30521","-1","","","","","Warpweaver's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13930","69653","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","10","2","0","20","19","12","0","0","0","0","0","0","0","0" +"30522","-1","","","","","Conjurer's Staff","0.4","0","-20.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91772","458861","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","114","-1","0","0","218","0","0","0","0","328","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","42","28","27","0","0","0","0","0","0","0","0" +"30523","-1","","","","","Hotshot Cattle Prod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55355","276778","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","111","-1","0","0","125","0","0","0","0","234","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","7","5","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","10","5","0","0","0","0","0","0","0","0","0" +"30524","-1","","","","","Ancient Draenei Manuscript, Chapter 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30525","-1","","","","","Ancient Draenei Manuscript, Chapter 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30526","-1","","","","","Ancient Draenei Manuscript, Chapter 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30527","-1","","","","","Draenei Tomb Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30528","-1","","","","","Druid 105 Epic Bear Test Chest","0","0","3101","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","13","12","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","26","-15","-27","-56","-102","0","0","0","0","0","70" +"30529","-1","","","","","Plucked Lashh'an Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30530","-1","","","","","Fistful of Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30531","-1","","","","","Breeches of the Occultist","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43665","218326","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","22","23","0","0","0","0","0","0","0","70" +"30532","-1","","","","","Kirin Tor Master's Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43827","219137","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2908","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","29","25","0","0","0","0","0","0","0","70" +"30533","-1","","","","","Vanquisher's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","76989","384949","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2873","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","1216","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","36","23","0","0","0","0","0","0","0","70" +"30534","-1","","","","","Wyrmscale Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66241","331207","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","5","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","32","26","0","0","0","0","0","0","0","0","70" +"30535","-1","","","","","Forestwalker Kilt","0","0","154","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55409","277048","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","26","24","27","0","0","0","0","0","0","70" +"30536","-1","","","","","Greaves of the Martyr","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77857","389287","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","1216","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","38","30","27","0","0","0","0","0","0","0","70" +"30538","-1","","","","","Midnight Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56029","280146","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2873","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","27","17","0","0","0","0","0","0","0","70" +"30539","-1","","","","","Tally's Waiver (Signed)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2996","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30540","-1","","","","","Tally's Waiver (Unsigned)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30541","-1","","","","","Stormsong Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69770","348851","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","30","26","0","0","0","0","0","0","0","70" +"30542","-1","","","","","Dimensional Ripper - Area 52","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30543","-1","","","","","Pontifex Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46846","234234","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","29","27","0","0","0","0","0","0","0","70" +"30544","-1","","","","","Ultrasafe Transporter: Toshley's Station","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20219","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30545","-1","","","","","Cavrylin's Medallion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30546","-1","Matches a Red or Blue Socket.","","","","Sovereign Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30547","-1","Matches a Red or Yellow Socket.","","","","Luminous Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","442","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30548","-1","Matches a Yellow or Blue Socket.","","","","Polished Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","443","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30549","-1","Matches a Red or Blue Socket.","","","","Shifting Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30550","-1","Matches a Yellow or Blue Socket.","","","","Sundered Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","445","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30551","-1","Matches a Red or Yellow Socket.","","","","Infused Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","446","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30552","-1","Matches a Red or Blue Socket.","","","","Blessed Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","447","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30553","-1","Matches a Red or Yellow Socket.","","","","Pristine Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30554","-1","Matches a Red or Yellow Socket.","","","","Stalwart Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30555","-1","Matches a Red or Blue Socket.","","","","Glowing Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","450","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30556","-1","Matches a Red or Yellow Socket.","","","","Glinting Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","451","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30557","-1","","","","","Monster - Bow, Netherstrand Longbow (Held)","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2","12","1","1","1","128","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","2","0","0","0","0","0","0","0","0","0","0","1" +"30558","-1","Matches a Red or Yellow Socket.","","","","Glimmering Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","452","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30559","-1","Matches a Red or Yellow Socket.","","","","Etched Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30560","-1","Matches a Yellow or Blue Socket.","","","","Rune Covered Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","454","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30561","-1","Take this crystal to the Vekh'nir Spell Circle to charge it.","","","","Vekh'nir Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30563","-1","Matches a Red or Blue Socket.","","","","Regal Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","456","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30564","-1","Matches a Red or Yellow Socket.","","","","Shining Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30565","-1","Matches a Red or Yellow Socket.","","","","Assassin's Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30566","-1","Matches a Red or Blue Socket.","","","","Defender's Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30567","-1","","","","","Charged Vekh'nir Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30568","-1","","","","","The Sharp Cookie","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5535","22142","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","108","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","0","10","0","0","0","0","0","0","0","0","0","66" +"30569","-1","","","","","Proximo's Rudius","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","3633","18166","1","0.2","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","70","-1","0","0","25","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","64" +"30570","-1","","","","","Arkadian Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","17545","87726","1","0.2","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","114","-1","0","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","42","0","0","0","0","0","0","0","66" +"30571","-1","Matches a Red Socket.","","","","Don Rodrigo's Heart","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35243","140972","1","1","1","524288","24580","0","0","0","0","0","0","0","0","460","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"30572","-1","Matches a Red or Blue Socket.","","","","Imperial Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","461","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30573","-1","Matches a Red or Yellow Socket.","","","","Mysterious Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","462","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30574","-1","Matches a Red or Blue Socket.","","","","Brutal Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30575","-1","Matches a Red or Yellow Socket.","","","","Nimble Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30576","-1","","","","","Monster - Dagger, Curved Bone Bloody (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30577","-1","","","","","Monster - Axe, 2H Zul'Gurub Red (Blue Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30578","-1","","","","","Monster - Dagger, Vulture Black (White Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30579","-1","A fragment of a weapon that seems to be enchanted with spells conveying power in combat against demons serving Illidan.","","","","Illidari-Bane Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10623","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"30580","-1","","","","","Monster - Crossbow, Draenei A01 Silver","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"30581","-1","Matches a Red or Yellow Socket.","","","","Durable Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30582","-1","Matches a Red or Yellow Socket.","","","","Deadly Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","466","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30583","-1","Matches a Yellow or Blue Socket.","","","","Timeless Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","467","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30584","-1","Matches a Red or Yellow Socket.","","","","Enscribed Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","468","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30585","-1","Matches a Red or Yellow Socket.","","","","Glistening Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","469","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30586","-1","Matches a Yellow or Blue Socket.","","","","Seer's Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30587","-1","Matches a Red or Yellow Socket.","","","","Champion's Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30588","-1","Matches a Red or Yellow Socket.","","","","Potent Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","472","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30589","-1","Matches a Yellow or Blue Socket.","","","","Dazzling Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","473","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30590","-1","Matches a Yellow or Blue Socket.","","","","Enduring Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30591","-1","Matches a Red or Yellow Socket.","","","","Empowered Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30592","-1","Matches a Yellow or Blue Socket.","","","","Steady Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30593","-1","Matches a Red or Yellow Socket.","","","","Iridescent Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30594","-1","Matches a Yellow or Blue Socket.","","","","Effulgent Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30595","-1","","","","","Legion Codex Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30596","-1","","","","","Baa'ri Tablet Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30597","-1","","","","","Halaani Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18492","92463","1","0.2","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","114","-1","0","0","231","0","0","0","0","347","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","28","27","42","0","0","0","0","0","0","0","66" +"30598","-1","Matches a Red Socket.","","","","Don Amancio's Heart","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35243","140972","1","1","1","524288","24580","0","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"30599","-1","","","","","Avenging Blades","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","5535","22142","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","108","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","0","10","0","0","0","0","0","0","0","0","0","66" +"30600","-1","Matches a Red or Blue Socket.","","","","Fluorescent Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30601","-1","Matches a Red or Yellow Socket.","","","","Beaming Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","481","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30602","-1","Matches a Yellow or Blue Socket.","","","","Jagged Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","482","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30603","-1","Matches a Red or Blue Socket.","","","","Royal Tanzanite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","483","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30604","-1","Matches a Red or Yellow Socket.","","","","Resplendent Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30605","-1","Matches a Yellow or Blue Socket.","","","","Vivid Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","485","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30606","-1","Matches a Yellow or Blue Socket.","","","","Lambent Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30607","-1","Matches a Red or Yellow Socket.","","","","Splendid Fire Opal","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30608","-1","Matches a Yellow or Blue Socket.","","","","Radiant Chrysoprase","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"30609","-1","","","","","Swift Nether Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30610","-1","","","","","Smoked Black Bear Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"30611","-1","","","","","Halaani Razorshaft","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","107","-1","0","0","34","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","66" +"30612","-1","","","","","Halaani Grimshot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","107","-1","0","0","34","0","0","0","0","34","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","66" +"30613","-1","","","","","Felfire Diemetradon Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30614","-1","","","","","Fel Bomb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30615","-1","It's no JD's, but it'll do.","","","","Halaani Whiskey","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","3","0","1333","16000","3","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30616","-1","","","","","Bundle of Bloodthistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30617","-1","A directive given by Illidan Stormrage.","","","","Stormrage Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2989","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30618","-1","","","","","Trachela's Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30619","-1","","","","","Fel Reaver's Piston","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30620","-1","","","","","Spyglass of the Hidden Fleet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"30621","-1","","","","","Prism of Inner Calm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30622","-1","Unlocks Heroic Difficulty for Hellfire Citadel dungeons.","","","","Flamewrought Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","0","0","0","0","946","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30623","-1","Unlocks Heroic Difficulty for Coilfang Reservoir dungeons.","","","","Reservoir Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","0","0","0","0","942","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30624","-1","","","","","Monster - Sword, Falchion (Black Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30625","-1","","","","","Monster - Axe, 2H Arcanite Reaper (Green Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30626","-1","","","","","Sextant of Unstable Currents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"30627","-1","","","","","Tsunami Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","38","10","0","0","0","0","0","0","0","0","70" +"30628","-1","","","","","Fel Reaver Power Core","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30629","-1","","","","","Scarab of Displacement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","42","0","0","0","0","0","0","0","0","0","70" +"30630","-1","","","","","Fel Reaver Energy Matrix","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30631","-1","","","","","Fel Reaver Armor Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30632","-1","The small book contains the lyrics to the song.","","","","Lament of the Highborne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2990","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30633","-1","Unlocks access to Heroic mode for Auchindoun dungeons.","","","","Auchenai Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30634","-1","Unlocks Heroic Difficulty for Tempest Keep dungeons.","","","","Warpforged Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","0","0","0","0","935","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30635","-1","Unlocks Heroic Difficulty for Caverns of Time dungeons.","","","","Key of Time","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","0","0","0","0","989","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30636","-1","","","","","Monster - Sword, 2H Blood Elf A01 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30637","-1","Unlocks Heroic Difficulty for Hellfire Citadel dungeons.","","","","Flamewrought Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","0","0","0","0","947","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30638","-1","A.C.M.E. jumbo disguise kit.","","","","Box o' Tricks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30639","-1","","","","","Blood Elf Disguise","0","6000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30640","-1","Not a drop of blood on this piece!","","","","Eclipsion Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30641","-1","","","","","Boots of Elusion","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58878","294391","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","38","0","0","0","0","0","0","0","70" +"30642","-1","","","","","Drape of the Righteous","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33835","169178","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","0","0","0","0","0","0","0","0","0","70" +"30643","-1","","","","","Belt of the Tracker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33965","169829","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","15","0","0","0","0","0","0","0","0","0","70" +"30644","-1","","","","","Grips of Deftness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28413","142066","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","29","34","15","0","0","0","0","0","0","0","70" +"30645","-1","You wouldn't even know where to begin...","","","","Third Fragment of the Cipher of Damnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30646","-1","","","","","Borak's Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30647","-1","","","","","Monster - Ruul's Thunderfury","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","17","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30648","-1","","","","","Monster - Sword, Katana (Sharpened effect)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30649","-1","","","","","Orders From Akama","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30650","-1","","","","","Dertrok's Wand Case","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30651","-1","","","","","Dertrok's First Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30652","-1","","","","","Dertrok's Second Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30653","-1","","","","","Dertrok's Third Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30654","-1","","","","","Dertrok's Fourth Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30655","-1","This crystal can be used with one of Dertrok's wands.","","","","Infused Vekh'nir Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30656","-1","","","","","Protovoltaic Magneto Collector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30657","-1","Herein lies the words of the eternal.","","","","The Cipher of Damnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30658","-1","","","","","Flanis's Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30659","-1","","","","","Kagrosh's Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30660","-1","","","","","Monster - Dagger, Borak","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30661","-1","","","","","Monster - Axe, 1H Grom'tor","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30662","-1","","","","","Monster - Shield, Grom'tor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30663","-1","","","","","Fathom-Brooch of the Tidewalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30664","-1","","","","","Living Root of the Wildheart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30665","-1","","","","","Earring of Soulful Meditation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30666","-1","","","","","Ritssyn's Lost Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","0","0","0","0","0","0","0","0","0","70" +"30667","-1","","","","","Ring of Unrelenting Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","19","0","0","0","0","0","0","0","0","70" +"30668","-1","","","","","Grasp of the Dead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23692","118462","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","21","17","0","0","0","0","0","0","0","70" +"30669","-1","","","","","Monster - Staff, Oronok","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30670","-1","","","","","Monster - Mace, Hammer Gold Orange (Yellow Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30671","-1","","","","","Monster - Mace, Hammer Gold Orange (Low Yellow Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30672","-1","A device used to manipulate and control elementals.","","","","Elemental Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30673","-1","","","","","Inferno Waist Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24124","120621","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","18","24","0","0","0","0","0","0","0","0","70" +"30674","-1","","","","","Zierhut's Lost Treads","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45395","226978","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","28","33","0","0","0","0","0","0","0","70" +"30675","-1","","","","","Lurker's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24295","121477","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","61","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30676","-1","","","","","Lurker's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30477","152389","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","63","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30677","-1","","","","","Lurker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36703","183518","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","64","0","0","0","0","0","0","0","0","0","0","0","457","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30678","-1","","","","","Lurker's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43218","216091","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","65","0","0","0","0","0","0","0","0","0","0","0","816","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30679","-1","","","","","Sunfury Glaive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30680","-1","","","","","Glider's Foot-Wraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","61","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30681","-1","","","","","Glider's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42122","210614","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","63","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30682","-1","","","","","Glider's Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50968","254842","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","64","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30683","-1","","","","","Glider's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60937","304686","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","65","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30684","-1","","","","","Ravager's Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93381","466907","1","4","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","61","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30685","-1","","","","","Ravager's Wrist-Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29290","146450","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","63","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30686","-1","","","","","Ravager's Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35278","176392","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","64","0","0","0","0","0","0","0","0","0","0","0","355","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30687","-1","","","","","Ravager's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41542","207710","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","65","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30688","-1","","","","","Deathforge Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30689","-1","Orders from Doom Lord Kazzak, including a description of a huge stockpile of infernals and fel reavers at a hidden location in Shadowmoon Valley.","","","","Razuun's Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30690","-1","The next best thing to going to the Academy.","","","","Power Converter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30691","-1","","","","","Haalum's Medallion Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30692","-1","","","","","Eykenen's Medallion Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30693","-1","","","","","Lakaan's Medallion Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30694","-1","","","","","Uylaru's Medallion Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30695","-1","Allows the holder to use Legion Hold's teleporter to access Invasion Point: Cataclysm.","","","","Legion Teleporter Control","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30696","-1","","","","","Scourgebane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","15","0","0","0","0","0","0","0","0","0","0" +"30697","-1","","","","","Monster - Polearm, Battle Scythe (White)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","1","-1","94","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30698","-1","","","","","Monster - Polearm, Battle Scythe (White - 1h)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","1","-1","94","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30699","-1","","","","","Monster - Axe, Akama's Scythe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30700","-1","","","","","Scourgestone Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30701","-1","","","","","Oscillating Frequency Scanners","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30702","-1","","","","","Monster - EQUIPS RANDOM WEAPON VIA ACTION TRIGGER","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30703","-1","","","","","Conjured Mountain Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30704","-1","","","","","Ruuan'ok Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30705","-1","","","","","Spaulders of Slaughter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46039","230197","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","30","22","27","0","0","0","0","0","0","0","70" +"30706","-1","","","","","Harbinger's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30707","-1","","","","","Nimble-foot Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31466","157334","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","32","24","25","0","0","0","0","0","0","0","70" +"30708","-1","","","","","Belt of Flowing Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26648","133244","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","32","0","0","0","0","0","0","0","0","0","70" +"30709","-1","","","","","Pantaloons of Flaming Wrath","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33564","167823","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","28","42","0","0","0","0","0","0","0","0","70" +"30710","-1","","","","","Blood Guard's Necklace of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50287","201151","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","17","0","0","0","0","0","0","0","0","0","70" +"30711","-1","","","","","QATest Raid Buffs lvl 70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30712","-1","","","","","The Doctor's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30713","-1","How to care for and operate your fel reaver.","","","","The Art of Fel Reaver Maintenance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30714","-1","","","","","Monster - Sword, 2H Crystal Purple (Purple Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30715","-1","","","","","Monster - Axe, 1H Mounted Death Knight","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30716","-1","Incredibly, it's still smoldering.","","","","Ever-burning Ash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30717","-1","","","","","Harbinger's Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30718","1791","","","","","[UNUSED] Metzen and Carnes' Test Robe of Asskicking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","4","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30719","-1","*WARNING* Ghosts don't like to be seen.","","","","Spectrecles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30720","-1","","","","","Serpent-Coil Braid","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","21","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","30","12","0","0","0","0","0","0","0","0","70" +"30721","-1","*WARNING* Ghosts don't like to be seen.","","","","Spectrecles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30722","-1","","","","","Ethereum Nexus-Reaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150514","752573","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","3094","0","0","0","0","0","0","0","0","3700","0","0","0","120","-1","0","0","346","0","0","0","0","519","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","3","1","1","0","0","1","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","50","30","0","0","0","0","0","0","0","0","70" +"30723","-1","","","","","Talon of the Tempest","0.6","0","-48.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","120862","604314","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","1800","0","0","0","120","32767","0","0","113","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","3","0","3","1","0","0","1","0","5","18","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","10","9","19","0","0","0","0","0","0","0","70" +"30724","-1","","","","","Barrel-Blade Longrifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90976","454882","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","0","0","147","0","0","0","0","275","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","16","0","0","0","0","0","0","0","0","0","70" +"30725","-1","","","","","Anger-Spark Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24350","121753","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","7","0","0","1","0","18","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","25","0","0","0","0","0","0","0","0","70" +"30726","-1","","","","","Archaic Charm of Presence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","23","0","0","0","0","0","0","0","0","0","70" +"30727","-1","","","","","Gilded Trousers of Benediction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49062","245310","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","15","16","0","0","0","0","0","0","0","0","70" +"30728","-1","","","","","Fathom-Helm of the Deeps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55392","276962","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","0","0","0","0","0","0","0","0","0","70" +"30729","-1","","","","","Black-Iron Battlecloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37063","185318","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","0","0","0","0","0","0","0","0","0","70" +"30730","-1","","","","","Terrorweave Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61998","309991","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","379","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","8","0","0","1","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","21","25","0","0","0","0","0","0","0","0","70" +"30731","-1","","","","","Faceguard of the Endless Watch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65210","326053","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","120","1535","0","0","0","0","0","0","0","0","0","0","0","0","1227","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","49","30","37","0","0","0","0","0","0","0","70" +"30732","-1","","","","","Exodar Life-Staff","0.4","0","-48.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144890","724452","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","3200","0","0","0","120","-1","0","0","299","0","0","0","0","449","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","4","3","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","34","0","0","0","0","0","0","0","0","0","70" +"30733","-1","","","","","Hope Ender","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","116363","581817","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","120","-1","0","0","163","0","0","0","0","304","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"30734","-1","","","","","Leggings of the Seventh Circle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46725","233629","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","5","18","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","22","18","25","0","0","0","0","0","0","0","70" +"30735","-1","","","","","Ancient Spellcloak of the Highborne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35179","175898","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","19","15","0","0","0","0","0","0","0","0","70" +"30736","-1","","","","","Ring of Flowing Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","23","0","0","0","0","0","0","0","0","0","70" +"30737","-1","","","","","Gold-Leaf Wildboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44308","221542","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","120","32767","0","0","0","0","0","0","0","0","0","0","0","0","261","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","18","0","0","0","0","0","0","0","0","70" +"30738","-1","","","","","Ring of Reciprocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","19","0","0","0","0","0","0","0","0","70" +"30739","-1","","","","","Scaled Greaves of the Marksman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71427","357138","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","120","32767","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","5","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","16","0","0","0","0","0","0","0","0","70" +"30740","-1","","","","","Ripfiend Shoulderplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62616","313082","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","1133","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","4","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","22","13","0","0","0","0","0","0","0","70" +"30741","-1","","","","","Topaz-Studded Battlegrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42221","211109","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2975","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","944","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","49","31","0","0","0","0","0","0","0","0","70" +"30742","-1","","","","","Temporal Phase Modulator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30743","-1","Icky, gooey, yukky!","","","","Proto-Nether Drake Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30744","-1","","","","","Draenic Leather Pack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30745","-1","","","","","Heavy Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30746","-1","","","","","Mining Sack","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30747","-1","","","","","Gem Pouch","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30748","-1","","","","","Enchanter's Satchel","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30749","-1","Generations of warriors have trained with these blades","","","","Draenic Sparring Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29108","145540","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","69","-1","0","0","45","0","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30750","-1","An ancient Draenic warblade still intact","","","","Draenic Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37874","189372","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","72","-1","0","0","100","0","0","0","0","151","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30751","-1","Nicks in the edge attest to much conflict","","","","Mag'hari Light Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29676","148381","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30752","-1","Countless more Mag'har have fallen than remain","","","","Mag'hari Battleaxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33679","168397","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","70","-1","0","0","73","0","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30753","-1","The Warpstalker Horn gives this weapon its speed","","","","Warphorn Spear","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65333","326668","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","83","-1","0","0","103","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","2","0","0","0","0","0","0","0","0","0","0","0","60" +"30754","-1","It has seen usage on countless battlefields","","","","Ancient Bone Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27483","137417","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","71","-1","0","0","50","0","0","0","0","93","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30755","-1","Weapon of Mag'hari Heroes","","","","Mag'hari Fighting Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50995","254979","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","80","-1","0","0","49","0","0","0","0","92","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","2","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","21","2","0","24","0","0","0","0","0","0","0","0","0","60" +"30756","-1","A fragment of a weapon that seems to be enchanted with spells conveying power in combat against demons serving Illidan.","","","","Illidari-Bane Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10621","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","67" +"30757","-1","Sturdy construction has kept this ancient weapon working","","","","Draenic Light Crossbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20851","104257","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","71","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","2","0","0","0","0","0","0","0","0","0","0","60" +"30758","-1","Weapons of the fallen make their way onto the gray market","","","","Aldor Guardian Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20675","103377","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","70","-1","0","0","61","0","0","0","0","113","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","3","0","0","0","0","0","0","0","0","0","0","60" +"30759","-1","It can put a second arrow in flight before the first strikes its target","","","","Mag'hari Light Recurve","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20499","102498","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","69","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","1","2","0","0","0","0","0","0","0","0","0","0","60" +"30760","-1","","","","","Formal Draenic Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11110","55554","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30761","-1","","","","","Infernoweave Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","170","0","55","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","0","0","0","0","0","0","0","0","0","70" +"30762","-1","","","","","Infernoweave Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","194","0","60","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","54","0","0","0","0","0","0","0","0","0","70" +"30763","-1","","","","","Infernoweave Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","134","0","45","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","0","0","0","0","0","0","0","0","0","70" +"30764","-1","","","","","Infernoweave Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","40","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","0","0","0","0","0","0","0","0","0","70" +"30765","-1","","","","","Heavy Draenic Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25321","126608","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","796","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","60" +"30766","-1","","","","","Inferno Tempered Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1269","0","55","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","0","0","0","0","0","0","0","0","0","70" +"30767","-1","","","","","Inferno Tempered Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","906","0","40","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","0","0","0","0","0","0","0","0","0","70" +"30768","-1","","","","","Inferno Tempered Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","997","0","45","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","0","0","0","0","0","0","0","0","0","70" +"30769","-1","","","","","Inferno Tempered Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","60","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","54","0","0","0","0","0","0","0","0","0","70" +"30770","-1","","","","","Inferno Forged Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","558","0","45","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","0","0","0","0","0","0","0","0","0","70" +"30771","-1","","","","","Heavy Draenic Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13006","65032","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30772","-1","","","","","Inferno Forged Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","710","0","55","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","0","0","0","0","0","0","0","0","0","70" +"30773","-1","","","","","Inferno Forged Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","812","0","60","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","54","0","0","0","0","0","0","0","0","0","70" +"30774","-1","","","","","Inferno Forged Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","40","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","0","0","0","0","0","0","0","0","0","70" +"30775","-1","","","","","Layered Bone Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21719","108595","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","2523","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30776","-1","","","","","Inferno Hardened Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","364","0","60","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","54","0","0","0","0","0","0","0","0","0","70" +"30777","-1","Tough and unyielding like their owners","","","","Aldor Heavy Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11851","59255","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30778","-1","","","","","Inferno Hardened Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","319","0","55","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","0","0","0","0","0","0","0","0","0","70" +"30779","-1","","","","","Inferno Hardened Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","250","0","45","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","0","0","0","0","0","0","0","0","0","70" +"30780","-1","","","","","Inferno Hardened Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","0","0","0","0","0","0","0","0","0","0","0","0","228","0","40","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","0","0","0","0","0","0","0","0","0","70" +"30781","-1","Hopefully you will fare better than the previous owner","","","","Mag'hari Chain Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20200","101003","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","447","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30782","-1","Older, yet no less disgusting.","","","","Adolescent Nether Drake Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30783","-1","Just what is Clocktock going to do with these things anyway?","","","","Mature Nether Drake Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30784","-1","","","","","Worn Mag'hari Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10100","50501","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","279","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30785","-1","","","","","Morgroron's Glaive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30786","-1","","","","","Makazradon's Glaive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30787","-1","","","","","Illidari-Bane Mageblade","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90791","453956","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","115","-1","0","0","80","0","0","0","0","149","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","11","12","20","0","0","0","0","0","0","0","0" +"30788","-1","","","","","Illidari-Bane Broadsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91108","455540","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","115","-1","0","0","135","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"30789","-1","","","","","Illidari-Bane Claymore","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","114292","571460","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","115","-1","0","0","276","0","0","0","0","414","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","34","37","0","0","0","0","0","0","0","0","0" +"30790","-1","","","","","Monster - Staff Green Sphere (Old School Death Knight)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30791","-1","","","","","Silkwing Cocoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30792","-1","","","","","Iridescent Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30793","-1","","","","","Skettis See Invis Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"30794","-1","","","","","Shredder Keys","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30795","-1","","","","","Monster - Spear, Flaming Thunderspike","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30796","-1","Hellfire Quest Item","","","","Outland Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30797","-1","","","","","Gorefiend's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30798","-1","Ouch!","","","","Extra Sharp Daggermaw Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30799","-1","","","","","Gorefiend's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30800","-1","","","","","Gorefiend's Truncheon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30801","-1","","","","","Monster - Sword2H, Horde Curved Black Red Flame","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30802","-1","","","","","Monster - Mace2H, Draenei Paladin (Karsius)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30803","-1","","","","","Felhound Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30804","-1","","","","","Bronze Band of Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1064","4258","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","18" +"30805","-1","","","","","Thick Stain Resistant Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30806","-1","Bag that contains items for Shizz Work","","","","Fel Hound Walking Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30807","-1","It's still smoldering!","","","","Uvuros's Fiery Mane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30808","-1","","","","","Book of Fel Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30809","-1","Present this to the Aldor in Shattrath City to prove your slaying of a high-ranking follower of the Burning Legion.","","","","Mark of Sargeras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30810","-1","Present this to the Scryers in Shattrath City to prove your slaying of a high-ranking follower of Kael'thas.","","","","Sunfury Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30811","-1","","","","","Scroll of Demonic Unbanishing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","175","700","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30812","-1","","","","","Iridescent Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30813","-1","","","","","Envenomed Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30814","-1","","","","","Enormous Molar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30815","-1","","","","","Giant Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30816","-1","","","","","Spice Bread","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"30817","-1","","","","","Simple Flour","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","25","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30818","-1","","","","","Repolarized Magneto Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30819","-1","","","","","Felfire Spleen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30820","-1","","","","","Vicious Scorpid Claw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1325","5300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30821","-1","","","","","Envenomed Scorpid Stinger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1185","4740","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"30822","-1","","","","","Box of Ingots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30823","-1","A totem imbued with powerful anti-demon magics","","","","Demon Warding Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30824","-1","A small container filled with brightly glowing plasma.","","","","Overcharged Manacell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30825","-1","","","","","Ring of Arcane Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37037","148148","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","8","0","0","0","0","0","0","0","0","70" +"30826","-1","Teaches you how to craft a Ring of Arcane Shielding.","","","","Design: Ring of Arcane Shielding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","360","755","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"30827","-1","","","","","Lexicon Demonica","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30828","-1","","","","","Vial of Underworld Loam","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30829","-1","","","","","Tear of the Earthmother","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30830","-1","","","","","Trident of the Outcast Tribe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","501016","2505080","1","4","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","1011","0","0","100","-1","0","0","270","0","0","0","0","406","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","31","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","17","4","0","54","37","36","0","0","0","0","0","0","0","70" +"30831","-1","","","","","Cloak of Arcane Evasion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25066","125331","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","76","0","0","0","0","0","32","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","0","0","0","0","0","0","0","0","0","69" +"30832","-1","","","","","Gavel of Unearthed Secrets","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100968","504841","1","1","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","1011","0","0","100","32767","0","0","153","0","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","21","4","0","24","16","15","0","0","0","0","0","0","0","70" +"30833","-1","Teaches you how to sew a Cloak of Arcane Evasion.","","","","Pattern: Cloak of Arcane Evasion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30834","-1","","","","","Shapeshifter's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","49382","197528","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","37","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","11","4","0","25","18","20","0","0","0","0","0","0","0","70" +"30835","-1","","","","","Salvager's Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52125","260629","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","49","33","0","0","0","0","0","0","0","0","70" +"30836","-1","","","","","Leggings of the Skettis Exile","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34880","174403","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","33","33","0","0","0","0","0","0","0","0","70" +"30837","-1","","","","","Flameheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17088","85444","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","32767","0","0","0","0","0","0","0","0","0","0","0","0","67","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","8","0","0","0","0","0","0","0","0","69" +"30838","-1","","","","","Flameheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17430","87150","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","97","0","40","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","11","0","0","0","0","0","0","0","0","70" +"30839","-1","","","","","Flameheart Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35267","176339","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","50","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","19","0","0","0","0","0","0","0","0","70" +"30840","-1","Just like Dizzy Dina said, disgusting!","","","","Ether-Energized Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30841","-1","Short prayers from a dozen different faiths are contained in this book.","","","","Lower City Prayerbook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"30842","-1","Teaches you how to sew Flameheart Bracers.","","","","Pattern: Flameheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30843","-1","Teaches you how to sew Flameheart Gloves.","","","","Pattern: Flameheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","360","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30844","-1","Teaches you how to sew a Flameheart Vest.","","","","Pattern: Flameheart Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","370","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30845","-1","","","","","Glyph of Chromatic Warding","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","36928","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"30846","-1","","","","","Glyph of the Outcast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","36928","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","70" +"30847","-1","","","","","X-52 Rocket Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"30848","-1","","","","","Monster - Axe, 2H Herod (Black Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"30849","-1","","","","","Scalewing Lightning Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30850","-1","","","","","Freshly Drawn Blood","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30851","-1","","","","","Felspine's Hide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30852","-1","","","","","Multi-Spectrum Light Trap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30853","-1","","","","","Imbued Silver Spear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30854","-1","","","","","Book of Fel Names","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30855","-1","","","","","Shatterstone Pick","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","54657","273287","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","11","0","0","0","0","0","0","0","1800","0","0","0","84","-1","0","0","57","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","7","7","0","0","0","0","0","0","0","0","0" +"30856","-1","","","","","Underworld Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28744","143724","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","638","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","42","16","12","0","0","0","0","0","0","0","0" +"30857","-1","","","","","Deep Core Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","27388","109552","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","23","2","0","8","9","0","0","0","0","0","0","0","0","0" +"30858","-1","","","","","Peon Sleep Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30859","-1","","","","","Wand of the Seer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62985","314929","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","109","-1","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","8","5","0","0","0","0","0","0","0","0","0" +"30860","-1","","","","","Kaylaan's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","3","31","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"30861","-1","","","","","Furious Shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51559","257799","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","35","28","19","0","0","0","0","0","0","0","70" +"30862","-1","","","","","Blessed Adamantite Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51744","258720","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","22","21","0","0","0","0","0","0","0","70" +"30863","-1","","","","","Deadly Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36880","184404","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","28","12","0","0","0","0","0","0","0","70" +"30864","-1","","","","","Bracers of the Pathfinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44409","222048","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2902","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","24","24","0","0","0","0","0","0","0","70" +"30865","-1","","","","","Tracker's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","134401","672006","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","141","32767","0","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","20","23","0","0","0","0","0","0","0","0","70" +"30866","-1","","","","","Blood-stained Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70700","353502","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","1324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","47","34","32","23","0","0","0","0","0","0","70" +"30867","-1","","","","","Overdeveloped Felfire Gizzard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30868","-1","","","","","Rejuvenating Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33989","169945","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3151","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","20","28","0","0","0","0","0","0","0","70" +"30869","-1","","","","","Howling Wind Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40943","204719","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","29","0","0","0","0","0","0","0","0","70" +"30870","-1","","","","","Cuffs of Devastation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27400","137003","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","20","19","14","0","0","0","0","0","0","70" +"30871","-1","","","","","Bracers of Martyrdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27502","137512","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","3098","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","20","28","0","0","0","0","0","0","0","70" +"30872","-1","","","","","Chronicle of Dark Secrets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","21","18","5","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","16","23","17","12","0","0","0","0","0","0","70" +"30873","-1","","","","","Stillwater Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62628","313142","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","39","0","0","0","0","0","0","0","0","70" +"30874","-1","","","","","The Unbreakable Will","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139081","695408","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","141","-1","0","0","112","0","0","0","0","209","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","33","21","0","0","0","0","0","0","0","0","70" +"30875","-1","A recently forged blade imbued with powerful anti-demon magics.","","","","Forged Illidari-Bane Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30876","-1","","","","","Quenched Illidari-Bane Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30877","-1","","","","","QAEnchant Bracer +6 Mana5 Sec","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","6291520","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30878","-1","","","","","Glimmering Steel Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75931","379657","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","1324","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","26","27","29","0","0","0","0","0","0","0","70" +"30879","-1","Heavier than it appears, this belt jingles ever so slightly","","","","Don Alejandro's Money Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36354","181770","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","37","19","0","0","0","0","0","0","0","70" +"30880","-1","","","","","Quickstrider Moccasins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65964","329823","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","30","31","15","0","0","0","0","0","0","70" +"30881","-1","","","","","Blade of Infamy","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146462","732313","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","141","-1","0","0","182","0","0","0","0","339","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","28","0","0","0","0","0","0","0","0","0","70" +"30882","-1","","","","","Bastion of Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94071","470355","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","5930","0","0","0","0","0","0","0","254","0","0","0","2","0","0","4","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","28","28","0","0","0","0","0","0","0","0","70" +"30883","-1","","","","","Pillar of Ferocity","0.4","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184368","921843","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","141","32767","0","0","313","0","0","0","0","470","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","96","47","0","0","0","0","0","0","0","0","70" +"30884","-1","","","","","Hatefury Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44405","222027","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","15","24","0","0","0","0","0","0","0","70" +"30885","-1","","","","","Archbishop's Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40316","201580","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","30","37","0","0","0","0","0","0","0","70" +"30886","-1","","","","","Enchanted Leather Sandals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50586","252930","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","29","37","0","0","0","0","0","0","0","70" +"30887","-1","","","","","Golden Links of Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81251","406258","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","35","0","0","0","0","0","0","0","0","70" +"30888","-1","","","","","Anetheron's Noose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27188","135942","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","22","23","24","0","0","0","0","0","0","0","70" +"30889","-1","","","","","Kaz'rogal's Hardened Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87338","436690","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","5930","0","0","0","0","0","0","0","254","0","0","0","3","0","0","4","6","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","43","28","21","0","0","0","0","0","0","0","70" +"30890","-1","They seem energetic.","","","","Collection of Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"30891","-1","","","","","Black Featherlight Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51561","257808","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","41","0","0","0","0","0","0","0","0","70" +"30892","-1","","","","","Beast-tamer's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64079","320396","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","38","0","0","0","0","0","0","0","0","70" +"30893","-1","","","","","Sun-touched Chain Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85374","426874","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","28","0","0","0","0","0","0","0","0","70" +"30894","-1","Keep Off","","","","Blue Suede Shoes","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37542","187714","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","37","32","18","0","0","0","0","0","0","0","70" +"30895","-1","","","","","Angelista's Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28664","143323","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","30","29","37","0","0","0","0","0","0","0","70" +"30896","-1","","","","","Glory of the Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100692","503464","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","75","35","51","34","0","0","0","0","0","0","70" +"30897","-1","","","","","Girdle of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50818","254091","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","38","27","21","0","0","0","0","0","0","0","70" +"30898","-1","","","","","Shady Dealer's Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72439","362197","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","50","61","0","0","0","0","0","0","0","0","70" +"30899","-1","","","","","Don Rodrigo's Poncho","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72701","363505","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","31","52","0","0","0","0","0","0","0","70" +"30900","-1","","","","","Bow-stitched Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87555","437776","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2952","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","5","7","32","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","28","28","20","0","0","0","0","0","0","70" +"30901","-1","","","","","Boundless Agony","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","146434","732172","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","141","-1","0","0","144","0","0","0","0","217","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","24","0","0","0","0","0","0","0","0","0","70" +"30902","-1","","","","","Cataclysm's Edge","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","195738","978692","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","151","-1","0","0","386","0","0","0","0","580","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","75","49","0","0","0","0","0","0","0","0","70" +"30903","-1","","","","","Legguards of Endless Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110003","550019","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","1535","0","0","0","0","0","0","0","0","0","0","0","0","1650","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","70","61","46","19","0","0","0","0","0","0","70" +"30904","-1","","","","","Savior's Grasp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110394","551970","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","1535","0","0","0","0","0","0","0","0","0","0","0","0","1886","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","69","48","0","0","0","0","0","0","0","70" +"30905","-1","","","","","Midnight Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71583","357915","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","474","0","0","0","0","0","0","0","254","0","0","0","4","2","3","0","8","0","0","1","0","32","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","64","29","0","0","0","0","0","0","0","70" +"30906","-1","","","","","Bristleblitz Striker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107792","538963","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","151","-1","0","0","201","0","0","0","0","374","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","25","28","0","0","0","0","0","0","0","0","70" +"30907","-1","","","","","Mail of Fevered Pursuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86568","432843","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","32767","0","0","0","0","0","0","0","0","0","0","0","0","1055","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","49","66","29","0","0","0","0","0","0","0","70" +"30908","-1","","","","","Apostle of Argus","0.4","0","-64.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","186039","930195","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","151","-1","0","0","353","0","0","0","0","530","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","59","62","0","0","0","0","0","0","0","0","70" +"30909","-1","","","","","Antonidas's Aegis of Rapt Concentration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95599","477996","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","6336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","28","20","20","0","0","0","0","0","0","0","70" +"30910","-1","","","","","Tempest of Chaos","0.6","0","-64.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","149931","749656","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","151","-1","0","0","133","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","30","22","24","17","0","0","0","0","0","0","70" +"30911","-1","","","","","Scepter of Purification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","24","17","25","0","0","0","0","0","0","0","70" +"30912","-1","","","","","Leggings of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60418","302092","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","221","0","0","0","0","0","0","0","254","0","0","0","4","4","4","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","38","0","0","0","0","0","0","0","0","70" +"30913","-1","","","","","Robes of Rhonin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60635","303177","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","32767","0","0","0","0","0","0","0","0","0","0","0","0","253","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","55","38","24","27","0","0","0","0","0","0","70" +"30914","-1","","","","","Belt of the Crescent Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35696","178482","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","19","36","25","0","0","0","0","0","0","70" +"30915","-1","","","","","Belt of Seething Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50444","252224","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","36","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","48","38","37","0","0","0","0","0","0","0","70" +"30916","-1","","","","","Leggings of Channeled Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57527","287637","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","21","6","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","28","18","34","28","0","0","0","0","0","70" +"30917","-1","","","","","Razorfury Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54128","270640","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","55","23","0","0","0","0","0","0","0","70" +"30918","-1","","","","","Hammer of Atonement","0.6","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144864","724324","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","141","32767","0","0","126","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","21","23","0","0","0","0","0","0","0","70" +"30919","-1","","","","","Valestalker Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43616","218082","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","36","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","36","27","25","18","0","0","0","0","0","0","70" +"30920","-1","","","","","QR 10574 Cloth Mage Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30018","150094","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","21","11","0","0","0","0","0","0","0","0" +"30921","-1","","","","","QR 10637 Cloth Mage Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30126","150632","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","15","14","28","10","0","0","0","0","0","0","0" +"30922","-1","","","","","Ata'mal Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22675","113378","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","1","2","0","16","14","21","0","0","0","0","0","0","0","0" +"30923","-1","","","","","Grom'tor's Bloodied Bandage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15170","75854","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","12","11","15","0","0","0","0","0","0","0","0" +"30924","-1","","","","","Gloves of the High Magus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15901","79505","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","90","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","21","0","0","0","0","0","0","0","0","0","0","10","3","0","13","18","10","22","0","0","0","0","0","0","0" +"30925","-1","","","","","Spaulders of the Torn-heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24553","122766","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","21","0","0","0","0","0","0","0","0","0","0","3","3","0","7","8","10","18","0","0","0","0","0","0","0" +"30926","-1","","","","","Ashwalker's Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20879","104396","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","8","12","19","0","0","0","0","0","0","0" +"30927","-1","","","","","Earthmender's Bracer of Shattering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14314","71570","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","9","12","0","0","0","0","0","0","0","0","0" +"30928","-1","","","","","Sketh'lon Survivor's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28046","140231","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","31","16","0","0","0","0","0","0","0","0","0" +"30929","-1","","","","","Soothsayer's Kilt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28151","140757","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","31","16","25","0","0","0","0","0","0","0","0" +"30930","-1","","","","","Grips of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14474","72370","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","18","11","10","0","0","0","0","0","0","0","0" +"30931","-1","","","","","Ghostly Headwrap","0","0","143","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21789","108948","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","1","2","0","11","16","16","0","0","0","0","0","0","0","0" +"30932","-1","","","","","Akama's Sash","0","0","112","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16799","83997","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","83","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","7","18","10","0","0","0","0","0","0","0","0" +"30933","-1","","","","","Hauberk of Karabor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42153","210769","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","0","0","0","0","0","0","0","0","0","0","0","5","3","0","25","18","12","0","0","0","0","0","0","0","0" +"30934","-1","","","","","QR 10574 Leather Rogue Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36719","183599","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","39","24","0","0","0","0","0","0","0","0","0" +"30935","-1","","","","","QR 10637 Leather Rogue Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27638","138190","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","16","0","0","0","0","0","0","0","0","0" +"30936","-1","","","","","Eva's Strap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18492","92463","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","32","31","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","16","12","0","0","0","0","0","0","0","0","0" +"30937","-1","","","","","Earthmender's Fists of Undoing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18559","92799","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","1535","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","18","0","0","0","0","0","0","0","0","0" +"30938","-1","","","","","Azurestrike Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27273","136366","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","11","10","0","0","0","0","0","0","0","0" +"30939","-1","","","","","Felboar Hide Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32306","161534","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","7","0","0","0","0","0","0","0","0","0","0","0","8","3","0","18","9","15","0","0","0","0","0","0","0","0" +"30940","-1","","","","","Aged Leather Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17421","87108","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","20","0","0","0","0","0","0","0","0","0","0" +"30941","-1","","","","","Ash Tempered Legguards","0.2","0","250","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34142","170710","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","225","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","16","31","29","0","0","0","0","0","0","0","0" +"30942","-1","","","","","Manimal's Cinch","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17556","87781","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","3","4","7","0","0","0","0","0","0","0","0","0","0","0","6","2","0","12","23","24","0","0","0","0","0","0","0","0" +"30943","-1","","","","","Verdant Gloves","0","0","220","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20303","101519","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","1535","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","14","27","26","0","0","0","0","0","0","0","0" +"30944","-1","","","","","Umberhowl's Collar","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20381","101907","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","0","0","0","0","0","0","0","0","0","0","0","9","3","0","10","20","22","0","0","0","0","0","0","0","0" +"30945","-1","""It's not mine..."" -Grom'tor","","","","Grom'tor's Friend's Cousin's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35512","177562","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","21","0","0","0","0","0","0","0","0","0","0","0","5","2","0","21","15","11","0","0","0","0","0","0","0","0" +"30946","-1","","","","","Mooncrest Headdress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26096","130482","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","209","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","16","0","0","0","0","0","0","0","0","0" +"30947","-1","","","","","Crimson Mail Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41907","209538","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","14","16","0","0","0","0","0","0","0","0" +"30948","-1","","","","","Sunfury Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49654","248272","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","0","0","0","0","0","0","0","0","0","0","0","0","7","3","0","25","12","0","0","0","0","0","0","0","0","0" +"30949","-1","","","","","QR 10574 Mail Hunter Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31218","156091","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","30","18","0","0","0","0","0","0","0","0","0" +"30950","-1","","","","","Darkhunter's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21188","105940","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","0","0","0","0","0","0","0","0","0","0","0","6","2","0","10","15","10","0","0","0","0","0","0","0","0" +"30951","-1","","","","","Ar'tor's Mainstay","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25103","125519","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","387","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","18","11","0","0","0","0","0","0","0","0","0" +"30952","-1","","","","","Earthmender's Crimson Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32948","164740","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","8","12","0","0","0","0","0","0","0","0" +"30953","-1","","","","","Boots of the Skybreaker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33069","165349","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","15","22","0","0","0","0","0","0","0","0" +"30954","-1","","","","","QR 10637 Mail Hunter Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20812","104060","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","32","7","0","0","0","0","0","0","0","0","0","0","0","9","2","0","7","7","10","0","0","0","0","0","0","0","0" +"30955","-1","","","","","Crown of Cinders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32370","161850","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","21","20","30","0","0","0","0","0","0","0","0" +"30956","-1","","","","","Oronok's Old Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22189","110945","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","7","0","0","0","0","0","0","0","0","0","0","0","9","2","0","12","11","16","0","0","0","0","0","0","0","0" +"30957","-1","","","","","Oronok's Old Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45695","228479","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","5","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","21","16","0","0","0","0","0","0","0","0","0" +"30958","-1","","","","","Blackened Chain Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31251","156258","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","12","0","0","0","0","0","0","0","0","0" +"30959","-1","","","","","Torn-heart Family Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48587","242935","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","1050","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","39","21","24","0","0","0","0","0","0","0","0" +"30960","-1","","","","","Runed Sketh'lon Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47610","238050","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","895","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","7","0","0","0","0","0","0","0","0","0","0","0","7","2","0","38","21","24","0","0","0","0","0","0","0","0" +"30961","-1","","","","","Ash-Covered Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36652","183264","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","42","28","27","0","0","0","0","0","0","0","0" +"30962","-1","","","","","Borak's Belt of Bravery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28475","142378","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","622","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","26","26","24","0","0","0","0","0","0","0","0" +"30963","-1","","","","","QR 10574 Plate Warrior Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24419","122097","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","30","18","0","0","0","0","0","0","0","0" +"30964","-1","","","","","Skybreaker's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37072","185361","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","21","21","31","0","0","0","0","0","0","0","0" +"30965","-1","","","","","QR 10637 Plate Warrior Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37209","186047","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","30","16","18","0","0","0","0","0","0","0","0" +"30966","-1","","","","","Singed Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24490","122454","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","448","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","21","12","13","0","0","0","0","0","0","0","0" +"30967","-1","","","","","The Hands of Fate","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29018","145092","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","34","21","18","0","0","0","0","0","0","0","0" +"30968","-1","","","","","Earthmender's Plated Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37632","188162","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","32767","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","20","18","0","0","0","0","0","0","0","0" +"30969","-1","","","","","Onslaught Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2902","0","0","0","0","672","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","41","30","49","0","0","0","0","0","0","0","70" +"30970","-1","","","","","Onslaught Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","673","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","7","12","13","15","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","18","50","32","27","27","0","0","0","0","0","70" +"30971","-1","","","","","Torn-heart Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21785","108926","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","13","0","0","0","0","0","0","0","0","0" +"30972","-1","","","","","Onslaught Battle-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2927","0","0","0","0","672","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","41","54","0","0","0","0","0","0","0","70" +"30973","-1","","","","","Band of Anguish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40860","163440","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","7","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","10","0","0","0","0","0","0","0","0","0" +"30974","-1","","","","","Onslaught Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","673","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","1","0","0","1","0","4","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","23","28","48","36","30","0","0","0","0","0","70" +"30975","-1","","","","","Onslaught Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2952","0","0","0","0","672","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","1","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","53","34","54","16","0","0","0","0","0","0","70" +"30976","-1","","","","","Onslaught Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","673","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","1","0","0","1","0","14","3","7","12","15","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","28","37","69","37","23","0","0","0","0","0","70" +"30977","-1","","","","","Onslaught Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","3015","0","0","0","0","672","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","62","41","55","14","0","0","0","0","0","0","70" +"30978","-1","","","","","Onslaught Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","673","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","3","7","12","14","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","24","78","40","41","0","0","0","0","0","0","70" +"30979","-1","","","","","Onslaught Shoulderblades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2887","0","0","0","0","672","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","39","34","0","0","0","0","0","0","0","70" +"30980","-1","","","","","Onslaught Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2876","0","0","0","0","673","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","7","12","15","14","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","53","25","17","31","0","0","0","0","0","0","70" +"30981","-1","","","","","Grom'tor's Pendant of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","36368","145472","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","22","16","0","0","0","0","0","0","0","0","0" +"30982","-1","","","","","Lightbringer Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2941","0","0","0","0","680","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","51","37","25","19","0","0","0","0","0","0","70" +"30983","-1","","","","","Lightbringer Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","3152","0","0","0","0","681","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","29","0","0","0","0","0","0","0","0","70" +"30984","-1","","","","","Spellbreaker's Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52160","260801","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","3615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","22","10","0","0","0","0","0","0","0","0","0" +"30985","-1","","","","","Lightbringer Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","679","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","5","12","13","14","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","44","28","30","22","30","0","0","0","0","0","70" +"30986","-1","","","","","Bloodforged Guard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44524","222621","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","3278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","3","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","31","12","9","0","0","0","0","0","0","0","0" +"30987","-1","","","","","Lightbringer Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2871","0","0","0","0","679","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","27","28","37","0","0","0","0","0","0","70" +"30988","-1","","","","","Lightbringer Greathelm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","681","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","37","36","0","0","0","0","0","0","0","70" +"30989","-1","","","","","Lightbringer War-Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2873","0","0","0","0","680","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","61","60","32","23","0","0","0","0","0","0","70" +"30990","-1","","","","","Lightbringer Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2889","0","0","0","0","680","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","56","48","31","31","21","0","0","0","0","0","70" +"30991","-1","","","","","Lightbringer Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","679","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","1","0","0","1","0","7","5","12","15","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","69","22","31","23","0","0","0","0","0","0","70" +"30992","-1","","","","","Lightbringer Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2872","0","0","0","0","681","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","33","28","0","0","0","0","0","0","0","70" +"30993","-1","","","","","Lightbringer Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2941","0","0","0","0","680","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","68","48","22","38","0","0","0","0","0","0","70" +"30994","-1","","","","","Lightbringer Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","3151","0","0","0","0","681","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","45","34","0","0","0","0","0","0","0","70" +"30995","-1","","","","","Lightbringer Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2976","0","0","0","0","679","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","31","37","37","0","0","0","0","0","0","70" +"30996","-1","","","","","Lightbringer Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2974","0","0","0","0","681","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","29","18","0","0","0","0","0","0","0","70" +"30997","-1","","","","","Lightbringer Shoulderbraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2900","0","0","0","0","680","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","50","37","17","19","0","0","0","0","0","0","70" +"30998","-1","","","","","Lightbringer Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2876","0","0","0","0","679","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","50","24","25","23","0","0","0","0","0","0","70" +"30999","-1","","","","","Ashtongue Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79950","399750","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","109","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","10","0","0","0","0","0","0","0","0","0" +"31000","-1","","","","","Bloodwarder's Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60195","300975","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","109","-1","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","26","3","3","8","7","0","0","0","0","0","0","0","0","0" +"31001","-1","","","","","Gronnstalker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2902","0","0","0","0","669","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","35","31","21","13","0","0","0","0","0","0","70" +"31002","-1","","","","","Summoner's Blade","0.6","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80880","404401","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","109","-1","0","0","122","0","0","0","0","227","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","20","11","10","0","0","0","0","0","0","0","0" +"31003","-1","","","","","Gronnstalker's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2952","0","0","0","0","669","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","45","29","0","0","0","0","0","0","0","70" +"31004","-1","","","","","Gronnstalker's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2877","0","0","0","0","669","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","52","37","19","0","0","0","0","0","0","70" +"31005","-1","","","","","Gronnstalker's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3149","0","0","0","0","669","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","43","28","19","0","0","0","0","0","0","70" +"31006","-1","","","","","Gronnstalker's Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2887","0","0","0","0","669","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","39","17","0","0","0","0","0","0","0","70" +"31007","-1","","","","","Skyshatter Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3151","0","0","0","0","683","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","39","0","0","0","0","0","0","0","0","70" +"31008","-1","","","","","Skyshatter Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","684","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","31","26","19","0","0","0","0","0","0","70" +"31009","-1","","","","","Wildcaller","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106568","532843","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","109","-1","0","0","195","0","0","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","45","24","20","0","0","0","0","0","0","0","0" +"31010","-1","","","","","Slayer's Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106956","534781","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","109","-1","0","0","223","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","51","21","0","0","0","0","0","0","0","0","0" +"31011","-1","","","","","Skyshatter Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3015","0","0","0","0","682","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","45","30","21","13","0","0","0","0","0","70" +"31012","-1","","","","","Skyshatter Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","683","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","34","0","0","0","0","0","0","0","0","70" +"31013","-1","","","","","Ceremonial Kris","0.6","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86486","432434","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","109","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","20","10","0","0","0","0","0","0","0","0","0" +"31014","-1","","","","","Skyshatter Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","684","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","37","36","0","0","0","0","0","0","0","70" +"31015","-1","","","","","Skyshatter Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2868","0","0","0","0","682","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","5","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","53","55","27","28","20","0","0","0","0","0","70" +"31016","-1","","","","","Skyshatter Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2865","0","0","0","0","683","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","48","32","0","0","0","0","0","0","0","0","70" +"31017","-1","","","","","Skyshatter Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2889","0","0","0","0","684","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","41","27","17","0","0","0","0","0","0","70" +"31018","-1","","","","","Skyshatter Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2927","0","0","0","0","682","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","5","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","46","67","23","27","15","0","0","0","0","0","70" +"31019","-1","","","","","Skyshatter Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2881","0","0","0","0","683","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","44","0","0","0","0","0","0","0","0","70" +"31020","-1","","","","","Skyshatter Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3153","0","0","0","0","684","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","42","29","20","0","0","0","0","0","0","70" +"31021","-1","","","","","Skyshatter Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","3015","0","0","0","0","682","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","67","31","39","21","0","0","0","0","0","70" +"31022","-1","","","","","Skyshatter Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2974","0","0","0","0","683","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","31","0","0","0","0","0","0","0","0","70" +"31023","-1","","","","","Skyshatter Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2900","0","0","0","0","684","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","31","27","11","0","0","0","0","0","0","70" +"31024","-1","","","","","Skyshatter Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2879","0","0","0","0","682","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","5","0","0","1","0","4","7","5","32","31","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","48","19","26","11","0","0","0","0","0","70" +"31025","-1","","","","","Idol of the Avenger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","24577","122885","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31026","-1","","","","","Slayer's Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3114","0","0","0","0","668","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","36","18","0","0","0","0","0","0","0","70" +"31027","-1","","","","","Slayer's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2873","0","0","0","0","668","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","3","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","55","28","15","0","0","0","0","0","0","70" +"31028","-1","","","","","Slayer's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","668","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","8","0","0","1","0","3","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","55","28","15","0","0","0","0","0","0","70" +"31029","-1","","","","","Slayer's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3114","0","0","0","0","668","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","54","45","0","0","0","0","0","0","0","70" +"31030","-1","","","","","Slayer's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2973","0","0","0","0","668","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","37","0","0","0","0","0","0","0","0","70" +"31031","-1","","","","","Stormfury Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25116","125582","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31032","-1","","","","","Thunderheart Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3151","0","0","0","0","678","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","31","27","0","0","0","0","0","0","0","70" +"31033","-1","","","","","Libram of Righteous Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25295","126477","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31034","-1","","","","","Thunderheart Gauntlets","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3015","0","0","0","0","676","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","32","34","20","0","0","0","0","0","0","70" +"31035","-1","","","","","Thunderheart Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3153","0","0","0","0","677","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","30","22","21","12","0","0","0","0","0","70" +"31036","-1","""I was a lot of things..."" -Oronok Torn-heart","","","","Oronok's Ancient Scepter","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","108344","541721","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","0","0","242","0","0","0","0","363","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","21","0","0","0","0","0","0","0","0","0","0","0","17","3","0","45","27","25","0","0","0","0","0","0","0","0" +"31037","-1","","","","","Thunderheart Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2872","0","0","0","0","678","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","42","28","0","0","0","0","0","0","0","70" +"31038","-1","It is now as it should be... -Spirit of Earth","","","","Staff of the Redeemer","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","101456","507282","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","108","-1","0","0","242","0","0","0","0","363","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","45","27","0","0","0","0","0","0","0","0","0" +"31039","-1","","","","","Thunderheart Cover","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2927","0","0","0","0","676","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","53","39","49","20","0","0","0","0","0","0","70" +"31040","-1","","","","","Thunderheart Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","677","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","32","28","29","13","0","0","0","0","0","70" +"31041","-1","","","","","Thunderheart Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","678","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","34","33","0","0","0","0","0","0","0","70" +"31042","-1","","","","","Thunderheart Chestguard","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","676","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","53","36","51","18","0","0","0","0","0","0","70" +"31043","-1","","","","","Thunderheart Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","677","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","8","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","40","27","25","17","0","0","0","0","0","70" +"31044","-1","","","","","Thunderheart Leggings","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3015","0","0","0","0","676","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","4","3","7","5","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","53","41","49","12","27","0","0","0","0","0","70" +"31045","-1","","","","","Thunderheart Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3098","0","0","0","0","678","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","34","40","36","0","0","0","0","0","0","0","70" +"31046","-1","","","","","Thunderheart Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","3153","0","0","0","0","677","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","48","27","20","21","0","0","0","0","0","70" +"31047","-1","","","","","Thunderheart Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2974","0","0","0","0","678","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","31","19","0","0","0","0","0","0","0","70" +"31048","-1","","","","","Thunderheart Pauldrons","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2879","0","0","0","0","676","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","36","34","12","0","0","0","0","0","0","70" +"31049","-1","","","","","Thunderheart Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","677","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","8","0","0","1","0","7","5","6","18","21","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","31","19","14","13","0","0","0","0","0","70" +"31050","-1","","","","","Gloves of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","2909","0","0","0","0","670","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","57","27","19","11","0","0","0","0","0","0","70" +"31051","-1","","","","","Hood of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","670","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","55","36","16","32","0","0","0","0","0","0","70" +"31052","-1","","","","","Robe of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","670","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","66","29","28","0","0","0","0","0","0","0","70" +"31053","-1","","","","","Leggings of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2909","0","0","0","0","670","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","44","37","19","0","0","0","0","0","0","70" +"31054","-1","","","","","Mantle of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","670","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","22","21","13","0","0","0","0","0","0","70" +"31055","-1","","","","","Gloves of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","671","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","26","21","19","20","0","0","0","0","0","70" +"31056","-1","","","","","Cowl of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2868","0","0","0","0","671","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","40","28","29","13","0","0","0","0","0","70" +"31057","-1","","","","","Robes of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","671","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","39","31","23","13","0","0","0","0","0","70" +"31058","-1","","","","","Leggings of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3153","0","0","0","0","671","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","21","18","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","47","29","29","20","0","0","0","0","0","70" +"31059","-1","","","","","Mantle of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","671","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","27","21","21","0","0","0","0","0","0","70" +"31060","-1","","","","","Gloves of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","2881","0","0","0","0","675","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","31","27","0","0","0","0","0","0","0","70" +"31061","-1","","","","","Handguards of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","674","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","31","19","0","0","0","0","0","0","0","70" +"31062","-1","This battle axe appears other-worldly...","","","","Torn-heart Axe of Battle","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","103834","519172","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","109","-1","0","0","230","0","0","0","0","346","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","21","5","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","27","30","17","17","30","0","0","0","0","0","0" +"31063","-1","","","","","Cowl of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","675","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","32","33","0","0","0","0","0","0","0","70" +"31064","-1","","","","","Hood of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","674","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","39","27","17","0","0","0","0","0","0","70" +"31065","-1","","","","","Shroud of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","674","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","39","20","21","0","0","0","0","0","0","70" +"31066","-1","","","","","Vestments of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2872","0","0","0","0","675","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","48","32","36","0","0","0","0","0","0","0","70" +"31067","-1","","","","","Leggings of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3153","0","0","0","0","674","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","41","28","28","0","0","0","0","0","0","70" +"31068","-1","","","","","Breeches of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3151","0","0","0","0","675","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","33","34","0","0","0","0","0","0","0","70" +"31069","-1","","","","","Mantle of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2974","0","0","0","0","675","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","30","19","0","0","0","0","0","0","0","70" +"31070","-1","","","","","Shoulderpads of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","674","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","27","12","17","0","0","0","0","0","0","70" +"31071","-1","""We spill blood for just cause..."" -Oronok Torn-heart","","","","Grom'tor's Charge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79665","398325","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","109","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","3","0","0","0","0","0","0","0","0","0","0","0","13","3","0","30","11","7","0","0","0","0","0","0","0","0" +"31072","-1","A gift from a forgotten friend...","","","","Lohn'goron, Bow of the Torn-heart","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","59981","299907","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","109","-1","0","0","114","0","0","0","0","213","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","15","3","2","12","0","0","0","0","0","0","0","0","0","0" +"31073","-1","","","","","Borak's Reminder","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80285","401426","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","109","-1","0","0","84","0","0","0","0","157","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","11","7","0","0","0","0","0","0","0","0","0" +"31074","-1","","","","","Amulet of the Torn-heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","30","0","0","0","0","0","0","0","0","0","0" +"31075","-1","","","","","Evoker's Mark of the Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"31076","-1","","","","","Spellsword's Mark of the Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","9","23","12","0","0","0","0","0","0","0","0" +"31077","-1","","","","","Slayer's Mark of the Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","10","0","0","0","0","0","0","0","0","0" +"31078","-1","","","","","Protector's Mark of the Redemption","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","12","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","22","0","0","0","0","0","0","0","0","0" +"31079","-1","","","","","Mercurial Adamantite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31080","-1","Required by jewelcrafters to transmute mercurial adamantite.","","","","Mercurial Stone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31081","-1","","","","","Monster - Sword, 2H Fathom-Lord Karathress","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31082","-1","","","","","Monster - Mace, 2H Fathom-Lord Karathress","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34963","174815","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","115","-1","0","0","144","0","0","0","0","216","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","37","36","0","0","0","0","0","0","0","0","70" +"31083","-1","","","","","Monster - Bow, Val'zareq's","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","1","8","1","1","1","128","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","7","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"31084","-1","Unlocks the Arcatraz satellite of Tempest Keep.","","","","Key to the Arcatraz","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31085","-1","","","","","Top Shard of the Arcatraz Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31086","-1","","","","","Bottom Shard of the Arcatraz Key","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31087","-1","","","","","Ata'mal Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31088","-1","","","","","Tainted Core","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8454144","24580","8","0","0","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31089","-1","","","","","Chestguard of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31090","-1","","","","","Chestguard of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31091","-1","","","","","Chestguard of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31092","-1","","","","","Gloves of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31093","-1","","","","","Gloves of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31094","-1","","","","","Gloves of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31095","-1","","","","","Helm of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31096","-1","","","","","Helm of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31097","-1","","","","","Helm of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31098","-1","","","","","Leggings of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31099","-1","","","","","Leggings of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31100","-1","","","","","Leggings of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31101","-1","","","","","Pauldrons of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31102","-1","","","","","Pauldrons of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31103","-1","","","","","Pauldrons of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31104","-1","","","","","Evoker's Helmet of Second Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25765","128825","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","15","8","24","0","0","0","0","0","0","0" +"31105","-1","","","","","Overlord's Helmet of Second Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45161","225805","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","0","0","0","0","0","0","0","0","0","0","0","0","898","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","1","0","0","1","0","7","4","31","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","29","13","24","0","0","0","0","0","0","0" +"31106","-1","","","","","Stalker's Helmet of Second Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38922","194614","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","254","0","0","0","4","4","4","0","5","0","0","1","0","7","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","31","8","0","0","0","0","0","0","0","0" +"31107","-1","","","","","Shamanistic Helmet of Second Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39062","195312","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","5","0","0","1","0","7","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","24","15","0","0","0","0","0","0","0","0" +"31108","-1","","","","","Kor'kron Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31109","-1","","","","","Stealther's Helmet of Second Sight","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32781","163907","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","8","0","0","1","0","7","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","24","13","0","0","0","0","0","0","0","0" +"31110","-1","","","","","Druidic Helmet of Second Sight","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32897","164488","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","8","0","0","1","0","7","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","12","24","15","0","0","0","0","0","0","0","0" +"31111","-1","","","","","Uvuros Hide Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13825","69126","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","0","0","0","0","0","0","0","0","0","0","0","10","2","0","16","12","11","0","0","0","0","0","0","0","0" +"31112","-1","","","","","Uvuros Hide Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26020","130103","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","12","0","0","0","0","0","0","0","0","0" +"31113","-1","","","","","Violet Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","36","0","0","0","0","0","0","0","0","0","0" +"31114","-1","","","","","Uvuros Hide Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20977","104889","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","12","0","0","0","0","0","0","0","0","0" +"31115","-1","","","","","Uvuros Plated Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36782","183912","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","16","23","0","0","0","0","0","0","0","0" +"31116","-1","Matches a Red or Blue Socket.","","","","Infused Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","501","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31117","-1","Matches a Red or Blue Socket.","","","","Soothing Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","502","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31118","-1","Matches a Red or Blue Socket.","","","","Pulsing Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31119","-1","Excellent craftsmanship.","","","","Wyrmcult Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31120","-1","","","","","Meeting Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10719","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31121","-1","","","","","Costume Scraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31122","-1","","","","","Overseer Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31123","-1","It's gathering information vital to gnomish engineering.","","","","Spinning Nether-weather Vane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31124","-1","","","","","Nether-weather Vane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31125","-1","","","","","Boots of the Decimator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33546","167732","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","32767","0","0","0","0","0","0","0","0","0","0","0","0","600","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","37","19","0","0","0","0","0","0","0","0","60" +"31126","-1","","","","","Gloves of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17317","86586","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","1535","0","0","0","0","0","0","0","0","0","0","0","0","141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","23","20","21","0","0","0","0","0","0","0","60" +"31127","-1","","","","","Hauberk of Totemic Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41706","208532","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","23","15","21","15","0","0","0","0","0","0","60" +"31128","-1","","","","","Rexxar's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31129","-1","","","","","Blackwhelp Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31130","-1","It squirms around quite a bit. Good thing it hasn't decided to breathe its fire yet.","","","","Wyrmcult Blackwhelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31131","-1","","","","","Sash of Silent Blades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16005","80025","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","28","11","0","0","0","0","0","0","0","0","60" +"31132","-1","","","","","Crust Burster Venom Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31133","-1","","","","","Leggings of Concentrated Darkness","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25608","128040","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","15","24","14","0","0","0","0","0","0","0","60" +"31134","-1","","","","","Blade of Misfortune","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82877","414389","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","85","-1","0","0","187","0","0","0","0","281","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","29","28","45","0","0","0","0","0","0","0","60" +"31135","-1","","","","","Baron Sablemane's Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31136","-1","","","","","Breastplate of Blade Turning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48207","241036","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","14","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","38","22","21","0","0","0","0","0","0","0","61" +"31137","-1","","","","","Gauntlets of Purification","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24331","121657","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","564","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","25","16","17","0","0","0","0","0","0","0","61" +"31138","-1","","","","","Storm Lord's Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19802","99013","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","0","0","0","0","0","0","0","0","0","61" +"31139","-1","","","","","Fist of Reckoning","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69628","348144","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","88","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","16","10","0","0","0","0","0","0","0","0","61" +"31140","-1","","","","","Cloak of Entropy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20965","104827","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","11","10","0","0","0","0","0","0","0","0","61" +"31141","-1","","","","","Kodohide Drum","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31142","-1","","","","","Blade of Trapped Knowledge","0.6","0","-12.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66009","330046","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","88","-1","0","0","56","0","0","0","0","106","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","0","0","0","0","0","0","0","0","0","61" +"31143","-1","","","","","Shroud of Frenzy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21832","109162","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","63","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","4","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","21","16","0","0","0","0","0","0","0","0","62" +"31144","-1","","","","","Spirit's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31145","-1","","","","","Headdress of the Sleeper","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25499","127497","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","193","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","5","6","31","-1","-1","-1","-1","0","0","0","0","1","3","0","26","25","24","14","11","14","0","0","0","0","62" +"31146","-1","","","","","Rexxar's Battle Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31147","-1","","","","","Pendant of Cunning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28836","115344","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","20","0","0","0","0","0","0","0","0","0","62" +"31148","-1","","","","","Demon Hide Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27782","138912","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","18","13","11","0","0","0","0","0","0","61" +"31149","-1","","","","","Gloves of Pandemonium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13599","67998","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","21","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","22","10","0","0","0","0","0","0","0","62" +"31150","-1","","","","","Gloves of Piety","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13599","67998","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","17","27","0","0","0","0","0","0","0","0","62" +"31151","-1","","","","","Girdle of Siege","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24635","123178","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","540","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","30","18","18","0","0","0","0","0","0","0","63" +"31152","-1","","","","","Chestguard of Illumination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50352","251762","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","961","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","42","19","24","0","0","0","0","0","0","0","63" +"31153","-1","","","","","Axe of the Legion","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72203","361018","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","94","-1","0","0","95","0","0","0","0","177","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","4","7","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","16","15","14","0","0","0","0","0","0","0","63" +"31154","-1","","","","","Bronze Torc","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","21" +"31155","-1","","","","","Drakescale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58153","290766","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","65","0","0","0","0","0","0","0","0","0","0","0","1106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31156","-1","","","","","Drakescale Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50031","250158","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","64","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31157","-1","","","","","Drakehide Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41843","209219","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","63","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31158","-1","","","","","Drakeweave Raiment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33599","167995","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","61","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31159","-1","","","","","Felstone Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44177","220886","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","65","0","0","0","0","0","0","0","0","0","0","0","829","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31160","-1","","","","","Felstone Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38247","191236","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","64","0","0","0","0","0","0","0","0","0","0","0","464","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31161","-1","","","","","Felstone Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31844","159224","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","63","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31162","-1","","","","","Felstone Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25568","127844","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","61","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31163","-1","","","","","Nethersteel Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28611","143057","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","65","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31164","-1","","","","","Nethersteel Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22786","113932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","64","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31165","-1","","","","","Nethersteel-Reinforced Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18988","94943","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","63","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31166","-1","","","","","Nethersteel-Lined Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15259","76297","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","61","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31167","-1","","","","","[PH] Gnome Cannon Reagent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31168","-1","","","","","Demon-Forged Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43954","219771","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","82","-1","65","0","0","0","0","0","0","0","0","0","0","0","844","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31169","-1","","","","","Sketh'lon War Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31170","-1","","","","","Demon-Forged Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37218","186093","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","82","-1","64","0","0","0","0","0","0","0","0","0","0","0","475","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31172","-1","","","","","Demon-Cured Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31015","155077","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","82","-1","63","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31173","-1","","","","","Boots of Savagery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31634","158172","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","370","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","27","18","18","0","0","0","0","0","0","0","63" +"31174","-1","","","","","Demonweave Raiment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24812","124062","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","82","-1","61","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31175","-1","","","","","Blade Dancer's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17496","87484","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","18","0","0","0","0","0","0","0","0","0","63" +"31176","-1","","","","","Rockwurm Plate Handguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24964","124821","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","65","0","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31177","-1","","","","","Rockwurm Scale Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20399","101997","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","64","0","0","0","0","0","0","0","0","0","0","0","327","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31178","-1","","","","","Amulet of Unstable Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38775","155100","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","23","0","0","0","0","0","0","0","0","0","63" +"31179","-1","","","","","Rockwurm Hide Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17928","89640","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","63","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31180","-1","","","","","Gauntlets of the Skullsplitter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25335","126679","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","31","18","12","0","0","0","0","0","0","0","64" +"31181","-1","","","","","Rockwurm Hide Handwraps","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13599","67998","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","61","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31182","-1","","","","","Legion Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33546","167732","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","65","0","0","0","0","0","0","0","0","0","0","0","709","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31183","-1","","","","","Legion Coif","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31627","158135","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","64","0","0","0","0","0","0","0","0","0","0","0","399","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31184","-1","","","","","Legion Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24007","120037","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","63","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31185","-1","","","","","Legion Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19206","96030","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","85","-1","61","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","60" +"31186","-1","","","","","Braxxis' Staff of Slumber","0.4","0","-16.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90367","451835","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","97","-1","0","0","181","0","0","0","0","273","0","0","0","0","550","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","39","0","0","0","0","0","0","0","0","0","64" +"31187","-1","","","","","Boots of the Pathfinder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32533","162667","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","381","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","23","19","0","0","0","0","0","0","0","0","64" +"31188","-1","","","","","Crocolisk Scale Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24635","123178","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","65","0","0","0","0","0","0","0","0","0","0","0","420","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","63" +"31189","-1","","","","","Crocolisk Scale Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20996","104981","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","64","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","63" +"31190","-1","","","","","The Dreamer's Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26991","134956","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","32767","0","0","0","0","0","0","0","0","0","0","0","0","187","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","5","6","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","23","21","16","12","11","0","0","0","0","0","68" +"31191","-1","","","","","Crocolisk Hide Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17496","87484","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","63","0","0","0","0","0","0","0","0","0","0","0","107","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","63" +"31192","-1","","","","","Crocolisk Hide Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13997","69987","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","61","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","63" +"31193","-1","","","","","Blade of Unquenched Thirst","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71976","359883","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","97","-1","0","0","53","0","0","0","0","98","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","64" +"31194","-1","","","","","Gronn-Blessed Warbeads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37731","150924","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","64" +"31195","-1","","","","","Voidplate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27778","138894","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","65","0","0","0","0","0","0","0","0","0","0","0","589","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31196","-1","","","","","Amulet of Sanctification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8788","35155","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","13","0","0","0","0","0","0","0","0","0","64" +"31197","-1","","","","","Voidscale Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22786","113932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","64","0","0","0","0","0","0","0","0","0","0","0","330","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31198","-1","","","","","Voidhide Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18988","94943","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","63","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31199","-1","","","","","Voidweave Cilice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15191","75955","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","61","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31200","-1","","","","","Shield of the Wayward Footman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47338","236690","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","3329","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","24","16","18","0","0","0","0","0","0","0","65" +"31201","-1","","","","","Illidari Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24836","124181","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","66","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31202","-1","","","","","Girdle of Divine Blessing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26036","130180","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","16","22","18","0","0","0","0","0","0","0","65" +"31203","-1","","","","","Arcane Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31204","-1","","","","","The Gunblade","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55282","276412","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","100","-1","0","0","112","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","0","0","0","0","0","0","0","0","0","0","65" +"31205","-1","","","","","Monster - Axe, Eclipsion Soldier C04 Fire","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31206","-1","","","","","Monster - Axe, Insano Eclipsion Soldier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3900","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31207","-1","","","","","Monster - Sword2H, Eclipsion Soldier","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31208","-1","","","","","Monster - Mace2H, Eclipsion Soldier","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31209","-1","","","","","Chimaerascale Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56839","284195","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","65","0","0","0","0","0","0","0","0","0","0","0","968","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31210","-1","","","","","Chimaerascale Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48900","244501","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","64","0","0","0","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31211","-1","","","","","Chimaerahide Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40905","204526","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","63","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31212","-1","","","","","Chimaerahide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32848","164241","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","61","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31213","-1","","","","","Abyssal Plate Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41885","209425","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","65","0","0","0","0","0","0","0","0","0","0","0","760","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31214","-1","","","","","Abyssal Mail Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38398","191994","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","64","0","0","0","0","0","0","0","0","0","0","0","426","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31215","-1","","","","","Abyssal Leather Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31973","159868","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","63","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31216","-1","","","","","Abyssal Cloth Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25672","128360","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","61","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31217","-1","","","","","Crimson Beholder Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45002","225014","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","65","0","0","0","0","0","0","0","0","0","0","0","898","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31218","-1","","","","","Fiery Beholder Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35970","179850","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","64","0","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31219","-1","","","","","Emerald Beholder Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29975","149875","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","63","0","0","0","0","0","0","0","0","0","0","0","226","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31220","-1","","","","","Amethyst Beholder Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23980","119900","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","61","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31221","-1","","","","","Illidari Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26736","133680","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","65","0","0","0","0","0","0","0","0","0","0","0","458","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31222","-1","","","","","Headdress of Inner Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36400","182004","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","463","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","32","28","20","0","0","0","0","0","0","0","65" +"31223","-1","","","","","Illidari Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22786","113932","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","64","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31224","-1","","","","","Illidari Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18921","94605","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","63","0","0","0","0","0","0","0","0","0","0","0","115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31225","-1","","","","","Illidari Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15191","75955","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","61","0","0","0","0","0","0","0","0","0","0","0","61","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","66" +"31226","-1","","","","","Leggings of the Sly","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36982","184914","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","224","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","12","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","29","20","28","0","0","0","0","0","0","0","65" +"31227","-1","","","","","Feathered Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24126","120630","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","65","0","0","0","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31228","-1","","","","","Feathered Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20399","101997","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","64","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31229","-1","","","","","Feathered Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16999","84998","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","63","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31230","-1","","","","","Abyss Walker's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23239","116195","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","22","0","0","0","0","0","0","0","0","65" +"31231","-1","","","","","Feathered Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13599","67998","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","61","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31232","-1","","","","","Grim Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35631","178155","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","65","0","0","0","0","0","0","0","0","0","0","0","641","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31233","-1","","","","","Grim Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30735","153676","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","64","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31234","-1","","","","","Crystalblade of the Draenei","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80717","403585","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","103","-1","0","0","70","0","0","0","0","131","0","0","0","0","195","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","18","13","0","0","0","0","0","0","0","0","66" +"31235","-1","","","","","Grim Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25499","127497","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","63","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31236","-1","","","","","Grim Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21834","109173","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","91","-1","61","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","62" +"31237","-1","","","","","Elekk Hide Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40796","203982","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","38","28","20","20","0","0","0","0","0","0","66" +"31238","-1","","","","","Dragonbone Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","81","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","63" +"31239","-1","The outline of Hellfire Citadel is engraved on the back of this mold.","","","","Primed Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","34816","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10754","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"31240","-1","","","","","Scales of the Beast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49481","247407","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","513","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","22","23","0","0","0","0","0","0","0","66" +"31241","-1","The outline of Hellfire Citadel is engraved on the back of this mold.","","","","Primed Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","34816","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10755","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"31242","-1","","","","","Nagascale Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50527","252638","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","65","0","0","0","0","0","0","0","0","0","0","0","790","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31243","-1","","","","","Nagascale Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39605","198027","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","64","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31244","-1","","","","","Nagahide Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33004","165023","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","63","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31245","-1","The outline of Hellfire Citadel is engraved on the back of this mold.","","","","Primed Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31246","-1","","","","","Nagahide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26403","132018","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","61","0","0","0","0","0","0","0","0","0","0","0","106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31247","-1","","","","","Bog Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35821","179109","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","65","0","0","0","0","0","0","0","0","0","0","0","677","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31248","-1","","","","","Bog Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31012","155061","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","64","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31249","-1","","","","","Bog Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24753","123767","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","63","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31250","-1","","","","","Bog Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20737","103685","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","32767","61","0","0","0","0","0","0","0","0","0","0","0","91","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","61" +"31251","-1","The outline of Hellfire Citadel is engraved on the back of this mold.","","","","Unfired Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31252","-1","The outline of Hellfire Citadel is engraved on the back of this mold.","","","","Charred Key Mold","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","34816","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31253","-1","","","","","(Action Figure) Night Elf Druid Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31254","-1","","","","","Striderhide Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21593","107965","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","66","0","0","0","0","0","0","0","0","0","0","0","66","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","64" +"31255","-1","","","","","Cloak of the Craft","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24298","121493","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","70","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","25","13","0","0","0","0","0","0","0","0","66" +"31256","-1","","","","","Silvermoon Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","658","3294","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","163","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31257","-1","","","","","(Action Figure) Troll Priest Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","24","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31258","-1","","","","","Band of Sorrow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","20","0","0","0","0","0","0","0","0","66" +"31259","-1","","","","","(Action Figure) Human Warrior Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31260","-1","","","","","Sketh'lon Commander's Journal - Page 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31261","-1","","","","","Sketh'lon Commander's Journal - Page 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31262","-1","","","","","Sketh'lon Commander's Journal - Page 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31263","-1","","","","","Silvermoon Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","523","2616","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","162","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31264","-1","","","","","Silvermoon Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","420","2101","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","161","0","0","0","0","0","0","0","0","0","0","0","32","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31265","-1","","","","","(Action Figure) Human Warrior Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31266","-1","","","","","(Action Figure) Tauren Hunter Polearm","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31267","-1","","","","","(Action Figure) Gnome Warrior Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","23","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31268","-1","","","","","Abomination Cleaver","0.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1066","5332","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","18","-1","163","0","13","0","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31269","-1","","","","","Ghoul Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1070","5352","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","18","-1","162","0","15","0","0","0","0","29","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31270","-1","","","","","Banshee Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","805","4029","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","18","-1","161","0","13","0","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","0","0","0","0","0","0","0","0","0","0","13" +"31271","-1","","","","","Illidan's Command","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2993","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31272","-1","","","","","Crown of Endless Knowledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24033","120167","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","22","30","23","0","0","0","0","0","0","0","66" +"31273","-1","","","","","Monster - Polearm, Epic D","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","47","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","1" +"31274","-1","","","","","Monster - Polearm, Hellfire D Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31275","-1","","","","","Necklace of Trophies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","4","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","22","15","14","0","0","0","0","0","0","0","67" +"31276","-1","","","","","Boots of Zealotry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40842","204213","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","5","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","22","17","21","0","0","0","0","0","0","0","67" +"31277","-1","","","","","Pathfinder's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","0","0","0","0","0","0","0","0","0","67" +"31278","-1","","","","","Illidari Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31279","-1","The illusion effect of this item only works at the Eclipsion Fields.","","","","Enchanted Illidari Tabard","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","3520","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31280","-1","","","","","Thundercaller's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23383","116916","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","377","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","16","16","18","0","0","0","0","0","0","0","67" +"31281","-1","","","","","Mask of Veiled Death","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29587","147938","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","32767","0","0","0","0","0","0","0","0","0","0","0","0","220","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","19","0","0","0","0","0","0","0","0","67" +"31282","-1","","","","","Shroud of Spiritual Purity","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31177","155888","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","144","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","30","32","0","0","0","0","0","0","0","0","67" +"31283","-1","","","","","Sash of Sealed Fate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15899","79496","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","106","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","15","23","0","0","0","0","0","0","0","0","67" +"31284","-1","","","","","Bracers of Recklessness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28806","144030","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","484","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","29","18","0","0","0","0","0","0","0","0","68" +"31285","-1","","","","","Chestguard of the Talon","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41068","205343","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","36","34","24","0","0","0","0","0","0","0","68" +"31286","-1","","","","","Breastplate of Rapid Striking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47960","239800","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","3","5","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","40","20","20","0","0","0","0","0","0","0","68" +"31287","-1","","","","","Draenei Honor Guard Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51157","255786","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","3615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","16","21","0","0","0","0","0","0","0","0","68" +"31288","-1","","","","","The Master's Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29975","149875","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","24","19","16","0","0","0","0","0","0","0","68" +"31289","-1","","","","","Staff of Divine Infusion","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","99916","499583","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","109","-1","0","0","244","0","0","0","0","367","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","23","50","0","0","0","0","0","0","0","0","68" +"31290","-1","","","","","Band of Dominion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","21","0","0","0","0","0","0","0","0","0","70" +"31291","-1","","","","","Crystalforged War Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107599","537997","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","112","-1","0","0","253","0","0","0","0","380","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","50","27","0","0","0","0","0","0","0","0","69" +"31292","-1","","","","","Crystal Pulse Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52430","262152","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","3711","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","24","0","0","0","0","0","0","0","0","0","69" +"31293","-1","","","","","Girdle of Gale Force","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24576","122883","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","357","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","32","20","0","0","0","0","0","0","0","0","69" +"31294","-1","","","","","Pauldrons of Surging Mana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40363","201819","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","22","24","0","0","0","0","0","0","0","0","69" +"31295","-1","","","","","Chestguard of the Dark Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40961","204806","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","31","32","0","0","0","0","0","0","0","0","69" +"31296","-1","","","","","Monster - Staff, Epic A","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31297","-1","","","","","Robe of the Crimson Order","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32769","163845","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","23","30","0","0","0","0","0","0","0","0","69" +"31298","-1","","","","","Legguards of the Shattered Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58768","293844","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","4","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","32","24","0","0","0","0","0","0","0","70" +"31299","-1","","","","","The Oathkeeper","0.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105351","526757","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","252","0","0","0","0","420","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","5","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","35","32","24","26","0","0","0","0","0","0","68" +"31300","-1","","","","","Ironroot Seeds","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31301","-1","","","","","Monster - Staff, Other C 02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31302","-1","","","","","Monster - Sword, Stratholme D3","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31303","-1","","","","","Valanos' Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64180","320904","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","115","-1","0","0","130","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","5","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","10","10","0","0","0","0","0","0","0","0","70" +"31304","-1","","","","","The Essence Focuser","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85891","429455","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31305","-1","","","","","Ced's Carver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86216","431083","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","16","0","0","0","0","0","0","0","0","70" +"31306","-1","","","","","Leggings of the Sacred Crest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33564","167823","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","32","31","0","0","0","0","0","0","0","0","70" +"31307","-1","","","","","Heart of Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31308","-1","","","","","The Bringer of Death","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104889","524447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","32","31","42","0","0","0","0","0","0","0","70" +"31309","-1","","","","","Monster - Staff, Feral D2 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31310","-1","","","","","Wildhammer Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31311","-1","","","","","Monster - Sword1H Fire Illidari Highlord","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31312","-1","","","","","Sinister Area 52 Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21446","107232","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","24","11","0","0","0","0","0","0","0","0","0" +"31313","-1","","","","","Nether-Rocket Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17936","89680","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","0","0","0","0","0","0","0","0","0","0","0","10","2","0","16","11","10","0","0","0","0","0","0","0","0" +"31314","-1","","","","","Rocket-Chief Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32544","162722","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","16","0","0","0","0","0","0","0","0","0" +"31315","-1","","","","","Goblin Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25434","127172","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","19","16","16","0","0","0","0","0","0","0","0" +"31316","-1","","","","","Lianthe's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31317","-1","","","","","Rod of Lianthe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31318","-1","","","","","Singing Crystal Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123328","616641","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","100","-1","0","0","295","0","0","0","0","444","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31319","-1","","","","","Band of Impenetrable Defenses","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","79025","316102","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","36","26","0","0","0","0","0","0","0","0","70" +"31320","-1","","","","","Chestguard of Exile","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69592","347960","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","1535","0","0","0","0","0","0","0","0","0","0","0","0","1268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","44","33","36","0","0","0","0","0","0","0","70" +"31321","-1","","","","","Choker of Repentance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","115200","460801","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","23","15","0","0","0","0","0","0","0","0","70" +"31322","-1","","","","","The Hammer of Destiny","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125228","626140","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","100","-1","0","0","304","0","0","0","0","457","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","32","30","29","0","0","0","0","0","0","0","70" +"31323","-1","","","","","Don Santos' Famous Hunting Rifle","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75416","377080","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","100","-1","0","0","139","0","0","0","0","259","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","0","0","0","0","0","0","0","0","0","0","70" +"31324","-1","","","","","Sketh'lon Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31325","-1","","","","","Monster - Bow, Lady Vashj","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"31326","-1","","","","","Truestrike Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","0","0","0","0","0","0","0","0","0","70" +"31327","-1","","","","","Monster - Polearm, Black (Purple Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31328","-1","","","","","Leggings of Beast Mastery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63118","315592","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","621","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","45","0","0","0","0","0","0","0","0","70" +"31329","-1","","","","","Lifegiving Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28260","141301","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","13","0","0","0","0","0","0","0","0","0","70" +"31330","-1","","","","","Lightning Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47683","238415","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","0","0","0","0","0","0","0","0","0","70" +"31331","-1","","","","","The Night Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106334","531673","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","100","32767","0","0","117","0","0","0","0","176","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31332","-1","","","","","Blinkstrike","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","106717","533586","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","100","-1","0","0","147","0","0","0","0","275","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31333","-1","","","","","The Night Watchman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40162","200812","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","259","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","27","0","0","0","0","0","0","0","0","70" +"31334","-1","","","","","Staff of Natural Fury","0.4","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134340","671700","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","100","32767","0","0","253","0","0","0","0","380","0","0","0","0","320","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","35","31","0","0","0","0","0","0","0","0","70" +"31335","-1","","","","","Pants of Living Growth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53927","269636","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","29","35","0","0","0","0","0","0","0","0","70" +"31336","-1","","","","","Blade of Wizardry","0.6","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","432949","2164745","1","4","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","100","32767","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31337","-1","","","","","Orb of the Blackwhelp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6250","25000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31338","-1","","","","","Charlotte's Ivy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","19","14","0","0","0","0","0","0","0","70" +"31339","-1","","","","","Lola's Eve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","15","14","13","0","0","0","0","0","0","0","70" +"31340","-1","","","","","Will of Edward the Odd","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39762","198814","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","32767","0","0","0","0","0","0","0","0","0","0","0","0","170","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","30","30","0","0","0","0","0","0","0","0","70" +"31341","-1","","","","","Wyrmcultist's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","20052","100261","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","24","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","14","0","0","0","0","0","0","0","0","0","67" +"31342","-1","","","","","The Ancient Scepter of Sue-Min","0.6","0","-37.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102901","514509","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","100","-1","0","0","119","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","0","0","0","0","0","0","0","0","0","70" +"31343","-1","","","","","Kamaei's Cerulean Skirt","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41313","206568","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","25","21","0","0","0","0","0","0","0","0","70" +"31344","-1","","","","","Ceremonial Incense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31345","-1","A journal documenting the daily activities of the Illidari.","","","","The Journal of Val'zareq","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10793","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","68" +"31346","-1","","","","","Burning Bleeding Hollow Torch","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31347","-1","","","","","Bleeding Hollow Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31348","-1","","","","","Monster - Bow, Mordenai","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"31349","-1","Whatever's in it, it feels powerful.","","","","Grulloc's Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31350","-1","","","","","Huffer's Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31351","-1","Ouch! It's hot to the touch!","","","","Dragonfire Trap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31352","-1","","","","","Monster - Crossbow, Green Snake","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"31353","-1","","","","","Monster - Axe, Horde C03 Obsidian","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31354","-1","Teaches you how to make a Flask of the Titans.","","","","Recipe: Flask of the Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31355","-1","Teaches you how to make a Flask of Supreme Power.","","","","Recipe: Flask of Supreme Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31356","-1","Teaches you how to make a Flask of Distilled Wisdom.","","","","Recipe: Flask of Distilled Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31357","-1","Teaches you how to make a Flask of Chromatic Resistance.","","","","Recipe: Flask of Chromatic Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","300","171","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31358","-1","Teaches you how to craft a Dawnstone Crab.","","","","Design: Dawnstone Crab","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31359","-1","Teaches you how to cut an Enduring Deep Peridot.","","","","Design: Enduring Deep Peridot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","315","755","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31360","-1","","","","","Unfinished Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","67" +"31361","-1","Teaches you how to make Cobrahide Leg Armor.","","","","Pattern: Cobrahide Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","335","165","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31362","-1","Teaches you how to make Nethercobra Leg Armor.","","","","Pattern: Nethercobra Leg Armor","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31363","-1","","","","","Gorgrom's Favor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10797","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31364","-1","","","","","Wildguard Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82308","411540","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","0","60","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","14","0","0","0","0","0","0","0","0","70" +"31365","-1","","","","","Energized Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31366","-1","The Felsworn stench is gone.","","","","Felsworn Gas Mask","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","67584","24580","0","0","0","0","0","0","0","0","0","0","0","0","3522","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31367","-1","","","","","Wildguard Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83219","416097","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1269","0","0","60","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","0","0","0","0","0","0","0","0","0","70" +"31368","-1","","","","","Wildguard Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62517","312585","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1178","0","0","50","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","58","28","0","0","0","0","0","0","0","0","70" +"31369","-1","","","","","Iceguard Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83818","419094","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","0","0","60","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","49","10","0","0","0","0","0","0","0","0","70" +"31370","-1","","","","","Iceguard Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74152","370760","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","60","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","0","0","0","0","0","0","0","0","0","70" +"31371","-1","","","","","Iceguard Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55708","278542","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","1030","0","0","0","50","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","64","20","0","0","0","0","0","0","0","0","70" +"31372","-1","","","","","Rocknail Flayer Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31373","-1","A delicious but inadequate meal for a netherwing drake.","","","","Rocknail Flayer Giblets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31374","-1","","","","","Worg Master's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31375","-1","","","","","Gladiator's Kodohide Gloves","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","27","22","0","0","0","0","0","0","0","70" +"31376","-1","","","","","Gladiator's Kodohide Helm","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","685","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","316","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","46","33","28","0","0","0","0","0","0","0","70" +"31377","-1","","","","","Gladiator's Kodohide Legguards","0.2","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","340","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","37","29","0","0","0","0","0","0","0","70" +"31378","-1","","","","","Gladiator's Kodohide Spaulders","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","685","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","291","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","21","20","0","0","0","0","0","0","0","70" +"31379","-1","","","","","Gladiator's Kodohide Tunic","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","685","0","0","0","0","0","0","0","123","1024","0","0","0","0","0","0","0","0","0","0","0","0","389","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","30","26","0","0","0","0","0","0","0","70" +"31380","-1","","","","","Acrobat's Mark of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","29","12","0","0","0","0","0","0","0","0","0" +"31381","-1","","","","","Aggressor's Mark of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","29","0","0","0","0","0","0","0","0","0","0" +"31382","-1","","","","","Mage's Mark of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","29","0","0","0","0","0","0","0","0","0","0" +"31383","-1","","","","","Spiritualist's Mark of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41903","167612","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","0","0","0","0","0","0","0","0","0","0" +"31384","-1","The Felsworn stench burns the eyes.","","","","Damaged Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10810","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31386","-1","","","","","Staff of Parshah","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31387","-1","The Felsworn stench still burns the eyes.","","","","Mystery Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31389","-1","","","","","Captured Eye of Grillok","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31390","-1","Teaches you how to make a Wildguard Breastplate.","","","","Plans: Wildguard Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31391","-1","Teaches you how to make Wildguard Leggings.","","","","Plans: Wildguard Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31392","-1","Teaches you how to make a Wildguard Helm.","","","","Plans: Wildguard Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31393","-1","Teaches you how to make an Iceguard Breastplate.","","","","Plans: Iceguard Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31394","-1","Teaches you how to make Iceguard Leggings.","","","","Plans: Iceguard Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31395","-1","Teaches you how to make an Iceguard Helm.","","","","Plans: Iceguard Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31396","-1","","","","","Gladiator's Ringmail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","686","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","866","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","23","23","25","0","0","0","0","0","0","70" +"31397","-1","","","","","Gladiator's Ringmail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","18","21","21","0","0","0","0","0","0","70" +"31398","-1","","","","","The Frozen Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","0","0","0","0","0","0","0","0","0","70" +"31399","-1","","","","","The Natural Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","28","0","0","0","0","0","0","0","0","0","70" +"31400","-1","","","","","Gladiator's Ringmail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","686","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","20","17","30","0","0","0","0","0","0","70" +"31401","-1","Teaches you how to craft The Frozen Eye.","","","","Design: The Frozen Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31402","-1","Teaches you how to craft The Natural Ward.","","","","Design: The Natural Ward","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31403","-1","","","","","Sablemane's Sleeping Powder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31404","-1","A trophy commemorating a victory over Illidan Stormrage.","","","","Green Trophy Tabard of the Illidari","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31405","-1","A trophy commemorating a victory over Illidan Stormrage.","","","","Purple Trophy Tabard of the Illidari","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31406","-1","","","","","Gladiator's Ringmail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","758","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","26","21","29","0","0","0","0","0","0","70" +"31407","-1","","","","","Gladiator's Ringmail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","686","0","0","0","0","0","0","0","123","64","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","19","18","20","0","0","0","0","0","0","70" +"31408","-1","A gift from A'dal.","","","","Offering of the Sha'tar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31409","-1","","","","","Gladiator's Mooncloth Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","20","28","0","0","0","0","0","0","0","70" +"31410","-1","","","","","Gladiator's Mooncloth Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","687","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","22","30","0","0","0","0","0","0","0","70" +"31411","-1","","","","","Gladiator's Mooncloth Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","30","30","0","0","0","0","0","0","0","70" +"31412","-1","","","","","Gladiator's Mooncloth Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","687","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","155","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","40","22","24","0","0","0","0","0","0","0","70" +"31413","-1","","","","","Gladiator's Mooncloth Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","687","0","0","0","0","0","0","0","123","16","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","51","28","25","0","0","0","0","0","0","0","70" +"31414","-1","","","","","Wild Wood Staff","0.4","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83568","417844","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","108","-1","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","37","21","22","0","0","0","0","0","0","0","0" +"31415","-1","","","","","Iron Oak Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44029","220145","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","111","-1","0","0","0","0","0","0","0","0","0","0","0","0","3278","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","21","16","0","0","0","0","0","0","0","0","0" +"31416","-1","","","","","Scorch Wood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50525","252628","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","108","-1","0","0","85","0","0","0","0","159","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","7","5","0","0","0","0","0","0","0","0","0" +"31417","-1","","","","","Staff of the Ashtongue Deathsworn","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102273","511368","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","109","-1","0","0","258","0","0","0","0","388","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","45","25","27","0","0","0","0","0","0","0","0" +"31418","-1","","","","","Sylvanaar Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12893","64466","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","15","6","0","0","0","0","0","0","0","0" +"31419","-1","","","","","Living Grove Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24266","121331","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","26","15","0","0","0","0","0","0","0","0","0" +"31420","-1","","","","","Protector's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29359","146795","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","15","10","0","0","0","0","0","0","0","0","0" +"31421","-1","","","","","Sentinel Armbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22947","114735","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","413","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","20","11","10","0","0","0","0","0","0","0","0" +"31422","-1","","","","","Heavy Elven Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","65433","327169","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","102","-1","0","0","67","0","0","0","0","126","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","17","0","0","0","0","0","0","0","0","0","0" +"31423","-1","","","","","Wolf Hewer's Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67420","337102","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","102","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","17","10","0","0","0","0","0","0","0","0","0" +"31424","-1","","","","","Arcane Wand of Sylvanaar","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50747","253739","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","102","-1","0","0","106","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","5","0","0","0","0","0","0","0","0","0","0" +"31425","-1","","","","","Ogre Vanquisher's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13580","67900","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","7","6","0","0","0","0","0","0","0","0","0","0","0","6","2","0","26","10","6","0","0","0","0","0","0","0","0" +"31426","-1","","","","","Agile Mountain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17036","85180","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","104","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","7","0","0","0","0","0","0","0","0","0","0","0","9","2","0","20","11","12","0","0","0","0","0","0","0","0" +"31427","-1","","","","","Sylvanaar Defender's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30911","154555","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","15","0","0","0","0","0","0","0","0","0","0" +"31428","-1","","","","","Commander Skyshadow's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24155","120778","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","26","15","10","0","0","0","0","0","0","0","0" +"31429","-1","","","","","Spelunker's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20660","103301","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","95","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","22","10","0","0","0","0","0","0","0","0","0" +"31430","-1","","","","","Miner's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15631","78157","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","15","0","0","0","0","0","0","0","0","0" +"31431","-1","","","","","All-Weather Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18830","94154","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","0","0","0","0","0","0","0","0","0","0" +"31432","-1","","","","","Explorer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33015","165076","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","32","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","15","7","6","0","0","0","0","0","0","0" +"31433","-1","","","","","Sylvanaar Elite Caster's Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25968","129841","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","130","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","15","10","0","0","0","0","0","0","0","0" +"31434","-1","","","","","Ogre Assassin's Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32585","162926","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","22","20","0","0","0","0","0","0","0","0","0" +"31435","-1","","","","","Gurn's Horned Helmet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30196","150984","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","453","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","15","0","0","0","0","0","0","0","0","0" +"31436","-1","","","","","Sylvanaar Champion's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35293","176466","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","23","20","22","0","0","0","0","0","0","0","0" +"31437","-1","","","","","Medicinal Drake Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31438","-1","","","","","Fizit's Mantle of Drake Hunting","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19848","99244","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","11","18","0","0","0","0","0","0","0","0" +"31439","-1","","","","","Precise Gloves of Alacrity","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17050","85252","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","152","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","15","11","0","0","0","0","0","0","0","0","0" +"31440","-1","","","","","Devolved Drake Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20533","102668","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","27","0","0","0","0","0","0","0","0","0","0" +"31441","-1","","","","","Clocktock's Jumpers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35996","179981","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","667","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","27","15","11","0","0","0","0","0","0","0","0" +"31442","-1","","","","","Metro's Slimming Legs","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27578","137890","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","20","15","0","0","0","0","0","0","0","0","0" +"31443","-1","","","","","Nickwinkle's Harness Experiment","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34597","172987","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","0","0","0","0","0","0","0","0","0","0","0","5","2","0","54","20","12","0","0","0","0","0","0","0","0" +"31444","-1","","","","","Party Hat Mistake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31247","156235","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","0" +"31445","-1","","","","","Last Year's ""In"" Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24530","122650","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","16","16","0","0","0","0","0","0","0","0","0" +"31446","-1","","","","","Vibro Shanker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69937","349688","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","10","11","0","0","0","0","0","0","0","0","0" +"31447","-1","","","","","Vibro Dagger","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70180","350903","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","11","15","0","0","0","0","0","0","0","0","0" +"31448","-1","","","","","Vibro Sword","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70430","352152","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","11","10","0","0","0","0","0","0","0","0","0" +"31449","-1","","","","","Distilled Stalker Sight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31450","-1","","","","","Stealth of the Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31451","-1","","","","","Pure Energy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31452","-1","","","","","Energized Wristwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12932","64664","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","57","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","8","5","0","0","0","0","0","0","0","0" +"31453","-1","","","","","Charged Footwear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24342","121713","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","167","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","27","16","0","0","0","0","0","0","0","0","0" +"31454","-1","","","","","Scalewing Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19549","97745","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","339","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","16","0","0","0","0","0","0","0","0","0" +"31455","-1","","","","","Muscle Toning Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23653","118265","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","27","15","11","0","0","0","0","0","0","0","0" +"31456","-1","","","","","Gnomish Casting Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20754","103773","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","92","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","28","8","7","0","0","0","0","0","0","0","0" +"31457","-1","","","","","Toshley's Station Hero's Hat","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26039","130196","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","37","22","0","0","0","0","0","0","0","0","0" +"31458","-1","","","","","Razaani-Buster Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41816","209083","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","37","10","0","0","0","0","0","0","0","0","0" +"31459","-1","","","","","Soul Saver's Chest Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48960","244803","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","37","21","15","0","0","0","0","0","0","0","0" +"31460","-1","","","","","Sha'tari Vindicator's Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31388","156943","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","33","20","24","0","0","0","0","0","0","0","0" +"31461","-1","","","","","A'dal's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17899","89498","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","21","0","0","0","0","0","0","0","0","0" +"31462","-1","","","","","Shattrath's Champion Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","26944","134722","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","22","21","15","0","0","0","0","0","0","0","0" +"31463","-1","","","","","Zezzak's Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31464","-1","","","","","Naaru Belt of Precision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22616","113082","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","15","21","0","0","0","0","0","0","0","0" +"31465","-1","","","","","Sha'tari Anchorite's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27237","136187","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","0" +"31466","-1","","","","","Monster - Shield, Illidari Type 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31467","-1","","","","","Monster - Shield, Illidari Type 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31468","-1","","","","","Monster - Shield, Illidari Type 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31469","-1","","","","","Black Dragon Corpse","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31470","-1","","","","","Witch Doctor's Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25002","125013","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","15","9","0","0","0","0","0","0","0","0" +"31471","-1","","","","","T'chali's Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32246","161232","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","20","0","0","0","0","0","0","0","0","0" +"31472","-1","","","","","Hexxer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19420","97104","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","26","0","0","0","0","0","0","0","0","0","0" +"31473","-1","","","","","Ogre Defiler's Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22872","114364","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","590","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","26","15","10","0","0","0","0","0","0","0","0" +"31474","-1","","","","","Wand of the Ancestors","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50204","251023","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","105","-1","0","0","110","0","0","0","0","206","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","5","0","0","0","0","0","0","0","0","0","0" +"31475","-1","","","","","Thunderlord Scalpel","0.6","0","-14.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67189","335947","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","54","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","11","15","0","0","0","0","0","0","0","0","0" +"31476","-1","","","","","Slow Death Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","67439","337196","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","70","0","0","0","0","131","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","17","0","0","0","0","0","0","0","0","0","0" +"31477","-1","","","","","Red Hands of the Thunderlord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13188","65940","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","10","15","6","0","0","0","0","0","0","0","0" +"31478","-1","","","","","Tor'chunk's Foot Covers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24818","124094","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","0","0","0","0","0","0","0","0","0","0","0","0","8","2","0","26","15","0","0","0","0","0","0","0","0","0" +"31479","-1","","","","","Rugged Mountain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19928","99640","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","0","0","0","0","0","0","0","0","0","0" +"31480","-1","","","","","Ogre Beater's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23468","117340","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","531","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","26","15","10","0","0","0","0","0","0","0","0" +"31481","-1","","","","","Thunderlord Armbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13381","66907","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","55","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","7","4","0","0","0","0","0","0","0","0" +"31482","-1","","","","","Dire Wolf Handler Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16787","83938","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","31","0","0","0","0","0","0","0","0","0","0","0","0","10","2","0","15","10","0","0","0","0","0","0","0","0","0" +"31483","-1","","","","","Gor'drek's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35314","176572","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","7","0","0","0","0","0","0","0","0","0","0","0","0","3","2","0","15","10","0","0","0","0","0","0","0","0","0" +"31484","-1","","","","","Wolf Chaps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20291","101456","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","297","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","26","0","0","0","0","0","0","0","0","0","0" +"31485","-1","","","","","Dark Deed Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27149","135748","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","20","14","0","0","0","0","0","0","0","0","0" +"31486","-1","","","","","Bear-Strength Harness","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34058","170294","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","0","0","0","0","0","0","0","0","0","0","0","5","2","0","52","20","11","0","0","0","0","0","0","0","0" +"31487","-1","","","","","Wild Horned Helm","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28583","142919","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","429","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","14","0","0","0","0","0","0","0","0","0" +"31488","-1","","","","","Boots of the Ancient-Killer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33411","167058","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","649","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","32","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","18","15","7","6","0","0","0","0","0","0","0" +"31489","-1","","","","","Orb of the Grishna","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10825","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"31490","-1","","","","","Netherwing Protector's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52380","261901","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","3615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","3","0","0","0","0","0","0","0","0","0","0","0","14","3","0","22","15","15","0","0","0","0","0","0","0","0" +"31491","-1","","","","","Netherwing Defender's Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52578","262893","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","3615","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","5","0","0","0","0","0","0","0","0","0","0","0","14","3","0","21","13","13","0","0","0","0","0","0","0","0" +"31492","-1","","","","","Claw of the Netherwing Flight","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81771","408859","1","1","1","524288","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","108","-1","0","0","83","0","0","0","0","156","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","15","15","15","0","0","0","0","0","0","0","0" +"31493","-1","","","","","Netherwing Spiritualist's Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","15","15","0","0","0","0","0","0","0","0","0" +"31494","-1","","","","","Netherwing Sorceror's Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","15","15","0","0","0","0","0","0","0","0","0" +"31495","-1","","","","","Grishnath Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31496","-1","","","","","Tome of Fireball XIV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31497","-1","","","","","Monster - Throwing Trident, Wicked","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"31498","-1","","","","","Tome of Frostbolt XIV","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31499","-1","","","","","Monster - Throwing Trident, Wicked Blue Glow","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"31500","-1","","","","","Tome of Arcane Missiles XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31501","-1","Teaches Conjure Food (Rank 8).","","","","Tome of Conjure Food VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31360","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31502","-1","","","","","Libram: Blessing of Might VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31503","-1","","","","","Libram: Greater Blessing of Might III","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31234","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31504","-1","","","","","Nethervine Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31505","-1","Teaches Heroic Strike (Rank 11).","","","","Manual of Heroic Strike XI","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31506","-1","Teaches Revenge (Rank 8).","","","","Manual of Revenge VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31233","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31507","-1","","","","","Grimoire of Searing Pain VIII","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31488","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31508","-1","","","","","Coven Britches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26847","134236","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","6","0","0","0","0","0","0","0","0","0","0","0","7","2","0","37","10","10","0","0","0","0","0","0","0","0" +"31509","-1","","","","","Wyrmcultist's Hood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20212","101061","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","6","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","37","10","10","0","0","0","0","0","0","0","0" +"31510","-1","","","","","Hewing Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13186","65933","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","81","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","27","11","0","0","0","0","0","0","0","0","0" +"31511","-1","","","","","Chest of the Wyrmcult","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33940","169700","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","37","15","0","0","0","0","0","0","0","0","0" +"31512","-1","","","","","Tree Warden's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16606","83033","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","27","11","0","0","0","0","0","0","0","0","0" +"31513","-1","","","","","Blackwhelp Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16669","83345","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","10","11","10","0","0","0","0","0","0","0","0" +"31514","-1","","","","","Dragonkin Shirt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41189","205946","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","21","15","15","0","0","0","0","0","0","0","0" +"31515","-1","","","","","Whelpscale Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20669","103347","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","22","15","0","0","0","0","0","0","0","0" +"31516","-1","","","","","Bracers of the Weald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20225","101128","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","238","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","20","8","0","0","0","0","0","0","0","0","0" +"31517","-1","","","","","Dire Pinfeather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31518","-1","","","","","Exorcism Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31519","-1","","","","","Inkling's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50226","251130","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","37","22","21","0","0","0","0","0","0","0","0" +"31520","-1","","","","","Blackwing Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37732","188660","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","810","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","32","31","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","37","15","21","0","0","0","0","0","0","0","0" +"31521","-1","","","","","Expedition Defender's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36916","184581","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","21","7","4","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","8","7","16","18","0","0","0","0","0","0","0" +"31522","-1","Contains the materials needed to produce a sample of primal mooncloth","","","","Primal Mooncloth Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31523","-1","","","","","Treebole's Hoop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","12","0","0","0","0","0","0","0","0","0" +"31524","-1","A small square of imbued netherweave, used as the base for creating various kinds of cloth.","","","","Square of Imbued Netherweave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31525","-1","Contains small samples of primal life and primal water.","","","","Vial of Primal Reagents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31526","-1","","","","","Raven's Wood Exorciser's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","12","0","0","0","0","0","0","0","0","0" +"31527","-1","","","","","Leafbeard Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","12","0","0","0","0","0","0","0","0","0" +"31528","-1","","","","","Ring of the Stonebark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","41555","166220","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","12","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","19","18","0","0","0","0","0","0","0","0" +"31529","-1","","","","","Grillok's Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31530","-1","","","","","Sample of Primal Mooncloth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31531","-1","","","","","Wraithcloth Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13574","67873","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","11","8","0","0","0","0","0","0","0","0","0" +"31532","-1","","","","","Supple Leather Boots","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25548","127742","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","22","24","11","0","0","0","0","0","0","0","0" +"31533","-1","","","","","Diluvian Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30910","154551","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","11","15","0","0","0","0","0","0","0","0" +"31534","-1","","","","","Whiteknuckle Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24159","120797","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","623","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","28","16","16","0","0","0","0","0","0","0","0" +"31535","-1","","","","","Bloodboil Poison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","2097216","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31536","-1","","","","","Camp Anger Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31537","-1","","","","","Darktread Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20835","104177","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","27","0","0","0","0","0","0","0","0","0" +"31538","-1","","","","","Twin Moon Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26135","130677","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","7","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","14","14","14","0","0","0","0","0","0","0" +"31539","-1","","","","","Chaintwine Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20983","104916","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","7","0","0","0","0","0","0","0","0","0","0","0","6","2","0","14","14","14","0","0","0","0","0","0","0","0" +"31540","-1","","","","","Fairweather's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24708","123541","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","14","14","14","14","0","0","0","0","0","0","0" +"31541","-1","","","","","Whistling Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72250","361251","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","108","-1","0","0","64","0","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","11","11","0","0","0","0","0","0","0","0","0" +"31542","-1","","","","","Fanged Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","90633","453165","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","108","-1","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","39","26","0","0","0","0","0","0","0","0","0" +"31543","-1","","","","","Adjudicator's Staff","0.4","0","-16.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82287","411437","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","108","-1","0","0","162","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","26","26","0","0","0","0","0","0","0","0","0" +"31544","-1","","","","","Clefthoof Hide Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39983","199917","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","4","7","31","37","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","30","30","24","17","18","0","0","0","0","0","0" +"31545","-1","","","","","Oilcloth Breeches","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40134","200671","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","243","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","31","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","30","24","0","0","0","0","0","0","0","0" +"31546","-1","","","","","Tourmaline Crown","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24173","120867","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","24","17","30","0","0","0","0","0","0","0" +"31547","-1","","","","","Malefactor's Eyepatch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36399","181999","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","503","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","3","0","0","0","0","0","0","0","0","0","0","0","1","3","0","18","24","30","0","0","0","0","0","0","0","0" +"31548","-1","","","","","Blackened Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56839","284195","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","1106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","30","30","27","25","0","0","0","0","0","0","0" +"31549","-1","","","","","Leonine Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57050","285251","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","1106","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","45","16","27","0","0","0","0","0","0","0","0" +"31550","-1","","","","","Albreck's Findings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2997","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31551","-1","","","","","Monster - Dragonmaw, Shadowmoon - 2H Hammer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31552","-1","","","","","Windchanneller's Miter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26659","133297","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31553","-1","","","","","Windchanneller's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26754","133772","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","201","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31554","-1","","","","","Windchanneller's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35802","179013","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31555","-1","","","","","Windchanneller's Ceinture","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17966","89832","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31556","-1","","","","","Windchanneller's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36063","180315","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31557","-1","","","","","Windchanneller's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25855","129277","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","201","0","0","0","0","0","0","0","0","0","0","0","102","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31558","-1","","","","","Windchanneller's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18160","90800","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31559","-1","","","","","Windchanneller's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18225","91125","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","201","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31560","-1","","","","","Skystalker's Shroud","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34290","171454","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","202","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31561","-1","","","","","Skystalker's Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34412","172064","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","202","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31562","-1","","","","","Skystalker's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46046","230233","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","202","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31563","-1","","","","","Skystalker's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20903","104515","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","202","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31564","-1","","","","","Skystalker's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41964","209823","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","202","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31565","-1","","","","","Skystalker's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30097","150487","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","202","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31566","-1","","","","","Skystalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21145","105725","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","202","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31567","-1","","","","","Skystalker's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21809","109046","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1535","202","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31568","-1","","","","","Mistshroud Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39399","196996","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31569","-1","","","","","Mistshroud Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39721","198607","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","203","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31570","-1","","","","","Mistshroud Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52922","264614","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31571","-1","","","","","Mistshroud Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26559","132795","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","367","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31572","-1","","","","","Mistshroud Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53308","266541","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31573","-1","","","","","Mistshroud Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38395","191975","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","203","0","0","0","0","0","0","0","0","0","0","0","426","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31574","-1","","","","","Mistshroud Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26849","134247","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31575","-1","","","","","Mistshroud Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26944","134722","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","203","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31576","-1","","","","","Slatesteel Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47233","236167","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31577","-1","","","","","Slatesteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47404","237020","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","204","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31578","-1","","","","","Slatesteel Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63553","317769","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31579","-1","","","","","Slatesteel Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32070","160350","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","655","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31580","-1","","","","","Slatesteel Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64003","320017","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31581","-1","","","","","Slatesteel Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45802","229010","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","32767","204","0","0","0","0","0","0","0","0","0","0","0","760","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31582","-1","","","","","Slatesteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32413","162068","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31583","-1","","","","","Slatesteel Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30246","151230","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31584","-1","","","","","High Warlord's Kodohide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","22","14","0","0","0","0","0","0","0","70" +"31585","-1","","","","","High Warlord's Kodohide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","689","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","18","19","0","0","0","0","0","0","0","70" +"31586","-1","","","","","High Warlord's Kodohide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","689","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","28","20","0","0","0","0","0","0","0","70" +"31587","-1","","","","","High Warlord's Kodohide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","689","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"31588","-1","","","","","High Warlord's Kodohide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","689","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","17","18","0","0","0","0","0","0","0","70" +"31589","-1","","","","","Grand Marshal's Kodohide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","688","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","22","22","14","0","0","0","0","0","0","0","70" +"31590","-1","","","","","Grand Marshal's Kodohide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","688","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","30","18","19","0","0","0","0","0","0","0","70" +"31591","-1","","","","","Grand Marshal's Kodohide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","688","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","33","28","20","0","0","0","0","0","0","0","70" +"31592","-1","","","","","Grand Marshal's Kodohide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","688","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"31593","-1","","","","","Grand Marshal's Kodohide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","688","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","33","17","18","0","0","0","0","0","0","0","70" +"31594","-1","","","","","General's Kodohide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","24","0","0","0","0","0","0","0","70" +"31595","-1","","","","","General's Kodohide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","24","0","0","0","0","0","0","0","70" +"31596","-1","","","","","Marshal's Kodohide Belt","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","24","0","0","0","0","0","0","0","70" +"31597","-1","","","","","Marshal's Kodohide Boots","0.2","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","1032","0","0","0","0","0","0","0","0","0","0","0","0","267","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","24","0","0","0","0","0","0","0","70" +"31598","-1","","","","","General's Kodohide Bracers","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","13","14","0","0","0","0","0","0","0","70" +"31599","-1","","","","","Marshal's Kodohide Bracers","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","1032","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","13","14","0","0","0","0","0","0","0","70" +"31600","-1","","","","","Monster - Dragonmaw, Shadowmoon - 1H Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31601","-1","","","","","Monster - Dragonmaw, Shadowmoon - 2H Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31603","-1","","","","","Monster - Dragonmaw, Shadowmoon - 1H Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31604","-1","","","","","Monster - Dragonmaw, Shadowmoon - 2H Sword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31605","-1","","","","","Monster - Dragonmaw, Shadowmoon - Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31606","-1","","","","","Demoniac Scryer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31607","-1","","","","","Demoniac Scryer Reading","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2999","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31608","-1","","","","","Monster - Staff, Blood Elf A02 Red - High Red Flames","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31609","-1","","","","","Monster - Dagger, Horde PvP - Purple (Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31610","-1","","","","","Rod of Purification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31611","-1","","","","","Monster - Sword, 1H Outland Blacksmithing 01","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31612","-1","","","","","Monster - Sword, Flaming","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31613","-1","","","","","Gladiator's Ornamented Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","690","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1547","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","31","30","27","0","0","0","0","0","0","70" +"31614","-1","","","","","Gladiator's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","967","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","24","24","14","0","0","0","0","0","0","70" +"31615","-1","","","","","Ancient Draenei Arcane Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8222","32891","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","21","0","0","0","0","0","0","0","0","0","0" +"31616","-1","","","","","Gladiator's Ornamented Headcover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","690","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1257","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","52","30","21","32","0","0","0","0","0","0","70" +"31617","-1","","","","","Ancient Draenei War Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8222","32891","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","21","0","0","0","0","0","0","0","0","0","0" +"31618","-1","","","","","Gladiator's Ornamented Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","32","32","31","0","0","0","0","0","0","70" +"31619","-1","","","","","Gladiator's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","690","0","0","0","0","0","0","0","123","2","0","0","0","0","0","0","0","0","0","0","0","0","1160","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","24","23","20","0","0","0","0","0","0","70" +"31620","-1","","","","","Grand Marshal's Mooncloth Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"31621","-1","","","","","High Warlord's Mooncloth Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","692","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"31622","-1","","","","","Grand Marshal's Mooncloth Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","691","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","40","26","19","0","0","0","0","0","0","0","70" +"31623","-1","","","","","Grand Marshal's Mooncloth Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","691","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","23","0","0","0","0","0","0","0","70" +"31624","-1","","","","","Grand Marshal's Mooncloth Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","691","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","30","20","17","0","0","0","0","0","0","0","70" +"31625","-1","","","","","Grand Marshal's Mooncloth Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","691","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","39","25","15","0","0","0","0","0","0","0","70" +"31626","-1","","","","","High Warlord's Mooncloth Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","692","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","39","27","19","0","0","0","0","0","0","0","70" +"31627","-1","","","","","High Warlord's Mooncloth Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","692","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","42","28","23","0","0","0","0","0","0","0","70" +"31628","-1","","","","","High Warlord's Mooncloth Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","692","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","30","20","17","0","0","0","0","0","0","0","70" +"31629","-1","","","","","High Warlord's Mooncloth Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","692","0","0","0","0","0","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","39","25","15","0","0","0","0","0","0","0","70" +"31630","-1","","","","","Grand Marshal's Ornamented Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2951","0","0","0","0","693","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","37","24","21","22","0","0","0","0","0","0","70" +"31631","-1","","","","","Grand Marshal's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","30","20","19","12","0","0","0","0","0","0","70" +"31632","-1","","","","","Grand Marshal's Ornamented Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","693","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","22","20","20","0","0","0","0","0","0","70" +"31633","-1","","","","","Grand Marshal's Ornamented Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","26","24","24","0","0","0","0","0","0","70" +"31634","-1","","","","","Grand Marshal's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","693","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","30","19","15","14","0","0","0","0","0","0","70" +"31635","-1","","","","","High Warlord's Ornamented Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","135","0","0","0","0","0","2951","0","0","0","0","694","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","37","24","21","22","0","0","0","0","0","0","70" +"31636","-1","","","","","High Warlord's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","30","20","19","12","0","0","0","0","0","0","70" +"31637","-1","","","","","High Warlord's Ornamented Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","694","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","34","22","20","20","0","0","0","0","0","0","70" +"31638","-1","","","","","High Warlord's Ornamented Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","39","26","24","24","0","0","0","0","0","0","70" +"31639","-1","","","","","High Warlord's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","694","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","30","19","15","14","0","0","0","0","0","0","70" +"31640","-1","","","","","Grand Marshal's Ringmail Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","695","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","34","22","18","18","0","0","0","0","0","0","70" +"31641","-1","","","","","Grand Marshal's Ringmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","28","18","14","13","0","0","0","0","0","0","70" +"31642","-1","","","","","Grand Marshal's Ringmail Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","695","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","33","21","16","16","0","0","0","0","0","0","70" +"31643","-1","","","","","Grand Marshal's Ringmail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","695","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","36","24","22","22","0","0","0","0","0","0","70" +"31644","-1","","","","","Grand Marshal's Ringmail Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","695","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","28","18","12","12","0","0","0","0","0","0","70" +"31646","-1","","","","","High Warlord's Ringmail Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","696","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","34","22","18","18","0","0","0","0","0","0","70" +"31647","-1","","","","","High Warlord's Ringmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","696","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","28","18","14","13","0","0","0","0","0","0","70" +"31648","-1","","","","","High Warlord's Ringmail Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","696","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","33","21","16","16","0","0","0","0","0","0","70" +"31649","-1","","","","","High Warlord's Ringmail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","696","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","36","24","22","22","0","0","0","0","0","0","70" +"31650","-1","","","","","High Warlord's Ringmail Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","696","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","28","18","12","12","0","0","0","0","0","0","70" +"31651","-1","The ogres have some true artisans amongst them.","","","","Bladespire Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31652","-1","The essence of Neltharaku beats within...","","","","Enchanted Nethervine Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31653","-1","","","","","Condensed Nether Gas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31654","-1","","","","","Monster - Dragonmaw, Shadowmoon - 1H Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31655","-1","","","","","Veil Skith Prison Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31656","-1","It wriggles, trying to break free.","","","","Lesser Nether Drake Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31657","-1","","","","","Chemise of Rebirth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22454","112272","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","7","0","0","1","0","5","6","7","0","0","0","0","0","0","0","0","0","0","0","5","2","0","12","12","18","0","0","0","0","0","0","0","0" +"31658","-1","","","","","Scout's Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21130","105652","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","18","12","12","0","0","0","0","0","0","0","0" +"31659","-1","","","","","Researcher's Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16969","84848","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","16","0","0","0","0","0","0","0","0","0" +"31660","-1","","","","","Feralfen Skulker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15873","79366","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","19","27","0","0","0","0","0","0","0","0","0" +"31661","-1","","","","","Leesa'oh's Wristbands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15092","75461","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","99","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","9","2","0","13","13","0","0","0","0","0","0","0","0","0" +"31662","-1","Written in the indecipherable hand of the arakkoa","","","","Rilak's Missive","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31663","-1","","","","","Spirit Calling Totems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31664","-1","","","","","Zuluhed's Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2112","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31665","-1","Note: For the safety of small children, cannon does not actually fire.","","","","Toy RC Mortar Tank","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31666","-1","This toy has seen a lot of love. It probably won't last much longer.","","","","Battered Steam Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31667","-1","""Sometimes the truth cannot be handled.""","","","","Knife of a Thousand Lies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","40","66","0","0","0","23","0","0","0","0","278","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","4","7","6","5","0","0","0","0","0","0","0","0","0","1","0","4","0","10","5","8","-25","0","0","0","0","0","0","35" +"31668","-1","","","","","Orb Collecting Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31669","-1","","","","","Monster - Dagger, Badass Red (Poisoned)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31670","-1","","","","","Raptor Ribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31671","-1","","","","","Serpent Flesh","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31672","-1","","","","","Mok'Nathal Shortribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"31673","-1","","","","","Crunchy Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"31674","-1","Teaches you how to cook Crunchy Serpent.","","","","Recipe: Crunchy Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","185","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31675","-1","Teaches you how to cook Mok'Nathal Shortribs.","","","","Recipe: Mok'Nathal Shortribs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","185","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31676","-1","","","","","Fel Regeneration Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"31677","-1","","","","","Fel Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"31678","-1","","","","","Mental Interference Rod","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31679","-1","","","","","Fel Strength Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3000","12000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"31680","-1","Teaches you how to make a Fel Strength Elixir.","","","","Recipe: Fel Strength Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","171","67","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31681","-1","Teaches you how to make a Fel Regeneration Potion.","","","","Recipe: Fel Regeneration Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","171","69","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31682","-1","Teaches you how to make a Fel Mana Potion.","","","","Recipe: Fel Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","171","72","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31683","-1","","","","","Dreadwing Skin Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13887","69438","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","75","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","7","6","0","0","0","0","0","0","0","0","0","0","0","6","2","0","28","11","7","0","0","0","0","0","0","0","0" +"31684","-1","","","","","Netherhide Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17423","87118","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","16","0","0","0","0","0","0","0","0","0" +"31685","-1","","","","","Brood Mother Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41966","209831","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","37","10","0","0","0","0","0","0","0","0","0" +"31686","-1","","","","","Nether Protector's Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49140","245700","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","996","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","32","4","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","37","21","15","0","0","0","0","0","0","0","0" +"31687","-1","","","","","Mok'Nathal Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21136","105684","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","18","12","18","0","0","0","0","0","0","0","0" +"31688","-1","","","","","Spiritcaller's Mask","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26514","132573","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","203","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","37","22","0","0","0","0","0","0","0","0","0" +"31689","-1","","","","","Mok'Nathal Hero's Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42577","212886","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","488","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","37","10","0","0","0","0","0","0","0","0","0" +"31690","-1","","","","","Belt of the Soul Saver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25068","125344","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","17","17","0","0","0","0","0","0","0","0","0" +"31691","-1","","","","","Natasha's Guardian Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","0","0","0","0","0","0","0","0","0","0" +"31692","-1","","","","","Natasha's Ember Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","0" +"31693","-1","","","","","Natasha's Arcane Filament","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","10","22","0","0","0","0","0","0","0","0","0" +"31694","-1","","","","","Natasha's Pack Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","25","15","15","0","0","0","0","0","0","0","0" +"31695","-1","","","","","Natasha's Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","15","10","0","0","0","0","0","0","0","0","0" +"31696","-1","","","","","Natasha's Battle Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39818","159272","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","37","13","0","0","0","0","0","0","0","0","0" +"31697","-1","This mysterious artifact pulses with barely contained power.","","","","Dread Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","256","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31698","-1","The letter bears the mark of the naaru.","","","","Letter from Shattrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2998","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31699","-1","","","","","Imbued Draenethyst Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","11","8","0","0","0","0","0","0","0","0","0" +"31700","-1","","","","","Runed Silver Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85828","429141","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","108","-1","0","0","192","0","0","0","0","289","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","37","31","0","0","0","0","0","0","0","0","0" +"31701","-1","","","","","Saboteur's Axe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86148","430743","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","108","-1","0","0","198","0","0","0","0","298","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","37","21","22","0","0","0","0","0","0","0","0" +"31702","-1","","","","","Challenge from the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31703","-1","","","","","Nether-Stalker's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69424","347122","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","108","-1","0","0","72","0","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","6","0","0","0","0","0","0","0","0","0" +"31704","-1","A crystalline key that is seemingly held together by beams of light.","","","","The Tempest Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31705","-1","","","","","Derelict Caravan Chest Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"31706","-1","","","","","The Head of the Hand of Kargath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31707","-1","","","","","Cabal Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10880","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","62" +"31708","-1","","","","","Scroll of Atalor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31709","-1","","","","","Drape of Arunen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31710","-1","","","","","Gavel of K'alen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31711","-1","","","","","Nether-Empowered Footgear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20900","104501","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","27","8","7","0","0","0","0","0","0","0","0" +"31712","-1","","","","","Mok'Nathal Champion's Shoulderguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24355","121777","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","27","16","0","0","0","0","0","0","0","0","0" +"31713","-1","","","","","Ritualist's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29338","146694","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","0","0","0","0","0","0","0","0","0","0" +"31714","-1","","","","","Nether Drake Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23037","115187","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","424","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","20","11","12","0","0","0","0","0","0","0","0" +"31715","-1","","","","","Demoniac Soul Prison","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28546","114184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","87","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","8","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","10","6","0","0","0","0","0","0","0","0","0" +"31716","-1","The blade is clean.","","","","Unused Axe of the Executioner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31717","-1","","","","","Shadowcast Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27137","135686","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","14","21","0","0","0","0","0","0","0","0" +"31718","-1","","","","","Darkstorm Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34046","170231","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","22","21","0","0","0","0","0","0","0","0","0" +"31719","-1","","","","","Stormstrike Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41009","205045","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","507","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","3","0","15","21","0","0","0","0","0","0","0","0","0" +"31720","-1","","","","","Battlemaster's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48023","240115","1","1","1","0","24580","0","0","0","135","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","88","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","3","4","7","0","0","0","0","0","0","0","0","0","0","0","5","3","0","21","38","22","0","0","0","0","0","0","0","0" +"31721","-1","","","","","Kalithresh's Trident","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31722","-1","","","","","Murmur's Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31723","-1","","","","","Madman's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","62449","312249","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","96","-1","0","0","48","0","0","0","0","91","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","6","0","0","0","0","0","0","0","0","0","0" +"31724","-1","","","","","Arakkoa Divining Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48321","241608","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","99","32767","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","4","0","0","0","0","0","0","0","0","0","0" +"31725","-1","","","","","Cilice of Suffering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12933","64665","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","69","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","22","10","0","0","0","0","0","0","0","0","0" +"31726","-1","","","","","Necklace of Bloodied Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30574","122296","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","24","15","0","0","0","0","0","0","0","0","0" +"31727","-1","","","","","Choker of Bloodied Feathers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30574","122296","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","94","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","24","15","0","0","0","0","0","0","0","0","0" +"31728","-1","","","","","Heirloom Signet of Willpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","11","2","0","11","7","5","0","0","0","0","0","0","0","0" +"31729","-1","","","","","Heirloom Signet of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","11","10","0","0","0","0","0","0","0","0","0" +"31730","-1","","","","","Heirloom Signet of Convalescence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","0","0","0","0","0","0","0","0","0","0","0","11","2","0","11","7","5","0","0","0","0","0","0","0","0" +"31731","-1","","","","","Mekeda's Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","13","0","0","0","0","0","0","0","0","0","0" +"31732","-1","","","","","Unearthed Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","13","0","0","0","0","0","0","0","0","0","0" +"31733","-1","","","","","Akuno's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61828","309143","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","99","-1","0","0","69","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","8","7","0","0","0","0","0","0","0","0","0" +"31734","-1","","","","","Ancient Draenei Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39721","198609","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","2938","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","4","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","14","21","13","0","0","0","0","0","0","0","0" +"31735","-1","","","","","Timeless Shell","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","25","20000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","990","0","0","145","-1","0","0","53","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31736","-1","At first glance, the crystal's core appears solid, but the longer you look at it, the more you become aware of subtle motion inside the object.","","","","Crystal of Deep Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31737","-1","","","","","Timeless Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","25","20000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","990","0","0","145","-1","0","0","53","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31739","-1","","","","","Smoke Beacon","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31740","-1","","","","","Meeting Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31741","-1","","","","","Nether-wraith Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31742","-1","","","","","Nether-wraith Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31743","-1","","","","","Monster - Mace, Draenei A02 Purple (Low Purple Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31744","-1","","","","","Botanist's Field Guide","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31745","-1","","","","","Illidari-Bane Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91143","455716","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31746","-1","","","","","Phoenix-fire Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","34","0","0","0","0","0","0","0","0","0","0" +"31747","-1","","","","","Potent Sha'tari Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","24","0","0","0","0","0","0","0","0","0","0" +"31748","-1","","","","","Shattrath Choker of Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","24","0","0","0","0","0","0","0","0","0","0" +"31749","-1","","","","","A'dal's Recovery Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","24","0","0","0","0","0","0","0","0","0","0" +"31750","-1","","","","","Earthen Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31751","-1","","","","","Blazing Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31752","-1","","","","","Sablemane's Trap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31753","-1","","","","","Essence of Infinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31754","-1","","","","","Grisly Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31755","-1","","","","","Wyvern Cage Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31756","-1","","","","","Dib'Muad's Crysknife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71638","358193","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","94","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","19","0","0","0","0","0","0","0","0","0","0" +"31757","-1","It reeks of felfire and brimstone.","","","","Fel Cannonball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31758","-1","","","","","Revered Mother's Crysknife","0.6","0","-7.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72181","360908","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","94","-1","0","0","55","0","0","0","0","103","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","21","5","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","19","9","0","0","0","0","0","0","0","0","0" +"31759","-1","","","","","Shani's Crysknife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72453","362265","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","94","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","9","0","0","0","0","0","0","0","0","0","0" +"31760","-1","","","","","Miniwing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31761","-1","","","","","Talonbranch Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47720","238603","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","96","-1","0","0","104","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","3","5","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","4","0","0","0","0","0","0","0","0","0","0" +"31762","-1","","","","","Feather-Wrapped Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47893","239467","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","96","-1","0","0","93","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","15","2","2","4","0","0","0","0","0","0","0","0","0","0" +"31763","-1","","","","","Druid Signal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31764","-1","","","","","Stillfire Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39664","198320","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","449","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","30","20","0","0","0","0","0","0","0","0","0" +"31765","-1","","","","","Redeemer's Plate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46440","232203","1","1","1","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","917","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","5","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","20","30","21","0","0","0","0","0","0","0","0" +"31766","-1","","","","","Skywitch Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19974","99871","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","20","30","20","0","0","0","0","0","0","0","0" +"31767","-1","","","","","[TXT]Rexxar's Misha Summoner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31768","-1","","","","","Deep Mire Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18476","92384","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","56","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","12","12","0","0","0","0","0","0","0","0","0" +"31769","-1","","","","","Sha'tari Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31770","-1","","","","","Marsh Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11890","59453","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","96","-1","0","0","0","0","0","0","0","0","0","0","0","0","52","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","7","16","0","0","0","0","0","0","0","0","0" +"31772","-1","","","","","Anchorite Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31773","-1","","","","","Mag'har Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31774","-1","","","","","Kurenai Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31775","-1","","","","","Sporeggar Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31776","-1","","","","","Consortium Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31777","-1","","","","","Keepers of Time Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31778","-1","","","","","Lower City Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31779","-1","","","","","Aldor Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","932","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31780","-1","","","","","Scryers Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31781","-1","","","","","Sha'tar Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31782","-1","","","","","Warpstalker Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39375","196879","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","30","20","0","0","0","0","0","0","0","0","0" +"31783","-1","","","","","Bloodfire Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26345","131726","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","36","24","0","0","0","0","0","0","0","0","0" +"31784","-1","","","","","Ancient Terokkar Hood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24787","123938","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","34","21","0","0","0","0","0","0","0","0","0" +"31785","-1","","","","","Edge of Inevitability","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82921","414608","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","99","-1","0","0","189","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","3","7","0","0","0","0","0","0","0","0","0","0","0","17","2","0","34","18","21","0","0","0","0","0","0","0","0" +"31786","-1","","","","","Blacksting Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27639","138196","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","16","16","0","0","0","0","0","0","0","0","0" +"31787","-1","","","","","Stalwart Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21600","108004","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","14","21","14","0","0","0","0","0","0","0","0" +"31788","-1","","","","","Blacksting Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15396","76980","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","134","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","21","14","13","0","0","0","0","0","0","0","0" +"31789","-1","","","","","Marshfang Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16773","83869","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","90","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","16","24","0","0","0","0","0","0","0","0","0" +"31790","-1","","","","","Expedition Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","11","0","0","0","0","0","0","0","0","0" +"31791","-1","","","","","Wildlord's Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41555","166220","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","11","8","0","0","0","0","0","0","0","0","0" +"31792","-1","","","","","Evergrove Ranger's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20526","102630","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","67","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","3","0","0","0","0","0","0","0","0","0","0","0","0","16","2","0","12","12","0","0","0","0","0","0","0","0","0" +"31793","-1","","","","","Ruuan Weald Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17169","85845","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","108","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","0","0","0","0","0","0","0","0","0","0","0","9","2","0","21","11","12","0","0","0","0","0","0","0","0" +"31794","-1","","","","","Sha'tari Vindicator's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44616","223080","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","802","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","21","20","30","0","0","0","0","0","0","0","0" +"31795","-1","","","","","Draenei Prayer Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31796","-1","","","","","Sha'tari Marksman's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19263","96316","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","15","15","0","0","0","0","0","0","0","0","0" +"31797","-1","","","","","Elekk Hide Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24165","120828","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","173","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","21","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","12","28","16","0","0","0","0","0","0","0","0" +"31798","-1","","","","","Death-Speaker's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25871","129357","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","99","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","14","34","0","0","0","0","0","0","0","0","0" +"31799","-1","Delicious and nutritious","","","","Fei Fei Doggy Treat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31800","-1","","","","","Outcast's Cache","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31801","-1","","","","","Monster - Staff, Zul'Gurub 03","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31802","-1","","","","","Monster - Claw, ZulGurub 02","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31803","-1","","","","","Monster - Claw, ZulGurub 02 Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31804","-1","","","","","Cenarion Expedition Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31805","-1","","","","","Monster - Dagger, Outland Raid D04, Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31806","-1","","","","","Monster - Sword, Zul'gurub 02","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31807","-1","","","","","Naturalized Ammunition","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31808","-1","","","","","Sablemane's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31809","-1","","","","","Evergrove Wand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31810","-1","An ancient drum.","","","","Fumper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31811","-1","","","","","Dread Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31812","-1","","","","","Doom Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"31813","-1","The caustic blood of a warp chaser, safely packaged in a glass vial by your very own imp.","","","","Warp Chaser Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31814","-1","","","","","Mature Bone Sifter Carcass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31815","-1","Attuned to the mischievous imp, Zeppit.","","","","Zeppit's Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31816","-1","","","","","Dragonbone Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82425","412127","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","102","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","40","15","11","0","0","0","0","0","0","0","0" +"31817","-1","","","","","Dragonbone Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29915","149575","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","396","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","19","15","0","0","0","0","0","0","0","0","0" +"31818","-1","","","","","Dragonbone Talisman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34629","138516","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","8","7","0","0","0","0","0","0","0","0" +"31819","-1","","","","","Noble Plate Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34935","174676","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","32","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","20","14","13","0","0","0","0","0","0","0" +"31820","-1","","","","","Blessed Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32891","131564","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","13","12","12","12","0","0","0","0","0","0","0" +"31821","-1","","","","","Blade of Retribution","0.6","0","-12.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67150","335753","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","102","-1","0","0","71","0","0","0","0","133","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","21","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","16","10","0","0","0","0","0","0","0","0","0" +"31823","-1","","","","","Book of Many Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32023","128092","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","102","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","18","0","0","0","0","0","0","0","0","0","0" +"31824","-1","","","","","Monster - Work Wrench","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"31825","-1","An ancient drum.","","","","Fumper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31826","-1","","","","","Enormous Bone Worm Organs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31827","-1","","","","","Sablemane's Trap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31828","-1","","","","","Ritual Prayer Beads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31829","-1","","","","","Reins of the Cobalt Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31830","-1","","","","","Reins of the Cobalt Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31831","-1","","","","","Reins of the Silver Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31832","-1","","","","","Reins of the Silver Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31833","-1","","","","","Reins of the Tan Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31834","-1","","","","","Reins of the Tan Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31835","-1","","","","","Reins of the White Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31836","-1","","","","","Reins of the White Riding Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","700000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"31837","-1","Teaches Prayer of Shadow Protection (Rank 2).","","","","Codex: Prayer of Shadow Protection II","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14750","59000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","31248","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31838","-1","An old bootleg recipe from the Arathi Basin farm.","","","","Major Combat Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31839","-1","Extracted from the frozen waters of Alterac Valley.","","","","Major Combat Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31840","-1","An old bootleg recipe from the Arathi Basin farm.","","","","Major Combat Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31841","-1","Extracted from the frozen waters of Alterac Valley.","","","","Major Combat Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31842","-1","","","","","QAEnchant Bracer +12 Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31843","-1","","","","","QAEnchant Bracer +24 Attack Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31844","-1","","","","","QAEnchant Bracer +30 Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31845","-1","","","","","QAEnchant Bracer +15 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31846","-1","","","","","QAEnchant Bracer +12 Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31847","-1","","","","","QAEnchant Bracer +12 Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31848","-1","","","","","QAEnchant Bracer +4 All Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31849","-1","","","","","QAEnchant Bracer +12 Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31850","-1","","","","","QATest +500 Defense Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","1" +"31851","-1","","","","","QATest +150 Defense Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91453","365815","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","1" +"31852","-1","Sifted from the twisting nether of the Eye of the Storm.","","","","Major Combat Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31853","-1","Distilled only within the hollow log of Warsong Gulch.","","","","Major Combat Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31854","-1","Sifted from the twisting nether of the Eye of the Storm.","","","","Major Combat Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31855","-1","Distilled only within the hollow log of Warsong Gulch.","","","","Major Combat Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","61" +"31856","-1","","","","","Darkmoon Card: Crusade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31857","-1","","","","","Darkmoon Card: Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"31858","-1","","","","","Darkmoon Card: Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","51","0","0","0","0","0","0","0","0","0","70" +"31859","-1","","","","","Darkmoon Card: Madness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","100000","400000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","51","0","0","0","0","0","0","0","0","0","70" +"31860","-1","Matches a Yellow Socket.","","","","Great Golden Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","521","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31861","-1","Matches a Yellow Socket.","","","","Great Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","522","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31862","-1","Matches a Red or Blue Socket.","","","","Balanced Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","523","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31863","-1","Matches a Red or Blue Socket.","","","","Balanced Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","524","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31864","-1","Matches a Red or Blue Socket.","","","","Infused Shadow Draenite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","525","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31865","-1","Matches a Red or Blue Socket.","","","","Infused Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","526","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31866","-1","Matches a Yellow or Red Socket.","","","","Veiled Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","527","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31867","-1","Matches a Red or Yellow Socket.","","","","Veiled Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","528","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31868","-1","Matches a Red or Yellow Socket.","","","","Wicked Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","529","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31869","-1","Matches a Yellow or Red Socket.","","","","Wicked Flame Spessarite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31870","-1","Teaches you how to cut a Great Golden Draenite.","","","","Design: Great Golden Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31871","-1","Teaches you how to cut a Balanced Shadow Draenite.","","","","Design: Balanced Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31872","-1","Teaches you how to cut an Infused Shadow Draenite.","","","","Design: Infused Shadow Draenite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31873","-1","Teaches you how to cut a Veiled Flame Spessarite.","","","","Design: Veiled Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31874","-1","Teaches you how to cut a Wicked Flame Spessarite.","","","","Design: Wicked Flame Spessarite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","755","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31875","-1","Teaches you how to cut a Great Dawnstone.","","","","Design: Great Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31876","-1","Teaches you how to cut a Balanced Nightseye.","","","","Design: Balanced Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31877","-1","Teaches you how to cut a Infused Nightseye.","","","","Design: Infused Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31878","-1","Teaches you how to cut a Veiled Noble Topaz.","","","","Design: Veiled Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31879","-1","Teaches you how to cut a Wicked Noble Topaz.","","","","Design: Wicked Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31880","-1","","","","","Blood Elf Orphan Whistle","0","604800","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31881","-1","","","","","Draenei Orphan Whistle","0","604800","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31882","-1","","","","","Ace of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31883","-1","","","","","Eight of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31884","-1","","","","","Five of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31885","-1","","","","","Four of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31886","-1","","","","","Seven of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31887","-1","","","","","Six of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31888","-1","","","","","Three of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31889","-1","","","","","Two of Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31890","-1","Property of the Darkmoon Faire.","","","","Blessings Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10938","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31891","-1","Property of the Darkmoon Faire.","","","","Storms Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10939","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31892","-1","","","","","Ace of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31893","-1","","","","","Eight of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31894","-1","","","","","Five of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31895","-1","","","","","Four of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31896","-1","","","","","Seven of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31898","-1","","","","","Six of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31899","-1","","","","","Three of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31900","-1","","","","","Two of Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31901","-1","","","","","Ace of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31902","-1","","","","","Eight of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31903","-1","","","","","Five of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31904","-1","","","","","Four of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31905","-1","","","","","Seven of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31906","-1","","","","","Six of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31907","-1","Property of the Darkmoon Faire.","","","","Furies Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10940","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31908","-1","","","","","Three of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31909","-1","","","","","Two of Furies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31910","-1","","","","","Ace of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31911","-1","","","","","Eight of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31912","-1","","","","","Five of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31913","-1","","","","","Four of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31914","-1","Property of the Darkmoon Faire.","","","","Lunacy Deck","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","200000","800000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10941","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"31915","-1","","","","","Seven of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31916","-1","","","","","Six of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31917","-1","","","","","Three of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31918","-1","","","","","Two of Lunacy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"31919","-1","","","","","Nexus-Prince's Ring of Balance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","20","19","0","0","0","0","0","0","0","70" +"31920","-1","","","","","Shaffar's Band of Brutality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","19","0","0","0","0","0","0","0","0","70" +"31921","-1","","","","","Yor's Collapsing Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","19","0","0","0","0","0","0","0","0","70" +"31922","-1","","","","","Ring of Conflict Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","28","0","0","0","0","0","0","0","0","70" +"31923","-1","","","","","Band of the Crystalline Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","0","0","0","0","0","0","0","0","0","70" +"31924","-1","","","","","Yor's Revenge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51700","206800","1","0","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","190","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","20","30","0","0","0","0","0","0","0","0","70" +"31925","-1","","","","","Fiery Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31926","-1","","","","","Frigid Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31927","-1","","","","","Living Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31928","-1","","","","","Dark Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31929","-1","","","","","Enigmatic Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31930","-1","","","","","Enigmatic Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31931","-1","","","","","Fiery Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31932","-1","","","","","Living Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31933","-1","","","","","Dark Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31934","-1","","","","","Frigid Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31935","-1","","","","","Frigid Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25757","128787","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","18","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31936","-1","","","","","Fiery Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25850","129252","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","74","0","18","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31937","-1","","","","","Living Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24090","120453","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","74","0","0","18","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31938","-1","","","","","Enigmatic Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24183","120918","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","18","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31939","-1","","","","","Dark Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24276","121383","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","181","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","18","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","27","0","0","0","0","0","0","0","0","0","70" +"31940","-1","","","","","Ethereum Torque","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","205","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31941","-1","The markings hide Ethereum secrets.","","","","Mark of the Nexus-King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31942","-1","","","","","Deathwing Brood Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25775","128876","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","205","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31943","-1","","","","","Ethereum Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","205","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","70" +"31944","-1","","","","","Demonic Capacitor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","870","3480","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"31945","-1","","","","","Shadow Circuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","990","3960","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"31946","-1","","","","","Ashtongue Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31947","-1","","","","","Energized Isolation Cube","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31948","-1","","","","","Skystalk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31949","-1","","","","","Warden's Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","942","0","0","115","-1","0","0","37","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","68" +"31950","-1","","","","","Bogblossom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31951","-1","A finely-crafted, wooden dragon, worth every copper.","","","","Toy Dragon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31952","-1","","","","","Khorium Lockbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","750","3000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1666","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31953","-1","A viscous, shimmering potion created to help druids emerge safely from the Emerald Dream.","","","","Ward of Waking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31954","-1","It's wet and coated with slobber...","","","","Chewed Up Boot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31955","-1","","","","","Arelion's Knapsack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12","50","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31956","-1","","","","","Salvaged Ethereum Prison Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31957","-1","Strange glyphs and symbols cover the front and backside of this tag.","","","","Ethereum Prisoner I.D. Tag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"31958","-1","","","","","Merciless Gladiator's Bonecracker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","136","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","27","19","12","10","0","0","0","0","0","0","70" +"31959","-1","","","","","Merciless Gladiator's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","136","-1","0","0","365","0","0","0","0","549","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","42","42","33","18","0","0","0","0","0","70" +"31960","-1","","","","","Merciless Gladiator's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","586","0","0","0","0","0","0","0","136","4","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","57","31","21","21","17","0","0","0","0","0","70" +"31961","-1","","","","","Merciless Gladiator's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","136","4","0","0","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","48","30","17","21","13","0","0","0","0","0","70" +"31962","-1","","","","","Merciless Gladiator's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","586","0","0","0","0","0","0","0","136","4","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","55","37","22","22","19","0","0","0","0","0","70" +"31963","-1","","","","","Merciless Gladiator's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","136","4","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","58","38","21","33","15","0","0","0","0","0","70" +"31964","-1","","","","","Merciless Gladiator's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","586","0","0","0","0","0","0","0","136","4","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","32","14","21","10","0","0","0","0","0","70" +"31965","-1","","","","","Merciless Gladiator's Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","136","-1","0","0","177","0","0","0","0","330","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","19","12","10","0","0","0","0","0","0","70" +"31966","-1","","","","","Merciless Gladiator's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","136","-1","0","0","365","0","0","0","0","549","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","42","33","18","0","0","0","0","0","0","70" +"31967","-1","","","","","Merciless Gladiator's Dragonhide Gloves","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","34","19","19","22","0","0","0","0","0","70" +"31968","-1","","","","","Merciless Gladiator's Dragonhide Helm","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","584","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","52","36","20","27","25","0","0","0","0","0","70" +"31969","-1","","","","","Merciless Gladiator's Dragonhide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","49","43","26","29","29","0","0","0","0","0","70" +"31971","-1","","","","","Merciless Gladiator's Dragonhide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","584","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","30","14","21","21","0","0","0","0","0","70" +"31972","-1","","","","","Merciless Gladiator's Dragonhide Tunic","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","584","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","37","19","22","26","0","0","0","0","0","70" +"31973","-1","","","","","Merciless Gladiator's Dreadweave Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","45","25","21","0","0","0","0","0","0","0","70" +"31974","-1","","","","","Merciless Gladiator's Dreadweave Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","568","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","66","20","33","0","0","0","0","0","0","0","70" +"31975","-1","","","","","Merciless Gladiator's Dreadweave Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","27","33","0","0","0","0","0","0","0","70" +"31976","-1","","","","","Merciless Gladiator's Dreadweave Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","568","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","10","21","13","0","0","0","0","0","0","70" +"31977","-1","","","","","Merciless Gladiator's Dreadweave Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","568","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","69","18","24","0","0","0","0","0","0","0","70" +"31978","-1","","","","","Merciless Gladiator's Endgame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","27","19","27","0","0","0","0","0","0","0","70" +"31979","-1","","","","","Merciless Gladiator's Felweave Amice","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","615","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","46","10","23","14","0","0","0","0","0","0","70" +"31980","-1","","","","","Merciless Gladiator's Felweave Cowl","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","615","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","11","18","33","0","0","0","0","0","0","70" +"31981","-1","","","","","Merciless Gladiator's Felweave Handguards","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","15","19","23","0","0","0","0","0","0","70" +"31982","-1","","","","","Merciless Gladiator's Felweave Raiment","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","615","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","57","12","30","26","0","0","0","0","0","0","70" +"31983","-1","","","","","Merciless Gladiator's Felweave Trousers","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","136","256","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","20","29","30","0","0","0","0","0","0","70" +"31984","-1","","","","","Merciless Gladiator's Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","136","-1","0","0","365","0","0","0","0","549","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","42","42","33","18","0","0","0","0","0","70" +"31985","-1","","","","","Merciless Gladiator's Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","136","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","27","19","12","10","0","0","0","0","0","0","70" +"31986","-1","Finely crafted to Ephoenix's specification","","","","Merciless Gladiator's Crossbow of the Phoenix","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","136","-1","0","0","211","0","0","0","0","318","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","21","15","13","0","0","0","0","0","0","0","70" +"31987","-1","","","","","Merciless Gladiator's Kodohide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","31","21","0","0","0","0","0","0","0","70" +"31988","-1","","","","","Merciless Gladiator's Kodohide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","685","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","35","29","0","0","0","0","0","0","0","70" +"31989","-1","","","","","Merciless Gladiator's Kodohide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","51","40","31","0","0","0","0","0","0","0","70" +"31990","-1","","","","","Merciless Gladiator's Kodohide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","685","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","21","20","0","0","0","0","0","0","0","70" +"31991","-1","","","","","Merciless Gladiator's Kodohide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","685","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","31","27","0","0","0","0","0","0","0","70" +"31992","-1","","","","","Merciless Gladiator's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","582","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1704","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","57","27","34","31","0","0","0","0","0","0","70" +"31993","-1","","","","","Merciless Gladiator's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1065","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","27","26","19","0","0","0","0","0","0","70" +"31994","-1","","","","","Ethereum Key Tablet - Alpha","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"31995","-1","","","","","Merciless Gladiator's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","63","25","35","35","0","0","0","0","0","0","70" +"31996","-1","","","","","Merciless Gladiator's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","582","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1278","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","40","20","25","22","0","0","0","0","0","0","70" +"31997","-1","","","","","Merciless Gladiator's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","582","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1385","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","63","24","24","33","0","0","0","0","0","0","70" +"31998","-1","","","","","Merciless Gladiator's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","136","8","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","45","31","24","16","0","0","0","0","0","0","70" +"31999","-1","","","","","Merciless Gladiator's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","577","0","0","0","0","0","0","0","136","8","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","58","37","25","17","0","0","0","0","0","0","70" +"32000","-1","","","","","Merciless Gladiator's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","136","8","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","41","21","40","0","0","0","0","0","0","70" +"32001","-1","","","","","Merciless Gladiator's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","577","0","0","0","0","0","0","0","136","8","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","32","24","25","0","0","0","0","0","0","70" +"32002","-1","","","","","Merciless Gladiator's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","577","0","0","0","0","0","0","0","136","8","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","57","37","25","13","0","0","0","0","0","0","70" +"32003","-1","","","","","Merciless Gladiator's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","136","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32004","-1","","","","","Merciless Gladiator's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","578","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","57","31","30","27","0","0","0","0","0","0","70" +"32005","-1","","","","","Merciless Gladiator's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","45","29","29","22","0","0","0","0","0","0","70" +"32006","-1","","","","","Merciless Gladiator's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","578","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","37","28","33","0","0","0","0","0","0","70" +"32007","-1","","","","","Merciless Gladiator's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","34","40","31","29","0","0","0","0","0","70" +"32008","-1","","","","","Merciless Gladiator's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","578","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","48","22","24","21","0","0","0","0","0","0","70" +"32009","-1","","","","","Merciless Gladiator's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","580","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","24","25","28","0","0","0","0","0","0","70" +"32010","-1","","","","","Merciless Gladiator's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","42","20","25","23","0","0","0","0","0","0","70" +"32011","-1","","","","","Merciless Gladiator's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","580","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","19","22","32","0","0","0","0","0","0","70" +"32012","-1","","","","","Merciless Gladiator's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","58","29","25","33","0","0","0","0","0","0","70" +"32013","-1","","","","","Merciless Gladiator's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","580","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","19","20","21","0","0","0","0","0","0","70" +"32014","-1","","","","","Merciless Gladiator's Maul","0.4","0","-56.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","136","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","42","42","33","18","0","0","0","0","0","70" +"32015","-1","","","","","Merciless Gladiator's Mooncloth Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","43","20","25","0","0","0","0","0","0","0","70" +"32016","-1","","","","","Merciless Gladiator's Mooncloth Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","687","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","66","18","33","0","0","0","0","0","0","0","70" +"32017","-1","","","","","Merciless Gladiator's Mooncloth Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","63","20","31","0","0","0","0","0","0","0","70" +"32018","-1","","","","","Merciless Gladiator's Mooncloth Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","687","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","18","25","0","0","0","0","0","0","0","70" +"32019","-1","","","","","Merciless Gladiator's Mooncloth Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","687","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","57","24","28","0","0","0","0","0","0","0","70" +"32020","-1","","","","","Merciless Gladiator's Ornamented Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","690","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1704","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","51","33","32","28","0","0","0","0","0","0","70" +"32021","-1","","","","","Merciless Gladiator's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1065","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","26","25","18","0","0","0","0","0","0","70" +"32022","-1","","","","","Merciless Gladiator's Ornamented Headcover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","690","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1385","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","57","30","22","32","0","0","0","0","0","0","70" +"32023","-1","","","","","Merciless Gladiator's Ornamented Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","55","35","36","35","0","0","0","0","0","0","70" +"32024","-1","","","","","Merciless Gladiator's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","690","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1278","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","24","25","23","0","0","0","0","0","0","70" +"32025","-1","","","","","Merciless Gladiator's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","136","-1","0","0","223","0","0","0","0","335","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","42","42","0","0","0","0","0","0","0","70" +"32026","-1","","","","","Merciless Gladiator's Pummeler","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","136","-1","0","0","177","0","0","0","0","330","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32027","-1","","","","","Merciless Gladiator's Quickblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","136","-1","0","0","102","0","0","0","0","191","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32028","-1","","","","","Merciless Gladiator's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","136","-1","0","0","177","0","0","0","0","330","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32029","-1","","","","","Merciless Gladiator's Ringmail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","686","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","954","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","26","26","26","0","0","0","0","0","0","70" +"32030","-1","","","","","Merciless Gladiator's Ringmail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","596","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","43","20","22","22","0","0","0","0","0","0","70" +"32031","-1","","","","","Merciless Gladiator's Ringmail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","686","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","775","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","24","21","33","0","0","0","0","0","0","70" +"32032","-1","","","","","Merciless Gladiator's Ringmail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","835","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","58","29","25","33","0","0","0","0","0","0","70" +"32033","-1","","","","","Merciless Gladiator's Ringmail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","686","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","20","18","21","0","0","0","0","0","0","70" +"32034","-1","","","","","Merciless Gladiator's Satin Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","42","19","25","0","0","0","0","0","0","0","70" +"32035","-1","","","","","Merciless Gladiator's Satin Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","581","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","66","16","32","0","0","0","0","0","0","0","70" +"32036","-1","","","","","Merciless Gladiator's Satin Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","66","27","34","0","0","0","0","0","0","0","70" +"32037","-1","","","","","Merciless Gladiator's Satin Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","581","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","19","23","0","0","0","0","0","0","0","70" +"32038","-1","","","","","Merciless Gladiator's Satin Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","581","0","0","0","0","0","0","0","136","16","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","57","24","31","0","0","0","0","0","0","0","70" +"32039","-1","","","","","Merciless Gladiator's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","583","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1704","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","54","27","24","45","24","0","0","0","0","0","70" +"32040","-1","","","","","Merciless Gladiator's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1065","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","19","17","41","18","0","0","0","0","0","70" +"32041","-1","","","","","Merciless Gladiator's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","583","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1385","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","26","18","51","19","0","0","0","0","0","70" +"32042","-1","","","","","Merciless Gladiator's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1491","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","60","23","23","53","24","0","0","0","0","0","70" +"32043","-1","","","","","Merciless Gladiator's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","583","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","1278","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","18","18","36","18","0","0","0","0","0","70" +"32044","-1","","","","","Merciless Gladiator's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","136","-1","0","0","140","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32045","-1","","","","","Merciless Gladiator's Shield Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","5727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","48","31","0","0","0","0","0","0","0","0","70" +"32046","-1","","","","","Merciless Gladiator's Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","136","-1","0","0","95","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32047","-1","","","","","Merciless Gladiator's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","579","0","0","0","0","0","0","0","136","128","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","46","15","23","14","0","0","0","0","0","0","70" +"32048","-1","","","","","Merciless Gladiator's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","579","0","0","0","0","0","0","0","136","128","0","0","0","0","0","0","0","0","0","0","0","0","185","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","52","26","20","33","0","0","0","0","0","0","70" +"32049","-1","","","","","Merciless Gladiator's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","136","128","0","0","0","0","0","0","0","0","0","0","0","0","143","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","20","19","23","0","0","0","0","0","0","70" +"32050","-1","","","","","Merciless Gladiator's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","579","0","0","0","0","0","0","0","136","128","0","0","0","0","0","0","0","0","0","0","0","0","228","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","57","21","30","26","0","0","0","0","0","0","70" +"32051","-1","","","","","Merciless Gladiator's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","136","128","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","36","29","30","0","0","0","0","0","0","70" +"32052","-1","","","","","Merciless Gladiator's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","136","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","19","12","10","0","0","0","0","0","0","70" +"32053","-1","","","","","Merciless Gladiator's Spellblade","0.6","0","-56.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","136","-1","0","0","109","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","27","18","18","15","0","0","0","0","0","0","70" +"32054","-1","","","","","Merciless Gladiator's War Edge","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","136","-1","0","0","91","0","0","0","0","137","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","21","16","12","0","0","0","0","0","0","0","70" +"32055","-1","","","","","Merciless Gladiator's War Staff","0.4","0","-56.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","136","-1","0","0","203","0","0","0","0","305","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","24","42","29","42","0","0","0","0","0","70" +"32056","-1","","","","","Merciless Gladiator's Wyrmhide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","268","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","39","21","22","0","0","0","0","0","0","0","70" +"32057","-1","","","","","Merciless Gladiator's Wyrmhide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","585","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","348","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","26","28","0","0","0","0","0","0","0","70" +"32058","-1","","","","","Merciless Gladiator's Wyrmhide Legguards","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","375","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","51","31","31","0","0","0","0","0","0","0","70" +"32059","-1","","","","","Merciless Gladiator's Wyrmhide Spaulders","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","585","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","321","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","17","22","0","0","0","0","0","0","0","70" +"32060","-1","","","","","Merciless Gladiator's Wyrmhide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","585","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","428","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","24","27","0","0","0","0","0","0","0","70" +"32061","-1","A collection of clues and items gathered from Stasis Chamber Alpha.","","","","Evidence from Alpha","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32062","-1","","","","","Elixir of Major Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"32063","-1","","","","","Earthen Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"32064","-1","","","","","Protectorate Treasure Cache","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32065","-1","","","","","Monster - Glaive - Demonhunter Black (Black Glow - Illidan)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32066","-1","","","","","Monster - Glaive - Demonhunter Black Offhand (Black Glow - Illidan)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32067","-1","","","","","Elixir of Draenic Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","64","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"32068","-1","","","","","Elixir of Ironskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32069","-1","","","","","Mana-Tombs Stasis Chamber Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32070","-1","Teaches you how to make an Earthen Elixir.","","","","Recipe: Earthen Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","320","171","64","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32071","-1","Teaches you how to make an Elixir of Ironskin.","","","","Recipe: Elixir of Ironskin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","171","66","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32072","-1","","","","","Gauntlets of Dissension","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38286","191433","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","868","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","23","36","24","0","0","0","0","0","0","70" +"32073","-1","","","","","Spaulders of Dementia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57213","286066","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","1042","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","3","7","12","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","24","34","23","0","0","0","0","0","0","70" +"32074","-1","","","","","Relics of Aviana","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32075","-1","An ancient, poorly preserved manuscript detailing the exploits of the arakkoa raven god.","","","","Book of the Raven","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32076","-1","","","","","Handguards of the Steady","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33127","165637","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","29","21","22","0","0","0","0","0","0","0","70" +"32077","-1","","","","","Wrath Infused Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33252","166262","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","486","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","34","0","0","0","0","0","0","0","0","70" +"32078","-1","","","","","Pauldrons of Wild Magic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50288","251444","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","28","23","0","0","0","0","0","0","0","70" +"32079","-1","","","","","Shaffar's Stasis Chamber Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32080","-1","","","","","Mantle of Shadowy Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42030","210152","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","262","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","33","0","0","0","0","0","0","0","0","70" +"32081","-1","","","","","Eye of the Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","0","0","0","0","0","0","0","0","0","70" +"32082","-1","","","","","The Fel Barrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74176","370882","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","4668","0","22","0","0","22","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32083","-1","","","","","Faceguard of Determination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","1129","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","1","0","0","1","0","15","7","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","36","32","24","0","0","0","0","0","0","70" +"32084","-1","","","","","Helmet of the Steadfast Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","1129","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","24","0","0","0","0","0","0","0","0","70" +"32085","-1","","","","","Warpstalker Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","36","32","0","0","0","0","0","0","0","70" +"32086","-1","","","","","Storm Master's Helmet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","632","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","32","24","0","0","0","0","0","0","0","70" +"32087","-1","","","","","Mask of the Deceiver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","32","36","16","0","0","0","0","0","0","0","70" +"32088","-1","","","","","Cowl of Beastly Rage","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","7","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","26","27","20","0","0","0","0","0","0","70" +"32089","-1","","","","","Mana-Binders Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","38","29","15","0","0","0","0","0","0","0","70" +"32090","-1","","","","","Cowl of Naaru Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","151","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","29","23","0","0","0","0","0","0","0","70" +"32091","-1","","","","","Alex's Test Beatdown Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72099","360496","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","97","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","60" +"32092","-1","A skeleton key that will open Nexus-Prince Shaffar's personal stasis chamber.","","","","The Eye of Haramad","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32093","-1","","","","","Chancellor's Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","21","12","0","0","0","0","0","0","0","70" +"32094","-1","","","","","Chancellor's Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","54","15","16","0","0","0","0","0","0","0","70" +"32095","-1","","","","","Chancellor's Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","25","24","0","0","0","0","0","0","0","70" +"32096","-1","","","","","Chancellor's Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","22","18","19","10","0","0","0","0","0","0","70" +"32097","-1","","","","","Chancellor's Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","0","0","0","0","0","0","0","0","105","256","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","52","16","16","0","0","0","0","0","0","0","70" +"32098","-1","","","","","Chancellor's Mooncloth Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","30","21","0","0","0","0","0","0","0","70" +"32099","-1","","","","","Chancellor's Mooncloth Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","30","25","0","0","0","0","0","0","0","70" +"32100","-1","","","","","Chancellor's Mooncloth Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","15","14","0","0","0","0","0","0","0","70" +"32101","-1","","","","","Chancellor's Mooncloth Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","23","15","0","0","0","0","0","0","0","70" +"32102","-1","","","","","Chancellor's Mooncloth Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","25","15","0","0","0","0","0","0","0","70" +"32103","-1","","","","","Chancellor's Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","15","14","0","0","0","0","0","0","0","70" +"32104","-1","","","","","Chancellor's Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","46","19","19","0","0","0","0","0","0","0","70" +"32105","-1","","","","","Chancellor's Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","23","23","0","0","0","0","0","0","0","70" +"32106","-1","","","","","Chancellor's Satin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","17","17","0","0","0","0","0","0","0","70" +"32107","-1","","","","","Chancellor's Satin Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","0","0","0","0","0","0","0","0","105","16","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","46","15","15","0","0","0","0","0","0","0","70" +"32108","-1","","","","","Chancellor's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","128","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","16","15","8","0","0","0","0","0","0","70" +"32109","-1","","","","","Chancellor's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","128","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","16","17","19","0","0","0","0","0","0","70" +"32110","-1","","","","","Chancellor's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","128","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","12","17","17","0","0","0","0","0","0","70" +"32111","-1","","","","","Chancellor's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","0","0","105","128","0","0","0","0","0","0","0","0","0","0","0","0","178","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","42","15","17","18","0","0","0","0","0","0","70" +"32112","-1","","","","","Chancellor's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","128","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","22","22","22","0","0","0","0","0","0","70" +"32113","-1","","","","","Chancellor's Dragonhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","24","17","11","17","16","0","0","0","0","0","70" +"32114","-1","","","","","Chancellor's Dragonhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","22","14","22","21","0","0","0","0","0","70" +"32115","-1","","","","","Chancellor's Dragonhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","23","22","22","22","0","0","0","0","0","70" +"32116","-1","","","","","Chancellor's Dragonhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","17","13","17","13","0","0","0","0","0","70" +"32117","-1","","","","","Chancellor's Dragonhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","18","18","18","18","0","0","0","0","0","70" +"32118","-1","","","","","Chancellor's Kodohide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","22","14","0","0","0","0","0","0","0","70" +"32119","-1","","","","","Chancellor's Kodohide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","18","19","0","0","0","0","0","0","0","70" +"32120","-1","","","","","Chancellor's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","28","14","28","0","0","0","0","0","0","70" +"32121","-1","","","","","Chancellor's Kodohide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","16","17","0","0","0","0","0","0","0","70" +"32122","-1","","","","","Chancellor's Kodohide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","28","20","0","0","0","0","0","0","0","70" +"32123","-1","","","","","Chancellor's Kodohide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","17","18","0","0","0","0","0","0","0","70" +"32124","-1","","","","","Chancellor's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","21","16","11","0","0","0","0","0","0","70" +"32125","-1","","","","","Chancellor's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","20","24","10","0","0","0","0","0","0","70" +"32126","-1","","","","","Chancellor's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","31","13","11","13","0","0","0","0","0","0","70" +"32127","-1","","","","","Chancellor's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","8","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","20","24","10","0","0","0","0","0","0","70" +"32128","-1","","","","","Chancellor's Wyrmhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","208","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","15","14","0","0","0","0","0","0","0","70" +"32129","-1","","","","","Chancellor's Wyrmhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","271","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","21","18","17","0","0","0","0","0","0","0","70" +"32130","-1","","","","","Chancellor's Wyrmhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","22","20","0","0","0","0","0","0","0","70" +"32131","-1","","","","","Chancellor's Wyrmhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","16","17","0","0","0","0","0","0","0","70" +"32132","-1","","","","","Chancellor's Wyrmhide Tunic","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","0","0","0","0","0","0","0","0","105","1024","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","33","17","18","0","0","0","0","0","0","0","70" +"32133","-1","","","","","Chancellor's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","4","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","20","12","16","15","0","0","0","0","0","70" +"32134","-1","","","","","Chancellor's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","4","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","31","21","11","14","6","0","0","0","0","0","70" +"32135","-1","","","","","Chancellor's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","4","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","20","14","15","14","0","0","0","0","0","70" +"32136","-1","","","","","Chancellor's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","4","0","0","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","28","14","25","8","0","0","0","0","0","70" +"32137","-1","","","","","Chancellor's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","4","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","31","14","17","16","4","0","0","0","0","0","70" +"32138","-1","","","","","Chancellor's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","12","14","22","0","0","0","0","0","0","70" +"32139","-1","","","","","Chancellor's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","21","18","17","0","0","0","0","0","0","70" +"32140","-1","","","","","Chancellor's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","20","24","24","0","0","0","0","0","0","70" +"32141","-1","","","","","Chancellor's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","22","28","22","22","0","0","0","0","0","70" +"32142","-1","","","","","Chancellor's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","13","17","13","0","0","0","0","0","0","70" +"32143","-1","","","","","Chancellor's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","14","18","18","0","0","0","0","0","0","70" +"32144","-1","","","","","Chancellor's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","13","14","13","0","0","0","0","0","0","70" +"32145","-1","","","","","Chancellor's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","16","16","16","0","0","0","0","0","0","70" +"32146","-1","","","","","Chancellor's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","18","22","22","0","0","0","0","0","0","70" +"32147","-1","","","","","Chancellor's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","13","12","12","0","0","0","0","0","0","70" +"32148","-1","","","","","Chancellor's Ringmail Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","22","18","18","0","0","0","0","0","0","70" +"32149","-1","","","","","Chancellor's Ringmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","18","14","13","0","0","0","0","0","0","70" +"32150","-1","","","","","Chancellor's Ringmail Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","33","21","16","16","0","0","0","0","0","0","70" +"32151","-1","","","","","Chancellor's Ringmail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","651","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","24","22","22","0","0","0","0","0","0","70" +"32152","-1","","","","","Chancellor's Ringmail Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","64","0","0","0","0","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","18","12","12","0","0","0","0","0","0","70" +"32153","-1","","","","","Chancellor's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","12","21","22","0","0","0","0","0","0","70" +"32154","-1","","","","","Chancellor's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","36","13","19","12","0","0","0","0","0","0","70" +"32155","-1","","","","","Chancellor's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","44","11","20","20","0","0","0","0","0","0","70" +"32156","-1","","","","","Chancellor's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","15","24","24","0","0","0","0","0","0","70" +"32157","-1","","","","","Chancellor's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","12","15","14","0","0","0","0","0","0","70" +"32158","-1","","","","","Chancellor's Ornamented Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","37","24","21","22","0","0","0","0","0","0","70" +"32159","-1","","","","","Chancellor's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","20","19","12","0","0","0","0","0","0","70" +"32160","-1","","","","","Chancellor's Ornamented Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","22","20","20","0","0","0","0","0","0","70" +"32161","-1","","","","","Chancellor's Ornamented Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","26","24","24","0","0","0","0","0","0","70" +"32162","-1","","","","","Chancellor's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","19","15","14","0","0","0","0","0","0","70" +"32163","-1","","","","","Chancellor's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","12","24","19","0","0","0","0","0","0","70" +"32164","-1","","","","","Chancellor's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","22","21","17","0","0","0","0","0","0","70" +"32165","-1","","","","","Chancellor's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","20","24","19","0","0","0","0","0","0","70" +"32166","-1","","","","","Chancellor's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","1163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","28","28","23","0","0","0","0","0","0","70" +"32167","-1","","","","","Chancellor's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","14","17","13","0","0","0","0","0","0","70" +"32168","-1","","","","","Chancellor's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1329","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","12","13","27","14","0","0","0","0","0","70" +"32169","-1","","","","","Chancellor's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","831","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","12","12","28","12","0","0","0","0","0","70" +"32170","-1","","","","","Chancellor's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","30","16","13","28","14","0","0","0","0","0","70" +"32171","-1","","","","","Chancellor's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","1163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","16","16","36","16","0","0","0","0","0","70" +"32172","-1","","","","","Chancellor's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","105","2","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","6","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","8","9","25","10","0","0","0","0","0","70" +"32173","-1","","","","","Chancellor's Bonecracker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32174","-1","","","","","Chancellor's Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","0","0","173","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32175","-1","","","","","Chancellor's Hacker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32176","-1","","","","","Chancellor's Pummeler","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","0","0","173","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32177","-1","","","","","Chancellor's Quickblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32178","-1","","","","","Chancellor's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32179","-1","","","","","Chancellor's Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","105","-1","0","0","93","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32180","-1","","","","","Chancellor's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","0","0","173","0","0","0","0","261","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32181","-1","","","","","Chancellor's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","31","31","21","20","0","0","0","0","0","70" +"32182","-1","","","","","Chancellor's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","31","21","20","0","0","0","0","0","0","70" +"32183","-1","","","","","Chancellor's Maul","0.4","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","31","31","21","20","0","0","0","0","0","70" +"32184","-1","","","","","Chancellor's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","105","-1","0","0","191","0","0","0","0","287","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","31","21","20","0","0","0","0","0","0","70" +"32185","-1","","","","","Chancellor's War Staff","0.4","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","105","-1","0","0","260","0","0","0","0","391","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","21","31","20","31","0","0","0","0","0","70" +"32186","-1","","","","","Chancellor's Warblade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","4","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","31","21","31","20","0","0","0","0","0","70" +"32187","-1","","","","","Chancellor's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","105","-1","0","0","193","0","0","0","0","290","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","15","10","9","0","0","0","0","0","0","0","70" +"32188","-1","","","","","Chancellor's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","105","-1","0","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32189","-1","","","","","Chancellor's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","105","-1","0","0","152","0","0","0","0","283","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","21","13","9","8","0","0","0","0","0","0","70" +"32190","-1","","","","","Chancellor's Spellblade","0.6","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","105","-1","0","0","93","0","0","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","21","13","13","13","0","0","0","0","0","0","70" +"32191","-1","","","","","Chancellor's Battletome","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","21","13","13","0","0","0","0","0","0","0","70" +"32192","-1","","","","","Chancellor's Barricade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","4465","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","39","26","0","0","0","0","0","0","0","0","70" +"32193","-1","Matches a Red Socket.","","","","Bold Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","541","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32194","-1","Matches a Red Socket.","","","","Delicate Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","542","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32195","-1","Matches a Red Socket.","","","","Teardrop Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","543","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32196","-1","Matches a Red Socket.","","","","Runed Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","544","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32197","-1","Matches a Red Socket.","","","","Bright Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","545","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32198","-1","Matches a Red Socket.","","","","Subtle Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","546","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32199","-1","Matches a Red Socket.","","","","Flashing Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","547","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32200","-1","Matches a Blue Socket.","","","","Solid Empyrean Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","548","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32201","-1","Matches a Blue Socket.","","","","Sparkling Empyrean Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","549","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32202","-1","Matches a Blue Socket.","","","","Lustrous Empyrean Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","550","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32203","-1","Matches a Blue Socket.","","","","Stormy Empyrean Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","551","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32204","-1","Matches a Yellow Socket.","","","","Brilliant Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","552","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32205","-1","Matches a Yellow Socket.","","","","Smooth Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","553","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32206","-1","Matches a Yellow Socket.","","","","Rigid Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","554","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32207","-1","Matches a Yellow Socket.","","","","Gleaming Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","555","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32208","-1","Matches a Yellow Socket.","","","","Thick Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32209","-1","Matches a Yellow Socket.","","","","Mystic Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","557","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32210","-1","Matches a Yellow Socket.","","","","Great Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","558","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32211","-1","Matches a Red or Blue Socket.","","","","Sovereign Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","559","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32212","-1","Matches a Red or Blue Socket.","","","","Shifting Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","560","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32213","-1","Matches a Red or Blue Socket.","","","","Balanced Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","561","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32214","-1","Matches a Red or Blue Socket.","","","","Infused Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32215","-1","Matches a Red or Blue Socket.","","","","Glowing Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","563","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32216","-1","Matches a Red or Blue Socket.","","","","Royal Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","564","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32217","-1","Matches a Red or Yellow Socket.","","","","Inscribed Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","565","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32218","-1","Matches a Red or Yellow Socket.","","","","Potent Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","566","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32219","-1","Matches a Red or Yellow Socket.","","","","Luminous Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32220","-1","Matches a Red or Yellow Socket.","","","","Glinting Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32221","-1","Matches a Red or Yellow Socket.","","","","Veiled Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","569","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32222","-1","Matches a Red or Yellow Socket.","","","","Wicked Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32223","-1","Matches a Blue or Yellow Socket.","","","","Enduring Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","571","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32224","-1","Matches a Blue or Yellow Socket.","","","","Radiant Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","572","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32225","-1","Matches a Blue or Yellow Socket.","","","","Dazzling Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","573","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32226","-1","Matches a Blue or Yellow Socket.","","","","Jagged Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","574","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32227","-1","","","","","Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32228","-1","","","","","Empyrean Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32229","-1","","","","","Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32230","-1","","","","","Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32231","-1","","","","","Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32232","-1","","","","","Eternium Shell Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50639","253195","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","52","24","26","0","0","0","0","0","0","0","70" +"32233","-1","","","","","Wolpertinger's Tankard","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32234","-1","","","","","Fists of Mukoa","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43467","217339","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","36","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","37","24","17","0","0","0","0","0","0","70" +"32235","-1","","","","","Cursed Vision of Sargeras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58105","290528","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","385","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","3","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","38","46","21","0","0","0","0","0","0","70" +"32236","-1","","","","","Rising Tide","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","145939","729697","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","141","-1","0","0","208","0","0","0","0","313","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","33","0","0","0","0","0","0","0","0","70" +"32237","-1","","","","","The Maelstrom's Fury","0.6","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","146462","732313","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","141","-1","0","0","126","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","33","21","22","0","0","0","0","0","0","0","70" +"32238","-1","","","","","Ring of Calming Waves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","24","27","0","0","0","0","0","0","0","70" +"32239","-1","","","","","Slippers of the Seacaller","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37542","187714","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","18","29","18","0","0","0","0","0","0","70" +"32240","-1","","","","","Guise of the Tidal Lurker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55506","277534","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","360","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","35","0","0","0","0","0","0","0","0","70" +"32241","-1","","","","","Helm of Soothing Currents","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60474","302371","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","803","0","0","0","0","0","0","0","254","0","0","0","4","1","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","42","0","0","0","0","0","0","0","0","70" +"32242","-1","","","","","Boots of Oceanic Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62666","313333","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","36","28","26","0","0","0","0","0","0","0","70" +"32243","-1","","","","","Pearl Inlaid Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72923","364616","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","1213","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","37","27","28","0","0","0","0","0","0","0","70" +"32244","-1","A plain-looking stone imbued with powerful magic.","","","","Seer's Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32245","-1","","","","","Tide-stomper's Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73471","367357","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1213","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","56","29","19","0","0","0","0","0","0","0","70" +"32246","-1","","","","","Monster - Mace, Spiked Skull","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32247","-1","","","","","Ring of Captured Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","19","0","0","0","0","0","0","0","0","70" +"32248","-1","","","","","Halberd of Desolation","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","177210","886051","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","141","32767","0","0","365","0","0","0","0","548","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","51","57","30","0","0","0","0","0","0","0","70" +"32249","-1","","","","","Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50000","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32250","-1","","","","","Pauldrons of Abyssal Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","72","28","36","0","0","0","0","0","0","0","70" +"32251","-1","","","","","Wraps of Precise Flight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42997","214985","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","28","20","19","0","0","0","0","0","0","70" +"32252","-1","","","","","Nether Shadow Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71923","359617","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","36","52","35","0","0","0","0","0","0","0","70" +"32253","-1","","","","","Legionkiller","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108266","541334","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","141","-1","0","0","184","0","0","0","0","342","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","21","30","0","0","0","0","0","0","0","0","70" +"32254","-1","","","","","The Brutalizer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","144879","724395","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","141","-1","0","0","128","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","12","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","33","22","21","0","0","0","0","0","0","0","70" +"32255","-1","","","","","Felstone Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","93057","465287","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","5930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","28","21","27","0","0","0","0","0","0","0","70" +"32256","-1","","","","","Waistwrap of Infinity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29185","145925","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","22","32","0","0","0","0","0","0","0","70" +"32257","-1","","","","","Idol of the White Stag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","43930","219651","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32258","-1","","","","","Naturalist's Preserving Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40965","204825","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","30","37","0","0","0","0","0","0","0","70" +"32259","-1","","","","","Bands of the Coming Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41122","205610","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","28","28","0","0","0","0","0","0","0","70" +"32260","-1","","","","","Choker of Endless Nightmares","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","27","21","0","0","0","0","0","0","0","0","70" +"32261","-1","","","","","Band of the Abyssal Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","53","27","21","0","0","0","0","0","0","0","70" +"32262","-1","","","","","Syphon of the Nathrezim","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","138629","693145","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","141","32767","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32263","-1","","","","","Praetorian's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87600","438001","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","3","3","2","0","1","0","0","1","0","7","14","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","75","43","35","18","0","0","0","0","0","0","70" +"32264","-1","","","","","Shoulders of the Hidden Predator","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63126","315634","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","37","26","0","0","0","0","0","0","0","70" +"32265","-1","","","","","Shadow-walker's Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35046","175230","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","38","37","0","0","0","0","0","0","0","70" +"32266","-1","","","","","Ring of Deceitful Intent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","21","19","42","0","0","0","0","0","0","0","70" +"32267","-1","","","","","Boots of the Resilient","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67698","338493","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","51","25","25","0","0","0","0","0","0","0","70" +"32268","-1","","","","","Myrmidon's Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74271","371358","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1213","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","1","0","0","1","0","7","12","31","13","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","56","30","17","26","0","0","0","0","0","0","70" +"32269","-1","","","","","Messenger of Fate","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","142263","711315","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","141","-1","0","0","112","0","0","0","0","169","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","22","31","0","0","0","0","0","0","0","0","70" +"32270","-1","","","","","Focused Mana Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28557","142786","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","20","19","0","0","0","0","0","0","0","70" +"32271","-1","","","","","Kilt of Immortal Nature","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62571","312857","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","4","3","4","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","42","0","0","0","0","0","0","0","0","70" +"32272","-1","","","","","Monster - Sword, Chromatically Tempered","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32273","-1","","","","","Amice of Brilliant Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43302","216512","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","27","37","0","0","0","0","0","0","0","70" +"32274","-1","Teaches you how to cut a Bold Crimson Spinel.","","","","Design: Bold Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32275","-1","","","","","Spiritwalker Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40494","202471","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","38","27","37","0","0","0","0","0","0","0","70" +"32276","-1","","","","","Flashfire Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40647","203235","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","30","7","5","21","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","37","27","26","18","0","0","0","0","0","0","70" +"32277","-1","Teaches you how to cut a Delicate Crimson Spinel.","","","","Design: Delicate Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32278","-1","","","","","Grips of Silent Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48060","240304","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","1","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","37","15","0","0","0","0","0","0","0","70" +"32279","-1","","","","","The Seeker's Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48240","241200","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","15","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","43","28","21","0","0","0","0","0","0","0","70" +"32280","-1","","","","","Gauntlets of Enforcement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44050","220252","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","70","32","21","0","0","0","0","0","0","0","70" +"32281","-1","Teaches you how to cut a Teardrop Crimson Spinel.","","","","Design: Teardrop Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32282","-1","Teaches you how to cut a Runed Crimson Spinel.","","","","Design: Runed Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32283","-1","Teaches you how to cut a Bright Crimson Spinel.","","","","Design: Bright Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32284","-1","Teaches you how to cut a Subtle Crimson Spinel.","","","","Design: Subtle Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32285","-1","Teaches you how to cut a Flashing Crimson Spinel.","","","","Design: Flashing Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32286","-1","Teaches you how to cut a Solid Empyrean Sapphire.","","","","Design: Solid Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32287","-1","Teaches you how to cut a Sparkling Empyrean Sapphire.","","","","Design: Sparkling Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32288","-1","Teaches you how to cut a Lustrous Empyrean Sapphire.","","","","Design: Lustrous Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32289","-1","Teaches you how to cut a Stormy Empyrean Sapphire.","","","","Design: Stormy Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32290","-1","Teaches you how to cut a Brilliant Lionseye.","","","","Design: Brilliant Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32291","-1","Teaches you how to cut a Smooth Lionseye.","","","","Design: Smooth Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32292","-1","Teaches you how to cut a Rigid Lionseye.","","","","Design: Rigid Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32293","-1","Teaches you how to cut a Gleaming Lionseye.","","","","Design: Gleaming Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32294","-1","Teaches you how to cut a Thick Lionseye.","","","","Design: Thick Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32295","-1","Teaches you how to cut a Mystic Lionseye.","","","","Design: Mystic Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32296","-1","Teaches you how to cut a Great Lionseye.","","","","Design: Great Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32297","-1","Teaches you how to cut a Sovereign Shadowsong Amethyst.","","","","Design: Sovereign Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32298","-1","Teaches you how to cut a Shifting Shadowsong Amethyst.","","","","Design: Shifting Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32299","-1","Teaches you how to cut a Balanced Shadowsong Amethyst.","","","","Design: Balanced Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32300","-1","Teaches you how to cut a Infused Shadowsong Amethyst.","","","","Design: Infused Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32301","-1","Teaches you how to cut a Glowing Shadowsong Amethyst.","","","","Design: Glowing Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32302","-1","Teaches you how to cut a Royal Shadowsong Amethyst.","","","","Design: Royal Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32303","-1","Teaches you how to cut an Inscribed Pyrestone.","","","","Design: Inscribed Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32304","-1","Teaches you how to cut an Potent Pyrestone.","","","","Design: Potent Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32305","-1","Teaches you how to cut a Luminous Pyrestone.","","","","Design: Luminous Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32306","-1","Teaches you how to cut a Glinting Pyrestone.","","","","Design: Glinting Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32307","-1","Teaches you how to cut a Veiled Pyrestone.","","","","Design: Veiled Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32308","-1","Teaches you how to cut a Wicked Pyrestone.","","","","Design: Wicked Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32309","-1","Teaches you how to cut a Enduring Seaspray Emerald.","","","","Design: Enduring Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32310","-1","Teaches you how to cut a Radiant Seaspray Emerald.","","","","Design: Radiant Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32311","-1","Teaches you how to cut a Dazzling Seaspray Emerald.","","","","Design: Dazzling Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32312","-1","Teaches you how to cut a Jagged Seaspray Emerald.","","","","Design: Jagged Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32313","-1","A fragment of the stone Book of the Raven.","","","","Raven Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32314","-1","","","","","Green Riding Nether Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32315","-1","","","","","Cenarion Sparrowhawk Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32316","-1","","","","","Purple Riding Nether Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32317","-1","","","","","Red Riding Nether Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32318","-1","","","","","Silver Riding Nether Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32319","-1","","","","","Blue Riding Nether Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32320","-1","A netted wild sparrowhawk from the hills of Nagrand.","","","","Captive Sparrowhawk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32321","-1","","","","","Sparrowhawk Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32322","-1","","","","","Monster - Crystal Offhand, Blood Elf - Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32323","-1","","","","","Shadowmoon Destroyer's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42852","214264","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","32","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","24","17","24","0","0","0","0","0","0","0","70" +"32324","-1","","","","","Insidious Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35841","179207","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3149","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","28","12","0","0","0","0","0","0","0","70" +"32325","-1","","","","","Rifle of the Stoic Guardian","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107906","539531","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","141","-1","0","0","120","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","31","20","0","0","0","0","0","0","0","0","70" +"32326","-1","","","","","Twisted Blades of Zarak","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","141","-1","0","0","101","0","0","0","0","152","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","16","23","0","0","0","0","0","0","0","0","70" +"32327","-1","","","","","Robe of the Shadow Council","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57968","289843","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","37","36","28","26","0","0","0","0","0","0","70" +"32328","-1","","","","","Botanist's Gloves of Growth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36357","181788","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","22","21","37","0","0","0","0","0","0","0","70" +"32329","-1","","","","","Cowl of Benevolence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43786","218930","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","192","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","27","42","0","0","0","0","0","0","0","70" +"32330","-1","","","","","Totem of Ancestral Guidance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43943","219715","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32331","-1","","","","","Cloak of the Illidari Council","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44100","220500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","24","16","25","0","0","0","0","0","0","0","70" +"32332","-1","","","","","Torch of the Damned","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184386","921932","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","141","-1","0","0","396","0","0","0","0","595","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","4","7","32","36","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","51","45","38","50","0","0","0","0","0","0","70" +"32333","-1","","","","","Girdle of Stability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52107","260536","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","56","19","18","0","0","0","0","0","0","0","70" +"32334","-1","","","","","Vest of Mounting Assault","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80640","403203","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","58","27","18","0","0","0","0","0","0","0","70" +"32335","-1","","","","","Unstoppable Aggressor's Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","36","30","28","0","0","0","0","0","0","0","70" +"32336","-1","","","","","Black Bow of the Betrayer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108233","541167","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","151","-1","0","0","201","0","0","0","0","374","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","70" +"32337","-1","","","","","Shroud of Forgiveness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40787","203935","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","27","19","20","0","0","0","0","0","0","0","70" +"32338","-1","","","","","Blood-cursed Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40943","204719","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","25","19","18","25","0","0","0","0","0","0","70" +"32339","-1","","","","","Belt of Primal Majesty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35187","175937","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","34","29","37","0","0","0","0","0","0","0","70" +"32340","-1","","","","","Garments of Temperance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50057","250286","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","51","34","0","0","0","0","0","0","0","0","70" +"32341","-1","","","","","Leggings of Divine Retribution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87600","438001","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","51","51","35","0","0","0","0","0","0","0","70" +"32342","-1","","","","","Girdle of Mighty Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50091","250457","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","56","26","25","0","0","0","0","0","0","0","70" +"32343","-1","","","","","Wand of Prismatic Focus","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107110","535554","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","141","-1","0","0","193","0","0","0","0","360","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","18","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","21","13","0","0","0","0","0","0","0","0","70" +"32344","-1","","","","","Staff of Immaculate Recovery","0.4","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","179172","895861","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","141","-1","0","0","334","0","0","0","0","501","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","73","51","35","0","0","0","0","0","0","0","70" +"32345","-1","","","","","Dreadboots of the Legion","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75383","376915","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1213","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","6","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","38","40","30","18","0","0","0","0","0","0","70" +"32346","-1","","","","","Boneweave Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43315","216576","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","32","31","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","38","24","17","26","0","0","0","0","0","0","70" +"32347","-1","","","","","Grips of Damnation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36223","181116","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","38","37","0","0","0","0","0","0","0","70" +"32348","-1","","","","","Soul Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","181770","908852","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","141","-1","0","0","386","0","0","0","0","579","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","63","65","0","0","0","0","0","0","0","0","70" +"32349","-1","","","","","Translucent Spellthread Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","15","24","0","0","0","0","0","0","0","0","70" +"32350","-1","","","","","Touch of Inspiration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","24","21","0","0","0","0","0","0","0","0","70" +"32351","-1","","","","","Elunite Empowered Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36742","183714","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","22","19","0","0","0","0","0","0","0","70" +"32352","-1","","","","","Naturewarden's Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55310","276553","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","18","26","0","0","0","0","0","0","0","70" +"32353","-1","","","","","Gloves of Unfailing Faith","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29603","148018","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","33","0","0","0","0","0","0","0","0","70" +"32354","-1","","","","","Crown of Empowered Fate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70418","352094","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1434","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","0","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","39","27","42","0","0","0","0","0","0","0","70" +"32355","-1","","","","","Essence of the Eagle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32356","-1","","","","","Essence of the Hawk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32357","-1","","","","","Essence of the Falcon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32358","-1","It veritably seethes with malevolence.","","","","Vim'gol's Vile Grimoire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32359","-1","","","","","Arthorn's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32360","-1","","","","","Monster - Staff, Hellfire D01","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32361","-1","","","","","Blind-Seers Icon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","18","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","25","24","16","0","0","0","0","0","0","0","70" +"32362","-1","","","","","Pendant of Titans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","12","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","43","21","25","20","0","0","0","0","0","0","70" +"32363","-1","","","","","Naaru-Blessed Life Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107100","535501","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","141","-1","0","0","193","0","0","0","0","360","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","12","12","16","0","0","0","0","0","0","0","70" +"32364","-1","","","","","Southfury Moonstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32365","-1","","","","","Heartshatter Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100692","503464","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","63","45","44","30","0","0","0","0","0","0","70" +"32366","-1","","","","","Shadowmaster's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54133","270667","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2887","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","38","17","0","0","0","0","0","0","0","70" +"32367","-1","","","","","Leggings of Devastation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57951","289758","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","3","3","4","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","42","26","0","0","0","0","0","0","0","70" +"32368","-1","","","","","Tome of the Lightbringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32369","-1","","","","","Blade of Savagery","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","145925","729627","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","141","-1","0","0","98","0","0","0","0","183","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","22","15","19","0","0","0","0","0","0","0","70" +"32370","-1","","","","","Nadina's Pendant of Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","14","19","0","0","0","0","0","0","0","70" +"32371","-1","","","","","Monster - Polearm, Epic D - Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","45","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32372","-1","","","","","Blade's Edge Test Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","3522","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32373","-1","","","","","Helm of the Illidari Shatterer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72100","360504","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1434","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","0","0","0","1","0","4","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","42","29","34","0","0","0","0","0","0","70" +"32374","-1","","","","","Zhar'doom, Greatstaff of the Devourer","0.4","0","-64.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","183948","919743","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","151","-1","0","0","353","0","0","0","0","530","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","70","47","36","55","0","0","0","0","0","0","70" +"32375","-1","","","","","Bulwark of Azzinoth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94538","472692","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","6336","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","60","29","0","0","0","0","0","0","0","0","70" +"32376","-1","","","","","Forest Prowler's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62618","313092","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","803","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","42","29","28","20","0","0","0","0","0","0","70" +"32377","-1","","","","","Mantle of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52373","261865","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","34","33","22","0","0","0","0","0","0","0","70" +"32378","-1","","","","","Silver Star","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9","37","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","37","-1","0","0","28","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32379","-1","This polished trophy is huge!","","","","Grulloc's Dragon Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32380","-1","Darn, it's empty.","","","","Maggoc's Treasure Chest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32381","-1","Teaches you how to make Fused Wiring.","","","","Schematic: Fused Wiring","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4000","16000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","275","202","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32382","-1","Torn and dirty, it smells as bad as Slaag.","","","","Slaag's Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32383","-1","EVIL!","","","","Skulloc's Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32384","-1","","","","","Monster - Sword, 1H - Blackwing A02","0.6","0","-16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","82248","411242","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","76","32767","0","0","88","0","0","0","0","164","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","4","0","0","1","0","7","5","6","0","0","0","0","0","0","0","0","0","0","0","13","4","0","17","9","7","0","0","0","0","0","0","0","60" +"32385","-1","All that remains of the hellspawn, Magtheridon.","","","","Magtheridon's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11002","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32386","-1","All that remains of the hellspawn, Magtheridon.","","","","Magtheridon's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11003","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32387","-1","","","","","Idol of the Raven Goddess","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25096","125484","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32388","-1","Used to create an Elixir of Shadows.","","","","Shadow Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","146","585","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32389","-1","","","","","Soulguard Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50288","251440","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","191","0","0","0","0","72","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","0","0","0","0","0","0","0","0","0","70" +"32390","-1","","","","","Soulguard Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25241","126205","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","123","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32391","-1","","","","","Soulguard Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38007","190037","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","150","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32392","-1","","","","","Soulguard Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25432","127163","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32393","-1","","","","","Redeemed Soul Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31912","159561","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","231","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32394","-1","","","","","Redeemed Soul Moccasins","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48050","240252","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","282","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32395","-1","","","","","Redeemed Soul Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32155","160775","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","179","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32396","-1","","","","","Redeemed Soul Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64546","322731","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","359","0","0","0","0","72","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","0","0","0","0","0","0","0","0","0","70" +"32397","-1","","","","","Waistguard of Shackled Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38873","194366","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32398","-1","","","","","Boots of Shackled Souls","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58788","293943","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","628","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32399","-1","","","","","Bracers of Shackled Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39164","195823","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","400","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32400","-1","","","","","Greaves of Shackled Souls","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78612","393063","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","799","0","0","0","0","72","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","0","0","0","0","0","0","0","0","0","70" +"32401","-1","","","","","Shadesteel Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46290","231451","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","918","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32402","-1","","","","","Shadesteel Sabots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69163","345819","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","1122","0","0","0","0","54","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","0","0","0","0","0","0","0","0","0","70" +"32403","-1","","","","","Shadesteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47855","239279","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32404","-1","","","","","Shadesteel Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95498","477493","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","1428","0","0","0","0","72","0","0","254","0","0","0","0","0","0","0","6","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","0","0","0","0","0","0","0","0","0","70" +"32405","-1","A magical sphere belonging to the lord of the blood elves.","","","","Verdant Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11007","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32406","-1","","","","","Skyguard Blasting Charges","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32407","-1","The edges yearn for Illidan's Blood.","","","","Creature - Maiev's Glaive","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","83638","418194","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","15","15","16","0","0","0","0","0","0","0","70" +"32408","-1","","","","","Naj'entus Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","564","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32409","-1","Only fits in a meta gem slot.","","","","Relentless Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32410","-1","Only fits in a meta gem slot.","","","","Thundering Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32411","-1","Teaches you how to cut a Thundering Skyfire Diamond.","","","","Design: Thundering Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32412","-1","Teaches you how to cut a Relentless Earthstorm Diamond.","","","","Design: Relentless Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32413","-1","","","","","Frost Grenade","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32414","-1","","","","","Tom's Legs A","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","1","0","0","0","0","0","0","0","0","0","0","0","0","1163","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","54","29","18","0","0","0","0","0","0","70" +"32415","-1","","","","","Tom's Legs B","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","1","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","40","58","30","19","0","0","0","0","0","0","70" +"32416","-1","","","","","Tom's Legs C","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","138","1","0","0","0","0","0","0","0","0","0","0","0","0","1512","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","66","35","22","0","0","0","0","0","0","70" +"32417","-1","","","","","Tom's Legs 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1269","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","41","60","31","20","0","0","0","0","0","0","70" +"32418","-1","","","","","Tom's Legs 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1428","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","69","35","23","0","0","0","0","0","0","70" +"32419","-1","","","","","Tom's Legs 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","1","0","0","0","0","0","0","0","0","0","0","0","0","1587","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","54","79","41","26","0","0","0","0","0","0","70" +"32420","-1","","","","","Night's End","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40345","201727","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","0","0","0","0","0","0","0","0","0","70" +"32421","-1","","","","","Tom's Axe A","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128801","644009","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","105","-1","0","0","313","0","0","0","0","470","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32422","-1","","","","","Tom's Axe B","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","156428","782144","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","130","-1","0","0","354","0","0","0","0","532","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32423","-1","","","","","Icy Blasting Primers","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2000","8000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32424","-1","","","","","Blade's Edge Ogre Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32425","-1","","","","","Monster - Sword, 1H Maiev's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32426","-1","","","","","Testing Darkrune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32427","-1","","","","","Netherwing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32428","-1","","","","","Heart of Darkness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32429","-1","Teaches you how to make Boots of Shackled Souls.","","","","Pattern: Boots of Shackled Souls","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32430","-1","Teaches you how to make Bracers of Shackled Souls.","","","","Pattern: Bracers of Shackled Souls","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32431","-1","Teaches you how to make Greaves of Shackled Souls.","","","","Pattern: Greaves of Shackled Souls","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32432","-1","Teaches you how to make a Waistguard of Shackled Souls.","","","","Pattern: Waistguard of Shackled Souls","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32433","-1","Teaches you how to make Redeemed Soul Moccasins.","","","","Pattern: Redeemed Soul Moccasins","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32434","-1","Teaches you how to make Redeemed Soul Wristguards.","","","","Pattern: Redeemed Soul Wristguards","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32435","-1","Teaches you how to make Redeemed Soul Legguards.","","","","Pattern: Redeemed Soul Legguards","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32436","-1","Teaches you how to make a Redeemed Soul Cinch.","","","","Pattern: Redeemed Soul Cinch","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32437","-1","Teaches you how to sew Soulguard Slippers.","","","","Pattern: Soulguard Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32438","-1","Teaches you how to sew Soulguard Bracers.","","","","Pattern: Soulguard Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32439","-1","Teaches you how to sew Soulguard Leggings.","","","","Pattern: Soulguard Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32440","-1","Teaches you how to sew a Soulguard Girdle.","","","","Pattern: Soulguard Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32441","-1","Teaches you how to make Shadesteel Sabots.","","","","Plans: Shadesteel Sabots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32442","-1","Teaches you how to make Shadesteel Bracers.","","","","Plans: Shadesteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32443","-1","Teaches you how to make Shadesteel Greaves.","","","","Plans: Shadesteel Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32444","-1","Teaches you how to make a Shadesteel Girdle.","","","","Plans: Shadesteel Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","164","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32445","-1","","","","","Skyguard Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32446","-1","","","","","Elixir of Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32447","-1","Teaches you how to sew Night's End.","","","","Pattern: Night's End","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32448","-1","","","","","Monster - Trident, Ornate (Electrified)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32449","-1","","","","","Essence-Infused Moonstone","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32450","-1","","","","","Gladiator's Gavel","0.6","0","-49.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","123","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","28","18","18","0","0","0","0","0","0","0","70" +"32451","-1","","","","","Gladiator's Salvation","0.6","0","-49.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","123","-1","0","0","102","0","0","0","0","190","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","28","18","18","0","0","0","0","0","0","0","70" +"32452","-1","","","","","Gladiator's Reprieve","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","21","14","15","0","0","0","0","0","0","0","70" +"32453","-1","Carefully extracted for warfare use.","","","","Star's Tears","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","2500","5","1","1","2097152","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32454","-1","Arthorn Windsong's notes from her studies of the Book of the Raven.","","","","Arthorn's Research","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3002","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32455","-1","Carefully extracted for warfare use.","","","","Star's Lament","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","60","1200","5","1","1","2097152","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32456","-1","","","","","Skyguard Bombs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32457","-1","","","","","Arakkoa Fetish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32458","-1","And from the ashes it was reborn...","","","","Ashes of Al'ar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32459","-1","A strange darkness surrounds this artifact.","","","","Time-Phased Phylactery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32460","-1","","","","","Monster - Sword, 2H Crystal Blue (Blue Flame)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32461","-1","","","","","Furious Gizmatic Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69205","346027","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","1296","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","4","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","38","28","13","0","0","0","0","0","0","62" +"32462","-1","Contains the items you'll need to summon the raven god, Anzu.","","","","Morthis' Materials","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32463","-1","","","","","Monster - Sword, Crystal Mace (Blue)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32464","-1","","","","","Nethercite Ore","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32465","-1","","","","","Fortune Coin","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32466","-1","","","","","Bland Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","108237","541186","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","100","-1","0","0","211","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32467","-1","","","","","Vim'gol's Grimoire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32468","-1","","","","","Netherdust Pollen","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1000","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32469","-1","","","","","Illidari Service Papers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3006","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32470","-1","","","","","Nethermine Flayer Hide","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32471","-1","","","","","Shard of Azzinoth","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","149388","746944","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","151","-1","0","0","161","0","0","0","0","242","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32472","-1","","","","","Justicebringer 2000 Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66971","334856","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","1296","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","29","13","39","0","0","0","0","0","0","0","62" +"32473","-1","","","","","Tankatronic Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67220","336101","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","1296","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","12","31","13","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","38","13","22","0","0","0","0","0","0","62" +"32474","-1","","","","","Surestrike Goggles v2.0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57941","289705","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","726","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","13","38","0","0","0","0","0","0","0","62" +"32475","-1","","","","","Living Replicator Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58149","290745","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","726","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","14","38","0","0","0","0","0","0","0","0","62" +"32476","-1","","","","","Gadgetstorm Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58363","291815","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","726","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","18","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","12","40","0","0","0","0","0","0","0","62" +"32477","-1","","","","","Monster - Silithid Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32478","-1","","","","","Deathblow X11 Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48992","244961","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","28","11","0","0","0","0","0","0","0","62" +"32479","-1","","","","","Wonderheal XT40 Shades","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49165","245828","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","38","22","15","0","0","0","0","0","0","0","62" +"32480","-1","","","","","Magnified Moon Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49343","246718","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","326","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","22","24","41","0","0","0","0","0","0","0","62" +"32481","-1","","","","","Charm of Swift Flight","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32482","-1","","","","","Touch of Victory","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","130","-1","0","0","231","0","0","0","0","429","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","18","13","12","0","0","0","0","0","0","0","70" +"32483","-1","","","","","The Skull of Gul'dan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","25","0","0","0","0","0","0","0","0","0","70" +"32484","-1","","","","","Monster - Sword, Crystal (Blue)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32485","-1","","","","","Ashtongue Talisman of Valor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32486","-1","","","","","Ashtongue Talisman of Equilibrium","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32487","-1","","","","","Ashtongue Talisman of Swiftness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32488","-1","","","","","Ashtongue Talisman of Insight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32489","-1","","","","","Ashtongue Talisman of Zeal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32490","-1","","","","","Ashtongue Talisman of Acumen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32491","-1","","","","","Ashtongue Talisman of Vision","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32492","-1","","","","","Ashtongue Talisman of Lethality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32493","-1","","","","","Ashtongue Talisman of Shadows","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1012","0","0","141","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32494","-1","","","","","Destruction Holo-gogs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38619","193098","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","22","29","0","0","0","0","0","0","0","62" +"32495","-1","","","","","Powerheal 4000 Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38762","193811","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","127","-1","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","28","38","14","0","0","0","0","0","0","0","62" +"32496","-1","","","","","Memento of Tyrande","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32497","-1","","","","","Stormrage Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","33","0","0","0","0","0","0","0","0","70" +"32498","-1","","","","","Fortune Coin","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32499","-1","","","","","Monster - Mace2H, Ogri'la Hammer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32500","-1","","","","","Crystal Spire of Karabor","0.6","0","-64.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","143271","716358","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","151","32767","0","0","133","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","22","15","0","0","0","0","0","0","0","0","70" +"32501","-1","","","","","Shadowmoon Insignia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","12","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","36","32","0","0","0","0","0","0","0","0","70" +"32502","-1","Dripping with fel juices.","","","","Fel Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32503","-1","Lightly breaded. Dab a little fel gland poison on top. Serves one camp!","","","","Yarzill's Mutton","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32504","-1","","","","","Monster - Silithid Claw (Offhand)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","22","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32505","-1","","","","","Madness of the Betrayer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","31","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","20","0","0","0","0","0","0","0","0","0","70" +"32506","-1","","","","","Netherwing Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32507","-1","","","","","Monster - Polearm, Teron Gorefiend (Black Temple)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32508","-1","","","","","Necklace of the Deep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","14000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","4","0","0","2","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","2","3","0","21","20","0","0","0","0","0","0","0","0","65" +"32509","-1","","","","","Netherwing Relic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32510","-1","","","","","Softstep Boots of Tracking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63120","315602","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","679","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","32","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","26","29","17","0","0","0","0","0","0","70" +"32512","-1","","","","","Girdle of Lordaeron's Fallen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49524","247620","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","32","32","38","0","0","0","0","0","0","0","70" +"32513","-1","","","","","Wristbands of Divine Influence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28240","141202","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","24","28","0","0","0","0","0","0","0","70" +"32514","-1","","","","","Skettis Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10709","42837","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","221","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32515","-1","","","","","Wristguards of Determination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45804","229023","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","15","13","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","37","24","13","19","0","0","0","0","0","0","70" +"32516","-1","","","","","Wraps of Purification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26806","134033","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","24","25","0","0","0","0","0","0","0","0","70" +"32517","-1","","","","","The Wavemender's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66456","332284","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","26","0","0","0","0","0","0","0","0","70" +"32518","-1","","","","","Veil of Turning Leaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55331","276659","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","29","29","38","0","0","0","0","0","0","0","70" +"32519","-1","","","","","Belt of Divine Guidance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29614","148074","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","133","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","35","24","32","0","0","0","0","0","0","0","70" +"32520","-1","","","","","Manaforged Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","109","-1","201","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32521","-1","","","","","Faceplate of the Impenetrable","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75350","376753","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","1532","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","1","0","0","1","0","7","12","13","15","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","82","30","38","29","0","0","0","0","0","0","70" +"32522","-1","","","","","Demonic Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53945","269727","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","204","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32523","-1","","","","","Ishaal's Almanac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11021","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32524","-1","","","","","Shroud of the Highborne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43636","218184","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","126","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","24","23","32","0","0","0","0","0","0","0","70" +"32525","-1","","","","","Cowl of the Illidari High Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43804","219020","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","205","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","33","31","21","47","0","0","0","0","0","0","70" +"32526","-1","","","","","Band of Devastation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","36","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","44","0","0","0","0","0","0","0","0","70" +"32527","-1","","","","","Ring of Ancient Knowledge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","30","20","0","0","0","0","0","0","0","70" +"32528","-1","","","","","Blessed Band of Karabor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","151","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","20","20","0","0","0","0","0","0","0","70" +"32529","-1","","","","","Heretic's Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30465","152329","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","35","20","22","0","0","0","0","0","0","0","70" +"32530","-1","","","","","Monster - Polearm, Blood Elf D01 (Purple Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32531","-1","","","","","Gezzarak's Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41953","167814","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","2","3","0","15","0","0","0","0","0","0","0","0","0","70" +"32532","-1","","","","","Windrager's Coils","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22462","112312","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","12","0","0","0","0","0","0","0","0","0","70" +"32533","-1","","","","","Karrog's Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22464","89857","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","12","0","0","0","0","0","0","0","0","0","70" +"32534","-1","","","","","Brooch of the Immortal King","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","66290","265161","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","32","0","0","0","0","0","0","0","0","0","70" +"32535","-1","","","","","Gift of the Talonpriests","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","12","0","0","0","0","0","0","0","0","0","70" +"32536","-1","","","","","Terokk's Gavel","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91143","455716","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","115","-1","222","0","125","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32537","-1","","","","","Terokk's Gavel","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91468","457344","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","115","-1","201","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32538","-1","","","","","Skywitch's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27538","137691","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","70" +"32539","-1","","","","","Skyguard's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27633","138166","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","16","3","0","15","0","0","0","0","0","0","0","0","0","70" +"32540","-1","","","","","Terokk's Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30808","154043","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","16","18","0","0","0","0","0","0","0","0","70" +"32541","-1","","","","","Terokk's Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30928","154643","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","89","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","16","18","0","0","0","0","0","0","0","0","70" +"32542","-1","","","","","Imp in a Ball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32543","-1","","","","","Tier 5 Druid Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32544","-1","","","","","Tier 5 Druid Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32545","-1","","","","","Tier 5 Hunter Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32546","-1","","","","","Tier 5 Hunter Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32547","-1","","","","","Tier 5 Mage Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32548","-1","","","","","Tier 5 Mage Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32549","-1","","","","","Tier 5 Paladin Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32550","-1","","","","","Tier 5 Paladin Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32551","-1","","","","","Tier 5 Priest Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32552","-1","","","","","Tier 5 Priest Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32553","-1","","","","","Tier 5 Rogue Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32554","-1","","","","","Tier 5 Rogue Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32555","-1","","","","","Tier 5 Shaman Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32556","-1","","","","","Tier 5 Shaman Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32557","-1","","","","","Tier 5 Warlock Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32558","-1","","","","","Tier 5 Warlock Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32559","-1","","","","","Tier 5 Warrior Test Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32560","-1","","","","","Tier 5 Warrior Test Gear Box 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32561","-1","","","","","Tier 5 Arrow Box","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32562","-1","","","","","Monster - Dagger, Curved Bone Bloody (Black Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32563","-1","","","","","Grilled Picnic Treat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32564","-1","","","","","Ishaal's Almanac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32565","-1","","","","","Monster - Axe, 2H Large Double Bladed (Black Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32566","-1","","","","","Picnic Basket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32567","-1","The crystals seem to have imbued this creature's eye with strange properties.","","","","Aether Ray Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32568","-1","","","","","Swiftsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50091","250457","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","4","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","35","32","27","0","0","0","0","0","0","0","70" +"32569","-1","A slivered fragment of an Apexis Crystal.","","","","Apexis Shard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32570","-1","","","","","Swiftsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","36","31","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","47","29","35","19","0","0","0","0","0","0","70" +"32571","-1","","","","","Dawnsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50639","253195","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","21","23","0","0","0","0","0","0","0","70" +"32572","-1","This item throbs with an undulating vibration.","","","","Apexis Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32573","-1","","","","","Dawnsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1324","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","31","28","0","0","0","0","0","0","0","70" +"32574","-1","","","","","Bindings of Lightning Reflexes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43624","218124","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","15","16","27","0","0","0","0","0","0","70" +"32575","-1","","","","","Shoulders of Lightning Reflexes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65964","329823","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","36","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","27","19","21","0","0","0","0","0","0","70" +"32576","-1","","","","","Depleted Crystal Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32577","-1","","","","","Living Earth Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44091","220457","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","27","20","0","0","0","0","0","0","0","70" +"32578","-1","","","","","Charged Crystal Focus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32579","-1","","","","","Living Earth Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66904","334521","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","32","28","0","0","0","0","0","0","0","70" +"32580","-1","","","","","Swiftstrike Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34533","172667","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","3","36","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","27","34","0","0","0","0","0","0","0","70" +"32581","-1","","","","","Swiftstrike Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51991","259956","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","36","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","29","34","0","0","0","0","0","0","0","70" +"32582","-1","","","","","Bracers of Renewed Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34791","173958","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","30","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","20","26","0","0","0","0","0","0","0","70" +"32583","-1","","","","","Shoulderpads of Renewed Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52383","261918","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","30","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","29","34","0","0","0","0","0","0","0","70" +"32584","-1","","","","","Swiftheal Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28039","140198","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","24","22","0","0","0","0","0","0","0","70" +"32585","-1","","","","","Swiftheal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42216","211082","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","30","5","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","28","27","16","0","0","0","0","0","0","70" +"32586","-1","","","","","Bracers of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28249","141245","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","27","20","0","0","0","0","0","0","0","70" +"32587","-1","","","","","Mantle of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42530","212652","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","37","26","38","0","0","0","0","0","0","0","70" +"32588","-1","","","","","Banana Charm","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32589","-1","","","","","Hellfire-Encased Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","21","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","17","12","16","0","0","0","0","0","0","70" +"32590","-1","","","","","Nethervoid Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42997","214985","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","18","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","27","18","0","0","0","0","0","0","0","70" +"32591","-1","","","","","Choker of Serrated Blades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","37","0","0","0","0","0","0","0","0","0","70" +"32592","-1","","","","","Chestguard of Relentless Storms","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86613","433067","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","36","30","0","0","0","0","0","0","0","70" +"32593","-1","","","","","Treads of the Den Mother","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54329","271648","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","305","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","38","32","47","14","0","0","0","0","0","0","70" +"32594","-1","","","","","Ogrela Test Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39183","195916","1","1","1","1152","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","63","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","70" +"32595","-1","","","","","Ogrela Reagent Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32596","-1","","","","","Unstable Flask of the Elder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32597","-1","","","","","Unstable Flask of the Soldier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32598","-1","","","","","Unstable Flask of the Beast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32599","-1","","","","","Unstable Flask of the Bandit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32600","-1","","","","","Unstable Flask of the Physician","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32601","-1","","","","","Unstable Flask of the Sorcerer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32602","-1","","","","","Crystalforged Darkrune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32603","-1","","","","","Monster - Black Temple - Sword, 2H - Shadowmoon Champion","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32604","-1","","","","","Monster - Black Temple - Axe, 1H - Shadowmoon Reaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32605","-1","","","","","Monster - Black Temple - Staff, 2H - Shadowmoon Blood Mage","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32606","-1","","","","","Girdle of the Lightbearer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49713","248566","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","36","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","49","32","33","21","0","0","0","0","0","0","70" +"32607","-1","","","","","Monster - Black Temple - Staff, 2H - Shadowmoon Deathshaper","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32608","-1","","","","","Pillager's Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44050","220252","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1103","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","36","31","7","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","38","38","18","45","0","0","0","0","0","0","70" +"32609","-1","","","","","Boots of the Divine Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42835","214179","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","47","24","24","0","0","0","0","0","0","0","70" +"32610","-1","","","","","Monster - Staff, Ornate Jeweled Staff - Blue Low Blue Glow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32611","-1","","","","","Monster - Black Temple - Hammer, 1H - Shadowmoon Grunt","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32612","-1","","","","","Monster - Black Temple - Axe, 2H - Shadowmoon Houndmaster","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32613","-1","","","","","Monster - Black Temple - Bow, 2H - Shadowmoon Houndmaster","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","8","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32614","-1","","","","","Monster - Black Temple - Sword, 2H - Shadowmoon Weapon Master","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32615","-1","","","","","Monster - Black Temple - Sword, 1H - Shadowmoon Soldier","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32616","-1","","","","","Egbert's Egg","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32617","-1","","","","","Sleepy Willy","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32618","-1","","","","","[DEPRECATED]Crystalforged Darkrune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32619","-1","A crate of tightly-sealed packets of dried fruit.","","","","Preserved Fruit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32620","-1","Shadowy symbols cover the parchment and pulse with energy.","","","","Time-Lost Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","1250","5000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32621","-1","It's red and spiky. Definitely a fel orc. A document is still held tightly within its grasp.","","","","Partially Digested Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11041","0","0","1015","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32622","-1","","","","","Elekk Training Collar","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32623","-1","A crate filled with an assortment of odd-looking parts with no discernable function.","","","","Bossi's Spare Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32624","-1","","","","","Large Iron Metamorphosis Geode ","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32200","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31267","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32625","-1","","","","","Small Iron Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24150","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31267","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32626","-1","","","","","Large Copper Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32200","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31332","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32627","-1","","","","","Small Copper Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24150","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31332","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32628","-1","","","","","Large Silver Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32200","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32629","-1","","","","","Large Gold Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32200","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31664","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32630","-1","","","","","Small Gold Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24150","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","31664","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32631","-1","","","","","Small Silver Metamorphosis Geode","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24150","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32296","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32632","-1","","","","","Monster - Glavie, Illidan - Black Temple (Right Hand)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32633","-1","","","","","Monster - Glavie, Illidan - Black Temple (Left Hand)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32634","-1","Matches a Red or Blue Socket.","","","","Unstable Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","601","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32635","-1","Matches a Yellow or Blue Socket.","","","","Unstable Peridot","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","602","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32636","-1","Matches a Red or Blue Socket.","","","","Unstable Sapphire","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","603","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32637","-1","Matches a Red or Yellow Socket.","","","","Unstable Citrine","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","604","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32638","-1","Matches a Red or Yellow Socket.","","","","Unstable Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32639","-1","Matches a Blue or Yellow Socket.","","","","Unstable Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9200","0","1","1","1","524288","24580","0","0","0","0","0","0","0","0","606","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32640","-1","Only fits in a meta gem slot.","","","","Potent Unstable Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36800","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","607","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32641","-1","Only fits in a meta gem slot.","","","","Imbued Unstable Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36800","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","608","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32642","-1","Fel energy pervades the space around the rune.","","","","Raw Darkrune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32643","-1","The rune hums with power.","","","","Darkrune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32644","-1","","","","","Monster - Staff, 1H - Chief Overseer Mudlump","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32645","-1","","","","","Crystalline Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55200","0","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","1038","0","0","100","-1","0","0","165","0","0","0","0","248","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","31","3","7","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","26","4","2","11","12","16","0","0","0","0","0","0","0","70" +"32646","-1","","","","","Medallion of Karabor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32647","-1","","","","","Shard-bound Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55200","0","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","1038","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","9","4","0","20","18","0","0","0","0","0","0","0","0","70" +"32648","-1","","","","","Vortex Walking Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55200","0","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","1038","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","914","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","8","4","0","28","19","28","0","0","0","0","0","0","0","70" +"32649","-1","Once worn by a cleric of Karabor, this item allows the wearer entry into the Black Temple.","","","","Medallion of Karabor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","49","0","0","0","0","0","0","0","0","0","0" +"32650","-1","","","","","Cerulean Crystal Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19550","0","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","1038","0","0","115","-1","0","0","135","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","26","3","0","15","11","0","0","0","0","0","0","0","0","70" +"32651","-1","","","","","Crystal Orb of Enlightenment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","55200","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","23","4","0","18","16","0","0","0","0","0","0","0","0","70" +"32652","-1","","","","","Ogri'la Aegis","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","19550","0","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","3017","0","0","0","0","0","0","0","0","0","1038","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","3806","0","0","0","0","0","0","0","254","0","0","0","2","2","0","4","6","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","14","3","0","18","23","0","0","0","0","0","0","0","0","70" +"32653","-1","","","","","Apexis Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19550","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","16","3","0","15","15","0","0","0","0","0","0","0","0","70" +"32654","-1","","","","","Crystalforged Trinket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","19550","0","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32655","-1","","","","","Crystalweave Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20699","103495","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","16","12","0","0","0","0","0","0","0","0","70" +"32656","-1","","","","","Crystalhide Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31165","155826","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","465","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","2","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","11","27","0","0","0","0","0","0","0","0","70" +"32657","-1","","","","","Arthorn's Sparrowhawk Whistle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32658","-1","","","","","Badge of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32659","-1","","","","","Crystal-Infused Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85574","427872","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","103","0","0","0","0","155","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","12","11","0","0","0","0","0","0","0","0","70" +"32660","-1","","","","","Crystalforged Sword","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88222","441112","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","2","0","7","5","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","3","0","30","8","11","0","0","0","0","0","0","0","70" +"32661","-1","","","","","Apexis Crystal Mace","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88547","442739","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","2","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","20","8","0","0","0","0","0","0","0","0","70" +"32662","-1","","","","","Flaming Quartz Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111091","555459","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","115","-1","0","0","156","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","46","26","28","0","0","0","0","0","0","0","70" +"32663","-1","","","","","Apexis Cleaver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111498","557493","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","268","0","0","0","0","403","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","7","32","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","39","19","46","0","0","0","0","0","0","0","70" +"32664","-1","","","","","Dreamcrystal Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","10","15","0","0","0","0","0","0","0","0","70" +"32665","-1","","","","","Crystalweave Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26952","134761","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","36","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","26","15","15","0","0","0","0","0","0","0","70" +"32666","-1","","","","","Hardened Hide of Tyrantus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32667","-1","No self-respecting ogre goes into battle sober.","","","","Bash Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","85","340","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32668","-1","Finally, a brew both your heads will love!","","","","Dos Ogris","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32670","-1","","","","","Depleted Two-Handed Axe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","7","32","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","39","19","46","0","0","0","0","0","0","0","70" +"32671","-1","","","","","Depleted Mace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","20","8","0","0","0","0","0","0","0","0","70" +"32672","-1","","","","","Depleted Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","308","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"32673","-1","","","","","Depleted Dagger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","12","11","0","0","0","0","0","0","0","0","70" +"32674","-1","","","","","Depleted Sword","0","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","7","5","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","30","8","11","0","0","0","0","0","0","0","70" +"32675","-1","","","","","Depleted Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","105","32767","0","0","0","0","0","0","0","0","0","0","0","0","423","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","3","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","11","27","0","0","0","0","0","0","0","0","70" +"32676","-1","","","","","Depleted Cloth Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","71","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","16","12","0","0","0","0","0","0","0","0","70" +"32677","-1","","","","","Depleted Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","36","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","26","15","15","0","0","0","0","0","0","0","70" +"32678","-1","","","","","Depleted Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","10","15","0","0","0","0","0","0","0","0","70" +"32679","-1","","","","","Depleted Staff","0","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1024","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","5","21","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","46","26","28","0","0","0","0","0","0","0","70" +"32680","-1","This is your booterang. There are many like it but this one is yours.","","","","Booterang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32681","-1","","","","","Onyx Scale of Rivendark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","35840","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32682","-1","","","","","Obsidia Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","35840","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32683","-1","","","","","Jet Scale of Furywing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","35840","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32684","-1","","","","","Insidion's Ebony Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","155","620","1","1","1","35840","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32685","-1","Less a finger than a whole arm.","","","","Ogri'la Chicken Fingers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32686","-1","Find your fortune inside! Bask in the wisdom of Ogri'la, win a prize, or learn about your destiny!","","","","Mingo's Fortune Giblets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32687","-1","","","","","Hazzik's Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32688","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3007","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32689","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3008","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32690","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3009","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32691","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3010","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32692","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3011","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32693","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3012","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32694","-1","","","","","Overseer's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557120","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1015","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32695","-1","","","","","Captain's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557120","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1015","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32696","-1","","","","","Banishing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32697","-1","Big, rocky, heavy.","","","","Apexis Guardian's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32698","-1","","","","","Wrangling Rope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32699","-1","","","","","Monster - Axe, 2H Draenei B01 Green (Green Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32700","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3013","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32701","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3014","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32702","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3015","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32703","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3016","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32704","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3017","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32705","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3018","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32706","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3019","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32707","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3020","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32708","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3021","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32709","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3022","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32710","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3023","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32711","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3024","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32712","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3025","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32713","-1","A bloodstained piece of parchment with Mingo's writing scrawled across one side.","","","","Bloodstained Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","1","1","1","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3027","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32714","-1","","","","","Splintered Spider Fang","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","27","111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32715","-1","","","","","Akkarai's Talons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32716","-1","","","","","Gezzarak's Claws","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32717","-1","","","","","Karrog's Spine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32718","-1","","","","","Vakkiz's Scale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32720","-1","Used to summon Terokk at the Ancient Skull Pile in Terokk's Rest.","","","","Time-Lost Offering","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32721","-1","","","","","Skyguard Rations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","225","4500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32722","-1","","","","","Enriched Terocone Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32723","-1","","","","","Nethermine Cargo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32724","-1","What wonderous treasure could the sludge be hiding?","","","","Sludge-covered Object","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32725","-1","This pick has seen better days.","","","","Murkblood Miner's Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32726","-1","A detailed plan documenting a revolt by the Murkblood miners.","","","","Murkblood Escape Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11081","0","0","1015","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32727","-1","Your guess is as good as mine.","","","","Vial of Tears","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32728","-1","Just sludge.","","","","Sludge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32729","-1","","","","","Monster - Polearm, Epic D 05","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","44","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","8","0","0","0","0","12","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32730","-1","","","","","Monster - Bow, Outland Raid D04","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"32731","-1","","","","","Monster - Dagger, Naxxramas","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32732","-1","Razor sharp, they still look as deadly as when you were facing them in the dragon's maw.","","","","Dragon Teeth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32733","-1","Ridged with obsidian shards, you don't want to know what the whip leather is made of.","","","","Fel Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32734","-1","","","","","Hand of the Overseer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32735","-1","Matches a Yellow or Blue Socket.","","","","Radiant Spencerite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","621","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32736","-1","Teaches you how to make Swiftsteel Bracers.","","","","Plans: Swiftsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32737","-1","Teaches you how to make Swiftsteel Shoulders.","","","","Plans: Swiftsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32738","-1","Teaches you how to make Dawnsteel Bracers.","","","","Plans: Dawnsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32739","-1","Teaches you how to make Dawnsteel Shoulders.","","","","Plans: Dawnsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32740","-1","","","","","Monster - Dagger (Maiev)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32741","-1","","","","","Shabby Arakkoa Disguise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32742","-1","The image of Terokk is engraved in the book's cover.","","","","Adversarial Bloodlines","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7500","30000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32743","-1","This battle axe appears other-worldly...","","","","Monster - Axe -Doomguard Punisher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","7","38","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","9","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","21","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","27","30","17","17","0","0","0","0","0","0","0" +"32744","-1","Teaches you how to craft Bracers of Renewed Life.","","","","Pattern: Bracers of Renewed Life","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32745","-1","Teaches you how to craft Shoulderpads of Renewed Life.","","","","Pattern: Shoulderpads of Renewed Life","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32746","-1","Teaches you how to craft Swiftstrike Bracers.","","","","Pattern: Swiftstrike Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32747","-1","Teaches you how to craft Swiftstrike Shoulders.","","","","Pattern: Swiftstrike Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32748","-1","Teaches you how to craft Bindings of Lightning Reflexes.","","","","Pattern: Bindings of Lightning Reflexes","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32749","-1","Teaches you how to craft Shoulders of Lightning Reflexes.","","","","Pattern: Shoulders of Lightning Reflexes","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32750","-1","Teaches you how to craft Living Earth Bindings.","","","","Pattern: Living Earth Bindings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32751","-1","Teaches you how to craft Living Earth Shoulders.","","","","Pattern: Living Earth Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32752","-1","Teaches you how to sew a Swiftheal Wraps.","","","","Pattern: Swiftheal Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32753","-1","Teaches you how to sew a Swiftheal Mantle.","","","","Pattern: Swiftheal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32754","-1","Teaches you how to sew Bracers of Nimble Thought.","","","","Pattern: Bracers of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32755","-1","Teaches you how to sew a Mantle of Nimble Thought.","","","","Pattern: Mantle of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32756","-1","","","","","Gyro-Balanced Khorium Destroyer","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80011","400058","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","2800","0","0","0","105","-1","0","0","148","0","0","0","0","275","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","27","0","0","0","0","0","0","0","0","0","70" +"32757","-1","Once worn by a cleric of Karabor, this item allows the wearer entry into the Black Temple.","","","","Blessed Medallion of Karabor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","49","0","0","0","0","0","0","0","0","0","0" +"32758","-1","A delicate fragrance for the discerning ogre.","","","","Brute Cologne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","2500","10000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32759","-1","Used to activate any of the proton accelerator controllers at Bash'ir Landing.","","","","Accelerator Module","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8050","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32760","-1","Fletched by Andy ""The Macho Gnome"" Savage.","","","","The Macho Gnome's Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","2000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","145","-1","0","0","53","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32761","-1","More Pew Pew, Less QQ","","","","The Sarge's Bullet","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","2000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","145","-1","0","0","53","0","0","0","0","53","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32762","-1","Don't be a dummy. Drink your brain juice!","","","","Rulkster's Brain Juice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32763","-1","Drink to live.","","","","Rulkster's Secret Sauce","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32764","-1","Flasky essence captured from the mythical beast!","","","","Flaskataur's Celestial Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32765","-1","The distilled tears of the elusive Flaskataur.","","","","Flaskataur's Tears","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32766","-1","Bears the mark of Flaskataur.","","","","Flaskataur's Flask of Flaskocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"32767","-1","It's not supreme but it's not bad either.","","","","Flaskataur's Flask of Pretty Good Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"32768","-1","","","","","Reins of the Raven Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32769","-1","","","","","Belt of the Raven Lord","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20977","104889","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","164","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","25","17","22","0","0","0","0","0","0","0","70" +"32770","-1","","","","","Skyguard Silver Cross","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10307","41230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","12","4","0","34","0","0","0","0","0","0","0","0","0","70" +"32771","-1","","","","","Airman's Ribbon of Gallantry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","10307","41230","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","12","4","0","34","0","0","0","0","0","0","0","0","0","70" +"32772","-1","","","","","Brilliant Pearl Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","97","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","64" +"32773","-1","","","","","Bash'ir's Skeleton Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32774","-1","","","","","The Black Pearl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39122","156488","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","33","0","0","0","0","0","0","0","0","0","65" +"32775","-1","","","","","Deepdiving Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"32776","-1","","","","","Crown of the Sea Witch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26757","133785","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","2","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","20","20","42","0","0","0","0","0","0","0","70" +"32777","-1","Who knows what's inside? Cross your fingers for a darkrune.","","","","Kronk's Grab Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32778","-1","","","","","Boots of Righteous Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43969","219848","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","800","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","37","14","19","0","0","0","0","0","0","0","70" +"32779","-1","","","","","Band of Frigid Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83797","335188","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","13","17","0","0","0","0","0","0","0","0","70" +"32780","-1","","","","","The Boomstick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62933","314668","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","115","-1","0","0","92","0","0","0","0","173","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","3","21","13","0","0","0","0","0","0","0","0","70" +"32781","-1","","","","","Talon of Anzu","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","90808","454044","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","1500","0","0","0","115","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","10","0","0","0","0","0","0","0","0","0","70" +"32782","-1","","","","","Time-Lost Figurine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4618","18475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","68" +"32783","-1","","","","","Blue Ogre Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","690","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32784","-1","","","","","Red Ogre Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","460","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32785","-1","","","","","Veteran's Chain Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","30","21","16","20","0","0","0","0","0","70" +"32786","-1","","","","","Veteran's Dragonhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","26","26","17","0","0","0","0","0","70" +"32787","-1","","","","","Veteran's Dreadweave Stalkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","30","31","0","0","0","0","0","0","0","70" +"32788","-1","","","","","Veteran's Kodohide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","26","26","0","0","0","0","0","0","0","70" +"32789","-1","","","","","Veteran's Lamellar Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32790","-1","","","","","Veteran's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","30","16","30","0","0","0","0","0","0","70" +"32791","-1","","","","","Veteran's Linked Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","30","21","31","20","0","0","0","0","0","70" +"32792","-1","","","","","Veteran's Mail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32793","-1","","","","","Veteran's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","31","31","30","0","0","0","0","0","0","70" +"32794","-1","","","","","Veteran's Scaled Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","41","18","27","18","0","0","0","0","0","70" +"32795","-1","","","","","Veteran's Silk Footguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32796","-1","","","","","Veteran's Wyrmhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","294","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","26","0","0","0","0","0","0","0","70" +"32797","-1","","","","","Veteran's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","30","21","16","20","0","0","0","0","0","70" +"32798","-1","","","","","Veteran's Dragonhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","26","26","17","0","0","0","0","0","70" +"32799","-1","","","","","Veteran's Dreadweave Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","30","31","0","0","0","0","0","0","0","70" +"32800","-1","","","","","Veteran's Kodohide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","26","0","0","0","0","0","0","0","70" +"32801","-1","","","","","Veteran's Lamellar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32802","-1","","","","","Veteran's Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","30","16","30","0","0","0","0","0","0","70" +"32803","-1","","","","","Veteran's Linked Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","31","21","30","20","0","0","0","0","0","70" +"32804","-1","","","","","Veteran's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32805","-1","","","","","Veteran's Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","31","31","30","0","0","0","0","0","0","70" +"32806","-1","","","","","Veteran's Scaled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","41","18","27","18","0","0","0","0","0","70" +"32807","-1","","","","","Veteran's Silk Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32808","-1","","","","","Veteran's Wyrmhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1032","0","0","0","0","0","0","0","0","0","0","0","0","241","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","26","0","0","0","0","0","0","0","70" +"32809","-1","","","","","Veteran's Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","68","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","20","13","8","10","0","0","0","0","0","70" +"32810","-1","","","","","Veteran's Dragonhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","1032","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","4","3","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","19","18","17","0","0","0","0","0","0","70" +"32811","-1","","","","","Veteran's Dreadweave Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","126","400","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","31","16","17","0","0","0","0","0","0","0","70" +"32812","-1","","","","","Veteran's Kodohide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","1032","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","18","18","0","0","0","0","0","0","0","70" +"32813","-1","","","","","Veteran's Lamellar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","3","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","16","14","15","0","0","0","0","0","0","70" +"32814","-1","","","","","Veteran's Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","1032","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","21","9","15","0","0","0","0","0","0","70" +"32816","-1","","","","","Veteran's Linked Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","68","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","21","12","17","11","0","0","0","0","0","70" +"32817","-1","","","","","Veteran's Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","68","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","15","17","0","0","0","0","0","0","70" +"32818","-1","","","","","Veteran's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","3","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","21","17","17","0","0","0","0","0","0","70" +"32819","-1","","","","","Veteran's Scaled Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","3","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","29","8","13","9","0","0","0","0","0","70" +"32820","-1","","","","","Veteran's Silk Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","126","400","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","18","14","13","0","0","0","0","0","0","70" +"32821","-1","","","","","Veteran's Wyrmhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","1032","0","0","0","0","0","0","0","0","0","0","0","0","174","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","16","15","0","0","0","0","0","0","0","70" +"32822","-1","","","","","Flawless Arcane Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32823","-1","","","","","Illidari Lord Balthas' Instructions","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3028","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32824","-1","Trash getting you down?","","","","Trashbringer","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","280599","1402998","1","1","1","0","24580","0","0","0","145","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","155","-1","0","0","381","30","0","0","0","466","50","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","5","0","0","0","0","0","0","0","0","0","0","0","70" +"32825","-1","Use against Reth'hedron the Subduer.","","","","Soul Cannon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32826","-1","","","","","Monster - Bow, Scryer (Uber)","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"32827","-1","","","","","Monster - Bow, Scryer (Hobb)","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"32828","-1","","","","","Ogri'la Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2300","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32829","-1","","","","","Windcharger's Lance","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103467","517339","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","109","-1","0","0","237","0","0","0","0","357","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","60","0","0","0","0","0","0","0","0","0","0" +"32830","-1","","","","","Severin's Cane","0.4","0","-25.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","103855","519277","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2400","0","0","0","109","-1","0","0","167","0","0","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","60","40","0","0","0","0","0","0","0","0","0" +"32831","-1","","","","","Jeweled Rod","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62545","312729","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","109","-1","0","0","152","0","0","0","0","284","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","5","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","3","0","18","0","0","0","0","0","0","0","0","0","0" +"32832","-1","","","","","Scout's Throwing Knives","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9954","39818","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","109","32767","0","0","106","0","0","0","0","160","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","18","13","0","0","0","0","0","0","0","0","0" +"32833","-1","Matches a Red or Blue Socket.","","","","Purified Jaggal Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","641","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32834","-1","","","","","Nether Ray Cage","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32835","-1","","","","","Ogri'la Care Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32836","-1","Matches a Red or Blue Socket.","","","","Purified Shadow Pearl","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","642","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32837","-1","","","","","Warglaive of Azzinoth","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","243112","1215564","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","699","0","0","0","2800","0","0","0","156","9","0","0","214","0","0","0","0","398","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","5","0","22","29","21","0","0","0","0","0","0","0","70" +"32838","-1","","","","","Warglaive of Azzinoth","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","243974","1219873","1","1","1","0","24580","0","0","0","125","0","0","0","0","0","0","0","0","0","0","699","0","0","0","1400","0","0","0","156","9","0","0","107","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","5","0","21","28","23","0","0","0","0","0","0","0","70" +"32839","-1","","","","","Cauldron of Major Arcane Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32840","-1","","","","","Major Arcane Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32841","-1","","","","","Monster - Dagger, Fang of Vashj","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32842","-1","","","","","Dragonmaw Flare Gun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32843","-1","","","","","Scryer Medals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32844","-1","","","","","Major Nature Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32845","-1","","","","","Major Shadow Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32846","-1","","","","","Major Fire Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32847","-1","","","","","Major Frost Protection Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32848","-1","","","","","Explosives Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32849","-1","","","","","Cauldron of Major Fire Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32850","-1","","","","","Cauldron of Major Frost Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32851","-1","","","","","Cauldron of Major Nature Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32852","-1","","","","","Cauldron of Major Shadow Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","750","3000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"32853","-1","","","","","Aldor Medals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32854","-1","","","","","Hammer of Righteous Might","0.4","0","-42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139429","697148","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2100","0","0","0","105","-1","0","0","182","0","0","0","0","274","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","2","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","37","0","0","0","0","0","0","0","0","70" +"32856","-1","","","","","Monster - Dagger, Blood Elf B02 Red","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32857","-1","","","","","Reins of the Onyx Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32858","-1","","","","","Reins of the Azure Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32859","-1","","","","","Reins of the Cobalt Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32860","-1","","","","","Reins of the Purple Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32861","-1","","","","","Reins of the Veridian Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32862","-1","","","","","Reins of the Violet Netherwing Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32863","-1","Property of the Top Orc","","","","Skybreaker Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","524352","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32864","-1","","","","","Commander's Badge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","557120","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1015","0","0","109","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","0","0","0","0","0","0","0","0","0","0","6","0","0","12","3","0","45","0","0","0","0","0","0","0","0","0","0" +"32865","-1","","","","","Drake Tamer's Gloves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17688","88444","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","165","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","22","21","0","0","0","0","0","0","0","0","0" +"32866","-1","","","","","Ascendant's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37217","186085","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2883","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","722","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","6","0","0","1","0","12","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","21","22","0","0","0","0","0","0","0","0","0" +"32867","-1","","","","","Dragonmaw Augur's Cinch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14257","71286","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","7","0","0","1","0","7","5","0","0","0","0","0","0","0","0","0","0","0","0","6","2","0","22","21","0","0","0","0","0","0","0","0","0" +"32868","-1","","","","","Skybreaker's Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32343","161716","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","441","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","22","21","0","0","0","0","0","0","0","0","0" +"32869","-1","","","","","Illidari Lord's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36876","184381","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","263","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","8","0","0","1","0","3","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","29","24","0","0","0","0","0","0","0","0","0" +"32870","-1","","","","","Legguards of Contemplation","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44412","222064","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","514","0","0","0","0","0","0","0","254","0","0","0","4","2","4","0","5","0","0","1","0","7","5","0","0","0","0","0","0","0","0","0","0","0","0","7","2","0","24","29","0","0","0","0","0","0","0","0","0" +"32871","-1","","","","","Horns of the Illidari","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38924","194622","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","0","0","114","-1","0","0","0","0","0","0","0","0","0","0","0","0","853","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","6","0","0","1","0","12","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","29","24","0","0","0","0","0","0","0","0","0" +"32872","-1","","","","","Illidari Rod of Discipline","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55914","279571","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","1400","0","0","0","114","-1","0","0","107","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","2","0","0","1","5","7","0","0","0","0","0","0","0","0","0","0","0","0","0","26","2","0","9","0","0","0","0","0","0","0","0","0","0" +"32874","-1","","","","","Monster - Black Temple - Mace, 1H - Bonechewer Taskmaster","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32875","-1","","","","","Monster - Black Temple - Axe, 2H - Dragonmaw Wyrmcaller","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32876","-1","","","","","Monster - Black Temple - Crossbow - Dragonmaw Sky Stalker","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"32877","-1","","","","","Monster - Black Temple - Fist, 1H - Bonechewer Brawler (Left)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32878","-1","","","","","Monster - Black Temple - Fist, 1H - Bonechewer Brawler (Right)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32879","-1","","","","","Monster - Black Temple - Axe, 2H - Bonechewer Combatant","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32882","-1","","","","","Hellfire Shot","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","947","0","0","115","-1","0","0","37","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","68" +"32883","-1","","","","","Felbane Slugs","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","6","5000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","946","0","0","115","-1","0","0","37","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","68" +"32884","-1","","","","","Monster - Black Temple - Staff, 2H - Bonechewer Blood Prophet","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32885","-1","","","","","Monster - Black Temple - Shield - Bonechewer Shield Disciple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32886","-1","","","","","Monster - Black Temple - Axe, 1H - Bonechewer Shield Disciple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32887","-1","","","","","Monster - Black Temple - Axe, 1H - Bonechewer Blade Fury","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32888","-1","Isfar's notes on the locations of the relics of Terokk","","","","The Relics of Terokk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","16384","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3029","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"32889","-1","","","","","Monster - Black Temple - Sword, 1H - Council Advisor","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32890","-1","","","","","Monster - Black Temple - Sword, 1H - Council Advisor (Test)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32891","-1","","","","","Monster - Black Temple - Shield - Illidari Blood Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32892","-1","","","","","Monster - Black Temple - Hammer, 1H - Illidari Blood Lord","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32893","-1","","","","","Monster - Black Temple - Staff, 2H - Illidari Archon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32894","-1","","","","","Monster - Black Temple - Dagger - Illidari Assassin","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32895","-1","A scroll imbued with the magic of the Serpentshrine.","","","","Scroll of the Maelstrom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32896","-1","A scroll imbued with the magic of the Sunwell.","","","","Scroll of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"32897","-1","Bears the mark of Illidan. This item can be turned in at the Scryers or Aldor bank in Shattrath City.","","","","Mark of the Illidari","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"32898","-1","","","","","Shattrath Flask of Fortification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32899","-1","","","","","Shattrath Flask of Mighty Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32900","-1","","","","","Shattrath Flask of Supreme Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32901","-1","","","","","Shattrath Flask of Relentless Assault","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32902","-1","Insert into nearest energy receptacle.","","","","Bottled Nethergon Energy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32903","-1","","","","","Cenarion Mana Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","3","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32904","-1","","","","","Cenarion Healing Salve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","3","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32905","-1","Inhale deeply.","","","","Bottled Nethergon Vapor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32906","-1","The little guy seems out of it...","","","","Stunned Wolpertinger","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32907","-1","","","","","Wolpertinger Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32908","-1","","","","","Tempest Keep Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32909","-1","","","","","Blue Ogre Brew Special","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","690","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32910","-1","","","","","Red Ogre Brew Special","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","460","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1038","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"32912","-1","","","","","Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32913","-1","","","","","zzOld - Brewfest Drink A","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32914","-1","","","","","Bland Shiv","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","98621","493106","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","100","-1","0","0","146","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","0" +"32915","-1","Barleybrew filled, Brewfest approved.","","","","Filled Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32916","-1","","","","","Grimbooze's Research Notes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32917","-1","Thunderbrew's got ya covered!","","","","Filled Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32918","-1","It's not just ogre brew, it's Gordok brew.","","","","Filled Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32919","-1","The path for good brew ends at Drohn's Distillery.","","","","Filled Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32920","-1","T'chali's Voodoo Brew is 98% body part free.","","","","Filled Yellow Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"32921","-1","","","","","Brewfest Mug 2007 (Filled, F)","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32922","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Energy)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32923","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Energy)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32924","-1","","","","","Monster - Axe, Afrasiabi Particle Glaive Polearm Magtheridon","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32925","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Light)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32926","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Light)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32927","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Small Energy)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32928","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Small Energy)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32929","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Holy)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32930","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Holy)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32931","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Fear Blade)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32932","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Fear Blade)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32933","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Rage)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32934","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Rage)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32935","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Vengeance)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32936","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Vengeance)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32937","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Purple Globes)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32938","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Purple Globes)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32939","-1","","","","","Monster - Axe, Afrasiabi Particle Test Dagger (Slowing Strike)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32940","-1","","","","","Monster - Axe, Afrasiabi Particle Test 2H Sword (Slowing Strike)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","1","-1","0","0","2","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"32941","-1","","","","","Corruptor's Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97528","390112","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","21","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","16","0","0","0","0","0","0","0","0","70" +"32942","-1","","","","","Ring of the Overseer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97528","390112","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","16","0","0","0","0","0","0","0","0","70" +"32943","-1","","","","","Swiftsteel Bludgeon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","140184","700922","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","141","32767","0","0","105","0","0","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","36","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","19","0","0","0","0","0","0","0","0","70" +"32944","-1","","","","","Talon of the Phoenix","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134251","671256","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","134","-1","0","0","182","0","0","0","0","339","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","19","15","0","0","0","0","0","0","0","0","70" +"32945","-1","","","","","Fist of Molten Fury","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141230","706154","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","719","0","0","0","1500","0","0","0","141","-1","0","0","120","0","0","0","0","181","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","20","28","0","0","0","0","0","0","0","0","70" +"32946","-1","","","","","Claw of Molten Fury","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141739","708699","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","719","0","0","0","2700","0","0","0","141","-1","0","0","216","0","0","0","0","325","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","20","28","0","0","0","0","0","0","0","0","70" +"32947","-1","","","","","Auchenai Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32948","-1","","","","","Auchenai Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"32949","-1","","","","","Unusually Slow Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89163","445819","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6000","0","0","0","115","-1","0","0","430","0","0","0","0","431","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32950","-1","","","","","Unusually Slow Mace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80929","404648","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6000","0","0","0","100","-1","0","0","363","0","0","0","0","363","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32951","-1","","","","","Unusually Slow Two-Hander","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104889","524447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8000","0","0","0","115","-1","0","0","746","0","0","0","0","747","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","3","0","0","0","0","0","0","0","0","0","0","0","0" +"32952","-1","","","","","QAEnchant Weapon Spellsurge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32953","-1","","","","","Monster - Sword2H, Kaz'rogal","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4","22","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32954","-1","","","","","Tom's Boots 1","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58626","293131","1","1","1","16","8192","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","997","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","43","23","15","15","0","0","0","0","0","70" +"32955","-1","","","","","Tom's Boots 2","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66131","330659","1","1","1","16","8192","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","1122","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","35","51","27","17","17","0","0","0","0","0","70" +"32956","-1","","","","","Tom's Boots 3","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73421","367105","1","1","1","16","8192","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","1","0","0","0","0","0","0","0","0","0","0","0","0","1247","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","58","30","19","19","0","0","0","0","0","70" +"32957","-1","","","","","Tom's Bracer 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39382","196912","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","634","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","33","17","11","11","0","0","0","0","0","70" +"32958","-1","","","","","Tom's Bracer 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44932","224662","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","1","0","0","0","0","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","26","37","20","13","13","0","0","0","0","0","70" +"32959","-1","","","","","Tom's Bracer 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49882","249414","1","1","1","16","8192","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","145","1","0","0","0","0","0","0","0","0","0","0","0","0","793","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","7","32","16","17","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","30","43","23","15","15","0","0","0","0","0","70" +"32960","-1","","","","","Elekk Dispersion Ray","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32961","-1","","","","","Merciless Gladiator's Reprieve","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","27","19","27","0","0","0","0","0","0","0","70" +"32962","-1","","","","","Merciless Gladiator's Touch of Defeat","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","136","-1","0","0","238","0","0","0","0","443","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","15","13","14","0","0","0","0","0","0","0","70" +"32963","-1","","","","","Merciless Gladiator's Gavel","0.6","0","-56.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","136","-1","0","0","109","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","35","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","27","18","15","18","0","0","0","0","0","0","70" +"32964","-1","","","","","Merciless Gladiator's Salvation","0.6","0","-56.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","136","-1","0","0","109","0","0","0","0","203","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","21","21","0","0","0","0","0","0","0","70" +"32965","-1","","","","","DEBUG - Headless Horseman - Create Fire Node","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32966","-1","","","","","DEBUG - Headless Horseman - Start Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32967","-1","","","","","DEBUG - Headless Horseman - Extinguish Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32970","-1","","","","","[TEST] Steadfast Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7949","39749","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","43","-1","0","507","0","0","0","0","0","0","0","0","0","0","242","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","0","0","0","0","0","0","0","0","0","0","38" +"32971","-1","","","","","Water Bucket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","1","1","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32972","-1","","","","","Beer Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"32973","-1","","","","","General's Mooncloth Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","14","0","0","0","0","0","0","0","70" +"32974","-1","","","","","General's Mooncloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","0","0","0","0","0","0","0","70" +"32975","-1","","","","","General's Mooncloth Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","0","0","0","0","0","0","0","70" +"32976","-1","","","","","Marshal's Mooncloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","0","0","0","0","0","0","0","70" +"32977","-1","","","","","Marshal's Mooncloth Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","113","400","0","0","0","0","0","0","0","0","0","0","0","0","84","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","14","0","0","0","0","0","0","0","70" +"32978","-1","","","","","Marshal's Mooncloth Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","400","0","0","0","0","0","0","0","0","0","0","0","0","142","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","40","27","27","0","0","0","0","0","0","0","70" +"32979","-1","","","","","Veteran's Mooncloth Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","128","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","30","31","0","0","0","0","0","0","0","70" +"32980","-1","","","","","Veteran's Mooncloth Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","126","400","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","31","16","17","0","0","0","0","0","0","0","70" +"32981","-1","","","","","Veteran's Mooncloth Slippers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","400","0","0","0","0","0","0","0","0","0","0","0","0","157","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","30","31","0","0","0","0","0","0","0","70" +"32982","-1","","","","","General's Ornamented Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32983","-1","","","","","General's Ornamented Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","12","13","0","0","0","0","0","0","70" +"32984","-1","","","","","General's Ornamented Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32985","-1","","","","","Marshal's Ornamented Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","870","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32986","-1","","","","","Marshal's Ornamented Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","3","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","14","12","13","0","0","0","0","0","0","70" +"32987","-1","","","","","Marshal's Ornamented Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","3","0","0","0","0","0","0","0","0","0","0","0","0","1063","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32988","-1","","","","","Veteran's Ornamented Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","959","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32989","-1","","","","","Veteran's Ornamented Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","3","0","0","0","0","0","0","0","0","0","0","0","0","693","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","16","14","15","0","0","0","0","0","0","70" +"32990","-1","","","","","Veteran's Ornamented Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","3","0","0","0","0","0","0","0","0","0","0","0","0","1172","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32991","-1","","","","","General's Ringmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","12","13","14","0","0","0","0","0","0","70" +"32992","-1","","","","","General's Ringmail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32993","-1","","","","","General's Ringmail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32994","-1","","","","","Marshal's Ringmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","113","68","0","0","0","0","0","0","0","0","0","0","0","0","349","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","22","12","13","14","0","0","0","0","0","0","70" +"32995","-1","","","","","Marshal's Ringmail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","487","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32996","-1","","","","","Marshal's Ringmail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","123","68","0","0","0","0","0","0","0","0","0","0","0","0","595","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","34","23","23","24","0","0","0","0","0","0","70" +"32997","-1","","","","","Veteran's Ringmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","126","68","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","14","15","17","0","0","0","0","0","0","70" +"32998","-1","","","","","Veteran's Ringmail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","537","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","27","27","26","0","0","0","0","0","0","70" +"32999","-1","","","","","Veteran's Ringmail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","68","0","0","0","0","0","0","0","0","0","0","0","0","656","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","27","27","26","0","0","0","0","0","0","70" +"33001","-1","","","","","Reflective Dust","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33002","-1","","","","","Monster - Staff, Feathered Gold (Red Flame)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3400","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33003","-1","","","","","Test Sword Skill Trinket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33004","-1","","","","","Clamlette Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","300","1200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"33005","-1","","","","","TEST CHEST MAIL HUNTER","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17645","88226","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","358","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33006","-1","","","","","Vengeful Gladiator's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","146","-1","0","0","223","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","24","16","13","0","0","0","0","0","0","0","70" +"33007","-1","","","","","Grimbooze's Secret Recipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"33008","-1","Crates filled with leaflets denouncing Lady Jaina and encouraging Theramore guards to join with the deserters.","","","","Deserter Propaganda","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33009","-1","Kyle would delight in taking a bite out of this succulent treat!","","","","Tender Strider Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33010","-1","You may be able to peek without breaking the seal....","","","","Griftah's Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3031","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33012","-1","Rare and exquisite... just like all the others.","","","","Terokkar Lilac","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33013","-1","This map is sketchy, at best....","","","","Budd's Map of Zul'Aman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33014","-1","Wrought by nature's hands over hundreds of years!","","","","Fine Poking Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33015","-1","The text of these leaflets has been doctored to embarass the Theramore deserters.","","","","Altered Leaflets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33016","-1","","","","","Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33017","-1","Barleybrew brew, when you want the very best.","","","","Filled Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33018","-1","You've called down the thunder!","","","","Filled Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33019","-1","Gordok brew, it's wet.","","","","Filled Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33020","-1","Drohn's Distillery, a wise choice.","","","","Filled Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33021","-1","T'chali's Voodoo Brew has magic you don't want to understand.","","","","Filled Blue Brewfest Stein","0.6","0","-3.5","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","3","0","0","0","0","0","0","0","0","0","0","0","1" +"33022","-1","","","","","Brewfest Mug 2008 (Filled, F)","0.6","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","4","19","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33023","-1","","","","","Savory Sausage","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"33024","-1","","","","","Pickled Sausage","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"33025","-1","","","","","Spicy Smoked Sausage","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","125","500","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33026","-1","","","","","The Golden Link","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","800","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33027","-1","","","","","TEST Mike's Dagger","0","0","0","2048","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8","32","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","1","-1","103","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","36","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","1" +"33028","-1","","","","","Barleybrew Light","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","15","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"33029","-1","","","","","Barleybrew Dark","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"33030","-1","","","","","Barleybrew Clear","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","3","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"33031","-1","","","","","Thunder 45","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"33032","-1","","","","","Thunderbrew Ale","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"33033","-1","","","","","Thunderbrew Stout","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"33034","-1","","","","","Gordok Grog","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33035","-1","","","","","Ogre Mead","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","160","640","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33036","-1","","","","","Mudder's Milk","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","160","640","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33037","-1","These orders are penned in ornate script on heavy, expensive paper.","","","","Defias Orders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3032","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33038","-1","This diving gear would certainly kill anyone who tried to use it in its present condition.","","","","Damaged Diving Gear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33039","-1","Grimy, rusty tools that only a desperate person would attempt to use.","","","","Tool Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33040","-1","Renn has repaired this, but there's no telling how long it will work.","","","","Repaired Diving Gear","0","3600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33041","-1","The contents of this box appear to have survived the wreck.","","","","Salvaged Strongbox","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33042","-1","A warning on the side reads: Contents are HOT! Do not pour on self or others.","","","","Black Coffee","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33043","-1","","","","","The Essential Brewfest Pretzel","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","3","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"33044","-1","","","","","Salvage Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33045","-1","Contains diving gear and salvage supplies.","","","","Renn's Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33046","-1","","","","","Insignia of PvP Pwn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33047","-1","Guaranteed by Belbi Quikswitch to make EVERYONE look attractive!","","","","Belbi's Eyesight Enhancing Romance Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33048","-1","","","","","Stewed Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33049","-1","","","","","Monster - Axe, Outland D04 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33050","-1","","","","","Grimtotem Note","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33051","-1","","","","","Grimtotem Battle Plan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3033","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33052","-1","","","","","Fisherman's Feast","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33053","-1","","","","","Hot Buttered Trout","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33054","-1","From beneath you it devours.","","","","The Seal of Danzalar","0","0","295","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","33","21","0","0","0","0","0","0","0","0","70" +"33055","-1","","","","","Band of Vile Aggression","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","37","25","0","0","0","0","0","0","0","0","70" +"33056","-1","","","","","Veteran's Band of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","22","12","0","0","0","0","0","0","0","70" +"33057","-1","","","","","Veteran's Band of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","22","22","0","0","0","0","0","0","0","70" +"33058","-1","","","","","Band of the Vigilant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","33","21","21","0","0","0","0","0","0","0","70" +"33060","-1","Matches a Red, Blue, or Yellow Socket.","","","","Soulbound Test Gem","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","681","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33061","-1","","","","","Grimtotem Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33062","-1","","","","","zzOLD Empty Brewfest Sampler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33063","-1","Not edilble, but a handy tool for defending your drink.","","","","Really Tough Brewfest Bread","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","5","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33064","-1","","","","","Veteran's Band of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","22","17","0","0","0","0","0","0","0","70" +"33065","-1","","","","","Veteran's Pendant of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","31","18","16","0","0","0","0","0","0","0","70" +"33066","-1","","","","","Veteran's Pendant of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","31","18","18","0","0","0","0","0","0","0","70" +"33067","-1","","","","","Veteran's Pendant of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","27","18","18","12","0","0","0","0","0","0","70" +"33068","-1","","","","","Veteran's Pendant of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","30","18","13","0","0","0","0","0","0","0","70" +"33069","-1","A strong, braided leather rope suitable for capturing large creatures.","","","","Sturdy Rope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33070","-1","The nearly rancid remains from a recent hunting trip.","","","","Raptor Bait","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33071","-1","These arms and armor match the style of those found at the Shady Rest Inn, but haven't seen battle.","","","","Blackhoof Armaments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33072","-1","","","","","Tabetha's Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33073","-1","hides ears for testing","","","","Test_Ears_Hidden(builtByBlue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33074","-1","hides eyes for testing","","","","Test_Eyes_Hidden(builtByBlue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33075","-1","hides nose and ears for testing","","","","Test_NoseAndEars_Hidden(builtByBlue)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33076","-1","","","","","Merciless Gladiator's Idol of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33077","-1","","","","","Merciless Gladiator's Libram of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33078","-1","","","","","Merciless Gladiator's Totem of the Third Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33079","-1","","","","","Murloc Costume","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33081","-1","","","","","Voodoo Skull","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5","20","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"33082","-1","","","","","Wreath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33083","-1","This doesn't do a body good....","","","","Orcish Grog","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","10","5","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33085","-1","","","","","Bloodfen Feather","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33086","-1","","","","","Stonemaul Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33087","-1","","","","","Black Dragonkin Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33088","-1","","","","","Brogg's Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33091","-1","Brogg's finished totem.","","","","Energized Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33092","-1","","","","","Healing Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33093","-1","","","","","Mana Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33094","-1","","","","","Monster - Axe, Hatchet B01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33095","-1","This old banner is tattered and foul-smelling, but nonetheless embodies Stonemaul pride.","","","","Stonemaul Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33096","-1","Free brew in a fun, throwable mug!","","","","Complimentary Brewfest Sampler","0","900","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","196674","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33097","-1","This spongy ring is surprisingly durable.","","","","Mushroom Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33101","-1","","","","","Captured Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33102","-1","Through the vial's glass you can feel the warlord's blood swirling.","","","","Blood of Zul'jin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11178","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33103","-1","","","","","Marsh Venom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33104","-1","","","","","Ring of Skill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1535","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","15","0","0","0","0","0","0","0","0","0","0" +"33105","-1","For this to work, you must think nothing but savage troll thoughts....","","","","Budd's Guise of Zul'aman","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33106","-1","","","","","Forest Troll Tusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33107","-1","A ragged, stained voodoo doll","","","","Tattered Voodoo Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33108","-1","Explodes pesky oozes, guaranteed!","","","","Ooze Buster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33110","-1","A jagged, rusty blade wielded by an insane murloc.","","","","Razorspine's Sword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33112","-1","","","","","Witchbane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33113","-1","","","","","Witchbane Torch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33114","-1","","","","","Sealed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11185","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"33115","-1","","","","","Sealed Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11186","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"33117","-1","","","","","Jack-o'-Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","18","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","60" +"33118","-1","","","","","Socket Testing Item","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","60","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","158","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","20","20","20","0","0","0","0","0","0","0" +"33122","-1","","","","","Cloak of Darkness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38029","190146","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","2885","0","0","0","0","0","0","0","0","0","0","0","0","120","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","2","0","7","19","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","25","24","23","0","0","0","0","0","0","0","70" +"33124","-1","Teaches you how to craft a Cloak of Darkness.","","","","Pattern: Cloak of Darkness","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","360","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33125","-1","","","","","Monster - Item, Tankard Metal (Red Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33126","-1","","","","","Thresher Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33127","-1","An old seafarer's compilation of illustrated tales about giant sea monsters.","","","","Dastardly Denizens of the Deep","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3034","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33131","-1","Matches a Red Socket. Socketing this gem causes the item to become Soulbound.","","","","Crimson Sun","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33132","-1","Matches a Red Socket.","","","","Delicate Fire Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33133","-1","Matches a Red Socket. Socketing this gem causes the item to become Soulbound.","","","","Don Julio's Heart","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","704","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33134","-1","Matches a Red Socket. Socketing this gem causes the item to become Soulbound.","","","","Kailee's Rose","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","705","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33135","-1","Matches a Blue Socket. Socketing this gem causes the item to become Soulbound.","","","","Falling Star","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","706","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33137","-1","Matches a Blue Socket.","","","","Sparkling Falling Star","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","708","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33138","-1","Matches a Yellow Socket.","","","","Mystic Bladestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","709","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33139","-1","Matches a Yellow Socket.","","","","Brilliant Bladestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","710","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33140","-1","Matches a Yellow Socket. Socketing this gem causes the item to become Soulbound.","","","","Blood of Amber","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","711","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33141","-1","Matches a Yellow Socket.","","","","Great Bladestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","712","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33142","-1","Matches a Yellow Socket.","","","","Rigid Bladestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","713","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33143","-1","Matches a Yellow Socket. Socketing this gem causes the item to become Soulbound.","","","","Stone of Blades","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","714","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33144","-1","Matches a Yellow Socket. Socketing this gem causes the item to become Soulbound.","","","","Facet of Eternity","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","0","0","0","0","360","755","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33148","-1","Teaches you how to permanently enchant a cloak to give 12 dodge rating.","","","","Formula: Enchant Cloak - Dodge","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33149","-1","Teaches you how to permanently enchant a cloak to increase stealth.","","","","Formula: Enchant Cloak - Stealth","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33150","-1","Teaches you how to permanently enchant a cloak to reduce how threatening the wearer is to monsters by 2%.","","","","Formula: Enchant Cloak - Subtlety","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33151","-1","Teaches you how to permanently enchant a cloak to reduce how threatening the wearer is to monsters by 2%.","","","","Formula: Enchant Cloak - Subtlety","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33152","-1","Teaches you how to permanently enchant gloves to increase Agility by 15.","","","","Formula: Enchant Gloves - Superior Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33153","-1","Teaches you how to permanently enchant gloves to increase the threat that the wearer generates against monsters.","","","","Formula: Enchant Gloves - Threat","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","300","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33154","-1","","","","","Sinister Squashling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33155","-1","Teaches you how to cut Kailee's Rose.","","","","Design: Kailee's Rose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33156","-1","Teaches you how to cut the Crimson Sun.","","","","Design: Crimson Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33157","-1","Teaches you how to cut the Falling Star.","","","","Design: Falling Star","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33158","-1","Teaches you how to cut the Stone of Blades.","","","","Design: Stone of Blades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33159","-1","Teaches you how to cut the Blood of Amber.","","","","Design: Blood of Amber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33160","-1","Teaches you how to cut the Facet of Eternity.","","","","Design: Facet of Eternity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33161","-1","","","","","Monster - Item, Tankard Gold (Yellow Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33162","-1","","","","","Monster - Item, Tankard Gold Offhand (Yellow Glow)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33163","-1","It seems to have survived the crash intact... mostly.","","","","Zeppelin Cargo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33165","-1","Teaches you how to permanently enchant a weapon to grant 20 Agility.","","","","Formula: Enchant Weapon - Greater Agility","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","350","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33166","-1","A jar of the most rank fish-derived paste you've ever seen.","","","","Pagle's Fish Paste, Extra Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33173","-1","","","","","Ragesteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46380","231903","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","3205","0","0","0","0","566","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","0","0","0","2","0","4","32","31","7","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","32","17","9","12","0","0","0","0","0","0","70" +"33174","-1","Teaches you how to make Ragesteel Shoulders.","","","","Plans: Ragesteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33175","-1","","","","","Wyrmtail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33176","-1","","","","","Flying Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","225","762","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"33182","-1","","","","","Swift Flying Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","300","762","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33183","-1","","","","","Old Magic Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","75","762","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","40" +"33184","-1","","","","","Swift Magic Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","150","762","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"33185","-1","","","","","Adamantite Weapon Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","18000","72000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33186","-1","Teaches you how to make an Adamantite Weapon Chain.","","","","Plans: Adamantite Weapon Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33189","-1","","","","","Rickety Magic Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","1" +"33191","-1","","","","","Jungle Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69481","347406","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2975","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","20","28","0","0","0","0","0","0","0","70" +"33192","-1","","","","","Carved Witch Doctor's Stick","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","1500","0","0","0","132","-1","0","0","184","0","0","0","0","343","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","2","0","0","1","5","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","9","15","0","0","0","0","0","0","0","0","70" +"33193","-1","","","","","Mossy Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","61" +"33194","-1","Most likely used in some forgotten ceremony, this band looks like it hadn't been disturbed in a very long time.","","","","Ancient Ceremonial Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33195","-1","Moss and lichen cover this primitive band.","","","","Cracked Stone Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33196","-1","Luminescent lichen covers the surface of this plain ring.","","","","Softly-Glowing Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33197","-1","","","","","Mossy Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33198","-1","The bones adorning this necklace have been partially consumed by a hundred years of moss and lichen growth.","","","","Necklace of Decay","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33199","-1","Riddled with dark bits of moss, the origins of this strange pendant remain a mystery.","","","","Pendant of Old","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33200","-1","The symbols etched on this necklace have been all but erased by the lichen covering it.","","","","Ancient Ceremonial Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33201","-1","The initials S.L. can still be read despite the thick growth of silvery lichen.","","","","Silver Moonstone Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","13000","52000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","103","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","15","0","0","0","0","0","0","0","0","0","66" +"33202","-1","","","","","Marsh Frog Leg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33203","-1","","","","","Robes of Heavenly Purpose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48289","241445","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","21","23","45","0","0","0","0","0","0","0","70" +"33204","-1","","","","","Shadowprowler's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52547","262735","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","105","-1","0","0","0","0","0","0","0","0","0","0","0","0","333","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","8","0","0","2","0","31","7","4","3","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","8","12","32","40","0","0","0","0","0","0","70" +"33205","-1","Teaches you how to make Shadowprowler's Chestguard.","","","","Pattern: Shadowprowler's Chestguard","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33206","-1","","","","","Pauldrons of Primal Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","57303","286516","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","675","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","1","0","31","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","20","28","30","0","0","0","0","0","0","0","70" +"33207","-1","","","","","Implacable Guardian Sabatons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2863","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","22","0","0","0","0","0","0","0","0","70" +"33208","-1","","","","","Flask of Chromatic Wonder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","5000","20000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33209","-1","Teaches you how to make a Flask of Chromatic Wonder.","","","","Recipe: Flask of Chromatic Wonder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","967","375","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33211","-1","Accepting donations.","","","","Bladeangel's Money Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33146","165731","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","25","27","21","0","0","0","0","0","0","0","70" +"33214","-1","","","","","Akil'zon's Talonblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","137848","689243","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","132","-1","0","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","25","18","0","0","0","0","0","0","0","0","70" +"33215","-1","","","","","Bloodstained Elven Battlevest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94140","470702","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1607","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","69","35","0","0","0","0","0","0","0","70" +"33216","-1","","","","","Chestguard of Hidden Purpose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94475","472377","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1607","0","0","0","0","0","0","0","254","0","0","0","2","4","3","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","31","33","0","0","0","0","0","0","0","0","70" +"33217","-1","","","","","Unstacked Tricky Treat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33218","-1","","","","","Goblin Gumbo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33219","-1","","","","","Goblin Gumbo Kettle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33222","-1","","","","","Nyn'jah's Tabi Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","21","22","0","0","0","0","0","0","0","70" +"33223","-1","","","","","Fishing Chair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33224","-1","","","","","Reins of the Spectral Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"33225","-1","","","","","Reins of the Swift Spectral Tiger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"33226","-1","","","","","Tricky Treat","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","100","0","0","0","1","1","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33228","-1","","","","","Crimson Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3227","16136","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","11","7","0","0","0","0","0","0","0","0","0" +"33229","-1","","","","","Mordant's Travel Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3239","16195","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","48","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","0","0","0","0","0","0","0","0","0","0","0","0","5","2","0","11","7","0","0","0","0","0","0","0","0","0" +"33230","-1","","","","","Leggings of the Long Road","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4170","20854","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","8","12","0","0","0","0","0","0","0","0","0" +"33231","-1","","","","","Oversized Stonemaul Hood","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3390","16953","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","43","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","8","0","0","0","0","0","0","0","0","0" +"33232","-1","","","","","Journeyman's Cowl","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2701","13505","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","12","7","0","0","0","0","0","0","0","0","0" +"33233","-1","","","","","Cobalt-threaded Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2276","11382","1","1","1","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","9","6","0","0","0","0","0","0","0","0","0" +"33234","-1","Chilling!","","","","Iced Berry Slush","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"33235","-1","","","","","Journeyman's Epaulets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1031","5158","1","0.3","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","40","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","6","0","0","0","0","0","0","0","0","0" +"33236","-1","Because, Let's Face it, 'New Fizzy Faire Drink' Was Awful","","","","Fizzy Faire Drink ""Classic""","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"33237","-1","","","","","Brogg's Battle Harness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5772","28861","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","8","0","0","0","0","0","0","0","0","0" +"33239","-1","","","","","Marshwarden's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5407","27036","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","110","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","15","4","0","0","0","0","0","0","0","0","0" +"33240","-1","","","","","Grimtotem Earthbinder's Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5025","25126","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","8","0","0","0","0","0","0","0","0","0" +"33241","-1","","","","","Oiled Leather Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5447","27238","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","0" +"33242","-1","","","","","Raptorhide Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5468","27340","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","96","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","14","6","0","0","0","0","0","0","0","0","0" +"33243","-1","","","","","Skirmisher's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3811","19055","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","6","0","0","0","0","0","0","0","0","0" +"33244","-1","","","","","The Wanderer's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3825","19125","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","10","0","0","0","0","0","0","0","0","0" +"33245","-1","","","","","Grimsby's Gaudy Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1994","9974","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","58","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","9","5","0","0","0","0","0","0","0","0","0" +"33246","-1","","","","","Funnel Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33247","-1","","","","","Swift Wind Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3014","15070","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","10","3","0","0","0","0","0","0","0","0","0" +"33248","-1","","","","","Crested Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3327","16638","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","79","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","9","5","0","0","0","0","0","0","0","0","0" +"33249","-1","","","","","Boots of the Skirmisher","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3339","16699","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","72","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","0","0","0","0","0","0","0","0","0" +"33250","-1","","","","","Archer's Wristguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2234","11173","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","46","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","6","5","0","0","0","0","0","0","0","0","0" +"33251","-1","","","","","Steel-banded Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6277","31388","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","11","10","0","0","0","0","0","0","0","0","0" +"33252","-1","","","","","Gleaming Scale Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5401","27008","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","12","7","0","0","0","0","0","0","0","0","0" +"33253","-1","","","","","Golden Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3696","18480","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","176","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","11","7","0","0","0","0","0","0","0","0","0" +"33254","-1","Gobble 'til you wobble!","","","","Forest Strider Drumstick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33255","-1","","","","","Rustproof Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3748","18744","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","8","8","0","0","0","0","0","0","0","0","0" +"33256","-1","","","","","Refitted Bruiser Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3763","18816","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","5","10","0","0","0","0","0","0","0","0","0" +"33257","-1","","","","","Scaled Marshwalkers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3500","17503","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","8","7","0","0","0","0","0","0","0","0","0" +"33258","-1","","","","","Protective Engineer's Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7540","37701","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","11","10","0","0","0","0","0","0","0","0","0" +"33259","-1","","","","","Crimson Barbut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4171","20857","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","13","5","0","0","0","0","0","0","0","0","0" +"33260","-1","","","","","Spellbound Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3617","18088","1","1.2","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","4","0","0","0","0","0","0","0","0","0" +"33261","-1","","","","","Destroyer's Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3631","18156","1","1.2","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","6","6","0","0","0","0","0","0","0","0","0" +"33262","-1","","","","","Morlann's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5105","20420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","39","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","4","0","0","0","0","0","0","0","0","0" +"33263","-1","","","","","Raptor Eye Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5514","22056","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","7","4","0","0","0","0","0","0","0","0","0" +"33264","-1","","","","","Glowing Tourmaline Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4728","18912","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","38","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","6","4","0","0","0","0","0","0","0","0","0" +"33265","-1","","","","","Pendant of Ferocity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4378","17512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","6","5","0","0","0","0","0","0","0","0","0" +"33266","-1","","","","","Book of the Adept","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4378","17512","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","37","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","6","5","0","0","0","0","0","0","0","0","0" +"33267","-1","","","","","Fleshripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9547","47739","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","38","-1","0","0","25","0","0","0","0","48","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","5","0","0","0","0","0","0","0","0","0" +"33268","-1","","","","","Bone Dirk","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9582","47914","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","38","-1","0","0","20","0","0","0","0","37","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","6","0","0","0","0","0","0","0","0","0" +"33269","-1","","","","","Bejeweled Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8905","44527","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","37","-1","0","0","24","0","0","0","0","46","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","6","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","3","5","0","0","0","0","0","0","0","0","0" +"33270","-1","","","","","Mariner's Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9651","48259","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","0","0","0","38","-1","0","0","33","0","0","0","0","62","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","3","0","0","0","0","0","0","0","0","0" +"33271","-1","","","","","Battlecaster's Edge","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10487","52436","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","40","-1","0","0","23","0","0","0","0","44","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","3","0","0","0","0","0","0","0","0","0" +"33272","-1","","","","","Biting Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","9026","45130","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","38","-1","0","0","23","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","3","0","0","0","0","0","0","0","0","0" +"33273","-1","","","","","Seasoned Marshwood Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7339","36697","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","39","-1","0","0","41","0","0","0","0","78","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","4","2","0","0","0","0","0","0","0","0","0" +"33274","-1","","","","","Mercenary's Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6316","31580","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","37","-1","0","0","44","0","0","0","0","67","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","2","4","3","0","0","0","0","0","0","0","0","0" +"33277","-1","","","","","Tome of Thomas Thomson","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3037","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33279","-1","","","","","Iron-tusk Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","45","33","21","0","0","0","0","0","0","0","70" +"33280","-1","","","","","War-Feathered Loop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","36","28","0","0","0","0","0","0","0","70" +"33281","-1","","","","","Brooch of Nature's Mercy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","30","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","33","24","19","0","0","0","0","0","0","0","70" +"33283","-1","","","","","Amani Punisher","0.6","0","-54.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132215","661078","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","132","-1","0","0","107","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","30","21","20","0","0","0","0","0","0","0","70" +"33285","-1","","","","","Fury of the Ursine","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25932","129661","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","17","16","17","0","0","0","0","0","0","70" +"33286","-1","","","","","Mojo-mender's Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58563","292815","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","731","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","38","0","0","0","0","0","0","0","0","70" +"33287","-1","","","","","Gnarled Ironwood Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","23","26","0","0","0","0","0","0","0","70" +"33288","-1","","","","","Complimentary Brewfest Sampler DEBUG","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33291","-1","","","","","Voodoo-woven Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","21","7","5","18","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","33","19","22","17","0","0","0","0","0","0","70" +"33292","-1","There's a hole for your head...","","","","Hallowed Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","10","1","1","1","32768","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33293","-1","","","","","Signet of Ancient Magics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","12","17","0","0","0","0","0","0","0","0","70" +"33296","-1","","","","","Brooch of Deftness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","31","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","48","22","21","0","0","0","0","0","0","0","70" +"33297","-1","","","","","The Savage's Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","37","25","0","0","0","0","0","0","0","0","70" +"33298","-1","","","","","Prowler's Strikeblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","129945","649725","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","132","32767","0","0","100","0","0","0","0","187","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","0","0","0","0","0","0","0","0","0","70" +"33299","-1","","","","","Spaulders of the Advocate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66444","332223","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","21","21","0","0","0","0","0","0","0","70" +"33300","-1","","","","","Shoulderpads of Dancing Blades","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47725","238628","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","39","16","0","0","0","0","0","0","0","70" +"33302","-1","","","","","[DNT] Test Mount","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","1" +"33303","-1","","","","","Skullshatter Warboots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","69237","346186","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2857","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","37","29","0","0","0","0","0","0","0","70" +"33304","-1","","","","","Cloak of Subjugated Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","34","23","16","15","0","0","0","0","0","0","70" +"33305","-1","Teaches you how to cut Don Julio's Heart.","","","","Design: Don Julio's Heart","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","360","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33306","-1","Giddyup!","","","","Ram Racing Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131074","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33307","-1","Learn how to permanently enchant a Melee Weapon to occasionally ignore 840 of your enemy's armor. Requires a level 60 or higher item.","","","","Formula: Enchant Weapon - Executioner","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33309","-1","","","","","Merciless Gladiator's Redoubt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","5727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","27","27","19","0","0","0","0","0","0","0","70" +"33313","-1","","","","","Merciless Gladiator's Barrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","-1","0","0","0","0","0","0","0","0","0","0","0","0","5727","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","27","27","19","0","0","0","0","0","0","0","70" +"33315","-1","","","","","QAEnchant Weapon Executioner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33317","-1","","","","","Robe of Departed Spirits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50333","251665","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","215","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","34","31","30","35","0","0","0","0","0","0","70" +"33322","-1","","","","","Shimmer-pelt Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65813","329069","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","35","34","30","0","0","0","0","0","0","0","70" +"33324","-1","","","","","Treads of the Life Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","33","0","0","0","0","0","0","0","0","70" +"33325","-1","","","","","Voodoo Shaker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","18","20","25","0","0","0","0","0","0","0","70" +"33326","-1","","","","","Bulwark of the Amani Empire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85458","427293","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","5400","0","0","0","0","0","0","0","254","0","0","0","2","0","0","4","6","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","42","19","0","0","0","0","0","0","0","0","70" +"33327","-1","","","","","Mask of Introspection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","70220","351100","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1306","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","33","39","31","0","0","0","0","0","0","0","70" +"33328","-1","","","","","Arrow-fall Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80691","403458","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","900","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","25","38","30","0","0","0","0","0","0","70" +"33329","-1","","","","","Shadowtooth Trollskin Cuirass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","67482","337412","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","46","0","0","0","0","0","0","0","0","70" +"33331","-1","","","","","Chain of Unleashed Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","34","37","14","0","0","0","0","0","0","0","70" +"33332","-1","","","","","Enamelled Disc of Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","79001","395007","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","5400","0","0","0","0","0","0","0","254","0","0","0","3","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","24","17","0","0","0","0","0","0","0","0","70" +"33333","-1","Everything happens for a reason","","","","Kharmaa's Shroud of Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","34","23","15","0","0","0","0","0","0","0","70" +"33334","-1","","","","","Fetish of the Primal Gods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","24","17","17","0","0","0","0","0","0","0","70" +"33338","-1","","","","","Monster - Throwing Knife (Fire Trail)","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18","75","1","1","1","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","0","4","0","0","0","0","0","0","0","0","0","0","1" +"33354","-1","","","","","Wub's Cursed Hexblade","0.6","0","-54.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","131461","657309","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","132","32767","0","0","120","0","0","0","0","224","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","18","21","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","20","21","0","0","0","0","0","0","0","70" +"33356","-1","","","","","Helm of Natural Regeneration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48278","241393","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","33","39","30","0","0","0","0","0","0","0","70" +"33357","-1","","","","","Footpads of Madness","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37012","185062","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","25","22","25","0","0","0","0","0","0","0","70" +"33386","-1","","","","","Man'kin'do's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","26","30","0","0","0","0","0","0","0","70" +"33388","-1","","","","","Heartless","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128494","642473","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","132","-1","0","0","174","0","0","0","0","323","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","36","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","20","30","0","0","0","0","0","0","0","0","70" +"33389","-1","","","","","Dagger of Bad Mojo","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","128987","644935","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","132","32767","0","0","137","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","21","0","0","0","0","0","0","0","0","0","70" +"33421","-1","","","","","Battleworn Tuskguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73002","365013","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","1355","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","1","0","7","13","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","60","23","40","0","0","0","0","0","0","0","70" +"33432","-1","","","","","Coif of the Jungle Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60691","303457","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","133","32767","0","0","0","0","0","0","0","0","0","0","0","0","759","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","40","35","0","0","0","0","0","0","0","70" +"33442","-1","A pellet rifle for target shooting, useless in actual combat.","","","","Target Rifle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33446","-1","","","","","Girdle of Stromgarde's Hope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43619","218096","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","23","26","16","0","0","0","0","0","0","0","70" +"33453","-1","","","","","Hood of Hexing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40605","203028","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","133","32767","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","18","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","24","33","31","24","0","0","0","0","0","0","70" +"33455","-1","","","","","Brewfest Prize Ticket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33463","-1","","","","","Hood of the Third Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42080","210404","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","181","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","36","40","0","0","0","0","0","0","0","0","70" +"33464","-1","","","","","Hex Lord's Voodoo Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59168","295842","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","32767","0","0","0","0","0","0","0","0","0","0","0","0","700","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","17","30","30","0","0","0","0","0","0","0","70" +"33465","-1","","","","","Staff of Primal Fury","0.4","0","-54.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163113","815566","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","132","32767","0","0","298","0","0","0","0","448","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","49","70","0","0","0","0","0","0","0","0","70" +"33466","-1","","","","","Loop of Cursed Bones","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","27","19","20","0","0","0","0","0","0","0","70" +"33467","-1","","","","","Blade of Twisted Visions","0.6","0","-57.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","136956","684782","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","138","-1","0","0","124","0","0","0","0","231","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","33","21","21","0","0","0","0","0","0","0","70" +"33468","-1","","","","","Dark Blessing","0.6","0","-57.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","137469","687347","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","138","32767","0","0","131","0","0","0","0","244","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","30","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","19","30","0","0","0","0","0","0","0","0","70" +"33469","-1","","","","","Hauberk of the Empire's Champion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80013","400067","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","32767","0","0","0","0","0","0","0","0","0","0","0","0","934","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","30","40","40","0","0","0","0","0","0","0","70" +"33471","-1","Mildly uncomfortable for non-trolls.","","","","Two-toed Sandals","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38338","191693","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","154","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","30","0","0","0","0","0","0","0","0","70" +"33473","-1","","","","","Chestguard of the Warlord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94727","473638","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","133","1535","0","0","0","0","0","0","0","0","0","0","0","0","1668","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","1","0","0","1","0","7","12","13","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","60","27","40","26","0","0","0","0","0","0","70" +"33474","-1","","","","","Ancient Amani Longbow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101161","505805","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","132","-1","0","0","181","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","0","0","0","0","0","0","0","0","0","0","70" +"33476","-1","","","","","Cleaver of the Unforgiving","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","141544","707724","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","1600","0","0","0","138","-1","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","3","1","0","0","1","0","7","14","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","31","20","12","0","0","0","0","0","0","0","70" +"33478","-1","","","","","Jin'rohk, The Great Apocalypse","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","178195","890979","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","138","-1","0","0","380","0","0","0","0","570","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","49","45","0","0","0","0","0","0","0","0","70" +"33479","-1","","","","","Grimgrin Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51857","259287","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","133","1535","0","0","0","0","0","0","0","0","0","0","0","0","341","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","48","24","0","0","0","0","0","0","0","70" +"33480","-1","","","","","Cord of Braided Troll Hair","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24892","124461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","121","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","34","0","0","0","0","0","0","0","0","70" +"33481","-1","","","","","Pauldrons of Stone Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65461","327309","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","3017","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1206","0","0","0","0","0","0","0","254","0","0","0","4","4","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","20","28","0","0","0","0","0","0","0","70" +"33482","-1","","","","","Cobra-Lash Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55765","278827","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","33","37","0","0","0","0","0","0","0","0","70" +"33483","-1","","","","","Life-step Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","23","22","0","0","0","0","0","0","0","70" +"33484","-1","Approximately priceless.","","","","Dory's Embrace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","34","20","20","0","0","0","0","0","0","0","70" +"33489","-1","","","","","Mantle of Ill Intent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38619","193095","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","161","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","28","24","0","0","0","0","0","0","0","70" +"33490","-1","","","","","Staff of Dark Mending","0.4","0","-54.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","166140","830701","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","3200","0","0","0","132","-1","0","0","318","0","0","0","0","477","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","2","2","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","46","47","0","0","0","0","0","0","0","0","70" +"33491","-1","","","","","Tuskbreaker","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100053","500267","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2900","0","0","0","132","-1","0","0","175","0","0","0","0","326","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","36","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","18","0","0","0","0","0","0","0","0","0","70" +"33492","-1","You know this blade...","","","","Trollbane","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","167354","836772","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","3600","0","0","0","132","-1","0","0","358","0","0","0","0","537","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","4","0","1","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","39","58","0","0","0","0","0","0","0","0","70" +"33493","-1","","","","","Umbral Shiv","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134375","671879","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","1800","0","0","0","132","32767","0","0","137","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","0","3","1","0","0","1","0","7","31","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","13","12","0","0","0","0","0","0","0","70" +"33494","-1","","","","","Amani Divining Staff","0.4","0","-54.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","168585","842926","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","3200","0","0","0","132","-1","0","0","318","0","0","0","0","477","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","58","47","31","0","0","0","0","0","0","0","70" +"33495","-1","","","","","Rage","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","135360","676802","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","2600","0","0","0","132","-1","0","0","174","0","0","0","0","323","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","7","1","0","0","1","0","32","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","13","18","20","0","0","0","0","0","0","0","70" +"33496","-1","","","","","Signet of Primal Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","28","0","0","0","0","0","0","0","0","70" +"33497","-1","","","","","Mana Attuned Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","18","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","18","19","0","0","0","0","0","0","0","70" +"33498","-1","","","","","Signet of the Quiet Forest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","17","0","0","0","0","0","0","0","0","70" +"33499","-1","","","","","Signet of the Last Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","45","28","0","0","0","0","0","0","0","0","70" +"33500","-1","","","","","Signet of Eternal Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","54","37","0","0","0","0","0","0","0","0","70" +"33501","-1","","","","","Bloodthirster's Wargreaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1406","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","4","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","46","38","43","0","0","0","0","0","0","0","70" +"33502","-1","","","","","Libram of Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33503","-1","","","","","Libram of Divine Judgement","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33504","-1","","","","","Libram of Divine Purpose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33505","-1","","","","","Totem of Living Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33506","-1","","","","","Skycall Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33507","-1","","","","","Stonebreaker's Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33508","-1","","","","","Idol of Budding Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33509","-1","","","","","Idol of Terror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33510","-1","","","","","Idol of the Unseen Moon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33512","-1","","","","","Furious Deathgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1005","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","37","25","0","0","0","0","0","0","0","70" +"33513","-1","","","","","Eternium Rage-shackles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","32","32","0","0","0","0","0","0","0","0","70" +"33514","-1","","","","","Pauldrons of Gruesome Fate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","4","31","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","42","23","33","0","0","0","0","0","0","0","70" +"33515","-1","","","","","Unwavering Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1406","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","73","22","30","0","0","0","0","0","0","0","70" +"33516","-1","","","","","Bracers of the Ancient Phalanx","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","12","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","45","23","22","0","0","0","0","0","0","0","70" +"33517","-1","","","","","Bonefist Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1005","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","7","14","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","51","30","21","0","0","0","0","0","0","0","70" +"33518","-1","","","","","High Justicar's Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1406","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","33","37","23","0","0","0","0","0","0","0","70" +"33519","-1","","","","","Handguards of the Templar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","1005","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","28","25","0","0","0","0","0","0","0","70" +"33520","-1","","","","","Vambraces of the Naaru","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","703","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","25","0","0","0","0","0","0","0","0","70" +"33521","-1","","","","","Monster - Mace2H, Maul B02 SilverPurple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","2","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33522","-1","","","","","Chestguard of the Stoic Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1607","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","60","22","38","0","0","0","0","0","0","0","70" +"33523","-1","","","","","Sabatons of the Righteous Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","1105","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","7","12","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","18","18","0","0","0","0","0","0","0","70" +"33524","-1","","","","","Girdle of the Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","904","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","13","12","18","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","27","11","18","0","0","0","0","0","0","70" +"33527","-1","","","","","Shifting Camouflage Pants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","34","45","30","0","0","0","0","0","0","0","70" +"33528","-1","","","","","Gauntlets of Sniping","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","20","27","20","19","0","0","0","0","0","0","70" +"33529","-1","","","","","Steadying Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","21","19","0","0","0","0","0","0","0","70" +"33530","-1","","","","","Natural Life Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","38","17","0","0","0","0","0","0","0","70" +"33531","-1","","","","","Polished Waterscale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","22","0","0","0","0","0","0","0","0","70" +"33532","-1","","","","","Gleaming Earthen Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","20","0","0","0","0","0","0","0","0","70" +"33533","-1","","","","","Avalanche Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","80412","402062","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","787","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","31","40","30","0","0","0","0","0","0","0","70" +"33534","-1","","","","","Grips of Nature's Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","562","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","27","21","0","0","0","0","0","0","0","70" +"33535","-1","","","","","Earthquake Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","394","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","21","0","0","0","0","0","0","0","0","70" +"33536","-1","","","","","Stormwrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","506","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","26","22","13","0","0","0","0","0","0","70" +"33537","-1","","","","","Treads of Booming Thunder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","33","14","0","0","0","0","0","0","0","70" +"33538","-1","","","","","Shallow-grave Trousers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","46","30","0","0","0","0","0","0","0","70" +"33539","-1","","","","","Trickster's Stickyfingers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","28","25","0","0","0","0","0","0","0","70" +"33540","-1","","","","","Master Assassin Wristwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","2902","0","0","0","0","0","0","0","0","0","0","0","0","128","1535","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","17","22","18","0","0","0","0","0","0","0","70" +"33542","-1","","","","","Shaman Testing Axe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122659","613296","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","125","-1","0","0","167","0","0","0","0","312","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33543","-1","","","","","Shaman Testing Dagger","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","123127","615638","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","125","32767","0","0","132","0","0","0","0","199","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33552","-1","","","","","Pants of Splendid Recovery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","40","31","0","0","0","0","0","0","0","70" +"33557","-1","","","","","Gargon's Bracers of Peaceful Slumber","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3151","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","25","12","17","0","0","0","0","0","0","0","70" +"33559","-1","","","","","Starfire Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","23","22","0","0","0","0","0","0","0","70" +"33566","-1","","","","","Blessed Elunite Coverings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","3","2","4","0","8","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","33","22","0","0","0","0","0","0","0","70" +"33570","-1","Placeholder Item","","","","TEMP - Dwarf Loot 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33572","-1","Placeholder Item","","","","TEMP - Dwarf Loot 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33573","-1","Placeholder Item","","","","TEMP - Dwarf Loot 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33574","-1","Placeholder Item","","","","TEMP - Dwarf Loot 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33577","-1","","","","","Moon-walkers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2880","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","28","20","0","0","0","0","0","0","0","70" +"33578","-1","","","","","Armwraps of the Kaldorei Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","22","20","0","0","0","0","0","0","0","70" +"33579","-1","","","","","Vestments of Hibernation","0","0","280","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","46","45","36","13","0","0","0","0","0","0","70" +"33580","-1","","","","","Band of the Swift Paw","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","21","22","31","10","0","0","0","0","0","0","70" +"33582","-1","","","","","Footwraps of Wild Encroachment","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","60","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","278","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","29","29","28","19","0","0","0","0","0","0","70" +"33583","-1","","","","","Waistguard of the Great Beast","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","227","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","1","0","4","3","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","28","30","18","0","0","0","0","0","0","70" +"33584","-1","","","","","Pantaloons of Arcane Annihilation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","34","35","45","0","0","0","0","0","0","0","70" +"33585","-1","","","","","Achromic Trousers of the Naaru","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","188","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","34","35","45","0","0","0","0","0","0","0","70" +"33586","-1","","","","","Studious Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","22","25","0","0","0","0","0","0","0","70" +"33587","-1","","","","","Light-Blessed Bonds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","2974","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","135","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","21","22","25","0","0","0","0","0","0","0","70" +"33588","-1","","","","","Runed Spell-cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","20","18","25","0","0","0","0","0","0","0","70" +"33589","-1","","","","","Wristguards of Tranquil Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","17","16","17","0","0","0","0","0","0","70" +"33590","-1","","","","","Cloak of Fiends","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39763","198819","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","20","22","25","0","0","0","0","0","0","0","70" +"33591","-1","","","","","Shadowcaster's Drape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39907","199536","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","30","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","20","22","25","0","0","0","0","0","0","0","70" +"33592","-1","","","","","Cloak of Ancient Rituals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37194","185974","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","7","30","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","20","22","25","0","0","0","0","0","0","0","70" +"33593","-1","","","","","Slikk's Cloak of Placation","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","108","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","12","7","13","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","16","37","25","0","0","0","0","0","0","0","70" +"33600","-1","Placeholder Item","","","","TEMP - Troll Loot 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33601","-1","Placeholder Item","","","","TEMP - Troll Loot 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33602","-1","Placeholder Item","","","","TEMP - Troll Loot 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33603","-1","Placeholder Item","","","","TEMP - Troll Loot 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33622","-1","Teaches you how to cut a Relentless Earthstorm Diamond.","","","","Design: Relentless Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","933","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33623","-1","Placeholder Item","","","","TEMP - Orc Loot 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33624","-1","Placeholder Item","","","","TEMP - Orc Loot 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33625","-1","Placeholder Item","","","","TEMP - Orc Loot 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33626","-1","Placeholder Item","","","","TEMP - Orc Loot 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33633","-1","Only fits in a meta gem slot.","","","","Forceful Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","721","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33640","-1","","","","","Fury","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","131408","657043","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","2600","0","0","0","132","-1","0","0","174","0","0","0","0","323","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","7","1","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","20","20","0","0","0","0","0","0","0","0","70" +"33661","-1","","","","","Vengeful Gladiator's Barrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","6132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","31","27","21","0","0","0","0","0","0","0","70" +"33662","-1","","","","","Vengeful Gladiator's Bonecracker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","-1","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33663","-1","","","","","Vengeful Gladiator's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","146","-1","0","0","386","0","0","0","0","580","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","46","46","33","15","0","0","0","0","0","70" +"33664","-1","","","","","Vengeful Gladiator's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","586","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","5","4","0","63","27","25","21","21","12","0","0","0","0","70" +"33665","-1","","","","","Vengeful Gladiator's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","33","19","21","15","0","0","0","0","0","70" +"33666","-1","","","","","Vengeful Gladiator's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","586","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","1","4","0","61","33","26","22","22","12","0","0","0","0","70" +"33667","-1","","","","","Vengeful Gladiator's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","7","4","0","64","34","25","33","18","12","0","0","0","0","70" +"33668","-1","","","","","Vengeful Gladiator's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","586","0","0","0","0","0","0","0","146","4","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","35","16","21","12","0","0","0","0","0","70" +"33669","-1","","","","","Vengeful Gladiator's Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","187","0","0","0","0","349","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33670","-1","","","","","Vengeful Gladiator's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","146","-1","0","0","386","0","0","0","0","580","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","46","33","15","0","0","0","0","0","0","70" +"33671","-1","","","","","Vengeful Gladiator's Dragonhide Gloves","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","31","-1","-1","-1","-1","0","0","0","0","10","4","0","44","31","21","32","22","9","0","0","0","0","70" +"33672","-1","","","","","Vengeful Gladiator's Dragonhide Helm","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","584","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","1","4","0","58","32","23","31","25","12","27","0","0","0","70" +"33673","-1","","","","","Vengeful Gladiator's Dragonhide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","7","4","0","55","36","30","37","29","12","13","0","0","0","70" +"33674","-1","","","","","Vengeful Gladiator's Dragonhide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","584","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","32","-1","-1","-1","-1","0","0","0","0","3","4","0","43","30","16","30","21","17","0","0","0","0","70" +"33675","-1","","","","","Vengeful Gladiator's Dragonhide Tunic","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","584","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","5","4","0","54","30","22","31","26","12","19","0","0","0","70" +"33676","-1","","","","","Vengeful Gladiator's Dreadweave Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","51","28","21","0","0","0","0","0","0","0","70" +"33677","-1","","","","","Vengeful Gladiator's Dreadweave Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","568","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","73","25","33","0","0","0","0","0","0","0","70" +"33678","-1","","","","","Vengeful Gladiator's Dreadweave Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","76","32","33","0","0","0","0","0","0","0","70" +"33679","-1","","","","","Vengeful Gladiator's Dreadweave Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","568","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","13","21","16","0","0","0","0","0","0","70" +"33680","-1","","","","","Vengeful Gladiator's Dreadweave Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","568","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","75","21","24","0","0","0","0","0","0","0","70" +"33681","-1","","","","","Vengeful Gladiator's Endgame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","31","21","27","0","0","0","0","0","0","0","70" +"33682","-1","","","","","Vengeful Gladiator's Felweave Amice","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","615","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","50","13","23","17","0","0","0","0","0","0","70" +"33683","-1","","","","","Vengeful Gladiator's Felweave Cowl","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","615","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","15","22","33","0","0","0","0","0","0","70" +"33684","-1","","","","","Vengeful Gladiator's Felweave Handguards","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","50","18","22","23","0","0","0","0","0","0","70" +"33685","-1","","","","","Vengeful Gladiator's Felweave Raiment","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","615","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","61","15","33","26","0","0","0","0","0","0","70" +"33686","-1","","","","","Vengeful Gladiator's Felweave Trousers","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","146","256","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","67","24","33","30","0","0","0","0","0","0","70" +"33687","-1","","","","","Vengeful Gladiator's Gavel","0.6","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","146","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","35","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","30","20","17","18","0","0","0","0","0","0","70" +"33688","-1","","","","","Vengeful Gladiator's Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","146","-1","0","0","386","0","0","0","0","580","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","46","46","33","15","0","0","0","0","0","70" +"33689","-1","","","","","Vengeful Gladiator's Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","-1","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33690","-1","","","","","Vengeful Gladiator's Kodohide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","43","34","21","0","0","0","0","0","0","0","70" +"33691","-1","","","","","Vengeful Gladiator's Kodohide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","685","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","58","39","29","0","0","0","0","0","0","0","70" +"33692","-1","","","","","Vengeful Gladiator's Kodohide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","58","44","31","0","0","0","0","0","0","0","70" +"33693","-1","","","","","Vengeful Gladiator's Kodohide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","685","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","24","20","0","0","0","0","0","0","0","70" +"33694","-1","","","","","Vengeful Gladiator's Kodohide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","685","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","55","35","27","0","0","0","0","0","0","0","70" +"33695","-1","","","","","Vengeful Gladiator's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","582","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","64","31","38","31","0","0","0","0","0","0","70" +"33696","-1","","","","","Vengeful Gladiator's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","44","30","29","19","0","0","0","0","0","0","70" +"33697","-1","","","","","Vengeful Gladiator's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","582","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","70","28","28","33","0","0","0","0","0","0","70" +"33698","-1","","","","","Vengeful Gladiator's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","70","29","39","35","0","0","0","0","0","0","70" +"33699","-1","","","","","Vengeful Gladiator's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","582","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","44","23","28","22","0","0","0","0","0","0","70" +"33700","-1","","","","","Vengeful Gladiator's Leather Gloves","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","49","33","24","19","0","0","0","0","0","0","70" +"33701","-1","","","","","Vengeful Gladiator's Leather Helm","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","577","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","65","31","25","21","12","0","0","0","0","0","70" +"33702","-1","","","","","Vengeful Gladiator's Leather Legguards","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","67","35","25","40","12","0","0","0","0","0","70" +"33703","-1","","","","","Vengeful Gladiator's Leather Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","577","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","34","27","25","0","0","0","0","0","0","70" +"33704","-1","","","","","Vengeful Gladiator's Leather Tunic","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","577","0","0","0","0","0","0","0","146","8","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","64","31","25","17","12","0","0","0","0","0","70" +"33705","-1","","","","","Vengeful Gladiator's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","-1","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33706","-1","","","","","Vengeful Gladiator's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","578","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","64","27","30","31","12","0","0","0","0","0","70" +"33707","-1","","","","","Vengeful Gladiator's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","51","33","32","22","0","0","0","0","0","0","70" +"33708","-1","","","","","Vengeful Gladiator's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","578","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","34","33","33","12","0","0","0","0","0","70" +"33709","-1","","","","","Vengeful Gladiator's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","31","-1","-1","-1","-1","0","0","0","0","7","4","0","67","38","36","31","33","12","0","0","0","0","70" +"33710","-1","","","","","Vengeful Gladiator's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","578","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","52","25","27","21","0","0","0","0","0","0","70" +"33711","-1","","","","","Vengeful Gladiator's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","580","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","54","28","29","28","0","0","0","0","0","0","70" +"33712","-1","","","","","Vengeful Gladiator's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","23","28","23","0","0","0","0","0","0","70" +"33713","-1","","","","","Vengeful Gladiator's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","580","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","23","26","32","0","0","0","0","0","0","70" +"33714","-1","","","","","Vengeful Gladiator's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","64","33","29","33","0","0","0","0","0","0","70" +"33715","-1","","","","","Vengeful Gladiator's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","580","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","22","22","21","0","0","0","0","0","0","70" +"33716","-1","","","","","Vengeful Gladiator's Staff","0.4","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","146","-1","0","0","214","0","0","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","46","46","33","22","0","0","0","0","0","70" +"33717","-1","","","","","Vengeful Gladiator's Mooncloth Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","49","23","25","0","0","0","0","0","0","0","70" +"33718","-1","","","","","Vengeful Gladiator's Mooncloth Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","687","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","73","23","33","0","0","0","0","0","0","0","70" +"33719","-1","","","","","Vengeful Gladiator's Mooncloth Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","70","28","31","0","0","0","0","0","0","0","70" +"33720","-1","","","","","Vengeful Gladiator's Mooncloth Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","687","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","21","25","0","0","0","0","0","0","0","70" +"33721","-1","","","","","Vengeful Gladiator's Mooncloth Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","687","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","61","27","28","0","0","0","0","0","0","0","70" +"33722","-1","","","","","Vengeful Gladiator's Ornamented Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","690","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","58","37","36","28","0","0","0","0","0","0","70" +"33723","-1","","","","","Vengeful Gladiator's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","44","29","28","18","0","0","0","0","0","0","70" +"33724","-1","","","","","Vengeful Gladiator's Ornamented Headcover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","690","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","64","34","26","32","0","0","0","0","0","0","70" +"33725","-1","","","","","Vengeful Gladiator's Ornamented Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","62","39","40","35","0","0","0","0","0","0","70" +"33726","-1","","","","","Vengeful Gladiator's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","690","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","40","27","28","23","0","0","0","0","0","0","70" +"33727","-1","","","","","Vengeful Gladiator's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","146","-1","0","0","236","0","0","0","0","354","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","47","42","0","0","0","0","0","0","0","70" +"33728","-1","","","","","Vengeful Gladiator's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","67","39","39","24","12","0","0","0","0","0","70" +"33729","-1","","","","","Vengeful Gladiator's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","37","32","24","0","0","0","0","0","0","70" +"33730","-1","","","","","Vengeful Gladiator's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","61","39","35","25","12","0","0","0","0","0","70" +"33731","-1","","","","","Vengeful Gladiator's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","70","51","47","22","12","0","0","0","0","0","70" +"33732","-1","","","","","Vengeful Gladiator's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","3205","0","0","0","0","567","0","0","0","0","0","0","0","146","1","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","57","33","30","20","0","0","0","0","0","0","70" +"33733","-1","","","","","Vengeful Gladiator's Pummeler","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","187","0","0","0","0","349","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33734","-1","","","","","Vengeful Gladiator's Quickblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","-1","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33735","-1","","","","","Vengeful Gladiator's Redoubt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","6132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","31","27","21","0","0","0","0","0","0","0","70" +"33736","-1","","","","","Vengeful Gladiator's Reprieve","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","31","21","27","0","0","0","0","0","0","0","70" +"33737","-1","","","","","Vengeful Gladiator's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","187","0","0","0","0","349","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33738","-1","","","","","Vengeful Gladiator's Ringmail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","686","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","1022","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","54","30","30","26","0","0","0","0","0","0","70" +"33739","-1","","","","","Vengeful Gladiator's Ringmail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","639","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","47","23","25","22","0","0","0","0","0","0","70" +"33740","-1","","","","","Vengeful Gladiator's Ringmail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","686","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","830","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","67","28","25","33","0","0","0","0","0","0","70" +"33741","-1","","","","","Vengeful Gladiator's Ringmail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","894","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","64","33","29","33","0","0","0","0","0","0","70" +"33742","-1","","","","","Vengeful Gladiator's Ringmail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","686","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","766","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","23","20","21","0","0","0","0","0","0","70" +"33743","-1","","","","","Vengeful Gladiator's Salvation","0.6","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","146","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","35","23","21","0","0","0","0","0","0","0","70" +"33744","-1","","","","","Vengeful Gladiator's Satin Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","48","22","25","0","0","0","0","0","0","0","70" +"33745","-1","","","","","Vengeful Gladiator's Satin Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","581","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","73","21","32","0","0","0","0","0","0","0","70" +"33746","-1","","","","","Vengeful Gladiator's Satin Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","73","32","34","0","0","0","0","0","0","0","70" +"33747","-1","","","","","Vengeful Gladiator's Satin Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","581","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","22","23","0","0","0","0","0","0","0","70" +"33748","-1","","","","","Vengeful Gladiator's Satin Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","581","0","0","0","0","0","0","0","146","16","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","63","27","31","0","0","0","0","0","0","0","70" +"33749","-1","","","","","Vengeful Gladiator's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","583","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1825","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","5","4","0","54","27","36","41","36","12","0","0","0","0","70" +"33750","-1","","","","","Vengeful Gladiator's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1141","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","22","26","40","26","0","0","0","0","0","70" +"33751","-1","","","","","Vengeful Gladiator's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","583","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1483","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","1","4","0","54","27","28","47","36","12","0","0","0","0","70" +"33752","-1","","","","","Vengeful Gladiator's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1597","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","7","4","0","66","23","36","54","36","12","0","0","0","0","70" +"33753","-1","","","","","Vengeful Gladiator's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","583","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","39","20","26","33","26","0","0","0","0","0","70" +"33754","-1","","","","","Vengeful Gladiator's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","146","-1","0","0","148","0","0","0","0","223","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33755","-1","","","","","Vengeful Gladiator's Shield Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","6132","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","55","31","0","0","0","0","0","0","0","0","70" +"33756","-1","","","","","Vengeful Gladiator's Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","146","-1","0","0","101","0","0","0","0","188","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33757","-1","","","","","Vengeful Gladiator's Silk Amice","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","579","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","50","13","23","17","0","0","0","0","0","0","70" +"33758","-1","","","","","Vengeful Gladiator's Silk Cowl","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","579","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","59","23","24","33","0","0","0","0","0","0","70" +"33759","-1","","","","","Vengeful Gladiator's Silk Handguards","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","153","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","50","18","22","23","0","0","0","0","0","0","70" +"33760","-1","","","","","Vengeful Gladiator's Silk Raiment","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","579","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","244","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","61","15","33","26","0","0","0","0","0","0","70" +"33761","-1","","","","","Vengeful Gladiator's Silk Trousers","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","146","128","0","0","0","0","0","0","0","0","0","0","0","0","214","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","59","34","33","30","0","0","0","0","0","0","70" +"33762","-1","","","","","Vengeful Gladiator's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","214","0","0","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33763","-1","","","","","Vengeful Gladiator's Spellblade","0.6","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","146","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","30","20","18","17","0","0","0","0","0","0","70" +"33764","-1","","","","","Vengeful Gladiator's Touch of Defeat","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","146","-1","0","0","252","0","0","0","0","468","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","18","14","14","0","0","0","0","0","0","0","70" +"33765","-1","","","","","Vengeful Gladiator's War Edge","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","146","-1","0","0","141","0","0","0","0","212","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","24","17","12","0","0","0","0","0","0","0","70" +"33766","-1","","","","","Vengeful Gladiator's War Staff","0.4","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","146","-1","0","0","214","0","0","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","0","46","29","46","0","0","0","0","0","70" +"33767","-1","","","","","Vengeful Gladiator's Wyrmhide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","287","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","43","24","22","12","0","0","0","0","0","0","70" +"33768","-1","","","","","Vengeful Gladiator's Wyrmhide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","585","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","373","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","58","30","28","17","0","0","0","0","0","0","70" +"33769","-1","","","","","Vengeful Gladiator's Wyrmhide Legguards","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","401","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","58","35","31","22","0","0","0","0","0","0","70" +"33770","-1","","","","","Vengeful Gladiator's Wyrmhide Spaulders","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","585","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","344","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","43","20","22","8","0","0","0","0","0","0","70" +"33771","-1","","","","","Vengeful Gladiator's Wyrmhide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","585","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","459","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","55","28","27","13","0","0","0","0","0","0","70" +"33772","-1","","","","","Testing Gladiator's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","0","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","1369","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","44","23","28","22","0","0","0","0","0","0","70" +"33775","-1","","","","","[PH] Creepy Rag Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","138","555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33776","-1","","","","","[PH] Tiny Creepy Rag Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","138","555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33777","-1","","","","","[PH] Huge Creepy Rag Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","138","555","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33782","-1","Matches a Yellow or Blue Socket.","","","","Steady Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","741","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33783","-1","Teaches you how to cut a Steady Talasite.","","","","Design: Steady Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33784","-1","The rune has been broken into five pieces.","","","","Darkrune Fragment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33785","-1","Placeholder Item","","","","TEMP - Gnome Loot 1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33786","-1","Placeholder Item","","","","TEMP - Gnome Loot 2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33787","-1","Placeholder Item","","","","TEMP - Gnome Loot 3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33788","-1","Placeholder Item","","","","TEMP - Gnome Loot 4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33789","-1","","","","","Monster - Shield, Zul'gurub","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33790","-1","","","","","Monster - Axe, Horde B03 Copper (Thrown)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33791","-1","","","","","Heavy Copper Longsword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","316","1582","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","11","-1","0","0","10","0","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","1","0","0","0","0","0","0","0","0","0","6" +"33792","-1","Teaches you how to make a Heavy Copper Longsword.","","","","Plans: Heavy Copper Longsword","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","164","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33793","-1","","","","","Monster - Mace, Zul'Gurub A01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33795","-1","","","","","Monster - Staff, Outland Raid D06, Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33797","-1","","","","","Portable Brewfest Keg","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33798","-1","","","","","Monster - Staff, Zul'Aman D02 Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33801","-1","","","","","Vengeful Gladiator's Mutilator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","146","-1","0","0","130","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"33803","-1","","","","","Adamantite Stinger","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","2","1000","100","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","118","-1","0","0","43","0","0","0","0","43","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","3","0","0","0","0","0","0","0","0","0","0","0","62" +"33804","-1","Teaches you how to make an Adamantite Arrow Maker.","","","","Schematic: Adamantite Arrow Maker","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","202","67","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33805","-1","","","","","Shadowhunter's Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55765","278827","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","619","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","26","26","25","0","0","0","0","0","0","0","70" +"33807","-1","A little ornate for a fel orc. It was probably a gift from his master.","","","","Vazruden's Horn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33808","-1","","","","","The Horseman's Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","32768","24580","0","0","0","100","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","1129","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","46","30","0","0","0","0","0","0","0","70" +"33809","-1","","","","","Amani War Bear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33810","-1","","","","","Amani Mask of Death","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","1306","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","6","0","0","1","0","4","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","46","51","33","0","0","0","0","0","0","0","70" +"33811","-1","","","","","Vindicator's Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","35","35","30","0","0","0","0","0","0","70" +"33812","-1","","","","","Vindicator's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","35","35","30","0","0","0","0","0","0","70" +"33813","-1","","","","","Vindicator's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","141","3","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","36","25","21","17","0","0","0","0","0","0","70" +"33814","-1","The feathers are a bit ruffled from the fight, but still in top shape.","","","","Keli'dan's Feathered Stave","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33815","-1","Forged from the strongest metals, it bears the mark of the deceased warchief.","","","","Bladefist's Seal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33816","-1","","","","","Toothy's Bucket","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33818","-1","","","","","Muckbreath's Bucket","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33820","-1","","","","","Weather-Beaten Fishing Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25490","127451","1","1","1","64","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","40","40","0","0","0","0","0","0","0","0","0" +"33821","-1","One of three hearts, it kind of looks like an artichoke.","","","","The Heart of Quagmirran","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33823","-1","","","","","Bloodfin Catfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33824","-1","","","","","Crescent-Tail Skullfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33825","-1","","","","","Skullfish Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33826","-1","It pulses with life.","","","","Black Stalker Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33827","-1","Written in the water-proofed alien script of the naga, this volume is thousands of pages long.","","","","The Warlord's Treatise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33828","-1","","","","","Tome of Diabolic Remedy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33829","-1","","","","","Hex Shrunken Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33830","-1","","","","","Ancient Aqir Artifact","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","14","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","45","0","0","0","0","0","0","0","0","0","70" +"33831","-1","","","","","Berserker's Call","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","91160","364641","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33832","-1","","","","","Battlemaster's Determination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33833","-1","This certainly looks as if it would hurt.","","","","Nazan's Riding Crop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33834","-1","The plumes are a display of beautiful autumnal hues.","","","","The Headfeathers of Ikiss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33835","-1","This is the source of Nexus-Prince Shaffar's magic. Too bad that you can't figure out how to use it.","","","","Shaffar's Wondrous Amulet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33836","-1","It's hard to believe that this bauble holds the spirits of many victims. Nevertheless, you can sense them in turmoil within.","","","","The Exarch's Soul Gem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33837","-1","","","","","Cooking Pot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","275","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33838","-1","","","","","Giant Kaliri Wing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33839","-1","Looks like revenge is on the menu tonight! Kaliri never tasted so good.","","","","Kaliri Stew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33840","-1","The professor was right, Murmur's 'whisper' does have a physical manifestation!","","","","Murmur's Whisper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33841","-1","","","","","Vengeful Gladiator's Idol of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33842","-1","","","","","Vengeful Gladiator's Libram of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33843","-1","","","","","Vengeful Gladiator's Totem of the Third Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33844","-1","A warning label reads: Do Not Shoot.","","","","Barrel of Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87","350","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33846","-1","","","","","Ruined Fishing Net","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","463","1855","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33847","-1","It'll look fine mounted just so long as the wind trader's customer has plenty of wall space.","","","","Epoch Hunter's Head","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33848","-1","Smells delicious!","","","","Demon Broiled Surprise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33849","-1","","","","","Mana Berry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33850","-1","It's not made of chicken, but it's definitely good for the soul.","","","","Spiritual Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33851","-1","Can only be used at the Ancestral Grounds in Nagrand.","","","","Cooking Pot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","275","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33852","-1","Requires the smoldering corpse of an Abyssal Flamebringer.","","","","Cooking Pot","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","275","185","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33853","-1","","","","","Vindicator's Band of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","22","15","0","0","0","0","0","0","0","70" +"33854","-1","Maybe it belonged to an animal, and maybe it didn't.","","","","Unidentified Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","563","2255","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33855","-1","This ring has seen better days.","","","","Tarnished Silver Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3750","15000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33856","-1","Blood and water stains have made the list unreadable.","","","","List of Goods","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","33","135","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"33857","-1","Mostly meat and whatever else was sitting around.","","","","Crate of Meat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113","455","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33858","-1","The sands are falling upward!","","","","Aeonus's Hourglass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33859","-1","Hard to believe that the druids think they can regrow such a massive ancient from such a small twig.","","","","Warp Splinter Clipping","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33860","-1","So this is what he used to appear all over the place!","","","","Pathaleon's Projector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33861","-1","Indeed, the language written upon the scroll is illegible. In fact, it hurts your brain to even look upon it!","","","","The Scroll of Skyriss","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33862","-1","","","","","Brewfest Regalia","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33863","-1","","","","","Brewfest Dress","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33864","-1","","","","","Brown Brewfest Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33865","-1","It be yer trusty anti-hexxor', mon!","","","","Amani Hex Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","400","1600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33866","-1","","","","","Stormchops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","550","2200","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33867","-1","","","","","Broiled Bloodfin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","8","160","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33868","-1","","","","","Brewfest Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33869","-1","Teaches you how to cook Broiled Bloodfin.","","","","Recipe: Broiled Bloodfin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33870","-1","Teaches you how to cook Skullfish Soup.","","","","Recipe: Skullfish Soup","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33871","-1","Teaches you how to cook Stormchops.","","","","Recipe: Stormchops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33872","-1","","","","","Spicy Hot Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"33873","-1","Teaches you how to cook Spicy Hot Talbuk.","","","","Recipe: Spicy Hot Talbuk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33874","-1","Pet tested, hunter approved.","","","","Kibler's Bits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150","600","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33875","-1","Teaches you how to cook Kibler's Bits.","","","","Recipe: Kibler's Bits","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","185","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33876","-1","","","","","Vindicator's Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","68","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","23","13","11","13","0","0","0","0","0","70" +"33877","-1","","","","","Vindicator's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","48","33","21","18","23","0","0","0","0","0","70" +"33878","-1","","","","","Vindicator's Chain Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","48","33","21","18","23","0","0","0","0","0","70" +"33879","-1","","","","","Vindicator's Dragonhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","32","-1","-1","-1","-1","0","5","0","0","6","4","0","42","30","29","26","20","21","0","0","0","0","70" +"33880","-1","","","","","Vindicator's Dragonhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","32","-1","-1","-1","-1","0","0","0","0","8","4","0","42","30","29","26","20","21","0","0","0","0","70" +"33881","-1","","","","","Vindicator's Dragonhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","1032","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","4","3","35","32","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","22","22","17","21","0","0","0","0","0","70" +"33882","-1","","","","","Vindicator's Dreadweave Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","32","31","0","0","0","0","0","0","0","70" +"33883","-1","","","","","Vindicator's Dreadweave Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","141","400","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","34","20","17","0","0","0","0","0","0","0","70" +"33884","-1","","","","","Vindicator's Dreadweave Stalkers","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","32","31","0","0","0","0","0","0","0","70" +"33885","-1","","","","","Vindicator's Kodohide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","26","0","0","0","0","0","0","0","70" +"33886","-1","","","","","Vindicator's Kodohide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","26","0","0","0","0","0","0","0","70" +"33887","-1","","","","","Vindicator's Kodohide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","1032","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","22","18","0","0","0","0","0","0","0","70" +"33888","-1","","","","","Vindicator's Lamellar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","30","26","0","0","0","0","0","0","70" +"33889","-1","","","","","Vindicator's Lamellar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","3","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","20","17","15","0","0","0","0","0","0","70" +"33890","-1","","","","","Vindicator's Lamellar Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","30","26","0","0","0","0","0","0","70" +"33891","-1","","","","","Vindicator's Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","33","19","30","0","0","0","0","0","0","70" +"33892","-1","","","","","Vindicator's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","33","19","30","0","0","0","0","0","0","70" +"33893","-1","","","","","Vindicator's Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","1032","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","25","12","15","0","0","0","0","0","0","70" +"33894","-1","","","","","Vindicator's Linked Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","68","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","25","12","21","14","0","0","0","0","0","70" +"33895","-1","","","","","Vindicator's Linked Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","34","21","33","23","0","0","0","0","0","70" +"33896","-1","","","","","Vindicator's Linked Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","33","21","34","23","0","0","0","0","0","70" +"33897","-1","","","","","Vindicator's Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","68","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","17","15","21","0","0","0","0","0","0","70" +"33898","-1","","","","","Vindicator's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","27","29","0","0","0","0","0","0","70" +"33899","-1","","","","","Vindicator's Mail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","27","29","0","0","0","0","0","0","70" +"33900","-1","","","","","Vindicator's Mooncloth Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","31","31","0","0","0","0","0","0","0","70" +"33901","-1","","","","","Vindicator's Mooncloth Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","400","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","34","20","17","0","0","0","0","0","0","0","70" +"33902","-1","","","","","Vindicator's Mooncloth Slippers","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","31","31","0","0","0","0","0","0","0","70" +"33903","-1","","","","","Vindicator's Ornamented Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","30","26","0","0","0","0","0","0","70" +"33904","-1","","","","","Vindicator's Ornamented Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","3","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","20","17","15","0","0","0","0","0","0","70" +"33905","-1","","","","","Vindicator's Ornamented Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","30","26","0","0","0","0","0","0","70" +"33906","-1","","","","","Vindicator's Ringmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","68","0","0","0","0","0","0","0","0","0","0","0","0","432","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","17","15","21","0","0","0","0","0","0","70" +"33907","-1","","","","","Vindicator's Ringmail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","575","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","27","29","0","0","0","0","0","0","70" +"33908","-1","","","","","Vindicator's Ringmail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","68","0","0","0","0","0","0","0","0","0","0","0","0","702","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","27","29","0","0","0","0","0","0","70" +"33909","-1","","","","","Vindicator's Scaled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1027","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","39","40","27","26","26","0","0","0","0","0","70" +"33910","-1","","","","","Vindicator's Scaled Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","3","0","0","0","0","0","0","0","0","0","0","0","0","772","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","29","15","15","19","0","0","0","0","0","70" +"33911","-1","","","","","Vindicator's Scaled Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","3","0","0","0","0","0","0","0","0","0","0","0","0","1255","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","39","40","27","26","26","0","0","0","0","0","70" +"33912","-1","","","","","Vindicator's Silk Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","138","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","28","26","0","0","0","0","0","0","70" +"33913","-1","","","","","Vindicator's Silk Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","141","400","0","0","0","0","0","0","0","0","0","0","0","0","103","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","29","22","15","13","0","0","0","0","0","0","70" +"33914","-1","","","","","Vindicator's Silk Footguards","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","400","0","0","0","0","0","0","0","0","0","0","0","0","168","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","28","26","0","0","0","0","0","0","70" +"33915","-1","","","","","Vindicator's Wyrmhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","258","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","43","30","26","0","0","0","0","0","0","0","70" +"33916","-1","","","","","Vindicator's Wyrmhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1032","0","0","0","0","0","0","0","0","0","0","0","0","315","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","43","30","26","0","0","0","0","0","0","0","70" +"33917","-1","","","","","Vindicator's Wyrmhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","141","1032","0","0","0","0","0","0","0","0","0","0","0","0","194","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","31","20","15","0","0","0","0","0","0","0","70" +"33918","-1","","","","","Vindicator's Band of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","34","22","20","0","0","0","0","0","0","0","70" +"33919","-1","","","","","Vindicator's Band of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","34","26","22","0","0","0","0","0","0","0","70" +"33920","-1","","","","","Vindicator's Pendant of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","31","18","21","15","0","0","0","0","0","0","70" +"33921","-1","","","","","Vindicator's Pendant of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","35","18","20","0","0","0","0","0","0","0","70" +"33922","-1","","","","","Vindicator's Pendant of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","34","18","16","0","0","0","0","0","0","0","70" +"33923","-1","","","","","Vindicator's Pendant of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","35","22","18","0","0","0","0","0","0","0","70" +"33924","-1","","","","","Delicious Chocolate Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125","500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33925","-1","Teaches you how to bake a Delicious Chocolate Cake.","","","","Recipe: Delicious Chocolate Cake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","185","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33926","-1","A hermetically sealed tube.","","","","Sealed Scroll Case","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33927","-1","","","","","Brewfest Pony Keg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33928","-1","Ivory container - that IS ivory, right?","","","","Hollowed Bone Decanter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33929","-1","","","","","Brewfest Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33930","-1","","","","","Amani Charm of the Bloodletter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33931","-1","","","","","Amani Charm of Mighty Mojo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33932","-1","","","","","Amani Charm of the Witch Doctor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33933","-1","","","","","Amani Charm of the Raging Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33934","-1","","","","","Crystal Healing Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","11500","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33935","-1","","","","","Crystal Mana Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","11500","4000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","62","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"33936","-1","","","","","Gladiator's Libram of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33937","-1","","","","","Merciless Gladiator's Libram of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33938","-1","","","","","Vengeful Gladiator's Libram of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33939","-1","","","","","Gladiator's Totem of Indomitability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33940","-1","","","","","Merciless Gladiator's Totem of Indomitability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33941","-1","","","","","Vengeful Gladiator's Totem of Indomitability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33942","-1","","","","","Gladiator's Idol of Steadfastness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33943","-1","","","","","Merciless Gladiator's Idol of Steadfastness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33944","-1","","","","","Vengeful Gladiator's Idol of Steadfastness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33945","-1","","","","","Gladiator's Idol of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33946","-1","","","","","Merciless Gladiator's Idol of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33947","-1","","","","","Vengeful Gladiator's Idol of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33948","-1","","","","","Gladiator's Libram of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33949","-1","","","","","Merciless Gladiator's Libram of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33950","-1","","","","","Vengeful Gladiator's Libram of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33951","-1","","","","","Gladiator's Totem of Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33952","-1","","","","","Merciless Gladiator's Totem of Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33953","-1","","","","","Vengeful Gladiator's Totem of Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33954","-1","Teaches you how to make a Hammer of Righteous Might.","","","","Plans: Hammer of Righteous Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120000","480000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"33955","-1","Turn in to receive a Commemorative Brewfest Stein!","","","","Brewfest Stein Voucher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"33956","-1","Ain't much a pint a' this won't fix!","","","","Harkor's Home Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33957","-1","","","","","Witches Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","21","0","0","0","0","0","0","0","0","70" +"33958","-1","","","","","The Horseman's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","17","0","0","0","0","0","0","0","0","70" +"33959","-1","","","","","Ring of Ghoulish Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","197528","790112","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","0","0","0","0","0","0","0","0","0","70" +"33963","-1","","","","","Monster - Item, Tankard Brewfest (Year 1 Yellow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"33964","-1","","","","","Helm of the Stormcaller","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","731","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","34","38","22","0","0","0","0","0","0","0","70" +"33965","-1","","","","","Hauberk of the Furious Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","900","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","34","35","23","0","0","0","0","0","0","70" +"33966","-1","","","","","Brewfest Slippers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33967","-1","","","","","Green Brewfest Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33968","-1","","","","","Blue Brewfest Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33969","-1","","","","","Purple Brewfest Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33970","-1","","","","","Pauldrons of the Furious Elements","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","675","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","24","33","0","0","0","0","0","0","0","70" +"33971","-1","","","","","Elunite Imbued Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61687","308437","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","353","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","30","40","31","0","0","0","0","0","0","0","70" +"33972","-1","","","","","Mask of Primal Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","328","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","33","39","30","0","0","0","0","0","0","0","70" +"33973","-1","","","","","Pauldrons of Tribal Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","303","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","21","23","26","0","0","0","0","0","0","0","70" +"33974","-1","","","","","Grasp of the Moonkin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","32767","0","0","0","0","0","0","0","0","0","0","0","0","252","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","5","7","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","28","25","0","0","0","0","0","0","0","70" +"33975","-1","","","","","Monster - Zul'jin Weapon","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49580","247904","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","138","-1","0","0","157","0","0","0","0","293","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33976","-1","","","","","Brewfest Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"33977","-1","","","","","Swift Brewfest Ram","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"33978","-1","Allows the purchase of Brewfest rams from a Ram Racing Apprentice.","","","","""Honorary Brewer"" Hand Stamp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11400","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"33979","-1","","","","","Monster - Zul'Aman - Hammer, 2H - Amani'shi Guardian","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35933","179665","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","110","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33980","-1","","","","","Monster - Zul'Aman - Axe, 1H - Amani'shi Tribesman","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28851","144257","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33981","-1","","","","","Monster - Zul'Aman - Axe, 1H - Amani'shi Axe Thrower","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","28953","144767","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33982","-1","","","","","Monster - Zul'Aman - Axe, 1H - Amani'shi Warbringer","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29058","145291","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33983","-1","","","","","Monster - Zul'Aman - Staff, 2H - Amani'shi Flame Caster","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36454","182270","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","110","0","0","0","0","165","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33984","-1","","","","","Monster - Zul'Aman - Sword, 1H - Amani'shi Protector","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29268","146340","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33985","-1","","","","","Dreary Candle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33986","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Crit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","-56","0","0","0","0","0","0","0","0","0","70" +"33987","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Spell Crit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","-56","0","0","0","0","0","0","0","0","0","70" +"33988","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Haste","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","36","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","-56","0","0","0","0","0","0","0","0","0","70" +"33989","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Spell Haste","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","30","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","-56","0","0","0","0","0","0","0","0","0","70" +"33990","-1","","","","","Monster - Zul'Aman - Sword, 1H - Halazzi","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27054","135271","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33991","-1","","","","","Monster - Zul'Aman - Bow - Amani'shi Handler","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20277","101389","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","107","0","0","0","0","107","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33992","-1","","","","","Monster - Zul'Aman - Knife, 1H - Amani'shi Handler","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27037","135186","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"33993","-1","","","","","Mojo","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"33994","-1","Captain Planet!","","","","Kjordan's Test Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","12","22","0","0","0","0","0","0","0","70" +"33995","-1","No really, I said healer.","","","","Indalamar's Ring of Healer Ownage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","21","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","33","21","21","0","0","0","0","0","0","0","70" +"33996","-1","Don't you wish this was real!","","","","Indalamar's Ring of 234 Spell Damage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33997","-1","Don't you wish this was real!","","","","Indalamar's Ring of 400 Attack Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33998","-1","Don't you wish this was real!","","","","Indalamar's Ring of 1400 Armor Penetration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"33999","-1","","","","","Cenarion War Hippogryph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","20000000","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34000","-1","","","","","Flimsy Female Blood Elf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34001","-1","","","","","Flimsy Female Draenei Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34002","-1","","","","","Flimsy Male Blood Elf Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34003","-1","","","","","Flimsy Male Draenei Mask","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34004","-1","","","","","Sturdy Female Draenei Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5017","25089","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34005","-1","","","","","Sturdy Female Blood Elf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5035","25179","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34006","-1","","","","","Sturdy Male Blood Elf Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5053","25269","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34007","-1","","","","","Sturdy Male Draenei Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5071","25359","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34008","-1","Guaranteed by Blix Fixwidget to make EVERYONE look attractive!","","","","Blix's Eyesight Enhancing Romance Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34009","-1","","","","","Hammer of Judgement","0.6","0","-59","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","134867","674339","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","141","32767","0","0","126","0","0","0","0","235","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","33","22","22","0","0","0","0","0","0","0","70" +"34010","-1","The shroud fills you with a sense of peace","","","","Pepe's Shroud of Pacification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41605","208028","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","13","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","45","30","25","0","0","0","0","0","0","0","70" +"34011","-1","","","","","Illidari Runeshield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86315","431577","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","5930","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","45","27","0","0","0","0","0","0","0","0","70" +"34012","-1","","","","","Shroud of the Final Stand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40460","202301","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","118","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","24","22","0","0","0","0","0","0","0","0","70" +"34014","-1","","","","","Vengeful Gladiator's Waraxe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","146","-1500","0","0","321","0","0","0","0","483","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","46","33","15","0","0","0","0","0","0","70" +"34015","-1","","","","","Vengeful Gladiator's Chopper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","187","0","0","0","0","349","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"34016","-1","","","","","Vengeful Gladiator's Left Render","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","146","-1","0","0","187","0","0","0","0","349","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","30","21","12","8","0","0","0","0","0","0","70" +"34017","-1","","","","","Small Step Brew","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","1","3","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"34018","-1","","","","","Long Stride Brew","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","15","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"34019","-1","","","","","Path of Brew","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"34020","-1","","","","","Jungle River Water","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"34021","-1","","","","","Brewdoo Magic","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"34022","-1","","","","","Stout Shrunken Head","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","100","400","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"34028","-1","Allows the purchase of Brewfest rams from a Ram Racing Apprentice.","","","","""Honorary Brewer"" Hand Stamp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11419","0","0","0","0","0","40","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","40" +"34029","-1","","","","","Tiny Voodoo Mask","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8991","35965","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34033","-1","","","","","Vengeful Gladiator's Grimoire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","146","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","34","23","0","0","0","0","0","0","0","0","70" +"34036","-1","","","","","QA Test Ring +300 Resilience Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","44","0","0","0","0","0","0","0","0","0","1" +"34037","-1","","","","","QA Test Ring +100 Hit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","100","0","0","0","0","0","0","0","0","0","1" +"34038","-1","","","","","QA Test Ring +100 Expertise Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","37","0","0","0","0","0","0","0","0","0","0","0","0","0","11","3","0","100","0","0","0","0","0","0","0","0","0","1" +"34039","-1","","","","","Bow of Unusual Slowness","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66886","334430","1","1","1","16","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6000","0","0","0","115","-1","0","0","278","0","0","0","0","518","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","3","2","0","0","0","0","0","0","0","0","0","0","70" +"34044","-1","","","","","B-Ball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34045","-1","","","","","Monster - Zul'Aman - Dagger - Amani'shi Tempest","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27037","135186","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","70","-1","0","0","74","0","0","0","0","138","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34046","-1","","","","","Skill: Catch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34047","-1","","","","","Skill: Sprint","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34048","-1","","","","","Skill: Tackle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34049","-1","","","","","Battlemaster's Audacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34050","-1","","","","","Battlemaster's Perseverance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34059","-1","","","","","Vengeful Gladiator's Baton of Light","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","146","-1","0","0","252","0","0","0","0","468","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","18","14","14","0","0","0","0","0","0","0","70" +"34060","-1","Requires expert riding skill or higher to use.","","","","Flying Machine Control","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"34061","-1","Requires artisan riding skill or higher to use.","","","","Turbo-Charged Flying Machine Control","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34062","-1","","","","","Conjured Manna Biscuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","80","0","0","0","1","1","1","2097154","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"34063","-1","","","","","Dried Sausage","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","50","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","15" +"34064","-1","","","","","Succulent Sausage","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","25","100","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","25" +"34065","-1","","","","","Spiced Onion Cheese","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","3","15","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","5" +"34066","-1","","","","","Vengeful Gladiator's Piercing Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","146","-1","0","0","252","0","0","0","0","468","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","18","14","0","0","0","0","0","0","0","0","70" +"34067","-1","Made of cloth patches from the depths of Zul'Aman.","","","","Tattered Hexcloth Sack","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34068","-1","","","","","Weighted Jack-o'-Lantern","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34071","-1","","","","","Bunch of Jack-o'-Lanterns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34073","-1","","","","","The Horseman's Signet Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","17","0","0","0","0","0","0","0","0","70" +"34074","-1","","","","","Witches Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","21","0","0","0","0","0","0","0","0","70" +"34075","-1","","","","","Ring of Ghoulish Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","0","0","0","0","0","0","0","0","0","70" +"34077","-1","","","","","Crudely Wrapped Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34085","-1","","","","","Red Winter Clothes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34086","-1","","","","","Winter Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","5","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34087","-1","","","","","Green Winter Clothes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34089","-1","","","","","Alicia's Poem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3039","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34092","-1","","","","","Merciless Nether Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34094","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Attack Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34095","-1","Don't you wish this was real!","","","","Indalamar's Ring of 100 Hit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","16","17","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","100","100","0","0","0","0","0","0","0","0","70" +"34098","-1","","","","","Monster - Gun, Blood Elf Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","32767","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","3","0","0","0","0","0","0","0","0","0","0","1" +"34099","-1","","","","","Knothide Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","60" +"34100","-1","","","","","Knothide Quiver","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22500","90000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","60" +"34105","-1","","","","","Quiver of a Thousand Feathers","0.2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","70" +"34106","-1","","","","","Netherscale Ammo Pouch","0.2","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","70" +"34107","-1","","","","","Tattered Shoulderpads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","509","2549","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","0","0","0","0","0","0","0","0","0","0","15" +"34109","-1","Teaches you the fine art of fish finding.","","","","Weather-Beaten Journal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","625","2500","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","40","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34113","-1","","","","","Field Repair Bot 110G","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34114","-1","Teaches you how to make a Field Repair Bot 110G that sells reagents and repairs items at the normal cost.","","","","Schematic: Field Repair Bot 110G","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34129","658","","","","","Swift Warstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"34130","-1","","","","","Recovery Diver's Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","95","380","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","18","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","8" +"34140","-1","","","","","Dark Iron Tankard","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34141","-1","","","","","Dark Iron Ale Keg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34150","-1","","","","","Flying Reindeer Reins (TEST)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","250","1000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34151","-1","","","","","Player, Draenei/Tauren","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34152","-1","","","","","Player, Dwarf/Orc","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34153","-1","","","","","Player, Gnome/Blood Elf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34154","-1","","","","","Player, Human/Undead","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34155","-1","","","","","Player, Troll/Night Elf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34156","-1","","","","","BLB - Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34157","-1","","","","","Head of Kael'thas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34158","-1","","","","","Team A Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34159","-1","","","","","Team B Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34160","-1","What power lies within this symbol now that its master is dead? Funny how it has been reduced to being sold to the highest bidder.","","","","The Signet Ring of Prince Kael'thas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34161","-1","","","","","Kael's Standard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34162","-1","","","","","Battlemaster's Depravity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"34163","-1","","","","","Battlemaster's Cruelty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"34164","-1","","","","","Dragonscale-Encrusted Longblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151025","755128","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","37","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","36","25","25","0","0","0","0","0","0","0","70" +"34165","-1","","","","","Fang of Kalecgos","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","151593","757967","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","32767","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","36","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","25","25","0","0","0","0","0","0","0","0","70" +"34166","-1","","","","","Band of Lucent Beams","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","24","25","22","0","0","0","0","0","0","0","70" +"34167","-1","","","","","Legplates of the Holy Juggernaut","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110128","550640","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","49","41","37","0","0","0","0","0","0","0","70" +"34168","-1","","","","","Starstalker Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94746","473732","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","3","4","4","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","57","49","24","20","0","0","0","0","0","0","70" +"34169","-1","","","","","Breeches of Natural Aggression","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62571","312857","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","41","49","0","0","0","0","0","0","0","70" +"34170","-1","","","","","Pantaloons of Calming Strife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63625","318129","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","29","36","42","25","0","0","0","0","0","0","70" +"34171","-1","","","","","Winter Stationery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34172","-1","Teaches you how to make Drums of Speed.","","","","Pattern: Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","345","165","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34173","-1","Teaches you how to make Drums of Speed.","","","","Pattern: Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","345","165","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34174","-1","Teaches you how to make Drums of Restoration.","","","","Pattern: Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34175","-1","Teaches you how to make Drums of Restoration.","","","","Pattern: Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34176","-1","","","","","Reign of Misery","0.6","0","-66.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","132215","661078","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","-1","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","24","25","30","0","0","0","0","0","0","0","70" +"34177","-1","","","","","Clutch of Demise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","25","33","30","0","0","0","0","0","0","0","70" +"34178","-1","","","","","Collar of the Pit Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86443","345774","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","37","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","63","29","25","0","0","0","0","0","0","0","70" +"34179","-1","","","","","Heart of the Pit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","33","21","32","0","0","0","0","0","0","0","70" +"34180","-1","","","","","Felfury Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","107273","536365","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","4","2","3","0","1","0","0","1","0","4","7","36","32","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","61","48","50","34","0","0","0","0","0","0","70" +"34181","-1","","","","","Leggings of Calamity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61526","307632","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","7","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","41","33","32","0","0","0","0","0","0","70" +"34182","-1","","","","","Grand Magister's Staff of Torrents","0.4","0","-66.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","187343","936717","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","3200","0","0","0","154","-1","0","0","359","0","0","0","0","539","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","3","3","2","2","0","0","1","0","7","5","21","18","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","57","52","49","50","0","0","0","0","0","0","70" +"34183","-1","","","","","Shivering Felspine","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","188053","940266","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","3500","0","0","0","154","32767","0","0","393","0","0","0","0","590","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","1","1","0","0","1","0","3","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","52","53","0","0","0","0","0","0","0","0","70" +"34184","-1","","","","","Brooch of the Highborne","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","102777","411111","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","33","22","0","0","0","0","0","0","0","70" +"34185","-1","","","","","Sword Breaker's Bulwark","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97000","485000","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","6459","0","0","0","0","0","0","0","254","0","0","0","2","0","0","4","6","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","49","20","16","0","0","0","0","0","0","0","70" +"34186","-1","","","","","Chain Links of the Tumultuous Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94035","470175","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","3","2","2","0","5","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","41","35","30","0","0","0","0","0","0","70" +"34188","-1","","","","","Leggings of the Immortal Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81034","405170","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","41","48","32","0","0","0","0","0","0","0","70" +"34189","-1","","","","","Band of Ruinous Delight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","32","30","0","0","0","0","0","0","0","0","70" +"34190","-1","","","","","Crimson Paragon's Cover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47535","237678","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","13","37","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","61","28","28","0","0","0","0","0","0","0","70" +"34191","-1","","","","","Handful of Snowflakes","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34192","-1","","","","","Pauldrons of Perseverance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","7","12","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","60","27","32","0","0","0","0","0","0","0","70" +"34193","-1","","","","","Spaulders of the Thalassian Savior","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65575","327875","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2875","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","28","25","22","0","0","0","0","0","0","0","70" +"34194","-1","","","","","Mantle of the Golden Forest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74834","374170","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","40","40","0","0","0","0","0","0","0","0","70" +"34195","-1","","","","","Shoulderpads of Vehemence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56371","281855","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","36","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","45","26","30","0","0","0","0","0","0","70" +"34196","-1","","","","","Golden Bow of Quel'Thalas","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","109851","549255","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","154","-1","0","0","204","0","0","0","0","380","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","18","0","0","0","0","0","0","0","0","0","70" +"34197","-1","","","","","Shiv of Exsanguination","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","147035","735179","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","154","32767","0","0","136","0","0","0","0","253","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","25","0","0","0","0","0","0","0","0","0","70" +"34198","-1","","","","","Stanchion of Primal Instinct","0.4","0","-66.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","184504","922523","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","154","32767","0","0","336","0","0","0","0","505","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","3","4","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","75","47","50","0","0","0","0","0","0","0","70" +"34199","-1","","","","","Archon's Gavel","0.6","0","-66.5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","148171","740857","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","1800","0","0","0","154","32767","0","0","136","0","0","0","0","253","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","24","25","0","0","0","0","0","0","0","0","70" +"34200","-1","Teaches you how to craft a Quiver of a Thousand Feathers.","","","","Pattern: Quiver of a Thousand Feathers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1011","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34201","-1","Teaches you how to craft a Netherscale Ammo Pouch.","","","","Pattern: Netherscale Ammo Pouch","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","947","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34202","-1","","","","","Shawl of Wonderment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46315","231578","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","26","33","0","0","0","0","0","0","0","70" +"34203","-1","","","","","Grip of Mannoroth","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","154493","772468","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","36","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","20","0","0","0","0","0","0","0","0","70" +"34204","-1","","","","","Amulet of Unfettered Magics","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","18","7","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","15","24","17","32","0","0","0","0","0","0","70" +"34205","-1","","","","","Shroud of Redeemed Souls","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46684","233420","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","129","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","27","24","0","0","0","0","0","0","0","0","70" +"34206","-1","","","","","Book of Highborne Hymns","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","203059","1015299","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","33","20","22","0","0","0","0","0","0","0","70" +"34207","-1","","","","","Glove Reinforcements","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","60" +"34208","-1","","","","","Equilibrium Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","73247","366238","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","30","30","0","0","0","0","0","0","0","70" +"34209","-1","","","","","Spaulders of Reclamation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60989","304945","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","26","30","30","0","0","0","0","0","0","70" +"34210","-1","","","","","Amice of the Convoker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48966","244833","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","36","28","30","22","0","0","0","0","0","0","70" +"34211","-1","","","","","Harness of Carnal Instinct","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","81895","409478","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","52","44","64","22","0","0","0","0","0","0","70" +"34212","-1","","","","","Sunglow Vest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82188","410940","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","33","0","0","0","0","0","0","0","70" +"34213","-1","","","","","Ring of Hardened Resolve","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","12","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","48","32","22","0","0","0","0","0","0","0","70" +"34214","-1","","","","","Muramasa","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160693","803465","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","36","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","35","27","17","0","0","0","0","0","0","0","70" +"34215","-1","","","","","Warharness of Reckless Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105203","526018","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","1","0","0","1","0","4","7","32","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","61","67","41","32","0","0","0","0","0","0","70" +"34216","-1","","","","","Heroic Judicator's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","105613","528065","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","4","3","3","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","78","22","29","44","0","0","0","0","0","0","70" +"34218","-1","Teaches you how to craft a Netherscale Ammo Pouch.","","","","Pattern: Netherscale Ammo Pouch","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","946","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34220","-1","Only fits in a meta gem slot.","","","","Chaotic Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","801","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34221","-1","Teaches you how to cut a Chaotic Skyfire Diamond.","","","","Design: Chaotic Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","80","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34227","-1","","","","","Deadman's Hand","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","6200","24800","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","10","0","0","0","0","0","0","0","0","0","29" +"34228","-1","","","","","Vicious Hawkstrider Hauberk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97222","486110","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","47","64","30","0","0","0","0","0","0","0","70" +"34229","-1","","","","","Garments of Serene Shores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","97572","487864","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","5","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","25","0","0","0","0","0","0","0","70" +"34230","-1","","","","","Ring of Omnipotence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","30","21","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","22","21","14","0","0","0","0","0","0","70" +"34231","-1","","","","","Aegis of Angelic Fortune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","101743","508718","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","6459","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","33","21","0","0","0","0","0","0","0","0","70" +"34232","-1","","","","","Fel Conquerer Raiments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","65744","328721","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","60","41","33","24","0","0","0","0","0","0","70" +"34233","-1","","","","","Robes of Faltered Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64043","320219","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","257","0","0","0","0","0","0","0","254","0","0","0","4","4","3","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","39","40","40","32","0","0","0","0","0","0","70" +"34234","-1","","","","","Shadowed Gauntlets of Paroxysm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41378","206893","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","41","33","30","0","0","0","0","0","0","0","70" +"34240","-1","","","","","Gauntlets of the Soothed Soul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55395","276976","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","27","33","30","0","0","0","0","0","0","0","70" +"34241","-1","","","","","Cloak of Unforgivable Sin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48771","243858","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","26","25","32","0","0","0","0","0","0","0","70" +"34242","-1","","","","","Tattered Cape of Antonidas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48952","244762","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","164","32767","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","25","26","32","0","0","0","0","0","0","0","70" +"34243","-1","","","","","Helm of Burning Righteousness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85819","429095","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","1660","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","0","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","43","34","0","0","0","0","0","0","0","70" +"34244","-1","","","","","Duplicitous Guise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61642","308210","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2873","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","3","7","31","36","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","57","30","34","0","0","0","0","0","0","70" +"34245","-1","","","","","Cover of Ursol the Wise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61861","309308","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","418","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","42","40","0","0","0","0","0","0","0","70" +"34246","-1","So much power in such a small cube!","","","","Smuggled Mana Cell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34247","-1","","","","","Apolyon, the Soul-Render","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","207710","1038554","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","3400","0","0","0","164","-1","0","0","404","0","0","0","0","607","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","2","2","1","1","0","0","1","0","7","36","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","75","32","42","0","0","0","0","0","0","0","70" +"34248","-1","Here goes nothing....","","","","Bash'ir Phasing Device","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34249","-1","The head bobs when shaken.","","","","Hula Girl Doll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","250000","1000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34250","-1","","","","","Skill: Throw Bullet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34251","-1","","","","","Skill: Throw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34252","-1","","","","","Skill: Juke","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34253","-1","","","","","Sizzling Embers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34254","-1","","","","","Razorthorn Root","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34255","-1","Foul smelling pheromones hover around the gooey gland.","","","","Razorthorn Flayer Gland","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34256","-1","Matches a Blue Socket.","","","","Charmed Amani Jewel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","524288","24580","0","0","0","0","0","0","0","0","821","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"34257","-1","","","","","Fel Siphon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34258","-1","","","","","Love Rocket","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34259","-1","","","","","Demonic Blood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34261","-1","Teaches you how to sew Green Winter Clothes.","","","","Pattern: Green Winter Clothes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34262","-1","Teaches you how to craft Winter Boots.","","","","Pattern: Winter Boots","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","285","165","57","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34263","-1","","","","","Monster - Bow, Blood Elf A01 Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34264","-1","","","","","Monster - Bow, Blood Elf A01 Blue","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34265","-1","","","","","Monster - Bow, Blood Elf A01 Orange","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34266","-1","","","","","Monster - Bow, Blood Elf A01 Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34267","-1","","","","","Monster - Bow, Blood Elf A01 Yellow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34268","-1","","","","","Monster - Bow, Blood Elf B01 Orange","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34269","-1","","","","","Monster - Bow, Blood Elf B01 Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34270","-1","","","","","Monster - Bow, Blood Elf B01 Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34271","-1","","","","","Monster - Bow, Blood Elf C01 Default","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34272","-1","","","","","Monster - Bow, Blood Elf C01 Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34273","-1","","","","","Monster - Bow, Blood Elf C01 Orange","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34274","-1","","","","","Monster - Bow, Blood Elf C01 Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34275","-1","","","","","Monster - Bow, Blood Elf C01 Silver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34276","-1","","","","","Monster - Bow, Blood Elf D01 Default","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34277","-1","","","","","Monster - Bow, Blood Elf D01 Black","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34278","-1","","","","","Monster - Bow, Blood Elf D01 Gold","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34279","-1","","","","","Monster - Bow, Blood Elf D01 Orange","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34280","-1","","","","","Monster - Bow, Blood Elf D01 Red","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34281","-1","","","","","Monster - Bow, Blood Elf D01 Silver","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34282","-1","","","","","Monster - Sword, 1H Blood Elf A01 Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34283","-1","","","","","Monster - Sword, 1H Blood Elf A02 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34284","-1","","","","","Monster - Sword, 1H Blood Elf A03 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34285","-1","","","","","Monster - Sword, 1H Blood Elf A03 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34286","-1","","","","","Monster - Sword, 1H Blood Elf A03 Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34287","-1","","","","","Monster - Sword, 2H Blood Elf A01","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","16","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34288","-1","","","","","Monster - Sword, 1H Blood Elf A03 Silver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34289","-1","","","","","Monster - Sword, 2H Blood Elf A01 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34290","-1","","","","","Monster - Sword, 2H Blood Elf A01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34291","-1","","","","","Monster - Sword, 2H Blood Elf A02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34292","-1","","","","","Monster - Sword, 2H Blood Elf A02 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34293","-1","","","","","Monster - Sword, 2H Blood Elf A02 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34294","-1","","","","","Monster - Sword, 2H Blood Elf A02 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34295","-1","","","","","Monster - Sword, 2H Blood Elf B01 Gold","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34296","-1","","","","","Monster - Sword, 2H Blood Elf B01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34297","-1","","","","","Monster - Sword, 2H Blood Elf B01 Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34298","-1","","","","","Monster - Sword, 2H Blood Elf B02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34299","-1","","","","","Monster - Sword, 2H Blood Elf B02 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34300","-1","","","","","Monster - Sword, 2H Blood Elf B02 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34301","-1","","","","","Monster - Sword, 2H Blood Elf B02 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34302","-1","","","","","Monster - Sword, 2H Blood Elf C01 Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34303","-1","","","","","Monster - Sword, 2H Blood Elf C01 Orange","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34304","-1","","","","","Monster - Sword, 2H Blood Elf C01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34305","-1","","","","","Monster - Sword, 2H Blood Elf C01 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34306","-1","","","","","Monster - Sword, 2H Blood Elf C02 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34307","-1","","","","","Monster - Sword, 2H Blood Elf C02 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34308","-1","","","","","Monster - Sword, 2H Blood Elf C02 Yellow","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34309","-1","","","","","Monster - Sword, 2H Blood Elf C03 Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34310","-1","","","","","Monster - Sword, 2H Blood Elf C03 Green","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34311","-1","","","","","Monster - Sword, 2H Blood Elf C03 Red","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34312","-1","","","","","Monster - Crossbow, Draenei A01","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34313","-1","","","","","Monster - Crossbow, Draenei A01 Brown","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34314","-1","","","","","Monster - Crossbow, Draenei A01 Gold","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34315","-1","","","","","Monster - Crossbow, Draenei A01 Orange","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34316","-1","","","","","Monster - Crossbow, Draenei A02 Blue","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34317","-1","","","","","Monster - Crossbow, Draenei A02 Blue Trim","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34318","-1","","","","","Monster - Crossbow, Draenei A02 Brown","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34319","-1","Teaches you how to sew Red Winter Clothes.","","","","Pattern: Red Winter Clothes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34320","-1","","","","","Monster - Crossbow, Draenei A02 Green Trim","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","9","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34321","-1","","","","","Monster - Crossbow, Draenei A02 Grey Trim","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34322","-1","","","","","Monster - Crossbow, Draenei A02 Purple","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34323","-1","","","","","Monster - Crossbow, Draenei A02 Red Trim","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34324","-1","","","","","Monster - Sword, Draenei B01 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34325","-1","","","","","Monster - Crossbow, Outland Raid D01","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34326","-1","","","","","Monster - Crossbow, Outland Raid D04","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34327","-1","","","","","Monster - Crossbow, Outland Raid D05","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34328","-1","","","","","Monster - Crossbow, Outland Raid D06","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34329","-1","","","","","Crux of the Apocalypse","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","155299","776495","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","1800","0","0","0","164","-1","0","0","164","0","0","0","0","247","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","3","1","0","0","1","0","7","3","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","15","18","27","0","0","0","0","0","0","0","70" +"34330","-1","","","","","Heavy Knothide Armor Kit","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"34331","-1","","","","","Hand of the Deceiver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","156503","782515","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","2600","0","0","0","164","-1","0","0","238","0","0","0","0","357","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","3","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","28","0","0","0","0","0","0","0","0","0","70" +"34332","-1","","","","","Cowl of Gul'dan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72630","363152","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","929","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","43","36","32","0","0","0","0","0","0","70" +"34333","-1","","","","","Coif of Alleria","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72901","364507","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","164","32767","0","0","0","0","0","0","0","0","0","0","0","0","929","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","43","45","25","34","0","0","0","0","0","0","70" +"34334","-1","The energy of the Sunwell courses through Thori'dal.","","","","Thori'dal, the Stars' Fury","0.6","0","59.5","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","182930","914654","1","1","1","0","24580","0","0","0","110","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","164","-1","0","0","195","0","0","0","0","363","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","5","0","17","16","0","0","0","0","0","0","0","0","70" +"34335","-1","","","","","Hammer of Sanctification","0.6","0","-73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163190","815954","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","1800","0","0","0","164","32767","0","0","144","0","0","0","0","268","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","3","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","19","25","23","0","0","0","0","0","0","0","70" +"34336","-1","","","","","Sunflare","0.6","0","-73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","163793","818965","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","164","-1","0","0","144","0","0","0","0","268","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","17","20","23","30","0","0","0","0","0","0","70" +"34337","-1","","","","","Golden Staff of the Sin'dorei","0.4","0","-73","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","205493","1027469","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","3200","0","0","0","164","-1","0","0","380","0","0","0","0","571","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","4","4","2","2","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","60","54","57","32","0","0","0","0","0","0","70" +"34338","-1","","","","","Mana Remnants","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","4","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34339","-1","","","","","Cowl of Light's Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49674","248374","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","164","32767","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","42","38","30","0","0","0","0","0","0","70" +"34340","-1","","","","","Dark Conjuror's Collar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","49855","249277","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","164","32767","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","42","38","30","0","0","0","0","0","0","70" +"34341","-1","","","","","Borderland Paingrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44050","220252","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","1277","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","47","39","48","0","0","0","0","0","0","0","70" +"34342","-1","","","","","Handguards of the Dawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33477","167389","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","32","36","27","0","0","0","0","0","0","70" +"34343","-1","","","","","Thalassian Ranger Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50392","251962","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","715","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","40","43","27","23","0","0","0","0","0","0","70" +"34344","-1","","","","","Handguards of Defiled Worlds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33715","168576","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","7","0","0","1","0","7","5","18","30","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","32","27","36","0","0","0","0","0","0","70" +"34345","-1","","","","","Crown of Anasterian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88649","443249","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","3263","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","1660","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","0","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","61","40","67","0","0","0","0","0","0","0","70" +"34346","-1","","","","","Mounting Vengeance","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","160109","800549","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","4","0","7","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","22","0","0","0","0","0","0","0","0","0","70" +"34347","-1","","","","","Wand of the Demonsoul","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","120496","602483","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","208","0","0","0","0","387","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","2","0","0","1","5","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","18","9","10","0","0","0","0","0","0","0","70" +"34348","-1","","","","","Wand of Cleansing Light","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112452","562260","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","208","0","0","0","0","387","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","2","0","0","1","1","30","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","8","8","18","0","0","0","0","0","0","0","70" +"34349","-1","","","","","Blade of Life's Inevitability","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36368","145472","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","2000","0","0","0","154","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","36","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","16","19","0","0","0","0","0","0","0","0","70" +"34350","-1","","","","","Gauntlets of the Ancient Shadowmoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45316","226584","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","3152","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","672","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","32","28","24","0","0","0","0","0","0","70" +"34351","-1","","","","","Tranquil Majesty Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37906","189530","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","302","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","28","30","0","0","0","0","0","0","0","70" +"34352","-1","","","","","Borderland Fortress Grips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44050","220252","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","156","-1","0","0","0","0","0","0","0","0","0","0","0","0","1217","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","7","12","13","14","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","66","22","36","29","0","0","0","0","0","0","70" +"34353","-1","","","","","Quad Deathblow X44 Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59014","295074","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","61","47","24","0","0","0","0","0","0","0","70" +"34354","-1","","","","","Mayhem Projection Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","82761","413808","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","4","32","7","31","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","62","51","47","26","0","0","0","0","0","0","70" +"34355","-1","","","","","Lightning Etched Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71337","356686","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","18","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","47","25","53","0","0","0","0","0","0","0","70" +"34356","-1","","","","","Surestrike Goggles v3.0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","71600","358002","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","31","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","47","26","51","0","0","0","0","0","0","0","70" +"34357","-1","","","","","Hard Khorium Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83681","418406","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2882","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","7","0","0","1","0","7","12","31","13","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","86","51","27","35","0","0","0","0","0","0","70" +"34358","-1","","","","","Hard Khorium Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","350","755","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","3","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","42","29","0","0","0","0","0","0","0","0","70" +"34359","-1","","","","","Pendant of Sunfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","350","755","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","3","0","0","1","0","30","21","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","25","25","27","19","0","0","0","0","0","0","70" +"34360","-1","","","","","Amulet of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","88355","353421","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","350","755","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","3","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","25","27","19","0","0","0","0","0","0","0","70" +"34361","-1","","","","","Hard Khorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","3","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","42","28","0","0","0","0","0","0","0","70" +"34362","-1","","","","","Loop of Forged Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","30","18","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","28","30","19","0","0","0","0","0","0","70" +"34363","-1","","","","","Ring of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","2","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","28","30","0","0","0","0","0","0","0","70" +"34364","-1","","","","","Sunfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60849","304249","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","197","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","7","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","34","40","40","0","0","0","0","0","0","70" +"34365","-1","","","","","Robe of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61077","305387","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","350","197","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","4","4","4","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","34","40","0","0","0","0","0","0","0","70" +"34366","-1","","","","","Sunfire Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30655","153278","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","7","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","30","37","0","0","0","0","0","0","0","70" +"34367","-1","","","","","Hands of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30772","153863","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","7","0","0","2","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","30","37","0","0","0","0","0","0","0","70" +"34368","-1","","","","","Attuned Crystal Cores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34369","-1","","","","","Carapace of Sun and Shadow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","77508","387544","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","350","165","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","3","2","2","0","8","0","0","1","0","3","7","36","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","45","38","30","0","0","0","0","0","0","70" +"34370","-1","","","","","Gloves of Immortal Dusk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38900","194503","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3092","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","8","0","0","2","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","33","30","0","0","0","0","0","0","0","70" +"34371","-1","","","","","Leather Chestguard of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","78093","390469","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","350","165","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","33","0","0","0","0","0","0","0","70" +"34372","-1","","","","","Leather Gauntlets of the Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39193","195965","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","2","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","25","26","30","38","0","0","0","0","0","0","70" +"34373","-1","","","","","Embrace of the Phoenix","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","94404","472024","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","350","165","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","5","0","0","1","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","44","43","30","44","0","0","0","0","0","0","70" +"34374","-1","","","","","Fletcher's Gloves of the Phoenix","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47377","236889","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2973","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","3","3","0","0","5","0","0","2","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","33","25","34","0","0","0","0","0","0","70" +"34375","-1","","","","","Sun-Drenched Scale Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","95106","475534","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","350","165","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","40","0","0","0","0","0","0","0","70" +"34376","-1","","","","","Sun-Drenched Scale Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47728","238644","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","2","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","45","36","32","0","0","0","0","0","0","0","70" +"34377","-1","","","","","Hard Khorium Battleplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","111765","558829","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","3263","0","0","0","0","0","0","0","0","0","0","350","164","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","2","0","1","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","61","55","41","0","0","0","0","0","0","0","70" +"34378","-1","","","","","Hard Khorium Battlefists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44050","220252","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","2","0","4","7","36","31","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","45","45","36","23","0","0","0","0","0","0","70" +"34379","-1","","","","","Sunblessed Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112584","562923","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","350","164","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","51","34","0","0","0","0","0","0","0","70" +"34380","-1","","","","","Sunblessed Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58294","291472","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","1","0","0","2","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","31","36","0","0","0","0","0","0","0","70" +"34381","-1","","","","","Felstrength Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","4","4","2","0","1","0","0","1","0","7","12","13","37","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","78","40","50","40","0","0","0","0","0","0","70" +"34382","-1","","","","","Judicator's Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","4","4","2","0","1","0","0","1","0","7","12","13","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","78","40","34","22","0","0","0","0","0","0","70" +"34383","-1","","","","","Kilt of Spiritual Reconstruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","105","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","4","2","2","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","48","41","30","0","0","0","0","0","0","0","70" +"34384","-1","","","","","Breeches of Natural Splendor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","90","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","42","41","49","0","0","0","0","0","0","0","70" +"34385","-1","","","","","Leggings of the Immortal Beast","0","0","364","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","90","0","0","0","0","0","2877","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","44","46","66","25","0","0","0","0","0","0","70" +"34386","-1","","","","","Pantaloons of Growing Strife","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","29","36","25","42","0","0","0","0","0","0","70" +"34388","-1","","","","","Pauldrons of Berserking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","4","7","36","32","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","48","27","30","0","0","0","0","0","0","70" +"34389","-1","","","","","Spaulders of the Thalassian Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","7","12","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","60","27","24","0","0","0","0","0","0","0","70" +"34390","-1","","","","","Erupting Epaulets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","85","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","5","0","0","1","0","30","7","5","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","24","30","30","30","0","0","0","0","0","0","70" +"34391","-1","","","","","Spaulders of Devastation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","3","2","0","0","8","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","27","30","26","30","0","0","0","0","0","0","70" +"34392","-1","","","","","Demontooth Shoulderpads","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","4","3","7","5","32","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","38","38","38","19","20","0","0","0","0","0","70" +"34393","-1","","","","","Shoulderpads of Knowledge's Pursuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","21","6","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","33","33","26","22","0","0","0","0","0","0","70" +"34394","-1","","","","","Breastplate of Agony's Aversion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","4","4","2","0","1","0","0","1","0","7","12","13","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","78","36","52","40","0","0","0","0","0","0","70" +"34395","-1","","","","","Noble Judicator's Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","165","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","1535","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","4","0","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","52","52","34","0","0","0","0","0","0","0","70" +"34396","-1","","","","","Garments of Crashing Shores","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","140","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","30","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","40","25","0","0","0","0","0","0","70" +"34397","-1","","","","","Bladed Chaos Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","4","3","2","0","8","0","0","1","0","3","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","42","45","38","0","0","0","0","0","0","0","70" +"34398","-1","","","","","Utopian Tunic of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","120","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","4","4","0","7","0","0","1","0","7","5","30","6","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","48","41","33","32","0","0","0","0","0","0","70" +"34399","-1","","","","","Robes of Ghostly Hatred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","7","0","0","1","0","7","5","6","30","21","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","39","40","32","27","26","0","0","0","0","0","70" +"34400","-1","","","","","Crown of Dath'Remar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","1","0","0","1","0","7","12","13","14","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","91","32","53","33","0","0","0","0","0","0","70" +"34401","-1","","","","","Helm of Uther's Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","100","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","1","0","0","1","0","7","12","13","5","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","91","32","41","20","0","0","0","0","0","0","70" +"34402","-1","","","","","Shroud of Chieftain Ner'zhul","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","85","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","3","1","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","41","33","0","0","0","0","0","0","0","70" +"34403","-1","","","","","Cover of Ursoc the Mighty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","45","41","30","37","0","0","0","0","0","0","70" +"34404","-1","","","","","Mask of the Fury Hunter","0","0","238","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","2868","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","2","1","0","0","8","0","0","1","0","4","3","7","5","32","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","50","50","58","20","30","0","0","0","0","0","70" +"34405","-1","","","","","Helm of Arcane Purity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","164","32767","0","0","0","0","0","0","0","0","0","0","0","0","222","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","42","38","30","0","0","0","0","0","0","70" +"34406","-1","","","","","Gloves of Tyri's Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","164","-1","0","0","0","0","0","0","0","0","0","0","0","0","171","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","32","27","36","0","0","0","0","0","0","70" +"34407","-1","","","","","Tranquil Moonlight Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","154","32767","0","0","0","0","0","0","0","0","0","0","0","0","302","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","28","20","30","0","0","0","0","0","0","70" +"34408","-1","","","","","Gloves of the Forest Drifter","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","34","45","20","0","0","0","0","0","0","70" +"34409","-1","","","","","Gauntlets of the Ancient Frostwolf","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","159","32767","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","32","28","0","0","0","0","0","0","0","70" +"34410","-1","","","","","Honeyed Holiday Ham","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"34411","-1","","","","","Hot Apple Cider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","160","640","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"34412","-1","","","","","Sparkling Apple Cider","0","172800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","1000","5","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","35" +"34413","-1","Teaches you how to brew Hot Apple Cider.","","","","Recipe: Hot Apple Cider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","325","185","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34414","-1","","","","","Shattered Sun Banner","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34415","-1","","","","","Crystaline Shard Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17118","85590","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","1739","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","3","0","11","10","0","0","0","0","0","0","0","0","0" +"34416","-1","","","","","Gloves of the Dune","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4005","20029","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","41","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","10","0","0","0","0","0","0","0","0","0" +"34417","-1","","","","","Marauder's Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5007","25036","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","46","-1","0","0","0","0","0","0","0","0","0","0","0","0","85","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","10","11","0","0","0","0","0","0","0","0","0" +"34418","-1","","","","","Scrying Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20060","100301","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","50","-1","0","0","61","0","0","0","0","114","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","26","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34419","-1","","","","","Thorium Flight Blade","0","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25914","103656","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","50","-1","0","0","90","0","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","6","0","0","0","0","0","0","0","0","0","0" +"34420","-1","","","","","Captured Legion Scroll","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34421","-1","","","","","Cave Crawler's Mail Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12089","60448","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","206","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","11","8","7","0","0","0","0","0","0","0","0" +"34422","-1","","","","","Tempered Thorium Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14025","70128","1","1","1","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","32767","0","0","0","0","0","0","0","0","0","0","0","0","363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","4","32","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","12","10","11","0","0","0","0","0","0","0","0" +"34423","-1","","","","","Strength of the High Chief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34424","-1","","","","","Power of the High Chief","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","59","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34425","-1","","","","","Clockwork Rocket Bot","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34426","-1","","","","","Winter Veil Gift","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"34427","-1","","","","","Blackened Naaru Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","36","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","54","0","0","0","0","0","0","0","0","0","70" +"34428","-1","","","","","Steely Naaru Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","54","0","0","0","0","0","0","0","0","0","70" +"34429","-1","","","","","Shifting Naaru Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","30","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","54","0","0","0","0","0","0","0","0","0","70" +"34430","-1","","","","","Glimmering Naaru Sliver","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34431","-1","","","","","Lightbringer Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","680","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","32","37","36","7","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","30","16","17","15","0","0","0","0","0","70" +"34432","-1","","","","","Lightbringer Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2881","0","0","0","0","681","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","21","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","15","22","16","0","0","0","0","0","0","0","70" +"34433","-1","","","","","Lightbringer Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","3153","0","0","0","0","679","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","12","13","15","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","49","20","22","15","0","0","0","0","0","0","70" +"34434","-1","","","","","Bracers of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","674","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","23","16","20","0","0","0","0","0","0","70" +"34435","-1","","","","","Cuffs of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3097","0","0","0","0","675","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","6","30","21","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","19","22","20","16","15","0","0","0","0","0","70" +"34436","-1","","","","","Bracers of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","670","0","0","0","0","0","0","0","154","256","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","18","22","21","18","0","0","0","0","0","0","70" +"34437","-1","","","","","Skyshatter Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","684","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","30","5","21","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","23","28","15","0","0","0","0","0","0","70" +"34438","-1","","","","","Skyshatter Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","683","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","30","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","23","15","0","0","0","0","0","0","0","70" +"34439","-1","","","","","Skyshatter Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2925","0","0","0","0","682","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","31","37","5","32","4","7","-1","-1","-1","-1","0","0","0","0","9","4","0","17","17","17","22","32","16","0","0","0","0","70" +"34440","-1","","","","","Mad Alchemist's Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","7000","28000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","315","171","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"34441","-1","","","","","Onslaught Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","672","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","32","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","30","16","0","0","0","0","0","0","0","70" +"34442","-1","","","","","Onslaught Wristguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2926","0","0","0","0","673","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","12","14","13","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","49","21","22","24","0","0","0","0","0","0","70" +"34443","-1","","","","","Gronnstalker's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3149","0","0","0","0","669","0","0","0","0","0","0","0","154","4","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","23","16","16","17","0","0","0","0","0","0","70" +"34444","-1","","","","","Thunderheart Wristguards","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2925","0","0","0","0","676","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","4","3","7","5","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","28","28","39","13","0","0","0","0","0","0","70" +"34445","-1","","","","","Thunderheart Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","3151","0","0","0","0","678","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","30","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","22","25","16","0","0","0","0","0","0","70" +"34446","-1","","","","","Thunderheart Bands","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","3153","0","0","0","0","677","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","13","23","21","15","0","0","0","0","0","0","70" +"34447","-1","","","","","Bracers of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3152","0","0","0","0","671","0","0","0","0","0","0","0","154","128","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","21","5","6","30","7","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","11","17","14","26","18","0","0","0","0","0","70" +"34448","-1","","","","","Slayer's Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2925","0","0","0","0","668","0","0","0","0","0","0","0","154","8","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","31","36","7","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","27","18","17","16","0","0","0","0","0","0","70" +"34449","-1","","","","","Monster - Dagger, Draenei A01 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34450","-1","","","","","Monster - Dagger, Draenei A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34451","-1","","","","","Monster - Dagger, Draenei A01 Orange","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34452","-1","","","","","Monster - Dagger, Draenei A01 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34453","-1","","","","","Monster - Dagger, Draenei A01 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34454","-1","","","","","Monster - Dagger, Draenei A02 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34455","-1","","","","","Monster - Dagger, Draenei A02 Brown","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34456","-1","","","","","Monster - Dagger, Draenei A02 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34457","-1","","","","","Monster - Dagger, Draenei A02 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34458","-1","","","","","Monster - Dagger, Draenei A02 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34459","-1","","","","","Monster - Dagger, Draenei A03 Black","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34460","-1","","","","","Monster - Dagger, Draenei A03 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34461","-1","","","","","Monster - Dagger, Draenei A03 Brown","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34462","-1","","","","","Monster - Dagger, Draenei A03 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34463","-1","","","","","Monster - Dagger, Draenei A03 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34465","-1","","","","","Test Firebloom","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","1000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","41","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34466","-1","","","","","Test Fel Iron Toolbox","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34467","-1","","","","","Test Handful of Fel Iron Bolts","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","1500","6000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34469","-1","It reads 'Capissen 38' on the bottom.","","","","Strange Engine Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11531","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"34470","-1","","","","","Timbal's Focusing Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34471","-1","","","","","Vial of the Sunwell","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34472","-1","","","","","Shard of Contempt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","37","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","44","0","0","0","0","0","0","0","0","0","70" +"34473","-1","","","","","Commendation of Kael'thas","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","72039","288156","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","57","0","0","0","0","0","0","0","0","0","70" +"34474","-1","It reads 'Capissen 38' on the bottom.","","","","Strange Engine Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34475","-1","","","","","Arcane Charges","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34476","-1","This strange engine part has the word 'Capissen' engraved on it.","","","","Broken Engine Part","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34477","-1","","","","","Darkspine Chest Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34478","-1","","","","","Tiny Sporebat","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34479","-1","","","","","Darkspine Iron Ore","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34480","-1","","","","","Romantic Picnic Basket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34481","-1","","","","","Recipe: Mad Alchemist's Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","942","325","171","65","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34482","-1","","","","","Leatherworker's Satchel","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34483","-1","An arcane energy swirls within this fragile container.","","","","Orb of Murloc Control","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34484","-1","The legendary uncatchable fish of Ironforge. Just holding this scaly old monster makes you feel tough.","","","","Old Ironjaw","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","0","0","0","0","0","0","0","0","0","0" +"34485","-1","","","","","Lightbringer Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2857","0","0","0","0","680","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1081","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","37","32","36","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","44","25","42","29","24","0","0","0","0","0","70" +"34486","-1","Said to be the craftiest fish in Orgrimmar, it appears he was outsmarted at last.","","","","Old Crafty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","0","0","0","0","0","0","0","0","0","0" +"34487","-1","","","","","Lightbringer Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2881","0","0","0","0","681","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1081","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","17","29","24","21","0","0","0","0","0","0","70" +"34488","-1","","","","","Lightbringer Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2926","0","0","0","0","679","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1081","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","12","13","15","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","64","28","30","20","0","0","0","0","0","0","70" +"34489","-1","","","","","Flaming Oil","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131136","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34490","-1","","","","","Bag of Many Hides","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34491","-1","Teaches you how to make a Bag of Many Hides.","","","","Pattern: Bag of Many Hides","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","24000","96000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","165","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34492","-1","","","","","Rocket Chicken","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34493","-1","","","","","Dragon Kite","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"34494","-1","","","","","Paper Zeppelin","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65538","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34496","-1","","","","","Upper Deck - Paper Airplane Book","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34497","-1","","","","","Paper Flying Machine","0","1800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","5","1","1","65538","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34498","-1","","","","","Paper Zeppelin Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34499","-1","","","","","Paper Flying Machine Kit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34500","-1","It veritably seethes with corruption!","","","","Ata'mal Armament","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","1088","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34501","-1","No longer seething with corruption.","","","","Cleansed Ata'mal Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34502","-1","","","","","Bloodberry","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34503","-1","","","","","Box of Adamantite Shells","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34504","-1","Warning: Contains Explosives.","","","","Adamantite Shell Machine","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6250","25000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34505","-1","","","","","Monster - Sword, 1H Blood Elf A03 Red - High Red Glow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34506","-1","","","","","Monster - Axe, 1H Blood Elf A02 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34507","-1","","","","","Monster - Axe, 1H Blood Elf A02 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34508","-1","","","","","Monster - Axe, 1H Blood Elf A01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34509","-1","","","","","Monster - Axe, 1H Blood Elf A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34510","-1","","","","","Monster - Axe, 1H Blood Elf A01 Green","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34511","-1","","","","","Monster - Axe, 1H Blood Elf A01 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34512","-1","","","","","Monster - Axe, 1H Blood Elf A03","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34513","-1","","","","","Monster - Axe, 1H Blood Elf A03 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34514","-1","","","","","Monster - Axe, 1H Blood Elf A03 Purple","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34515","-1","","","","","Monster - Axe, 1H Blood Elf A03 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34516","-1","","","","","Monster - Mace, Blood Elf A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34517","-1","","","","","Monster - Mace, Blood Elf A02 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34518","-1","","","","","Golden Pig Coin","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34519","-1","","","","","Silver Pig Coin","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34520","-1","","","","","Monster - Axe, Draenei A01 Amethyst","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34521","-1","","","","","Monster - Axe, Draenei A01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34522","-1","","","","","Monster - Axe, Draenei A01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34523","-1","","","","","Monster - Axe, Draenei A01 Ice","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34524","-1","","","","","Monster - Axe, Draenei D01 Blue","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34525","-1","","","","","Monster - Axe, Draenei D01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34526","-1","","","","","Monster - Axe, Draenei D01 Ice","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34527","-1","","","","","Belt of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3098","0","0","0","0","675","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","21","29","33","14","0","0","0","0","0","0","70" +"34528","-1","","","","","Cord of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","674","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","30","18","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","19","33","21","29","14","0","0","0","0","0","70" +"34529","-1","","","","","Vengeful Gladiator's Longbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","146","-1","0","0","223","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","24","16","13","0","0","0","0","0","0","0","70" +"34530","-1","","","","","Vengeful Gladiator's Rifle","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","146","-1","0","0","223","0","0","0","0","336","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","24","16","13","0","0","0","0","0","0","0","70" +"34531","-1","","","","","Monster - Sword, 1H Shattered Sun Trainee","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34532","-1","","","","","Monster - Shield, Shattered Sun Trainee","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34533","-1","The crystal pulses with a gentle vibration.","","","","Astromancer's Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34534","-1","","","","","Monster - Fire Arrow (Not Arrow, Do Not Reuse)","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","300","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","1","0","0","0","0","0","0","0","0","0","0","0","1" +"34535","-1","","","","","Azure Whelpling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34536","-1","","","","","Monster - Mace2H, Draenei A02 Magenta (High Purple Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34537","-1","","","","","Bloodberry Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34538","-1","","","","","Blessed Weapon Coating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34539","-1","","","","","Righteous Weapon Coating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1500","6000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34540","-1","","","","","Vengeful Gladiator's Battle Staff","0.4","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","146","-1","0","0","214","0","0","0","0","322","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","62","28","46","29","46","0","0","0","0","0","70" +"34541","-1","","","","","Belt of the Malefic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","670","0","0","0","0","0","0","0","154","256","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","21","5","18","30","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","29","20","29","25","0","0","0","0","0","70" +"34542","-1","","","","","Skyshatter Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","684","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","30","5","21","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","30","29","19","0","0","0","0","0","0","70" +"34543","-1","","","","","Skyshatter Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","683","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","20","30","23","21","0","0","0","0","0","0","70" +"34544","-1","Chaotic energy pulses through this object.","","","","Essence of the Immortals","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"34545","-1","","","","","Skyshatter Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2857","0","0","0","0","682","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","4","37","32","36","5","7","-1","-1","-1","-1","0","0","0","0","6","4","0","43","22","28","29","15","24","0","0","0","0","70" +"34546","-1","","","","","Onslaught Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","3015","0","0","0","0","672","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","1081","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","37","32","36","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","43","26","40","26","0","0","0","0","0","0","70" +"34547","-1","","","","","Onslaught Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","673","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","1081","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","12","37","13","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","64","24","28","40","0","0","0","0","0","0","70" +"34548","-1","","","","","Cache of the Shattered Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"34549","-1","","","","","Gronnstalker's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","2902","0","0","0","0","669","0","0","0","0","0","0","0","154","4","0","0","0","0","0","0","0","0","0","0","0","0","605","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","31","5","32","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","24","17","19","21","0","0","0","0","0","70" +"34550","-1","Don't you wish this was real!","","","","Indalamar's Ring of 200 Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","6","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","-56","0","0","0","0","0","0","0","0","0","70" +"34551","-1","Don't you wish this was real!","","","","Indalamar's Ring of 80 mp5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34552","-1","","","","","Monster - Sword, 1H Shattered Sun Archmage","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34553","-1","","","","","Monster - Shield, General Tiras","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34554","-1","","","","","Thunderheart Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","3097","0","0","0","0","678","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","30","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","13","30","29","21","0","0","0","0","0","0","70" +"34555","-1","","","","","Thunderheart Cord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","3152","0","0","0","0","677","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","18","5","30","21","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","13","30","27","29","21","0","0","0","0","0","70" +"34556","-1","","","","","Thunderheart Waistguard","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2925","0","0","0","0","676","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","4","3","31","5","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","38","40","23","20","33","0","0","0","0","0","70" +"34557","-1","","","","","Belt of the Tempest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","671","0","0","0","0","0","0","0","154","128","0","0","0","0","0","0","0","0","0","0","0","0","145","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","18","5","21","30","6","7","-1","-1","-1","-1","0","0","0","0","6","4","0","14","29","17","29","20","19","0","0","0","0","70" +"34558","-1","","","","","Slayer's Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","40","0","0","0","0","0","2902","0","0","0","0","668","0","0","0","0","0","0","0","154","8","0","0","0","0","0","0","0","0","0","0","0","0","272","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","3","32","31","36","7","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","29","13","30","27","21","0","0","0","0","0","70" +"34559","-1","","","","","Lightbringer Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","2884","0","0","0","0","681","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","21","30","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","30","30","17","0","0","0","0","0","0","70" +"34560","-1","","","","","Lightbringer Stompers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","2925","0","0","0","0","679","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","12","13","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","58","0","23","30","0","0","0","0","0","0","70" +"34561","-1","","","","","Lightbringer Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","2902","0","0","0","0","680","0","0","0","0","0","0","0","154","2","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","37","36","32","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","42","19","27","40","22","0","0","0","0","0","70" +"34562","-1","","","","","Boots of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3098","0","0","0","0","675","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","30","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","27","30","29","19","0","0","0","0","0","0","70" +"34563","-1","","","","","Treads of Absolution","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","674","0","0","0","0","0","0","0","154","16","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","7","0","0","1","0","7","5","6","30","21","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","24","30","22","30","16","0","0","0","0","0","70" +"34564","-1","","","","","Boots of the Malefic","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","670","0","0","0","0","0","0","0","154","256","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","18","5","21","30","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","26","16","29","24","0","0","0","0","0","70" +"34565","-1","","","","","Skyshatter Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","2881","0","0","0","0","683","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","16","30","24","21","0","0","0","0","0","0","70" +"34566","-1","","","","","Skyshatter Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","3153","0","0","0","0","684","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","21","5","30","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","23","30","30","21","0","0","0","0","0","0","70" +"34567","-1","","","","","Skyshatter Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","3015","0","0","0","0","682","0","0","0","0","0","0","0","154","64","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","4","37","5","32","36","7","-1","-1","-1","-1","0","0","0","0","8","4","0","43","29","20","30","20","22","0","0","0","0","70" +"34568","-1","","","","","Onslaught Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","2925","0","0","0","0","673","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","12","37","13","14","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","64","25","26","30","25","0","0","0","0","0","70" +"34569","-1","","","","","Onslaught Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","75","0","0","0","0","0","3015","0","0","0","0","672","0","0","0","0","0","0","0","154","1","0","0","0","0","0","0","0","0","0","0","0","0","1322","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","1","0","0","1","0","4","32","31","36","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","44","36","25","30","0","0","0","0","0","0","70" +"34570","-1","","","","","Gronnstalker's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","70","0","0","0","0","0","3149","0","0","0","0","669","0","0","0","0","0","0","0","154","4","0","0","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","3","31","5","32","7","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","14","21","21","21","0","0","0","0","0","70" +"34571","-1","","","","","Thunderheart Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","3097","0","0","0","0","678","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","30","5","6","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","19","32","24","22","0","0","0","0","0","0","70" +"34572","-1","","","","","Thunderheart Footwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","2884","0","0","0","0","677","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","30","5","21","7","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","13","30","28","21","0","0","0","0","0","0","70" +"34573","-1","","","","","Thunderheart Treads","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","2925","0","0","0","0","676","0","0","0","0","0","0","0","154","1024","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","4","3","7","5","37","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","35","35","54","18","20","0","0","0","0","0","70" +"34574","-1","","","","","Boots of the Tempest","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","671","0","0","0","0","0","0","0","154","128","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","18","5","6","21","30","7","-1","-1","-1","-1","0","0","0","0","8","4","0","15","29","20","20","25","21","0","0","0","0","70" +"34575","-1","","","","","Slayer's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","60","0","0","0","0","0","2941","0","0","0","0","668","0","0","0","0","0","0","0","154","8","0","0","0","0","0","0","0","0","0","0","0","0","332","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","7","31","37","32","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","24","28","24","16","0","0","0","0","0","70" +"34576","-1","","","","","Battlemaster's Cruelty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","32","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"34577","-1","","","","","Battlemaster's Depravity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","21","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"34578","-1","","","","","Battlemaster's Determination","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34579","-1","","","","","Battlemaster's Audacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34580","-1","","","","","Battlemaster's Perseverance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34581","-1","","","","","Mysterious Arrow","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","12","10000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","967","0","0","120","-1","0","0","46","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34582","-1","","","","","Mysterious Shell","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","12","10000","200","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","967","0","0","120","-1","0","0","46","0","0","0","0","47","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","24","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34583","-1","","","","","Aldor Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34584","-1","","","","","Scryer Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34585","-1","","","","","Scryer Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34586","-1","","","","","Monster - Shield, Shattered Sun D01 Green","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34587","-1","","","","","Aldor Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34588","-1","","","","","Monster - Shield, Shattered Sun D01 Purple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34589","-1","","","","","Monster - Shield, Shattered Sun D01 Red","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34590","-1","","","","","Monster - Shield, Shattered Sun D01 Yellow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34591","-1","","","","","Monster - Shield, Shattered Sun D01 White","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","7","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","14","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34592","-1","","","","","Aldor Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34593","-1","","","","","Scryer Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34594","-1","","","","","Scryer Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34595","-1","","","","","Aldor Supplies Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34596","-1","","","","","Monster - Sword, 1H Blood Elf A02 Red (High Red Flame)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34599","-1","","","","","Juggling Torch","0","600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","40","40","0","0","0","5","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34601","-1","","","","","Shoulderplates of Everlasting Pain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","61631","308159","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1087","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","4","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","30","33","21","0","0","0","0","0","0","0","70" +"34602","-1","","","","","Eversong Cuffs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29513","147565","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","12","20","15","0","0","0","0","0","0","0","70" +"34603","-1","","","","","Distracting Blades","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36689","146756","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","115","-1","0","0","126","0","0","0","0","189","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","3","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","14","10","0","0","0","0","0","0","0","0","70" +"34604","-1","","","","","Jaded Crystal Dagger","0.6","0","-46.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","118908","594542","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","115","32767","0","0","110","0","0","0","0","205","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","22","19","18","0","0","0","0","0","0","0","70" +"34605","-1","","","","","Breastplate of Fierce Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85715","428578","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2864","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","1450","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","22","32","22","0","0","0","0","0","0","0","70" +"34606","-1","","","","","Edge of Oppression","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122873","614366","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","115","32767","0","0","79","0","0","0","0","148","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","25","17","0","0","0","0","0","0","0","0","70" +"34607","-1","","","","","Fel-tinged Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33469","167348","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","146","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","18","20","21","0","0","0","0","0","0","0","70" +"34608","-1","","","","","Rod of the Blazing Light","0.4","0","-46.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","139999","699996","1","1","1","0","24580","0","0","0","120","0","0","0","0","0","2890","0","0","0","0","0","0","0","0","3200","0","0","0","115","-1","0","0","291","0","0","0","0","438","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","2","2","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","36","32","41","0","0","0","0","0","0","0","70" +"34609","-1","","","","","Quickening Blade of the Prince","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","121317","606588","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","125","-1","0","0","96","0","0","0","0","180","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","27","0","0","0","0","0","0","0","0","0","70" +"34610","-1","","","","","Scarlet Sin'dorei Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48709","243546","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","210","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","31","22","36","0","0","0","0","0","0","0","70" +"34611","-1","","","","","Cudgel of Consecration","0.6","0","-50.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122241","611208","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","1900","0","0","0","125","32767","0","0","122","0","0","0","0","228","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","3","1","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","15","20","18","0","0","0","0","0","0","0","70" +"34612","-1","","","","","Greaves of the Penitent Knight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64300","321500","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","1080","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","21","25","0","0","0","0","0","0","0","0","70" +"34613","-1","","","","","Shoulderpads of the Silvermoon Retainer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46191","230959","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","296","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","35","32","23","0","0","0","0","0","0","0","70" +"34614","-1","","","","","Tunic of the Ranger Lord","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","74180","370901","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","125","32767","0","0","0","0","0","0","0","0","0","0","0","0","879","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","45","34","23","23","0","0","0","0","0","0","70" +"34615","-1","","","","","Netherforce Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86871","434358","1","1","1","0","24580","0","0","0","165","0","0","0","0","0","2927","0","0","0","0","0","0","0","0","0","0","0","0","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","1571","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","1","0","0","1","0","4","7","32","31","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","44","42","30","18","0","0","0","0","0","0","70" +"34616","-1","","","","","Breeching Comet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","124570","622853","1","1","1","0","24580","0","0","0","105","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","2600","0","0","0","125","-1","0","0","167","0","0","0","0","312","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","18","15","0","0","0","0","0","0","0","0","70" +"34622","-1","","","","","Spinesever","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","4194304","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","100","-1","0","0","128","0","0","0","0","193","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","2","0","31","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","10","11","12","0","0","0","0","0","0","0","70" +"34625","-1","Azerothian diamonds are eternal.","","","","Kharmaa's Ring of Fate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75000","300000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","3","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","19","14","14","0","0","0","0","0","0","0","70" +"34626","-1","","","","","Prototype Tonk Controller","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33796","135186","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34627","-1","Fits into a tonk Overdrive socket.","","","","Heavy Tonk Armor","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34646","-1","","","","","[PH] Everburning Elixir","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","10","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34664","-1","","","","","Sunmote","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","22500","90000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34665","-1","","","","","Bombardier's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","91803","459015","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","1077","0","0","115","-1","0","0","90","0","0","0","0","168","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","13","3","0","14","11","12","0","0","0","0","0","0","0","70" +"34666","-1","","","","","The Sunbreaker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","92128","460643","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","1077","0","0","115","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","31","7","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","13","3","0","14","11","12","0","0","0","0","0","0","0","70" +"34667","-1","","","","","Archmage's Guile","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83638","418194","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","1077","0","0","115","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","21","5","7","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","21","3","0","20","11","12","0","0","0","0","0","0","0","70" +"34670","-1","","","","","Seeker's Gavel","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","86938","434690","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","1077","0","0","115","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","18","5","7","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","21","3","0","11","8","30","0","0","0","0","0","0","0","70" +"34671","-1","","","","","K'iru's Presage","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87263","436317","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2300","1077","0","0","115","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","21","3","0","13","16","8","0","0","0","0","0","0","0","70" +"34672","-1","","","","","Inuuro's Blade","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","87589","437945","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","1077","0","0","115","-1","0","0","80","0","0","0","0","121","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","37","31","12","-1","-1","-1","-1","-1","-1","0","6","0","0","13","3","0","21","11","8","13","0","0","0","0","0","0","0" +"34673","-1","","","","","Legionfoe","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","109893","549466","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3700","1077","0","0","115","-1","0","0","276","0","0","0","0","414","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","4","37","-1","-1","-1","-1","-1","-1","0","6","0","0","17","3","0","45","26","31","19","0","0","0","0","0","0","70" +"34674","-1","","","","","Truestrike Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","66173","330867","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","1077","0","0","115","-1","0","0","138","0","0","0","0","207","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","26","3","2","10","12","6","0","0","0","0","0","0","0","70" +"34675","-1","","","","","Sunward Crest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75568","377842","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","4872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","15","18","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","14","4","0","31","18","13","0","0","0","0","0","0","0","70" +"34676","-1","","","","","Dawnforged Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","75846","379231","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","4872","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","13","31","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","14","4","0","31","18","13","0","0","0","0","0","0","0","70" +"34677","-1","","","","","Shattered Sun Pendant of Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58188","232752","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","19","0","0","0","0","0","0","0","0","0","70" +"34678","-1","","","","","Shattered Sun Pendant of Acumen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58188","232752","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","19","18","0","0","0","0","0","0","0","0","70" +"34679","-1","","","","","Shattered Sun Pendant of Might","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58188","232752","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","19","18","0","0","0","0","0","0","0","0","70" +"34680","-1","","","","","Shattered Sun Pendant of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58188","232752","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","31","37","-1","-1","-1","-1","-1","-1","-1","0","7","0","0","2","4","0","48","13","18","0","0","0","0","0","0","0","70" +"34683","-1","","","","","Sandals of Summer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34684","-1","","","","","Handful of Summer Petals","0","864000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","20","0","0","0","1","0","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34685","-1","","","","","Vestment of Summer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","192","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34686","-1","","","","","Brazier of Dancing Flames","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","67108928","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34689","-1","Teaches you how to cut a Chaotic Skyfire Diamond.","","","","Design: Chaotic Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34697","-1","","","","","Bindings of Raging Fire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16782","83911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","9","10","18","0","0","0","0","0","0","0","70" +"34698","-1","","","","","Bracers of the Forest Stalker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25173","125867","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","285","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","3","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","16","10","10","0","0","0","0","0","0","0","70" +"34699","-1","","","","","Sun-forged Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","83911","419558","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","13","15","0","0","0","0","0","0","0","0","70" +"34700","-1","","","","","Gauntlets of Divine Blessings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29536","147684","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","15","17","16","0","0","0","0","0","0","0","70" +"34701","-1","","","","","Leggings of the Betrayed","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41955","209779","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","3267","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","3","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","3","0","25","26","18","0","0","0","0","0","0","0","70" +"34702","-1","","","","","Cloak of Swift Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25300","126500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","74","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","5","30","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","18","0","0","0","0","0","0","0","0","70" +"34703","-1","","","","","Latro's Dancing Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","84659","423297","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","737","0","0","0","2600","0","0","0","115","-1","0","0","130","0","0","0","0","243","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","3","0","21","0","0","0","0","0","0","0","0","0","70" +"34704","-1","","","","","Band of Arcane Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","14846","59387","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","30","7","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","18","18","12","0","0","0","0","0","0","0","70" +"34705","-1","","","","","Bracers of Divine Infusion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16782","83911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","15","12","0","0","0","0","0","0","0","0","70" +"34706","-1","","","","","Band of Determination","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55035","220141","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","37","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","35","17","0","0","0","0","0","0","0","0","70" +"34707","-1","","","","","Boots of Resuscitation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31466","157334","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","201","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","8","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","15","15","0","0","0","0","0","0","0","0","70" +"34708","-1","","","","","Cloak of the Coming Night","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25173","125867","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","36","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","18","18","12","0","0","0","0","0","0","0","70" +"34712","-1","","","","","Prismatic Signet","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","6646","26584","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","2156","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","0","0","0","0","0","0","0","0","0","0","70" +"34776","-1","","","","","QA Test Ring +100% Stun Resist","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34780","-1","","","","","Naaru Ration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250","5000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"34783","-1","","","","","Nightstrike","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43988","175952","1","1","1","4194304","24580","0","0","0","240","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","115","-1","0","0","113","0","0","0","0","171","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","31","37","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","3","0","16","10","10","0","0","0","0","0","0","0","70" +"34788","-1","","","","","Duskhallow Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26567","132835","1","1","1","0","24580","0","0","0","50","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","3","0","12","10","24","0","0","0","0","0","0","0","70" +"34789","-1","","","","","Bracers of Slaughter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","29536","147684","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","509","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","4","7","32","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","3","0","19","15","18","0","0","0","0","0","0","0","70" +"34790","-1","","","","","Battle-mace of the High Priestess","0.6","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","89207","446039","1","1","1","0","24580","0","0","0","90","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","2300","0","0","0","115","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","0","0","3","1","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","21","3","0","9","13","15","0","0","0","0","0","0","0","70" +"34791","-1","","","","","Gauntlets of the Tranquil Waves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25173","125867","1","1","1","0","24580","0","0","0","40","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","2","2","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","3","0","12","10","24","0","0","0","0","0","0","0","70" +"34792","-1","","","","","Cloak of the Betrayed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25173","125867","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","78","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","3","0","12","12","13","0","0","0","0","0","0","0","70" +"34793","-1","","","","","Cord of Reconstruction","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","16782","83911","1","1","1","0","24580","0","0","0","30","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","115","32767","0","0","0","0","0","0","0","0","0","0","0","0","88","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","3","0","12","16","18","0","0","0","0","0","0","0","70" +"34794","-1","","","","","Axe of Shattered Dreams","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104889","524447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3800","0","0","0","115","-1","0","0","283","0","0","0","0","426","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","48","0","0","0","0","0","0","0","0","0","70" +"34795","-1","","","","","Helm of Sanctification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43969","219848","1","1","1","0","24580","0","0","0","80","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","3","2","2","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","18","16","0","0","0","0","0","0","0","0","70" +"34796","-1","","","","","Robes of Summer Flame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41955","209779","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2865","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","3","4","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","3","0","15","18","26","0","0","0","0","0","0","0","70" +"34797","-1","","","","","Sun-infused Focus Staff","0.4","0","-30.3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","104889","524447","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","2400","0","0","0","115","-1","0","0","179","0","0","0","0","269","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","2","3","3","2","2","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","3","0","37","27","23","0","0","0","0","0","0","0","70" +"34798","-1","","","","","Band of Celerity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7102","28410","1","1","1","524288","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","3","0","25","18","0","0","0","0","0","0","0","0","70" +"34799","-1","","","","","Hauberk of the War Bringer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64477","322385","1","1","1","0","24580","0","0","0","140","0","0","0","0","0","2936","0","0","0","0","0","0","0","0","0","0","0","0","110","32767","0","0","0","0","0","0","0","0","0","0","0","0","778","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","24","25","17","20","0","0","0","0","0","0","70" +"34805","-1","","","","","QA Test Ring +100 Spell Hit Rating","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7888","31555","1","1","1","16","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","130","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","18","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","100","0","0","0","0","0","0","0","0","0","70" +"34807","-1","","","","","Sunstrider Warboots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","56310","281550","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","955","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","30","29","0","0","0","0","0","0","0","0","70" +"34808","-1","","","","","Gloves of Arcane Acuity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21492","107461","1","1","1","0","24580","0","0","0","35","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","116","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","7","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","16","20","18","0","0","0","0","0","0","0","70" +"34809","-1","","","","","Sunrage Treads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42681","213405","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","110","1535","0","0","0","0","0","0","0","0","0","0","0","0","240","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","28","0","0","0","0","0","0","0","0","70" +"34810","-1","","","","","Cloak of Blade Turning","0","0","294","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32238","161192","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","1","0","0","16","4","0","31","22","0","0","0","0","0","0","0","0","70" +"34822","-1","","","","","Ancient Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","250000","1000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34823","-1","The initials C.S. are etched in the back.","","","","Beautiful Glass Eye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","180000","720000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34824","-1","A beautiful piece depicting a man in priestly garb.","","","","Silver Statuette","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","150000","600000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34825","-1","","","","","Mithril Shaving Razor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","110000","440000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34826","-1","","","","","Gold Wedding Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","150000","600000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34827","-1","","","","","Noble's Monocle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","112803","564018","1","100000","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34828","-1","","","","","Antique Silver Cufflinks","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","113219","566099","1","150000","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","9","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34829","-1","","","","","Ornate Drinking Stein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","110000","440000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34831","-1","Matches a Blue Socket.","","","","Eye of the Sea","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","524288","24580","0","0","0","0","0","0","0","0","861","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34832","-1","","","","","Captain Rumsey's Lager","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34833","-1","","","","","Unlit Torches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34834","-1","Teaches you how to brew Captain Rumsey's Lager.","","","","Recipe: Captain Rumsey's Lager","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","185","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34835","-1","","","","","Omar's Test Item","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34836","-1","","","","","Spun Truesilver Fishing Line","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","2000","8000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","356","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34837","-1","Vastly superior to the 1 ring.","","","","The 2 Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","11300","45200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","135","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","5","0","0","2","0","4","3","7","6","5","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","22","22","22","22","0","0","0","0","0","70" +"34838","-1","","","","","Mariner's Log","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","670","2680","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3044","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34839","-1","","","","","Piece of Polished Driftwood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34840","-1","","","","","Broken Spyglass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34841","-1","","","","","Salvaged Scrap Metal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","4000","16000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34843","-1","","","","","Giant Shark Tooth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34845","-1","","","","","Pit Lord's Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","0" +"34846","-1","","","","","Black Sack of Gems","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4762","19050","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"34847","-1","","","","","Annihilator Holo-Gogs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48800","244003","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","5","7","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","37","41","42","0","0","0","0","0","0","0","70" +"34848","-1","","","","","Bracers of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34850","-1","","","","","Midsummer Ground Flower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25","100","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34851","-1","","","","","Bracers of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34852","-1","","","","","Bracers of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34853","-1","","","","","Belt of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34854","-1","","","","","Belt of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34855","-1","","","","","Belt of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34856","-1","","","","","Boots of the Forgotten Conqueror","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","274","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34857","-1","","","","","Boots of the Forgotten Protector","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","69","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34858","-1","","","","","Boots of the Forgotten Vanquisher","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","1160","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"34859","-1","","","","","Razor Sharp Fillet Knife","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42800","214001","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","115","-1","0","0","55","0","0","0","0","102","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","70" +"34860","-1","","","","","Rusted Lock","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","17000","68000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34861","-1","","","","","Sharpened Fish Hook","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","137","550","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","356","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34862","-1","","","","","Practice Torches","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","66","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","4","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34863","-1","","","","","Bag of Fishing Treasures","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34864","-1","","","","","Baby Crocolisk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34865","-1","","","","","Blackfin Darter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34866","-1","","","","","Giant Freshwater Shrimp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34867","-1","","","","","Monstrous Felblood Snapper","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34868","-1","","","","","World's Largest Mudfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34872","-1","Teaches you how to shatter a Void Crystal into two Large Prismatic Shards.","","","","Formula: Void Shatter","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34873","-1","","","","","Monster - Sunwell Raid - Bow, D01 Green","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","8","1","1","1","0","24580","0","0","0","18","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","3","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","15","0","2","0","0","0","0","0","0","0","0","0","0","1" +"34874","-1","","","","","Monster - Sunwell Raid - Polearm, Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","1","-1","94","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34875","-1","","","","","Monster - Sunwell Raid - Dagger, D01 Yellow","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34876","-1","","","","","Monster - Sunwell Raid - Sword, 2H DarkRed","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34877","-1","","","","","Monster - Sunwell Raid - Staff, D02 Silver","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34878","-1","","","","","Monster - Sunwell Raid - Staff, D03 Purple","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34879","-1","","","","","Monster - Sunwell Raid - Sword, 1H D02 Dark","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34880","-1","","","","","Monster - Sword, 1H Outland Raid D02","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34881","-1","","","","","Monster - Item, Offhand Outland Raid D01","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34882","-1","","","","","Monster - Staff, Outland Raid D06, Blue","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34883","-1","","","","","Monster - Axe, 1H Outland Raid D02","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34884","-1","","","","","Monster - Staff, Outland Raid D03","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34885","-1","","","","","Monster - Mace, Outland Raid D03","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34886","-1","","","","","Monster - Sword, 1H Outland Raid D05","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","1","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"34887","-1","","","","","Angelista's Revenge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","29","28","0","0","0","0","0","0","0","0","70" +"34888","-1","","","","","Ring of the Stalwart Protector","0","0","392","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","13","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","45","28","0","0","0","0","0","0","0","0","70" +"34889","-1","","","","","Fused Nethergon Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","19","28","0","0","0","0","0","0","0","70" +"34890","-1","","","","","Anveena's Touch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","27","19","0","0","0","0","0","0","0","0","70" +"34891","-1","","","","","The Blade of Harbingers","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3500","0","0","0","146","-1","0","0","375","0","0","0","0","563","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","32","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","55","53","0","0","0","0","0","0","0","0","70" +"34892","-1","","","","","Crossbow of Relentless Strikes","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2800","0","0","0","146","-1","0","0","182","0","0","0","0","339","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","32","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","18","14","0","0","0","0","0","0","0","0","70" +"34893","-1","","","","","Vanir's Right Fist of Brutality","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","146","-1","0","0","180","0","0","0","0","335","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","36","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","23","21","0","0","0","0","0","0","0","0","70" +"34894","-1","","","","","Blade of Serration","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","146","32767","0","0","130","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","32","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","24","30","0","0","0","0","0","0","0","0","70" +"34895","-1","","","","","Scryer's Blade of Focus","0.6","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","146","32767","0","0","130","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","42","28","0","0","0","0","0","0","0","0","70" +"34896","-1","","","","","Gavel of Naaru Blessings","0.6","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","146","-1","0","0","115","0","0","0","0","215","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","42","28","0","0","0","0","0","0","0","0","70" +"34898","-1","","","","","Staff of the Forest Lord","0.4","0","-61.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","146","32767","0","0","321","0","0","0","0","483","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","50","52","78","0","0","0","0","0","0","0","70" +"34900","-1","","","","","Shroud of Nature's Harmony","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","40","46","0","0","0","0","0","0","0","70" +"34901","-1","","","","","Grovewalker's Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","2866","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","42","44","0","0","0","0","0","0","0","70" +"34902","-1","","","","","Oakleaf-Spun Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","8","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","30","30","0","0","0","0","0","0","0","70" +"34903","-1","","","","","Embrace of Starlight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","34","38","26","36","0","0","0","0","0","0","70" +"34904","-1","","","","","Barbed Gloves of the Sage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","5","18","6","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","28","30","15","25","0","0","0","0","0","0","70" +"34905","-1","","","","","Crystalwind Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","7","5","6","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","36","40","32","28","0","0","0","0","0","0","70" +"34906","-1","","","","","Embrace of Everlasting Prowess","0","0","252","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","4","3","7","5","36","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","40","49","52","23","20","0","0","0","0","0","70" +"34907","-1","","","","","Shattered Gem Fragments","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"34910","-1","","","","","Tameless Breeches","0","0","266","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","4","3","7","5","36","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","45","52","20","17","0","0","0","0","0","70" +"34911","-1","","","","","Handwraps of the Aggressor","0","0","196","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3149","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","277","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","4","3","7","5","36","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","30","35","36","19","13","0","0","0","0","0","70" +"34912","-1","","","","","Scaled Drakeskin Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","3","7","5","36","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","47","39","26","25","0","0","0","0","0","0","70" +"34914","-1","","","","","Leggings of the Pursuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2893","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","3","7","5","31","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","44","36","30","15","0","0","0","0","0","0","70" +"34916","-1","","","","","Gauntlets of Rapidity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3149","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","617","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","3","7","5","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","34","30","19","16","0","0","0","0","0","0","70" +"34917","-1","","","","","Shroud of the Lore`nial","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","34","35","33","29","0","0","0","0","0","0","70" +"34918","-1","","","","","Legwraps of Sweltering Flame","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","36","30","25","0","0","0","0","0","0","70" +"34919","-1","","","","","Boots of Incantations","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","6","18","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","37","26","23","17","0","0","0","0","0","0","70" +"34921","-1","","","","","Ecclesiastical Cuirass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","3152","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","52","44","43","0","0","0","0","0","0","0","70" +"34922","-1","","","","","Greaves of Pacification","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","1","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","43","0","0","0","0","0","0","0","0","70" +"34923","-1","","","","","Waistguard of Reparation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","3152","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","36","34","28","0","0","0","0","0","0","0","70" +"34924","-1","","","","","Gown of Spiritual Wonder","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","36","35","50","0","0","0","0","0","0","0","70" +"34925","-1","","","","","Adorned Supernal Legwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","4","2","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","27","40","42","0","0","0","0","0","0","0","70" +"34926","-1","","","","","Slippers of Dutiful Mending","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","3097","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","162","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","28","25","34","0","0","0","0","0","0","0","70" +"34927","-1","","","","","Tunic of the Dark Hour","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","444","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","44","51","34","0","0","0","0","0","0","0","70" +"34928","-1","","","","","Trousers of the Scryers' Retainer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","90","0","0","0","0","0","2860","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","388","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","8","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","43","45","30","0","0","0","0","0","0","0","70" +"34929","-1","","","","","Belt of the Silent Path","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","40","0","0","0","0","0","3149","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","249","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","34","33","23","0","0","0","0","0","0","0","70" +"34930","-1","","","","","Wave of Life Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","51","0","0","0","0","0","0","0","0","70" +"34931","-1","","","","","Runed Scales of Antiquity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2881","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","45","38","0","0","0","0","0","0","0","0","70" +"34932","-1","","","","","Clutch of the Soothing Breeze","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","5","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","31","34","0","0","0","0","0","0","0","0","70" +"34933","-1","","","","","Hauberk of Whirling Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","140","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","988","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","39","34","51","0","0","0","0","0","0","0","70" +"34934","-1","","","","","Rushing Storm Kilt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","105","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","864","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","39","38","38","0","0","0","0","0","0","0","70" +"34935","-1","","","","","Aftershock Waistguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","50","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","556","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","30","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","27","27","34","0","0","0","0","0","0","0","70" +"34936","-1","","","","","Tormented Demonsoul Robes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","100","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","32767","0","0","0","0","0","0","0","0","0","0","0","0","236","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","39","38","50","0","0","0","0","0","0","0","70" +"34937","-1","","","","","Corrupted Soulcloth Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2900","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","207","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","37","33","43","0","0","0","0","0","0","0","70" +"34938","-1","","","","","Enslaved Doomguard Soulgrips","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","35","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","148","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","33","27","30","0","0","0","0","0","0","0","70" +"34939","-1","","","","","Chestplate of Stoicism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","78","51","34","0","0","0","0","0","0","0","70" +"34940","-1","","","","","Sunguard Legplates","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2876","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","2","4","0","0","1","0","0","1","0","7","12","13","37","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","78","43","35","23","0","0","0","0","0","0","70" +"34941","-1","","","","","Girdle of the Fearless","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","37","31","12","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","58","22","23","34","0","0","0","0","0","0","70" +"34942","-1","","","","","Breastplate of Ire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","4","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","52","64","51","0","0","0","0","0","0","0","70" +"34943","-1","","","","","Legplates of Unending Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2879","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","3","4","0","0","1","0","0","1","0","4","7","31","36","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","52","48","25","43","0","0","0","0","0","0","70" +"34944","-1","","","","","Girdle of Seething Rage","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","55","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","993","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","4","7","36","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","4","0","40","55","30","0","0","0","0","0","0","0","70" +"34945","-1","","","","","Shattrath Protectorate's Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","165","0","0","0","0","0","2926","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1765","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","1","0","0","1","0","7","12","18","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","78","26","34","0","0","0","0","0","0","0","70" +"34946","-1","","","","","Inscribed Legplates of the Aldor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","120","0","0","0","0","0","2895","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1544","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","1","0","0","1","0","7","12","13","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","78","25","43","0","0","0","0","0","0","0","70" +"34947","-1","","","","","Blue's Greaves of the Righteous Guardian","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","141","1535","0","0","0","0","0","0","0","0","0","0","0","0","1213","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","1","0","0","1","0","7","18","15","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","58","23","34","0","0","0","0","0","0","0","70" +"34949","-1","","","","","Swift Blade of Uncertainty","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","32767","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","24","30","0","0","0","0","0","0","0","0","70" +"34950","-1","","","","","Vanir's Left Fist of Savagery","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","146","-1","0","0","108","0","0","0","0","201","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","36","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","23","21","0","0","0","0","0","0","0","0","70" +"34951","-1","","","","","Vanir's Left Fist of Brutality","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","146","-1","0","0","180","0","0","0","0","335","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","36","31","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","23","21","0","0","0","0","0","0","0","0","70" +"34952","-1","","","","","The Mutilator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","146","32767","0","0","130","0","0","0","0","241","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","31","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","24","30","0","0","0","0","0","0","0","0","70" +"34953","-1","","","","","Earthen Ring Magma Totem","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"34955","-1","","","","","Scorched Stone","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"34985","-1","","","","","Brutal Gladiator's Baton of Light","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","154","-1","0","0","263","0","0","0","0","490","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","20","15","14","0","0","0","0","0","0","0","70" +"34986","-1","","","","","Brutal Gladiator's Barrier","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","6662","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","37","27","25","0","0","0","0","0","0","0","70" +"34987","-1","","","","","Brutal Gladiator's Battle Staff","0.4","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","154","-1","0","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","32","50","29","50","0","0","0","0","0","70" +"34988","-1","","","","","Brutal Gladiator's Bonecracker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"34989","-1","","","","","Brutal Gladiator's Bonegrinder","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","154","-1","0","0","404","0","0","0","0","606","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","50","50","33","19","0","0","0","0","0","70" +"34990","-1","","","","","Brutal Gladiator's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","586","0","0","0","0","0","0","0","159","4","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","5","4","0","70","32","29","21","25","16","0","0","0","0","70" +"34991","-1","","","","","Brutal Gladiator's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","159","4","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","56","37","23","21","19","0","0","0","0","0","70" +"34992","-1","","","","","Brutal Gladiator's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","586","0","0","0","0","0","0","0","159","4","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","1","4","0","67","37","30","22","27","17","0","0","0","0","70" +"34993","-1","","","","","Brutal Gladiator's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","586","0","0","0","0","0","0","0","159","4","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","31","-1","-1","-1","-1","0","0","0","0","7","4","0","70","38","29","33","23","17","0","0","0","0","70" +"34994","-1","","","","","Brutal Gladiator's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","586","0","0","0","0","0","0","0","159","4","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","53","39","20","21","16","0","0","0","0","0","70" +"34995","-1","","","","","Brutal Gladiator's Chopper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"34996","-1","","","","","Brutal Gladiator's Cleaver","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","31","22","12","9","0","0","0","0","0","0","70" +"34997","-1","","","","","Brutal Gladiator's Decapitator","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","154","-1","0","0","404","0","0","0","0","606","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","50","33","19","0","0","0","0","0","0","70" +"34998","-1","","","","","Brutal Gladiator's Dragonhide Gloves","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","31","-1","-1","-1","-1","0","0","0","0","10","4","0","48","35","25","36","22","13","0","0","0","0","70" +"34999","-1","","","","","Brutal Gladiator's Dragonhide Helm","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","584","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","1","4","0","64","36","28","35","25","17","31","0","0","0","70" +"35000","-1","","","","","Brutal Gladiator's Dragonhide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","584","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","7","4","0","61","40","34","41","29","17","18","0","0","0","70" +"35001","-1","","","","","Brutal Gladiator's Dragonhide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","584","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","32","-1","-1","-1","-1","0","0","0","0","3","4","0","47","34","20","34","21","21","0","0","0","0","70" +"35002","-1","","","","","Brutal Gladiator's Dragonhide Tunic","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","584","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","31","32","-1","-1","-1","0","0","0","0","5","4","0","61","34","26","36","26","16","23","0","0","0","70" +"35003","-1","","","","","Brutal Gladiator's Dreadweave Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","58","33","21","0","0","0","0","0","0","0","70" +"35004","-1","","","","","Brutal Gladiator's Dreadweave Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","568","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","82","32","33","0","0","0","0","0","0","0","70" +"35005","-1","","","","","Brutal Gladiator's Dreadweave Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","568","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","85","39","33","0","0","0","0","0","0","0","70" +"35006","-1","","","","","Brutal Gladiator's Dreadweave Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","568","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","55","18","21","20","0","0","0","0","0","0","70" +"35007","-1","","","","","Brutal Gladiator's Dreadweave Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","568","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","84","28","24","0","0","0","0","0","0","0","70" +"35008","-1","","","","","Brutal Gladiator's Endgame","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","37","25","27","0","0","0","0","0","0","0","70" +"35009","-1","","","","","Brutal Gladiator's Felweave Amice","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","615","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","56","18","23","21","0","0","0","0","0","0","70" +"35010","-1","","","","","Brutal Gladiator's Felweave Cowl","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","615","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","74","21","28","33","0","0","0","0","0","0","70" +"35011","-1","","","","","Brutal Gladiator's Felweave Handguards","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","56","23","26","23","0","0","0","0","0","0","70" +"35012","-1","","","","","Brutal Gladiator's Felweave Raiment","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","615","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","68","21","39","26","0","0","0","0","0","0","70" +"35013","-1","","","","","Brutal Gladiator's Felweave Trousers","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","615","0","0","0","0","0","0","0","159","256","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","74","30","39","30","0","0","0","0","0","0","70" +"35014","-1","","","","","Brutal Gladiator's Gavel","0.6","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","-1","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","18","35","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","33","21","19","18","0","0","0","0","0","0","70" +"35015","-1","","","","","Brutal Gladiator's Greatsword","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3600","0","0","0","154","-1","0","0","404","0","0","0","0","606","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","50","50","33","19","0","0","0","0","0","70" +"35016","-1","","","","","Brutal Gladiator's Grimoire","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","40","23","0","0","0","0","0","0","0","0","70" +"35017","-1","","","","","Brutal Gladiator's Hacker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35018","-1","","","","","Brutal Gladiator's Heavy Crossbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","154","-1","0","0","234","0","0","0","0","351","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","2","27","17","13","0","0","0","0","0","0","0","70" +"35019","-1","","","","","Brutal Gladiator's Idol of Resolve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35020","-1","","","","","Brutal Gladiator's Idol of Steadfastness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35021","-1","","","","","Brutal Gladiator's Idol of Tenacity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35022","-1","","","","","Brutal Gladiator's Kodohide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","49","39","21","0","0","0","0","0","0","0","70" +"35023","-1","","","","","Brutal Gladiator's Kodohide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","685","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","65","45","29","0","0","0","0","0","0","0","70" +"35024","-1","","","","","Brutal Gladiator's Kodohide Legguards","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","685","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","65","50","31","0","0","0","0","0","0","0","70" +"35025","-1","","","","","Brutal Gladiator's Kodohide Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","685","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","29","20","0","0","0","0","0","0","0","70" +"35026","-1","","","","","Brutal Gladiator's Kodohide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","685","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","69","40","27","0","0","0","0","0","0","0","70" +"35027","-1","","","","","Brutal Gladiator's Lamellar Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","582","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","73","36","44","31","0","0","0","0","0","0","70" +"35028","-1","","","","","Brutal Gladiator's Lamellar Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","50","34","34","19","0","0","0","0","0","0","70" +"35029","-1","","","","","Brutal Gladiator's Lamellar Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","582","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","77","34","34","33","0","0","0","0","0","0","70" +"35030","-1","","","","","Brutal Gladiator's Lamellar Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","582","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","77","35","45","35","0","0","0","0","0","0","70" +"35031","-1","","","","","Brutal Gladiator's Lamellar Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","582","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","50","28","32","22","0","0","0","0","0","0","70" +"35032","-1","","","","","Brutal Gladiator's Leather Gloves","0","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","159","8","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","55","37","24","24","0","0","0","0","0","0","70" +"35033","-1","","","","","Brutal Gladiator's Leather Helm","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","577","0","0","0","0","0","0","0","159","8","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","72","36","25","26","17","0","0","0","0","0","70" +"35034","-1","","","","","Brutal Gladiator's Leather Legguards","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","577","0","0","0","0","0","0","0","159","8","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","74","40","30","40","17","0","0","0","0","0","70" +"35035","-1","","","","","Brutal Gladiator's Leather Spaulders","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","577","0","0","0","0","0","0","0","159","8","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","55","39","31","25","0","0","0","0","0","0","70" +"35036","-1","","","","","Brutal Gladiator's Leather Tunic","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","577","0","0","0","0","0","0","0","159","8","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","71","36","25","22","17","0","0","0","0","0","70" +"35037","-1","","","","","Brutal Gladiator's Left Render","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35038","-1","","","","","Brutal Gladiator's Left Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35039","-1","","","","","Brutal Gladiator's Libram of Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35040","-1","","","","","Brutal Gladiator's Libram of Justice","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35041","-1","","","","","Brutal Gladiator's Libram of Vengeance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35042","-1","","","","","Brutal Gladiator's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2874","0","0","0","0","578","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","71","32","35","31","17","0","0","0","0","0","70" +"35043","-1","","","","","Brutal Gladiator's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","58","38","37","22","0","0","0","0","0","0","70" +"35044","-1","","","","","Brutal Gladiator's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","578","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","74","40","39","33","18","0","0","0","0","0","70" +"35045","-1","","","","","Brutal Gladiator's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","578","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","31","-1","-1","-1","-1","0","0","0","0","7","4","0","74","43","41","31","38","17","0","0","0","0","70" +"35046","-1","","","","","Brutal Gladiator's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","578","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","58","30","31","21","0","0","0","0","0","0","70" +"35047","-1","","","","","Brutal Gladiator's Longbow","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","154","-1","0","0","234","0","0","0","0","351","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","4","2","27","17","13","0","0","0","0","0","0","0","70" +"35048","-1","","","","","Brutal Gladiator's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","580","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","61","33","34","28","0","0","0","0","0","0","70" +"35049","-1","","","","","Brutal Gladiator's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","52","28","32","23","0","0","0","0","0","0","70" +"35050","-1","","","","","Brutal Gladiator's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","580","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","74","29","32","32","0","0","0","0","0","0","70" +"35051","-1","","","","","Brutal Gladiator's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","580","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","71","38","34","33","0","0","0","0","0","0","70" +"35052","-1","","","","","Brutal Gladiator's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","580","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","47","26","26","21","0","0","0","0","0","0","70" +"35053","-1","","","","","Brutal Gladiator's Mooncloth Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","56","28","25","0","0","0","0","0","0","0","70" +"35054","-1","","","","","Brutal Gladiator's Mooncloth Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","687","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","82","30","33","0","0","0","0","0","0","0","70" +"35055","-1","","","","","Brutal Gladiator's Mooncloth Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","687","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","77","34","31","0","0","0","0","0","0","0","70" +"35056","-1","","","","","Brutal Gladiator's Mooncloth Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","687","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","56","26","25","0","0","0","0","0","0","0","70" +"35057","-1","","","","","Brutal Gladiator's Mooncloth Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","687","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","68","33","28","0","0","0","0","0","0","0","70" +"35058","-1","","","","","Brutal Gladiator's Mutilator","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","154","-1","0","0","136","0","0","0","0","253","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35059","-1","","","","","Brutal Gladiator's Ornamented Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2951","0","0","0","0","690","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","67","42","42","28","0","0","0","0","0","0","70" +"35060","-1","","","","","Brutal Gladiator's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","60","33","33","18","0","0","0","0","0","0","70" +"35061","-1","","","","","Brutal Gladiator's Ornamented Headcover","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","690","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","71","40","32","32","0","0","0","0","0","0","70" +"35062","-1","","","","","Brutal Gladiator's Ornamented Legplates","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","690","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","69","45","46","35","0","0","0","0","0","0","70" +"35063","-1","","","","","Brutal Gladiator's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","690","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","46","32","32","23","0","0","0","0","0","0","70" +"35064","-1","","","","","Brutal Gladiator's Painsaw","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2200","0","0","0","154","-1","0","0","247","0","0","0","0","371","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","68","51","42","0","0","0","0","0","0","0","70" +"35065","-1","","","","","Brutal Gladiator's Piercing Touch","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","154","-1","0","0","263","0","0","0","0","490","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","19","14","0","0","0","0","0","0","0","0","70" +"35066","-1","","","","","Brutal Gladiator's Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","159","1","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","76","45","45","24","18","0","0","0","0","0","70" +"35067","-1","","","","","Brutal Gladiator's Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","159","1","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","59","42","37","24","0","0","0","0","0","0","70" +"35068","-1","","","","","Brutal Gladiator's Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","567","0","0","0","0","0","0","0","159","1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","68","45","41","25","18","0","0","0","0","0","70" +"35069","-1","","","","","Brutal Gladiator's Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","567","0","0","0","0","0","0","0","159","1","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","77","57","53","22","18","0","0","0","0","0","70" +"35070","-1","","","","","Brutal Gladiator's Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","3205","0","0","0","0","567","0","0","0","0","0","0","0","159","1","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","64","38","35","20","0","0","0","0","0","0","70" +"35071","-1","","","","","Brutal Gladiator's Pummeler","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35072","-1","","","","","Brutal Gladiator's Quickblade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","154","-1","0","0","113","0","0","0","0","211","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35073","-1","","","","","Brutal Gladiator's Redoubt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","6662","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","37","27","25","0","0","0","0","0","0","0","70" +"35074","-1","","","","","Brutal Gladiator's Reprieve","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","3","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","4","0","37","25","27","0","0","0","0","0","0","0","70" +"35075","-1","","","","","Brutal Gladiator's Rifle","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3000","0","0","0","154","-1","0","0","234","0","0","0","0","351","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","3","27","17","13","0","0","0","0","0","0","0","70" +"35076","-1","","","","","Brutal Gladiator's Right Ripper","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35077","-1","","","","","Brutal Gladiator's Ringmail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","140","0","0","0","0","0","2951","0","0","0","0","686","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","1110","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","61","36","36","26","0","0","0","0","0","0","70" +"35078","-1","","","","","Brutal Gladiator's Ringmail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","694","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","53","28","29","22","0","0","0","0","0","0","70" +"35079","-1","","","","","Brutal Gladiator's Ringmail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2878","0","0","0","0","686","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","74","34","31","33","0","0","0","0","0","0","70" +"35080","-1","","","","","Brutal Gladiator's Ringmail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","686","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","971","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","71","38","34","33","0","0","0","0","0","0","70" +"35081","-1","","","","","Brutal Gladiator's Ringmail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","85","0","0","0","0","0","2859","0","0","0","0","686","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","832","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","47","27","24","21","0","0","0","0","0","0","70" +"35082","-1","","","","","Brutal Gladiator's Salvation","0.6","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","-1","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","38","25","21","0","0","0","0","0","0","0","70" +"35083","-1","","","","","Brutal Gladiator's Satin Gloves","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","55","27","25","0","0","0","0","0","0","0","70" +"35084","-1","","","","","Brutal Gladiator's Satin Hood","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","581","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","79","28","32","0","0","0","0","0","0","0","70" +"35085","-1","","","","","Brutal Gladiator's Satin Leggings","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","581","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","82","39","34","0","0","0","0","0","0","0","70" +"35086","-1","","","","","Brutal Gladiator's Satin Mantle","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","581","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","56","27","23","0","0","0","0","0","0","0","70" +"35087","-1","","","","","Brutal Gladiator's Satin Robe","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","581","0","0","0","0","0","0","0","159","16","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","72","34","31","0","0","0","0","0","0","0","70" +"35088","-1","","","","","Brutal Gladiator's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","165","0","0","0","0","0","2874","0","0","0","0","583","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1983","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","5","4","0","61","32","41","46","36","17","0","0","0","0","70" +"35089","-1","","","","","Brutal Gladiator's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1239","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","46","27","30","44","26","0","0","0","0","0","70" +"35090","-1","","","","","Brutal Gladiator's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2878","0","0","0","0","583","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","1","4","0","61","32","33","52","36","17","0","0","0","0","70" +"35091","-1","","","","","Brutal Gladiator's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","583","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1735","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","31","-1","-1","-1","-1","0","0","0","0","7","4","0","73","28","41","59","36","17","0","0","0","0","70" +"35092","-1","","","","","Brutal Gladiator's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2859","0","0","0","0","583","0","0","0","0","0","0","0","159","2","0","0","0","0","0","0","0","0","0","0","0","0","1487","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","45","25","30","37","26","0","0","0","0","0","70" +"35093","-1","","","","","Brutal Gladiator's Shanker","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","154","-1","0","0","155","0","0","0","0","233","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35094","-1","","","","","Brutal Gladiator's Shield Wall","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","6662","0","0","0","0","0","0","0","254","0","0","0","0","0","0","4","1","0","0","1","0","7","35","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","4","0","67","31","0","0","0","0","0","0","0","0","70" +"35095","-1","","","","","Brutal Gladiator's Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","154","-1","0","0","105","0","0","0","0","197","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35096","-1","","","","","Brutal Gladiator's Silk Amice","0.2","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","579","0","0","0","0","0","0","0","159","128","0","0","0","0","0","0","0","0","0","0","0","0","199","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","56","18","23","21","0","0","0","0","0","0","70" +"35097","-1","","","","","Brutal Gladiator's Silk Cowl","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","579","0","0","0","0","0","0","0","159","128","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","66","29","30","33","0","0","0","0","0","0","70" +"35098","-1","","","","","Brutal Gladiator's Silk Handguards","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","159","128","0","0","0","0","0","0","0","0","0","0","0","0","166","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","56","23","26","23","0","0","0","0","0","0","70" +"35099","-1","","","","","Brutal Gladiator's Silk Raiment","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","579","0","0","0","0","0","0","0","159","128","0","0","0","0","0","0","0","0","0","0","0","0","266","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","20","4","0","68","21","39","26","0","0","0","0","0","0","70" +"35100","-1","","","","","Brutal Gladiator's Silk Trousers","0.2","0","210","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","579","0","0","0","0","0","0","0","159","128","0","0","0","0","0","0","0","0","0","0","0","0","232","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","66","40","39","30","0","0","0","0","0","0","70" +"35101","-1","","","","","Brutal Gladiator's Slicer","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1","0","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","31","22","12","9","0","0","0","0","0","0","70" +"35102","-1","","","","","Brutal Gladiator's Spellblade","0.6","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","-1","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","33","21","18","19","0","0","0","0","0","0","70" +"35103","-1","","","","","Brutal Gladiator's Staff","0.4","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","154","-1","0","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","1","0","0","1","0","7","4","32","35","31","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","50","50","33","26","0","0","0","0","0","70" +"35104","-1","","","","","Brutal Gladiator's Totem of Indomitability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35105","-1","","","","","Brutal Gladiator's Totem of Survival","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35106","-1","","","","","Brutal Gladiator's Totem of the Third Wind","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","28","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35107","-1","","","","","Brutal Gladiator's Touch of Defeat","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","154","-1","0","0","263","0","0","0","0","490","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","2","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","4","0","21","15","14","0","0","0","0","0","0","0","70" +"35108","-1","","","","","Brutal Gladiator's War Edge","0.4","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4231168","24580","0","0","0","285","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","154","-1","0","0","147","0","0","0","0","222","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","4","0","27","18","12","0","0","0","0","0","0","0","70" +"35109","-1","","","","","Brutal Gladiator's War Staff","0.4","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","154","-1","0","0","224","0","0","0","0","337","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","18","21","35","5","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","66","0","50","29","50","0","0","0","0","0","70" +"35110","-1","","","","","Brutal Gladiator's Waraxe","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1500","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","31","20","14","9","0","0","0","0","0","0","70" +"35111","-1","","","","","Brutal Gladiator's Wyrmhide Gloves","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","312","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","10","4","0","47","28","22","16","0","0","0","0","0","0","70" +"35112","-1","","","","","Brutal Gladiator's Wyrmhide Helm","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","585","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","65","35","28","22","0","0","0","0","0","0","70" +"35113","-1","","","","","Brutal Gladiator's Wyrmhide Legguards","0.2","0","56","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","585","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","436","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","7","4","0","65","40","31","27","0","0","0","0","0","0","70" +"35114","-1","","","","","Brutal Gladiator's Wyrmhide Spaulders","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","585","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","374","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","3","4","0","49","24","22","13","0","0","0","0","0","0","70" +"35115","-1","","","","","Brutal Gladiator's Wyrmhide Tunic","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","120","0","0","0","0","0","2856","0","0","0","0","585","0","0","0","0","0","0","0","159","1024","0","0","0","0","0","0","0","0","0","0","0","0","499","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","5","4","0","62","33","27","18","0","0","0","0","0","0","70" +"35117","-1","","","","","Monster - Sword, 1H Blood Elf D01 Gold","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","13","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35128","-1","","","","","Hardened Khorium","0","0","0","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","11250","45000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"35129","-1","","","","","Guardian's Band of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","35","22","18","14","0","0","0","0","0","0","70" +"35130","-1","","","","","Guardian's Band of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","38","22","23","0","0","0","0","0","0","0","70" +"35131","-1","","","","","Guardian's Band of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","38","30","22","0","0","0","0","0","0","0","70" +"35132","-1","","","","","Guardian's Pendant of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","35","18","24","18","0","0","0","0","0","0","70" +"35133","-1","","","","","Guardian's Pendant of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","39","18","24","0","0","0","0","0","0","0","70" +"35134","-1","","","","","Guardian's Pendant of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","38","18","19","0","0","0","0","0","0","0","70" +"35135","-1","","","","","Guardian's Pendant of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","39","26","18","0","0","0","0","0","0","0","70" +"35136","-1","","","","","Guardian's Chain Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","52","37","21","22","27","0","0","0","0","0","70" +"35137","-1","","","","","Guardian's Dragonhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","32","-1","-1","-1","-1","0","0","0","0","8","4","0","46","34","33","26","24","25","0","0","0","0","70" +"35138","-1","","","","","Guardian's Dreadweave Stalkers","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","56","37","31","0","0","0","0","0","0","0","70" +"35139","-1","","","","","Guardian's Kodohide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","35","26","0","0","0","0","0","0","0","70" +"35140","-1","","","","","Guardian's Lamellar Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","34","35","26","0","0","0","0","0","0","70" +"35141","-1","","","","","Guardian's Leather Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","55","37","24","30","0","0","0","0","0","0","70" +"35142","-1","","","","","Guardian's Linked Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","55","38","21","38","27","0","0","0","0","0","70" +"35143","-1","","","","","Guardian's Mail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","34","27","34","0","0","0","0","0","0","70" +"35144","-1","","","","","Guardian's Mooncloth Slippers","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","56","36","31","0","0","0","0","0","0","0","70" +"35145","-1","","","","","Guardian's Ornamented Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","34","35","26","0","0","0","0","0","0","70" +"35146","-1","","","","","Guardian's Plate Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","56","40","40","30","0","0","0","0","0","0","70" +"35147","-1","","","","","Guardian's Ringmail Sabatons","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","763","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","34","27","34","0","0","0","0","0","0","70" +"35148","-1","","","","","Guardian's Scaled Greaves","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1363","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","45","44","31","30","26","0","0","0","0","0","70" +"35149","-1","","","","","Guardian's Silk Footguards","0.2","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","35","32","26","0","0","0","0","0","0","70" +"35150","-1","","","","","Guardian's Wyrmhide Boots","0.2","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","343","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","4","0","49","35","26","0","0","0","0","0","0","0","70" +"35151","-1","","","","","Guardian's Chain Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","52","37","21","22","27","0","0","0","0","0","70" +"35152","-1","","","","","Guardian's Dragonhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","3","35","5","32","-1","-1","-1","-1","0","5","0","0","6","4","0","46","34","33","26","24","25","0","0","0","0","70" +"35153","-1","","","","","Guardian's Dreadweave Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","56","37","31","0","0","0","0","0","0","0","70" +"35154","-1","","","","","Guardian's Kodohide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","35","26","0","0","0","0","0","0","0","70" +"35155","-1","","","","","Guardian's Lamellar Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","34","35","26","0","0","0","0","0","0","70" +"35156","-1","","","","","Guardian's Leather Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","55","37","24","30","0","0","0","0","0","0","70" +"35157","-1","","","","","Guardian's Linked Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","55","38","21","37","28","0","0","0","0","0","70" +"35158","-1","","","","","Guardian's Mail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","34","27","34","0","0","0","0","0","0","70" +"35159","-1","","","","","Guardian's Mooncloth Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","56","36","31","0","0","0","0","0","0","0","70" +"35160","-1","","","","","Guardian's Ornamented Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","34","35","26","0","0","0","0","0","0","70" +"35161","-1","","","","","Guardian's Plate Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","56","40","40","30","0","0","0","0","0","0","70" +"35162","-1","","","","","Guardian's Ringmail Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","68","0","0","0","0","0","0","0","0","0","0","0","0","624","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","34","27","34","0","0","0","0","0","0","70" +"35163","-1","","","","","Guardian's Scaled Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","3","0","0","0","0","0","0","0","0","0","0","0","0","1115","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","45","44","31","31","26","0","0","0","0","0","70" +"35164","-1","","","","","Guardian's Silk Belt","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","400","0","0","0","0","0","0","0","0","0","0","0","0","149","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","35","32","26","0","0","0","0","0","0","70" +"35165","-1","","","","","Guardian's Wyrmhide Belt","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","1032","0","0","0","0","0","0","0","0","0","0","0","0","280","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","6","4","0","49","35","26","0","0","0","0","0","0","0","70" +"35166","-1","","","","","Guardian's Chain Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","68","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","3","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","36","26","13","14","15","0","0","0","0","0","70" +"35167","-1","","","","","Guardian's Dragonhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","1032","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","4","3","35","32","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","25","25","17","24","0","0","0","0","0","70" +"35168","-1","","","","","Guardian's Dreadweave Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","154","400","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","38","24","17","0","0","0","0","0","0","0","70" +"35169","-1","","","","","Guardian's Kodohide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","1032","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","43","25","18","0","0","0","0","0","0","0","70" +"35170","-1","","","","","Guardian's Lamellar Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","3","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","23","20","15","0","0","0","0","0","0","70" +"35171","-1","","","","","Guardian's Leather Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","1032","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","37","28","15","15","0","0","0","0","0","0","70" +"35172","-1","","","","","Guardian's Linked Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","68","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","4","35","32","5","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","37","28","12","24","17","0","0","0","0","0","70" +"35173","-1","","","","","Guardian's Mail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","68","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","20","15","24","0","0","0","0","0","0","70" +"35174","-1","","","","","Guardian's Mooncloth Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2925","0","0","0","0","0","0","0","0","0","0","0","0","154","400","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","38","24","17","0","0","0","0","0","0","0","70" +"35175","-1","","","","","Guardian's Ornamented Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","3","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","21","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","23","20","15","0","0","0","0","0","0","70" +"35176","-1","","","","","Guardian's Plate Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","3015","0","0","0","0","0","0","0","0","0","0","0","0","154","3","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","40","28","24","17","0","0","0","0","0","0","70" +"35177","-1","","","","","Guardian's Ringmail Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","50","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","68","0","0","0","0","0","0","0","0","0","0","0","0","471","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","20","15","24","0","0","0","0","0","0","70" +"35178","-1","","","","","Guardian's Scaled Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","55","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","3","0","0","0","0","0","0","0","0","0","0","0","0","841","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","6","0","0","1","0","7","4","32","5","35","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","32","32","18","18","19","0","0","0","0","0","70" +"35179","-1","","","","","Guardian's Silk Cuffs","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","35","0","0","0","0","0","2953","0","0","0","0","0","0","0","0","0","0","0","0","154","400","0","0","0","0","0","0","0","0","0","0","0","0","113","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","33","25","18","13","0","0","0","0","0","0","70" +"35180","-1","","","","","Guardian's Wyrmhide Bracers","0","0","42","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","40","0","0","0","0","0","2867","0","0","0","0","0","0","0","0","0","0","0","0","154","1032","0","0","0","0","0","0","0","0","0","0","0","0","211","0","0","0","0","0","0","0","254","0","0","0","2","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","4","0","35","23","15","0","0","0","0","0","0","0","70" +"35181","-1","","","","","Powerheal 9000 Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46676","233380","1","1","1","0","24580","0","0","0","60","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","216","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","41","51","33","0","0","0","0","0","0","0","70" +"35182","-1","","","","","Hyper-Magnified Moon Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58564","292822","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2889","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","40","37","54","0","0","0","0","0","0","0","70" +"35183","-1","","","","","Wonderheal XT68 Shades","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","58777","293889","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","405","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","5","6","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","51","35","33","0","0","0","0","0","0","0","70" +"35184","-1","","","","","Primal-Attuned Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","72681","363408","1","1","1","0","24580","0","0","0","85","0","0","0","0","0","2872","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","32","51","0","0","0","0","0","0","0","0","70" +"35185","-1","","","","","Justicebringer 3000 Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","84940","424701","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","2951","0","0","0","0","0","0","0","0","0","0","350","202","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","1","4","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","4","0","48","26","52","0","0","0","0","0","0","0","70" +"35186","-1","Teaches you how to make Annihilator Holo-gogs.","","","","Schematic: Annihilator Holo-Gogs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35187","-1","Teaches you how to make Justicebringer 3000 Specs.","","","","Schematic: Justicebringer 3000 Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35189","-1","Teaches you how to make Powerheal 9000 Lens.","","","","Schematic: Powerheal 9000 Lens","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35190","-1","Teaches you how to make Hyper-Magnified Moon Specs.","","","","Schematic: Hyper-Magnified Moon Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35191","-1","Teaches you how to make Wonderheal XT68 Shades.","","","","Schematic: Wonderheal XT68 Shades","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","1024","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35192","-1","Teaches you how to make Primal-Attuned Goggles.","","","","Schematic: Primal-Attuned Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35193","-1","Teaches you how to make Lightning Etched Specs.","","","","Schematic: Lightning Etched Specs","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35194","-1","Teaches you how to make Surestrike Goggles v3.0.","","","","Schematic: Surestrike Goggles v3.0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","68","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35195","-1","Teaches you how to make Mayhem Projection Goggles.","","","","Schematic: Mayhem Projection Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35196","-1","Teaches you how to make Hard Khorium Goggles.","","","","Schematic: Hard Khorium Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35197","-1","Teaches you how to make Quad Deathblow X44 Goggles.","","","","Schematic: Quad Deathblow X44 Goggles","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","202","70","1032","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35198","-1","Teaches you how to craft a Loop of Forged Power.","","","","Design: Loop of Forged Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35199","-1","Teaches you how to craft a Ring of Flowing Life.","","","","Design: Ring of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35200","-1","Teaches you how to craft a Hard Khorium Band.","","","","Design: Hard Khorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35201","-1","Teaches you how to craft a Pendant of Sunfire.","","","","Design: Pendant of Sunfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35202","-1","Teaches you how to craft an Amulet of Flowing Life.","","","","Design: Amulet of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35203","-1","Teaches you how to craft a Hard Khorium Choker.","","","","Design: Hard Khorium Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35204","-1","Teaches you how to sew Sunfire Handwraps.","","","","Pattern: Sunfire Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35205","-1","Teaches you how to sew Hands of Eternal Light.","","","","Pattern: Hands of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35206","-1","Teaches you how to sew Sunfire Robe.","","","","Pattern: Sunfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35207","-1","Teaches you how to sew Robe of Eternal Light.","","","","Pattern: Robe of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35208","-1","Teaches you how to make a Sunblessed Gauntlets.","","","","Plans: Sunblessed Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35209","-1","Teaches you how to make a Hard Khorium Battlefists.","","","","Plans: Hard Khorium Battlefists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35210","-1","Teaches you how to make a Sunblessed Breastplate.","","","","Plans: Sunblessed Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35211","-1","Teaches you how to make a Hard Khorium Battleplate.","","","","Plans: Hard Khorium Battleplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35212","-1","Teaches you how to craft Leather Gauntlets of the Sun.","","","","Pattern: Leather Gauntlets of the Sun","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35213","-1","Teaches you how to craft Fletcher's Gloves of the Phoenix.","","","","Pattern: Fletcher's Gloves of the Phoenix","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35214","-1","Teaches you how to craft Gloves of Immortal Dusk.","","","","Pattern: Gloves of Immortal Dusk","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35215","-1","Teaches you how to craft Sun-Drenched Scale Gloves.","","","","Pattern: Sun-Drenched Scale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35216","-1","Teaches you how to craft Leather Chestguard of the Sun.","","","","Pattern: Leather Chestguard of the Sun","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35217","-1","Teaches you how to craft Embrace of the Phoenix.","","","","Pattern: Embrace of the Phoenix","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35218","-1","Teaches you how to craft Carapace of Sun and Shadow.","","","","Pattern: Carapace of Sun and Shadow","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35219","-1","Teaches you how to craft Sun-Drenched Scale Chestguard.","","","","Pattern: Sun-Drenched Scale Chestguard","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35220","-1","","","","","Monster - Staff, Sunwell D02","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35221","-1","","","","","Tabard of the Shattered Sun","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","19","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35223","-1","","","","","Papa Hummel's Old-Fashioned Pet Biscuit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","50","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35225","-1","","","","","X-51 Nether-Rocket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","225","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35226","-1","","","","","X-51 Nether-Rocket X-TREME","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35227","-1","","","","","Goblin Weather Machine - Prototype 01-B","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35229","-1","","","","","Nether Residue","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35230","-1","","","","","Darnarian's Scroll of Teleportation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35231","-1","","","","","Sunfury Attack Plans","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35232","-1","","","","","Shattered Sun Supplies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35233","-1","","","","","Multiphase Spectrographic Goggles","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35236","-1","","","","","Monster - Axe, 2H Black Temple Black","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","15","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3300","0","0","0","1","-1","0","0","2","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35237","-1","","","","","Orb of the Crawler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35238","-1","Teaches you how to cut a Balanced Shadowsong Amethyst.","","","","Design: Balanced Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35239","-1","Teaches you how to cut a Glowing Shadowsong Amethyst.","","","","Design: Glowing Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35240","-1","Teaches you how to cut a Infused Shadowsong Amethyst.","","","","Design: Infused Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35241","-1","Teaches you how to cut a Royal Shadowsong Amethyst.","","","","Design: Royal Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35242","-1","Teaches you how to cut a Shifting Shadowsong Amethyst.","","","","Design: Shifting Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35243","-1","Teaches you how to cut a Sovereign Shadowsong Amethyst.","","","","Design: Sovereign Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35244","-1","Teaches you how to cut a Bold Crimson Spinel.","","","","Design: Bold Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35245","-1","Teaches you how to cut a Bright Crimson Spinel.","","","","Design: Bright Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35246","-1","Teaches you how to cut a Delicate Crimson Spinel.","","","","Design: Delicate Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35247","-1","Teaches you how to cut a Flashing Crimson Spinel.","","","","Design: Flashing Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35248","-1","Teaches you how to cut a Runed Crimson Spinel.","","","","Design: Runed Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35249","-1","Teaches you how to cut a Subtle Crimson Spinel.","","","","Design: Subtle Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35250","-1","Teaches you how to cut a Teardrop Crimson Spinel.","","","","Design: Teardrop Crimson Spinel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35251","-1","Teaches you how to cut a Dazzling Seaspray Emerald.","","","","Design: Dazzling Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35252","-1","Teaches you how to cut a Enduring Seaspray Emerald.","","","","Design: Enduring Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35253","-1","Teaches you how to cut a Jagged Seaspray Emerald.","","","","Design: Jagged Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35254","-1","Teaches you how to cut a Radiant Seaspray Emerald.","","","","Design: Radiant Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35255","-1","Teaches you how to cut a Brilliant Lionseye.","","","","Design: Brilliant Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35256","-1","Teaches you how to cut a Gleaming Lionseye.","","","","Design: Gleaming Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35257","-1","Teaches you how to cut a Great Lionseye.","","","","Design: Great Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35258","-1","Teaches you how to cut a Mystic Lionseye.","","","","Design: Mystic Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35259","-1","Teaches you how to cut a Rigid Lionseye.","","","","Design: Rigid Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35260","-1","Teaches you how to cut a Smooth Lionseye.","","","","Design: Smooth Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35261","-1","Teaches you how to cut a Thick Lionseye.","","","","Design: Thick Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35262","-1","Teaches you how to cut a Lustrous Empyrean Sapphire.","","","","Design: Lustrous Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35263","-1","Teaches you how to cut a Solid Empyrean Sapphire.","","","","Design: Solid Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35264","-1","Teaches you how to cut a Sparkling Empyrean Sapphire.","","","","Design: Sparkling Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35265","-1","Teaches you how to cut a Stormy Empyrean Sapphire.","","","","Design: Stormy Empyrean Sapphire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35266","-1","Teaches you how to cut a Glinting Pyrestone.","","","","Design: Glinting Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35267","-1","Teaches you how to cut an Inscribed Pyrestone.","","","","Design: Inscribed Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35268","-1","Teaches you how to cut a Luminous Pyrestone.","","","","Design: Luminous Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35269","-1","Teaches you how to cut an Potent Pyrestone.","","","","Design: Potent Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35270","-1","Teaches you how to cut a Veiled Pyrestone.","","","","Design: Veiled Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35271","-1","Teaches you how to cut a Wicked Pyrestone.","","","","Design: Wicked Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35273","-1","Teaches you how to make Hardened Khorium.","","","","Study of Advanced Smelting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","186","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35275","-1","","","","","Orb of the Sin'dorei","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4618","18475","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35277","-1","This looks important...","","","","Twilight Correspondence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3065","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35279","-1","","","","","Tabard of Summer Skies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35280","-1","","","","","Tabard of Summer Flames","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35282","-1","","","","","Sin'dorei Band of Dominance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","21","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","22","15","15","28","0","0","0","0","0","0","70" +"35283","-1","","","","","Sin'dorei Band of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","19","19","0","0","0","0","0","0","0","70" +"35284","-1","","","","","Sin'dorei Band of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","28","19","0","0","0","0","0","0","0","70" +"35285","-1","","","","","Giant Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"35286","-1","","","","","Bloated Giant Sunfish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100","400","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35287","-1","This little fish is charged with arcane energy.","","","","Luminous Bluetail","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","50","200","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"35290","-1","","","","","Sin'dorei Pendant of Conquest","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3153","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","35","21","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","18","19","19","0","0","0","0","0","0","70" +"35291","-1","","","","","Sin'dorei Pendant of Salvation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3098","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","35","5","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","16","18","19","0","0","0","0","0","0","0","70" +"35292","-1","","","","","Sin'dorei Pendant of Triumph","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","60256","241024","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3114","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","4","0","0","0","5","0","0","1","0","7","32","35","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","18","28","19","0","0","0","0","0","0","0","70" +"35294","-1","Teaches you how to make an Elixir of Empowerment.","","","","Recipe: Elixir of Empowerment","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","171","73","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"35295","-1","Teaches you how to make a Haste Potion.","","","","Recipe: Haste Potion","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","171","70","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"35296","-1","Teaches you how to make an Adamantite Weapon Chain.","","","","Plans: Adamantite Weapon Chain","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","950","3800","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","335","164","63","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"35297","-1","Teaches you how to permanently enchant boots to increase move speed slightly and Stamina by 9.","","","","Formula: Enchant Boots - Boar's Speed","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35298","-1","Teaches you how to permanently enchant boots to restore 4 mana and health every 5 seconds.","","","","Formula: Enchant Boots - Vitality","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","10000","40000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","305","333","61","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"35299","-1","Teaches you how to permanently enchant boots to increase move speed slightly and Agility by 6.","","","","Formula: Enchant Boots - Cat's Swiftness","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","360","333","72","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35300","-1","Teaches you how to make Windstrike Gloves.","","","","Pattern: Windstrike Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35301","-1","Teaches you how to make Netherdrake Gloves.","","","","Pattern: Netherdrake Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35302","-1","Teaches you how to make Cobrascale Gloves.","","","","Pattern: Cobrascale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35303","-1","Teaches you how to make Gloves of the Living Touch.","","","","Pattern: Gloves of the Living Touch","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35304","-1","Teaches you how to cut a Solid Star of Elune.","","","","Design: Solid Star of Elune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35305","-1","Teaches you how to cut a Runed Living Ruby.","","","","Design: Runed Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35306","-1","Teaches you how to cut a Bright Living Ruby.","","","","Design: Bright Living Ruby","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35307","-1","Teaches you how to cut a Rigid Dawnstone.","","","","Design: Rigid Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35308","-1","Teaches you how to sew Unyielding Bracers.","","","","Pattern: Unyielding Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35309","-1","Teaches you how to sew an Unyielding Girdle.","","","","Pattern: Unyielding Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35310","-1","Teaches you how to make a Healing Potion Injector.","","","","Schematic: Healing Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","202","66","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35311","-1","Teaches you how to make a Mana Potion Injector.","","","","Schematic: Mana Potion Injector","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","345","202","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35313","-1","","","","","Bloated Barbed Gill Trout","0","7200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35314","-1","","","","","Partially Digested Weeds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","75","300","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"35315","-1","Matches a Yellow Socket.","","","","Quick Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","901","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35316","-1","Matches a Red or Yellow Socket.","","","","Reckless Noble Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","902","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35317","-1","","","","","Vindicator's Pendant of Reprieve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","22","18","16","23","0","0","0","0","0","0","70" +"35318","-1","Matches a Yellow or Blue Socket.","","","","Forceful Talasite","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","903","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35319","-1","","","","","Vindicator's Pendant of Subjugation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","30","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","31","18","21","15","0","0","0","0","0","0","70" +"35320","-1","","","","","Vindicator's Band of Subjugation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","141","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","30","7","5","35","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","30","33","22","22","0","0","0","0","0","0","70" +"35321","-1","","","","","Cloak of Arcane Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","30","5","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","34","23","16","15","0","0","0","0","0","0","70" +"35322","-1","Teaches you how to cut a Quick Dawnstone.","","","","Design: Quick Dawnstone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35323","-1","Teaches you how to cut a Reckless Noble Topaz.","","","","Design: Reckless Noble Topaz","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35324","-1","","","","","Cloak of Swift Reprieve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","136","32767","0","0","0","0","0","0","0","0","0","0","0","0","114","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","35","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","34","23","15","16","0","0","0","0","0","0","70" +"35325","-1","Teaches you how to cut a Forceful Talasite.","","","","Design: Forceful Talasite","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35326","-1","","","","","Battlemaster's Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","30","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"35327","-1","","","","","Battlemaster's Alacrity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","133","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","30","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","40","0","0","0","0","0","0","0","0","0","70" +"35328","-1","","","","","Dreadweave Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17391","86955","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","738","0","0","0","0","989","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","31","21","12","0","0","0","0","0","0","0","70" +"35329","-1","","","","","Dreadweave Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26181","130908","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","738","0","0","0","0","942","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","49","14","14","0","0","0","0","0","0","0","70" +"35330","-1","","","","","Dreadweave Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35039","175195","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","738","0","0","0","0","935","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","49","22","22","0","0","0","0","0","0","0","70" +"35331","-1","","","","","Dreadweave Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26377","131885","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","738","0","0","0","0","1011","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","18","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","19","15","17","6","0","0","0","0","0","0","70" +"35332","-1","","","","","Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35299","176497","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","738","0","0","0","0","947","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","49","14","14","0","0","0","0","0","0","0","70" +"35333","-1","","","","","Mooncloth Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26569","132848","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","739","0","0","0","0","935","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","39","27","19","0","0","0","0","0","0","0","70" +"35334","-1","","","","","Mooncloth Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35556","177782","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","739","0","0","0","0","989","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","28","23","0","0","0","0","0","0","0","70" +"35335","-1","","","","","Mooncloth Mitts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17843","89216","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","739","0","0","0","0","1011","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"35336","-1","","","","","Mooncloth Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26862","134313","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","739","0","0","0","0","942","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","30","20","17","0","0","0","0","0","0","0","70" +"35337","-1","","","","","Mooncloth Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35943","179717","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","739","0","0","0","0","947","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","39","25","15","0","0","0","0","0","0","0","70" +"35338","-1","","","","","Satin Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","18036","90184","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","989","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","33","15","14","0","0","0","0","0","0","0","70" +"35339","-1","","","","","Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27152","135764","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","740","0","0","0","0","947","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","46","19","19","0","0","0","0","0","0","0","70" +"35340","-1","","","","","Satin Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36334","181670","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","740","0","0","0","0","1011","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","46","23","23","0","0","0","0","0","0","0","70" +"35341","-1","","","","","Satin Mantle","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27345","136728","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","740","0","0","0","0","935","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","17","17","0","0","0","0","0","0","0","70" +"35342","-1","","","","","Satin Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","36591","182955","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","740","0","0","0","0","942","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","46","15","15","0","0","0","0","0","0","0","70" +"35343","-1","","","","","Evoker's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27540","137704","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","741","0","0","0","0","947","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","21","16","15","8","0","0","0","0","0","0","70" +"35344","-1","","","","","Evoker's Silk Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25693","128467","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","741","0","0","0","0","1011","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","39","16","17","19","0","0","0","0","0","0","70" +"35345","-1","","","","","Evoker's Silk Handguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17194","85970","1","1","1","32768","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","935","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","97","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","33","12","17","17","0","0","0","0","0","0","70" +"35346","-1","","","","","Evoker's Silk Raiment","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34518","172591","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2951","0","0","0","0","741","0","0","0","0","989","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","42","15","17","18","0","0","0","0","0","0","70" +"35347","-1","","","","","Evoker's Silk Trousers","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","34648","173242","1","1","1","32768","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","741","0","0","0","0","942","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","136","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","22","22","22","0","0","0","0","0","0","70" +"35348","-1","","","","","Bag of Fishing Treasures","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35349","-1","","","","","Snarly's Bucket","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35350","-1","","","","","Chuck's Bucket","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35356","-1","","","","","Dragonhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22381","111905","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","742","0","0","0","0","989","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","24","17","12","17","16","0","0","0","0","0","70" +"35357","-1","","","","","Dragonhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33693","168468","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","742","0","0","0","0","1011","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","21","22","15","22","21","0","0","0","0","0","70" +"35358","-1","","","","","Dragonhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45087","225438","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","742","0","0","0","0","942","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","30","22","22","22","22","0","0","0","0","0","70" +"35359","-1","","","","","Dragonhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33937","169689","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","742","0","0","0","0","935","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","24","17","14","17","13","0","0","0","0","0","70" +"35360","-1","","","","","Dragonhide Robe","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42171","210856","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","742","0","0","0","0","947","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","31","18","18","18","18","0","0","0","0","0","70" +"35361","-1","","","","","Kodohide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21167","105835","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","1011","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","22","22","14","0","0","0","0","0","0","0","70" +"35362","-1","","","","","Kodohide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31872","159363","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","744","0","0","0","0","935","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","30","18","19","0","0","0","0","0","0","0","70" +"35363","-1","","","","","Kodohide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","42655","213276","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","744","0","0","0","0","989","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","33","28","20","0","0","0","0","0","0","0","70" +"35364","-1","","","","","Kodohide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32113","160567","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","744","0","0","0","0","947","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"35365","-1","","","","","Kodohide Robe","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55952","223811","1","1","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","744","0","0","0","0","942","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","33","17","18","0","0","0","0","0","0","0","70" +"35366","-1","","","","","Opportunist's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21571","107858","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","947","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","31","21","16","11","0","0","0","0","0","0","70" +"35367","-1","","","","","Opportunist's Leather Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32476","162381","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","745","0","0","0","0","942","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","36","20","24","10","0","0","0","0","0","0","70" +"35368","-1","","","","","Opportunist's Leather Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43464","217323","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","935","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","28","14","28","0","0","0","0","0","0","70" +"35369","-1","","","","","Opportunist's Leather Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32720","163602","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","745","0","0","0","0","989","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","3","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","31","13","11","13","0","0","0","0","0","0","70" +"35370","-1","","","","","Opportunist's Leather Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","43790","218950","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","745","0","0","0","0","1011","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","42","20","24","10","0","0","0","0","0","0","70" +"35371","-1","","","","","Wyrmhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","21974","109871","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","743","0","0","0","0","947","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","22","15","13","0","0","0","0","0","0","0","70" +"35372","-1","","","","","Wyrmhide Helm","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33083","165417","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2878","0","0","0","0","743","0","0","0","0","989","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","237","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","21","18","17","0","0","0","0","0","0","0","70" +"35373","-1","","","","","Wyrmhide Legguards","0.2","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44273","221369","1","1","1","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","743","0","0","0","0","1011","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","256","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","33","22","20","0","0","0","0","0","0","0","70" +"35374","-1","","","","","Wyrmhide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33327","166637","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","743","0","0","0","0","942","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"35375","-1","","","","","Wyrmhide Robe","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","55952","223811","1","1","1","36864","24580","0","0","0","100","0","0","0","0","0","2856","0","0","0","0","743","0","0","0","0","935","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","33","17","18","0","0","0","0","0","0","0","70" +"35376","-1","","","","","Stalker's Chain Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","53709","268547","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","749","0","0","0","0","989","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","42","20","12","16","15","0","0","0","0","0","70" +"35377","-1","","","","","Stalker's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","27651","138258","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","749","0","0","0","0","947","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","31","21","11","14","6","0","0","0","0","0","70" +"35378","-1","","","","","Stalker's Chain Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37657","188286","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","749","0","0","0","0","1011","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","30","20","14","15","14","0","0","0","0","0","70" +"35379","-1","","","","","Stalker's Chain Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50405","252025","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","749","0","0","0","0","942","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","28","14","25","8","0","0","0","0","0","70" +"35380","-1","","","","","Stalker's Chain Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38118","190594","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","749","0","0","0","0","935","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","31","14","17","16","4","0","0","0","0","0","70" +"35381","-1","","","","","Seer's Linked Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50795","253978","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","2874","0","0","0","0","748","0","0","0","0","935","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","42","22","14","22","12","0","0","0","0","0","70" +"35382","-1","","","","","Seer's Linked Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25492","127464","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","748","0","0","0","0","1011","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","33","21","18","17","0","0","0","0","0","0","70" +"35383","-1","","","","","Seer's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38385","191928","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","748","0","0","0","0","947","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","30","20","24","24","0","0","0","0","0","0","70" +"35384","-1","","","","","Seer's Linked Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51376","256881","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","748","0","0","0","0","989","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","22","28","22","22","0","0","0","0","0","70" +"35385","-1","","","","","Seer's Linked Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38850","194253","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","748","0","0","0","0","942","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","4","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","13","17","13","8","0","0","0","0","0","70" +"35386","-1","","","","","Seer's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","51761","258808","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","746","0","0","0","0","947","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","42","14","18","18","0","0","0","0","0","0","70" +"35387","-1","","","","","Seer's Mail Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25978","129892","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","746","0","0","0","0","942","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","33","13","14","13","0","0","0","0","0","0","70" +"35388","-1","","","","","Seer's Mail Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47383","189533","1","1","1","36864","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","746","0","0","0","0","935","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","36","16","16","16","0","0","0","0","0","0","70" +"35389","-1","","","","","Seer's Mail Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52347","261737","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","746","0","0","0","0","1011","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","18","22","22","0","0","0","0","0","0","70" +"35390","-1","","","","","Seer's Mail Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","39578","197891","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","746","0","0","0","0","989","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","13","12","12","0","0","0","0","0","0","70" +"35391","-1","","","","","Seer's Ringmail Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","52732","263664","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","747","0","0","0","0","1011","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","34","22","18","18","0","0","0","0","0","0","70" +"35392","-1","","","","","Seer's Ringmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26464","132320","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","947","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","28","18","14","13","0","0","0","0","0","0","70" +"35393","-1","","","","","Seer's Ringmail Headpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40887","204438","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","747","0","0","0","0","989","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","33","21","16","16","0","0","0","0","0","0","70" +"35394","-1","","","","","Seer's Ringmail Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54712","273561","1","1","1","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","942","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","570","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","36","24","22","22","0","0","0","0","0","0","70" +"35395","-1","","","","","Seer's Ringmail Shoulderpads","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","41363","206818","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2859","0","0","0","0","747","0","0","0","0","935","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","489","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","28","18","12","12","0","0","0","0","0","0","70" +"35396","-1","","","","","Enchant 2H Weapon - Major Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35397","-1","","","","","Enchant 2H Weapon - Savagery","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35398","-1","","","","","Enchant Boots - Boar's Speed","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35399","-1","","","","","Enchant Boots - Cat's Swiftness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35400","-1","","","","","Enchant Boots - Dexterity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35402","-1","","","","","Crusader's Ornamented Chestplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","59477","297385","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","2951","0","0","0","0","751","0","0","0","0","989","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","37","24","21","22","0","0","0","0","0","0","70" +"35403","-1","","","","","Crusader's Ornamented Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30023","150115","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","751","0","0","0","0","942","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","30","20","19","12","0","0","0","0","0","0","70" +"35404","-1","","","","","Crusader's Ornamented Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44864","224320","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","751","0","0","0","0","935","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","34","22","20","20","0","0","0","0","0","0","70" +"35405","-1","","","","","Crusader's Ornamented Leggings","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60154","300772","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","751","0","0","0","0","1011","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","39","26","24","24","0","0","0","0","0","0","70" +"35406","-1","","","","","Crusader's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45200","226002","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","751","0","0","0","0","947","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","30","19","15","14","0","0","0","0","0","0","70" +"35407","-1","","","","","Savage Plate Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60610","303051","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","750","0","0","0","0","935","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","46","12","24","19","0","0","0","0","0","0","70" +"35408","-1","","","","","Savage Plate Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30589","152949","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","750","0","0","0","0","942","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","30","22","21","17","0","0","0","0","0","0","70" +"35409","-1","","","","","Savage Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","46929","234646","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","750","0","0","0","0","947","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","34","20","24","19","0","0","0","0","0","0","70" +"35410","-1","","","","","Savage Plate Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62919","314598","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","750","0","0","0","0","989","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","46","28","28","23","0","0","0","0","0","0","70" +"35411","-1","","","","","Savage Plate Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47270","236352","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","750","0","0","0","0","1011","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","36","14","17","13","0","0","0","0","0","0","70" +"35412","-1","","","","","Crusader's Scaled Chestpiece","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","63369","316846","1","1","1","32768","24580","0","0","0","135","0","0","0","0","0","2874","0","0","0","0","752","0","0","0","0","1011","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1164","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","5","3","0","42","12","13","27","14","0","0","0","0","0","70" +"35413","-1","","","","","Crusader's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","31980","159901","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","947","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","25","12","12","28","12","0","0","0","0","0","70" +"35414","-1","","","","","Crusader's Scaled Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","47777","238887","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","752","0","0","0","0","989","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","30","16","13","28","14","0","0","0","0","0","70" +"35415","-1","","","","","Crusader's Scaled Legguards","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","64052","320263","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","942","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","1019","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","7","3","0","42","16","16","36","16","0","0","0","0","0","70" +"35416","-1","","","","","Crusader's Scaled Shoulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","48114","240570","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","752","0","0","0","0","935","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","8","9","25","10","0","0","0","0","0","70" +"35417","-1","","","","","Enchant Boots - Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35418","-1","","","","","Enchant Boots - Surefooted","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35419","-1","","","","","Enchant Boots - Vitality","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35420","-1","","","","","Enchant Bracer - Brawn","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35421","-1","","","","","Enchant Bracer - Fortitude","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35422","-1","","","","","Enchant Bracer - Major Defense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35423","-1","","","","","Enchant Bracer - Major Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35424","-1","","","","","Enchant Bracer - Restore Mana Prime","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35425","-1","","","","","Enchant Bracer - Spellpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35426","-1","","","","","Enchant Bracer - Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35427","-1","","","","","Enchant Bracer - Superior Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35428","-1","","","","","Enchant Chest - Exceptional Health","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35429","-1","","","","","Enchant Chest - Exceptional Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35430","-1","","","","","Enchant Chest - Major Resilience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35431","-1","","","","","Enchant Chest - Major Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35432","-1","","","","","Enchant Cloak - Greater Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35433","-1","","","","","Enchant Cloak - Greater Arcane Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35434","-1","","","","","Enchant Cloak - Greater Shadow Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35435","-1","","","","","Enchant Cloak - Major Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35436","-1","","","","","Enchant Cloak - Spell Penetration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35437","-1","","","","","Enchant Cloak - Major Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35438","-1","","","","","Enchant Gloves - Assault","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35439","-1","","","","","Enchant Gloves - Blasting","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35440","-1","","","","","Enchant Gloves - Major Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35441","-1","","","","","Enchant Gloves - Major Spellpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35442","-1","","","","","Enchant Gloves - Major Strength","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35443","-1","","","","","Enchant Gloves - Spell Strike","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35444","-1","","","","","Enchant Ring - Healing Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35445","-1","","","","","Enchant Ring - Spellpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35446","-1","","","","","Enchant Ring - Stats","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35447","-1","","","","","Enchant Ring - Striking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35448","-1","","","","","Enchant Shield - Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35449","-1","","","","","Enchant Shield - Major Stamina","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35450","-1","","","","","Enchant Shield - Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35451","-1","","","","","Enchant Shield - Shield Block","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35452","-1","","","","","Enchant Weapon - Battlemaster","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35453","-1","","","","","Enchant Weapon - Greater Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35454","-1","","","","","Enchant Weapon - Major Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35455","-1","","","","","Enchant Weapon - Major Intellect","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35456","-1","","","","","Enchant Weapon - Major Spellpower","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35457","-1","","","","","Enchant Weapon - Major Striking","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35458","-1","","","","","Enchant Weapon - Mongoose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35459","-1","","","","","Enchant Weapon - Potency","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35460","-1","","","","","Enchant Weapon - Soulfrost","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35461","-1","","","","","Enchant Weapon - Spellsurge","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35462","-1","","","","","Enchant Weapon - Sunfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35463","-1","","","","","Monster - Axe, 1H Outland Raid D04","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35464","-1","","","","","Dreadweave Robe","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35165","175829","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","738","0","0","0","0","946","0","0","115","256","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","49","14","14","0","0","0","0","0","0","0","70" +"35465","-1","","","","","Evoker's Silk Amice","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26469","132346","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2859","0","0","0","0","741","0","0","0","0","946","0","0","115","128","0","0","0","0","0","0","0","0","0","0","0","0","117","0","0","0","0","0","0","0","254","0","0","0","4","3","0","0","7","0","0","1","0","7","5","35","21","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","21","16","15","8","0","0","0","0","0","0","70" +"35466","-1","","","","","Satin Hood","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26567","132835","1","1","1","32768","24580","0","0","0","50","0","0","0","0","0","2878","0","0","0","0","740","0","0","0","0","946","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","46","19","19","0","0","0","0","0","0","0","70" +"35467","-1","","","","","Mooncloth Vestments","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35552","177764","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2856","0","0","0","0","739","0","0","0","0","946","0","0","115","16","0","0","0","0","0","0","0","0","0","0","0","0","156","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","7","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","39","25","15","0","0","0","0","0","0","0","70" +"35468","-1","","","","","Opportunist's Leather Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22301","111509","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","745","0","0","0","0","946","0","0","115","8","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","3","35","32","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","31","21","16","11","0","0","0","0","0","0","70" +"35469","-1","","","","","Dragonhide Robe","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44762","223811","1","1","1","32768","24580","0","0","0","100","0","0","0","0","0","2874","0","0","0","0","742","0","0","0","0","946","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","292","0","0","0","0","0","0","0","254","0","0","0","2","2","3","0","8","0","0","1","0","7","4","5","3","35","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","31","18","18","18","18","0","0","0","0","0","70" +"35470","-1","","","","","Kodohide Spaulders","0.2","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","33693","168468","1","1","1","32768","24580","0","0","0","60","0","0","0","0","0","2859","0","0","0","0","744","0","0","0","0","946","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","219","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","33","16","17","0","0","0","0","0","0","0","70" +"35471","-1","","","","","Wyrmhide Gloves","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","22543","112719","1","1","1","32768","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","743","0","0","0","0","946","0","0","115","1024","0","0","0","0","0","0","0","0","0","0","0","0","183","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","7","5","35","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","22","15","13","0","0","0","0","0","0","0","70" +"35472","-1","","","","","Seer's Mail Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","54295","271476","1","1","1","32768","24580","0","0","0","120","0","0","0","0","0","2951","0","0","0","0","746","0","0","0","0","946","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","652","0","0","0","0","0","0","0","254","0","0","0","2","3","3","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","20","3","0","42","14","18","18","0","0","0","0","0","0","70" +"35473","-1","","","","","Seer's Ringmail Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25302","126514","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","747","0","0","0","0","946","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","28","18","14","13","0","0","0","0","0","0","70" +"35474","-1","","","","","Seer's Linked Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","38100","190503","1","1","1","32768","24580","0","0","0","70","0","0","0","0","0","2878","0","0","0","0","748","0","0","0","0","946","0","0","115","64","0","0","0","0","0","0","0","0","0","0","0","0","530","0","0","0","0","0","0","0","254","0","0","0","1","2","0","0","5","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","30","20","24","24","0","0","0","0","0","0","70" +"35475","-1","","","","","Stalker's Chain Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25498","127490","1","1","1","32768","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","749","0","0","0","0","946","0","0","115","4","0","0","0","0","0","0","0","0","0","0","0","0","407","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","3","32","35","5","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","31","21","11","14","6","0","0","0","0","0","70" +"35476","-1","","","","","Crusader's Ornamented Spaulders","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","44702","223513","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2859","0","0","0","0","751","0","0","0","0","946","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","873","0","0","0","0","0","0","0","254","0","0","0","2","3","0","0","6","0","0","1","0","7","5","21","35","-1","-1","-1","-1","-1","-1","0","6","0","0","3","3","0","30","19","15","14","0","0","0","0","0","0","70" +"35477","-1","","","","","Crusader's Scaled Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30143","150719","1","1","1","32768","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","752","0","0","0","0","946","0","0","115","2","0","0","0","0","0","0","0","0","0","0","0","0","728","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","1","0","7","5","32","4","35","-1","-1","-1","-1","-1","0","6","0","0","10","3","0","25","12","12","28","12","0","0","0","0","0","70" +"35478","-1","","","","","Savage Plate Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","45043","225219","1","1","1","32768","24580","0","0","0","80","0","0","0","0","0","2878","0","0","0","0","750","0","0","0","0","946","0","0","115","1","0","0","0","0","0","0","0","0","0","0","0","0","946","0","0","0","0","0","0","0","254","0","0","0","1","3","0","0","6","0","0","1","0","7","4","32","35","-1","-1","-1","-1","-1","-1","0","6","0","0","1","3","0","34","20","24","19","0","0","0","0","0","0","70" +"35485","-1","","","","","Goblin Rocket Launcher [PH]","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","20222","22500","90000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","202","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","12","3","0","45","0","0","0","0","0","0","0","0","0","0" +"35487","-1","Matches a Red Socket.","","","","Bright Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","921","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35488","-1","Matches a Red Socket.","","","","Runed Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","922","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35489","-1","Matches a Red Socket.","","","","Teardrop Crimson Spinel","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","923","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35494","-1","","","","","Shroud of Winter's Chill","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32525","162629","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","16","17","0","0","0","0","0","0","0","0","70" +"35495","-1","","","","","The Frost Lord's War Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32647","163237","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","23","22","0","0","0","0","0","0","0","0","70" +"35496","-1","","","","","Icebound Cloak","0","0","174","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32772","163863","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","12","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","30","25","0","0","0","0","0","0","0","0","70" +"35497","-1","","","","","Cloak of the Frigid Winds","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","32238","161192","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","93","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","4","0","18","16","22","0","0","0","0","0","0","0","70" +"35498","-1","Learn how to permanently enchant a weapon so your damaging spells and melee weapon hits occasionally inflict an additional 150 Frost damage and reduce the target's melee, ranged, and casting speed by 15% for 8 sec.","","","","Formula: Enchant Weapon - Deathfrost","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35499","-1","","","","","Ninja Grenade [PH]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35500","-1","Teaches how to permanently enchant a piece of chest armor to grant 15 defense rating. Requires a level 35 or higher item.","","","","Formula: Enchant Chest - Defense","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","360","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35501","-1","Only fits in a meta gem slot.","","","","Eternal Earthstorm Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","941","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35502","-1","Teaches you how to cut an Eternal Earthstorm Diamond.","","","","Design: Eternal Earthstorm Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35503","-1","Only fits in a meta gem slot.","","","","Ember Skyfire Diamond","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","942","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35504","-1","","","","","Phoenix Hatchling","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","2500","10000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35505","-1","Teaches you how to cut an Ember Skyfire Diamond.","","","","Design: Ember Skyfire Diamond","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","37500","150000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","370","755","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35507","-1","","","","","Amulet of Bitter Hatred","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","3","7","31","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","20","18","18","0","0","0","0","0","0","0","70" +"35508","-1","","","","","Choker of the Arctic Flow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50000","200000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","24","22","0","0","0","0","0","0","0","0","70" +"35509","-1","","","","","Amulet of Glacial Tranquility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50000","200000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","22","21","0","0","0","0","0","0","0","0","70" +"35510","-1","","","","","Monster - Sword, 1H Kil'jaeden","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1900","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35511","-1","","","","","Hailstone Pendant","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","31","7","12","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","19","33","22","0","0","0","0","0","0","0","70" +"35512","-1","","","","","Pocket Full of Snow","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35513","-1","","","","","Swift White Hawkstrider","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"35514","-1","A cold chill flows from the scythe.","","","","Frostscythe of Lord Ahune","0.4","0","-44","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","135496","677481","1","1","1","128","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","110","-1","0","0","284","0","0","0","0","427","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","1","0","7","5","21","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","4","0","40","35","33","0","0","0","0","0","0","0","70" +"35516","-1","","","","","Sun Touched Satchel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35517","-1","Teaches you how to craft Bindings of Lightning Reflexes.","","","","Pattern: Bindings of Lightning Reflexes","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35518","-1","Teaches you how to sew Bracers of Nimble Thought.","","","","Pattern: Bracers of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35519","-1","Teaches you how to craft Bracers of Renewed Life.","","","","Pattern: Bracers of Renewed Life","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35520","-1","Teaches you how to craft Living Earth Bindings.","","","","Pattern: Living Earth Bindings","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35521","-1","Teaches you how to craft Living Earth Shoulders.","","","","Pattern: Living Earth Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35522","-1","Teaches you how to sew a Mantle of Nimble Thought.","","","","Pattern: Mantle of Nimble Thought","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35523","-1","Teaches you how to craft Shoulderpads of Renewed Life.","","","","Pattern: Shoulderpads of Renewed Life","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35524","-1","Teaches you how to craft Shoulders of Lightning Reflexes.","","","","Pattern: Shoulders of Lightning Reflexes","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35525","-1","Teaches you how to sew a Swiftheal Mantle.","","","","Pattern: Swiftheal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35526","-1","Teaches you how to sew a Swiftheal Wraps.","","","","Pattern: Swiftheal Wraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35527","-1","Teaches you how to craft Swiftstrike Bracers.","","","","Pattern: Swiftstrike Bracers","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35528","-1","Teaches you how to craft Swiftstrike Shoulders.","","","","Pattern: Swiftstrike Shoulders","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12500","50000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35529","-1","Teaches you how to make Dawnsteel Bracers.","","","","Plans: Dawnsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35530","-1","Teaches you how to make Dawnsteel Shoulders.","","","","Plans: Dawnsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35531","-1","Teaches you how to make Swiftsteel Bracers.","","","","Plans: Swiftsteel Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35532","-1","Teaches you how to make Swiftsteel Shoulders.","","","","Plans: Swiftsteel Shoulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","7500","30000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35533","-1","Teaches you how to craft an Amulet of Flowing Life.","","","","Design: Amulet of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35534","-1","Teaches you how to craft a Hard Khorium Band.","","","","Design: Hard Khorium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35535","-1","Teaches you how to craft a Hard Khorium Choker.","","","","Design: Hard Khorium Choker","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35536","-1","Teaches you how to craft a Loop of Forged Power.","","","","Design: Loop of Forged Power","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35537","-1","Teaches you how to craft a Pendant of Sunfire.","","","","Design: Pendant of Sunfire","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35538","-1","Teaches you how to craft a Ring of Flowing Life.","","","","Design: Ring of Flowing Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","35000","140000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35539","-1","Teaches you how to craft Carapace of Sun and Shadow.","","","","Pattern: Carapace of Sun and Shadow","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35540","-1","Teaches you how to craft Embrace of the Phoenix.","","","","Pattern: Embrace of the Phoenix","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35541","-1","Teaches you how to craft Fletcher's Gloves of the Phoenix.","","","","Pattern: Fletcher's Gloves of the Phoenix","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35542","-1","Teaches you how to craft Gloves of Immortal Dusk.","","","","Pattern: Gloves of Immortal Dusk","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35544","-1","Teaches you how to sew Hands of Eternal Light.","","","","Pattern: Hands of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35545","-1","Teaches you how to craft Leather Chestguard of the Sun.","","","","Pattern: Leather Chestguard of the Sun","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35546","-1","Teaches you how to craft Leather Gauntlets of the Sun.","","","","Pattern: Leather Gauntlets of the Sun","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35548","-1","Teaches you how to sew Robe of Eternal Light.","","","","Pattern: Robe of Eternal Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35549","-1","Teaches you how to craft Sun-Drenched Scale Chestguard.","","","","Pattern: Sun-Drenched Scale Chestguard","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35550","-1","Teaches you how to craft Sun-Drenched Scale Gloves.","","","","Pattern: Sun-Drenched Scale Gloves","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35551","-1","Teaches you how to sew Sunfire Handwraps.","","","","Pattern: Sunfire Handwraps","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35552","-1","Teaches you how to sew Sunfire Robe.","","","","Pattern: Sunfire Robe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","197","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35553","-1","Teaches you how to make a Hard Khorium Battlefists.","","","","Plans: Hard Khorium Battlefists","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35554","-1","Teaches you how to make a Hard Khorium Battleplate.","","","","Plans: Hard Khorium Battleplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35555","-1","Teaches you how to make a Sunblessed Breastplate.","","","","Plans: Sunblessed Breastplate","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35556","-1","Teaches you how to make a Sunblessed Gauntlets.","","","","Plans: Sunblessed Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","365","164","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35557","-1","","","","","Huge Snowball","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","10","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35562","-1","","","","","Bear Flank","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","37","150","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35563","-1","","","","","Charred Bear Kabobs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"35564","-1","Teaches you how to cook Charred Bear Kabobs.","","","","Recipe: Charred Bear Kabobs","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35565","-1","","","","","Juicy Bear Burger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","12","240","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"35566","-1","Teaches you how to cook a Juicy Bear Burger.","","","","Recipe: Juicy Bear Burger","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","4500","18000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","185","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35568","-1","","","","","Flame of Silvermoon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11935","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"35569","-1","","","","","Flame of the Exodar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131072","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11933","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","50" +"35581","-1","","","","","Rocket Boots Xtreme Lite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","26127","130639","1","1","1","67108864","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","330","202","112","-1","0","0","0","0","0","0","0","0","0","0","0","0","105","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35582","-1","Teaches you how to make Rocket Boots Xtreme Lite.","","","","Schematic: Rocket Boots Xtreme Lite","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","355","202","71","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35674","-1","","","","","Test Druid Weapon","0.4","0","-39.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","524280","2621403","1","4","1","32768","24580","0","0","0","120","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3200","0","0","0","100","-1","0","0","270","0","0","0","0","406","0","0","0","0","500","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","4","0","0","1","0","12","7","37","0","0","0","0","0","0","0","0","0","0","0","17","4","0","27","39","24","0","0","0","0","0","0","0","70" +"35684","-1","","","","","Monster - Dagger, Horde PvP - Purple (Special Glow)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35691","-1","","","","","Ruined Metal Parts","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","237","950","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"35693","-1","","","","","Figurine - Empyrean Tortoise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","42","0","0","0","0","0","0","0","0","0","70" +"35694","-1","","","","","Figurine - Khorium Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","12000","48000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35695","-1","Teaches you how to create a Figurine - Empyrean Tortoise.","","","","Design: Figurine - Empyrean Tortoise","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35696","-1","Teaches you how to create a Figure - Khorium Boar.","","","","Design: Figurine - Khorium Boar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35697","-1","Teaches you how to create a Figure - Crimson Serpent.","","","","Design: Figurine - Crimson Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35698","-1","Teaches you how to create a Figure - Shadowsong Panther.","","","","Design: Figurine - Shadowsong Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35699","-1","Teaches you how to create a Figure - Seaspray Albatross.","","","","Design: Figurine - Seaspray Albatross","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35700","-1","","","","","Figurine - Crimson Serpent","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","33","49","0","0","0","0","0","0","0","0","70" +"35702","-1","","","","","Figurine - Shadowsong Panther","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35703","-1","","","","","Figurine - Seaspray Albatross","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","15000","60000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","755","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"35707","-1","Matches a Red or Blue Socket.","","","","Regal Nightseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","961","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35708","-1","Teaches you how to cut a Regal Nightseye.","","","","Design: Regal Nightseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","350","755","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35710","-1","","","","","Delicious Baked Ham","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","80","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"35712","-1","","","","","Monster - Sword, 2H Blood Elf C03 Blue (Med Blue Glow)","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35713","-1","","","","","Ninja Hook [PH]","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","250","0","5","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35714","-1","","","","","Monster - Staff, Velen","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","14","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","2","2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","17","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35716","-1","","","","","Shattrath Flask of Pure Death","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"35717","-1","","","","","Shattrath Flask of Blinding Light","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","70" +"35719","-1","","","","","Monster - Claw Insect Offhand","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1500","0","0","0","1","-1","0","0","1","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"35720","-1","","","","","Lord of Frost's Private Label","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35721","-1","Home of the Flaskataur.","","","","Flaskataur's Lamp","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35722","-1","","","","","Wipe Neutralizer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35723","-1","","","","","Shards of Ahune","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","11972","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"35725","-1","","","","","Summer Incense","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35728","-1","","","","","Greater Inscription of the Blade","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35729","-1","","","","","Greater Inscription of the Knight","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35730","-1","","","","","Greater Inscription of the Oracle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35731","-1","","","","","Greater Inscription of the Orb","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","70" +"35732","-1","","","","","TEST HELM","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","85553","427766","1","1","1","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","159","-1","0","0","0","0","0","0","0","0","0","0","0","0","1611","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","6","0","0","0","0","0","0","0","0","0","0","0","0","0","1","4","0","100","0","0","0","0","0","0","0","0","0","70" +"35733","-1","","","","","Ring of Harmonic Beauty","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60256","241024","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","31","22","32","0","0","0","0","0","0","0","70" +"35748","-1","","","","","Guardian's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","350","171","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","12","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","54","0","0","0","0","0","0","0","0","0","0" +"35749","-1","","","","","Sorcerer's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","350","171","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35750","-1","","","","","Redeemer's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","350","171","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35751","-1","","","","","Assassin's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","25000","100000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","12","0","0","0","0","0","0","0","0","0","350","171","125","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35752","-1","Teaches you how to make a Guardian's Alchemist Stone.","","","","Recipe: Guardian's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35753","-1","Teaches you how to make a Sorcerer's Alchemist Stone.","","","","Recipe: Sorcerer's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35754","-1","Teaches you how to make a Redeemer's Alchemist Stone.","","","","Recipe: Redeemer's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35755","-1","Teaches you how to make an Assassin's Alchemist Stone.","","","","Recipe: Assassin's Alchemist Stone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","62500","250000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","171","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35756","-1","Teaches how to permanently enchant a cloak to grant 12 defense rating. Requires a level 35 or higher item.","","","","Formula: Enchant Cloak - Steelweave","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","333","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35758","-1","Matches a Yellow or Blue Socket.","","","","Steady Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","981","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35759","-1","Matches a Yellow or Blue Socket.","","","","Forceful Seaspray Emerald","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","1","0","24580","0","0","0","0","0","0","0","0","982","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35760","-1","Matches a Red or Yellow Socket.","","","","Reckless Pyrestone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","983","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35761","-1","Matches a Yellow Socket.","","","","Quick Lionseye","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","984","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35762","-1","Teaches you how to cut a Reckless Pyrestone.","","","","Design: Reckless Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35763","-1","Teaches you how to cut a Quick Lionseye.","","","","Design: Quick Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35764","-1","Teaches you how to cut a Steady Seaspray Emerald.","","","","Design: Steady Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35765","-1","Teaches you how to cut a Forceful Seaspray Emerald.","","","","Design: Forceful Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","15000","60000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35766","-1","Teaches you how to cut a Steady Seaspray Emerald.","","","","Design: Steady Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35767","-1","Teaches you how to cut a Reckless Pyrestone.","","","","Design: Reckless Pyrestone","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35768","-1","Teaches you how to cut a Quick Lionseye.","","","","Design: Quick Lionseye","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35769","-1","Teaches you how to cut a Forceful Seaspray Emerald.","","","","Design: Forceful Seaspray Emerald","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","6","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"35828","-1","","","","","Totemic Beacon","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"35874","-1","Automated feeding, watering, bathing, and waste removal. Petting not included.","","","","Whizzlespark's Portable Pet Mansion","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","2","0","0","0","0","0","0","0","0","0","0","0","24","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"35906","1101","","","","","Reins of the Black War Elekk","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"35945","-1","There's something shiny inside....","","","","Brilliant Glass","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"36737","-1","","","","","Brutal Gladiator's Hatchet","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","154","-1500","0","0","196","0","0","0","0","365","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","1","1","0","0","1","0","7","32","35","31","-1","-1","-1","-1","-1","-1","0","0","0","0","22","4","0","31","20","14","9","0","0","0","0","0","0","70" +"36748","-1","","","","","Dark Brewmaiden's Brew","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","66562","24580","0","0","0","0","0","0","0","0","0","0","0","0","1584","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"36761","-1","","","","","Monster - Item, Tankard Metal Offhand (Red Glow)","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","11","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","23","0","0","0","0","0","0","0","0","0","0","0","0","1" +"36876","-1","","","","","Scorched Holy Symbol","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"36877","-1","","","","","Folded Letter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3075","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"36941","-1","","","","","Competitor's Tabard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","3","0","0","0","0","0","0","0","0","0","0","0","0" +"37011","-1","","","","","Magic Broom","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","65728","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","500","0","75","762","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"37012","-1","","","","","The Horseman's Reins","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"37059","-1","","","","","Monster - Item, Tankard Brewfest (Year 2 Blue)","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","2","12","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","0","0","0","0","0","0","0","0","0","0","0","0","1" +"37127","-1","","","","","Brightbrew Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","35965","1","1","1","67108928","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","45","0","0","0","0","0","0","0","0","0","70" +"37128","-1","","","","","Balebrew Charm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","35965","1","1","1","67108928","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","45","0","0","0","0","0","0","0","0","0","70" +"37148","-1","One page remains after breaking the seal on the 'Wrath of the Titans.'","","","","Singed Page","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","8750","35000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3076","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37297","-1","","","","","Gold Medallion","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"37298","-1","","","","","Competitor's Souvenir","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"37311","-1","Property of the Top Orc","","","","Skybreaker Whip","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"37312","-1","","","","","Carrot on a Stick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"37313","-1","","","","","Riding Crop","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","17500","70000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","69" +"37460","-1","","","","","[PH] Pet Toy - Pet Leash - Rope","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37488","-1","","","","","Wild Winter Pilsner","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37489","-1","","","","","Izzard's Ever Flavor","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37490","-1","","","","","Aromatic Honey Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37491","-1","","","","","Metok's Bubble Bock","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37492","-1","","","","","Springtime Stout","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37493","-1","","","","","Blackrock Lager","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37494","-1","","","","","Stranglethorn Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37495","-1","","","","","Draenic Pale Ale","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37496","-1","","","","","Binary Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37497","-1","","","","","Autumnal Acorn Ale","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37498","-1","","","","","Bartlett's Bitter Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37499","-1","","","","","Lord of Frost's Private Label","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37503","-1","Matches a Red or Blue Socket.","","","","Purified Shadowsong Amethyst","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","60000","240000","1","1","1","0","24580","0","0","0","0","0","0","0","0","1041","0","0","0","0","0","0","0","0","0","0","0","0","0","100","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"37504","-1","Teaches you how to cut a Purified Shadowsong Amethyst.","","","","Design: Purified Shadowsong Amethyst","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","125000","500000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1077","375","755","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37567","-1","","","","","Injector Kit: Super Healing Potions","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","1351","5405","1","1","1","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37571","-1","","","","","""Brew of the Month"" Club Membership Form","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12278","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37582","-1","","","","","Pyroblast Cinnamon Ball","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","0","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37583","-1","Gnomish Nutritional Effervescent Remarkably Delicious Sweets","","","","G.N.E.R.D.S.","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","0","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37584","-1","","","","","Soothing Spearmint Candy","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","0","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37585","-1","Note: Contains no actual demonic energy.","","","","Chewy Fel Taffy","0","86400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","0","1","196608","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37586","-1","","","","","Handful of Candy","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","131078","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37588","-1","","","","","Mostly Digested Fish","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","275","5500","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"37596","-1","","","","","Direbrew's Bottle DO NOT USE","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","3","19","1","1","1","64","24580","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","1","-1","0","0","1","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","13","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37597","-1","","","","","Direbrew's Shanker","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","122920","614601","1","1","1","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","115","-1","0","0","122","0","0","0","0","228","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","4","0","19","18","0","0","0","0","0","0","0","0","70" +"37598","-1","","","","","Swift Zhevra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"37599","-1","","","","","""Brew of the Month"" Club Membership Form","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12306","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37604","-1","What a lousy treat... or is it?","","","","Tooth Pick","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","0","0","10","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37605","-1","A pouch of copper pennies. What a lousy treat.","","","","Pouch of Pennies","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65540","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37606","-1","","","","","Penny Pouch","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","18","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37676","-1","","","","","Vengeful Nether Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","2000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","300","762","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"37710","-1","","","","","Crashin' Thrashin' Racer Controller","0","0","0","4224","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"37719","-1","","","","","Swift Zhevra","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"37736","-1","","","","","""Brew of the Month"" Club Membership Form","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12420","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37737","-1","","","","","""Brew of the Month"" Club Membership Form","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12421","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","1","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37739","-1","","","","","Brutal Gladiator's Blade of Alacrity","0.6","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","1488","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","18","30","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","32","21","18","18","-29","0","0","0","0","0","70" +"37740","-1","","","","","Brutal Gladiator's Swift Judgement","0.6","0","-68.8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","36864","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1600","0","0","0","154","1106","0","0","120","0","0","0","0","225","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","7","5","35","30","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","38","25","21","-29","0","0","0","0","0","0","70" +"37750","-1","","","","","Fresh Brewfest Hops","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"37816","-1","","","","","Preserved Brewfest Hops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","30" +"37827","-1","","","","","Brewfest Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","100000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","30" +"37828","-1","","","","","Great Brewfest Kodo","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1000000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"37829","-1","","","","","Brewfest Prize Token","0","1814400","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","200","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"37863","-1","","","","","Direbrew's Remote","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"37864","1101","","","","","Medallion of the Alliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","45","0","0","0","0","0","0","0","0","0","70" +"37865","690","","","","","Medallion of the Horde","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","128","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","35","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","45","0","0","0","0","0","0","0","0","0","70" +"37892","-1","","","","","[ph] Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","2","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37893","-1","Barleybrew brew, when you want the very best.","","","","[ph] Filled Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37894","-1","You've called down the thunder!","","","","[ph] Filled Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37895","-1","T'chali's Voodoo Brew has magic you don't want to understand.","","","","[PH[ Filled Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37896","-1","Drohn's Distillery, a wise choice.","","","","[PH] Filled Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37897","-1","Gordok brew, it's wet.","","","","[ph] Filled Green Brewfest Stein","0.1","0","-4","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","131264","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","5","32767","0","0","14","0","0","0","0","16","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","1","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","21","3","0","0","0","0","0","0","0","0","0","0","0","1" +"37898","-1","","","","","Wild Winter Pilsner","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37899","-1","","","","","Izzard's Ever Flavor","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37900","-1","","","","","Aromatic Honey Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37901","-1","","","","","Metok's Bubble Bock","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37902","-1","","","","","Springtime Stout","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37903","-1","","","","","Blackrock Lager","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37904","-1","","","","","Stranglethorn Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37905","-1","","","","","Draenic Pale Ale","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37906","-1","","","","","Binary Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37907","-1","","","","","Autumnal Acorn Ale","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37908","-1","","","","","Bartlett's Bitter Brew","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37909","-1","","","","","Lord of Frost's Private Label","0","1209600","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","6","150","6","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"37915","-1","Teaches you how to sew a pair of Dress Shoes.","","","","Pattern: Dress Shoes","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"37927","-1","","","","","Guardian's Band of Subjugation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","1","0","7","35","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","11","4","0","36","24","24","34","0","0","0","0","0","0","70" +"37928","-1","","","","","Guardian's Pendant of Subjugation","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","30","5","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","35","18","24","18","0","0","0","0","0","0","70" +"37929","-1","","","","","Guardian's Pendant of Reprieve","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","36864","24580","0","0","0","0","0","0","0","0","0","3164","0","0","0","0","0","0","0","0","0","0","0","0","154","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","3","0","0","0","5","0","0","1","0","7","35","5","30","-1","-1","-1","-1","-1","-1","0","0","0","0","2","4","0","25","18","19","26","0","0","0","0","0","0","70" +"37934","-1","Finely crafted from the rarest materials, this exquisite ring is worn only by the world's elite.","","","","Noble's Elementium Signet","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","50000","24000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38050","-1","","","","","Soul-Trader Beacon","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38082","-1","","","","","""Gigantique"" Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","12000000","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","22","0","0","0","18","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38089","-1","","","","","Ruby Shades","0","0","-2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","20000000","1","1","1","0","24580","0","0","0","20","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","2","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38090","-1","","","","","Sapphire Pinky Ring","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","6000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38091","-1","Passed down by royalty throughout time, the gift of this ring declares eternal love.","","","","Gold Eternium Band","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","30000000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","5","0","0","2","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38160","-1","","","","","Soul-Trader's Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38161","-1","","","","","Soul-Trader's Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38162","-1","","","","","Soul-Trader's Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38163","-1","","","","","Soul-Trader's Head Wrap","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38175","-1","Soldiers arise, stand and fight!","","","","The Horseman's Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","119893","599469","1","1","1","64","24580","0","0","0","105","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","115","-1","0","0","165","0","0","0","0","308","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","4","0","14","16","0","0","0","0","0","0","0","0","70" +"38186","-1","Only of value to an Ethereal Soul-Trader.","","","","Ethereal Credit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","1","0","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38225","-1","","","","","Mycah's Botanical Bag","0","0","0","32","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","23750","95000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","2","0","0","0","0","0","0","0","0","0","0","0","28","0","0","0","18","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38229","-1","Teaches you how to sew Mycah's Botanical Bag.","","","","Pattern: Mycah's Botanical Bag","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","4160","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","970","375","197","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38233","-1","","","","","Path of Illidan","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38276","-1","","","","","Haliscan Brimmed Hat","0","0","-200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","12556","62781","1","1","1","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","109","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38277","-1","","","","","Haliscan Jacket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1824","9122","1","1","1","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","36","-1","0","0","0","0","0","0","0","0","0","0","0","0","45","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38278","-1","","","","","Haliscan Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1664","8324","1","1","1","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","35","-1","0","0","0","0","0","0","0","0","0","0","0","0","39","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","7","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38280","-1","","","","","Direbrew's Dire Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","67584","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12491","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"38281","-1","","","","","Direbrew's Dire Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","67584","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12492","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"38285","-1","","","","","Soul-Trader's Waistband","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","6","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38286","-1","","","","","Soul-Trader's Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38287","-1","It's definitely not half full.","","","","Empty Mug of Direbrew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","100000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"38288","-1","Not very filling.","","","","Direbrew Hops","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","100000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"38289","-1","Perfect for bouncing off tables.","","","","Coren's Lucky Coin","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","100000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"38290","-1","","","","","Dark Iron Smoking Pipe","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","100000","1","0","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","110","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","4","0","0","0","0","0","0","0","0","0","0","0","70" +"38291","-1","","","","","Ethereal Mutagen","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38294","-1","","","","","Ethereal Liqueur","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","10","0","0","0","1","0","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38300","-1","","","","","Diluted Ethereum Essence","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","5","0","0","0","1","0","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38301","-1","Dancer's Integrated Sonic Celebration Oscillator","","","","D.I.S.C.O.","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","67108864","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38308","-1","This extracted soul has been pressed into service as entertainment for you.","","","","Ethereal Essence Sphere","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","0","0","1","0","1","2","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"38309","-1","","","","","Tabard of Nature","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38310","-1","","","","","Tabard of the Arcane","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38311","-1","","","","","Tabard of the Void","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38312","-1","","","","","Tabard of Brilliance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38313","-1","","","","","Tabard of Fury","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38314","-1","","","","","Tabard of the Defender","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","19","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38320","-1","","","","","Dire Brew","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38327","-1","Teaches you how to sew a Haliscan Jacket.","","","","Pattern: Haliscan Jacket","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1250","5000","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","197","50","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38328","-1","Teaches you how to sew Haliscan Pantaloons.","","","","Pattern: Haliscan Pantaloons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1125","4500","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","245","197","49","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38329","-1","The wide-brimmed hat of the young Don Carlos.","","","","Don Carlos' Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38427","-1","","","","","Pickled Egg","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","55" +"38428","-1","","","","","Rock-Salted Pretzel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","400","8000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"38429","-1","","","","","Blackrock Spring Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","200","4000","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","55","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","45" +"38430","-1","","","","","Blackrock Mineral Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","280","5600","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","60" +"38431","-1","","","","","Blackrock Fortified Water","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","320","6400","5","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","65" +"38432","-1","","","","","Plugger's Blackrock Ale","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","375","1500","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38466","-1","It'll knock your socks off... and then set your feet on fire.","","","","Sulfuron Slammer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","10","0","0","500","2000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","45","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"38506","-1","","","","","Don Carlos' Famous Hat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25500","127503","1","1","1","128","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","115","-1","0","0","0","0","0","0","0","0","0","0","0","0","127","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38518","-1","For Cro Threadstrong!","","","","Cro's Apple","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","24","0","37","150","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","7","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"38545","-1","Matches a Red Socket.","","","","Bold Ornate Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1122","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38546","-1","Matches a Yellow Socket.","","","","Gleaming Ornate Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1123","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38547","-1","Matches a Red or Yellow Socket.","","","","Inscribed Ornate Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1124","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38548","-1","Matches a Red or Yellow Socket.","","","","Potent Ornate Topaz","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1125","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38549","-1","Matches a Red Socket.","","","","Runed Ornate Ruby","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1126","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38550","-1","Matches a Yellow Socket.","","","","Smooth Ornate Dawnstone","0","0","0","512","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","4096","24580","0","0","0","0","0","0","0","0","1127","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","0" +"38576","-1","","","","","Big Battle Bear","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","1000000","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","150","762","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","60" +"38577","-1","Goblinoid Resonant Electro-Neural Automatic Dancing Emitter","","","","Party G.R.E.N.A.D.E.","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","250","0","0","0","0","50","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38578","-1","","","","","The Flag of Ownership","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"38579","-1","Sidney's tips for poison design.","","","","Venomous Tome","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1136","4545","1","1","1","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3106","0","0","0","0","25","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","7","7","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","0","0","0","0","0","0","0","0","0","0","20" +"38587","-1","","","","","Empty Brewfest Stein","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"38626","-1","","","","","Empty Brew Bottle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","24","0","0","2","1","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","3","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1" +"38628","-1","","","","","Nether Ray Fry","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","100000","400000","1","1","1","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1031","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","7","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"39149","-1","Someone's pet fish.","","","","""Fred""","0","300","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","65600","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"39476","-1","Now you can feel how the other side lives.","","","","Fresh Goblin Brewfest Hops","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"39477","-1","Now you can feel how the other side lives.","","","","Fresh Dwarven Brewfest Hops","0","604800","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","0","0","0","0","1","1","1","65536","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","4","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","30" +"39656","-1","","","","","Tyrael's Hilt","0","0","0","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1","32768","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"43516","-1","Teaches you how to summon this mount. This is a flying mount.","","","","Brutal Nether Drake","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","33388","0","2000000","1","1","1.0115","0","8192","0","16384","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","70" +"122270","-1","Can be sold for gold on the auction house. The auction buyer can redeem it for 30 days of game time.","","","","WoW Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0411","32768","28676","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"122284","-1","Use: Adds 30 days of game time to your World of Warcraft account.","","","","WoW Token","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0189","32768","28676","4096","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"172070","-1","Contains items for your class and level. Requires 15 empty inventory slots.","","","","Customer Service Package","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0107","66624","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"180089","-1","","","","","Panda Collar","1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1.0489","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","20","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184865","-1","Long has it slept, in a place lost in time, but the time to awaken is nigh.","","","","Reawakened Phase-Hunter","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1.0384","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","75","762","30","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","4","0","0","0","0","0","0","0","0","0","0","0","30" +"184871","-1","BEHOLD, THE DARK PORTAL. Well, a tiny version, at any rate.","","","","Dark Portal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","0.9868","32832","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","8","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"184937","-1","","","","","Chronoboon Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5","0","0","25000","100000","1","1","1.035","64","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"184938","-1","","","","","Supercharged Chronoboon Displacer","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","1","1.0386","96","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","60","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","2","0","0","0","0","0","0","0","0","0","0","0","0" +"185686","-1","Unlocks Heroic Difficulty for Hellfire Citadel dungeons.","","","","Flamewrought Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1.0014","0","24580","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","0","0","0","0","947","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185687","-1","Unlocks Heroic Difficulty for Hellfire Citadel dungeons.","","","","Flamewrought Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1.0051","0","24580","0","0","0","0","0","0","0","476","0","0","0","0","0","0","0","0","0","0","0","946","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185690","-1","Unlocks Heroic Difficulty for Coilfang Reservoir dungeons.","","","","Reservoir Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1.0426","0","24580","0","0","0","0","0","0","0","477","0","0","0","0","0","0","0","0","0","0","0","942","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185691","-1","Unlocks access to Heroic mode for Auchindoun dungeons.","","","","Auchenai Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1.0462","0","24580","0","0","0","0","0","0","0","478","0","0","0","0","0","0","0","0","0","0","0","1011","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185692","-1","Unlocks Heroic Difficulty for Tempest Keep dungeons.","","","","Warpforged Key","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","1.0499","0","24580","0","0","0","0","0","0","0","479","0","0","0","0","0","0","0","0","0","0","0","935","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185693","-1","Unlocks Heroic Difficulty for Caverns of Time dungeons.","","","","Key of Time","0","0","0","256","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","25000","100000","1","1","0.9535","0","24580","0","0","0","0","0","0","0","480","0","0","0","0","0","0","0","0","0","0","0","989","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185848","-1","","","","","Greater Drums of Battle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","0.9606","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","73","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185849","-1","","","","","Greater Drums of Panic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","0.9907","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","74","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185850","-1","","","","","Greater Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","0.9944","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","350","165","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185851","-1","","","","","Greater Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","0.9981","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","69","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185852","-1","","","","","Greater Drums of War","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","5000","20000","1","1","1.0018","8388672","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","340","165","68","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","2","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185922","-1","Teaches you how to craft Greater Drums of War.","","","","Pattern: Greater Drums of War","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","20000","80000","1","1","0.9645","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","375","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185923","-1","Teaches you how to craft Greater Drums of Speed.","","","","Pattern: Greater Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","0.9682","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","345","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185924","-1","Teaches you how to craft Greater Drums of Restoration.","","","","Pattern: Greater Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","0.9719","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","941","350","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185925","-1","Teaches you how to craft Greater Drums of Panic.","","","","Pattern: Greater Drums of Panic","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","0.9755","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","989","370","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185926","-1","Teaches you how to craft Greater Drums of Battle.","","","","Pattern: Greater Drums of Battle","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","30000","120000","1","1","0.9792","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","935","365","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"185956","-1","A delicate container made of an indistinguishable material.","","","","Shimmering Vessel","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","1","0","0","0","1","0","1.0423","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"185976","-1","","","","","Communal Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0422","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"185977","-1","","","","","Communal Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0458","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","11","0","0","0","0","0","0","0","0","58" +"185981","-1","","","","","Communal Band of Onslaught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9869","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","3","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","58" +"185982","-1","","","","","Communal Band of Dexterity","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9906","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","3","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","58" +"185983","-1","","","","","Communal Band of Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9943","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","3","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","5","5","3","0","0","0","0","0","0","0","58" +"185984","-1","","","","","Communal Band of Durability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.998","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","11","2","0","12","0","0","0","0","0","0","0","0","0","58" +"185985","-1","","","","","Communal Stone of Onslaught","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0016","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","-1","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","7","6","0","0","0","0","0","0","0","0","58" +"185986","-1","","","","","Communal Stone of Durability","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0053","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","58" +"185987","-1","","","","","Communal Stone of Wisdom","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.009","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","-1","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","7","6","0","0","0","0","0","0","0","0","58" +"185988","-1","","","","","Communal Stone of Stoicism","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0127","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","4","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","12","2","0","0","0","0","0","0","0","0","0","0","0","58" +"185998","-1","","","","","Communal Chestguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9758","0","24580","0","0","0","115","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","497","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","4","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","58" +"185999","-1","","","","","Communal Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9795","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186001","-1","","","","","Communal Plate Gauntlets","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9868","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","311","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","7","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186002","-1","","","","","Communal Plate Girdle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9905","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","6","0","0","0","0","0","0","0","0","58" +"186015","-1","","","","","Communal Plate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9646","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186016","-1","","","","","Communal Plate Greaves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9683","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","342","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","0","0","0","0","0","0","0","0","0","58" +"186018","-1","","","","","Communal Cowl","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9757","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","54","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186019","-1","","","","","Communal Mantle","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9793","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","51","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","6","0","0","0","0","0","0","0","0","58" +"186020","-1","","","","","Communal Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.983","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","68","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","58" +"186021","-1","","","","","Communal Sash","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9867","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","38","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","6","0","0","0","0","0","0","0","0","58" +"186022","-1","","","","","Communal Pants","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9904","0","24580","0","0","0","55","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","59","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186023","-1","","","","","Communal Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.994","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","47","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","11","0","0","0","0","0","0","0","0","0","58" +"186024","-1","","","","","Communal Bracers","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9977","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","30","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186025","-1","","","","","Communal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0014","0","24580","0","0","0","25","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","42","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","16","0","0","0","0","0","0","0","0","0","58" +"186026","-1","","","","","Communal Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0315","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186027","-1","","","","","Communal Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0352","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","6","0","0","0","0","0","0","0","0","58" +"186028","-1","","","","","Communal Tunic","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0389","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","137","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","58" +"186029","-1","","","","","Communal Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0426","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","77","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","6","0","0","0","0","0","0","0","0","58" +"186030","-1","","","","","Communal Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0462","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186031","-1","","","","","Communal Boots","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0499","0","24580","0","0","0","45","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","94","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","4","7","3","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","7","8","10","0","0","0","0","0","0","0","58" +"186032","-1","","","","","Communal Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9535","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186033","-1","","","","","Communal Gloves","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9572","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","86","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186034","-1","","","","","Communal Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9608","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186035","-1","","","","","Communal Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9645","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186036","-1","","","","","Communal Armor","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9682","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","283","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","5","2","0","22","0","0","0","0","0","0","0","0","0","58" +"186037","-1","","","","","Communal Belt","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9719","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","159","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","6","2","0","16","6","0","0","0","0","0","0","0","0","58" +"186038","-1","","","","","Communal Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9755","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186039","-1","","","","","Communal Boots","0.2","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9792","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","195","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","8","2","0","17","0","0","0","0","0","0","0","0","0","58" +"186040","-1","","","","","Communal Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9829","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186041","-1","","","","","Communal Gauntlets","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9865","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","177","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","10","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186044","-1","","","","","Communal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0241","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","9","5","0","0","0","0","0","0","0","58" +"186045","-1","","","","","Communal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0277","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","4","3","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","9","5","0","0","0","0","0","0","0","58" +"186046","-1","","","","","Communal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0314","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","7","5","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","4","9","4","0","0","0","0","0","0","0","58" +"186047","-1","","","","","Communal Cape","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0351","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","7","4","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","7","7","0","0","0","0","0","0","0","0","58" +"186048","-1","","","","","Communal Dagger","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0388","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1300","0","0","0","52","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","58" +"186049","-1","","","","","Communal Rose","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0424","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2000","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","7","3","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","23","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186050","-1","","","","","Communal Wand","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0461","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1400","0","0","0","52","-1","0","0","65","0","0","0","0","122","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","6","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","26","2","0","9","0","0","0","0","0","0","0","0","0","58" +"186051","-1","","","","","Communal Staff","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0498","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","140","0","0","0","0","210","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","2","2","0","0","1","0","5","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","25","0","0","0","0","0","0","0","0","58" +"186052","-1","","","","","Communal Idol of Wrath","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9534","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186053","-1","","","","","Communal Idol of the Wild","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.957","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186054","-1","","","","","Communal Idol of Life","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9607","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186055","-1","","","","","Communal Stave","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9644","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","118","0","0","0","0","178","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","2","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","22","0","0","0","0","0","0","0","0","0","58" +"186056","-1","","","","","Communal Bow","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","0","0.9681","32768","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","52","-1","0","0","68","0","0","0","0","128","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","3","32","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","15","2","2","14","14","0","0","0","0","0","0","0","0","58" +"186057","-1","","","","","Communal Warmaul","0.4","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9717","0","24580","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2700","0","0","0","52","-1","0","0","135","0","0","0","0","204","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","1","2","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","17","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186058","-1","","","","","Communal Sword","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","0","1.0019","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","4","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186060","-1","","","","","Communal Guardian","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0092","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","52","0","0","0","0","97","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","0","0","0","0","0","0","0","0","0","58" +"186061","-1","","","","","Communal Blade","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","0","1.0129","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","75","0","0","0","0","140","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186062","-1","","","","","Communal Smasher","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0166","0","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2500","0","0","0","52","-1","0","0","44","0","0","0","0","83","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","2","0","0","1","0","7","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186063","-1","","","","","Communal Shield","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0203","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","1","0","0","0","0","0","0","4","1","0","0","1","0","4","15","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186064","-1","","","","","Communal Buckler","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0239","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","1606","0","0","0","0","0","0","0","1","0","0","0","0","0","0","4","1","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","14","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186065","-1","","","","","Communal Book of Healing","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0276","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186066","-1","","","","","Communal Book of Protection","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0313","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186067","-1","","","","","Communal Book of Righteousness","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.035","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186068","-1","","","","","Communal Shiv","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0386","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1700","0","0","0","52","-1","0","0","43","0","0","0","0","81","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","3","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","9","0","0","0","0","0","0","0","0","0","58" +"186069","-1","","","","","Communal Knives","0.6","0","0","0","100","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0423","4194304","24580","0","0","0","200","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","51","0","0","0","0","95","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","25","2","0","10","0","0","0","0","0","0","0","0","0","58" +"186070","-1","","","","","Communal Right Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.046","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","21","2","0","4","7","0","0","0","0","0","0","0","0","58" +"186071","-1","","","","","Communal Totem of Lightning","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0497","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186072","-1","","","","","Communal Totem of Restoration","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9532","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186073","-1","","","","","Communal Totem of the Storm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9569","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","32767","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","2","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","28","2","0","0","0","0","0","0","0","0","0","0","0","58" +"186074","-1","","","","","Communal Necklace","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9871","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","3","0","0","1","0","7","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","2","2","0","12","0","0","0","0","0","0","0","0","0","58" +"186075","-1","","","","","Communal Cloak","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9907","0","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","33","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","7","0","0","1","0","6","5","7","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","16","2","0","3","9","5","0","0","0","0","0","0","0","58" +"186076","-1","","","","","Communal Bindings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9944","0","24580","0","0","0","30","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","60","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","7","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186078","-1","","","","","Communal Crown","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0018","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","111","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186079","-1","","","","","Communal Legguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0054","0","24580","0","0","0","65","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","120","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","3","7","4","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186080","-1","","","","","Communal Pads","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0091","0","24580","0","0","0","50","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","101","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","8","0","0","1","0","3","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","14","6","0","0","0","0","0","0","0","0","58" +"186081","-1","","","","","Communal Headguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0128","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","230","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186082","-1","","","","","Communal Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0165","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","248","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","3","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186083","-1","","","","","Communal Spaulders","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0201","0","24580","0","0","0","60","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","212","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186084","-1","","","","","Communal Armguards","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0238","0","24580","0","0","0","35","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","124","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","5","0","0","1","0","5","6","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186085","-1","","","","","Communal Plate Vambraces","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0275","0","24580","0","0","0","40","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","218","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","9","2","0","3","11","0","0","0","0","0","0","0","0","58" +"186086","-1","","","","","Communal Faceguard","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0312","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","404","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","7","5","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","2","0","14","14","0","0","0","0","0","0","0","0","58" +"186087","-1","","","","","Communal Plate Leggings","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0348","0","24580","0","0","0","85","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","435","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","5","7","6","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","7","2","0","19","7","3","0","0","0","0","0","0","0","58" +"186088","-1","","","","","Communal Pauldrons","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","1.0385","0","24580","0","0","0","70","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","52","-1","0","0","0","0","0","0","0","0","0","0","0","0","380","0","0","0","0","0","0","0","1","0","0","0","0","0","0","0","6","0","0","1","0","5","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","3","2","0","11","11","0","0","0","0","0","0","0","0","58" +"186163","-1","","","","","Communal Guardian","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","0","1.0461","32768","24580","0","0","0","90","0","0","0","0","0","0","0","0","0","0","0","0","0","0","2600","0","0","0","52","-1","0","0","78","0","0","0","0","146","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","3","1","0","0","1","0","-1","7","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","13","2","0","5","5","0","0","0","0","0","0","0","0","58" +"186682","-1","","","","","Communal Left Claw","0.6","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","1","1","1","0.9978","0","24580","0","0","0","75","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1800","0","0","0","52","-1","0","0","50","0","0","0","0","94","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","0","7","1","0","0","1","0","4","3","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","22","2","0","4","7","0","0","0","0","0","0","0","0","58" +"186683","-1","Teaches you how to permanently enchant a ring to increase all stats by 4.","","","","Formula: Enchant Ring - Stats","0","0","0","64","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","50000","200000","1","1","1.0015","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","990","375","333","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","6","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187048","-1","Teaches you how to craft Greater Drums of Restoration.","","","","Pattern: Greater Drums of Restoration","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","1.0499","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","350","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"187049","-1","Teaches you how to craft Greater Drums of Speed.","","","","Pattern: Greater Drums of Speed","0","0","0","8","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","40000","160000","1","1","0.9535","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","978","345","165","75","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","5","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","0" +"187129","-1","Honor is gained by killing members of the opposite faction in PvP combat. You can use honor points to purchase special items.","","","","Honor Points","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","0.9795","64","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"187130","-1","Honor is gained by killing members of the opposite faction in PvP combat. You can use honor points to purchase special items.","","","","Honor Points","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","0.9831","64","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","1" +"187435","-1","","","","","Green Power Crystal","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","100","0","0","0","0","1","1","1.0054","2048","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","0","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187643","-1","","","","","No Helm","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0129","0","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","4","0","0","4","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","1","1","0","0","0","0","0","0","0","0","0","0","0","1" +"187714","-1","When you invest in the Alliance, we invest in you. Can contain gold, rations, and rare treasures.","","","","Enlistment Bonus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","1.0058","4","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"187737","-1","","","","","Enchant Bracer - Assault","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0167","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187738","-1","","","","","Enchant Cloak - Stealth","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0204","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187739","-1","","","","","Enchant Gloves - Superior Agility","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0241","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187740","-1","","","","","Enchant Weapon - Mighty Spirit","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0277","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187783","-1","","","","","Enchant Shield - Resilience","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","0.9649","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187799","-1","When you invest in the Alliance, we invest in you. Can contain gold, rations, and rare treasures.","","","","Enlistment Bonus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","1","0.9501","4","8192","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","1","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","3","0","0","0","0","0","0","0","0","0","0","0","1" +"187800","-1","","","","","Enchant Cloak - Subtlety","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","0.9537","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187801","-1","","","","","Enchant Gloves - Threat","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","0.9574","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187807","-1","","","","","Enchant Cloak - Greater Nature Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","0.9794","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187814","-1","","","","","Enchant Shield - Frost Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0317","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" +"187815","-1","","","","","Enchant Cloak - Greater Fire Resistance","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","650","2600","1","1","1.0353","64","24580","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","70","-1","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","254","0","0","0","0","0","0","0","8","0","0","0","0","-1","-1","-1","-1","-1","-1","-1","-1","-1","-1","0","0","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0" diff --git a/HermesProxy/CSV/ItemSpellsData1.csv b/HermesProxy/CSV/ItemSpellsData1.csv new file mode 100644 index 00000000..1c207f6d --- /dev/null +++ b/HermesProxy/CSV/ItemSpellsData1.csv @@ -0,0 +1,2346 @@ +ID,Category,RecoveryTime,CategoryRecoveryTime +11,44,0,60000 +16,0,30000,0 +17,56,0,4000 +43,0,600000,0 +45,32,0,0 +47,44,0,300000 +56,32,0,0 +68,1,10000,0 +71,47,0,1000 +72,88,0,12000 +76,65,0,0 +87,40,0,10000 +89,0,30000,0 +91,65,0,30000 +100,44,0,15000 +101,32,0,5000 +103,0,60000,0 +109,37,0,600000 +110,0,60000,0 +111,0,60000,0 +112,0,60000,0 +114,99,0,1000 +120,50,0,10000 +122,35,0,25000 +124,52,0,10000 +134,21,0,15000 +179,99,0,1000 +184,21,0,15000 +246,51,0,10000 +255,17,0,10000 +260,1,0,0 +271,0,0,120000 +278,40,0,10000 +279,40,0,10000 +302,65,0,30000 +355,82,0,10000 +379,55,0,10000 +408,270,0,20000 +409,37,0,600000 +410,37,0,600000 +411,37,0,600000 +421,85,0,6000 +424,72,0,600000 +430,59,0,60000 +431,59,0,60000 +432,59,0,60000 +433,11,0,60000 +434,11,0,60000 +435,11,0,60000 +436,4,0,60000 +437,4,0,60000 +438,4,0,60000 +439,4,0,10000 +440,4,0,10000 +441,4,0,10000 +450,0,30000,0 +451,32,0,30000 +454,0,30000,0 +455,62,0,360000 +457,22,0,10000 +466,38,0,0 +474,22,0,10000 +498,37,0,300000 +500,35,0,120000 +503,37,0,600000 +507,22,0,10000 +509,22,0,10000 +513,23,0,600000 +543,56,0,30000 +553,55,0,10000 +555,23,0,600000 +556,511,0,900000 +568,1152,0,0 +586,82,0,30000 +590,99,0,1000 +592,56,0,4000 +593,22,0,60000 +595,54,0,600000 +599,99,0,1000 +600,56,0,4000 +603,0,60000,0 +629,99,0,1000 +630,99,0,1000 +633,56,0,3600000 +634,54,0,10000 +637,21,0,10000 +638,54,0,10000 +640,17,0,10000 +641,17,0,10000 +642,37,0,300000 +644,54,0,10000 +646,21,0,10000 +676,109,0,60000 +677,41,0,240000 +678,40,0,10000 +679,40,0,10000 +680,40,0,10000 +684,60,0,60000 +692,32,0,60000 +694,40,0,120000 +708,0,0,600000 +711,35,0,6000 +724,1145,0,600000 +740,46,0,300000 +742,0,600000,0 +743,95,0,600000 +745,34,0,0 +748,40,0,10000 +749,65,0,30000 +751,40,0,10000 +752,40,0,10000 +753,65,0,30000 +756,31,0,30000 +757,31,0,60000 +761,18,0,12000 +762,18,0,12000 +765,23,0,600000 +769,85,0,0 +773,51,0,10000 +775,751,0,300000 +776,99,0,1000 +779,85,0,0 +780,85,0,0 +781,82,0,5000 +800,1152,0,2000 +801,24,0,0 +805,29,0,0 +818,97,0,300000 +822,0,300000,0 +823,0,300000,0 +829,0,300000,0 +830,0,300000,0 +839,55,0,10000 +841,17,0,10000 +847,17,0,10000 +849,0,30000,0 +853,32,0,60000 +855,22,0,10000 +861,32,0,30000 +863,37,0,600000 +865,35,0,25000 +867,22,0,10000 +871,132,0,1800000 +877,0,30000,0 +879,19,0,15000 +895,23,0,600000 +903,17,0,10000 +911,18,0,12000 +917,99,0,1000 +930,85,0,6000 +932,62,0,360000 +934,99,0,1000 +937,18,0,12000 +947,99,0,1000 +949,99,0,1000 +955,99,0,1000 +957,18,0,12000 +963,72,0,600000 +965,18,0,30000 +966,511,0,900000 +968,23,0,600000 +974,99,0,1000 +986,99,0,1000 +994,54,0,600000 +998,22,0,60000 +1000,99,0,1000 +1009,133,25000,0 +1018,21,0,30000 +1019,21,0,30000 +1020,37,0,300000 +1022,20,0,300000 +1024,17,0,10000 +1028,21,0,10000 +1030,17,0,10000 +1044,0,20000,0 +1048,21,0,10000 +1050,35,600000,6000 +1052,55,0,20000 +1056,51,0,10000 +1069,99,0,1000 +1073,89,0,300000 +1092,18,0,12000 +1110,18,0,12000 +1112,35,0,6000 +1122,731,0,3600000 +1124,35,0,6000 +1127,11,0,60000 +1129,11,0,60000 +1131,11,0,60000 +1133,59,0,60000 +1134,350,0,300000 +1135,59,0,60000 +1137,59,0,60000 +1161,0,600000,0 +1179,55,0,30000 +1457,99,0,1000 +1485,351,0,0 +1491,41,0,300000 +1492,41,0,300000 +1495,65,0,5000 +1499,411,0,15000 +1504,18,0,60000 +1505,18,0,60000 +1506,18,0,60000 +1507,18,0,60000 +1508,18,0,60000 +1510,49,0,60000 +1513,33,0,30000 +1516,0,60000,0 +1535,35,0,15000 +1540,35,0,0 +1542,37,0,300000 +1543,0,15000,0 +1628,40,0,10000 +1629,40,0,10000 +1635,0,300000,0 +1645,65,0,30000 +1648,65,0,30000 +1663,65,0,30000 +1664,65,0,30000 +1665,65,0,30000 +1671,88,0,12000 +1672,88,0,12000 +1680,891,0,10000 +1698,50,0,180000 +1707,99,0,1000 +1708,40,30000,4000 +1709,40,30000,4000 +1719,132,0,1800000 +1725,22,0,30000 +1731,65,0,30000 +1732,65,0,30000 +1742,82,0,5000 +1753,82,0,5000 +1754,82,0,5000 +1755,82,0,5000 +1756,82,0,5000 +1760,40,0,0 +1766,88,0,10000 +1767,88,0,10000 +1768,88,0,10000 +1769,88,0,10000 +1770,73,0,30000 +1776,33,0,10000 +1777,33,0,10000 +1784,38,0,10000 +1785,38,0,10000 +1786,38,0,10000 +1787,38,0,10000 +1794,74,0,300000 +1795,74,0,300000 +1796,74,0,300000 +1797,74,0,300000 +1798,74,0,300000 +1812,65,0,30000 +1813,65,0,30000 +1814,65,0,30000 +1815,65,0,30000 +1849,55,0,30000 +1850,44,0,300000 +1856,39,0,300000 +1857,39,0,300000 +1864,95,0,600000 +1866,40,0,10000 +1868,41,0,300000 +1869,41,0,180000 +1870,41,0,300000 +1918,40,0,10000 +1920,65,0,30000 +1921,65,0,30000 +1922,65,0,30000 +1933,65,0,60000 +1940,24,0,0 +1941,99,0,1000 +1945,37,0,300000 +1953,44,0,15000 +1963,18,0,60000 +1964,18,0,60000 +1965,18,0,60000 +1966,82,0,10000 +1967,18,0,60000 +1968,32,0,60000 +1969,32,0,60000 +1970,32,0,60000 +1971,19,0,300000 +1972,19,0,240000 +1973,19,0,180000 +1975,63,0,300000 +1976,63,0,300000 +1977,63,0,600000 +1979,88,0,60000 +1980,35,0,0 +2023,4,0,60000 +2024,4,0,10000 +2063,56,0,600000 +2064,56,0,600000 +2094,0,300000,0 +2128,98,0,900000 +2129,98,0,900000 +2130,63,0,900000 +2131,63,0,900000 +2136,19,0,8000 +2137,19,0,8000 +2138,19,0,8000 +2139,88,0,30000 +2351,37,0,600000 +2353,37,0,600000 +2354,37,0,600000 +2370,4,0,60000 +2427,65,0,30000 +2428,65,0,30000 +2429,65,0,30000 +2430,65,0,30000 +2431,65,0,30000 +2457,47,0,1000 +2458,47,0,1000 +2459,47,0,3000 +2460,47,0,3000 +2463,47,0,150000 +2480,76,0,0 +2484,0,15000,0 +2495,40,0,10000 +2497,65,0,30000 +2498,65,0,30000 +2499,65,0,30000 +2500,65,0,30000 +2501,65,0,30000 +2502,65,0,60000 +2503,65,0,60000 +2504,65,0,60000 +2505,65,0,60000 +2506,65,0,60000 +2564,66,0,300000 +2565,0,5000,0 +2566,68,0,300000 +2568,44,0,0 +2569,44,0,0 +2570,44,0,0 +2597,4,0,60000 +2598,4,0,60000 +2599,4,0,60000 +2600,4,0,60000 +2601,21,0,20000 +2602,21,0,15000 +2606,19,0,6000 +2607,19,0,6000 +2608,19,0,6000 +2609,19,0,6000 +2610,19,0,6000 +2627,40,0,10000 +2628,40,0,10000 +2629,40,0,10000 +2630,40,0,10000 +2638,11,0,60000 +2639,11,0,60000 +2640,11,0,60000 +2642,11,0,60000 +2643,85,0,10000 +2644,11,0,60000 +2646,11,0,60000 +2647,32,0,60000 +2649,82,0,5000 +2651,1144,0,300000 +2677,40,0,10000 +2679,40,0,10000 +2680,40,0,10000 +2681,40,0,10000 +2682,40,0,10000 +2687,0,60000,0 +2697,40,0,10000 +2699,40,0,10000 +2700,40,0,10000 +2701,40,0,10000 +2702,40,0,10000 +2707,40,0,10000 +2709,40,0,10000 +2710,40,0,10000 +2711,40,0,10000 +2712,40,0,10000 +2717,40,0,10000 +2719,40,0,10000 +2720,40,0,10000 +2721,40,0,10000 +2722,40,0,10000 +2727,40,0,10000 +2728,40,0,10000 +2729,40,0,10000 +2730,40,0,10000 +2731,40,0,10000 +2764,76,0,0 +2768,99,0,1000 +2770,99,0,1000 +2771,99,0,1000 +2783,99,0,1000 +2800,56,0,3600000 +2808,17,0,10000 +2809,17,0,10000 +2812,35,0,60000 +2848,44,0,0 +2849,68,0,300000 +2850,44,0,0 +2852,21,0,10000 +2854,99,0,1000 +2856,99,0,0 +2860,85,0,6000 +2861,35,0,30000 +2864,99,0,1000 +2867,17,0,10000 +2878,33,0,30000 +2880,32,0,0 +2882,39,0,0 +2887,99,0,1000 +2888,99,0,1000 +2894,99,0,1000 +2895,99,0,1000 +2922,65,0,30000 +2924,65,0,30000 +2925,65,0,30000 +2944,691,0,180000 +2951,35,0,6000 +2973,40,0,6000 +2983,44,0,300000 +2984,44,0,0 +3005,63,0,600000 +3013,35,0,0 +3015,35,0,0 +3019,0,0,40000 +3032,39,0,30000 +3039,0,0,30000 +3040,0,0,30000 +3041,0,0,30000 +3042,0,0,30000 +3044,2,0,6000 +3045,55,0,300000 +3106,35,0,3000 +3107,23,0,0 +3109,32,0,10000 +3129,50,0,0 +3130,65,0,30000 +3131,2,0,10000 +3132,0,0,30000 +3133,55,0,30000 +3136,55,0,30000 +3143,32,0,0 +3145,42,0,15000 +3146,51,0,30000 +3147,40,0,0 +3148,52,0,0 +3149,55,0,30000 +3150,18,0,30000 +3151,55,0,30000 +3169,37,0,0 +3204,35,0,600000 +3219,4,0,60000 +3221,4,0,60000 +3222,4,0,60000 +3223,4,0,60000 +3229,55,0,3000 +3232,41,0,300000 +3233,36,0,10000 +3234,2,0,0 +3235,21,0,0 +3238,21,0,45000 +3242,65,0,0 +3247,65,0,30000 +3248,21,0,0 +3252,36,0,30000 +3256,0,0,420000 +3260,21,0,0 +3261,18,0,0 +3263,32,0,0 +3264,36,0,0 +3284,21,0,0 +3288,36,0,0 +3322,21,0,0 +3332,51,0,10000 +3335,36,0,180000 +3338,21,0,0 +3339,21,0,0 +3358,18,0,0 +3359,25,0,0 +3360,36,0,0 +3361,2,0,0 +3368,25,0,0 +3385,65,0,10000 +3387,36,0,0 +3388,18,0,0 +3389,21,0,0 +3391,65,0,0 +3393,2,0,0 +3394,2,0,0 +3416,0,0,60000 +3417,65,0,0 +3418,21,0,0 +3419,21,0,0 +3427,36,0,0 +3429,62,0,0 +3436,36,0,420000 +3442,22,0,0 +3443,55,0,0 +3446,65,0,70000 +3466,73,0,30000 +3477,38,0,0 +3485,36,0,0 +3486,38,0,10000 +3490,21,0,0 +3499,0,0,20000 +3527,23,20000,0 +3537,23,0,0 +3542,34,0,60000 +3547,0,0,25000 +3551,65,0,0 +3558,99,0,1000 +3583,18,0,120000 +3584,18,0,180000 +3586,18,0,180000 +3589,36,0,0 +3591,4,0,0 +3592,4,0,10000 +3597,40,0,10000 +3603,36,0,45000 +3604,36,0,20000 +3605,23,0,0 +3609,36,0,0 +3611,23,0,0 +3629,0,0,120000 +3631,55,0,0 +3635,36,0,45000 +3636,36,0,0 +3637,21,0,0 +3639,21,0,0 +3648,37,0,0 +3650,36,0,30000 +3651,54,0,30000 +3669,0,0,30000 +3680,37,0,600000 +3716,36,0,5000 +3718,24,0,0 +3720,0,0,10000 +3742,21,0,10000 +3743,40,0,10000 +3747,56,0,4000 +3822,24,0,0 +3823,23,0,7000 +3825,21,0,0 +3826,21,0,0 +3827,0,0,30000 +4042,4,0,10000 +4079,0,0,600000 +4083,96,0,300000 +4101,0,0,15000 +4102,65,0,30000 +4104,44,0,300000 +4105,44,0,300000 +4107,47,0,0 +4108,47,0,0 +4109,47,0,0 +4111,47,0,0 +4134,47,0,0 +4135,47,0,0 +4137,47,0,0 +4139,47,0,0 +4146,55,0,45000 +4147,55,0,60000 +4148,57,0,420000 +4149,0,0,45000 +4150,0,0,120000 +4154,0,0,60000 +4159,65,0,30000 +4166,0,0,30000 +4167,34,0,120000 +4168,34,0,120000 +4169,34,0,120000 +4170,0,0,5000 +4209,25,0,15000 +4221,25,0,15000 +4238,21,0,180000 +4242,0,0,30000 +4244,36,0,0 +4245,36,0,0 +4246,34,0,60000 +4280,2,0,0 +4281,85,0,60000 +4286,18,0,120000 +4312,46,0,0 +4314,38,0,0 +4320,18,0,45000 +4321,36,0,5000 +4511,0,10000,0 +4520,50,0,180000 +4526,0,0,120000 +4538,0,0,300000 +4539,0,0,300000 +4629,0,0,300000 +4805,36,0,180000 +4938,49,0,0 +4940,20,0,30000 +4941,28,0,60000 +4948,39,0,30000 +4955,0,0,45000 +4961,25,0,0 +4979,0,0,25000 +5004,11,0,60000 +5005,11,0,60000 +5006,11,0,60000 +5007,11,0,60000 +5010,0,0,60000 +5019,351,0,0 +5102,38,0,0 +5105,18,0,30000 +5106,33,0,0 +5108,0,0,20000 +5110,0,0,20000 +5115,55,0,0 +5116,0,12000,0 +5119,64,0,3000 +5120,64,0,30000 +5121,64,0,30000 +5122,64,0,30000 +5123,64,0,30000 +5124,64,0,30000 +5151,38,0,0 +5164,0,10000,0 +5165,0,10000,0 +5174,25,0,0 +5197,44,0,0 +5198,99,0,1000 +5199,44,0,0 +5208,18,0,0 +5209,0,600000,0 +5211,32,0,60000 +5215,38,0,10000 +5217,0,1000,0 +5219,2,0,0 +5223,0,600000,0 +5229,0,60000,0 +5236,37,0,0 +5238,37,0,60000 +5246,0,180000,0 +5252,23,0,240000 +5254,99,0,1000 +5256,66,0,90000 +5258,38,0,0 +5271,65,0,0 +5276,98,0,0 +5277,66,0,300000 +5280,99,0,0 +5320,99,0,1000 +5321,99,0,1000 +5322,99,0,1000 +5323,99,0,1000 +5324,99,0,1000 +5325,99,0,1000 +5333,75,0,15000 +5337,65,0,0 +5363,47,0,0 +5365,47,0,0 +5366,47,0,0 +5367,47,0,0 +5384,0,30000,0 +5391,37,0,300000 +5401,2,0,0 +5403,35,0,30000 +5405,30,0,60000 +5406,30,0,60000 +5413,0,0,30000 +5422,0,0,60000 +5426,0,0,30000 +5484,634,0,40000 +5514,22,0,0 +5515,99,0,0 +5532,85,0,6000 +5568,49,0,0 +5569,40,0,10000 +5573,37,0,300000 +5588,32,0,60000 +5589,32,0,60000 +5592,26,0,3600000 +5599,20,0,300000 +5601,55,0,20000 +5602,55,0,20000 +5605,23,0,0 +5614,19,0,15000 +5615,19,0,15000 +5627,33,0,30000 +5665,102,0,0 +5694,38,0,0 +5701,87,0,0 +5703,65,0,30000 +5707,38,0,0 +5708,85,0,0 +5718,38,0,0 +5719,38,0,0 +5720,30,0,0 +5723,30,0,0 +5730,45,0,30000 +5734,108,0,300000 +5737,51,0,10000 +5739,87,0,0 +5759,39,0,30000 +5781,51,0,45000 +5858,37,60000,0 +5862,99,0,1000 +5916,38,0,120000 +5917,22,0,0 +5918,32,0,30000 +5990,21,0,45000 +6016,36,0,45000 +6065,56,0,4000 +6066,56,0,4000 +6084,94,0,0 +6131,35,0,25000 +6134,99,0,1000 +6135,99,0,1000 +6139,44,0,30000 +6143,56,0,30000 +6146,51,0,10000 +6148,23,0,600000 +6174,41,0,10000 +6175,41,0,10000 +6178,44,0,15000 +6184,67,0,60000 +6186,65,0,0 +6229,56,0,30000 +6230,56,0,30000 +6254,85,0,0 +6255,2,0,0 +6260,38,0,0 +6261,38,0,0 +6262,30,0,0 +6263,30,0,0 +6264,21,0,45000 +6266,0,0,30000 +6268,44,5000,0 +6274,23,0,45000 +6278,0,0,30000 +6280,65,0,0 +6281,65,0,0 +6282,65,0,0 +6283,65,0,0 +6286,65,0,0 +6295,35,0,6000 +6297,35,0,0 +6305,35,0,6000 +6306,18,0,0 +6311,65,0,0 +6314,65,0,0 +6315,65,0,0 +6316,65,0,0 +6317,65,0,0 +6328,65,0,0 +6331,65,0,0 +6332,65,0,0 +6333,65,0,0 +6334,65,0,0 +6343,49,0,4000 +6344,22,0,30000 +6346,0,30000,0 +6353,631,0,60000 +6360,82,0,4000 +6376,104,0,1000 +6378,104,0,1000 +6390,45,0,30000 +6391,45,0,30000 +6392,45,0,30000 +6409,32,0,30000 +6410,11,0,60000 +6432,32,0,0 +6433,21,0,0 +6434,99,0,60000 +6435,65,0,6000 +6443,65,0,0 +6444,65,0,0 +6445,65,0,0 +6446,65,0,0 +6447,65,0,0 +6469,35,0,0 +6487,31,0,60000 +6490,23,0,20000 +6507,99,0,1000 +6512,79,0,10000 +6513,79,0,10000 +6523,37,0,0 +6524,0,5000,0 +6528,99,0,0 +6530,36,0,30000 +6533,34,0,0 +6535,35,0,40000 +6538,47,0,90000 +6542,43,0,30000 +6544,44,0,30000 +6552,88,0,10000 +6554,88,0,10000 +6555,88,0,10000 +6568,65,0,0 +6570,109,0,60000 +6572,65,0,5000 +6574,65,0,5000 +6576,47,0,30000 +6580,42,0,30000 +6595,40,10000,0 +6605,99,0,0 +6607,0,0,20000 +6612,4,0,60000 +6613,4,0,60000 +6614,4,0,60000 +6615,4,0,60000 +6634,38,0,0 +6664,66,0,10000 +6685,18,0,30000 +6711,44,0,360000 +6724,37,0,0 +6725,63,0,30000 +6726,32,0,0 +6728,99,0,0 +6742,55,0,0 +6749,0,0,15000 +6768,82,0,10000 +6772,32,0,5000 +6783,38,0,10000 +6789,633,0,120000 +6793,0,1000,0 +6795,82,0,10000 +6798,32,0,60000 +6814,18,0,0 +6917,18,0,0 +6921,44,0,180000 +6922,32,0,0 +6940,25,0,0 +6942,0,0,10000 +6950,0,0,30000 +6957,99,0,5000 +6960,99,0,1000 +6975,0,60000,0 +6976,0,60000,0 +6977,0,60000,0 +6982,0,0,30000 +6996,49,0,60000 +7020,0,30000,0 +7033,1,0,0 +7068,36,0,0 +7069,99,0,1000 +7074,0,0,5000 +7090,39,0,30000 +7092,0,0,15000 +7093,0,0,20000 +7101,63,0,0 +7102,36,0,120000 +7104,38,0,0 +7106,12,0,7000 +7108,99,0,1000 +7121,37,0,0 +7125,0,0,60000 +7127,0,0,60000 +7132,0,0,200000 +7136,32,0,0 +7137,44,0,0 +7139,0,0,20000 +7140,0,0,25000 +7145,85,0,10000 +7154,0,0,7000 +7160,41,0,30000 +7164,47,0,180000 +7165,47,0,180000 +7178,99,0,1000 +7230,99,0,1000 +7231,99,0,1000 +7232,99,0,1000 +7233,99,0,1000 +7234,99,0,1000 +7235,99,0,1000 +7236,99,0,1000 +7237,99,0,1000 +7238,99,0,1000 +7239,99,0,1000 +7240,99,0,1000 +7241,99,0,1000 +7242,99,0,1000 +7243,99,0,1000 +7244,99,0,1000 +7245,99,0,1000 +7246,99,0,1000 +7247,99,0,1000 +7248,99,0,1000 +7249,99,0,1000 +7250,99,0,1000 +7251,99,0,1000 +7252,99,0,1000 +7253,99,0,1000 +7254,99,0,1000 +7273,99,0,1000 +7279,36,0,0 +7290,99,0,1000 +7291,11,0,60000 +7331,99,0,1000 +7342,85,0,0 +7355,0,300000,0 +7357,0,0,30000 +7359,97,0,300000 +7363,99,0,1000 +7365,0,0,60000 +7366,47,0,0 +7371,44,0,25000 +7377,88,0,10000 +7379,65,0,5000 +7383,37,0,0 +7384,65,0,5000 +7390,82,0,10000 +7391,82,0,10000 +7394,85,0,0 +7396,4,0,0 +7399,99,0,0 +7400,40,0,120000 +7402,40,0,120000 +7482,19,0,0 +7586,32,0,0 +7587,32,0,0 +7638,25,0,0 +7645,99,0,0 +7713,36,0,0 +7737,11,0,60000 +7744,0,120000,0 +7806,21,0,5000 +7807,21,0,5000 +7808,21,0,5000 +7809,36,0,5000 +7810,36,0,5000 +7811,36,0,5000 +7813,82,0,4000 +7814,73,0,12000 +7815,40,0,12000 +7816,40,0,12000 +7822,38,0,0 +7823,38,0,0 +7825,38,0,0 +7826,38,0,0 +7844,99,0,1000 +7870,37,0,0 +7887,65,0,5000 +7918,76,0,0 +7919,76,0,0 +7932,99,0,1000 +7933,99,0,1000 +7938,41,0,0 +7960,31,0,0 +7961,32,0,0 +7966,99,0,1000 +7974,38,0,10000 +7992,51,0,10000 +8041,39,0,0 +8042,19,0,6000 +8044,19,0,6000 +8045,19,0,6000 +8046,19,0,6000 +8050,19,0,6000 +8052,19,0,6000 +8053,19,0,6000 +8056,19,0,6000 +8058,19,0,6000 +8060,19,0,6000 +8078,22,0,0 +8082,38,0,0 +8083,38,0,0 +8084,38,0,0 +8085,38,0,0 +8092,19,0,8000 +8102,19,0,8000 +8103,19,0,8000 +8104,19,0,8000 +8105,19,0,8000 +8106,19,0,8000 +8122,43,0,30000 +8124,43,0,30000 +8138,18,0,0 +8139,18,0,0 +8141,25,0,0 +8147,22,0,0 +8148,99,0,1000 +8150,22,0,0 +8151,32,0,30000 +8152,38,0,10000 +8153,39,0,0 +8177,230,0,15000 +8198,49,0,4000 +8204,49,0,4000 +8205,49,0,4000 +8215,55,0,0 +8216,38,0,10000 +8218,38,0,10000 +8242,88,0,0 +8255,85,0,0 +8256,18,0,120000 +8260,44,0,0 +8269,21,0,0 +8273,65,0,0 +8275,18,0,0 +8282,36,0,0 +8285,49,0,25000 +8292,85,0,0 +8293,35,0,0 +8295,19,0,0 +8312,34,0,0 +8355,40,0,0 +8356,63,0,0 +8358,25,0,0 +8363,18,0,0 +8374,85,0,0 +8379,109,0,0 +8382,18,0,0 +8391,65,0,0 +8412,19,0,8000 +8413,19,0,8000 +8429,31,0,10000 +8457,56,0,30000 +8458,56,0,30000 +8461,56,0,30000 +8462,56,0,30000 +8479,31,0,10000 +8480,31,0,10000 +8481,31,0,10000 +8492,50,0,10000 +8498,35,0,15000 +8499,35,0,15000 +8595,25,0,15000 +8599,21,0,0 +8601,51,0,0 +8621,40,0,0 +8629,33,0,10000 +8637,82,0,10000 +8643,270,0,20000 +8690,89,0,3600000 +8696,44,0,300000 +8697,44,0,0 +8699,55,0,0 +8715,99,0,30000 +8736,31,0,0 +8739,36,0,0 +8788,0,10000,0 +8806,18,0,0 +8814,63,0,30000 +8822,38,0,0 +8832,0,10000,0 +8833,21,0,0 +8834,21,0,0 +8852,36,0,0 +8873,50,0,0 +8874,38,0,10000 +8876,65,0,0 +8909,0,10000,0 +8918,46,0,300000 +8983,32,0,60000 +8988,32,0,0 +8989,49,0,0 +8998,84,0,10000 +9000,84,0,10000 +9128,43,0,0 +9177,11,0,60000 +9220,0,0,10000 +9252,30,0,60000 +9253,30,0,60000 +9257,56,0,3600000 +9373,99,0,1000 +9435,63,0,0 +9438,37,0,0 +9460,21,0,0 +9512,60,0,60000 +9572,37,60000,0 +9573,50,0,0 +9575,63,0,0 +9578,82,0,30000 +9579,82,0,30000 +9592,82,0,30000 +9612,36,0,0 +9733,49,0,15000 +9736,39,0,5000 +9740,39,0,5000 +9741,43,10000,5000 +9754,85,0,0 +9782,0,5000,0 +9784,0,5000,0 +9791,52,0,0 +9821,44,0,300000 +9845,0,1000,0 +9846,0,1000,0 +9862,46,0,300000 +9863,46,0,300000 +9874,63,0,0 +9879,63,0,0 +9892,84,0,10000 +9906,54,0,0 +9908,85,0,0 +9913,38,0,10000 +9949,31,0,30000 +9956,25,0,0 +9976,39,0,30000 +9977,31,0,30000 +10017,35,0,0 +10018,35,0,0 +10032,38,0,0 +10052,30,0,60000 +10057,30,0,60000 +10058,30,0,60000 +10059,0,60000,0 +10060,0,180000,0 +10073,19,0,0 +10159,50,0,10000 +10160,50,0,10000 +10161,50,0,10000 +10177,56,0,30000 +10197,19,0,8000 +10199,19,0,8000 +10223,56,0,30000 +10225,56,0,30000 +10230,35,0,25000 +10232,44,0,20000 +10236,64,0,3000 +10238,64,0,3000 +10240,64,0,3000 +10241,64,0,3000 +10242,64,0,3000 +10250,59,0,60000 +10251,36,0,0 +10253,35,0,0 +10256,11,0,60000 +10257,11,0,60000 +10278,20,0,300000 +10280,55,0,20000 +10281,55,0,20000 +10308,32,0,60000 +10310,56,0,3600000 +10312,19,0,15000 +10313,19,0,15000 +10314,19,0,15000 +10318,35,0,60000 +10319,35,0,60000 +10326,33,0,30000 +10332,40,0,10000 +10333,40,0,10000 +10368,56,0,0 +10412,19,0,6000 +10413,19,0,6000 +10414,19,0,6000 +10427,45,0,30000 +10428,45,0,30000 +10447,19,0,6000 +10448,19,0,6000 +10451,63,0,0 +10472,19,0,6000 +10473,19,0,6000 +10591,19,0,6000 +10592,19,0,6000 +10605,85,0,6000 +10618,99,0,1000 +10651,36,0,0 +10653,36,0,0 +10667,1,0,210000 +10668,1,0,210000 +10669,1,0,210000 +10692,1,0,210000 +10693,1,0,210000 +10732,21,0,0 +10733,50,0,0 +10851,109,0,0 +10852,34,0,0 +10855,51,0,0 +10856,51,0,0 +10887,88,0,0 +10888,43,0,30000 +10890,43,0,30000 +10898,56,0,4000 +10899,56,0,4000 +10900,56,0,4000 +10901,56,0,4000 +10941,82,0,30000 +10942,82,0,30000 +10945,19,0,8000 +10946,19,0,8000 +10947,19,0,8000 +10967,43,0,0 +10968,43,0,0 +11007,59,0,10000 +11008,59,0,10000 +11009,59,0,10000 +11013,38,0,0 +11020,36,0,0 +11084,19,0,6000 +11085,85,0,0 +11087,21,0,0 +11088,21,0,0 +11113,250,0,45000 +11129,1151,0,180000 +11264,35,0,15000 +11285,33,0,10000 +11286,33,0,10000 +11293,40,0,0 +11294,40,0,0 +11303,82,0,10000 +11305,44,0,300000 +11314,35,0,15000 +11315,35,0,15000 +11318,44,0,0 +11350,4,0,0 +11365,89,0,3600000 +11387,4,0,10000 +11389,64,0,3000 +11390,99,0,1000 +11392,37,0,600000 +11397,18,0,0 +11406,79,0,0 +11407,64,0,3000 +11416,0,60000,0 +11417,0,60000,0 +11418,0,60000,0 +11419,0,60000,0 +11420,0,60000,0 +11426,471,0,30000 +11427,85,0,6000 +11428,0,5000,0 +11430,32,0,0 +11436,51,0,10000 +11443,22,0,0 +11445,56,0,4000 +11474,99,0,1000 +11479,310,0,86400000 +11480,310,0,172800000 +11481,63,0,0 +11504,49,0,0 +11515,99,0,1000 +11560,350,0,300000 +11561,350,0,300000 +11578,44,0,15000 +11580,49,0,4000 +11581,49,0,4000 +11584,65,0,5000 +11585,65,0,5000 +11588,82,0,10000 +11589,82,0,10000 +11590,82,0,10000 +11600,65,0,5000 +11601,65,0,5000 +11629,59,0,10000 +11647,56,0,4000 +11732,30,0,0 +11739,56,0,30000 +11740,56,0,30000 +11774,36,0,5000 +11775,36,0,5000 +11778,40,0,12000 +11779,40,0,12000 +11780,40,0,12000 +11784,82,0,4000 +11785,82,0,4000 +11791,36,0,0 +11820,34,0,0 +11821,19,0,0 +11824,19,0,6000 +11825,19,0,6000 +11828,85,0,0 +11835,56,0,4000 +11836,98,0,0 +11837,85,0,0 +11841,0,0,1000 +11876,32,0,0 +11903,4,0,60000 +11920,34,0,0 +11922,99,0,0 +11958,37,0,300000 +12001,0,0,420000 +12023,34,0,0 +12024,34,0,0 +12042,0,180000,0 +12043,1151,0,180000 +12051,0,480000,0 +12058,85,0,6000 +12097,36,0,0 +12166,36,0,0 +12170,65,0,0 +12245,36,0,0 +12246,36,0,0 +12252,34,0,0 +12279,36,0,0 +12292,0,30000,0 +12294,971,0,6000 +12328,0,180000,0 +12331,65,0,0 +12332,39,0,30000 +12472,0,600000,0 +12527,290,0,60000 +12528,32,0,0 +12544,0,10000,0 +12550,0,10000,0 +12553,19,0,6000 +12561,99,0,1000 +12736,0,3600000,0 +12747,99,0,0 +12787,65,0,0 +12795,21,0,0 +12809,0,45000,0 +12880,21,0,0 +12938,391,0,0 +12975,0,600000,0 +13005,32,0,0 +13007,37,0,0 +13013,36,0,45000 +13018,250,0,45000 +13019,250,0,45000 +13020,250,0,45000 +13021,250,0,45000 +13031,471,0,30000 +13032,471,0,30000 +13033,471,0,30000 +13034,471,0,120000 +13035,471,0,120000 +13036,471,0,120000 +13049,23,0,60000 +13168,21,0,0 +13281,19,0,0 +13325,31,0,30000 +13327,44,0,0 +13339,19,0,0 +13340,19,0,0 +13341,19,0,0 +13342,19,0,0 +13374,19,0,0 +13441,0,0,8000 +13463,23,0,0 +13491,0,0,10000 +13532,49,0,4000 +13582,18,0,0 +13585,0,10000,0 +13587,0,5000,0 +13608,34,0,0 +13619,0,0,60000 +13711,44,0,0 +13728,19,0,0 +13729,19,0,0 +13736,49,0,0 +13747,51,0,10000 +13750,0,300000,0 +13787,0,10000,0 +13795,411,0,15000 +13809,411,0,15000 +13813,411,0,15000 +13821,44,0,0 +13835,37,0,300000 +13847,132,0,0 +13860,19,0,0 +13874,37,0,0 +13877,0,120000,0 +13896,1144,0,180000 +13902,32,0,0 +13903,25,0,0 +13908,671,0,600000 +13912,190,2000000,0 +13913,0,30000,0 +13953,40,0,0 +14030,34,0,0 +14105,0,0,8000 +14108,36,0,0 +14112,85,0,6000 +14145,19,0,0 +14177,0,180000,0 +14178,36,0,0 +14180,36,0,0 +14183,0,120000,0 +14185,0,600000,0 +14200,85,0,0 +14201,21,0,0 +14202,21,0,0 +14203,21,0,0 +14204,21,0,0 +14251,133,6000,1000 +14260,40,0,6000 +14261,40,0,6000 +14262,40,0,6000 +14263,40,0,6000 +14264,40,0,6000 +14265,40,0,6000 +14266,40,0,6000 +14269,65,0,5000 +14270,65,0,5000 +14271,65,0,5000 +14272,82,0,5000 +14273,82,0,5000 +14274,911,0,8000 +14278,0,20000,0 +14281,2,0,6000 +14282,2,0,6000 +14283,2,0,6000 +14284,2,0,6000 +14285,2,0,6000 +14286,2,0,6000 +14287,2,0,6000 +14288,85,0,10000 +14289,85,0,10000 +14290,85,0,10000 +14294,49,0,60000 +14295,49,0,60000 +14302,411,0,15000 +14303,411,0,15000 +14304,411,0,15000 +14305,411,0,15000 +14310,411,0,15000 +14311,411,0,15000 +14316,411,0,15000 +14317,411,0,15000 +14326,33,0,30000 +14327,33,0,30000 +14514,44,0,0 +14515,99,0,0 +14529,0,60000,0 +14532,36,0,0 +14533,36,0,0 +14534,36,0,0 +14535,36,0,0 +14538,36,0,0 +14539,36,0,0 +14751,0,180000,0 +14796,36,0,0 +14822,21,0,0 +14872,21,0,0 +14895,65,0,5000 +14897,51,0,0 +14916,82,0,5000 +14917,82,0,5000 +14918,82,0,5000 +14919,82,0,5000 +14920,82,0,5000 +14921,82,0,5000 +15039,19,0,0 +15041,56,0,5000 +15042,36,0,0 +15044,56,0,5000 +15054,22,0,0 +15055,22,0,0 +15061,21,0,0 +15087,66,0,0 +15091,250,0,0 +15096,19,0,0 +15097,21,0,0 +15117,85,0,6000 +15122,88,0,0 +15167,55,0,0 +15236,19,0,6000 +15237,431,0,0 +15247,31,0,30000 +15284,85,0,6000 +15286,0,10000,0 +15305,85,0,6000 +15306,19,0,6000 +15398,43,0,0 +15430,431,0,0 +15431,431,0,0 +15432,431,0,5000 +15433,431,0,5000 +15473,39,0,1500 +15474,34,0,0 +15475,18,0,0 +15487,0,45000,0 +15496,85,0,6000 +15500,19,0,6000 +15501,19,0,0 +15503,25,0,0 +15504,25,0,0 +15507,0,10000,0 +15535,99,0,0 +15539,31,0,30000 +15548,22,0,0 +15549,85,0,0 +15550,49,0,0 +15574,19,0,0 +15587,19,0,0 +15588,22,0,0 +15593,32,0,0 +15605,19,0,6000 +15609,34,0,0 +15611,2,0,0 +15612,2,0,0 +15613,85,0,6000 +15616,19,0,0 +15621,65,0,0 +15622,85,0,6000 +15623,85,0,6000 +15629,911,0,8000 +15630,911,0,8000 +15631,911,0,8000 +15632,911,0,8000 +15641,65,0,0 +15642,65,0,0 +15655,88,0,0 +15656,0,0,30000 +15659,85,0,6000 +15663,85,0,6000 +15664,18,0,0 +15700,4,0,10000 +15701,4,0,60000 +15716,21,0,0 +15744,250,0,0 +15749,44,0,0 +15752,109,0,0 +15787,35,0,0 +15797,2,0,0 +15852,11,0,60000 +15859,99,0,0 +15869,23,0,0 +15876,36,0,0 +15878,36,0,0 +15956,38,0,0 +15968,73,0,0 +15969,73,0,0 +16006,85,0,0 +16033,85,0,6000 +16034,19,0,6000 +16046,250,0,0 +16050,51,0,10000 +16067,0,0,8000 +16094,50,0,0 +16098,36,0,0 +16099,50,0,0 +16104,33,0,0 +16122,38,0,0 +16141,49,0,0 +16144,19,0,0 +16146,36,0,0 +16166,0,180000,0 +16169,85,0,0 +16170,55,0,0 +16171,43,0,0 +16172,52,0,0 +16188,0,180000,0 +16190,591,0,300000 +16243,2,0,0 +16322,55,0,10000 +16340,50,0,0 +16349,1,0,0 +16350,98,0,0 +16390,50,0,0 +16396,50,0,0 +16407,0,0,8000 +16424,49,0,0 +16430,99,0,0 +16451,190,0,0 +16454,0,0,8000 +16469,34,0,0 +16495,41,0,0 +16498,0,0,30000 +16552,18,0,0 +16576,99,0,0 +16617,99,0,1000 +16624,0,5000,0 +16666,30,0,60000 +16689,531,0,60000 +16697,82,0,5000 +16727,32,0,0 +16740,32,0,0 +16789,21,0,0 +16790,0,5000,0 +16792,21,0,0 +16804,19,0,0 +16810,531,0,60000 +16811,531,0,60000 +16812,531,0,60000 +16813,531,0,60000 +16838,0,0,5000 +16857,1133,0,6000 +16866,18,0,0 +16889,99,0,0 +16890,4,0,0 +16891,99,0,0 +16892,99,0,0 +16893,99,0,0 +16894,99,0,0 +16895,99,0,0 +16908,0,0,8000 +16914,571,0,60000 +16979,0,15000,0 +17116,0,180000,0 +17130,0,3600000,0 +17140,451,0,0 +17141,451,0,0 +17142,451,0,0 +17143,40,0,0 +17145,250,0,0 +17147,19,0,0 +17149,19,0,0 +17157,2,0,0 +17158,18,0,0 +17171,2,0,6000 +17174,42,0,0 +17177,20,0,0 +17187,310,0,172800000 +17194,19,0,0 +17198,65,0,5000 +17205,0,10000,0 +17207,49,0,0 +17230,36,0,0 +17233,56,0,0 +17244,93,0,0 +17253,19,0,10000 +17255,19,0,10000 +17256,19,0,10000 +17257,19,0,10000 +17258,19,0,10000 +17259,19,0,10000 +17260,19,0,10000 +17261,19,0,10000 +17273,290,0,0 +17274,290,0,0 +17276,19,0,0 +17277,250,0,0 +17284,40,0,0 +17286,32,0,0 +17287,19,0,0 +17294,50,0,0 +17308,32,0,0 +17315,36,0,0 +17329,531,0,60000 +17351,56,0,0 +17354,591,0,300000 +17359,591,0,300000 +17364,0,20000,0 +17390,1133,0,6000 +17391,1133,0,6000 +17392,1133,0,6000 +17401,571,0,60000 +17402,571,0,60000 +17405,99,0,0 +17448,1,0,0 +17468,0,0,300000 +17469,0,0,300000 +17492,19,0,0 +17500,32,0,0 +17528,4,0,0 +17530,4,0,60000 +17531,4,0,60000 +17534,4,0,10000 +17539,99,0,1000 +17540,28,0,60000 +17543,99,0,1000 +17544,99,0,1000 +17545,99,0,1000 +17546,99,0,1000 +17548,99,0,1000 +17549,99,0,1000 +17559,310,0,86400000 +17560,310,0,86400000 +17561,310,0,86400000 +17562,310,0,86400000 +17563,310,0,86400000 +17564,310,0,86400000 +17565,310,0,86400000 +17566,310,0,86400000 +17624,37,0,0 +17628,99,0,1000 +17631,2,0,0 +17633,55,0,0 +17712,30,0,0 +17735,84,0,120000 +17750,84,0,120000 +17751,84,0,120000 +17752,84,0,120000 +17770,0,0,60000 +17820,36,0,0 +17877,651,0,15000 +17924,631,0,60000 +17925,633,0,120000 +17926,633,0,120000 +17928,634,0,40000 +17962,672,0,10000 +18071,11,0,60000 +18083,0,0,8000 +18085,0,0,8000 +18091,0,0,8000 +18092,0,0,8000 +18100,0,10000,0 +18124,11,0,60000 +18140,59,0,60000 +18144,85,0,0 +18149,18,0,0 +18165,451,0,0 +18204,0,0,8000 +18229,11,0,60000 +18230,11,0,60000 +18231,11,0,60000 +18232,11,0,60000 +18233,11,0,60000 +18234,11,0,60000 +18276,0,0,8000 +18278,32,0,0 +18288,0,180000,0 +18289,0,0,30000 +18307,1,0,60000 +18308,1,0,60000 +18309,39,0,30000 +18327,32,0,0 +18385,30,0,60000 +18389,19,0,0 +18398,0,0,8000 +18435,50,0,0 +18499,0,30000,0 +18501,21,0,0 +18540,0,3600000,0 +18560,0,345600000,0 +18562,0,15000,0 +18649,2,0,6000 +18708,0,900000,0 +18763,98,0,0 +18812,0,5000,0 +18819,85,0,6000 +18831,31,0,0 +18832,4,0,10000 +18833,0,0,8000 +18867,651,0,15000 +18868,651,0,15000 +18869,651,0,15000 +18870,651,0,15000 +18871,651,0,15000 +18930,672,0,10000 +18931,672,0,10000 +18932,672,0,10000 +18941,65,0,0 +18942,99,0,1000 +18943,65,0,0 +18956,30,0,60000 +18957,30,0,60000 +18972,51,0,0 +18985,38,0,0 +19030,39,0,30000 +19128,0,5000,0 +19130,65,0,0 +19131,44,0,0 +19137,51,0,0 +19194,65,0,0 +19199,0,0,10000 +19223,44,0,0 +19236,671,0,600000 +19238,671,0,600000 +19240,671,0,600000 +19241,671,0,600000 +19242,671,0,600000 +19243,671,0,600000 +19244,88,0,30000 +19260,0,0,8000 +19263,0,300000,0 +19271,1144,0,180000 +19273,1144,0,180000 +19274,1144,0,180000 +19275,1144,0,180000 +19276,691,0,180000 +19277,691,0,180000 +19278,691,0,180000 +19279,691,0,180000 +19280,691,0,180000 +19289,1144,0,300000 +19291,1144,0,300000 +19292,1144,0,300000 +19293,1144,0,300000 +19306,1135,0,5000 +19386,1111,0,120000 +19434,2,0,6000 +19469,99,0,0 +19482,32,0,20000 +19501,0,30000,0 +19503,0,30000,0 +19505,12,0,8000 +19513,35,0,40000 +19514,0,10000,0 +19566,791,0,259200000 +19574,0,120000,0 +19577,1132,60000,0 +19632,85,0,6000 +19645,37,0,0 +19647,88,0,30000 +19731,12,0,8000 +19734,12,0,8000 +19736,12,0,8000 +19752,0,3600000,0 +19801,0,20000,0 +19802,0,3600000,0 +19817,65,0,0 +19818,65,0,0 +19826,23,45000,15000 +19827,23,45000,15000 +19828,23,75000,15000 +19873,0,7000,0 +19881,351,0,0 +19983,85,0,6000 +20066,0,60000,0 +20116,932,0,8000 +20169,931,0,10000 +20216,0,120000,0 +20228,290,0,0 +20230,132,0,1800000 +20252,872,0,30000 +20271,0,10000,0 +20473,892,0,30000 +20484,26,0,1800000 +20535,2,0,0 +20536,2,0,0 +20537,88,0,30000 +20539,41,0,0 +20543,2,0,0 +20545,0,10000,0 +20549,0,120000,0 +20554,0,180000,0 +20559,40,0,120000 +20560,40,0,120000 +20565,19,0,0 +20566,19,0,3000 +20568,19,0,5000 +20572,0,120000,0 +20577,0,120000,0 +20580,871,0,10000 +20589,0,60000,0 +20594,0,180000,0 +20600,0,180000,0 +20604,99,0,0 +20605,85,0,6000 +20608,1161,0,3600000 +20616,872,0,30000 +20617,872,0,30000 +20619,43,0,30000 +20627,2,0,0 +20629,18,0,0 +20630,2,0,0 +20654,99,0,0 +20656,0,0,30000 +20666,85,0,6000 +20699,99,0,0 +20706,56,0,0 +20729,25,0,0 +20736,911,0,8000 +20739,26,0,1800000 +20740,99,0,0 +20742,26,0,1800000 +20747,26,0,1800000 +20748,26,0,1800000 +20795,19,0,0 +20798,0,10000,0 +20812,22,0,0 +20830,19,0,0 +20831,85,0,6000 +20832,19,0,0 +20869,0,0,8000 +20883,0,0,8000 +20884,32,0,0 +20900,2,0,6000 +20901,2,0,6000 +20902,2,0,6000 +20903,2,0,6000 +20904,2,0,6000 +20909,1135,0,5000 +20910,1135,0,5000 +20922,932,0,8000 +20923,932,0,8000 +20924,932,0,8000 +20925,931,0,10000 +20927,931,0,10000 +20928,931,0,10000 +20929,892,0,30000 +20930,892,0,30000 +21008,40,0,0 +21049,55,0,0 +21067,18,0,0 +21075,43,0,30000 +21076,43,0,20000 +21099,50,0,0 +21149,11,0,60000 +21152,32,0,0 +21154,19,0,3000 +21169,1161,0,3600000 +21331,99,0,0 +21355,951,0,0 +21370,951,0,0 +21371,951,0,0 +21393,4,0,10000 +21394,4,0,10000 +21395,4,0,60000 +21396,4,0,60000 +21403,0,0,3000 +21537,951,0,0 +21538,951,0,0 +21551,971,0,6000 +21552,971,0,6000 +21553,971,0,6000 +21655,44,0,0 +21728,951,0,0 +21729,951,0,0 +21730,951,0,0 +21736,0,0,3000 +21750,411,0,15000 +21787,18,0,120000 +21791,46,0,0 +21878,66,0,300000 +21892,37,0,0 +21920,99,0,1000 +21935,991,0,86400000 +21956,99,0,1000 +21970,28,0,0 +21971,18,0,0 +22007,0,10000,0 +22067,54,0,0 +22120,44,0,0 +22127,99,0,0 +22269,19,0,0 +22270,0,3600000,0 +22335,0,0,60000 +22415,99,0,0 +22418,0,10000,0 +22423,19,0,0 +22424,250,0,0 +22430,310,0,7200000 +22479,2,0,0 +22539,50,0,0 +22540,85,0,6000 +22563,1091,0,0 +22564,1091,0,0 +22570,33,0,10000 +22649,23,0,60000 +22687,36,0,0 +22692,36,0,0 +22729,4,0,60000 +22731,11,0,60000 +22734,59,0,60000 +22743,2,0,0 +22751,0,0,4000 +22807,99,0,1000 +22812,0,60000,0 +22842,1011,0,180000 +22857,132,0,0 +22885,19,0,0 +22895,1011,0,180000 +22896,1011,0,180000 +22908,49,0,60000 +22910,411,0,15000 +22911,44,0,0 +22914,42,0,0 +22937,18,0,0 +22946,35,0,0 +22994,99,0,0 +23038,19,0,0 +23039,250,0,0 +23041,1160,0,1800000 +23042,1160,0,1800000 +23099,44,0,30000 +23103,99,0,0 +23104,19,0,0 +23105,35,0,0 +23106,85,0,6000 +23109,44,0,30000 +23110,44,0,30000 +23113,250,0,0 +23114,19,0,0 +23145,44,0,30000 +23147,44,0,30000 +23148,44,0,30000 +23206,85,0,0 +23207,32,0,0 +23224,36,0,0 +23267,0,0,8000 +23307,93,0,25000 +23331,250,0,0 +23340,36,0,0 +23454,32,0,0 +23461,50,0,0 +23468,30,0,0 +23469,30,0,0 +23470,30,0,0 +23471,30,0,0 +23472,30,0,0 +23473,30,0,0 +23474,30,0,0 +23475,30,0,0 +23476,30,0,0 +23477,30,0,0 +23506,99,0,1000 +23537,21,0,0 +23540,11,0,60000 +23541,11,0,60000 +23542,11,0,60000 +23692,11,0,60000 +23693,0,0,4000 +23698,59,0,60000 +23786,99,0,1000 +23848,971,0,6000 +23850,971,0,6000 +23851,1071,0,0 +23852,1071,0,604800000 +23860,451,0,0 +23862,18,0,0 +23881,971,0,6000 +23892,971,0,6000 +23893,971,0,6000 +23894,971,0,6000 +23919,85,0,0 +23922,971,0,6000 +23923,971,0,6000 +23924,971,0,6000 +23925,971,0,6000 +23931,22,0,0 +23951,55,0,0 +23960,40,0,0 +23964,0,0,4000 +23989,0,300000,0 +23991,1155,0,1000 +24005,11,0,60000 +24011,18,0,0 +24016,40,0,0 +24021,37,0,0 +24023,44,0,0 +24099,18,0,0 +24132,1111,0,120000 +24133,1111,0,120000 +24178,99,0,0 +24184,99,0,0 +24185,55,0,0 +24193,44,0,0 +24213,65,0,0 +24224,0,12000,0 +24236,49,0,0 +24239,1131,0,6000 +24274,1131,0,6000 +24275,1131,0,6000 +24301,38,0,0 +24315,44,0,0 +24318,21,0,0 +24333,65,0,20000 +24353,28,0,120000 +24355,59,0,60000 +24361,4,0,60000 +24363,4,0,60000 +24364,4,0,60000 +24375,32,0,0 +24384,11,0,60000 +24393,971,0,6000 +24407,65,0,0 +24408,44,0,0 +24409,11,0,60000 +24410,11,0,60000 +24411,11,0,60000 +24415,51,0,0 +24423,36,0,0 +24427,59,0,0 +24438,43,0,0 +24450,38,0,10000 +24452,38,0,10000 +24453,38,0,10000 +24530,19,0,0 +24577,36,0,0 +24578,36,0,0 +24579,36,0,0 +24583,19,0,4000 +24586,19,0,4000 +24587,19,0,4000 +24597,55,0,10000 +24603,55,0,10000 +24604,55,0,10000 +24605,55,0,10000 +24619,99,0,0 +24640,19,0,4000 +24648,99,0,0 +24672,55,0,0 +24673,36,0,0 +24674,36,0,0 +24680,85,0,0 +24683,35,0,0 +24685,19,0,0 +24686,36,0,0 +24688,18,0,0 +24707,11,0,60000 +24800,11,0,60000 +24819,85,0,0 +24826,0,5000,0 +24844,2,0,0 +24869,11,0,60000 +24893,28,0,0 +24933,1138,4000,0 +24995,21,0,0 +25003,1138,5000,0 +25008,2,0,0 +25009,2,0,0 +25010,2,0,0 +25011,2,0,0 +25012,2,0,0 +25020,0,10000,0 +25021,85,0,0 +25024,1138,10000,0 +25025,19,0,0 +25026,1138,10000,5000 +25027,1138,2000,0 +25028,19,0,0 +25030,1138,6000,0 +25031,1138,6000,0 +25033,35,0,0 +25049,250,0,0 +25053,18,0,0 +25056,32,0,0 +25085,97,0,300000 +25102,28,0,0 +25146,310,0,600000 +25151,23,0,0 +25174,85,0,0 +25175,65,0,0 +25189,99,0,0 +25190,44,0,0 +25191,44,0,0 +25262,18,0,0 +25288,65,0,5000 +25294,85,0,10000 +25302,82,0,10000 +25378,21,0,0 +25424,18,0,0 +25425,22,0,0 +25497,18,0,0 +25515,32,0,0 +25598,22,0,0 +25599,22,0,0 +25660,11,0,60000 +25669,0,5000,0 +25690,11,0,1500 +25691,59,0,1500 +25692,11,0,1500 +25693,11,0,1500 +25695,0,0,60000 +25696,0,0,60000 +25697,11,0,60000 +25698,35,0,30000 +25699,35,0,600000 +25746,1155,0,1000 +25747,1155,0,1000 +25750,1155,0,1000 +25806,99,0,0 +25811,18,0,0 +25814,85,0,0 +25817,46,0,0 +25821,44,0,0 +25822,1137,0,0 +25851,0,0,60000 +25863,330,0,3000 +25990,11,0,60000 +25991,18,0,0 +26030,11,0,60000 +26038,49,0,0 +26043,43,0,0 +26048,19,0,0 +26052,18,0,0 +26059,35,0,600000 +26064,0,180000,0 +26066,1,0,60000 +26069,88,0,0 +26071,99,0,0 +26081,44,0,0 +26082,44,0,0 +26083,49,0,0 +26090,0,60000,0 +26099,43,0,0 +26103,63,0,5000 +26104,63,0,0 +26177,44,0,25000 +26178,44,0,25000 +26179,44,0,25000 +26187,0,60000,0 +26188,0,60000,0 +26194,19,0,0 +26195,99,0,0 +26197,99,0,0 +26198,99,0,0 +26201,44,0,25000 +26226,0,0,4000 +26258,99,0,0 +26259,99,0,0 +26260,0,0,60000 +26261,0,0,60000 +26263,11,0,60000 +26276,99,0,1000 +26281,36,0,5000 +26296,0,180000,0 +26297,0,180000,0 +26378,99,0,0 +26389,59,0,10000 +26401,0,0,60000 +26402,0,0,60000 +26472,0,0,60000 +26473,0,0,60000 +26474,0,0,60000 +26475,0,0,60000 +26527,21,0,0 +26550,35,0,0 +26573,932,0,8000 +26601,18,0,0 +26613,1152,0,0 +26616,63,0,0 +26652,971,0,6000 +26655,330,0,3000 +26662,21,0,0 +26681,1142,0,0 +26682,1142,0,0 +27184,1139,0,0 +27190,1139,0,0 +27191,1139,0,0 +27201,1139,0,0 +27202,1139,0,0 +27203,1139,0,0 +27204,0,180000,0 +27254,19,0,0 +27517,1139,0,0 +27530,571,0,0 +27533,99,0,1000 +27534,99,0,1000 +27535,99,0,1000 +27536,99,0,1000 +27538,99,0,1000 +27540,99,0,1000 +27543,39,0,0 +27545,39,0,0 +27554,85,0,0 +27564,54,0,0 +27567,85,0,0 +27577,872,0,0 +27580,971,0,6000 +27581,109,0,60000 +27602,0,3600000,0 +27607,56,0,4000 +27610,43,0,30000 +27615,270,0,20000 +27617,39,0,300000 +27619,37,0,300000 +27623,35,0,15000 +27632,2,0,6000 +27634,42,0,0 +27680,21,0,0 +27685,44,0,25000 +27689,55,0,0 +27740,0,3600000,0 +27753,411,0,15000 +27757,32,0,0 +27758,32,0,0 +27759,0,15000,0 +27766,1138,0,0 +27779,56,0,0 +27794,85,0,6000 +27799,431,0,0 +27800,431,0,0 +27801,431,0,0 +27806,2,0,0 +27808,1152,0,5000 +27810,1152,0,5000 +27869,30,0,60000 +27870,1145,0,600000 +27871,1145,0,600000 +27879,0,5000,0 +27881,0,5000,0 +27882,0,5000,0 +27897,21,0,0 +27993,0,0,30000 +27995,55,0,0 +28125,1152,0,0 +28131,21,0,0 +28146,0,60000,0 +28148,0,60000,0 +28167,85,0,0 +28168,85,0,0 +28293,85,0,0 +28314,0,5000,0 +28329,22,0,0 +28334,49,0,0 +28338,1152,0,6000 +28339,1152,0,6000 +28350,36,0,0 +28354,1149,0,0 +28391,44,0,0 +28401,44,0,0 +28408,1152,0,0 +28412,633,0,120000 +28418,0,0,4000 +28419,0,0,4000 +28420,0,0,4000 +28440,36,0,0 +28479,1152,0,8000 +28498,21,0,0 +28609,56,0,30000 +28610,56,0,30000 +28616,11,0,60000 +28673,1152,0,0 +28725,32,0,0 +28747,21,0,0 +28760,0,0,60000 +28765,0,0,1000 +28766,0,0,1000 +28768,0,0,1000 +28769,0,0,1000 +28770,0,0,1000 +28783,1152,0,0 +28785,1152,0,20000 +28796,1152,0,0 +28797,1152,0,30000 +28798,1152,0,0 +28815,0,180000,0 +28858,99,0,0 +28913,40,0,0 +28961,1152,0,0 +28991,34,0,0 +28994,1152,0,20000 +29007,59,0,60000 +29008,11,0,60000 +29029,59,0,1500 +29041,59,0,10000 +29055,11,0,60000 +29060,1152,60000,10000 +29061,0,30000,0 +29073,11,0,60000 +29142,0,15000,0 +29166,0,360000,0 +29169,18,0,0 +29207,44,0,0 +29208,44,0,0 +29209,44,0,0 +29210,44,0,0 +29211,44,0,0 +29212,22,0,0 +29220,59,0,60000 +29228,19,0,6000 +29236,4,0,60000 +29306,36,0,0 +29310,1152,0,0 +29325,18,0,0 +29429,1152,0,10000 +29430,1152,0,5000 +29432,99,0,1000 +29506,0,0,1000 +29851,49,0,0 +29915,40,0,0 +29940,0,0,60000 +29943,32,0,0 +30018,4,0,10000 +30076,1159,0,0 +30081,36,0,420000 +30092,250,0,0 +30112,44,0,0 +30133,1159,0,10000 +30161,0,60000,0 +30167,0,3600000,0 +30225,32,0,0 +31378,19,0,0 +31700,330,0,3000 diff --git a/HermesProxy/CSV/ItemSpellsData2.csv b/HermesProxy/CSV/ItemSpellsData2.csv new file mode 100644 index 00000000..cb3c931e --- /dev/null +++ b/HermesProxy/CSV/ItemSpellsData2.csv @@ -0,0 +1,3482 @@ +ID,Category,RecoveryTime,CategoryRecoveryTime +17,56,0,4000 +43,0,600000,0 +45,32,0,0 +47,44,0,300000 +56,32,0,0 +66,1162,0,300000 +68,1,10000,0 +71,47,0,1000 +72,88,0,12000 +89,0,30000,0 +91,65,0,30000 +100,44,0,15000 +101,32,0,5000 +110,0,60000,0 +111,0,60000,0 +112,0,60000,0 +120,50,0,10000 +122,35,0,25000 +134,21,0,15000 +184,21,0,15000 +246,51,0,10000 +260,1,0,0 +271,0,0,120000 +355,82,0,10000 +408,270,0,20000 +421,85,0,6000 +430,59,0,60000 +431,59,0,60000 +432,59,0,60000 +433,11,0,60000 +434,11,0,60000 +435,11,0,60000 +436,4,0,60000 +437,4,0,60000 +438,4,0,60000 +439,4,0,10000 +440,4,0,10000 +441,4,0,10000 +450,0,30000,0 +454,0,30000,0 +457,22,0,10000 +498,37,0,300000 +543,56,0,30000 +555,23,0,600000 +556,511,0,900000 +568,1152,0,0 +586,82,0,30000 +592,56,0,4000 +600,56,0,4000 +603,1179,0,60000 +633,56,0,3600000 +642,37,0,300000 +676,109,0,60000 +692,32,0,60000 +694,40,0,120000 +724,1145,0,360000 +740,46,0,600000 +742,0,600000,0 +745,34,0,0 +769,85,0,0 +779,85,0,0 +780,85,0,0 +781,82,0,5000 +800,1152,0,2000 +818,97,0,300000 +823,0,300000,0 +829,0,300000,0 +830,0,300000,0 +853,32,0,60000 +865,35,0,25000 +871,132,0,1800000 +879,19,0,15000 +930,85,0,6000 +932,62,0,360000 +974,1195,0,0 +1020,37,0,300000 +1022,20,0,300000 +1044,0,25000,0 +1050,35,600000,6000 +1122,731,0,3600000 +1127,11,0,60000 +1129,11,0,60000 +1131,11,0,60000 +1133,59,0,60000 +1135,59,0,60000 +1137,59,0,60000 +1161,0,600000,0 +1495,65,0,5000 +1499,411,0,30000 +1510,49,0,60000 +1513,33,0,30000 +1516,0,60000,0 +1535,35,0,15000 +1543,0,20000,0 +1664,65,0,30000 +1665,65,0,30000 +1671,88,0,12000 +1672,88,0,12000 +1680,891,0,10000 +1719,132,0,1800000 +1725,22,0,30000 +1742,82,0,5000 +1753,82,0,5000 +1754,82,0,5000 +1755,82,0,5000 +1756,82,0,5000 +1760,40,0,0 +1766,88,0,10000 +1767,88,0,10000 +1768,88,0,10000 +1769,88,0,10000 +1776,33,0,10000 +1777,33,0,10000 +1784,38,0,10000 +1785,38,0,10000 +1786,38,0,10000 +1787,38,0,10000 +1795,74,0,300000 +1796,74,0,300000 +1797,74,0,300000 +1798,74,0,300000 +1850,44,0,300000 +1856,39,0,300000 +1857,39,0,300000 +1940,24,0,0 +1953,44,0,15000 +1966,82,0,10000 +2023,4,0,60000 +2024,4,0,10000 +2062,23,1200000,120000 +2094,1187,180000,20000 +2136,19,0,8000 +2137,19,0,8000 +2138,19,0,8000 +2139,88,0,24000 +2370,4,0,60000 +2457,47,0,1000 +2458,47,0,1000 +2484,0,15000,0 +2565,0,5000,0 +2597,4,0,60000 +2598,4,0,60000 +2599,4,0,60000 +2600,4,0,60000 +2601,21,0,20000 +2602,21,0,15000 +2606,19,0,6000 +2607,19,0,6000 +2608,19,0,6000 +2609,19,0,6000 +2610,19,0,6000 +2629,40,0,10000 +2630,40,0,10000 +2639,11,0,60000 +2643,85,0,10000 +2647,32,0,60000 +2649,82,0,5000 +2651,1144,0,180000 +2676,0,6000,0 +2687,0,60000,0 +2764,76,0,0 +2800,56,0,3600000 +2812,35,0,60000 +2825,0,600000,0 +2850,44,0,0 +2860,85,0,6000 +2878,33,0,30000 +2880,32,0,0 +2882,39,0,0 +2894,23,1200000,120000 +2944,691,0,180000 +2973,40,0,6000 +2983,44,0,300000 +3018,76,0,0 +3019,0,0,40000 +3034,1175,0,15000 +3044,1173,0,6000 +3045,55,0,300000 +3106,35,0,3000 +3107,23,0,0 +3109,32,0,10000 +3129,50,0,0 +3130,65,0,30000 +3131,2,0,10000 +3132,0,0,30000 +3136,55,0,30000 +3143,32,0,0 +3145,42,0,15000 +3146,51,0,30000 +3147,40,0,0 +3148,52,0,0 +3149,55,0,30000 +3150,18,0,30000 +3151,55,0,30000 +3169,37,0,0 +3204,35,0,600000 +3219,4,0,60000 +3221,4,0,60000 +3222,4,0,60000 +3223,4,0,60000 +3229,55,0,3000 +3232,41,0,300000 +3233,36,0,10000 +3234,2,0,0 +3235,21,0,0 +3238,21,0,45000 +3242,65,0,0 +3247,65,0,30000 +3248,21,0,0 +3252,36,0,30000 +3256,0,0,420000 +3260,21,0,0 +3261,18,0,0 +3263,32,0,0 +3264,36,0,0 +3284,21,0,0 +3288,36,0,0 +3322,21,0,0 +3332,51,0,10000 +3335,36,0,180000 +3338,21,0,0 +3339,21,0,0 +3358,18,0,0 +3359,25,0,0 +3360,36,0,0 +3361,2,0,0 +3368,25,0,0 +3385,65,0,10000 +3387,36,0,0 +3388,18,0,0 +3389,21,0,0 +3391,65,0,0 +3393,2,0,0 +3394,2,0,0 +3411,0,30000,0 +3416,0,0,60000 +3417,65,0,0 +3418,21,0,0 +3419,21,0,0 +3427,36,0,0 +3429,62,0,0 +3436,36,0,420000 +3442,22,0,0 +3443,55,0,0 +3446,65,0,70000 +3477,38,0,0 +3485,36,0,0 +3490,21,0,0 +3499,0,0,20000 +3527,23,20000,0 +3537,23,0,0 +3542,34,0,60000 +3547,0,0,25000 +3551,65,0,0 +3583,18,0,120000 +3584,18,0,180000 +3586,18,0,180000 +3589,36,0,0 +3591,4,0,0 +3592,4,0,10000 +3603,36,0,45000 +3604,36,0,20000 +3605,23,0,0 +3609,36,0,0 +3611,23,0,0 +3631,55,0,0 +3635,36,0,45000 +3636,36,0,0 +3637,21,0,0 +3639,21,0,0 +3648,37,0,0 +3650,36,0,30000 +3651,54,0,30000 +3680,37,0,600000 +3716,36,0,5000 +3718,24,0,0 +3720,0,0,10000 +3742,21,0,10000 +3747,56,0,4000 +3822,24,0,0 +3823,23,0,7000 +3825,21,0,0 +3826,21,0,0 +3827,0,0,30000 +4042,4,0,10000 +4079,0,0,600000 +4083,96,0,300000 +4101,0,0,15000 +4102,65,0,30000 +4104,44,0,300000 +4105,44,0,300000 +4107,47,0,0 +4108,47,0,0 +4109,47,0,0 +4111,47,0,0 +4134,47,0,0 +4135,47,0,0 +4137,47,0,0 +4139,47,0,0 +4146,55,0,45000 +4147,55,0,60000 +4148,57,0,420000 +4149,0,0,45000 +4150,0,0,120000 +4154,0,0,60000 +4159,65,0,30000 +4166,0,0,30000 +4167,34,0,120000 +4168,34,0,120000 +4169,34,0,120000 +4170,0,0,5000 +4209,25,0,15000 +4221,25,0,15000 +4238,21,0,180000 +4242,0,0,30000 +4244,36,0,0 +4245,36,0,0 +4246,34,0,60000 +4280,2,0,0 +4281,85,0,60000 +4286,18,0,120000 +4312,46,0,0 +4320,18,0,45000 +4321,36,0,5000 +4511,0,10000,0 +4520,50,0,180000 +4526,0,0,120000 +4538,0,0,300000 +4539,0,0,300000 +4629,0,0,300000 +4805,36,0,180000 +4938,49,0,0 +4940,20,0,30000 +4941,28,0,60000 +4948,39,0,30000 +4955,0,0,45000 +4961,25,0,0 +4979,0,0,25000 +5004,11,0,60000 +5005,11,0,60000 +5006,11,0,60000 +5007,11,0,60000 +5010,0,0,60000 +5019,351,0,0 +5102,38,0,0 +5105,18,0,30000 +5106,33,0,0 +5108,0,0,20000 +5110,0,0,20000 +5115,55,0,0 +5116,0,12000,0 +5164,0,10000,0 +5165,0,10000,0 +5174,25,0,0 +5208,18,0,0 +5209,0,600000,0 +5211,32,0,60000 +5215,38,0,10000 +5217,0,1000,0 +5219,2,0,0 +5229,0,60000,0 +5246,0,180000,0 +5252,23,0,240000 +5256,66,0,90000 +5271,65,0,0 +5276,98,0,0 +5277,66,0,300000 +5280,99,0,0 +5320,99,0,1000 +5321,99,0,1000 +5322,99,0,1000 +5323,99,0,1000 +5324,99,0,1000 +5325,99,0,1000 +5337,65,0,0 +5363,47,0,0 +5365,47,0,0 +5366,47,0,0 +5367,47,0,0 +5375,0,120000,0 +5384,0,30000,0 +5401,2,0,0 +5403,35,0,30000 +5405,30,0,60000 +5406,30,0,60000 +5413,0,0,30000 +5422,0,0,60000 +5426,0,0,30000 +5484,634,0,40000 +5514,22,0,0 +5515,99,0,0 +5568,49,0,0 +5573,37,0,300000 +5588,32,0,60000 +5589,32,0,60000 +5599,20,0,300000 +5605,23,0,0 +5614,19,0,15000 +5615,19,0,15000 +5627,33,0,30000 +5665,102,0,0 +5703,65,0,30000 +5707,38,0,0 +5708,85,0,0 +5720,30,0,0 +5723,30,0,0 +5730,45,0,30000 +5759,39,0,30000 +5781,51,0,45000 +5858,37,60000,0 +5862,99,0,1000 +5916,38,0,120000 +5917,22,0,0 +5918,32,0,30000 +5990,21,0,45000 +6016,36,0,45000 +6065,56,0,4000 +6066,56,0,4000 +6084,94,0,0 +6131,35,0,25000 +6143,56,0,30000 +6146,51,0,10000 +6178,44,0,15000 +6229,56,0,30000 +6254,85,0,0 +6255,2,0,0 +6262,30,0,0 +6263,30,0,0 +6264,21,0,45000 +6266,0,0,30000 +6268,44,5000,0 +6274,23,0,45000 +6278,0,0,30000 +6280,65,0,0 +6281,65,0,0 +6282,65,0,0 +6283,65,0,0 +6286,65,0,0 +6295,35,0,6000 +6297,35,0,0 +6305,35,0,6000 +6306,18,0,0 +6311,65,0,0 +6314,65,0,0 +6315,65,0,0 +6316,65,0,0 +6317,65,0,0 +6328,65,0,0 +6331,65,0,0 +6332,65,0,0 +6333,65,0,0 +6334,65,0,0 +6343,49,0,4000 +6346,0,180000,0 +6353,631,0,60000 +6360,82,0,4000 +6390,45,0,30000 +6391,45,0,30000 +6392,45,0,30000 +6409,32,0,30000 +6410,11,0,60000 +6432,32,0,0 +6433,21,0,0 +6434,99,0,60000 +6435,65,0,6000 +6443,65,0,0 +6444,65,0,0 +6445,65,0,0 +6446,65,0,0 +6447,65,0,0 +6469,35,0,0 +6487,31,0,60000 +6490,23,0,20000 +6507,99,0,1000 +6512,79,0,10000 +6513,79,0,10000 +6523,37,0,0 +6524,0,5000,0 +6528,99,0,0 +6530,36,0,30000 +6533,34,0,0 +6535,35,0,40000 +6538,47,0,90000 +6542,0,300000,0 +6552,88,0,10000 +6554,88,0,10000 +6572,65,0,5000 +6574,65,0,5000 +6576,47,0,30000 +6580,42,0,30000 +6595,40,10000,0 +6605,99,0,0 +6607,0,0,20000 +6612,4,0,60000 +6613,4,0,60000 +6614,4,0,60000 +6615,4,0,60000 +6634,38,0,0 +6664,66,0,10000 +6685,18,0,30000 +6711,44,0,360000 +6724,37,0,0 +6725,63,0,30000 +6726,32,0,0 +6728,99,0,0 +6742,55,0,0 +6749,0,0,15000 +6768,82,0,10000 +6783,38,0,10000 +6789,633,0,120000 +6793,0,1000,0 +6795,82,0,10000 +6798,32,0,60000 +6814,18,0,0 +6917,18,0,0 +6921,44,0,180000 +6922,32,0,0 +6940,1186,0,30000 +6942,0,0,10000 +6950,0,0,30000 +6957,99,0,5000 +6960,99,0,1000 +6982,0,0,30000 +7020,0,30000,0 +7033,1,0,0 +7068,36,0,0 +7069,99,0,1000 +7074,0,0,5000 +7090,39,0,30000 +7092,0,0,15000 +7093,0,0,20000 +7101,63,0,0 +7102,36,0,120000 +7104,38,0,0 +7106,12,0,7000 +7108,99,0,1000 +7121,37,0,0 +7125,0,0,60000 +7127,0,0,60000 +7132,0,0,200000 +7136,32,0,0 +7137,44,0,0 +7139,0,0,20000 +7140,0,0,25000 +7145,85,0,10000 +7154,0,0,7000 +7160,41,0,30000 +7164,47,0,180000 +7165,47,0,180000 +7178,99,0,1000 +7230,99,0,1000 +7231,99,0,1000 +7232,99,0,1000 +7233,99,0,1000 +7234,99,0,1000 +7235,99,0,1000 +7236,99,0,1000 +7237,99,0,1000 +7238,99,0,1000 +7239,99,0,1000 +7240,99,0,1000 +7241,99,0,1000 +7242,99,0,1000 +7243,99,0,1000 +7244,99,0,1000 +7245,99,0,1000 +7246,99,0,1000 +7247,99,0,1000 +7248,99,0,1000 +7249,99,0,1000 +7250,99,0,1000 +7251,99,0,1000 +7252,99,0,1000 +7253,99,0,1000 +7254,99,0,1000 +7266,0,1000,0 +7273,99,0,1000 +7279,36,0,0 +7290,99,0,1000 +7291,11,0,60000 +7331,99,0,1000 +7342,85,0,0 +7355,0,300000,0 +7357,0,0,30000 +7359,97,0,300000 +7363,99,0,1000 +7365,0,0,60000 +7366,47,0,0 +7371,44,0,25000 +7379,65,0,5000 +7383,37,0,0 +7384,65,0,5000 +7394,85,0,0 +7396,4,0,0 +7399,99,0,0 +7400,40,0,120000 +7402,40,0,120000 +7482,19,0,0 +7586,32,0,0 +7587,32,0,0 +7638,25,0,0 +7645,99,0,0 +7713,36,0,0 +7737,11,0,60000 +7744,0,120000,0 +7806,21,0,5000 +7807,21,0,5000 +7808,21,0,5000 +7809,36,0,5000 +7810,36,0,5000 +7811,36,0,5000 +7813,82,0,4000 +7814,73,0,12000 +7815,40,0,12000 +7816,40,0,12000 +7823,38,0,0 +7825,38,0,0 +7826,38,0,0 +7844,99,0,1000 +7870,37,0,0 +7887,65,0,5000 +7927,150,0,0 +7932,99,0,1000 +7933,99,0,1000 +7938,41,0,0 +7960,31,0,0 +7961,32,0,0 +7966,99,0,1000 +7974,38,0,10000 +7992,51,0,10000 +8041,39,0,0 +8042,19,0,6000 +8044,19,0,6000 +8045,19,0,6000 +8046,19,0,6000 +8050,19,0,6000 +8052,19,0,6000 +8053,19,0,6000 +8056,19,0,6000 +8058,19,0,6000 +8078,22,0,0 +8082,38,0,0 +8083,38,0,0 +8085,38,0,0 +8092,19,0,8000 +8102,19,0,8000 +8103,19,0,8000 +8104,19,0,8000 +8105,19,0,8000 +8106,19,0,8000 +8122,43,0,30000 +8124,43,0,30000 +8138,18,0,0 +8139,18,0,0 +8141,25,0,0 +8147,22,0,0 +8148,99,0,1000 +8150,22,0,0 +8151,32,0,30000 +8152,38,0,10000 +8153,39,0,0 +8177,230,0,15000 +8198,49,0,4000 +8204,49,0,4000 +8205,49,0,4000 +8215,55,0,0 +8218,38,0,10000 +8242,88,0,0 +8256,18,0,120000 +8260,44,0,0 +8269,21,0,0 +8273,65,0,0 +8275,18,0,0 +8282,36,0,0 +8285,49,0,25000 +8292,85,0,0 +8293,35,0,0 +8295,19,0,0 +8312,34,0,0 +8355,40,0,0 +8358,25,0,0 +8363,18,0,0 +8379,109,0,0 +8382,18,0,0 +8391,65,0,0 +8412,19,0,8000 +8413,19,0,8000 +8457,56,0,30000 +8458,56,0,30000 +8461,56,0,30000 +8462,56,0,30000 +8492,50,0,10000 +8498,35,0,15000 +8499,35,0,15000 +8595,25,0,15000 +8599,21,0,0 +8601,51,0,0 +8621,40,0,0 +8629,33,0,10000 +8637,82,0,10000 +8643,270,0,20000 +8690,1176,0,3600000 +8696,44,0,300000 +8699,55,0,0 +8715,99,0,30000 +8736,31,0,0 +8788,0,10000,0 +8806,18,0,0 +8814,63,0,30000 +8822,38,0,0 +8832,0,10000,0 +8833,21,0,0 +8834,21,0,0 +8852,36,0,0 +8873,50,0,0 +8874,38,0,10000 +8876,65,0,0 +8909,0,10000,0 +8918,46,0,600000 +8983,32,0,60000 +8988,32,0,0 +8989,49,0,0 +8998,84,0,10000 +9000,84,0,10000 +9128,43,0,0 +9177,11,0,60000 +9220,0,0,10000 +9252,30,0,60000 +9253,30,0,60000 +9257,56,0,3600000 +9373,99,0,1000 +9435,63,0,0 +9438,37,0,0 +9460,21,0,0 +9512,60,0,60000 +9572,37,60000,0 +9573,50,0,0 +9575,63,0,0 +9578,82,0,30000 +9579,82,0,30000 +9592,82,0,30000 +9612,36,0,0 +9733,49,0,15000 +9736,39,0,5000 +9740,39,0,5000 +9741,43,10000,5000 +9754,85,0,0 +9782,0,5000,0 +9784,0,5000,0 +9791,52,0,0 +9821,44,0,300000 +9845,0,1000,0 +9846,0,1000,0 +9862,46,0,600000 +9863,46,0,600000 +9874,63,0,0 +9879,63,0,0 +9892,84,0,10000 +9906,54,0,0 +9908,85,0,0 +9913,38,0,10000 +9949,31,0,30000 +9956,25,0,0 +9976,39,0,30000 +9977,31,0,30000 +10017,35,0,0 +10018,35,0,0 +10032,38,0,0 +10052,30,0,60000 +10057,30,0,60000 +10058,30,0,60000 +10059,0,60000,0 +10060,0,180000,0 +10073,19,0,0 +10159,50,0,10000 +10160,50,0,10000 +10161,50,0,10000 +10177,56,0,30000 +10197,19,0,8000 +10199,19,0,8000 +10223,56,0,30000 +10225,56,0,30000 +10230,35,0,25000 +10250,59,0,60000 +10251,36,0,0 +10253,35,0,0 +10256,11,0,60000 +10257,11,0,0 +10278,20,0,300000 +10308,32,0,60000 +10310,56,0,3600000 +10312,19,0,15000 +10313,19,0,15000 +10314,19,0,15000 +10318,35,0,60000 +10326,33,0,30000 +10368,56,0,0 +10412,19,0,6000 +10413,19,0,6000 +10414,19,0,6000 +10427,45,0,30000 +10428,45,0,30000 +10447,19,0,6000 +10448,19,0,6000 +10451,63,0,0 +10472,19,0,6000 +10473,19,0,6000 +10605,85,0,6000 +10618,99,0,1000 +10651,36,0,0 +10653,36,0,0 +10667,1,0,210000 +10668,1,0,210000 +10669,1,0,210000 +10692,1,0,210000 +10693,1,0,210000 +10732,21,0,0 +10733,50,0,0 +10797,1192,0,30000 +10851,109,0,0 +10852,34,0,0 +10855,51,0,0 +10856,51,0,0 +10887,88,0,0 +10888,43,0,30000 +10890,43,0,30000 +10898,56,0,4000 +10899,56,0,4000 +10900,56,0,4000 +10901,56,0,4000 +10941,82,0,30000 +10942,82,0,30000 +10945,19,0,8000 +10946,19,0,8000 +10947,19,0,8000 +10967,43,0,0 +10968,43,0,0 +11007,59,0,0 +11008,59,0,0 +11009,59,0,0 +11013,38,0,0 +11020,36,0,0 +11084,19,0,6000 +11085,85,0,0 +11087,21,0,0 +11088,21,0,0 +11113,250,0,30000 +11129,0,180000,0 +11264,35,0,15000 +11285,33,0,10000 +11286,33,0,10000 +11293,40,0,0 +11294,40,0,0 +11303,82,0,10000 +11305,44,0,300000 +11314,35,0,15000 +11315,35,0,15000 +11350,4,0,0 +11365,89,0,3600000 +11387,4,0,10000 +11389,0,0,3000 +11390,99,0,1000 +11392,37,0,600000 +11397,18,0,0 +11406,79,0,0 +11412,0,300000,0 +11416,0,60000,0 +11417,0,60000,0 +11418,0,60000,0 +11419,0,60000,0 +11420,0,60000,0 +11426,471,0,30000 +11428,0,5000,0 +11430,32,0,0 +11436,51,0,10000 +11443,22,0,0 +11445,56,0,4000 +11474,99,0,1000 +11479,310,0,72000000 +11480,310,0,72000000 +11481,63,0,0 +11504,49,0,0 +11578,44,0,15000 +11580,49,0,4000 +11581,49,0,4000 +11584,65,0,5000 +11585,65,0,5000 +11600,65,0,5000 +11601,65,0,5000 +11629,59,0,0 +11647,56,0,4000 +11732,30,0,0 +11739,56,0,30000 +11740,56,0,30000 +11774,36,0,5000 +11775,36,0,5000 +11778,40,0,12000 +11779,40,0,12000 +11780,40,0,12000 +11784,82,0,4000 +11785,82,0,4000 +11791,36,0,0 +11820,34,0,0 +11821,19,0,0 +11824,19,0,6000 +11825,19,0,6000 +11828,85,0,0 +11835,56,0,4000 +11836,98,0,0 +11837,85,0,0 +11841,0,0,1000 +11876,32,0,0 +11903,4,0,60000 +11920,34,0,0 +11922,99,0,0 +11958,0,480000,0 +12001,0,0,420000 +12023,34,0,0 +12024,34,0,0 +12042,0,180000,0 +12043,1151,180000,1500 +12051,0,480000,0 +12058,85,0,6000 +12097,36,0,0 +12166,36,0,0 +12170,65,0,0 +12245,36,0,0 +12246,36,0,0 +12252,34,0,0 +12279,36,0,0 +12292,0,180000,0 +12294,971,0,6000 +12328,0,30000,0 +12332,39,0,30000 +12472,0,180000,0 +12528,32,0,0 +12544,0,10000,0 +12550,0,10000,0 +12553,19,0,6000 +12561,99,0,1000 +12736,0,3600000,0 +12747,99,0,0 +12787,65,0,0 +12795,21,0,0 +12809,0,45000,0 +12880,21,0,0 +12938,391,0,0 +12975,0,480000,0 +13005,32,0,0 +13007,37,0,0 +13013,36,0,45000 +13018,250,0,30000 +13019,250,0,30000 +13020,250,0,30000 +13021,250,0,30000 +13031,471,0,30000 +13032,471,0,30000 +13033,471,0,30000 +13049,23,0,60000 +13168,21,0,0 +13281,19,0,0 +13325,31,0,30000 +13327,44,0,0 +13339,19,0,0 +13340,19,0,0 +13341,19,0,0 +13342,19,0,0 +13374,19,0,0 +13441,0,0,8000 +13463,23,0,0 +13491,0,0,10000 +13532,0,0,4000 +13582,18,0,0 +13585,0,10000,0 +13587,0,5000,0 +13608,34,0,0 +13619,0,0,60000 +13728,19,0,0 +13729,19,0,0 +13736,49,0,0 +13747,51,0,10000 +13750,0,300000,0 +13787,0,10000,0 +13795,411,0,30000 +13809,411,0,30000 +13813,411,0,30000 +13821,44,0,0 +13847,132,0,0 +13860,19,0,0 +13874,37,0,0 +13877,0,120000,0 +13896,1144,0,180000 +13902,32,0,0 +13903,25,0,0 +13908,671,0,600000 +13912,190,2000000,0 +13913,0,30000,0 +13953,40,0,0 +14030,34,0,0 +14105,0,0,8000 +14108,36,0,0 +14112,85,0,6000 +14145,19,0,0 +14177,0,180000,0 +14178,36,0,0 +14180,36,0,0 +14183,0,120000,0 +14185,0,600000,0 +14200,85,0,0 +14201,21,0,0 +14202,21,0,0 +14203,21,0,0 +14204,21,0,0 +14251,0,6000,0 +14260,40,0,6000 +14261,40,0,6000 +14262,40,0,6000 +14263,40,0,6000 +14264,40,0,6000 +14265,40,0,6000 +14266,40,0,6000 +14269,65,0,5000 +14270,65,0,5000 +14271,65,0,5000 +14272,82,0,5000 +14273,82,0,5000 +14274,911,0,8000 +14278,0,20000,0 +14279,1175,0,15000 +14280,1175,0,15000 +14281,1173,0,6000 +14282,1173,0,6000 +14283,1173,0,6000 +14284,1173,0,6000 +14285,1173,0,6000 +14286,1173,0,6000 +14287,1173,0,6000 +14288,85,0,10000 +14289,85,0,10000 +14290,85,0,10000 +14294,49,0,60000 +14295,49,0,60000 +14302,411,0,30000 +14303,411,0,30000 +14304,411,0,30000 +14305,411,0,30000 +14310,411,0,30000 +14311,411,0,30000 +14316,411,0,30000 +14317,411,0,30000 +14326,33,0,30000 +14327,33,0,30000 +14514,44,0,0 +14515,99,0,0 +14532,36,0,0 +14533,36,0,0 +14534,36,0,0 +14535,36,0,0 +14538,36,0,0 +14539,36,0,0 +14751,0,180000,0 +14796,36,0,0 +14822,21,0,0 +14872,21,0,0 +14895,65,0,5000 +14897,51,0,0 +14916,82,0,5000 +14917,82,0,5000 +14918,82,0,5000 +14919,82,0,5000 +14920,82,0,5000 +14921,82,0,5000 +15039,19,0,0 +15041,56,0,5000 +15042,36,0,0 +15044,56,0,5000 +15054,22,0,0 +15055,22,0,0 +15061,21,0,0 +15087,66,0,0 +15091,250,0,0 +15096,19,0,0 +15097,21,0,0 +15117,85,0,6000 +15122,88,0,0 +15167,55,0,0 +15236,19,0,6000 +15237,431,0,0 +15247,31,0,30000 +15286,0,10000,0 +15305,85,0,6000 +15306,19,0,6000 +15398,43,0,0 +15430,431,0,0 +15431,431,0,0 +15473,39,0,1500 +15474,34,0,0 +15475,18,0,0 +15487,0,45000,0 +15500,19,0,6000 +15501,19,0,0 +15503,25,0,0 +15504,25,0,0 +15507,0,10000,0 +15535,99,0,0 +15539,31,0,30000 +15548,22,0,0 +15549,85,0,0 +15550,49,0,0 +15574,19,0,0 +15587,19,0,0 +15588,22,0,0 +15593,32,0,0 +15605,19,0,6000 +15609,34,0,0 +15611,2,0,0 +15612,2,0,0 +15616,19,0,0 +15621,65,0,0 +15629,911,0,8000 +15630,911,0,8000 +15631,911,0,8000 +15632,911,0,8000 +15641,65,0,0 +15642,65,0,0 +15655,88,0,0 +15656,0,0,30000 +15659,85,0,6000 +15664,18,0,0 +15700,4,0,10000 +15701,4,0,60000 +15716,21,0,0 +15744,250,0,0 +15749,44,0,0 +15752,109,0,0 +15787,35,0,0 +15797,2,0,0 +15852,11,0,60000 +15859,99,0,0 +15869,23,0,0 +15876,36,0,0 +15878,36,0,0 +15956,38,0,0 +15968,73,0,0 +16006,85,0,0 +16033,85,0,6000 +16034,19,0,6000 +16046,250,0,0 +16050,51,0,10000 +16067,0,0,8000 +16094,50,0,0 +16098,36,0,0 +16099,50,0,0 +16104,33,0,0 +16122,38,0,0 +16141,49,0,0 +16144,19,0,0 +16146,36,0,0 +16166,0,180000,10000 +16169,85,0,0 +16170,55,0,0 +16171,43,0,0 +16172,52,0,0 +16188,0,180000,10000 +16190,591,0,300000 +16243,2,0,0 +16322,55,0,10000 +16340,50,0,0 +16349,1,0,0 +16350,98,0,0 +16390,50,0,0 +16396,50,0,0 +16407,0,0,8000 +16430,99,0,0 +16451,190,0,0 +16454,0,0,8000 +16469,34,0,0 +16495,41,0,0 +16498,0,0,30000 +16552,18,0,0 +16576,99,0,0 +16617,99,0,1000 +16624,0,5000,0 +16666,30,0,60000 +16689,531,0,60000 +16697,82,0,5000 +16727,32,0,0 +16740,32,0,0 +16789,21,0,0 +16790,0,5000,0 +16792,21,0,0 +16804,19,0,0 +16810,531,0,60000 +16811,531,0,60000 +16812,531,0,60000 +16813,531,0,60000 +16838,0,0,5000 +16857,1133,0,6000 +16866,18,0,0 +16889,99,0,0 +16890,4,0,0 +16891,99,0,0 +16892,99,0,0 +16893,99,0,0 +16894,99,0,0 +16895,99,0,0 +16908,0,0,8000 +16914,571,0,60000 +16979,0,15000,0 +17116,0,180000,0 +17140,451,0,0 +17141,451,0,0 +17142,451,0,0 +17143,40,0,0 +17145,250,0,0 +17147,19,0,0 +17149,19,0,0 +17157,2,0,0 +17158,18,0,0 +17171,2,0,6000 +17174,42,0,0 +17177,20,0,0 +17194,19,0,0 +17198,65,0,5000 +17205,0,10000,0 +17207,49,0,0 +17230,36,0,0 +17233,56,0,0 +17244,93,0,0 +17253,19,0,10000 +17255,19,0,10000 +17256,19,0,10000 +17257,19,0,10000 +17258,19,0,10000 +17259,19,0,10000 +17260,19,0,10000 +17261,19,0,10000 +17273,290,0,0 +17274,290,0,0 +17276,19,0,0 +17277,250,0,0 +17284,40,0,0 +17286,32,0,0 +17287,19,0,0 +17294,50,0,0 +17308,32,0,0 +17315,36,0,0 +17329,531,0,60000 +17351,56,0,0 +17364,0,10000,0 +17390,1133,0,6000 +17391,1133,0,6000 +17392,1133,0,6000 +17401,571,0,60000 +17402,571,0,60000 +17405,99,0,0 +17448,1,0,0 +17468,0,0,300000 +17469,0,0,300000 +17492,19,0,0 +17500,32,0,0 +17528,4,0,0 +17530,4,0,60000 +17531,4,0,60000 +17534,4,0,10000 +17539,99,0,1000 +17540,28,0,60000 +17543,99,0,1000 +17544,99,0,1000 +17545,99,0,1000 +17546,99,0,1000 +17548,99,0,1000 +17549,99,0,1000 +17559,310,0,72000000 +17560,310,0,72000000 +17561,310,0,72000000 +17562,310,0,72000000 +17563,310,0,72000000 +17564,310,0,72000000 +17565,310,0,72000000 +17566,310,0,72000000 +17624,37,0,0 +17628,99,0,1000 +17631,2,0,0 +17633,55,0,0 +17712,30,0,0 +17735,84,0,120000 +17750,84,0,120000 +17751,84,0,120000 +17752,84,0,120000 +17770,0,0,60000 +17820,36,0,0 +17877,651,0,15000 +17924,631,0,60000 +17925,633,0,120000 +17926,633,0,120000 +17928,634,0,40000 +17962,672,0,10000 +18071,11,0,60000 +18083,0,0,8000 +18085,0,0,8000 +18091,0,0,8000 +18092,0,0,8000 +18100,0,10000,0 +18124,11,0,60000 +18140,59,0,60000 +18144,85,0,0 +18149,18,0,0 +18165,451,0,0 +18204,0,0,8000 +18229,11,0,60000 +18230,11,0,60000 +18231,11,0,60000 +18232,11,0,60000 +18233,11,0,60000 +18234,11,0,0 +18276,0,0,8000 +18278,32,0,0 +18288,0,180000,0 +18289,0,0,30000 +18307,1,0,60000 +18308,1,0,60000 +18309,39,0,30000 +18327,32,0,0 +18385,30,0,60000 +18389,19,0,0 +18398,0,0,8000 +18435,50,0,0 +18499,0,30000,0 +18501,21,0,0 +18540,0,3600000,0 +18562,0,15000,0 +18649,2,0,6000 +18708,0,900000,0 +18763,98,0,0 +18812,0,5000,0 +18819,85,0,6000 +18831,31,0,0 +18832,4,0,10000 +18833,0,0,8000 +18867,651,0,15000 +18868,651,0,15000 +18869,651,0,15000 +18870,651,0,15000 +18871,651,0,15000 +18930,672,0,10000 +18931,672,0,10000 +18932,672,0,10000 +18942,99,0,1000 +18943,65,0,0 +18956,30,0,60000 +18957,30,0,60000 +18972,51,0,0 +18985,38,0,0 +19030,39,0,30000 +19128,0,5000,0 +19130,65,0,5000 +19131,44,0,0 +19137,51,0,0 +19194,65,0,0 +19199,0,0,10000 +19223,44,0,0 +19236,671,0,600000 +19238,671,0,600000 +19240,671,0,600000 +19241,671,0,600000 +19242,671,0,600000 +19243,671,0,600000 +19244,88,0,24000 +19260,0,0,8000 +19263,0,300000,0 +19271,1144,0,180000 +19273,1144,0,180000 +19274,1144,0,180000 +19275,1144,0,180000 +19276,691,0,180000 +19277,691,0,180000 +19278,691,0,180000 +19279,691,0,180000 +19280,691,0,180000 +19296,1192,0,30000 +19299,1192,0,30000 +19302,1192,0,30000 +19303,1192,0,30000 +19304,1192,0,30000 +19305,1192,0,30000 +19306,1135,0,5000 +19386,1111,0,120000 +19434,2,0,6000 +19469,99,0,0 +19482,32,0,20000 +19503,0,30000,0 +19505,12,0,8000 +19513,35,0,40000 +19514,0,10000,0 +19566,791,0,255600000 +19574,0,120000,0 +19577,1132,60000,0 +19645,37,0,0 +19647,88,0,24000 +19731,12,0,8000 +19734,12,0,8000 +19736,12,0,8000 +19752,0,3600000,0 +19801,0,20000,0 +19802,0,3600000,0 +19817,65,0,0 +19818,65,0,0 +19873,0,7000,0 +19881,351,0,0 +20066,0,60000,0 +20116,932,0,8000 +20216,0,120000,0 +20228,290,0,0 +20230,132,0,1800000 +20252,1158,0,30000 +20271,0,10000,0 +20473,892,0,15000 +20484,26,0,1200000 +20535,2,0,0 +20536,2,0,0 +20537,88,0,30000 +20539,41,0,0 +20543,2,0,0 +20545,0,10000,0 +20549,0,120000,0 +20554,0,180000,0 +20559,40,0,120000 +20560,40,0,120000 +20565,19,0,0 +20566,19,0,3000 +20568,19,0,5000 +20572,0,120000,0 +20577,0,120000,0 +20580,871,0,10000 +20589,0,105000,0 +20594,0,180000,0 +20600,0,180000,0 +20604,99,0,0 +20605,85,0,6000 +20608,1161,0,3600000 +20616,1158,0,30000 +20617,1158,0,30000 +20619,43,0,30000 +20627,2,0,0 +20629,18,0,0 +20630,2,0,0 +20654,99,0,0 +20656,0,0,30000 +20699,99,0,0 +20706,56,0,0 +20729,1186,0,30000 +20736,911,0,8000 +20739,26,0,1200000 +20740,99,0,0 +20742,26,0,1200000 +20747,26,0,1200000 +20748,26,0,1200000 +20795,19,0,0 +20798,0,10000,0 +20812,22,0,0 +20830,19,0,0 +20831,85,0,6000 +20832,19,0,0 +20869,0,0,8000 +20883,0,0,8000 +20884,32,0,0 +20900,2,0,6000 +20901,2,0,6000 +20902,2,0,6000 +20903,2,0,6000 +20904,2,0,6000 +20909,1135,0,5000 +20910,1135,0,5000 +20922,932,0,8000 +20923,932,0,8000 +20924,932,0,8000 +20925,931,0,10000 +20927,931,0,10000 +20928,931,0,10000 +20929,892,0,15000 +20930,892,0,15000 +21008,40,0,0 +21049,55,0,0 +21067,18,0,0 +21075,43,0,30000 +21076,43,0,20000 +21099,50,0,0 +21149,11,0,60000 +21152,32,0,0 +21154,19,0,3000 +21169,1161,0,3600000 +21331,99,0,0 +21343,1197,0,0 +21355,951,0,0 +21370,951,0,0 +21371,951,0,0 +21393,4,0,10000 +21394,4,0,10000 +21395,4,0,60000 +21396,4,0,60000 +21537,951,0,0 +21538,951,0,0 +21551,971,0,6000 +21552,971,0,6000 +21553,971,0,6000 +21655,44,0,0 +21728,951,0,0 +21729,951,0,0 +21730,951,0,0 +21787,18,0,120000 +21791,46,0,0 +21878,66,0,300000 +21892,37,0,0 +21920,99,0,1000 +21935,991,0,86400000 +21956,99,0,1000 +21971,18,0,0 +22007,0,10000,0 +22067,54,0,0 +22127,99,0,0 +22270,0,3600000,0 +22335,0,0,60000 +22415,99,0,0 +22418,0,10000,0 +22423,19,0,0 +22424,250,0,0 +22479,2,0,0 +22539,50,0,0 +22563,1091,0,0 +22564,1091,0,0 +22570,33,0,10000 +22649,23,0,60000 +22687,36,0,0 +22692,36,0,0 +22729,4,0,60000 +22731,11,0,60000 +22734,59,0,60000 +22743,2,0,0 +22751,0,0,4000 +22807,99,0,1000 +22812,0,60000,0 +22842,1011,0,180000 +22857,132,0,0 +22885,19,0,0 +22895,1011,0,180000 +22896,1011,0,180000 +22908,49,0,60000 +22910,411,0,15000 +22911,44,0,0 +22914,42,0,0 +22937,18,0,0 +22946,35,0,0 +22994,99,0,0 +23038,19,0,0 +23039,250,0,0 +23041,1160,0,1800000 +23042,1160,0,1800000 +23099,44,0,30000 +23103,99,0,0 +23104,19,0,0 +23105,35,0,0 +23106,85,0,6000 +23109,44,0,30000 +23110,44,0,30000 +23113,250,0,0 +23114,19,0,0 +23145,44,0,30000 +23147,44,0,30000 +23148,44,0,30000 +23206,85,0,0 +23207,32,0,0 +23224,36,0,0 +23267,0,0,8000 +23331,250,0,0 +23340,36,0,0 +23454,32,0,0 +23461,50,0,0 +23468,30,0,0 +23469,30,0,0 +23470,30,0,0 +23471,30,0,0 +23472,30,0,0 +23473,30,0,0 +23474,30,0,0 +23475,30,0,0 +23476,30,0,0 +23477,30,0,0 +23506,99,0,1000 +23537,21,0,0 +23540,11,0,60000 +23541,11,0,60000 +23542,11,0,60000 +23692,11,0,60000 +23693,0,0,4000 +23698,59,0,60000 +23786,99,0,1000 +23848,971,0,6000 +23850,971,0,6000 +23851,1071,0,0 +23852,1071,0,604800000 +23860,451,0,0 +23862,18,0,0 +23881,971,0,6000 +23892,971,0,6000 +23893,971,0,6000 +23894,971,0,6000 +23919,85,0,0 +23920,0,10000,0 +23922,971,0,6000 +23923,971,0,6000 +23924,971,0,6000 +23925,971,0,6000 +23931,22,0,0 +23951,55,0,0 +23960,40,0,0 +23964,0,0,4000 +23989,0,300000,0 +23991,1155,0,1000 +24005,11,0,60000 +24011,18,0,0 +24016,40,0,0 +24021,37,0,0 +24023,44,0,0 +24099,18,0,0 +24132,1111,0,120000 +24133,1111,0,120000 +24178,99,0,0 +24184,99,0,0 +24185,55,0,0 +24193,44,0,0 +24213,65,0,0 +24236,49,0,0 +24239,1131,0,6000 +24274,1131,0,6000 +24275,1131,0,6000 +24301,38,0,0 +24315,44,0,0 +24318,21,0,0 +24333,65,0,20000 +24353,28,0,120000 +24355,59,0,60000 +24361,4,0,60000 +24363,4,0,60000 +24364,4,0,60000 +24375,32,0,0 +24384,11,0,60000 +24393,971,0,6000 +24407,65,0,0 +24408,44,0,0 +24409,11,0,60000 +24410,11,0,60000 +24411,11,0,60000 +24415,51,0,0 +24423,36,0,0 +24427,59,0,0 +24438,43,0,0 +24450,38,0,10000 +24452,38,0,10000 +24453,38,0,10000 +24530,19,0,0 +24577,36,0,0 +24578,36,0,0 +24579,36,0,0 +24583,19,0,4000 +24586,19,0,4000 +24587,19,0,4000 +24597,55,0,10000 +24603,55,0,10000 +24604,55,0,10000 +24605,55,0,10000 +24619,99,0,0 +24640,19,0,4000 +24648,99,0,0 +24672,55,0,0 +24673,36,0,0 +24674,36,0,0 +24680,85,0,0 +24683,35,0,0 +24685,19,0,0 +24686,36,0,0 +24688,18,0,0 +24707,11,0,60000 +24800,11,0,60000 +24816,971,0,6000 +24817,65,0,5000 +24819,85,0,0 +24824,40,0,0 +24826,0,5000,0 +24844,2,0,0 +24869,11,0,60000 +24893,28,0,0 +24933,1138,4000,0 +24995,21,0,0 +25003,1138,5000,0 +25008,2,0,0 +25009,2,0,0 +25010,2,0,0 +25011,2,0,0 +25012,2,0,0 +25020,0,10000,0 +25021,85,0,0 +25024,1138,10000,0 +25025,19,0,0 +25026,1138,10000,5000 +25027,1138,2000,0 +25028,19,0,0 +25030,1138,6000,0 +25031,1138,6000,0 +25033,35,0,0 +25046,0,120000,0 +25049,250,0,0 +25053,18,0,0 +25056,32,0,0 +25085,97,0,300000 +25102,28,0,0 +25174,85,0,0 +25189,99,0,0 +25190,44,0,0 +25191,44,0,0 +25217,56,0,4000 +25218,56,0,4000 +25248,971,0,6000 +25251,971,0,6000 +25258,971,0,6000 +25262,18,0,0 +25264,49,0,4000 +25266,40,0,120000 +25269,65,0,5000 +25272,1158,0,30000 +25275,1158,0,30000 +25288,65,0,5000 +25294,85,0,10000 +25302,82,0,10000 +25331,431,0,0 +25372,19,0,8000 +25375,19,0,8000 +25378,21,0,0 +25384,451,0,0 +25424,18,0,0 +25425,22,0,0 +25429,82,0,30000 +25437,671,0,600000 +25439,85,0,6000 +25441,1144,0,180000 +25442,85,0,6000 +25446,1192,0,30000 +25454,19,0,6000 +25457,19,0,6000 +25464,19,0,6000 +25467,691,0,180000 +25497,18,0,0 +25515,32,0,0 +25525,45,0,30000 +25546,35,0,15000 +25547,35,0,15000 +25599,22,0,0 +25602,0,0,30000 +25603,51,0,10000 +25641,56,0,0 +25660,11,0,60000 +25669,0,5000,0 +25690,11,0,1500 +25691,59,0,1500 +25692,11,0,1500 +25693,11,0,1500 +25695,0,0,60000 +25696,0,0,60000 +25697,11,0,60000 +25698,35,0,30000 +25699,35,0,600000 +25746,1155,0,1000 +25747,1155,0,1000 +25750,1155,0,1000 +25806,99,0,0 +25811,18,0,0 +25814,85,0,0 +25817,46,0,0 +25821,44,0,0 +25822,1137,0,0 +25851,0,0,60000 +25863,330,0,3000 +25990,11,0,60000 +25991,18,0,0 +26030,11,0,60000 +26038,49,0,0 +26043,43,0,0 +26048,19,0,0 +26052,18,0,0 +26059,35,0,600000 +26064,0,180000,0 +26066,1,0,60000 +26069,88,0,0 +26071,99,0,0 +26081,44,0,0 +26082,44,0,0 +26083,49,0,0 +26090,0,60000,0 +26099,43,0,0 +26103,63,0,5000 +26177,44,0,25000 +26178,44,0,25000 +26179,44,0,25000 +26187,0,60000,0 +26188,0,60000,0 +26194,19,0,0 +26195,99,0,0 +26197,99,0,0 +26198,99,0,0 +26201,44,0,25000 +26226,0,0,4000 +26258,99,0,0 +26259,99,0,0 +26260,0,0,60000 +26261,0,0,60000 +26263,11,0,60000 +26276,99,0,1000 +26281,36,0,5000 +26296,0,180000,0 +26297,0,180000,0 +26389,59,0,0 +26401,0,0,60000 +26402,0,0,60000 +26472,0,0,60000 +26473,0,0,60000 +26474,0,0,60000 +26475,0,0,60000 +26527,21,0,0 +26550,35,0,0 +26573,932,0,8000 +26601,18,0,0 +26613,1152,0,0 +26616,63,0,0 +26655,330,0,3000 +26662,21,0,0 +26669,66,0,300000 +26681,1142,0,0 +26682,1142,0,0 +26751,0,331200000,0 +26861,40,0,0 +26862,40,0,0 +26889,39,0,300000 +26983,46,0,600000 +26994,26,0,1200000 +26997,85,0,0 +26999,1011,0,180000 +27004,84,0,10000 +27009,531,0,60000 +27011,1133,0,6000 +27012,571,0,60000 +27014,40,0,6000 +27015,82,0,5000 +27018,1175,0,15000 +27019,1173,0,6000 +27020,911,0,8000 +27021,85,0,10000 +27022,49,0,60000 +27023,411,0,30000 +27025,411,0,30000 +27047,82,0,5000 +27048,82,0,5000 +27050,19,0,10000 +27051,36,0,0 +27060,19,0,4000 +27063,0,60000,0 +27065,2,0,6000 +27067,1135,0,5000 +27068,1111,0,120000 +27078,19,0,8000 +27079,19,0,8000 +27087,50,0,10000 +27088,35,0,25000 +27094,11,0,60000 +27101,87,0,0 +27103,30,0,60000 +27128,56,0,30000 +27133,250,0,30000 +27134,471,0,30000 +27138,19,0,15000 +27139,35,0,60000 +27147,1186,0,30000 +27148,1186,0,30000 +27154,56,0,3600000 +27173,932,0,8000 +27174,892,0,15000 +27179,931,0,10000 +27180,1131,0,6000 +27184,1139,0,0 +27190,1139,0,0 +27191,1139,0,0 +27201,1139,0,0 +27202,1139,0,0 +27203,1139,0,0 +27204,0,180000,0 +27211,631,0,60000 +27223,633,0,120000 +27235,30,0,0 +27236,30,0,0 +27237,30,0,0 +27254,19,0,0 +27263,651,0,15000 +27266,672,0,10000 +27270,36,0,5000 +27271,84,0,120000 +27274,40,0,12000 +27275,82,0,4000 +27276,12,0,8000 +27277,12,0,8000 +27448,82,0,10000 +27517,1139,0,0 +27530,571,0,0 +27533,99,0,1000 +27534,99,0,1000 +27535,99,0,1000 +27536,99,0,1000 +27538,99,0,1000 +27540,99,0,1000 +27543,39,0,0 +27545,39,0,0 +27564,54,0,0 +27567,85,0,0 +27577,1,0,0 +27580,971,0,6000 +27581,109,0,60000 +27602,0,3600000,0 +27607,56,0,4000 +27610,43,0,30000 +27615,270,0,20000 +27617,39,0,300000 +27619,37,0,300000 +27623,35,0,15000 +27632,2,0,6000 +27634,42,0,0 +27680,21,0,0 +27685,44,0,25000 +27689,55,0,0 +27740,0,3600000,0 +27753,411,0,15000 +27758,32,0,0 +27759,0,15000,0 +27766,1138,0,0 +27779,56,0,0 +27799,431,0,0 +27800,431,0,0 +27801,431,0,0 +27806,2,0,0 +27808,1152,0,5000 +27810,1152,0,5000 +27869,30,0,60000 +27870,1145,0,360000 +27871,1145,0,360000 +27879,0,5000,0 +27881,0,5000,0 +27882,0,5000,0 +27897,21,0,0 +27993,0,0,30000 +27995,55,0,0 +28027,1174,0,172800000 +28028,1174,0,172800000 +28125,1152,0,0 +28131,21,0,0 +28148,0,60000,0 +28167,85,0,0 +28168,1152,0,0 +28247,0,0,10000 +28269,35,0,60000 +28275,1145,0,360000 +28293,85,0,0 +28314,0,5000,0 +28329,22,0,0 +28334,49,0,0 +28338,1152,0,6000 +28339,1152,0,6000 +28350,36,0,0 +28354,1149,0,0 +28391,44,0,0 +28401,44,0,0 +28408,1152,0,0 +28412,633,0,120000 +28418,0,0,4000 +28419,0,0,4000 +28420,0,0,4000 +28440,36,0,0 +28479,1152,0,8000 +28486,79,0,0 +28488,79,0,0 +28493,99,0,1000 +28494,99,0,1000 +28495,4,0,10000 +28498,21,0,0 +28499,4,0,60000 +28500,37,0,600000 +28501,99,0,1000 +28503,99,0,1000 +28509,79,0,0 +28511,99,0,1000 +28512,99,0,1000 +28513,99,0,1000 +28515,28,0,60000 +28527,99,0,1000 +28536,99,0,1000 +28537,99,0,1000 +28538,99,0,1000 +28548,4,0,10000 +28566,310,0,72000000 +28567,310,0,72000000 +28568,310,0,72000000 +28569,310,0,72000000 +28580,310,0,72000000 +28581,310,0,72000000 +28582,310,0,72000000 +28583,310,0,72000000 +28584,310,0,72000000 +28585,310,0,72000000 +28609,56,0,30000 +28610,56,0,30000 +28616,11,0,60000 +28673,1152,0,0 +28725,32,0,0 +28730,0,120000,0 +28734,0,30000,0 +28747,21,0,0 +28760,0,0,60000 +28765,0,0,1000 +28766,0,0,1000 +28768,0,0,1000 +28769,0,0,1000 +28770,0,0,1000 +28783,1152,0,0 +28785,1152,0,20000 +28796,1152,0,0 +28798,1152,0,0 +28815,0,180000,0 +28858,99,0,0 +28880,0,180000,0 +28887,65,0,0 +28900,85,0,0 +28902,55,0,0 +28913,40,0,0 +28991,34,0,0 +29007,59,0,60000 +29008,11,0,60000 +29029,59,0,1500 +29041,59,0,10000 +29045,65,0,0 +29055,11,0,60000 +29060,1152,60000,10000 +29061,0,30000,0 +29073,11,0,60000 +29166,0,360000,0 +29208,44,0,0 +29209,44,0,0 +29210,44,0,0 +29211,44,0,0 +29212,22,0,0 +29220,59,0,60000 +29228,19,0,6000 +29236,4,0,60000 +29251,4,0,10000 +29276,30,0,60000 +29279,1139,0,0 +29293,18,0,0 +29297,1139,0,0 +29306,36,0,0 +29310,1152,0,0 +29312,30,0,60000 +29320,44,0,0 +29325,18,0,0 +29326,0,10000,0 +29382,37,0,0 +29385,55,0,8000 +29386,55,0,3000 +29425,1152,0,3000 +29432,99,0,1000 +29448,1152,0,2000 +29455,0,5000,0 +29490,36,0,6000 +29503,0,0,1000 +29504,0,0,1000 +29505,0,0,5000 +29506,0,0,1000 +29511,1152,0,12000 +29522,1152,0,2000 +29525,44,0,15000 +29563,451,0,0 +29573,49,0,0 +29627,37,0,600000 +29661,1152,0,5000 +29665,85,0,6000 +29674,0,0,1000 +29688,310,0,72000000 +29690,65,0,0 +29691,21,0,0 +29701,0,0,1000 +29704,88,0,12000 +29718,0,10000,0 +29719,0,0,1000 +29731,0,0,10000 +29832,85,0,6000 +29840,1152,0,3000 +29847,44,0,0 +29851,49,0,0 +29858,0,300000,0 +29883,44,0,0 +29884,44,0,0 +29893,1177,0,300000 +29901,18,0,0 +29903,44,0,0 +29906,65,0,0 +29915,40,0,0 +29921,38,0,0 +29922,0,3000,0 +29923,0,3000,0 +29924,0,3000,0 +29925,0,3000,0 +29926,0,3000,0 +29927,0,3000,0 +29935,18,0,3000 +29939,18,0,0 +29940,0,0,60000 +29943,32,0,0 +29966,44,0,0 +29967,44,0,0 +29968,44,0,0 +29977,0,0,180000 +29990,51,0,0 +30004,1152,0,23000 +30010,1152,0,0 +30012,1163,0,0 +30013,0,15000,0 +30024,59,0,0 +30035,51,0,0 +30036,0,10000,0 +30055,0,3000,0 +30081,36,0,420000 +30092,250,0,0 +30112,44,0,0 +30128,63,0,0 +30129,63,0,0 +30130,63,0,0 +30151,1158,0,30000 +30161,0,30000,0 +30167,0,600000,0 +30194,1158,0,30000 +30198,1158,0,30000 +30210,50,0,0 +30213,40,0,6000 +30219,40,0,6000 +30223,40,0,6000 +30225,32,0,0 +30234,1159,0,3000 +30235,1159,0,0 +30253,0,1000,0 +30280,63,0,0 +30283,250,0,20000 +30284,1163,5000,0 +30330,971,0,6000 +30335,971,0,6000 +30356,971,0,6000 +30357,65,0,5000 +30413,250,0,20000 +30414,250,0,20000 +30452,1203,0,0 +30470,99,0,20000 +30474,65,0,10000 +30478,1152,0,5000 +30479,1152,0,15000 +30485,21,0,60000 +30493,76,0,0 +30495,85,0,6000 +30512,19,0,0 +30516,19,0,0 +30524,0,0,300000 +30543,1163,0,12000 +30545,631,0,60000 +30546,651,0,15000 +30572,1152,0,10000 +30600,250,0,0 +30614,2,0,6000 +30618,1152,0,8000 +30621,270,0,20000 +30633,1152,0,2000 +30635,43,0,0 +30636,55,0,10000 +30688,88,0,0 +30707,1152,0,3000 +30717,0,1000,0 +30752,1152,0,0 +30769,1152,0,5000 +30823,0,120000,0 +30831,38,0,120000 +30832,270,0,20000 +30833,43,0,0 +30844,24,0,0 +30846,0,0,7000 +30849,88,0,0 +30850,36,0,6000 +30874,0,300000,0 +30910,1179,0,60000 +30912,672,0,10000 +30917,18,0,0 +30923,99,0,0 +30926,1152,0,3000 +30930,50,0,0 +30931,43,0,0 +30933,49,0,15000 +30939,1152,0,0 +30969,54,0,0 +30978,0,0,10000 +30991,38,0,5000 +30994,99,0,1000 +30997,99,0,1000 +30999,99,0,1000 +31000,99,0,1000 +31002,99,0,1000 +31022,0,20000,0 +31138,0,180000,0 +31224,0,60000,0 +31256,0,10000,0 +31260,38,0,0 +31272,99,0,0 +31273,36,0,0 +31282,36,0,0 +31286,0,0,20000 +31287,99,0,0 +31288,18,0,0 +31290,34,0,0 +31295,22,0,0 +31308,38,5000,0 +31328,0,0,10000 +31330,85,0,0 +31335,0,15000,0 +31373,0,331200000,0 +31378,19,0,0 +31381,18,0,0 +31390,0,5000,0 +31403,43,0,0 +31406,22,0,0 +31408,32,0,0 +31409,99,0,0 +31423,18,0,0 +31425,51,0,0 +31426,44,0,25000 +31429,43,0,0 +31439,44,0,0 +31462,0,0,60000 +31465,44,0,0 +31467,0,0,10000 +31477,22,0,0 +31480,32,0,0 +31516,19,0,0 +31519,38,5000,0 +31526,38,0,120000 +31537,1152,0,12000 +31540,1152,0,8000 +31551,36,0,45000 +31567,0,300000,0 +31596,88,0,0 +31610,0,5000,0 +31617,23,0,15000 +31623,2,0,6000 +31624,23,0,15000 +31625,23,0,15000 +31626,55,0,0 +31661,50,0,20000 +31687,0,180000,0 +31700,330,0,3000 +31709,84,0,10000 +31715,0,0,3000 +31717,85,0,3000 +31718,99,0,0 +31719,99,0,0 +31732,43,0,0 +31733,44,0,0 +31737,49,0,0 +31741,51,0,0 +31747,35,0,0 +31755,32,0,0 +31760,23,10000,0 +31765,0,10000,0 +31771,0,0,1000 +31789,0,15000,0 +31792,39,0,30000 +31819,32,0,0 +31842,0,180000,0 +31843,32,0,30000 +31863,1158,0,30000 +31865,36,0,6000 +31884,0,180000,0 +31909,49,0,0 +31911,22,0,6000 +31920,99,0,1000 +31933,411,0,0 +31935,1158,0,30000 +31946,0,0,7000 +31970,1152,0,13000 +31971,85,0,0 +31984,1152,0,0 +31994,44,0,0 +31996,65,0,20000 +31999,88,0,0 +32001,1167,0,0 +32012,44,0,0 +32014,1152,0,6000 +32015,0,5000,0 +32016,49,0,0 +32017,36,0,0 +32021,44,0,0 +32022,52,0,0 +32023,0,0,20000 +32026,1165,0,15000 +32053,95,0,4000 +32054,95,0,4000 +32056,32,0,0 +32057,95,0,4000 +32062,35,0,15000 +32064,43,0,0 +32065,18,0,0 +32082,44,0,0 +32087,571,0,0 +32093,18,0,0 +32112,11,0,60000 +32129,0,0,30000 +32132,85,0,0 +32133,19,0,0 +32134,571,0,0 +32139,18,0,0 +32140,0,0,1000 +32154,65,0,5000 +32173,99,0,0 +32182,0,600000,0 +32193,35,0,0 +32194,23,0,0 +32199,38,0,120000 +32202,73,0,0 +32219,0,0,1000 +32254,1,0,60000 +32265,1152,0,3000 +32266,0,60000,0 +32267,0,60000,0 +32278,0,0,1000 +32279,0,0,1000 +32280,0,0,1000 +32323,44,0,0 +32327,51,0,0 +32328,51,0,0 +32329,18,0,0 +32330,18,0,0 +32356,39,0,0 +32357,39,0,0 +32361,1152,0,6000 +32379,1169,0,12000 +32406,0,5000,0 +32416,32,0,0 +32419,411,0,15000 +32422,2,0,0 +32445,1152,0,2000 +32453,25,0,0 +32491,1152,0,1000 +32504,56,0,4000 +32548,0,300000,0 +32593,1195,0,0 +32594,1195,0,0 +32615,38,0,0 +32651,99,0,0 +32654,32,0,0 +32676,0,120000,0 +32690,85,0,6000 +32691,88,0,0 +32699,1158,0,30000 +32700,1158,0,30000 +32717,571,0,0 +32731,65,0,0 +32732,65,0,0 +32733,36,0,0 +32738,36,0,45000 +32739,18,0,0 +32741,1165,0,15000 +32742,1165,0,15000 +32749,21,0,15000 +32751,21,0,15000 +32765,310,0,72000000 +32766,310,0,72000000 +32771,892,0,0 +32772,1131,0,0 +32773,932,0,0 +32774,1158,0,0 +32777,931,0,0 +32784,0,0,7000 +32786,24,0,0 +32796,56,0,30000 +32802,1,0,60000 +32803,1,0,60000 +32804,1,0,60000 +32805,1,0,60000 +32806,1,0,60000 +32830,93,0,0 +32861,0,10000,0 +32866,1154,0,0 +32867,1154,0,0 +32868,1154,0,0 +32869,1154,0,0 +32870,1154,0,0 +32871,1154,0,0 +32872,1154,0,0 +32873,1154,0,0 +32874,1154,0,0 +32886,55,0,0 +32888,19,0,5000 +32898,65,0,0 +32902,18,30000,0 +32905,36,0,45000 +32917,55,0,3000 +32918,55,0,30000 +32920,1162,0,0 +32921,51,0,10000 +32922,51,0,10000 +32924,0,30000,0 +32931,0,60000,0 +32937,44,0,0 +32943,1162,10000,0 +32967,19,0,0 +32971,18,0,30000 +32996,1169,0,12000 +33041,50,0,20000 +33042,50,0,20000 +33043,50,0,20000 +33054,0,30000,0 +33061,250,0,0 +33072,892,0,15000 +33076,1181,0,10000 +33086,1152,0,5000 +33091,1152,0,10000 +33096,0,20000,0 +33153,1177,0,300000 +33175,19,0,0 +33206,0,120000,0 +33230,1152,0,2000 +33238,1152,0,18000 +33253,11,0,60000 +33255,11,0,60000 +33258,11,0,60000 +33260,11,0,60000 +33262,11,0,60000 +33264,11,0,60000 +33266,11,0,60000 +33269,11,0,60000 +33357,44,0,300000 +33373,30,0,0 +33394,30,0,60000 +33395,35,25000,0 +33405,471,0,30000 +33422,32,0,0 +33482,99,20000,0 +33493,1152,0,0 +33500,49,0,0 +33534,19,0,0 +33537,0,20000,0 +33539,0,40000,0 +33540,0,60000,0 +33546,44,0,0 +33548,44,0,0 +33549,44,0,0 +33550,44,0,0 +33554,55,0,3000 +33559,932,0,0 +33581,37,0,0 +33618,0,10000,0 +33620,19,0,0 +33632,19,0,0 +33643,85,0,6000 +33653,21,0,0 +33654,1152,0,5000 +33657,1152,5000,0 +33661,36,0,0 +33689,1152,0,5000 +33691,0,60000,0 +33697,0,120000,0 +33698,36,0,5000 +33699,36,0,5000 +33700,36,0,5000 +33701,84,0,120000 +33702,0,120000,0 +33709,44,0,0 +33772,11,0,60000 +33773,0,0,60000 +33774,0,0,60000 +33781,65,0,0 +33787,22,0,0 +33789,22,0,8000 +33792,22,0,0 +33794,1152,0,1000 +33803,1152,0,0 +33804,1152,0,0 +33811,21,0,0 +33812,1152,0,0 +33828,0,0,1000 +33831,0,180000,0 +33836,1170,0,0 +33840,49,0,0 +33844,99,0,0 +33861,1138,5000,0 +33878,971,0,6000 +33898,21,0,0 +33909,21,0,0 +33916,35,0,0 +33919,1152,0,6000 +33923,1152,0,7000 +33933,250,0,30000 +33951,18,0,30000 +33964,65,0,10000 +33967,22,0,0 +33975,290,0,0 +33977,0,300000,0 +33980,1139,0,0 +33986,971,0,6000 +33987,971,0,6000 +34026,1171,0,5000 +34035,55,0,0 +34072,50,0,0 +34079,230,0,15000 +34080,47,0,0 +34086,55,60000,0 +34087,32,0,0 +34088,32,0,0 +34089,32,0,0 +34095,0,0,7000 +34096,24,0,0 +34097,0,6000,0 +34099,0,6000,0 +34100,49,0,60000 +34104,2,10000,0 +34105,82,0,0 +34108,270,0,0 +34112,55,0,0 +34113,41,0,0 +34121,1152,0,0 +34154,1138,4000,0 +34155,1138,0,0 +34159,21,0,0 +34161,21,0,0 +34165,44,0,0 +34173,1152,0,0 +34187,1152,0,0 +34189,38,0,120000 +34206,99,0,1000 +34215,85,0,0 +34243,32,0,0 +34250,55,0,0 +34350,21,0,0 +34352,19,0,6000 +34353,19,0,6000 +34354,19,0,6000 +34357,36,0,0 +34378,571,0,0 +34379,0,180000,0 +34409,21,0,0 +34427,0,10000,0 +34433,0,300000,0 +34444,0,0,10000 +34477,0,120000,0 +34490,0,20000,0 +34510,32,0,0 +34511,99,0,1000 +34513,99,0,1000 +34550,46,0,0 +34600,411,0,30000 +34605,44,0,0 +34616,18,0,120000 +34618,1152,0,10000 +34619,1152,0,10000 +34620,1152,0,10000 +34624,21,0,0 +34643,36,0,45000 +34653,1152,0,1000 +34670,21,0,0 +34694,1152,0,3000 +34697,36,0,0 +34700,36,0,0 +34716,1152,0,10000 +34728,1152,0,0 +34729,1152,0,0 +34741,1152,0,10000 +34770,32,0,0 +34778,1152,0,0 +34784,0,30000,0 +34787,1152,0,0 +34815,32,0,0 +34829,1173,0,6000 +34844,44,0,0 +34880,0,10000,0 +34881,0,10000,0 +34889,2,10000,0 +34932,21,0,0 +34969,0,3000,0 +34970,21,0,0 +34971,21,0,0 +34973,37,0,300000 +34980,23,0,0 +34998,21,0,0 +35004,36,0,0 +35005,36,0,0 +35011,0,5000,0 +35035,19,0,0 +35039,88,0,0 +35058,0,15000,0 +35062,44,0,0 +35105,52,0,0 +35107,34,0,0 +35108,19,0,0 +35158,0,40000,0 +35159,0,40000,0 +35161,52,0,0 +35200,39,0,30000 +35201,36,0,0 +35202,36,0,0 +35205,1152,0,4000 +35206,44,0,0 +35234,99,0,0 +35238,32,0,0 +35240,51,0,10000 +35244,18,0,0 +35247,99,0,0 +35267,290,0,0 +35270,11,0,60000 +35271,11,0,60000 +35280,99,0,0 +35289,21,0,0 +35311,1152,0,6000 +35313,36,0,45000 +35319,0,10000,0 +35322,1152,0,8000 +35323,2,10000,0 +35326,1152,0,9000 +35327,1152,0,8000 +35330,1152,0,8000 +35346,44,0,15000 +35347,38,0,0 +35353,49,0,0 +35373,250,0,0 +35382,44,0,0 +35385,44,0,0 +35387,18,0,10000 +35389,18,0,10000 +35392,18,0,10000 +35395,0,6000,0 +35401,1173,0,6000 +35412,44,0,0 +35470,35,0,600000 +35472,44,0,0 +35473,85,0,6000 +35491,21,0,0 +35492,32,0,0 +35570,44,0,0 +35571,0,30000,0 +35595,21,0,0 +35673,1140,0,0 +35717,0,60000,0 +35754,44,0,0 +35759,19,0,0 +35783,0,5000,0 +35843,49,0,0 +35853,1158,0,0 +35869,85,0,0 +35873,85,0,0 +35920,19,0,0 +35942,55,0,10000 +35949,65,0,10000 +35950,49,0,60000 +35953,85,0,6000 +36071,38,0,0 +36097,44,0,0 +36100,19,0,10000 +36104,49,0,0 +36107,1167,0,0 +36109,44,0,0 +36132,49,0,0 +36140,44,0,0 +36142,49,0,0 +36240,1152,0,5000 +36248,50,0,0 +36249,50,0,0 +36252,50,0,0 +36293,0,0,6000 +36297,1152,0,0 +36313,38,0,0 +36340,892,0,0 +36406,50,0,0 +36424,38,0,0 +36469,18,0,0 +36473,932,0,0 +36477,0,300000,0 +36487,50,0,0 +36489,50,0,0 +36509,44,0,0 +36518,51,0,10000 +36527,37,0,0 +36554,0,30000,0 +36570,1,0,0 +36574,44,0,0 +36582,19,0,0 +36589,44,0,0 +36606,44,0,0 +36609,1173,0,6000 +36617,18,0,3000 +36619,18,0,0 +36623,1173,0,6000 +36627,18,0,0 +36631,50,0,0 +36640,0,10000,0 +36659,18,0,0 +36664,85,0,6000 +36686,0,331200000,0 +36695,18,0,0 +36706,22,0,0 +36708,0,5000,0 +36713,18,0,0 +36718,1162,0,0 +36719,35,0,30000 +36722,35,0,600000 +36736,0,3000,0 +36742,0,3000,0 +36746,0,0,60000 +36749,0,0,60000 +36787,85,0,6000 +36820,50,0,0 +36827,34,0,0 +36828,55,0,0 +36835,32,0,0 +36836,36,0,0 +36841,0,5000,0 +36842,19,0,0 +36843,51,0,0 +36863,1152,0,4000 +36864,1152,0,0 +36866,99,0,0 +36872,18,0,30000 +36877,32,0,0 +36883,87,0,0 +36884,0,0,6000 +36887,1152,0,4000 +36891,1152,0,4000 +36908,1162,0,0 +36911,37,0,0 +36916,65,0,5000 +36920,1152,0,1000 +36921,1152,0,3000 +36922,1152,0,8000 +36944,35,0,0 +36946,932,0,0 +36947,451,0,0 +36953,0,0,6000 +36970,1152,0,0 +36981,49,0,0 +36992,21,0,0 +36994,44,0,0 +37012,85,0,0 +37023,21,0,0 +37057,63,0,0 +37067,55,0,0 +37071,0,0,6000 +37091,63,0,0 +37110,19,0,0 +37120,0,1500,0 +37122,99,0,0 +37135,99,0,0 +37138,1152,0,0 +37144,1163,1000,0 +37146,1163,1000,0 +37148,1163,1000,0 +37151,1163,1000,0 +37152,1163,1000,0 +37153,1163,1000,0 +37156,44,0,0 +37226,0,0,6000 +37229,0,0,6000 +37251,1131,0,0 +37255,1131,0,0 +37259,1131,0,0 +37272,18,0,0 +37277,0,10000,0 +37321,65,0,5000 +37359,44,0,0 +37368,411,0,15000 +37369,32,0,0 +37406,1152,0,5000 +37413,1152,0,5000 +37414,1152,0,5000 +37416,1152,0,5000 +37427,1152,0,5000 +37428,1152,0,5000 +37432,1152,0,5000 +37434,1152,0,5000 +37445,1141,0,15000 +37453,1152,0,5000 +37454,1152,0,5000 +37455,1152,20000,5000 +37456,1152,20000,5000 +37459,1152,0,5000 +37461,1152,0,5000 +37462,1152,0,5000 +37463,1152,0,5000 +37465,1152,15000,5000 +37469,1152,15000,5000 +37470,88,0,0 +37471,1152,15000,5000 +37472,1152,15000,5000 +37474,1152,0,5000 +37476,1152,0,5000 +37478,1152,0,3000 +37486,82,0,10000 +37488,50,0,0 +37498,1152,0,5000 +37502,1152,0,5000 +37511,44,0,0 +37531,19,0,0 +37538,37,0,0 +37548,82,0,10000 +37551,1175,0,15000 +37553,932,0,0 +37582,49,0,0 +37587,0,120000,0 +37591,51,0,0 +37592,0,5000,0 +37599,55,0,0 +37634,50,0,0 +37638,50,0,0 +37648,0,0,40000 +37660,1152,0,3000 +37665,35,0,0 +37672,50,0,0 +37673,39,0,10000 +37676,39,0,0 +37683,66,0,0 +37704,49,0,0 +37729,0,0,1000 +37730,1152,0,4000 +37734,50,0,0 +37764,1152,0,1000 +37775,0,0,5000 +37776,36,0,0 +37777,44,0,0 +37786,21,0,0 +37788,18,0,30000 +37821,1162,0,0 +37823,99,0,0 +37824,0,0,5000 +37830,0,20000,0 +37839,18,0,0 +37840,35,0,0 +37842,0,0,6000 +37848,0,0,6000 +37862,18,0,0 +37871,98,0,0 +37875,38,0,0 +37937,36,0,0 +37941,21,0,0 +37965,18,0,0 +37966,51,0,0 +37975,21,0,0 +37982,32,0,0 +37985,2,0,0 +37988,19,0,0 +37991,32,0,0 +38021,99,0,0 +38026,37,0,0 +38028,1152,0,10000 +38030,18,0,0 +38035,98,0,0 +38046,0,0,40000 +38058,2,0,0 +38059,44,0,0 +38064,250,0,0 +38109,2,0,0 +38113,2,0,0 +38133,2,0,0 +38135,19,0,0 +38136,19,0,0 +38146,85,0,6000 +38167,36,0,0 +38169,65,0,0 +38184,65,0,0 +38187,36,0,0 +38193,2,0,0 +38194,44,0,0 +38203,44,0,0 +38208,18,0,30000 +38229,65,0,0 +38232,43,0,0 +38253,18,0,0 +38259,19,0,0 +38269,0,6000,0 +38309,2,0,0 +38312,0,4000,0 +38338,34,0,0 +38354,50,0,0 +38356,50,0,0 +38361,50,0,0 +38367,50,0,0 +38369,50,0,0 +38370,2,0,6000 +38379,0,10000,0 +38380,19,0,5000 +38385,932,0,0 +38459,18,0,0 +38461,44,0,0 +38467,50,0,0 +38468,50,0,0 +38509,19,0,0 +38523,50,0,0 +38524,50,0,0 +38526,19,0,0 +38541,66,0,0 +38543,99,0,1000 +38585,451,0,0 +38605,0,0,30000 +38607,1152,0,0 +38611,1152,0,0 +38618,49,0,0 +38626,99,0,0 +38630,44,0,0 +38642,44,0,0 +38643,44,0,0 +38655,1152,0,0 +38659,46,0,0 +38661,34,0,0 +38663,51,0,0 +38664,1152,0,8000 +38682,32,0,0 +38712,250,0,0 +38761,85,0,0 +38764,33,0,10000 +38768,88,0,10000 +38794,1152,0,4000 +38796,1152,0,7000 +38797,1152,0,0 +38810,18,0,3000 +38811,18,0,0 +38827,18,0,0 +38830,35,0,30000 +38831,35,0,600000 +38836,0,3000,0 +38840,0,3000,0 +38846,85,0,6000 +38849,1152,0,4000 +38850,1152,0,4000 +38851,1152,0,4000 +38852,1152,0,0 +38861,2,0,6000 +38897,0,5000,0 +38905,0,15000,0 +38908,4,0,10000 +38911,32,0,0 +38912,34,0,0 +38920,0,15000,0 +38921,892,0,0 +38929,4,0,60000 +38930,290,0,0 +38932,44,0,0 +38947,21,0,0 +38959,41,0,30000 +38981,44,0,0 +39001,250,0,0 +39002,0,10000,0 +39006,19,0,0 +39038,250,0,0 +39066,85,0,6000 +39067,0,10000,0 +39070,65,0,10000 +39076,88,0,0 +39077,32,0,0 +39082,250,0,0 +39144,1152,0,2000 +39174,85,0,6000 +39188,1152,0,8000 +39193,1152,0,8000 +39194,1152,0,8000 +39195,1152,0,8000 +39197,44,0,0 +39204,18,0,0 +39214,36,0,0 +39221,1152,0,15000 +39222,1152,0,15000 +39228,0,0,1000 +39229,32,0,0 +39249,21,0,0 +39263,50,0,0 +39270,82,0,0 +39271,18,30000,0 +39274,49,0,0 +39313,32,0,0 +39314,1152,10000,3000 +39330,1180,0,1200000 +39377,82,0,0 +39385,50,0,0 +39387,44,0,0 +39419,18,0,0 +39425,49,0,0 +39427,1152,0,8000 +39435,44,0,0 +39449,85,0,0 +39529,19,0,0 +39574,44,0,0 +39580,35,0,0 +39583,1163,5000,0 +39587,19,0,6000 +39590,19,0,0 +39645,1152,0,15000 +39658,18,0,30000 +39685,1138,10000,0 +39692,1138,4000,0 +39693,1138,2000,0 +39694,1138,10000,5000 +39695,1138,5000,0 +39836,50,10000,0 +39837,1152,0,0 +39842,1152,15000,5000 +39872,50,0,0 +39878,1152,0,8000 +39902,411,0,30000 +39937,89,0,3600000 +39945,85,0,6000 +39961,1154,0,0 +39963,1154,0,0 +39965,35,0,0 +39979,0,0,6000 +39980,59,0,10000 +39992,1152,0,0 +40019,1155,0,0 +40057,0,0,6000 +40066,85,0,0 +40067,85,0,0 +40071,0,0,6000 +40072,85,0,0 +40076,85,0,0 +40078,18,0,0 +40079,18,0,0 +40082,34,0,0 +40090,571,0,0 +40102,18,0,0 +40103,18,0,0 +40126,1152,0,8000 +40136,0,0,40000 +40146,0,0,6000 +40157,2,0,0 +40175,2,15000,0 +40184,1152,0,10000 +40199,1152,0,0 +40219,49,25000,0 +40220,0,3000,0 +40221,0,15000,0 +40222,133,25000,0 +40254,0,0,6000 +40259,65,0,10000 +40262,32,0,0 +40276,1152,0,3000 +40279,44,0,0 +40303,1152,0,0 +40314,2,15000,0 +40321,1152,0,5000 +40322,21,90000,0 +40325,22,0,0 +40340,49,0,0 +40380,36,0,0 +40392,65,0,0 +40399,1152,0,10000 +40408,30,0,60000 +40411,1175,0,0 +40412,36,0,0 +40415,82,0,0 +40417,21,0,0 +40420,2,0,0 +40423,65,0,10000 +40432,1162,0,0 +40444,931,0,0 +40457,1152,0,0 +40474,23,30000,5000 +40476,0,25000,0 +40486,1152,0,2000 +40488,49,0,0 +40491,1152,0,2000 +40492,49,0,0 +40493,0,15000,0 +40497,0,15000,0 +40501,1152,0,60000 +40507,0,0,6000 +40508,1152,0,2000 +40535,25,0,0 +40536,85,0,0 +40543,11,0,60000 +40546,132,0,0 +40560,0,3000,0 +40561,50,15000,0 +40562,50,0,0 +40563,0,8000,0 +40565,0,30000,0 +40567,1184,0,0 +40568,1184,0,0 +40572,1184,0,0 +40573,1184,0,0 +40575,1184,0,0 +40576,1184,0,0 +40595,1152,0,2000 +40597,1152,0,2000 +40599,1152,0,0 +40605,0,0,6000 +40608,0,0,6000 +40621,99,0,1000 +40622,0,15000,0 +40623,1184,0,0 +40625,1184,0,0 +40626,1184,0,0 +40646,0,0,6000 +40651,59,0,10000 +40653,1152,0,18000 +40658,1152,0,0 +40659,1152,300000,0 +40660,1152,0,0 +40662,1152,0,60000 +40676,1152,0,0 +40677,1152,0,15000 +40727,0,12000,0 +40733,37,0,0 +40737,0,8000,0 +40741,1159,15000,0 +40743,21,0,0 +40745,11,0,60000 +40768,11,0,60000 +40772,65,0,10000 +40803,0,5000,0 +40811,1,0,0 +40815,1,0,0 +40832,1152,0,2000 +40834,1152,0,2000 +40846,1152,0,6000 +40875,35,0,0 +40893,82,0,0 +40904,1152,0,2000 +40936,32,0,0 +40938,50,0,0 +40939,50,0,0 +40949,1162,0,0 +41030,11,0,60000 +41032,1152,0,2000 +41056,49,0,0 +41058,49,0,0 +41071,1152,0,10000 +41073,1152,0,0 +41085,411,0,0 +41097,1152,0,18000 +41099,47,0,0 +41100,47,0,0 +41101,47,0,0 +41102,47,0,30000 +41115,19,0,0 +41150,1152,0,9000 +41173,0,8000,0 +41183,85,0,6000 +41194,49,0,0 +41198,1152,30000,10000 +41213,1152,5000,8000 +41237,30,0,0 +41272,1152,0,8000 +41274,1152,0,8000 +41276,1152,0,3000 +41277,1152,0,3000 +41281,22,0,0 +41302,0,0,6000 +41304,4,0,60000 +41306,4,0,10000 +41332,0,0,6000 +41335,0,0,6000 +41336,0,0,6000 +41339,0,0,6000 +41353,1152,0,0 +41365,0,0,6000 +41367,37,0,0 +41374,19,0,0 +41375,19,0,0 +41426,1152,0,0 +41431,1152,0,1000 +41437,50,0,0 +41438,50,0,0 +41444,50,0,0 +41445,50,0,0 +41447,21,0,0 +41450,63,0,15000 +41451,63,0,15000 +41452,38,60000,30000 +41453,38,60000,30000 +41459,1159,0,15000 +41468,32,0,0 +41469,1159,0,15000 +41476,1152,55000,0 +41481,1152,0,3000 +41482,1152,0,3000 +41483,1152,0,0 +41524,1152,1500,3000 +41534,32,0,0 +41541,932,0,0 +41580,34,0,0 +41581,44,0,0 +41589,0,8000,0 +41590,37,30000,0 +41592,32,0,0 +41593,1152,30000,10000 +41594,1152,30000,10000 +41595,1152,30000,10000 +41596,0,10000,0 +41597,0,30000,0 +41604,99,0,1000 +41608,1185,0,0 +41609,1185,0,0 +41610,1185,0,0 +41611,1185,0,0 +41617,4,0,60000 +41618,4,0,60000 +41619,4,0,10000 +41620,4,0,10000 +41911,0,0,6000 +41916,0,0,6000 +41918,0,0,6000 +41924,21,0,0 +41940,36,0,0 +41943,0,0,60000 +41944,0,0,60000 +41945,0,0,60000 +41946,0,0,60000 +41947,0,0,60000 +41964,1159,0,10000 +41980,19,0,0 +42013,1,0,0 +42035,0,45000,0 +42073,0,30000,0 +42133,1159,0,10000 +42159,411,0,30000 +42160,411,0,30000 +42247,43,0,0 +42255,59,0,0 +42256,59,0,0 +42257,59,0,0 +42258,59,0,0 +42259,59,0,0 +42260,59,0,0 +42261,59,0,0 +42262,59,0,0 +42263,59,0,0 +42264,59,0,0 +42269,0,10000,0 +42271,0,10000,0 +42272,0,10000,0 +42275,99,0,1000 +42308,11,0,60000 +42309,11,0,1500 +42313,133,0,1000 +42317,133,0,0 +42318,133,0,0 +42324,0,10000,0 +42333,133,5000,0 +42347,38,0,120000 +42376,23,10000,0 +42384,1152,0,0 +42389,1152,0,1000 +42391,133,5000,0 +42397,1159,0,3000 +42398,1159,0,0 +42402,1152,0,3000 +42433,2,0,0 +42441,85,0,6000 +42478,23,10000,0 +42500,0,0,40000 +42523,59,0,0 +42570,133,5000,0 +42574,1152,0,0 +42583,1158,0,9000 +42654,133,5000,0 +42667,0,0,3000 +42692,0,0,3000 +42747,36,0,0 +42760,11,0,60000 +42804,0,0,6000 +42805,1187,0,20000 +42866,38,0,0 +42919,11,0,0 +42932,38,0,0 +42943,38,0,0 +42965,11,0,0 +43098,1152,0,15000 +43128,65,0,10000 +43130,18,0,0 +43131,18,0,0 +43132,18,0,0 +43133,18,0,120000 +43140,1152,0,0 +43152,1158,0,9000 +43154,59,0,60000 +43155,0,0,60000 +43215,50,0,0 +43216,35,0,0 +43245,19,0,0 +43265,18,0,30000 +43294,50,0,0 +43301,85,0,0 +43303,1152,0,3000 +43305,1152,0,3000 +43317,44,0,0 +43357,36,0,0 +43358,133,0,0 +43361,99,0,0 +43362,34,0,0 +43363,19,0,0 +43436,1152,0,0 +43442,49,0,0 +43444,411,0,0 +43447,411,0,0 +43449,411,0,30000 +43456,0,0,5000 +43519,44,0,0 +43521,87,0,0 +43547,99,0,0 +43578,55,0,0 +43579,18,0,0 +43581,18,0,0 +43582,50,0,0 +43592,1152,0,2000 +43620,1152,0,4000 +43621,1152,0,5000 +43648,0,0,5000 +43673,1152,0,2000 +43706,59,0,60000 +43763,11,0,60000 +43777,11,0,0 +43864,59,0,0 +43942,0,10000,0 +43943,0,10000,0 +43949,0,30000,0 +43957,59,0,0 +43959,59,0,0 +43960,59,0,0 +43961,59,0,0 +43987,1177,0,300000 +43995,1,0,60000 +44035,1162,0,300000 +44041,1188,0,30000 +44043,1188,0,30000 +44044,1188,0,30000 +44045,1188,0,30000 +44046,1188,0,30000 +44047,1188,0,30000 +44054,1152,0,5000 +44107,59,0,0 +44109,59,0,0 +44110,59,0,0 +44111,59,0,0 +44112,59,0,0 +44113,59,0,0 +44114,59,0,0 +44115,59,0,0 +44116,59,0,0 +44136,411,0,15000 +44137,0,0,60000 +44144,35,0,0 +44175,56,0,15000 +44257,35,0,15000 +44268,971,0,6000 +44271,2,0,6000 +44290,39,0,300000 +44291,56,0,15000 +44417,35,0,0 +44467,99,0,1000 +44480,1152,0,5000 +44482,1152,0,0 +44540,59,0,0 +44583,1181,0,10000 +44587,0,0,1500 +44640,73,0,0 +44779,21,0,0 +44794,1154,0,0 +44799,50,0,0 +44806,21,0,0 +44869,1152,0,2000 +44949,891,0,10000 +45019,59,0,0 +45020,59,0,0 +45029,65,0,5000 +45043,0,0,8000 +45052,0,300000,0 +45065,50,0,0 +45095,1152,0,5000 +45122,1152,0,0 +45127,0,1000,0 +45150,1152,0,2000 +45185,1152,0,2000 +45214,88,0,24000 +45270,250,0,0 +45297,85,0,6000 +45298,85,0,6000 +45299,85,0,6000 +45300,85,0,6000 +45301,85,0,6000 +45302,85,0,6000 +45337,1152,0,0 +45356,88,0,10000 +45373,1194,0,0 +45438,37,0,300000 +45641,1159,0,0 +45657,1159,0,6000 +45661,1152,0,5000 +45664,1159,0,2000 +45737,1159,0,3000 +45848,22,20000,0 +45855,1152,0,5000 +45856,22,10000,0 +45860,22,10000,0 +45862,22,0,0 +45895,49,0,0 +45897,1152,0,5000 +45927,0,3600000,0 +46026,0,120000,0 +46030,1152,0,5000 +46033,1152,0,0 +46045,1181,0,10000 +46183,0,5000,0 +46187,0,0,60000 +46193,56,0,15000 +46202,36,0,45000 +46214,133,0,0 +46276,82,0,10000 +46283,65,0,5000 +46288,36,0,0 +46294,18,0,0 +46460,2,0,6000 +46483,36,0,0 +46484,36,0,0 +46544,133,0,0 +46557,2,0,0 +46559,85,0,6000 +46562,85,0,0 +46571,44,0,0 +46573,44,0,0 +46581,11,0,0 +46583,59,0,0 +46587,21,0,0 +46597,1154,0,0 +46601,1154,0,0 +46661,1197,0,0 +46683,11,0,60000 +46713,1198,0,82800000 +46714,310,0,82800000 +46715,1200,0,82800000 +46763,43,0,0 +46812,11,0,60000 +46837,1185,0,0 +46838,99,0,1000 +46839,1185,0,0 +46840,99,0,1000 +46873,1155,0,0 +46876,59,0,0 +46898,11,0,60000 +46927,59,0,0 +47008,21,0,0 +47071,19,0,0 +47250,50,0,0 +47251,50,0,0 +47280,0,72000000,0 +47371,59,0,0 +48403,0,5000,0 +49297,0,6000,0 +49360,0,60000,0 +49361,0,60000,0 +49494,59,0,10000 +50062,1,0,60000 +50369,59,0,10000 +50739,51,0,45000 +50762,34,0,0 +50874,44,0,0 +50876,44,0,0 +50986,59,0,10000 +51661,1197,0,0 +51694,1197,0,0 +51695,1197,0,0 diff --git a/HermesProxy/GlobalSessionData.cs b/HermesProxy/GlobalSessionData.cs index 91025d9a..bb01b1c4 100644 --- a/HermesProxy/GlobalSessionData.cs +++ b/HermesProxy/GlobalSessionData.cs @@ -128,6 +128,8 @@ public class GameSessionData public Dictionary> PctSpellMods = new Dictionary>(); public Dictionary> LastAuraCasterOnTarget = new Dictionary>(); public TradeSession? CurrentTrade = null; + public HashSet RequestedItemHotfixes = new HashSet(); + public HashSet RequestedItemSparseHotfixes = new HashSet(); private GameSessionData() { diff --git a/HermesProxy/HermesProxy.csproj b/HermesProxy/HermesProxy.csproj index 349f6a06..266d970c 100644 --- a/HermesProxy/HermesProxy.csproj +++ b/HermesProxy/HermesProxy.csproj @@ -47,6 +47,7 @@ + diff --git a/HermesProxy/VersionChecker.cs b/HermesProxy/VersionChecker.cs index c90f7273..952189ec 100644 --- a/HermesProxy/VersionChecker.cs +++ b/HermesProxy/VersionChecker.cs @@ -1018,5 +1018,10 @@ public static byte ConvertResponseCodesValue(byte legacyValue) byte modernValue = (byte)Enum.Parse(GetResponseCodesEnum(), legacyName); return modernValue; } + + public static byte ConvertSocketColor(byte legacyValue) + { + return (byte)Enum.Parse(typeof(SocketColorModern), ((SocketColorLegacy)legacyValue).ToString()); + } } } diff --git a/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs b/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs index 297f9915..ff1468e7 100644 --- a/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs @@ -417,7 +417,7 @@ private bool HandleHermesInternalChatCommand(string msg) var questIdStr = msg.Remove(0, "!qcomplete".Length); if (!uint.TryParse(questIdStr, NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out var questId)) { - Log.Print(LogType.Error, $"Chatcommand Invalid questId '{questIdStr}'"); + GetSession().SendHermesTextMessage($"Chat command invalid questId format '{questIdStr}'"); return true; } GetSession().GameState.CurrentPlayerStorage.CompletedQuests.MarkQuestAsCompleted(questId); @@ -431,7 +431,7 @@ private bool HandleHermesInternalChatCommand(string msg) var questIdStr = msg.Remove(0, "!quncomplete".Length); if (!uint.TryParse(questIdStr, NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out var questId)) { - Log.Print(LogType.Error, $"Chatcommand Invalid questId '{questIdStr}'"); + GetSession().SendHermesTextMessage($"Chat command invalid questId format '{questIdStr}'"); return true; } GetSession().GameState.CurrentPlayerStorage.CompletedQuests.MarkQuestAsNotCompleted(questId); diff --git a/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs b/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs index 8a36b079..c11b0825 100644 --- a/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs @@ -144,9 +144,9 @@ void HandleQueryQuestInfoResponse(WorldPacket packet) choiceItem.ItemID = packet.ReadUInt32(); choiceItem.Quantity = packet.ReadUInt32(); - ItemDisplayData item = GameData.GetItemDisplayData(choiceItem.ItemID); - if (item != null) - choiceItem.DisplayID = item.DisplayId; + uint displayId = GameData.GetItemDisplayId(choiceItem.ItemID); + if (displayId != 0) + choiceItem.DisplayID = displayId; quest.UnfilteredChoiceItems[i] = choiceItem; } @@ -446,7 +446,7 @@ void HandleQueryNpcTextResponse(WorldPacket packet) const string placeholderGossip = "Greetings $N"; if (String.IsNullOrEmpty(maleText) && String.IsNullOrEmpty(femaleText) || - maleText == placeholderGossip && femaleText == placeholderGossip && i != 0) + maleText.Equals(placeholderGossip) && femaleText.Equals(placeholderGossip) && i != 0) response.BroadcastTextID[i] = 0; else response.BroadcastTextID[i] = GameData.GetBroadcastTextId(maleText, femaleText, language, emoteDelays, emotes); @@ -454,188 +454,85 @@ void HandleQueryNpcTextResponse(WorldPacket packet) SendPacketToClient(response); } + [PacketHandler(Opcode.SMSG_ITEM_QUERY_SINGLE_RESPONSE)] void HandleItemQueryResponse(WorldPacket packet) { var entry = packet.ReadEntry(); if (entry.Value) - return; - - ItemTemplate item = new ItemTemplate { - Entry = (uint)entry.Key, - Class = packet.ReadInt32(), - SubClass = packet.ReadUInt32() - }; - - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_3_6299)) - item.SoundOverrideSubclass = packet.ReadInt32(); - - for (int i = 0; i < 4; i++) - item.Name[i] = packet.ReadCString(); - - item.DisplayID = packet.ReadUInt32(); - - item.Quality = packet.ReadInt32(); - - item.Flags = packet.ReadUInt32(); - - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_2_0_10192)) - item.FlagsExtra = packet.ReadUInt32(); - - item.BuyPrice = packet.ReadUInt32(); - - item.SellPrice = packet.ReadUInt32(); - - item.InventoryType = packet.ReadInt32(); - - item.AllowedClasses = packet.ReadUInt32(); - - item.AllowedRaces = packet.ReadUInt32(); - - item.ItemLevel = packet.ReadUInt32(); - - item.RequiredLevel = packet.ReadUInt32(); - - item.RequiredSkillId = packet.ReadUInt32(); - - item.RequiredSkillLevel = packet.ReadUInt32(); - - item.RequiredSpell = packet.ReadUInt32(); - - item.RequiredHonorRank = packet.ReadUInt32(); - - item.RequiredCityRank = packet.ReadUInt32(); - - item.RequiredRepFaction = packet.ReadUInt32(); + if (GetSession().GameState.RequestedItemHotfixes.Contains((uint)entry.Key)) + { + DBReply reply = new(); + reply.RecordID = (uint)entry.Key; + reply.TableHash = DB2Hash.Item; + reply.Status = HotfixStatus.Invalid; + reply.Timestamp = (uint)Time.UnixTime; + SendPacketToClient(reply); + } + if (GetSession().GameState.RequestedItemSparseHotfixes.Contains((uint)entry.Key)) + { + DBReply reply2 = new(); + reply2.RecordID = (uint)entry.Key; + reply2.TableHash = DB2Hash.ItemSparse; + reply2.Status = HotfixStatus.Invalid; + reply2.Timestamp = (uint)Time.UnixTime; + SendPacketToClient(reply2); + } + return; + } - item.RequiredRepValue = packet.ReadUInt32(); + ItemTemplate item = new ItemTemplate(); + item.ReadFromLegacyPacket((uint)entry.Key, packet); - item.MaxCount = packet.ReadInt32(); + SendItemUpdatesIfNeeded(item); + GameData.StoreItemTemplate((uint)entry.Key, item); + } - item.MaxStackSize = packet.ReadInt32(); + void SendItemUpdatesIfNeeded(ItemTemplate item) + { + Server.Packets.HotFixMessage? reply; - item.ContainerSlots = packet.ReadUInt32(); + reply = GameData.GenerateItemUpdateIfNeeded(item); + if (reply != null) + SendPacketToClient(reply); - item.StatsCount = LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056) ? packet.ReadUInt32() : 10; - if (item.StatsCount > 10) - { - item.StatTypes = new int[item.StatsCount]; - item.StatValues = new int[item.StatsCount]; - } - for (int i = 0; i < item.StatsCount; i++) + reply = GameData.GenerateItemSparseUpdateIfNeeded(item); + if (reply != null) { - item.StatTypes[i] = packet.ReadInt32(); - item.StatValues[i] = packet.ReadInt32(); - } + // TODO!!! Something might be wrong here. + // TODO: When I send the ItemSpare entry with HotFixMessage it does not work - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) - { - item.ScalingStatDistribution = packet.ReadInt32(); - item.ScalingStatValue = packet.ReadUInt32(); - } + SendPacketToClient(reply); // TODO: <-- Optional?? - int dmgCount = LegacyVersion.AddedInVersion(ClientVersionBuild.V3_1_0_9767) ? 2 : 5; - for (int i = 0; i < dmgCount; i++) - { - item.DamageMins[i] = packet.ReadFloat(); - item.DamageMaxs[i] = packet.ReadFloat(); - item.DamageTypes[i] = packet.ReadInt32(); + Server.Packets.DBReply replyA = new(); + replyA.Status = HotfixStatus.Valid; + replyA.Timestamp = (uint)Time.UnixTime; + replyA.RecordID = reply.Hotfixes[0].RecordId; + replyA.TableHash = reply.Hotfixes[0].TableHash; + replyA.Data = reply.Hotfixes[0].HotfixContent; + SendPacketToClient(replyA); } - item.Armor = packet.ReadUInt32(); - item.HolyResistance = packet.ReadUInt32(); - item.FireResistance = packet.ReadUInt32(); - item.NatureResistance = packet.ReadUInt32(); - item.FrostResistance = packet.ReadUInt32(); - item.ShadowResistance = packet.ReadUInt32(); - item.ArcaneResistance = packet.ReadUInt32(); - - item.Delay = packet.ReadUInt32(); - - item.AmmoType = packet.ReadInt32(); - - item.RangedMod = packet.ReadFloat(); - for (byte i = 0; i < 5; i++) { - item.TriggeredSpellIds[i] = packet.ReadInt32(); - item.TriggeredSpellTypes[i] = packet.ReadInt32(); - item.TriggeredSpellCharges[i] = packet.ReadInt32(); - item.TriggeredSpellCooldowns[i] = packet.ReadInt32(); - item.TriggeredSpellCategories[i] = packet.ReadUInt32(); - item.TriggeredSpellCategoryCooldowns[i] = packet.ReadInt32(); - - if (item.TriggeredSpellIds[i] != 0) - GameData.SaveItemEffectSlot(item.Entry, (uint)item.TriggeredSpellIds[i], i); - } - - item.Bonding = packet.ReadInt32(); - - item.Description = packet.ReadCString(); - - item.PageText = packet.ReadUInt32(); - - item.Language = packet.ReadInt32(); - - item.PageMaterial = packet.ReadInt32(); - - item.StartQuestId = packet.ReadUInt32(); - - item.LockId = packet.ReadUInt32(); - - item.Material = packet.ReadInt32(); - - item.SheathType = packet.ReadInt32(); - - item.RandomProperty = packet.ReadInt32(); - - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180)) - item.RandomSuffix = packet.ReadUInt32(); - - item.Block = packet.ReadUInt32(); - - item.ItemSet = packet.ReadUInt32(); - - item.MaxDurability = packet.ReadUInt32(); - - item.AreaID = packet.ReadUInt32(); - - // In this single (?) case, map 0 means no map - item.MapID = packet.ReadInt32(); - - item.BagFamily = packet.ReadUInt32(); - - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180)) - { - item.TotemCategory = packet.ReadInt32(); - - for (int i = 0; i < 3; i++) - { - item.ItemSocketColors[i] = packet.ReadInt32(); - item.SocketContent[i] = packet.ReadUInt32(); - } - - item.SocketBonus = packet.ReadInt32(); - - item.GemProperties = packet.ReadInt32(); - - item.RequiredDisenchantSkill = packet.ReadInt32(); - - item.ArmorDamageModifier = packet.ReadFloat(); + reply = GameData.GenerateItemEffectUpdateIfNeeded(item, i); + if (reply != null) + SendPacketToClient(reply); } - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_4_2_8209)) - item.Duration = packet.ReadUInt32(); - - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) - item.ItemLimitCategory = packet.ReadInt32(); + if (!GameData.ItemCanHaveModel(item)) + return; - if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_1_0_9767)) - item.HolidayID = packet.ReadInt32(); + reply = GameData.GenerateItemAppearanceUpdateIfNeeded(item); + if (reply != null) + SendPacketToClient(reply); - GameData.StoreItemTemplate((uint)entry.Key, item); + reply = GameData.GenerateItemModifiedAppearanceUpdateIfNeeded(item); + if (reply != null) + SendPacketToClient(reply); } + [PacketHandler(Opcode.SMSG_QUERY_PET_NAME_RESPONSE)] void HandleQueryPetNameResponse(WorldPacket packet) { diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index bbae984e..7d8ab861 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -798,11 +798,13 @@ void HandleCooldownEvent(WorldPacket packet) [PacketHandler(Opcode.SMSG_CLEAR_COOLDOWN)] void HandleClearCooldown(WorldPacket packet) { + ClearCooldown cooldown = new(); cooldown.SpellID = packet.ReadUInt32(); WowGuid guid = packet.ReadGuid(); cooldown.IsPet = guid.GetHighType() == HighGuidType.Pet; SendPacketToClient(cooldown); + Log.Print(LogType.Warn, $"clear cd {cooldown.SpellID}"); } [PacketHandler(Opcode.SMSG_COOLDOWN_CHEAT)] diff --git a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs index 398e3821..65dfd766 100644 --- a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs @@ -120,13 +120,8 @@ void HandleUpdateObject(WorldPacket packet) ReadCreateObjectBlock(packet, guid, updateData, auraUpdate, i); if (updateData.Guid == GetSession().GameState.CurrentPlayerGuid) - { - if (GetSession().GameState.CurrentPlayerStorage.CompletedQuests.NeedsToBeForceSent) - { - GetSession().GameState.CurrentPlayerStorage.CompletedQuests.WriteAllCompletedIntoArray(updateData.ActivePlayerData.QuestCompleted); - GetSession().GameState.CurrentPlayerStorage.CompletedQuests.NeedsToBeForceSent = false; - } - } + GetSession().GameState.CurrentPlayerStorage.CompletedQuests.WriteAllCompletedIntoArray(updateData.ActivePlayerData.QuestCompleted); + if (guid.IsItem() && updateData.ObjectData.EntryID != null && !GameData.ItemTemplates.ContainsKey((uint)updateData.ObjectData.EntryID)) diff --git a/HermesProxy/World/Client/WorldClient.cs b/HermesProxy/World/Client/WorldClient.cs index 8244d0f1..92d2e4a7 100644 --- a/HermesProxy/World/Client/WorldClient.cs +++ b/HermesProxy/World/Client/WorldClient.cs @@ -504,6 +504,8 @@ public void SendPing(uint ping, uint latency) Log.Print(LogType.Warn, $"Ping value{ping} {latency} {pingValue} "); packet.WriteUInt32(pingValue); packet.WriteUInt32(pingValue); + // packet.WriteUInt32(ping); + // packet.WriteUInt32(latency); SendPacket(packet); } diff --git a/HermesProxy/World/Enums/QuestDefines.cs b/HermesProxy/World/Enums/QuestDefines.cs index 99a4b55e..d3d5d0da 100644 --- a/HermesProxy/World/Enums/QuestDefines.cs +++ b/HermesProxy/World/Enums/QuestDefines.cs @@ -29,8 +29,8 @@ public enum QuestGiverStatusVanilla : uint Incomplete = 3, RewardRep = 4, Available = 5, - Reward = 6, - Reward2 = 7, + Reward2 = 6, + Reward = 7, } public enum QuestGiverStatusTBC : uint diff --git a/HermesProxy/World/Enums/SocketColor.cs b/HermesProxy/World/Enums/SocketColor.cs new file mode 100644 index 00000000..9f7b379d --- /dev/null +++ b/HermesProxy/World/Enums/SocketColor.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HermesProxy.World.Enums +{ + public enum SocketColorLegacy : byte + { + None = 0, + Meta = 1, + Red = 2, + Yellow = 4, + Blue = 8 + } + + public enum SocketColorModern : byte + { + None = 0, + Meta = 1, + Red = 2, + Yellow = 3, + Blue = 4, + } +} diff --git a/HermesProxy/World/GameData.cs b/HermesProxy/World/GameData.cs index e4ab7238..53c67de2 100644 --- a/HermesProxy/World/GameData.cs +++ b/HermesProxy/World/GameData.cs @@ -5,6 +5,7 @@ using System.Text; using System.Threading.Tasks; using Framework; +using Framework.IO; using Framework.Logging; using HermesProxy.World.Enums; using HermesProxy.World.Objects; @@ -12,11 +13,19 @@ namespace HermesProxy.World { - public static class GameData + public static partial class GameData { // From CSV + public static Dictionary> BuildAuthSeeds = new Dictionary>(); public static SortedDictionary BroadcastTextStore = new SortedDictionary(); - public static Dictionary ItemDisplayDataStore = new Dictionary(); + public static Dictionary ItemDisplayIdStore = new Dictionary(); + public static Dictionary ItemDisplayIdToFileDataIdStore = new Dictionary(); + public static Dictionary ItemSpellsDataStore = new Dictionary(); + public static Dictionary ItemRecordsStore = new Dictionary(); + public static Dictionary ItemSparseRecordsStore = new Dictionary(); + public static Dictionary ItemAppearanceStore = new Dictionary(); + public static Dictionary ItemModifiedAppearanceStore = new Dictionary(); + public static Dictionary ItemEffectStore = new Dictionary(); public static Dictionary Battlegrounds = new Dictionary(); public static Dictionary ChatChannels = new Dictionary(); public static Dictionary> ItemEffects = new Dictionary>(); @@ -145,24 +154,109 @@ public static CreatureTemplate GetCreatureTemplate(uint entry) return null; } - public static ItemDisplayData GetItemDisplayData(uint entry) + public static uint GetItemDisplayId(uint entry) { - ItemDisplayData data; - if (ItemDisplayDataStore.TryGetValue(entry, out data)) - return data; - return null; + uint displayId; + if (ItemDisplayIdStore.TryGetValue(entry, out displayId)) + return displayId; + return 0; } public static uint GetItemIdWithDisplayId(uint displayId) { - foreach (var item in ItemDisplayDataStore) + foreach (var item in ItemDisplayIdStore) { - if (item.Value.DisplayId == displayId) + if (item.Value == displayId) return item.Key; } return 0; } + public static ItemAppearance GetItemAppearanceByDisplayId(uint displayId) + { + foreach (var item in ItemAppearanceStore) + { + if (item.Value.ItemDisplayInfoID == (int)displayId) + return item.Value; + } + return null; + } + + public static ItemAppearance GetItemAppearanceByItemId(uint itemId) + { + ItemModifiedAppearance modAppearance = GetItemModifiedAppearanceByItemId(itemId); + if (modAppearance == null) + return null; + + ItemAppearance data; + if (ItemAppearanceStore.TryGetValue((uint)modAppearance.ItemAppearanceID, out data)) + return data; + return null; + } + + public static uint GetItemIconFileDataIdByDisplayId(uint displayId) + { + uint fileDataId; + if (ItemDisplayIdToFileDataIdStore.TryGetValue(displayId, out fileDataId)) + return fileDataId; + return 0; + } + + public static ItemModifiedAppearance GetItemModifiedAppearanceByDisplayId(uint displayId) + { + ItemAppearance appearance = GetItemAppearanceByDisplayId(displayId); + if (appearance != null) + { + foreach (var item in ItemModifiedAppearanceStore) + { + if (item.Value.ItemAppearanceID == appearance.Id) + return item.Value; + } + } + return null; + } + + public static ItemModifiedAppearance GetItemModifiedAppearanceByItemId(uint itemId) + { + foreach (var item in ItemModifiedAppearanceStore) + { + if (item.Value.ItemID == (int)itemId) + return item.Value; + } + return null; + } + + public static ItemEffect GetItemEffectByItemId(uint itemId, byte slot) + { + foreach (var item in ItemEffectStore) + { + if (item.Value.ParentItemID == itemId && item.Value.LegacySlotIndex == slot) + return item.Value; + } + return null; + } + + public static uint GetFirstFreeId(System.Collections.IDictionary dict, uint after = 0) + { + uint firstEntry = 0; + foreach (var item in dict) + { + var type = item.GetType(); + var key = type.GetProperty("Key"); + var keyObj = key.GetValue(item, null); + + if (after > 0 && (uint)keyObj <= after) + continue; + + firstEntry = (uint)keyObj; + break; + } + while (dict.Contains(firstEntry)) + firstEntry++; + + return firstEntry; + } + public static void SaveItemEffectSlot(uint itemId, uint spellId, byte slot) { if (ItemEffects.ContainsKey(itemId)) @@ -403,8 +497,16 @@ public static uint GetBroadcastTextId(string maleText, string femaleText, uint l public static void LoadEverything() { Log.Print(LogType.Storage, "Loading data files..."); + LoadBuildAuthSeeds(); LoadBroadcastTexts(); - LoadItemTemplates(); + LoadItemDisplayIds(); + LoadItemRecords(); + LoadItemSparseRecords(); + LoadItemAppearance(); + LoadItemModifiedAppearance(); + LoadItemEffect(); + LoadItemSpellsData(); + LoadItemDisplayIdToFileDataId(); LoadBattlegrounds(); LoadChatChannels(); LoadItemEnchantVisuals(); @@ -431,6 +533,35 @@ public static void LoadEverything() Log.Print(LogType.Storage, "Finished loading data."); } + public static void LoadBuildAuthSeeds() + { + var path = Path.Combine("CSV", $"BuildAuthSeeds.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = true; + + csvParser.ReadLine(); // Skip the row with the column names + + while (!csvParser.EndOfData) + { + string[] fields = csvParser.ReadFields(); + + uint build = uint.Parse(fields[0]); + string platform = fields[1]; + byte[] seed = fields[2].ParseAsByteArray(); + + if (!BuildAuthSeeds.TryGetValue(build, out var seeds)) + { + seeds = new Dictionary(); + BuildAuthSeeds.Add(build, seeds); + } + seeds.Add(platform, seed); + } + } + } + public static void LoadBroadcastTexts() { var path = Path.Combine("CSV", $"BroadcastTexts{LegacyVersion.ExpansionVersion}.csv"); @@ -464,9 +595,33 @@ public static void LoadBroadcastTexts() } } - public static void LoadItemTemplates() + public static void LoadItemDisplayIds() + { + var path = Path.Combine("CSV", $"ItemIdToDisplayId{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + uint entry = UInt32.Parse(fields[0]); + uint displayId = UInt32.Parse(fields[1]); + ItemDisplayIdStore.Add(entry, displayId); + } + } + } + + public static void LoadItemRecords() { - var path = Path.Combine("CSV", $"Items{ModernVersion.ExpansionVersion}.csv"); + var path = Path.Combine("CSV", $"Item{ModernVersion.ExpansionVersion}.csv"); using (TextFieldParser csvParser = new TextFieldParser(path)) { csvParser.CommentTokens = new string[] { "#" }; @@ -476,16 +631,348 @@ public static void LoadItemTemplates() // Skip the row with the column names csvParser.ReadLine(); + uint counter = 0; while (!csvParser.EndOfData) { + counter++; + // Read current line fields, pointer moves to the next line. string[] fields = csvParser.ReadFields(); - ItemDisplayData item = new ItemDisplayData(); - item.Entry = UInt32.Parse(fields[0]); - item.DisplayId = UInt32.Parse(fields[1]); - item.InventoryType = Byte.Parse(fields[2]); - ItemDisplayDataStore.Add(item.Entry, item); + ItemRecord row = new(); + row.Id = Int32.Parse(fields[0]); + row.ClassId = Byte.Parse(fields[1]); + row.SubclassId = Byte.Parse(fields[2]); + row.Material = Byte.Parse(fields[3]); + row.InventoryType = SByte.Parse(fields[4]); + row.RequiredLevel = Int32.Parse(fields[5]); + row.SheatheType = Byte.Parse(fields[6]); + row.RandomProperty = UInt16.Parse(fields[7]); + row.ItemRandomSuffixGroupId = UInt16.Parse(fields[8]); + row.SoundOverrideSubclassId = SByte.Parse(fields[9]); + row.ScalingStatDistributionId = UInt16.Parse(fields[10]); + row.IconFileDataId = Int32.Parse(fields[11]); + row.ItemGroupSoundsId = Byte.Parse(fields[12]); + row.ContentTuningId = Int32.Parse(fields[13]); + row.MaxDurability = UInt32.Parse(fields[14]); + row.AmmoType = Byte.Parse(fields[15]); + row.DamageType[0] = Byte.Parse(fields[16]); + row.DamageType[1] = Byte.Parse(fields[17]); + row.DamageType[2] = Byte.Parse(fields[18]); + row.DamageType[3] = Byte.Parse(fields[19]); + row.DamageType[4] = Byte.Parse(fields[20]); + row.Resistances[0] = Int16.Parse(fields[21]); + row.Resistances[1] = Int16.Parse(fields[22]); + row.Resistances[2] = Int16.Parse(fields[23]); + row.Resistances[3] = Int16.Parse(fields[24]); + row.Resistances[4] = Int16.Parse(fields[25]); + row.Resistances[5] = Int16.Parse(fields[26]); + row.Resistances[6] = Int16.Parse(fields[27]); + row.MinDamage[0] = UInt16.Parse(fields[28]); + row.MinDamage[1] = UInt16.Parse(fields[29]); + row.MinDamage[2] = UInt16.Parse(fields[30]); + row.MinDamage[3] = UInt16.Parse(fields[31]); + row.MinDamage[4] = UInt16.Parse(fields[32]); + row.MaxDamage[0] = UInt16.Parse(fields[33]); + row.MaxDamage[1] = UInt16.Parse(fields[34]); + row.MaxDamage[2] = UInt16.Parse(fields[35]); + row.MaxDamage[3] = UInt16.Parse(fields[36]); + row.MaxDamage[4] = UInt16.Parse(fields[37]); + ItemRecordsStore.Add((uint)row.Id, row); + } + } + } + + public static void LoadItemSparseRecords() + { + var path = Path.Combine("CSV", $"ItemSparse{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = true; + + // Skip the row with the column names + csvParser.ReadLine(); + + uint counter = 0; + while (!csvParser.EndOfData) + { + counter++; + + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + ItemSparseRecord row = new(); + row.Id = Int32.Parse(fields[0]); + row.AllowableRace = Int64.Parse(fields[1]); + row.Description = fields[2]; + row.Name4 = fields[3]; + row.Name3 = fields[4]; + row.Name2 = fields[5]; + row.Name1 = fields[6]; + row.DmgVariance = Single.Parse(fields[7]); + row.DurationInInventory = UInt32.Parse(fields[8]); + row.QualityModifier = Single.Parse(fields[9]); + row.BagFamily = UInt32.Parse(fields[10]); + row.RangeMod = Single.Parse(fields[11]); + row.StatPercentageOfSocket[0] = Single.Parse(fields[12]); + row.StatPercentageOfSocket[1] = Single.Parse(fields[13]); + row.StatPercentageOfSocket[2] = Single.Parse(fields[14]); + row.StatPercentageOfSocket[3] = Single.Parse(fields[15]); + row.StatPercentageOfSocket[4] = Single.Parse(fields[16]); + row.StatPercentageOfSocket[5] = Single.Parse(fields[17]); + row.StatPercentageOfSocket[6] = Single.Parse(fields[18]); + row.StatPercentageOfSocket[7] = Single.Parse(fields[19]); + row.StatPercentageOfSocket[8] = Single.Parse(fields[20]); + row.StatPercentageOfSocket[9] = Single.Parse(fields[21]); + row.StatPercentEditor[0] = Int32.Parse(fields[22]); + row.StatPercentEditor[1] = Int32.Parse(fields[23]); + row.StatPercentEditor[2] = Int32.Parse(fields[24]); + row.StatPercentEditor[3] = Int32.Parse(fields[25]); + row.StatPercentEditor[4] = Int32.Parse(fields[26]); + row.StatPercentEditor[5] = Int32.Parse(fields[27]); + row.StatPercentEditor[6] = Int32.Parse(fields[28]); + row.StatPercentEditor[7] = Int32.Parse(fields[29]); + row.StatPercentEditor[8] = Int32.Parse(fields[30]); + row.StatPercentEditor[9] = Int32.Parse(fields[31]); + row.Stackable = Int32.Parse(fields[32]); + row.MaxCount = Int32.Parse(fields[33]); + row.RequiredAbility = UInt32.Parse(fields[34]); + row.SellPrice = UInt32.Parse(fields[35]); + row.BuyPrice = UInt32.Parse(fields[36]); + row.VendorStackCount = UInt32.Parse(fields[37]); + row.PriceVariance = Single.Parse(fields[38]); + row.PriceRandomValue = Single.Parse(fields[39]); + row.Flags[0] = UInt32.Parse(fields[40]); + row.Flags[1] = UInt32.Parse(fields[41]); + row.Flags[2] = UInt32.Parse(fields[42]); + row.Flags[3] = UInt32.Parse(fields[43]); + row.OppositeFactionItemId = Int32.Parse(fields[44]); + row.MaxDurability = UInt32.Parse(fields[45]); + row.ItemNameDescriptionId = UInt16.Parse(fields[46]); + row.RequiredTransmogHoliday = UInt16.Parse(fields[47]); + row.RequiredHoliday = UInt16.Parse(fields[48]); + row.LimitCategory = UInt16.Parse(fields[49]); + row.GemProperties = UInt16.Parse(fields[50]); + row.SocketMatchEnchantmentId = UInt16.Parse(fields[51]); + row.TotemCategoryId = UInt16.Parse(fields[52]); + row.InstanceBound = UInt16.Parse(fields[53]); + row.ZoneBound[0] = UInt16.Parse(fields[54]); + row.ZoneBound[1] = UInt16.Parse(fields[55]); + row.ItemSet = UInt16.Parse(fields[56]); + row.LockId = UInt16.Parse(fields[57]); + row.StartQuestId = UInt16.Parse(fields[58]); + row.PageText = UInt16.Parse(fields[59]); + row.Delay = UInt16.Parse(fields[60]); + row.RequiredReputationId = UInt16.Parse(fields[61]); + row.RequiredSkillRank = UInt16.Parse(fields[62]); + row.RequiredSkill = UInt16.Parse(fields[63]); + row.ItemLevel = UInt16.Parse(fields[64]); + row.AllowableClass = Int16.Parse(fields[65]); + row.ItemRandomSuffixGroupId = UInt16.Parse(fields[66]); + row.RandomProperty = UInt16.Parse(fields[67]); + row.MinDamage[0] = UInt16.Parse(fields[68]); + row.MinDamage[1] = UInt16.Parse(fields[69]); + row.MinDamage[2] = UInt16.Parse(fields[70]); + row.MinDamage[3] = UInt16.Parse(fields[71]); + row.MinDamage[4] = UInt16.Parse(fields[72]); + row.MaxDamage[0] = UInt16.Parse(fields[73]); + row.MaxDamage[1] = UInt16.Parse(fields[74]); + row.MaxDamage[2] = UInt16.Parse(fields[75]); + row.MaxDamage[3] = UInt16.Parse(fields[76]); + row.MaxDamage[4] = UInt16.Parse(fields[77]); + row.Resistances[0] = Int16.Parse(fields[78]); + row.Resistances[1] = Int16.Parse(fields[79]); + row.Resistances[2] = Int16.Parse(fields[80]); + row.Resistances[3] = Int16.Parse(fields[81]); + row.Resistances[4] = Int16.Parse(fields[82]); + row.Resistances[5] = Int16.Parse(fields[83]); + row.Resistances[6] = Int16.Parse(fields[84]); + row.ScalingStatDistributionId = UInt16.Parse(fields[85]); + row.ExpansionId = Byte.Parse(fields[86]); + row.ArtifactId = Byte.Parse(fields[87]); + row.SpellWeight = Byte.Parse(fields[88]); + row.SpellWeightCategory = Byte.Parse(fields[89]); + row.SocketType[0] = Byte.Parse(fields[90]); + row.SocketType[1] = Byte.Parse(fields[91]); + row.SocketType[2] = Byte.Parse(fields[92]); + row.SheatheType = Byte.Parse(fields[93]); + row.Material = Byte.Parse(fields[94]); + row.PageMaterial = Byte.Parse(fields[95]); + row.PageLanguage = Byte.Parse(fields[96]); + row.Bonding = Byte.Parse(fields[97]); + row.DamageType = Byte.Parse(fields[98]); + row.StatType[0] = SByte.Parse(fields[99]); + row.StatType[1] = SByte.Parse(fields[100]); + row.StatType[2] = SByte.Parse(fields[101]); + row.StatType[3] = SByte.Parse(fields[102]); + row.StatType[4] = SByte.Parse(fields[103]); + row.StatType[5] = SByte.Parse(fields[104]); + row.StatType[6] = SByte.Parse(fields[105]); + row.StatType[7] = SByte.Parse(fields[106]); + row.StatType[8] = SByte.Parse(fields[107]); + row.StatType[9] = SByte.Parse(fields[108]); + row.ContainerSlots = Byte.Parse(fields[109]); + row.RequiredReputationRank = Byte.Parse(fields[110]); + row.RequiredCityRank = Byte.Parse(fields[111]); + row.RequiredHonorRank = Byte.Parse(fields[112]); + row.InventoryType = Byte.Parse(fields[113]); + row.OverallQualityId = Byte.Parse(fields[114]); + row.AmmoType = Byte.Parse(fields[115]); + row.StatValue[0] = SByte.Parse(fields[116]); + row.StatValue[1] = SByte.Parse(fields[117]); + row.StatValue[2] = SByte.Parse(fields[118]); + row.StatValue[3] = SByte.Parse(fields[119]); + row.StatValue[4] = SByte.Parse(fields[120]); + row.StatValue[5] = SByte.Parse(fields[121]); + row.StatValue[6] = SByte.Parse(fields[122]); + row.StatValue[7] = SByte.Parse(fields[123]); + row.StatValue[8] = SByte.Parse(fields[124]); + row.StatValue[9] = SByte.Parse(fields[125]); + row.RequiredLevel = SByte.Parse(fields[126]); + ItemSparseRecordsStore.Add((uint)row.Id, row); + } + } + } + + public static void LoadItemAppearance() + { + var path = Path.Combine("CSV", $"ItemAppearance{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + ItemAppearance appearance = new ItemAppearance(); + appearance.Id = Int32.Parse(fields[0]); + appearance.DisplayType = Byte.Parse(fields[1]); + appearance.ItemDisplayInfoID = Int32.Parse(fields[2]); + appearance.DefaultIconFileDataID = Int32.Parse(fields[3]); + appearance.UiOrder = Int32.Parse(fields[4]); + ItemAppearanceStore.Add((uint)appearance.Id, appearance); + } + } + } + + public static void LoadItemModifiedAppearance() + { + var path = Path.Combine("CSV", $"ItemModifiedAppearance{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + ItemModifiedAppearance modifiedAppearance = new ItemModifiedAppearance(); + modifiedAppearance.Id = Int32.Parse(fields[0]); + modifiedAppearance.ItemID = Int32.Parse(fields[1]); + modifiedAppearance.ItemAppearanceModifierID = Int32.Parse(fields[2]); + modifiedAppearance.ItemAppearanceID = Int32.Parse(fields[3]); + modifiedAppearance.OrderIndex = Int32.Parse(fields[4]); + modifiedAppearance.TransmogSourceTypeEnum = Int32.Parse(fields[5]); + ItemModifiedAppearanceStore.Add((uint)modifiedAppearance.Id, modifiedAppearance); + } + } + } + + public static void LoadItemEffect() + { + var path = Path.Combine("CSV", $"ItemEffect{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + ItemEffect effect = new ItemEffect(); + effect.Id = Int32.Parse(fields[0]); + effect.LegacySlotIndex = Byte.Parse(fields[1]); + effect.TriggerType = SByte.Parse(fields[2]); + effect.Charges = Int16.Parse(fields[3]); + effect.CoolDownMSec = Int32.Parse(fields[4]); + effect.CategoryCoolDownMSec = Int32.Parse(fields[5]); + effect.SpellCategoryID = UInt16.Parse(fields[6]); + effect.SpellID = Int32.Parse(fields[7]); + effect.ChrSpecializationID = UInt16.Parse(fields[8]); + effect.ParentItemID = Int32.Parse(fields[9]); + ItemEffectStore.Add((uint)effect.Id, effect); + } + } + } + + public static void LoadItemSpellsData() + { + var path = Path.Combine("CSV", $"ItemSpellsData{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + ItemSpellsData data = new ItemSpellsData(); + data.Id = Int32.Parse(fields[0]); + data.Category = Int32.Parse(fields[1]); + data.RecoveryTime = Int32.Parse(fields[2]); + data.CategoryRecoveryTime = Int32.Parse(fields[3]); + ItemSpellsDataStore.Add((uint)data.Id, data); + } + } + } + + public static void LoadItemDisplayIdToFileDataId() + { + var path = Path.Combine("CSV", $"ItemDisplayIdToFileDataId{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + uint displayId = UInt32.Parse(fields[0]); + uint fileDataId = UInt32.Parse(fields[1]); + ItemDisplayIdToFileDataIdStore.Add(displayId, fileDataId); } } } @@ -1171,11 +1658,15 @@ public static void LoadQuestBits() public const uint HotfixSpellMiscBegin = 180000; public const uint HotfixSpellEffectBegin = 190000; public const uint HotfixSpellXSpellVisualBegin = 200000; - public const uint HotfixItemSparseBegin = 210000; - public const uint HotfixCreatureDisplayInfoBegin = 220000; - public const uint HotfixCreatureDisplayInfoExtraBegin = 230000; - public const uint HotfixCreatureDisplayInfoOptionBegin = 240000; + public const uint HotfixItemBegin = 210000; + public const uint HotfixItemSparseBegin = 220000; + public const uint HotfixItemAppearanceBegin = 230000; + public const uint HotfixItemModifiedAppearanceBegin = 240000; public const uint HotfixItemEffectBegin = 250000; + public const uint HotfixItemDisplayInfoBegin = 260000; + public const uint HotfixCreatureDisplayInfoBegin = 270000; + public const uint HotfixCreatureDisplayInfoExtraBegin = 280000; + public const uint HotfixCreatureDisplayInfoOptionBegin = 290000; public static Dictionary Hotfixes = new Dictionary(); public static void LoadHotfixes() { @@ -1191,10 +1682,12 @@ public static void LoadHotfixes() LoadSpellEffectHotfixes(); LoadSpellXSpellVisualHotfixes(); LoadItemSparseHotfixes(); + LoadItemHotfixes(); + LoadItemEffectHotfixes(); + LoadItemDisplayInfoHotfixes(); LoadCreatureDisplayInfoHotfixes(); LoadCreatureDisplayInfoExtraHotfixes(); LoadCreatureDisplayInfoOptionHotfixes(); - // LoadItemEffectHotfixes(); } public static void LoadAreaTriggerHotfixes() @@ -2130,6 +2623,1422 @@ public static void LoadItemSparseHotfixes() } } } + + public static void WriteItemSparseHotfix(ItemTemplate item, Framework.IO.ByteBuffer buffer) + { + int[] StatValues = new int[10]; + for (int i = 0; i < item.StatsCount; i++) + { + StatValues[i] = item.StatValues[i]; + if (StatValues[i] > 127) + StatValues[i] = 127; + if (StatValues[i] < -127) + StatValues[i] = -127; + } + + buffer.WriteInt64(item.AllowedRaces); + buffer.WriteCString(item.Description); + buffer.WriteCString(item.Name[3]); + buffer.WriteCString(item.Name[2]); + buffer.WriteCString(item.Name[1]); + buffer.WriteCString(item.Name[0]); + buffer.WriteFloat(1); + buffer.WriteUInt32(item.Duration); + buffer.WriteFloat(0); + buffer.WriteUInt32(item.BagFamily); + buffer.WriteFloat(item.RangedMod); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteFloat(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(item.MaxStackSize); + buffer.WriteInt32(item.MaxCount); + buffer.WriteUInt32(item.RequiredSpell); + buffer.WriteUInt32(item.SellPrice); + buffer.WriteUInt32(item.BuyPrice); + buffer.WriteUInt32(item.BuyCount); + buffer.WriteFloat(1); + buffer.WriteFloat(1); + buffer.WriteUInt32(item.Flags); + buffer.WriteUInt32(item.FlagsExtra); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteInt32(0); + buffer.WriteUInt32(item.MaxDurability); + buffer.WriteUInt16(0); + buffer.WriteUInt16(0); + buffer.WriteUInt16((ushort)item.HolidayID); + buffer.WriteUInt16((ushort)item.ItemLimitCategory); + buffer.WriteUInt16((ushort)item.GemProperties); + buffer.WriteUInt16((ushort)item.SocketBonus); + buffer.WriteUInt16((ushort)item.TotemCategory); + buffer.WriteUInt16((ushort)item.MapID); + buffer.WriteUInt16((ushort)item.AreaID); + buffer.WriteUInt16(0); + buffer.WriteUInt16((ushort)item.ItemSet); + buffer.WriteUInt16((ushort)item.LockId); + buffer.WriteUInt16((ushort)item.StartQuestId); + buffer.WriteUInt16((ushort)item.PageText); + buffer.WriteUInt16((ushort)item.Delay); + buffer.WriteUInt16((ushort)item.RequiredRepFaction); + buffer.WriteUInt16((ushort)item.RequiredSkillLevel); + buffer.WriteUInt16((ushort)item.RequiredSkillId); + buffer.WriteUInt16((ushort)item.ItemLevel); + buffer.WriteInt16((short)item.AllowedClasses); + buffer.WriteUInt16((ushort)item.RandomSuffix); + buffer.WriteUInt16((ushort)item.RandomProperty); + buffer.WriteUInt16((ushort)item.DamageMins[0]); + buffer.WriteUInt16((ushort)item.DamageMins[1]); + buffer.WriteUInt16((ushort)item.DamageMins[2]); + buffer.WriteUInt16((ushort)item.DamageMins[3]); + buffer.WriteUInt16((ushort)item.DamageMins[4]); + buffer.WriteUInt16((ushort)item.DamageMaxs[0]); + buffer.WriteUInt16((ushort)item.DamageMaxs[1]); + buffer.WriteUInt16((ushort)item.DamageMaxs[2]); + buffer.WriteUInt16((ushort)item.DamageMaxs[3]); + buffer.WriteUInt16((ushort)item.DamageMaxs[4]); + buffer.WriteInt16((short)item.Armor); + buffer.WriteInt16((short)item.HolyResistance); + buffer.WriteInt16((short)item.FireResistance); + buffer.WriteInt16((short)item.NatureResistance); + buffer.WriteInt16((short)item.FrostResistance); + buffer.WriteInt16((short)item.ShadowResistance); + buffer.WriteInt16((short)item.ArcaneResistance); + buffer.WriteUInt16((ushort)item.ScalingStatDistribution); + buffer.WriteUInt8(254); + buffer.WriteUInt8(0); + buffer.WriteUInt8(0); + buffer.WriteUInt8(0); + buffer.WriteUInt8((byte)item.ItemSocketColors[0]); + buffer.WriteUInt8((byte)item.ItemSocketColors[1]); + buffer.WriteUInt8((byte)item.ItemSocketColors[2]); + buffer.WriteUInt8((byte)item.SheathType); + buffer.WriteUInt8((byte)item.Material); + buffer.WriteUInt8((byte)item.PageMaterial); + buffer.WriteUInt8((byte)item.Language); + buffer.WriteUInt8((byte)item.Bonding); + buffer.WriteUInt8((byte)item.DamageTypes[0]); + buffer.WriteInt8((sbyte)item.StatTypes[0]); + buffer.WriteInt8((sbyte)item.StatTypes[1]); + buffer.WriteInt8((sbyte)item.StatTypes[2]); + buffer.WriteInt8((sbyte)item.StatTypes[3]); + buffer.WriteInt8((sbyte)item.StatTypes[4]); + buffer.WriteInt8((sbyte)item.StatTypes[5]); + buffer.WriteInt8((sbyte)item.StatTypes[6]); + buffer.WriteInt8((sbyte)item.StatTypes[7]); + buffer.WriteInt8((sbyte)item.StatTypes[8]); + buffer.WriteInt8((sbyte)item.StatTypes[9]); + buffer.WriteUInt8((byte)item.ContainerSlots); + buffer.WriteUInt8((byte)item.RequiredRepValue); + buffer.WriteUInt8((byte)item.RequiredCityRank); + buffer.WriteUInt8((byte)item.RequiredHonorRank); + buffer.WriteUInt8((byte)item.InventoryType); + buffer.WriteUInt8((byte)item.Quality); + buffer.WriteUInt8((byte)item.AmmoType); + buffer.WriteInt8((sbyte)StatValues[0]); + buffer.WriteInt8((sbyte)StatValues[1]); + buffer.WriteInt8((sbyte)StatValues[2]); + buffer.WriteInt8((sbyte)StatValues[3]); + buffer.WriteInt8((sbyte)StatValues[4]); + buffer.WriteInt8((sbyte)StatValues[5]); + buffer.WriteInt8((sbyte)StatValues[6]); + buffer.WriteInt8((sbyte)StatValues[7]); + buffer.WriteInt8((sbyte)StatValues[8]); + buffer.WriteInt8((sbyte)StatValues[9]); + buffer.WriteInt8((sbyte)item.RequiredLevel); + } + + public static void WriteItemSparseHotfix(ItemSparseRecord row, Framework.IO.ByteBuffer buffer) + { + int[] StatValues = new int[10]; + for (int i = 0; i < 10; i++) + { + StatValues[i] = (int)row.StatValue[i]; + if (StatValues[i] > 127) + StatValues[i] = 127; + if (StatValues[i] < -127) + StatValues[i] = -127; + } + + buffer.WriteInt64(row.AllowableRace); + buffer.WriteCString(row.Description); + buffer.WriteCString(row.Name4); + buffer.WriteCString(row.Name3); + buffer.WriteCString(row.Name2); + buffer.WriteCString(row.Name1); + buffer.WriteFloat(row.DmgVariance); + buffer.WriteUInt32(row.DurationInInventory); + buffer.WriteFloat(row.QualityModifier); + buffer.WriteUInt32(row.BagFamily); + buffer.WriteFloat(row.RangeMod); + buffer.WriteFloat(row.StatPercentageOfSocket[0]); + buffer.WriteFloat(row.StatPercentageOfSocket[1]); + buffer.WriteFloat(row.StatPercentageOfSocket[2]); + buffer.WriteFloat(row.StatPercentageOfSocket[3]); + buffer.WriteFloat(row.StatPercentageOfSocket[4]); + buffer.WriteFloat(row.StatPercentageOfSocket[5]); + buffer.WriteFloat(row.StatPercentageOfSocket[6]); + buffer.WriteFloat(row.StatPercentageOfSocket[7]); + buffer.WriteFloat(row.StatPercentageOfSocket[8]); + buffer.WriteFloat(row.StatPercentageOfSocket[9]); + buffer.WriteInt32(row.StatPercentEditor[0]); + buffer.WriteInt32(row.StatPercentEditor[1]); + buffer.WriteInt32(row.StatPercentEditor[2]); + buffer.WriteInt32(row.StatPercentEditor[3]); + buffer.WriteInt32(row.StatPercentEditor[4]); + buffer.WriteInt32(row.StatPercentEditor[5]); + buffer.WriteInt32(row.StatPercentEditor[6]); + buffer.WriteInt32(row.StatPercentEditor[7]); + buffer.WriteInt32(row.StatPercentEditor[8]); + buffer.WriteInt32(row.StatPercentEditor[9]); + buffer.WriteInt32(row.Stackable); + buffer.WriteInt32(row.MaxCount); + buffer.WriteUInt32(row.RequiredAbility); + buffer.WriteUInt32(row.SellPrice); + buffer.WriteUInt32(row.BuyPrice); + buffer.WriteUInt32(row.VendorStackCount); + buffer.WriteFloat(row.PriceVariance); + buffer.WriteFloat(row.PriceRandomValue); + buffer.WriteUInt32(row.Flags[0]); + buffer.WriteUInt32(row.Flags[1]); + buffer.WriteUInt32(row.Flags[2]); + buffer.WriteUInt32(row.Flags[3]); + buffer.WriteInt32(row.OppositeFactionItemId); + buffer.WriteUInt32(row.MaxDurability); + buffer.WriteUInt16(row.ItemNameDescriptionId); + buffer.WriteUInt16(row.RequiredTransmogHoliday); + buffer.WriteUInt16(row.RequiredHoliday); + buffer.WriteUInt16(row.LimitCategory); + buffer.WriteUInt16(row.GemProperties); + buffer.WriteUInt16(row.SocketMatchEnchantmentId); + buffer.WriteUInt16(row.TotemCategoryId); + buffer.WriteUInt16(row.InstanceBound); + buffer.WriteUInt16(row.ZoneBound[0]); + buffer.WriteUInt16(row.ZoneBound[1]); + buffer.WriteUInt16(row.ItemSet); + buffer.WriteUInt16(row.LockId); + buffer.WriteUInt16(row.StartQuestId); + buffer.WriteUInt16(row.PageText); + buffer.WriteUInt16(row.Delay); + buffer.WriteUInt16(row.RequiredReputationId); + buffer.WriteUInt16(row.RequiredSkillRank); + buffer.WriteUInt16(row.RequiredSkill); + buffer.WriteUInt16(row.ItemLevel); + buffer.WriteInt16(row.AllowableClass); + buffer.WriteUInt16(row.ItemRandomSuffixGroupId); + buffer.WriteUInt16(row.RandomProperty); + buffer.WriteUInt16(row.MinDamage[0]); + buffer.WriteUInt16(row.MinDamage[1]); + buffer.WriteUInt16(row.MinDamage[2]); + buffer.WriteUInt16(row.MinDamage[3]); + buffer.WriteUInt16(row.MinDamage[4]); + buffer.WriteUInt16(row.MaxDamage[0]); + buffer.WriteUInt16(row.MaxDamage[1]); + buffer.WriteUInt16(row.MaxDamage[2]); + buffer.WriteUInt16(row.MaxDamage[3]); + buffer.WriteUInt16(row.MaxDamage[4]); + buffer.WriteInt16(row.Resistances[0]); + buffer.WriteInt16(row.Resistances[1]); + buffer.WriteInt16(row.Resistances[2]); + buffer.WriteInt16(row.Resistances[3]); + buffer.WriteInt16(row.Resistances[4]); + buffer.WriteInt16(row.Resistances[5]); + buffer.WriteInt16(row.Resistances[6]); + buffer.WriteUInt16(row.ScalingStatDistributionId); + buffer.WriteUInt8(row.ExpansionId); + buffer.WriteUInt8(row.ArtifactId); + buffer.WriteUInt8(row.SpellWeight); + buffer.WriteUInt8(row.SpellWeightCategory); + buffer.WriteUInt8(row.SocketType[0]); + buffer.WriteUInt8(row.SocketType[1]); + buffer.WriteUInt8(row.SocketType[2]); + buffer.WriteUInt8(row.SheatheType); + buffer.WriteUInt8(row.Material); + buffer.WriteUInt8(row.PageMaterial); + buffer.WriteUInt8(row.PageLanguage); + buffer.WriteUInt8(row.Bonding); + buffer.WriteUInt8(row.DamageType); + buffer.WriteInt8(row.StatType[0]); + buffer.WriteInt8(row.StatType[1]); + buffer.WriteInt8(row.StatType[2]); + buffer.WriteInt8(row.StatType[3]); + buffer.WriteInt8(row.StatType[4]); + buffer.WriteInt8(row.StatType[5]); + buffer.WriteInt8(row.StatType[6]); + buffer.WriteInt8(row.StatType[7]); + buffer.WriteInt8(row.StatType[8]); + buffer.WriteInt8(row.StatType[9]); + buffer.WriteUInt8(row.ContainerSlots); + buffer.WriteUInt8(row.RequiredReputationRank); + buffer.WriteUInt8(row.RequiredCityRank); + buffer.WriteUInt8(row.RequiredHonorRank); + buffer.WriteUInt8(row.InventoryType); + buffer.WriteUInt8(row.OverallQualityId); + buffer.WriteUInt8(row.AmmoType); + buffer.WriteInt8((sbyte)StatValues[0]); + buffer.WriteInt8((sbyte)StatValues[1]); + buffer.WriteInt8((sbyte)StatValues[2]); + buffer.WriteInt8((sbyte)StatValues[3]); + buffer.WriteInt8((sbyte)StatValues[4]); + buffer.WriteInt8((sbyte)StatValues[5]); + buffer.WriteInt8((sbyte)StatValues[6]); + buffer.WriteInt8((sbyte)StatValues[7]); + buffer.WriteInt8((sbyte)StatValues[8]); + buffer.WriteInt8((sbyte)StatValues[9]); + buffer.WriteInt8(row.RequiredLevel); + } + public static void LoadItemHotfixes() + { + var path = Path.Combine("CSV", "Hotfix", $"Item{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + uint counter = 0; + while (!csvParser.EndOfData) + { + counter++; + + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + uint id = UInt32.Parse(fields[0]); + byte ClassID = Byte.Parse(fields[1]); + byte SubclassID = Byte.Parse(fields[2]); + byte Material = Byte.Parse(fields[3]); + sbyte InventoryType = SByte.Parse(fields[4]); + uint RequiredLevel = UInt32.Parse(fields[5]); + byte SheatheType = Byte.Parse(fields[6]); + ushort RandomSelect = UInt16.Parse(fields[7]); + ushort ItemRandomSuffixGroupID = UInt16.Parse(fields[8]); + sbyte Sound_override_subclassID = SByte.Parse(fields[9]); + ushort ScalingStatDistributionID = UInt16.Parse(fields[10]); + int IconFileDataID = Int32.Parse(fields[11]); + byte ItemGroupSoundsID = Byte.Parse(fields[12]); + int ContentTuningID = Int32.Parse(fields[13]); + uint MaxDurability = UInt32.Parse(fields[14]); + byte AmmunitionType = Byte.Parse(fields[15]); + byte DamageType1 = Byte.Parse(fields[16]); + byte DamageType2 = Byte.Parse(fields[17]); + byte DamageType3 = Byte.Parse(fields[18]); + byte DamageType4 = Byte.Parse(fields[19]); + byte DamageType5 = Byte.Parse(fields[20]); + short Resistances1 = Int16.Parse(fields[21]); + short Resistances2 = Int16.Parse(fields[22]); + short Resistances3 = Int16.Parse(fields[23]); + short Resistances4 = Int16.Parse(fields[24]); + short Resistances5 = Int16.Parse(fields[25]); + short Resistances6 = Int16.Parse(fields[26]); + short Resistances7 = Int16.Parse(fields[27]); + ushort MinDamage1 = UInt16.Parse(fields[28]); + ushort MinDamage2 = UInt16.Parse(fields[29]); + ushort MinDamage3 = UInt16.Parse(fields[30]); + ushort MinDamage4 = UInt16.Parse(fields[31]); + ushort MinDamage5 = UInt16.Parse(fields[32]); + ushort MaxDamage1 = UInt16.Parse(fields[33]); + ushort MaxDamage2 = UInt16.Parse(fields[34]); + ushort MaxDamage3 = UInt16.Parse(fields[35]); + ushort MaxDamage4 = UInt16.Parse(fields[36]); + ushort MaxDamage5 = UInt16.Parse(fields[37]); + + HotfixRecord record = new HotfixRecord(); + record.Status = HotfixStatus.Valid; + record.TableHash = DB2Hash.Item; + record.HotfixId = HotfixItemBegin + counter; + record.UniqueId = record.HotfixId; + record.RecordId = id; + record.HotfixContent.WriteUInt8(ClassID); + record.HotfixContent.WriteUInt8(SubclassID); + record.HotfixContent.WriteUInt8(Material); + record.HotfixContent.WriteInt8(InventoryType); + record.HotfixContent.WriteUInt32(RequiredLevel); + record.HotfixContent.WriteUInt8(SheatheType); + record.HotfixContent.WriteUInt16(RandomSelect); + record.HotfixContent.WriteUInt16(ItemRandomSuffixGroupID); + record.HotfixContent.WriteInt8(Sound_override_subclassID); + record.HotfixContent.WriteUInt16(ScalingStatDistributionID); + record.HotfixContent.WriteInt32(IconFileDataID); + record.HotfixContent.WriteUInt8(ItemGroupSoundsID); + record.HotfixContent.WriteInt32(ContentTuningID); + record.HotfixContent.WriteUInt32(MaxDurability); + record.HotfixContent.WriteUInt8(AmmunitionType); + record.HotfixContent.WriteUInt8(DamageType1); + record.HotfixContent.WriteUInt8(DamageType2); + record.HotfixContent.WriteUInt8(DamageType3); + record.HotfixContent.WriteUInt8(DamageType4); + record.HotfixContent.WriteUInt8(DamageType5); + record.HotfixContent.WriteInt16(Resistances1); + record.HotfixContent.WriteInt16(Resistances2); + record.HotfixContent.WriteInt16(Resistances3); + record.HotfixContent.WriteInt16(Resistances4); + record.HotfixContent.WriteInt16(Resistances5); + record.HotfixContent.WriteInt16(Resistances6); + record.HotfixContent.WriteInt16(Resistances7); + record.HotfixContent.WriteUInt16(MinDamage1); + record.HotfixContent.WriteUInt16(MinDamage2); + record.HotfixContent.WriteUInt16(MinDamage3); + record.HotfixContent.WriteUInt16(MinDamage4); + record.HotfixContent.WriteUInt16(MinDamage5); + record.HotfixContent.WriteUInt16(MaxDamage1); + record.HotfixContent.WriteUInt16(MaxDamage2); + record.HotfixContent.WriteUInt16(MaxDamage3); + record.HotfixContent.WriteUInt16(MaxDamage4); + record.HotfixContent.WriteUInt16(MaxDamage5); + Hotfixes.Add(record.HotfixId, record); + } + } + } + + public static void WriteItemHotfix(ItemTemplate item, Framework.IO.ByteBuffer buffer) + { + int fileDataId = (int)GetItemIconFileDataIdByDisplayId(item.DisplayID); + + buffer.WriteUInt8((byte)item.Class); + buffer.WriteUInt8((byte)item.SubClass); + buffer.WriteUInt8((byte)item.Material); + buffer.WriteInt8((sbyte)item.InventoryType); + buffer.WriteInt32((int)item.RequiredLevel); + buffer.WriteUInt8((byte)item.SheathType); + buffer.WriteUInt16((ushort)item.RandomProperty); + buffer.WriteUInt16((ushort)item.RandomSuffix); + buffer.WriteInt8(-1); + buffer.WriteUInt16(0); + buffer.WriteInt32(fileDataId); + buffer.WriteUInt8(0); + buffer.WriteInt32(0); + buffer.WriteUInt32(item.MaxDurability); + buffer.WriteUInt8((byte)item.AmmoType); + buffer.WriteUInt8((byte)item.DamageTypes[0]); + buffer.WriteUInt8((byte)item.DamageTypes[1]); + buffer.WriteUInt8((byte)item.DamageTypes[2]); + buffer.WriteUInt8((byte)item.DamageTypes[3]); + buffer.WriteUInt8((byte)item.DamageTypes[4]); + buffer.WriteInt16((short)item.Armor); + buffer.WriteInt16((short)item.HolyResistance); + buffer.WriteInt16((short)item.FireResistance); + buffer.WriteInt16((short)item.NatureResistance); + buffer.WriteInt16((short)item.FrostResistance); + buffer.WriteInt16((short)item.ShadowResistance); + buffer.WriteInt16((short)item.ArcaneResistance); + buffer.WriteUInt16((ushort)item.DamageMins[0]); + buffer.WriteUInt16((ushort)item.DamageMins[1]); + buffer.WriteUInt16((ushort)item.DamageMins[2]); + buffer.WriteUInt16((ushort)item.DamageMins[3]); + buffer.WriteUInt16((ushort)item.DamageMins[4]); + buffer.WriteUInt16((ushort)item.DamageMaxs[0]); + buffer.WriteUInt16((ushort)item.DamageMaxs[1]); + buffer.WriteUInt16((ushort)item.DamageMaxs[2]); + buffer.WriteUInt16((ushort)item.DamageMaxs[3]); + buffer.WriteUInt16((ushort)item.DamageMaxs[4]); + } + + public static void WriteItemHotfix(ItemRecord row, Framework.IO.ByteBuffer buffer) + { + buffer.WriteUInt8(row.ClassId); + buffer.WriteUInt8(row.SubclassId); + buffer.WriteUInt8(row.Material); + buffer.WriteInt8(row.InventoryType); + buffer.WriteInt32(row.RequiredLevel); + buffer.WriteUInt8(row.SheatheType); + buffer.WriteUInt16(row.RandomProperty); + buffer.WriteUInt16(row.ItemRandomSuffixGroupId); + buffer.WriteInt8(row.SoundOverrideSubclassId); + buffer.WriteUInt16(row.ScalingStatDistributionId); + buffer.WriteInt32(row.IconFileDataId); + buffer.WriteUInt8(row.ItemGroupSoundsId); + buffer.WriteInt32(row.ContentTuningId); + buffer.WriteUInt32(row.MaxDurability); + buffer.WriteUInt8(row.AmmoType); + buffer.WriteUInt8(row.DamageType[0]); + buffer.WriteUInt8(row.DamageType[1]); + buffer.WriteUInt8(row.DamageType[2]); + buffer.WriteUInt8(row.DamageType[3]); + buffer.WriteUInt8(row.DamageType[4]); + buffer.WriteInt16(row.Resistances[0]); + buffer.WriteInt16(row.Resistances[1]); + buffer.WriteInt16(row.Resistances[2]); + buffer.WriteInt16(row.Resistances[3]); + buffer.WriteInt16(row.Resistances[4]); + buffer.WriteInt16(row.Resistances[5]); + buffer.WriteInt16(row.Resistances[6]); + buffer.WriteUInt16(row.MinDamage[0]); + buffer.WriteUInt16(row.MinDamage[1]); + buffer.WriteUInt16(row.MinDamage[2]); + buffer.WriteUInt16(row.MinDamage[3]); + buffer.WriteUInt16(row.MinDamage[4]); + buffer.WriteUInt16(row.MaxDamage[0]); + buffer.WriteUInt16(row.MaxDamage[1]); + buffer.WriteUInt16(row.MaxDamage[2]); + buffer.WriteUInt16(row.MaxDamage[3]); + buffer.WriteUInt16(row.MaxDamage[4]); + } + + public static void WriteItemAppearanceHotfix(ItemAppearance appearance, Framework.IO.ByteBuffer buffer) + { + buffer.WriteUInt8(appearance.DisplayType); + buffer.WriteInt32(appearance.ItemDisplayInfoID); + buffer.WriteInt32(appearance.DefaultIconFileDataID); + buffer.WriteInt32(appearance.UiOrder); + } + + public static void WriteItemModifiedAppearanceHotfix(ItemModifiedAppearance modAppearance, Framework.IO.ByteBuffer buffer) + { + buffer.WriteInt32(modAppearance.Id); + buffer.WriteInt32(modAppearance.ItemID); + buffer.WriteInt32(modAppearance.ItemAppearanceModifierID); + buffer.WriteInt32(modAppearance.ItemAppearanceID); + buffer.WriteInt32(modAppearance.OrderIndex); + buffer.WriteInt32(modAppearance.TransmogSourceTypeEnum); + } + + public static void WriteItemEffectHotfix(ItemEffect effect, Framework.IO.ByteBuffer buffer) + { + buffer.WriteUInt8(effect.LegacySlotIndex); + buffer.WriteInt8(effect.TriggerType); + buffer.WriteInt16(effect.Charges); + buffer.WriteInt32(effect.CoolDownMSec); + buffer.WriteInt32(effect.CategoryCoolDownMSec); + buffer.WriteUInt16(effect.SpellCategoryID); + buffer.WriteInt32(effect.SpellID); + buffer.WriteUInt16(effect.ChrSpecializationID); + buffer.WriteInt32(effect.ParentItemID); + } + + public static List FindHotfixesByRecordIdAndTable(uint id, DB2Hash table, uint startId = 0) + { + return Hotfixes.Values.Where(hotfix => hotfix.HotfixId >= startId && hotfix.TableHash == table && hotfix.RecordId == id).ToList(); + } + + public static void UpdateHotfix(object obj, bool remove = false) + { + void DoStuff(uint recordId, DB2Hash table, Action writer) + { + List oldRecords = FindHotfixesByRecordIdAndTable(recordId, table, HotfixItemBegin); + if (oldRecords.Count == 0) + { + // We have a new entry + HotfixRecord record = new HotfixRecord(); + record.Status = HotfixStatus.Valid; + record.TableHash = table; + record.HotfixId = GetFirstFreeId(Hotfixes, HotfixItemBegin); + record.UniqueId = record.HotfixId; + record.RecordId = recordId; + writer(record.HotfixContent); + Hotfixes.Add(record.HotfixId, record); + } + else + { + IEnumerable oldRecordsToBeInvalided = oldRecords.SkipLast(1); + foreach (var record in oldRecordsToBeInvalided) // TODO maybe just delete these? + { + record.Status = HotfixStatus.Invalid; + record.HotfixContent = new(); + Log.Print(LogType.Storage, $"Got duplicate record for record {record.RecordId} in {record.TableHash}"); + } + + HotfixRecord recordToOverwrite = oldRecords.Last(); + recordToOverwrite.HotfixContent = new(); + writer(recordToOverwrite.HotfixContent); + Hotfixes[recordToOverwrite.HotfixId] = recordToOverwrite; + } + } + + if (obj is ItemRecord) + { + ItemRecord item = (ItemRecord)obj; + DoStuff((uint)item.Id, DB2Hash.Item, writer: (hotfixContentTargetBuffer) => WriteItemHotfix(item, hotfixContentTargetBuffer)); + + } + if (obj is ItemSparseRecord) + { + ItemSparseRecord itemSparse = (ItemSparseRecord)obj; + DoStuff((uint)itemSparse.Id, DB2Hash.ItemSparse, writer: (hotfixContentTargetBuffer) => WriteItemSparseHotfix(itemSparse, hotfixContentTargetBuffer)); + } + if (obj is ItemEffect) + { + ItemEffect effect = (ItemEffect)obj; + DoStuff((uint)effect.Id, DB2Hash.ItemEffect, writer: (hotfixContentTargetBuffer) => WriteItemEffectHotfix(effect, hotfixContentTargetBuffer)); + } + if (obj is ItemAppearance) + { + ItemAppearance appearance = (ItemAppearance)obj; + DoStuff((uint)appearance.Id, DB2Hash.ItemAppearance, writer: (hotfixContentTargetBuffer) => WriteItemAppearanceHotfix(appearance, hotfixContentTargetBuffer)); + } + if (obj is ItemModifiedAppearance) + { + ItemModifiedAppearance modAppearance = (ItemModifiedAppearance)obj; + DoStuff((uint)modAppearance.Id, DB2Hash.ItemModifiedAppearance, writer: (hotfixContentTargetBuffer) => WriteItemModifiedAppearanceHotfix(modAppearance, hotfixContentTargetBuffer)); + } + } + + public static Server.Packets.HotFixMessage? GenerateItemUpdateIfNeeded(ItemTemplate item) + { + ItemRecord row; + ItemRecordsStore.TryGetValue(item.Entry, out row); + if (row != null) + { + int iconFileDataId = (int)GetItemIconFileDataIdByDisplayId(item.DisplayID); + if (row.ClassId != (byte)item.Class || + row.SubclassId != (byte)item.SubClass || + row.Material != (byte)item.Material || + row.InventoryType != (sbyte)item.InventoryType || + row.RequiredLevel != (int)item.RequiredLevel || + row.SheatheType != (byte)item.SheathType || + row.RandomProperty != (ushort)item.RandomProperty || + row.ItemRandomSuffixGroupId != (ushort)item.RandomSuffix || + row.IconFileDataId != iconFileDataId && iconFileDataId != 0 || + row.MaxDurability != item.MaxDurability || + row.AmmoType != (byte)item.AmmoType || + row.DamageType[0] != (byte)item.DamageTypes[0] || + row.DamageType[1] != (byte)item.DamageTypes[1] || + row.DamageType[2] != (byte)item.DamageTypes[2] || + row.DamageType[3] != (byte)item.DamageTypes[3] || + row.DamageType[4] != (byte)item.DamageTypes[4] || + //row.MinDamage[0] != (ushort)item.DamageMins[0] || + //row.MinDamage[1] != (ushort)item.DamageMins[1] || + //row.MinDamage[2] != (ushort)item.DamageMins[2] || + //row.MinDamage[3] != (ushort)item.DamageMins[3] || + //row.MinDamage[4] != (ushort)item.DamageMins[4] || + //row.MaxDamage[0] != (ushort)item.DamageMaxs[0] || + //row.MaxDamage[1] != (ushort)item.DamageMaxs[1] || + //row.MaxDamage[2] != (ushort)item.DamageMaxs[2] || + //row.MaxDamage[3] != (ushort)item.DamageMaxs[3] || + //row.MaxDamage[4] != (ushort)item.DamageMaxs[4] || + //row.Resistances[0] != (short)item.Armor || + row.Resistances[1] != (short)item.HolyResistance || + row.Resistances[2] != (short)item.FireResistance || + row.Resistances[3] != (short)item.NatureResistance || + row.Resistances[4] != (short)item.FrostResistance || + row.Resistances[5] != (short)item.ShadowResistance || + row.Resistances[6] != (short)item.ArcaneResistance) + { + Log.Print(LogType.Storage, $"Item #{item.Entry} needs to be updated."); + + string msg; + if (row.ClassId != (byte)item.Class) + Log.Print(LogType.Storage, $"ClassId {row.ClassId} vs {item.Class}"); + if (row.SubclassId != (byte)item.SubClass) + Log.Print(LogType.Storage, $"SubclassId {row.SubclassId} vs {item.SubClass}"); + if (row.Material != (byte)item.Material) + Log.Print(LogType.Storage, $"Material {row.Material} vs {item.Material}"); + if (row.InventoryType != (sbyte)item.InventoryType) + Log.Print(LogType.Storage, $"InventoryType {row.InventoryType} vs {item.InventoryType}"); + if (row.RequiredLevel != (int)item.RequiredLevel) + Log.Print(LogType.Storage, $"RequiredLevel {row.RequiredLevel} vs {item.RequiredLevel}"); + if (row.SheatheType != (byte)item.SheathType) + Log.Print(LogType.Storage, $"SheatheType {row.SheatheType} vs {item.SheathType}"); + if (row.RandomProperty != (ushort)item.RandomProperty) + Log.Print(LogType.Storage, $"RandomProperty {row.RandomProperty} vs {item.RandomProperty}"); + if (row.ItemRandomSuffixGroupId != (ushort)item.RandomSuffix) + Log.Print(LogType.Storage, $"ItemRandomSuffixGroupId {row.ItemRandomSuffixGroupId} vs {item.RandomSuffix}"); + if (row.IconFileDataId != iconFileDataId) + Log.Print(LogType.Storage, $"IconFileDataId {row.IconFileDataId} vs {iconFileDataId}"); + if (row.MaxDurability != item.MaxDurability) + Log.Print(LogType.Storage, $"MaxDurability {row.MaxDurability} vs {item.MaxDurability}"); + if (row.AmmoType != (byte)item.AmmoType) + Log.Print(LogType.Storage, $"AmmoType {row.AmmoType} vs {item.AmmoType}"); + for (int i = 0; i < 5; i++) + { + if (row.DamageType[i] != (byte)item.DamageTypes[i]) + Log.Print(LogType.Storage, $"DamageType[{i}] {row.DamageType[i]} vs {item.DamageTypes[i]}"); + } + if (row.Resistances[1] != (short)item.HolyResistance) + Log.Print(LogType.Storage, $"Resistances[1] {row.Resistances[1]} vs {item.HolyResistance}"); + if (row.Resistances[2] != (short)item.FireResistance) + Log.Print(LogType.Storage, $"Resistances[2] {row.Resistances[2]} vs {item.FireResistance}"); + if (row.Resistances[3] != (short)item.NatureResistance) + Log.Print(LogType.Storage, $"Resistances[3] {row.Resistances[3]} vs {item.NatureResistance}"); + if (row.Resistances[4] != (short)item.FrostResistance) + Log.Print(LogType.Storage, $"Resistances[4] {row.Resistances[4]} vs {item.FrostResistance}"); + if (row.Resistances[5] != (short)item.ShadowResistance) + Log.Print(LogType.Storage, $"Resistances[5] {row.Resistances[5]} vs {item.ShadowResistance}"); + if (row.Resistances[6] != (short)item.ArcaneResistance) + Log.Print(LogType.Storage, $"Resistances[6] {row.Resistances[6]} vs {item.ArcaneResistance}"); + + // something is different so update current data + UpdateItemRecord(row, item); + UpdateHotfix(row); + return GenerateHotFixMessage(row); + } + } + else + { + // item is missing so add new record + //Log.Print(LogType.Storage, $"Item #{item.Entry} needs to be created."); + row = AddItemRecord(item); + if (row == null) + return null; + + UpdateHotfix(row); + return GenerateHotFixMessage(row); + } + return null; + } + + public static Server.Packets.HotFixMessage? GenerateItemSparseUpdateIfNeeded(ItemTemplate item) + { + ItemSparseRecord row; + ItemSparseRecordsStore.TryGetValue(item.Entry, out row); + if (row != null) + { + if (//row.AllowableRace != item.AllowedRaces || + !row.Description.Equals(item.Description) || + !row.Name4.Equals(item.Name[3]) || + !row.Name3.Equals(item.Name[2]) || + !row.Name2.Equals(item.Name[1]) || + !row.Name1.Equals(item.Name[0]) || + row.DurationInInventory != item.Duration || + row.BagFamily != item.BagFamily || + row.RangeMod != item.RangedMod || + //row.Stackable != item.MaxStackSize || + //row.MaxCount != item.MaxCount || + row.RequiredAbility != item.RequiredSpell || + row.SellPrice != item.SellPrice || + row.BuyPrice != item.BuyPrice || + //row.Flags[0] != item.Flags || + //row.Flags[1] != item.FlagsExtra || + row.MaxDurability != item.MaxDurability || + row.RequiredHoliday != (ushort)item.HolidayID || + row.LimitCategory != (ushort)item.ItemLimitCategory || + row.GemProperties != (ushort)item.GemProperties || + row.SocketMatchEnchantmentId != (ushort)item.SocketBonus || + row.TotemCategoryId != (ushort)item.TotemCategory || + row.InstanceBound != (ushort)item.MapID || + row.ZoneBound[0] != (ushort)item.AreaID || + row.ItemSet != (ushort)item.ItemSet || + row.LockId != (ushort)item.LockId || + row.StartQuestId != (ushort)item.StartQuestId || + row.PageText != (ushort)item.PageText || + row.Delay != (ushort)item.Delay || + row.RequiredReputationId != (ushort)item.RequiredRepFaction || + row.RequiredSkillRank != (ushort)item.RequiredSkillLevel || + row.RequiredSkill != (ushort)item.RequiredSkillId || + row.ItemLevel != (ushort)item.ItemLevel || + //row.AllowableClass != (short)item.AllowedClasses || + row.ItemRandomSuffixGroupId != (ushort)item.RandomSuffix || + row.RandomProperty != (ushort)item.RandomProperty || + //row.MinDamage[0] != (ushort)item.DamageMins[0] || + //row.MinDamage[1] != (ushort)item.DamageMins[1] || + //row.MinDamage[2] != (ushort)item.DamageMins[2] || + //row.MinDamage[3] != (ushort)item.DamageMins[3] || + //row.MinDamage[4] != (ushort)item.DamageMins[4] || + //row.MaxDamage[0] != (ushort)item.DamageMaxs[0] || + //row.MaxDamage[1] != (ushort)item.DamageMaxs[1] || + //row.MaxDamage[2] != (ushort)item.DamageMaxs[2] || + //row.MaxDamage[3] != (ushort)item.DamageMaxs[3] || + //row.MaxDamage[4] != (ushort)item.DamageMaxs[4] || + //row.Resistances[0] != (short)item.Armor || + row.Resistances[1] != (short)item.HolyResistance || + row.Resistances[2] != (short)item.FireResistance || + row.Resistances[3] != (short)item.NatureResistance || + row.Resistances[4] != (short)item.FrostResistance || + row.Resistances[5] != (short)item.ShadowResistance || + row.Resistances[6] != (short)item.ArcaneResistance || + row.ScalingStatDistributionId != (ushort)item.ScalingStatDistribution || + row.SocketType[0] != ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[0]) || + row.SocketType[1] != ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[1]) || + row.SocketType[2] != ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[2]) || + row.SheatheType != (byte)item.SheathType || + row.Material != (byte)item.Material || + row.PageMaterial != (byte)item.PageMaterial || + row.PageLanguage != (byte)item.Language || + row.Bonding != (byte)item.Bonding || + row.DamageType != (byte)item.DamageTypes[0] || + row.StatType[0] != (sbyte)item.StatTypes[0] && (row.StatValue[0] != 0 || item.StatValues[0] != 0) || + row.StatType[1] != (sbyte)item.StatTypes[1] && (row.StatValue[1] != 0 || item.StatValues[1] != 0) || + row.StatType[2] != (sbyte)item.StatTypes[2] && (row.StatValue[2] != 0 || item.StatValues[2] != 0) || + row.StatType[3] != (sbyte)item.StatTypes[3] && (row.StatValue[3] != 0 || item.StatValues[3] != 0) || + row.StatType[4] != (sbyte)item.StatTypes[4] && (row.StatValue[4] != 0 || item.StatValues[4] != 0) || + row.StatType[5] != (sbyte)item.StatTypes[5] && (row.StatValue[5] != 0 || item.StatValues[5] != 0) || + row.StatType[6] != (sbyte)item.StatTypes[6] && (row.StatValue[6] != 0 || item.StatValues[6] != 0) || + row.StatType[7] != (sbyte)item.StatTypes[7] && (row.StatValue[7] != 0 || item.StatValues[7] != 0) || + row.StatType[8] != (sbyte)item.StatTypes[8] && (row.StatValue[8] != 0 || item.StatValues[8] != 0) || + row.StatType[9] != (sbyte)item.StatTypes[9] && (row.StatValue[9] != 0 || item.StatValues[9] != 0) || + row.ContainerSlots != (byte)item.ContainerSlots || + row.RequiredReputationRank != (byte)item.RequiredRepValue || + row.RequiredCityRank != (byte)item.RequiredCityRank || + row.RequiredHonorRank != (byte)item.RequiredHonorRank || + row.InventoryType != (byte)item.InventoryType || + row.OverallQualityId != (byte)item.Quality || + row.AmmoType != (byte)item.AmmoType || + row.StatValue[0] != (sbyte)item.StatValues[0] || + row.StatValue[1] != (sbyte)item.StatValues[1] || + row.StatValue[2] != (sbyte)item.StatValues[2] || + row.StatValue[3] != (sbyte)item.StatValues[3] || + row.StatValue[4] != (sbyte)item.StatValues[4] || + row.StatValue[5] != (sbyte)item.StatValues[5] || + row.StatValue[6] != (sbyte)item.StatValues[6] || + row.StatValue[7] != (sbyte)item.StatValues[7] || + row.StatValue[8] != (sbyte)item.StatValues[8] || + row.StatValue[9] != (sbyte)item.StatValues[9] || + row.RequiredLevel != (sbyte)item.RequiredLevel) + { + Log.Print(LogType.Storage, $"ItemSparse #{item.Entry} needs to be updated."); + + if (!row.Description.Equals(item.Description)) + Log.Print(LogType.Storage, $"Description \"{row.Description}\" vs \"{item.Description}\""); + if (!row.Name4.Equals(item.Name[3])) + Log.Print(LogType.Storage, $"Name4 \"{row.Name4}\" vs \"{item.Name[3]}\""); + if (!row.Name3.Equals(item.Name[2])) + Log.Print(LogType.Storage, $"Name3 \"{row.Name3}\" vs \"{item.Name[2]}\""); + if (!row.Name2.Equals(item.Name[1])) + Log.Print(LogType.Storage, $"Name2 \"{row.Name2}\" vs \"{item.Name[1]}\""); + if (!row.Name1.Equals(item.Name[0])) + Log.Print(LogType.Storage, $"Name1 \"{row.Name1}\" vs \"{item.Name[0]}\""); + if (row.DurationInInventory != item.Duration) + Log.Print(LogType.Storage, $"DurationInInventory {row.DurationInInventory} vs {item.Duration}"); + if (row.BagFamily != item.BagFamily) + Log.Print(LogType.Storage, $"BagFamily {row.BagFamily} vs {item.BagFamily}"); + if (row.RangeMod != item.RangedMod) + Log.Print(LogType.Storage, $"RangeMod {row.RangeMod} vs {item.RangedMod}"); + if (row.RequiredAbility != item.RequiredSpell) + Log.Print(LogType.Storage, $"RequiredAbility {row.RequiredAbility} vs {item.RequiredSpell}"); + if (row.SellPrice != item.SellPrice) + Log.Print(LogType.Storage, $"SellPrice {row.SellPrice} vs {item.SellPrice}"); + if (row.BuyPrice != item.BuyPrice) + Log.Print(LogType.Storage, $"BuyPrice {row.BuyPrice} vs {item.BuyPrice}"); + if (row.MaxDurability != item.MaxDurability) + Log.Print(LogType.Storage, $"MaxDurability {row.MaxDurability} vs {item.MaxDurability}"); + if (row.RequiredHoliday != (ushort)item.HolidayID) + Log.Print(LogType.Storage, $"RequiredHoliday {row.RequiredHoliday} vs {item.HolidayID}"); + if (row.LimitCategory != (ushort)item.ItemLimitCategory) + Log.Print(LogType.Storage, $"LimitCategory {row.LimitCategory} vs {item.ItemLimitCategory}"); + if (row.GemProperties != (ushort)item.GemProperties) + Log.Print(LogType.Storage, $"GemProperties {row.GemProperties} vs {item.GemProperties}"); + if (row.SocketMatchEnchantmentId != (ushort)item.SocketBonus) + Log.Print(LogType.Storage, $"SocketMatchEnchantmentId {row.SocketMatchEnchantmentId} vs {item.SocketBonus}"); + if (row.TotemCategoryId != (ushort)item.TotemCategory) + Log.Print(LogType.Storage, $"TotemCategoryId {row.TotemCategoryId} vs {item.TotemCategory}"); + if (row.InstanceBound != (ushort)item.MapID) + Log.Print(LogType.Storage, $"InstanceBound {row.InstanceBound} vs {item.MapID}"); + if (row.ZoneBound[0] != (ushort)item.AreaID) + Log.Print(LogType.Storage, $"ZoneBound[0] {row.ZoneBound[0]} vs {item.AreaID}"); + if (row.ItemSet != (ushort)item.ItemSet) + Log.Print(LogType.Storage, $"ItemSet {row.ItemSet} vs {item.ItemSet}"); + if (row.LockId != (ushort)item.LockId) + Log.Print(LogType.Storage, $"LockId {row.LockId} vs {item.LockId}"); + if (row.StartQuestId != (ushort)item.StartQuestId) + Log.Print(LogType.Storage, $"StartQuestId {row.StartQuestId} vs {item.StartQuestId}"); + if (row.PageText != (ushort)item.PageText) + Log.Print(LogType.Storage, $"PageText {row.PageText} vs {item.PageText}"); + if (row.Delay != (ushort)item.Delay) + Log.Print(LogType.Storage, $"Delay {row.Delay} vs {item.Delay}"); + if (row.RequiredReputationId != (ushort)item.RequiredRepFaction) + Log.Print(LogType.Storage, $"RequiredReputationId {row.RequiredReputationId} vs {item.RequiredRepFaction}"); + if (row.RequiredSkillRank != (ushort)item.RequiredSkillLevel) + Log.Print(LogType.Storage, $"RequiredSkillRank {row.RequiredSkillRank} vs {item.RequiredSkillLevel}"); + if (row.RequiredSkill != (ushort)item.RequiredSkillId) + Log.Print(LogType.Storage, $"RequiredSkill {row.RequiredSkill} vs {item.RequiredSkillId}"); + if (row.ItemLevel != (ushort)item.ItemLevel) + Log.Print(LogType.Storage, $"ItemLevel {row.ItemLevel} vs {item.ItemLevel}"); + if (row.ItemRandomSuffixGroupId != (ushort)item.RandomSuffix) + Log.Print(LogType.Storage, $"ItemRandomSuffixGroupId {row.ItemRandomSuffixGroupId} vs {item.RandomSuffix}"); + if (row.RandomProperty != (ushort)item.RandomProperty) + Log.Print(LogType.Storage, $"RandomProperty {row.RandomProperty} vs {item.RandomProperty}"); + if (row.Resistances[1] != (short)item.HolyResistance) + Log.Print(LogType.Storage, $"Resistances[1] {row.Resistances[1]} vs {item.HolyResistance}"); + if (row.Resistances[2] != (short)item.FireResistance) + Log.Print(LogType.Storage, $"Resistances[2] {row.Resistances[2]} vs {item.FireResistance}"); + if (row.Resistances[3] != (short)item.NatureResistance) + Log.Print(LogType.Storage, $"Resistances[3] {row.Resistances[3]} vs {item.NatureResistance}"); + if (row.Resistances[4] != (short)item.FrostResistance) + Log.Print(LogType.Storage, $"Resistances[4] {row.Resistances[4]} vs {item.FrostResistance}"); + if (row.Resistances[5] != (short)item.ShadowResistance) + Log.Print(LogType.Storage, $"Resistances[5] {row.Resistances[5]} vs {item.ShadowResistance}"); + if (row.Resistances[6] != (short)item.ArcaneResistance) + Log.Print(LogType.Storage, $"Resistances[6] {row.Resistances[6]} vs {item.ArcaneResistance}"); + if (row.ScalingStatDistributionId != (ushort)item.ScalingStatDistribution) + Log.Print(LogType.Storage, $"ScalingStatDistributionId {row.ScalingStatDistributionId} vs {item.ScalingStatDistribution}"); + for (int i = 0; i < 3; i++) + { + if (row.SocketType[i] != ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[i])) + Log.Print(LogType.Storage, $"SocketType[{i}] {row.SocketType[i]} vs {ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[i])}"); + } + if (row.SheatheType != (byte)item.SheathType) + Log.Print(LogType.Storage, $"SheatheType {row.SheatheType} vs {item.SheathType}"); + if (row.Material != (byte)item.Material) + Log.Print(LogType.Storage, $"Material {row.Material} vs {item.Material}"); + if (row.PageMaterial != (byte)item.PageMaterial) + Log.Print(LogType.Storage, $"PageMaterial {row.PageMaterial} vs {item.PageMaterial}"); + if (row.PageLanguage != (byte)item.Language) + Log.Print(LogType.Storage, $"PageLanguage {row.PageLanguage} vs {item.Language}"); + if (row.Bonding != (byte)item.Bonding) + Log.Print(LogType.Storage, $"Bonding {row.Bonding} vs {item.Bonding}"); + if (row.DamageType != (byte)item.DamageTypes[0]) + Log.Print(LogType.Storage, $"DamageType {row.DamageType} vs {item.DamageTypes[0]}"); + for (int i = 0; i < 10; i++) + { + if (row.StatType[i] != (sbyte)item.StatTypes[i] && (row.StatValue[i] != 0 || item.StatValues[i] != 0)) + Log.Print(LogType.Storage, $"StatType[{i}] {row.StatType[i]} vs {item.StatTypes[i]}"); + } + if (row.ContainerSlots != (byte)item.ContainerSlots) + Log.Print(LogType.Storage, $"ContainerSlots {row.ContainerSlots} vs {item.ContainerSlots}"); + if (row.RequiredReputationRank != (byte)item.RequiredRepValue) + Log.Print(LogType.Storage, $"RequiredReputationRank {row.RequiredReputationRank} vs {item.RequiredRepValue}"); + if (row.RequiredCityRank != (byte)item.RequiredCityRank) + Log.Print(LogType.Storage, $"RequiredCityRank {row.RequiredCityRank} vs {item.RequiredCityRank}"); + if (row.RequiredHonorRank != (byte)item.RequiredHonorRank) + Log.Print(LogType.Storage, $"RequiredHonorRank {row.RequiredHonorRank} vs {item.RequiredHonorRank}"); + if (row.InventoryType != (byte)item.InventoryType) + Log.Print(LogType.Storage, $"InventoryType {row.InventoryType} vs {item.InventoryType}"); + if (row.OverallQualityId != (byte)item.Quality) + Log.Print(LogType.Storage, $"OverallQualityId {row.OverallQualityId} vs {item.Quality}"); + if (row.AmmoType != (byte)item.AmmoType) + Log.Print(LogType.Storage, $"AmmoType {row.AmmoType} vs {item.AmmoType}"); + for (int i = 0; i < 10; i++) + { + if (row.StatValue[0] != (sbyte)item.StatValues[0]) + Log.Print(LogType.Storage, $"StatValue[{i}] {row.StatValue[i]} vs {item.StatValues[i]}"); + } + if (row.RequiredLevel != (sbyte)item.RequiredLevel) + Log.Print(LogType.Storage, $"RequiredLevel {row.RequiredLevel} vs {item.RequiredLevel}"); + + // something is different so update current data + UpdateItemSparseRecord(row, item); + + // sending db reply for existing itemsparse entry crashes game, so prepare hotfix for next login + UpdateHotfix(row); + return null; + } + } + else + { + // item is missing so add new record + //Log.Print(LogType.Storage, $"ItemSparse #{item.Entry} needs to be created."); + row = AddItemSparseRecord(item); + if (row == null) + return null; + + UpdateHotfix(row); + return GenerateHotFixMessage(row); + } + return null; + } + + public static Server.Packets.HotFixMessage? GenerateItemEffectUpdateIfNeeded(ItemTemplate item, byte slot) + { + ItemEffect effect = GetItemEffectByItemId(item.Entry, slot); + if (effect != null) + { + // compare to spell data + bool wrongCategory = false; + bool wrongCooldown = false; + bool wrongCatCooldown = false; + if (item.TriggeredSpellIds[slot] > 0) + { + ItemSpellsData data; + ItemSpellsDataStore.TryGetValue((uint)item.TriggeredSpellIds[slot], out data); + if (data != null) + { + // category + if (effect.SpellCategoryID != item.TriggeredSpellCategories[slot]) + wrongCategory = data.Category != item.TriggeredSpellCategories[slot]; + // cooldown + if (Math.Abs(effect.CoolDownMSec - item.TriggeredSpellCooldowns[slot]) > 1) + wrongCooldown = data.RecoveryTime != item.TriggeredSpellCooldowns[slot]; + // category cooldown + if (Math.Abs(effect.CategoryCoolDownMSec - item.TriggeredSpellCategoryCooldowns[slot]) > 1) + wrongCatCooldown = data.CategoryRecoveryTime != item.TriggeredSpellCategoryCooldowns[slot]; + } + } + if (effect.TriggerType != item.TriggeredSpellTypes[slot] || + effect.Charges != item.TriggeredSpellCharges[slot] || + wrongCooldown || + wrongCatCooldown || + wrongCategory || + effect.SpellID != item.TriggeredSpellIds[slot]) + { + if (item.TriggeredSpellIds[slot] > 0) + { + Log.Print(LogType.Storage, $"ItemEffect for item #{item.Entry} slot #{slot} needs to be updated."); + + if (effect.TriggerType != item.TriggeredSpellTypes[slot]) + Log.Print(LogType.Storage, $"TriggerType {effect.TriggerType} vs {item.TriggeredSpellTypes[slot]}"); + if (effect.Charges != item.TriggeredSpellCharges[slot]) + Log.Print(LogType.Storage, $"Charges {effect.Charges} vs {item.TriggeredSpellCharges[slot]}"); + if (wrongCooldown) + Log.Print(LogType.Storage, $"CoolDownMSec {effect.CoolDownMSec} vs {item.TriggeredSpellCooldowns[slot]}"); + if (wrongCatCooldown) + Log.Print(LogType.Storage, $"CategoryCoolDownMSec {effect.CategoryCoolDownMSec} vs {item.TriggeredSpellCategoryCooldowns[slot]}"); + if (wrongCategory) + Log.Print(LogType.Storage, $"SpellCategoryId {effect.SpellCategoryID} vs {item.TriggeredSpellCategories[slot]}"); + if (effect.SpellID != item.TriggeredSpellIds[slot]) + Log.Print(LogType.Storage, $"SpellId {effect.SpellID} vs {item.TriggeredSpellIds[slot]}"); + + effect.TriggerType = (sbyte)item.TriggeredSpellTypes[slot]; + effect.Charges = (short)item.TriggeredSpellCharges[slot]; + effect.CoolDownMSec = wrongCooldown ? item.TriggeredSpellCooldowns[slot] : -1; + effect.CategoryCoolDownMSec = wrongCatCooldown ? item.TriggeredSpellCategoryCooldowns[slot] : -1; + effect.SpellCategoryID = wrongCategory ? (ushort)item.TriggeredSpellCategories[slot] : (ushort)0; + effect.SpellID = item.TriggeredSpellIds[slot]; + + // there is a spell so update current data + UpdateItemEffectRecord(effect, item); + UpdateHotfix(effect); + return GenerateHotFixMessage(effect); + } + else + { + // there is no spell so remove the record + //Log.Print(LogType.Storage, $"ItemEffect for item #{item.Entry} slot #{slot} needs to be deleted."); + RemoveItemEffectRecord(effect); + UpdateHotfix(effect, true); + return GenerateHotFixMessage(effect, true); + } + } + } + else if (item.TriggeredSpellIds[slot] > 0) + { + // there is a spell so add new record + //Log.Print(LogType.Storage, $"ItemEffect for item #{item.Entry} slot #{slot} needs to be created."); + effect = AddItemEffectRecord(item, slot); + if (effect == null) + return null; + + UpdateHotfix(effect); + return GenerateHotFixMessage(effect); + } + return null; + } + + public static Server.Packets.HotFixMessage? GenerateItemAppearanceUpdateIfNeeded(ItemTemplate item) + { + ItemAppearance appearance = GetItemAppearanceByDisplayId(item.DisplayID); + if (appearance != null) + { + // never can happen, should not edit existing ItemAppearance as can affect other items + + /*if (appearance.ItemDisplayInfoID != item.DisplayID) + { + Log.Print(LogType.Storage, $"ItemAppearance for item #{item.Entry}, DisplayID #{item.DisplayID} needs to be updated."); + Log.Print(LogType.Storage, $"ItemDisplayID {appearance.ItemDisplayInfoID} vs {item.DisplayID}"); + + // something is different so update current data + UpdateItemAppearanceRecord(appearance, item); + UpdateItemAppearanceHotfix(appearance); + return GenerateDbReply(appearance); + }*/ + } + else + { + // item appearance is missing so add new record + //Log.Print(LogType.Storage, $"ItemAppearance for item #{item.Entry}, DisplayID #{item.DisplayID} needs to be created."); + appearance = AddItemAppearanceRecord(item); + if (appearance == null) + return null; + + UpdateHotfix(appearance); + return GenerateHotFixMessage(appearance); + } + return null; + } + + public static Server.Packets.HotFixMessage? GenerateItemModifiedAppearanceUpdateIfNeeded(ItemTemplate item) + { + ItemModifiedAppearance modAppearance = GetItemModifiedAppearanceByItemId(item.Entry); + if (modAppearance != null) + { + ItemAppearance appearance; + ItemAppearanceStore.TryGetValue((uint)modAppearance.ItemAppearanceID, out appearance); + if (appearance == null || appearance.ItemDisplayInfoID != item.DisplayID) + { + Log.Print(LogType.Storage, $"ItemModifiedAppearance #{modAppearance.Id} for item #{item.Entry} needs to be updated."); + + if (appearance == null) + Log.Print(LogType.Storage, $"ItemAppearance #{modAppearance.ItemAppearanceID} missing."); + else if (appearance.ItemDisplayInfoID != item.DisplayID) + Log.Print(LogType.Storage, $"DisplayID {appearance.ItemDisplayInfoID} vs {item.DisplayID}"); + + // something is different so update current data + UpdateItemModifiedAppearanceRecord(modAppearance, item); + UpdateHotfix(modAppearance); + return GenerateHotFixMessage(modAppearance); + } + } + else + { + // item modified appearance is missing so add new record + //Log.Print(LogType.Storage, $"ItemModifiedAppearance for item #{item.Entry} needs to be created."); + modAppearance = AddItemModifiedAppearanceRecord(item); + if (modAppearance == null) + return null; + + UpdateHotfix(modAppearance); + return GenerateHotFixMessage(modAppearance); + } + return null; + } + + public static Server.Packets.HotFixMessage? GenerateHotFixMessage(object obj, bool remove = false) + { + Server.Packets.HotFixMessage reply = new(); + + if (obj == null) + { + Log.Print(LogType.Error, $"DBReply for NULL object requested!"); + return null; + } + System.Type type = obj.GetType(); + //Log.Print(LogType.Storage, $"DBReply generating for {type}"); + if (obj is ItemRecord) + { + var records = FindHotfixesByRecordIdAndTable((uint)((ItemRecord)obj).Id, DB2Hash.Item); + reply.Hotfixes.AddRange(records); + } + else if (obj is ItemSparseRecord) + { + var records = FindHotfixesByRecordIdAndTable((uint)((ItemSparseRecord)obj).Id, DB2Hash.ItemSparse); + reply.Hotfixes.AddRange(records); + } + else if (obj is ItemEffect) + { + var records = FindHotfixesByRecordIdAndTable((uint)((ItemEffect)obj).Id, DB2Hash.ItemEffect); + reply.Hotfixes.AddRange(records); + } + else if (obj is ItemAppearance) + { + var records = FindHotfixesByRecordIdAndTable((uint)((ItemAppearance)obj).Id, DB2Hash.ItemAppearance); + reply.Hotfixes.AddRange(records); + } + else if (obj is ItemModifiedAppearance) + { + var records = FindHotfixesByRecordIdAndTable((uint)((ItemModifiedAppearance)obj).Id, DB2Hash.ItemModifiedAppearance); + reply.Hotfixes.AddRange(records); + } + else + { + Log.Print(LogType.Error, $"Unsupported DBReply requested! ({type})"); + return null; + } + return reply; + } + + public static ItemRecord AddItemRecord(ItemTemplate item) + { + ItemRecord record = new(); + record.Id = (int)item.Entry; + UpdateItemRecord(record, item); + ItemRecordsStore.Add((uint)record.Id, record); + Log.Print(LogType.Storage, $"Item #{record.Id} created."); + return record; + } + + public static void UpdateItemRecord(ItemRecord row, ItemTemplate item) + { + row.ClassId = (byte)item.Class; + row.SubclassId = (byte)item.SubClass; + row.Material = (byte)item.Material; + row.InventoryType = (sbyte)item.InventoryType; + row.RequiredLevel = (int)item.RequiredLevel; + row.SheatheType = (byte)item.SheathType; + row.RandomProperty = (ushort)item.RandomProperty; + row.ItemRandomSuffixGroupId = (ushort)item.RandomSuffix; + row.SoundOverrideSubclassId = -1; + row.ScalingStatDistributionId = 0; + row.IconFileDataId = (int)GetItemIconFileDataIdByDisplayId(item.DisplayID); + row.ItemGroupSoundsId = 0; + row.ContentTuningId = 0; + row.MaxDurability = item.MaxDurability; + row.AmmoType = (byte)item.AmmoType; + row.DamageType[0] = (byte)item.DamageTypes[0]; + row.DamageType[1] = (byte)item.DamageTypes[1]; + row.DamageType[2] = (byte)item.DamageTypes[2]; + row.DamageType[3] = (byte)item.DamageTypes[3]; + row.DamageType[4] = (byte)item.DamageTypes[4]; + row.Resistances[0] = (short)item.Armor; + row.Resistances[1] = (short)item.HolyResistance; + row.Resistances[2] = (short)item.FireResistance; + row.Resistances[3] = (short)item.NatureResistance; + row.Resistances[4] = (short)item.FrostResistance; + row.Resistances[5] = (short)item.ShadowResistance; + row.Resistances[6] = (short)item.ArcaneResistance; + row.MinDamage[0] = (ushort)item.DamageMins[0]; + row.MinDamage[1] = (ushort)item.DamageMins[1]; + row.MinDamage[2] = (ushort)item.DamageMins[2]; + row.MinDamage[3] = (ushort)item.DamageMins[3]; + row.MinDamage[4] = (ushort)item.DamageMins[4]; + row.MaxDamage[0] = (ushort)item.DamageMaxs[0]; + row.MaxDamage[1] = (ushort)item.DamageMaxs[1]; + row.MaxDamage[2] = (ushort)item.DamageMaxs[2]; + row.MaxDamage[3] = (ushort)item.DamageMaxs[3]; + row.MaxDamage[4] = (ushort)item.DamageMaxs[4]; + + if (ItemRecordsStore.ContainsKey(item.Entry)) + { + ItemRecordsStore[item.Entry] = row; + //Log.Print(LogType.Storage, $"Item #{row.Id} updated."); + } + } + + public static ItemSparseRecord AddItemSparseRecord(ItemTemplate item) + { + ItemSparseRecord record = new(); + record.Id = (int)item.Entry; + UpdateItemSparseRecord(record, item); + ItemSparseRecordsStore.Add((uint)record.Id, record); + Log.Print(LogType.Storage, $"ItemSparse #{record.Id} created."); + return record; + } + + public static void UpdateItemSparseRecord(ItemSparseRecord row, ItemTemplate item) + { + int[] StatValues = new int[10]; + for (int i = 0; i < item.StatsCount; i++) + { + StatValues[i] = item.StatValues[i]; + if (StatValues[i] > 127) + StatValues[i] = 127; + if (StatValues[i] < -127) + StatValues[i] = -127; + } + + row.AllowableRace = item.AllowedRaces; + row.Description = item.Description; + row.Name4 = item.Name[3]; + row.Name3 = item.Name[2]; + row.Name2 = item.Name[1]; + row.Name1 = item.Name[0]; + row.DurationInInventory = item.Duration; + row.BagFamily = item.BagFamily; + row.RangeMod = item.RangedMod; + row.Stackable = item.MaxStackSize; + row.MaxCount = item.MaxCount; + row.RequiredAbility = item.RequiredSpell; + row.SellPrice = item.SellPrice; + row.BuyPrice = item.BuyPrice; + row.Flags[0] = item.Flags; + row.Flags[1] = item.FlagsExtra; + row.MaxDurability = item.MaxDurability; + row.RequiredHoliday = (ushort)item.HolidayID; + row.LimitCategory = (ushort)item.ItemLimitCategory; + row.GemProperties = (ushort)item.GemProperties; + row.SocketMatchEnchantmentId = (ushort)item.SocketBonus; + row.TotemCategoryId = (ushort)item.TotemCategory; + row.InstanceBound = (ushort)item.MapID; + row.ZoneBound[0] = (ushort)item.AreaID; + row.ItemSet = (ushort)item.ItemSet; + row.LockId = (ushort)item.LockId; + row.StartQuestId = (ushort)item.StartQuestId; + row.PageText = (ushort)item.PageText; + row.Delay = (ushort)item.Delay; + row.RequiredReputationId = (ushort)item.RequiredRepFaction; + row.RequiredSkillRank = (ushort)item.RequiredSkillLevel; + row.RequiredSkill = (ushort)item.RequiredSkillId; + row.ItemLevel = (ushort)item.ItemLevel; + row.AllowableClass = (short)item.AllowedClasses; + row.ItemRandomSuffixGroupId = (ushort)item.RandomSuffix; + row.RandomProperty = (ushort)item.RandomProperty; + row.MinDamage[0] = (ushort)item.DamageMins[0]; + row.MinDamage[1] = (ushort)item.DamageMins[1]; + row.MinDamage[2] = (ushort)item.DamageMins[2]; + row.MinDamage[3] = (ushort)item.DamageMins[3]; + row.MinDamage[4] = (ushort)item.DamageMins[4]; + row.MaxDamage[0] = (ushort)item.DamageMaxs[0]; + row.MaxDamage[1] = (ushort)item.DamageMaxs[1]; + row.MaxDamage[2] = (ushort)item.DamageMaxs[2]; + row.MaxDamage[3] = (ushort)item.DamageMaxs[3]; + row.MaxDamage[4] = (ushort)item.DamageMaxs[4]; + row.Resistances[0] = (short)item.Armor; + row.Resistances[1] = (short)item.HolyResistance; + row.Resistances[2] = (short)item.FireResistance; + row.Resistances[3] = (short)item.NatureResistance; + row.Resistances[4] = (short)item.FrostResistance; + row.Resistances[5] = (short)item.ShadowResistance; + row.Resistances[6] = (short)item.ArcaneResistance; + row.ScalingStatDistributionId = (ushort)item.ScalingStatDistribution; + row.SocketType[0] = ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[0]); + row.SocketType[1] = ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[1]); + row.SocketType[2] = ModernVersion.ConvertSocketColor((byte)item.ItemSocketColors[2]); + row.SheatheType = (byte)item.SheathType; + row.Material = (byte)item.Material; + row.PageMaterial = (byte)item.PageMaterial; + row.PageLanguage = (byte)item.Language; + row.Bonding = (byte)item.Bonding; + row.DamageType = (byte)item.DamageTypes[0]; + row.StatType[0] = (sbyte)item.StatTypes[0]; + row.StatType[1] = (sbyte)item.StatTypes[1]; + row.StatType[2] = (sbyte)item.StatTypes[2]; + row.StatType[3] = (sbyte)item.StatTypes[3]; + row.StatType[4] = (sbyte)item.StatTypes[4]; + row.StatType[5] = (sbyte)item.StatTypes[5]; + row.StatType[6] = (sbyte)item.StatTypes[6]; + row.StatType[7] = (sbyte)item.StatTypes[7]; + row.StatType[8] = (sbyte)item.StatTypes[8]; + row.StatType[9] = (sbyte)item.StatTypes[9]; + row.ContainerSlots = (byte)item.ContainerSlots; + row.RequiredReputationRank = (byte)item.RequiredRepValue; + row.RequiredCityRank = (byte)item.RequiredCityRank; + row.RequiredHonorRank = (byte)item.RequiredHonorRank; + row.InventoryType = (byte)item.InventoryType; + row.OverallQualityId = (byte)item.Quality; + row.AmmoType = (byte)item.AmmoType; + row.StatValue[0] = (sbyte)StatValues[0]; + row.StatValue[1] = (sbyte)StatValues[1]; + row.StatValue[2] = (sbyte)StatValues[2]; + row.StatValue[3] = (sbyte)StatValues[3]; + row.StatValue[4] = (sbyte)StatValues[4]; + row.StatValue[5] = (sbyte)StatValues[5]; + row.StatValue[6] = (sbyte)StatValues[6]; + row.StatValue[7] = (sbyte)StatValues[7]; + row.StatValue[8] = (sbyte)StatValues[8]; + row.StatValue[9] = (sbyte)StatValues[9]; + row.RequiredLevel = (sbyte)item.RequiredLevel; + + if (ItemSparseRecordsStore.ContainsKey(item.Entry)) + { + ItemSparseRecordsStore[item.Entry] = row; + //Log.Print(LogType.Storage, $"ItemSparse #{row.Id} updated."); + } + } + + public static ItemEffect AddItemEffectRecord(ItemTemplate item, byte slot) + { + ItemEffect record = new(); + record.Id = (int)GetFirstFreeId(ItemEffectStore); + record.LegacySlotIndex = slot; + UpdateItemEffectRecord(record, item); + ItemEffectStore.Add((uint)record.Id, record); + Log.Print(LogType.Storage, $"ItemEffect #{record.Id} created for item #{item.Entry} slot #{slot}."); + return record; + } + + public static void UpdateItemEffectRecord(ItemEffect effect, ItemTemplate item) + { + byte i = effect.LegacySlotIndex; + effect.TriggerType = (sbyte)item.TriggeredSpellTypes[i]; + effect.Charges = (short)item.TriggeredSpellCharges[i]; + effect.CoolDownMSec = item.TriggeredSpellCooldowns[i]; + effect.CategoryCoolDownMSec = item.TriggeredSpellCategoryCooldowns[i]; + effect.SpellCategoryID = (ushort)item.TriggeredSpellCategories[i]; + effect.SpellID = item.TriggeredSpellIds[i]; + effect.ChrSpecializationID = 0; + effect.ParentItemID = (int)item.Entry; + + if (ItemEffectStore.ContainsKey((uint)effect.Id)) + { + ItemEffectStore[(uint)effect.Id] = effect; + //Log.Print(LogType.Storage, $"ItemEffect #{effect.Id} updated for item #{item.Entry} slot #{i}."); + } + } + + public static void RemoveItemEffectRecord(ItemEffect effect) + { + ItemEffectStore.Remove((uint)effect.Id); + Log.Print(LogType.Storage, $"ItemEffect #{effect.Id} removed for item #{effect.ParentItemID} slot #{effect.LegacySlotIndex}."); + } + + public static ItemAppearance AddItemAppearanceRecord(ItemTemplate item) + { + ItemAppearance record = new(); + record.Id = (int)GetFirstFreeId(ItemAppearanceStore); + UpdateItemAppearanceRecord(record, item); + ItemAppearanceStore.Add((uint)record.Id, record); + Log.Print(LogType.Storage, $"ItemAppearance #{record.Id} created for DisplayID #{item.DisplayID}."); + return record; + } + + public static void UpdateItemAppearanceRecord(ItemAppearance appearance, ItemTemplate item) + { + int fileDataId = (int)GetItemIconFileDataIdByDisplayId(item.DisplayID); + + appearance.DisplayType = 11; // todo find out + appearance.ItemDisplayInfoID = (int)item.DisplayID; + appearance.DefaultIconFileDataID = fileDataId; + appearance.UiOrder = 0; + + if (ItemAppearanceStore.ContainsKey((uint)appearance.Id)) + { + ItemAppearanceStore[(uint)appearance.Id] = appearance; + //Log.Print(LogType.Storage, $"ItemAppearance #{appearance.Id} updated for DisplayID #{item.DisplayID}."); + } + } + + public static ItemModifiedAppearance AddItemModifiedAppearanceRecord(ItemTemplate item) + { + ItemModifiedAppearance record = new(); + record.Id = (int)GetFirstFreeId(ItemModifiedAppearanceStore); + UpdateItemModifiedAppearanceRecord(record, item); + if (record.ItemID != item.Entry) + { + Log.Print(LogType.Error, $"ItemModifiedAppearance #{record.Id} create failed for item #{record.ItemID}."); + return null; + } + ItemModifiedAppearanceStore.Add((uint)record.Id, record); + Log.Print(LogType.Storage, $"ItemModifiedAppearance #{record.Id} created for item #{record.ItemID}."); + return record; + } + + public static void UpdateItemModifiedAppearanceRecord(ItemModifiedAppearance modAppearance, ItemTemplate item) + { + ItemAppearance appearance = GetItemAppearanceByDisplayId(item.DisplayID); + if (appearance == null) // should not happen + { + Log.Print(LogType.Error, $"ItemModifiedAppearance #{modAppearance.Id} update failed: no ItemAppearance for DisplayID #{item.DisplayID}"); + return; + } + + modAppearance.ItemID = (int)item.Entry; + modAppearance.ItemAppearanceModifierID = 0; + modAppearance.ItemAppearanceID = appearance.Id; + modAppearance.OrderIndex = 0; + modAppearance.TransmogSourceTypeEnum = 0; + + if (ItemModifiedAppearanceStore.ContainsKey((uint)modAppearance.Id)) + { + ItemModifiedAppearanceStore[(uint)modAppearance.Id] = modAppearance; + //Log.Print(LogType.Storage, $"ItemModifiedAppearance #{modAppearance.Id} updated for item #{item.Entry}."); + } + } + + public static bool ItemCanHaveModel(ItemTemplate item) + { + // weapons + if (item.Class == 2) + return true; + + // armor (except necklaces, rings, trinkets, relics) + if (item.Class == 4) + { + if (item.SubClass != 7 && + item.SubClass != 8 && + item.SubClass != 9 && + item.InventoryType != 0 && + item.InventoryType != 2 && + item.InventoryType != 11 && + item.InventoryType != 12 && + item.InventoryType != 18 && + item.InventoryType != 28) + return true; + } + + // quivers + if (item.Class == 11 && item.SubClass == 2) + return true; + + return false; + } + public static void LoadCreatureDisplayInfoHotfixes() { var path = Path.Combine("CSV", "Hotfix", $"CreatureDisplayInfo{ModernVersion.ExpansionVersion}.csv"); @@ -2364,6 +4273,97 @@ public static void LoadItemEffectHotfixes() } } } + + public static void LoadItemDisplayInfoHotfixes() + { + var path = Path.Combine("CSV", "Hotfix", $"ItemDisplayInfo{ModernVersion.ExpansionVersion}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + uint counter = 0; + while (!csvParser.EndOfData) + { + counter++; + + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + uint id = uint.Parse(fields[0]); + int itemVisual = int.Parse(fields[1]); + int particleColorID = int.Parse(fields[2]); + uint itemRangedDisplayInfoID = uint.Parse(fields[3]); + uint overrideSwooshSoundKitID = uint.Parse(fields[4]); + int sheatheTransformMatrixID = int.Parse(fields[5]); + int stateSpellVisualKitID = int.Parse(fields[6]); + int sheathedSpellVisualKitID = int.Parse(fields[7]); + uint unsheathedSpellVisualKitID = uint.Parse(fields[8]); + int flags = int.Parse(fields[9]); + uint modelResourcesID1 = uint.Parse(fields[10]); + uint modelResourcesID2 = uint.Parse(fields[11]); + int modelMaterialResourcesID1 = int.Parse(fields[12]); + int modelMaterialResourcesID2 = int.Parse(fields[13]); + int modelType1 = int.Parse(fields[14]); + int modelType2 = int.Parse(fields[15]); + int geosetGroup1 = int.Parse(fields[16]); + int geosetGroup2 = int.Parse(fields[17]); + int geosetGroup3 = int.Parse(fields[18]); + int geosetGroup4 = int.Parse(fields[19]); + int geosetGroup5 = int.Parse(fields[20]); + int geosetGroup6 = int.Parse(fields[21]); + int attachmentGeosetGroup1 = int.Parse(fields[22]); + int attachmentGeosetGroup2 = int.Parse(fields[23]); + int attachmentGeosetGroup3 = int.Parse(fields[24]); + int attachmentGeosetGroup4 = int.Parse(fields[25]); + int attachmentGeosetGroup5 = int.Parse(fields[26]); + int attachmentGeosetGroup6 = int.Parse(fields[27]); + int helmetGeosetVis1 = int.Parse(fields[28]); + int helmetGeosetVis2 = int.Parse(fields[29]); + + HotfixRecord record = new HotfixRecord(); + record.Status = HotfixStatus.Valid; + record.TableHash = DB2Hash.ItemDisplayInfo; + record.HotfixId = HotfixItemDisplayInfoBegin + counter; + record.UniqueId = record.HotfixId; + record.RecordId = id; + record.HotfixContent.WriteInt32(itemVisual); + record.HotfixContent.WriteInt32(particleColorID); + record.HotfixContent.WriteUInt32(itemRangedDisplayInfoID); + record.HotfixContent.WriteUInt32(overrideSwooshSoundKitID); + record.HotfixContent.WriteInt32(sheatheTransformMatrixID); + record.HotfixContent.WriteInt32(stateSpellVisualKitID); + record.HotfixContent.WriteInt32(sheathedSpellVisualKitID); + record.HotfixContent.WriteUInt32(unsheathedSpellVisualKitID); + record.HotfixContent.WriteInt32(flags); + record.HotfixContent.WriteUInt32(modelResourcesID1); + record.HotfixContent.WriteUInt32(modelResourcesID2); + record.HotfixContent.WriteInt32(modelMaterialResourcesID1); + record.HotfixContent.WriteInt32(modelMaterialResourcesID2); + record.HotfixContent.WriteInt32(modelType1); + record.HotfixContent.WriteInt32(modelType2); + record.HotfixContent.WriteInt32(geosetGroup1); + record.HotfixContent.WriteInt32(geosetGroup2); + record.HotfixContent.WriteInt32(geosetGroup3); + record.HotfixContent.WriteInt32(geosetGroup4); + record.HotfixContent.WriteInt32(geosetGroup5); + record.HotfixContent.WriteInt32(geosetGroup6); + record.HotfixContent.WriteInt32(attachmentGeosetGroup1); + record.HotfixContent.WriteInt32(attachmentGeosetGroup2); + record.HotfixContent.WriteInt32(attachmentGeosetGroup3); + record.HotfixContent.WriteInt32(attachmentGeosetGroup4); + record.HotfixContent.WriteInt32(attachmentGeosetGroup5); + record.HotfixContent.WriteInt32(attachmentGeosetGroup6); + record.HotfixContent.WriteInt32(helmetGeosetVis1); + record.HotfixContent.WriteInt32(helmetGeosetVis2); + Hotfixes.Add(record.HotfixId, record); + } + } + } #endregion } @@ -2377,11 +4377,151 @@ public class BroadcastText public ushort[] Emotes = new ushort[3]; public ushort[] EmoteDelays = new ushort[3]; } - public class ItemDisplayData + + public class ItemRecord { - public uint Entry; - public uint DisplayId; + public int Id; + public byte ClassId; + public byte SubclassId; + public byte Material; + public sbyte InventoryType; + public int RequiredLevel; + public byte SheatheType; + public ushort RandomProperty; + public ushort ItemRandomSuffixGroupId; + public sbyte SoundOverrideSubclassId; + public ushort ScalingStatDistributionId; + public int IconFileDataId; + public byte ItemGroupSoundsId; + public int ContentTuningId; + public uint MaxDurability; + public byte AmmoType; + public byte[] DamageType = new byte[5]; + public short[] Resistances = new short[7]; + public ushort[] MinDamage = new ushort[5]; + public ushort[] MaxDamage = new ushort[5]; + } + + public class ItemSparseRecord + { + public int Id; + public long AllowableRace; + public string Description; + public string Name4; + public string Name3; + public string Name2; + public string Name1; + public float DmgVariance = 1; + public uint DurationInInventory; + public float QualityModifier; + public uint BagFamily; + public float RangeMod; + public float[] StatPercentageOfSocket = new float[10]; + public int[] StatPercentEditor = new int[10]; + public int Stackable; + public int MaxCount; + public uint RequiredAbility; + public uint SellPrice; + public uint BuyPrice; + public uint VendorStackCount = 1; + public float PriceVariance = 1; + public float PriceRandomValue = 1; + public uint[] Flags = new uint[4]; + public int OppositeFactionItemId; + public uint MaxDurability; + public ushort ItemNameDescriptionId; + public ushort RequiredTransmogHoliday; + public ushort RequiredHoliday; + public ushort LimitCategory; + public ushort GemProperties; + public ushort SocketMatchEnchantmentId; + public ushort TotemCategoryId; + public ushort InstanceBound; + public ushort[] ZoneBound = new ushort[2]; + public ushort ItemSet; + public ushort LockId; + public ushort StartQuestId; + public ushort PageText; + public ushort Delay; + public ushort RequiredReputationId; + public ushort RequiredSkillRank; + public ushort RequiredSkill; + public ushort ItemLevel; + public short AllowableClass; + public ushort ItemRandomSuffixGroupId; + public ushort RandomProperty; + public ushort[] MinDamage = new ushort[5]; + public ushort[] MaxDamage = new ushort[5]; + public short[] Resistances = new short[7]; + public ushort ScalingStatDistributionId; + public byte ExpansionId = 254; + public byte ArtifactId; + public byte SpellWeight; + public byte SpellWeightCategory; + public byte[] SocketType = new byte[3]; + public byte SheatheType; + public byte Material; + public byte PageMaterial; + public byte PageLanguage; + public byte Bonding; + public byte DamageType; + public sbyte[] StatType = new sbyte[10]; + public byte ContainerSlots; + public byte RequiredReputationRank; + public byte RequiredCityRank; + public byte RequiredHonorRank; public byte InventoryType; + public byte OverallQualityId; + public byte AmmoType; + public sbyte[] StatValue = new sbyte[10]; + public sbyte RequiredLevel; + } + + public class ItemAppearance + { + public int Id; + public byte DisplayType; + public int ItemDisplayInfoID; + public int DefaultIconFileDataID; + public int UiOrder; + } + public class ItemModifiedAppearance + { + public int Id; + public int ItemID; + public int ItemAppearanceModifierID; + public int ItemAppearanceID; + public int OrderIndex; + public int TransmogSourceTypeEnum; + } + public class ItemEffect + { + public int Id; + public byte LegacySlotIndex; + public sbyte TriggerType; + public short Charges; + public int CoolDownMSec; + public int CategoryCoolDownMSec; + public ushort SpellCategoryID; + public int SpellID; + public ushort ChrSpecializationID; + public int ParentItemID; + } + public class ItemSpellsData + { + public int Id; + public int Category; + public int RecoveryTime; + public int CategoryRecoveryTime; + } + public class ItemDisplayData + { + public int Id; + public int IconFileDataId; + public int ModelResourcesId_1; + public int ModelResourcesId_2; + public int ModelMaterialResourcesId_1; + public int ModelMaterialResourcesId_2; } public class Battleground { diff --git a/HermesProxy/World/Objects/HotfixRecord.cs b/HermesProxy/World/Objects/HotfixRecord.cs index 869c2106..5df17295 100644 --- a/HermesProxy/World/Objects/HotfixRecord.cs +++ b/HermesProxy/World/Objects/HotfixRecord.cs @@ -23,7 +23,7 @@ public void WriteAvailable(WorldPacket data) data.WriteUInt32(HotfixId); data.WriteUInt32((uint)TableHash); } - public void WriteConnect(WorldPacket data) + public void WriteHotFixMessageContent(WorldPacket data) { data.WriteUInt32(HotfixId); data.WriteUInt32(UniqueId); diff --git a/HermesProxy/World/Objects/ItemTemplate.cs b/HermesProxy/World/Objects/ItemTemplate.cs index 2913a622..15d056f7 100644 --- a/HermesProxy/World/Objects/ItemTemplate.cs +++ b/HermesProxy/World/Objects/ItemTemplate.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; +using HermesProxy.Enums; namespace HermesProxy.World.Objects { @@ -21,8 +22,8 @@ public class ItemTemplate public uint BuyPrice; public uint SellPrice; public int InventoryType; - public uint AllowedClasses; - public uint AllowedRaces; + public int AllowedClasses; + public int AllowedRaces; public uint ItemLevel; public uint RequiredLevel; public uint RequiredSkillId; @@ -86,5 +87,185 @@ public class ItemTemplate public uint Duration; public int ItemLimitCategory; public int HolidayID; + + public void ReadFromLegacyPacket(uint entry, WorldPacket packet) + { + Entry = entry; + + // Packet start + Class = packet.ReadInt32(); + SubClass = packet.ReadUInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_3_6299)) + SoundOverrideSubclass = packet.ReadInt32(); + + for (int i = 0; i < 4; i++) + Name[i] = packet.ReadCString(); + + DisplayID = packet.ReadUInt32(); + + Quality = packet.ReadInt32(); + + Flags = packet.ReadUInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_2_0_10192)) + FlagsExtra = packet.ReadUInt32(); + + BuyPrice = packet.ReadUInt32(); + + SellPrice = packet.ReadUInt32(); + + InventoryType = packet.ReadInt32(); + + AllowedClasses = packet.ReadInt32(); + + AllowedRaces = packet.ReadInt32(); + + ItemLevel = packet.ReadUInt32(); + + RequiredLevel = packet.ReadUInt32(); + + RequiredSkillId = packet.ReadUInt32(); + + RequiredSkillLevel = packet.ReadUInt32(); + + RequiredSpell = packet.ReadUInt32(); + + RequiredHonorRank = packet.ReadUInt32(); + + RequiredCityRank = packet.ReadUInt32(); + + RequiredRepFaction = packet.ReadUInt32(); + + RequiredRepValue = packet.ReadUInt32(); + + MaxCount = packet.ReadInt32(); + + MaxStackSize = packet.ReadInt32(); + + ContainerSlots = packet.ReadUInt32(); + + StatsCount = LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056) ? packet.ReadUInt32() : 10; + if (StatsCount > 10) + { + StatTypes = new int[StatsCount]; + StatValues = new int[StatsCount]; + } + for (int i = 0; i < StatsCount; i++) + { + StatTypes[i] = packet.ReadInt32(); + StatValues[i] = packet.ReadInt32(); + } + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) + { + ScalingStatDistribution = packet.ReadInt32(); + ScalingStatValue = packet.ReadUInt32(); + } + + int dmgCount = LegacyVersion.AddedInVersion(ClientVersionBuild.V3_1_0_9767) ? 2 : 5; + for (int i = 0; i < dmgCount; i++) + { + DamageMins[i] = packet.ReadFloat(); + DamageMaxs[i] = packet.ReadFloat(); + DamageTypes[i] = packet.ReadInt32(); + } + + Armor = packet.ReadUInt32(); + HolyResistance = packet.ReadUInt32(); + FireResistance = packet.ReadUInt32(); + NatureResistance = packet.ReadUInt32(); + FrostResistance = packet.ReadUInt32(); + ShadowResistance = packet.ReadUInt32(); + ArcaneResistance = packet.ReadUInt32(); + + Delay = packet.ReadUInt32(); + + AmmoType = packet.ReadInt32(); + + RangedMod = packet.ReadFloat(); + + for (byte i = 0; i < 5; i++) + { + TriggeredSpellIds[i] = packet.ReadInt32(); + TriggeredSpellTypes[i] = packet.ReadInt32(); + TriggeredSpellCharges[i] = packet.ReadInt32(); + TriggeredSpellCooldowns[i] = packet.ReadInt32(); + TriggeredSpellCategories[i] = packet.ReadUInt32(); + TriggeredSpellCategoryCooldowns[i] = packet.ReadInt32(); + + if (TriggeredSpellIds[i] != 0) + GameData.SaveItemEffectSlot(Entry, (uint)TriggeredSpellIds[i], i); + } + + Bonding = packet.ReadInt32(); + + Description = packet.ReadCString(); + + PageText = packet.ReadUInt32(); + + Language = packet.ReadInt32(); + + PageMaterial = packet.ReadInt32(); + + StartQuestId = packet.ReadUInt32(); + + LockId = packet.ReadUInt32(); + + Material = packet.ReadInt32(); + + // in modern client files, there are no items with material -1 instead of 0 + // change it so we dont need to send hotfix for this + if (Material < 0) + Material = 0; + + SheathType = packet.ReadInt32(); + + RandomProperty = packet.ReadInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180)) + RandomSuffix = packet.ReadUInt32(); + + Block = packet.ReadUInt32(); + + ItemSet = packet.ReadUInt32(); + + MaxDurability = packet.ReadUInt32(); + + AreaID = packet.ReadUInt32(); + + // In this single (?) case, map 0 means no map + MapID = packet.ReadInt32(); + + BagFamily = packet.ReadUInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180)) + { + TotemCategory = packet.ReadInt32(); + + for (int i = 0; i < 3; i++) + { + ItemSocketColors[i] = packet.ReadInt32(); + SocketContent[i] = packet.ReadUInt32(); + } + + SocketBonus = packet.ReadInt32(); + + GemProperties = packet.ReadInt32(); + + RequiredDisenchantSkill = packet.ReadInt32(); + + ArmorDamageModifier = packet.ReadFloat(); + } + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_4_2_8209)) + Duration = packet.ReadUInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) + ItemLimitCategory = packet.ReadInt32(); + + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_1_0_9767)) + HolidayID = packet.ReadInt32(); + } } } diff --git a/HermesProxy/World/Server/CurrentPlayerStorage.cs b/HermesProxy/World/Server/CurrentPlayerStorage.cs index 831e7e30..dbfadaa8 100644 --- a/HermesProxy/World/Server/CurrentPlayerStorage.cs +++ b/HermesProxy/World/Server/CurrentPlayerStorage.cs @@ -88,7 +88,6 @@ public void Reload() public class CompletedQuestTracker { private Dictionary _cachedQuestCompleted = new(); - public bool NeedsToBeForceSent { get; set; } = true; public GlobalSessionData Session { get; } diff --git a/HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs b/HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs index 8d9e455b..66aa2b74 100644 --- a/HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs @@ -22,6 +22,8 @@ void HandleDbQueryBulk(DBQueryBulk query) reply.Status = HotfixStatus.Invalid; reply.Timestamp = (uint)Time.UnixTime; + Log.PrintNet(LogType.Debug, LogNetDir.C2P, $"DB_QUERY_BULK requested ({query.TableHash}) #{id}"); + if (query.TableHash == DB2Hash.BroadcastText) { BroadcastText bct = GameData.GetBroadcastText(id); @@ -33,6 +35,7 @@ void HandleDbQueryBulk(DBQueryBulk query) bct.FemaleText = "Clear your cache!"; } + //Log.PrintNet(LogType.Debug, LogNetDir.P2C, $"Sending broadcast text #{id}"); reply.Status = HotfixStatus.Valid; reply.Data.WriteCString(bct.MaleText); reply.Data.WriteCString(bct.FemaleText); @@ -51,138 +54,48 @@ void HandleDbQueryBulk(DBQueryBulk query) for (int i = 0; i < 3; ++i) reply.Data.WriteUInt16(bct.EmoteDelays[i]); } + else if (query.TableHash == DB2Hash.Item) + { + ItemTemplate item = GameData.GetItemTemplate(id); + if (item != null) + { + //Log.PrintNet(LogType.Debug, LogNetDir.P2C, $"Sending custom ({DB2Hash.Item}) #{id}"); + reply.Status = HotfixStatus.Valid; + GameData.WriteItemHotfix(item, reply.Data); + } + else if (!GetSession().GameState.RequestedItemHotfixes.Contains(id) && + GetSession().WorldClient != null && GetSession().WorldClient.IsConnected()) + { + //Log.PrintNet(LogType.Storage, LogNetDir.P2S, $"Item #{id} not cached, requesting server data..."); + GetSession().GameState.RequestedItemHotfixes.Add(id); + WorldPacket packet2 = new WorldPacket(Opcode.CMSG_ITEM_QUERY_SINGLE); + packet2.WriteUInt32(id); + if (LegacyVersion.RemovedInVersion(ClientVersionBuild.V2_0_1_6180)) + packet2.WriteGuid(WowGuid64.Empty); + SendPacketToServer(packet2); + continue; + } + } else if (query.TableHash == DB2Hash.ItemSparse) { ItemTemplate item = GameData.GetItemTemplate(id); if (item != null) { + //Log.PrintNet(LogType.Debug, LogNetDir.P2C, $"Sending custom ({DB2Hash.ItemSparse}) #{id}"); reply.Status = HotfixStatus.Valid; - reply.Data.WriteInt64(item.AllowedRaces); - reply.Data.WriteCString(item.Description); - reply.Data.WriteCString(item.Name[3]); - reply.Data.WriteCString(item.Name[2]); - reply.Data.WriteCString(item.Name[1]); - reply.Data.WriteCString(item.Name[0]); - reply.Data.WriteFloat(1); - reply.Data.WriteUInt32(item.Duration); - reply.Data.WriteFloat(0); - reply.Data.WriteUInt32(item.BagFamily); - reply.Data.WriteFloat(item.RangedMod); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteFloat(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(item.MaxStackSize); - reply.Data.WriteInt32(item.MaxCount); - reply.Data.WriteUInt32(item.RequiredSpell); - reply.Data.WriteUInt32(item.SellPrice); - reply.Data.WriteUInt32(item.BuyPrice); - reply.Data.WriteUInt32(item.BuyCount); - reply.Data.WriteFloat(1); - reply.Data.WriteFloat(1); - reply.Data.WriteUInt32(item.Flags); - reply.Data.WriteUInt32(item.FlagsExtra); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteInt32(0); - reply.Data.WriteUInt32(item.MaxDurability); - reply.Data.WriteUInt16(0); - reply.Data.WriteUInt16(0); - reply.Data.WriteUInt16((ushort)item.HolidayID); - reply.Data.WriteUInt16((ushort)item.ItemLimitCategory); - reply.Data.WriteUInt16((ushort)item.GemProperties); - reply.Data.WriteUInt16((ushort)item.SocketBonus); - reply.Data.WriteUInt16((ushort)item.TotemCategory); - reply.Data.WriteUInt16((ushort)item.MapID); - reply.Data.WriteUInt16((ushort)item.AreaID); - reply.Data.WriteUInt16(0); - reply.Data.WriteUInt16((ushort)item.ItemSet); - reply.Data.WriteUInt16((ushort)item.LockId); - reply.Data.WriteUInt16((ushort)item.StartQuestId); - reply.Data.WriteUInt16((ushort)item.PageText); - reply.Data.WriteUInt16((ushort)item.Delay); - reply.Data.WriteUInt16((ushort)item.RequiredRepFaction); - reply.Data.WriteUInt16((ushort)item.RequiredSkillLevel); - reply.Data.WriteUInt16((ushort)item.RequiredSkillId); - reply.Data.WriteUInt16((ushort)item.ItemLevel); - reply.Data.WriteInt16((short)item.AllowedClasses); - reply.Data.WriteUInt16((ushort)item.RandomSuffix); - reply.Data.WriteUInt16((ushort)item.RandomProperty); - reply.Data.WriteUInt16((ushort)item.DamageMins[0]); - reply.Data.WriteUInt16((ushort)item.DamageMins[1]); - reply.Data.WriteUInt16((ushort)item.DamageMins[2]); - reply.Data.WriteUInt16((ushort)item.DamageMins[3]); - reply.Data.WriteUInt16((ushort)item.DamageMins[4]); - reply.Data.WriteUInt16((ushort)item.DamageMaxs[0]); - reply.Data.WriteUInt16((ushort)item.DamageMaxs[1]); - reply.Data.WriteUInt16((ushort)item.DamageMaxs[2]); - reply.Data.WriteUInt16((ushort)item.DamageMaxs[3]); - reply.Data.WriteUInt16((ushort)item.DamageMaxs[4]); - reply.Data.WriteInt16((short)item.Armor); - reply.Data.WriteInt16((short)item.HolyResistance); - reply.Data.WriteInt16((short)item.FireResistance); - reply.Data.WriteInt16((short)item.NatureResistance); - reply.Data.WriteInt16((short)item.FrostResistance); - reply.Data.WriteInt16((short)item.ShadowResistance); - reply.Data.WriteInt16((short)item.ArcaneResistance); - reply.Data.WriteUInt16((ushort)item.ScalingStatDistribution); - reply.Data.WriteUInt8(254); - reply.Data.WriteUInt8(0); - reply.Data.WriteUInt8(0); - reply.Data.WriteUInt8(0); - reply.Data.WriteUInt8((byte)item.ItemSocketColors[0]); - reply.Data.WriteUInt8((byte)item.ItemSocketColors[1]); - reply.Data.WriteUInt8((byte)item.ItemSocketColors[2]); - reply.Data.WriteUInt8((byte)item.SheathType); - reply.Data.WriteUInt8((byte)item.Material); - reply.Data.WriteUInt8((byte)item.PageMaterial); - reply.Data.WriteUInt8((byte)item.Language); - reply.Data.WriteUInt8((byte)item.Bonding); - reply.Data.WriteUInt8((byte)item.DamageTypes[0]); - reply.Data.WriteInt8((sbyte)item.StatTypes[0]); - reply.Data.WriteInt8((sbyte)item.StatTypes[1]); - reply.Data.WriteInt8((sbyte)item.StatTypes[2]); - reply.Data.WriteInt8((sbyte)item.StatTypes[3]); - reply.Data.WriteInt8((sbyte)item.StatTypes[4]); - reply.Data.WriteInt8((sbyte)item.StatTypes[5]); - reply.Data.WriteInt8((sbyte)item.StatTypes[6]); - reply.Data.WriteInt8((sbyte)item.StatTypes[7]); - reply.Data.WriteInt8((sbyte)item.StatTypes[8]); - reply.Data.WriteInt8((sbyte)item.StatTypes[9]); - reply.Data.WriteUInt8((byte)item.ContainerSlots); - reply.Data.WriteUInt8((byte)item.RequiredRepValue); - reply.Data.WriteUInt8((byte)item.RequiredCityRank); - reply.Data.WriteUInt8((byte)item.RequiredHonorRank); - reply.Data.WriteUInt8((byte)item.InventoryType); - reply.Data.WriteUInt8((byte)item.Quality); - reply.Data.WriteUInt8((byte)item.AmmoType); - reply.Data.WriteInt8((sbyte)item.StatValues[0]); - reply.Data.WriteInt8((sbyte)item.StatValues[1]); - reply.Data.WriteInt8((sbyte)item.StatValues[2]); - reply.Data.WriteInt8((sbyte)item.StatValues[3]); - reply.Data.WriteInt8((sbyte)item.StatValues[4]); - reply.Data.WriteInt8((sbyte)item.StatValues[5]); - reply.Data.WriteInt8((sbyte)item.StatValues[6]); - reply.Data.WriteInt8((sbyte)item.StatValues[7]); - reply.Data.WriteInt8((sbyte)item.StatValues[8]); - reply.Data.WriteInt8((sbyte)item.StatValues[9]); - reply.Data.WriteInt8((sbyte)item.RequiredLevel); + GameData.WriteItemSparseHotfix(item, reply.Data); + } + else if (!GetSession().GameState.RequestedItemSparseHotfixes.Contains(id) && + GetSession().WorldClient != null && GetSession().WorldClient.IsConnected()) + { + GetSession().GameState.RequestedItemSparseHotfixes.Add(id); + //Log.PrintNet(LogType.Storage, LogNetDir.P2S, $"ItemSparse #{id} not cached, requesting server data..."); + WorldPacket packet2 = new WorldPacket(Opcode.CMSG_ITEM_QUERY_SINGLE); + packet2.WriteUInt32(id); + if (LegacyVersion.RemovedInVersion(ClientVersionBuild.V2_0_1_6180)) + packet2.WriteGuid(WowGuid64.Empty); + SendPacketToServer(packet2); + continue; } } diff --git a/HermesProxy/World/Server/PacketHandlers/PetHandler.cs b/HermesProxy/World/Server/PacketHandlers/PetHandler.cs index 7e3ac42f..a1f18b21 100644 --- a/HermesProxy/World/Server/PacketHandlers/PetHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/PetHandler.cs @@ -118,9 +118,11 @@ void HandlePetCancelAura(PetCancelAura cancel) [PacketHandler(Opcode.CMSG_REQUEST_PET_INFO)] void HandleRequestPetInfo(PetInfoRequest r) { + // CMSG_REQUEST_PET_INFO WorldPacket packet = new WorldPacket(Opcode.CMSG_REQUEST_PET_INFO); SendPacketToServer(packet); } } } + diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index 310d32a7..9da01a8d 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -324,6 +324,7 @@ void HandleUseItem(UseItem use) SendPacket(cooldown); } } + lock(GetSession().GameState.CurrentClientNormalCastQueue){ if(GetSession().GameState.CurrentClientNormalCastQueue.Count != 0){ @@ -406,6 +407,18 @@ void HandleUseItem(UseItem use) WriteSpellTargets(use.Cast.Target, targetFlags, packet); SendPacketToServer(packet); + // // 增加了小鸡、火箭靴、自由的CD + // if(use.Cast.SpellID == 8892 ||use.Cast.SpellID == 5024||use.Cast.SpellID == 6615){ + + // Thread.Sleep(1500); + // ItemCooldown item = new ItemCooldown(); + // item.ItemGuid = use.CastItem; + // item.SpellID = use.Cast.SpellID; + // item.Cooldown = 300000; + // SendPacket(item); + // Log.Print(LogType.Error, $"HandleItemCooldown {item.SpellID} and guid {item.ItemGuid}" ); + // } + } [PacketHandler(Opcode.CMSG_CANCEL_CAST)] void HandleCancelCast(CancelCast cast) diff --git a/HermesProxy/World/Server/Packets/HotfixPackets.cs b/HermesProxy/World/Server/Packets/HotfixPackets.cs index 27ca16e7..648c27dc 100644 --- a/HermesProxy/World/Server/Packets/HotfixPackets.cs +++ b/HermesProxy/World/Server/Packets/HotfixPackets.cs @@ -112,7 +112,31 @@ public override void Write() foreach (HotfixRecord hotfix in Hotfixes) { totalDataSize += hotfix.HotfixContent.GetSize(); - hotfix.WriteConnect(_worldPacket); + hotfix.WriteHotFixMessageContent(_worldPacket); + } + + _worldPacket.WriteUInt32(totalDataSize); + foreach(HotfixRecord hotfix in Hotfixes) + { + _worldPacket.WriteBytes(hotfix.HotfixContent); + } + } + + public List Hotfixes = new(); + } + + public class HotFixMessage : ServerPacket + { + public HotFixMessage() : base(Opcode.SMSG_HOTFIX_MESSAGE) { } + + public override void Write() + { + _worldPacket.WriteInt32(Hotfixes.Count); + uint totalDataSize = 0; + foreach (HotfixRecord hotfix in Hotfixes) + { + totalDataSize += hotfix.HotfixContent.GetSize(); + hotfix.WriteHotFixMessageContent(_worldPacket); } _worldPacket.WriteUInt32(totalDataSize); From 0b3cc27b2d7e4359574081e3ff4c6b6e25114a1d Mon Sep 17 00:00:00 2001 From: 7upcat <7upcat@gmail.com> Date: Tue, 1 Oct 2024 07:55:31 +0800 Subject: [PATCH 11/11] init version --- HermesProxy/Configuration/Settings.cs | 6 ++- .../PacketHandlers/BattleGroundHandler.cs | 10 +++++ .../Client/PacketHandlers/MovementHandler.cs | 2 +- .../Client/PacketHandlers/SpellHandler.cs | 7 +++- HermesProxy/World/GameData.cs | 2 + .../Server/PacketHandlers/SpellHandler.cs | 39 +++++++++++-------- HermesProxy/World/Server/WorldSocket.cs | 1 - 7 files changed, 46 insertions(+), 21 deletions(-) diff --git a/HermesProxy/Configuration/Settings.cs b/HermesProxy/Configuration/Settings.cs index bffb63b5..bdd5d64e 100644 --- a/HermesProxy/Configuration/Settings.cs +++ b/HermesProxy/Configuration/Settings.cs @@ -31,6 +31,9 @@ public static class Settings public static int MacroSpellDelay; public static int ClientSpellDelay; + public static String SendMessageAppToken; + + public static String SendMessageUid; public static bool LoadAndVerifyFrom(ConfigurationParser config) { @@ -55,7 +58,8 @@ public static bool LoadAndVerifyFrom(ConfigurationParser config) ServerSpellDelay = config.GetInt("ServerSpellDelay", 0); MacroSpellDelay = config.GetInt("MacroSpellDelay", 100); ClientSpellDelay = config.GetInt("ClientSpellDelay", 0); - + SendMessageAppToken = config.GetString("SendMessageAppToken", null); + SendMessageUid = config.GetString("SendMessageUid", null); return VerifyConfig(); } diff --git a/HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs b/HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs index ccdf0ed9..47f2390b 100644 --- a/HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs @@ -4,8 +4,11 @@ using HermesProxy.World.Objects; using HermesProxy.World.Server.Packets; using System; +using System.Net; using System.Collections.Generic; +using HermesProxy.Configuration; using static HermesProxy.World.Server.Packets.PVPMatchStatisticsMessage; +using Framework; namespace HermesProxy.World.Client { @@ -115,6 +118,13 @@ void HandleBattlefieldStatusVanilla(WorldPacket packet) confirm.Mapid = mapId; confirm.Timeout = packet.ReadUInt32(); SendPacketToClient(confirm); + try{ + if(Settings.SendMessageAppToken != null && Settings.SendMessageUid != null) { + HttpWebRequest request = (HttpWebRequest)WebRequest.Create($"https://wxpusher.zjiecode.com/api/send/message/?appToken={Settings.SendMessageAppToken}&content={"准备战斗:"+confirm.Timeout}&uid={Settings.SendMessageUid}&url=http%3a%2f%2fwxpusher.zjiecode.com"); + request.GetResponse(); + } + } catch(Exception e){} + break; } case BattleGroundStatus.InProgress: diff --git a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs index 48b63564..d7e55a74 100644 --- a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs @@ -28,7 +28,7 @@ public partial class WorldClient [PacketHandler(Opcode.MSG_MOVE_START_PITCH_DOWN)] [PacketHandler(Opcode.MSG_MOVE_STOP_PITCH)] [PacketHandler(Opcode.MSG_MOVE_SET_RUN_MODE)] - [PacketHandler(Opcode.MSG_MOVE_SET_WALK_MODE)] + // [PacketHandler(Opcode.MSG_MOVE_SET_WALK_MODE)] [PacketHandler(Opcode.MSG_MOVE_TELEPORT)] [PacketHandler(Opcode.MSG_MOVE_SET_FACING)] [PacketHandler(Opcode.MSG_MOVE_SET_PITCH)] diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 7d8ab861..a2df2aa7 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -452,7 +452,7 @@ void HandleSpellGo(WorldPacket packet) { if (GetSession().GameState.CurrentMapId == null) return; - + try{ SpellGo spell = new SpellGo(); spell.Cast = HandleSpellStartOrGo(packet, true); @@ -533,7 +533,7 @@ void HandleSpellGo(WorldPacket packet) } } SendPacketToClient(spell); - + }catch(Exception e){ Log.Print(LogType.Warn, $"NORMAL SPELL_GO error {e.Message} "); } @@ -775,6 +775,7 @@ void HandleSpellCooldown(WorldPacket packet) cooldown.Caster = packet.ReadPackedGuid().To128(GetSession().GameState); cd.ForcedCooldown = packet.ReadUInt32(); cooldown.SpellCooldowns.Add(cd); + Log.Print(LogType.Warn, $"HandleSpellCooldown {cd.SpellID} {cooldown.Caster}"); } SendPacketToClient(cooldown); } @@ -790,6 +791,7 @@ void HandleCooldownEvent(WorldPacket packet) if(cooldown.SpellID == 14177) { GameData.ColdBloodStatus = false; } + Log.Print(LogType.Warn, $"HandleCooldownEvent cd {cooldown.SpellID}"); WowGuid guid = packet.ReadGuid(); cooldown.IsPet = guid.GetHighType() == HighGuidType.Pet; SendPacketToClient(cooldown); @@ -812,6 +814,7 @@ void HandleCooldownCheat(WorldPacket packet) { CooldownCheat cooldown = new(); cooldown.Guid = packet.ReadGuid().To128(GetSession().GameState); + Log.Print(LogType.Error, $"HandleCooldownCheat {cooldown.Guid} " ); SendPacketToClient(cooldown); } diff --git a/HermesProxy/World/GameData.cs b/HermesProxy/World/GameData.cs index 53c67de2..99865cad 100644 --- a/HermesProxy/World/GameData.cs +++ b/HermesProxy/World/GameData.cs @@ -52,6 +52,8 @@ public static partial class GameData public static Dictionary LastSpellTime = new Dictionary(); + public static Dictionary LastSpecialSpellTime = new Dictionary(); + public static Boolean StealthStatus = false; public static Boolean ColdBloodStatus = false; diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index 9da01a8d..295efb13 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -127,7 +127,7 @@ void HandleCastSpell(CastSpell cast) castRequest.SpellId = cast.Cast.SpellID; castRequest.SpellXSpellVisualId = cast.Cast.SpellXSpellVisualID; castRequest.ClientGUID = cast.Cast.CastID; - + Log.Print(LogType.Warn, $"Auto shoot spell fired."); if (GetSession().GameState.CurrentClientSpecialCast != null && GetSession().GameState.CurrentClientSpecialCast.SpellId == cast.Cast.SpellID) { if(GameData.AutoRepeatSpells.Contains(cast.Cast.SpellID)) { @@ -138,12 +138,28 @@ void HandleCastSpell(CastSpell cast) } else { + lock(GameData.LastSpecialSpellTime){ + long spellTime = DateTime.Now.Ticks; + if(!GameData.LastSpecialSpellTime.ContainsKey(castRequest.SpellId)){ + GameData.LastSpecialSpellTime.Add(castRequest.SpellId,DateTime.Now.Ticks); + } else { + if((spellTime - GameData.LastSpecialSpellTime[castRequest.SpellId])/10000<50){ + Log.Print(LogType.Warn, $"Last Special spell too short{castRequest.SpellId} {(spellTime - GameData.LastSpecialSpellTime[castRequest.SpellId])/10000} "); + SendCastRequestFailed(castRequest, false); + return; + } else { + GameData.LastSpecialSpellTime[castRequest.SpellId]=spellTime; + } + } + } + + GetSession().GameState.CurrentClientSpecialCast = castRequest; castRequest.ServerGUID = WowGuid128.Create(HighGuidType703.Cast, SpellCastSource.Normal, (uint)GetSession().GameState.CurrentMapId, cast.Cast.SpellID, cast.Cast.SpellID + GetSession().GameState.CurrentPlayerGuid.GetCounter()); SpellPrepare prepare = new SpellPrepare(); prepare.ClientCastID = cast.Cast.CastID; prepare.ServerCastID = castRequest.ServerGUID; SendPacket(prepare); - GetSession().GameState.CurrentClientSpecialCast = castRequest; + } } else @@ -161,7 +177,11 @@ void HandleCastSpell(CastSpell cast) if(!GameData.LastSpellTime.ContainsKey(castRequest.SpellId)){ GameData.LastSpellTime.Add(castRequest.SpellId,DateTime.Now.Ticks); } else { - if((spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000<100){ + int interval = 100; + if(castRequest.SpellId==14290) { + interval = 500; + } + if((spellTime - GameData.LastSpellTime[castRequest.SpellId])/10000